blob: a268a7abf8abe754f30fba55941b04fef2ffdef8 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Henrique de Moraes Holschuh643f12d2007-03-29 01:58:43 -03002 * thinkpad_acpi.c - ThinkPad ACPI Extras
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 *
4 *
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005 * Copyright (C) 2004-2005 Borislav Deianov <borislav@users.sf.net>
Henrique de Moraes Holschuh1c762ca2009-04-04 04:25:42 +00006 * Copyright (C) 2006-2009 Henrique de Moraes Holschuh <hmh@hmh.eng.br>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
Henrique de Moraes Holschuha62bc912007-03-23 17:33:58 -030020 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
21 * 02110-1301, USA.
Borislav Deianov78f81cc2005-08-17 00:00:00 -040022 */
23
Joe Perches0978e012011-04-04 10:06:25 -070024#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
25
David Henningsson420f9732013-10-16 23:10:31 +020026#define TPACPI_VERSION "0.25"
Henrique de Moraes Holschuha112cee2009-12-15 21:51:09 -020027#define TPACPI_SYSFS_VERSION 0x020700
Borislav Deianov78f81cc2005-08-17 00:00:00 -040028
29/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070030 * Changelog:
Henrique de Moraes Holschuh4b45cc02008-01-08 13:02:46 -020031 * 2007-10-20 changelog trimmed down
32 *
Henrique de Moraes Holschuh643f12d2007-03-29 01:58:43 -030033 * 2007-03-27 0.14 renamed to thinkpad_acpi and moved to
34 * drivers/misc.
Henrique de Moraes Holschuhf9ff43a2006-11-25 16:37:38 -020035 *
36 * 2006-11-22 0.13 new maintainer
37 * changelog now lives in git commit history, and will
38 * not be updated further in-file.
Henrique de Moraes Holschuh837ca6d2007-03-23 17:33:54 -030039 *
Borislav Deianov78f81cc2005-08-17 00:00:00 -040040 * 2005-03-17 0.11 support for 600e, 770x
41 * thanks to Jamie Lentin <lentinj@dial.pipex.com>
Henrique de Moraes Holschuh4b45cc02008-01-08 13:02:46 -020042 *
43 * 2005-01-16 0.9 use MODULE_VERSION
Borislav Deianov78f81cc2005-08-17 00:00:00 -040044 * thanks to Henrik Brix Andersen <brix@gentoo.org>
45 * fix parameter passing on module loading
46 * thanks to Rusty Russell <rusty@rustcorp.com.au>
47 * thanks to Jim Radford <radford@blackbean.org>
48 * 2004-11-08 0.8 fix init error case, don't return from a macro
49 * thanks to Chris Wright <chrisw@osdl.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -070050 */
51
Henrique de Moraes Holschuh0c780392008-01-08 13:02:43 -020052#include <linux/kernel.h>
53#include <linux/module.h>
54#include <linux/init.h>
55#include <linux/types.h>
56#include <linux/string.h>
57#include <linux/list.h>
58#include <linux/mutex.h>
Henrique de Moraes Holschuh73a94d82009-04-04 04:25:47 +000059#include <linux/sched.h>
Henrique de Moraes Holschuh0c780392008-01-08 13:02:43 -020060#include <linux/kthread.h>
61#include <linux/freezer.h>
62#include <linux/delay.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090063#include <linux/slab.h>
Henrique de Moraes Holschuh0c780392008-01-08 13:02:43 -020064#include <linux/nvram.h>
65#include <linux/proc_fs.h>
Alexey Dobriyan887965e2009-12-15 21:51:12 -020066#include <linux/seq_file.h>
Henrique de Moraes Holschuh0c780392008-01-08 13:02:43 -020067#include <linux/sysfs.h>
68#include <linux/backlight.h>
69#include <linux/fb.h>
70#include <linux/platform_device.h>
71#include <linux/hwmon.h>
72#include <linux/hwmon-sysfs.h>
73#include <linux/input.h>
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -030074#include <linux/leds.h>
Henrique de Moraes Holschuh0e74dc22008-07-21 09:15:51 -030075#include <linux/rfkill.h>
Henrique de Moraes Holschuh0c780392008-01-08 13:02:43 -020076#include <linux/dmi.h>
77#include <linux/jiffies.h>
78#include <linux/workqueue.h>
Lv Zheng8b484632013-12-03 08:49:16 +080079#include <linux/acpi.h>
80#include <linux/pci_ids.h>
81#include <linux/thinkpad_acpi.h>
Henrique de Moraes Holschuh0d204c32009-12-15 21:51:11 -020082#include <sound/core.h>
83#include <sound/control.h>
84#include <sound/initval.h>
Lv Zheng8b484632013-12-03 08:49:16 +080085#include <asm/uaccess.h>
Hans de Goedeb33c6ce2015-06-16 16:28:10 +020086#include <acpi/video.h>
Henrique de Moraes Holschuh0c780392008-01-08 13:02:43 -020087
88/* ThinkPad CMOS commands */
89#define TP_CMOS_VOLUME_DOWN 0
90#define TP_CMOS_VOLUME_UP 1
91#define TP_CMOS_VOLUME_MUTE 2
92#define TP_CMOS_BRIGHTNESS_UP 4
93#define TP_CMOS_BRIGHTNESS_DOWN 5
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -030094#define TP_CMOS_THINKLIGHT_ON 12
95#define TP_CMOS_THINKLIGHT_OFF 13
Henrique de Moraes Holschuh0c780392008-01-08 13:02:43 -020096
97/* NVRAM Addresses */
98enum tp_nvram_addr {
99 TP_NVRAM_ADDR_HK2 = 0x57,
100 TP_NVRAM_ADDR_THINKLIGHT = 0x58,
101 TP_NVRAM_ADDR_VIDEO = 0x59,
102 TP_NVRAM_ADDR_BRIGHTNESS = 0x5e,
103 TP_NVRAM_ADDR_MIXER = 0x60,
104};
105
106/* NVRAM bit masks */
107enum {
108 TP_NVRAM_MASK_HKT_THINKPAD = 0x08,
109 TP_NVRAM_MASK_HKT_ZOOM = 0x20,
110 TP_NVRAM_MASK_HKT_DISPLAY = 0x40,
111 TP_NVRAM_MASK_HKT_HIBERNATE = 0x80,
112 TP_NVRAM_MASK_THINKLIGHT = 0x10,
113 TP_NVRAM_MASK_HKT_DISPEXPND = 0x30,
114 TP_NVRAM_MASK_HKT_BRIGHTNESS = 0x20,
115 TP_NVRAM_MASK_LEVEL_BRIGHTNESS = 0x0f,
116 TP_NVRAM_POS_LEVEL_BRIGHTNESS = 0,
117 TP_NVRAM_MASK_MUTE = 0x40,
118 TP_NVRAM_MASK_HKT_VOLUME = 0x80,
119 TP_NVRAM_MASK_LEVEL_VOLUME = 0x0f,
120 TP_NVRAM_POS_LEVEL_VOLUME = 0,
121};
122
Henrique de Moraes Holschuh5d756db2010-05-16 19:45:28 -0300123/* Misc NVRAM-related */
124enum {
125 TP_NVRAM_LEVEL_VOLUME_MAX = 14,
126};
127
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -0200128/* ACPI HIDs */
Manoj Iyer9fbdaeb2011-05-08 18:04:29 -0400129#define TPACPI_ACPI_IBM_HKEY_HID "IBM0068"
130#define TPACPI_ACPI_LENOVO_HKEY_HID "LEN0068"
Henrique de Moraes Holschuh437e4702010-05-16 19:45:43 -0300131#define TPACPI_ACPI_EC_HID "PNP0C09"
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -0200132
133/* Input IDs */
134#define TPACPI_HKEY_INPUT_PRODUCT 0x5054 /* "TP" */
135#define TPACPI_HKEY_INPUT_VERSION 0x4101
136
Henrique de Moraes Holschuh153f8222009-01-11 03:01:01 -0200137/* ACPI \WGSV commands */
138enum {
139 TP_ACPI_WGSV_GET_STATE = 0x01, /* Get state information */
140 TP_ACPI_WGSV_PWR_ON_ON_RESUME = 0x02, /* Resume WWAN powered on */
141 TP_ACPI_WGSV_PWR_OFF_ON_RESUME = 0x03, /* Resume WWAN powered off */
142 TP_ACPI_WGSV_SAVE_STATE = 0x04, /* Save state for S4/S5 */
143};
144
145/* TP_ACPI_WGSV_GET_STATE bits */
146enum {
147 TP_ACPI_WGSV_STATE_WWANEXIST = 0x0001, /* WWAN hw available */
148 TP_ACPI_WGSV_STATE_WWANPWR = 0x0002, /* WWAN radio enabled */
149 TP_ACPI_WGSV_STATE_WWANPWRRES = 0x0004, /* WWAN state at resume */
150 TP_ACPI_WGSV_STATE_WWANBIOSOFF = 0x0008, /* WWAN disabled in BIOS */
151 TP_ACPI_WGSV_STATE_BLTHEXIST = 0x0001, /* BLTH hw available */
152 TP_ACPI_WGSV_STATE_BLTHPWR = 0x0002, /* BLTH radio enabled */
153 TP_ACPI_WGSV_STATE_BLTHPWRRES = 0x0004, /* BLTH state at resume */
154 TP_ACPI_WGSV_STATE_BLTHBIOSOFF = 0x0008, /* BLTH disabled in BIOS */
155 TP_ACPI_WGSV_STATE_UWBEXIST = 0x0010, /* UWB hw available */
156 TP_ACPI_WGSV_STATE_UWBPWR = 0x0020, /* UWB radio enabled */
157};
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -0200158
Henrique de Moraes Holschuh67bcae62009-09-20 14:09:27 -0300159/* HKEY events */
160enum tpacpi_hkey_event_t {
161 /* Hotkey-related */
162 TP_HKEY_EV_HOTKEY_BASE = 0x1001, /* first hotkey (FN+F1) */
163 TP_HKEY_EV_BRGHT_UP = 0x1010, /* Brightness up */
164 TP_HKEY_EV_BRGHT_DOWN = 0x1011, /* Brightness down */
165 TP_HKEY_EV_VOL_UP = 0x1015, /* Volume up or unmute */
166 TP_HKEY_EV_VOL_DOWN = 0x1016, /* Volume down or unmute */
167 TP_HKEY_EV_VOL_MUTE = 0x1017, /* Mixer output mute */
168
169 /* Reasons for waking up from S3/S4 */
170 TP_HKEY_EV_WKUP_S3_UNDOCK = 0x2304, /* undock requested, S3 */
171 TP_HKEY_EV_WKUP_S4_UNDOCK = 0x2404, /* undock requested, S4 */
172 TP_HKEY_EV_WKUP_S3_BAYEJ = 0x2305, /* bay ejection req, S3 */
173 TP_HKEY_EV_WKUP_S4_BAYEJ = 0x2405, /* bay ejection req, S4 */
174 TP_HKEY_EV_WKUP_S3_BATLOW = 0x2313, /* battery empty, S3 */
175 TP_HKEY_EV_WKUP_S4_BATLOW = 0x2413, /* battery empty, S4 */
176
177 /* Auto-sleep after eject request */
178 TP_HKEY_EV_BAYEJ_ACK = 0x3003, /* bay ejection complete */
179 TP_HKEY_EV_UNDOCK_ACK = 0x4003, /* undock complete */
180
181 /* Misc bay events */
182 TP_HKEY_EV_OPTDRV_EJ = 0x3006, /* opt. drive tray ejected */
Henrique de Moraes Holschuha50245a2011-06-05 16:22:35 -0300183 TP_HKEY_EV_HOTPLUG_DOCK = 0x4010, /* docked into hotplug dock
184 or port replicator */
185 TP_HKEY_EV_HOTPLUG_UNDOCK = 0x4011, /* undocked from hotplug
186 dock or port replicator */
Henrique de Moraes Holschuh67bcae62009-09-20 14:09:27 -0300187
188 /* User-interface events */
189 TP_HKEY_EV_LID_CLOSE = 0x5001, /* laptop lid closed */
190 TP_HKEY_EV_LID_OPEN = 0x5002, /* laptop lid opened */
191 TP_HKEY_EV_TABLET_TABLET = 0x5009, /* tablet swivel up */
192 TP_HKEY_EV_TABLET_NOTEBOOK = 0x500a, /* tablet swivel down */
193 TP_HKEY_EV_PEN_INSERTED = 0x500b, /* tablet pen inserted */
194 TP_HKEY_EV_PEN_REMOVED = 0x500c, /* tablet pen removed */
195 TP_HKEY_EV_BRGHT_CHANGED = 0x5010, /* backlight control event */
196
Henrique de Moraes Holschuh2d43f672011-06-05 16:22:34 -0300197 /* Key-related user-interface events */
198 TP_HKEY_EV_KEY_NUMLOCK = 0x6000, /* NumLock key pressed */
199 TP_HKEY_EV_KEY_FN = 0x6005, /* Fn key pressed? E420 */
Xavier Naveira67ab6242015-02-10 08:45:18 +0100200 TP_HKEY_EV_KEY_FN_ESC = 0x6060, /* Fn+Esc key pressed X240 */
Henrique de Moraes Holschuh2d43f672011-06-05 16:22:34 -0300201
Henrique de Moraes Holschuh67bcae62009-09-20 14:09:27 -0300202 /* Thermal events */
203 TP_HKEY_EV_ALARM_BAT_HOT = 0x6011, /* battery too hot */
204 TP_HKEY_EV_ALARM_BAT_XHOT = 0x6012, /* battery critically hot */
205 TP_HKEY_EV_ALARM_SENSOR_HOT = 0x6021, /* sensor too hot */
206 TP_HKEY_EV_ALARM_SENSOR_XHOT = 0x6022, /* sensor critically hot */
207 TP_HKEY_EV_THM_TABLE_CHANGED = 0x6030, /* thermal table changed */
208
Richard Hartmann6f62bc32012-12-29 22:51:49 +0100209 /* AC-related events */
210 TP_HKEY_EV_AC_CHANGED = 0x6040, /* AC status changed */
Henrique de Moraes Holschuh2d43f672011-06-05 16:22:34 -0300211
Henrique de Moraes Holschuh67bcae62009-09-20 14:09:27 -0300212 /* Misc */
213 TP_HKEY_EV_RFKILL_CHANGED = 0x7000, /* rfkill switch changed */
214};
215
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -0200216/****************************************************************************
217 * Main driver
218 */
219
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -0200220#define TPACPI_NAME "thinkpad"
221#define TPACPI_DESC "ThinkPad ACPI Extras"
222#define TPACPI_FILE TPACPI_NAME "_acpi"
223#define TPACPI_URL "http://ibm-acpi.sf.net/"
224#define TPACPI_MAIL "ibm-acpi-devel@lists.sourceforge.net"
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -0200225
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -0200226#define TPACPI_PROC_DIR "ibm"
227#define TPACPI_ACPI_EVENT_PREFIX "ibm"
228#define TPACPI_DRVR_NAME TPACPI_FILE
Henrique de Moraes Holschuh95e57ab2008-04-26 01:02:22 -0300229#define TPACPI_DRVR_SHORTNAME "tpacpi"
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -0200230#define TPACPI_HWMON_DRVR_NAME TPACPI_NAME "_hwmon"
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -0200231
Henrique de Moraes Holschuh95e57ab2008-04-26 01:02:22 -0300232#define TPACPI_NVRAM_KTHREAD_NAME "ktpacpi_nvramd"
Henrique de Moraes Holschuhe0e3c062008-04-26 01:02:28 -0300233#define TPACPI_WORKQUEUE_NAME "ktpacpid"
Henrique de Moraes Holschuh95e57ab2008-04-26 01:02:22 -0300234
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -0200235#define TPACPI_MAX_ACPI_ARGS 3
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -0200236
Henrique de Moraes Holschuh7ff8d622009-04-04 04:25:46 +0000237/* Debugging printk groups */
Henrique de Moraes Holschuh0c780392008-01-08 13:02:43 -0200238#define TPACPI_DBG_ALL 0xffff
Henrique de Moraes Holschuh73a94d82009-04-04 04:25:47 +0000239#define TPACPI_DBG_DISCLOSETASK 0x8000
Henrique de Moraes Holschuh0c780392008-01-08 13:02:43 -0200240#define TPACPI_DBG_INIT 0x0001
241#define TPACPI_DBG_EXIT 0x0002
Henrique de Moraes Holschuhbee4cd9b2009-04-04 04:25:50 +0000242#define TPACPI_DBG_RFKILL 0x0004
Henrique de Moraes Holschuh56e2c202009-04-04 04:25:51 +0000243#define TPACPI_DBG_HKEY 0x0008
Henrique de Moraes Holschuh74a60c02009-04-04 04:25:52 +0000244#define TPACPI_DBG_FAN 0x0010
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +0000245#define TPACPI_DBG_BRGHT 0x0020
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -0200246#define TPACPI_DBG_MIXER 0x0040
Henrique de Moraes Holschuh0c780392008-01-08 13:02:43 -0200247
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -0200248#define onoff(status, bit) ((status) & (1 << (bit)) ? "on" : "off")
249#define enabled(status, bit) ((status) & (1 << (bit)) ? "enabled" : "disabled")
250#define strlencmp(a, b) (strncmp((a), (b), strlen(b)))
Henrique de Moraes Holschuh0c780392008-01-08 13:02:43 -0200251
Henrique de Moraes Holschuh0c780392008-01-08 13:02:43 -0200252
253/****************************************************************************
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -0200254 * Driver-wide structs and misc. variables
Henrique de Moraes Holschuh0c780392008-01-08 13:02:43 -0200255 */
256
257struct ibm_struct;
258
259struct tp_acpi_drv_struct {
260 const struct acpi_device_id *hid;
261 struct acpi_driver *driver;
262
263 void (*notify) (struct ibm_struct *, u32);
264 acpi_handle *handle;
265 u32 type;
266 struct acpi_device *device;
267};
268
269struct ibm_struct {
270 char *name;
271
Alexey Dobriyan887965e2009-12-15 21:51:12 -0200272 int (*read) (struct seq_file *);
Henrique de Moraes Holschuh0c780392008-01-08 13:02:43 -0200273 int (*write) (char *);
274 void (*exit) (void);
275 void (*resume) (void);
Rafael J. Wysockifd3c3a42012-06-27 23:18:44 +0200276 void (*suspend) (void);
Henrique de Moraes Holschuh90d9d3c2009-01-11 03:01:02 -0200277 void (*shutdown) (void);
Henrique de Moraes Holschuh0c780392008-01-08 13:02:43 -0200278
279 struct list_head all_drivers;
280
281 struct tp_acpi_drv_struct *acpi;
282
283 struct {
284 u8 acpi_driver_registered:1;
285 u8 acpi_notify_installed:1;
286 u8 proc_created:1;
287 u8 init_called:1;
288 u8 experimental:1;
289 } flags;
290};
291
292struct ibm_init_struct {
293 char param[32];
294
295 int (*init) (struct ibm_init_struct *);
Al Virod161a132011-07-24 03:36:29 -0400296 umode_t base_procfs_mode;
Henrique de Moraes Holschuh0c780392008-01-08 13:02:43 -0200297 struct ibm_struct *data;
298};
299
300static struct {
Henrique de Moraes Holschuh0c780392008-01-08 13:02:43 -0200301 u32 bluetooth:1;
302 u32 hotkey:1;
303 u32 hotkey_mask:1;
304 u32 hotkey_wlsw:1;
Henrique de Moraes Holschuh6c231bd2008-02-16 02:17:58 -0200305 u32 hotkey_tablet:1;
Pali Rohárbb28f3d52015-12-30 23:27:41 +0100306 u32 kbdlight:1;
Henrique de Moraes Holschuh0c780392008-01-08 13:02:43 -0200307 u32 light:1;
308 u32 light_status:1;
Henrique de Moraes Holschuhb5972792008-04-26 01:02:17 -0300309 u32 bright_acpimode:1;
Henrique de Moraes Holschuh77775832010-05-16 19:45:33 -0300310 u32 bright_unkfw:1;
Henrique de Moraes Holschuh0c780392008-01-08 13:02:43 -0200311 u32 wan:1;
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -0200312 u32 uwb:1;
Henrique de Moraes Holschuh0c780392008-01-08 13:02:43 -0200313 u32 fan_ctrl_status_undef:1;
Henrique de Moraes Holschuhd7377242009-06-18 00:40:17 -0300314 u32 second_fan:1;
Henrique de Moraes Holschuh60201732009-05-30 13:25:07 -0300315 u32 beep_needs_two_args:1;
Henrique de Moraes Holschuha112cee2009-12-15 21:51:09 -0200316 u32 mixer_no_level_control:1;
Henrique de Moraes Holschuh0c780392008-01-08 13:02:43 -0200317 u32 input_device_registered:1;
318 u32 platform_drv_registered:1;
319 u32 platform_drv_attrs_registered:1;
320 u32 sensors_pdrv_registered:1;
321 u32 sensors_pdrv_attrs_registered:1;
322 u32 sensors_pdev_attrs_registered:1;
323 u32 hotkey_poll_active:1;
Bastien Noceraf23a5bc2015-03-02 14:45:16 +0100324 u32 has_adaptive_kbd:1;
Henrique de Moraes Holschuh0c780392008-01-08 13:02:43 -0200325} tp_features;
326
Henrique de Moraes Holschuh92889022008-04-26 01:02:18 -0300327static struct {
328 u16 hotkey_mask_ff:1;
Henrique de Moraes Holschuhc7ac6292009-12-15 21:51:10 -0200329 u16 volume_ctrl_forbidden:1;
Henrique de Moraes Holschuh92889022008-04-26 01:02:18 -0300330} tp_warned;
331
Henrique de Moraes Holschuh0c780392008-01-08 13:02:43 -0200332struct thinkpad_id_data {
333 unsigned int vendor; /* ThinkPad vendor:
334 * PCI_VENDOR_ID_IBM/PCI_VENDOR_ID_LENOVO */
335
336 char *bios_version_str; /* Something like 1ZET51WW (1.03z) */
337 char *ec_version_str; /* Something like 1ZHT51WW-1.04a */
338
Henrique de Moraes Holschuh050df102009-05-30 13:25:05 -0300339 u16 bios_model; /* 1Y = 0x5931, 0 = unknown */
Henrique de Moraes Holschuh0c780392008-01-08 13:02:43 -0200340 u16 ec_model;
Henrique de Moraes Holschuh050df102009-05-30 13:25:05 -0300341 u16 bios_release; /* 1ZETK1WW = 0x314b, 0 = unknown */
342 u16 ec_release;
Henrique de Moraes Holschuh0c780392008-01-08 13:02:43 -0200343
Henrique de Moraes Holschuh8c74adb2008-04-26 01:02:19 -0300344 char *model_str; /* ThinkPad T43 */
345 char *nummodel_str; /* 9384A9C for a 9384-A9C model */
Henrique de Moraes Holschuh0c780392008-01-08 13:02:43 -0200346};
Henrique de Moraes Holschuh0c780392008-01-08 13:02:43 -0200347static struct thinkpad_id_data thinkpad_id;
348
Henrique de Moraes Holschuh8fef5022007-09-23 11:39:02 -0300349static enum {
350 TPACPI_LIFE_INIT = 0,
351 TPACPI_LIFE_RUNNING,
352 TPACPI_LIFE_EXITING,
353} tpacpi_lifecycle;
354
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -0200355static int experimental;
356static u32 dbg_level;
357
Henrique de Moraes Holschuhe0e3c062008-04-26 01:02:28 -0300358static struct workqueue_struct *tpacpi_wq;
359
Henrique de Moraes Holschuh75bd3bf2009-04-14 02:44:11 +0000360enum led_status_t {
361 TPACPI_LED_OFF = 0,
362 TPACPI_LED_ON,
363 TPACPI_LED_BLINK,
364};
365
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -0300366/* Special LED class that can defer work */
367struct tpacpi_led_classdev {
368 struct led_classdev led_classdev;
369 struct work_struct work;
Henrique de Moraes Holschuh75bd3bf2009-04-14 02:44:11 +0000370 enum led_status_t new_state;
Adam Leeedf2d772013-06-08 16:51:15 +0800371 int led;
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -0300372};
373
Henrique de Moraes Holschuh77775832010-05-16 19:45:33 -0300374/* brightness level capabilities */
375static unsigned int bright_maxlvl; /* 0 = unknown */
376
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -0200377#ifdef CONFIG_THINKPAD_ACPI_DEBUGFACILITIES
378static int dbg_wlswemul;
Rusty Russell90ab5ee2012-01-13 09:32:20 +1030379static bool tpacpi_wlsw_emulstate;
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -0200380static int dbg_bluetoothemul;
Rusty Russell90ab5ee2012-01-13 09:32:20 +1030381static bool tpacpi_bluetooth_emulstate;
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -0200382static int dbg_wwanemul;
Rusty Russell90ab5ee2012-01-13 09:32:20 +1030383static bool tpacpi_wwan_emulstate;
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -0200384static int dbg_uwbemul;
Rusty Russell90ab5ee2012-01-13 09:32:20 +1030385static bool tpacpi_uwb_emulstate;
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -0200386#endif
387
388
Henrique de Moraes Holschuh3dcc2c32009-04-04 04:25:45 +0000389/*************************************************************************
390 * Debugging helpers
391 */
392
Joe Perches0978e012011-04-04 10:06:25 -0700393#define dbg_printk(a_dbg_level, format, arg...) \
394do { \
395 if (dbg_level & (a_dbg_level)) \
396 printk(KERN_DEBUG pr_fmt("%s: " format), \
397 __func__, ##arg); \
398} while (0)
Henrique de Moraes Holschuh3dcc2c32009-04-04 04:25:45 +0000399
400#ifdef CONFIG_THINKPAD_ACPI_DEBUG
401#define vdbg_printk dbg_printk
402static const char *str_supported(int is_supported);
403#else
Joe Perches0978e012011-04-04 10:06:25 -0700404static inline const char *str_supported(int is_supported) { return ""; }
405#define vdbg_printk(a_dbg_level, format, arg...) \
Joe Perchesefd85cf2015-08-26 11:13:38 -0700406 do { if (0) no_printk(format, ##arg); } while (0)
Henrique de Moraes Holschuh3dcc2c32009-04-04 04:25:45 +0000407#endif
408
Henrique de Moraes Holschuh73a94d82009-04-04 04:25:47 +0000409static void tpacpi_log_usertask(const char * const what)
410{
Joe Perches0978e012011-04-04 10:06:25 -0700411 printk(KERN_DEBUG pr_fmt("%s: access by process with PID %d\n"),
412 what, task_tgid_vnr(current));
Henrique de Moraes Holschuh73a94d82009-04-04 04:25:47 +0000413}
414
Joe Perches0978e012011-04-04 10:06:25 -0700415#define tpacpi_disclose_usertask(what, format, arg...) \
416do { \
417 if (unlikely((dbg_level & TPACPI_DBG_DISCLOSETASK) && \
418 (tpacpi_lifecycle == TPACPI_LIFE_RUNNING))) { \
419 printk(KERN_DEBUG pr_fmt("%s: PID %d: " format), \
420 what, task_tgid_vnr(current), ## arg); \
421 } \
422} while (0)
Henrique de Moraes Holschuh3dcc2c32009-04-04 04:25:45 +0000423
Henrique de Moraes Holschuh7d95a3d2009-05-30 13:25:06 -0300424/*
425 * Quirk handling helpers
426 *
427 * ThinkPad IDs and versions seen in the field so far
428 * are two-characters from the set [0-9A-Z], i.e. base 36.
429 *
430 * We use values well outside that range as specials.
431 */
432
433#define TPACPI_MATCH_ANY 0xffffU
434#define TPACPI_MATCH_UNKNOWN 0U
435
436/* TPID('1', 'Y') == 0x5931 */
437#define TPID(__c1, __c2) (((__c2) << 8) | (__c1))
438
439#define TPACPI_Q_IBM(__id1, __id2, __quirk) \
440 { .vendor = PCI_VENDOR_ID_IBM, \
441 .bios = TPID(__id1, __id2), \
442 .ec = TPACPI_MATCH_ANY, \
443 .quirks = (__quirk) }
444
445#define TPACPI_Q_LNV(__id1, __id2, __quirk) \
446 { .vendor = PCI_VENDOR_ID_LENOVO, \
447 .bios = TPID(__id1, __id2), \
448 .ec = TPACPI_MATCH_ANY, \
449 .quirks = (__quirk) }
450
Henrique de Moraes Holschuha112cee2009-12-15 21:51:09 -0200451#define TPACPI_QEC_LNV(__id1, __id2, __quirk) \
452 { .vendor = PCI_VENDOR_ID_LENOVO, \
453 .bios = TPACPI_MATCH_ANY, \
454 .ec = TPID(__id1, __id2), \
455 .quirks = (__quirk) }
456
Henrique de Moraes Holschuh7d95a3d2009-05-30 13:25:06 -0300457struct tpacpi_quirk {
458 unsigned int vendor;
459 u16 bios;
460 u16 ec;
461 unsigned long quirks;
462};
463
464/**
465 * tpacpi_check_quirks() - search BIOS/EC version on a list
466 * @qlist: array of &struct tpacpi_quirk
467 * @qlist_size: number of elements in @qlist
468 *
469 * Iterates over a quirks list until one is found that matches the
470 * ThinkPad's vendor, BIOS and EC model.
471 *
472 * Returns 0 if nothing matches, otherwise returns the quirks field of
473 * the matching &struct tpacpi_quirk entry.
474 *
475 * The match criteria is: vendor, ec and bios much match.
476 */
477static unsigned long __init tpacpi_check_quirks(
478 const struct tpacpi_quirk *qlist,
479 unsigned int qlist_size)
480{
481 while (qlist_size) {
482 if ((qlist->vendor == thinkpad_id.vendor ||
483 qlist->vendor == TPACPI_MATCH_ANY) &&
484 (qlist->bios == thinkpad_id.bios_model ||
485 qlist->bios == TPACPI_MATCH_ANY) &&
486 (qlist->ec == thinkpad_id.ec_model ||
487 qlist->ec == TPACPI_MATCH_ANY))
488 return qlist->quirks;
489
490 qlist_size--;
491 qlist++;
492 }
493 return 0;
494}
495
Henrique de Moraes Holschuhe28393c2010-05-16 19:45:23 -0300496static inline bool __pure __init tpacpi_is_lenovo(void)
497{
498 return thinkpad_id.vendor == PCI_VENDOR_ID_LENOVO;
499}
500
501static inline bool __pure __init tpacpi_is_ibm(void)
502{
503 return thinkpad_id.vendor == PCI_VENDOR_ID_IBM;
504}
Henrique de Moraes Holschuh7d95a3d2009-05-30 13:25:06 -0300505
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300506/****************************************************************************
507 ****************************************************************************
508 *
509 * ACPI Helpers and device model
510 *
511 ****************************************************************************
512 ****************************************************************************/
513
514/*************************************************************************
515 * ACPI basic handles
516 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517
Henrique de Moraes Holschuh94954cc62007-07-18 23:45:27 -0300518static acpi_handle root_handle;
Henrique de Moraes Holschuh437e4702010-05-16 19:45:43 -0300519static acpi_handle ec_handle;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -0200521#define TPACPI_HANDLE(object, parent, paths...) \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522 static acpi_handle object##_handle; \
Andi Kleen3bd01892012-10-04 17:12:01 -0700523 static const acpi_handle * const object##_parent __initconst = \
Henrique de Moraes Holschuhef07a5ab2010-05-16 19:45:54 -0300524 &parent##_handle; \
525 static char *object##_paths[] __initdata = { paths }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -0200527TPACPI_HANDLE(ecrd, ec, "ECRD"); /* 570 */
528TPACPI_HANDLE(ecwr, ec, "ECWR"); /* 570 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -0200530TPACPI_HANDLE(cmos, root, "\\UCMS", /* R50, R50e, R50p, R51, */
531 /* T4x, X31, X40 */
Borislav Deianov78f81cc2005-08-17 00:00:00 -0400532 "\\CMOS", /* A3x, G4x, R32, T23, T30, X22-24, X30 */
533 "\\CMS", /* R40, R40e */
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300534 ); /* all others */
Borislav Deianov78f81cc2005-08-17 00:00:00 -0400535
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -0200536TPACPI_HANDLE(hkey, ec, "\\_SB.HKEY", /* 600e/x, 770e, 770x */
Borislav Deianov78f81cc2005-08-17 00:00:00 -0400537 "^HKEY", /* R30, R31 */
538 "HKEY", /* all others */
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300539 ); /* 570 */
Borislav Deianov78f81cc2005-08-17 00:00:00 -0400540
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300541/*************************************************************************
542 * ACPI helpers
Henrique de Moraes Holschuha8b7a662006-11-24 11:47:11 -0200543 */
544
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545static int acpi_evalf(acpi_handle handle,
Dan Carpentereceeb432012-09-01 12:54:07 -0700546 int *res, char *method, char *fmt, ...)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547{
548 char *fmt0 = fmt;
Borislav Deianov78f81cc2005-08-17 00:00:00 -0400549 struct acpi_object_list params;
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -0200550 union acpi_object in_objs[TPACPI_MAX_ACPI_ARGS];
Borislav Deianov78f81cc2005-08-17 00:00:00 -0400551 struct acpi_buffer result, *resultp;
552 union acpi_object out_obj;
553 acpi_status status;
554 va_list ap;
555 char res_type;
556 int success;
557 int quiet;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558
559 if (!*fmt) {
Joe Perches0978e012011-04-04 10:06:25 -0700560 pr_err("acpi_evalf() called with empty format\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561 return 0;
562 }
563
564 if (*fmt == 'q') {
565 quiet = 1;
566 fmt++;
567 } else
568 quiet = 0;
569
570 res_type = *(fmt++);
571
572 params.count = 0;
573 params.pointer = &in_objs[0];
574
575 va_start(ap, fmt);
576 while (*fmt) {
577 char c = *(fmt++);
578 switch (c) {
579 case 'd': /* int */
580 in_objs[params.count].integer.value = va_arg(ap, int);
581 in_objs[params.count++].type = ACPI_TYPE_INTEGER;
582 break;
Borislav Deianov78f81cc2005-08-17 00:00:00 -0400583 /* add more types as needed */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584 default:
Joe Perches0978e012011-04-04 10:06:25 -0700585 pr_err("acpi_evalf() called "
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586 "with invalid format character '%c'\n", c);
Jesper Juhl21365852010-12-24 19:56:28 +0100587 va_end(ap);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588 return 0;
589 }
590 }
591 va_end(ap);
592
Borislav Deianov78f81cc2005-08-17 00:00:00 -0400593 if (res_type != 'v') {
594 result.length = sizeof(out_obj);
595 result.pointer = &out_obj;
596 resultp = &result;
597 } else
598 resultp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599
Borislav Deianov78f81cc2005-08-17 00:00:00 -0400600 status = acpi_evaluate_object(handle, method, &params, resultp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601
602 switch (res_type) {
Borislav Deianov78f81cc2005-08-17 00:00:00 -0400603 case 'd': /* int */
Henrique de Moraes Holschuh263f4a32010-05-16 19:45:45 -0300604 success = (status == AE_OK &&
605 out_obj.type == ACPI_TYPE_INTEGER);
606 if (success && res)
Dan Carpentereceeb432012-09-01 12:54:07 -0700607 *res = out_obj.integer.value;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608 break;
Borislav Deianov78f81cc2005-08-17 00:00:00 -0400609 case 'v': /* void */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610 success = status == AE_OK;
611 break;
Borislav Deianov78f81cc2005-08-17 00:00:00 -0400612 /* add more types as needed */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613 default:
Joe Perches0978e012011-04-04 10:06:25 -0700614 pr_err("acpi_evalf() called "
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615 "with invalid format character '%c'\n", res_type);
616 return 0;
617 }
618
619 if (!success && !quiet)
Joe Perches0978e012011-04-04 10:06:25 -0700620 pr_err("acpi_evalf(%s, %s, ...) failed: %s\n",
Henrique de Moraes Holschuh263f4a32010-05-16 19:45:45 -0300621 method, fmt0, acpi_format_exception(status));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622
623 return success;
624}
625
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -0200626static int acpi_ec_read(int i, u8 *p)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300627{
628 int v;
629
630 if (ecrd_handle) {
631 if (!acpi_evalf(ecrd_handle, &v, NULL, "dd", i))
632 return 0;
633 *p = v;
634 } else {
635 if (ec_read(i, p) < 0)
636 return 0;
637 }
638
639 return 1;
640}
641
642static int acpi_ec_write(int i, u8 v)
643{
644 if (ecwr_handle) {
645 if (!acpi_evalf(ecwr_handle, NULL, NULL, "vdd", i, v))
646 return 0;
647 } else {
648 if (ec_write(i, v) < 0)
649 return 0;
650 }
651
652 return 1;
653}
654
Henrique de Moraes Holschuhc9bea992007-04-21 11:08:42 -0300655static int issue_thinkpad_cmos_command(int cmos_cmd)
656{
657 if (!cmos_handle)
658 return -ENXIO;
659
660 if (!acpi_evalf(cmos_handle, NULL, NULL, "vd", cmos_cmd))
661 return -EIO;
662
663 return 0;
664}
665
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300666/*************************************************************************
667 * ACPI device model
668 */
669
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -0200670#define TPACPI_ACPIHANDLE_INIT(object) \
671 drv_acpi_handle_init(#object, &object##_handle, *object##_parent, \
Henrique de Moraes Holschuhef07a5ab2010-05-16 19:45:54 -0300672 object##_paths, ARRAY_SIZE(object##_paths))
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -0200673
Henrique de Moraes Holschuhef07a5ab2010-05-16 19:45:54 -0300674static void __init drv_acpi_handle_init(const char *name,
675 acpi_handle *handle, const acpi_handle parent,
676 char **paths, const int num_paths)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300677{
678 int i;
679 acpi_status status;
680
Henrique de Moraes Holschuh5ae930e2007-04-27 22:00:14 -0300681 vdbg_printk(TPACPI_DBG_INIT, "trying to locate ACPI handle for %s\n",
682 name);
683
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300684 for (i = 0; i < num_paths; i++) {
685 status = acpi_get_handle(parent, paths[i], handle);
686 if (ACPI_SUCCESS(status)) {
Henrique de Moraes Holschuh5ae930e2007-04-27 22:00:14 -0300687 dbg_printk(TPACPI_DBG_INIT,
688 "Found ACPI handle %s for %s\n",
Henrique de Moraes Holschuhef07a5ab2010-05-16 19:45:54 -0300689 paths[i], name);
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300690 return;
691 }
692 }
693
Henrique de Moraes Holschuh5ae930e2007-04-27 22:00:14 -0300694 vdbg_printk(TPACPI_DBG_INIT, "ACPI handle for %s not found\n",
695 name);
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300696 *handle = NULL;
697}
698
Henrique de Moraes Holschuh437e4702010-05-16 19:45:43 -0300699static acpi_status __init tpacpi_acpi_handle_locate_callback(acpi_handle handle,
700 u32 level, void *context, void **return_value)
701{
Aaron Lu46445b62013-10-11 21:27:46 +0800702 struct acpi_device *dev;
703 if (!strcmp(context, "video")) {
704 if (acpi_bus_get_device(handle, &dev))
705 return AE_OK;
706 if (strcmp(ACPI_VIDEO_HID, acpi_device_hid(dev)))
707 return AE_OK;
708 }
709
Henrique de Moraes Holschuh437e4702010-05-16 19:45:43 -0300710 *(acpi_handle *)return_value = handle;
711
712 return AE_CTRL_TERMINATE;
713}
714
715static void __init tpacpi_acpi_handle_locate(const char *name,
716 const char *hid,
717 acpi_handle *handle)
718{
719 acpi_status status;
720 acpi_handle device_found;
721
Aaron Lu46445b62013-10-11 21:27:46 +0800722 BUG_ON(!name || !handle);
Henrique de Moraes Holschuh437e4702010-05-16 19:45:43 -0300723 vdbg_printk(TPACPI_DBG_INIT,
724 "trying to locate ACPI handle for %s, using HID %s\n",
Aaron Lu46445b62013-10-11 21:27:46 +0800725 name, hid ? hid : "NULL");
Henrique de Moraes Holschuh437e4702010-05-16 19:45:43 -0300726
727 memset(&device_found, 0, sizeof(device_found));
728 status = acpi_get_devices(hid, tpacpi_acpi_handle_locate_callback,
729 (void *)name, &device_found);
730
731 *handle = NULL;
732
733 if (ACPI_SUCCESS(status)) {
734 *handle = device_found;
735 dbg_printk(TPACPI_DBG_INIT,
736 "Found ACPI handle for %s\n", name);
737 } else {
738 vdbg_printk(TPACPI_DBG_INIT,
739 "Could not locate an ACPI handle for %s: %s\n",
740 name, acpi_format_exception(status));
741 }
742}
743
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -0300744static void dispatch_acpi_notify(acpi_handle handle, u32 event, void *data)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300745{
746 struct ibm_struct *ibm = data;
747
Henrique de Moraes Holschuh8fef5022007-09-23 11:39:02 -0300748 if (tpacpi_lifecycle != TPACPI_LIFE_RUNNING)
749 return;
750
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -0300751 if (!ibm || !ibm->acpi || !ibm->acpi->notify)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300752 return;
753
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -0300754 ibm->acpi->notify(ibm, event);
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300755}
756
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -0300757static int __init setup_acpi_notify(struct ibm_struct *ibm)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300758{
759 acpi_status status;
Henrique de Moraes Holschuh5ae930e2007-04-27 22:00:14 -0300760 int rc;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300761
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -0300762 BUG_ON(!ibm->acpi);
763
764 if (!*ibm->acpi->handle)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300765 return 0;
766
Henrique de Moraes Holschuh5ae930e2007-04-27 22:00:14 -0300767 vdbg_printk(TPACPI_DBG_INIT,
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -0300768 "setting up ACPI notify for %s\n", ibm->name);
769
Henrique de Moraes Holschuh5ae930e2007-04-27 22:00:14 -0300770 rc = acpi_bus_get_device(*ibm->acpi->handle, &ibm->acpi->device);
771 if (rc < 0) {
Joe Perches0978e012011-04-04 10:06:25 -0700772 pr_err("acpi_bus_get_device(%s) failed: %d\n", ibm->name, rc);
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300773 return -ENODEV;
774 }
775
Pavel Machekdb89b4f2008-09-22 14:37:34 -0700776 ibm->acpi->device->driver_data = ibm;
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -0300777 sprintf(acpi_device_class(ibm->acpi->device), "%s/%s",
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -0200778 TPACPI_ACPI_EVENT_PREFIX,
Henrique de Moraes Holschuh643f12d2007-03-29 01:58:43 -0300779 ibm->name);
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300780
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -0300781 status = acpi_install_notify_handler(*ibm->acpi->handle,
782 ibm->acpi->type, dispatch_acpi_notify, ibm);
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300783 if (ACPI_FAILURE(status)) {
784 if (status == AE_ALREADY_EXISTS) {
Joe Perches0978e012011-04-04 10:06:25 -0700785 pr_notice("another device driver is already "
786 "handling %s events\n", ibm->name);
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300787 } else {
Joe Perches0978e012011-04-04 10:06:25 -0700788 pr_err("acpi_install_notify_handler(%s) failed: %s\n",
Henrique de Moraes Holschuh72f19922010-05-16 19:45:48 -0300789 ibm->name, acpi_format_exception(status));
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300790 }
791 return -ENODEV;
792 }
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -0300793 ibm->flags.acpi_notify_installed = 1;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300794 return 0;
795}
796
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -0300797static int __init tpacpi_device_add(struct acpi_device *device)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300798{
799 return 0;
800}
801
Henrique de Moraes Holschuh67001212007-04-21 11:08:25 -0300802static int __init register_tpacpi_subdriver(struct ibm_struct *ibm)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300803{
Henrique de Moraes Holschuh5ae930e2007-04-27 22:00:14 -0300804 int rc;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300805
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -0300806 dbg_printk(TPACPI_DBG_INIT,
807 "registering %s as an ACPI driver\n", ibm->name);
808
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -0300809 BUG_ON(!ibm->acpi);
810
811 ibm->acpi->driver = kzalloc(sizeof(struct acpi_driver), GFP_KERNEL);
812 if (!ibm->acpi->driver) {
Joe Perches0978e012011-04-04 10:06:25 -0700813 pr_err("failed to allocate memory for ibm->acpi->driver\n");
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -0300814 return -ENOMEM;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300815 }
816
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -0200817 sprintf(ibm->acpi->driver->name, "%s_%s", TPACPI_NAME, ibm->name);
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -0300818 ibm->acpi->driver->ids = ibm->acpi->hid;
Thomas Renninger1ba90e32007-07-23 14:44:41 +0200819
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -0300820 ibm->acpi->driver->ops.add = &tpacpi_device_add;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300821
Henrique de Moraes Holschuh5ae930e2007-04-27 22:00:14 -0300822 rc = acpi_bus_register_driver(ibm->acpi->driver);
823 if (rc < 0) {
Joe Perches0978e012011-04-04 10:06:25 -0700824 pr_err("acpi_bus_register_driver(%s) failed: %d\n",
Thomas Renninger1ba90e32007-07-23 14:44:41 +0200825 ibm->name, rc);
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -0300826 kfree(ibm->acpi->driver);
827 ibm->acpi->driver = NULL;
Henrique de Moraes Holschuh5ae930e2007-04-27 22:00:14 -0300828 } else if (!rc)
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -0300829 ibm->flags.acpi_driver_registered = 1;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300830
Henrique de Moraes Holschuh5ae930e2007-04-27 22:00:14 -0300831 return rc;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300832}
833
834
835/****************************************************************************
836 ****************************************************************************
837 *
838 * Procfs Helpers
839 *
840 ****************************************************************************
841 ****************************************************************************/
842
Alexey Dobriyan887965e2009-12-15 21:51:12 -0200843static int dispatch_proc_show(struct seq_file *m, void *v)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300844{
Alexey Dobriyan887965e2009-12-15 21:51:12 -0200845 struct ibm_struct *ibm = m->private;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300846
847 if (!ibm || !ibm->read)
848 return -EINVAL;
Alexey Dobriyan887965e2009-12-15 21:51:12 -0200849 return ibm->read(m);
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300850}
851
Alexey Dobriyan887965e2009-12-15 21:51:12 -0200852static int dispatch_proc_open(struct inode *inode, struct file *file)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300853{
Al Virod9dda782013-03-31 18:16:14 -0400854 return single_open(file, dispatch_proc_show, PDE_DATA(inode));
Alexey Dobriyan887965e2009-12-15 21:51:12 -0200855}
856
857static ssize_t dispatch_proc_write(struct file *file,
858 const char __user *userbuf,
859 size_t count, loff_t *pos)
860{
Al Virod9dda782013-03-31 18:16:14 -0400861 struct ibm_struct *ibm = PDE_DATA(file_inode(file));
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300862 char *kernbuf;
863 int ret;
864
865 if (!ibm || !ibm->write)
866 return -EINVAL;
Michael Buesch5b05d462009-08-01 12:04:19 -0300867 if (count > PAGE_SIZE - 2)
868 return -EINVAL;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300869
870 kernbuf = kmalloc(count + 2, GFP_KERNEL);
871 if (!kernbuf)
872 return -ENOMEM;
873
874 if (copy_from_user(kernbuf, userbuf, count)) {
875 kfree(kernbuf);
876 return -EFAULT;
877 }
878
879 kernbuf[count] = 0;
880 strcat(kernbuf, ",");
881 ret = ibm->write(kernbuf);
882 if (ret == 0)
883 ret = count;
884
885 kfree(kernbuf);
886
887 return ret;
888}
889
Alexey Dobriyan887965e2009-12-15 21:51:12 -0200890static const struct file_operations dispatch_proc_fops = {
891 .owner = THIS_MODULE,
892 .open = dispatch_proc_open,
893 .read = seq_read,
894 .llseek = seq_lseek,
895 .release = single_release,
896 .write = dispatch_proc_write,
897};
898
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899static char *next_cmd(char **cmds)
900{
901 char *start = *cmds;
902 char *end;
903
904 while ((end = strchr(start, ',')) && end == start)
905 start = end + 1;
906
907 if (!end)
908 return NULL;
909
910 *end = 0;
911 *cmds = end + 1;
912 return start;
913}
914
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300915
916/****************************************************************************
917 ****************************************************************************
918 *
Henrique de Moraes Holschuh7f5d1cd2007-07-18 23:45:34 -0300919 * Device model: input, hwmon and platform
Henrique de Moraes Holschuh54ae1502007-04-24 11:48:12 -0300920 *
921 ****************************************************************************
922 ****************************************************************************/
923
Henrique de Moraes Holschuh94954cc62007-07-18 23:45:27 -0300924static struct platform_device *tpacpi_pdev;
Henrique de Moraes Holschuh7fd40022007-09-25 06:38:03 -0300925static struct platform_device *tpacpi_sensors_pdev;
Tony Jones1beeffe2007-08-20 13:46:20 -0700926static struct device *tpacpi_hwmon;
Henrique de Moraes Holschuh7f5d1cd2007-07-18 23:45:34 -0300927static struct input_dev *tpacpi_inputdev;
Henrique de Moraes Holschuh8523ed62007-09-23 11:39:01 -0300928static struct mutex tpacpi_inputdev_send_mutex;
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -0200929static LIST_HEAD(tpacpi_all_drivers);
Henrique de Moraes Holschuhe295e852007-07-18 23:45:37 -0300930
Rafael J. Wysocki3567a4e22012-08-09 23:00:13 +0200931#ifdef CONFIG_PM_SLEEP
Rafael J. Wysocki4959a782012-06-27 23:19:01 +0200932static int tpacpi_suspend_handler(struct device *dev)
Henrique de Moraes Holschuh083f1762008-01-08 13:02:50 -0200933{
934 struct ibm_struct *ibm, *itmp;
935
936 list_for_each_entry_safe(ibm, itmp,
937 &tpacpi_all_drivers,
938 all_drivers) {
939 if (ibm->suspend)
Rafael J. Wysockifd3c3a42012-06-27 23:18:44 +0200940 (ibm->suspend)();
Henrique de Moraes Holschuh083f1762008-01-08 13:02:50 -0200941 }
942
943 return 0;
944}
945
Rafael J. Wysocki4959a782012-06-27 23:19:01 +0200946static int tpacpi_resume_handler(struct device *dev)
Henrique de Moraes Holschuhe295e852007-07-18 23:45:37 -0300947{
948 struct ibm_struct *ibm, *itmp;
949
950 list_for_each_entry_safe(ibm, itmp,
951 &tpacpi_all_drivers,
952 all_drivers) {
953 if (ibm->resume)
954 (ibm->resume)();
955 }
956
957 return 0;
958}
Rafael J. Wysocki3567a4e22012-08-09 23:00:13 +0200959#endif
Henrique de Moraes Holschuhe295e852007-07-18 23:45:37 -0300960
Rafael J. Wysocki4959a782012-06-27 23:19:01 +0200961static SIMPLE_DEV_PM_OPS(tpacpi_pm,
962 tpacpi_suspend_handler, tpacpi_resume_handler);
963
Henrique de Moraes Holschuh90d9d3c2009-01-11 03:01:02 -0200964static void tpacpi_shutdown_handler(struct platform_device *pdev)
965{
966 struct ibm_struct *ibm, *itmp;
967
968 list_for_each_entry_safe(ibm, itmp,
969 &tpacpi_all_drivers,
970 all_drivers) {
971 if (ibm->shutdown)
972 (ibm->shutdown)();
973 }
974}
975
Henrique de Moraes Holschuh54ae1502007-04-24 11:48:12 -0300976static struct platform_driver tpacpi_pdriver = {
977 .driver = {
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -0200978 .name = TPACPI_DRVR_NAME,
Rafael J. Wysocki4959a782012-06-27 23:19:01 +0200979 .pm = &tpacpi_pm,
Henrique de Moraes Holschuh54ae1502007-04-24 11:48:12 -0300980 },
Henrique de Moraes Holschuh90d9d3c2009-01-11 03:01:02 -0200981 .shutdown = tpacpi_shutdown_handler,
Henrique de Moraes Holschuh54ae1502007-04-24 11:48:12 -0300982};
983
Henrique de Moraes Holschuh7fd40022007-09-25 06:38:03 -0300984static struct platform_driver tpacpi_hwmon_pdriver = {
985 .driver = {
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -0200986 .name = TPACPI_HWMON_DRVR_NAME,
Henrique de Moraes Holschuh7fd40022007-09-25 06:38:03 -0300987 },
988};
Henrique de Moraes Holschuh54ae1502007-04-24 11:48:12 -0300989
Henrique de Moraes Holschuh176750d2007-04-24 11:48:13 -0300990/*************************************************************************
Henrique de Moraes Holschuh72523742007-04-24 11:48:14 -0300991 * sysfs support helpers
992 */
993
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -0200994struct attribute_set {
995 unsigned int members, max_members;
996 struct attribute_group group;
997};
998
Henrique de Moraes Holschuh72523742007-04-24 11:48:14 -0300999struct attribute_set_obj {
1000 struct attribute_set s;
1001 struct attribute *a;
1002} __attribute__((packed));
1003
1004static struct attribute_set *create_attr_set(unsigned int max_members,
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02001005 const char *name)
Henrique de Moraes Holschuh72523742007-04-24 11:48:14 -03001006{
1007 struct attribute_set_obj *sobj;
1008
1009 if (max_members == 0)
1010 return NULL;
1011
1012 /* Allocates space for implicit NULL at the end too */
1013 sobj = kzalloc(sizeof(struct attribute_set_obj) +
1014 max_members * sizeof(struct attribute *),
1015 GFP_KERNEL);
1016 if (!sobj)
1017 return NULL;
1018 sobj->s.max_members = max_members;
1019 sobj->s.group.attrs = &sobj->a;
1020 sobj->s.group.name = name;
1021
1022 return &sobj->s;
1023}
1024
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02001025#define destroy_attr_set(_set) \
1026 kfree(_set);
1027
Henrique de Moraes Holschuh72523742007-04-24 11:48:14 -03001028/* not multi-threaded safe, use it in a single thread per set */
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02001029static int add_to_attr_set(struct attribute_set *s, struct attribute *attr)
Henrique de Moraes Holschuh72523742007-04-24 11:48:14 -03001030{
1031 if (!s || !attr)
1032 return -EINVAL;
1033
1034 if (s->members >= s->max_members)
1035 return -ENOMEM;
1036
1037 s->group.attrs[s->members] = attr;
1038 s->members++;
1039
1040 return 0;
1041}
1042
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02001043static int add_many_to_attr_set(struct attribute_set *s,
Henrique de Moraes Holschuh72523742007-04-24 11:48:14 -03001044 struct attribute **attr,
1045 unsigned int count)
1046{
1047 int i, res;
1048
1049 for (i = 0; i < count; i++) {
1050 res = add_to_attr_set(s, attr[i]);
1051 if (res)
1052 return res;
1053 }
1054
1055 return 0;
1056}
1057
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02001058static void delete_attr_set(struct attribute_set *s, struct kobject *kobj)
Henrique de Moraes Holschuh72523742007-04-24 11:48:14 -03001059{
1060 sysfs_remove_group(kobj, &s->group);
1061 destroy_attr_set(s);
1062}
1063
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02001064#define register_attr_set_with_sysfs(_attr_set, _kobj) \
1065 sysfs_create_group(_kobj, &_attr_set->group)
1066
Henrique de Moraes Holschuh72523742007-04-24 11:48:14 -03001067static int parse_strtoul(const char *buf,
1068 unsigned long max, unsigned long *value)
1069{
1070 char *endp;
1071
André Goddard Rosae7d28602009-12-14 18:01:06 -08001072 *value = simple_strtoul(skip_spaces(buf), &endp, 0);
1073 endp = skip_spaces(endp);
Henrique de Moraes Holschuh72523742007-04-24 11:48:14 -03001074 if (*endp || *value > max)
1075 return -EINVAL;
1076
1077 return 0;
1078}
1079
Henrique de Moraes Holschuhd64c81c42008-10-18 14:23:55 -03001080static void tpacpi_disable_brightness_delay(void)
1081{
1082 if (acpi_evalf(hkey_handle, NULL, "PWMS", "qvd", 0))
Joe Perches0978e012011-04-04 10:06:25 -07001083 pr_notice("ACPI backlight control delay disabled\n");
Henrique de Moraes Holschuhd64c81c42008-10-18 14:23:55 -03001084}
1085
Henrique de Moraes Holschuh73a94d82009-04-04 04:25:47 +00001086static void printk_deprecated_attribute(const char * const what,
1087 const char * const details)
1088{
1089 tpacpi_log_usertask("deprecated sysfs attribute");
Joe Perches0978e012011-04-04 10:06:25 -07001090 pr_warn("WARNING: sysfs attribute %s is deprecated and "
Henrique de Moraes Holschuh73a94d82009-04-04 04:25:47 +00001091 "will be removed. %s\n",
1092 what, details);
1093}
1094
Johannes Berg19d337d2009-06-02 13:01:37 +02001095/*************************************************************************
1096 * rfkill and radio control support helpers
1097 */
1098
1099/*
1100 * ThinkPad-ACPI firmware handling model:
1101 *
1102 * WLSW (master wireless switch) is event-driven, and is common to all
1103 * firmware-controlled radios. It cannot be controlled, just monitored,
1104 * as expected. It overrides all radio state in firmware
1105 *
1106 * The kernel, a masked-off hotkey, and WLSW can change the radio state
1107 * (TODO: verify how WLSW interacts with the returned radio state).
1108 *
1109 * The only time there are shadow radio state changes, is when
1110 * masked-off hotkeys are used.
1111 */
1112
1113/*
1114 * Internal driver API for radio state:
1115 *
1116 * int: < 0 = error, otherwise enum tpacpi_rfkill_state
1117 * bool: true means radio blocked (off)
1118 */
1119enum tpacpi_rfkill_state {
1120 TPACPI_RFK_RADIO_OFF = 0,
1121 TPACPI_RFK_RADIO_ON
1122};
1123
1124/* rfkill switches */
1125enum tpacpi_rfk_id {
1126 TPACPI_RFK_BLUETOOTH_SW_ID = 0,
1127 TPACPI_RFK_WWAN_SW_ID,
1128 TPACPI_RFK_UWB_SW_ID,
1129 TPACPI_RFK_SW_MAX
1130};
1131
1132static const char *tpacpi_rfkill_names[] = {
1133 [TPACPI_RFK_BLUETOOTH_SW_ID] = "bluetooth",
1134 [TPACPI_RFK_WWAN_SW_ID] = "wwan",
1135 [TPACPI_RFK_UWB_SW_ID] = "uwb",
1136 [TPACPI_RFK_SW_MAX] = NULL
1137};
1138
1139/* ThinkPad-ACPI rfkill subdriver */
1140struct tpacpi_rfk {
1141 struct rfkill *rfkill;
1142 enum tpacpi_rfk_id id;
1143 const struct tpacpi_rfk_ops *ops;
1144};
1145
1146struct tpacpi_rfk_ops {
1147 /* firmware interface */
1148 int (*get_status)(void);
1149 int (*set_status)(const enum tpacpi_rfkill_state);
1150};
1151
1152static struct tpacpi_rfk *tpacpi_rfkill_switches[TPACPI_RFK_SW_MAX];
1153
1154/* Query FW and update rfkill sw state for a given rfkill switch */
1155static int tpacpi_rfk_update_swstate(const struct tpacpi_rfk *tp_rfk)
1156{
1157 int status;
1158
1159 if (!tp_rfk)
1160 return -ENODEV;
1161
1162 status = (tp_rfk->ops->get_status)();
1163 if (status < 0)
1164 return status;
1165
1166 rfkill_set_sw_state(tp_rfk->rfkill,
1167 (status == TPACPI_RFK_RADIO_OFF));
1168
1169 return status;
1170}
1171
1172/* Query FW and update rfkill sw state for all rfkill switches */
1173static void tpacpi_rfk_update_swstate_all(void)
1174{
1175 unsigned int i;
1176
1177 for (i = 0; i < TPACPI_RFK_SW_MAX; i++)
1178 tpacpi_rfk_update_swstate(tpacpi_rfkill_switches[i]);
1179}
1180
1181/*
1182 * Sync the HW-blocking state of all rfkill switches,
1183 * do notice it causes the rfkill core to schedule uevents
1184 */
1185static void tpacpi_rfk_update_hwblock_state(bool blocked)
1186{
1187 unsigned int i;
1188 struct tpacpi_rfk *tp_rfk;
1189
1190 for (i = 0; i < TPACPI_RFK_SW_MAX; i++) {
1191 tp_rfk = tpacpi_rfkill_switches[i];
1192 if (tp_rfk) {
1193 if (rfkill_set_hw_state(tp_rfk->rfkill,
1194 blocked)) {
1195 /* ignore -- we track sw block */
1196 }
1197 }
1198 }
1199}
1200
1201/* Call to get the WLSW state from the firmware */
1202static int hotkey_get_wlsw(void);
1203
1204/* Call to query WLSW state and update all rfkill switches */
1205static bool tpacpi_rfk_check_hwblock_state(void)
1206{
1207 int res = hotkey_get_wlsw();
1208 int hw_blocked;
1209
1210 /* When unknown or unsupported, we have to assume it is unblocked */
1211 if (res < 0)
1212 return false;
1213
1214 hw_blocked = (res == TPACPI_RFK_RADIO_OFF);
1215 tpacpi_rfk_update_hwblock_state(hw_blocked);
1216
1217 return hw_blocked;
1218}
1219
1220static int tpacpi_rfk_hook_set_block(void *data, bool blocked)
1221{
1222 struct tpacpi_rfk *tp_rfk = data;
1223 int res;
1224
1225 dbg_printk(TPACPI_DBG_RFKILL,
1226 "request to change radio state to %s\n",
1227 blocked ? "blocked" : "unblocked");
1228
1229 /* try to set radio state */
1230 res = (tp_rfk->ops->set_status)(blocked ?
1231 TPACPI_RFK_RADIO_OFF : TPACPI_RFK_RADIO_ON);
1232
1233 /* and update the rfkill core with whatever the FW really did */
1234 tpacpi_rfk_update_swstate(tp_rfk);
1235
1236 return (res < 0) ? res : 0;
1237}
1238
1239static const struct rfkill_ops tpacpi_rfk_rfkill_ops = {
1240 .set_block = tpacpi_rfk_hook_set_block,
1241};
1242
1243static int __init tpacpi_new_rfkill(const enum tpacpi_rfk_id id,
1244 const struct tpacpi_rfk_ops *tp_rfkops,
1245 const enum rfkill_type rfktype,
1246 const char *name,
1247 const bool set_default)
1248{
1249 struct tpacpi_rfk *atp_rfk;
1250 int res;
Alan Jenkins06d5caf2009-06-16 15:39:51 +01001251 bool sw_state = false;
Henrique de Moraes Holschuh5451a922009-12-15 21:51:07 -02001252 bool hw_state;
Alan Jenkins06d5caf2009-06-16 15:39:51 +01001253 int sw_status;
Johannes Berg19d337d2009-06-02 13:01:37 +02001254
1255 BUG_ON(id >= TPACPI_RFK_SW_MAX || tpacpi_rfkill_switches[id]);
1256
Johannes Berg19d337d2009-06-02 13:01:37 +02001257 atp_rfk = kzalloc(sizeof(struct tpacpi_rfk), GFP_KERNEL);
1258 if (atp_rfk)
1259 atp_rfk->rfkill = rfkill_alloc(name,
1260 &tpacpi_pdev->dev,
1261 rfktype,
1262 &tpacpi_rfk_rfkill_ops,
1263 atp_rfk);
1264 if (!atp_rfk || !atp_rfk->rfkill) {
Joe Perches0978e012011-04-04 10:06:25 -07001265 pr_err("failed to allocate memory for rfkill class\n");
Johannes Berg19d337d2009-06-02 13:01:37 +02001266 kfree(atp_rfk);
1267 return -ENOMEM;
1268 }
1269
1270 atp_rfk->id = id;
1271 atp_rfk->ops = tp_rfkops;
1272
Alan Jenkins06d5caf2009-06-16 15:39:51 +01001273 sw_status = (tp_rfkops->get_status)();
1274 if (sw_status < 0) {
Joe Perches0978e012011-04-04 10:06:25 -07001275 pr_err("failed to read initial state for %s, error %d\n",
1276 name, sw_status);
Alan Jenkinsb3fa1322009-06-08 13:27:27 +01001277 } else {
Alan Jenkins06d5caf2009-06-16 15:39:51 +01001278 sw_state = (sw_status == TPACPI_RFK_RADIO_OFF);
Alan Jenkinsb3fa1322009-06-08 13:27:27 +01001279 if (set_default) {
1280 /* try to keep the initial state, since we ask the
1281 * firmware to preserve it across S5 in NVRAM */
Alan Jenkins06d5caf2009-06-16 15:39:51 +01001282 rfkill_init_sw_state(atp_rfk->rfkill, sw_state);
Alan Jenkinsb3fa1322009-06-08 13:27:27 +01001283 }
1284 }
Henrique de Moraes Holschuh5451a922009-12-15 21:51:07 -02001285 hw_state = tpacpi_rfk_check_hwblock_state();
1286 rfkill_set_hw_state(atp_rfk->rfkill, hw_state);
Johannes Berg19d337d2009-06-02 13:01:37 +02001287
1288 res = rfkill_register(atp_rfk->rfkill);
1289 if (res < 0) {
Joe Perches0978e012011-04-04 10:06:25 -07001290 pr_err("failed to register %s rfkill switch: %d\n", name, res);
Johannes Berg19d337d2009-06-02 13:01:37 +02001291 rfkill_destroy(atp_rfk->rfkill);
1292 kfree(atp_rfk);
1293 return res;
1294 }
1295
1296 tpacpi_rfkill_switches[id] = atp_rfk;
Henrique de Moraes Holschuh5451a922009-12-15 21:51:07 -02001297
Joe Perches0978e012011-04-04 10:06:25 -07001298 pr_info("rfkill switch %s: radio is %sblocked\n",
Henrique de Moraes Holschuh5451a922009-12-15 21:51:07 -02001299 name, (sw_state || hw_state) ? "" : "un");
Johannes Berg19d337d2009-06-02 13:01:37 +02001300 return 0;
1301}
1302
1303static void tpacpi_destroy_rfkill(const enum tpacpi_rfk_id id)
1304{
1305 struct tpacpi_rfk *tp_rfk;
1306
1307 BUG_ON(id >= TPACPI_RFK_SW_MAX);
1308
1309 tp_rfk = tpacpi_rfkill_switches[id];
1310 if (tp_rfk) {
1311 rfkill_unregister(tp_rfk->rfkill);
Corentin Chary5f0dadb2009-09-14 12:43:52 +02001312 rfkill_destroy(tp_rfk->rfkill);
Johannes Berg19d337d2009-06-02 13:01:37 +02001313 tpacpi_rfkill_switches[id] = NULL;
1314 kfree(tp_rfk);
1315 }
1316}
1317
Henrique de Moraes Holschuh73a94d82009-04-04 04:25:47 +00001318static void printk_deprecated_rfkill_attribute(const char * const what)
1319{
1320 printk_deprecated_attribute(what,
1321 "Please switch to generic rfkill before year 2010");
1322}
1323
Johannes Berg19d337d2009-06-02 13:01:37 +02001324/* sysfs <radio> enable ------------------------------------------------ */
1325static ssize_t tpacpi_rfk_sysfs_enable_show(const enum tpacpi_rfk_id id,
1326 struct device_attribute *attr,
1327 char *buf)
1328{
1329 int status;
1330
1331 printk_deprecated_rfkill_attribute(attr->attr.name);
1332
1333 /* This is in the ABI... */
1334 if (tpacpi_rfk_check_hwblock_state()) {
1335 status = TPACPI_RFK_RADIO_OFF;
1336 } else {
1337 status = tpacpi_rfk_update_swstate(tpacpi_rfkill_switches[id]);
1338 if (status < 0)
1339 return status;
1340 }
1341
1342 return snprintf(buf, PAGE_SIZE, "%d\n",
1343 (status == TPACPI_RFK_RADIO_ON) ? 1 : 0);
1344}
1345
1346static ssize_t tpacpi_rfk_sysfs_enable_store(const enum tpacpi_rfk_id id,
1347 struct device_attribute *attr,
1348 const char *buf, size_t count)
1349{
1350 unsigned long t;
1351 int res;
1352
1353 printk_deprecated_rfkill_attribute(attr->attr.name);
1354
1355 if (parse_strtoul(buf, 1, &t))
1356 return -EINVAL;
1357
1358 tpacpi_disclose_usertask(attr->attr.name, "set to %ld\n", t);
1359
1360 /* This is in the ABI... */
1361 if (tpacpi_rfk_check_hwblock_state() && !!t)
1362 return -EPERM;
1363
1364 res = tpacpi_rfkill_switches[id]->ops->set_status((!!t) ?
1365 TPACPI_RFK_RADIO_ON : TPACPI_RFK_RADIO_OFF);
1366 tpacpi_rfk_update_swstate(tpacpi_rfkill_switches[id]);
1367
1368 return (res < 0) ? res : count;
1369}
1370
1371/* procfs -------------------------------------------------------------- */
Alexey Dobriyan887965e2009-12-15 21:51:12 -02001372static int tpacpi_rfk_procfs_read(const enum tpacpi_rfk_id id, struct seq_file *m)
Johannes Berg19d337d2009-06-02 13:01:37 +02001373{
Johannes Berg19d337d2009-06-02 13:01:37 +02001374 if (id >= TPACPI_RFK_SW_MAX)
Alexey Dobriyan887965e2009-12-15 21:51:12 -02001375 seq_printf(m, "status:\t\tnot supported\n");
Johannes Berg19d337d2009-06-02 13:01:37 +02001376 else {
1377 int status;
1378
1379 /* This is in the ABI... */
1380 if (tpacpi_rfk_check_hwblock_state()) {
1381 status = TPACPI_RFK_RADIO_OFF;
1382 } else {
1383 status = tpacpi_rfk_update_swstate(
1384 tpacpi_rfkill_switches[id]);
1385 if (status < 0)
1386 return status;
1387 }
1388
Alexey Dobriyan887965e2009-12-15 21:51:12 -02001389 seq_printf(m, "status:\t\t%s\n",
Johannes Berg19d337d2009-06-02 13:01:37 +02001390 (status == TPACPI_RFK_RADIO_ON) ?
1391 "enabled" : "disabled");
Alexey Dobriyan887965e2009-12-15 21:51:12 -02001392 seq_printf(m, "commands:\tenable, disable\n");
Johannes Berg19d337d2009-06-02 13:01:37 +02001393 }
1394
Alexey Dobriyan887965e2009-12-15 21:51:12 -02001395 return 0;
Johannes Berg19d337d2009-06-02 13:01:37 +02001396}
1397
1398static int tpacpi_rfk_procfs_write(const enum tpacpi_rfk_id id, char *buf)
1399{
1400 char *cmd;
1401 int status = -1;
1402 int res = 0;
1403
1404 if (id >= TPACPI_RFK_SW_MAX)
1405 return -ENODEV;
1406
1407 while ((cmd = next_cmd(&buf))) {
1408 if (strlencmp(cmd, "enable") == 0)
1409 status = TPACPI_RFK_RADIO_ON;
1410 else if (strlencmp(cmd, "disable") == 0)
1411 status = TPACPI_RFK_RADIO_OFF;
1412 else
1413 return -EINVAL;
1414 }
1415
1416 if (status != -1) {
1417 tpacpi_disclose_usertask("procfs", "attempt to %s %s\n",
1418 (status == TPACPI_RFK_RADIO_ON) ?
1419 "enable" : "disable",
1420 tpacpi_rfkill_names[id]);
1421 res = (tpacpi_rfkill_switches[id]->ops->set_status)(status);
1422 tpacpi_rfk_update_swstate(tpacpi_rfkill_switches[id]);
1423 }
1424
1425 return res;
1426}
1427
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02001428/*************************************************************************
1429 * thinkpad-acpi driver attributes
1430 */
1431
1432/* interface_version --------------------------------------------------- */
1433static ssize_t tpacpi_driver_interface_version_show(
1434 struct device_driver *drv,
1435 char *buf)
1436{
1437 return snprintf(buf, PAGE_SIZE, "0x%08x\n", TPACPI_SYSFS_VERSION);
1438}
1439
1440static DRIVER_ATTR(interface_version, S_IRUGO,
1441 tpacpi_driver_interface_version_show, NULL);
1442
1443/* debug_level --------------------------------------------------------- */
1444static ssize_t tpacpi_driver_debug_show(struct device_driver *drv,
1445 char *buf)
1446{
1447 return snprintf(buf, PAGE_SIZE, "0x%04x\n", dbg_level);
1448}
1449
1450static ssize_t tpacpi_driver_debug_store(struct device_driver *drv,
1451 const char *buf, size_t count)
1452{
1453 unsigned long t;
1454
1455 if (parse_strtoul(buf, 0xffff, &t))
1456 return -EINVAL;
1457
1458 dbg_level = t;
1459
1460 return count;
1461}
1462
1463static DRIVER_ATTR(debug_level, S_IWUSR | S_IRUGO,
1464 tpacpi_driver_debug_show, tpacpi_driver_debug_store);
1465
1466/* version ------------------------------------------------------------- */
1467static ssize_t tpacpi_driver_version_show(struct device_driver *drv,
1468 char *buf)
1469{
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02001470 return snprintf(buf, PAGE_SIZE, "%s v%s\n",
1471 TPACPI_DESC, TPACPI_VERSION);
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02001472}
1473
1474static DRIVER_ATTR(version, S_IRUGO,
1475 tpacpi_driver_version_show, NULL);
1476
1477/* --------------------------------------------------------------------- */
1478
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02001479#ifdef CONFIG_THINKPAD_ACPI_DEBUGFACILITIES
1480
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02001481/* wlsw_emulstate ------------------------------------------------------ */
1482static ssize_t tpacpi_driver_wlsw_emulstate_show(struct device_driver *drv,
1483 char *buf)
1484{
1485 return snprintf(buf, PAGE_SIZE, "%d\n", !!tpacpi_wlsw_emulstate);
1486}
1487
1488static ssize_t tpacpi_driver_wlsw_emulstate_store(struct device_driver *drv,
1489 const char *buf, size_t count)
1490{
1491 unsigned long t;
1492
1493 if (parse_strtoul(buf, 1, &t))
1494 return -EINVAL;
1495
Johannes Berg19d337d2009-06-02 13:01:37 +02001496 if (tpacpi_wlsw_emulstate != !!t) {
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02001497 tpacpi_wlsw_emulstate = !!t;
Johannes Berg19d337d2009-06-02 13:01:37 +02001498 tpacpi_rfk_update_hwblock_state(!t); /* negative logic */
1499 }
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02001500
1501 return count;
1502}
1503
1504static DRIVER_ATTR(wlsw_emulstate, S_IWUSR | S_IRUGO,
1505 tpacpi_driver_wlsw_emulstate_show,
1506 tpacpi_driver_wlsw_emulstate_store);
1507
1508/* bluetooth_emulstate ------------------------------------------------- */
1509static ssize_t tpacpi_driver_bluetooth_emulstate_show(
1510 struct device_driver *drv,
1511 char *buf)
1512{
1513 return snprintf(buf, PAGE_SIZE, "%d\n", !!tpacpi_bluetooth_emulstate);
1514}
1515
1516static ssize_t tpacpi_driver_bluetooth_emulstate_store(
1517 struct device_driver *drv,
1518 const char *buf, size_t count)
1519{
1520 unsigned long t;
1521
1522 if (parse_strtoul(buf, 1, &t))
1523 return -EINVAL;
1524
1525 tpacpi_bluetooth_emulstate = !!t;
1526
1527 return count;
1528}
1529
1530static DRIVER_ATTR(bluetooth_emulstate, S_IWUSR | S_IRUGO,
1531 tpacpi_driver_bluetooth_emulstate_show,
1532 tpacpi_driver_bluetooth_emulstate_store);
1533
1534/* wwan_emulstate ------------------------------------------------- */
1535static ssize_t tpacpi_driver_wwan_emulstate_show(
1536 struct device_driver *drv,
1537 char *buf)
1538{
1539 return snprintf(buf, PAGE_SIZE, "%d\n", !!tpacpi_wwan_emulstate);
1540}
1541
1542static ssize_t tpacpi_driver_wwan_emulstate_store(
1543 struct device_driver *drv,
1544 const char *buf, size_t count)
1545{
1546 unsigned long t;
1547
1548 if (parse_strtoul(buf, 1, &t))
1549 return -EINVAL;
1550
1551 tpacpi_wwan_emulstate = !!t;
1552
1553 return count;
1554}
1555
1556static DRIVER_ATTR(wwan_emulstate, S_IWUSR | S_IRUGO,
1557 tpacpi_driver_wwan_emulstate_show,
1558 tpacpi_driver_wwan_emulstate_store);
1559
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -02001560/* uwb_emulstate ------------------------------------------------- */
1561static ssize_t tpacpi_driver_uwb_emulstate_show(
1562 struct device_driver *drv,
1563 char *buf)
1564{
1565 return snprintf(buf, PAGE_SIZE, "%d\n", !!tpacpi_uwb_emulstate);
1566}
1567
1568static ssize_t tpacpi_driver_uwb_emulstate_store(
1569 struct device_driver *drv,
1570 const char *buf, size_t count)
1571{
1572 unsigned long t;
1573
1574 if (parse_strtoul(buf, 1, &t))
1575 return -EINVAL;
1576
1577 tpacpi_uwb_emulstate = !!t;
1578
1579 return count;
1580}
1581
1582static DRIVER_ATTR(uwb_emulstate, S_IWUSR | S_IRUGO,
1583 tpacpi_driver_uwb_emulstate_show,
1584 tpacpi_driver_uwb_emulstate_store);
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02001585#endif
1586
1587/* --------------------------------------------------------------------- */
1588
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02001589static struct driver_attribute *tpacpi_driver_attributes[] = {
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02001590 &driver_attr_debug_level, &driver_attr_version,
1591 &driver_attr_interface_version,
1592};
1593
1594static int __init tpacpi_create_driver_attributes(struct device_driver *drv)
1595{
1596 int i, res;
1597
1598 i = 0;
1599 res = 0;
1600 while (!res && i < ARRAY_SIZE(tpacpi_driver_attributes)) {
1601 res = driver_create_file(drv, tpacpi_driver_attributes[i]);
1602 i++;
1603 }
1604
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02001605#ifdef CONFIG_THINKPAD_ACPI_DEBUGFACILITIES
1606 if (!res && dbg_wlswemul)
1607 res = driver_create_file(drv, &driver_attr_wlsw_emulstate);
1608 if (!res && dbg_bluetoothemul)
1609 res = driver_create_file(drv, &driver_attr_bluetooth_emulstate);
1610 if (!res && dbg_wwanemul)
1611 res = driver_create_file(drv, &driver_attr_wwan_emulstate);
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -02001612 if (!res && dbg_uwbemul)
1613 res = driver_create_file(drv, &driver_attr_uwb_emulstate);
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02001614#endif
1615
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02001616 return res;
1617}
1618
1619static void tpacpi_remove_driver_attributes(struct device_driver *drv)
1620{
1621 int i;
1622
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02001623 for (i = 0; i < ARRAY_SIZE(tpacpi_driver_attributes); i++)
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02001624 driver_remove_file(drv, tpacpi_driver_attributes[i]);
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02001625
1626#ifdef THINKPAD_ACPI_DEBUGFACILITIES
1627 driver_remove_file(drv, &driver_attr_wlsw_emulstate);
1628 driver_remove_file(drv, &driver_attr_bluetooth_emulstate);
1629 driver_remove_file(drv, &driver_attr_wwan_emulstate);
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -02001630 driver_remove_file(drv, &driver_attr_uwb_emulstate);
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02001631#endif
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02001632}
1633
Henrique de Moraes Holschuh600a99f2009-09-12 15:22:12 -03001634/*************************************************************************
1635 * Firmware Data
1636 */
1637
1638/*
1639 * Table of recommended minimum BIOS versions
1640 *
1641 * Reasons for listing:
Uwe Kleine-König9ddc5b62010-01-20 17:02:24 +01001642 * 1. Stable BIOS, listed because the unknown amount of
Henrique de Moraes Holschuh600a99f2009-09-12 15:22:12 -03001643 * bugs and bad ACPI behaviour on older versions
1644 *
1645 * 2. BIOS or EC fw with known bugs that trigger on Linux
1646 *
1647 * 3. BIOS with known reduced functionality in older versions
1648 *
1649 * We recommend the latest BIOS and EC version.
1650 * We only support the latest BIOS and EC fw version as a rule.
1651 *
1652 * Sources: IBM ThinkPad Public Web Documents (update changelogs),
1653 * Information from users in ThinkWiki
Henrique de Moraes Holschuhe675aba2009-09-12 15:22:13 -03001654 *
1655 * WARNING: we use this table also to detect that the machine is
1656 * a ThinkPad in some cases, so don't remove entries lightly.
Henrique de Moraes Holschuh600a99f2009-09-12 15:22:12 -03001657 */
1658
1659#define TPV_Q(__v, __id1, __id2, __bv1, __bv2) \
1660 { .vendor = (__v), \
1661 .bios = TPID(__id1, __id2), \
1662 .ec = TPACPI_MATCH_ANY, \
1663 .quirks = TPACPI_MATCH_ANY << 16 \
1664 | (__bv1) << 8 | (__bv2) }
1665
1666#define TPV_Q_X(__v, __bid1, __bid2, __bv1, __bv2, \
Henrique de Moraes Holschuh275014a2009-11-17 14:07:22 -08001667 __eid, __ev1, __ev2) \
Henrique de Moraes Holschuh600a99f2009-09-12 15:22:12 -03001668 { .vendor = (__v), \
1669 .bios = TPID(__bid1, __bid2), \
Henrique de Moraes Holschuh275014a2009-11-17 14:07:22 -08001670 .ec = __eid, \
Henrique de Moraes Holschuh600a99f2009-09-12 15:22:12 -03001671 .quirks = (__ev1) << 24 | (__ev2) << 16 \
1672 | (__bv1) << 8 | (__bv2) }
1673
1674#define TPV_QI0(__id1, __id2, __bv1, __bv2) \
1675 TPV_Q(PCI_VENDOR_ID_IBM, __id1, __id2, __bv1, __bv2)
1676
Henrique de Moraes Holschuh275014a2009-11-17 14:07:22 -08001677/* Outdated IBM BIOSes often lack the EC id string */
Henrique de Moraes Holschuh600a99f2009-09-12 15:22:12 -03001678#define TPV_QI1(__id1, __id2, __bv1, __bv2, __ev1, __ev2) \
1679 TPV_Q_X(PCI_VENDOR_ID_IBM, __id1, __id2, \
Henrique de Moraes Holschuh275014a2009-11-17 14:07:22 -08001680 __bv1, __bv2, TPID(__id1, __id2), \
1681 __ev1, __ev2), \
1682 TPV_Q_X(PCI_VENDOR_ID_IBM, __id1, __id2, \
1683 __bv1, __bv2, TPACPI_MATCH_UNKNOWN, \
1684 __ev1, __ev2)
Henrique de Moraes Holschuh600a99f2009-09-12 15:22:12 -03001685
Henrique de Moraes Holschuh275014a2009-11-17 14:07:22 -08001686/* Outdated IBM BIOSes often lack the EC id string */
Henrique de Moraes Holschuh600a99f2009-09-12 15:22:12 -03001687#define TPV_QI2(__bid1, __bid2, __bv1, __bv2, \
1688 __eid1, __eid2, __ev1, __ev2) \
1689 TPV_Q_X(PCI_VENDOR_ID_IBM, __bid1, __bid2, \
Henrique de Moraes Holschuh275014a2009-11-17 14:07:22 -08001690 __bv1, __bv2, TPID(__eid1, __eid2), \
1691 __ev1, __ev2), \
1692 TPV_Q_X(PCI_VENDOR_ID_IBM, __bid1, __bid2, \
1693 __bv1, __bv2, TPACPI_MATCH_UNKNOWN, \
1694 __ev1, __ev2)
Henrique de Moraes Holschuh600a99f2009-09-12 15:22:12 -03001695
1696#define TPV_QL0(__id1, __id2, __bv1, __bv2) \
1697 TPV_Q(PCI_VENDOR_ID_LENOVO, __id1, __id2, __bv1, __bv2)
1698
1699#define TPV_QL1(__id1, __id2, __bv1, __bv2, __ev1, __ev2) \
1700 TPV_Q_X(PCI_VENDOR_ID_LENOVO, __id1, __id2, \
Henrique de Moraes Holschuh275014a2009-11-17 14:07:22 -08001701 __bv1, __bv2, TPID(__id1, __id2), \
1702 __ev1, __ev2)
Henrique de Moraes Holschuh600a99f2009-09-12 15:22:12 -03001703
1704#define TPV_QL2(__bid1, __bid2, __bv1, __bv2, \
1705 __eid1, __eid2, __ev1, __ev2) \
1706 TPV_Q_X(PCI_VENDOR_ID_LENOVO, __bid1, __bid2, \
Henrique de Moraes Holschuh275014a2009-11-17 14:07:22 -08001707 __bv1, __bv2, TPID(__eid1, __eid2), \
1708 __ev1, __ev2)
Henrique de Moraes Holschuh600a99f2009-09-12 15:22:12 -03001709
1710static const struct tpacpi_quirk tpacpi_bios_version_qtable[] __initconst = {
1711 /* Numeric models ------------------ */
1712 /* FW MODEL BIOS VERS */
1713 TPV_QI0('I', 'M', '6', '5'), /* 570 */
1714 TPV_QI0('I', 'U', '2', '6'), /* 570E */
1715 TPV_QI0('I', 'B', '5', '4'), /* 600 */
1716 TPV_QI0('I', 'H', '4', '7'), /* 600E */
1717 TPV_QI0('I', 'N', '3', '6'), /* 600E */
1718 TPV_QI0('I', 'T', '5', '5'), /* 600X */
1719 TPV_QI0('I', 'D', '4', '8'), /* 770, 770E, 770ED */
1720 TPV_QI0('I', 'I', '4', '2'), /* 770X */
1721 TPV_QI0('I', 'O', '2', '3'), /* 770Z */
1722
1723 /* A-series ------------------------- */
1724 /* FW MODEL BIOS VERS EC VERS */
1725 TPV_QI0('I', 'W', '5', '9'), /* A20m */
1726 TPV_QI0('I', 'V', '6', '9'), /* A20p */
1727 TPV_QI0('1', '0', '2', '6'), /* A21e, A22e */
1728 TPV_QI0('K', 'U', '3', '6'), /* A21e */
1729 TPV_QI0('K', 'X', '3', '6'), /* A21m, A22m */
1730 TPV_QI0('K', 'Y', '3', '8'), /* A21p, A22p */
1731 TPV_QI0('1', 'B', '1', '7'), /* A22e */
1732 TPV_QI0('1', '3', '2', '0'), /* A22m */
1733 TPV_QI0('1', 'E', '7', '3'), /* A30/p (0) */
1734 TPV_QI1('1', 'G', '4', '1', '1', '7'), /* A31/p (0) */
1735 TPV_QI1('1', 'N', '1', '6', '0', '7'), /* A31/p (0) */
1736
1737 /* G-series ------------------------- */
1738 /* FW MODEL BIOS VERS */
1739 TPV_QI0('1', 'T', 'A', '6'), /* G40 */
1740 TPV_QI0('1', 'X', '5', '7'), /* G41 */
1741
1742 /* R-series, T-series --------------- */
1743 /* FW MODEL BIOS VERS EC VERS */
1744 TPV_QI0('1', 'C', 'F', '0'), /* R30 */
1745 TPV_QI0('1', 'F', 'F', '1'), /* R31 */
1746 TPV_QI0('1', 'M', '9', '7'), /* R32 */
1747 TPV_QI0('1', 'O', '6', '1'), /* R40 */
1748 TPV_QI0('1', 'P', '6', '5'), /* R40 */
1749 TPV_QI0('1', 'S', '7', '0'), /* R40e */
1750 TPV_QI1('1', 'R', 'D', 'R', '7', '1'), /* R50/p, R51,
1751 T40/p, T41/p, T42/p (1) */
1752 TPV_QI1('1', 'V', '7', '1', '2', '8'), /* R50e, R51 (1) */
1753 TPV_QI1('7', '8', '7', '1', '0', '6'), /* R51e (1) */
1754 TPV_QI1('7', '6', '6', '9', '1', '6'), /* R52 (1) */
1755 TPV_QI1('7', '0', '6', '9', '2', '8'), /* R52, T43 (1) */
1756
1757 TPV_QI0('I', 'Y', '6', '1'), /* T20 */
1758 TPV_QI0('K', 'Z', '3', '4'), /* T21 */
1759 TPV_QI0('1', '6', '3', '2'), /* T22 */
1760 TPV_QI1('1', 'A', '6', '4', '2', '3'), /* T23 (0) */
1761 TPV_QI1('1', 'I', '7', '1', '2', '0'), /* T30 (0) */
1762 TPV_QI1('1', 'Y', '6', '5', '2', '9'), /* T43/p (1) */
1763
1764 TPV_QL1('7', '9', 'E', '3', '5', '0'), /* T60/p */
1765 TPV_QL1('7', 'C', 'D', '2', '2', '2'), /* R60, R60i */
Henrique de Moraes Holschuh90765c62009-12-09 01:36:23 +00001766 TPV_QL1('7', 'E', 'D', '0', '1', '5'), /* R60e, R60i */
Henrique de Moraes Holschuh600a99f2009-09-12 15:22:12 -03001767
1768 /* BIOS FW BIOS VERS EC FW EC VERS */
1769 TPV_QI2('1', 'W', '9', '0', '1', 'V', '2', '8'), /* R50e (1) */
1770 TPV_QL2('7', 'I', '3', '4', '7', '9', '5', '0'), /* T60/p wide */
1771
1772 /* X-series ------------------------- */
1773 /* FW MODEL BIOS VERS EC VERS */
1774 TPV_QI0('I', 'Z', '9', 'D'), /* X20, X21 */
1775 TPV_QI0('1', 'D', '7', '0'), /* X22, X23, X24 */
1776 TPV_QI1('1', 'K', '4', '8', '1', '8'), /* X30 (0) */
1777 TPV_QI1('1', 'Q', '9', '7', '2', '3'), /* X31, X32 (0) */
1778 TPV_QI1('1', 'U', 'D', '3', 'B', '2'), /* X40 (0) */
1779 TPV_QI1('7', '4', '6', '4', '2', '7'), /* X41 (0) */
1780 TPV_QI1('7', '5', '6', '0', '2', '0'), /* X41t (0) */
1781
Henrique de Moraes Holschuh90765c62009-12-09 01:36:23 +00001782 TPV_QL1('7', 'B', 'D', '7', '4', '0'), /* X60/s */
1783 TPV_QL1('7', 'J', '3', '0', '1', '3'), /* X60t */
Henrique de Moraes Holschuh600a99f2009-09-12 15:22:12 -03001784
1785 /* (0) - older versions lack DMI EC fw string and functionality */
1786 /* (1) - older versions known to lack functionality */
1787};
1788
1789#undef TPV_QL1
1790#undef TPV_QL0
1791#undef TPV_QI2
1792#undef TPV_QI1
1793#undef TPV_QI0
1794#undef TPV_Q_X
1795#undef TPV_Q
1796
1797static void __init tpacpi_check_outdated_fw(void)
1798{
1799 unsigned long fwvers;
1800 u16 ec_version, bios_version;
1801
1802 fwvers = tpacpi_check_quirks(tpacpi_bios_version_qtable,
1803 ARRAY_SIZE(tpacpi_bios_version_qtable));
1804
1805 if (!fwvers)
1806 return;
1807
1808 bios_version = fwvers & 0xffffU;
1809 ec_version = (fwvers >> 16) & 0xffffU;
1810
1811 /* note that unknown versions are set to 0x0000 and we use that */
1812 if ((bios_version > thinkpad_id.bios_release) ||
1813 (ec_version > thinkpad_id.ec_release &&
1814 ec_version != TPACPI_MATCH_ANY)) {
1815 /*
1816 * The changelogs would let us track down the exact
1817 * reason, but it is just too much of a pain to track
1818 * it. We only list BIOSes that are either really
1819 * broken, or really stable to begin with, so it is
1820 * best if the user upgrades the firmware anyway.
1821 */
Joe Perches0978e012011-04-04 10:06:25 -07001822 pr_warn("WARNING: Outdated ThinkPad BIOS/EC firmware\n");
1823 pr_warn("WARNING: This firmware may be missing critical bug "
Henrique de Moraes Holschuh600a99f2009-09-12 15:22:12 -03001824 "fixes and/or important features\n");
1825 }
1826}
1827
Henrique de Moraes Holschuhe675aba2009-09-12 15:22:13 -03001828static bool __init tpacpi_is_fw_known(void)
1829{
1830 return tpacpi_check_quirks(tpacpi_bios_version_qtable,
1831 ARRAY_SIZE(tpacpi_bios_version_qtable)) != 0;
1832}
1833
Henrique de Moraes Holschuh54ae1502007-04-24 11:48:12 -03001834/****************************************************************************
1835 ****************************************************************************
1836 *
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03001837 * Subdrivers
1838 *
1839 ****************************************************************************
1840 ****************************************************************************/
1841
1842/*************************************************************************
Henrique de Moraes Holschuh7a43f782010-05-16 19:45:31 -03001843 * thinkpad-acpi metadata subdriver
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03001844 */
1845
Alexey Dobriyan887965e2009-12-15 21:51:12 -02001846static int thinkpad_acpi_driver_read(struct seq_file *m)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001847{
Alexey Dobriyan887965e2009-12-15 21:51:12 -02001848 seq_printf(m, "driver:\t\t%s\n", TPACPI_DESC);
1849 seq_printf(m, "version:\t%s\n", TPACPI_VERSION);
1850 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001851}
1852
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03001853static struct ibm_struct thinkpad_acpi_driver_data = {
1854 .name = "driver",
1855 .read = thinkpad_acpi_driver_read,
1856};
1857
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03001858/*************************************************************************
1859 * Hotkey subdriver
1860 */
1861
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03001862/*
1863 * ThinkPad firmware event model
1864 *
1865 * The ThinkPad firmware has two main event interfaces: normal ACPI
1866 * notifications (which follow the ACPI standard), and a private event
1867 * interface.
1868 *
1869 * The private event interface also issues events for the hotkeys. As
1870 * the driver gained features, the event handling code ended up being
1871 * built around the hotkey subdriver. This will need to be refactored
1872 * to a more formal event API eventually.
1873 *
1874 * Some "hotkeys" are actually supposed to be used as event reports,
1875 * such as "brightness has changed", "volume has changed", depending on
1876 * the ThinkPad model and how the firmware is operating.
1877 *
1878 * Unlike other classes, hotkey-class events have mask/unmask control on
1879 * non-ancient firmware. However, how it behaves changes a lot with the
1880 * firmware model and version.
1881 */
1882
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02001883enum { /* hot key scan codes (derived from ACPI DSDT) */
1884 TP_ACPI_HOTKEYSCAN_FNF1 = 0,
1885 TP_ACPI_HOTKEYSCAN_FNF2,
1886 TP_ACPI_HOTKEYSCAN_FNF3,
1887 TP_ACPI_HOTKEYSCAN_FNF4,
1888 TP_ACPI_HOTKEYSCAN_FNF5,
1889 TP_ACPI_HOTKEYSCAN_FNF6,
1890 TP_ACPI_HOTKEYSCAN_FNF7,
1891 TP_ACPI_HOTKEYSCAN_FNF8,
1892 TP_ACPI_HOTKEYSCAN_FNF9,
1893 TP_ACPI_HOTKEYSCAN_FNF10,
1894 TP_ACPI_HOTKEYSCAN_FNF11,
1895 TP_ACPI_HOTKEYSCAN_FNF12,
1896 TP_ACPI_HOTKEYSCAN_FNBACKSPACE,
1897 TP_ACPI_HOTKEYSCAN_FNINSERT,
1898 TP_ACPI_HOTKEYSCAN_FNDELETE,
1899 TP_ACPI_HOTKEYSCAN_FNHOME,
1900 TP_ACPI_HOTKEYSCAN_FNEND,
1901 TP_ACPI_HOTKEYSCAN_FNPAGEUP,
1902 TP_ACPI_HOTKEYSCAN_FNPAGEDOWN,
1903 TP_ACPI_HOTKEYSCAN_FNSPACE,
1904 TP_ACPI_HOTKEYSCAN_VOLUMEUP,
1905 TP_ACPI_HOTKEYSCAN_VOLUMEDOWN,
1906 TP_ACPI_HOTKEYSCAN_MUTE,
1907 TP_ACPI_HOTKEYSCAN_THINKPAD,
Henrique de Moraes Holschuh34a656d22010-08-09 23:48:20 -03001908 TP_ACPI_HOTKEYSCAN_UNK1,
1909 TP_ACPI_HOTKEYSCAN_UNK2,
1910 TP_ACPI_HOTKEYSCAN_UNK3,
1911 TP_ACPI_HOTKEYSCAN_UNK4,
1912 TP_ACPI_HOTKEYSCAN_UNK5,
1913 TP_ACPI_HOTKEYSCAN_UNK6,
1914 TP_ACPI_HOTKEYSCAN_UNK7,
1915 TP_ACPI_HOTKEYSCAN_UNK8,
1916
Bastien Nocera6a68d852015-03-02 14:45:31 +01001917 TP_ACPI_HOTKEYSCAN_MUTE2,
1918 TP_ACPI_HOTKEYSCAN_BRIGHTNESS_ZERO,
1919 TP_ACPI_HOTKEYSCAN_CLIPPING_TOOL,
1920 TP_ACPI_HOTKEYSCAN_CLOUD,
1921 TP_ACPI_HOTKEYSCAN_UNK9,
1922 TP_ACPI_HOTKEYSCAN_VOICE,
1923 TP_ACPI_HOTKEYSCAN_UNK10,
1924 TP_ACPI_HOTKEYSCAN_GESTURES,
1925 TP_ACPI_HOTKEYSCAN_UNK11,
1926 TP_ACPI_HOTKEYSCAN_UNK12,
1927 TP_ACPI_HOTKEYSCAN_UNK13,
1928 TP_ACPI_HOTKEYSCAN_CONFIG,
1929 TP_ACPI_HOTKEYSCAN_NEW_TAB,
1930 TP_ACPI_HOTKEYSCAN_RELOAD,
1931 TP_ACPI_HOTKEYSCAN_BACK,
1932 TP_ACPI_HOTKEYSCAN_MIC_DOWN,
1933 TP_ACPI_HOTKEYSCAN_MIC_UP,
1934 TP_ACPI_HOTKEYSCAN_MIC_CANCELLATION,
1935 TP_ACPI_HOTKEYSCAN_CAMERA_MODE,
1936 TP_ACPI_HOTKEYSCAN_ROTATE_DISPLAY,
1937
Henrique de Moraes Holschuh34a656d22010-08-09 23:48:20 -03001938 /* Hotkey keymap size */
1939 TPACPI_HOTKEY_MAP_LEN
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02001940};
1941
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03001942enum { /* Keys/events available through NVRAM polling */
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02001943 TPACPI_HKEY_NVRAM_KNOWN_MASK = 0x00fb88c0U,
1944 TPACPI_HKEY_NVRAM_GOOD_MASK = 0x00fb8000U,
1945};
1946
1947enum { /* Positions of some of the keys in hotkey masks */
1948 TP_ACPI_HKEY_DISPSWTCH_MASK = 1 << TP_ACPI_HOTKEYSCAN_FNF7,
1949 TP_ACPI_HKEY_DISPXPAND_MASK = 1 << TP_ACPI_HOTKEYSCAN_FNF8,
1950 TP_ACPI_HKEY_HIBERNATE_MASK = 1 << TP_ACPI_HOTKEYSCAN_FNF12,
1951 TP_ACPI_HKEY_BRGHTUP_MASK = 1 << TP_ACPI_HOTKEYSCAN_FNHOME,
1952 TP_ACPI_HKEY_BRGHTDWN_MASK = 1 << TP_ACPI_HOTKEYSCAN_FNEND,
1953 TP_ACPI_HKEY_THNKLGHT_MASK = 1 << TP_ACPI_HOTKEYSCAN_FNPAGEUP,
1954 TP_ACPI_HKEY_ZOOM_MASK = 1 << TP_ACPI_HOTKEYSCAN_FNSPACE,
1955 TP_ACPI_HKEY_VOLUP_MASK = 1 << TP_ACPI_HOTKEYSCAN_VOLUMEUP,
1956 TP_ACPI_HKEY_VOLDWN_MASK = 1 << TP_ACPI_HOTKEYSCAN_VOLUMEDOWN,
1957 TP_ACPI_HKEY_MUTE_MASK = 1 << TP_ACPI_HOTKEYSCAN_MUTE,
1958 TP_ACPI_HKEY_THINKPAD_MASK = 1 << TP_ACPI_HOTKEYSCAN_THINKPAD,
1959};
1960
1961enum { /* NVRAM to ACPI HKEY group map */
1962 TP_NVRAM_HKEY_GROUP_HK2 = TP_ACPI_HKEY_THINKPAD_MASK |
1963 TP_ACPI_HKEY_ZOOM_MASK |
1964 TP_ACPI_HKEY_DISPSWTCH_MASK |
1965 TP_ACPI_HKEY_HIBERNATE_MASK,
1966 TP_NVRAM_HKEY_GROUP_BRIGHTNESS = TP_ACPI_HKEY_BRGHTUP_MASK |
1967 TP_ACPI_HKEY_BRGHTDWN_MASK,
1968 TP_NVRAM_HKEY_GROUP_VOLUME = TP_ACPI_HKEY_VOLUP_MASK |
1969 TP_ACPI_HKEY_VOLDWN_MASK |
1970 TP_ACPI_HKEY_MUTE_MASK,
1971};
1972
1973#ifdef CONFIG_THINKPAD_ACPI_HOTKEY_POLL
1974struct tp_nvram_state {
1975 u16 thinkpad_toggle:1;
1976 u16 zoom_toggle:1;
1977 u16 display_toggle:1;
1978 u16 thinklight_toggle:1;
1979 u16 hibernate_toggle:1;
1980 u16 displayexp_toggle:1;
1981 u16 display_state:1;
1982 u16 brightness_toggle:1;
1983 u16 volume_toggle:1;
1984 u16 mute:1;
1985
1986 u8 brightness_level;
1987 u8 volume_level;
1988};
1989
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03001990/* kthread for the hotkey poller */
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02001991static struct task_struct *tpacpi_hotkey_task;
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03001992
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03001993/*
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03001994 * Acquire mutex to write poller control variables as an
1995 * atomic block.
1996 *
1997 * Increment hotkey_config_change when changing them if you
1998 * want the kthread to forget old state.
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03001999 *
2000 * See HOTKEY_CONFIG_CRITICAL_START/HOTKEY_CONFIG_CRITICAL_END
2001 */
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002002static struct mutex hotkey_thread_data_mutex;
2003static unsigned int hotkey_config_change;
2004
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03002005/*
2006 * hotkey poller control variables
2007 *
2008 * Must be atomic or readers will also need to acquire mutex
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002009 *
2010 * HOTKEY_CONFIG_CRITICAL_START/HOTKEY_CONFIG_CRITICAL_END
2011 * should be used only when the changes need to be taken as
2012 * a block, OR when one needs to force the kthread to forget
2013 * old state.
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03002014 */
2015static u32 hotkey_source_mask; /* bit mask 0=ACPI,1=NVRAM */
2016static unsigned int hotkey_poll_freq = 10; /* Hz */
2017
2018#define HOTKEY_CONFIG_CRITICAL_START \
2019 do { \
2020 mutex_lock(&hotkey_thread_data_mutex); \
2021 hotkey_config_change++; \
2022 } while (0);
2023#define HOTKEY_CONFIG_CRITICAL_END \
2024 mutex_unlock(&hotkey_thread_data_mutex);
2025
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002026#else /* CONFIG_THINKPAD_ACPI_HOTKEY_POLL */
2027
2028#define hotkey_source_mask 0U
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03002029#define HOTKEY_CONFIG_CRITICAL_START
2030#define HOTKEY_CONFIG_CRITICAL_END
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002031
2032#endif /* CONFIG_THINKPAD_ACPI_HOTKEY_POLL */
2033
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02002034static struct mutex hotkey_mutex;
2035
Henrique de Moraes Holschuha713b4d2008-01-08 13:02:52 -02002036static enum { /* Reasons for waking up */
2037 TP_ACPI_WAKEUP_NONE = 0, /* None or unknown */
2038 TP_ACPI_WAKEUP_BAYEJ, /* Bay ejection request */
2039 TP_ACPI_WAKEUP_UNDOCK, /* Undock request */
2040} hotkey_wakeup_reason;
2041
2042static int hotkey_autosleep_ack;
2043
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002044static u32 hotkey_orig_mask; /* events the BIOS had enabled */
2045static u32 hotkey_all_mask; /* all events supported in fw */
2046static u32 hotkey_reserved_mask; /* events better left disabled */
2047static u32 hotkey_driver_mask; /* events needed by the driver */
2048static u32 hotkey_user_mask; /* events visible to userspace */
2049static u32 hotkey_acpi_mask; /* events enabled in firmware */
Henrique de Moraes Holschuh6a38abb2007-07-18 23:45:35 -03002050
Henrique de Moraes Holschuhedf0e0e2007-07-18 23:45:44 -03002051static u16 *hotkey_keycode_map;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04002052
Henrique de Moraes Holschuh94954cc62007-07-18 23:45:27 -03002053static struct attribute_set *hotkey_dev_attributes;
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03002054
Henrique de Moraes Holschuh8b468c02009-09-20 14:09:26 -03002055static void tpacpi_driver_event(const unsigned int hkey_event);
2056static void hotkey_driver_event(const unsigned int scancode);
Henrique de Moraes Holschuh7f0cf712010-02-25 21:29:00 -03002057static void hotkey_poll_setup(const bool may_warn);
Henrique de Moraes Holschuh8b468c02009-09-20 14:09:26 -03002058
Henrique de Moraes Holschuh6c231bd2008-02-16 02:17:58 -02002059/* HKEY.MHKG() return bits */
2060#define TP_HOTKEY_TABLET_MASK (1 << 3)
2061
Johannes Berg19d337d2009-06-02 13:01:37 +02002062static int hotkey_get_wlsw(void)
Henrique de Moraes Holschuh74941a62007-07-18 23:45:31 -03002063{
Johannes Berg19d337d2009-06-02 13:01:37 +02002064 int status;
2065
2066 if (!tp_features.hotkey_wlsw)
2067 return -ENODEV;
2068
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02002069#ifdef CONFIG_THINKPAD_ACPI_DEBUGFACILITIES
Johannes Berg19d337d2009-06-02 13:01:37 +02002070 if (dbg_wlswemul)
2071 return (tpacpi_wlsw_emulstate) ?
2072 TPACPI_RFK_RADIO_ON : TPACPI_RFK_RADIO_OFF;
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02002073#endif
Johannes Berg19d337d2009-06-02 13:01:37 +02002074
2075 if (!acpi_evalf(hkey_handle, &status, "WLSW", "d"))
Henrique de Moraes Holschuh74941a62007-07-18 23:45:31 -03002076 return -EIO;
Johannes Berg19d337d2009-06-02 13:01:37 +02002077
2078 return (status) ? TPACPI_RFK_RADIO_ON : TPACPI_RFK_RADIO_OFF;
Henrique de Moraes Holschuh74941a62007-07-18 23:45:31 -03002079}
2080
Henrique de Moraes Holschuh6c231bd2008-02-16 02:17:58 -02002081static int hotkey_get_tablet_mode(int *status)
2082{
2083 int s;
2084
2085 if (!acpi_evalf(hkey_handle, &s, "MHKG", "d"))
2086 return -EIO;
2087
Henrique de Moraes Holschuhcee47f52008-03-04 14:29:21 -08002088 *status = ((s & TP_HOTKEY_TABLET_MASK) != 0);
2089 return 0;
Henrique de Moraes Holschuh6c231bd2008-02-16 02:17:58 -02002090}
2091
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02002092/*
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002093 * Reads current event mask from firmware, and updates
2094 * hotkey_acpi_mask accordingly. Also resets any bits
2095 * from hotkey_user_mask that are unavailable to be
2096 * delivered (shadow requirement of the userspace ABI).
2097 *
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02002098 * Call with hotkey_mutex held
2099 */
2100static int hotkey_mask_get(void)
2101{
2102 if (tp_features.hotkey_mask) {
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002103 u32 m = 0;
2104
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002105 if (!acpi_evalf(hkey_handle, &m, "DHKN", "d"))
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02002106 return -EIO;
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002107
2108 hotkey_acpi_mask = m;
2109 } else {
2110 /* no mask support doesn't mean no event support... */
2111 hotkey_acpi_mask = hotkey_all_mask;
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02002112 }
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002113
2114 /* sync userspace-visible mask */
2115 hotkey_user_mask &= (hotkey_acpi_mask | hotkey_source_mask);
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02002116
2117 return 0;
2118}
2119
Jean Delvaredf6dd1b2015-04-27 09:45:06 +02002120static void hotkey_mask_warn_incomplete_mask(void)
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002121{
2122 /* log only what the user can fix... */
2123 const u32 wantedmask = hotkey_driver_mask &
2124 ~(hotkey_acpi_mask | hotkey_source_mask) &
2125 (hotkey_all_mask | TPACPI_HKEY_NVRAM_KNOWN_MASK);
2126
2127 if (wantedmask)
Joe Perches0978e012011-04-04 10:06:25 -07002128 pr_notice("required events 0x%08x not enabled!\n", wantedmask);
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002129}
2130
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02002131/*
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002132 * Set the firmware mask when supported
2133 *
2134 * Also calls hotkey_mask_get to update hotkey_acpi_mask.
2135 *
2136 * NOTE: does not set bits in hotkey_user_mask, but may reset them.
2137 *
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02002138 * Call with hotkey_mutex held
2139 */
2140static int hotkey_mask_set(u32 mask)
2141{
2142 int i;
2143 int rc = 0;
2144
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002145 const u32 fwmask = mask & ~hotkey_source_mask;
Henrique de Moraes Holschuh92889022008-04-26 01:02:18 -03002146
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002147 if (tp_features.hotkey_mask) {
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02002148 for (i = 0; i < 32; i++) {
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02002149 if (!acpi_evalf(hkey_handle,
2150 NULL, "MHKM", "vdd", i + 1,
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002151 !!(mask & (1 << i)))) {
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02002152 rc = -EIO;
2153 break;
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02002154 }
2155 }
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02002156 }
2157
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002158 /*
2159 * We *must* make an inconditional call to hotkey_mask_get to
2160 * refresh hotkey_acpi_mask and update hotkey_user_mask
2161 *
2162 * Take the opportunity to also log when we cannot _enable_
2163 * a given event.
2164 */
2165 if (!hotkey_mask_get() && !rc && (fwmask & ~hotkey_acpi_mask)) {
Joe Perches0978e012011-04-04 10:06:25 -07002166 pr_notice("asked for hotkey mask 0x%08x, but "
2167 "firmware forced it to 0x%08x\n",
2168 fwmask, hotkey_acpi_mask);
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002169 }
2170
Henrique de Moraes Holschuh6b30eb72009-12-09 01:36:25 +00002171 if (tpacpi_lifecycle != TPACPI_LIFE_EXITING)
2172 hotkey_mask_warn_incomplete_mask();
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002173
2174 return rc;
2175}
2176
2177/*
2178 * Sets hotkey_user_mask and tries to set the firmware mask
2179 *
2180 * Call with hotkey_mutex held
2181 */
2182static int hotkey_user_mask_set(const u32 mask)
2183{
2184 int rc;
2185
2186 /* Give people a chance to notice they are doing something that
2187 * is bound to go boom on their users sooner or later */
2188 if (!tp_warned.hotkey_mask_ff &&
2189 (mask == 0xffff || mask == 0xffffff ||
2190 mask == 0xffffffff)) {
2191 tp_warned.hotkey_mask_ff = 1;
Joe Perches0978e012011-04-04 10:06:25 -07002192 pr_notice("setting the hotkey mask to 0x%08x is likely "
2193 "not the best way to go about it\n", mask);
2194 pr_notice("please consider using the driver defaults, "
2195 "and refer to up-to-date thinkpad-acpi "
2196 "documentation\n");
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002197 }
2198
2199 /* Try to enable what the user asked for, plus whatever we need.
2200 * this syncs everything but won't enable bits in hotkey_user_mask */
2201 rc = hotkey_mask_set((mask | hotkey_driver_mask) & ~hotkey_source_mask);
2202
2203 /* Enable the available bits in hotkey_user_mask */
2204 hotkey_user_mask = mask & (hotkey_acpi_mask | hotkey_source_mask);
2205
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02002206 return rc;
2207}
2208
Henrique de Moraes Holschuh8b468c02009-09-20 14:09:26 -03002209/*
2210 * Sets the driver hotkey mask.
2211 *
2212 * Can be called even if the hotkey subdriver is inactive
2213 */
2214static int tpacpi_hotkey_driver_mask_set(const u32 mask)
2215{
2216 int rc;
2217
2218 /* Do the right thing if hotkey_init has not been called yet */
2219 if (!tp_features.hotkey) {
2220 hotkey_driver_mask = mask;
2221 return 0;
2222 }
2223
2224 mutex_lock(&hotkey_mutex);
2225
2226 HOTKEY_CONFIG_CRITICAL_START
2227 hotkey_driver_mask = mask;
Henrique de Moraes Holschuhb684a362009-09-26 21:42:49 -03002228#ifdef CONFIG_THINKPAD_ACPI_HOTKEY_POLL
Henrique de Moraes Holschuh8b468c02009-09-20 14:09:26 -03002229 hotkey_source_mask |= (mask & ~hotkey_all_mask);
Henrique de Moraes Holschuhb684a362009-09-26 21:42:49 -03002230#endif
Henrique de Moraes Holschuh8b468c02009-09-20 14:09:26 -03002231 HOTKEY_CONFIG_CRITICAL_END
2232
2233 rc = hotkey_mask_set((hotkey_acpi_mask | hotkey_driver_mask) &
2234 ~hotkey_source_mask);
Henrique de Moraes Holschuh7f0cf712010-02-25 21:29:00 -03002235 hotkey_poll_setup(true);
2236
Henrique de Moraes Holschuh8b468c02009-09-20 14:09:26 -03002237 mutex_unlock(&hotkey_mutex);
2238
2239 return rc;
2240}
2241
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02002242static int hotkey_status_get(int *status)
2243{
2244 if (!acpi_evalf(hkey_handle, status, "DHKC", "d"))
2245 return -EIO;
2246
2247 return 0;
2248}
2249
Henrique de Moraes Holschuh2586d562009-04-04 04:25:48 +00002250static int hotkey_status_set(bool enable)
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02002251{
Henrique de Moraes Holschuh2586d562009-04-04 04:25:48 +00002252 if (!acpi_evalf(hkey_handle, NULL, "MHKC", "vd", enable ? 1 : 0))
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02002253 return -EIO;
2254
2255 return 0;
2256}
2257
Henrique de Moraes Holschuh6c231bd2008-02-16 02:17:58 -02002258static void tpacpi_input_send_tabletsw(void)
Henrique de Moraes Holschuhb3ec6f92008-02-16 02:17:55 -02002259{
Henrique de Moraes Holschuh6c231bd2008-02-16 02:17:58 -02002260 int state;
Henrique de Moraes Holschuhb3ec6f92008-02-16 02:17:55 -02002261
Henrique de Moraes Holschuh6c231bd2008-02-16 02:17:58 -02002262 if (tp_features.hotkey_tablet &&
2263 !hotkey_get_tablet_mode(&state)) {
2264 mutex_lock(&tpacpi_inputdev_send_mutex);
Henrique de Moraes Holschuhb3ec6f92008-02-16 02:17:55 -02002265
Henrique de Moraes Holschuh6c231bd2008-02-16 02:17:58 -02002266 input_report_switch(tpacpi_inputdev,
2267 SW_TABLET_MODE, !!state);
2268 input_sync(tpacpi_inputdev);
2269
2270 mutex_unlock(&tpacpi_inputdev_send_mutex);
2271 }
Henrique de Moraes Holschuhb3ec6f92008-02-16 02:17:55 -02002272}
2273
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002274/* Do NOT call without validating scancode first */
2275static void tpacpi_input_send_key(const unsigned int scancode)
Henrique de Moraes Holschuhb7c8c202008-01-08 13:02:40 -02002276{
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002277 const unsigned int keycode = hotkey_keycode_map[scancode];
Henrique de Moraes Holschuhb7c8c202008-01-08 13:02:40 -02002278
2279 if (keycode != KEY_RESERVED) {
2280 mutex_lock(&tpacpi_inputdev_send_mutex);
2281
Seth Forshee5ffba7e2011-01-14 15:54:39 -06002282 input_event(tpacpi_inputdev, EV_MSC, MSC_SCAN, scancode);
Henrique de Moraes Holschuhb7c8c202008-01-08 13:02:40 -02002283 input_report_key(tpacpi_inputdev, keycode, 1);
Henrique de Moraes Holschuhb7c8c202008-01-08 13:02:40 -02002284 input_sync(tpacpi_inputdev);
2285
Seth Forshee5ffba7e2011-01-14 15:54:39 -06002286 input_event(tpacpi_inputdev, EV_MSC, MSC_SCAN, scancode);
Henrique de Moraes Holschuhb7c8c202008-01-08 13:02:40 -02002287 input_report_key(tpacpi_inputdev, keycode, 0);
Henrique de Moraes Holschuhb7c8c202008-01-08 13:02:40 -02002288 input_sync(tpacpi_inputdev);
2289
2290 mutex_unlock(&tpacpi_inputdev_send_mutex);
2291 }
2292}
2293
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002294/* Do NOT call without validating scancode first */
2295static void tpacpi_input_send_key_masked(const unsigned int scancode)
2296{
Henrique de Moraes Holschuh8b468c02009-09-20 14:09:26 -03002297 hotkey_driver_event(scancode);
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002298 if (hotkey_user_mask & (1 << scancode))
2299 tpacpi_input_send_key(scancode);
2300}
2301
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002302#ifdef CONFIG_THINKPAD_ACPI_HOTKEY_POLL
2303static struct tp_acpi_drv_struct ibm_hotkey_acpidriver;
2304
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002305/* Do NOT call without validating scancode first */
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002306static void tpacpi_hotkey_send_key(unsigned int scancode)
2307{
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002308 tpacpi_input_send_key_masked(scancode);
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002309}
2310
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002311static void hotkey_read_nvram(struct tp_nvram_state *n, const u32 m)
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002312{
2313 u8 d;
2314
2315 if (m & TP_NVRAM_HKEY_GROUP_HK2) {
2316 d = nvram_read_byte(TP_NVRAM_ADDR_HK2);
2317 n->thinkpad_toggle = !!(d & TP_NVRAM_MASK_HKT_THINKPAD);
2318 n->zoom_toggle = !!(d & TP_NVRAM_MASK_HKT_ZOOM);
2319 n->display_toggle = !!(d & TP_NVRAM_MASK_HKT_DISPLAY);
2320 n->hibernate_toggle = !!(d & TP_NVRAM_MASK_HKT_HIBERNATE);
2321 }
2322 if (m & TP_ACPI_HKEY_THNKLGHT_MASK) {
2323 d = nvram_read_byte(TP_NVRAM_ADDR_THINKLIGHT);
2324 n->thinklight_toggle = !!(d & TP_NVRAM_MASK_THINKLIGHT);
2325 }
2326 if (m & TP_ACPI_HKEY_DISPXPAND_MASK) {
2327 d = nvram_read_byte(TP_NVRAM_ADDR_VIDEO);
2328 n->displayexp_toggle =
2329 !!(d & TP_NVRAM_MASK_HKT_DISPEXPND);
2330 }
2331 if (m & TP_NVRAM_HKEY_GROUP_BRIGHTNESS) {
2332 d = nvram_read_byte(TP_NVRAM_ADDR_BRIGHTNESS);
2333 n->brightness_level = (d & TP_NVRAM_MASK_LEVEL_BRIGHTNESS)
2334 >> TP_NVRAM_POS_LEVEL_BRIGHTNESS;
2335 n->brightness_toggle =
2336 !!(d & TP_NVRAM_MASK_HKT_BRIGHTNESS);
2337 }
2338 if (m & TP_NVRAM_HKEY_GROUP_VOLUME) {
2339 d = nvram_read_byte(TP_NVRAM_ADDR_MIXER);
2340 n->volume_level = (d & TP_NVRAM_MASK_LEVEL_VOLUME)
2341 >> TP_NVRAM_POS_LEVEL_VOLUME;
2342 n->mute = !!(d & TP_NVRAM_MASK_MUTE);
2343 n->volume_toggle = !!(d & TP_NVRAM_MASK_HKT_VOLUME);
2344 }
2345}
2346
Behan Webstera4d44ba2014-02-12 21:58:46 +01002347#define TPACPI_COMPARE_KEY(__scancode, __member) \
2348do { \
2349 if ((event_mask & (1 << __scancode)) && \
2350 oldn->__member != newn->__member) \
2351 tpacpi_hotkey_send_key(__scancode); \
2352} while (0)
2353
2354#define TPACPI_MAY_SEND_KEY(__scancode) \
2355do { \
2356 if (event_mask & (1 << __scancode)) \
2357 tpacpi_hotkey_send_key(__scancode); \
2358} while (0)
2359
2360static void issue_volchange(const unsigned int oldvol,
2361 const unsigned int newvol,
2362 const u32 event_mask)
2363{
2364 unsigned int i = oldvol;
2365
2366 while (i > newvol) {
2367 TPACPI_MAY_SEND_KEY(TP_ACPI_HOTKEYSCAN_VOLUMEDOWN);
2368 i--;
2369 }
2370 while (i < newvol) {
2371 TPACPI_MAY_SEND_KEY(TP_ACPI_HOTKEYSCAN_VOLUMEUP);
2372 i++;
2373 }
2374}
2375
2376static void issue_brightnesschange(const unsigned int oldbrt,
2377 const unsigned int newbrt,
2378 const u32 event_mask)
2379{
2380 unsigned int i = oldbrt;
2381
2382 while (i > newbrt) {
2383 TPACPI_MAY_SEND_KEY(TP_ACPI_HOTKEYSCAN_FNEND);
2384 i--;
2385 }
2386 while (i < newbrt) {
2387 TPACPI_MAY_SEND_KEY(TP_ACPI_HOTKEYSCAN_FNHOME);
2388 i++;
2389 }
2390}
2391
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002392static void hotkey_compare_and_issue_event(struct tp_nvram_state *oldn,
2393 struct tp_nvram_state *newn,
2394 const u32 event_mask)
2395{
2396
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002397 TPACPI_COMPARE_KEY(TP_ACPI_HOTKEYSCAN_THINKPAD, thinkpad_toggle);
2398 TPACPI_COMPARE_KEY(TP_ACPI_HOTKEYSCAN_FNSPACE, zoom_toggle);
2399 TPACPI_COMPARE_KEY(TP_ACPI_HOTKEYSCAN_FNF7, display_toggle);
2400 TPACPI_COMPARE_KEY(TP_ACPI_HOTKEYSCAN_FNF12, hibernate_toggle);
2401
2402 TPACPI_COMPARE_KEY(TP_ACPI_HOTKEYSCAN_FNPAGEUP, thinklight_toggle);
2403
2404 TPACPI_COMPARE_KEY(TP_ACPI_HOTKEYSCAN_FNF8, displayexp_toggle);
2405
Henrique de Moraes Holschuh5d756db2010-05-16 19:45:28 -03002406 /*
2407 * Handle volume
2408 *
2409 * This code is supposed to duplicate the IBM firmware behaviour:
2410 * - Pressing MUTE issues mute hotkey message, even when already mute
2411 * - Pressing Volume up/down issues volume up/down hotkey messages,
Lucas De Marchic8440332011-03-17 17:18:22 -03002412 * even when already at maximum or minimum volume
Henrique de Moraes Holschuh5d756db2010-05-16 19:45:28 -03002413 * - The act of unmuting issues volume up/down notification,
2414 * depending which key was used to unmute
2415 *
2416 * We are constrained to what the NVRAM can tell us, which is not much
2417 * and certainly not enough if more than one volume hotkey was pressed
2418 * since the last poll cycle.
2419 *
2420 * Just to make our life interesting, some newer Lenovo ThinkPads have
2421 * bugs in the BIOS and may fail to update volume_toggle properly.
2422 */
2423 if (newn->mute) {
2424 /* muted */
2425 if (!oldn->mute ||
2426 oldn->volume_toggle != newn->volume_toggle ||
2427 oldn->volume_level != newn->volume_level) {
2428 /* recently muted, or repeated mute keypress, or
2429 * multiple presses ending in mute */
Behan Webstera4d44ba2014-02-12 21:58:46 +01002430 issue_volchange(oldn->volume_level, newn->volume_level,
2431 event_mask);
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002432 TPACPI_MAY_SEND_KEY(TP_ACPI_HOTKEYSCAN_MUTE);
2433 }
Henrique de Moraes Holschuh5d756db2010-05-16 19:45:28 -03002434 } else {
2435 /* unmute */
2436 if (oldn->mute) {
2437 /* recently unmuted, issue 'unmute' keypress */
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002438 TPACPI_MAY_SEND_KEY(TP_ACPI_HOTKEYSCAN_VOLUMEUP);
Henrique de Moraes Holschuh5d756db2010-05-16 19:45:28 -03002439 }
2440 if (oldn->volume_level != newn->volume_level) {
Behan Webstera4d44ba2014-02-12 21:58:46 +01002441 issue_volchange(oldn->volume_level, newn->volume_level,
2442 event_mask);
Henrique de Moraes Holschuh5d756db2010-05-16 19:45:28 -03002443 } else if (oldn->volume_toggle != newn->volume_toggle) {
2444 /* repeated vol up/down keypress at end of scale ? */
2445 if (newn->volume_level == 0)
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002446 TPACPI_MAY_SEND_KEY(TP_ACPI_HOTKEYSCAN_VOLUMEDOWN);
Henrique de Moraes Holschuh5d756db2010-05-16 19:45:28 -03002447 else if (newn->volume_level >= TP_NVRAM_LEVEL_VOLUME_MAX)
2448 TPACPI_MAY_SEND_KEY(TP_ACPI_HOTKEYSCAN_VOLUMEUP);
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002449 }
2450 }
2451
2452 /* handle brightness */
Henrique de Moraes Holschuh28999022010-05-16 19:45:36 -03002453 if (oldn->brightness_level != newn->brightness_level) {
2454 issue_brightnesschange(oldn->brightness_level,
Behan Webstera4d44ba2014-02-12 21:58:46 +01002455 newn->brightness_level, event_mask);
Henrique de Moraes Holschuh28999022010-05-16 19:45:36 -03002456 } else if (oldn->brightness_toggle != newn->brightness_toggle) {
2457 /* repeated key presses that didn't change state */
2458 if (newn->brightness_level == 0)
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002459 TPACPI_MAY_SEND_KEY(TP_ACPI_HOTKEYSCAN_FNEND);
Henrique de Moraes Holschuh28999022010-05-16 19:45:36 -03002460 else if (newn->brightness_level >= bright_maxlvl
2461 && !tp_features.bright_unkfw)
2462 TPACPI_MAY_SEND_KEY(TP_ACPI_HOTKEYSCAN_FNHOME);
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002463 }
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002464
2465#undef TPACPI_COMPARE_KEY
2466#undef TPACPI_MAY_SEND_KEY
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002467}
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002468
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002469/*
2470 * Polling driver
2471 *
2472 * We track all events in hotkey_source_mask all the time, since
2473 * most of them are edge-based. We only issue those requested by
2474 * hotkey_user_mask or hotkey_driver_mask, though.
2475 */
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002476static int hotkey_kthread(void *data)
2477{
2478 struct tp_nvram_state s[2];
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002479 u32 poll_mask, event_mask;
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002480 unsigned int si, so;
2481 unsigned long t;
Tejun Heo8a32c442011-11-21 12:32:23 -08002482 unsigned int change_detector;
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03002483 unsigned int poll_freq;
Tejun Heo8a32c442011-11-21 12:32:23 -08002484 bool was_frozen;
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002485
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002486 if (tpacpi_lifecycle == TPACPI_LIFE_EXITING)
2487 goto exit;
2488
2489 set_freezable();
2490
2491 so = 0;
2492 si = 1;
2493 t = 0;
2494
2495 /* Initial state for compares */
2496 mutex_lock(&hotkey_thread_data_mutex);
2497 change_detector = hotkey_config_change;
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002498 poll_mask = hotkey_source_mask;
2499 event_mask = hotkey_source_mask &
2500 (hotkey_driver_mask | hotkey_user_mask);
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03002501 poll_freq = hotkey_poll_freq;
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002502 mutex_unlock(&hotkey_thread_data_mutex);
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002503 hotkey_read_nvram(&s[so], poll_mask);
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002504
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03002505 while (!kthread_should_stop()) {
2506 if (t == 0) {
2507 if (likely(poll_freq))
2508 t = 1000/poll_freq;
2509 else
2510 t = 100; /* should never happen... */
2511 }
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002512 t = msleep_interruptible(t);
Tejun Heo8a32c442011-11-21 12:32:23 -08002513 if (unlikely(kthread_freezable_should_stop(&was_frozen)))
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002514 break;
Tejun Heo8a32c442011-11-21 12:32:23 -08002515
2516 if (t > 0 && !was_frozen)
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002517 continue;
2518
2519 mutex_lock(&hotkey_thread_data_mutex);
Tejun Heo8a32c442011-11-21 12:32:23 -08002520 if (was_frozen || hotkey_config_change != change_detector) {
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002521 /* forget old state on thaw or config change */
2522 si = so;
2523 t = 0;
2524 change_detector = hotkey_config_change;
2525 }
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002526 poll_mask = hotkey_source_mask;
2527 event_mask = hotkey_source_mask &
2528 (hotkey_driver_mask | hotkey_user_mask);
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03002529 poll_freq = hotkey_poll_freq;
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002530 mutex_unlock(&hotkey_thread_data_mutex);
2531
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002532 if (likely(poll_mask)) {
2533 hotkey_read_nvram(&s[si], poll_mask);
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002534 if (likely(si != so)) {
2535 hotkey_compare_and_issue_event(&s[so], &s[si],
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002536 event_mask);
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002537 }
2538 }
2539
2540 so = si;
2541 si ^= 1;
2542 }
2543
2544exit:
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002545 return 0;
2546}
2547
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03002548/* call with hotkey_mutex held */
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002549static void hotkey_poll_stop_sync(void)
2550{
2551 if (tpacpi_hotkey_task) {
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002552 kthread_stop(tpacpi_hotkey_task);
2553 tpacpi_hotkey_task = NULL;
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002554 }
2555}
2556
2557/* call with hotkey_mutex held */
Henrique de Moraes Holschuh7f0cf712010-02-25 21:29:00 -03002558static void hotkey_poll_setup(const bool may_warn)
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002559{
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002560 const u32 poll_driver_mask = hotkey_driver_mask & hotkey_source_mask;
2561 const u32 poll_user_mask = hotkey_user_mask & hotkey_source_mask;
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03002562
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002563 if (hotkey_poll_freq > 0 &&
2564 (poll_driver_mask ||
2565 (poll_user_mask && tpacpi_inputdev->users > 0))) {
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002566 if (!tpacpi_hotkey_task) {
2567 tpacpi_hotkey_task = kthread_run(hotkey_kthread,
Henrique de Moraes Holschuh95e57ab2008-04-26 01:02:22 -03002568 NULL, TPACPI_NVRAM_KTHREAD_NAME);
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002569 if (IS_ERR(tpacpi_hotkey_task)) {
2570 tpacpi_hotkey_task = NULL;
Joe Perches0978e012011-04-04 10:06:25 -07002571 pr_err("could not create kernel thread "
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002572 "for hotkey polling\n");
2573 }
2574 }
2575 } else {
2576 hotkey_poll_stop_sync();
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002577 if (may_warn && (poll_driver_mask || poll_user_mask) &&
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03002578 hotkey_poll_freq == 0) {
Joe Perches0978e012011-04-04 10:06:25 -07002579 pr_notice("hot keys 0x%08x and/or events 0x%08x "
2580 "require polling, which is currently "
2581 "disabled\n",
2582 poll_user_mask, poll_driver_mask);
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002583 }
2584 }
2585}
2586
Henrique de Moraes Holschuh7f0cf712010-02-25 21:29:00 -03002587static void hotkey_poll_setup_safe(const bool may_warn)
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002588{
2589 mutex_lock(&hotkey_mutex);
2590 hotkey_poll_setup(may_warn);
2591 mutex_unlock(&hotkey_mutex);
2592}
2593
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03002594/* call with hotkey_mutex held */
2595static void hotkey_poll_set_freq(unsigned int freq)
2596{
2597 if (!freq)
2598 hotkey_poll_stop_sync();
2599
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03002600 hotkey_poll_freq = freq;
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03002601}
2602
Henrique de Moraes Holschuh1bc6b9c2008-02-16 02:17:52 -02002603#else /* CONFIG_THINKPAD_ACPI_HOTKEY_POLL */
2604
Henrique de Moraes Holschuh7f0cf712010-02-25 21:29:00 -03002605static void hotkey_poll_setup(const bool __unused)
2606{
2607}
2608
2609static void hotkey_poll_setup_safe(const bool __unused)
Henrique de Moraes Holschuh1bc6b9c2008-02-16 02:17:52 -02002610{
2611}
2612
2613#endif /* CONFIG_THINKPAD_ACPI_HOTKEY_POLL */
2614
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002615static int hotkey_inputdev_open(struct input_dev *dev)
2616{
2617 switch (tpacpi_lifecycle) {
2618 case TPACPI_LIFE_INIT:
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002619 case TPACPI_LIFE_RUNNING:
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03002620 hotkey_poll_setup_safe(false);
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002621 return 0;
Henrique de Moraes Holschuhb589ea42010-02-25 21:28:58 -03002622 case TPACPI_LIFE_EXITING:
2623 return -EBUSY;
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002624 }
2625
2626 /* Should only happen if tpacpi_lifecycle is corrupt */
2627 BUG();
2628 return -EBUSY;
2629}
2630
2631static void hotkey_inputdev_close(struct input_dev *dev)
2632{
2633 /* disable hotkey polling when possible */
Henrique de Moraes Holschuhb589ea42010-02-25 21:28:58 -03002634 if (tpacpi_lifecycle != TPACPI_LIFE_EXITING &&
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002635 !(hotkey_source_mask & hotkey_driver_mask))
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03002636 hotkey_poll_setup_safe(false);
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002637}
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002638
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03002639/* sysfs hotkey enable ------------------------------------------------- */
2640static ssize_t hotkey_enable_show(struct device *dev,
2641 struct device_attribute *attr,
2642 char *buf)
2643{
Henrique de Moraes Holschuhae92bd12007-07-18 23:45:29 -03002644 int res, status;
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03002645
Henrique de Moraes Holschuh2586d562009-04-04 04:25:48 +00002646 printk_deprecated_attribute("hotkey_enable",
2647 "Hotkey reporting is always enabled");
2648
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02002649 res = hotkey_status_get(&status);
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03002650 if (res)
2651 return res;
2652
2653 return snprintf(buf, PAGE_SIZE, "%d\n", status);
2654}
2655
2656static ssize_t hotkey_enable_store(struct device *dev,
2657 struct device_attribute *attr,
2658 const char *buf, size_t count)
2659{
2660 unsigned long t;
Henrique de Moraes Holschuh2586d562009-04-04 04:25:48 +00002661
2662 printk_deprecated_attribute("hotkey_enable",
2663 "Hotkeys can be disabled through hotkey_mask");
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03002664
2665 if (parse_strtoul(buf, 1, &t))
2666 return -EINVAL;
2667
Henrique de Moraes Holschuh2586d562009-04-04 04:25:48 +00002668 if (t == 0)
2669 return -EPERM;
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03002670
Henrique de Moraes Holschuh2586d562009-04-04 04:25:48 +00002671 return count;
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03002672}
2673
Bastien Nocerab4dd04ac2015-03-02 18:40:50 +01002674static DEVICE_ATTR_RW(hotkey_enable);
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03002675
2676/* sysfs hotkey mask --------------------------------------------------- */
2677static ssize_t hotkey_mask_show(struct device *dev,
2678 struct device_attribute *attr,
2679 char *buf)
2680{
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002681 return snprintf(buf, PAGE_SIZE, "0x%08x\n", hotkey_user_mask);
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03002682}
2683
2684static ssize_t hotkey_mask_store(struct device *dev,
2685 struct device_attribute *attr,
2686 const char *buf, size_t count)
2687{
2688 unsigned long t;
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02002689 int res;
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03002690
Henrique de Moraes Holschuhae92bd12007-07-18 23:45:29 -03002691 if (parse_strtoul(buf, 0xffffffffUL, &t))
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03002692 return -EINVAL;
2693
Henrique de Moraes Holschuh7646ea82009-01-11 03:01:04 -02002694 if (mutex_lock_killable(&hotkey_mutex))
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02002695 return -ERESTARTSYS;
2696
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002697 res = hotkey_user_mask_set(t);
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002698
2699#ifdef CONFIG_THINKPAD_ACPI_HOTKEY_POLL
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03002700 hotkey_poll_setup(true);
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002701#endif
2702
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02002703 mutex_unlock(&hotkey_mutex);
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03002704
Henrique de Moraes Holschuh56e2c202009-04-04 04:25:51 +00002705 tpacpi_disclose_usertask("hotkey_mask", "set to 0x%08lx\n", t);
2706
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03002707 return (res) ? res : count;
2708}
2709
Bastien Nocerab4dd04ac2015-03-02 18:40:50 +01002710static DEVICE_ATTR_RW(hotkey_mask);
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03002711
2712/* sysfs hotkey bios_enabled ------------------------------------------- */
2713static ssize_t hotkey_bios_enabled_show(struct device *dev,
2714 struct device_attribute *attr,
2715 char *buf)
2716{
Henrique de Moraes Holschuh2586d562009-04-04 04:25:48 +00002717 return sprintf(buf, "0\n");
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03002718}
2719
Bastien Nocerab4dd04ac2015-03-02 18:40:50 +01002720static DEVICE_ATTR_RO(hotkey_bios_enabled);
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03002721
2722/* sysfs hotkey bios_mask ---------------------------------------------- */
2723static ssize_t hotkey_bios_mask_show(struct device *dev,
2724 struct device_attribute *attr,
2725 char *buf)
2726{
Henrique de Moraes Holschuh06777be2009-09-12 15:22:15 -03002727 printk_deprecated_attribute("hotkey_bios_mask",
2728 "This attribute is useless.");
Henrique de Moraes Holschuhae92bd12007-07-18 23:45:29 -03002729 return snprintf(buf, PAGE_SIZE, "0x%08x\n", hotkey_orig_mask);
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03002730}
2731
Bastien Nocerab4dd04ac2015-03-02 18:40:50 +01002732static DEVICE_ATTR_RO(hotkey_bios_mask);
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03002733
Henrique de Moraes Holschuh9b010de2007-07-18 23:45:30 -03002734/* sysfs hotkey all_mask ----------------------------------------------- */
2735static ssize_t hotkey_all_mask_show(struct device *dev,
2736 struct device_attribute *attr,
2737 char *buf)
2738{
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002739 return snprintf(buf, PAGE_SIZE, "0x%08x\n",
2740 hotkey_all_mask | hotkey_source_mask);
Henrique de Moraes Holschuh9b010de2007-07-18 23:45:30 -03002741}
2742
Bastien Nocerab4dd04ac2015-03-02 18:40:50 +01002743static DEVICE_ATTR_RO(hotkey_all_mask);
Henrique de Moraes Holschuh9b010de2007-07-18 23:45:30 -03002744
2745/* sysfs hotkey recommended_mask --------------------------------------- */
2746static ssize_t hotkey_recommended_mask_show(struct device *dev,
2747 struct device_attribute *attr,
2748 char *buf)
2749{
2750 return snprintf(buf, PAGE_SIZE, "0x%08x\n",
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002751 (hotkey_all_mask | hotkey_source_mask)
2752 & ~hotkey_reserved_mask);
Henrique de Moraes Holschuh9b010de2007-07-18 23:45:30 -03002753}
2754
Bastien Nocerab4dd04ac2015-03-02 18:40:50 +01002755static DEVICE_ATTR_RO(hotkey_recommended_mask);
Henrique de Moraes Holschuh9b010de2007-07-18 23:45:30 -03002756
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002757#ifdef CONFIG_THINKPAD_ACPI_HOTKEY_POLL
2758
2759/* sysfs hotkey hotkey_source_mask ------------------------------------- */
2760static ssize_t hotkey_source_mask_show(struct device *dev,
2761 struct device_attribute *attr,
2762 char *buf)
2763{
2764 return snprintf(buf, PAGE_SIZE, "0x%08x\n", hotkey_source_mask);
2765}
2766
2767static ssize_t hotkey_source_mask_store(struct device *dev,
2768 struct device_attribute *attr,
2769 const char *buf, size_t count)
2770{
2771 unsigned long t;
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002772 u32 r_ev;
2773 int rc;
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002774
2775 if (parse_strtoul(buf, 0xffffffffUL, &t) ||
2776 ((t & ~TPACPI_HKEY_NVRAM_KNOWN_MASK) != 0))
2777 return -EINVAL;
2778
Henrique de Moraes Holschuh7646ea82009-01-11 03:01:04 -02002779 if (mutex_lock_killable(&hotkey_mutex))
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002780 return -ERESTARTSYS;
2781
2782 HOTKEY_CONFIG_CRITICAL_START
2783 hotkey_source_mask = t;
2784 HOTKEY_CONFIG_CRITICAL_END
2785
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002786 rc = hotkey_mask_set((hotkey_user_mask | hotkey_driver_mask) &
2787 ~hotkey_source_mask);
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03002788 hotkey_poll_setup(true);
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002789
2790 /* check if events needed by the driver got disabled */
2791 r_ev = hotkey_driver_mask & ~(hotkey_acpi_mask & hotkey_all_mask)
2792 & ~hotkey_source_mask & TPACPI_HKEY_NVRAM_KNOWN_MASK;
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002793
2794 mutex_unlock(&hotkey_mutex);
2795
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002796 if (rc < 0)
Joe Perches0978e012011-04-04 10:06:25 -07002797 pr_err("hotkey_source_mask: "
2798 "failed to update the firmware event mask!\n");
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002799
2800 if (r_ev)
Joe Perches0978e012011-04-04 10:06:25 -07002801 pr_notice("hotkey_source_mask: "
2802 "some important events were disabled: 0x%04x\n",
2803 r_ev);
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002804
Henrique de Moraes Holschuh56e2c202009-04-04 04:25:51 +00002805 tpacpi_disclose_usertask("hotkey_source_mask", "set to 0x%08lx\n", t);
2806
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002807 return (rc < 0) ? rc : count;
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002808}
2809
Bastien Nocerab4dd04ac2015-03-02 18:40:50 +01002810static DEVICE_ATTR_RW(hotkey_source_mask);
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002811
2812/* sysfs hotkey hotkey_poll_freq --------------------------------------- */
2813static ssize_t hotkey_poll_freq_show(struct device *dev,
2814 struct device_attribute *attr,
2815 char *buf)
2816{
2817 return snprintf(buf, PAGE_SIZE, "%d\n", hotkey_poll_freq);
2818}
2819
2820static ssize_t hotkey_poll_freq_store(struct device *dev,
2821 struct device_attribute *attr,
2822 const char *buf, size_t count)
2823{
2824 unsigned long t;
2825
2826 if (parse_strtoul(buf, 25, &t))
2827 return -EINVAL;
2828
Henrique de Moraes Holschuh7646ea82009-01-11 03:01:04 -02002829 if (mutex_lock_killable(&hotkey_mutex))
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002830 return -ERESTARTSYS;
2831
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03002832 hotkey_poll_set_freq(t);
2833 hotkey_poll_setup(true);
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002834
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002835 mutex_unlock(&hotkey_mutex);
2836
Henrique de Moraes Holschuh56e2c202009-04-04 04:25:51 +00002837 tpacpi_disclose_usertask("hotkey_poll_freq", "set to %lu\n", t);
2838
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002839 return count;
2840}
2841
Bastien Nocerab4dd04ac2015-03-02 18:40:50 +01002842static DEVICE_ATTR_RW(hotkey_poll_freq);
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002843
2844#endif /* CONFIG_THINKPAD_ACPI_HOTKEY_POLL */
2845
Henrique de Moraes Holschuh50ebec02008-01-08 13:02:55 -02002846/* sysfs hotkey radio_sw (pollable) ------------------------------------ */
Henrique de Moraes Holschuh74941a62007-07-18 23:45:31 -03002847static ssize_t hotkey_radio_sw_show(struct device *dev,
2848 struct device_attribute *attr,
2849 char *buf)
2850{
Johannes Berg19d337d2009-06-02 13:01:37 +02002851 int res;
2852 res = hotkey_get_wlsw();
Henrique de Moraes Holschuh74941a62007-07-18 23:45:31 -03002853 if (res < 0)
2854 return res;
2855
Johannes Berg19d337d2009-06-02 13:01:37 +02002856 /* Opportunistic update */
2857 tpacpi_rfk_update_hwblock_state((res == TPACPI_RFK_RADIO_OFF));
2858
2859 return snprintf(buf, PAGE_SIZE, "%d\n",
2860 (res == TPACPI_RFK_RADIO_OFF) ? 0 : 1);
Henrique de Moraes Holschuh74941a62007-07-18 23:45:31 -03002861}
2862
Bastien Nocerab4dd04ac2015-03-02 18:40:50 +01002863static DEVICE_ATTR_RO(hotkey_radio_sw);
Henrique de Moraes Holschuh74941a62007-07-18 23:45:31 -03002864
Henrique de Moraes Holschuh50ebec02008-01-08 13:02:55 -02002865static void hotkey_radio_sw_notify_change(void)
2866{
2867 if (tp_features.hotkey_wlsw)
2868 sysfs_notify(&tpacpi_pdev->dev.kobj, NULL,
2869 "hotkey_radio_sw");
2870}
2871
Henrique de Moraes Holschuh6c231bd2008-02-16 02:17:58 -02002872/* sysfs hotkey tablet mode (pollable) --------------------------------- */
2873static ssize_t hotkey_tablet_mode_show(struct device *dev,
2874 struct device_attribute *attr,
2875 char *buf)
2876{
2877 int res, s;
2878 res = hotkey_get_tablet_mode(&s);
2879 if (res < 0)
2880 return res;
2881
2882 return snprintf(buf, PAGE_SIZE, "%d\n", !!s);
2883}
2884
Bastien Nocerab4dd04ac2015-03-02 18:40:50 +01002885static DEVICE_ATTR_RO(hotkey_tablet_mode);
Henrique de Moraes Holschuh6c231bd2008-02-16 02:17:58 -02002886
2887static void hotkey_tablet_mode_notify_change(void)
2888{
2889 if (tp_features.hotkey_tablet)
2890 sysfs_notify(&tpacpi_pdev->dev.kobj, NULL,
2891 "hotkey_tablet_mode");
2892}
2893
Henrique de Moraes Holschuh50ebec02008-01-08 13:02:55 -02002894/* sysfs wakeup reason (pollable) -------------------------------------- */
Henrique de Moraes Holschuha713b4d2008-01-08 13:02:52 -02002895static ssize_t hotkey_wakeup_reason_show(struct device *dev,
2896 struct device_attribute *attr,
2897 char *buf)
2898{
2899 return snprintf(buf, PAGE_SIZE, "%d\n", hotkey_wakeup_reason);
2900}
2901
Bjørn Mork5fb73bc2015-05-19 19:45:03 +02002902static DEVICE_ATTR(wakeup_reason, S_IRUGO, hotkey_wakeup_reason_show, NULL);
Henrique de Moraes Holschuha713b4d2008-01-08 13:02:52 -02002903
Adrian Bunk1d5a2b52008-02-13 23:30:06 +02002904static void hotkey_wakeup_reason_notify_change(void)
Henrique de Moraes Holschuh50ebec02008-01-08 13:02:55 -02002905{
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002906 sysfs_notify(&tpacpi_pdev->dev.kobj, NULL,
2907 "wakeup_reason");
Henrique de Moraes Holschuh50ebec02008-01-08 13:02:55 -02002908}
2909
2910/* sysfs wakeup hotunplug_complete (pollable) -------------------------- */
Henrique de Moraes Holschuha713b4d2008-01-08 13:02:52 -02002911static ssize_t hotkey_wakeup_hotunplug_complete_show(struct device *dev,
2912 struct device_attribute *attr,
2913 char *buf)
2914{
2915 return snprintf(buf, PAGE_SIZE, "%d\n", hotkey_autosleep_ack);
2916}
2917
Bjørn Mork5fb73bc2015-05-19 19:45:03 +02002918static DEVICE_ATTR(wakeup_hotunplug_complete, S_IRUGO,
2919 hotkey_wakeup_hotunplug_complete_show, NULL);
Henrique de Moraes Holschuha713b4d2008-01-08 13:02:52 -02002920
Adrian Bunk1d5a2b52008-02-13 23:30:06 +02002921static void hotkey_wakeup_hotunplug_complete_notify_change(void)
Henrique de Moraes Holschuh50ebec02008-01-08 13:02:55 -02002922{
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002923 sysfs_notify(&tpacpi_pdev->dev.kobj, NULL,
2924 "wakeup_hotunplug_complete");
Henrique de Moraes Holschuh50ebec02008-01-08 13:02:55 -02002925}
2926
Bastien Nocerab790cee2015-03-02 14:45:27 +01002927/* sysfs adaptive kbd mode --------------------------------------------- */
2928
2929static int adaptive_keyboard_get_mode(void);
2930static int adaptive_keyboard_set_mode(int new_mode);
2931
2932enum ADAPTIVE_KEY_MODE {
2933 HOME_MODE,
2934 WEB_BROWSER_MODE,
2935 WEB_CONFERENCE_MODE,
2936 FUNCTION_MODE,
2937 LAYFLAT_MODE
2938};
2939
2940static ssize_t adaptive_kbd_mode_show(struct device *dev,
2941 struct device_attribute *attr,
2942 char *buf)
2943{
Dan Carpenterabf9dc02015-03-11 12:34:50 +03002944 int current_mode;
Bastien Nocerab790cee2015-03-02 14:45:27 +01002945
2946 current_mode = adaptive_keyboard_get_mode();
2947 if (current_mode < 0)
2948 return current_mode;
2949
2950 return snprintf(buf, PAGE_SIZE, "%d\n", current_mode);
2951}
2952
2953static ssize_t adaptive_kbd_mode_store(struct device *dev,
2954 struct device_attribute *attr,
2955 const char *buf, size_t count)
2956{
2957 unsigned long t;
2958 int res;
2959
2960 if (parse_strtoul(buf, LAYFLAT_MODE, &t))
2961 return -EINVAL;
2962
2963 res = adaptive_keyboard_set_mode(t);
2964 return (res < 0) ? res : count;
2965}
2966
2967static DEVICE_ATTR_RW(adaptive_kbd_mode);
2968
2969static struct attribute *adaptive_kbd_attributes[] = {
2970 &dev_attr_adaptive_kbd_mode.attr,
2971 NULL
2972};
2973
2974static const struct attribute_group adaptive_kbd_attr_group = {
2975 .attrs = adaptive_kbd_attributes,
2976};
2977
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03002978/* --------------------------------------------------------------------- */
2979
Henrique de Moraes Holschuhff80f132007-09-04 11:13:15 -03002980static struct attribute *hotkey_attributes[] __initdata = {
2981 &dev_attr_hotkey_enable.attr,
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002982 &dev_attr_hotkey_bios_enabled.attr,
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002983 &dev_attr_hotkey_bios_mask.attr,
Bjørn Mork5fb73bc2015-05-19 19:45:03 +02002984 &dev_attr_wakeup_reason.attr,
2985 &dev_attr_wakeup_hotunplug_complete.attr,
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002986 &dev_attr_hotkey_mask.attr,
2987 &dev_attr_hotkey_all_mask.attr,
2988 &dev_attr_hotkey_recommended_mask.attr,
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002989#ifdef CONFIG_THINKPAD_ACPI_HOTKEY_POLL
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002990 &dev_attr_hotkey_source_mask.attr,
2991 &dev_attr_hotkey_poll_freq.attr,
2992#endif
Henrique de Moraes Holschuhff80f132007-09-04 11:13:15 -03002993};
2994
Johannes Berg19d337d2009-06-02 13:01:37 +02002995/*
2996 * Sync both the hw and sw blocking state of all switches
2997 */
Henrique de Moraes Holschuh733e27c2008-07-21 09:15:49 -03002998static void tpacpi_send_radiosw_update(void)
2999{
3000 int wlsw;
3001
Johannes Berg19d337d2009-06-02 13:01:37 +02003002 /*
3003 * We must sync all rfkill controllers *before* issuing any
3004 * rfkill input events, or we will race the rfkill core input
3005 * handler.
3006 *
Lucas De Marchic8440332011-03-17 17:18:22 -03003007 * tpacpi_inputdev_send_mutex works as a synchronization point
Johannes Berg19d337d2009-06-02 13:01:37 +02003008 * for the above.
3009 *
3010 * We optimize to avoid numerous calls to hotkey_get_wlsw.
3011 */
Henrique de Moraes Holschuh0e74dc22008-07-21 09:15:51 -03003012
Johannes Berg19d337d2009-06-02 13:01:37 +02003013 wlsw = hotkey_get_wlsw();
3014
3015 /* Sync hw blocking state first if it is hw-blocked */
3016 if (wlsw == TPACPI_RFK_RADIO_OFF)
3017 tpacpi_rfk_update_hwblock_state(true);
3018
3019 /* Sync sw blocking state */
3020 tpacpi_rfk_update_swstate_all();
3021
3022 /* Sync hw blocking state last if it is hw-unblocked */
3023 if (wlsw == TPACPI_RFK_RADIO_ON)
3024 tpacpi_rfk_update_hwblock_state(false);
3025
3026 /* Issue rfkill input event for WLSW switch */
3027 if (!(wlsw < 0)) {
Henrique de Moraes Holschuh733e27c2008-07-21 09:15:49 -03003028 mutex_lock(&tpacpi_inputdev_send_mutex);
3029
3030 input_report_switch(tpacpi_inputdev,
Johannes Berg19d337d2009-06-02 13:01:37 +02003031 SW_RFKILL_ALL, (wlsw > 0));
Henrique de Moraes Holschuh733e27c2008-07-21 09:15:49 -03003032 input_sync(tpacpi_inputdev);
3033
3034 mutex_unlock(&tpacpi_inputdev_send_mutex);
3035 }
Johannes Berg19d337d2009-06-02 13:01:37 +02003036
3037 /*
3038 * this can be unconditional, as we will poll state again
3039 * if userspace uses the notify to read data
3040 */
Henrique de Moraes Holschuh733e27c2008-07-21 09:15:49 -03003041 hotkey_radio_sw_notify_change();
3042}
3043
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003044static void hotkey_exit(void)
3045{
3046#ifdef CONFIG_THINKPAD_ACPI_HOTKEY_POLL
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03003047 mutex_lock(&hotkey_mutex);
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003048 hotkey_poll_stop_sync();
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03003049 mutex_unlock(&hotkey_mutex);
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003050#endif
3051
3052 if (hotkey_dev_attributes)
3053 delete_attr_set(hotkey_dev_attributes, &tpacpi_pdev->dev.kobj);
3054
Henrique de Moraes Holschuh4be73002009-09-20 14:09:23 -03003055 dbg_printk(TPACPI_DBG_EXIT | TPACPI_DBG_HKEY,
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03003056 "restoring original HKEY status and mask\n");
3057 /* yes, there is a bitwise or below, we want the
3058 * functions to be called even if one of them fail */
3059 if (((tp_features.hotkey_mask &&
3060 hotkey_mask_set(hotkey_orig_mask)) |
3061 hotkey_status_set(false)) != 0)
Joe Perches0978e012011-04-04 10:06:25 -07003062 pr_err("failed to restore hot key mask "
Henrique de Moraes Holschuh4be73002009-09-20 14:09:23 -03003063 "to BIOS defaults\n");
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003064}
3065
Henrique de Moraes Holschuhde4c8cc2009-09-12 15:22:18 -03003066static void __init hotkey_unmap(const unsigned int scancode)
3067{
3068 if (hotkey_keycode_map[scancode] != KEY_RESERVED) {
3069 clear_bit(hotkey_keycode_map[scancode],
3070 tpacpi_inputdev->keybit);
3071 hotkey_keycode_map[scancode] = KEY_RESERVED;
3072 }
3073}
3074
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03003075/*
3076 * HKEY quirks:
3077 * TPACPI_HK_Q_INIMASK: Supports FN+F3,FN+F4,FN+F12
3078 */
3079
3080#define TPACPI_HK_Q_INIMASK 0x0001
3081
3082static const struct tpacpi_quirk tpacpi_hotkey_qtable[] __initconst = {
3083 TPACPI_Q_IBM('I', 'H', TPACPI_HK_Q_INIMASK), /* 600E */
3084 TPACPI_Q_IBM('I', 'N', TPACPI_HK_Q_INIMASK), /* 600E */
3085 TPACPI_Q_IBM('I', 'D', TPACPI_HK_Q_INIMASK), /* 770, 770E, 770ED */
3086 TPACPI_Q_IBM('I', 'W', TPACPI_HK_Q_INIMASK), /* A20m */
3087 TPACPI_Q_IBM('I', 'V', TPACPI_HK_Q_INIMASK), /* A20p */
3088 TPACPI_Q_IBM('1', '0', TPACPI_HK_Q_INIMASK), /* A21e, A22e */
3089 TPACPI_Q_IBM('K', 'U', TPACPI_HK_Q_INIMASK), /* A21e */
3090 TPACPI_Q_IBM('K', 'X', TPACPI_HK_Q_INIMASK), /* A21m, A22m */
3091 TPACPI_Q_IBM('K', 'Y', TPACPI_HK_Q_INIMASK), /* A21p, A22p */
3092 TPACPI_Q_IBM('1', 'B', TPACPI_HK_Q_INIMASK), /* A22e */
3093 TPACPI_Q_IBM('1', '3', TPACPI_HK_Q_INIMASK), /* A22m */
3094 TPACPI_Q_IBM('1', 'E', TPACPI_HK_Q_INIMASK), /* A30/p (0) */
3095 TPACPI_Q_IBM('1', 'C', TPACPI_HK_Q_INIMASK), /* R30 */
3096 TPACPI_Q_IBM('1', 'F', TPACPI_HK_Q_INIMASK), /* R31 */
3097 TPACPI_Q_IBM('I', 'Y', TPACPI_HK_Q_INIMASK), /* T20 */
3098 TPACPI_Q_IBM('K', 'Z', TPACPI_HK_Q_INIMASK), /* T21 */
3099 TPACPI_Q_IBM('1', '6', TPACPI_HK_Q_INIMASK), /* T22 */
3100 TPACPI_Q_IBM('I', 'Z', TPACPI_HK_Q_INIMASK), /* X20, X21 */
3101 TPACPI_Q_IBM('1', 'D', TPACPI_HK_Q_INIMASK), /* X22, X23, X24 */
3102};
3103
Henrique de Moraes Holschuhfc6e7562010-09-17 21:53:41 -03003104typedef u16 tpacpi_keymap_entry_t;
3105typedef tpacpi_keymap_entry_t tpacpi_keymap_t[TPACPI_HOTKEY_MAP_LEN];
Henrique de Moraes Holschuhd1e14dc2010-08-09 23:48:21 -03003106
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03003107static int __init hotkey_init(struct ibm_init_struct *iibm)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03003108{
Henrique de Moraes Holschuh0f089142008-01-08 13:02:38 -02003109 /* Requirements for changing the default keymaps:
3110 *
3111 * 1. Many of the keys are mapped to KEY_RESERVED for very
3112 * good reasons. Do not change them unless you have deep
3113 * knowledge on the IBM and Lenovo ThinkPad firmware for
3114 * the various ThinkPad models. The driver behaves
3115 * differently for KEY_RESERVED: such keys have their
3116 * hot key mask *unset* in mask_recommended, and also
3117 * in the initial hot key mask programmed into the
3118 * firmware at driver load time, which means the firm-
3119 * ware may react very differently if you change them to
3120 * something else;
3121 *
3122 * 2. You must be subscribed to the linux-thinkpad and
3123 * ibm-acpi-devel mailing lists, and you should read the
3124 * list archives since 2007 if you want to change the
3125 * keymaps. This requirement exists so that you will
3126 * know the past history of problems with the thinkpad-
3127 * acpi driver keymaps, and also that you will be
3128 * listening to any bug reports;
3129 *
3130 * 3. Do not send thinkpad-acpi specific patches directly to
3131 * for merging, *ever*. Send them to the linux-acpi
3132 * mailinglist for comments. Merging is to be done only
3133 * through acpi-test and the ACPI maintainer.
3134 *
3135 * If the above is too much to ask, don't change the keymap.
3136 * Ask the thinkpad-acpi maintainer to do it, instead.
3137 */
Henrique de Moraes Holschuhd1e14dc2010-08-09 23:48:21 -03003138
3139 enum keymap_index {
3140 TPACPI_KEYMAP_IBM_GENERIC = 0,
3141 TPACPI_KEYMAP_LENOVO_GENERIC,
3142 };
3143
3144 static const tpacpi_keymap_t tpacpi_keymaps[] __initconst = {
3145 /* Generic keymap for IBM ThinkPads */
3146 [TPACPI_KEYMAP_IBM_GENERIC] = {
Henrique de Moraes Holschuhedf0e0e2007-07-18 23:45:44 -03003147 /* Scan Codes 0x00 to 0x0B: ACPI HKEY FN+F1..F12 */
Henrique de Moraes Holschuhd1e14dc2010-08-09 23:48:21 -03003148 KEY_FN_F1, KEY_BATTERY, KEY_COFFEE, KEY_SLEEP,
Henrique de Moraes Holschuhedf0e0e2007-07-18 23:45:44 -03003149 KEY_WLAN, KEY_FN_F6, KEY_SWITCHVIDEOMODE, KEY_FN_F8,
3150 KEY_FN_F9, KEY_FN_F10, KEY_FN_F11, KEY_SUSPEND,
Henrique de Moraes Holschuh0f089142008-01-08 13:02:38 -02003151
3152 /* Scan codes 0x0C to 0x1F: Other ACPI HKEY hot keys */
Henrique de Moraes Holschuhedf0e0e2007-07-18 23:45:44 -03003153 KEY_UNKNOWN, /* 0x0C: FN+BACKSPACE */
3154 KEY_UNKNOWN, /* 0x0D: FN+INSERT */
3155 KEY_UNKNOWN, /* 0x0E: FN+DELETE */
Henrique de Moraes Holschuh0f089142008-01-08 13:02:38 -02003156
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03003157 /* brightness: firmware always reacts to them */
Henrique de Moraes Holschuhe927c082007-10-30 17:46:19 -02003158 KEY_RESERVED, /* 0x0F: FN+HOME (brightness up) */
Henrique de Moraes Holschuhe927c082007-10-30 17:46:19 -02003159 KEY_RESERVED, /* 0x10: FN+END (brightness down) */
Henrique de Moraes Holschuh0f089142008-01-08 13:02:38 -02003160
3161 /* Thinklight: firmware always react to it */
Henrique de Moraes Holschuhedf0e0e2007-07-18 23:45:44 -03003162 KEY_RESERVED, /* 0x11: FN+PGUP (thinklight toggle) */
Henrique de Moraes Holschuh0f089142008-01-08 13:02:38 -02003163
Henrique de Moraes Holschuhedf0e0e2007-07-18 23:45:44 -03003164 KEY_UNKNOWN, /* 0x12: FN+PGDOWN */
3165 KEY_ZOOM, /* 0x13: FN+SPACE (zoom) */
Henrique de Moraes Holschuh0f089142008-01-08 13:02:38 -02003166
3167 /* Volume: firmware always react to it and reprograms
3168 * the built-in *extra* mixer. Never map it to control
3169 * another mixer by default. */
Henrique de Moraes Holschuhe927c082007-10-30 17:46:19 -02003170 KEY_RESERVED, /* 0x14: VOLUME UP */
3171 KEY_RESERVED, /* 0x15: VOLUME DOWN */
3172 KEY_RESERVED, /* 0x16: MUTE */
Henrique de Moraes Holschuh0f089142008-01-08 13:02:38 -02003173
Henrique de Moraes Holschuhedf0e0e2007-07-18 23:45:44 -03003174 KEY_VENDOR, /* 0x17: Thinkpad/AccessIBM/Lenovo */
Henrique de Moraes Holschuh0f089142008-01-08 13:02:38 -02003175
Henrique de Moraes Holschuhedf0e0e2007-07-18 23:45:44 -03003176 /* (assignments unknown, please report if found) */
3177 KEY_UNKNOWN, KEY_UNKNOWN, KEY_UNKNOWN, KEY_UNKNOWN,
3178 KEY_UNKNOWN, KEY_UNKNOWN, KEY_UNKNOWN, KEY_UNKNOWN,
Bastien Nocera6a68d852015-03-02 14:45:31 +01003179
3180 /* No assignments, only used for Adaptive keyboards. */
3181 KEY_UNKNOWN, KEY_UNKNOWN, KEY_UNKNOWN, KEY_UNKNOWN,
3182 KEY_UNKNOWN, KEY_UNKNOWN, KEY_UNKNOWN, KEY_UNKNOWN,
3183 KEY_UNKNOWN, KEY_UNKNOWN, KEY_UNKNOWN, KEY_UNKNOWN,
3184 KEY_UNKNOWN, KEY_UNKNOWN, KEY_UNKNOWN, KEY_UNKNOWN,
3185 KEY_UNKNOWN, KEY_UNKNOWN, KEY_UNKNOWN,
Henrique de Moraes Holschuhd1e14dc2010-08-09 23:48:21 -03003186 },
3187
3188 /* Generic keymap for Lenovo ThinkPads */
3189 [TPACPI_KEYMAP_LENOVO_GENERIC] = {
Henrique de Moraes Holschuhedf0e0e2007-07-18 23:45:44 -03003190 /* Scan Codes 0x00 to 0x0B: ACPI HKEY FN+F1..F12 */
3191 KEY_FN_F1, KEY_COFFEE, KEY_BATTERY, KEY_SLEEP,
Jens Taprogge2b754262010-08-09 23:48:22 -03003192 KEY_WLAN, KEY_CAMERA, KEY_SWITCHVIDEOMODE, KEY_FN_F8,
Henrique de Moraes Holschuhedf0e0e2007-07-18 23:45:44 -03003193 KEY_FN_F9, KEY_FN_F10, KEY_FN_F11, KEY_SUSPEND,
Henrique de Moraes Holschuh0f089142008-01-08 13:02:38 -02003194
3195 /* Scan codes 0x0C to 0x1F: Other ACPI HKEY hot keys */
Henrique de Moraes Holschuhedf0e0e2007-07-18 23:45:44 -03003196 KEY_UNKNOWN, /* 0x0C: FN+BACKSPACE */
3197 KEY_UNKNOWN, /* 0x0D: FN+INSERT */
3198 KEY_UNKNOWN, /* 0x0E: FN+DELETE */
Henrique de Moraes Holschuh0f089142008-01-08 13:02:38 -02003199
Henrique de Moraes Holschuhde4c8cc2009-09-12 15:22:18 -03003200 /* These should be enabled --only-- when ACPI video
3201 * is disabled (i.e. in "vendor" mode), and are handled
3202 * in a special way by the init code */
3203 KEY_BRIGHTNESSUP, /* 0x0F: FN+HOME (brightness up) */
3204 KEY_BRIGHTNESSDOWN, /* 0x10: FN+END (brightness down) */
Henrique de Moraes Holschuh0f089142008-01-08 13:02:38 -02003205
Henrique de Moraes Holschuhedf0e0e2007-07-18 23:45:44 -03003206 KEY_RESERVED, /* 0x11: FN+PGUP (thinklight toggle) */
Henrique de Moraes Holschuh0f089142008-01-08 13:02:38 -02003207
Henrique de Moraes Holschuhedf0e0e2007-07-18 23:45:44 -03003208 KEY_UNKNOWN, /* 0x12: FN+PGDOWN */
3209 KEY_ZOOM, /* 0x13: FN+SPACE (zoom) */
Henrique de Moraes Holschuh0f089142008-01-08 13:02:38 -02003210
3211 /* Volume: z60/z61, T60 (BIOS version?): firmware always
3212 * react to it and reprograms the built-in *extra* mixer.
3213 * Never map it to control another mixer by default.
3214 *
3215 * T60?, T61, R60?, R61: firmware and EC tries to send
3216 * these over the regular keyboard, so these are no-ops,
3217 * but there are still weird bugs re. MUTE, so do not
3218 * change unless you get test reports from all Lenovo
3219 * models. May cause the BIOS to interfere with the
3220 * HDA mixer.
3221 */
Henrique de Moraes Holschuhe927c082007-10-30 17:46:19 -02003222 KEY_RESERVED, /* 0x14: VOLUME UP */
3223 KEY_RESERVED, /* 0x15: VOLUME DOWN */
3224 KEY_RESERVED, /* 0x16: MUTE */
Henrique de Moraes Holschuh0f089142008-01-08 13:02:38 -02003225
Henrique de Moraes Holschuhedf0e0e2007-07-18 23:45:44 -03003226 KEY_VENDOR, /* 0x17: Thinkpad/AccessIBM/Lenovo */
Henrique de Moraes Holschuh0f089142008-01-08 13:02:38 -02003227
Henrique de Moraes Holschuhedf0e0e2007-07-18 23:45:44 -03003228 /* (assignments unknown, please report if found) */
Andy Lutomirski33009552011-05-24 15:16:43 -04003229 KEY_UNKNOWN, KEY_UNKNOWN,
3230
3231 /*
3232 * The mic mute button only sends 0x1a. It does not
3233 * automatically mute the mic or change the mute light.
3234 */
3235 KEY_MICMUTE, /* 0x1a: Mic mute (since ?400 or so) */
3236
3237 /* (assignments unknown, please report if found) */
Andy Lutomirski33009552011-05-24 15:16:43 -04003238 KEY_UNKNOWN,
Hans de Goede8b9dd4f2014-04-09 11:46:46 +02003239
3240 /* Extra keys in use since the X240 / T440 / T540 */
Hans de Goede4beb81d2014-06-23 13:38:23 +02003241 KEY_CONFIG, KEY_SEARCH, KEY_SCALE, KEY_FILE,
Bastien Nocera6a68d852015-03-02 14:45:31 +01003242
3243 /*
3244 * These are the adaptive keyboard keycodes for Carbon X1 2014.
3245 * The first item in this list is the Mute button which is
3246 * emitted with 0x103 through
3247 * adaptive_keyboard_hotkey_notify_hotkey() when the sound
3248 * symbol is held.
3249 * We'll need to offset those by 0x20.
3250 */
3251 KEY_RESERVED, /* Mute held, 0x103 */
3252 KEY_BRIGHTNESS_MIN, /* Backlight off */
3253 KEY_RESERVED, /* Clipping tool */
3254 KEY_RESERVED, /* Cloud */
3255 KEY_RESERVED,
3256 KEY_VOICECOMMAND, /* Voice */
3257 KEY_RESERVED,
3258 KEY_RESERVED, /* Gestures */
3259 KEY_RESERVED,
3260 KEY_RESERVED,
3261 KEY_RESERVED,
3262 KEY_CONFIG, /* Settings */
3263 KEY_RESERVED, /* New tab */
3264 KEY_REFRESH, /* Reload */
3265 KEY_BACK, /* Back */
3266 KEY_RESERVED, /* Microphone down */
3267 KEY_RESERVED, /* Microphone up */
3268 KEY_RESERVED, /* Microphone cancellation */
3269 KEY_RESERVED, /* Camera mode */
3270 KEY_RESERVED, /* Rotate display, 0x116 */
Henrique de Moraes Holschuhd1e14dc2010-08-09 23:48:21 -03003271 },
Henrique de Moraes Holschuhedf0e0e2007-07-18 23:45:44 -03003272 };
3273
Henrique de Moraes Holschuhd1e14dc2010-08-09 23:48:21 -03003274 static const struct tpacpi_quirk tpacpi_keymap_qtable[] __initconst = {
3275 /* Generic maps (fallback) */
3276 {
3277 .vendor = PCI_VENDOR_ID_IBM,
3278 .bios = TPACPI_MATCH_ANY, .ec = TPACPI_MATCH_ANY,
3279 .quirks = TPACPI_KEYMAP_IBM_GENERIC,
3280 },
3281 {
3282 .vendor = PCI_VENDOR_ID_LENOVO,
3283 .bios = TPACPI_MATCH_ANY, .ec = TPACPI_MATCH_ANY,
3284 .quirks = TPACPI_KEYMAP_LENOVO_GENERIC,
3285 },
3286 };
3287
3288#define TPACPI_HOTKEY_MAP_SIZE sizeof(tpacpi_keymap_t)
Henrique de Moraes Holschuhfc6e7562010-09-17 21:53:41 -03003289#define TPACPI_HOTKEY_MAP_TYPESIZE sizeof(tpacpi_keymap_entry_t)
Henrique de Moraes Holschuhedf0e0e2007-07-18 23:45:44 -03003290
Henrique de Moraes Holschuh6a38abb2007-07-18 23:45:35 -03003291 int res, i;
Henrique de Moraes Holschuh74941a62007-07-18 23:45:31 -03003292 int status;
Henrique de Moraes Holschuh1b6521d2007-09-23 11:39:03 -03003293 int hkeyv;
Henrique de Moraes Holschuhd89a7272009-12-15 21:51:06 -02003294 bool radiosw_state = false;
3295 bool tabletsw_state = false;
Henrique de Moraes Holschuhb86c4722007-04-21 11:08:39 -03003296
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03003297 unsigned long quirks;
Henrique de Moraes Holschuhd1e14dc2010-08-09 23:48:21 -03003298 unsigned long keymap_id;
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03003299
Henrique de Moraes Holschuh56e2c202009-04-04 04:25:51 +00003300 vdbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_HKEY,
3301 "initializing hotkey subdriver\n");
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03003302
Henrique de Moraes Holschuh6a38abb2007-07-18 23:45:35 -03003303 BUG_ON(!tpacpi_inputdev);
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02003304 BUG_ON(tpacpi_inputdev->open != NULL ||
3305 tpacpi_inputdev->close != NULL);
Henrique de Moraes Holschuh6a38abb2007-07-18 23:45:35 -03003306
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02003307 TPACPI_ACPIHANDLE_INIT(hkey);
Henrique de Moraes Holschuh40ca9fd2007-04-24 11:48:15 -03003308 mutex_init(&hotkey_mutex);
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03003309
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02003310#ifdef CONFIG_THINKPAD_ACPI_HOTKEY_POLL
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02003311 mutex_init(&hotkey_thread_data_mutex);
3312#endif
3313
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03003314 /* hotkey not supported on 570 */
Henrique de Moraes Holschuhd8fd94d2007-04-21 11:08:36 -03003315 tp_features.hotkey = hkey_handle != NULL;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03003316
Henrique de Moraes Holschuh56e2c202009-04-04 04:25:51 +00003317 vdbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_HKEY,
3318 "hotkeys are %s\n",
Henrique de Moraes Holschuhd8fd94d2007-04-21 11:08:36 -03003319 str_supported(tp_features.hotkey));
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03003320
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003321 if (!tp_features.hotkey)
3322 return 1;
3323
Bastien Noceraf23a5bc2015-03-02 14:45:16 +01003324 /*
3325 * Check if we have an adaptive keyboard, like on the
3326 * Lenovo Carbon X1 2014 (2nd Gen).
3327 */
3328 if (acpi_evalf(hkey_handle, &hkeyv, "MHKV", "qd")) {
Bastien Nocerab790cee2015-03-02 14:45:27 +01003329 if ((hkeyv >> 8) == 2) {
Bastien Noceraf23a5bc2015-03-02 14:45:16 +01003330 tp_features.has_adaptive_kbd = true;
Bastien Nocerab790cee2015-03-02 14:45:27 +01003331 res = sysfs_create_group(&tpacpi_pdev->dev.kobj,
3332 &adaptive_kbd_attr_group);
3333 if (res)
3334 goto err_exit;
3335 }
Bastien Noceraf23a5bc2015-03-02 14:45:16 +01003336 }
3337
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03003338 quirks = tpacpi_check_quirks(tpacpi_hotkey_qtable,
3339 ARRAY_SIZE(tpacpi_hotkey_qtable));
3340
Henrique de Moraes Holschuhd64c81c42008-10-18 14:23:55 -03003341 tpacpi_disable_brightness_delay();
3342
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03003343 /* MUST have enough space for all attributes to be added to
3344 * hotkey_dev_attributes */
3345 hotkey_dev_attributes = create_attr_set(
3346 ARRAY_SIZE(hotkey_attributes) + 2,
3347 NULL);
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003348 if (!hotkey_dev_attributes)
3349 return -ENOMEM;
3350 res = add_many_to_attr_set(hotkey_dev_attributes,
3351 hotkey_attributes,
3352 ARRAY_SIZE(hotkey_attributes));
3353 if (res)
3354 goto err_exit;
3355
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03003356 /* mask not supported on 600e/x, 770e, 770x, A21e, A2xm/p,
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003357 A30, R30, R31, T20-22, X20-21, X22-24. Detected by checking
3358 for HKEY interface version 0x100 */
3359 if (acpi_evalf(hkey_handle, &hkeyv, "MHKV", "qd")) {
3360 if ((hkeyv >> 8) != 1) {
Joe Perches0978e012011-04-04 10:06:25 -07003361 pr_err("unknown version of the HKEY interface: 0x%x\n",
3362 hkeyv);
3363 pr_err("please report this to %s\n", TPACPI_MAIL);
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003364 } else {
3365 /*
3366 * MHKV 0x100 in A31, R40, R40e,
3367 * T4x, X31, and later
3368 */
Henrique de Moraes Holschuh56e2c202009-04-04 04:25:51 +00003369 vdbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_HKEY,
3370 "firmware HKEY interface version: 0x%x\n",
3371 hkeyv);
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03003372
3373 /* Paranoia check AND init hotkey_all_mask */
3374 if (!acpi_evalf(hkey_handle, &hotkey_all_mask,
3375 "MHKA", "qd")) {
Joe Perches0978e012011-04-04 10:06:25 -07003376 pr_err("missing MHKA handler, "
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03003377 "please report this to %s\n",
3378 TPACPI_MAIL);
3379 /* Fallback: pre-init for FN+F3,F4,F12 */
3380 hotkey_all_mask = 0x080cU;
3381 } else {
3382 tp_features.hotkey_mask = 1;
3383 }
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003384 }
3385 }
3386
Henrique de Moraes Holschuh56e2c202009-04-04 04:25:51 +00003387 vdbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_HKEY,
3388 "hotkey masks are %s\n",
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003389 str_supported(tp_features.hotkey_mask));
3390
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03003391 /* Init hotkey_all_mask if not initialized yet */
3392 if (!tp_features.hotkey_mask && !hotkey_all_mask &&
3393 (quirks & TPACPI_HK_Q_INIMASK))
3394 hotkey_all_mask = 0x080cU; /* FN+F12, FN+F4, FN+F3 */
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003395
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03003396 /* Init hotkey_acpi_mask and hotkey_orig_mask */
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003397 if (tp_features.hotkey_mask) {
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03003398 /* hotkey_source_mask *must* be zero for
3399 * the first hotkey_mask_get to return hotkey_orig_mask */
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003400 res = hotkey_mask_get();
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03003401 if (res)
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003402 goto err_exit;
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03003403
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03003404 hotkey_orig_mask = hotkey_acpi_mask;
3405 } else {
3406 hotkey_orig_mask = hotkey_all_mask;
3407 hotkey_acpi_mask = hotkey_all_mask;
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003408 }
Henrique de Moraes Holschuh74941a62007-07-18 23:45:31 -03003409
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02003410#ifdef CONFIG_THINKPAD_ACPI_DEBUGFACILITIES
3411 if (dbg_wlswemul) {
3412 tp_features.hotkey_wlsw = 1;
Henrique de Moraes Holschuhd89a7272009-12-15 21:51:06 -02003413 radiosw_state = !!tpacpi_wlsw_emulstate;
Joe Perches0978e012011-04-04 10:06:25 -07003414 pr_info("radio switch emulation enabled\n");
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02003415 } else
3416#endif
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003417 /* Not all thinkpads have a hardware radio switch */
3418 if (acpi_evalf(hkey_handle, &status, "WLSW", "qd")) {
3419 tp_features.hotkey_wlsw = 1;
Henrique de Moraes Holschuhd89a7272009-12-15 21:51:06 -02003420 radiosw_state = !!status;
Joe Perches0978e012011-04-04 10:06:25 -07003421 pr_info("radio switch found; radios are %s\n",
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003422 enabled(status, 0));
Henrique de Moraes Holschuh3a872082008-07-21 09:15:49 -03003423 }
3424 if (tp_features.hotkey_wlsw)
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003425 res = add_to_attr_set(hotkey_dev_attributes,
3426 &dev_attr_hotkey_radio_sw.attr);
Henrique de Moraes Holschuh74941a62007-07-18 23:45:31 -03003427
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003428 /* For X41t, X60t, X61t Tablets... */
3429 if (!res && acpi_evalf(hkey_handle, &status, "MHKG", "qd")) {
3430 tp_features.hotkey_tablet = 1;
Henrique de Moraes Holschuhd89a7272009-12-15 21:51:06 -02003431 tabletsw_state = !!(status & TP_HOTKEY_TABLET_MASK);
Joe Perches0978e012011-04-04 10:06:25 -07003432 pr_info("possible tablet mode switch found; "
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003433 "ThinkPad in %s mode\n",
Henrique de Moraes Holschuhd89a7272009-12-15 21:51:06 -02003434 (tabletsw_state) ? "tablet" : "laptop");
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003435 res = add_to_attr_set(hotkey_dev_attributes,
3436 &dev_attr_hotkey_tablet_mode.attr);
3437 }
Henrique de Moraes Holschuh6c231bd2008-02-16 02:17:58 -02003438
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003439 if (!res)
3440 res = register_attr_set_with_sysfs(
3441 hotkey_dev_attributes,
3442 &tpacpi_pdev->dev.kobj);
3443 if (res)
3444 goto err_exit;
Henrique de Moraes Holschuh6a38abb2007-07-18 23:45:35 -03003445
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003446 /* Set up key map */
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003447 hotkey_keycode_map = kmalloc(TPACPI_HOTKEY_MAP_SIZE,
3448 GFP_KERNEL);
3449 if (!hotkey_keycode_map) {
Joe Perches0978e012011-04-04 10:06:25 -07003450 pr_err("failed to allocate memory for key map\n");
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003451 res = -ENOMEM;
3452 goto err_exit;
3453 }
Henrique de Moraes Holschuhedf0e0e2007-07-18 23:45:44 -03003454
Henrique de Moraes Holschuhd1e14dc2010-08-09 23:48:21 -03003455 keymap_id = tpacpi_check_quirks(tpacpi_keymap_qtable,
3456 ARRAY_SIZE(tpacpi_keymap_qtable));
3457 BUG_ON(keymap_id >= ARRAY_SIZE(tpacpi_keymaps));
3458 dbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_HKEY,
3459 "using keymap number %lu\n", keymap_id);
3460
3461 memcpy(hotkey_keycode_map, &tpacpi_keymaps[keymap_id],
3462 TPACPI_HOTKEY_MAP_SIZE);
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003463
Henrique de Moraes Holschuh792979c2009-12-09 01:36:29 +00003464 input_set_capability(tpacpi_inputdev, EV_MSC, MSC_SCAN);
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003465 tpacpi_inputdev->keycodesize = TPACPI_HOTKEY_MAP_TYPESIZE;
3466 tpacpi_inputdev->keycodemax = TPACPI_HOTKEY_MAP_LEN;
3467 tpacpi_inputdev->keycode = hotkey_keycode_map;
3468 for (i = 0; i < TPACPI_HOTKEY_MAP_LEN; i++) {
3469 if (hotkey_keycode_map[i] != KEY_RESERVED) {
Henrique de Moraes Holschuh792979c2009-12-09 01:36:29 +00003470 input_set_capability(tpacpi_inputdev, EV_KEY,
3471 hotkey_keycode_map[i]);
Henrique de Moraes Holschuhedf0e0e2007-07-18 23:45:44 -03003472 } else {
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003473 if (i < sizeof(hotkey_reserved_mask)*8)
3474 hotkey_reserved_mask |= 1 << i;
Henrique de Moraes Holschuhedf0e0e2007-07-18 23:45:44 -03003475 }
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03003476 }
3477
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003478 if (tp_features.hotkey_wlsw) {
Henrique de Moraes Holschuh792979c2009-12-09 01:36:29 +00003479 input_set_capability(tpacpi_inputdev, EV_SW, SW_RFKILL_ALL);
Henrique de Moraes Holschuhd89a7272009-12-15 21:51:06 -02003480 input_report_switch(tpacpi_inputdev,
3481 SW_RFKILL_ALL, radiosw_state);
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003482 }
3483 if (tp_features.hotkey_tablet) {
Henrique de Moraes Holschuh792979c2009-12-09 01:36:29 +00003484 input_set_capability(tpacpi_inputdev, EV_SW, SW_TABLET_MODE);
Henrique de Moraes Holschuhd89a7272009-12-15 21:51:06 -02003485 input_report_switch(tpacpi_inputdev,
3486 SW_TABLET_MODE, tabletsw_state);
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03003487 }
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03003488
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003489 /* Do not issue duplicate brightness change events to
Henrique de Moraes Holschuh77775832010-05-16 19:45:33 -03003490 * userspace. tpacpi_detect_brightness_capabilities() must have
3491 * been called before this point */
Hans de Goedeb33c6ce2015-06-16 16:28:10 +02003492 if (acpi_video_get_backlight_type() != acpi_backlight_vendor) {
Joe Perches0978e012011-04-04 10:06:25 -07003493 pr_info("This ThinkPad has standard ACPI backlight "
3494 "brightness control, supported by the ACPI "
3495 "video driver\n");
3496 pr_notice("Disabling thinkpad-acpi brightness events "
3497 "by default...\n");
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003498
Henrique de Moraes Holschuhde4c8cc2009-09-12 15:22:18 -03003499 /* Disable brightness up/down on Lenovo thinkpads when
3500 * ACPI is handling them, otherwise it is plain impossible
3501 * for userspace to do something even remotely sane */
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003502 hotkey_reserved_mask |=
3503 (1 << TP_ACPI_HOTKEYSCAN_FNHOME)
3504 | (1 << TP_ACPI_HOTKEYSCAN_FNEND);
Henrique de Moraes Holschuhde4c8cc2009-09-12 15:22:18 -03003505 hotkey_unmap(TP_ACPI_HOTKEYSCAN_FNHOME);
3506 hotkey_unmap(TP_ACPI_HOTKEYSCAN_FNEND);
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03003507 }
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003508
Henrique de Moraes Holschuh230d8cf252009-09-12 15:22:17 -03003509#ifdef CONFIG_THINKPAD_ACPI_HOTKEY_POLL
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03003510 hotkey_source_mask = TPACPI_HKEY_NVRAM_GOOD_MASK
3511 & ~hotkey_all_mask
3512 & ~hotkey_reserved_mask;
Henrique de Moraes Holschuh230d8cf252009-09-12 15:22:17 -03003513
3514 vdbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_HKEY,
3515 "hotkey source mask 0x%08x, polling freq %u\n",
3516 hotkey_source_mask, hotkey_poll_freq);
3517#endif
3518
Henrique de Moraes Holschuh56e2c202009-04-04 04:25:51 +00003519 dbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_HKEY,
3520 "enabling firmware HKEY event interface...\n");
Henrique de Moraes Holschuh2586d562009-04-04 04:25:48 +00003521 res = hotkey_status_set(true);
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003522 if (res) {
3523 hotkey_exit();
3524 return res;
3525 }
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03003526 res = hotkey_mask_set(((hotkey_all_mask & ~hotkey_reserved_mask)
3527 | hotkey_driver_mask)
3528 & ~hotkey_source_mask);
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003529 if (res < 0 && res != -ENXIO) {
3530 hotkey_exit();
3531 return res;
3532 }
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03003533 hotkey_user_mask = (hotkey_acpi_mask | hotkey_source_mask)
3534 & ~hotkey_reserved_mask;
3535 vdbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_HKEY,
3536 "initial masks: user=0x%08x, fw=0x%08x, poll=0x%08x\n",
3537 hotkey_user_mask, hotkey_acpi_mask, hotkey_source_mask);
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003538
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003539 tpacpi_inputdev->open = &hotkey_inputdev_open;
3540 tpacpi_inputdev->close = &hotkey_inputdev_close;
3541
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03003542 hotkey_poll_setup_safe(true);
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003543
3544 return 0;
3545
3546err_exit:
3547 delete_attr_set(hotkey_dev_attributes, &tpacpi_pdev->dev.kobj);
Bastien Nocerab790cee2015-03-02 14:45:27 +01003548 sysfs_remove_group(&tpacpi_pdev->dev.kobj,
3549 &adaptive_kbd_attr_group);
3550
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003551 hotkey_dev_attributes = NULL;
3552
Jan van den Berg72a979f2014-09-17 00:01:08 +02003553 return (res < 0) ? res : 1;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03003554}
3555
Shuduo Sang3a9d20b2014-03-06 18:20:46 +08003556/* Thinkpad X1 Carbon support 5 modes including Home mode, Web browser
3557 * mode, Web conference mode, Function mode and Lay-flat mode.
3558 * We support Home mode and Function mode currently.
3559 *
3560 * Will consider support rest of modes in future.
3561 *
3562 */
Lad, Prabhakarb201a472015-02-05 14:45:38 +00003563static const int adaptive_keyboard_modes[] = {
Shuduo Sang3a9d20b2014-03-06 18:20:46 +08003564 HOME_MODE,
3565/* WEB_BROWSER_MODE = 2,
3566 WEB_CONFERENCE_MODE = 3, */
3567 FUNCTION_MODE
3568};
3569
3570#define DFR_CHANGE_ROW 0x101
3571#define DFR_SHOW_QUICKVIEW_ROW 0x102
Bastien Nocera6a68d852015-03-02 14:45:31 +01003572#define FIRST_ADAPTIVE_KEY 0x103
3573#define ADAPTIVE_KEY_OFFSET 0x020
Shuduo Sang3a9d20b2014-03-06 18:20:46 +08003574
3575/* press Fn key a while second, it will switch to Function Mode. Then
3576 * release Fn key, previous mode be restored.
3577 */
3578static bool adaptive_keyboard_mode_is_saved;
3579static int adaptive_keyboard_prev_mode;
3580
Bastien Noceraf74587f2015-03-02 14:45:22 +01003581static int adaptive_keyboard_get_mode(void)
3582{
3583 int mode = 0;
3584
3585 if (!acpi_evalf(hkey_handle, &mode, "GTRW", "dd", 0)) {
3586 pr_err("Cannot read adaptive keyboard mode\n");
3587 return -EIO;
3588 }
3589
3590 return mode;
3591}
3592
3593static int adaptive_keyboard_set_mode(int new_mode)
3594{
3595 if (new_mode < 0 ||
3596 new_mode > LAYFLAT_MODE)
3597 return -EINVAL;
3598
3599 if (!acpi_evalf(hkey_handle, NULL, "STRW", "vd", new_mode)) {
3600 pr_err("Cannot set adaptive keyboard mode\n");
3601 return -EIO;
3602 }
3603
3604 return 0;
3605}
3606
Shuduo Sang3a9d20b2014-03-06 18:20:46 +08003607static int adaptive_keyboard_get_next_mode(int mode)
3608{
3609 size_t i;
3610 size_t max_mode = ARRAY_SIZE(adaptive_keyboard_modes) - 1;
3611
3612 for (i = 0; i <= max_mode; i++) {
3613 if (adaptive_keyboard_modes[i] == mode)
3614 break;
3615 }
3616
3617 if (i >= max_mode)
3618 i = 0;
3619 else
3620 i++;
3621
3622 return adaptive_keyboard_modes[i];
3623}
3624
3625static bool adaptive_keyboard_hotkey_notify_hotkey(unsigned int scancode)
3626{
Dan Carpenterabf9dc02015-03-11 12:34:50 +03003627 int current_mode = 0;
Shuduo Sang3a9d20b2014-03-06 18:20:46 +08003628 int new_mode = 0;
Bastien Nocera6a68d852015-03-02 14:45:31 +01003629 int keycode;
Shuduo Sang3a9d20b2014-03-06 18:20:46 +08003630
3631 switch (scancode) {
3632 case DFR_CHANGE_ROW:
3633 if (adaptive_keyboard_mode_is_saved) {
3634 new_mode = adaptive_keyboard_prev_mode;
3635 adaptive_keyboard_mode_is_saved = false;
3636 } else {
Bastien Noceraf74587f2015-03-02 14:45:22 +01003637 current_mode = adaptive_keyboard_get_mode();
3638 if (current_mode < 0)
Shuduo Sang3a9d20b2014-03-06 18:20:46 +08003639 return false;
Bastien Noceraf74587f2015-03-02 14:45:22 +01003640 new_mode = adaptive_keyboard_get_next_mode(
3641 current_mode);
Shuduo Sang3a9d20b2014-03-06 18:20:46 +08003642 }
3643
Bastien Noceraf74587f2015-03-02 14:45:22 +01003644 if (adaptive_keyboard_set_mode(new_mode) < 0)
Shuduo Sang3a9d20b2014-03-06 18:20:46 +08003645 return false;
Shuduo Sang3a9d20b2014-03-06 18:20:46 +08003646
3647 return true;
3648
3649 case DFR_SHOW_QUICKVIEW_ROW:
Bastien Noceraf74587f2015-03-02 14:45:22 +01003650 current_mode = adaptive_keyboard_get_mode();
3651 if (current_mode < 0)
Shuduo Sang3a9d20b2014-03-06 18:20:46 +08003652 return false;
Shuduo Sang3a9d20b2014-03-06 18:20:46 +08003653
Bastien Noceraf74587f2015-03-02 14:45:22 +01003654 adaptive_keyboard_prev_mode = current_mode;
3655 adaptive_keyboard_mode_is_saved = true;
3656
3657 if (adaptive_keyboard_set_mode (FUNCTION_MODE) < 0)
3658 return false;
Shuduo Sang3a9d20b2014-03-06 18:20:46 +08003659 return true;
3660
3661 default:
Dan Carpenter741d98c2015-03-11 12:36:07 +03003662 if (scancode < FIRST_ADAPTIVE_KEY ||
3663 scancode >= FIRST_ADAPTIVE_KEY + TPACPI_HOTKEY_MAP_LEN -
3664 ADAPTIVE_KEY_OFFSET) {
Bastien Nocera6a68d852015-03-02 14:45:31 +01003665 pr_info("Unhandled adaptive keyboard key: 0x%x\n",
3666 scancode);
3667 return false;
3668 }
3669 keycode = hotkey_keycode_map[scancode - FIRST_ADAPTIVE_KEY + ADAPTIVE_KEY_OFFSET];
3670 if (keycode != KEY_RESERVED) {
3671 mutex_lock(&tpacpi_inputdev_send_mutex);
3672
3673 input_report_key(tpacpi_inputdev, keycode, 1);
3674 input_sync(tpacpi_inputdev);
3675
3676 input_report_key(tpacpi_inputdev, keycode, 0);
3677 input_sync(tpacpi_inputdev);
3678
3679 mutex_unlock(&tpacpi_inputdev_send_mutex);
3680 }
3681 return true;
Shuduo Sang3a9d20b2014-03-06 18:20:46 +08003682 }
3683}
3684
Henrique de Moraes Holschuh3827e7a2009-01-11 03:01:05 -02003685static bool hotkey_notify_hotkey(const u32 hkey,
3686 bool *send_acpi_ev,
3687 bool *ignore_acpi_ev)
3688{
3689 /* 0x1000-0x1FFF: key presses */
3690 unsigned int scancode = hkey & 0xfff;
3691 *send_acpi_ev = true;
3692 *ignore_acpi_ev = false;
3693
Henrique de Moraes Holschuh34a656d22010-08-09 23:48:20 -03003694 /* HKEY event 0x1001 is scancode 0x00 */
3695 if (scancode > 0 && scancode <= TPACPI_HOTKEY_MAP_LEN) {
Henrique de Moraes Holschuh3827e7a2009-01-11 03:01:05 -02003696 scancode--;
3697 if (!(hotkey_source_mask & (1 << scancode))) {
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03003698 tpacpi_input_send_key_masked(scancode);
Henrique de Moraes Holschuh3827e7a2009-01-11 03:01:05 -02003699 *send_acpi_ev = false;
3700 } else {
3701 *ignore_acpi_ev = true;
3702 }
3703 return true;
Shuduo Sang3a9d20b2014-03-06 18:20:46 +08003704 } else {
3705 return adaptive_keyboard_hotkey_notify_hotkey(scancode);
Henrique de Moraes Holschuh3827e7a2009-01-11 03:01:05 -02003706 }
3707 return false;
3708}
3709
3710static bool hotkey_notify_wakeup(const u32 hkey,
3711 bool *send_acpi_ev,
3712 bool *ignore_acpi_ev)
3713{
3714 /* 0x2000-0x2FFF: Wakeup reason */
3715 *send_acpi_ev = true;
3716 *ignore_acpi_ev = false;
3717
3718 switch (hkey) {
Henrique de Moraes Holschuh67bcae62009-09-20 14:09:27 -03003719 case TP_HKEY_EV_WKUP_S3_UNDOCK: /* suspend, undock */
3720 case TP_HKEY_EV_WKUP_S4_UNDOCK: /* hibernation, undock */
Henrique de Moraes Holschuh3827e7a2009-01-11 03:01:05 -02003721 hotkey_wakeup_reason = TP_ACPI_WAKEUP_UNDOCK;
3722 *ignore_acpi_ev = true;
3723 break;
3724
Henrique de Moraes Holschuh67bcae62009-09-20 14:09:27 -03003725 case TP_HKEY_EV_WKUP_S3_BAYEJ: /* suspend, bay eject */
3726 case TP_HKEY_EV_WKUP_S4_BAYEJ: /* hibernation, bay eject */
Henrique de Moraes Holschuh3827e7a2009-01-11 03:01:05 -02003727 hotkey_wakeup_reason = TP_ACPI_WAKEUP_BAYEJ;
3728 *ignore_acpi_ev = true;
3729 break;
3730
Henrique de Moraes Holschuh67bcae62009-09-20 14:09:27 -03003731 case TP_HKEY_EV_WKUP_S3_BATLOW: /* Battery on critical low level/S3 */
3732 case TP_HKEY_EV_WKUP_S4_BATLOW: /* Battery on critical low level/S4 */
Joe Perches0978e012011-04-04 10:06:25 -07003733 pr_alert("EMERGENCY WAKEUP: battery almost empty\n");
Henrique de Moraes Holschuh106b4e62009-01-11 03:01:06 -02003734 /* how to auto-heal: */
3735 /* 2313: woke up from S3, go to S4/S5 */
3736 /* 2413: woke up from S4, go to S5 */
3737 break;
3738
Henrique de Moraes Holschuh3827e7a2009-01-11 03:01:05 -02003739 default:
3740 return false;
3741 }
3742
3743 if (hotkey_wakeup_reason != TP_ACPI_WAKEUP_NONE) {
Joe Perches0978e012011-04-04 10:06:25 -07003744 pr_info("woke up due to a hot-unplug request...\n");
Henrique de Moraes Holschuh3827e7a2009-01-11 03:01:05 -02003745 hotkey_wakeup_reason_notify_change();
3746 }
3747 return true;
3748}
3749
Henrique de Moraes Holschuha50245a2011-06-05 16:22:35 -03003750static bool hotkey_notify_dockevent(const u32 hkey,
3751 bool *send_acpi_ev,
3752 bool *ignore_acpi_ev)
3753{
3754 /* 0x4000-0x4FFF: dock-related events */
3755 *send_acpi_ev = true;
3756 *ignore_acpi_ev = false;
3757
3758 switch (hkey) {
3759 case TP_HKEY_EV_UNDOCK_ACK:
3760 /* ACPI undock operation completed after wakeup */
3761 hotkey_autosleep_ack = 1;
3762 pr_info("undocked\n");
3763 hotkey_wakeup_hotunplug_complete_notify_change();
3764 return true;
3765
3766 case TP_HKEY_EV_HOTPLUG_DOCK: /* docked to port replicator */
3767 pr_info("docked into hotplug port replicator\n");
3768 return true;
3769 case TP_HKEY_EV_HOTPLUG_UNDOCK: /* undocked from port replicator */
3770 pr_info("undocked from hotplug port replicator\n");
3771 return true;
3772
3773 default:
3774 return false;
3775 }
3776}
3777
Henrique de Moraes Holschuh3827e7a2009-01-11 03:01:05 -02003778static bool hotkey_notify_usrevent(const u32 hkey,
3779 bool *send_acpi_ev,
3780 bool *ignore_acpi_ev)
3781{
3782 /* 0x5000-0x5FFF: human interface helpers */
3783 *send_acpi_ev = true;
3784 *ignore_acpi_ev = false;
3785
3786 switch (hkey) {
Henrique de Moraes Holschuh67bcae62009-09-20 14:09:27 -03003787 case TP_HKEY_EV_PEN_INSERTED: /* X61t: tablet pen inserted into bay */
3788 case TP_HKEY_EV_PEN_REMOVED: /* X61t: tablet pen removed from bay */
Henrique de Moraes Holschuh3827e7a2009-01-11 03:01:05 -02003789 return true;
3790
Henrique de Moraes Holschuh67bcae62009-09-20 14:09:27 -03003791 case TP_HKEY_EV_TABLET_TABLET: /* X41t-X61t: tablet mode */
3792 case TP_HKEY_EV_TABLET_NOTEBOOK: /* X41t-X61t: normal mode */
Henrique de Moraes Holschuh3827e7a2009-01-11 03:01:05 -02003793 tpacpi_input_send_tabletsw();
3794 hotkey_tablet_mode_notify_change();
3795 *send_acpi_ev = false;
3796 return true;
3797
Henrique de Moraes Holschuh67bcae62009-09-20 14:09:27 -03003798 case TP_HKEY_EV_LID_CLOSE: /* Lid closed */
3799 case TP_HKEY_EV_LID_OPEN: /* Lid opened */
3800 case TP_HKEY_EV_BRGHT_CHANGED: /* brightness changed */
Henrique de Moraes Holschuh176dd982009-09-20 14:09:24 -03003801 /* do not propagate these events */
Henrique de Moraes Holschuh3827e7a2009-01-11 03:01:05 -02003802 *ignore_acpi_ev = true;
3803 return true;
3804
3805 default:
3806 return false;
3807 }
3808}
3809
Henrique de Moraes Holschuh9ebd9e82009-12-09 01:36:28 +00003810static void thermal_dump_all_sensors(void);
3811
Henrique de Moraes Holschuh2d43f672011-06-05 16:22:34 -03003812static bool hotkey_notify_6xxx(const u32 hkey,
Henrique de Moraes Holschuh106b4e62009-01-11 03:01:06 -02003813 bool *send_acpi_ev,
3814 bool *ignore_acpi_ev)
3815{
Henrique de Moraes Holschuh9ebd9e82009-12-09 01:36:28 +00003816 bool known = true;
3817
Henrique de Moraes Holschuh2d43f672011-06-05 16:22:34 -03003818 /* 0x6000-0x6FFF: thermal alarms/notices and keyboard events */
Henrique de Moraes Holschuh106b4e62009-01-11 03:01:06 -02003819 *send_acpi_ev = true;
3820 *ignore_acpi_ev = false;
3821
3822 switch (hkey) {
Henrique de Moraes Holschuh67bcae62009-09-20 14:09:27 -03003823 case TP_HKEY_EV_THM_TABLE_CHANGED:
Joe Perches0978e012011-04-04 10:06:25 -07003824 pr_info("EC reports that Thermal Table has changed\n");
Henrique de Moraes Holschuh54926ce2009-01-11 03:01:09 -02003825 /* recommended action: do nothing, we don't have
3826 * Lenovo ATM information */
3827 return true;
Henrique de Moraes Holschuh9ebd9e82009-12-09 01:36:28 +00003828 case TP_HKEY_EV_ALARM_BAT_HOT:
Joe Perches0978e012011-04-04 10:06:25 -07003829 pr_crit("THERMAL ALARM: battery is too hot!\n");
Henrique de Moraes Holschuh9ebd9e82009-12-09 01:36:28 +00003830 /* recommended action: warn user through gui */
3831 break;
3832 case TP_HKEY_EV_ALARM_BAT_XHOT:
Joe Perches0978e012011-04-04 10:06:25 -07003833 pr_alert("THERMAL EMERGENCY: battery is extremely hot!\n");
Henrique de Moraes Holschuh9ebd9e82009-12-09 01:36:28 +00003834 /* recommended action: immediate sleep/hibernate */
3835 break;
3836 case TP_HKEY_EV_ALARM_SENSOR_HOT:
Joe Perches0978e012011-04-04 10:06:25 -07003837 pr_crit("THERMAL ALARM: "
Henrique de Moraes Holschuh9ebd9e82009-12-09 01:36:28 +00003838 "a sensor reports something is too hot!\n");
3839 /* recommended action: warn user through gui, that */
3840 /* some internal component is too hot */
3841 break;
3842 case TP_HKEY_EV_ALARM_SENSOR_XHOT:
Joe Perches0978e012011-04-04 10:06:25 -07003843 pr_alert("THERMAL EMERGENCY: "
3844 "a sensor reports something is extremely hot!\n");
Henrique de Moraes Holschuh9ebd9e82009-12-09 01:36:28 +00003845 /* recommended action: immediate sleep/hibernate */
3846 break;
Richard Hartmann6f62bc32012-12-29 22:51:49 +01003847 case TP_HKEY_EV_AC_CHANGED:
3848 /* X120e, X121e, X220, X220i, X220t, X230, T420, T420s, W520:
3849 * AC status changed; can be triggered by plugging or
3850 * unplugging AC adapter, docking or undocking. */
3851
3852 /* fallthrough */
Henrique de Moraes Holschuh2d43f672011-06-05 16:22:34 -03003853
3854 case TP_HKEY_EV_KEY_NUMLOCK:
3855 case TP_HKEY_EV_KEY_FN:
Xavier Naveira67ab6242015-02-10 08:45:18 +01003856 case TP_HKEY_EV_KEY_FN_ESC:
Henrique de Moraes Holschuh2d43f672011-06-05 16:22:34 -03003857 /* key press events, we just ignore them as long as the EC
3858 * is still reporting them in the normal keyboard stream */
3859 *send_acpi_ev = false;
3860 *ignore_acpi_ev = true;
3861 return true;
3862
Henrique de Moraes Holschuh106b4e62009-01-11 03:01:06 -02003863 default:
Henrique de Moraes Holschuh2d43f672011-06-05 16:22:34 -03003864 pr_warn("unknown possible thermal alarm or keyboard event received\n");
Henrique de Moraes Holschuh9ebd9e82009-12-09 01:36:28 +00003865 known = false;
Henrique de Moraes Holschuh106b4e62009-01-11 03:01:06 -02003866 }
Henrique de Moraes Holschuh9ebd9e82009-12-09 01:36:28 +00003867
3868 thermal_dump_all_sensors();
3869
3870 return known;
Henrique de Moraes Holschuh106b4e62009-01-11 03:01:06 -02003871}
3872
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03003873static void hotkey_notify(struct ibm_struct *ibm, u32 event)
3874{
Henrique de Moraes Holschuh6a38abb2007-07-18 23:45:35 -03003875 u32 hkey;
Henrique de Moraes Holschuh3827e7a2009-01-11 03:01:05 -02003876 bool send_acpi_ev;
3877 bool ignore_acpi_ev;
3878 bool known_ev;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03003879
Henrique de Moraes Holschuh3eea1232007-09-23 11:39:04 -03003880 if (event != 0x80) {
Joe Perches0978e012011-04-04 10:06:25 -07003881 pr_err("unknown HKEY notification event %d\n", event);
Henrique de Moraes Holschuh3eea1232007-09-23 11:39:04 -03003882 /* forward it to userspace, maybe it knows how to handle it */
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02003883 acpi_bus_generate_netlink_event(
3884 ibm->acpi->device->pnp.device_class,
Kay Sieverse0b36fc2009-01-11 03:00:59 -02003885 dev_name(&ibm->acpi->device->dev),
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02003886 event, 0);
Henrique de Moraes Holschuh3eea1232007-09-23 11:39:04 -03003887 return;
3888 }
3889
3890 while (1) {
3891 if (!acpi_evalf(hkey_handle, &hkey, "MHKP", "d")) {
Joe Perches0978e012011-04-04 10:06:25 -07003892 pr_err("failed to retrieve HKEY event\n");
Henrique de Moraes Holschuh3eea1232007-09-23 11:39:04 -03003893 return;
3894 }
3895
3896 if (hkey == 0) {
3897 /* queue empty */
3898 return;
3899 }
3900
Henrique de Moraes Holschuh3827e7a2009-01-11 03:01:05 -02003901 send_acpi_ev = true;
3902 ignore_acpi_ev = false;
Henrique de Moraes Holschuh3eea1232007-09-23 11:39:04 -03003903
Henrique de Moraes Holschuhff80f132007-09-04 11:13:15 -03003904 switch (hkey >> 12) {
3905 case 1:
3906 /* 0x1000-0x1FFF: key presses */
Henrique de Moraes Holschuh3827e7a2009-01-11 03:01:05 -02003907 known_ev = hotkey_notify_hotkey(hkey, &send_acpi_ev,
3908 &ignore_acpi_ev);
Henrique de Moraes Holschuhff80f132007-09-04 11:13:15 -03003909 break;
Henrique de Moraes Holschuha713b4d2008-01-08 13:02:52 -02003910 case 2:
Henrique de Moraes Holschuh3827e7a2009-01-11 03:01:05 -02003911 /* 0x2000-0x2FFF: Wakeup reason */
3912 known_ev = hotkey_notify_wakeup(hkey, &send_acpi_ev,
3913 &ignore_acpi_ev);
Henrique de Moraes Holschuha713b4d2008-01-08 13:02:52 -02003914 break;
3915 case 3:
Henrique de Moraes Holschuh3827e7a2009-01-11 03:01:05 -02003916 /* 0x3000-0x3FFF: bay-related wakeups */
Henrique de Moraes Holschuhbf8b29c2010-02-25 21:28:56 -03003917 switch (hkey) {
3918 case TP_HKEY_EV_BAYEJ_ACK:
Henrique de Moraes Holschuha713b4d2008-01-08 13:02:52 -02003919 hotkey_autosleep_ack = 1;
Joe Perches0978e012011-04-04 10:06:25 -07003920 pr_info("bay ejected\n");
Henrique de Moraes Holschuh50ebec02008-01-08 13:02:55 -02003921 hotkey_wakeup_hotunplug_complete_notify_change();
Henrique de Moraes Holschuh3827e7a2009-01-11 03:01:05 -02003922 known_ev = true;
Henrique de Moraes Holschuhbf8b29c2010-02-25 21:28:56 -03003923 break;
3924 case TP_HKEY_EV_OPTDRV_EJ:
3925 /* FIXME: kick libata if SATA link offline */
3926 known_ev = true;
3927 break;
3928 default:
Henrique de Moraes Holschuh3827e7a2009-01-11 03:01:05 -02003929 known_ev = false;
Henrique de Moraes Holschuha713b4d2008-01-08 13:02:52 -02003930 }
3931 break;
3932 case 4:
Henrique de Moraes Holschuha50245a2011-06-05 16:22:35 -03003933 /* 0x4000-0x4FFF: dock-related events */
3934 known_ev = hotkey_notify_dockevent(hkey, &send_acpi_ev,
3935 &ignore_acpi_ev);
Henrique de Moraes Holschuha713b4d2008-01-08 13:02:52 -02003936 break;
Henrique de Moraes Holschuhff80f132007-09-04 11:13:15 -03003937 case 5:
Henrique de Moraes Holschuhd1edb2b2008-01-08 13:02:53 -02003938 /* 0x5000-0x5FFF: human interface helpers */
Henrique de Moraes Holschuh3827e7a2009-01-11 03:01:05 -02003939 known_ev = hotkey_notify_usrevent(hkey, &send_acpi_ev,
3940 &ignore_acpi_ev);
Henrique de Moraes Holschuhff80f132007-09-04 11:13:15 -03003941 break;
Henrique de Moraes Holschuh106b4e62009-01-11 03:01:06 -02003942 case 6:
Henrique de Moraes Holschuh2d43f672011-06-05 16:22:34 -03003943 /* 0x6000-0x6FFF: thermal alarms/notices and
3944 * keyboard events */
3945 known_ev = hotkey_notify_6xxx(hkey, &send_acpi_ev,
Henrique de Moraes Holschuh106b4e62009-01-11 03:01:06 -02003946 &ignore_acpi_ev);
3947 break;
Henrique de Moraes Holschuhff80f132007-09-04 11:13:15 -03003948 case 7:
3949 /* 0x7000-0x7FFF: misc */
Henrique de Moraes Holschuh67bcae62009-09-20 14:09:27 -03003950 if (tp_features.hotkey_wlsw &&
3951 hkey == TP_HKEY_EV_RFKILL_CHANGED) {
Henrique de Moraes Holschuh733e27c2008-07-21 09:15:49 -03003952 tpacpi_send_radiosw_update();
Henrique de Moraes Holschuh3b64b512008-01-08 13:02:51 -02003953 send_acpi_ev = 0;
Henrique de Moraes Holschuh3827e7a2009-01-11 03:01:05 -02003954 known_ev = true;
Henrique de Moraes Holschuhff80f132007-09-04 11:13:15 -03003955 break;
3956 }
3957 /* fallthrough to default */
3958 default:
Henrique de Moraes Holschuh3827e7a2009-01-11 03:01:05 -02003959 known_ev = false;
Henrique de Moraes Holschuh3b64b512008-01-08 13:02:51 -02003960 }
Henrique de Moraes Holschuh3827e7a2009-01-11 03:01:05 -02003961 if (!known_ev) {
Joe Perches0978e012011-04-04 10:06:25 -07003962 pr_notice("unhandled HKEY event 0x%04x\n", hkey);
3963 pr_notice("please report the conditions when this "
3964 "event happened to %s\n", TPACPI_MAIL);
Henrique de Moraes Holschuh6a38abb2007-07-18 23:45:35 -03003965 }
Henrique de Moraes Holschuhff80f132007-09-04 11:13:15 -03003966
Henrique de Moraes Holschuh3eea1232007-09-23 11:39:04 -03003967 /* netlink events */
Henrique de Moraes Holschuh3e5ce912007-09-23 11:39:05 -03003968 if (!ignore_acpi_ev && send_acpi_ev) {
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02003969 acpi_bus_generate_netlink_event(
3970 ibm->acpi->device->pnp.device_class,
Kay Sieverse0b36fc2009-01-11 03:00:59 -02003971 dev_name(&ibm->acpi->device->dev),
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02003972 event, hkey);
Henrique de Moraes Holschuh3eea1232007-09-23 11:39:04 -03003973 }
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03003974 }
3975}
3976
Rafael J. Wysockifd3c3a42012-06-27 23:18:44 +02003977static void hotkey_suspend(void)
Henrique de Moraes Holschuha713b4d2008-01-08 13:02:52 -02003978{
3979 /* Do these on suspend, we get the events on early resume! */
3980 hotkey_wakeup_reason = TP_ACPI_WAKEUP_NONE;
3981 hotkey_autosleep_ack = 0;
Shuduo Sang330947b2014-03-27 18:06:25 +08003982
3983 /* save previous mode of adaptive keyboard of X1 Carbon */
Bastien Noceraf23a5bc2015-03-02 14:45:16 +01003984 if (tp_features.has_adaptive_kbd) {
3985 if (!acpi_evalf(hkey_handle, &adaptive_keyboard_prev_mode,
3986 "GTRW", "dd", 0)) {
3987 pr_err("Cannot read adaptive keyboard mode.\n");
Shuduo Sang330947b2014-03-27 18:06:25 +08003988 }
3989 }
Henrique de Moraes Holschuha713b4d2008-01-08 13:02:52 -02003990}
3991
Henrique de Moraes Holschuh5c29d582007-07-18 23:45:38 -03003992static void hotkey_resume(void)
3993{
Henrique de Moraes Holschuhd64c81c42008-10-18 14:23:55 -03003994 tpacpi_disable_brightness_delay();
3995
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03003996 if (hotkey_status_set(true) < 0 ||
3997 hotkey_mask_set(hotkey_acpi_mask) < 0)
Joe Perches0978e012011-04-04 10:06:25 -07003998 pr_err("error while attempting to reset the event "
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03003999 "firmware interface\n");
4000
Henrique de Moraes Holschuh733e27c2008-07-21 09:15:49 -03004001 tpacpi_send_radiosw_update();
Henrique de Moraes Holschuh6c231bd2008-02-16 02:17:58 -02004002 hotkey_tablet_mode_notify_change();
Henrique de Moraes Holschuh50ebec02008-01-08 13:02:55 -02004003 hotkey_wakeup_reason_notify_change();
4004 hotkey_wakeup_hotunplug_complete_notify_change();
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03004005 hotkey_poll_setup_safe(false);
Shuduo Sang330947b2014-03-27 18:06:25 +08004006
4007 /* restore previous mode of adapive keyboard of X1 Carbon */
Bastien Noceraf23a5bc2015-03-02 14:45:16 +01004008 if (tp_features.has_adaptive_kbd) {
4009 if (!acpi_evalf(hkey_handle, NULL, "STRW", "vd",
4010 adaptive_keyboard_prev_mode)) {
4011 pr_err("Cannot set adaptive keyboard mode.\n");
Shuduo Sang330947b2014-03-27 18:06:25 +08004012 }
4013 }
Henrique de Moraes Holschuh5c29d582007-07-18 23:45:38 -03004014}
4015
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03004016/* procfs -------------------------------------------------------------- */
Alexey Dobriyan887965e2009-12-15 21:51:12 -02004017static int hotkey_read(struct seq_file *m)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004018{
Henrique de Moraes Holschuhae92bd12007-07-18 23:45:29 -03004019 int res, status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004020
Henrique de Moraes Holschuhd8fd94d2007-04-21 11:08:36 -03004021 if (!tp_features.hotkey) {
Alexey Dobriyan887965e2009-12-15 21:51:12 -02004022 seq_printf(m, "status:\t\tnot supported\n");
4023 return 0;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004024 }
4025
Henrique de Moraes Holschuh7646ea82009-01-11 03:01:04 -02004026 if (mutex_lock_killable(&hotkey_mutex))
Henrique de Moraes Holschuhfc589a32007-10-30 17:46:24 -02004027 return -ERESTARTSYS;
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02004028 res = hotkey_status_get(&status);
4029 if (!res)
4030 res = hotkey_mask_get();
Henrique de Moraes Holschuh40ca9fd2007-04-24 11:48:15 -03004031 mutex_unlock(&hotkey_mutex);
Henrique de Moraes Holschuhb86c4722007-04-21 11:08:39 -03004032 if (res)
4033 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004034
Alexey Dobriyan887965e2009-12-15 21:51:12 -02004035 seq_printf(m, "status:\t\t%s\n", enabled(status, 0));
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03004036 if (hotkey_all_mask) {
Alexey Dobriyan887965e2009-12-15 21:51:12 -02004037 seq_printf(m, "mask:\t\t0x%08x\n", hotkey_user_mask);
4038 seq_printf(m, "commands:\tenable, disable, reset, <mask>\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004039 } else {
Alexey Dobriyan887965e2009-12-15 21:51:12 -02004040 seq_printf(m, "mask:\t\tnot supported\n");
4041 seq_printf(m, "commands:\tenable, disable, reset\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004042 }
4043
Alexey Dobriyan887965e2009-12-15 21:51:12 -02004044 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004045}
4046
Henrique de Moraes Holschuh406e9882009-04-14 02:44:10 +00004047static void hotkey_enabledisable_warn(bool enable)
Henrique de Moraes Holschuh2586d562009-04-04 04:25:48 +00004048{
4049 tpacpi_log_usertask("procfs hotkey enable/disable");
Henrique de Moraes Holschuh406e9882009-04-14 02:44:10 +00004050 if (!WARN((tpacpi_lifecycle == TPACPI_LIFE_RUNNING || !enable),
Joe Perches0978e012011-04-04 10:06:25 -07004051 pr_fmt("hotkey enable/disable functionality has been "
4052 "removed from the driver. "
4053 "Hotkeys are always enabled.\n")))
4054 pr_err("Please remove the hotkey=enable module "
4055 "parameter, it is deprecated. "
4056 "Hotkeys are always enabled.\n");
Henrique de Moraes Holschuh2586d562009-04-04 04:25:48 +00004057}
4058
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004059static int hotkey_write(char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004060{
Henrique de Moraes Holschuh2586d562009-04-04 04:25:48 +00004061 int res;
Henrique de Moraes Holschuhae92bd12007-07-18 23:45:29 -03004062 u32 mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004063 char *cmd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004064
Henrique de Moraes Holschuhd8fd94d2007-04-21 11:08:36 -03004065 if (!tp_features.hotkey)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004066 return -ENODEV;
4067
Henrique de Moraes Holschuh7646ea82009-01-11 03:01:04 -02004068 if (mutex_lock_killable(&hotkey_mutex))
Henrique de Moraes Holschuhfc589a32007-10-30 17:46:24 -02004069 return -ERESTARTSYS;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004070
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03004071 mask = hotkey_user_mask;
Henrique de Moraes Holschuh40ca9fd2007-04-24 11:48:15 -03004072
4073 res = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004074 while ((cmd = next_cmd(&buf))) {
4075 if (strlencmp(cmd, "enable") == 0) {
Henrique de Moraes Holschuh406e9882009-04-14 02:44:10 +00004076 hotkey_enabledisable_warn(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004077 } else if (strlencmp(cmd, "disable") == 0) {
Henrique de Moraes Holschuh406e9882009-04-14 02:44:10 +00004078 hotkey_enabledisable_warn(0);
Henrique de Moraes Holschuh2586d562009-04-04 04:25:48 +00004079 res = -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004080 } else if (strlencmp(cmd, "reset") == 0) {
Henrique de Moraes Holschuh20c9aa42009-09-12 15:22:16 -03004081 mask = (hotkey_all_mask | hotkey_source_mask)
4082 & ~hotkey_reserved_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004083 } else if (sscanf(cmd, "0x%x", &mask) == 1) {
4084 /* mask set */
4085 } else if (sscanf(cmd, "%x", &mask) == 1) {
4086 /* mask set */
Henrique de Moraes Holschuh40ca9fd2007-04-24 11:48:15 -03004087 } else {
4088 res = -EINVAL;
4089 goto errexit;
4090 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004091 }
Henrique de Moraes Holschuh56e2c202009-04-04 04:25:51 +00004092
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03004093 if (!res) {
Henrique de Moraes Holschuh56e2c202009-04-04 04:25:51 +00004094 tpacpi_disclose_usertask("procfs hotkey",
4095 "set mask to 0x%08x\n", mask);
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03004096 res = hotkey_user_mask_set(mask);
4097 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004098
Henrique de Moraes Holschuh40ca9fd2007-04-24 11:48:15 -03004099errexit:
4100 mutex_unlock(&hotkey_mutex);
4101 return res;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004102}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004103
Thomas Renninger1ba90e32007-07-23 14:44:41 +02004104static const struct acpi_device_id ibm_htk_device_ids[] = {
Manoj Iyer9fbdaeb2011-05-08 18:04:29 -04004105 {TPACPI_ACPI_IBM_HKEY_HID, 0},
4106 {TPACPI_ACPI_LENOVO_HKEY_HID, 0},
Thomas Renninger1ba90e32007-07-23 14:44:41 +02004107 {"", 0},
4108};
4109
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -03004110static struct tp_acpi_drv_struct ibm_hotkey_acpidriver = {
Thomas Renninger1ba90e32007-07-23 14:44:41 +02004111 .hid = ibm_htk_device_ids,
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03004112 .notify = hotkey_notify,
4113 .handle = &hkey_handle,
4114 .type = ACPI_DEVICE_NOTIFY,
4115};
4116
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -03004117static struct ibm_struct hotkey_driver_data = {
4118 .name = "hotkey",
4119 .read = hotkey_read,
4120 .write = hotkey_write,
4121 .exit = hotkey_exit,
Henrique de Moraes Holschuh5c29d582007-07-18 23:45:38 -03004122 .resume = hotkey_resume,
Henrique de Moraes Holschuha713b4d2008-01-08 13:02:52 -02004123 .suspend = hotkey_suspend,
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -03004124 .acpi = &ibm_hotkey_acpidriver,
4125};
4126
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03004127/*************************************************************************
4128 * Bluetooth subdriver
4129 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004130
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02004131enum {
4132 /* ACPI GBDC/SBDC bits */
4133 TP_ACPI_BLUETOOTH_HWPRESENT = 0x01, /* Bluetooth hw available */
4134 TP_ACPI_BLUETOOTH_RADIOSSW = 0x02, /* Bluetooth radio enabled */
Henrique de Moraes Holschuh153f8222009-01-11 03:01:01 -02004135 TP_ACPI_BLUETOOTH_RESUMECTRL = 0x04, /* Bluetooth state at resume:
Henrique de Moraes Holschuh08fedfc2010-02-25 22:22:07 -03004136 0 = disable, 1 = enable */
Henrique de Moraes Holschuh153f8222009-01-11 03:01:01 -02004137};
4138
4139enum {
4140 /* ACPI \BLTH commands */
4141 TP_ACPI_BLTH_GET_ULTRAPORT_ID = 0x00, /* Get Ultraport BT ID */
4142 TP_ACPI_BLTH_GET_PWR_ON_RESUME = 0x01, /* Get power-on-resume state */
4143 TP_ACPI_BLTH_PWR_ON_ON_RESUME = 0x02, /* Resume powered on */
4144 TP_ACPI_BLTH_PWR_OFF_ON_RESUME = 0x03, /* Resume powered off */
4145 TP_ACPI_BLTH_SAVE_STATE = 0x05, /* Save state for S4/S5 */
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02004146};
4147
Henrique de Moraes Holschuhbee4cd9b2009-04-04 04:25:50 +00004148#define TPACPI_RFK_BLUETOOTH_SW_NAME "tpacpi_bluetooth_sw"
4149
Johannes Berg19d337d2009-06-02 13:01:37 +02004150static int bluetooth_get_status(void)
Henrique de Moraes Holschuh07431ec2008-07-21 09:15:50 -03004151{
4152 int status;
4153
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02004154#ifdef CONFIG_THINKPAD_ACPI_DEBUGFACILITIES
4155 if (dbg_bluetoothemul)
4156 return (tpacpi_bluetooth_emulstate) ?
Johannes Berg19d337d2009-06-02 13:01:37 +02004157 TPACPI_RFK_RADIO_ON : TPACPI_RFK_RADIO_OFF;
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02004158#endif
4159
Henrique de Moraes Holschuh07431ec2008-07-21 09:15:50 -03004160 if (!acpi_evalf(hkey_handle, &status, "GBDC", "d"))
4161 return -EIO;
4162
Henrique de Moraes Holschuh0e74dc22008-07-21 09:15:51 -03004163 return ((status & TP_ACPI_BLUETOOTH_RADIOSSW) != 0) ?
Johannes Berg19d337d2009-06-02 13:01:37 +02004164 TPACPI_RFK_RADIO_ON : TPACPI_RFK_RADIO_OFF;
Henrique de Moraes Holschuh07431ec2008-07-21 09:15:50 -03004165}
4166
Johannes Berg19d337d2009-06-02 13:01:37 +02004167static int bluetooth_set_status(enum tpacpi_rfkill_state state)
Henrique de Moraes Holschuh0e74dc22008-07-21 09:15:51 -03004168{
4169 int status;
4170
Henrique de Moraes Holschuhbee4cd9b2009-04-04 04:25:50 +00004171 vdbg_printk(TPACPI_DBG_RFKILL,
Johannes Berg19d337d2009-06-02 13:01:37 +02004172 "will attempt to %s bluetooth\n",
4173 (state == TPACPI_RFK_RADIO_ON) ? "enable" : "disable");
Henrique de Moraes Holschuhbee4cd9b2009-04-04 04:25:50 +00004174
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02004175#ifdef CONFIG_THINKPAD_ACPI_DEBUGFACILITIES
4176 if (dbg_bluetoothemul) {
Johannes Berg19d337d2009-06-02 13:01:37 +02004177 tpacpi_bluetooth_emulstate = (state == TPACPI_RFK_RADIO_ON);
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02004178 return 0;
4179 }
4180#endif
4181
Johannes Berg19d337d2009-06-02 13:01:37 +02004182 if (state == TPACPI_RFK_RADIO_ON)
Henrique de Moraes Holschuh08fedfc2010-02-25 22:22:07 -03004183 status = TP_ACPI_BLUETOOTH_RADIOSSW
4184 | TP_ACPI_BLUETOOTH_RESUMECTRL;
4185 else
4186 status = 0;
Johannes Berg19d337d2009-06-02 13:01:37 +02004187
Henrique de Moraes Holschuh07431ec2008-07-21 09:15:50 -03004188 if (!acpi_evalf(hkey_handle, NULL, "SBDC", "vd", status))
4189 return -EIO;
4190
4191 return 0;
4192}
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02004193
Henrique de Moraes Holschuhd3a6ade2007-04-27 22:00:17 -03004194/* sysfs bluetooth enable ---------------------------------------------- */
4195static ssize_t bluetooth_enable_show(struct device *dev,
4196 struct device_attribute *attr,
4197 char *buf)
4198{
Johannes Berg19d337d2009-06-02 13:01:37 +02004199 return tpacpi_rfk_sysfs_enable_show(TPACPI_RFK_BLUETOOTH_SW_ID,
4200 attr, buf);
Henrique de Moraes Holschuhd3a6ade2007-04-27 22:00:17 -03004201}
4202
4203static ssize_t bluetooth_enable_store(struct device *dev,
4204 struct device_attribute *attr,
4205 const char *buf, size_t count)
4206{
Johannes Berg19d337d2009-06-02 13:01:37 +02004207 return tpacpi_rfk_sysfs_enable_store(TPACPI_RFK_BLUETOOTH_SW_ID,
4208 attr, buf, count);
Henrique de Moraes Holschuhd3a6ade2007-04-27 22:00:17 -03004209}
4210
Bastien Nocerab4dd04ac2015-03-02 18:40:50 +01004211static DEVICE_ATTR_RW(bluetooth_enable);
Henrique de Moraes Holschuhd3a6ade2007-04-27 22:00:17 -03004212
4213/* --------------------------------------------------------------------- */
4214
4215static struct attribute *bluetooth_attributes[] = {
4216 &dev_attr_bluetooth_enable.attr,
4217 NULL
4218};
4219
4220static const struct attribute_group bluetooth_attr_group = {
Henrique de Moraes Holschuhd3a6ade2007-04-27 22:00:17 -03004221 .attrs = bluetooth_attributes,
4222};
4223
Johannes Berg19d337d2009-06-02 13:01:37 +02004224static const struct tpacpi_rfk_ops bluetooth_tprfk_ops = {
4225 .get_status = bluetooth_get_status,
4226 .set_status = bluetooth_set_status,
4227};
Henrique de Moraes Holschuh0e74dc22008-07-21 09:15:51 -03004228
Henrique de Moraes Holschuh90d9d3c2009-01-11 03:01:02 -02004229static void bluetooth_shutdown(void)
4230{
4231 /* Order firmware to save current state to NVRAM */
4232 if (!acpi_evalf(NULL, NULL, "\\BLTH", "vd",
4233 TP_ACPI_BLTH_SAVE_STATE))
Joe Perches0978e012011-04-04 10:06:25 -07004234 pr_notice("failed to save bluetooth state to NVRAM\n");
Henrique de Moraes Holschuhbee4cd9b2009-04-04 04:25:50 +00004235 else
4236 vdbg_printk(TPACPI_DBG_RFKILL,
Paul Bolle1f013582011-10-06 22:57:56 +02004237 "bluetooth state saved to NVRAM\n");
Henrique de Moraes Holschuh90d9d3c2009-01-11 03:01:02 -02004238}
4239
Henrique de Moraes Holschuh07431ec2008-07-21 09:15:50 -03004240static void bluetooth_exit(void)
4241{
4242 sysfs_remove_group(&tpacpi_pdev->dev.kobj,
4243 &bluetooth_attr_group);
Johannes Berg19d337d2009-06-02 13:01:37 +02004244
4245 tpacpi_destroy_rfkill(TPACPI_RFK_BLUETOOTH_SW_ID);
4246
4247 bluetooth_shutdown();
Henrique de Moraes Holschuh07431ec2008-07-21 09:15:50 -03004248}
4249
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03004250static int __init bluetooth_init(struct ibm_init_struct *iibm)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004251{
Henrique de Moraes Holschuhd3a6ade2007-04-27 22:00:17 -03004252 int res;
Henrique de Moraes Holschuhd6fdd1e2007-04-21 11:08:40 -03004253 int status = 0;
4254
Henrique de Moraes Holschuhbee4cd9b2009-04-04 04:25:50 +00004255 vdbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_RFKILL,
4256 "initializing bluetooth subdriver\n");
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03004257
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02004258 TPACPI_ACPIHANDLE_INIT(hkey);
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03004259
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004260 /* bluetooth not supported on 570, 600e/x, 770e, 770x, A21e, A2xm/p,
4261 G4x, R30, R31, R40e, R50e, T20-22, X20-21 */
Henrique de Moraes Holschuhd8fd94d2007-04-21 11:08:36 -03004262 tp_features.bluetooth = hkey_handle &&
Henrique de Moraes Holschuhd6fdd1e2007-04-21 11:08:40 -03004263 acpi_evalf(hkey_handle, &status, "GBDC", "qd");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004264
Henrique de Moraes Holschuhbee4cd9b2009-04-04 04:25:50 +00004265 vdbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_RFKILL,
4266 "bluetooth is %s, status 0x%02x\n",
Henrique de Moraes Holschuhd6fdd1e2007-04-21 11:08:40 -03004267 str_supported(tp_features.bluetooth),
4268 status);
4269
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02004270#ifdef CONFIG_THINKPAD_ACPI_DEBUGFACILITIES
4271 if (dbg_bluetoothemul) {
4272 tp_features.bluetooth = 1;
Joe Perches0978e012011-04-04 10:06:25 -07004273 pr_info("bluetooth switch emulation enabled\n");
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02004274 } else
4275#endif
Henrique de Moraes Holschuh3a872082008-07-21 09:15:49 -03004276 if (tp_features.bluetooth &&
4277 !(status & TP_ACPI_BLUETOOTH_HWPRESENT)) {
4278 /* no bluetooth hardware present in system */
4279 tp_features.bluetooth = 0;
Henrique de Moraes Holschuhbee4cd9b2009-04-04 04:25:50 +00004280 dbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_RFKILL,
Henrique de Moraes Holschuh3a872082008-07-21 09:15:49 -03004281 "bluetooth hardware not installed\n");
4282 }
4283
Henrique de Moraes Holschuh0e74dc22008-07-21 09:15:51 -03004284 if (!tp_features.bluetooth)
4285 return 1;
4286
Johannes Berg19d337d2009-06-02 13:01:37 +02004287 res = tpacpi_new_rfkill(TPACPI_RFK_BLUETOOTH_SW_ID,
4288 &bluetooth_tprfk_ops,
4289 RFKILL_TYPE_BLUETOOTH,
4290 TPACPI_RFK_BLUETOOTH_SW_NAME,
4291 true);
Henrique de Moraes Holschuh0e74dc22008-07-21 09:15:51 -03004292 if (res)
4293 return res;
4294
Johannes Berg19d337d2009-06-02 13:01:37 +02004295 res = sysfs_create_group(&tpacpi_pdev->dev.kobj,
4296 &bluetooth_attr_group);
Henrique de Moraes Holschuh0e74dc22008-07-21 09:15:51 -03004297 if (res) {
Johannes Berg19d337d2009-06-02 13:01:37 +02004298 tpacpi_destroy_rfkill(TPACPI_RFK_BLUETOOTH_SW_ID);
Henrique de Moraes Holschuh0e74dc22008-07-21 09:15:51 -03004299 return res;
Henrique de Moraes Holschuhd6fdd1e2007-04-21 11:08:40 -03004300 }
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03004301
Henrique de Moraes Holschuh0e74dc22008-07-21 09:15:51 -03004302 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004303}
4304
Henrique de Moraes Holschuhd3a6ade2007-04-27 22:00:17 -03004305/* procfs -------------------------------------------------------------- */
Alexey Dobriyan887965e2009-12-15 21:51:12 -02004306static int bluetooth_read(struct seq_file *m)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004307{
Alexey Dobriyan887965e2009-12-15 21:51:12 -02004308 return tpacpi_rfk_procfs_read(TPACPI_RFK_BLUETOOTH_SW_ID, m);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004309}
4310
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004311static int bluetooth_write(char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004312{
Johannes Berg19d337d2009-06-02 13:01:37 +02004313 return tpacpi_rfk_procfs_write(TPACPI_RFK_BLUETOOTH_SW_ID, buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004314}
4315
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03004316static struct ibm_struct bluetooth_driver_data = {
4317 .name = "bluetooth",
4318 .read = bluetooth_read,
4319 .write = bluetooth_write,
Henrique de Moraes Holschuhd3a6ade2007-04-27 22:00:17 -03004320 .exit = bluetooth_exit,
Henrique de Moraes Holschuh90d9d3c2009-01-11 03:01:02 -02004321 .shutdown = bluetooth_shutdown,
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03004322};
4323
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03004324/*************************************************************************
4325 * Wan subdriver
4326 */
4327
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02004328enum {
4329 /* ACPI GWAN/SWAN bits */
4330 TP_ACPI_WANCARD_HWPRESENT = 0x01, /* Wan hw available */
4331 TP_ACPI_WANCARD_RADIOSSW = 0x02, /* Wan radio enabled */
Henrique de Moraes Holschuh153f8222009-01-11 03:01:01 -02004332 TP_ACPI_WANCARD_RESUMECTRL = 0x04, /* Wan state at resume:
Henrique de Moraes Holschuh08fedfc2010-02-25 22:22:07 -03004333 0 = disable, 1 = enable */
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02004334};
4335
Henrique de Moraes Holschuhbee4cd9b2009-04-04 04:25:50 +00004336#define TPACPI_RFK_WWAN_SW_NAME "tpacpi_wwan_sw"
4337
Johannes Berg19d337d2009-06-02 13:01:37 +02004338static int wan_get_status(void)
Henrique de Moraes Holschuh07431ec2008-07-21 09:15:50 -03004339{
4340 int status;
4341
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02004342#ifdef CONFIG_THINKPAD_ACPI_DEBUGFACILITIES
4343 if (dbg_wwanemul)
4344 return (tpacpi_wwan_emulstate) ?
Johannes Berg19d337d2009-06-02 13:01:37 +02004345 TPACPI_RFK_RADIO_ON : TPACPI_RFK_RADIO_OFF;
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02004346#endif
4347
Henrique de Moraes Holschuh07431ec2008-07-21 09:15:50 -03004348 if (!acpi_evalf(hkey_handle, &status, "GWAN", "d"))
4349 return -EIO;
4350
Henrique de Moraes Holschuh0e74dc22008-07-21 09:15:51 -03004351 return ((status & TP_ACPI_WANCARD_RADIOSSW) != 0) ?
Johannes Berg19d337d2009-06-02 13:01:37 +02004352 TPACPI_RFK_RADIO_ON : TPACPI_RFK_RADIO_OFF;
Henrique de Moraes Holschuh07431ec2008-07-21 09:15:50 -03004353}
4354
Johannes Berg19d337d2009-06-02 13:01:37 +02004355static int wan_set_status(enum tpacpi_rfkill_state state)
Henrique de Moraes Holschuh0e74dc22008-07-21 09:15:51 -03004356{
4357 int status;
4358
Henrique de Moraes Holschuhbee4cd9b2009-04-04 04:25:50 +00004359 vdbg_printk(TPACPI_DBG_RFKILL,
Johannes Berg19d337d2009-06-02 13:01:37 +02004360 "will attempt to %s wwan\n",
4361 (state == TPACPI_RFK_RADIO_ON) ? "enable" : "disable");
Henrique de Moraes Holschuhbee4cd9b2009-04-04 04:25:50 +00004362
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02004363#ifdef CONFIG_THINKPAD_ACPI_DEBUGFACILITIES
4364 if (dbg_wwanemul) {
Johannes Berg19d337d2009-06-02 13:01:37 +02004365 tpacpi_wwan_emulstate = (state == TPACPI_RFK_RADIO_ON);
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02004366 return 0;
4367 }
4368#endif
4369
Johannes Berg19d337d2009-06-02 13:01:37 +02004370 if (state == TPACPI_RFK_RADIO_ON)
Henrique de Moraes Holschuh08fedfc2010-02-25 22:22:07 -03004371 status = TP_ACPI_WANCARD_RADIOSSW
4372 | TP_ACPI_WANCARD_RESUMECTRL;
4373 else
4374 status = 0;
Johannes Berg19d337d2009-06-02 13:01:37 +02004375
Henrique de Moraes Holschuh07431ec2008-07-21 09:15:50 -03004376 if (!acpi_evalf(hkey_handle, NULL, "SWAN", "vd", status))
4377 return -EIO;
4378
4379 return 0;
4380}
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02004381
Henrique de Moraes Holschuhd3a6ade2007-04-27 22:00:17 -03004382/* sysfs wan enable ---------------------------------------------------- */
4383static ssize_t wan_enable_show(struct device *dev,
4384 struct device_attribute *attr,
4385 char *buf)
4386{
Johannes Berg19d337d2009-06-02 13:01:37 +02004387 return tpacpi_rfk_sysfs_enable_show(TPACPI_RFK_WWAN_SW_ID,
4388 attr, buf);
Henrique de Moraes Holschuhd3a6ade2007-04-27 22:00:17 -03004389}
4390
4391static ssize_t wan_enable_store(struct device *dev,
4392 struct device_attribute *attr,
4393 const char *buf, size_t count)
4394{
Johannes Berg19d337d2009-06-02 13:01:37 +02004395 return tpacpi_rfk_sysfs_enable_store(TPACPI_RFK_WWAN_SW_ID,
4396 attr, buf, count);
Henrique de Moraes Holschuhd3a6ade2007-04-27 22:00:17 -03004397}
4398
Bjørn Mork5fb73bc2015-05-19 19:45:03 +02004399static DEVICE_ATTR(wwan_enable, S_IWUSR | S_IRUGO,
4400 wan_enable_show, wan_enable_store);
Henrique de Moraes Holschuhd3a6ade2007-04-27 22:00:17 -03004401
4402/* --------------------------------------------------------------------- */
4403
4404static struct attribute *wan_attributes[] = {
Bjørn Mork5fb73bc2015-05-19 19:45:03 +02004405 &dev_attr_wwan_enable.attr,
Henrique de Moraes Holschuhd3a6ade2007-04-27 22:00:17 -03004406 NULL
4407};
4408
4409static const struct attribute_group wan_attr_group = {
Henrique de Moraes Holschuhd3a6ade2007-04-27 22:00:17 -03004410 .attrs = wan_attributes,
4411};
4412
Johannes Berg19d337d2009-06-02 13:01:37 +02004413static const struct tpacpi_rfk_ops wan_tprfk_ops = {
4414 .get_status = wan_get_status,
4415 .set_status = wan_set_status,
4416};
Henrique de Moraes Holschuh0e74dc22008-07-21 09:15:51 -03004417
Henrique de Moraes Holschuh90d9d3c2009-01-11 03:01:02 -02004418static void wan_shutdown(void)
4419{
4420 /* Order firmware to save current state to NVRAM */
4421 if (!acpi_evalf(NULL, NULL, "\\WGSV", "vd",
4422 TP_ACPI_WGSV_SAVE_STATE))
Joe Perches0978e012011-04-04 10:06:25 -07004423 pr_notice("failed to save WWAN state to NVRAM\n");
Henrique de Moraes Holschuhbee4cd9b2009-04-04 04:25:50 +00004424 else
4425 vdbg_printk(TPACPI_DBG_RFKILL,
4426 "WWAN state saved to NVRAM\n");
Henrique de Moraes Holschuh90d9d3c2009-01-11 03:01:02 -02004427}
4428
Henrique de Moraes Holschuh07431ec2008-07-21 09:15:50 -03004429static void wan_exit(void)
4430{
4431 sysfs_remove_group(&tpacpi_pdev->dev.kobj,
4432 &wan_attr_group);
Johannes Berg19d337d2009-06-02 13:01:37 +02004433
4434 tpacpi_destroy_rfkill(TPACPI_RFK_WWAN_SW_ID);
4435
4436 wan_shutdown();
Henrique de Moraes Holschuh07431ec2008-07-21 09:15:50 -03004437}
4438
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03004439static int __init wan_init(struct ibm_init_struct *iibm)
Jeremy Fitzhardinge42adb532006-06-01 17:41:00 -04004440{
Henrique de Moraes Holschuhd3a6ade2007-04-27 22:00:17 -03004441 int res;
Henrique de Moraes Holschuhd6fdd1e2007-04-21 11:08:40 -03004442 int status = 0;
4443
Henrique de Moraes Holschuhbee4cd9b2009-04-04 04:25:50 +00004444 vdbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_RFKILL,
4445 "initializing wan subdriver\n");
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03004446
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02004447 TPACPI_ACPIHANDLE_INIT(hkey);
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03004448
Henrique de Moraes Holschuhd8fd94d2007-04-21 11:08:36 -03004449 tp_features.wan = hkey_handle &&
Henrique de Moraes Holschuhd6fdd1e2007-04-21 11:08:40 -03004450 acpi_evalf(hkey_handle, &status, "GWAN", "qd");
Jeremy Fitzhardinge42adb532006-06-01 17:41:00 -04004451
Henrique de Moraes Holschuhbee4cd9b2009-04-04 04:25:50 +00004452 vdbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_RFKILL,
4453 "wan is %s, status 0x%02x\n",
Henrique de Moraes Holschuhd6fdd1e2007-04-21 11:08:40 -03004454 str_supported(tp_features.wan),
4455 status);
4456
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02004457#ifdef CONFIG_THINKPAD_ACPI_DEBUGFACILITIES
4458 if (dbg_wwanemul) {
4459 tp_features.wan = 1;
Joe Perches0978e012011-04-04 10:06:25 -07004460 pr_info("wwan switch emulation enabled\n");
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02004461 } else
4462#endif
Henrique de Moraes Holschuh3a872082008-07-21 09:15:49 -03004463 if (tp_features.wan &&
4464 !(status & TP_ACPI_WANCARD_HWPRESENT)) {
4465 /* no wan hardware present in system */
4466 tp_features.wan = 0;
Henrique de Moraes Holschuhbee4cd9b2009-04-04 04:25:50 +00004467 dbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_RFKILL,
Henrique de Moraes Holschuh3a872082008-07-21 09:15:49 -03004468 "wan hardware not installed\n");
4469 }
4470
Henrique de Moraes Holschuh0e74dc22008-07-21 09:15:51 -03004471 if (!tp_features.wan)
4472 return 1;
4473
Johannes Berg19d337d2009-06-02 13:01:37 +02004474 res = tpacpi_new_rfkill(TPACPI_RFK_WWAN_SW_ID,
4475 &wan_tprfk_ops,
4476 RFKILL_TYPE_WWAN,
4477 TPACPI_RFK_WWAN_SW_NAME,
4478 true);
Henrique de Moraes Holschuh0e74dc22008-07-21 09:15:51 -03004479 if (res)
4480 return res;
4481
Johannes Berg19d337d2009-06-02 13:01:37 +02004482 res = sysfs_create_group(&tpacpi_pdev->dev.kobj,
4483 &wan_attr_group);
4484
Henrique de Moraes Holschuh0e74dc22008-07-21 09:15:51 -03004485 if (res) {
Johannes Berg19d337d2009-06-02 13:01:37 +02004486 tpacpi_destroy_rfkill(TPACPI_RFK_WWAN_SW_ID);
Henrique de Moraes Holschuh0e74dc22008-07-21 09:15:51 -03004487 return res;
Henrique de Moraes Holschuhd6fdd1e2007-04-21 11:08:40 -03004488 }
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03004489
Henrique de Moraes Holschuh0e74dc22008-07-21 09:15:51 -03004490 return 0;
Jeremy Fitzhardinge42adb532006-06-01 17:41:00 -04004491}
4492
Henrique de Moraes Holschuhd3a6ade2007-04-27 22:00:17 -03004493/* procfs -------------------------------------------------------------- */
Alexey Dobriyan887965e2009-12-15 21:51:12 -02004494static int wan_read(struct seq_file *m)
Jeremy Fitzhardinge42adb532006-06-01 17:41:00 -04004495{
Alexey Dobriyan887965e2009-12-15 21:51:12 -02004496 return tpacpi_rfk_procfs_read(TPACPI_RFK_WWAN_SW_ID, m);
Jeremy Fitzhardinge42adb532006-06-01 17:41:00 -04004497}
4498
4499static int wan_write(char *buf)
4500{
Johannes Berg19d337d2009-06-02 13:01:37 +02004501 return tpacpi_rfk_procfs_write(TPACPI_RFK_WWAN_SW_ID, buf);
Jeremy Fitzhardinge42adb532006-06-01 17:41:00 -04004502}
4503
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03004504static struct ibm_struct wan_driver_data = {
4505 .name = "wan",
4506 .read = wan_read,
4507 .write = wan_write,
Henrique de Moraes Holschuhd3a6ade2007-04-27 22:00:17 -03004508 .exit = wan_exit,
Henrique de Moraes Holschuh90d9d3c2009-01-11 03:01:02 -02004509 .shutdown = wan_shutdown,
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03004510};
4511
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03004512/*************************************************************************
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -02004513 * UWB subdriver
4514 */
4515
4516enum {
4517 /* ACPI GUWB/SUWB bits */
4518 TP_ACPI_UWB_HWPRESENT = 0x01, /* UWB hw available */
4519 TP_ACPI_UWB_RADIOSSW = 0x02, /* UWB radio enabled */
4520};
4521
Henrique de Moraes Holschuhbee4cd9b2009-04-04 04:25:50 +00004522#define TPACPI_RFK_UWB_SW_NAME "tpacpi_uwb_sw"
4523
Johannes Berg19d337d2009-06-02 13:01:37 +02004524static int uwb_get_status(void)
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -02004525{
4526 int status;
4527
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -02004528#ifdef CONFIG_THINKPAD_ACPI_DEBUGFACILITIES
4529 if (dbg_uwbemul)
4530 return (tpacpi_uwb_emulstate) ?
Johannes Berg19d337d2009-06-02 13:01:37 +02004531 TPACPI_RFK_RADIO_ON : TPACPI_RFK_RADIO_OFF;
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -02004532#endif
4533
4534 if (!acpi_evalf(hkey_handle, &status, "GUWB", "d"))
4535 return -EIO;
4536
4537 return ((status & TP_ACPI_UWB_RADIOSSW) != 0) ?
Johannes Berg19d337d2009-06-02 13:01:37 +02004538 TPACPI_RFK_RADIO_ON : TPACPI_RFK_RADIO_OFF;
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -02004539}
4540
Johannes Berg19d337d2009-06-02 13:01:37 +02004541static int uwb_set_status(enum tpacpi_rfkill_state state)
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -02004542{
4543 int status;
4544
Henrique de Moraes Holschuhbee4cd9b2009-04-04 04:25:50 +00004545 vdbg_printk(TPACPI_DBG_RFKILL,
Johannes Berg19d337d2009-06-02 13:01:37 +02004546 "will attempt to %s UWB\n",
4547 (state == TPACPI_RFK_RADIO_ON) ? "enable" : "disable");
Henrique de Moraes Holschuhbee4cd9b2009-04-04 04:25:50 +00004548
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -02004549#ifdef CONFIG_THINKPAD_ACPI_DEBUGFACILITIES
4550 if (dbg_uwbemul) {
Johannes Berg19d337d2009-06-02 13:01:37 +02004551 tpacpi_uwb_emulstate = (state == TPACPI_RFK_RADIO_ON);
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -02004552 return 0;
4553 }
4554#endif
4555
Johannes Berg19d337d2009-06-02 13:01:37 +02004556 if (state == TPACPI_RFK_RADIO_ON)
4557 status = TP_ACPI_UWB_RADIOSSW;
4558 else
4559 status = 0;
4560
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -02004561 if (!acpi_evalf(hkey_handle, NULL, "SUWB", "vd", status))
4562 return -EIO;
4563
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -02004564 return 0;
4565}
4566
4567/* --------------------------------------------------------------------- */
4568
Johannes Berg19d337d2009-06-02 13:01:37 +02004569static const struct tpacpi_rfk_ops uwb_tprfk_ops = {
4570 .get_status = uwb_get_status,
4571 .set_status = uwb_set_status,
4572};
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -02004573
4574static void uwb_exit(void)
4575{
Johannes Berg19d337d2009-06-02 13:01:37 +02004576 tpacpi_destroy_rfkill(TPACPI_RFK_UWB_SW_ID);
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -02004577}
4578
4579static int __init uwb_init(struct ibm_init_struct *iibm)
4580{
4581 int res;
4582 int status = 0;
4583
Henrique de Moraes Holschuhbee4cd9b2009-04-04 04:25:50 +00004584 vdbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_RFKILL,
4585 "initializing uwb subdriver\n");
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -02004586
4587 TPACPI_ACPIHANDLE_INIT(hkey);
4588
4589 tp_features.uwb = hkey_handle &&
4590 acpi_evalf(hkey_handle, &status, "GUWB", "qd");
4591
Henrique de Moraes Holschuhbee4cd9b2009-04-04 04:25:50 +00004592 vdbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_RFKILL,
4593 "uwb is %s, status 0x%02x\n",
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -02004594 str_supported(tp_features.uwb),
4595 status);
4596
4597#ifdef CONFIG_THINKPAD_ACPI_DEBUGFACILITIES
4598 if (dbg_uwbemul) {
4599 tp_features.uwb = 1;
Joe Perches0978e012011-04-04 10:06:25 -07004600 pr_info("uwb switch emulation enabled\n");
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -02004601 } else
4602#endif
4603 if (tp_features.uwb &&
4604 !(status & TP_ACPI_UWB_HWPRESENT)) {
4605 /* no uwb hardware present in system */
4606 tp_features.uwb = 0;
4607 dbg_printk(TPACPI_DBG_INIT,
4608 "uwb hardware not installed\n");
4609 }
4610
4611 if (!tp_features.uwb)
4612 return 1;
4613
4614 res = tpacpi_new_rfkill(TPACPI_RFK_UWB_SW_ID,
Johannes Berg19d337d2009-06-02 13:01:37 +02004615 &uwb_tprfk_ops,
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -02004616 RFKILL_TYPE_UWB,
Henrique de Moraes Holschuhbee4cd9b2009-04-04 04:25:50 +00004617 TPACPI_RFK_UWB_SW_NAME,
Johannes Berg19d337d2009-06-02 13:01:37 +02004618 false);
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -02004619 return res;
4620}
4621
4622static struct ibm_struct uwb_driver_data = {
4623 .name = "uwb",
4624 .exit = uwb_exit,
4625 .flags.experimental = 1,
4626};
4627
4628/*************************************************************************
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03004629 * Video subdriver
4630 */
4631
Henrique de Moraes Holschuhd7c1d172008-02-16 02:17:54 -02004632#ifdef CONFIG_THINKPAD_ACPI_VIDEO
4633
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02004634enum video_access_mode {
4635 TPACPI_VIDEO_NONE = 0,
4636 TPACPI_VIDEO_570, /* 570 */
4637 TPACPI_VIDEO_770, /* 600e/x, 770e, 770x */
4638 TPACPI_VIDEO_NEW, /* all others */
4639};
4640
4641enum { /* video status flags, based on VIDEO_570 */
4642 TP_ACPI_VIDEO_S_LCD = 0x01, /* LCD output enabled */
4643 TP_ACPI_VIDEO_S_CRT = 0x02, /* CRT output enabled */
4644 TP_ACPI_VIDEO_S_DVI = 0x08, /* DVI output enabled */
4645};
4646
4647enum { /* TPACPI_VIDEO_570 constants */
4648 TP_ACPI_VIDEO_570_PHSCMD = 0x87, /* unknown magic constant :( */
4649 TP_ACPI_VIDEO_570_PHSMASK = 0x03, /* PHS bits that map to
4650 * video_status_flags */
4651 TP_ACPI_VIDEO_570_PHS2CMD = 0x8b, /* unknown magic constant :( */
4652 TP_ACPI_VIDEO_570_PHS2SET = 0x80, /* unknown magic constant :( */
4653};
4654
Henrique de Moraes Holschuh9a8e1732006-11-25 16:36:00 -02004655static enum video_access_mode video_supported;
4656static int video_orig_autosw;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004657
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02004658static int video_autosw_get(void);
4659static int video_autosw_set(int enable);
4660
Joe Perches112a6ee2011-04-04 10:06:24 -07004661TPACPI_HANDLE(vid, root,
4662 "\\_SB.PCI.AGP.VGA", /* 570 */
4663 "\\_SB.PCI0.AGP0.VID0", /* 600e/x, 770x */
4664 "\\_SB.PCI0.VID0", /* 770e */
4665 "\\_SB.PCI0.VID", /* A21e, G4x, R50e, X30, X40 */
4666 "\\_SB.PCI0.AGP.VGA", /* X100e and a few others */
4667 "\\_SB.PCI0.AGP.VID", /* all others */
4668 ); /* R30, R31 */
4669
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02004670TPACPI_HANDLE(vid2, root, "\\_SB.PCI0.AGPB.VID"); /* G41 */
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03004671
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03004672static int __init video_init(struct ibm_init_struct *iibm)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004673{
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004674 int ivga;
4675
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03004676 vdbg_printk(TPACPI_DBG_INIT, "initializing video subdriver\n");
4677
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02004678 TPACPI_ACPIHANDLE_INIT(vid);
Henrique de Moraes Holschuhe28393c2010-05-16 19:45:23 -03004679 if (tpacpi_is_ibm())
4680 TPACPI_ACPIHANDLE_INIT(vid2);
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03004681
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004682 if (vid2_handle && acpi_evalf(NULL, &ivga, "\\IVGA", "d") && ivga)
4683 /* G41, assume IVGA doesn't change */
4684 vid_handle = vid2_handle;
4685
4686 if (!vid_handle)
4687 /* video switching not supported on R30, R31 */
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03004688 video_supported = TPACPI_VIDEO_NONE;
Henrique de Moraes Holschuhe28393c2010-05-16 19:45:23 -03004689 else if (tpacpi_is_ibm() &&
4690 acpi_evalf(vid_handle, &video_orig_autosw, "SWIT", "qd"))
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004691 /* 570 */
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03004692 video_supported = TPACPI_VIDEO_570;
Henrique de Moraes Holschuhe28393c2010-05-16 19:45:23 -03004693 else if (tpacpi_is_ibm() &&
4694 acpi_evalf(vid_handle, &video_orig_autosw, "^VADL", "qd"))
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004695 /* 600e/x, 770e, 770x */
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03004696 video_supported = TPACPI_VIDEO_770;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004697 else
4698 /* all others */
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03004699 video_supported = TPACPI_VIDEO_NEW;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004700
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03004701 vdbg_printk(TPACPI_DBG_INIT, "video is %s, mode %d\n",
4702 str_supported(video_supported != TPACPI_VIDEO_NONE),
4703 video_supported);
4704
Jan van den Berg72a979f2014-09-17 00:01:08 +02004705 return (video_supported != TPACPI_VIDEO_NONE) ? 0 : 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004706}
4707
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03004708static void video_exit(void)
4709{
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004710 dbg_printk(TPACPI_DBG_EXIT,
4711 "restoring original video autoswitch mode\n");
4712 if (video_autosw_set(video_orig_autosw))
Joe Perches0978e012011-04-04 10:06:25 -07004713 pr_err("error while trying to restore original "
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004714 "video autoswitch mode\n");
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03004715}
4716
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004717static int video_outputsw_get(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004718{
4719 int status = 0;
4720 int i;
4721
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004722 switch (video_supported) {
4723 case TPACPI_VIDEO_570:
4724 if (!acpi_evalf(NULL, &i, "\\_SB.PHS", "dd",
4725 TP_ACPI_VIDEO_570_PHSCMD))
4726 return -EIO;
4727 status = i & TP_ACPI_VIDEO_570_PHSMASK;
4728 break;
4729 case TPACPI_VIDEO_770:
4730 if (!acpi_evalf(NULL, &i, "\\VCDL", "d"))
4731 return -EIO;
4732 if (i)
4733 status |= TP_ACPI_VIDEO_S_LCD;
4734 if (!acpi_evalf(NULL, &i, "\\VCDC", "d"))
4735 return -EIO;
4736 if (i)
4737 status |= TP_ACPI_VIDEO_S_CRT;
4738 break;
4739 case TPACPI_VIDEO_NEW:
4740 if (!acpi_evalf(NULL, NULL, "\\VUPS", "vd", 1) ||
4741 !acpi_evalf(NULL, &i, "\\VCDC", "d"))
4742 return -EIO;
4743 if (i)
4744 status |= TP_ACPI_VIDEO_S_CRT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004745
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004746 if (!acpi_evalf(NULL, NULL, "\\VUPS", "vd", 0) ||
4747 !acpi_evalf(NULL, &i, "\\VCDL", "d"))
4748 return -EIO;
4749 if (i)
4750 status |= TP_ACPI_VIDEO_S_LCD;
4751 if (!acpi_evalf(NULL, &i, "\\VCDD", "d"))
4752 return -EIO;
4753 if (i)
4754 status |= TP_ACPI_VIDEO_S_DVI;
4755 break;
4756 default:
4757 return -ENOSYS;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004758 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004759
4760 return status;
4761}
4762
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004763static int video_outputsw_set(int status)
4764{
4765 int autosw;
4766 int res = 0;
4767
4768 switch (video_supported) {
4769 case TPACPI_VIDEO_570:
4770 res = acpi_evalf(NULL, NULL,
4771 "\\_SB.PHS2", "vdd",
4772 TP_ACPI_VIDEO_570_PHS2CMD,
4773 status | TP_ACPI_VIDEO_570_PHS2SET);
4774 break;
4775 case TPACPI_VIDEO_770:
4776 autosw = video_autosw_get();
4777 if (autosw < 0)
4778 return autosw;
4779
4780 res = video_autosw_set(1);
4781 if (res)
4782 return res;
4783 res = acpi_evalf(vid_handle, NULL,
4784 "ASWT", "vdd", status * 0x100, 0);
4785 if (!autosw && video_autosw_set(autosw)) {
Joe Perches0978e012011-04-04 10:06:25 -07004786 pr_err("video auto-switch left enabled due to error\n");
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004787 return -EIO;
4788 }
4789 break;
4790 case TPACPI_VIDEO_NEW:
4791 res = acpi_evalf(NULL, NULL, "\\VUPS", "vd", 0x80) &&
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02004792 acpi_evalf(NULL, NULL, "\\VSDS", "vdd", status, 1);
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004793 break;
4794 default:
4795 return -ENOSYS;
4796 }
4797
Jan van den Berg72a979f2014-09-17 00:01:08 +02004798 return (res) ? 0 : -EIO;
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004799}
4800
4801static int video_autosw_get(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004802{
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004803 int autosw = 0;
4804
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004805 switch (video_supported) {
4806 case TPACPI_VIDEO_570:
4807 if (!acpi_evalf(vid_handle, &autosw, "SWIT", "d"))
4808 return -EIO;
4809 break;
4810 case TPACPI_VIDEO_770:
4811 case TPACPI_VIDEO_NEW:
4812 if (!acpi_evalf(vid_handle, &autosw, "^VDEE", "d"))
4813 return -EIO;
4814 break;
4815 default:
4816 return -ENOSYS;
4817 }
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004818
4819 return autosw & 1;
4820}
4821
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004822static int video_autosw_set(int enable)
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004823{
Jan van den Berg72a979f2014-09-17 00:01:08 +02004824 if (!acpi_evalf(vid_handle, NULL, "_DOS", "vd", (enable) ? 1 : 0))
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004825 return -EIO;
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004826 return 0;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004827}
4828
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004829static int video_outputsw_cycle(void)
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004830{
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004831 int autosw = video_autosw_get();
4832 int res;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004833
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004834 if (autosw < 0)
4835 return autosw;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004836
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004837 switch (video_supported) {
4838 case TPACPI_VIDEO_570:
4839 res = video_autosw_set(1);
4840 if (res)
4841 return res;
4842 res = acpi_evalf(ec_handle, NULL, "_Q16", "v");
4843 break;
4844 case TPACPI_VIDEO_770:
4845 case TPACPI_VIDEO_NEW:
4846 res = video_autosw_set(1);
4847 if (res)
4848 return res;
4849 res = acpi_evalf(vid_handle, NULL, "VSWT", "v");
4850 break;
4851 default:
4852 return -ENOSYS;
4853 }
4854 if (!autosw && video_autosw_set(autosw)) {
Joe Perches0978e012011-04-04 10:06:25 -07004855 pr_err("video auto-switch left enabled due to error\n");
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004856 return -EIO;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004857 }
4858
Jan van den Berg72a979f2014-09-17 00:01:08 +02004859 return (res) ? 0 : -EIO;
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004860}
4861
4862static int video_expand_toggle(void)
4863{
4864 switch (video_supported) {
4865 case TPACPI_VIDEO_570:
Jan van den Berg72a979f2014-09-17 00:01:08 +02004866 return acpi_evalf(ec_handle, NULL, "_Q17", "v") ?
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004867 0 : -EIO;
4868 case TPACPI_VIDEO_770:
Jan van den Berg72a979f2014-09-17 00:01:08 +02004869 return acpi_evalf(vid_handle, NULL, "VEXP", "v") ?
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004870 0 : -EIO;
4871 case TPACPI_VIDEO_NEW:
Jan van den Berg72a979f2014-09-17 00:01:08 +02004872 return acpi_evalf(NULL, NULL, "\\VEXP", "v") ?
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004873 0 : -EIO;
4874 default:
4875 return -ENOSYS;
4876 }
4877 /* not reached */
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004878}
4879
Alexey Dobriyan887965e2009-12-15 21:51:12 -02004880static int video_read(struct seq_file *m)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03004881{
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004882 int status, autosw;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03004883
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004884 if (video_supported == TPACPI_VIDEO_NONE) {
Alexey Dobriyan887965e2009-12-15 21:51:12 -02004885 seq_printf(m, "status:\t\tnot supported\n");
4886 return 0;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03004887 }
4888
Henrique de Moraes Holschuhb525c062010-02-25 22:22:22 -03004889 /* Even reads can crash X.org, so... */
4890 if (!capable(CAP_SYS_ADMIN))
4891 return -EPERM;
4892
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004893 status = video_outputsw_get();
4894 if (status < 0)
4895 return status;
4896
4897 autosw = video_autosw_get();
4898 if (autosw < 0)
4899 return autosw;
4900
Alexey Dobriyan887965e2009-12-15 21:51:12 -02004901 seq_printf(m, "status:\t\tsupported\n");
4902 seq_printf(m, "lcd:\t\t%s\n", enabled(status, 0));
4903 seq_printf(m, "crt:\t\t%s\n", enabled(status, 1));
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03004904 if (video_supported == TPACPI_VIDEO_NEW)
Alexey Dobriyan887965e2009-12-15 21:51:12 -02004905 seq_printf(m, "dvi:\t\t%s\n", enabled(status, 3));
4906 seq_printf(m, "auto:\t\t%s\n", enabled(autosw, 0));
4907 seq_printf(m, "commands:\tlcd_enable, lcd_disable\n");
4908 seq_printf(m, "commands:\tcrt_enable, crt_disable\n");
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03004909 if (video_supported == TPACPI_VIDEO_NEW)
Alexey Dobriyan887965e2009-12-15 21:51:12 -02004910 seq_printf(m, "commands:\tdvi_enable, dvi_disable\n");
4911 seq_printf(m, "commands:\tauto_enable, auto_disable\n");
4912 seq_printf(m, "commands:\tvideo_switch, expand_toggle\n");
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03004913
Alexey Dobriyan887965e2009-12-15 21:51:12 -02004914 return 0;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03004915}
4916
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004917static int video_write(char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004918{
4919 char *cmd;
4920 int enable, disable, status;
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004921 int res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004922
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004923 if (video_supported == TPACPI_VIDEO_NONE)
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004924 return -ENODEV;
4925
Henrique de Moraes Holschuhb525c062010-02-25 22:22:22 -03004926 /* Even reads can crash X.org, let alone writes... */
4927 if (!capable(CAP_SYS_ADMIN))
4928 return -EPERM;
4929
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004930 enable = 0;
4931 disable = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004932
4933 while ((cmd = next_cmd(&buf))) {
4934 if (strlencmp(cmd, "lcd_enable") == 0) {
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004935 enable |= TP_ACPI_VIDEO_S_LCD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004936 } else if (strlencmp(cmd, "lcd_disable") == 0) {
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004937 disable |= TP_ACPI_VIDEO_S_LCD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004938 } else if (strlencmp(cmd, "crt_enable") == 0) {
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004939 enable |= TP_ACPI_VIDEO_S_CRT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004940 } else if (strlencmp(cmd, "crt_disable") == 0) {
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004941 disable |= TP_ACPI_VIDEO_S_CRT;
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03004942 } else if (video_supported == TPACPI_VIDEO_NEW &&
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004943 strlencmp(cmd, "dvi_enable") == 0) {
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004944 enable |= TP_ACPI_VIDEO_S_DVI;
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03004945 } else if (video_supported == TPACPI_VIDEO_NEW &&
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004946 strlencmp(cmd, "dvi_disable") == 0) {
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004947 disable |= TP_ACPI_VIDEO_S_DVI;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004948 } else if (strlencmp(cmd, "auto_enable") == 0) {
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004949 res = video_autosw_set(1);
4950 if (res)
4951 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004952 } else if (strlencmp(cmd, "auto_disable") == 0) {
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004953 res = video_autosw_set(0);
4954 if (res)
4955 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004956 } else if (strlencmp(cmd, "video_switch") == 0) {
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004957 res = video_outputsw_cycle();
4958 if (res)
4959 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004960 } else if (strlencmp(cmd, "expand_toggle") == 0) {
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004961 res = video_expand_toggle();
4962 if (res)
4963 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004964 } else
4965 return -EINVAL;
4966 }
4967
4968 if (enable || disable) {
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004969 status = video_outputsw_get();
4970 if (status < 0)
4971 return status;
4972 res = video_outputsw_set((status & ~disable) | enable);
4973 if (res)
4974 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004975 }
4976
4977 return 0;
4978}
4979
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03004980static struct ibm_struct video_driver_data = {
4981 .name = "video",
4982 .read = video_read,
4983 .write = video_write,
4984 .exit = video_exit,
4985};
4986
Henrique de Moraes Holschuhd7c1d172008-02-16 02:17:54 -02004987#endif /* CONFIG_THINKPAD_ACPI_VIDEO */
4988
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03004989/*************************************************************************
Pali Rohárbb28f3d52015-12-30 23:27:41 +01004990 * Keyboard backlight subdriver
4991 */
4992
4993static int kbdlight_set_level(int level)
4994{
4995 if (!hkey_handle)
4996 return -ENXIO;
4997
4998 if (!acpi_evalf(hkey_handle, NULL, "MLCS", "dd", level))
4999 return -EIO;
5000
5001 return 0;
5002}
5003
5004static int kbdlight_get_level(void)
5005{
5006 int status = 0;
5007
5008 if (!hkey_handle)
5009 return -ENXIO;
5010
5011 if (!acpi_evalf(hkey_handle, &status, "MLCG", "dd", 0))
5012 return -EIO;
5013
5014 if (status < 0)
5015 return status;
5016
5017 return status & 0x3;
5018}
5019
5020static bool kbdlight_is_supported(void)
5021{
5022 int status = 0;
5023
5024 if (!hkey_handle)
5025 return false;
5026
5027 if (!acpi_has_method(hkey_handle, "MLCG")) {
5028 vdbg_printk(TPACPI_DBG_INIT, "kbdlight MLCG is unavailable\n");
5029 return false;
5030 }
5031
5032 if (!acpi_evalf(hkey_handle, &status, "MLCG", "qdd", 0)) {
5033 vdbg_printk(TPACPI_DBG_INIT, "kbdlight MLCG failed\n");
5034 return false;
5035 }
5036
5037 if (status < 0) {
5038 vdbg_printk(TPACPI_DBG_INIT, "kbdlight MLCG err: %d\n", status);
5039 return false;
5040 }
5041
5042 vdbg_printk(TPACPI_DBG_INIT, "kbdlight MLCG returned 0x%x\n", status);
5043 /*
5044 * Guessed test for keyboard backlight:
5045 *
5046 * Machines with backlight keyboard return:
5047 * b010100000010000000XX - ThinkPad X1 Carbon 3rd
5048 * b110100010010000000XX - ThinkPad x230
5049 * b010100000010000000XX - ThinkPad x240
5050 * b010100000010000000XX - ThinkPad W541
5051 * (XX is current backlight level)
5052 *
5053 * Machines without backlight keyboard return:
5054 * b10100001000000000000 - ThinkPad x230
5055 * b10110001000000000000 - ThinkPad E430
5056 * b00000000000000000000 - ThinkPad E450
5057 *
5058 * Candidate BITs for detection test (XOR):
5059 * b01000000001000000000
5060 * ^
5061 */
5062 return status & BIT(9);
5063}
5064
5065static void kbdlight_set_worker(struct work_struct *work)
5066{
5067 struct tpacpi_led_classdev *data =
5068 container_of(work, struct tpacpi_led_classdev, work);
5069
5070 if (likely(tpacpi_lifecycle == TPACPI_LIFE_RUNNING))
5071 kbdlight_set_level(data->new_state);
5072}
5073
5074static void kbdlight_sysfs_set(struct led_classdev *led_cdev,
5075 enum led_brightness brightness)
5076{
5077 struct tpacpi_led_classdev *data =
5078 container_of(led_cdev,
5079 struct tpacpi_led_classdev,
5080 led_classdev);
5081 data->new_state = brightness;
5082 queue_work(tpacpi_wq, &data->work);
5083}
5084
5085static enum led_brightness kbdlight_sysfs_get(struct led_classdev *led_cdev)
5086{
5087 int level;
5088
5089 level = kbdlight_get_level();
5090 if (level < 0)
5091 return 0;
5092
5093 return level;
5094}
5095
5096static struct tpacpi_led_classdev tpacpi_led_kbdlight = {
5097 .led_classdev = {
5098 .name = "tpacpi::kbd_backlight",
5099 .max_brightness = 2,
5100 .brightness_set = &kbdlight_sysfs_set,
5101 .brightness_get = &kbdlight_sysfs_get,
5102 .flags = LED_CORE_SUSPENDRESUME,
5103 }
5104};
5105
5106static int __init kbdlight_init(struct ibm_init_struct *iibm)
5107{
5108 int rc;
5109
5110 vdbg_printk(TPACPI_DBG_INIT, "initializing kbdlight subdriver\n");
5111
5112 TPACPI_ACPIHANDLE_INIT(hkey);
5113 INIT_WORK(&tpacpi_led_kbdlight.work, kbdlight_set_worker);
5114
5115 if (!kbdlight_is_supported()) {
5116 tp_features.kbdlight = 0;
5117 vdbg_printk(TPACPI_DBG_INIT, "kbdlight is unsupported\n");
5118 return 1;
5119 }
5120
5121 tp_features.kbdlight = 1;
5122
5123 rc = led_classdev_register(&tpacpi_pdev->dev,
5124 &tpacpi_led_kbdlight.led_classdev);
5125 if (rc < 0) {
5126 tp_features.kbdlight = 0;
5127 return rc;
5128 }
5129
5130 return 0;
5131}
5132
5133static void kbdlight_exit(void)
5134{
5135 if (tp_features.kbdlight)
5136 led_classdev_unregister(&tpacpi_led_kbdlight.led_classdev);
5137 flush_workqueue(tpacpi_wq);
5138}
5139
5140static int kbdlight_read(struct seq_file *m)
5141{
5142 int level;
5143
5144 if (!tp_features.kbdlight) {
5145 seq_printf(m, "status:\t\tnot supported\n");
5146 } else {
5147 level = kbdlight_get_level();
5148 if (level < 0)
5149 seq_printf(m, "status:\t\terror %d\n", level);
5150 else
5151 seq_printf(m, "status:\t\t%d\n", level);
5152 seq_printf(m, "commands:\t0, 1, 2\n");
5153 }
5154
5155 return 0;
5156}
5157
5158static int kbdlight_write(char *buf)
5159{
5160 char *cmd;
5161 int level = -1;
5162
5163 if (!tp_features.kbdlight)
5164 return -ENODEV;
5165
5166 while ((cmd = next_cmd(&buf))) {
5167 if (strlencmp(cmd, "0") == 0)
5168 level = 0;
5169 else if (strlencmp(cmd, "1") == 0)
5170 level = 1;
5171 else if (strlencmp(cmd, "2") == 0)
5172 level = 2;
5173 else
5174 return -EINVAL;
5175 }
5176
5177 if (level == -1)
5178 return -EINVAL;
5179
5180 return kbdlight_set_level(level);
5181}
5182
5183static struct ibm_struct kbdlight_driver_data = {
5184 .name = "kbdlight",
5185 .read = kbdlight_read,
5186 .write = kbdlight_write,
5187 .exit = kbdlight_exit,
5188};
5189
5190/*************************************************************************
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03005191 * Light (thinklight) subdriver
5192 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005193
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02005194TPACPI_HANDLE(lght, root, "\\LGHT"); /* A21e, A2xm/p, T20-22, X20-21 */
5195TPACPI_HANDLE(ledb, ec, "LEDB"); /* G4x */
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03005196
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03005197static int light_get_status(void)
5198{
5199 int status = 0;
5200
5201 if (tp_features.light_status) {
5202 if (!acpi_evalf(ec_handle, &status, "KBLT", "d"))
5203 return -EIO;
5204 return (!!status);
5205 }
5206
5207 return -ENXIO;
5208}
5209
5210static int light_set_status(int status)
5211{
5212 int rc;
5213
5214 if (tp_features.light) {
5215 if (cmos_handle) {
5216 rc = acpi_evalf(cmos_handle, NULL, NULL, "vd",
Jan van den Berg72a979f2014-09-17 00:01:08 +02005217 (status) ?
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03005218 TP_CMOS_THINKLIGHT_ON :
5219 TP_CMOS_THINKLIGHT_OFF);
5220 } else {
5221 rc = acpi_evalf(lght_handle, NULL, NULL, "vd",
Jan van den Berg72a979f2014-09-17 00:01:08 +02005222 (status) ? 1 : 0);
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03005223 }
Jan van den Berg72a979f2014-09-17 00:01:08 +02005224 return (rc) ? 0 : -EIO;
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03005225 }
5226
5227 return -ENXIO;
5228}
5229
Henrique de Moraes Holschuhe3065012008-04-26 01:02:24 -03005230static void light_set_status_worker(struct work_struct *work)
5231{
5232 struct tpacpi_led_classdev *data =
5233 container_of(work, struct tpacpi_led_classdev, work);
5234
5235 if (likely(tpacpi_lifecycle == TPACPI_LIFE_RUNNING))
Henrique de Moraes Holschuh75bd3bf2009-04-14 02:44:11 +00005236 light_set_status((data->new_state != TPACPI_LED_OFF));
Henrique de Moraes Holschuhe3065012008-04-26 01:02:24 -03005237}
5238
5239static void light_sysfs_set(struct led_classdev *led_cdev,
5240 enum led_brightness brightness)
5241{
5242 struct tpacpi_led_classdev *data =
5243 container_of(led_cdev,
5244 struct tpacpi_led_classdev,
5245 led_classdev);
Henrique de Moraes Holschuh75bd3bf2009-04-14 02:44:11 +00005246 data->new_state = (brightness != LED_OFF) ?
5247 TPACPI_LED_ON : TPACPI_LED_OFF;
Henrique de Moraes Holschuhe0e3c062008-04-26 01:02:28 -03005248 queue_work(tpacpi_wq, &data->work);
Henrique de Moraes Holschuhe3065012008-04-26 01:02:24 -03005249}
5250
5251static enum led_brightness light_sysfs_get(struct led_classdev *led_cdev)
5252{
Jan van den Berg72a979f2014-09-17 00:01:08 +02005253 return (light_get_status() == 1) ? LED_FULL : LED_OFF;
Henrique de Moraes Holschuhe3065012008-04-26 01:02:24 -03005254}
5255
5256static struct tpacpi_led_classdev tpacpi_led_thinklight = {
5257 .led_classdev = {
5258 .name = "tpacpi::thinklight",
5259 .brightness_set = &light_sysfs_set,
5260 .brightness_get = &light_sysfs_get,
5261 }
5262};
5263
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03005264static int __init light_init(struct ibm_init_struct *iibm)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005265{
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03005266 int rc;
Henrique de Moraes Holschuhe3065012008-04-26 01:02:24 -03005267
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03005268 vdbg_printk(TPACPI_DBG_INIT, "initializing light subdriver\n");
5269
Henrique de Moraes Holschuhe28393c2010-05-16 19:45:23 -03005270 if (tpacpi_is_ibm()) {
5271 TPACPI_ACPIHANDLE_INIT(ledb);
5272 TPACPI_ACPIHANDLE_INIT(lght);
5273 }
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02005274 TPACPI_ACPIHANDLE_INIT(cmos);
Henrique de Moraes Holschuhe3065012008-04-26 01:02:24 -03005275 INIT_WORK(&tpacpi_led_thinklight.work, light_set_status_worker);
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03005276
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005277 /* light not supported on 570, 600e/x, 770e, 770x, G4x, R30, R31 */
Henrique de Moraes Holschuhd8fd94d2007-04-21 11:08:36 -03005278 tp_features.light = (cmos_handle || lght_handle) && !ledb_handle;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005279
Henrique de Moraes Holschuhd8fd94d2007-04-21 11:08:36 -03005280 if (tp_features.light)
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005281 /* light status not supported on
5282 570, 600e/x, 770e, 770x, G4x, R30, R31, R32, X20 */
Henrique de Moraes Holschuhd8fd94d2007-04-21 11:08:36 -03005283 tp_features.light_status =
5284 acpi_evalf(ec_handle, NULL, "KBLT", "qv");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005285
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03005286 vdbg_printk(TPACPI_DBG_INIT, "light is %s, light status is %s\n",
5287 str_supported(tp_features.light),
5288 str_supported(tp_features.light_status));
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03005289
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03005290 if (!tp_features.light)
5291 return 1;
5292
5293 rc = led_classdev_register(&tpacpi_pdev->dev,
5294 &tpacpi_led_thinklight.led_classdev);
Henrique de Moraes Holschuhe3065012008-04-26 01:02:24 -03005295
5296 if (rc < 0) {
5297 tp_features.light = 0;
5298 tp_features.light_status = 0;
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03005299 } else {
5300 rc = 0;
Henrique de Moraes Holschuhe3065012008-04-26 01:02:24 -03005301 }
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03005302
Henrique de Moraes Holschuhe3065012008-04-26 01:02:24 -03005303 return rc;
5304}
5305
5306static void light_exit(void)
5307{
5308 led_classdev_unregister(&tpacpi_led_thinklight.led_classdev);
Tejun Heo6d394e12012-12-21 17:56:58 -08005309 flush_workqueue(tpacpi_wq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005310}
5311
Alexey Dobriyan887965e2009-12-15 21:51:12 -02005312static int light_read(struct seq_file *m)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005313{
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03005314 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005315
Henrique de Moraes Holschuhd8fd94d2007-04-21 11:08:36 -03005316 if (!tp_features.light) {
Alexey Dobriyan887965e2009-12-15 21:51:12 -02005317 seq_printf(m, "status:\t\tnot supported\n");
Henrique de Moraes Holschuhd8fd94d2007-04-21 11:08:36 -03005318 } else if (!tp_features.light_status) {
Alexey Dobriyan887965e2009-12-15 21:51:12 -02005319 seq_printf(m, "status:\t\tunknown\n");
5320 seq_printf(m, "commands:\ton, off\n");
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005321 } else {
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03005322 status = light_get_status();
5323 if (status < 0)
5324 return status;
Alexey Dobriyan887965e2009-12-15 21:51:12 -02005325 seq_printf(m, "status:\t\t%s\n", onoff(status, 0));
5326 seq_printf(m, "commands:\ton, off\n");
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005327 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005328
Alexey Dobriyan887965e2009-12-15 21:51:12 -02005329 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005330}
5331
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005332static int light_write(char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005333{
Linus Torvalds1da177e2005-04-16 15:20:36 -07005334 char *cmd;
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03005335 int newstatus = 0;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005336
Henrique de Moraes Holschuhd8fd94d2007-04-21 11:08:36 -03005337 if (!tp_features.light)
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005338 return -ENODEV;
5339
Linus Torvalds1da177e2005-04-16 15:20:36 -07005340 while ((cmd = next_cmd(&buf))) {
5341 if (strlencmp(cmd, "on") == 0) {
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03005342 newstatus = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005343 } else if (strlencmp(cmd, "off") == 0) {
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03005344 newstatus = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005345 } else
5346 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005347 }
5348
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03005349 return light_set_status(newstatus);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005350}
5351
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03005352static struct ibm_struct light_driver_data = {
5353 .name = "light",
5354 .read = light_read,
5355 .write = light_write,
Henrique de Moraes Holschuhe3065012008-04-26 01:02:24 -03005356 .exit = light_exit,
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03005357};
5358
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03005359/*************************************************************************
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03005360 * CMOS subdriver
5361 */
5362
Henrique de Moraes Holschuhb6160042007-04-24 11:48:19 -03005363/* sysfs cmos_command -------------------------------------------------- */
5364static ssize_t cmos_command_store(struct device *dev,
5365 struct device_attribute *attr,
5366 const char *buf, size_t count)
5367{
5368 unsigned long cmos_cmd;
5369 int res;
5370
5371 if (parse_strtoul(buf, 21, &cmos_cmd))
5372 return -EINVAL;
5373
5374 res = issue_thinkpad_cmos_command(cmos_cmd);
Jan van den Berg72a979f2014-09-17 00:01:08 +02005375 return (res) ? res : count;
Henrique de Moraes Holschuhb6160042007-04-24 11:48:19 -03005376}
5377
Bastien Nocerab4dd04ac2015-03-02 18:40:50 +01005378static DEVICE_ATTR_WO(cmos_command);
Henrique de Moraes Holschuhb6160042007-04-24 11:48:19 -03005379
5380/* --------------------------------------------------------------------- */
5381
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03005382static int __init cmos_init(struct ibm_init_struct *iibm)
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03005383{
Henrique de Moraes Holschuhb6160042007-04-24 11:48:19 -03005384 int res;
5385
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03005386 vdbg_printk(TPACPI_DBG_INIT,
5387 "initializing cmos commands subdriver\n");
5388
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02005389 TPACPI_ACPIHANDLE_INIT(cmos);
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03005390
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03005391 vdbg_printk(TPACPI_DBG_INIT, "cmos commands are %s\n",
5392 str_supported(cmos_handle != NULL));
Henrique de Moraes Holschuhb6160042007-04-24 11:48:19 -03005393
5394 res = device_create_file(&tpacpi_pdev->dev, &dev_attr_cmos_command);
5395 if (res)
5396 return res;
5397
Jan van den Berg72a979f2014-09-17 00:01:08 +02005398 return (cmos_handle) ? 0 : 1;
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03005399}
5400
Henrique de Moraes Holschuhb6160042007-04-24 11:48:19 -03005401static void cmos_exit(void)
5402{
5403 device_remove_file(&tpacpi_pdev->dev, &dev_attr_cmos_command);
5404}
5405
Alexey Dobriyan887965e2009-12-15 21:51:12 -02005406static int cmos_read(struct seq_file *m)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005407{
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005408 /* cmos not supported on 570, 600e/x, 770e, 770x, A21e, A2xm/p,
5409 R30, R31, T20-22, X20-21 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005410 if (!cmos_handle)
Alexey Dobriyan887965e2009-12-15 21:51:12 -02005411 seq_printf(m, "status:\t\tnot supported\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005412 else {
Alexey Dobriyan887965e2009-12-15 21:51:12 -02005413 seq_printf(m, "status:\t\tsupported\n");
5414 seq_printf(m, "commands:\t<cmd> (<cmd> is 0-21)\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005415 }
5416
Alexey Dobriyan887965e2009-12-15 21:51:12 -02005417 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005418}
5419
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005420static int cmos_write(char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005421{
5422 char *cmd;
Henrique de Moraes Holschuhc9bea992007-04-21 11:08:42 -03005423 int cmos_cmd, res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005424
5425 while ((cmd = next_cmd(&buf))) {
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005426 if (sscanf(cmd, "%u", &cmos_cmd) == 1 &&
5427 cmos_cmd >= 0 && cmos_cmd <= 21) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005428 /* cmos_cmd set */
5429 } else
5430 return -EINVAL;
5431
Henrique de Moraes Holschuhc9bea992007-04-21 11:08:42 -03005432 res = issue_thinkpad_cmos_command(cmos_cmd);
5433 if (res)
5434 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005435 }
5436
5437 return 0;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005438}
5439
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03005440static struct ibm_struct cmos_driver_data = {
5441 .name = "cmos",
5442 .read = cmos_read,
5443 .write = cmos_write,
Henrique de Moraes Holschuhb6160042007-04-24 11:48:19 -03005444 .exit = cmos_exit,
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03005445};
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03005446
5447/*************************************************************************
5448 * LED subdriver
5449 */
5450
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02005451enum led_access_mode {
5452 TPACPI_LED_NONE = 0,
5453 TPACPI_LED_570, /* 570 */
5454 TPACPI_LED_OLD, /* 600e/x, 770e, 770x, A21e, A2xm/p, T20-22, X20-21 */
5455 TPACPI_LED_NEW, /* all others */
5456};
5457
5458enum { /* For TPACPI_LED_OLD */
5459 TPACPI_LED_EC_HLCL = 0x0c, /* EC reg to get led to power on */
5460 TPACPI_LED_EC_HLBL = 0x0d, /* EC reg to blink a lit led */
5461 TPACPI_LED_EC_HLMS = 0x0e, /* EC reg to select led to command */
5462};
5463
Henrique de Moraes Holschuh9a8e1732006-11-25 16:36:00 -02005464static enum led_access_mode led_supported;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005465
Henrique de Moraes Holschuh2cbb5c82010-05-16 19:45:50 -03005466static acpi_handle led_handle;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03005467
Henrique de Moraes Holschuhf21179a2009-05-30 13:25:08 -03005468#define TPACPI_LED_NUMLEDS 16
Henrique de Moraes Holschuhaf116102008-04-26 01:02:25 -03005469static struct tpacpi_led_classdev *tpacpi_leds;
5470static enum led_status_t tpacpi_led_state_cache[TPACPI_LED_NUMLEDS];
Harvey Harrisone3aa51f2008-05-29 17:51:57 -07005471static const char * const tpacpi_led_names[TPACPI_LED_NUMLEDS] = {
Henrique de Moraes Holschuhaf116102008-04-26 01:02:25 -03005472 /* there's a limit of 19 chars + NULL before 2.6.26 */
5473 "tpacpi::power",
5474 "tpacpi:orange:batt",
5475 "tpacpi:green:batt",
5476 "tpacpi::dock_active",
5477 "tpacpi::bay_active",
5478 "tpacpi::dock_batt",
5479 "tpacpi::unknown_led",
5480 "tpacpi::standby",
Henrique de Moraes Holschuhf21179a2009-05-30 13:25:08 -03005481 "tpacpi::dock_status1",
5482 "tpacpi::dock_status2",
5483 "tpacpi::unknown_led2",
5484 "tpacpi::unknown_led3",
5485 "tpacpi::thinkvantage",
Henrique de Moraes Holschuhaf116102008-04-26 01:02:25 -03005486};
Henrique de Moraes Holschuhf21179a2009-05-30 13:25:08 -03005487#define TPACPI_SAFE_LEDS 0x1081U
Henrique de Moraes Holschuha4d5eff2009-04-04 04:25:49 +00005488
5489static inline bool tpacpi_is_led_restricted(const unsigned int led)
5490{
5491#ifdef CONFIG_THINKPAD_ACPI_UNSAFE_LEDS
5492 return false;
5493#else
Henrique de Moraes Holschuhf21179a2009-05-30 13:25:08 -03005494 return (1U & (TPACPI_SAFE_LEDS >> led)) == 0;
Henrique de Moraes Holschuha4d5eff2009-04-04 04:25:49 +00005495#endif
5496}
Henrique de Moraes Holschuhaf116102008-04-26 01:02:25 -03005497
Henrique de Moraes Holschuh24e45bb2008-06-03 23:36:11 -03005498static int led_get_status(const unsigned int led)
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03005499{
5500 int status;
Henrique de Moraes Holschuhaf116102008-04-26 01:02:25 -03005501 enum led_status_t led_s;
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03005502
5503 switch (led_supported) {
5504 case TPACPI_LED_570:
5505 if (!acpi_evalf(ec_handle,
5506 &status, "GLED", "dd", 1 << led))
5507 return -EIO;
Jan van den Berg72a979f2014-09-17 00:01:08 +02005508 led_s = (status == 0) ?
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03005509 TPACPI_LED_OFF :
Jan van den Berg72a979f2014-09-17 00:01:08 +02005510 ((status == 1) ?
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03005511 TPACPI_LED_ON :
5512 TPACPI_LED_BLINK);
Henrique de Moraes Holschuhaf116102008-04-26 01:02:25 -03005513 tpacpi_led_state_cache[led] = led_s;
5514 return led_s;
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03005515 default:
5516 return -ENXIO;
5517 }
5518
5519 /* not reached */
5520}
5521
Henrique de Moraes Holschuh24e45bb2008-06-03 23:36:11 -03005522static int led_set_status(const unsigned int led,
5523 const enum led_status_t ledstatus)
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03005524{
5525 /* off, on, blink. Index is led_status_t */
Henrique de Moraes Holschuh24e45bb2008-06-03 23:36:11 -03005526 static const unsigned int led_sled_arg1[] = { 0, 1, 3 };
5527 static const unsigned int led_led_arg1[] = { 0, 0x80, 0xc0 };
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03005528
5529 int rc = 0;
5530
5531 switch (led_supported) {
5532 case TPACPI_LED_570:
Henrique de Moraes Holschuh24e45bb2008-06-03 23:36:11 -03005533 /* 570 */
Henrique de Moraes Holschuha4d5eff2009-04-04 04:25:49 +00005534 if (unlikely(led > 7))
Henrique de Moraes Holschuh24e45bb2008-06-03 23:36:11 -03005535 return -EINVAL;
Henrique de Moraes Holschuha4d5eff2009-04-04 04:25:49 +00005536 if (unlikely(tpacpi_is_led_restricted(led)))
5537 return -EPERM;
Henrique de Moraes Holschuh24e45bb2008-06-03 23:36:11 -03005538 if (!acpi_evalf(led_handle, NULL, NULL, "vdd",
5539 (1 << led), led_sled_arg1[ledstatus]))
5540 rc = -EIO;
5541 break;
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03005542 case TPACPI_LED_OLD:
Henrique de Moraes Holschuh24e45bb2008-06-03 23:36:11 -03005543 /* 600e/x, 770e, 770x, A21e, A2xm/p, T20-22, X20 */
Henrique de Moraes Holschuha4d5eff2009-04-04 04:25:49 +00005544 if (unlikely(led > 7))
Henrique de Moraes Holschuh24e45bb2008-06-03 23:36:11 -03005545 return -EINVAL;
Henrique de Moraes Holschuha4d5eff2009-04-04 04:25:49 +00005546 if (unlikely(tpacpi_is_led_restricted(led)))
5547 return -EPERM;
Henrique de Moraes Holschuh24e45bb2008-06-03 23:36:11 -03005548 rc = ec_write(TPACPI_LED_EC_HLMS, (1 << led));
5549 if (rc >= 0)
5550 rc = ec_write(TPACPI_LED_EC_HLBL,
5551 (ledstatus == TPACPI_LED_BLINK) << led);
5552 if (rc >= 0)
5553 rc = ec_write(TPACPI_LED_EC_HLCL,
5554 (ledstatus != TPACPI_LED_OFF) << led);
5555 break;
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03005556 case TPACPI_LED_NEW:
Henrique de Moraes Holschuh24e45bb2008-06-03 23:36:11 -03005557 /* all others */
Henrique de Moraes Holschuha4d5eff2009-04-04 04:25:49 +00005558 if (unlikely(led >= TPACPI_LED_NUMLEDS))
5559 return -EINVAL;
5560 if (unlikely(tpacpi_is_led_restricted(led)))
5561 return -EPERM;
Henrique de Moraes Holschuh24e45bb2008-06-03 23:36:11 -03005562 if (!acpi_evalf(led_handle, NULL, NULL, "vdd",
5563 led, led_led_arg1[ledstatus]))
5564 rc = -EIO;
5565 break;
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03005566 default:
5567 rc = -ENXIO;
5568 }
5569
Henrique de Moraes Holschuhaf116102008-04-26 01:02:25 -03005570 if (!rc)
5571 tpacpi_led_state_cache[led] = ledstatus;
5572
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03005573 return rc;
5574}
5575
Henrique de Moraes Holschuhaf116102008-04-26 01:02:25 -03005576static void led_set_status_worker(struct work_struct *work)
5577{
5578 struct tpacpi_led_classdev *data =
5579 container_of(work, struct tpacpi_led_classdev, work);
5580
5581 if (likely(tpacpi_lifecycle == TPACPI_LIFE_RUNNING))
Henrique de Moraes Holschuh75bd3bf2009-04-14 02:44:11 +00005582 led_set_status(data->led, data->new_state);
Henrique de Moraes Holschuhaf116102008-04-26 01:02:25 -03005583}
5584
5585static void led_sysfs_set(struct led_classdev *led_cdev,
5586 enum led_brightness brightness)
5587{
5588 struct tpacpi_led_classdev *data = container_of(led_cdev,
5589 struct tpacpi_led_classdev, led_classdev);
5590
Henrique de Moraes Holschuh75bd3bf2009-04-14 02:44:11 +00005591 if (brightness == LED_OFF)
5592 data->new_state = TPACPI_LED_OFF;
5593 else if (tpacpi_led_state_cache[data->led] != TPACPI_LED_BLINK)
5594 data->new_state = TPACPI_LED_ON;
5595 else
5596 data->new_state = TPACPI_LED_BLINK;
5597
Henrique de Moraes Holschuhe0e3c062008-04-26 01:02:28 -03005598 queue_work(tpacpi_wq, &data->work);
Henrique de Moraes Holschuhaf116102008-04-26 01:02:25 -03005599}
5600
5601static int led_sysfs_blink_set(struct led_classdev *led_cdev,
5602 unsigned long *delay_on, unsigned long *delay_off)
5603{
5604 struct tpacpi_led_classdev *data = container_of(led_cdev,
5605 struct tpacpi_led_classdev, led_classdev);
5606
5607 /* Can we choose the flash rate? */
5608 if (*delay_on == 0 && *delay_off == 0) {
5609 /* yes. set them to the hardware blink rate (1 Hz) */
5610 *delay_on = 500; /* ms */
5611 *delay_off = 500; /* ms */
5612 } else if ((*delay_on != 500) || (*delay_off != 500))
5613 return -EINVAL;
5614
Henrique de Moraes Holschuh75bd3bf2009-04-14 02:44:11 +00005615 data->new_state = TPACPI_LED_BLINK;
Henrique de Moraes Holschuhe0e3c062008-04-26 01:02:28 -03005616 queue_work(tpacpi_wq, &data->work);
Henrique de Moraes Holschuhaf116102008-04-26 01:02:25 -03005617
5618 return 0;
5619}
5620
5621static enum led_brightness led_sysfs_get(struct led_classdev *led_cdev)
5622{
5623 int rc;
5624
5625 struct tpacpi_led_classdev *data = container_of(led_cdev,
5626 struct tpacpi_led_classdev, led_classdev);
5627
5628 rc = led_get_status(data->led);
5629
5630 if (rc == TPACPI_LED_OFF || rc < 0)
5631 rc = LED_OFF; /* no error handling in led class :( */
5632 else
5633 rc = LED_FULL;
5634
5635 return rc;
5636}
5637
5638static void led_exit(void)
5639{
5640 unsigned int i;
5641
5642 for (i = 0; i < TPACPI_LED_NUMLEDS; i++) {
5643 if (tpacpi_leds[i].led_classdev.name)
5644 led_classdev_unregister(&tpacpi_leds[i].led_classdev);
5645 }
5646
Li Dongyange03e3892012-07-25 10:45:07 +10005647 flush_workqueue(tpacpi_wq);
Henrique de Moraes Holschuhaf116102008-04-26 01:02:25 -03005648 kfree(tpacpi_leds);
Henrique de Moraes Holschuhaf116102008-04-26 01:02:25 -03005649}
5650
Henrique de Moraes Holschuha4d5eff2009-04-04 04:25:49 +00005651static int __init tpacpi_init_led(unsigned int led)
5652{
5653 int rc;
5654
5655 tpacpi_leds[led].led = led;
5656
Henrique de Moraes Holschuhf21179a2009-05-30 13:25:08 -03005657 /* LEDs with no name don't get registered */
5658 if (!tpacpi_led_names[led])
5659 return 0;
5660
Henrique de Moraes Holschuha4d5eff2009-04-04 04:25:49 +00005661 tpacpi_leds[led].led_classdev.brightness_set = &led_sysfs_set;
5662 tpacpi_leds[led].led_classdev.blink_set = &led_sysfs_blink_set;
5663 if (led_supported == TPACPI_LED_570)
5664 tpacpi_leds[led].led_classdev.brightness_get =
5665 &led_sysfs_get;
5666
5667 tpacpi_leds[led].led_classdev.name = tpacpi_led_names[led];
5668
5669 INIT_WORK(&tpacpi_leds[led].work, led_set_status_worker);
5670
5671 rc = led_classdev_register(&tpacpi_pdev->dev,
5672 &tpacpi_leds[led].led_classdev);
5673 if (rc < 0)
5674 tpacpi_leds[led].led_classdev.name = NULL;
5675
5676 return rc;
5677}
5678
Henrique de Moraes Holschuhf21179a2009-05-30 13:25:08 -03005679static const struct tpacpi_quirk led_useful_qtable[] __initconst = {
5680 TPACPI_Q_IBM('1', 'E', 0x009f), /* A30 */
5681 TPACPI_Q_IBM('1', 'N', 0x009f), /* A31 */
5682 TPACPI_Q_IBM('1', 'G', 0x009f), /* A31 */
5683
5684 TPACPI_Q_IBM('1', 'I', 0x0097), /* T30 */
5685 TPACPI_Q_IBM('1', 'R', 0x0097), /* T40, T41, T42, R50, R51 */
5686 TPACPI_Q_IBM('7', '0', 0x0097), /* T43, R52 */
5687 TPACPI_Q_IBM('1', 'Y', 0x0097), /* T43 */
5688 TPACPI_Q_IBM('1', 'W', 0x0097), /* R50e */
5689 TPACPI_Q_IBM('1', 'V', 0x0097), /* R51 */
5690 TPACPI_Q_IBM('7', '8', 0x0097), /* R51e */
5691 TPACPI_Q_IBM('7', '6', 0x0097), /* R52 */
5692
5693 TPACPI_Q_IBM('1', 'K', 0x00bf), /* X30 */
5694 TPACPI_Q_IBM('1', 'Q', 0x00bf), /* X31, X32 */
5695 TPACPI_Q_IBM('1', 'U', 0x00bf), /* X40 */
5696 TPACPI_Q_IBM('7', '4', 0x00bf), /* X41 */
5697 TPACPI_Q_IBM('7', '5', 0x00bf), /* X41t */
5698
5699 TPACPI_Q_IBM('7', '9', 0x1f97), /* T60 (1) */
5700 TPACPI_Q_IBM('7', '7', 0x1f97), /* Z60* (1) */
5701 TPACPI_Q_IBM('7', 'F', 0x1f97), /* Z61* (1) */
5702 TPACPI_Q_IBM('7', 'B', 0x1fb7), /* X60 (1) */
5703
5704 /* (1) - may have excess leds enabled on MSB */
5705
5706 /* Defaults (order matters, keep last, don't reorder!) */
5707 { /* Lenovo */
5708 .vendor = PCI_VENDOR_ID_LENOVO,
5709 .bios = TPACPI_MATCH_ANY, .ec = TPACPI_MATCH_ANY,
5710 .quirks = 0x1fffU,
5711 },
5712 { /* IBM ThinkPads with no EC version string */
5713 .vendor = PCI_VENDOR_ID_IBM,
5714 .bios = TPACPI_MATCH_ANY, .ec = TPACPI_MATCH_UNKNOWN,
5715 .quirks = 0x00ffU,
5716 },
5717 { /* IBM ThinkPads with EC version string */
5718 .vendor = PCI_VENDOR_ID_IBM,
5719 .bios = TPACPI_MATCH_ANY, .ec = TPACPI_MATCH_ANY,
5720 .quirks = 0x00bfU,
5721 },
5722};
5723
5724#undef TPACPI_LEDQ_IBM
5725#undef TPACPI_LEDQ_LNV
5726
Henrique de Moraes Holschuh2cbb5c82010-05-16 19:45:50 -03005727static enum led_access_mode __init led_init_detect_mode(void)
5728{
5729 acpi_status status;
5730
5731 if (tpacpi_is_ibm()) {
5732 /* 570 */
5733 status = acpi_get_handle(ec_handle, "SLED", &led_handle);
5734 if (ACPI_SUCCESS(status))
5735 return TPACPI_LED_570;
5736
5737 /* 600e/x, 770e, 770x, A21e, A2xm/p, T20-22, X20-21 */
5738 status = acpi_get_handle(ec_handle, "SYSL", &led_handle);
5739 if (ACPI_SUCCESS(status))
5740 return TPACPI_LED_OLD;
5741 }
5742
5743 /* most others */
5744 status = acpi_get_handle(ec_handle, "LED", &led_handle);
5745 if (ACPI_SUCCESS(status))
5746 return TPACPI_LED_NEW;
5747
5748 /* R30, R31, and unknown firmwares */
5749 led_handle = NULL;
5750 return TPACPI_LED_NONE;
5751}
5752
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03005753static int __init led_init(struct ibm_init_struct *iibm)
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005754{
Henrique de Moraes Holschuhaf116102008-04-26 01:02:25 -03005755 unsigned int i;
5756 int rc;
Henrique de Moraes Holschuhf21179a2009-05-30 13:25:08 -03005757 unsigned long useful_leds;
Henrique de Moraes Holschuhaf116102008-04-26 01:02:25 -03005758
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03005759 vdbg_printk(TPACPI_DBG_INIT, "initializing LED subdriver\n");
5760
Henrique de Moraes Holschuh2cbb5c82010-05-16 19:45:50 -03005761 led_supported = led_init_detect_mode();
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005762
Adam Leefcb44e12013-06-07 16:20:08 +08005763 if (led_supported != TPACPI_LED_NONE) {
5764 useful_leds = tpacpi_check_quirks(led_useful_qtable,
5765 ARRAY_SIZE(led_useful_qtable));
5766
5767 if (!useful_leds) {
5768 led_handle = NULL;
5769 led_supported = TPACPI_LED_NONE;
5770 }
5771 }
5772
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03005773 vdbg_printk(TPACPI_DBG_INIT, "LED commands are %s, mode %d\n",
5774 str_supported(led_supported), led_supported);
5775
Henrique de Moraes Holschuhf21179a2009-05-30 13:25:08 -03005776 if (led_supported == TPACPI_LED_NONE)
5777 return 1;
5778
Henrique de Moraes Holschuhaf116102008-04-26 01:02:25 -03005779 tpacpi_leds = kzalloc(sizeof(*tpacpi_leds) * TPACPI_LED_NUMLEDS,
5780 GFP_KERNEL);
5781 if (!tpacpi_leds) {
Joe Perches0978e012011-04-04 10:06:25 -07005782 pr_err("Out of memory for LED data\n");
Henrique de Moraes Holschuhaf116102008-04-26 01:02:25 -03005783 return -ENOMEM;
5784 }
5785
5786 for (i = 0; i < TPACPI_LED_NUMLEDS; i++) {
Adam Leeedf2d772013-06-08 16:51:15 +08005787 tpacpi_leds[i].led = -1;
5788
Henrique de Moraes Holschuhf21179a2009-05-30 13:25:08 -03005789 if (!tpacpi_is_led_restricted(i) &&
5790 test_bit(i, &useful_leds)) {
Henrique de Moraes Holschuha4d5eff2009-04-04 04:25:49 +00005791 rc = tpacpi_init_led(i);
5792 if (rc < 0) {
5793 led_exit();
5794 return rc;
5795 }
Henrique de Moraes Holschuhaf116102008-04-26 01:02:25 -03005796 }
5797 }
5798
Henrique de Moraes Holschuha4d5eff2009-04-04 04:25:49 +00005799#ifdef CONFIG_THINKPAD_ACPI_UNSAFE_LEDS
Joe Perches0978e012011-04-04 10:06:25 -07005800 pr_notice("warning: userspace override of important "
5801 "firmware LEDs is enabled\n");
Henrique de Moraes Holschuha4d5eff2009-04-04 04:25:49 +00005802#endif
Henrique de Moraes Holschuhf21179a2009-05-30 13:25:08 -03005803 return 0;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005804}
5805
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03005806#define str_led_status(s) \
5807 ((s) == TPACPI_LED_OFF ? "off" : \
5808 ((s) == TPACPI_LED_ON ? "on" : "blinking"))
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005809
Alexey Dobriyan887965e2009-12-15 21:51:12 -02005810static int led_read(struct seq_file *m)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005811{
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005812 if (!led_supported) {
Alexey Dobriyan887965e2009-12-15 21:51:12 -02005813 seq_printf(m, "status:\t\tnot supported\n");
5814 return 0;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005815 }
Alexey Dobriyan887965e2009-12-15 21:51:12 -02005816 seq_printf(m, "status:\t\tsupported\n");
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005817
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03005818 if (led_supported == TPACPI_LED_570) {
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005819 /* 570 */
5820 int i, status;
5821 for (i = 0; i < 8; i++) {
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03005822 status = led_get_status(i);
5823 if (status < 0)
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005824 return -EIO;
Alexey Dobriyan887965e2009-12-15 21:51:12 -02005825 seq_printf(m, "%d:\t\t%s\n",
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03005826 i, str_led_status(status));
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005827 }
5828 }
5829
Alexey Dobriyan887965e2009-12-15 21:51:12 -02005830 seq_printf(m, "commands:\t"
Henrique de Moraes Holschuhf21179a2009-05-30 13:25:08 -03005831 "<led> on, <led> off, <led> blink (<led> is 0-15)\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005832
Alexey Dobriyan887965e2009-12-15 21:51:12 -02005833 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005834}
5835
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005836static int led_write(char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005837{
5838 char *cmd;
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03005839 int led, rc;
5840 enum led_status_t s;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005841
5842 if (!led_supported)
5843 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005844
5845 while ((cmd = next_cmd(&buf))) {
Adam Leeedf2d772013-06-08 16:51:15 +08005846 if (sscanf(cmd, "%d", &led) != 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005847 return -EINVAL;
5848
Adam Leeedf2d772013-06-08 16:51:15 +08005849 if (led < 0 || led > (TPACPI_LED_NUMLEDS - 1) ||
5850 tpacpi_leds[led].led < 0)
5851 return -ENODEV;
5852
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005853 if (strstr(cmd, "off")) {
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03005854 s = TPACPI_LED_OFF;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005855 } else if (strstr(cmd, "on")) {
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03005856 s = TPACPI_LED_ON;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005857 } else if (strstr(cmd, "blink")) {
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03005858 s = TPACPI_LED_BLINK;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005859 } else {
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03005860 return -EINVAL;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005861 }
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03005862
5863 rc = led_set_status(led, s);
5864 if (rc < 0)
5865 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005866 }
5867
5868 return 0;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005869}
5870
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03005871static struct ibm_struct led_driver_data = {
5872 .name = "led",
5873 .read = led_read,
5874 .write = led_write,
Henrique de Moraes Holschuhaf116102008-04-26 01:02:25 -03005875 .exit = led_exit,
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03005876};
5877
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03005878/*************************************************************************
5879 * Beep subdriver
5880 */
5881
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02005882TPACPI_HANDLE(beep, ec, "BEEP"); /* all except R30, R31 */
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03005883
Henrique de Moraes Holschuh60201732009-05-30 13:25:07 -03005884#define TPACPI_BEEP_Q1 0x0001
5885
5886static const struct tpacpi_quirk beep_quirk_table[] __initconst = {
5887 TPACPI_Q_IBM('I', 'M', TPACPI_BEEP_Q1), /* 570 */
5888 TPACPI_Q_IBM('I', 'U', TPACPI_BEEP_Q1), /* 570E - unverified */
5889};
5890
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03005891static int __init beep_init(struct ibm_init_struct *iibm)
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03005892{
Henrique de Moraes Holschuh60201732009-05-30 13:25:07 -03005893 unsigned long quirks;
5894
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03005895 vdbg_printk(TPACPI_DBG_INIT, "initializing beep subdriver\n");
5896
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02005897 TPACPI_ACPIHANDLE_INIT(beep);
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03005898
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03005899 vdbg_printk(TPACPI_DBG_INIT, "beep is %s\n",
5900 str_supported(beep_handle != NULL));
5901
Henrique de Moraes Holschuh60201732009-05-30 13:25:07 -03005902 quirks = tpacpi_check_quirks(beep_quirk_table,
5903 ARRAY_SIZE(beep_quirk_table));
5904
5905 tp_features.beep_needs_two_args = !!(quirks & TPACPI_BEEP_Q1);
5906
Jan van den Berg72a979f2014-09-17 00:01:08 +02005907 return (beep_handle) ? 0 : 1;
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03005908}
5909
Alexey Dobriyan887965e2009-12-15 21:51:12 -02005910static int beep_read(struct seq_file *m)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005911{
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005912 if (!beep_handle)
Alexey Dobriyan887965e2009-12-15 21:51:12 -02005913 seq_printf(m, "status:\t\tnot supported\n");
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005914 else {
Alexey Dobriyan887965e2009-12-15 21:51:12 -02005915 seq_printf(m, "status:\t\tsupported\n");
5916 seq_printf(m, "commands:\t<cmd> (<cmd> is 0-17)\n");
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005917 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005918
Alexey Dobriyan887965e2009-12-15 21:51:12 -02005919 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005920}
5921
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005922static int beep_write(char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005923{
5924 char *cmd;
5925 int beep_cmd;
5926
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005927 if (!beep_handle)
5928 return -ENODEV;
5929
Linus Torvalds1da177e2005-04-16 15:20:36 -07005930 while ((cmd = next_cmd(&buf))) {
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005931 if (sscanf(cmd, "%u", &beep_cmd) == 1 &&
5932 beep_cmd >= 0 && beep_cmd <= 17) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005933 /* beep_cmd set */
5934 } else
5935 return -EINVAL;
Henrique de Moraes Holschuh60201732009-05-30 13:25:07 -03005936 if (tp_features.beep_needs_two_args) {
5937 if (!acpi_evalf(beep_handle, NULL, NULL, "vdd",
5938 beep_cmd, 0))
5939 return -EIO;
5940 } else {
5941 if (!acpi_evalf(beep_handle, NULL, NULL, "vd",
5942 beep_cmd))
5943 return -EIO;
5944 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005945 }
5946
5947 return 0;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005948}
5949
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03005950static struct ibm_struct beep_driver_data = {
5951 .name = "beep",
5952 .read = beep_read,
5953 .write = beep_write,
5954};
5955
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03005956/*************************************************************************
5957 * Thermal subdriver
5958 */
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005959
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02005960enum thermal_access_mode {
5961 TPACPI_THERMAL_NONE = 0, /* No thermal support */
5962 TPACPI_THERMAL_ACPI_TMP07, /* Use ACPI TMP0-7 */
5963 TPACPI_THERMAL_ACPI_UPDT, /* Use ACPI TMP0-7 with UPDT */
5964 TPACPI_THERMAL_TPEC_8, /* Use ACPI EC regs, 8 sensors */
5965 TPACPI_THERMAL_TPEC_16, /* Use ACPI EC regs, 16 sensors */
5966};
5967
5968enum { /* TPACPI_THERMAL_TPEC_* */
5969 TP_EC_THERMAL_TMP0 = 0x78, /* ACPI EC regs TMP 0..7 */
5970 TP_EC_THERMAL_TMP8 = 0xC0, /* ACPI EC regs TMP 8..15 */
5971 TP_EC_THERMAL_TMP_NA = -128, /* ACPI EC sensor not available */
Henrique de Moraes Holschuh9ebd9e82009-12-09 01:36:28 +00005972
5973 TPACPI_THERMAL_SENSOR_NA = -128000, /* Sensor not available */
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02005974};
5975
Henrique de Moraes Holschuh9ebd9e82009-12-09 01:36:28 +00005976
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02005977#define TPACPI_MAX_THERMAL_SENSORS 16 /* Max thermal sensors supported */
5978struct ibm_thermal_sensors_struct {
5979 s32 temp[TPACPI_MAX_THERMAL_SENSORS];
5980};
5981
Henrique de Moraes Holschuha26f8782006-11-24 11:47:08 -02005982static enum thermal_access_mode thermal_read_mode;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005983
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02005984/* idx is zero-based */
5985static int thermal_get_sensor(int idx, s32 *value)
5986{
5987 int t;
5988 s8 tmp;
5989 char tmpi[5];
5990
5991 t = TP_EC_THERMAL_TMP0;
5992
5993 switch (thermal_read_mode) {
5994#if TPACPI_MAX_THERMAL_SENSORS >= 16
5995 case TPACPI_THERMAL_TPEC_16:
5996 if (idx >= 8 && idx <= 15) {
5997 t = TP_EC_THERMAL_TMP8;
5998 idx -= 8;
5999 }
6000 /* fallthrough */
6001#endif
6002 case TPACPI_THERMAL_TPEC_8:
6003 if (idx <= 7) {
6004 if (!acpi_ec_read(t + idx, &tmp))
6005 return -EIO;
6006 *value = tmp * 1000;
6007 return 0;
6008 }
6009 break;
6010
6011 case TPACPI_THERMAL_ACPI_UPDT:
6012 if (idx <= 7) {
6013 snprintf(tmpi, sizeof(tmpi), "TMP%c", '0' + idx);
6014 if (!acpi_evalf(ec_handle, NULL, "UPDT", "v"))
6015 return -EIO;
6016 if (!acpi_evalf(ec_handle, &t, tmpi, "d"))
6017 return -EIO;
6018 *value = (t - 2732) * 100;
6019 return 0;
6020 }
6021 break;
6022
6023 case TPACPI_THERMAL_ACPI_TMP07:
6024 if (idx <= 7) {
6025 snprintf(tmpi, sizeof(tmpi), "TMP%c", '0' + idx);
6026 if (!acpi_evalf(ec_handle, &t, tmpi, "d"))
6027 return -EIO;
6028 if (t > 127 || t < -127)
6029 t = TP_EC_THERMAL_TMP_NA;
6030 *value = t * 1000;
6031 return 0;
6032 }
6033 break;
6034
6035 case TPACPI_THERMAL_NONE:
6036 default:
6037 return -ENOSYS;
6038 }
6039
6040 return -EINVAL;
6041}
6042
6043static int thermal_get_sensors(struct ibm_thermal_sensors_struct *s)
6044{
6045 int res, i;
6046 int n;
6047
6048 n = 8;
6049 i = 0;
6050
6051 if (!s)
6052 return -EINVAL;
6053
6054 if (thermal_read_mode == TPACPI_THERMAL_TPEC_16)
6055 n = 16;
6056
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02006057 for (i = 0 ; i < n; i++) {
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02006058 res = thermal_get_sensor(i, &s->temp[i]);
6059 if (res)
6060 return res;
6061 }
6062
6063 return n;
6064}
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02006065
Henrique de Moraes Holschuh9ebd9e82009-12-09 01:36:28 +00006066static void thermal_dump_all_sensors(void)
6067{
6068 int n, i;
6069 struct ibm_thermal_sensors_struct t;
6070
6071 n = thermal_get_sensors(&t);
6072 if (n <= 0)
6073 return;
6074
Joe Perches0978e012011-04-04 10:06:25 -07006075 pr_notice("temperatures (Celsius):");
Henrique de Moraes Holschuh9ebd9e82009-12-09 01:36:28 +00006076
6077 for (i = 0; i < n; i++) {
6078 if (t.temp[i] != TPACPI_THERMAL_SENSOR_NA)
Joe Perches0978e012011-04-04 10:06:25 -07006079 pr_cont(" %d", (int)(t.temp[i] / 1000));
Henrique de Moraes Holschuh9ebd9e82009-12-09 01:36:28 +00006080 else
Joe Perches0978e012011-04-04 10:06:25 -07006081 pr_cont(" N/A");
Henrique de Moraes Holschuh9ebd9e82009-12-09 01:36:28 +00006082 }
6083
Joe Perches0978e012011-04-04 10:06:25 -07006084 pr_cont("\n");
Henrique de Moraes Holschuh9ebd9e82009-12-09 01:36:28 +00006085}
6086
Henrique de Moraes Holschuh2c37aa42007-04-24 11:48:16 -03006087/* sysfs temp##_input -------------------------------------------------- */
6088
6089static ssize_t thermal_temp_input_show(struct device *dev,
6090 struct device_attribute *attr,
6091 char *buf)
6092{
6093 struct sensor_device_attribute *sensor_attr =
6094 to_sensor_dev_attr(attr);
6095 int idx = sensor_attr->index;
6096 s32 value;
6097 int res;
6098
6099 res = thermal_get_sensor(idx, &value);
6100 if (res)
6101 return res;
Henrique de Moraes Holschuh9ebd9e82009-12-09 01:36:28 +00006102 if (value == TPACPI_THERMAL_SENSOR_NA)
Henrique de Moraes Holschuh2c37aa42007-04-24 11:48:16 -03006103 return -ENXIO;
6104
6105 return snprintf(buf, PAGE_SIZE, "%d\n", value);
6106}
6107
6108#define THERMAL_SENSOR_ATTR_TEMP(_idxA, _idxB) \
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02006109 SENSOR_ATTR(temp##_idxA##_input, S_IRUGO, \
6110 thermal_temp_input_show, NULL, _idxB)
Henrique de Moraes Holschuh2c37aa42007-04-24 11:48:16 -03006111
6112static struct sensor_device_attribute sensor_dev_attr_thermal_temp_input[] = {
6113 THERMAL_SENSOR_ATTR_TEMP(1, 0),
6114 THERMAL_SENSOR_ATTR_TEMP(2, 1),
6115 THERMAL_SENSOR_ATTR_TEMP(3, 2),
6116 THERMAL_SENSOR_ATTR_TEMP(4, 3),
6117 THERMAL_SENSOR_ATTR_TEMP(5, 4),
6118 THERMAL_SENSOR_ATTR_TEMP(6, 5),
6119 THERMAL_SENSOR_ATTR_TEMP(7, 6),
6120 THERMAL_SENSOR_ATTR_TEMP(8, 7),
6121 THERMAL_SENSOR_ATTR_TEMP(9, 8),
6122 THERMAL_SENSOR_ATTR_TEMP(10, 9),
6123 THERMAL_SENSOR_ATTR_TEMP(11, 10),
6124 THERMAL_SENSOR_ATTR_TEMP(12, 11),
6125 THERMAL_SENSOR_ATTR_TEMP(13, 12),
6126 THERMAL_SENSOR_ATTR_TEMP(14, 13),
6127 THERMAL_SENSOR_ATTR_TEMP(15, 14),
6128 THERMAL_SENSOR_ATTR_TEMP(16, 15),
6129};
6130
6131#define THERMAL_ATTRS(X) \
6132 &sensor_dev_attr_thermal_temp_input[X].dev_attr.attr
6133
6134static struct attribute *thermal_temp_input_attr[] = {
6135 THERMAL_ATTRS(8),
6136 THERMAL_ATTRS(9),
6137 THERMAL_ATTRS(10),
6138 THERMAL_ATTRS(11),
6139 THERMAL_ATTRS(12),
6140 THERMAL_ATTRS(13),
6141 THERMAL_ATTRS(14),
6142 THERMAL_ATTRS(15),
6143 THERMAL_ATTRS(0),
6144 THERMAL_ATTRS(1),
6145 THERMAL_ATTRS(2),
6146 THERMAL_ATTRS(3),
6147 THERMAL_ATTRS(4),
6148 THERMAL_ATTRS(5),
6149 THERMAL_ATTRS(6),
6150 THERMAL_ATTRS(7),
6151 NULL
6152};
6153
6154static const struct attribute_group thermal_temp_input16_group = {
6155 .attrs = thermal_temp_input_attr
6156};
6157
6158static const struct attribute_group thermal_temp_input8_group = {
6159 .attrs = &thermal_temp_input_attr[8]
6160};
6161
6162#undef THERMAL_SENSOR_ATTR_TEMP
6163#undef THERMAL_ATTRS
6164
6165/* --------------------------------------------------------------------- */
6166
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03006167static int __init thermal_init(struct ibm_init_struct *iibm)
Borislav Deianov78f81cc2005-08-17 00:00:00 -04006168{
Henrique de Moraes Holschuh60eb0b32006-11-24 11:47:08 -02006169 u8 t, ta1, ta2;
6170 int i;
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03006171 int acpi_tmp7;
Henrique de Moraes Holschuh2c37aa42007-04-24 11:48:16 -03006172 int res;
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03006173
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03006174 vdbg_printk(TPACPI_DBG_INIT, "initializing thermal subdriver\n");
6175
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03006176 acpi_tmp7 = acpi_evalf(ec_handle, NULL, "TMP7", "qv");
Borislav Deianov78f81cc2005-08-17 00:00:00 -04006177
Henrique de Moraes Holschuh3d6f99c2007-07-18 23:45:46 -03006178 if (thinkpad_id.ec_model) {
Henrique de Moraes Holschuh60eb0b32006-11-24 11:47:08 -02006179 /*
6180 * Direct EC access mode: sensors at registers
6181 * 0x78-0x7F, 0xC0-0xC7. Registers return 0x00 for
6182 * non-implemented, thermal sensors return 0x80 when
6183 * not available
6184 */
6185
6186 ta1 = ta2 = 0;
6187 for (i = 0; i < 8; i++) {
Henrique de Moraes Holschuh04cc8622007-04-21 11:08:43 -03006188 if (acpi_ec_read(TP_EC_THERMAL_TMP0 + i, &t)) {
Henrique de Moraes Holschuh60eb0b32006-11-24 11:47:08 -02006189 ta1 |= t;
6190 } else {
6191 ta1 = 0;
6192 break;
6193 }
Henrique de Moraes Holschuh04cc8622007-04-21 11:08:43 -03006194 if (acpi_ec_read(TP_EC_THERMAL_TMP8 + i, &t)) {
Henrique de Moraes Holschuh60eb0b32006-11-24 11:47:08 -02006195 ta2 |= t;
6196 } else {
6197 ta1 = 0;
6198 break;
6199 }
6200 }
6201 if (ta1 == 0) {
6202 /* This is sheer paranoia, but we handle it anyway */
6203 if (acpi_tmp7) {
Joe Perches0978e012011-04-04 10:06:25 -07006204 pr_err("ThinkPad ACPI EC access misbehaving, "
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02006205 "falling back to ACPI TMPx access "
6206 "mode\n");
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03006207 thermal_read_mode = TPACPI_THERMAL_ACPI_TMP07;
Henrique de Moraes Holschuh60eb0b32006-11-24 11:47:08 -02006208 } else {
Joe Perches0978e012011-04-04 10:06:25 -07006209 pr_err("ThinkPad ACPI EC access misbehaving, "
Henrique de Moraes Holschuh60eb0b32006-11-24 11:47:08 -02006210 "disabling thermal sensors access\n");
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03006211 thermal_read_mode = TPACPI_THERMAL_NONE;
Henrique de Moraes Holschuh60eb0b32006-11-24 11:47:08 -02006212 }
6213 } else {
6214 thermal_read_mode =
6215 (ta2 != 0) ?
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03006216 TPACPI_THERMAL_TPEC_16 : TPACPI_THERMAL_TPEC_8;
Henrique de Moraes Holschuh60eb0b32006-11-24 11:47:08 -02006217 }
6218 } else if (acpi_tmp7) {
Henrique de Moraes Holschuhe28393c2010-05-16 19:45:23 -03006219 if (tpacpi_is_ibm() &&
6220 acpi_evalf(ec_handle, NULL, "UPDT", "qv")) {
Henrique de Moraes Holschuha26f8782006-11-24 11:47:08 -02006221 /* 600e/x, 770e, 770x */
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03006222 thermal_read_mode = TPACPI_THERMAL_ACPI_UPDT;
Henrique de Moraes Holschuha26f8782006-11-24 11:47:08 -02006223 } else {
Henrique de Moraes Holschuhe28393c2010-05-16 19:45:23 -03006224 /* IBM/LENOVO DSDT EC.TMPx access, max 8 sensors */
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03006225 thermal_read_mode = TPACPI_THERMAL_ACPI_TMP07;
Henrique de Moraes Holschuha26f8782006-11-24 11:47:08 -02006226 }
6227 } else {
6228 /* temperatures not supported on 570, G4x, R30, R31, R32 */
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03006229 thermal_read_mode = TPACPI_THERMAL_NONE;
Henrique de Moraes Holschuha26f8782006-11-24 11:47:08 -02006230 }
Borislav Deianov78f81cc2005-08-17 00:00:00 -04006231
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03006232 vdbg_printk(TPACPI_DBG_INIT, "thermal is %s, mode %d\n",
6233 str_supported(thermal_read_mode != TPACPI_THERMAL_NONE),
6234 thermal_read_mode);
6235
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02006236 switch (thermal_read_mode) {
Henrique de Moraes Holschuh2c37aa42007-04-24 11:48:16 -03006237 case TPACPI_THERMAL_TPEC_16:
Henrique de Moraes Holschuh7fd40022007-09-25 06:38:03 -03006238 res = sysfs_create_group(&tpacpi_sensors_pdev->dev.kobj,
Henrique de Moraes Holschuh2c37aa42007-04-24 11:48:16 -03006239 &thermal_temp_input16_group);
6240 if (res)
6241 return res;
6242 break;
6243 case TPACPI_THERMAL_TPEC_8:
6244 case TPACPI_THERMAL_ACPI_TMP07:
6245 case TPACPI_THERMAL_ACPI_UPDT:
Henrique de Moraes Holschuh7fd40022007-09-25 06:38:03 -03006246 res = sysfs_create_group(&tpacpi_sensors_pdev->dev.kobj,
Henrique de Moraes Holschuh2c37aa42007-04-24 11:48:16 -03006247 &thermal_temp_input8_group);
6248 if (res)
6249 return res;
6250 break;
6251 case TPACPI_THERMAL_NONE:
6252 default:
6253 return 1;
6254 }
6255
6256 return 0;
6257}
6258
6259static void thermal_exit(void)
6260{
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02006261 switch (thermal_read_mode) {
Henrique de Moraes Holschuh2c37aa42007-04-24 11:48:16 -03006262 case TPACPI_THERMAL_TPEC_16:
Henrique de Moraes Holschuh7fd40022007-09-25 06:38:03 -03006263 sysfs_remove_group(&tpacpi_sensors_pdev->dev.kobj,
Henrique de Moraes Holschuh2c37aa42007-04-24 11:48:16 -03006264 &thermal_temp_input16_group);
6265 break;
6266 case TPACPI_THERMAL_TPEC_8:
6267 case TPACPI_THERMAL_ACPI_TMP07:
6268 case TPACPI_THERMAL_ACPI_UPDT:
Henrique de Moraes Holschuh7fd40022007-09-25 06:38:03 -03006269 sysfs_remove_group(&tpacpi_sensors_pdev->dev.kobj,
Roel Kluinf04d5e02010-02-02 14:37:58 -08006270 &thermal_temp_input8_group);
Henrique de Moraes Holschuh2c37aa42007-04-24 11:48:16 -03006271 break;
6272 case TPACPI_THERMAL_NONE:
6273 default:
6274 break;
6275 }
Borislav Deianov78f81cc2005-08-17 00:00:00 -04006276}
6277
Alexey Dobriyan887965e2009-12-15 21:51:12 -02006278static int thermal_read(struct seq_file *m)
Borislav Deianov78f81cc2005-08-17 00:00:00 -04006279{
Henrique de Moraes Holschuha26f8782006-11-24 11:47:08 -02006280 int n, i;
6281 struct ibm_thermal_sensors_struct t;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04006282
Henrique de Moraes Holschuha26f8782006-11-24 11:47:08 -02006283 n = thermal_get_sensors(&t);
6284 if (unlikely(n < 0))
6285 return n;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04006286
Alexey Dobriyan887965e2009-12-15 21:51:12 -02006287 seq_printf(m, "temperatures:\t");
Borislav Deianov78f81cc2005-08-17 00:00:00 -04006288
Henrique de Moraes Holschuha26f8782006-11-24 11:47:08 -02006289 if (n > 0) {
6290 for (i = 0; i < (n - 1); i++)
Alexey Dobriyan887965e2009-12-15 21:51:12 -02006291 seq_printf(m, "%d ", t.temp[i] / 1000);
6292 seq_printf(m, "%d\n", t.temp[i] / 1000);
Henrique de Moraes Holschuha26f8782006-11-24 11:47:08 -02006293 } else
Alexey Dobriyan887965e2009-12-15 21:51:12 -02006294 seq_printf(m, "not supported\n");
Borislav Deianov78f81cc2005-08-17 00:00:00 -04006295
Alexey Dobriyan887965e2009-12-15 21:51:12 -02006296 return 0;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04006297}
6298
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03006299static struct ibm_struct thermal_driver_data = {
6300 .name = "thermal",
6301 .read = thermal_read,
Henrique de Moraes Holschuh2c37aa42007-04-24 11:48:16 -03006302 .exit = thermal_exit,
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03006303};
6304
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03006305/*************************************************************************
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03006306 * Backlight/brightness subdriver
6307 */
Holger Macht8acb0252006-10-20 14:30:28 -07006308
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02006309#define TPACPI_BACKLIGHT_DEV_NAME "thinkpad_screen"
6310
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00006311/*
6312 * ThinkPads can read brightness from two places: EC HBRV (0x31), or
6313 * CMOS NVRAM byte 0x5E, bits 0-3.
6314 *
6315 * EC HBRV (0x31) has the following layout
6316 * Bit 7: unknown function
6317 * Bit 6: unknown function
6318 * Bit 5: Z: honour scale changes, NZ: ignore scale changes
6319 * Bit 4: must be set to zero to avoid problems
6320 * Bit 3-0: backlight brightness level
6321 *
6322 * brightness_get_raw returns status data in the HBRV layout
Henrique de Moraes Holschuhd7880f12009-06-18 00:40:16 -03006323 *
6324 * WARNING: The X61 has been verified to use HBRV for something else, so
6325 * this should be used _only_ on IBM ThinkPads, and maybe with some careful
6326 * testing on the very early *60 Lenovo models...
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00006327 */
6328
Henrique de Moraes Holschuhe11aecf2008-04-26 01:02:21 -03006329enum {
6330 TP_EC_BACKLIGHT = 0x31,
6331
6332 /* TP_EC_BACKLIGHT bitmasks */
6333 TP_EC_BACKLIGHT_LVLMSK = 0x1F,
6334 TP_EC_BACKLIGHT_CMDMSK = 0xE0,
6335 TP_EC_BACKLIGHT_MAPSW = 0x20,
6336};
6337
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00006338enum tpacpi_brightness_access_mode {
6339 TPACPI_BRGHT_MODE_AUTO = 0, /* Not implemented yet */
6340 TPACPI_BRGHT_MODE_EC, /* EC control */
6341 TPACPI_BRGHT_MODE_UCMS_STEP, /* UCMS step-based control */
6342 TPACPI_BRGHT_MODE_ECNVRAM, /* EC control w/ NVRAM store */
6343 TPACPI_BRGHT_MODE_MAX
6344};
6345
Henrique de Moraes Holschuh94954cc62007-07-18 23:45:27 -03006346static struct backlight_device *ibm_backlight_device;
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00006347
6348static enum tpacpi_brightness_access_mode brightness_mode =
6349 TPACPI_BRGHT_MODE_MAX;
6350
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02006351static unsigned int brightness_enable = 2; /* 2 = auto, 0 = no, 1 = yes */
6352
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02006353static struct mutex brightness_mutex;
6354
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00006355/* NVRAM brightness access,
6356 * call with brightness_mutex held! */
6357static unsigned int tpacpi_brightness_nvram_get(void)
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02006358{
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00006359 u8 lnvram;
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02006360
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00006361 lnvram = (nvram_read_byte(TP_NVRAM_ADDR_BRIGHTNESS)
6362 & TP_NVRAM_MASK_LEVEL_BRIGHTNESS)
6363 >> TP_NVRAM_POS_LEVEL_BRIGHTNESS;
Henrique de Moraes Holschuh77775832010-05-16 19:45:33 -03006364 lnvram &= bright_maxlvl;
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02006365
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00006366 return lnvram;
6367}
6368
6369static void tpacpi_brightness_checkpoint_nvram(void)
6370{
6371 u8 lec = 0;
6372 u8 b_nvram;
6373
6374 if (brightness_mode != TPACPI_BRGHT_MODE_ECNVRAM)
6375 return;
6376
6377 vdbg_printk(TPACPI_DBG_BRGHT,
6378 "trying to checkpoint backlight level to NVRAM...\n");
6379
6380 if (mutex_lock_killable(&brightness_mutex) < 0)
6381 return;
6382
6383 if (unlikely(!acpi_ec_read(TP_EC_BACKLIGHT, &lec)))
6384 goto unlock;
6385 lec &= TP_EC_BACKLIGHT_LVLMSK;
6386 b_nvram = nvram_read_byte(TP_NVRAM_ADDR_BRIGHTNESS);
6387
6388 if (lec != ((b_nvram & TP_NVRAM_MASK_LEVEL_BRIGHTNESS)
6389 >> TP_NVRAM_POS_LEVEL_BRIGHTNESS)) {
6390 /* NVRAM needs update */
6391 b_nvram &= ~(TP_NVRAM_MASK_LEVEL_BRIGHTNESS <<
6392 TP_NVRAM_POS_LEVEL_BRIGHTNESS);
6393 b_nvram |= lec;
6394 nvram_write_byte(b_nvram, TP_NVRAM_ADDR_BRIGHTNESS);
6395 dbg_printk(TPACPI_DBG_BRGHT,
6396 "updated NVRAM backlight level to %u (0x%02x)\n",
6397 (unsigned int) lec, (unsigned int) b_nvram);
6398 } else
6399 vdbg_printk(TPACPI_DBG_BRGHT,
6400 "NVRAM backlight level already is %u (0x%02x)\n",
6401 (unsigned int) lec, (unsigned int) b_nvram);
6402
6403unlock:
6404 mutex_unlock(&brightness_mutex);
6405}
6406
6407
6408/* call with brightness_mutex held! */
6409static int tpacpi_brightness_get_raw(int *status)
6410{
6411 u8 lec = 0;
6412
6413 switch (brightness_mode) {
6414 case TPACPI_BRGHT_MODE_UCMS_STEP:
6415 *status = tpacpi_brightness_nvram_get();
6416 return 0;
6417 case TPACPI_BRGHT_MODE_EC:
6418 case TPACPI_BRGHT_MODE_ECNVRAM:
6419 if (unlikely(!acpi_ec_read(TP_EC_BACKLIGHT, &lec)))
Henrique de Moraes Holschuh2d5e94d2008-04-26 01:02:20 -03006420 return -EIO;
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00006421 *status = lec;
6422 return 0;
6423 default:
6424 return -ENXIO;
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02006425 }
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00006426}
6427
6428/* call with brightness_mutex held! */
6429/* do NOT call with illegal backlight level value */
6430static int tpacpi_brightness_set_ec(unsigned int value)
6431{
6432 u8 lec = 0;
6433
6434 if (unlikely(!acpi_ec_read(TP_EC_BACKLIGHT, &lec)))
6435 return -EIO;
6436
6437 if (unlikely(!acpi_ec_write(TP_EC_BACKLIGHT,
6438 (lec & TP_EC_BACKLIGHT_CMDMSK) |
6439 (value & TP_EC_BACKLIGHT_LVLMSK))))
6440 return -EIO;
6441
6442 return 0;
6443}
6444
6445/* call with brightness_mutex held! */
6446static int tpacpi_brightness_set_ucmsstep(unsigned int value)
6447{
6448 int cmos_cmd, inc;
6449 unsigned int current_value, i;
6450
6451 current_value = tpacpi_brightness_nvram_get();
6452
6453 if (value == current_value)
6454 return 0;
6455
6456 cmos_cmd = (value > current_value) ?
6457 TP_CMOS_BRIGHTNESS_UP :
6458 TP_CMOS_BRIGHTNESS_DOWN;
6459 inc = (value > current_value) ? 1 : -1;
6460
6461 for (i = current_value; i != value; i += inc)
6462 if (issue_thinkpad_cmos_command(cmos_cmd))
6463 return -EIO;
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02006464
Henrique de Moraes Holschuhe11aecf2008-04-26 01:02:21 -03006465 return 0;
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02006466}
6467
6468/* May return EINTR which can always be mapped to ERESTARTSYS */
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00006469static int brightness_set(unsigned int value)
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02006470{
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00006471 int res;
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02006472
Andrey Utkinbd3c7b9e2014-07-15 01:56:21 +03006473 if (value > bright_maxlvl)
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02006474 return -EINVAL;
6475
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00006476 vdbg_printk(TPACPI_DBG_BRGHT,
6477 "set backlight level to %d\n", value);
6478
Henrique de Moraes Holschuh7646ea82009-01-11 03:01:04 -02006479 res = mutex_lock_killable(&brightness_mutex);
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02006480 if (res < 0)
6481 return res;
6482
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00006483 switch (brightness_mode) {
6484 case TPACPI_BRGHT_MODE_EC:
6485 case TPACPI_BRGHT_MODE_ECNVRAM:
6486 res = tpacpi_brightness_set_ec(value);
6487 break;
6488 case TPACPI_BRGHT_MODE_UCMS_STEP:
6489 res = tpacpi_brightness_set_ucmsstep(value);
6490 break;
6491 default:
6492 res = -ENXIO;
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02006493 }
6494
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02006495 mutex_unlock(&brightness_mutex);
6496 return res;
6497}
6498
6499/* sysfs backlight class ----------------------------------------------- */
6500
6501static int brightness_update_status(struct backlight_device *bd)
6502{
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00006503 unsigned int level =
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02006504 (bd->props.fb_blank == FB_BLANK_UNBLANK &&
6505 bd->props.power == FB_BLANK_UNBLANK) ?
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00006506 bd->props.brightness : 0;
6507
6508 dbg_printk(TPACPI_DBG_BRGHT,
6509 "backlight: attempt to set level to %d\n",
6510 level);
6511
6512 /* it is the backlight class's job (caller) to handle
6513 * EINTR and other errors properly */
6514 return brightness_set(level);
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02006515}
Holger Macht8acb0252006-10-20 14:30:28 -07006516
Henrique de Moraes Holschuhe11aecf2008-04-26 01:02:21 -03006517static int brightness_get(struct backlight_device *bd)
6518{
6519 int status, res;
6520
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00006521 res = mutex_lock_killable(&brightness_mutex);
Henrique de Moraes Holschuhe11aecf2008-04-26 01:02:21 -03006522 if (res < 0)
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00006523 return 0;
6524
6525 res = tpacpi_brightness_get_raw(&status);
6526
6527 mutex_unlock(&brightness_mutex);
6528
6529 if (res < 0)
6530 return 0;
Henrique de Moraes Holschuhe11aecf2008-04-26 01:02:21 -03006531
6532 return status & TP_EC_BACKLIGHT_LVLMSK;
6533}
6534
Henrique de Moraes Holschuh347a2682009-12-09 01:36:24 +00006535static void tpacpi_brightness_notify_change(void)
6536{
6537 backlight_force_update(ibm_backlight_device,
6538 BACKLIGHT_UPDATE_HOTKEY);
6539}
6540
Lionel Debrouxacc24722010-11-16 14:14:02 +01006541static const struct backlight_ops ibm_backlight_data = {
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02006542 .get_brightness = brightness_get,
6543 .update_status = brightness_update_status,
Henrique de Moraes Holschuhfb87a812006-11-25 16:35:09 -02006544};
6545
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02006546/* --------------------------------------------------------------------- */
Henrique de Moraes Holschuhf4322552007-07-18 23:45:48 -03006547
Henrique de Moraes Holschuh122f2672010-08-09 23:48:18 -03006548/*
6549 * Call _BCL method of video device. On some ThinkPads this will
6550 * switch the firmware to the ACPI brightness control mode.
6551 */
6552
Henrique de Moraes Holschuh77775832010-05-16 19:45:33 -03006553static int __init tpacpi_query_bcl_levels(acpi_handle handle)
6554{
6555 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
6556 union acpi_object *obj;
Aaron Lu46445b62013-10-11 21:27:46 +08006557 struct acpi_device *device, *child;
Henrique de Moraes Holschuh77775832010-05-16 19:45:33 -03006558 int rc;
6559
Aaron Lu46445b62013-10-11 21:27:46 +08006560 if (acpi_bus_get_device(handle, &device))
6561 return 0;
6562
6563 rc = 0;
6564 list_for_each_entry(child, &device->children, node) {
6565 acpi_status status = acpi_evaluate_object(child->handle, "_BCL",
6566 NULL, &buffer);
6567 if (ACPI_FAILURE(status))
6568 continue;
6569
Henrique de Moraes Holschuh77775832010-05-16 19:45:33 -03006570 obj = (union acpi_object *)buffer.pointer;
6571 if (!obj || (obj->type != ACPI_TYPE_PACKAGE)) {
Joe Perches0978e012011-04-04 10:06:25 -07006572 pr_err("Unknown _BCL data, please report this to %s\n",
Aaron Lu46445b62013-10-11 21:27:46 +08006573 TPACPI_MAIL);
Henrique de Moraes Holschuh77775832010-05-16 19:45:33 -03006574 rc = 0;
6575 } else {
6576 rc = obj->package.count;
6577 }
Aaron Lu46445b62013-10-11 21:27:46 +08006578 break;
Henrique de Moraes Holschuh77775832010-05-16 19:45:33 -03006579 }
6580
6581 kfree(buffer.pointer);
6582 return rc;
6583}
6584
Henrique de Moraes Holschuh77775832010-05-16 19:45:33 -03006585
6586/*
6587 * Returns 0 (no ACPI _BCL or _BCL invalid), or size of brightness map
6588 */
6589static unsigned int __init tpacpi_check_std_acpi_brightness_support(void)
6590{
Henrique de Moraes Holschuh122f2672010-08-09 23:48:18 -03006591 acpi_handle video_device;
Henrique de Moraes Holschuh77775832010-05-16 19:45:33 -03006592 int bcl_levels = 0;
Henrique de Moraes Holschuh77775832010-05-16 19:45:33 -03006593
Aaron Lu46445b62013-10-11 21:27:46 +08006594 tpacpi_acpi_handle_locate("video", NULL, &video_device);
Henrique de Moraes Holschuh122f2672010-08-09 23:48:18 -03006595 if (video_device)
6596 bcl_levels = tpacpi_query_bcl_levels(video_device);
Henrique de Moraes Holschuh77775832010-05-16 19:45:33 -03006597
Henrique de Moraes Holschuh122f2672010-08-09 23:48:18 -03006598 tp_features.bright_acpimode = (bcl_levels > 0);
Henrique de Moraes Holschuh77775832010-05-16 19:45:33 -03006599
Henrique de Moraes Holschuh122f2672010-08-09 23:48:18 -03006600 return (bcl_levels > 2) ? (bcl_levels - 2) : 0;
Henrique de Moraes Holschuh77775832010-05-16 19:45:33 -03006601}
6602
Henrique de Moraes Holschuh59fe4fe2009-08-01 12:04:20 -03006603/*
6604 * These are only useful for models that have only one possibility
6605 * of GPU. If the BIOS model handles both ATI and Intel, don't use
6606 * these quirks.
6607 */
6608#define TPACPI_BRGHT_Q_NOEC 0x0001 /* Must NOT use EC HBRV */
6609#define TPACPI_BRGHT_Q_EC 0x0002 /* Should or must use EC HBRV */
6610#define TPACPI_BRGHT_Q_ASK 0x8000 /* Ask for user report */
6611
6612static const struct tpacpi_quirk brightness_quirk_table[] __initconst = {
6613 /* Models with ATI GPUs known to require ECNVRAM mode */
6614 TPACPI_Q_IBM('1', 'Y', TPACPI_BRGHT_Q_EC), /* T43/p ATI */
6615
Henrique de Moraes Holschuh6da25bf2009-09-12 15:22:11 -03006616 /* Models with ATI GPUs that can use ECNVRAM */
Henrique de Moraes Holschuh7d1894d2010-02-25 21:28:56 -03006617 TPACPI_Q_IBM('1', 'R', TPACPI_BRGHT_Q_EC), /* R50,51 T40-42 */
Henrique de Moraes Holschuh59fe4fe2009-08-01 12:04:20 -03006618 TPACPI_Q_IBM('1', 'Q', TPACPI_BRGHT_Q_ASK|TPACPI_BRGHT_Q_EC),
Henrique de Moraes Holschuh7d1894d2010-02-25 21:28:56 -03006619 TPACPI_Q_IBM('7', '6', TPACPI_BRGHT_Q_EC), /* R52 */
Henrique de Moraes Holschuh59fe4fe2009-08-01 12:04:20 -03006620 TPACPI_Q_IBM('7', '8', TPACPI_BRGHT_Q_ASK|TPACPI_BRGHT_Q_EC),
6621
Henrique de Moraes Holschuh6da25bf2009-09-12 15:22:11 -03006622 /* Models with Intel Extreme Graphics 2 */
Henrique de Moraes Holschuh7d1894d2010-02-25 21:28:56 -03006623 TPACPI_Q_IBM('1', 'U', TPACPI_BRGHT_Q_NOEC), /* X40 */
Henrique de Moraes Holschuha9f8eac2009-12-09 01:36:21 +00006624 TPACPI_Q_IBM('1', 'V', TPACPI_BRGHT_Q_ASK|TPACPI_BRGHT_Q_EC),
6625 TPACPI_Q_IBM('1', 'W', TPACPI_BRGHT_Q_ASK|TPACPI_BRGHT_Q_EC),
Henrique de Moraes Holschuh59fe4fe2009-08-01 12:04:20 -03006626
6627 /* Models with Intel GMA900 */
6628 TPACPI_Q_IBM('7', '0', TPACPI_BRGHT_Q_NOEC), /* T43, R52 */
6629 TPACPI_Q_IBM('7', '4', TPACPI_BRGHT_Q_NOEC), /* X41 */
6630 TPACPI_Q_IBM('7', '5', TPACPI_BRGHT_Q_NOEC), /* X41 Tablet */
6631};
6632
Henrique de Moraes Holschuh77775832010-05-16 19:45:33 -03006633/*
6634 * Returns < 0 for error, otherwise sets tp_features.bright_*
6635 * and bright_maxlvl.
6636 */
6637static void __init tpacpi_detect_brightness_capabilities(void)
6638{
6639 unsigned int b;
6640
6641 vdbg_printk(TPACPI_DBG_INIT,
6642 "detecting firmware brightness interface capabilities\n");
6643
6644 /* we could run a quirks check here (same table used by
6645 * brightness_init) if needed */
6646
6647 /*
6648 * We always attempt to detect acpi support, so as to switch
6649 * Lenovo Vista BIOS to ACPI brightness mode even if we are not
6650 * going to publish a backlight interface
6651 */
6652 b = tpacpi_check_std_acpi_brightness_support();
6653 switch (b) {
6654 case 16:
6655 bright_maxlvl = 15;
Joe Perches0978e012011-04-04 10:06:25 -07006656 pr_info("detected a 16-level brightness capable ThinkPad\n");
Henrique de Moraes Holschuh77775832010-05-16 19:45:33 -03006657 break;
6658 case 8:
6659 case 0:
6660 bright_maxlvl = 7;
Joe Perches0978e012011-04-04 10:06:25 -07006661 pr_info("detected a 8-level brightness capable ThinkPad\n");
Henrique de Moraes Holschuh77775832010-05-16 19:45:33 -03006662 break;
6663 default:
David Herrmannd6186512015-10-21 12:46:10 +02006664 pr_info("Unsupported brightness interface\n");
Henrique de Moraes Holschuh77775832010-05-16 19:45:33 -03006665 tp_features.bright_unkfw = 1;
6666 bright_maxlvl = b - 1;
6667 }
6668}
6669
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03006670static int __init brightness_init(struct ibm_init_struct *iibm)
Henrique de Moraes Holschuhfb87a812006-11-25 16:35:09 -02006671{
Matthew Garretta19a6ee2010-02-17 16:39:44 -05006672 struct backlight_properties props;
Henrique de Moraes Holschuhadb00582007-02-22 16:04:55 -02006673 int b;
Henrique de Moraes Holschuh59fe4fe2009-08-01 12:04:20 -03006674 unsigned long quirks;
Henrique de Moraes Holschuhadb00582007-02-22 16:04:55 -02006675
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03006676 vdbg_printk(TPACPI_DBG_INIT, "initializing brightness subdriver\n");
6677
Henrique de Moraes Holschuhf4322552007-07-18 23:45:48 -03006678 mutex_init(&brightness_mutex);
6679
Henrique de Moraes Holschuh59fe4fe2009-08-01 12:04:20 -03006680 quirks = tpacpi_check_quirks(brightness_quirk_table,
6681 ARRAY_SIZE(brightness_quirk_table));
6682
Henrique de Moraes Holschuh77775832010-05-16 19:45:33 -03006683 /* tpacpi_detect_brightness_capabilities() must have run already */
Thomas Renninger2dba1b52008-08-01 17:38:03 +02006684
Henrique de Moraes Holschuh77775832010-05-16 19:45:33 -03006685 /* if it is unknown, we don't handle it: it wouldn't be safe */
6686 if (tp_features.bright_unkfw)
6687 return 1;
6688
Henrique de Moraes Holschuhb5972792008-04-26 01:02:17 -03006689 if (!brightness_enable) {
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00006690 dbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_BRGHT,
Henrique de Moraes Holschuhb5972792008-04-26 01:02:17 -03006691 "brightness support disabled by "
6692 "module parameter\n");
6693 return 1;
6694 }
6695
Hans de Goedeb33c6ce2015-06-16 16:28:10 +02006696 if (acpi_video_get_backlight_type() != acpi_backlight_vendor) {
Henrique de Moraes Holschuh217f0962010-08-09 23:48:19 -03006697 if (brightness_enable > 1) {
Joe Perches0978e012011-04-04 10:06:25 -07006698 pr_info("Standard ACPI backlight interface "
6699 "available, not loading native one\n");
Henrique de Moraes Holschuh217f0962010-08-09 23:48:19 -03006700 return 1;
6701 } else if (brightness_enable == 1) {
Joe Perches0978e012011-04-04 10:06:25 -07006702 pr_warn("Cannot enable backlight brightness support, "
Henrique de Moraes Holschuh217f0962010-08-09 23:48:19 -03006703 "ACPI is already handling it. Refer to the "
Joe Perches0978e012011-04-04 10:06:25 -07006704 "acpi_backlight kernel parameter.\n");
Henrique de Moraes Holschuh217f0962010-08-09 23:48:19 -03006705 return 1;
6706 }
6707 } else if (tp_features.bright_acpimode && brightness_enable > 1) {
Joe Perches0978e012011-04-04 10:06:25 -07006708 pr_notice("Standard ACPI backlight interface not "
6709 "available, thinkpad_acpi native "
6710 "brightness control enabled\n");
Henrique de Moraes Holschuh217f0962010-08-09 23:48:19 -03006711 }
6712
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00006713 /*
6714 * Check for module parameter bogosity, note that we
6715 * init brightness_mode to TPACPI_BRGHT_MODE_MAX in order to be
6716 * able to detect "unspecified"
6717 */
6718 if (brightness_mode > TPACPI_BRGHT_MODE_MAX)
Henrique de Moraes Holschuh24d3b772007-07-18 23:45:43 -03006719 return -EINVAL;
6720
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00006721 /* TPACPI_BRGHT_MODE_AUTO not implemented yet, just use default */
6722 if (brightness_mode == TPACPI_BRGHT_MODE_AUTO ||
6723 brightness_mode == TPACPI_BRGHT_MODE_MAX) {
Henrique de Moraes Holschuh59fe4fe2009-08-01 12:04:20 -03006724 if (quirks & TPACPI_BRGHT_Q_EC)
6725 brightness_mode = TPACPI_BRGHT_MODE_ECNVRAM;
6726 else
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00006727 brightness_mode = TPACPI_BRGHT_MODE_UCMS_STEP;
6728
6729 dbg_printk(TPACPI_DBG_BRGHT,
Henrique de Moraes Holschuh59fe4fe2009-08-01 12:04:20 -03006730 "driver auto-selected brightness_mode=%d\n",
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00006731 brightness_mode);
6732 }
6733
Henrique de Moraes Holschuhd7880f12009-06-18 00:40:16 -03006734 /* Safety */
Henrique de Moraes Holschuhe28393c2010-05-16 19:45:23 -03006735 if (!tpacpi_is_ibm() &&
Henrique de Moraes Holschuhd7880f12009-06-18 00:40:16 -03006736 (brightness_mode == TPACPI_BRGHT_MODE_ECNVRAM ||
6737 brightness_mode == TPACPI_BRGHT_MODE_EC))
6738 return -EINVAL;
6739
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00006740 if (tpacpi_brightness_get_raw(&b) < 0)
Henrique de Moraes Holschuh24d3b772007-07-18 23:45:43 -03006741 return 1;
Henrique de Moraes Holschuhadb00582007-02-22 16:04:55 -02006742
Matthew Garretta19a6ee2010-02-17 16:39:44 -05006743 memset(&props, 0, sizeof(struct backlight_properties));
Matthew Garrettbb7ca742011-03-22 16:30:21 -07006744 props.type = BACKLIGHT_PLATFORM;
Henrique de Moraes Holschuh77775832010-05-16 19:45:33 -03006745 props.max_brightness = bright_maxlvl;
6746 props.brightness = b & TP_EC_BACKLIGHT_LVLMSK;
Matthew Garretta19a6ee2010-02-17 16:39:44 -05006747 ibm_backlight_device = backlight_device_register(TPACPI_BACKLIGHT_DEV_NAME,
6748 NULL, NULL,
6749 &ibm_backlight_data,
6750 &props);
Henrique de Moraes Holschuhfb87a812006-11-25 16:35:09 -02006751 if (IS_ERR(ibm_backlight_device)) {
Henrique de Moraes Holschuh435c47e2009-09-20 14:09:22 -03006752 int rc = PTR_ERR(ibm_backlight_device);
6753 ibm_backlight_device = NULL;
Joe Perches0978e012011-04-04 10:06:25 -07006754 pr_err("Could not register backlight device\n");
Henrique de Moraes Holschuh435c47e2009-09-20 14:09:22 -03006755 return rc;
Henrique de Moraes Holschuhfb87a812006-11-25 16:35:09 -02006756 }
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00006757 vdbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_BRGHT,
6758 "brightness is supported\n");
Henrique de Moraes Holschuhfb87a812006-11-25 16:35:09 -02006759
Henrique de Moraes Holschuh59fe4fe2009-08-01 12:04:20 -03006760 if (quirks & TPACPI_BRGHT_Q_ASK) {
Joe Perches0978e012011-04-04 10:06:25 -07006761 pr_notice("brightness: will use unverified default: "
6762 "brightness_mode=%d\n", brightness_mode);
6763 pr_notice("brightness: please report to %s whether it works well "
6764 "or not on your ThinkPad\n", TPACPI_MAIL);
Henrique de Moraes Holschuh59fe4fe2009-08-01 12:04:20 -03006765 }
6766
Henrique de Moraes Holschuh7d9745c2010-05-16 19:45:57 -03006767 /* Added by mistake in early 2007. Probably useless, but it could
6768 * be working around some unknown firmware problem where the value
6769 * read at startup doesn't match the real hardware state... so leave
6770 * it in place just in case */
Henrique de Moraes Holschuhadb00582007-02-22 16:04:55 -02006771 backlight_update_status(ibm_backlight_device);
Richard Purdie599a52d2007-02-10 23:07:48 +00006772
Henrique de Moraes Holschuh347a2682009-12-09 01:36:24 +00006773 vdbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_BRGHT,
6774 "brightness: registering brightness hotkeys "
6775 "as change notification\n");
6776 tpacpi_hotkey_driver_mask_set(hotkey_driver_mask
6777 | TP_ACPI_HKEY_BRGHTUP_MASK
Joe Perches30980642010-11-14 19:04:38 -08006778 | TP_ACPI_HKEY_BRGHTDWN_MASK);
Henrique de Moraes Holschuhfb87a812006-11-25 16:35:09 -02006779 return 0;
6780}
6781
Rafael J. Wysockifd3c3a42012-06-27 23:18:44 +02006782static void brightness_suspend(void)
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00006783{
6784 tpacpi_brightness_checkpoint_nvram();
6785}
6786
6787static void brightness_shutdown(void)
6788{
6789 tpacpi_brightness_checkpoint_nvram();
6790}
6791
Henrique de Moraes Holschuhfb87a812006-11-25 16:35:09 -02006792static void brightness_exit(void)
6793{
6794 if (ibm_backlight_device) {
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00006795 vdbg_printk(TPACPI_DBG_EXIT | TPACPI_DBG_BRGHT,
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03006796 "calling backlight_device_unregister()\n");
Henrique de Moraes Holschuhfb87a812006-11-25 16:35:09 -02006797 backlight_device_unregister(ibm_backlight_device);
Henrique de Moraes Holschuhfb87a812006-11-25 16:35:09 -02006798 }
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00006799
6800 tpacpi_brightness_checkpoint_nvram();
Henrique de Moraes Holschuhfb87a812006-11-25 16:35:09 -02006801}
6802
Alexey Dobriyan887965e2009-12-15 21:51:12 -02006803static int brightness_read(struct seq_file *m)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03006804{
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03006805 int level;
6806
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02006807 level = brightness_get(NULL);
6808 if (level < 0) {
Alexey Dobriyan887965e2009-12-15 21:51:12 -02006809 seq_printf(m, "level:\t\tunreadable\n");
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03006810 } else {
Alexey Dobriyan887965e2009-12-15 21:51:12 -02006811 seq_printf(m, "level:\t\t%d\n", level);
6812 seq_printf(m, "commands:\tup, down\n");
Henrique de Moraes Holschuh77775832010-05-16 19:45:33 -03006813 seq_printf(m, "commands:\tlevel <level> (<level> is 0-%d)\n",
6814 bright_maxlvl);
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03006815 }
6816
Alexey Dobriyan887965e2009-12-15 21:51:12 -02006817 return 0;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03006818}
6819
6820static int brightness_write(char *buf)
6821{
6822 int level;
Henrique de Moraes Holschuh4273af82007-10-30 17:46:25 -02006823 int rc;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03006824 char *cmd;
6825
Henrique de Moraes Holschuh4273af82007-10-30 17:46:25 -02006826 level = brightness_get(NULL);
6827 if (level < 0)
6828 return level;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03006829
Henrique de Moraes Holschuh4273af82007-10-30 17:46:25 -02006830 while ((cmd = next_cmd(&buf))) {
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03006831 if (strlencmp(cmd, "up") == 0) {
Henrique de Moraes Holschuh77775832010-05-16 19:45:33 -03006832 if (level < bright_maxlvl)
Henrique de Moraes Holschuh4273af82007-10-30 17:46:25 -02006833 level++;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03006834 } else if (strlencmp(cmd, "down") == 0) {
Henrique de Moraes Holschuh4273af82007-10-30 17:46:25 -02006835 if (level > 0)
6836 level--;
6837 } else if (sscanf(cmd, "level %d", &level) == 1 &&
Henrique de Moraes Holschuh77775832010-05-16 19:45:33 -03006838 level >= 0 && level <= bright_maxlvl) {
Henrique de Moraes Holschuh4273af82007-10-30 17:46:25 -02006839 /* new level set */
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03006840 } else
6841 return -EINVAL;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03006842 }
6843
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00006844 tpacpi_disclose_usertask("procfs brightness",
6845 "set level to %d\n", level);
6846
Henrique de Moraes Holschuh4273af82007-10-30 17:46:25 -02006847 /*
6848 * Now we know what the final level should be, so we try to set it.
6849 * Doing it this way makes the syscall restartable in case of EINTR
6850 */
6851 rc = brightness_set(level);
Henrique de Moraes Holschuh347a2682009-12-09 01:36:24 +00006852 if (!rc && ibm_backlight_device)
6853 backlight_force_update(ibm_backlight_device,
6854 BACKLIGHT_UPDATE_SYSFS);
Jan van den Berg72a979f2014-09-17 00:01:08 +02006855 return (rc == -EINTR) ? -ERESTARTSYS : rc;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03006856}
6857
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03006858static struct ibm_struct brightness_driver_data = {
6859 .name = "brightness",
6860 .read = brightness_read,
6861 .write = brightness_write,
6862 .exit = brightness_exit,
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00006863 .suspend = brightness_suspend,
6864 .shutdown = brightness_shutdown,
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03006865};
6866
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03006867/*************************************************************************
6868 * Volume subdriver
6869 */
6870
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02006871/*
6872 * IBM ThinkPads have a simple volume controller with MUTE gating.
6873 * Very early Lenovo ThinkPads follow the IBM ThinkPad spec.
6874 *
6875 * Since the *61 series (and probably also the later *60 series), Lenovo
6876 * ThinkPads only implement the MUTE gate.
6877 *
6878 * EC register 0x30
6879 * Bit 6: MUTE (1 mutes sound)
6880 * Bit 3-0: Volume
6881 * Other bits should be zero as far as we know.
6882 *
6883 * This is also stored in CMOS NVRAM, byte 0x60, bit 6 (MUTE), and
6884 * bits 3-0 (volume). Other bits in NVRAM may have other functions,
6885 * such as bit 7 which is used to detect repeated presses of MUTE,
6886 * and we leave them unchanged.
Andy Lutomirski9a417ec2014-10-17 17:04:29 -07006887 *
6888 * On newer Lenovo ThinkPads, the EC can automatically change the volume
6889 * in response to user input. Unfortunately, this rarely works well.
6890 * The laptop changes the state of its internal MUTE gate and, on some
6891 * models, sends KEY_MUTE, causing any user code that responds to the
6892 * mute button to get confused. The hardware MUTE gate is also
6893 * unnecessary, since user code can handle the mute button without
6894 * kernel or EC help.
6895 *
6896 * To avoid confusing userspace, we simply disable all EC-based mute
6897 * and volume controls when possible.
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02006898 */
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02006899
Henrique de Moraes Holschuhff850c32009-12-26 22:52:15 -02006900#ifdef CONFIG_THINKPAD_ACPI_ALSA_SUPPORT
6901
Henrique de Moraes Holschuh0d204c32009-12-15 21:51:11 -02006902#define TPACPI_ALSA_DRVNAME "ThinkPad EC"
6903#define TPACPI_ALSA_SHRTNAME "ThinkPad Console Audio Control"
6904#define TPACPI_ALSA_MIXERNAME TPACPI_ALSA_SHRTNAME
6905
Takashi Iwaicab66612013-10-24 16:06:32 +02006906#if SNDRV_CARDS <= 32
6907#define DEFAULT_ALSA_IDX ~((1 << (SNDRV_CARDS - 3)) - 1)
6908#else
6909#define DEFAULT_ALSA_IDX ~((1 << (32 - 3)) - 1)
6910#endif
6911static int alsa_index = DEFAULT_ALSA_IDX; /* last three slots */
Henrique de Moraes Holschuh0d204c32009-12-15 21:51:11 -02006912static char *alsa_id = "ThinkPadEC";
Rusty Russell90ab5ee2012-01-13 09:32:20 +10306913static bool alsa_enable = SNDRV_DEFAULT_ENABLE1;
Henrique de Moraes Holschuh0d204c32009-12-15 21:51:11 -02006914
6915struct tpacpi_alsa_data {
6916 struct snd_card *card;
6917 struct snd_ctl_elem_id *ctl_mute_id;
6918 struct snd_ctl_elem_id *ctl_vol_id;
6919};
6920
6921static struct snd_card *alsa_card;
6922
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02006923enum {
6924 TP_EC_AUDIO = 0x30,
6925
6926 /* TP_EC_AUDIO bits */
6927 TP_EC_AUDIO_MUTESW = 6,
6928
6929 /* TP_EC_AUDIO bitmasks */
6930 TP_EC_AUDIO_LVL_MSK = 0x0F,
6931 TP_EC_AUDIO_MUTESW_MSK = (1 << TP_EC_AUDIO_MUTESW),
6932
6933 /* Maximum volume */
6934 TP_EC_VOLUME_MAX = 14,
6935};
6936
6937enum tpacpi_volume_access_mode {
6938 TPACPI_VOL_MODE_AUTO = 0, /* Not implemented yet */
6939 TPACPI_VOL_MODE_EC, /* Pure EC control */
6940 TPACPI_VOL_MODE_UCMS_STEP, /* UCMS step-based control: N/A */
6941 TPACPI_VOL_MODE_ECNVRAM, /* EC control w/ NVRAM store */
6942 TPACPI_VOL_MODE_MAX
6943};
6944
Henrique de Moraes Holschuha112cee2009-12-15 21:51:09 -02006945enum tpacpi_volume_capabilities {
6946 TPACPI_VOL_CAP_AUTO = 0, /* Use white/blacklist */
6947 TPACPI_VOL_CAP_VOLMUTE, /* Output vol and mute */
6948 TPACPI_VOL_CAP_MUTEONLY, /* Output mute only */
6949 TPACPI_VOL_CAP_MAX
6950};
6951
Andy Lutomirski9a417ec2014-10-17 17:04:29 -07006952enum tpacpi_mute_btn_mode {
6953 TP_EC_MUTE_BTN_LATCH = 0, /* Mute mutes; up/down unmutes */
6954 /* We don't know what mode 1 is. */
6955 TP_EC_MUTE_BTN_NONE = 2, /* Mute and up/down are just keys */
6956 TP_EC_MUTE_BTN_TOGGLE = 3, /* Mute toggles; up/down unmutes */
6957};
6958
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02006959static enum tpacpi_volume_access_mode volume_mode =
6960 TPACPI_VOL_MODE_MAX;
6961
Henrique de Moraes Holschuha112cee2009-12-15 21:51:09 -02006962static enum tpacpi_volume_capabilities volume_capabilities;
Rusty Russell90ab5ee2012-01-13 09:32:20 +10306963static bool volume_control_allowed;
Andy Lutomirski9a417ec2014-10-17 17:04:29 -07006964static bool software_mute_requested = true;
6965static bool software_mute_active;
6966static int software_mute_orig_mode;
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02006967
6968/*
6969 * Used to syncronize writers to TP_EC_AUDIO and
6970 * TP_NVRAM_ADDR_MIXER, as we need to do read-modify-write
6971 */
6972static struct mutex volume_mutex;
6973
6974static void tpacpi_volume_checkpoint_nvram(void)
Borislav Deianov78f81cc2005-08-17 00:00:00 -04006975{
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02006976 u8 lec = 0;
6977 u8 b_nvram;
Henrique de Moraes Holschuha112cee2009-12-15 21:51:09 -02006978 u8 ec_mask;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04006979
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02006980 if (volume_mode != TPACPI_VOL_MODE_ECNVRAM)
6981 return;
Henrique de Moraes Holschuhc7ac6292009-12-15 21:51:10 -02006982 if (!volume_control_allowed)
6983 return;
Andy Lutomirski9a417ec2014-10-17 17:04:29 -07006984 if (software_mute_active)
6985 return;
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02006986
6987 vdbg_printk(TPACPI_DBG_MIXER,
6988 "trying to checkpoint mixer state to NVRAM...\n");
6989
Henrique de Moraes Holschuha112cee2009-12-15 21:51:09 -02006990 if (tp_features.mixer_no_level_control)
6991 ec_mask = TP_EC_AUDIO_MUTESW_MSK;
6992 else
6993 ec_mask = TP_EC_AUDIO_MUTESW_MSK | TP_EC_AUDIO_LVL_MSK;
6994
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02006995 if (mutex_lock_killable(&volume_mutex) < 0)
6996 return;
6997
6998 if (unlikely(!acpi_ec_read(TP_EC_AUDIO, &lec)))
6999 goto unlock;
7000 lec &= ec_mask;
7001 b_nvram = nvram_read_byte(TP_NVRAM_ADDR_MIXER);
7002
7003 if (lec != (b_nvram & ec_mask)) {
7004 /* NVRAM needs update */
7005 b_nvram &= ~ec_mask;
7006 b_nvram |= lec;
7007 nvram_write_byte(b_nvram, TP_NVRAM_ADDR_MIXER);
7008 dbg_printk(TPACPI_DBG_MIXER,
7009 "updated NVRAM mixer status to 0x%02x (0x%02x)\n",
7010 (unsigned int) lec, (unsigned int) b_nvram);
Borislav Deianov78f81cc2005-08-17 00:00:00 -04007011 } else {
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02007012 vdbg_printk(TPACPI_DBG_MIXER,
7013 "NVRAM mixer status already is 0x%02x (0x%02x)\n",
7014 (unsigned int) lec, (unsigned int) b_nvram);
Borislav Deianov78f81cc2005-08-17 00:00:00 -04007015 }
7016
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02007017unlock:
7018 mutex_unlock(&volume_mutex);
Borislav Deianov78f81cc2005-08-17 00:00:00 -04007019}
7020
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02007021static int volume_get_status_ec(u8 *status)
Borislav Deianov78f81cc2005-08-17 00:00:00 -04007022{
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02007023 u8 s;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04007024
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02007025 if (!acpi_ec_read(TP_EC_AUDIO, &s))
7026 return -EIO;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04007027
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02007028 *status = s;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04007029
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02007030 dbg_printk(TPACPI_DBG_MIXER, "status 0x%02x\n", s);
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02007031
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02007032 return 0;
7033}
Borislav Deianov78f81cc2005-08-17 00:00:00 -04007034
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02007035static int volume_get_status(u8 *status)
7036{
7037 return volume_get_status_ec(status);
7038}
Borislav Deianov78f81cc2005-08-17 00:00:00 -04007039
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02007040static int volume_set_status_ec(const u8 status)
7041{
7042 if (!acpi_ec_write(TP_EC_AUDIO, status))
7043 return -EIO;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04007044
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02007045 dbg_printk(TPACPI_DBG_MIXER, "set EC mixer to 0x%02x\n", status);
7046
Andy Lutomirski9a417ec2014-10-17 17:04:29 -07007047 /*
7048 * On X200s, and possibly on others, it can take a while for
7049 * reads to become correct.
7050 */
7051 msleep(1);
7052
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02007053 return 0;
7054}
7055
7056static int volume_set_status(const u8 status)
7057{
7058 return volume_set_status_ec(status);
7059}
7060
Henrique de Moraes Holschuh88cc8372010-02-27 18:45:29 -03007061/* returns < 0 on error, 0 on no change, 1 on change */
7062static int __volume_set_mute_ec(const bool mute)
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02007063{
7064 int rc;
7065 u8 s, n;
7066
7067 if (mutex_lock_killable(&volume_mutex) < 0)
7068 return -EINTR;
7069
7070 rc = volume_get_status_ec(&s);
7071 if (rc)
7072 goto unlock;
7073
7074 n = (mute) ? s | TP_EC_AUDIO_MUTESW_MSK :
7075 s & ~TP_EC_AUDIO_MUTESW_MSK;
7076
Henrique de Moraes Holschuh88cc8372010-02-27 18:45:29 -03007077 if (n != s) {
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02007078 rc = volume_set_status_ec(n);
Henrique de Moraes Holschuh88cc8372010-02-27 18:45:29 -03007079 if (!rc)
7080 rc = 1;
7081 }
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02007082
7083unlock:
7084 mutex_unlock(&volume_mutex);
7085 return rc;
7086}
7087
Henrique de Moraes Holschuh88cc8372010-02-27 18:45:29 -03007088static int volume_alsa_set_mute(const bool mute)
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02007089{
Henrique de Moraes Holschuh88cc8372010-02-27 18:45:29 -03007090 dbg_printk(TPACPI_DBG_MIXER, "ALSA: trying to %smute\n",
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02007091 (mute) ? "" : "un");
Henrique de Moraes Holschuh88cc8372010-02-27 18:45:29 -03007092 return __volume_set_mute_ec(mute);
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02007093}
7094
Henrique de Moraes Holschuh88cc8372010-02-27 18:45:29 -03007095static int volume_set_mute(const bool mute)
7096{
7097 int rc;
7098
7099 dbg_printk(TPACPI_DBG_MIXER, "trying to %smute\n",
7100 (mute) ? "" : "un");
7101
7102 rc = __volume_set_mute_ec(mute);
7103 return (rc < 0) ? rc : 0;
7104}
7105
7106/* returns < 0 on error, 0 on no change, 1 on change */
7107static int __volume_set_volume_ec(const u8 vol)
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02007108{
7109 int rc;
7110 u8 s, n;
7111
7112 if (vol > TP_EC_VOLUME_MAX)
7113 return -EINVAL;
7114
7115 if (mutex_lock_killable(&volume_mutex) < 0)
7116 return -EINTR;
7117
7118 rc = volume_get_status_ec(&s);
7119 if (rc)
7120 goto unlock;
7121
7122 n = (s & ~TP_EC_AUDIO_LVL_MSK) | vol;
7123
Henrique de Moraes Holschuh88cc8372010-02-27 18:45:29 -03007124 if (n != s) {
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02007125 rc = volume_set_status_ec(n);
Henrique de Moraes Holschuh88cc8372010-02-27 18:45:29 -03007126 if (!rc)
7127 rc = 1;
7128 }
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02007129
7130unlock:
7131 mutex_unlock(&volume_mutex);
7132 return rc;
7133}
7134
Andy Lutomirski9a417ec2014-10-17 17:04:29 -07007135static int volume_set_software_mute(bool startup)
7136{
7137 int result;
7138
7139 if (!tpacpi_is_lenovo())
7140 return -ENODEV;
7141
7142 if (startup) {
7143 if (!acpi_evalf(ec_handle, &software_mute_orig_mode,
7144 "HAUM", "qd"))
7145 return -EIO;
7146
7147 dbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_MIXER,
7148 "Initial HAUM setting was %d\n",
7149 software_mute_orig_mode);
7150 }
7151
7152 if (!acpi_evalf(ec_handle, &result, "SAUM", "qdd",
7153 (int)TP_EC_MUTE_BTN_NONE))
7154 return -EIO;
7155
7156 if (result != TP_EC_MUTE_BTN_NONE)
7157 pr_warn("Unexpected SAUM result %d\n",
7158 result);
7159
7160 /*
7161 * In software mute mode, the standard codec controls take
7162 * precendence, so we unmute the ThinkPad HW switch at
7163 * startup. Just on case there are SAUM-capable ThinkPads
7164 * with level controls, set max HW volume as well.
7165 */
7166 if (tp_features.mixer_no_level_control)
7167 result = volume_set_mute(false);
7168 else
7169 result = volume_set_status(TP_EC_VOLUME_MAX);
7170
7171 if (result != 0)
7172 pr_warn("Failed to unmute the HW mute switch\n");
7173
7174 return 0;
7175}
7176
7177static void volume_exit_software_mute(void)
7178{
7179 int r;
7180
7181 if (!acpi_evalf(ec_handle, &r, "SAUM", "qdd", software_mute_orig_mode)
7182 || r != software_mute_orig_mode)
7183 pr_warn("Failed to restore mute mode\n");
7184}
7185
Henrique de Moraes Holschuh88cc8372010-02-27 18:45:29 -03007186static int volume_alsa_set_volume(const u8 vol)
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02007187{
7188 dbg_printk(TPACPI_DBG_MIXER,
Henrique de Moraes Holschuh88cc8372010-02-27 18:45:29 -03007189 "ALSA: trying to set volume level to %hu\n", vol);
7190 return __volume_set_volume_ec(vol);
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02007191}
7192
Henrique de Moraes Holschuh0d204c32009-12-15 21:51:11 -02007193static void volume_alsa_notify_change(void)
7194{
7195 struct tpacpi_alsa_data *d;
7196
7197 if (alsa_card && alsa_card->private_data) {
7198 d = alsa_card->private_data;
7199 if (d->ctl_mute_id)
7200 snd_ctl_notify(alsa_card,
7201 SNDRV_CTL_EVENT_MASK_VALUE,
7202 d->ctl_mute_id);
7203 if (d->ctl_vol_id)
7204 snd_ctl_notify(alsa_card,
7205 SNDRV_CTL_EVENT_MASK_VALUE,
7206 d->ctl_vol_id);
7207 }
7208}
7209
7210static int volume_alsa_vol_info(struct snd_kcontrol *kcontrol,
7211 struct snd_ctl_elem_info *uinfo)
7212{
7213 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
7214 uinfo->count = 1;
7215 uinfo->value.integer.min = 0;
7216 uinfo->value.integer.max = TP_EC_VOLUME_MAX;
7217 return 0;
7218}
7219
7220static int volume_alsa_vol_get(struct snd_kcontrol *kcontrol,
7221 struct snd_ctl_elem_value *ucontrol)
7222{
7223 u8 s;
7224 int rc;
7225
7226 rc = volume_get_status(&s);
7227 if (rc < 0)
7228 return rc;
7229
7230 ucontrol->value.integer.value[0] = s & TP_EC_AUDIO_LVL_MSK;
7231 return 0;
7232}
7233
7234static int volume_alsa_vol_put(struct snd_kcontrol *kcontrol,
7235 struct snd_ctl_elem_value *ucontrol)
7236{
Henrique de Moraes Holschuh38e11cd2010-05-16 19:45:40 -03007237 tpacpi_disclose_usertask("ALSA", "set volume to %ld\n",
7238 ucontrol->value.integer.value[0]);
Henrique de Moraes Holschuh88cc8372010-02-27 18:45:29 -03007239 return volume_alsa_set_volume(ucontrol->value.integer.value[0]);
Henrique de Moraes Holschuh0d204c32009-12-15 21:51:11 -02007240}
7241
7242#define volume_alsa_mute_info snd_ctl_boolean_mono_info
7243
7244static int volume_alsa_mute_get(struct snd_kcontrol *kcontrol,
7245 struct snd_ctl_elem_value *ucontrol)
7246{
7247 u8 s;
7248 int rc;
7249
7250 rc = volume_get_status(&s);
7251 if (rc < 0)
7252 return rc;
7253
7254 ucontrol->value.integer.value[0] =
7255 (s & TP_EC_AUDIO_MUTESW_MSK) ? 0 : 1;
7256 return 0;
7257}
7258
7259static int volume_alsa_mute_put(struct snd_kcontrol *kcontrol,
7260 struct snd_ctl_elem_value *ucontrol)
7261{
Henrique de Moraes Holschuh38e11cd2010-05-16 19:45:40 -03007262 tpacpi_disclose_usertask("ALSA", "%smute\n",
7263 ucontrol->value.integer.value[0] ?
7264 "un" : "");
Henrique de Moraes Holschuh88cc8372010-02-27 18:45:29 -03007265 return volume_alsa_set_mute(!ucontrol->value.integer.value[0]);
Henrique de Moraes Holschuh0d204c32009-12-15 21:51:11 -02007266}
7267
Mathias Krausec3aa4722014-07-16 19:43:17 +02007268static struct snd_kcontrol_new volume_alsa_control_vol __initdata = {
Henrique de Moraes Holschuh0d204c32009-12-15 21:51:11 -02007269 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
7270 .name = "Console Playback Volume",
7271 .index = 0,
7272 .access = SNDRV_CTL_ELEM_ACCESS_READ,
7273 .info = volume_alsa_vol_info,
7274 .get = volume_alsa_vol_get,
7275};
7276
Mathias Krausec3aa4722014-07-16 19:43:17 +02007277static struct snd_kcontrol_new volume_alsa_control_mute __initdata = {
Henrique de Moraes Holschuh0d204c32009-12-15 21:51:11 -02007278 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
7279 .name = "Console Playback Switch",
7280 .index = 0,
7281 .access = SNDRV_CTL_ELEM_ACCESS_READ,
7282 .info = volume_alsa_mute_info,
7283 .get = volume_alsa_mute_get,
7284};
7285
Rafael J. Wysockifd3c3a42012-06-27 23:18:44 +02007286static void volume_suspend(void)
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02007287{
7288 tpacpi_volume_checkpoint_nvram();
7289}
7290
Henrique de Moraes Holschuh0d204c32009-12-15 21:51:11 -02007291static void volume_resume(void)
7292{
Andy Lutomirski9a417ec2014-10-17 17:04:29 -07007293 if (software_mute_active) {
7294 if (volume_set_software_mute(false) < 0)
7295 pr_warn("Failed to restore software mute\n");
7296 } else {
7297 volume_alsa_notify_change();
7298 }
Henrique de Moraes Holschuh0d204c32009-12-15 21:51:11 -02007299}
7300
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02007301static void volume_shutdown(void)
7302{
7303 tpacpi_volume_checkpoint_nvram();
7304}
7305
7306static void volume_exit(void)
7307{
Henrique de Moraes Holschuh0d204c32009-12-15 21:51:11 -02007308 if (alsa_card) {
7309 snd_card_free(alsa_card);
7310 alsa_card = NULL;
7311 }
7312
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02007313 tpacpi_volume_checkpoint_nvram();
Andy Lutomirski9a417ec2014-10-17 17:04:29 -07007314
7315 if (software_mute_active)
7316 volume_exit_software_mute();
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02007317}
7318
Henrique de Moraes Holschuh0d204c32009-12-15 21:51:11 -02007319static int __init volume_create_alsa_mixer(void)
7320{
7321 struct snd_card *card;
7322 struct tpacpi_alsa_data *data;
7323 struct snd_kcontrol *ctl_vol;
7324 struct snd_kcontrol *ctl_mute;
7325 int rc;
7326
Takashi Iwai89235e52014-01-29 15:01:27 +01007327 rc = snd_card_new(&tpacpi_pdev->dev,
7328 alsa_index, alsa_id, THIS_MODULE,
7329 sizeof(struct tpacpi_alsa_data), &card);
Henrique de Moraes Holschuh74c75c12009-12-26 22:52:14 -02007330 if (rc < 0 || !card) {
Joe Perches0978e012011-04-04 10:06:25 -07007331 pr_err("Failed to create ALSA card structures: %d\n", rc);
Henrique de Moraes Holschuh74c75c12009-12-26 22:52:14 -02007332 return 1;
7333 }
Henrique de Moraes Holschuh0d204c32009-12-15 21:51:11 -02007334
7335 BUG_ON(!card->private_data);
7336 data = card->private_data;
7337 data->card = card;
7338
7339 strlcpy(card->driver, TPACPI_ALSA_DRVNAME,
7340 sizeof(card->driver));
7341 strlcpy(card->shortname, TPACPI_ALSA_SHRTNAME,
7342 sizeof(card->shortname));
7343 snprintf(card->mixername, sizeof(card->mixername), "ThinkPad EC %s",
7344 (thinkpad_id.ec_version_str) ?
7345 thinkpad_id.ec_version_str : "(unknown)");
7346 snprintf(card->longname, sizeof(card->longname),
7347 "%s at EC reg 0x%02x, fw %s", card->shortname, TP_EC_AUDIO,
7348 (thinkpad_id.ec_version_str) ?
7349 thinkpad_id.ec_version_str : "unknown");
7350
7351 if (volume_control_allowed) {
7352 volume_alsa_control_vol.put = volume_alsa_vol_put;
7353 volume_alsa_control_vol.access =
7354 SNDRV_CTL_ELEM_ACCESS_READWRITE;
7355
7356 volume_alsa_control_mute.put = volume_alsa_mute_put;
7357 volume_alsa_control_mute.access =
7358 SNDRV_CTL_ELEM_ACCESS_READWRITE;
7359 }
7360
7361 if (!tp_features.mixer_no_level_control) {
7362 ctl_vol = snd_ctl_new1(&volume_alsa_control_vol, NULL);
7363 rc = snd_ctl_add(card, ctl_vol);
7364 if (rc < 0) {
Joe Perches0978e012011-04-04 10:06:25 -07007365 pr_err("Failed to create ALSA volume control: %d\n",
7366 rc);
Henrique de Moraes Holschuh74c75c12009-12-26 22:52:14 -02007367 goto err_exit;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04007368 }
Henrique de Moraes Holschuh0d204c32009-12-15 21:51:11 -02007369 data->ctl_vol_id = &ctl_vol->id;
7370 }
Borislav Deianov78f81cc2005-08-17 00:00:00 -04007371
Henrique de Moraes Holschuh0d204c32009-12-15 21:51:11 -02007372 ctl_mute = snd_ctl_new1(&volume_alsa_control_mute, NULL);
7373 rc = snd_ctl_add(card, ctl_mute);
7374 if (rc < 0) {
Joe Perches0978e012011-04-04 10:06:25 -07007375 pr_err("Failed to create ALSA mute control: %d\n", rc);
Henrique de Moraes Holschuh74c75c12009-12-26 22:52:14 -02007376 goto err_exit;
Henrique de Moraes Holschuh0d204c32009-12-15 21:51:11 -02007377 }
7378 data->ctl_mute_id = &ctl_mute->id;
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02007379
Henrique de Moraes Holschuh0d204c32009-12-15 21:51:11 -02007380 rc = snd_card_register(card);
Henrique de Moraes Holschuh0d204c32009-12-15 21:51:11 -02007381 if (rc < 0) {
Joe Perches0978e012011-04-04 10:06:25 -07007382 pr_err("Failed to register ALSA card: %d\n", rc);
Henrique de Moraes Holschuh74c75c12009-12-26 22:52:14 -02007383 goto err_exit;
Henrique de Moraes Holschuh0d204c32009-12-15 21:51:11 -02007384 }
7385
7386 alsa_card = card;
Henrique de Moraes Holschuh74c75c12009-12-26 22:52:14 -02007387 return 0;
7388
7389err_exit:
7390 snd_card_free(card);
7391 return 1;
Henrique de Moraes Holschuh0d204c32009-12-15 21:51:11 -02007392}
7393
Henrique de Moraes Holschuha112cee2009-12-15 21:51:09 -02007394#define TPACPI_VOL_Q_MUTEONLY 0x0001 /* Mute-only control available */
7395#define TPACPI_VOL_Q_LEVEL 0x0002 /* Volume control available */
7396
7397static const struct tpacpi_quirk volume_quirk_table[] __initconst = {
7398 /* Whitelist volume level on all IBM by default */
7399 { .vendor = PCI_VENDOR_ID_IBM,
7400 .bios = TPACPI_MATCH_ANY,
7401 .ec = TPACPI_MATCH_ANY,
7402 .quirks = TPACPI_VOL_Q_LEVEL },
7403
7404 /* Lenovo models with volume control (needs confirmation) */
7405 TPACPI_QEC_LNV('7', 'C', TPACPI_VOL_Q_LEVEL), /* R60/i */
7406 TPACPI_QEC_LNV('7', 'E', TPACPI_VOL_Q_LEVEL), /* R60e/i */
7407 TPACPI_QEC_LNV('7', '9', TPACPI_VOL_Q_LEVEL), /* T60/p */
7408 TPACPI_QEC_LNV('7', 'B', TPACPI_VOL_Q_LEVEL), /* X60/s */
7409 TPACPI_QEC_LNV('7', 'J', TPACPI_VOL_Q_LEVEL), /* X60t */
7410 TPACPI_QEC_LNV('7', '7', TPACPI_VOL_Q_LEVEL), /* Z60 */
7411 TPACPI_QEC_LNV('7', 'F', TPACPI_VOL_Q_LEVEL), /* Z61 */
7412
7413 /* Whitelist mute-only on all Lenovo by default */
7414 { .vendor = PCI_VENDOR_ID_LENOVO,
7415 .bios = TPACPI_MATCH_ANY,
7416 .ec = TPACPI_MATCH_ANY,
7417 .quirks = TPACPI_VOL_Q_MUTEONLY }
7418};
7419
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02007420static int __init volume_init(struct ibm_init_struct *iibm)
7421{
Henrique de Moraes Holschuha112cee2009-12-15 21:51:09 -02007422 unsigned long quirks;
Henrique de Moraes Holschuh0d204c32009-12-15 21:51:11 -02007423 int rc;
Henrique de Moraes Holschuha112cee2009-12-15 21:51:09 -02007424
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02007425 vdbg_printk(TPACPI_DBG_INIT, "initializing volume subdriver\n");
7426
7427 mutex_init(&volume_mutex);
7428
7429 /*
7430 * Check for module parameter bogosity, note that we
7431 * init volume_mode to TPACPI_VOL_MODE_MAX in order to be
7432 * able to detect "unspecified"
7433 */
7434 if (volume_mode > TPACPI_VOL_MODE_MAX)
7435 return -EINVAL;
7436
7437 if (volume_mode == TPACPI_VOL_MODE_UCMS_STEP) {
Joe Perches0978e012011-04-04 10:06:25 -07007438 pr_err("UCMS step volume mode not implemented, "
7439 "please contact %s\n", TPACPI_MAIL);
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02007440 return 1;
7441 }
7442
Henrique de Moraes Holschuha112cee2009-12-15 21:51:09 -02007443 if (volume_capabilities >= TPACPI_VOL_CAP_MAX)
7444 return -EINVAL;
7445
Henrique de Moraes Holschuh0d204c32009-12-15 21:51:11 -02007446 /*
7447 * The ALSA mixer is our primary interface.
7448 * When disabled, don't install the subdriver at all
7449 */
7450 if (!alsa_enable) {
7451 vdbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_MIXER,
7452 "ALSA mixer disabled by parameter, "
7453 "not loading volume subdriver...\n");
7454 return 1;
7455 }
7456
Henrique de Moraes Holschuha112cee2009-12-15 21:51:09 -02007457 quirks = tpacpi_check_quirks(volume_quirk_table,
7458 ARRAY_SIZE(volume_quirk_table));
7459
7460 switch (volume_capabilities) {
7461 case TPACPI_VOL_CAP_AUTO:
7462 if (quirks & TPACPI_VOL_Q_MUTEONLY)
7463 tp_features.mixer_no_level_control = 1;
7464 else if (quirks & TPACPI_VOL_Q_LEVEL)
7465 tp_features.mixer_no_level_control = 0;
7466 else
7467 return 1; /* no mixer */
7468 break;
7469 case TPACPI_VOL_CAP_VOLMUTE:
7470 tp_features.mixer_no_level_control = 0;
7471 break;
7472 case TPACPI_VOL_CAP_MUTEONLY:
7473 tp_features.mixer_no_level_control = 1;
7474 break;
7475 default:
7476 return 1;
7477 }
7478
7479 if (volume_capabilities != TPACPI_VOL_CAP_AUTO)
7480 dbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_MIXER,
7481 "using user-supplied volume_capabilities=%d\n",
7482 volume_capabilities);
7483
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02007484 if (volume_mode == TPACPI_VOL_MODE_AUTO ||
7485 volume_mode == TPACPI_VOL_MODE_MAX) {
7486 volume_mode = TPACPI_VOL_MODE_ECNVRAM;
7487
7488 dbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_MIXER,
7489 "driver auto-selected volume_mode=%d\n",
7490 volume_mode);
7491 } else {
7492 dbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_MIXER,
7493 "using user-supplied volume_mode=%d\n",
7494 volume_mode);
7495 }
7496
7497 vdbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_MIXER,
Henrique de Moraes Holschuha112cee2009-12-15 21:51:09 -02007498 "mute is supported, volume control is %s\n",
7499 str_supported(!tp_features.mixer_no_level_control));
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02007500
Andy Lutomirski9a417ec2014-10-17 17:04:29 -07007501 if (software_mute_requested && volume_set_software_mute(true) == 0) {
7502 software_mute_active = true;
7503 } else {
7504 rc = volume_create_alsa_mixer();
7505 if (rc) {
7506 pr_err("Could not create the ALSA mixer interface\n");
7507 return rc;
7508 }
Henrique de Moraes Holschuh0d204c32009-12-15 21:51:11 -02007509
Andy Lutomirski9a417ec2014-10-17 17:04:29 -07007510 pr_info("Console audio control enabled, mode: %s\n",
7511 (volume_control_allowed) ?
7512 "override (read/write)" :
7513 "monitor (read only)");
7514 }
Henrique de Moraes Holschuhc7ac6292009-12-15 21:51:10 -02007515
Henrique de Moraes Holschuh0d204c32009-12-15 21:51:11 -02007516 vdbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_MIXER,
7517 "registering volume hotkeys as change notification\n");
7518 tpacpi_hotkey_driver_mask_set(hotkey_driver_mask
7519 | TP_ACPI_HKEY_VOLUP_MASK
7520 | TP_ACPI_HKEY_VOLDWN_MASK
7521 | TP_ACPI_HKEY_MUTE_MASK);
7522
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02007523 return 0;
7524}
Borislav Deianov78f81cc2005-08-17 00:00:00 -04007525
Alexey Dobriyan887965e2009-12-15 21:51:12 -02007526static int volume_read(struct seq_file *m)
Borislav Deianov78f81cc2005-08-17 00:00:00 -04007527{
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02007528 u8 status;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04007529
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02007530 if (volume_get_status(&status) < 0) {
Alexey Dobriyan887965e2009-12-15 21:51:12 -02007531 seq_printf(m, "level:\t\tunreadable\n");
Borislav Deianov78f81cc2005-08-17 00:00:00 -04007532 } else {
Henrique de Moraes Holschuha112cee2009-12-15 21:51:09 -02007533 if (tp_features.mixer_no_level_control)
Alexey Dobriyan887965e2009-12-15 21:51:12 -02007534 seq_printf(m, "level:\t\tunsupported\n");
Henrique de Moraes Holschuha112cee2009-12-15 21:51:09 -02007535 else
Alexey Dobriyan887965e2009-12-15 21:51:12 -02007536 seq_printf(m, "level:\t\t%d\n",
Henrique de Moraes Holschuha112cee2009-12-15 21:51:09 -02007537 status & TP_EC_AUDIO_LVL_MSK);
7538
Alexey Dobriyan887965e2009-12-15 21:51:12 -02007539 seq_printf(m, "mute:\t\t%s\n",
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02007540 onoff(status, TP_EC_AUDIO_MUTESW));
Henrique de Moraes Holschuha112cee2009-12-15 21:51:09 -02007541
Henrique de Moraes Holschuhc7ac6292009-12-15 21:51:10 -02007542 if (volume_control_allowed) {
Alexey Dobriyan887965e2009-12-15 21:51:12 -02007543 seq_printf(m, "commands:\tunmute, mute\n");
Henrique de Moraes Holschuhc7ac6292009-12-15 21:51:10 -02007544 if (!tp_features.mixer_no_level_control) {
Alexey Dobriyan887965e2009-12-15 21:51:12 -02007545 seq_printf(m,
Henrique de Moraes Holschuhc7ac6292009-12-15 21:51:10 -02007546 "commands:\tup, down\n");
Alexey Dobriyan887965e2009-12-15 21:51:12 -02007547 seq_printf(m,
Henrique de Moraes Holschuhc7ac6292009-12-15 21:51:10 -02007548 "commands:\tlevel <level>"
7549 " (<level> is 0-%d)\n",
7550 TP_EC_VOLUME_MAX);
7551 }
Borislav Deianov78f81cc2005-08-17 00:00:00 -04007552 }
7553 }
7554
7555 return 0;
7556}
7557
Borislav Deianov78f81cc2005-08-17 00:00:00 -04007558static int volume_write(char *buf)
7559{
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02007560 u8 s;
7561 u8 new_level, new_mute;
7562 int l;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04007563 char *cmd;
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02007564 int rc;
7565
Henrique de Moraes Holschuhc7ac6292009-12-15 21:51:10 -02007566 /*
7567 * We do allow volume control at driver startup, so that the
7568 * user can set initial state through the volume=... parameter hack.
7569 */
7570 if (!volume_control_allowed && tpacpi_lifecycle != TPACPI_LIFE_INIT) {
7571 if (unlikely(!tp_warned.volume_ctrl_forbidden)) {
7572 tp_warned.volume_ctrl_forbidden = 1;
Joe Perches0978e012011-04-04 10:06:25 -07007573 pr_notice("Console audio control in monitor mode, "
7574 "changes are not allowed\n");
7575 pr_notice("Use the volume_control=1 module parameter "
7576 "to enable volume control\n");
Henrique de Moraes Holschuhc7ac6292009-12-15 21:51:10 -02007577 }
7578 return -EPERM;
7579 }
7580
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02007581 rc = volume_get_status(&s);
7582 if (rc < 0)
7583 return rc;
7584
7585 new_level = s & TP_EC_AUDIO_LVL_MSK;
7586 new_mute = s & TP_EC_AUDIO_MUTESW_MSK;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04007587
7588 while ((cmd = next_cmd(&buf))) {
Henrique de Moraes Holschuha112cee2009-12-15 21:51:09 -02007589 if (!tp_features.mixer_no_level_control) {
7590 if (strlencmp(cmd, "up") == 0) {
7591 if (new_mute)
7592 new_mute = 0;
7593 else if (new_level < TP_EC_VOLUME_MAX)
7594 new_level++;
7595 continue;
7596 } else if (strlencmp(cmd, "down") == 0) {
7597 if (new_mute)
7598 new_mute = 0;
7599 else if (new_level > 0)
7600 new_level--;
7601 continue;
7602 } else if (sscanf(cmd, "level %u", &l) == 1 &&
7603 l >= 0 && l <= TP_EC_VOLUME_MAX) {
7604 new_level = l;
7605 continue;
7606 }
7607 }
7608 if (strlencmp(cmd, "mute") == 0)
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02007609 new_mute = TP_EC_AUDIO_MUTESW_MSK;
Henrique de Moraes Holschuha112cee2009-12-15 21:51:09 -02007610 else if (strlencmp(cmd, "unmute") == 0)
7611 new_mute = 0;
7612 else
Borislav Deianov78f81cc2005-08-17 00:00:00 -04007613 return -EINVAL;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04007614 }
7615
Henrique de Moraes Holschuha112cee2009-12-15 21:51:09 -02007616 if (tp_features.mixer_no_level_control) {
7617 tpacpi_disclose_usertask("procfs volume", "%smute\n",
7618 new_mute ? "" : "un");
7619 rc = volume_set_mute(!!new_mute);
7620 } else {
7621 tpacpi_disclose_usertask("procfs volume",
7622 "%smute and set level to %d\n",
7623 new_mute ? "" : "un", new_level);
7624 rc = volume_set_status(new_mute | new_level);
7625 }
Henrique de Moraes Holschuh0d204c32009-12-15 21:51:11 -02007626 volume_alsa_notify_change();
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02007627
7628 return (rc == -EINTR) ? -ERESTARTSYS : rc;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04007629}
7630
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03007631static struct ibm_struct volume_driver_data = {
7632 .name = "volume",
7633 .read = volume_read,
7634 .write = volume_write,
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02007635 .exit = volume_exit,
7636 .suspend = volume_suspend,
Henrique de Moraes Holschuh0d204c32009-12-15 21:51:11 -02007637 .resume = volume_resume,
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02007638 .shutdown = volume_shutdown,
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03007639};
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03007640
Henrique de Moraes Holschuhff850c32009-12-26 22:52:15 -02007641#else /* !CONFIG_THINKPAD_ACPI_ALSA_SUPPORT */
7642
7643#define alsa_card NULL
7644
7645static void inline volume_alsa_notify_change(void)
7646{
7647}
7648
7649static int __init volume_init(struct ibm_init_struct *iibm)
7650{
Joe Perches0978e012011-04-04 10:06:25 -07007651 pr_info("volume: disabled as there is no ALSA support in this kernel\n");
Henrique de Moraes Holschuhff850c32009-12-26 22:52:15 -02007652
7653 return 1;
7654}
7655
7656static struct ibm_struct volume_driver_data = {
7657 .name = "volume",
7658};
7659
7660#endif /* CONFIG_THINKPAD_ACPI_ALSA_SUPPORT */
7661
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03007662/*************************************************************************
7663 * Fan subdriver
7664 */
7665
7666/*
7667 * FAN ACCESS MODES
7668 *
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03007669 * TPACPI_FAN_RD_ACPI_GFAN:
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03007670 * ACPI GFAN method: returns fan level
7671 *
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03007672 * see TPACPI_FAN_WR_ACPI_SFAN
Henrique de Moraes Holschuhf51d1a32007-04-21 11:08:29 -03007673 * EC 0x2f (HFSP) not available if GFAN exists
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03007674 *
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03007675 * TPACPI_FAN_WR_ACPI_SFAN:
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03007676 * ACPI SFAN method: sets fan level, 0 (stop) to 7 (max)
7677 *
Henrique de Moraes Holschuhf51d1a32007-04-21 11:08:29 -03007678 * EC 0x2f (HFSP) might be available *for reading*, but do not use
7679 * it for writing.
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03007680 *
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03007681 * TPACPI_FAN_WR_TPEC:
Henrique de Moraes Holschuhf51d1a32007-04-21 11:08:29 -03007682 * ThinkPad EC register 0x2f (HFSP): fan control loop mode
7683 * Supported on almost all ThinkPads
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03007684 *
7685 * Fan speed changes of any sort (including those caused by the
7686 * disengaged mode) are usually done slowly by the firmware as the
Uwe Kleine-König9ddc5b62010-01-20 17:02:24 +01007687 * maximum amount of fan duty cycle change per second seems to be
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03007688 * limited.
7689 *
7690 * Reading is not available if GFAN exists.
7691 * Writing is not available if SFAN exists.
7692 *
7693 * Bits
7694 * 7 automatic mode engaged;
7695 * (default operation mode of the ThinkPad)
7696 * fan level is ignored in this mode.
Henrique de Moraes Holschuhf51d1a32007-04-21 11:08:29 -03007697 * 6 full speed mode (takes precedence over bit 7);
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03007698 * not available on all thinkpads. May disable
Henrique de Moraes Holschuhf51d1a32007-04-21 11:08:29 -03007699 * the tachometer while the fan controller ramps up
7700 * the speed (which can take up to a few *minutes*).
7701 * Speeds up fan to 100% duty-cycle, which is far above
7702 * the standard RPM levels. It is not impossible that
7703 * it could cause hardware damage.
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03007704 * 5-3 unused in some models. Extra bits for fan level
7705 * in others, but still useless as all values above
7706 * 7 map to the same speed as level 7 in these models.
7707 * 2-0 fan level (0..7 usually)
7708 * 0x00 = stop
7709 * 0x07 = max (set when temperatures critical)
7710 * Some ThinkPads may have other levels, see
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03007711 * TPACPI_FAN_WR_ACPI_FANS (X31/X40/X41)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03007712 *
7713 * FIRMWARE BUG: on some models, EC 0x2f might not be initialized at
Uwe Kleine-Königb5950762010-11-01 15:38:34 -04007714 * boot. Apparently the EC does not initialize it, so unless ACPI DSDT
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03007715 * does so, its initial value is meaningless (0x07).
7716 *
7717 * For firmware bugs, refer to:
7718 * http://thinkwiki.org/wiki/Embedded_Controller_Firmware#Firmware_Issues
7719 *
7720 * ----
7721 *
7722 * ThinkPad EC register 0x84 (LSB), 0x85 (MSB):
7723 * Main fan tachometer reading (in RPM)
7724 *
7725 * This register is present on all ThinkPads with a new-style EC, and
7726 * it is known not to be present on the A21m/e, and T22, as there is
7727 * something else in offset 0x84 according to the ACPI DSDT. Other
7728 * ThinkPads from this same time period (and earlier) probably lack the
7729 * tachometer as well.
7730 *
Nick Andrew877d0312009-01-26 11:06:57 +01007731 * Unfortunately a lot of ThinkPads with new-style ECs but whose firmware
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03007732 * was never fixed by IBM to report the EC firmware version string
7733 * probably support the tachometer (like the early X models), so
7734 * detecting it is quite hard. We need more data to know for sure.
7735 *
7736 * FIRMWARE BUG: always read 0x84 first, otherwise incorrect readings
7737 * might result.
7738 *
Henrique de Moraes Holschuhf51d1a32007-04-21 11:08:29 -03007739 * FIRMWARE BUG: may go stale while the EC is switching to full speed
7740 * mode.
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03007741 *
7742 * For firmware bugs, refer to:
7743 * http://thinkwiki.org/wiki/Embedded_Controller_Firmware#Firmware_Issues
7744 *
Henrique de Moraes Holschuhd7377242009-06-18 00:40:17 -03007745 * ----
7746 *
7747 * ThinkPad EC register 0x31 bit 0 (only on select models)
7748 *
7749 * When bit 0 of EC register 0x31 is zero, the tachometer registers
7750 * show the speed of the main fan. When bit 0 of EC register 0x31
7751 * is one, the tachometer registers show the speed of the auxiliary
7752 * fan.
7753 *
7754 * Fan control seems to affect both fans, regardless of the state
7755 * of this bit.
7756 *
7757 * So far, only the firmware for the X60/X61 non-tablet versions
7758 * seem to support this (firmware TP-7M).
7759 *
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03007760 * TPACPI_FAN_WR_ACPI_FANS:
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03007761 * ThinkPad X31, X40, X41. Not available in the X60.
7762 *
7763 * FANS ACPI handle: takes three arguments: low speed, medium speed,
7764 * high speed. ACPI DSDT seems to map these three speeds to levels
7765 * as follows: STOP LOW LOW MED MED HIGH HIGH HIGH HIGH
7766 * (this map is stored on FAN0..FAN8 as "0,1,1,2,2,3,3,3,3")
7767 *
7768 * The speeds are stored on handles
7769 * (FANA:FAN9), (FANC:FANB), (FANE:FAND).
7770 *
André Goddard Rosaaf901ca2009-11-14 13:09:05 -02007771 * There are three default speed sets, accessible as handles:
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03007772 * FS1L,FS1M,FS1H; FS2L,FS2M,FS2H; FS3L,FS3M,FS3H
7773 *
7774 * ACPI DSDT switches which set is in use depending on various
7775 * factors.
7776 *
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03007777 * TPACPI_FAN_WR_TPEC is also available and should be used to
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03007778 * command the fan. The X31/X40/X41 seems to have 8 fan levels,
7779 * but the ACPI tables just mention level 7.
7780 */
7781
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02007782enum { /* Fan control constants */
7783 fan_status_offset = 0x2f, /* EC register 0x2f */
7784 fan_rpm_offset = 0x84, /* EC register 0x84: LSB, 0x85 MSB (RPM)
7785 * 0x84 must be read before 0x85 */
Henrique de Moraes Holschuhd7377242009-06-18 00:40:17 -03007786 fan_select_offset = 0x31, /* EC register 0x31 (Firmware 7M)
7787 bit 0 selects which fan is active */
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02007788
7789 TP_EC_FAN_FULLSPEED = 0x40, /* EC fan mode: full speed */
7790 TP_EC_FAN_AUTO = 0x80, /* EC fan mode: auto fan control */
7791
7792 TPACPI_FAN_LAST_LEVEL = 0x100, /* Use cached last-seen fan level */
7793};
7794
7795enum fan_status_access_mode {
7796 TPACPI_FAN_NONE = 0, /* No fan status or control */
7797 TPACPI_FAN_RD_ACPI_GFAN, /* Use ACPI GFAN */
7798 TPACPI_FAN_RD_TPEC, /* Use ACPI EC regs 0x2f, 0x84-0x85 */
7799};
7800
7801enum fan_control_access_mode {
7802 TPACPI_FAN_WR_NONE = 0, /* No fan control */
7803 TPACPI_FAN_WR_ACPI_SFAN, /* Use ACPI SFAN */
7804 TPACPI_FAN_WR_TPEC, /* Use ACPI EC reg 0x2f */
7805 TPACPI_FAN_WR_ACPI_FANS, /* Use ACPI FANS and EC reg 0x2f */
7806};
7807
7808enum fan_control_commands {
7809 TPACPI_FAN_CMD_SPEED = 0x0001, /* speed command */
7810 TPACPI_FAN_CMD_LEVEL = 0x0002, /* level command */
7811 TPACPI_FAN_CMD_ENABLE = 0x0004, /* enable/disable cmd,
7812 * and also watchdog cmd */
7813};
7814
Rusty Russell90ab5ee2012-01-13 09:32:20 +10307815static bool fan_control_allowed;
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02007816
Henrique de Moraes Holschuh69ba91c2006-11-24 11:47:09 -02007817static enum fan_status_access_mode fan_status_access_mode;
7818static enum fan_control_access_mode fan_control_access_mode;
7819static enum fan_control_commands fan_control_commands;
7820
Henrique de Moraes Holschuh778b4d72006-11-24 11:47:14 -02007821static u8 fan_control_initial_status;
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03007822static u8 fan_control_desired_level;
Henrique de Moraes Holschuh0081b162008-11-09 10:54:02 -02007823static u8 fan_control_resume_level;
Henrique de Moraes Holschuh16663a82006-11-24 11:47:14 -02007824static int fan_watchdog_maxinterval;
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02007825
7826static struct mutex fan_mutex;
7827
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02007828static void fan_watchdog_fire(struct work_struct *ignored);
Len Brown25c68a32006-12-08 04:43:41 -05007829static DECLARE_DELAYED_WORK(fan_watchdog_task, fan_watchdog_fire);
Henrique de Moraes Holschuh16663a82006-11-24 11:47:14 -02007830
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02007831TPACPI_HANDLE(fans, ec, "FANS"); /* X31, X40, X41 */
7832TPACPI_HANDLE(gfan, ec, "GFAN", /* 570 */
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03007833 "\\FSPD", /* 600e/x, 770e, 770x */
7834 ); /* all others */
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02007835TPACPI_HANDLE(sfan, ec, "SFAN", /* 570 */
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03007836 "JFNS", /* 770x-JL */
7837 ); /* all others */
7838
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03007839/*
Henrique de Moraes Holschuh1c2ece72009-01-11 03:01:08 -02007840 * Unitialized HFSP quirk: ACPI DSDT and EC fail to initialize the
7841 * HFSP register at boot, so it contains 0x07 but the Thinkpad could
7842 * be in auto mode (0x80).
7843 *
7844 * This is corrected by any write to HFSP either by the driver, or
7845 * by the firmware.
7846 *
7847 * We assume 0x07 really means auto mode while this quirk is active,
7848 * as this is far more likely than the ThinkPad being in level 7,
7849 * which is only used by the firmware during thermal emergencies.
Henrique de Moraes Holschuh7d95a3d2009-05-30 13:25:06 -03007850 *
7851 * Enable for TP-1Y (T43), TP-78 (R51e), TP-76 (R52),
7852 * TP-70 (T43, R52), which are known to be buggy.
Henrique de Moraes Holschuh1c2ece72009-01-11 03:01:08 -02007853 */
7854
Henrique de Moraes Holschuh7d95a3d2009-05-30 13:25:06 -03007855static void fan_quirk1_setup(void)
Henrique de Moraes Holschuh1c2ece72009-01-11 03:01:08 -02007856{
Henrique de Moraes Holschuh1c2ece72009-01-11 03:01:08 -02007857 if (fan_control_initial_status == 0x07) {
Joe Perches0978e012011-04-04 10:06:25 -07007858 pr_notice("fan_init: initial fan status is unknown, "
7859 "assuming it is in auto mode\n");
Henrique de Moraes Holschuh7d95a3d2009-05-30 13:25:06 -03007860 tp_features.fan_ctrl_status_undef = 1;
Henrique de Moraes Holschuh1c2ece72009-01-11 03:01:08 -02007861 }
7862}
7863
7864static void fan_quirk1_handle(u8 *fan_status)
7865{
7866 if (unlikely(tp_features.fan_ctrl_status_undef)) {
7867 if (*fan_status != fan_control_initial_status) {
7868 /* something changed the HFSP regisnter since
7869 * driver init time, so it is not undefined
7870 * anymore */
7871 tp_features.fan_ctrl_status_undef = 0;
7872 } else {
7873 /* Return most likely status. In fact, it
7874 * might be the only possible status */
7875 *fan_status = TP_EC_FAN_AUTO;
7876 }
7877 }
7878}
7879
Henrique de Moraes Holschuhd7377242009-06-18 00:40:17 -03007880/* Select main fan on X60/X61, NOOP on others */
7881static bool fan_select_fan1(void)
7882{
7883 if (tp_features.second_fan) {
7884 u8 val;
7885
7886 if (ec_read(fan_select_offset, &val) < 0)
7887 return false;
7888 val &= 0xFEU;
7889 if (ec_write(fan_select_offset, val) < 0)
7890 return false;
7891 }
7892 return true;
7893}
7894
7895/* Select secondary fan on X60/X61 */
7896static bool fan_select_fan2(void)
7897{
7898 u8 val;
7899
7900 if (!tp_features.second_fan)
7901 return false;
7902
7903 if (ec_read(fan_select_offset, &val) < 0)
7904 return false;
7905 val |= 0x01U;
7906 if (ec_write(fan_select_offset, val) < 0)
7907 return false;
7908
7909 return true;
7910}
7911
Henrique de Moraes Holschuh1c2ece72009-01-11 03:01:08 -02007912/*
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02007913 * Call with fan_mutex held
7914 */
7915static void fan_update_desired_level(u8 status)
7916{
7917 if ((status &
7918 (TP_EC_FAN_AUTO | TP_EC_FAN_FULLSPEED)) == 0) {
7919 if (status > 7)
7920 fan_control_desired_level = 7;
7921 else
7922 fan_control_desired_level = status;
7923 }
7924}
7925
7926static int fan_get_status(u8 *status)
7927{
7928 u8 s;
7929
7930 /* TODO:
7931 * Add TPACPI_FAN_RD_ACPI_FANS ? */
7932
7933 switch (fan_status_access_mode) {
Dan Carpentereceeb432012-09-01 12:54:07 -07007934 case TPACPI_FAN_RD_ACPI_GFAN: {
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02007935 /* 570, 600e/x, 770e, 770x */
Dan Carpentereceeb432012-09-01 12:54:07 -07007936 int res;
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02007937
Dan Carpentereceeb432012-09-01 12:54:07 -07007938 if (unlikely(!acpi_evalf(gfan_handle, &res, NULL, "d")))
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02007939 return -EIO;
7940
7941 if (likely(status))
Dan Carpentereceeb432012-09-01 12:54:07 -07007942 *status = res & 0x07;
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02007943
7944 break;
Dan Carpentereceeb432012-09-01 12:54:07 -07007945 }
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02007946 case TPACPI_FAN_RD_TPEC:
7947 /* all except 570, 600e/x, 770e, 770x */
7948 if (unlikely(!acpi_ec_read(fan_status_offset, &s)))
7949 return -EIO;
7950
Henrique de Moraes Holschuh1c2ece72009-01-11 03:01:08 -02007951 if (likely(status)) {
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02007952 *status = s;
Henrique de Moraes Holschuh1c2ece72009-01-11 03:01:08 -02007953 fan_quirk1_handle(status);
7954 }
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02007955
7956 break;
7957
7958 default:
7959 return -ENXIO;
7960 }
7961
7962 return 0;
7963}
7964
7965static int fan_get_status_safe(u8 *status)
7966{
7967 int rc;
7968 u8 s;
7969
Henrique de Moraes Holschuh7646ea82009-01-11 03:01:04 -02007970 if (mutex_lock_killable(&fan_mutex))
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02007971 return -ERESTARTSYS;
7972 rc = fan_get_status(&s);
7973 if (!rc)
7974 fan_update_desired_level(s);
7975 mutex_unlock(&fan_mutex);
7976
7977 if (status)
7978 *status = s;
7979
7980 return rc;
7981}
7982
7983static int fan_get_speed(unsigned int *speed)
7984{
7985 u8 hi, lo;
7986
7987 switch (fan_status_access_mode) {
7988 case TPACPI_FAN_RD_TPEC:
7989 /* all except 570, 600e/x, 770e, 770x */
Henrique de Moraes Holschuhd7377242009-06-18 00:40:17 -03007990 if (unlikely(!fan_select_fan1()))
7991 return -EIO;
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02007992 if (unlikely(!acpi_ec_read(fan_rpm_offset, &lo) ||
7993 !acpi_ec_read(fan_rpm_offset + 1, &hi)))
7994 return -EIO;
7995
7996 if (likely(speed))
7997 *speed = (hi << 8) | lo;
7998
7999 break;
8000
8001 default:
8002 return -ENXIO;
8003 }
8004
8005 return 0;
8006}
8007
Henrique de Moraes Holschuhd7377242009-06-18 00:40:17 -03008008static int fan2_get_speed(unsigned int *speed)
8009{
8010 u8 hi, lo;
8011 bool rc;
8012
8013 switch (fan_status_access_mode) {
8014 case TPACPI_FAN_RD_TPEC:
8015 /* all except 570, 600e/x, 770e, 770x */
8016 if (unlikely(!fan_select_fan2()))
8017 return -EIO;
8018 rc = !acpi_ec_read(fan_rpm_offset, &lo) ||
8019 !acpi_ec_read(fan_rpm_offset + 1, &hi);
8020 fan_select_fan1(); /* play it safe */
8021 if (rc)
8022 return -EIO;
8023
8024 if (likely(speed))
8025 *speed = (hi << 8) | lo;
8026
8027 break;
8028
8029 default:
8030 return -ENXIO;
8031 }
8032
8033 return 0;
8034}
8035
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02008036static int fan_set_level(int level)
8037{
8038 if (!fan_control_allowed)
8039 return -EPERM;
8040
8041 switch (fan_control_access_mode) {
8042 case TPACPI_FAN_WR_ACPI_SFAN:
8043 if (level >= 0 && level <= 7) {
8044 if (!acpi_evalf(sfan_handle, NULL, NULL, "vd", level))
8045 return -EIO;
8046 } else
8047 return -EINVAL;
8048 break;
8049
8050 case TPACPI_FAN_WR_ACPI_FANS:
8051 case TPACPI_FAN_WR_TPEC:
Henrique de Moraes Holschuh0081b162008-11-09 10:54:02 -02008052 if (!(level & TP_EC_FAN_AUTO) &&
8053 !(level & TP_EC_FAN_FULLSPEED) &&
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02008054 ((level < 0) || (level > 7)))
8055 return -EINVAL;
8056
8057 /* safety net should the EC not support AUTO
8058 * or FULLSPEED mode bits and just ignore them */
8059 if (level & TP_EC_FAN_FULLSPEED)
8060 level |= 7; /* safety min speed 7 */
Roel Kluin547266e2008-02-05 00:24:56 +01008061 else if (level & TP_EC_FAN_AUTO)
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02008062 level |= 4; /* safety min speed 4 */
8063
8064 if (!acpi_ec_write(fan_status_offset, level))
8065 return -EIO;
8066 else
8067 tp_features.fan_ctrl_status_undef = 0;
8068 break;
8069
8070 default:
8071 return -ENXIO;
8072 }
Henrique de Moraes Holschuh74a60c02009-04-04 04:25:52 +00008073
8074 vdbg_printk(TPACPI_DBG_FAN,
8075 "fan control: set fan control register to 0x%02x\n", level);
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02008076 return 0;
8077}
8078
8079static int fan_set_level_safe(int level)
8080{
8081 int rc;
8082
8083 if (!fan_control_allowed)
8084 return -EPERM;
8085
Henrique de Moraes Holschuh7646ea82009-01-11 03:01:04 -02008086 if (mutex_lock_killable(&fan_mutex))
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02008087 return -ERESTARTSYS;
8088
8089 if (level == TPACPI_FAN_LAST_LEVEL)
8090 level = fan_control_desired_level;
8091
8092 rc = fan_set_level(level);
8093 if (!rc)
8094 fan_update_desired_level(level);
8095
8096 mutex_unlock(&fan_mutex);
8097 return rc;
8098}
8099
8100static int fan_set_enable(void)
8101{
8102 u8 s;
8103 int rc;
8104
8105 if (!fan_control_allowed)
8106 return -EPERM;
8107
Henrique de Moraes Holschuh7646ea82009-01-11 03:01:04 -02008108 if (mutex_lock_killable(&fan_mutex))
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02008109 return -ERESTARTSYS;
8110
8111 switch (fan_control_access_mode) {
8112 case TPACPI_FAN_WR_ACPI_FANS:
8113 case TPACPI_FAN_WR_TPEC:
8114 rc = fan_get_status(&s);
8115 if (rc < 0)
8116 break;
8117
8118 /* Don't go out of emergency fan mode */
8119 if (s != 7) {
8120 s &= 0x07;
8121 s |= TP_EC_FAN_AUTO | 4; /* min fan speed 4 */
8122 }
8123
8124 if (!acpi_ec_write(fan_status_offset, s))
8125 rc = -EIO;
8126 else {
8127 tp_features.fan_ctrl_status_undef = 0;
8128 rc = 0;
8129 }
8130 break;
8131
8132 case TPACPI_FAN_WR_ACPI_SFAN:
8133 rc = fan_get_status(&s);
8134 if (rc < 0)
8135 break;
8136
8137 s &= 0x07;
8138
8139 /* Set fan to at least level 4 */
8140 s |= 4;
8141
8142 if (!acpi_evalf(sfan_handle, NULL, NULL, "vd", s))
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02008143 rc = -EIO;
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02008144 else
8145 rc = 0;
8146 break;
8147
8148 default:
8149 rc = -ENXIO;
8150 }
8151
8152 mutex_unlock(&fan_mutex);
Henrique de Moraes Holschuh74a60c02009-04-04 04:25:52 +00008153
8154 if (!rc)
8155 vdbg_printk(TPACPI_DBG_FAN,
8156 "fan control: set fan control register to 0x%02x\n",
8157 s);
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02008158 return rc;
8159}
8160
8161static int fan_set_disable(void)
8162{
8163 int rc;
8164
8165 if (!fan_control_allowed)
8166 return -EPERM;
8167
Henrique de Moraes Holschuh7646ea82009-01-11 03:01:04 -02008168 if (mutex_lock_killable(&fan_mutex))
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02008169 return -ERESTARTSYS;
8170
8171 rc = 0;
8172 switch (fan_control_access_mode) {
8173 case TPACPI_FAN_WR_ACPI_FANS:
8174 case TPACPI_FAN_WR_TPEC:
8175 if (!acpi_ec_write(fan_status_offset, 0x00))
8176 rc = -EIO;
8177 else {
8178 fan_control_desired_level = 0;
8179 tp_features.fan_ctrl_status_undef = 0;
8180 }
8181 break;
8182
8183 case TPACPI_FAN_WR_ACPI_SFAN:
8184 if (!acpi_evalf(sfan_handle, NULL, NULL, "vd", 0x00))
8185 rc = -EIO;
8186 else
8187 fan_control_desired_level = 0;
8188 break;
8189
8190 default:
8191 rc = -ENXIO;
8192 }
8193
Henrique de Moraes Holschuh74a60c02009-04-04 04:25:52 +00008194 if (!rc)
8195 vdbg_printk(TPACPI_DBG_FAN,
8196 "fan control: set fan control register to 0\n");
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02008197
8198 mutex_unlock(&fan_mutex);
8199 return rc;
8200}
8201
8202static int fan_set_speed(int speed)
8203{
8204 int rc;
8205
8206 if (!fan_control_allowed)
8207 return -EPERM;
8208
Henrique de Moraes Holschuh7646ea82009-01-11 03:01:04 -02008209 if (mutex_lock_killable(&fan_mutex))
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02008210 return -ERESTARTSYS;
8211
8212 rc = 0;
8213 switch (fan_control_access_mode) {
8214 case TPACPI_FAN_WR_ACPI_FANS:
8215 if (speed >= 0 && speed <= 65535) {
8216 if (!acpi_evalf(fans_handle, NULL, NULL, "vddd",
8217 speed, speed, speed))
8218 rc = -EIO;
8219 } else
8220 rc = -EINVAL;
8221 break;
8222
8223 default:
8224 rc = -ENXIO;
8225 }
8226
8227 mutex_unlock(&fan_mutex);
8228 return rc;
8229}
8230
8231static void fan_watchdog_reset(void)
8232{
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02008233 if (fan_control_access_mode == TPACPI_FAN_WR_NONE)
8234 return;
8235
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02008236 if (fan_watchdog_maxinterval > 0 &&
Tejun Heo41f63c52012-08-03 10:30:47 -07008237 tpacpi_lifecycle != TPACPI_LIFE_EXITING)
8238 mod_delayed_work(tpacpi_wq, &fan_watchdog_task,
8239 msecs_to_jiffies(fan_watchdog_maxinterval * 1000));
8240 else
8241 cancel_delayed_work(&fan_watchdog_task);
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02008242}
8243
8244static void fan_watchdog_fire(struct work_struct *ignored)
8245{
8246 int rc;
8247
8248 if (tpacpi_lifecycle != TPACPI_LIFE_RUNNING)
8249 return;
8250
Joe Perches0978e012011-04-04 10:06:25 -07008251 pr_notice("fan watchdog: enabling fan\n");
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02008252 rc = fan_set_enable();
8253 if (rc < 0) {
Joe Perches0978e012011-04-04 10:06:25 -07008254 pr_err("fan watchdog: error %d while enabling fan, "
8255 "will try again later...\n", -rc);
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02008256 /* reschedule for later */
8257 fan_watchdog_reset();
8258 }
8259}
8260
8261/*
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03008262 * SYSFS fan layout: hwmon compatible (device)
8263 *
8264 * pwm*_enable:
8265 * 0: "disengaged" mode
8266 * 1: manual mode
8267 * 2: native EC "auto" mode (recommended, hardware default)
8268 *
8269 * pwm*: set speed in manual mode, ignored otherwise.
8270 * 0 is level 0; 255 is level 7. Intermediate points done with linear
8271 * interpolation.
8272 *
8273 * fan*_input: tachometer reading, RPM
8274 *
8275 *
8276 * SYSFS fan layout: extensions
8277 *
8278 * fan_watchdog (driver):
8279 * fan watchdog interval in seconds, 0 disables (default), max 120
8280 */
8281
8282/* sysfs fan pwm1_enable ----------------------------------------------- */
8283static ssize_t fan_pwm1_enable_show(struct device *dev,
8284 struct device_attribute *attr,
8285 char *buf)
8286{
8287 int res, mode;
8288 u8 status;
8289
8290 res = fan_get_status_safe(&status);
8291 if (res)
8292 return res;
8293
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03008294 if (status & TP_EC_FAN_FULLSPEED) {
8295 mode = 0;
8296 } else if (status & TP_EC_FAN_AUTO) {
8297 mode = 2;
8298 } else
8299 mode = 1;
8300
8301 return snprintf(buf, PAGE_SIZE, "%d\n", mode);
8302}
8303
8304static ssize_t fan_pwm1_enable_store(struct device *dev,
8305 struct device_attribute *attr,
8306 const char *buf, size_t count)
8307{
8308 unsigned long t;
8309 int res, level;
8310
8311 if (parse_strtoul(buf, 2, &t))
8312 return -EINVAL;
8313
Henrique de Moraes Holschuh74a60c02009-04-04 04:25:52 +00008314 tpacpi_disclose_usertask("hwmon pwm1_enable",
8315 "set fan mode to %lu\n", t);
8316
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03008317 switch (t) {
8318 case 0:
8319 level = TP_EC_FAN_FULLSPEED;
8320 break;
8321 case 1:
8322 level = TPACPI_FAN_LAST_LEVEL;
8323 break;
8324 case 2:
8325 level = TP_EC_FAN_AUTO;
8326 break;
8327 case 3:
8328 /* reserved for software-controlled auto mode */
8329 return -ENOSYS;
8330 default:
8331 return -EINVAL;
8332 }
8333
8334 res = fan_set_level_safe(level);
Henrique de Moraes Holschuhc573ddb2007-04-27 22:00:12 -03008335 if (res == -ENXIO)
8336 return -EINVAL;
8337 else if (res < 0)
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03008338 return res;
8339
8340 fan_watchdog_reset();
8341
8342 return count;
8343}
8344
Bjørn Mork5fb73bc2015-05-19 19:45:03 +02008345static DEVICE_ATTR(pwm1_enable, S_IWUSR | S_IRUGO,
8346 fan_pwm1_enable_show, fan_pwm1_enable_store);
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03008347
8348/* sysfs fan pwm1 ------------------------------------------------------ */
8349static ssize_t fan_pwm1_show(struct device *dev,
8350 struct device_attribute *attr,
8351 char *buf)
8352{
8353 int res;
8354 u8 status;
8355
8356 res = fan_get_status_safe(&status);
8357 if (res)
8358 return res;
8359
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03008360 if ((status &
8361 (TP_EC_FAN_AUTO | TP_EC_FAN_FULLSPEED)) != 0)
8362 status = fan_control_desired_level;
8363
8364 if (status > 7)
8365 status = 7;
8366
8367 return snprintf(buf, PAGE_SIZE, "%u\n", (status * 255) / 7);
8368}
8369
8370static ssize_t fan_pwm1_store(struct device *dev,
8371 struct device_attribute *attr,
8372 const char *buf, size_t count)
8373{
8374 unsigned long s;
8375 int rc;
8376 u8 status, newlevel;
8377
8378 if (parse_strtoul(buf, 255, &s))
8379 return -EINVAL;
8380
Henrique de Moraes Holschuh74a60c02009-04-04 04:25:52 +00008381 tpacpi_disclose_usertask("hwmon pwm1",
8382 "set fan speed to %lu\n", s);
8383
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03008384 /* scale down from 0-255 to 0-7 */
8385 newlevel = (s >> 5) & 0x07;
8386
Henrique de Moraes Holschuh7646ea82009-01-11 03:01:04 -02008387 if (mutex_lock_killable(&fan_mutex))
Henrique de Moraes Holschuhfc589a32007-10-30 17:46:24 -02008388 return -ERESTARTSYS;
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03008389
8390 rc = fan_get_status(&status);
8391 if (!rc && (status &
8392 (TP_EC_FAN_AUTO | TP_EC_FAN_FULLSPEED)) == 0) {
8393 rc = fan_set_level(newlevel);
Henrique de Moraes Holschuhc573ddb2007-04-27 22:00:12 -03008394 if (rc == -ENXIO)
8395 rc = -EINVAL;
8396 else if (!rc) {
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03008397 fan_update_desired_level(newlevel);
Henrique de Moraes Holschuhca4ac2f2007-04-27 22:00:11 -03008398 fan_watchdog_reset();
8399 }
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03008400 }
8401
8402 mutex_unlock(&fan_mutex);
Jan van den Berg72a979f2014-09-17 00:01:08 +02008403 return (rc) ? rc : count;
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03008404}
8405
Bjørn Mork5fb73bc2015-05-19 19:45:03 +02008406static DEVICE_ATTR(pwm1, S_IWUSR | S_IRUGO, fan_pwm1_show, fan_pwm1_store);
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03008407
8408/* sysfs fan fan1_input ------------------------------------------------ */
8409static ssize_t fan_fan1_input_show(struct device *dev,
8410 struct device_attribute *attr,
8411 char *buf)
8412{
8413 int res;
8414 unsigned int speed;
8415
8416 res = fan_get_speed(&speed);
8417 if (res < 0)
8418 return res;
8419
8420 return snprintf(buf, PAGE_SIZE, "%u\n", speed);
8421}
8422
Bjørn Mork5fb73bc2015-05-19 19:45:03 +02008423static DEVICE_ATTR(fan1_input, S_IRUGO, fan_fan1_input_show, NULL);
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03008424
Henrique de Moraes Holschuhd7377242009-06-18 00:40:17 -03008425/* sysfs fan fan2_input ------------------------------------------------ */
8426static ssize_t fan_fan2_input_show(struct device *dev,
8427 struct device_attribute *attr,
8428 char *buf)
8429{
8430 int res;
8431 unsigned int speed;
8432
8433 res = fan2_get_speed(&speed);
8434 if (res < 0)
8435 return res;
8436
8437 return snprintf(buf, PAGE_SIZE, "%u\n", speed);
8438}
8439
Bjørn Mork5fb73bc2015-05-19 19:45:03 +02008440static DEVICE_ATTR(fan2_input, S_IRUGO, fan_fan2_input_show, NULL);
Henrique de Moraes Holschuhd7377242009-06-18 00:40:17 -03008441
Henrique de Moraes Holschuh7fd40022007-09-25 06:38:03 -03008442/* sysfs fan fan_watchdog (hwmon driver) ------------------------------- */
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03008443static ssize_t fan_fan_watchdog_show(struct device_driver *drv,
8444 char *buf)
8445{
8446 return snprintf(buf, PAGE_SIZE, "%u\n", fan_watchdog_maxinterval);
8447}
8448
8449static ssize_t fan_fan_watchdog_store(struct device_driver *drv,
8450 const char *buf, size_t count)
8451{
8452 unsigned long t;
8453
8454 if (parse_strtoul(buf, 120, &t))
8455 return -EINVAL;
8456
Henrique de Moraes Holschuhecf2a802007-04-27 22:00:09 -03008457 if (!fan_control_allowed)
8458 return -EPERM;
8459
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03008460 fan_watchdog_maxinterval = t;
8461 fan_watchdog_reset();
8462
Henrique de Moraes Holschuh74a60c02009-04-04 04:25:52 +00008463 tpacpi_disclose_usertask("fan_watchdog", "set to %lu\n", t);
8464
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03008465 return count;
8466}
8467
8468static DRIVER_ATTR(fan_watchdog, S_IWUSR | S_IRUGO,
8469 fan_fan_watchdog_show, fan_fan_watchdog_store);
8470
8471/* --------------------------------------------------------------------- */
8472static struct attribute *fan_attributes[] = {
Bjørn Mork5fb73bc2015-05-19 19:45:03 +02008473 &dev_attr_pwm1_enable.attr, &dev_attr_pwm1.attr,
8474 &dev_attr_fan1_input.attr,
Henrique de Moraes Holschuhd7377242009-06-18 00:40:17 -03008475 NULL, /* for fan2_input */
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03008476 NULL
8477};
8478
8479static const struct attribute_group fan_attr_group = {
8480 .attrs = fan_attributes,
8481};
8482
Henrique de Moraes Holschuhd7377242009-06-18 00:40:17 -03008483#define TPACPI_FAN_Q1 0x0001 /* Unitialized HFSP */
8484#define TPACPI_FAN_2FAN 0x0002 /* EC 0x31 bit 0 selects fan2 */
Henrique de Moraes Holschuh7d95a3d2009-05-30 13:25:06 -03008485
8486#define TPACPI_FAN_QI(__id1, __id2, __quirks) \
8487 { .vendor = PCI_VENDOR_ID_IBM, \
8488 .bios = TPACPI_MATCH_ANY, \
8489 .ec = TPID(__id1, __id2), \
8490 .quirks = __quirks }
8491
Henrique de Moraes Holschuhd7377242009-06-18 00:40:17 -03008492#define TPACPI_FAN_QL(__id1, __id2, __quirks) \
8493 { .vendor = PCI_VENDOR_ID_LENOVO, \
8494 .bios = TPACPI_MATCH_ANY, \
8495 .ec = TPID(__id1, __id2), \
8496 .quirks = __quirks }
8497
Henrique de Moraes Holschuh7d95a3d2009-05-30 13:25:06 -03008498static const struct tpacpi_quirk fan_quirk_table[] __initconst = {
8499 TPACPI_FAN_QI('1', 'Y', TPACPI_FAN_Q1),
8500 TPACPI_FAN_QI('7', '8', TPACPI_FAN_Q1),
8501 TPACPI_FAN_QI('7', '6', TPACPI_FAN_Q1),
8502 TPACPI_FAN_QI('7', '0', TPACPI_FAN_Q1),
Henrique de Moraes Holschuhd7377242009-06-18 00:40:17 -03008503 TPACPI_FAN_QL('7', 'M', TPACPI_FAN_2FAN),
Henrique de Moraes Holschuh7d95a3d2009-05-30 13:25:06 -03008504};
8505
Henrique de Moraes Holschuhd7377242009-06-18 00:40:17 -03008506#undef TPACPI_FAN_QL
Henrique de Moraes Holschuh7d95a3d2009-05-30 13:25:06 -03008507#undef TPACPI_FAN_QI
8508
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03008509static int __init fan_init(struct ibm_init_struct *iibm)
Henrique de Moraes Holschuh69ba91c2006-11-24 11:47:09 -02008510{
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03008511 int rc;
Henrique de Moraes Holschuh7d95a3d2009-05-30 13:25:06 -03008512 unsigned long quirks;
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03008513
Henrique de Moraes Holschuh74a60c02009-04-04 04:25:52 +00008514 vdbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_FAN,
8515 "initializing fan subdriver\n");
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03008516
Henrique de Moraes Holschuh40ca9fd2007-04-24 11:48:15 -03008517 mutex_init(&fan_mutex);
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03008518 fan_status_access_mode = TPACPI_FAN_NONE;
8519 fan_control_access_mode = TPACPI_FAN_WR_NONE;
Henrique de Moraes Holschuh69ba91c2006-11-24 11:47:09 -02008520 fan_control_commands = 0;
Henrique de Moraes Holschuh16663a82006-11-24 11:47:14 -02008521 fan_watchdog_maxinterval = 0;
Henrique de Moraes Holschuhd8fd94d2007-04-21 11:08:36 -03008522 tp_features.fan_ctrl_status_undef = 0;
Henrique de Moraes Holschuhd7377242009-06-18 00:40:17 -03008523 tp_features.second_fan = 0;
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03008524 fan_control_desired_level = 7;
Henrique de Moraes Holschuh69ba91c2006-11-24 11:47:09 -02008525
Henrique de Moraes Holschuhe28393c2010-05-16 19:45:23 -03008526 if (tpacpi_is_ibm()) {
8527 TPACPI_ACPIHANDLE_INIT(fans);
8528 TPACPI_ACPIHANDLE_INIT(gfan);
8529 TPACPI_ACPIHANDLE_INIT(sfan);
8530 }
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03008531
Henrique de Moraes Holschuh7d95a3d2009-05-30 13:25:06 -03008532 quirks = tpacpi_check_quirks(fan_quirk_table,
8533 ARRAY_SIZE(fan_quirk_table));
8534
Henrique de Moraes Holschuh69ba91c2006-11-24 11:47:09 -02008535 if (gfan_handle) {
8536 /* 570, 600e/x, 770e, 770x */
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03008537 fan_status_access_mode = TPACPI_FAN_RD_ACPI_GFAN;
Henrique de Moraes Holschuh69ba91c2006-11-24 11:47:09 -02008538 } else {
8539 /* all other ThinkPads: note that even old-style
8540 * ThinkPad ECs supports the fan control register */
Henrique de Moraes Holschuh778b4d72006-11-24 11:47:14 -02008541 if (likely(acpi_ec_read(fan_status_offset,
8542 &fan_control_initial_status))) {
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03008543 fan_status_access_mode = TPACPI_FAN_RD_TPEC;
Henrique de Moraes Holschuh7d95a3d2009-05-30 13:25:06 -03008544 if (quirks & TPACPI_FAN_Q1)
8545 fan_quirk1_setup();
Henrique de Moraes Holschuhd7377242009-06-18 00:40:17 -03008546 if (quirks & TPACPI_FAN_2FAN) {
8547 tp_features.second_fan = 1;
8548 dbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_FAN,
8549 "secondary fan support enabled\n");
8550 }
Henrique de Moraes Holschuh69ba91c2006-11-24 11:47:09 -02008551 } else {
Joe Perches0978e012011-04-04 10:06:25 -07008552 pr_err("ThinkPad ACPI EC access misbehaving, "
Henrique de Moraes Holschuh69ba91c2006-11-24 11:47:09 -02008553 "fan status and control unavailable\n");
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03008554 return 1;
Henrique de Moraes Holschuh69ba91c2006-11-24 11:47:09 -02008555 }
8556 }
8557
8558 if (sfan_handle) {
8559 /* 570, 770x-JL */
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03008560 fan_control_access_mode = TPACPI_FAN_WR_ACPI_SFAN;
Henrique de Moraes Holschuh1c6a3342006-11-24 11:47:12 -02008561 fan_control_commands |=
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03008562 TPACPI_FAN_CMD_LEVEL | TPACPI_FAN_CMD_ENABLE;
Henrique de Moraes Holschuh69ba91c2006-11-24 11:47:09 -02008563 } else {
8564 if (!gfan_handle) {
8565 /* gfan without sfan means no fan control */
8566 /* all other models implement TP EC 0x2f control */
8567
8568 if (fans_handle) {
Henrique de Moraes Holschuha8b7a662006-11-24 11:47:11 -02008569 /* X31, X40, X41 */
Henrique de Moraes Holschuh69ba91c2006-11-24 11:47:09 -02008570 fan_control_access_mode =
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03008571 TPACPI_FAN_WR_ACPI_FANS;
Henrique de Moraes Holschuh69ba91c2006-11-24 11:47:09 -02008572 fan_control_commands |=
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03008573 TPACPI_FAN_CMD_SPEED |
8574 TPACPI_FAN_CMD_LEVEL |
8575 TPACPI_FAN_CMD_ENABLE;
Henrique de Moraes Holschuh69ba91c2006-11-24 11:47:09 -02008576 } else {
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03008577 fan_control_access_mode = TPACPI_FAN_WR_TPEC;
Henrique de Moraes Holschuha12095c2006-11-24 11:47:13 -02008578 fan_control_commands |=
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03008579 TPACPI_FAN_CMD_LEVEL |
8580 TPACPI_FAN_CMD_ENABLE;
Henrique de Moraes Holschuh69ba91c2006-11-24 11:47:09 -02008581 }
8582 }
8583 }
8584
Henrique de Moraes Holschuh74a60c02009-04-04 04:25:52 +00008585 vdbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_FAN,
8586 "fan is %s, modes %d, %d\n",
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03008587 str_supported(fan_status_access_mode != TPACPI_FAN_NONE ||
8588 fan_control_access_mode != TPACPI_FAN_WR_NONE),
8589 fan_status_access_mode, fan_control_access_mode);
8590
Henrique de Moraes Holschuhecf2a802007-04-27 22:00:09 -03008591 /* fan control master switch */
8592 if (!fan_control_allowed) {
8593 fan_control_access_mode = TPACPI_FAN_WR_NONE;
8594 fan_control_commands = 0;
Henrique de Moraes Holschuh74a60c02009-04-04 04:25:52 +00008595 dbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_FAN,
Henrique de Moraes Holschuhecf2a802007-04-27 22:00:09 -03008596 "fan control features disabled by parameter\n");
8597 }
8598
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03008599 /* update fan_control_desired_level */
8600 if (fan_status_access_mode != TPACPI_FAN_NONE)
8601 fan_get_status_safe(NULL);
8602
8603 if (fan_status_access_mode != TPACPI_FAN_NONE ||
8604 fan_control_access_mode != TPACPI_FAN_WR_NONE) {
Henrique de Moraes Holschuhd7377242009-06-18 00:40:17 -03008605 if (tp_features.second_fan) {
8606 /* attach second fan tachometer */
8607 fan_attributes[ARRAY_SIZE(fan_attributes)-2] =
Bjørn Mork5fb73bc2015-05-19 19:45:03 +02008608 &dev_attr_fan2_input.attr;
Henrique de Moraes Holschuhd7377242009-06-18 00:40:17 -03008609 }
Henrique de Moraes Holschuh7fd40022007-09-25 06:38:03 -03008610 rc = sysfs_create_group(&tpacpi_sensors_pdev->dev.kobj,
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03008611 &fan_attr_group);
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03008612 if (rc < 0)
8613 return rc;
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03008614
8615 rc = driver_create_file(&tpacpi_hwmon_pdriver.driver,
8616 &driver_attr_fan_watchdog);
8617 if (rc < 0) {
8618 sysfs_remove_group(&tpacpi_sensors_pdev->dev.kobj,
8619 &fan_attr_group);
8620 return rc;
8621 }
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03008622 return 0;
8623 } else
8624 return 1;
8625}
8626
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03008627static void fan_exit(void)
8628{
Henrique de Moraes Holschuh74a60c02009-04-04 04:25:52 +00008629 vdbg_printk(TPACPI_DBG_EXIT | TPACPI_DBG_FAN,
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02008630 "cancelling any pending fan watchdog tasks\n");
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03008631
8632 /* FIXME: can we really do this unconditionally? */
Henrique de Moraes Holschuh7fd40022007-09-25 06:38:03 -03008633 sysfs_remove_group(&tpacpi_sensors_pdev->dev.kobj, &fan_attr_group);
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02008634 driver_remove_file(&tpacpi_hwmon_pdriver.driver,
8635 &driver_attr_fan_watchdog);
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03008636
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03008637 cancel_delayed_work(&fan_watchdog_task);
Henrique de Moraes Holschuhe0e3c062008-04-26 01:02:28 -03008638 flush_workqueue(tpacpi_wq);
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03008639}
8640
Rafael J. Wysockifd3c3a42012-06-27 23:18:44 +02008641static void fan_suspend(void)
Henrique de Moraes Holschuh75700e52008-10-18 14:23:52 -03008642{
Henrique de Moraes Holschuh0081b162008-11-09 10:54:02 -02008643 int rc;
8644
Henrique de Moraes Holschuh75700e52008-10-18 14:23:52 -03008645 if (!fan_control_allowed)
8646 return;
8647
8648 /* Store fan status in cache */
Henrique de Moraes Holschuh0081b162008-11-09 10:54:02 -02008649 fan_control_resume_level = 0;
8650 rc = fan_get_status_safe(&fan_control_resume_level);
8651 if (rc < 0)
Joe Perches0978e012011-04-04 10:06:25 -07008652 pr_notice("failed to read fan level for later "
8653 "restore during resume: %d\n", rc);
Henrique de Moraes Holschuh0081b162008-11-09 10:54:02 -02008654
8655 /* if it is undefined, don't attempt to restore it.
8656 * KEEP THIS LAST */
Henrique de Moraes Holschuh75700e52008-10-18 14:23:52 -03008657 if (tp_features.fan_ctrl_status_undef)
Henrique de Moraes Holschuh0081b162008-11-09 10:54:02 -02008658 fan_control_resume_level = 0;
Henrique de Moraes Holschuh75700e52008-10-18 14:23:52 -03008659}
8660
8661static void fan_resume(void)
8662{
Henrique de Moraes Holschuh75700e52008-10-18 14:23:52 -03008663 u8 current_level = 7;
8664 bool do_set = false;
Henrique de Moraes Holschuh0081b162008-11-09 10:54:02 -02008665 int rc;
Henrique de Moraes Holschuh75700e52008-10-18 14:23:52 -03008666
8667 /* DSDT *always* updates status on resume */
8668 tp_features.fan_ctrl_status_undef = 0;
8669
Henrique de Moraes Holschuh75700e52008-10-18 14:23:52 -03008670 if (!fan_control_allowed ||
Henrique de Moraes Holschuh0081b162008-11-09 10:54:02 -02008671 !fan_control_resume_level ||
Henrique de Moraes Holschuh75700e52008-10-18 14:23:52 -03008672 (fan_get_status_safe(&current_level) < 0))
8673 return;
8674
8675 switch (fan_control_access_mode) {
8676 case TPACPI_FAN_WR_ACPI_SFAN:
Henrique de Moraes Holschuh0081b162008-11-09 10:54:02 -02008677 /* never decrease fan level */
8678 do_set = (fan_control_resume_level > current_level);
Henrique de Moraes Holschuh75700e52008-10-18 14:23:52 -03008679 break;
8680 case TPACPI_FAN_WR_ACPI_FANS:
8681 case TPACPI_FAN_WR_TPEC:
Henrique de Moraes Holschuh0081b162008-11-09 10:54:02 -02008682 /* never decrease fan level, scale is:
8683 * TP_EC_FAN_FULLSPEED > 7 >= TP_EC_FAN_AUTO
8684 *
8685 * We expect the firmware to set either 7 or AUTO, but we
8686 * handle FULLSPEED out of paranoia.
8687 *
8688 * So, we can safely only restore FULLSPEED or 7, anything
8689 * else could slow the fan. Restoring AUTO is useless, at
8690 * best that's exactly what the DSDT already set (it is the
8691 * slower it uses).
8692 *
8693 * Always keep in mind that the DSDT *will* have set the
8694 * fans to what the vendor supposes is the best level. We
8695 * muck with it only to speed the fan up.
8696 */
8697 if (fan_control_resume_level != 7 &&
8698 !(fan_control_resume_level & TP_EC_FAN_FULLSPEED))
8699 return;
8700 else
8701 do_set = !(current_level & TP_EC_FAN_FULLSPEED) &&
8702 (current_level != fan_control_resume_level);
Henrique de Moraes Holschuh75700e52008-10-18 14:23:52 -03008703 break;
8704 default:
8705 return;
8706 }
8707 if (do_set) {
Joe Perches0978e012011-04-04 10:06:25 -07008708 pr_notice("restoring fan level to 0x%02x\n",
8709 fan_control_resume_level);
Henrique de Moraes Holschuh0081b162008-11-09 10:54:02 -02008710 rc = fan_set_level_safe(fan_control_resume_level);
8711 if (rc < 0)
Joe Perches0978e012011-04-04 10:06:25 -07008712 pr_notice("failed to restore fan level: %d\n", rc);
Henrique de Moraes Holschuh75700e52008-10-18 14:23:52 -03008713 }
8714}
8715
Alexey Dobriyan887965e2009-12-15 21:51:12 -02008716static int fan_read(struct seq_file *m)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03008717{
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03008718 int rc;
8719 u8 status;
8720 unsigned int speed = 0;
8721
8722 switch (fan_status_access_mode) {
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03008723 case TPACPI_FAN_RD_ACPI_GFAN:
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03008724 /* 570, 600e/x, 770e, 770x */
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02008725 rc = fan_get_status_safe(&status);
8726 if (rc < 0)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03008727 return rc;
8728
Alexey Dobriyan887965e2009-12-15 21:51:12 -02008729 seq_printf(m, "status:\t\t%s\n"
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03008730 "level:\t\t%d\n",
8731 (status != 0) ? "enabled" : "disabled", status);
8732 break;
8733
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03008734 case TPACPI_FAN_RD_TPEC:
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03008735 /* all except 570, 600e/x, 770e, 770x */
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02008736 rc = fan_get_status_safe(&status);
8737 if (rc < 0)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03008738 return rc;
8739
Alexey Dobriyan887965e2009-12-15 21:51:12 -02008740 seq_printf(m, "status:\t\t%s\n",
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03008741 (status != 0) ? "enabled" : "disabled");
8742
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02008743 rc = fan_get_speed(&speed);
8744 if (rc < 0)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03008745 return rc;
8746
Alexey Dobriyan887965e2009-12-15 21:51:12 -02008747 seq_printf(m, "speed:\t\t%d\n", speed);
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03008748
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03008749 if (status & TP_EC_FAN_FULLSPEED)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03008750 /* Disengaged mode takes precedence */
Alexey Dobriyan887965e2009-12-15 21:51:12 -02008751 seq_printf(m, "level:\t\tdisengaged\n");
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03008752 else if (status & TP_EC_FAN_AUTO)
Alexey Dobriyan887965e2009-12-15 21:51:12 -02008753 seq_printf(m, "level:\t\tauto\n");
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03008754 else
Alexey Dobriyan887965e2009-12-15 21:51:12 -02008755 seq_printf(m, "level:\t\t%d\n", status);
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03008756 break;
8757
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03008758 case TPACPI_FAN_NONE:
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03008759 default:
Alexey Dobriyan887965e2009-12-15 21:51:12 -02008760 seq_printf(m, "status:\t\tnot supported\n");
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03008761 }
8762
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03008763 if (fan_control_commands & TPACPI_FAN_CMD_LEVEL) {
Alexey Dobriyan887965e2009-12-15 21:51:12 -02008764 seq_printf(m, "commands:\tlevel <level>");
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03008765
8766 switch (fan_control_access_mode) {
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03008767 case TPACPI_FAN_WR_ACPI_SFAN:
Alexey Dobriyan887965e2009-12-15 21:51:12 -02008768 seq_printf(m, " (<level> is 0-7)\n");
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03008769 break;
8770
8771 default:
Alexey Dobriyan887965e2009-12-15 21:51:12 -02008772 seq_printf(m, " (<level> is 0-7, "
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03008773 "auto, disengaged, full-speed)\n");
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03008774 break;
8775 }
8776 }
8777
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03008778 if (fan_control_commands & TPACPI_FAN_CMD_ENABLE)
Alexey Dobriyan887965e2009-12-15 21:51:12 -02008779 seq_printf(m, "commands:\tenable, disable\n"
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02008780 "commands:\twatchdog <timeout> (<timeout> "
8781 "is 0 (off), 1-120 (seconds))\n");
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03008782
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03008783 if (fan_control_commands & TPACPI_FAN_CMD_SPEED)
Alexey Dobriyan887965e2009-12-15 21:51:12 -02008784 seq_printf(m, "commands:\tspeed <speed>"
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03008785 " (<speed> is 0-65535)\n");
8786
Alexey Dobriyan887965e2009-12-15 21:51:12 -02008787 return 0;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03008788}
8789
Henrique de Moraes Holschuh18ad7992006-11-24 11:47:11 -02008790static int fan_write_cmd_level(const char *cmd, int *rc)
8791{
8792 int level;
8793
Henrique de Moraes Holschuha12095c2006-11-24 11:47:13 -02008794 if (strlencmp(cmd, "level auto") == 0)
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03008795 level = TP_EC_FAN_AUTO;
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03008796 else if ((strlencmp(cmd, "level disengaged") == 0) |
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02008797 (strlencmp(cmd, "level full-speed") == 0))
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03008798 level = TP_EC_FAN_FULLSPEED;
Henrique de Moraes Holschuha12095c2006-11-24 11:47:13 -02008799 else if (sscanf(cmd, "level %d", &level) != 1)
Henrique de Moraes Holschuh18ad7992006-11-24 11:47:11 -02008800 return 0;
8801
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02008802 *rc = fan_set_level_safe(level);
8803 if (*rc == -ENXIO)
Joe Perches0978e012011-04-04 10:06:25 -07008804 pr_err("level command accepted for unsupported access mode %d\n",
8805 fan_control_access_mode);
Henrique de Moraes Holschuh74a60c02009-04-04 04:25:52 +00008806 else if (!*rc)
8807 tpacpi_disclose_usertask("procfs fan",
8808 "set level to %d\n", level);
Henrique de Moraes Holschuh18ad7992006-11-24 11:47:11 -02008809
8810 return 1;
8811}
8812
8813static int fan_write_cmd_enable(const char *cmd, int *rc)
8814{
8815 if (strlencmp(cmd, "enable") != 0)
8816 return 0;
8817
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02008818 *rc = fan_set_enable();
8819 if (*rc == -ENXIO)
Joe Perches0978e012011-04-04 10:06:25 -07008820 pr_err("enable command accepted for unsupported access mode %d\n",
8821 fan_control_access_mode);
Henrique de Moraes Holschuh74a60c02009-04-04 04:25:52 +00008822 else if (!*rc)
8823 tpacpi_disclose_usertask("procfs fan", "enable\n");
Henrique de Moraes Holschuh18ad7992006-11-24 11:47:11 -02008824
8825 return 1;
8826}
8827
8828static int fan_write_cmd_disable(const char *cmd, int *rc)
8829{
8830 if (strlencmp(cmd, "disable") != 0)
8831 return 0;
8832
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02008833 *rc = fan_set_disable();
8834 if (*rc == -ENXIO)
Joe Perches0978e012011-04-04 10:06:25 -07008835 pr_err("disable command accepted for unsupported access mode %d\n",
8836 fan_control_access_mode);
Henrique de Moraes Holschuh74a60c02009-04-04 04:25:52 +00008837 else if (!*rc)
8838 tpacpi_disclose_usertask("procfs fan", "disable\n");
Henrique de Moraes Holschuh18ad7992006-11-24 11:47:11 -02008839
8840 return 1;
8841}
8842
8843static int fan_write_cmd_speed(const char *cmd, int *rc)
8844{
8845 int speed;
8846
Henrique de Moraes Holschuha8b7a662006-11-24 11:47:11 -02008847 /* TODO:
8848 * Support speed <low> <medium> <high> ? */
8849
Henrique de Moraes Holschuh18ad7992006-11-24 11:47:11 -02008850 if (sscanf(cmd, "speed %d", &speed) != 1)
8851 return 0;
8852
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02008853 *rc = fan_set_speed(speed);
8854 if (*rc == -ENXIO)
Joe Perches0978e012011-04-04 10:06:25 -07008855 pr_err("speed command accepted for unsupported access mode %d\n",
8856 fan_control_access_mode);
Henrique de Moraes Holschuh74a60c02009-04-04 04:25:52 +00008857 else if (!*rc)
8858 tpacpi_disclose_usertask("procfs fan",
8859 "set speed to %d\n", speed);
Henrique de Moraes Holschuh18ad7992006-11-24 11:47:11 -02008860
8861 return 1;
8862}
8863
Henrique de Moraes Holschuh16663a82006-11-24 11:47:14 -02008864static int fan_write_cmd_watchdog(const char *cmd, int *rc)
8865{
8866 int interval;
8867
8868 if (sscanf(cmd, "watchdog %d", &interval) != 1)
8869 return 0;
8870
8871 if (interval < 0 || interval > 120)
8872 *rc = -EINVAL;
Henrique de Moraes Holschuh74a60c02009-04-04 04:25:52 +00008873 else {
Henrique de Moraes Holschuh16663a82006-11-24 11:47:14 -02008874 fan_watchdog_maxinterval = interval;
Henrique de Moraes Holschuh74a60c02009-04-04 04:25:52 +00008875 tpacpi_disclose_usertask("procfs fan",
8876 "set watchdog timer to %d\n",
8877 interval);
8878 }
Henrique de Moraes Holschuh16663a82006-11-24 11:47:14 -02008879
8880 return 1;
8881}
8882
Henrique de Moraes Holschuh18ad7992006-11-24 11:47:11 -02008883static int fan_write(char *buf)
8884{
8885 char *cmd;
8886 int rc = 0;
8887
8888 while (!rc && (cmd = next_cmd(&buf))) {
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03008889 if (!((fan_control_commands & TPACPI_FAN_CMD_LEVEL) &&
Henrique de Moraes Holschuh18ad7992006-11-24 11:47:11 -02008890 fan_write_cmd_level(cmd, &rc)) &&
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03008891 !((fan_control_commands & TPACPI_FAN_CMD_ENABLE) &&
Henrique de Moraes Holschuh18ad7992006-11-24 11:47:11 -02008892 (fan_write_cmd_enable(cmd, &rc) ||
Henrique de Moraes Holschuh16663a82006-11-24 11:47:14 -02008893 fan_write_cmd_disable(cmd, &rc) ||
8894 fan_write_cmd_watchdog(cmd, &rc))) &&
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03008895 !((fan_control_commands & TPACPI_FAN_CMD_SPEED) &&
Henrique de Moraes Holschuh18ad7992006-11-24 11:47:11 -02008896 fan_write_cmd_speed(cmd, &rc))
8897 )
8898 rc = -EINVAL;
Henrique de Moraes Holschuh16663a82006-11-24 11:47:14 -02008899 else if (!rc)
8900 fan_watchdog_reset();
Borislav Deianov78f81cc2005-08-17 00:00:00 -04008901 }
8902
Henrique de Moraes Holschuh18ad7992006-11-24 11:47:11 -02008903 return rc;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04008904}
8905
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03008906static struct ibm_struct fan_driver_data = {
8907 .name = "fan",
8908 .read = fan_read,
8909 .write = fan_write,
8910 .exit = fan_exit,
Henrique de Moraes Holschuh75700e52008-10-18 14:23:52 -03008911 .suspend = fan_suspend,
8912 .resume = fan_resume,
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03008913};
8914
David Henningsson420f9732013-10-16 23:10:31 +02008915/*************************************************************************
8916 * Mute LED subdriver
8917 */
8918
8919
8920struct tp_led_table {
8921 acpi_string name;
8922 int on_value;
8923 int off_value;
8924 int state;
8925};
8926
8927static struct tp_led_table led_tables[] = {
8928 [TPACPI_LED_MUTE] = {
8929 .name = "SSMS",
8930 .on_value = 1,
8931 .off_value = 0,
8932 },
8933 [TPACPI_LED_MICMUTE] = {
8934 .name = "MMTS",
8935 .on_value = 2,
8936 .off_value = 0,
8937 },
8938};
8939
8940static int mute_led_on_off(struct tp_led_table *t, bool state)
8941{
8942 acpi_handle temp;
8943 int output;
8944
8945 if (!ACPI_SUCCESS(acpi_get_handle(hkey_handle, t->name, &temp))) {
8946 pr_warn("Thinkpad ACPI has no %s interface.\n", t->name);
8947 return -EIO;
8948 }
8949
8950 if (!acpi_evalf(hkey_handle, &output, t->name, "dd",
8951 state ? t->on_value : t->off_value))
8952 return -EIO;
8953
8954 t->state = state;
8955 return state;
8956}
8957
8958int tpacpi_led_set(int whichled, bool on)
8959{
8960 struct tp_led_table *t;
8961
8962 if (whichled < 0 || whichled >= TPACPI_LED_MAX)
8963 return -EINVAL;
8964
8965 t = &led_tables[whichled];
8966 if (t->state < 0 || t->state == on)
8967 return t->state;
8968 return mute_led_on_off(t, on);
8969}
8970EXPORT_SYMBOL_GPL(tpacpi_led_set);
8971
8972static int mute_led_init(struct ibm_init_struct *iibm)
8973{
8974 acpi_handle temp;
8975 int i;
8976
8977 for (i = 0; i < TPACPI_LED_MAX; i++) {
8978 struct tp_led_table *t = &led_tables[i];
8979 if (ACPI_SUCCESS(acpi_get_handle(hkey_handle, t->name, &temp)))
8980 mute_led_on_off(t, false);
8981 else
8982 t->state = -ENODEV;
8983 }
8984 return 0;
8985}
8986
8987static void mute_led_exit(void)
8988{
8989 int i;
8990
8991 for (i = 0; i < TPACPI_LED_MAX; i++)
8992 tpacpi_led_set(i, false);
8993}
8994
Takashi Iwai119f4492014-02-12 16:32:45 +01008995static void mute_led_resume(void)
8996{
8997 int i;
8998
8999 for (i = 0; i < TPACPI_LED_MAX; i++) {
9000 struct tp_led_table *t = &led_tables[i];
9001 if (t->state >= 0)
9002 mute_led_on_off(t, t->state);
9003 }
9004}
9005
David Henningsson420f9732013-10-16 23:10:31 +02009006static struct ibm_struct mute_led_driver_data = {
9007 .name = "mute_led",
9008 .exit = mute_led_exit,
Takashi Iwai119f4492014-02-12 16:32:45 +01009009 .resume = mute_led_resume,
David Henningsson420f9732013-10-16 23:10:31 +02009010};
9011
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03009012/****************************************************************************
9013 ****************************************************************************
9014 *
9015 * Infrastructure
9016 *
9017 ****************************************************************************
9018 ****************************************************************************/
Linus Torvalds1da177e2005-04-16 15:20:36 -07009019
Henrique de Moraes Holschuh8b468c02009-09-20 14:09:26 -03009020/*
9021 * HKEY event callout for other subdrivers go here
9022 * (yes, it is ugly, but it is quick, safe, and gets the job done
9023 */
9024static void tpacpi_driver_event(const unsigned int hkey_event)
9025{
Henrique de Moraes Holschuh347a2682009-12-09 01:36:24 +00009026 if (ibm_backlight_device) {
9027 switch (hkey_event) {
9028 case TP_HKEY_EV_BRGHT_UP:
9029 case TP_HKEY_EV_BRGHT_DOWN:
9030 tpacpi_brightness_notify_change();
9031 }
9032 }
Henrique de Moraes Holschuh0d204c32009-12-15 21:51:11 -02009033 if (alsa_card) {
9034 switch (hkey_event) {
9035 case TP_HKEY_EV_VOL_UP:
9036 case TP_HKEY_EV_VOL_DOWN:
9037 case TP_HKEY_EV_VOL_MUTE:
9038 volume_alsa_notify_change();
9039 }
9040 }
Henrique de Moraes Holschuh8b468c02009-09-20 14:09:26 -03009041}
9042
Henrique de Moraes Holschuh8b468c02009-09-20 14:09:26 -03009043static void hotkey_driver_event(const unsigned int scancode)
9044{
Henrique de Moraes Holschuh67bcae62009-09-20 14:09:27 -03009045 tpacpi_driver_event(TP_HKEY_EV_HOTKEY_BASE + scancode);
Henrique de Moraes Holschuh8b468c02009-09-20 14:09:26 -03009046}
9047
Henrique de Moraes Holschuh7fd40022007-09-25 06:38:03 -03009048/* sysfs name ---------------------------------------------------------- */
9049static ssize_t thinkpad_acpi_pdev_name_show(struct device *dev,
9050 struct device_attribute *attr,
9051 char *buf)
9052{
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02009053 return snprintf(buf, PAGE_SIZE, "%s\n", TPACPI_NAME);
Henrique de Moraes Holschuh7fd40022007-09-25 06:38:03 -03009054}
9055
Bjørn Mork5fb73bc2015-05-19 19:45:03 +02009056static DEVICE_ATTR(name, S_IRUGO, thinkpad_acpi_pdev_name_show, NULL);
Henrique de Moraes Holschuh7fd40022007-09-25 06:38:03 -03009057
9058/* --------------------------------------------------------------------- */
9059
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03009060/* /proc support */
Henrique de Moraes Holschuh94954cc62007-07-18 23:45:27 -03009061static struct proc_dir_entry *proc_dir;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03009062
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03009063/*
9064 * Module and infrastructure proble, init and exit handling
9065 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07009066
Rusty Russell90ab5ee2012-01-13 09:32:20 +10309067static bool force_load;
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02009068
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03009069#ifdef CONFIG_THINKPAD_ACPI_DEBUG
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03009070static const char * __init str_supported(int is_supported)
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03009071{
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03009072 static char text_unsupported[] __initdata = "not supported";
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03009073
Jan van den Berg72a979f2014-09-17 00:01:08 +02009074 return (is_supported) ? &text_unsupported[4] : &text_unsupported[0];
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03009075}
9076#endif /* CONFIG_THINKPAD_ACPI_DEBUG */
9077
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02009078static void ibm_exit(struct ibm_struct *ibm)
9079{
9080 dbg_printk(TPACPI_DBG_EXIT, "removing %s\n", ibm->name);
9081
9082 list_del_init(&ibm->all_drivers);
9083
9084 if (ibm->flags.acpi_notify_installed) {
9085 dbg_printk(TPACPI_DBG_EXIT,
9086 "%s: acpi_remove_notify_handler\n", ibm->name);
9087 BUG_ON(!ibm->acpi);
9088 acpi_remove_notify_handler(*ibm->acpi->handle,
9089 ibm->acpi->type,
9090 dispatch_acpi_notify);
9091 ibm->flags.acpi_notify_installed = 0;
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02009092 }
9093
9094 if (ibm->flags.proc_created) {
9095 dbg_printk(TPACPI_DBG_EXIT,
9096 "%s: remove_proc_entry\n", ibm->name);
9097 remove_proc_entry(ibm->name, proc_dir);
9098 ibm->flags.proc_created = 0;
9099 }
9100
9101 if (ibm->flags.acpi_driver_registered) {
9102 dbg_printk(TPACPI_DBG_EXIT,
9103 "%s: acpi_bus_unregister_driver\n", ibm->name);
9104 BUG_ON(!ibm->acpi);
9105 acpi_bus_unregister_driver(ibm->acpi->driver);
9106 kfree(ibm->acpi->driver);
9107 ibm->acpi->driver = NULL;
9108 ibm->flags.acpi_driver_registered = 0;
9109 }
9110
9111 if (ibm->flags.init_called && ibm->exit) {
9112 ibm->exit();
9113 ibm->flags.init_called = 0;
9114 }
9115
9116 dbg_printk(TPACPI_DBG_INIT, "finished removing %s\n", ibm->name);
9117}
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02009118
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03009119static int __init ibm_init(struct ibm_init_struct *iibm)
Linus Torvalds1da177e2005-04-16 15:20:36 -07009120{
9121 int ret;
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03009122 struct ibm_struct *ibm = iibm->data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009123 struct proc_dir_entry *entry;
9124
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03009125 BUG_ON(ibm == NULL);
9126
9127 INIT_LIST_HEAD(&ibm->all_drivers);
9128
Henrique de Moraes Holschuh92641172007-04-21 11:08:35 -03009129 if (ibm->flags.experimental && !experimental)
Linus Torvalds1da177e2005-04-16 15:20:36 -07009130 return 0;
9131
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03009132 dbg_printk(TPACPI_DBG_INIT,
9133 "probing for %s\n", ibm->name);
9134
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03009135 if (iibm->init) {
9136 ret = iibm->init(iibm);
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03009137 if (ret > 0)
9138 return 0; /* probe failed */
9139 if (ret)
Linus Torvalds1da177e2005-04-16 15:20:36 -07009140 return ret;
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03009141
Henrique de Moraes Holschuh92641172007-04-21 11:08:35 -03009142 ibm->flags.init_called = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009143 }
9144
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -03009145 if (ibm->acpi) {
9146 if (ibm->acpi->hid) {
9147 ret = register_tpacpi_subdriver(ibm);
9148 if (ret)
9149 goto err_out;
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03009150 }
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -03009151
9152 if (ibm->acpi->notify) {
9153 ret = setup_acpi_notify(ibm);
9154 if (ret == -ENODEV) {
Joe Perches0978e012011-04-04 10:06:25 -07009155 pr_notice("disabling subdriver %s\n",
9156 ibm->name);
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -03009157 ret = 0;
9158 goto err_out;
9159 }
9160 if (ret < 0)
9161 goto err_out;
9162 }
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03009163 }
9164
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03009165 dbg_printk(TPACPI_DBG_INIT,
9166 "%s installed\n", ibm->name);
9167
Borislav Deianov78f81cc2005-08-17 00:00:00 -04009168 if (ibm->read) {
Al Virod161a132011-07-24 03:36:29 -04009169 umode_t mode = iibm->base_procfs_mode;
Alexey Dobriyan887965e2009-12-15 21:51:12 -02009170
Henrique de Moraes Holschuhb525c062010-02-25 22:22:22 -03009171 if (!mode)
9172 mode = S_IRUGO;
Alexey Dobriyan887965e2009-12-15 21:51:12 -02009173 if (ibm->write)
9174 mode |= S_IWUSR;
9175 entry = proc_create_data(ibm->name, mode, proc_dir,
9176 &dispatch_proc_fops, ibm);
Borislav Deianov78f81cc2005-08-17 00:00:00 -04009177 if (!entry) {
Joe Perches0978e012011-04-04 10:06:25 -07009178 pr_err("unable to create proc entry %s\n", ibm->name);
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03009179 ret = -ENODEV;
9180 goto err_out;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04009181 }
Henrique de Moraes Holschuh92641172007-04-21 11:08:35 -03009182 ibm->flags.proc_created = 1;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04009183 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07009184
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03009185 list_add_tail(&ibm->all_drivers, &tpacpi_all_drivers);
9186
Linus Torvalds1da177e2005-04-16 15:20:36 -07009187 return 0;
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03009188
9189err_out:
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03009190 dbg_printk(TPACPI_DBG_INIT,
9191 "%s: at error exit path with result %d\n",
9192 ibm->name, ret);
9193
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03009194 ibm_exit(ibm);
Jan van den Berg72a979f2014-09-17 00:01:08 +02009195 return (ret < 0) ? ret : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009196}
9197
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03009198/* Probing */
Linus Torvalds1da177e2005-04-16 15:20:36 -07009199
Henrique de Moraes Holschuh050df102009-05-30 13:25:05 -03009200static bool __pure __init tpacpi_is_fw_digit(const char c)
9201{
9202 return (c >= '0' && c <= '9') || (c >= 'A' && c <= 'Z');
9203}
9204
Jan van den Berg72a979f2014-09-17 00:01:08 +02009205static bool __pure __init tpacpi_is_valid_fw_id(const char * const s,
Henrique de Moraes Holschuh050df102009-05-30 13:25:05 -03009206 const char t)
9207{
Adam Lee1b0eb5b2015-02-11 13:43:10 +08009208 /*
9209 * Most models: xxyTkkWW (#.##c)
9210 * Ancient 570/600 and -SL lacks (#.##c)
9211 */
9212 if (s && strlen(s) >= 8 &&
Henrique de Moraes Holschuh050df102009-05-30 13:25:05 -03009213 tpacpi_is_fw_digit(s[0]) &&
9214 tpacpi_is_fw_digit(s[1]) &&
Manoj Iyer16a3d9f2012-09-24 11:57:40 -05009215 s[2] == t &&
9216 (s[3] == 'T' || s[3] == 'N') &&
Henrique de Moraes Holschuh050df102009-05-30 13:25:05 -03009217 tpacpi_is_fw_digit(s[4]) &&
Adam Lee1b0eb5b2015-02-11 13:43:10 +08009218 tpacpi_is_fw_digit(s[5]))
9219 return true;
9220
9221 /* New models: xxxyTkkW (#.##c); T550 and some others */
9222 return s && strlen(s) >= 8 &&
9223 tpacpi_is_fw_digit(s[0]) &&
9224 tpacpi_is_fw_digit(s[1]) &&
9225 tpacpi_is_fw_digit(s[2]) &&
9226 s[3] == t &&
9227 (s[4] == 'T' || s[4] == 'N') &&
9228 tpacpi_is_fw_digit(s[5]) &&
9229 tpacpi_is_fw_digit(s[6]);
Henrique de Moraes Holschuh050df102009-05-30 13:25:05 -03009230}
9231
Henrique de Moraes Holschuhbf20e742008-07-21 09:15:51 -03009232/* returns 0 - probe ok, or < 0 - probe error.
9233 * Probe ok doesn't mean thinkpad found.
9234 * On error, kfree() cleanup on tp->* is not performed, caller must do it */
9235static int __must_check __init get_thinkpad_model_data(
9236 struct thinkpad_id_data *tp)
Henrique de Moraes Holschuh60eb0b32006-11-24 11:47:08 -02009237{
Jeff Garzik18552562007-10-03 15:15:40 -04009238 const struct dmi_device *dev = NULL;
Henrique de Moraes Holschuh49a13cd2006-11-24 11:47:13 -02009239 char ec_fw_string[18];
Henrique de Moraes Holschuhbf20e742008-07-21 09:15:51 -03009240 char const *s;
Henrique de Moraes Holschuh60eb0b32006-11-24 11:47:08 -02009241
Henrique de Moraes Holschuhd5a2f2f2007-07-18 23:45:42 -03009242 if (!tp)
Henrique de Moraes Holschuhbf20e742008-07-21 09:15:51 -03009243 return -EINVAL;
Henrique de Moraes Holschuhd5a2f2f2007-07-18 23:45:42 -03009244
9245 memset(tp, 0, sizeof(*tp));
9246
9247 if (dmi_name_in_vendors("IBM"))
9248 tp->vendor = PCI_VENDOR_ID_IBM;
9249 else if (dmi_name_in_vendors("LENOVO"))
9250 tp->vendor = PCI_VENDOR_ID_LENOVO;
9251 else
Henrique de Moraes Holschuhbf20e742008-07-21 09:15:51 -03009252 return 0;
Henrique de Moraes Holschuhd5a2f2f2007-07-18 23:45:42 -03009253
Henrique de Moraes Holschuhbf20e742008-07-21 09:15:51 -03009254 s = dmi_get_system_info(DMI_BIOS_VERSION);
9255 tp->bios_version_str = kstrdup(s, GFP_KERNEL);
9256 if (s && !tp->bios_version_str)
9257 return -ENOMEM;
Henrique de Moraes Holschuh050df102009-05-30 13:25:05 -03009258
9259 /* Really ancient ThinkPad 240X will fail this, which is fine */
Manoj Iyer16a3d9f2012-09-24 11:57:40 -05009260 if (!(tpacpi_is_valid_fw_id(tp->bios_version_str, 'E') ||
9261 tpacpi_is_valid_fw_id(tp->bios_version_str, 'C')))
Henrique de Moraes Holschuhbf20e742008-07-21 09:15:51 -03009262 return 0;
Henrique de Moraes Holschuh050df102009-05-30 13:25:05 -03009263
Henrique de Moraes Holschuhd5a2f2f2007-07-18 23:45:42 -03009264 tp->bios_model = tp->bios_version_str[0]
9265 | (tp->bios_version_str[1] << 8);
Henrique de Moraes Holschuh050df102009-05-30 13:25:05 -03009266 tp->bios_release = (tp->bios_version_str[4] << 8)
9267 | tp->bios_version_str[5];
Henrique de Moraes Holschuhd5a2f2f2007-07-18 23:45:42 -03009268
Henrique de Moraes Holschuh60eb0b32006-11-24 11:47:08 -02009269 /*
9270 * ThinkPad T23 or newer, A31 or newer, R50e or newer,
9271 * X32 or newer, all Z series; Some models must have an
9272 * up-to-date BIOS or they will not be detected.
9273 *
9274 * See http://thinkwiki.org/wiki/List_of_DMI_IDs
9275 */
9276 while ((dev = dmi_find_device(DMI_DEV_TYPE_OEM_STRING, NULL, dev))) {
Henrique de Moraes Holschuh49a13cd2006-11-24 11:47:13 -02009277 if (sscanf(dev->name,
9278 "IBM ThinkPad Embedded Controller -[%17c",
9279 ec_fw_string) == 1) {
9280 ec_fw_string[sizeof(ec_fw_string) - 1] = 0;
9281 ec_fw_string[strcspn(ec_fw_string, " ]")] = 0;
Henrique de Moraes Holschuhd5a2f2f2007-07-18 23:45:42 -03009282
9283 tp->ec_version_str = kstrdup(ec_fw_string, GFP_KERNEL);
Henrique de Moraes Holschuhbf20e742008-07-21 09:15:51 -03009284 if (!tp->ec_version_str)
9285 return -ENOMEM;
Henrique de Moraes Holschuh050df102009-05-30 13:25:05 -03009286
9287 if (tpacpi_is_valid_fw_id(ec_fw_string, 'H')) {
9288 tp->ec_model = ec_fw_string[0]
9289 | (ec_fw_string[1] << 8);
9290 tp->ec_release = (ec_fw_string[4] << 8)
9291 | ec_fw_string[5];
9292 } else {
Joe Perches0978e012011-04-04 10:06:25 -07009293 pr_notice("ThinkPad firmware release %s "
9294 "doesn't match the known patterns\n",
9295 ec_fw_string);
9296 pr_notice("please report this to %s\n",
9297 TPACPI_MAIL);
Henrique de Moraes Holschuh050df102009-05-30 13:25:05 -03009298 }
Henrique de Moraes Holschuhd5a2f2f2007-07-18 23:45:42 -03009299 break;
Henrique de Moraes Holschuh49a13cd2006-11-24 11:47:13 -02009300 }
Henrique de Moraes Holschuh60eb0b32006-11-24 11:47:08 -02009301 }
Henrique de Moraes Holschuhd5a2f2f2007-07-18 23:45:42 -03009302
Henrique de Moraes Holschuhbf20e742008-07-21 09:15:51 -03009303 s = dmi_get_system_info(DMI_PRODUCT_VERSION);
Rasmus Villemoes40f5c772014-10-13 15:54:52 -07009304 if (s && !(strncasecmp(s, "ThinkPad", 8) && strncasecmp(s, "Lenovo", 6))) {
Henrique de Moraes Holschuhbf20e742008-07-21 09:15:51 -03009305 tp->model_str = kstrdup(s, GFP_KERNEL);
9306 if (!tp->model_str)
9307 return -ENOMEM;
Manoj Iyera4f46bb2012-08-06 18:15:37 -05009308 } else {
9309 s = dmi_get_system_info(DMI_BIOS_VENDOR);
Rasmus Villemoes40f5c772014-10-13 15:54:52 -07009310 if (s && !(strncasecmp(s, "Lenovo", 6))) {
Manoj Iyera4f46bb2012-08-06 18:15:37 -05009311 tp->model_str = kstrdup(s, GFP_KERNEL);
9312 if (!tp->model_str)
9313 return -ENOMEM;
9314 }
Henrique de Moraes Holschuhd5a2f2f2007-07-18 23:45:42 -03009315 }
Henrique de Moraes Holschuh8c74adb2008-04-26 01:02:19 -03009316
Henrique de Moraes Holschuhbf20e742008-07-21 09:15:51 -03009317 s = dmi_get_system_info(DMI_PRODUCT_NAME);
9318 tp->nummodel_str = kstrdup(s, GFP_KERNEL);
9319 if (s && !tp->nummodel_str)
9320 return -ENOMEM;
9321
9322 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009323}
9324
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03009325static int __init probe_for_thinkpad(void)
9326{
9327 int is_thinkpad;
9328
9329 if (acpi_disabled)
9330 return -ENODEV;
9331
Henrique de Moraes Holschuhe28393c2010-05-16 19:45:23 -03009332 /* It would be dangerous to run the driver in this case */
9333 if (!tpacpi_is_ibm() && !tpacpi_is_lenovo())
9334 return -ENODEV;
9335
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03009336 /*
9337 * Non-ancient models have better DMI tagging, but very old models
Henrique de Moraes Holschuhe675aba2009-09-12 15:22:13 -03009338 * don't. tpacpi_is_fw_known() is a cheat to help in that case.
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03009339 */
Henrique de Moraes Holschuhe675aba2009-09-12 15:22:13 -03009340 is_thinkpad = (thinkpad_id.model_str != NULL) ||
9341 (thinkpad_id.ec_model != 0) ||
9342 tpacpi_is_fw_known();
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03009343
Henrique de Moraes Holschuh437e4702010-05-16 19:45:43 -03009344 /* The EC handler is required */
9345 tpacpi_acpi_handle_locate("ec", TPACPI_ACPI_EC_HID, &ec_handle);
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03009346 if (!ec_handle) {
9347 if (is_thinkpad)
Joe Perches0978e012011-04-04 10:06:25 -07009348 pr_err("Not yet supported ThinkPad detected!\n");
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03009349 return -ENODEV;
9350 }
9351
Henrique de Moraes Holschuh0dcef772007-04-21 11:08:34 -03009352 if (!is_thinkpad && !force_load)
9353 return -ENODEV;
9354
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03009355 return 0;
9356}
9357
Henrique de Moraes Holschuh7a43f782010-05-16 19:45:31 -03009358static void __init thinkpad_acpi_init_banner(void)
9359{
Joe Perches0978e012011-04-04 10:06:25 -07009360 pr_info("%s v%s\n", TPACPI_DESC, TPACPI_VERSION);
9361 pr_info("%s\n", TPACPI_URL);
Henrique de Moraes Holschuh7a43f782010-05-16 19:45:31 -03009362
Joe Perches0978e012011-04-04 10:06:25 -07009363 pr_info("ThinkPad BIOS %s, EC %s\n",
Henrique de Moraes Holschuh7a43f782010-05-16 19:45:31 -03009364 (thinkpad_id.bios_version_str) ?
9365 thinkpad_id.bios_version_str : "unknown",
9366 (thinkpad_id.ec_version_str) ?
9367 thinkpad_id.ec_version_str : "unknown");
9368
9369 BUG_ON(!thinkpad_id.vendor);
9370
9371 if (thinkpad_id.model_str)
Joe Perches0978e012011-04-04 10:06:25 -07009372 pr_info("%s %s, model %s\n",
Henrique de Moraes Holschuh7a43f782010-05-16 19:45:31 -03009373 (thinkpad_id.vendor == PCI_VENDOR_ID_IBM) ?
9374 "IBM" : ((thinkpad_id.vendor ==
9375 PCI_VENDOR_ID_LENOVO) ?
9376 "Lenovo" : "Unknown vendor"),
9377 thinkpad_id.model_str,
9378 (thinkpad_id.nummodel_str) ?
9379 thinkpad_id.nummodel_str : "unknown");
9380}
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03009381
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03009382/* Module init, exit, parameters */
9383
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03009384static struct ibm_init_struct ibms_init[] __initdata = {
9385 {
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03009386 .data = &thinkpad_acpi_driver_data,
9387 },
9388 {
9389 .init = hotkey_init,
9390 .data = &hotkey_driver_data,
9391 },
9392 {
9393 .init = bluetooth_init,
9394 .data = &bluetooth_driver_data,
9395 },
9396 {
9397 .init = wan_init,
9398 .data = &wan_driver_data,
9399 },
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -02009400 {
9401 .init = uwb_init,
9402 .data = &uwb_driver_data,
9403 },
Henrique de Moraes Holschuhd7c1d172008-02-16 02:17:54 -02009404#ifdef CONFIG_THINKPAD_ACPI_VIDEO
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03009405 {
9406 .init = video_init,
Henrique de Moraes Holschuhb525c062010-02-25 22:22:22 -03009407 .base_procfs_mode = S_IRUSR,
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03009408 .data = &video_driver_data,
9409 },
Henrique de Moraes Holschuhd7c1d172008-02-16 02:17:54 -02009410#endif
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03009411 {
Pali Rohárbb28f3d52015-12-30 23:27:41 +01009412 .init = kbdlight_init,
9413 .data = &kbdlight_driver_data,
9414 },
9415 {
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03009416 .init = light_init,
9417 .data = &light_driver_data,
9418 },
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03009419 {
9420 .init = cmos_init,
9421 .data = &cmos_driver_data,
9422 },
9423 {
9424 .init = led_init,
9425 .data = &led_driver_data,
9426 },
9427 {
9428 .init = beep_init,
9429 .data = &beep_driver_data,
9430 },
9431 {
9432 .init = thermal_init,
9433 .data = &thermal_driver_data,
9434 },
9435 {
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03009436 .init = brightness_init,
9437 .data = &brightness_driver_data,
9438 },
9439 {
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02009440 .init = volume_init,
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03009441 .data = &volume_driver_data,
9442 },
9443 {
9444 .init = fan_init,
9445 .data = &fan_driver_data,
9446 },
David Henningsson420f9732013-10-16 23:10:31 +02009447 {
9448 .init = mute_led_init,
9449 .data = &mute_led_driver_data,
9450 },
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03009451};
9452
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03009453static int __init set_ibm_param(const char *val, struct kernel_param *kp)
9454{
9455 unsigned int i;
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03009456 struct ibm_struct *ibm;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03009457
Henrique de Moraes Holschuh59f91ff2007-11-18 09:18:29 -02009458 if (!kp || !kp->name || !val)
9459 return -EINVAL;
9460
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03009461 for (i = 0; i < ARRAY_SIZE(ibms_init); i++) {
9462 ibm = ibms_init[i].data;
Henrique de Moraes Holschuh59f91ff2007-11-18 09:18:29 -02009463 WARN_ON(ibm == NULL);
9464
9465 if (!ibm || !ibm->name)
9466 continue;
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03009467
9468 if (strcmp(ibm->name, kp->name) == 0 && ibm->write) {
9469 if (strlen(val) > sizeof(ibms_init[i].param) - 2)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03009470 return -ENOSPC;
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03009471 strcpy(ibms_init[i].param, val);
9472 strcat(ibms_init[i].param, ",");
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03009473 return 0;
9474 }
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03009475 }
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03009476
9477 return -EINVAL;
9478}
9479
Henrique de Moraes Holschuhb09c7222009-12-09 01:36:27 +00009480module_param(experimental, int, 0444);
Henrique de Moraes Holschuhf68080f2008-01-08 13:02:47 -02009481MODULE_PARM_DESC(experimental,
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02009482 "Enables experimental features when non-zero");
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03009483
Henrique de Moraes Holschuh132ce092007-04-21 11:08:30 -03009484module_param_named(debug, dbg_level, uint, 0);
Henrique de Moraes Holschuhf68080f2008-01-08 13:02:47 -02009485MODULE_PARM_DESC(debug, "Sets debug level bit-mask");
Henrique de Moraes Holschuh132ce092007-04-21 11:08:30 -03009486
Henrique de Moraes Holschuhb09c7222009-12-09 01:36:27 +00009487module_param(force_load, bool, 0444);
Henrique de Moraes Holschuhf68080f2008-01-08 13:02:47 -02009488MODULE_PARM_DESC(force_load,
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02009489 "Attempts to load the driver even on a "
9490 "mis-identified ThinkPad when true");
Henrique de Moraes Holschuh0dcef772007-04-21 11:08:34 -03009491
Henrique de Moraes Holschuhb09c7222009-12-09 01:36:27 +00009492module_param_named(fan_control, fan_control_allowed, bool, 0444);
Henrique de Moraes Holschuhf68080f2008-01-08 13:02:47 -02009493MODULE_PARM_DESC(fan_control,
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02009494 "Enables setting fan parameters features when true");
Henrique de Moraes Holschuhecf2a802007-04-27 22:00:09 -03009495
Henrique de Moraes Holschuhb09c7222009-12-09 01:36:27 +00009496module_param_named(brightness_mode, brightness_mode, uint, 0444);
Henrique de Moraes Holschuhf68080f2008-01-08 13:02:47 -02009497MODULE_PARM_DESC(brightness_mode,
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02009498 "Selects brightness control strategy: "
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00009499 "0=auto, 1=EC, 2=UCMS, 3=EC+NVRAM");
Henrique de Moraes Holschuh24d3b772007-07-18 23:45:43 -03009500
Henrique de Moraes Holschuhb09c7222009-12-09 01:36:27 +00009501module_param(brightness_enable, uint, 0444);
Henrique de Moraes Holschuhf68080f2008-01-08 13:02:47 -02009502MODULE_PARM_DESC(brightness_enable,
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02009503 "Enables backlight control when 1, disables when 0");
Henrique de Moraes Holschuh87cc5372007-10-30 18:02:07 -02009504
Henrique de Moraes Holschuhff850c32009-12-26 22:52:15 -02009505#ifdef CONFIG_THINKPAD_ACPI_ALSA_SUPPORT
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02009506module_param_named(volume_mode, volume_mode, uint, 0444);
9507MODULE_PARM_DESC(volume_mode,
9508 "Selects volume control strategy: "
9509 "0=auto, 1=EC, 2=N/A, 3=EC+NVRAM");
9510
Henrique de Moraes Holschuha112cee2009-12-15 21:51:09 -02009511module_param_named(volume_capabilities, volume_capabilities, uint, 0444);
9512MODULE_PARM_DESC(volume_capabilities,
9513 "Selects the mixer capabilites: "
9514 "0=auto, 1=volume and mute, 2=mute only");
9515
Henrique de Moraes Holschuhc7ac6292009-12-15 21:51:10 -02009516module_param_named(volume_control, volume_control_allowed, bool, 0444);
9517MODULE_PARM_DESC(volume_control,
9518 "Enables software override for the console audio "
9519 "control when true");
9520
Andy Lutomirski9a417ec2014-10-17 17:04:29 -07009521module_param_named(software_mute, software_mute_requested, bool, 0444);
9522MODULE_PARM_DESC(software_mute,
9523 "Request full software mute control");
9524
Henrique de Moraes Holschuh0d204c32009-12-15 21:51:11 -02009525/* ALSA module API parameters */
9526module_param_named(index, alsa_index, int, 0444);
9527MODULE_PARM_DESC(index, "ALSA index for the ACPI EC Mixer");
9528module_param_named(id, alsa_id, charp, 0444);
9529MODULE_PARM_DESC(id, "ALSA id for the ACPI EC Mixer");
9530module_param_named(enable, alsa_enable, bool, 0444);
9531MODULE_PARM_DESC(enable, "Enable the ALSA interface for the ACPI EC Mixer");
Henrique de Moraes Holschuhff850c32009-12-26 22:52:15 -02009532#endif /* CONFIG_THINKPAD_ACPI_ALSA_SUPPORT */
Henrique de Moraes Holschuh0d204c32009-12-15 21:51:11 -02009533
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02009534#define TPACPI_PARAM(feature) \
Henrique de Moraes Holschuhf68080f2008-01-08 13:02:47 -02009535 module_param_call(feature, set_ibm_param, NULL, NULL, 0); \
Henrique de Moraes Holschuhcbb14842008-02-16 02:17:50 -02009536 MODULE_PARM_DESC(feature, "Simulates thinkpad-acpi procfs command " \
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02009537 "at module load, see documentation")
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03009538
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02009539TPACPI_PARAM(hotkey);
9540TPACPI_PARAM(bluetooth);
9541TPACPI_PARAM(video);
9542TPACPI_PARAM(light);
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02009543TPACPI_PARAM(cmos);
9544TPACPI_PARAM(led);
9545TPACPI_PARAM(beep);
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02009546TPACPI_PARAM(brightness);
9547TPACPI_PARAM(volume);
9548TPACPI_PARAM(fan);
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03009549
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02009550#ifdef CONFIG_THINKPAD_ACPI_DEBUGFACILITIES
Henrique de Moraes Holschuhb09c7222009-12-09 01:36:27 +00009551module_param(dbg_wlswemul, uint, 0444);
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02009552MODULE_PARM_DESC(dbg_wlswemul, "Enables WLSW emulation");
9553module_param_named(wlsw_state, tpacpi_wlsw_emulstate, bool, 0);
9554MODULE_PARM_DESC(wlsw_state,
9555 "Initial state of the emulated WLSW switch");
9556
Henrique de Moraes Holschuhb09c7222009-12-09 01:36:27 +00009557module_param(dbg_bluetoothemul, uint, 0444);
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02009558MODULE_PARM_DESC(dbg_bluetoothemul, "Enables bluetooth switch emulation");
9559module_param_named(bluetooth_state, tpacpi_bluetooth_emulstate, bool, 0);
9560MODULE_PARM_DESC(bluetooth_state,
9561 "Initial state of the emulated bluetooth switch");
9562
Henrique de Moraes Holschuhb09c7222009-12-09 01:36:27 +00009563module_param(dbg_wwanemul, uint, 0444);
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02009564MODULE_PARM_DESC(dbg_wwanemul, "Enables WWAN switch emulation");
9565module_param_named(wwan_state, tpacpi_wwan_emulstate, bool, 0);
9566MODULE_PARM_DESC(wwan_state,
9567 "Initial state of the emulated WWAN switch");
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -02009568
Henrique de Moraes Holschuhb09c7222009-12-09 01:36:27 +00009569module_param(dbg_uwbemul, uint, 0444);
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -02009570MODULE_PARM_DESC(dbg_uwbemul, "Enables UWB switch emulation");
9571module_param_named(uwb_state, tpacpi_uwb_emulstate, bool, 0);
9572MODULE_PARM_DESC(uwb_state,
9573 "Initial state of the emulated UWB switch");
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02009574#endif
9575
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02009576static void thinkpad_acpi_module_exit(void)
9577{
9578 struct ibm_struct *ibm, *itmp;
9579
9580 tpacpi_lifecycle = TPACPI_LIFE_EXITING;
9581
9582 list_for_each_entry_safe_reverse(ibm, itmp,
9583 &tpacpi_all_drivers,
9584 all_drivers) {
9585 ibm_exit(ibm);
9586 }
9587
9588 dbg_printk(TPACPI_DBG_INIT, "finished subdriver exit path...\n");
9589
9590 if (tpacpi_inputdev) {
9591 if (tp_features.input_device_registered)
9592 input_unregister_device(tpacpi_inputdev);
9593 else
9594 input_free_device(tpacpi_inputdev);
Li Dongyang00d39592012-07-25 10:45:09 +10009595 kfree(hotkey_keycode_map);
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02009596 }
9597
9598 if (tpacpi_hwmon)
9599 hwmon_device_unregister(tpacpi_hwmon);
9600
9601 if (tp_features.sensors_pdev_attrs_registered)
Bjørn Mork5fb73bc2015-05-19 19:45:03 +02009602 device_remove_file(&tpacpi_sensors_pdev->dev, &dev_attr_name);
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02009603 if (tpacpi_sensors_pdev)
9604 platform_device_unregister(tpacpi_sensors_pdev);
9605 if (tpacpi_pdev)
9606 platform_device_unregister(tpacpi_pdev);
9607
9608 if (tp_features.sensors_pdrv_attrs_registered)
9609 tpacpi_remove_driver_attributes(&tpacpi_hwmon_pdriver.driver);
9610 if (tp_features.platform_drv_attrs_registered)
9611 tpacpi_remove_driver_attributes(&tpacpi_pdriver.driver);
9612
9613 if (tp_features.sensors_pdrv_registered)
9614 platform_driver_unregister(&tpacpi_hwmon_pdriver);
9615
9616 if (tp_features.platform_drv_registered)
9617 platform_driver_unregister(&tpacpi_pdriver);
9618
9619 if (proc_dir)
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02009620 remove_proc_entry(TPACPI_PROC_DIR, acpi_root_dir);
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02009621
Henrique de Moraes Holschuhe0e3c062008-04-26 01:02:28 -03009622 if (tpacpi_wq)
9623 destroy_workqueue(tpacpi_wq);
9624
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02009625 kfree(thinkpad_id.bios_version_str);
9626 kfree(thinkpad_id.ec_version_str);
9627 kfree(thinkpad_id.model_str);
Li Dongyangd2be15b2012-07-25 10:45:08 +10009628 kfree(thinkpad_id.nummodel_str);
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02009629}
9630
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02009631
Henrique de Moraes Holschuh1def7112007-04-21 11:08:27 -03009632static int __init thinkpad_acpi_module_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07009633{
9634 int ret, i;
9635
Henrique de Moraes Holschuh8fef5022007-09-23 11:39:02 -03009636 tpacpi_lifecycle = TPACPI_LIFE_INIT;
9637
Henrique de Moraes Holschuh54ae1502007-04-24 11:48:12 -03009638 /* Driver-level probe */
Henrique de Moraes Holschuhd5a2f2f2007-07-18 23:45:42 -03009639
Henrique de Moraes Holschuhbf20e742008-07-21 09:15:51 -03009640 ret = get_thinkpad_model_data(&thinkpad_id);
9641 if (ret) {
Joe Perches0978e012011-04-04 10:06:25 -07009642 pr_err("unable to get DMI data: %d\n", ret);
Henrique de Moraes Holschuhbf20e742008-07-21 09:15:51 -03009643 thinkpad_acpi_module_exit();
9644 return ret;
9645 }
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03009646 ret = probe_for_thinkpad();
Henrique de Moraes Holschuhd5a2f2f2007-07-18 23:45:42 -03009647 if (ret) {
9648 thinkpad_acpi_module_exit();
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03009649 return ret;
Henrique de Moraes Holschuhd5a2f2f2007-07-18 23:45:42 -03009650 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07009651
Henrique de Moraes Holschuh54ae1502007-04-24 11:48:12 -03009652 /* Driver initialization */
Henrique de Moraes Holschuhd5a2f2f2007-07-18 23:45:42 -03009653
Henrique de Moraes Holschuh7a43f782010-05-16 19:45:31 -03009654 thinkpad_acpi_init_banner();
9655 tpacpi_check_outdated_fw();
9656
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02009657 TPACPI_ACPIHANDLE_INIT(ecrd);
9658 TPACPI_ACPIHANDLE_INIT(ecwr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009659
Henrique de Moraes Holschuhe0e3c062008-04-26 01:02:28 -03009660 tpacpi_wq = create_singlethread_workqueue(TPACPI_WORKQUEUE_NAME);
9661 if (!tpacpi_wq) {
9662 thinkpad_acpi_module_exit();
9663 return -ENOMEM;
9664 }
9665
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02009666 proc_dir = proc_mkdir(TPACPI_PROC_DIR, acpi_root_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009667 if (!proc_dir) {
Joe Perches0978e012011-04-04 10:06:25 -07009668 pr_err("unable to create proc dir " TPACPI_PROC_DIR "\n");
Henrique de Moraes Holschuh1def7112007-04-21 11:08:27 -03009669 thinkpad_acpi_module_exit();
Linus Torvalds1da177e2005-04-16 15:20:36 -07009670 return -ENODEV;
9671 }
Borislav Deianov78f81cc2005-08-17 00:00:00 -04009672
Henrique de Moraes Holschuh54ae1502007-04-24 11:48:12 -03009673 ret = platform_driver_register(&tpacpi_pdriver);
9674 if (ret) {
Joe Perches0978e012011-04-04 10:06:25 -07009675 pr_err("unable to register main platform driver\n");
Henrique de Moraes Holschuh54ae1502007-04-24 11:48:12 -03009676 thinkpad_acpi_module_exit();
9677 return ret;
9678 }
Henrique de Moraes Holschuhac363932007-07-27 17:04:40 -03009679 tp_features.platform_drv_registered = 1;
9680
Henrique de Moraes Holschuh7fd40022007-09-25 06:38:03 -03009681 ret = platform_driver_register(&tpacpi_hwmon_pdriver);
9682 if (ret) {
Joe Perches0978e012011-04-04 10:06:25 -07009683 pr_err("unable to register hwmon platform driver\n");
Henrique de Moraes Holschuh7fd40022007-09-25 06:38:03 -03009684 thinkpad_acpi_module_exit();
9685 return ret;
9686 }
9687 tp_features.sensors_pdrv_registered = 1;
9688
Henrique de Moraes Holschuh176750d2007-04-24 11:48:13 -03009689 ret = tpacpi_create_driver_attributes(&tpacpi_pdriver.driver);
Henrique de Moraes Holschuh2369cc92007-09-23 11:39:07 -03009690 if (!ret) {
9691 tp_features.platform_drv_attrs_registered = 1;
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02009692 ret = tpacpi_create_driver_attributes(
9693 &tpacpi_hwmon_pdriver.driver);
Henrique de Moraes Holschuh2369cc92007-09-23 11:39:07 -03009694 }
Henrique de Moraes Holschuh176750d2007-04-24 11:48:13 -03009695 if (ret) {
Joe Perches0978e012011-04-04 10:06:25 -07009696 pr_err("unable to create sysfs driver attributes\n");
Henrique de Moraes Holschuh176750d2007-04-24 11:48:13 -03009697 thinkpad_acpi_module_exit();
9698 return ret;
9699 }
Henrique de Moraes Holschuh2369cc92007-09-23 11:39:07 -03009700 tp_features.sensors_pdrv_attrs_registered = 1;
Henrique de Moraes Holschuh176750d2007-04-24 11:48:13 -03009701
Henrique de Moraes Holschuh54ae1502007-04-24 11:48:12 -03009702
9703 /* Device initialization */
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02009704 tpacpi_pdev = platform_device_register_simple(TPACPI_DRVR_NAME, -1,
Henrique de Moraes Holschuh54ae1502007-04-24 11:48:12 -03009705 NULL, 0);
9706 if (IS_ERR(tpacpi_pdev)) {
9707 ret = PTR_ERR(tpacpi_pdev);
9708 tpacpi_pdev = NULL;
Joe Perches0978e012011-04-04 10:06:25 -07009709 pr_err("unable to register platform device\n");
Henrique de Moraes Holschuh54ae1502007-04-24 11:48:12 -03009710 thinkpad_acpi_module_exit();
9711 return ret;
9712 }
Henrique de Moraes Holschuh7fd40022007-09-25 06:38:03 -03009713 tpacpi_sensors_pdev = platform_device_register_simple(
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02009714 TPACPI_HWMON_DRVR_NAME,
9715 -1, NULL, 0);
Henrique de Moraes Holschuh7fd40022007-09-25 06:38:03 -03009716 if (IS_ERR(tpacpi_sensors_pdev)) {
9717 ret = PTR_ERR(tpacpi_sensors_pdev);
9718 tpacpi_sensors_pdev = NULL;
Joe Perches0978e012011-04-04 10:06:25 -07009719 pr_err("unable to register hwmon platform device\n");
Henrique de Moraes Holschuh7fd40022007-09-25 06:38:03 -03009720 thinkpad_acpi_module_exit();
9721 return ret;
9722 }
Bjørn Mork5fb73bc2015-05-19 19:45:03 +02009723 ret = device_create_file(&tpacpi_sensors_pdev->dev, &dev_attr_name);
Henrique de Moraes Holschuh7fd40022007-09-25 06:38:03 -03009724 if (ret) {
Joe Perches0978e012011-04-04 10:06:25 -07009725 pr_err("unable to create sysfs hwmon device attributes\n");
Henrique de Moraes Holschuh7fd40022007-09-25 06:38:03 -03009726 thinkpad_acpi_module_exit();
9727 return ret;
9728 }
9729 tp_features.sensors_pdev_attrs_registered = 1;
9730 tpacpi_hwmon = hwmon_device_register(&tpacpi_sensors_pdev->dev);
Henrique de Moraes Holschuh54ae1502007-04-24 11:48:12 -03009731 if (IS_ERR(tpacpi_hwmon)) {
9732 ret = PTR_ERR(tpacpi_hwmon);
9733 tpacpi_hwmon = NULL;
Joe Perches0978e012011-04-04 10:06:25 -07009734 pr_err("unable to register hwmon device\n");
Henrique de Moraes Holschuh54ae1502007-04-24 11:48:12 -03009735 thinkpad_acpi_module_exit();
9736 return ret;
9737 }
Henrique de Moraes Holschuh8523ed62007-09-23 11:39:01 -03009738 mutex_init(&tpacpi_inputdev_send_mutex);
Henrique de Moraes Holschuh7f5d1cd2007-07-18 23:45:34 -03009739 tpacpi_inputdev = input_allocate_device();
9740 if (!tpacpi_inputdev) {
Henrique de Moraes Holschuh7f5d1cd2007-07-18 23:45:34 -03009741 thinkpad_acpi_module_exit();
9742 return -ENOMEM;
9743 } else {
9744 /* Prepare input device, but don't register */
9745 tpacpi_inputdev->name = "ThinkPad Extra Buttons";
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02009746 tpacpi_inputdev->phys = TPACPI_DRVR_NAME "/input0";
Henrique de Moraes Holschuh7f5d1cd2007-07-18 23:45:34 -03009747 tpacpi_inputdev->id.bustype = BUS_HOST;
Henrique de Moraes Holschuhe28393c2010-05-16 19:45:23 -03009748 tpacpi_inputdev->id.vendor = thinkpad_id.vendor;
Henrique de Moraes Holschuh7f5d1cd2007-07-18 23:45:34 -03009749 tpacpi_inputdev->id.product = TPACPI_HKEY_INPUT_PRODUCT;
9750 tpacpi_inputdev->id.version = TPACPI_HKEY_INPUT_VERSION;
Henrique de Moraes Holschuhd112ef92009-12-09 01:36:26 +00009751 tpacpi_inputdev->dev.parent = &tpacpi_pdev->dev;
Henrique de Moraes Holschuh7f5d1cd2007-07-18 23:45:34 -03009752 }
Henrique de Moraes Holschuh77775832010-05-16 19:45:33 -03009753
9754 /* Init subdriver dependencies */
9755 tpacpi_detect_brightness_capabilities();
9756
9757 /* Init subdrivers */
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03009758 for (i = 0; i < ARRAY_SIZE(ibms_init); i++) {
9759 ret = ibm_init(&ibms_init[i]);
9760 if (ret >= 0 && *ibms_init[i].param)
9761 ret = ibms_init[i].data->write(ibms_init[i].param);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009762 if (ret < 0) {
Henrique de Moraes Holschuh1def7112007-04-21 11:08:27 -03009763 thinkpad_acpi_module_exit();
Linus Torvalds1da177e2005-04-16 15:20:36 -07009764 return ret;
9765 }
9766 }
Henrique de Moraes Holschuhb589ea42010-02-25 21:28:58 -03009767
9768 tpacpi_lifecycle = TPACPI_LIFE_RUNNING;
9769
Henrique de Moraes Holschuh7f5d1cd2007-07-18 23:45:34 -03009770 ret = input_register_device(tpacpi_inputdev);
9771 if (ret < 0) {
Joe Perches0978e012011-04-04 10:06:25 -07009772 pr_err("unable to register input device\n");
Henrique de Moraes Holschuh7f5d1cd2007-07-18 23:45:34 -03009773 thinkpad_acpi_module_exit();
9774 return ret;
9775 } else {
9776 tp_features.input_device_registered = 1;
9777 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07009778
9779 return 0;
9780}
9781
Henrique de Moraes Holschuh95e57ab2008-04-26 01:02:22 -03009782MODULE_ALIAS(TPACPI_DRVR_SHORTNAME);
9783
Henrique de Moraes Holschuhf68080f2008-01-08 13:02:47 -02009784/*
Henrique de Moraes Holschuh922fe092009-04-14 02:44:13 +00009785 * This will autoload the driver in almost every ThinkPad
9786 * in widespread use.
9787 *
9788 * Only _VERY_ old models, like the 240, 240x and 570 lack
9789 * the HKEY event interface.
9790 */
9791MODULE_DEVICE_TABLE(acpi, ibm_htk_device_ids);
9792
9793/*
Henrique de Moraes Holschuhf68080f2008-01-08 13:02:47 -02009794 * DMI matching for module autoloading
9795 *
9796 * See http://thinkwiki.org/wiki/List_of_DMI_IDs
9797 * See http://thinkwiki.org/wiki/BIOS_Upgrade_Downloads
9798 *
9799 * Only models listed in thinkwiki will be supported, so add yours
9800 * if it is not there yet.
9801 */
9802#define IBM_BIOS_MODULE_ALIAS(__type) \
Mathieu Chouquet-Stringerb36a50f2009-03-14 16:35:26 +01009803 MODULE_ALIAS("dmi:bvnIBM:bvr" __type "ET??WW*")
Henrique de Moraes Holschuhf68080f2008-01-08 13:02:47 -02009804
Henrique de Moraes Holschuhf68080f2008-01-08 13:02:47 -02009805/* Ancient thinkpad BIOSes have to be identified by
9806 * BIOS type or model number, and there are far less
9807 * BIOS types than model numbers... */
Henrique de Moraes Holschuh922fe092009-04-14 02:44:13 +00009808IBM_BIOS_MODULE_ALIAS("I[MU]"); /* 570, 570e */
Henrique de Moraes Holschuhf68080f2008-01-08 13:02:47 -02009809
Henrique de Moraes Holschuhf68f53a2009-04-14 02:44:12 +00009810MODULE_AUTHOR("Borislav Deianov <borislav@users.sf.net>");
9811MODULE_AUTHOR("Henrique de Moraes Holschuh <hmh@hmh.eng.br>");
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02009812MODULE_DESCRIPTION(TPACPI_DESC);
9813MODULE_VERSION(TPACPI_VERSION);
Henrique de Moraes Holschuhf68080f2008-01-08 13:02:47 -02009814MODULE_LICENSE("GPL");
9815
Henrique de Moraes Holschuh1def7112007-04-21 11:08:27 -03009816module_init(thinkpad_acpi_module_init);
9817module_exit(thinkpad_acpi_module_exit);