blob: 6fb540d02dac87d02b489836359b4ec1e3676fba [file] [log] [blame]
Thomas Gleixner16216332019-05-19 15:51:31 +02001// SPDX-License-Identifier: GPL-2.0-or-later
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
Henrique de Moraes Holschuh643f12d2007-03-29 01:58:43 -03003 * thinkpad_acpi.c - ThinkPad ACPI Extras
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 *
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>
Borislav Deianov78f81cc2005-08-17 00:00:00 -04007 */
8
Joe Perches0978e012011-04-04 10:06:25 -07009#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
10
Ognjen Galic2801b962018-02-07 15:58:44 +010011#define TPACPI_VERSION "0.26"
Stanislav Fomichev6b99e352017-06-20 20:45:13 -070012#define TPACPI_SYSFS_VERSION 0x030000
Borislav Deianov78f81cc2005-08-17 00:00:00 -040013
14/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070015 * Changelog:
Henrique de Moraes Holschuh4b45cc02008-01-08 13:02:46 -020016 * 2007-10-20 changelog trimmed down
17 *
Henrique de Moraes Holschuh643f12d2007-03-29 01:58:43 -030018 * 2007-03-27 0.14 renamed to thinkpad_acpi and moved to
19 * drivers/misc.
Henrique de Moraes Holschuhf9ff43a2006-11-25 16:37:38 -020020 *
21 * 2006-11-22 0.13 new maintainer
22 * changelog now lives in git commit history, and will
23 * not be updated further in-file.
Henrique de Moraes Holschuh837ca6d2007-03-23 17:33:54 -030024 *
Borislav Deianov78f81cc2005-08-17 00:00:00 -040025 * 2005-03-17 0.11 support for 600e, 770x
26 * thanks to Jamie Lentin <lentinj@dial.pipex.com>
Henrique de Moraes Holschuh4b45cc02008-01-08 13:02:46 -020027 *
28 * 2005-01-16 0.9 use MODULE_VERSION
Borislav Deianov78f81cc2005-08-17 00:00:00 -040029 * thanks to Henrik Brix Andersen <brix@gentoo.org>
30 * fix parameter passing on module loading
31 * thanks to Rusty Russell <rusty@rustcorp.com.au>
32 * thanks to Jim Radford <radford@blackbean.org>
33 * 2004-11-08 0.8 fix init error case, don't return from a macro
34 * thanks to Chris Wright <chrisw@osdl.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -070035 */
36
Henrique de Moraes Holschuh0c780392008-01-08 13:02:43 -020037#include <linux/kernel.h>
38#include <linux/module.h>
39#include <linux/init.h>
40#include <linux/types.h>
41#include <linux/string.h>
42#include <linux/list.h>
43#include <linux/mutex.h>
Henrique de Moraes Holschuh73a94d82009-04-04 04:25:47 +000044#include <linux/sched.h>
Eric W. Biederman7a360942017-09-26 12:45:33 -050045#include <linux/sched/signal.h>
Henrique de Moraes Holschuh0c780392008-01-08 13:02:43 -020046#include <linux/kthread.h>
47#include <linux/freezer.h>
48#include <linux/delay.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090049#include <linux/slab.h>
Henrique de Moraes Holschuh0c780392008-01-08 13:02:43 -020050#include <linux/nvram.h>
51#include <linux/proc_fs.h>
Alexey Dobriyan887965e2009-12-15 21:51:12 -020052#include <linux/seq_file.h>
Henrique de Moraes Holschuh0c780392008-01-08 13:02:43 -020053#include <linux/sysfs.h>
54#include <linux/backlight.h>
Ognjen Galic2801b962018-02-07 15:58:44 +010055#include <linux/bitops.h>
Henrique de Moraes Holschuh0c780392008-01-08 13:02:43 -020056#include <linux/fb.h>
57#include <linux/platform_device.h>
58#include <linux/hwmon.h>
59#include <linux/hwmon-sysfs.h>
60#include <linux/input.h>
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -030061#include <linux/leds.h>
Henrique de Moraes Holschuh0e74dc22008-07-21 09:15:51 -030062#include <linux/rfkill.h>
Henrique de Moraes Holschuh0c780392008-01-08 13:02:43 -020063#include <linux/dmi.h>
64#include <linux/jiffies.h>
65#include <linux/workqueue.h>
Lv Zheng8b484632013-12-03 08:49:16 +080066#include <linux/acpi.h>
Jiaxun Yangf7db8392019-03-07 17:37:16 +080067#include <linux/pci.h>
Ognjen Galic2801b962018-02-07 15:58:44 +010068#include <linux/power_supply.h>
Henrique de Moraes Holschuh0d204c32009-12-15 21:51:11 -020069#include <sound/core.h>
70#include <sound/control.h>
71#include <sound/initval.h>
Linus Torvalds7c0f6ba2016-12-24 11:46:01 -080072#include <linux/uaccess.h>
Ognjen Galic2801b962018-02-07 15:58:44 +010073#include <acpi/battery.h>
Hans de Goedeb33c6ce2015-06-16 16:28:10 +020074#include <acpi/video.h>
Henrique de Moraes Holschuh0c780392008-01-08 13:02:43 -020075
76/* ThinkPad CMOS commands */
77#define TP_CMOS_VOLUME_DOWN 0
78#define TP_CMOS_VOLUME_UP 1
79#define TP_CMOS_VOLUME_MUTE 2
80#define TP_CMOS_BRIGHTNESS_UP 4
81#define TP_CMOS_BRIGHTNESS_DOWN 5
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -030082#define TP_CMOS_THINKLIGHT_ON 12
83#define TP_CMOS_THINKLIGHT_OFF 13
Henrique de Moraes Holschuh0c780392008-01-08 13:02:43 -020084
85/* NVRAM Addresses */
86enum tp_nvram_addr {
87 TP_NVRAM_ADDR_HK2 = 0x57,
88 TP_NVRAM_ADDR_THINKLIGHT = 0x58,
89 TP_NVRAM_ADDR_VIDEO = 0x59,
90 TP_NVRAM_ADDR_BRIGHTNESS = 0x5e,
91 TP_NVRAM_ADDR_MIXER = 0x60,
92};
93
94/* NVRAM bit masks */
95enum {
96 TP_NVRAM_MASK_HKT_THINKPAD = 0x08,
97 TP_NVRAM_MASK_HKT_ZOOM = 0x20,
98 TP_NVRAM_MASK_HKT_DISPLAY = 0x40,
99 TP_NVRAM_MASK_HKT_HIBERNATE = 0x80,
100 TP_NVRAM_MASK_THINKLIGHT = 0x10,
101 TP_NVRAM_MASK_HKT_DISPEXPND = 0x30,
102 TP_NVRAM_MASK_HKT_BRIGHTNESS = 0x20,
103 TP_NVRAM_MASK_LEVEL_BRIGHTNESS = 0x0f,
104 TP_NVRAM_POS_LEVEL_BRIGHTNESS = 0,
105 TP_NVRAM_MASK_MUTE = 0x40,
106 TP_NVRAM_MASK_HKT_VOLUME = 0x80,
107 TP_NVRAM_MASK_LEVEL_VOLUME = 0x0f,
108 TP_NVRAM_POS_LEVEL_VOLUME = 0,
109};
110
Henrique de Moraes Holschuh5d756db2010-05-16 19:45:28 -0300111/* Misc NVRAM-related */
112enum {
113 TP_NVRAM_LEVEL_VOLUME_MAX = 14,
114};
115
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -0200116/* ACPI HIDs */
Manoj Iyer9fbdaeb2011-05-08 18:04:29 -0400117#define TPACPI_ACPI_IBM_HKEY_HID "IBM0068"
118#define TPACPI_ACPI_LENOVO_HKEY_HID "LEN0068"
Hui Wanga3c42a42016-11-08 16:13:23 +0800119#define TPACPI_ACPI_LENOVO_HKEY_V2_HID "LEN0268"
Henrique de Moraes Holschuh437e4702010-05-16 19:45:43 -0300120#define TPACPI_ACPI_EC_HID "PNP0C09"
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -0200121
122/* Input IDs */
123#define TPACPI_HKEY_INPUT_PRODUCT 0x5054 /* "TP" */
124#define TPACPI_HKEY_INPUT_VERSION 0x4101
125
Henrique de Moraes Holschuh153f8222009-01-11 03:01:01 -0200126/* ACPI \WGSV commands */
127enum {
128 TP_ACPI_WGSV_GET_STATE = 0x01, /* Get state information */
129 TP_ACPI_WGSV_PWR_ON_ON_RESUME = 0x02, /* Resume WWAN powered on */
130 TP_ACPI_WGSV_PWR_OFF_ON_RESUME = 0x03, /* Resume WWAN powered off */
131 TP_ACPI_WGSV_SAVE_STATE = 0x04, /* Save state for S4/S5 */
132};
133
134/* TP_ACPI_WGSV_GET_STATE bits */
135enum {
136 TP_ACPI_WGSV_STATE_WWANEXIST = 0x0001, /* WWAN hw available */
137 TP_ACPI_WGSV_STATE_WWANPWR = 0x0002, /* WWAN radio enabled */
138 TP_ACPI_WGSV_STATE_WWANPWRRES = 0x0004, /* WWAN state at resume */
139 TP_ACPI_WGSV_STATE_WWANBIOSOFF = 0x0008, /* WWAN disabled in BIOS */
140 TP_ACPI_WGSV_STATE_BLTHEXIST = 0x0001, /* BLTH hw available */
141 TP_ACPI_WGSV_STATE_BLTHPWR = 0x0002, /* BLTH radio enabled */
142 TP_ACPI_WGSV_STATE_BLTHPWRRES = 0x0004, /* BLTH state at resume */
143 TP_ACPI_WGSV_STATE_BLTHBIOSOFF = 0x0008, /* BLTH disabled in BIOS */
144 TP_ACPI_WGSV_STATE_UWBEXIST = 0x0010, /* UWB hw available */
145 TP_ACPI_WGSV_STATE_UWBPWR = 0x0020, /* UWB radio enabled */
146};
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -0200147
Henrique de Moraes Holschuh67bcae62009-09-20 14:09:27 -0300148/* HKEY events */
149enum tpacpi_hkey_event_t {
150 /* Hotkey-related */
151 TP_HKEY_EV_HOTKEY_BASE = 0x1001, /* first hotkey (FN+F1) */
152 TP_HKEY_EV_BRGHT_UP = 0x1010, /* Brightness up */
153 TP_HKEY_EV_BRGHT_DOWN = 0x1011, /* Brightness down */
Hans de Goedec685e202017-02-09 16:44:13 +0100154 TP_HKEY_EV_KBD_LIGHT = 0x1012, /* Thinklight/kbd backlight */
Henrique de Moraes Holschuh67bcae62009-09-20 14:09:27 -0300155 TP_HKEY_EV_VOL_UP = 0x1015, /* Volume up or unmute */
156 TP_HKEY_EV_VOL_DOWN = 0x1016, /* Volume down or unmute */
157 TP_HKEY_EV_VOL_MUTE = 0x1017, /* Mixer output mute */
158
159 /* Reasons for waking up from S3/S4 */
160 TP_HKEY_EV_WKUP_S3_UNDOCK = 0x2304, /* undock requested, S3 */
161 TP_HKEY_EV_WKUP_S4_UNDOCK = 0x2404, /* undock requested, S4 */
162 TP_HKEY_EV_WKUP_S3_BAYEJ = 0x2305, /* bay ejection req, S3 */
163 TP_HKEY_EV_WKUP_S4_BAYEJ = 0x2405, /* bay ejection req, S4 */
164 TP_HKEY_EV_WKUP_S3_BATLOW = 0x2313, /* battery empty, S3 */
165 TP_HKEY_EV_WKUP_S4_BATLOW = 0x2413, /* battery empty, S4 */
166
167 /* Auto-sleep after eject request */
168 TP_HKEY_EV_BAYEJ_ACK = 0x3003, /* bay ejection complete */
169 TP_HKEY_EV_UNDOCK_ACK = 0x4003, /* undock complete */
170
171 /* Misc bay events */
172 TP_HKEY_EV_OPTDRV_EJ = 0x3006, /* opt. drive tray ejected */
Henrique de Moraes Holschuha50245a2011-06-05 16:22:35 -0300173 TP_HKEY_EV_HOTPLUG_DOCK = 0x4010, /* docked into hotplug dock
174 or port replicator */
175 TP_HKEY_EV_HOTPLUG_UNDOCK = 0x4011, /* undocked from hotplug
176 dock or port replicator */
Henrique de Moraes Holschuh67bcae62009-09-20 14:09:27 -0300177
178 /* User-interface events */
179 TP_HKEY_EV_LID_CLOSE = 0x5001, /* laptop lid closed */
180 TP_HKEY_EV_LID_OPEN = 0x5002, /* laptop lid opened */
181 TP_HKEY_EV_TABLET_TABLET = 0x5009, /* tablet swivel up */
182 TP_HKEY_EV_TABLET_NOTEBOOK = 0x500a, /* tablet swivel down */
Lyudeb03f4d42016-11-11 15:15:03 -0500183 TP_HKEY_EV_TABLET_CHANGED = 0x60c0, /* X1 Yoga (2016):
184 * enter/leave tablet mode
185 */
Henrique de Moraes Holschuh67bcae62009-09-20 14:09:27 -0300186 TP_HKEY_EV_PEN_INSERTED = 0x500b, /* tablet pen inserted */
187 TP_HKEY_EV_PEN_REMOVED = 0x500c, /* tablet pen removed */
188 TP_HKEY_EV_BRGHT_CHANGED = 0x5010, /* backlight control event */
189
Henrique de Moraes Holschuh2d43f672011-06-05 16:22:34 -0300190 /* Key-related user-interface events */
191 TP_HKEY_EV_KEY_NUMLOCK = 0x6000, /* NumLock key pressed */
192 TP_HKEY_EV_KEY_FN = 0x6005, /* Fn key pressed? E420 */
Xavier Naveira67ab6242015-02-10 08:45:18 +0100193 TP_HKEY_EV_KEY_FN_ESC = 0x6060, /* Fn+Esc key pressed X240 */
Henrique de Moraes Holschuh2d43f672011-06-05 16:22:34 -0300194
Henrique de Moraes Holschuh67bcae62009-09-20 14:09:27 -0300195 /* Thermal events */
196 TP_HKEY_EV_ALARM_BAT_HOT = 0x6011, /* battery too hot */
197 TP_HKEY_EV_ALARM_BAT_XHOT = 0x6012, /* battery critically hot */
198 TP_HKEY_EV_ALARM_SENSOR_HOT = 0x6021, /* sensor too hot */
199 TP_HKEY_EV_ALARM_SENSOR_XHOT = 0x6022, /* sensor critically hot */
Henrique de Moraes Holschuh6e6bc5f62018-04-24 16:56:03 -0300200 TP_HKEY_EV_THM_TABLE_CHANGED = 0x6030, /* windows; thermal table changed */
201 TP_HKEY_EV_THM_CSM_COMPLETED = 0x6032, /* windows; thermal control set
202 * command completed. Related to
203 * AML DYTC */
204 TP_HKEY_EV_THM_TRANSFM_CHANGED = 0x60F0, /* windows; thermal transformation
205 * changed. Related to AML GMTS */
Henrique de Moraes Holschuh67bcae62009-09-20 14:09:27 -0300206
Richard Hartmann6f62bc32012-12-29 22:51:49 +0100207 /* AC-related events */
208 TP_HKEY_EV_AC_CHANGED = 0x6040, /* AC status changed */
Henrique de Moraes Holschuh2d43f672011-06-05 16:22:34 -0300209
David Herrmann587d8622018-01-12 12:04:45 +0100210 /* Further user-interface events */
211 TP_HKEY_EV_PALM_DETECTED = 0x60b0, /* palm hoveres keyboard */
212 TP_HKEY_EV_PALM_UNDETECTED = 0x60b1, /* palm removed */
213
Henrique de Moraes Holschuh67bcae62009-09-20 14:09:27 -0300214 /* Misc */
215 TP_HKEY_EV_RFKILL_CHANGED = 0x7000, /* rfkill switch changed */
216};
217
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -0200218/****************************************************************************
219 * Main driver
220 */
221
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -0200222#define TPACPI_NAME "thinkpad"
223#define TPACPI_DESC "ThinkPad ACPI Extras"
224#define TPACPI_FILE TPACPI_NAME "_acpi"
225#define TPACPI_URL "http://ibm-acpi.sf.net/"
226#define TPACPI_MAIL "ibm-acpi-devel@lists.sourceforge.net"
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -0200227
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -0200228#define TPACPI_PROC_DIR "ibm"
229#define TPACPI_ACPI_EVENT_PREFIX "ibm"
230#define TPACPI_DRVR_NAME TPACPI_FILE
Henrique de Moraes Holschuh95e57ab2008-04-26 01:02:22 -0300231#define TPACPI_DRVR_SHORTNAME "tpacpi"
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -0200232#define TPACPI_HWMON_DRVR_NAME TPACPI_NAME "_hwmon"
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -0200233
Henrique de Moraes Holschuh95e57ab2008-04-26 01:02:22 -0300234#define TPACPI_NVRAM_KTHREAD_NAME "ktpacpi_nvramd"
Henrique de Moraes Holschuhe0e3c062008-04-26 01:02:28 -0300235#define TPACPI_WORKQUEUE_NAME "ktpacpid"
Henrique de Moraes Holschuh95e57ab2008-04-26 01:02:22 -0300236
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -0200237#define TPACPI_MAX_ACPI_ARGS 3
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -0200238
Henrique de Moraes Holschuh7ff8d622009-04-04 04:25:46 +0000239/* Debugging printk groups */
Henrique de Moraes Holschuh0c780392008-01-08 13:02:43 -0200240#define TPACPI_DBG_ALL 0xffff
Henrique de Moraes Holschuh73a94d82009-04-04 04:25:47 +0000241#define TPACPI_DBG_DISCLOSETASK 0x8000
Henrique de Moraes Holschuh0c780392008-01-08 13:02:43 -0200242#define TPACPI_DBG_INIT 0x0001
243#define TPACPI_DBG_EXIT 0x0002
Henrique de Moraes Holschuhbee4cd9b2009-04-04 04:25:50 +0000244#define TPACPI_DBG_RFKILL 0x0004
Henrique de Moraes Holschuh56e2c202009-04-04 04:25:51 +0000245#define TPACPI_DBG_HKEY 0x0008
Henrique de Moraes Holschuh74a60c02009-04-04 04:25:52 +0000246#define TPACPI_DBG_FAN 0x0010
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +0000247#define TPACPI_DBG_BRGHT 0x0020
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -0200248#define TPACPI_DBG_MIXER 0x0040
Henrique de Moraes Holschuh0c780392008-01-08 13:02:43 -0200249
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -0200250#define onoff(status, bit) ((status) & (1 << (bit)) ? "on" : "off")
251#define enabled(status, bit) ((status) & (1 << (bit)) ? "enabled" : "disabled")
252#define strlencmp(a, b) (strncmp((a), (b), strlen(b)))
Henrique de Moraes Holschuh0c780392008-01-08 13:02:43 -0200253
Henrique de Moraes Holschuh0c780392008-01-08 13:02:43 -0200254
255/****************************************************************************
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -0200256 * Driver-wide structs and misc. variables
Henrique de Moraes Holschuh0c780392008-01-08 13:02:43 -0200257 */
258
259struct ibm_struct;
260
261struct tp_acpi_drv_struct {
262 const struct acpi_device_id *hid;
263 struct acpi_driver *driver;
264
265 void (*notify) (struct ibm_struct *, u32);
266 acpi_handle *handle;
267 u32 type;
268 struct acpi_device *device;
269};
270
271struct ibm_struct {
272 char *name;
273
Alexey Dobriyan887965e2009-12-15 21:51:12 -0200274 int (*read) (struct seq_file *);
Henrique de Moraes Holschuh0c780392008-01-08 13:02:43 -0200275 int (*write) (char *);
276 void (*exit) (void);
277 void (*resume) (void);
Rafael J. Wysockifd3c3a42012-06-27 23:18:44 +0200278 void (*suspend) (void);
Henrique de Moraes Holschuh90d9d3c2009-01-11 03:01:02 -0200279 void (*shutdown) (void);
Henrique de Moraes Holschuh0c780392008-01-08 13:02:43 -0200280
281 struct list_head all_drivers;
282
283 struct tp_acpi_drv_struct *acpi;
284
285 struct {
286 u8 acpi_driver_registered:1;
287 u8 acpi_notify_installed:1;
288 u8 proc_created:1;
289 u8 init_called:1;
290 u8 experimental:1;
291 } flags;
292};
293
294struct ibm_init_struct {
295 char param[32];
296
297 int (*init) (struct ibm_init_struct *);
Al Virod161a132011-07-24 03:36:29 -0400298 umode_t base_procfs_mode;
Henrique de Moraes Holschuh0c780392008-01-08 13:02:43 -0200299 struct ibm_struct *data;
300};
301
302static struct {
Henrique de Moraes Holschuh0c780392008-01-08 13:02:43 -0200303 u32 bluetooth:1;
304 u32 hotkey:1;
305 u32 hotkey_mask:1;
306 u32 hotkey_wlsw:1;
Lyudeb3180022016-11-11 15:15:02 -0500307 enum {
308 TP_HOTKEY_TABLET_NONE = 0,
309 TP_HOTKEY_TABLET_USES_MHKG,
Benjamin Bergdda3ec02017-09-15 15:20:49 +0200310 TP_HOTKEY_TABLET_USES_GMMS,
Lyudeb3180022016-11-11 15:15:02 -0500311 } hotkey_tablet;
Pali Rohárbb28f3d52015-12-30 23:27:41 +0100312 u32 kbdlight:1;
Henrique de Moraes Holschuh0c780392008-01-08 13:02:43 -0200313 u32 light:1;
314 u32 light_status:1;
Henrique de Moraes Holschuhb5972792008-04-26 01:02:17 -0300315 u32 bright_acpimode:1;
Henrique de Moraes Holschuh77775832010-05-16 19:45:33 -0300316 u32 bright_unkfw:1;
Henrique de Moraes Holschuh0c780392008-01-08 13:02:43 -0200317 u32 wan:1;
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -0200318 u32 uwb:1;
Henrique de Moraes Holschuh0c780392008-01-08 13:02:43 -0200319 u32 fan_ctrl_status_undef:1;
Henrique de Moraes Holschuhd7377242009-06-18 00:40:17 -0300320 u32 second_fan:1;
Lars Hofhansl14232c62020-04-23 14:57:09 -0700321 u32 second_fan_ctl:1;
Henrique de Moraes Holschuh60201732009-05-30 13:25:07 -0300322 u32 beep_needs_two_args:1;
Henrique de Moraes Holschuha112cee2009-12-15 21:51:09 -0200323 u32 mixer_no_level_control:1;
Jouke Witteveen1a32ebb2018-07-11 11:45:36 +0200324 u32 battery_force_primary:1;
Henrique de Moraes Holschuh0c780392008-01-08 13:02:43 -0200325 u32 input_device_registered:1;
326 u32 platform_drv_registered:1;
327 u32 platform_drv_attrs_registered:1;
328 u32 sensors_pdrv_registered:1;
329 u32 sensors_pdrv_attrs_registered:1;
330 u32 sensors_pdev_attrs_registered:1;
331 u32 hotkey_poll_active:1;
Bastien Noceraf23a5bc2015-03-02 14:45:16 +0100332 u32 has_adaptive_kbd:1;
Henrique de Moraes Holschuh0c780392008-01-08 13:02:43 -0200333} tp_features;
334
Henrique de Moraes Holschuh92889022008-04-26 01:02:18 -0300335static struct {
336 u16 hotkey_mask_ff:1;
Henrique de Moraes Holschuhc7ac6292009-12-15 21:51:10 -0200337 u16 volume_ctrl_forbidden:1;
Henrique de Moraes Holschuh92889022008-04-26 01:02:18 -0300338} tp_warned;
339
Henrique de Moraes Holschuh0c780392008-01-08 13:02:43 -0200340struct thinkpad_id_data {
341 unsigned int vendor; /* ThinkPad vendor:
342 * PCI_VENDOR_ID_IBM/PCI_VENDOR_ID_LENOVO */
343
344 char *bios_version_str; /* Something like 1ZET51WW (1.03z) */
345 char *ec_version_str; /* Something like 1ZHT51WW-1.04a */
346
Jouke Witteveen846a4162018-07-11 11:44:41 +0200347 u32 bios_model; /* 1Y = 0x3159, 0 = unknown */
348 u32 ec_model;
349 u16 bios_release; /* 1ZETK1WW = 0x4b31, 0 = unknown */
Henrique de Moraes Holschuh050df102009-05-30 13:25:05 -0300350 u16 ec_release;
Henrique de Moraes Holschuh0c780392008-01-08 13:02:43 -0200351
Henrique de Moraes Holschuh8c74adb2008-04-26 01:02:19 -0300352 char *model_str; /* ThinkPad T43 */
353 char *nummodel_str; /* 9384A9C for a 9384-A9C model */
Henrique de Moraes Holschuh0c780392008-01-08 13:02:43 -0200354};
Henrique de Moraes Holschuh0c780392008-01-08 13:02:43 -0200355static struct thinkpad_id_data thinkpad_id;
356
Henrique de Moraes Holschuh8fef5022007-09-23 11:39:02 -0300357static enum {
358 TPACPI_LIFE_INIT = 0,
359 TPACPI_LIFE_RUNNING,
360 TPACPI_LIFE_EXITING,
361} tpacpi_lifecycle;
362
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -0200363static int experimental;
364static u32 dbg_level;
365
Henrique de Moraes Holschuhe0e3c062008-04-26 01:02:28 -0300366static struct workqueue_struct *tpacpi_wq;
367
Henrique de Moraes Holschuh75bd3bf2009-04-14 02:44:11 +0000368enum led_status_t {
369 TPACPI_LED_OFF = 0,
370 TPACPI_LED_ON,
371 TPACPI_LED_BLINK,
372};
373
Hans de Goede86ec0c22017-02-09 16:44:12 +0100374/* tpacpi LED class */
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -0300375struct tpacpi_led_classdev {
376 struct led_classdev led_classdev;
Adam Leeedf2d772013-06-08 16:51:15 +0800377 int led;
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -0300378};
379
Henrique de Moraes Holschuh77775832010-05-16 19:45:33 -0300380/* brightness level capabilities */
381static unsigned int bright_maxlvl; /* 0 = unknown */
382
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -0200383#ifdef CONFIG_THINKPAD_ACPI_DEBUGFACILITIES
384static int dbg_wlswemul;
Rusty Russell90ab5ee2012-01-13 09:32:20 +1030385static bool tpacpi_wlsw_emulstate;
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -0200386static int dbg_bluetoothemul;
Rusty Russell90ab5ee2012-01-13 09:32:20 +1030387static bool tpacpi_bluetooth_emulstate;
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -0200388static int dbg_wwanemul;
Rusty Russell90ab5ee2012-01-13 09:32:20 +1030389static bool tpacpi_wwan_emulstate;
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -0200390static int dbg_uwbemul;
Rusty Russell90ab5ee2012-01-13 09:32:20 +1030391static bool tpacpi_uwb_emulstate;
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -0200392#endif
393
394
Henrique de Moraes Holschuh3dcc2c32009-04-04 04:25:45 +0000395/*************************************************************************
396 * Debugging helpers
397 */
398
Joe Perches0978e012011-04-04 10:06:25 -0700399#define dbg_printk(a_dbg_level, format, arg...) \
400do { \
401 if (dbg_level & (a_dbg_level)) \
402 printk(KERN_DEBUG pr_fmt("%s: " format), \
403 __func__, ##arg); \
404} while (0)
Henrique de Moraes Holschuh3dcc2c32009-04-04 04:25:45 +0000405
406#ifdef CONFIG_THINKPAD_ACPI_DEBUG
407#define vdbg_printk dbg_printk
408static const char *str_supported(int is_supported);
409#else
Joe Perches0978e012011-04-04 10:06:25 -0700410static inline const char *str_supported(int is_supported) { return ""; }
411#define vdbg_printk(a_dbg_level, format, arg...) \
Joe Perchesefd85cf2015-08-26 11:13:38 -0700412 do { if (0) no_printk(format, ##arg); } while (0)
Henrique de Moraes Holschuh3dcc2c32009-04-04 04:25:45 +0000413#endif
414
Henrique de Moraes Holschuh73a94d82009-04-04 04:25:47 +0000415static void tpacpi_log_usertask(const char * const what)
416{
Joe Perches0978e012011-04-04 10:06:25 -0700417 printk(KERN_DEBUG pr_fmt("%s: access by process with PID %d\n"),
418 what, task_tgid_vnr(current));
Henrique de Moraes Holschuh73a94d82009-04-04 04:25:47 +0000419}
420
Joe Perches0978e012011-04-04 10:06:25 -0700421#define tpacpi_disclose_usertask(what, format, arg...) \
422do { \
423 if (unlikely((dbg_level & TPACPI_DBG_DISCLOSETASK) && \
424 (tpacpi_lifecycle == TPACPI_LIFE_RUNNING))) { \
425 printk(KERN_DEBUG pr_fmt("%s: PID %d: " format), \
426 what, task_tgid_vnr(current), ## arg); \
427 } \
428} while (0)
Henrique de Moraes Holschuh3dcc2c32009-04-04 04:25:45 +0000429
Henrique de Moraes Holschuh7d95a3d2009-05-30 13:25:06 -0300430/*
431 * Quirk handling helpers
432 *
Jouke Witteveen846a4162018-07-11 11:44:41 +0200433 * ThinkPad IDs and versions seen in the field so far are
434 * two or three characters from the set [0-9A-Z], i.e. base 36.
Henrique de Moraes Holschuh7d95a3d2009-05-30 13:25:06 -0300435 *
436 * We use values well outside that range as specials.
437 */
438
Jouke Witteveen846a4162018-07-11 11:44:41 +0200439#define TPACPI_MATCH_ANY 0xffffffffU
440#define TPACPI_MATCH_ANY_VERSION 0xffffU
Henrique de Moraes Holschuh7d95a3d2009-05-30 13:25:06 -0300441#define TPACPI_MATCH_UNKNOWN 0U
442
Jouke Witteveen846a4162018-07-11 11:44:41 +0200443/* TPID('1', 'Y') == 0x3159 */
444#define TPID(__c1, __c2) (((__c1) << 8) | (__c2))
445#define TPID3(__c1, __c2, __c3) (((__c1) << 16) | ((__c2) << 8) | (__c3))
446#define TPVER TPID
Henrique de Moraes Holschuh7d95a3d2009-05-30 13:25:06 -0300447
448#define TPACPI_Q_IBM(__id1, __id2, __quirk) \
449 { .vendor = PCI_VENDOR_ID_IBM, \
450 .bios = TPID(__id1, __id2), \
451 .ec = TPACPI_MATCH_ANY, \
452 .quirks = (__quirk) }
453
454#define TPACPI_Q_LNV(__id1, __id2, __quirk) \
455 { .vendor = PCI_VENDOR_ID_LENOVO, \
456 .bios = TPID(__id1, __id2), \
457 .ec = TPACPI_MATCH_ANY, \
458 .quirks = (__quirk) }
459
Jouke Witteveen1a32ebb2018-07-11 11:45:36 +0200460#define TPACPI_Q_LNV3(__id1, __id2, __id3, __quirk) \
461 { .vendor = PCI_VENDOR_ID_LENOVO, \
462 .bios = TPID3(__id1, __id2, __id3), \
463 .ec = TPACPI_MATCH_ANY, \
464 .quirks = (__quirk) }
465
Jouke Witteveen599eeff2018-12-05 12:17:52 +0100466#define TPACPI_QEC_IBM(__id1, __id2, __quirk) \
467 { .vendor = PCI_VENDOR_ID_IBM, \
468 .bios = TPACPI_MATCH_ANY, \
469 .ec = TPID(__id1, __id2), \
470 .quirks = (__quirk) }
471
Henrique de Moraes Holschuha112cee2009-12-15 21:51:09 -0200472#define TPACPI_QEC_LNV(__id1, __id2, __quirk) \
473 { .vendor = PCI_VENDOR_ID_LENOVO, \
474 .bios = TPACPI_MATCH_ANY, \
475 .ec = TPID(__id1, __id2), \
476 .quirks = (__quirk) }
477
Henrique de Moraes Holschuh7d95a3d2009-05-30 13:25:06 -0300478struct tpacpi_quirk {
479 unsigned int vendor;
Jouke Witteveen846a4162018-07-11 11:44:41 +0200480 u32 bios;
481 u32 ec;
Henrique de Moraes Holschuh7d95a3d2009-05-30 13:25:06 -0300482 unsigned long quirks;
483};
484
485/**
486 * tpacpi_check_quirks() - search BIOS/EC version on a list
487 * @qlist: array of &struct tpacpi_quirk
488 * @qlist_size: number of elements in @qlist
489 *
490 * Iterates over a quirks list until one is found that matches the
491 * ThinkPad's vendor, BIOS and EC model.
492 *
493 * Returns 0 if nothing matches, otherwise returns the quirks field of
494 * the matching &struct tpacpi_quirk entry.
495 *
496 * The match criteria is: vendor, ec and bios much match.
497 */
498static unsigned long __init tpacpi_check_quirks(
499 const struct tpacpi_quirk *qlist,
500 unsigned int qlist_size)
501{
502 while (qlist_size) {
503 if ((qlist->vendor == thinkpad_id.vendor ||
504 qlist->vendor == TPACPI_MATCH_ANY) &&
505 (qlist->bios == thinkpad_id.bios_model ||
506 qlist->bios == TPACPI_MATCH_ANY) &&
507 (qlist->ec == thinkpad_id.ec_model ||
508 qlist->ec == TPACPI_MATCH_ANY))
509 return qlist->quirks;
510
511 qlist_size--;
512 qlist++;
513 }
514 return 0;
515}
516
Henrique de Moraes Holschuhe28393c2010-05-16 19:45:23 -0300517static inline bool __pure __init tpacpi_is_lenovo(void)
518{
519 return thinkpad_id.vendor == PCI_VENDOR_ID_LENOVO;
520}
521
522static inline bool __pure __init tpacpi_is_ibm(void)
523{
524 return thinkpad_id.vendor == PCI_VENDOR_ID_IBM;
525}
Henrique de Moraes Holschuh7d95a3d2009-05-30 13:25:06 -0300526
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300527/****************************************************************************
528 ****************************************************************************
529 *
530 * ACPI Helpers and device model
531 *
532 ****************************************************************************
533 ****************************************************************************/
534
535/*************************************************************************
536 * ACPI basic handles
537 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538
Henrique de Moraes Holschuh94954cc62007-07-18 23:45:27 -0300539static acpi_handle root_handle;
Henrique de Moraes Holschuh437e4702010-05-16 19:45:43 -0300540static acpi_handle ec_handle;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -0200542#define TPACPI_HANDLE(object, parent, paths...) \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 static acpi_handle object##_handle; \
Andi Kleen3bd01892012-10-04 17:12:01 -0700544 static const acpi_handle * const object##_parent __initconst = \
Henrique de Moraes Holschuhef07a5ab2010-05-16 19:45:54 -0300545 &parent##_handle; \
546 static char *object##_paths[] __initdata = { paths }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -0200548TPACPI_HANDLE(ecrd, ec, "ECRD"); /* 570 */
549TPACPI_HANDLE(ecwr, ec, "ECWR"); /* 570 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -0200551TPACPI_HANDLE(cmos, root, "\\UCMS", /* R50, R50e, R50p, R51, */
552 /* T4x, X31, X40 */
Borislav Deianov78f81cc2005-08-17 00:00:00 -0400553 "\\CMOS", /* A3x, G4x, R32, T23, T30, X22-24, X30 */
554 "\\CMS", /* R40, R40e */
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300555 ); /* all others */
Borislav Deianov78f81cc2005-08-17 00:00:00 -0400556
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -0200557TPACPI_HANDLE(hkey, ec, "\\_SB.HKEY", /* 600e/x, 770e, 770x */
Borislav Deianov78f81cc2005-08-17 00:00:00 -0400558 "^HKEY", /* R30, R31 */
559 "HKEY", /* all others */
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300560 ); /* 570 */
Borislav Deianov78f81cc2005-08-17 00:00:00 -0400561
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300562/*************************************************************************
563 * ACPI helpers
Henrique de Moraes Holschuha8b7a662006-11-24 11:47:11 -0200564 */
565
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566static int acpi_evalf(acpi_handle handle,
Dan Carpentereceeb432012-09-01 12:54:07 -0700567 int *res, char *method, char *fmt, ...)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568{
569 char *fmt0 = fmt;
Borislav Deianov78f81cc2005-08-17 00:00:00 -0400570 struct acpi_object_list params;
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -0200571 union acpi_object in_objs[TPACPI_MAX_ACPI_ARGS];
Borislav Deianov78f81cc2005-08-17 00:00:00 -0400572 struct acpi_buffer result, *resultp;
573 union acpi_object out_obj;
574 acpi_status status;
575 va_list ap;
576 char res_type;
577 int success;
578 int quiet;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579
580 if (!*fmt) {
Joe Perches0978e012011-04-04 10:06:25 -0700581 pr_err("acpi_evalf() called with empty format\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582 return 0;
583 }
584
585 if (*fmt == 'q') {
586 quiet = 1;
587 fmt++;
588 } else
589 quiet = 0;
590
591 res_type = *(fmt++);
592
593 params.count = 0;
594 params.pointer = &in_objs[0];
595
596 va_start(ap, fmt);
597 while (*fmt) {
598 char c = *(fmt++);
599 switch (c) {
600 case 'd': /* int */
601 in_objs[params.count].integer.value = va_arg(ap, int);
602 in_objs[params.count++].type = ACPI_TYPE_INTEGER;
603 break;
Borislav Deianov78f81cc2005-08-17 00:00:00 -0400604 /* add more types as needed */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605 default:
Andy Shevchenko5cac62a2017-05-09 17:17:20 +0300606 pr_err("acpi_evalf() called with invalid format character '%c'\n",
607 c);
Jesper Juhl21365852010-12-24 19:56:28 +0100608 va_end(ap);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609 return 0;
610 }
611 }
612 va_end(ap);
613
Borislav Deianov78f81cc2005-08-17 00:00:00 -0400614 if (res_type != 'v') {
615 result.length = sizeof(out_obj);
616 result.pointer = &out_obj;
617 resultp = &result;
618 } else
619 resultp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620
Borislav Deianov78f81cc2005-08-17 00:00:00 -0400621 status = acpi_evaluate_object(handle, method, &params, resultp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622
623 switch (res_type) {
Borislav Deianov78f81cc2005-08-17 00:00:00 -0400624 case 'd': /* int */
Henrique de Moraes Holschuh263f4a32010-05-16 19:45:45 -0300625 success = (status == AE_OK &&
626 out_obj.type == ACPI_TYPE_INTEGER);
627 if (success && res)
Dan Carpentereceeb432012-09-01 12:54:07 -0700628 *res = out_obj.integer.value;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629 break;
Borislav Deianov78f81cc2005-08-17 00:00:00 -0400630 case 'v': /* void */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631 success = status == AE_OK;
632 break;
Borislav Deianov78f81cc2005-08-17 00:00:00 -0400633 /* add more types as needed */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634 default:
Andy Shevchenko5cac62a2017-05-09 17:17:20 +0300635 pr_err("acpi_evalf() called with invalid format character '%c'\n",
636 res_type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637 return 0;
638 }
639
640 if (!success && !quiet)
Joe Perches0978e012011-04-04 10:06:25 -0700641 pr_err("acpi_evalf(%s, %s, ...) failed: %s\n",
Henrique de Moraes Holschuh263f4a32010-05-16 19:45:45 -0300642 method, fmt0, acpi_format_exception(status));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643
644 return success;
645}
646
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -0200647static int acpi_ec_read(int i, u8 *p)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300648{
649 int v;
650
651 if (ecrd_handle) {
652 if (!acpi_evalf(ecrd_handle, &v, NULL, "dd", i))
653 return 0;
654 *p = v;
655 } else {
656 if (ec_read(i, p) < 0)
657 return 0;
658 }
659
660 return 1;
661}
662
663static int acpi_ec_write(int i, u8 v)
664{
665 if (ecwr_handle) {
666 if (!acpi_evalf(ecwr_handle, NULL, NULL, "vdd", i, v))
667 return 0;
668 } else {
669 if (ec_write(i, v) < 0)
670 return 0;
671 }
672
673 return 1;
674}
675
Henrique de Moraes Holschuhc9bea992007-04-21 11:08:42 -0300676static int issue_thinkpad_cmos_command(int cmos_cmd)
677{
678 if (!cmos_handle)
679 return -ENXIO;
680
681 if (!acpi_evalf(cmos_handle, NULL, NULL, "vd", cmos_cmd))
682 return -EIO;
683
684 return 0;
685}
686
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300687/*************************************************************************
688 * ACPI device model
689 */
690
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -0200691#define TPACPI_ACPIHANDLE_INIT(object) \
692 drv_acpi_handle_init(#object, &object##_handle, *object##_parent, \
Henrique de Moraes Holschuhef07a5ab2010-05-16 19:45:54 -0300693 object##_paths, ARRAY_SIZE(object##_paths))
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -0200694
Henrique de Moraes Holschuhef07a5ab2010-05-16 19:45:54 -0300695static void __init drv_acpi_handle_init(const char *name,
696 acpi_handle *handle, const acpi_handle parent,
697 char **paths, const int num_paths)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300698{
699 int i;
700 acpi_status status;
701
Henrique de Moraes Holschuh5ae930e2007-04-27 22:00:14 -0300702 vdbg_printk(TPACPI_DBG_INIT, "trying to locate ACPI handle for %s\n",
703 name);
704
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300705 for (i = 0; i < num_paths; i++) {
706 status = acpi_get_handle(parent, paths[i], handle);
707 if (ACPI_SUCCESS(status)) {
Henrique de Moraes Holschuh5ae930e2007-04-27 22:00:14 -0300708 dbg_printk(TPACPI_DBG_INIT,
709 "Found ACPI handle %s for %s\n",
Henrique de Moraes Holschuhef07a5ab2010-05-16 19:45:54 -0300710 paths[i], name);
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300711 return;
712 }
713 }
714
Henrique de Moraes Holschuh5ae930e2007-04-27 22:00:14 -0300715 vdbg_printk(TPACPI_DBG_INIT, "ACPI handle for %s not found\n",
716 name);
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300717 *handle = NULL;
718}
719
Henrique de Moraes Holschuh437e4702010-05-16 19:45:43 -0300720static acpi_status __init tpacpi_acpi_handle_locate_callback(acpi_handle handle,
721 u32 level, void *context, void **return_value)
722{
Aaron Lu46445b62013-10-11 21:27:46 +0800723 struct acpi_device *dev;
724 if (!strcmp(context, "video")) {
725 if (acpi_bus_get_device(handle, &dev))
726 return AE_OK;
727 if (strcmp(ACPI_VIDEO_HID, acpi_device_hid(dev)))
728 return AE_OK;
729 }
730
Henrique de Moraes Holschuh437e4702010-05-16 19:45:43 -0300731 *(acpi_handle *)return_value = handle;
732
733 return AE_CTRL_TERMINATE;
734}
735
736static void __init tpacpi_acpi_handle_locate(const char *name,
737 const char *hid,
738 acpi_handle *handle)
739{
740 acpi_status status;
741 acpi_handle device_found;
742
Aaron Lu46445b62013-10-11 21:27:46 +0800743 BUG_ON(!name || !handle);
Henrique de Moraes Holschuh437e4702010-05-16 19:45:43 -0300744 vdbg_printk(TPACPI_DBG_INIT,
745 "trying to locate ACPI handle for %s, using HID %s\n",
Aaron Lu46445b62013-10-11 21:27:46 +0800746 name, hid ? hid : "NULL");
Henrique de Moraes Holschuh437e4702010-05-16 19:45:43 -0300747
748 memset(&device_found, 0, sizeof(device_found));
749 status = acpi_get_devices(hid, tpacpi_acpi_handle_locate_callback,
750 (void *)name, &device_found);
751
752 *handle = NULL;
753
754 if (ACPI_SUCCESS(status)) {
755 *handle = device_found;
756 dbg_printk(TPACPI_DBG_INIT,
757 "Found ACPI handle for %s\n", name);
758 } else {
759 vdbg_printk(TPACPI_DBG_INIT,
760 "Could not locate an ACPI handle for %s: %s\n",
761 name, acpi_format_exception(status));
762 }
763}
764
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -0300765static void dispatch_acpi_notify(acpi_handle handle, u32 event, void *data)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300766{
767 struct ibm_struct *ibm = data;
768
Henrique de Moraes Holschuh8fef5022007-09-23 11:39:02 -0300769 if (tpacpi_lifecycle != TPACPI_LIFE_RUNNING)
770 return;
771
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -0300772 if (!ibm || !ibm->acpi || !ibm->acpi->notify)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300773 return;
774
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -0300775 ibm->acpi->notify(ibm, event);
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300776}
777
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -0300778static int __init setup_acpi_notify(struct ibm_struct *ibm)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300779{
780 acpi_status status;
Henrique de Moraes Holschuh5ae930e2007-04-27 22:00:14 -0300781 int rc;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300782
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -0300783 BUG_ON(!ibm->acpi);
784
785 if (!*ibm->acpi->handle)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300786 return 0;
787
Henrique de Moraes Holschuh5ae930e2007-04-27 22:00:14 -0300788 vdbg_printk(TPACPI_DBG_INIT,
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -0300789 "setting up ACPI notify for %s\n", ibm->name);
790
Henrique de Moraes Holschuh5ae930e2007-04-27 22:00:14 -0300791 rc = acpi_bus_get_device(*ibm->acpi->handle, &ibm->acpi->device);
792 if (rc < 0) {
Joe Perches0978e012011-04-04 10:06:25 -0700793 pr_err("acpi_bus_get_device(%s) failed: %d\n", ibm->name, rc);
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300794 return -ENODEV;
795 }
796
Pavel Machekdb89b4f2008-09-22 14:37:34 -0700797 ibm->acpi->device->driver_data = ibm;
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -0300798 sprintf(acpi_device_class(ibm->acpi->device), "%s/%s",
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -0200799 TPACPI_ACPI_EVENT_PREFIX,
Henrique de Moraes Holschuh643f12d2007-03-29 01:58:43 -0300800 ibm->name);
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300801
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -0300802 status = acpi_install_notify_handler(*ibm->acpi->handle,
803 ibm->acpi->type, dispatch_acpi_notify, ibm);
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300804 if (ACPI_FAILURE(status)) {
805 if (status == AE_ALREADY_EXISTS) {
Andy Shevchenko5cac62a2017-05-09 17:17:20 +0300806 pr_notice("another device driver is already handling %s events\n",
807 ibm->name);
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300808 } else {
Joe Perches0978e012011-04-04 10:06:25 -0700809 pr_err("acpi_install_notify_handler(%s) failed: %s\n",
Henrique de Moraes Holschuh72f19922010-05-16 19:45:48 -0300810 ibm->name, acpi_format_exception(status));
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300811 }
812 return -ENODEV;
813 }
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -0300814 ibm->flags.acpi_notify_installed = 1;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300815 return 0;
816}
817
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -0300818static int __init tpacpi_device_add(struct acpi_device *device)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300819{
820 return 0;
821}
822
Henrique de Moraes Holschuh67001212007-04-21 11:08:25 -0300823static int __init register_tpacpi_subdriver(struct ibm_struct *ibm)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300824{
Henrique de Moraes Holschuh5ae930e2007-04-27 22:00:14 -0300825 int rc;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300826
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -0300827 dbg_printk(TPACPI_DBG_INIT,
828 "registering %s as an ACPI driver\n", ibm->name);
829
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -0300830 BUG_ON(!ibm->acpi);
831
832 ibm->acpi->driver = kzalloc(sizeof(struct acpi_driver), GFP_KERNEL);
833 if (!ibm->acpi->driver) {
Joe Perches0978e012011-04-04 10:06:25 -0700834 pr_err("failed to allocate memory for ibm->acpi->driver\n");
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -0300835 return -ENOMEM;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300836 }
837
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -0200838 sprintf(ibm->acpi->driver->name, "%s_%s", TPACPI_NAME, ibm->name);
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -0300839 ibm->acpi->driver->ids = ibm->acpi->hid;
Thomas Renninger1ba90e32007-07-23 14:44:41 +0200840
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -0300841 ibm->acpi->driver->ops.add = &tpacpi_device_add;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300842
Henrique de Moraes Holschuh5ae930e2007-04-27 22:00:14 -0300843 rc = acpi_bus_register_driver(ibm->acpi->driver);
844 if (rc < 0) {
Joe Perches0978e012011-04-04 10:06:25 -0700845 pr_err("acpi_bus_register_driver(%s) failed: %d\n",
Thomas Renninger1ba90e32007-07-23 14:44:41 +0200846 ibm->name, rc);
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -0300847 kfree(ibm->acpi->driver);
848 ibm->acpi->driver = NULL;
Henrique de Moraes Holschuh5ae930e2007-04-27 22:00:14 -0300849 } else if (!rc)
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -0300850 ibm->flags.acpi_driver_registered = 1;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300851
Henrique de Moraes Holschuh5ae930e2007-04-27 22:00:14 -0300852 return rc;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300853}
854
855
856/****************************************************************************
857 ****************************************************************************
858 *
859 * Procfs Helpers
860 *
861 ****************************************************************************
862 ****************************************************************************/
863
Alexey Dobriyan887965e2009-12-15 21:51:12 -0200864static int dispatch_proc_show(struct seq_file *m, void *v)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300865{
Alexey Dobriyan887965e2009-12-15 21:51:12 -0200866 struct ibm_struct *ibm = m->private;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300867
868 if (!ibm || !ibm->read)
869 return -EINVAL;
Alexey Dobriyan887965e2009-12-15 21:51:12 -0200870 return ibm->read(m);
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300871}
872
Alexey Dobriyan887965e2009-12-15 21:51:12 -0200873static int dispatch_proc_open(struct inode *inode, struct file *file)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300874{
Al Virod9dda782013-03-31 18:16:14 -0400875 return single_open(file, dispatch_proc_show, PDE_DATA(inode));
Alexey Dobriyan887965e2009-12-15 21:51:12 -0200876}
877
878static ssize_t dispatch_proc_write(struct file *file,
879 const char __user *userbuf,
880 size_t count, loff_t *pos)
881{
Al Virod9dda782013-03-31 18:16:14 -0400882 struct ibm_struct *ibm = PDE_DATA(file_inode(file));
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300883 char *kernbuf;
884 int ret;
885
886 if (!ibm || !ibm->write)
887 return -EINVAL;
Andy Shevchenkobe51bd42020-05-11 15:56:24 +0300888 if (count > PAGE_SIZE - 1)
Michael Buesch5b05d462009-08-01 12:04:19 -0300889 return -EINVAL;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300890
Andy Shevchenkobe51bd42020-05-11 15:56:24 +0300891 kernbuf = kmalloc(count + 1, GFP_KERNEL);
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300892 if (!kernbuf)
893 return -ENOMEM;
894
895 if (copy_from_user(kernbuf, userbuf, count)) {
896 kfree(kernbuf);
897 return -EFAULT;
898 }
899
900 kernbuf[count] = 0;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300901 ret = ibm->write(kernbuf);
902 if (ret == 0)
903 ret = count;
904
905 kfree(kernbuf);
906
907 return ret;
908}
909
Alexey Dobriyan97a32532020-02-03 17:37:17 -0800910static const struct proc_ops dispatch_proc_ops = {
911 .proc_open = dispatch_proc_open,
912 .proc_read = seq_read,
913 .proc_lseek = seq_lseek,
914 .proc_release = single_release,
915 .proc_write = dispatch_proc_write,
Alexey Dobriyan887965e2009-12-15 21:51:12 -0200916};
917
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300918/****************************************************************************
919 ****************************************************************************
920 *
Henrique de Moraes Holschuh7f5d1cd2007-07-18 23:45:34 -0300921 * Device model: input, hwmon and platform
Henrique de Moraes Holschuh54ae1502007-04-24 11:48:12 -0300922 *
923 ****************************************************************************
924 ****************************************************************************/
925
Henrique de Moraes Holschuh94954cc62007-07-18 23:45:27 -0300926static struct platform_device *tpacpi_pdev;
Henrique de Moraes Holschuh7fd40022007-09-25 06:38:03 -0300927static struct platform_device *tpacpi_sensors_pdev;
Tony Jones1beeffe2007-08-20 13:46:20 -0700928static struct device *tpacpi_hwmon;
Henrique de Moraes Holschuh7f5d1cd2007-07-18 23:45:34 -0300929static struct input_dev *tpacpi_inputdev;
Henrique de Moraes Holschuh8523ed62007-09-23 11:39:01 -0300930static struct mutex tpacpi_inputdev_send_mutex;
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -0200931static LIST_HEAD(tpacpi_all_drivers);
Henrique de Moraes Holschuhe295e852007-07-18 23:45:37 -0300932
Rafael J. Wysocki3567a4e22012-08-09 23:00:13 +0200933#ifdef CONFIG_PM_SLEEP
Rafael J. Wysocki4959a782012-06-27 23:19:01 +0200934static int tpacpi_suspend_handler(struct device *dev)
Henrique de Moraes Holschuh083f1762008-01-08 13:02:50 -0200935{
936 struct ibm_struct *ibm, *itmp;
937
938 list_for_each_entry_safe(ibm, itmp,
939 &tpacpi_all_drivers,
940 all_drivers) {
941 if (ibm->suspend)
Rafael J. Wysockifd3c3a42012-06-27 23:18:44 +0200942 (ibm->suspend)();
Henrique de Moraes Holschuh083f1762008-01-08 13:02:50 -0200943 }
944
945 return 0;
946}
947
Rafael J. Wysocki4959a782012-06-27 23:19:01 +0200948static int tpacpi_resume_handler(struct device *dev)
Henrique de Moraes Holschuhe295e852007-07-18 23:45:37 -0300949{
950 struct ibm_struct *ibm, *itmp;
951
952 list_for_each_entry_safe(ibm, itmp,
953 &tpacpi_all_drivers,
954 all_drivers) {
955 if (ibm->resume)
956 (ibm->resume)();
957 }
958
959 return 0;
960}
Rafael J. Wysocki3567a4e22012-08-09 23:00:13 +0200961#endif
Henrique de Moraes Holschuhe295e852007-07-18 23:45:37 -0300962
Rafael J. Wysocki4959a782012-06-27 23:19:01 +0200963static SIMPLE_DEV_PM_OPS(tpacpi_pm,
964 tpacpi_suspend_handler, tpacpi_resume_handler);
965
Henrique de Moraes Holschuh90d9d3c2009-01-11 03:01:02 -0200966static void tpacpi_shutdown_handler(struct platform_device *pdev)
967{
968 struct ibm_struct *ibm, *itmp;
969
970 list_for_each_entry_safe(ibm, itmp,
971 &tpacpi_all_drivers,
972 all_drivers) {
973 if (ibm->shutdown)
974 (ibm->shutdown)();
975 }
976}
977
Henrique de Moraes Holschuh54ae1502007-04-24 11:48:12 -0300978static struct platform_driver tpacpi_pdriver = {
979 .driver = {
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -0200980 .name = TPACPI_DRVR_NAME,
Rafael J. Wysocki4959a782012-06-27 23:19:01 +0200981 .pm = &tpacpi_pm,
Henrique de Moraes Holschuh54ae1502007-04-24 11:48:12 -0300982 },
Henrique de Moraes Holschuh90d9d3c2009-01-11 03:01:02 -0200983 .shutdown = tpacpi_shutdown_handler,
Henrique de Moraes Holschuh54ae1502007-04-24 11:48:12 -0300984};
985
Henrique de Moraes Holschuh7fd40022007-09-25 06:38:03 -0300986static struct platform_driver tpacpi_hwmon_pdriver = {
987 .driver = {
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -0200988 .name = TPACPI_HWMON_DRVR_NAME,
Henrique de Moraes Holschuh7fd40022007-09-25 06:38:03 -0300989 },
990};
Henrique de Moraes Holschuh54ae1502007-04-24 11:48:12 -0300991
Henrique de Moraes Holschuh176750d2007-04-24 11:48:13 -0300992/*************************************************************************
Henrique de Moraes Holschuh72523742007-04-24 11:48:14 -0300993 * sysfs support helpers
994 */
995
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -0200996struct attribute_set {
997 unsigned int members, max_members;
998 struct attribute_group group;
999};
1000
Henrique de Moraes Holschuh72523742007-04-24 11:48:14 -03001001struct attribute_set_obj {
1002 struct attribute_set s;
1003 struct attribute *a;
1004} __attribute__((packed));
1005
1006static struct attribute_set *create_attr_set(unsigned int max_members,
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02001007 const char *name)
Henrique de Moraes Holschuh72523742007-04-24 11:48:14 -03001008{
1009 struct attribute_set_obj *sobj;
1010
1011 if (max_members == 0)
1012 return NULL;
1013
1014 /* Allocates space for implicit NULL at the end too */
1015 sobj = kzalloc(sizeof(struct attribute_set_obj) +
1016 max_members * sizeof(struct attribute *),
1017 GFP_KERNEL);
1018 if (!sobj)
1019 return NULL;
1020 sobj->s.max_members = max_members;
1021 sobj->s.group.attrs = &sobj->a;
1022 sobj->s.group.name = name;
1023
1024 return &sobj->s;
1025}
1026
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02001027#define destroy_attr_set(_set) \
1028 kfree(_set);
1029
Henrique de Moraes Holschuh72523742007-04-24 11:48:14 -03001030/* not multi-threaded safe, use it in a single thread per set */
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02001031static int add_to_attr_set(struct attribute_set *s, struct attribute *attr)
Henrique de Moraes Holschuh72523742007-04-24 11:48:14 -03001032{
1033 if (!s || !attr)
1034 return -EINVAL;
1035
1036 if (s->members >= s->max_members)
1037 return -ENOMEM;
1038
1039 s->group.attrs[s->members] = attr;
1040 s->members++;
1041
1042 return 0;
1043}
1044
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02001045static int add_many_to_attr_set(struct attribute_set *s,
Henrique de Moraes Holschuh72523742007-04-24 11:48:14 -03001046 struct attribute **attr,
1047 unsigned int count)
1048{
1049 int i, res;
1050
1051 for (i = 0; i < count; i++) {
1052 res = add_to_attr_set(s, attr[i]);
1053 if (res)
1054 return res;
1055 }
1056
1057 return 0;
1058}
1059
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02001060static void delete_attr_set(struct attribute_set *s, struct kobject *kobj)
Henrique de Moraes Holschuh72523742007-04-24 11:48:14 -03001061{
1062 sysfs_remove_group(kobj, &s->group);
1063 destroy_attr_set(s);
1064}
1065
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02001066#define register_attr_set_with_sysfs(_attr_set, _kobj) \
1067 sysfs_create_group(_kobj, &_attr_set->group)
1068
Henrique de Moraes Holschuh72523742007-04-24 11:48:14 -03001069static int parse_strtoul(const char *buf,
1070 unsigned long max, unsigned long *value)
1071{
1072 char *endp;
1073
André Goddard Rosae7d28602009-12-14 18:01:06 -08001074 *value = simple_strtoul(skip_spaces(buf), &endp, 0);
1075 endp = skip_spaces(endp);
Henrique de Moraes Holschuh72523742007-04-24 11:48:14 -03001076 if (*endp || *value > max)
1077 return -EINVAL;
1078
1079 return 0;
1080}
1081
Henrique de Moraes Holschuhd64c81c42008-10-18 14:23:55 -03001082static void tpacpi_disable_brightness_delay(void)
1083{
1084 if (acpi_evalf(hkey_handle, NULL, "PWMS", "qvd", 0))
Joe Perches0978e012011-04-04 10:06:25 -07001085 pr_notice("ACPI backlight control delay disabled\n");
Henrique de Moraes Holschuhd64c81c42008-10-18 14:23:55 -03001086}
1087
Henrique de Moraes Holschuh73a94d82009-04-04 04:25:47 +00001088static void printk_deprecated_attribute(const char * const what,
1089 const char * const details)
1090{
1091 tpacpi_log_usertask("deprecated sysfs attribute");
Andy Shevchenko5cac62a2017-05-09 17:17:20 +03001092 pr_warn("WARNING: sysfs attribute %s is deprecated and will be removed. %s\n",
Henrique de Moraes Holschuh73a94d82009-04-04 04:25:47 +00001093 what, details);
1094}
1095
Johannes Berg19d337d2009-06-02 13:01:37 +02001096/*************************************************************************
1097 * rfkill and radio control support helpers
1098 */
1099
1100/*
1101 * ThinkPad-ACPI firmware handling model:
1102 *
1103 * WLSW (master wireless switch) is event-driven, and is common to all
1104 * firmware-controlled radios. It cannot be controlled, just monitored,
1105 * as expected. It overrides all radio state in firmware
1106 *
1107 * The kernel, a masked-off hotkey, and WLSW can change the radio state
1108 * (TODO: verify how WLSW interacts with the returned radio state).
1109 *
1110 * The only time there are shadow radio state changes, is when
1111 * masked-off hotkeys are used.
1112 */
1113
1114/*
1115 * Internal driver API for radio state:
1116 *
1117 * int: < 0 = error, otherwise enum tpacpi_rfkill_state
1118 * bool: true means radio blocked (off)
1119 */
1120enum tpacpi_rfkill_state {
1121 TPACPI_RFK_RADIO_OFF = 0,
1122 TPACPI_RFK_RADIO_ON
1123};
1124
1125/* rfkill switches */
1126enum tpacpi_rfk_id {
1127 TPACPI_RFK_BLUETOOTH_SW_ID = 0,
1128 TPACPI_RFK_WWAN_SW_ID,
1129 TPACPI_RFK_UWB_SW_ID,
1130 TPACPI_RFK_SW_MAX
1131};
1132
1133static const char *tpacpi_rfkill_names[] = {
1134 [TPACPI_RFK_BLUETOOTH_SW_ID] = "bluetooth",
1135 [TPACPI_RFK_WWAN_SW_ID] = "wwan",
1136 [TPACPI_RFK_UWB_SW_ID] = "uwb",
1137 [TPACPI_RFK_SW_MAX] = NULL
1138};
1139
1140/* ThinkPad-ACPI rfkill subdriver */
1141struct tpacpi_rfk {
1142 struct rfkill *rfkill;
1143 enum tpacpi_rfk_id id;
1144 const struct tpacpi_rfk_ops *ops;
1145};
1146
1147struct tpacpi_rfk_ops {
1148 /* firmware interface */
1149 int (*get_status)(void);
1150 int (*set_status)(const enum tpacpi_rfkill_state);
1151};
1152
1153static struct tpacpi_rfk *tpacpi_rfkill_switches[TPACPI_RFK_SW_MAX];
1154
1155/* Query FW and update rfkill sw state for a given rfkill switch */
1156static int tpacpi_rfk_update_swstate(const struct tpacpi_rfk *tp_rfk)
1157{
1158 int status;
1159
1160 if (!tp_rfk)
1161 return -ENODEV;
1162
1163 status = (tp_rfk->ops->get_status)();
1164 if (status < 0)
1165 return status;
1166
1167 rfkill_set_sw_state(tp_rfk->rfkill,
1168 (status == TPACPI_RFK_RADIO_OFF));
1169
1170 return status;
1171}
1172
1173/* Query FW and update rfkill sw state for all rfkill switches */
1174static void tpacpi_rfk_update_swstate_all(void)
1175{
1176 unsigned int i;
1177
1178 for (i = 0; i < TPACPI_RFK_SW_MAX; i++)
1179 tpacpi_rfk_update_swstate(tpacpi_rfkill_switches[i]);
1180}
1181
1182/*
1183 * Sync the HW-blocking state of all rfkill switches,
1184 * do notice it causes the rfkill core to schedule uevents
1185 */
1186static void tpacpi_rfk_update_hwblock_state(bool blocked)
1187{
1188 unsigned int i;
1189 struct tpacpi_rfk *tp_rfk;
1190
1191 for (i = 0; i < TPACPI_RFK_SW_MAX; i++) {
1192 tp_rfk = tpacpi_rfkill_switches[i];
1193 if (tp_rfk) {
1194 if (rfkill_set_hw_state(tp_rfk->rfkill,
1195 blocked)) {
1196 /* ignore -- we track sw block */
1197 }
1198 }
1199 }
1200}
1201
1202/* Call to get the WLSW state from the firmware */
1203static int hotkey_get_wlsw(void);
1204
1205/* Call to query WLSW state and update all rfkill switches */
1206static bool tpacpi_rfk_check_hwblock_state(void)
1207{
1208 int res = hotkey_get_wlsw();
1209 int hw_blocked;
1210
1211 /* When unknown or unsupported, we have to assume it is unblocked */
1212 if (res < 0)
1213 return false;
1214
1215 hw_blocked = (res == TPACPI_RFK_RADIO_OFF);
1216 tpacpi_rfk_update_hwblock_state(hw_blocked);
1217
1218 return hw_blocked;
1219}
1220
1221static int tpacpi_rfk_hook_set_block(void *data, bool blocked)
1222{
1223 struct tpacpi_rfk *tp_rfk = data;
1224 int res;
1225
1226 dbg_printk(TPACPI_DBG_RFKILL,
1227 "request to change radio state to %s\n",
1228 blocked ? "blocked" : "unblocked");
1229
1230 /* try to set radio state */
1231 res = (tp_rfk->ops->set_status)(blocked ?
1232 TPACPI_RFK_RADIO_OFF : TPACPI_RFK_RADIO_ON);
1233
1234 /* and update the rfkill core with whatever the FW really did */
1235 tpacpi_rfk_update_swstate(tp_rfk);
1236
1237 return (res < 0) ? res : 0;
1238}
1239
1240static const struct rfkill_ops tpacpi_rfk_rfkill_ops = {
1241 .set_block = tpacpi_rfk_hook_set_block,
1242};
1243
1244static int __init tpacpi_new_rfkill(const enum tpacpi_rfk_id id,
1245 const struct tpacpi_rfk_ops *tp_rfkops,
1246 const enum rfkill_type rfktype,
1247 const char *name,
1248 const bool set_default)
1249{
1250 struct tpacpi_rfk *atp_rfk;
1251 int res;
Alan Jenkins06d5caf2009-06-16 15:39:51 +01001252 bool sw_state = false;
Henrique de Moraes Holschuh5451a922009-12-15 21:51:07 -02001253 bool hw_state;
Alan Jenkins06d5caf2009-06-16 15:39:51 +01001254 int sw_status;
Johannes Berg19d337d2009-06-02 13:01:37 +02001255
1256 BUG_ON(id >= TPACPI_RFK_SW_MAX || tpacpi_rfkill_switches[id]);
1257
Johannes Berg19d337d2009-06-02 13:01:37 +02001258 atp_rfk = kzalloc(sizeof(struct tpacpi_rfk), GFP_KERNEL);
1259 if (atp_rfk)
1260 atp_rfk->rfkill = rfkill_alloc(name,
1261 &tpacpi_pdev->dev,
1262 rfktype,
1263 &tpacpi_rfk_rfkill_ops,
1264 atp_rfk);
1265 if (!atp_rfk || !atp_rfk->rfkill) {
Joe Perches0978e012011-04-04 10:06:25 -07001266 pr_err("failed to allocate memory for rfkill class\n");
Johannes Berg19d337d2009-06-02 13:01:37 +02001267 kfree(atp_rfk);
1268 return -ENOMEM;
1269 }
1270
1271 atp_rfk->id = id;
1272 atp_rfk->ops = tp_rfkops;
1273
Alan Jenkins06d5caf2009-06-16 15:39:51 +01001274 sw_status = (tp_rfkops->get_status)();
1275 if (sw_status < 0) {
Joe Perches0978e012011-04-04 10:06:25 -07001276 pr_err("failed to read initial state for %s, error %d\n",
1277 name, sw_status);
Alan Jenkinsb3fa1322009-06-08 13:27:27 +01001278 } else {
Alan Jenkins06d5caf2009-06-16 15:39:51 +01001279 sw_state = (sw_status == TPACPI_RFK_RADIO_OFF);
Alan Jenkinsb3fa1322009-06-08 13:27:27 +01001280 if (set_default) {
1281 /* try to keep the initial state, since we ask the
1282 * firmware to preserve it across S5 in NVRAM */
Alan Jenkins06d5caf2009-06-16 15:39:51 +01001283 rfkill_init_sw_state(atp_rfk->rfkill, sw_state);
Alan Jenkinsb3fa1322009-06-08 13:27:27 +01001284 }
1285 }
Henrique de Moraes Holschuh5451a922009-12-15 21:51:07 -02001286 hw_state = tpacpi_rfk_check_hwblock_state();
1287 rfkill_set_hw_state(atp_rfk->rfkill, hw_state);
Johannes Berg19d337d2009-06-02 13:01:37 +02001288
1289 res = rfkill_register(atp_rfk->rfkill);
1290 if (res < 0) {
Joe Perches0978e012011-04-04 10:06:25 -07001291 pr_err("failed to register %s rfkill switch: %d\n", name, res);
Johannes Berg19d337d2009-06-02 13:01:37 +02001292 rfkill_destroy(atp_rfk->rfkill);
1293 kfree(atp_rfk);
1294 return res;
1295 }
1296
1297 tpacpi_rfkill_switches[id] = atp_rfk;
Henrique de Moraes Holschuh5451a922009-12-15 21:51:07 -02001298
Joe Perches0978e012011-04-04 10:06:25 -07001299 pr_info("rfkill switch %s: radio is %sblocked\n",
Henrique de Moraes Holschuh5451a922009-12-15 21:51:07 -02001300 name, (sw_state || hw_state) ? "" : "un");
Johannes Berg19d337d2009-06-02 13:01:37 +02001301 return 0;
1302}
1303
1304static void tpacpi_destroy_rfkill(const enum tpacpi_rfk_id id)
1305{
1306 struct tpacpi_rfk *tp_rfk;
1307
1308 BUG_ON(id >= TPACPI_RFK_SW_MAX);
1309
1310 tp_rfk = tpacpi_rfkill_switches[id];
1311 if (tp_rfk) {
1312 rfkill_unregister(tp_rfk->rfkill);
Corentin Chary5f0dadb2009-09-14 12:43:52 +02001313 rfkill_destroy(tp_rfk->rfkill);
Johannes Berg19d337d2009-06-02 13:01:37 +02001314 tpacpi_rfkill_switches[id] = NULL;
1315 kfree(tp_rfk);
1316 }
1317}
1318
Henrique de Moraes Holschuh73a94d82009-04-04 04:25:47 +00001319static void printk_deprecated_rfkill_attribute(const char * const what)
1320{
1321 printk_deprecated_attribute(what,
1322 "Please switch to generic rfkill before year 2010");
1323}
1324
Johannes Berg19d337d2009-06-02 13:01:37 +02001325/* sysfs <radio> enable ------------------------------------------------ */
1326static ssize_t tpacpi_rfk_sysfs_enable_show(const enum tpacpi_rfk_id id,
1327 struct device_attribute *attr,
1328 char *buf)
1329{
1330 int status;
1331
1332 printk_deprecated_rfkill_attribute(attr->attr.name);
1333
1334 /* This is in the ABI... */
1335 if (tpacpi_rfk_check_hwblock_state()) {
1336 status = TPACPI_RFK_RADIO_OFF;
1337 } else {
1338 status = tpacpi_rfk_update_swstate(tpacpi_rfkill_switches[id]);
1339 if (status < 0)
1340 return status;
1341 }
1342
1343 return snprintf(buf, PAGE_SIZE, "%d\n",
1344 (status == TPACPI_RFK_RADIO_ON) ? 1 : 0);
1345}
1346
1347static ssize_t tpacpi_rfk_sysfs_enable_store(const enum tpacpi_rfk_id id,
1348 struct device_attribute *attr,
1349 const char *buf, size_t count)
1350{
1351 unsigned long t;
1352 int res;
1353
1354 printk_deprecated_rfkill_attribute(attr->attr.name);
1355
1356 if (parse_strtoul(buf, 1, &t))
1357 return -EINVAL;
1358
1359 tpacpi_disclose_usertask(attr->attr.name, "set to %ld\n", t);
1360
1361 /* This is in the ABI... */
1362 if (tpacpi_rfk_check_hwblock_state() && !!t)
1363 return -EPERM;
1364
1365 res = tpacpi_rfkill_switches[id]->ops->set_status((!!t) ?
1366 TPACPI_RFK_RADIO_ON : TPACPI_RFK_RADIO_OFF);
1367 tpacpi_rfk_update_swstate(tpacpi_rfkill_switches[id]);
1368
1369 return (res < 0) ? res : count;
1370}
1371
1372/* procfs -------------------------------------------------------------- */
Alexey Dobriyan887965e2009-12-15 21:51:12 -02001373static int tpacpi_rfk_procfs_read(const enum tpacpi_rfk_id id, struct seq_file *m)
Johannes Berg19d337d2009-06-02 13:01:37 +02001374{
Johannes Berg19d337d2009-06-02 13:01:37 +02001375 if (id >= TPACPI_RFK_SW_MAX)
Alexey Dobriyan887965e2009-12-15 21:51:12 -02001376 seq_printf(m, "status:\t\tnot supported\n");
Johannes Berg19d337d2009-06-02 13:01:37 +02001377 else {
1378 int status;
1379
1380 /* This is in the ABI... */
1381 if (tpacpi_rfk_check_hwblock_state()) {
1382 status = TPACPI_RFK_RADIO_OFF;
1383 } else {
1384 status = tpacpi_rfk_update_swstate(
1385 tpacpi_rfkill_switches[id]);
1386 if (status < 0)
1387 return status;
1388 }
1389
Alexey Dobriyan887965e2009-12-15 21:51:12 -02001390 seq_printf(m, "status:\t\t%s\n",
Johannes Berg19d337d2009-06-02 13:01:37 +02001391 (status == TPACPI_RFK_RADIO_ON) ?
1392 "enabled" : "disabled");
Alexey Dobriyan887965e2009-12-15 21:51:12 -02001393 seq_printf(m, "commands:\tenable, disable\n");
Johannes Berg19d337d2009-06-02 13:01:37 +02001394 }
1395
Alexey Dobriyan887965e2009-12-15 21:51:12 -02001396 return 0;
Johannes Berg19d337d2009-06-02 13:01:37 +02001397}
1398
1399static int tpacpi_rfk_procfs_write(const enum tpacpi_rfk_id id, char *buf)
1400{
1401 char *cmd;
1402 int status = -1;
1403 int res = 0;
1404
1405 if (id >= TPACPI_RFK_SW_MAX)
1406 return -ENODEV;
1407
Andy Shevchenkobe51bd42020-05-11 15:56:24 +03001408 while ((cmd = strsep(&buf, ","))) {
Johannes Berg19d337d2009-06-02 13:01:37 +02001409 if (strlencmp(cmd, "enable") == 0)
1410 status = TPACPI_RFK_RADIO_ON;
1411 else if (strlencmp(cmd, "disable") == 0)
1412 status = TPACPI_RFK_RADIO_OFF;
1413 else
1414 return -EINVAL;
1415 }
1416
1417 if (status != -1) {
1418 tpacpi_disclose_usertask("procfs", "attempt to %s %s\n",
1419 (status == TPACPI_RFK_RADIO_ON) ?
1420 "enable" : "disable",
1421 tpacpi_rfkill_names[id]);
1422 res = (tpacpi_rfkill_switches[id]->ops->set_status)(status);
1423 tpacpi_rfk_update_swstate(tpacpi_rfkill_switches[id]);
1424 }
1425
1426 return res;
1427}
1428
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02001429/*************************************************************************
1430 * thinkpad-acpi driver attributes
1431 */
1432
1433/* interface_version --------------------------------------------------- */
Greg Kroah-Hartmanac3054c2017-06-09 11:03:12 +02001434static ssize_t interface_version_show(struct device_driver *drv, char *buf)
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02001435{
1436 return snprintf(buf, PAGE_SIZE, "0x%08x\n", TPACPI_SYSFS_VERSION);
1437}
Greg Kroah-Hartmanac3054c2017-06-09 11:03:12 +02001438static DRIVER_ATTR_RO(interface_version);
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02001439
1440/* debug_level --------------------------------------------------------- */
Greg Kroah-Hartmanac3054c2017-06-09 11:03:12 +02001441static ssize_t debug_level_show(struct device_driver *drv, char *buf)
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02001442{
1443 return snprintf(buf, PAGE_SIZE, "0x%04x\n", dbg_level);
1444}
1445
Greg Kroah-Hartmanac3054c2017-06-09 11:03:12 +02001446static ssize_t debug_level_store(struct device_driver *drv, const char *buf,
1447 size_t count)
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02001448{
1449 unsigned long t;
1450
1451 if (parse_strtoul(buf, 0xffff, &t))
1452 return -EINVAL;
1453
1454 dbg_level = t;
1455
1456 return count;
1457}
Greg Kroah-Hartmanac3054c2017-06-09 11:03:12 +02001458static DRIVER_ATTR_RW(debug_level);
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02001459
1460/* version ------------------------------------------------------------- */
Greg Kroah-Hartmanac3054c2017-06-09 11:03:12 +02001461static ssize_t version_show(struct device_driver *drv, char *buf)
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02001462{
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02001463 return snprintf(buf, PAGE_SIZE, "%s v%s\n",
1464 TPACPI_DESC, TPACPI_VERSION);
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02001465}
Greg Kroah-Hartmanac3054c2017-06-09 11:03:12 +02001466static DRIVER_ATTR_RO(version);
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02001467
1468/* --------------------------------------------------------------------- */
1469
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02001470#ifdef CONFIG_THINKPAD_ACPI_DEBUGFACILITIES
1471
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02001472/* wlsw_emulstate ------------------------------------------------------ */
Greg Kroah-Hartmanac3054c2017-06-09 11:03:12 +02001473static ssize_t wlsw_emulstate_show(struct device_driver *drv, char *buf)
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02001474{
1475 return snprintf(buf, PAGE_SIZE, "%d\n", !!tpacpi_wlsw_emulstate);
1476}
1477
Greg Kroah-Hartmanac3054c2017-06-09 11:03:12 +02001478static ssize_t wlsw_emulstate_store(struct device_driver *drv, const char *buf,
1479 size_t count)
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02001480{
1481 unsigned long t;
1482
1483 if (parse_strtoul(buf, 1, &t))
1484 return -EINVAL;
1485
Johannes Berg19d337d2009-06-02 13:01:37 +02001486 if (tpacpi_wlsw_emulstate != !!t) {
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02001487 tpacpi_wlsw_emulstate = !!t;
Johannes Berg19d337d2009-06-02 13:01:37 +02001488 tpacpi_rfk_update_hwblock_state(!t); /* negative logic */
1489 }
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02001490
1491 return count;
1492}
Greg Kroah-Hartmanac3054c2017-06-09 11:03:12 +02001493static DRIVER_ATTR_RW(wlsw_emulstate);
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02001494
1495/* bluetooth_emulstate ------------------------------------------------- */
Greg Kroah-Hartmanac3054c2017-06-09 11:03:12 +02001496static ssize_t bluetooth_emulstate_show(struct device_driver *drv, char *buf)
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02001497{
1498 return snprintf(buf, PAGE_SIZE, "%d\n", !!tpacpi_bluetooth_emulstate);
1499}
1500
Greg Kroah-Hartmanac3054c2017-06-09 11:03:12 +02001501static ssize_t bluetooth_emulstate_store(struct device_driver *drv,
1502 const char *buf, size_t count)
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02001503{
1504 unsigned long t;
1505
1506 if (parse_strtoul(buf, 1, &t))
1507 return -EINVAL;
1508
1509 tpacpi_bluetooth_emulstate = !!t;
1510
1511 return count;
1512}
Greg Kroah-Hartmanac3054c2017-06-09 11:03:12 +02001513static DRIVER_ATTR_RW(bluetooth_emulstate);
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02001514
1515/* wwan_emulstate ------------------------------------------------- */
Greg Kroah-Hartmanac3054c2017-06-09 11:03:12 +02001516static ssize_t wwan_emulstate_show(struct device_driver *drv, char *buf)
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02001517{
1518 return snprintf(buf, PAGE_SIZE, "%d\n", !!tpacpi_wwan_emulstate);
1519}
1520
Greg Kroah-Hartmanac3054c2017-06-09 11:03:12 +02001521static ssize_t wwan_emulstate_store(struct device_driver *drv, const char *buf,
1522 size_t count)
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02001523{
1524 unsigned long t;
1525
1526 if (parse_strtoul(buf, 1, &t))
1527 return -EINVAL;
1528
1529 tpacpi_wwan_emulstate = !!t;
1530
1531 return count;
1532}
Greg Kroah-Hartmanac3054c2017-06-09 11:03:12 +02001533static DRIVER_ATTR_RW(wwan_emulstate);
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02001534
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -02001535/* uwb_emulstate ------------------------------------------------- */
Greg Kroah-Hartmanac3054c2017-06-09 11:03:12 +02001536static ssize_t uwb_emulstate_show(struct device_driver *drv, char *buf)
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -02001537{
1538 return snprintf(buf, PAGE_SIZE, "%d\n", !!tpacpi_uwb_emulstate);
1539}
1540
Greg Kroah-Hartmanac3054c2017-06-09 11:03:12 +02001541static ssize_t uwb_emulstate_store(struct device_driver *drv, const char *buf,
1542 size_t count)
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -02001543{
1544 unsigned long t;
1545
1546 if (parse_strtoul(buf, 1, &t))
1547 return -EINVAL;
1548
1549 tpacpi_uwb_emulstate = !!t;
1550
1551 return count;
1552}
Greg Kroah-Hartmanac3054c2017-06-09 11:03:12 +02001553static DRIVER_ATTR_RW(uwb_emulstate);
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02001554#endif
1555
1556/* --------------------------------------------------------------------- */
1557
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02001558static struct driver_attribute *tpacpi_driver_attributes[] = {
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02001559 &driver_attr_debug_level, &driver_attr_version,
1560 &driver_attr_interface_version,
1561};
1562
1563static int __init tpacpi_create_driver_attributes(struct device_driver *drv)
1564{
1565 int i, res;
1566
1567 i = 0;
1568 res = 0;
1569 while (!res && i < ARRAY_SIZE(tpacpi_driver_attributes)) {
1570 res = driver_create_file(drv, tpacpi_driver_attributes[i]);
1571 i++;
1572 }
1573
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02001574#ifdef CONFIG_THINKPAD_ACPI_DEBUGFACILITIES
1575 if (!res && dbg_wlswemul)
1576 res = driver_create_file(drv, &driver_attr_wlsw_emulstate);
1577 if (!res && dbg_bluetoothemul)
1578 res = driver_create_file(drv, &driver_attr_bluetooth_emulstate);
1579 if (!res && dbg_wwanemul)
1580 res = driver_create_file(drv, &driver_attr_wwan_emulstate);
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -02001581 if (!res && dbg_uwbemul)
1582 res = driver_create_file(drv, &driver_attr_uwb_emulstate);
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02001583#endif
1584
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02001585 return res;
1586}
1587
1588static void tpacpi_remove_driver_attributes(struct device_driver *drv)
1589{
1590 int i;
1591
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02001592 for (i = 0; i < ARRAY_SIZE(tpacpi_driver_attributes); i++)
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02001593 driver_remove_file(drv, tpacpi_driver_attributes[i]);
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02001594
1595#ifdef THINKPAD_ACPI_DEBUGFACILITIES
1596 driver_remove_file(drv, &driver_attr_wlsw_emulstate);
1597 driver_remove_file(drv, &driver_attr_bluetooth_emulstate);
1598 driver_remove_file(drv, &driver_attr_wwan_emulstate);
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -02001599 driver_remove_file(drv, &driver_attr_uwb_emulstate);
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02001600#endif
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02001601}
1602
Henrique de Moraes Holschuh600a99f2009-09-12 15:22:12 -03001603/*************************************************************************
1604 * Firmware Data
1605 */
1606
1607/*
1608 * Table of recommended minimum BIOS versions
1609 *
1610 * Reasons for listing:
Uwe Kleine-König9ddc5b62010-01-20 17:02:24 +01001611 * 1. Stable BIOS, listed because the unknown amount of
Henrique de Moraes Holschuh600a99f2009-09-12 15:22:12 -03001612 * bugs and bad ACPI behaviour on older versions
1613 *
1614 * 2. BIOS or EC fw with known bugs that trigger on Linux
1615 *
1616 * 3. BIOS with known reduced functionality in older versions
1617 *
1618 * We recommend the latest BIOS and EC version.
1619 * We only support the latest BIOS and EC fw version as a rule.
1620 *
1621 * Sources: IBM ThinkPad Public Web Documents (update changelogs),
1622 * Information from users in ThinkWiki
Henrique de Moraes Holschuhe675aba2009-09-12 15:22:13 -03001623 *
1624 * WARNING: we use this table also to detect that the machine is
1625 * a ThinkPad in some cases, so don't remove entries lightly.
Henrique de Moraes Holschuh600a99f2009-09-12 15:22:12 -03001626 */
1627
1628#define TPV_Q(__v, __id1, __id2, __bv1, __bv2) \
1629 { .vendor = (__v), \
1630 .bios = TPID(__id1, __id2), \
1631 .ec = TPACPI_MATCH_ANY, \
Jouke Witteveen846a4162018-07-11 11:44:41 +02001632 .quirks = TPACPI_MATCH_ANY_VERSION << 16 \
1633 | TPVER(__bv1, __bv2) }
Henrique de Moraes Holschuh600a99f2009-09-12 15:22:12 -03001634
1635#define TPV_Q_X(__v, __bid1, __bid2, __bv1, __bv2, \
Henrique de Moraes Holschuh275014a2009-11-17 14:07:22 -08001636 __eid, __ev1, __ev2) \
Henrique de Moraes Holschuh600a99f2009-09-12 15:22:12 -03001637 { .vendor = (__v), \
1638 .bios = TPID(__bid1, __bid2), \
Henrique de Moraes Holschuh275014a2009-11-17 14:07:22 -08001639 .ec = __eid, \
Jouke Witteveen846a4162018-07-11 11:44:41 +02001640 .quirks = TPVER(__ev1, __ev2) << 16 \
1641 | TPVER(__bv1, __bv2) }
Henrique de Moraes Holschuh600a99f2009-09-12 15:22:12 -03001642
1643#define TPV_QI0(__id1, __id2, __bv1, __bv2) \
1644 TPV_Q(PCI_VENDOR_ID_IBM, __id1, __id2, __bv1, __bv2)
1645
Henrique de Moraes Holschuh275014a2009-11-17 14:07:22 -08001646/* Outdated IBM BIOSes often lack the EC id string */
Henrique de Moraes Holschuh600a99f2009-09-12 15:22:12 -03001647#define TPV_QI1(__id1, __id2, __bv1, __bv2, __ev1, __ev2) \
1648 TPV_Q_X(PCI_VENDOR_ID_IBM, __id1, __id2, \
Henrique de Moraes Holschuh275014a2009-11-17 14:07:22 -08001649 __bv1, __bv2, TPID(__id1, __id2), \
1650 __ev1, __ev2), \
1651 TPV_Q_X(PCI_VENDOR_ID_IBM, __id1, __id2, \
1652 __bv1, __bv2, TPACPI_MATCH_UNKNOWN, \
1653 __ev1, __ev2)
Henrique de Moraes Holschuh600a99f2009-09-12 15:22:12 -03001654
Henrique de Moraes Holschuh275014a2009-11-17 14:07:22 -08001655/* Outdated IBM BIOSes often lack the EC id string */
Henrique de Moraes Holschuh600a99f2009-09-12 15:22:12 -03001656#define TPV_QI2(__bid1, __bid2, __bv1, __bv2, \
1657 __eid1, __eid2, __ev1, __ev2) \
1658 TPV_Q_X(PCI_VENDOR_ID_IBM, __bid1, __bid2, \
Henrique de Moraes Holschuh275014a2009-11-17 14:07:22 -08001659 __bv1, __bv2, TPID(__eid1, __eid2), \
1660 __ev1, __ev2), \
1661 TPV_Q_X(PCI_VENDOR_ID_IBM, __bid1, __bid2, \
1662 __bv1, __bv2, TPACPI_MATCH_UNKNOWN, \
1663 __ev1, __ev2)
Henrique de Moraes Holschuh600a99f2009-09-12 15:22:12 -03001664
1665#define TPV_QL0(__id1, __id2, __bv1, __bv2) \
1666 TPV_Q(PCI_VENDOR_ID_LENOVO, __id1, __id2, __bv1, __bv2)
1667
1668#define TPV_QL1(__id1, __id2, __bv1, __bv2, __ev1, __ev2) \
1669 TPV_Q_X(PCI_VENDOR_ID_LENOVO, __id1, __id2, \
Henrique de Moraes Holschuh275014a2009-11-17 14:07:22 -08001670 __bv1, __bv2, TPID(__id1, __id2), \
1671 __ev1, __ev2)
Henrique de Moraes Holschuh600a99f2009-09-12 15:22:12 -03001672
1673#define TPV_QL2(__bid1, __bid2, __bv1, __bv2, \
1674 __eid1, __eid2, __ev1, __ev2) \
1675 TPV_Q_X(PCI_VENDOR_ID_LENOVO, __bid1, __bid2, \
Henrique de Moraes Holschuh275014a2009-11-17 14:07:22 -08001676 __bv1, __bv2, TPID(__eid1, __eid2), \
1677 __ev1, __ev2)
Henrique de Moraes Holschuh600a99f2009-09-12 15:22:12 -03001678
1679static const struct tpacpi_quirk tpacpi_bios_version_qtable[] __initconst = {
1680 /* Numeric models ------------------ */
1681 /* FW MODEL BIOS VERS */
1682 TPV_QI0('I', 'M', '6', '5'), /* 570 */
1683 TPV_QI0('I', 'U', '2', '6'), /* 570E */
1684 TPV_QI0('I', 'B', '5', '4'), /* 600 */
1685 TPV_QI0('I', 'H', '4', '7'), /* 600E */
1686 TPV_QI0('I', 'N', '3', '6'), /* 600E */
1687 TPV_QI0('I', 'T', '5', '5'), /* 600X */
1688 TPV_QI0('I', 'D', '4', '8'), /* 770, 770E, 770ED */
1689 TPV_QI0('I', 'I', '4', '2'), /* 770X */
1690 TPV_QI0('I', 'O', '2', '3'), /* 770Z */
1691
1692 /* A-series ------------------------- */
1693 /* FW MODEL BIOS VERS EC VERS */
1694 TPV_QI0('I', 'W', '5', '9'), /* A20m */
1695 TPV_QI0('I', 'V', '6', '9'), /* A20p */
1696 TPV_QI0('1', '0', '2', '6'), /* A21e, A22e */
1697 TPV_QI0('K', 'U', '3', '6'), /* A21e */
1698 TPV_QI0('K', 'X', '3', '6'), /* A21m, A22m */
1699 TPV_QI0('K', 'Y', '3', '8'), /* A21p, A22p */
1700 TPV_QI0('1', 'B', '1', '7'), /* A22e */
1701 TPV_QI0('1', '3', '2', '0'), /* A22m */
1702 TPV_QI0('1', 'E', '7', '3'), /* A30/p (0) */
1703 TPV_QI1('1', 'G', '4', '1', '1', '7'), /* A31/p (0) */
1704 TPV_QI1('1', 'N', '1', '6', '0', '7'), /* A31/p (0) */
1705
1706 /* G-series ------------------------- */
1707 /* FW MODEL BIOS VERS */
1708 TPV_QI0('1', 'T', 'A', '6'), /* G40 */
1709 TPV_QI0('1', 'X', '5', '7'), /* G41 */
1710
1711 /* R-series, T-series --------------- */
1712 /* FW MODEL BIOS VERS EC VERS */
1713 TPV_QI0('1', 'C', 'F', '0'), /* R30 */
1714 TPV_QI0('1', 'F', 'F', '1'), /* R31 */
1715 TPV_QI0('1', 'M', '9', '7'), /* R32 */
1716 TPV_QI0('1', 'O', '6', '1'), /* R40 */
1717 TPV_QI0('1', 'P', '6', '5'), /* R40 */
1718 TPV_QI0('1', 'S', '7', '0'), /* R40e */
1719 TPV_QI1('1', 'R', 'D', 'R', '7', '1'), /* R50/p, R51,
1720 T40/p, T41/p, T42/p (1) */
1721 TPV_QI1('1', 'V', '7', '1', '2', '8'), /* R50e, R51 (1) */
1722 TPV_QI1('7', '8', '7', '1', '0', '6'), /* R51e (1) */
1723 TPV_QI1('7', '6', '6', '9', '1', '6'), /* R52 (1) */
1724 TPV_QI1('7', '0', '6', '9', '2', '8'), /* R52, T43 (1) */
1725
1726 TPV_QI0('I', 'Y', '6', '1'), /* T20 */
1727 TPV_QI0('K', 'Z', '3', '4'), /* T21 */
1728 TPV_QI0('1', '6', '3', '2'), /* T22 */
1729 TPV_QI1('1', 'A', '6', '4', '2', '3'), /* T23 (0) */
1730 TPV_QI1('1', 'I', '7', '1', '2', '0'), /* T30 (0) */
1731 TPV_QI1('1', 'Y', '6', '5', '2', '9'), /* T43/p (1) */
1732
1733 TPV_QL1('7', '9', 'E', '3', '5', '0'), /* T60/p */
1734 TPV_QL1('7', 'C', 'D', '2', '2', '2'), /* R60, R60i */
Henrique de Moraes Holschuh90765c62009-12-09 01:36:23 +00001735 TPV_QL1('7', 'E', 'D', '0', '1', '5'), /* R60e, R60i */
Henrique de Moraes Holschuh600a99f2009-09-12 15:22:12 -03001736
1737 /* BIOS FW BIOS VERS EC FW EC VERS */
1738 TPV_QI2('1', 'W', '9', '0', '1', 'V', '2', '8'), /* R50e (1) */
1739 TPV_QL2('7', 'I', '3', '4', '7', '9', '5', '0'), /* T60/p wide */
1740
1741 /* X-series ------------------------- */
1742 /* FW MODEL BIOS VERS EC VERS */
1743 TPV_QI0('I', 'Z', '9', 'D'), /* X20, X21 */
1744 TPV_QI0('1', 'D', '7', '0'), /* X22, X23, X24 */
1745 TPV_QI1('1', 'K', '4', '8', '1', '8'), /* X30 (0) */
1746 TPV_QI1('1', 'Q', '9', '7', '2', '3'), /* X31, X32 (0) */
1747 TPV_QI1('1', 'U', 'D', '3', 'B', '2'), /* X40 (0) */
1748 TPV_QI1('7', '4', '6', '4', '2', '7'), /* X41 (0) */
1749 TPV_QI1('7', '5', '6', '0', '2', '0'), /* X41t (0) */
1750
Henrique de Moraes Holschuh90765c62009-12-09 01:36:23 +00001751 TPV_QL1('7', 'B', 'D', '7', '4', '0'), /* X60/s */
1752 TPV_QL1('7', 'J', '3', '0', '1', '3'), /* X60t */
Henrique de Moraes Holschuh600a99f2009-09-12 15:22:12 -03001753
1754 /* (0) - older versions lack DMI EC fw string and functionality */
1755 /* (1) - older versions known to lack functionality */
1756};
1757
1758#undef TPV_QL1
1759#undef TPV_QL0
1760#undef TPV_QI2
1761#undef TPV_QI1
1762#undef TPV_QI0
1763#undef TPV_Q_X
1764#undef TPV_Q
1765
1766static void __init tpacpi_check_outdated_fw(void)
1767{
1768 unsigned long fwvers;
1769 u16 ec_version, bios_version;
1770
1771 fwvers = tpacpi_check_quirks(tpacpi_bios_version_qtable,
1772 ARRAY_SIZE(tpacpi_bios_version_qtable));
1773
1774 if (!fwvers)
1775 return;
1776
1777 bios_version = fwvers & 0xffffU;
1778 ec_version = (fwvers >> 16) & 0xffffU;
1779
1780 /* note that unknown versions are set to 0x0000 and we use that */
1781 if ((bios_version > thinkpad_id.bios_release) ||
1782 (ec_version > thinkpad_id.ec_release &&
Jouke Witteveen846a4162018-07-11 11:44:41 +02001783 ec_version != TPACPI_MATCH_ANY_VERSION)) {
Henrique de Moraes Holschuh600a99f2009-09-12 15:22:12 -03001784 /*
1785 * The changelogs would let us track down the exact
1786 * reason, but it is just too much of a pain to track
1787 * it. We only list BIOSes that are either really
1788 * broken, or really stable to begin with, so it is
1789 * best if the user upgrades the firmware anyway.
1790 */
Joe Perches0978e012011-04-04 10:06:25 -07001791 pr_warn("WARNING: Outdated ThinkPad BIOS/EC firmware\n");
Andy Shevchenko5cac62a2017-05-09 17:17:20 +03001792 pr_warn("WARNING: This firmware may be missing critical bug fixes and/or important features\n");
Henrique de Moraes Holschuh600a99f2009-09-12 15:22:12 -03001793 }
1794}
1795
Henrique de Moraes Holschuhe675aba2009-09-12 15:22:13 -03001796static bool __init tpacpi_is_fw_known(void)
1797{
1798 return tpacpi_check_quirks(tpacpi_bios_version_qtable,
1799 ARRAY_SIZE(tpacpi_bios_version_qtable)) != 0;
1800}
1801
Henrique de Moraes Holschuh54ae1502007-04-24 11:48:12 -03001802/****************************************************************************
1803 ****************************************************************************
1804 *
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03001805 * Subdrivers
1806 *
1807 ****************************************************************************
1808 ****************************************************************************/
1809
1810/*************************************************************************
Henrique de Moraes Holschuh7a43f782010-05-16 19:45:31 -03001811 * thinkpad-acpi metadata subdriver
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03001812 */
1813
Alexey Dobriyan887965e2009-12-15 21:51:12 -02001814static int thinkpad_acpi_driver_read(struct seq_file *m)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001815{
Alexey Dobriyan887965e2009-12-15 21:51:12 -02001816 seq_printf(m, "driver:\t\t%s\n", TPACPI_DESC);
1817 seq_printf(m, "version:\t%s\n", TPACPI_VERSION);
1818 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001819}
1820
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03001821static struct ibm_struct thinkpad_acpi_driver_data = {
1822 .name = "driver",
1823 .read = thinkpad_acpi_driver_read,
1824};
1825
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03001826/*************************************************************************
1827 * Hotkey subdriver
1828 */
1829
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03001830/*
1831 * ThinkPad firmware event model
1832 *
1833 * The ThinkPad firmware has two main event interfaces: normal ACPI
1834 * notifications (which follow the ACPI standard), and a private event
1835 * interface.
1836 *
1837 * The private event interface also issues events for the hotkeys. As
1838 * the driver gained features, the event handling code ended up being
1839 * built around the hotkey subdriver. This will need to be refactored
1840 * to a more formal event API eventually.
1841 *
1842 * Some "hotkeys" are actually supposed to be used as event reports,
1843 * such as "brightness has changed", "volume has changed", depending on
1844 * the ThinkPad model and how the firmware is operating.
1845 *
1846 * Unlike other classes, hotkey-class events have mask/unmask control on
1847 * non-ancient firmware. However, how it behaves changes a lot with the
1848 * firmware model and version.
1849 */
1850
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02001851enum { /* hot key scan codes (derived from ACPI DSDT) */
1852 TP_ACPI_HOTKEYSCAN_FNF1 = 0,
1853 TP_ACPI_HOTKEYSCAN_FNF2,
1854 TP_ACPI_HOTKEYSCAN_FNF3,
1855 TP_ACPI_HOTKEYSCAN_FNF4,
1856 TP_ACPI_HOTKEYSCAN_FNF5,
1857 TP_ACPI_HOTKEYSCAN_FNF6,
1858 TP_ACPI_HOTKEYSCAN_FNF7,
1859 TP_ACPI_HOTKEYSCAN_FNF8,
1860 TP_ACPI_HOTKEYSCAN_FNF9,
1861 TP_ACPI_HOTKEYSCAN_FNF10,
1862 TP_ACPI_HOTKEYSCAN_FNF11,
1863 TP_ACPI_HOTKEYSCAN_FNF12,
1864 TP_ACPI_HOTKEYSCAN_FNBACKSPACE,
1865 TP_ACPI_HOTKEYSCAN_FNINSERT,
1866 TP_ACPI_HOTKEYSCAN_FNDELETE,
1867 TP_ACPI_HOTKEYSCAN_FNHOME,
1868 TP_ACPI_HOTKEYSCAN_FNEND,
1869 TP_ACPI_HOTKEYSCAN_FNPAGEUP,
1870 TP_ACPI_HOTKEYSCAN_FNPAGEDOWN,
1871 TP_ACPI_HOTKEYSCAN_FNSPACE,
1872 TP_ACPI_HOTKEYSCAN_VOLUMEUP,
1873 TP_ACPI_HOTKEYSCAN_VOLUMEDOWN,
1874 TP_ACPI_HOTKEYSCAN_MUTE,
1875 TP_ACPI_HOTKEYSCAN_THINKPAD,
Henrique de Moraes Holschuh34a656d22010-08-09 23:48:20 -03001876 TP_ACPI_HOTKEYSCAN_UNK1,
1877 TP_ACPI_HOTKEYSCAN_UNK2,
1878 TP_ACPI_HOTKEYSCAN_UNK3,
1879 TP_ACPI_HOTKEYSCAN_UNK4,
1880 TP_ACPI_HOTKEYSCAN_UNK5,
1881 TP_ACPI_HOTKEYSCAN_UNK6,
1882 TP_ACPI_HOTKEYSCAN_UNK7,
1883 TP_ACPI_HOTKEYSCAN_UNK8,
1884
Christian Kellner149c8c72017-02-28 17:10:56 +01001885 /* Adaptive keyboard keycodes */
1886 TP_ACPI_HOTKEYSCAN_ADAPTIVE_START,
1887 TP_ACPI_HOTKEYSCAN_MUTE2 = TP_ACPI_HOTKEYSCAN_ADAPTIVE_START,
Bastien Nocera6a68d852015-03-02 14:45:31 +01001888 TP_ACPI_HOTKEYSCAN_BRIGHTNESS_ZERO,
1889 TP_ACPI_HOTKEYSCAN_CLIPPING_TOOL,
1890 TP_ACPI_HOTKEYSCAN_CLOUD,
1891 TP_ACPI_HOTKEYSCAN_UNK9,
1892 TP_ACPI_HOTKEYSCAN_VOICE,
1893 TP_ACPI_HOTKEYSCAN_UNK10,
1894 TP_ACPI_HOTKEYSCAN_GESTURES,
1895 TP_ACPI_HOTKEYSCAN_UNK11,
1896 TP_ACPI_HOTKEYSCAN_UNK12,
1897 TP_ACPI_HOTKEYSCAN_UNK13,
1898 TP_ACPI_HOTKEYSCAN_CONFIG,
1899 TP_ACPI_HOTKEYSCAN_NEW_TAB,
1900 TP_ACPI_HOTKEYSCAN_RELOAD,
1901 TP_ACPI_HOTKEYSCAN_BACK,
1902 TP_ACPI_HOTKEYSCAN_MIC_DOWN,
1903 TP_ACPI_HOTKEYSCAN_MIC_UP,
1904 TP_ACPI_HOTKEYSCAN_MIC_CANCELLATION,
1905 TP_ACPI_HOTKEYSCAN_CAMERA_MODE,
1906 TP_ACPI_HOTKEYSCAN_ROTATE_DISPLAY,
1907
Christian Kellner696c65232017-02-28 17:10:57 +01001908 /* Lenovo extended keymap, starting at 0x1300 */
1909 TP_ACPI_HOTKEYSCAN_EXTENDED_START,
1910 /* first new observed key (star, favorites) is 0x1311 */
1911 TP_ACPI_HOTKEYSCAN_STAR = 69,
1912 TP_ACPI_HOTKEYSCAN_CLIPPING_TOOL2,
Benjamin Bergcb5c1972018-06-20 15:49:27 +02001913 TP_ACPI_HOTKEYSCAN_CALCULATOR,
Christian Kellner696c65232017-02-28 17:10:57 +01001914 TP_ACPI_HOTKEYSCAN_BLUETOOTH,
1915 TP_ACPI_HOTKEYSCAN_KEYBOARD,
1916
Henrique de Moraes Holschuh34a656d22010-08-09 23:48:20 -03001917 /* Hotkey keymap size */
1918 TPACPI_HOTKEY_MAP_LEN
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02001919};
1920
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03001921enum { /* Keys/events available through NVRAM polling */
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02001922 TPACPI_HKEY_NVRAM_KNOWN_MASK = 0x00fb88c0U,
1923 TPACPI_HKEY_NVRAM_GOOD_MASK = 0x00fb8000U,
1924};
1925
1926enum { /* Positions of some of the keys in hotkey masks */
1927 TP_ACPI_HKEY_DISPSWTCH_MASK = 1 << TP_ACPI_HOTKEYSCAN_FNF7,
1928 TP_ACPI_HKEY_DISPXPAND_MASK = 1 << TP_ACPI_HOTKEYSCAN_FNF8,
1929 TP_ACPI_HKEY_HIBERNATE_MASK = 1 << TP_ACPI_HOTKEYSCAN_FNF12,
1930 TP_ACPI_HKEY_BRGHTUP_MASK = 1 << TP_ACPI_HOTKEYSCAN_FNHOME,
1931 TP_ACPI_HKEY_BRGHTDWN_MASK = 1 << TP_ACPI_HOTKEYSCAN_FNEND,
Hans de Goedec685e202017-02-09 16:44:13 +01001932 TP_ACPI_HKEY_KBD_LIGHT_MASK = 1 << TP_ACPI_HOTKEYSCAN_FNPAGEUP,
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02001933 TP_ACPI_HKEY_ZOOM_MASK = 1 << TP_ACPI_HOTKEYSCAN_FNSPACE,
1934 TP_ACPI_HKEY_VOLUP_MASK = 1 << TP_ACPI_HOTKEYSCAN_VOLUMEUP,
1935 TP_ACPI_HKEY_VOLDWN_MASK = 1 << TP_ACPI_HOTKEYSCAN_VOLUMEDOWN,
1936 TP_ACPI_HKEY_MUTE_MASK = 1 << TP_ACPI_HOTKEYSCAN_MUTE,
1937 TP_ACPI_HKEY_THINKPAD_MASK = 1 << TP_ACPI_HOTKEYSCAN_THINKPAD,
1938};
1939
1940enum { /* NVRAM to ACPI HKEY group map */
1941 TP_NVRAM_HKEY_GROUP_HK2 = TP_ACPI_HKEY_THINKPAD_MASK |
1942 TP_ACPI_HKEY_ZOOM_MASK |
1943 TP_ACPI_HKEY_DISPSWTCH_MASK |
1944 TP_ACPI_HKEY_HIBERNATE_MASK,
1945 TP_NVRAM_HKEY_GROUP_BRIGHTNESS = TP_ACPI_HKEY_BRGHTUP_MASK |
1946 TP_ACPI_HKEY_BRGHTDWN_MASK,
1947 TP_NVRAM_HKEY_GROUP_VOLUME = TP_ACPI_HKEY_VOLUP_MASK |
1948 TP_ACPI_HKEY_VOLDWN_MASK |
1949 TP_ACPI_HKEY_MUTE_MASK,
1950};
1951
1952#ifdef CONFIG_THINKPAD_ACPI_HOTKEY_POLL
1953struct tp_nvram_state {
1954 u16 thinkpad_toggle:1;
1955 u16 zoom_toggle:1;
1956 u16 display_toggle:1;
1957 u16 thinklight_toggle:1;
1958 u16 hibernate_toggle:1;
1959 u16 displayexp_toggle:1;
1960 u16 display_state:1;
1961 u16 brightness_toggle:1;
1962 u16 volume_toggle:1;
1963 u16 mute:1;
1964
1965 u8 brightness_level;
1966 u8 volume_level;
1967};
1968
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03001969/* kthread for the hotkey poller */
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02001970static struct task_struct *tpacpi_hotkey_task;
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03001971
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03001972/*
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03001973 * Acquire mutex to write poller control variables as an
1974 * atomic block.
1975 *
1976 * Increment hotkey_config_change when changing them if you
1977 * want the kthread to forget old state.
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03001978 *
1979 * See HOTKEY_CONFIG_CRITICAL_START/HOTKEY_CONFIG_CRITICAL_END
1980 */
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02001981static struct mutex hotkey_thread_data_mutex;
1982static unsigned int hotkey_config_change;
1983
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03001984/*
1985 * hotkey poller control variables
1986 *
1987 * Must be atomic or readers will also need to acquire mutex
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03001988 *
1989 * HOTKEY_CONFIG_CRITICAL_START/HOTKEY_CONFIG_CRITICAL_END
1990 * should be used only when the changes need to be taken as
1991 * a block, OR when one needs to force the kthread to forget
1992 * old state.
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03001993 */
1994static u32 hotkey_source_mask; /* bit mask 0=ACPI,1=NVRAM */
1995static unsigned int hotkey_poll_freq = 10; /* Hz */
1996
1997#define HOTKEY_CONFIG_CRITICAL_START \
1998 do { \
1999 mutex_lock(&hotkey_thread_data_mutex); \
2000 hotkey_config_change++; \
2001 } while (0);
2002#define HOTKEY_CONFIG_CRITICAL_END \
2003 mutex_unlock(&hotkey_thread_data_mutex);
2004
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002005#else /* CONFIG_THINKPAD_ACPI_HOTKEY_POLL */
2006
2007#define hotkey_source_mask 0U
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03002008#define HOTKEY_CONFIG_CRITICAL_START
2009#define HOTKEY_CONFIG_CRITICAL_END
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002010
2011#endif /* CONFIG_THINKPAD_ACPI_HOTKEY_POLL */
2012
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02002013static struct mutex hotkey_mutex;
2014
Henrique de Moraes Holschuha713b4d2008-01-08 13:02:52 -02002015static enum { /* Reasons for waking up */
2016 TP_ACPI_WAKEUP_NONE = 0, /* None or unknown */
2017 TP_ACPI_WAKEUP_BAYEJ, /* Bay ejection request */
2018 TP_ACPI_WAKEUP_UNDOCK, /* Undock request */
2019} hotkey_wakeup_reason;
2020
2021static int hotkey_autosleep_ack;
2022
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002023static u32 hotkey_orig_mask; /* events the BIOS had enabled */
2024static u32 hotkey_all_mask; /* all events supported in fw */
Dennis Wassenberg0118c2d2016-06-08 10:54:25 -04002025static u32 hotkey_adaptive_all_mask; /* all adaptive events supported in fw */
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002026static u32 hotkey_reserved_mask; /* events better left disabled */
2027static u32 hotkey_driver_mask; /* events needed by the driver */
2028static u32 hotkey_user_mask; /* events visible to userspace */
2029static u32 hotkey_acpi_mask; /* events enabled in firmware */
Henrique de Moraes Holschuh6a38abb2007-07-18 23:45:35 -03002030
Henrique de Moraes Holschuhedf0e0e2007-07-18 23:45:44 -03002031static u16 *hotkey_keycode_map;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04002032
Henrique de Moraes Holschuh94954cc62007-07-18 23:45:27 -03002033static struct attribute_set *hotkey_dev_attributes;
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03002034
Henrique de Moraes Holschuh8b468c02009-09-20 14:09:26 -03002035static void tpacpi_driver_event(const unsigned int hkey_event);
2036static void hotkey_driver_event(const unsigned int scancode);
Henrique de Moraes Holschuh7f0cf712010-02-25 21:29:00 -03002037static void hotkey_poll_setup(const bool may_warn);
Henrique de Moraes Holschuh8b468c02009-09-20 14:09:26 -03002038
Henrique de Moraes Holschuh6c231bd2008-02-16 02:17:58 -02002039/* HKEY.MHKG() return bits */
2040#define TP_HOTKEY_TABLET_MASK (1 << 3)
Benjamin Bergdda3ec02017-09-15 15:20:49 +02002041enum {
2042 TP_ACPI_MULTI_MODE_INVALID = 0,
2043 TP_ACPI_MULTI_MODE_UNKNOWN = 1 << 0,
2044 TP_ACPI_MULTI_MODE_LAPTOP = 1 << 1,
2045 TP_ACPI_MULTI_MODE_TABLET = 1 << 2,
2046 TP_ACPI_MULTI_MODE_FLAT = 1 << 3,
2047 TP_ACPI_MULTI_MODE_STAND = 1 << 4,
2048 TP_ACPI_MULTI_MODE_TENT = 1 << 5,
2049 TP_ACPI_MULTI_MODE_STAND_TENT = 1 << 6,
2050};
2051
2052enum {
2053 /* The following modes are considered tablet mode for the purpose of
2054 * reporting the status to userspace. i.e. in all these modes it makes
2055 * sense to disable the laptop input devices such as touchpad and
2056 * keyboard.
2057 */
2058 TP_ACPI_MULTI_MODE_TABLET_LIKE = TP_ACPI_MULTI_MODE_TABLET |
2059 TP_ACPI_MULTI_MODE_STAND |
2060 TP_ACPI_MULTI_MODE_TENT |
2061 TP_ACPI_MULTI_MODE_STAND_TENT,
2062};
Henrique de Moraes Holschuh6c231bd2008-02-16 02:17:58 -02002063
Johannes Berg19d337d2009-06-02 13:01:37 +02002064static int hotkey_get_wlsw(void)
Henrique de Moraes Holschuh74941a62007-07-18 23:45:31 -03002065{
Johannes Berg19d337d2009-06-02 13:01:37 +02002066 int status;
2067
2068 if (!tp_features.hotkey_wlsw)
2069 return -ENODEV;
2070
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02002071#ifdef CONFIG_THINKPAD_ACPI_DEBUGFACILITIES
Johannes Berg19d337d2009-06-02 13:01:37 +02002072 if (dbg_wlswemul)
2073 return (tpacpi_wlsw_emulstate) ?
2074 TPACPI_RFK_RADIO_ON : TPACPI_RFK_RADIO_OFF;
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02002075#endif
Johannes Berg19d337d2009-06-02 13:01:37 +02002076
2077 if (!acpi_evalf(hkey_handle, &status, "WLSW", "d"))
Henrique de Moraes Holschuh74941a62007-07-18 23:45:31 -03002078 return -EIO;
Johannes Berg19d337d2009-06-02 13:01:37 +02002079
2080 return (status) ? TPACPI_RFK_RADIO_ON : TPACPI_RFK_RADIO_OFF;
Henrique de Moraes Holschuh74941a62007-07-18 23:45:31 -03002081}
2082
Benjamin Bergdda3ec02017-09-15 15:20:49 +02002083static int hotkey_gmms_get_tablet_mode(int s, int *has_tablet_mode)
2084{
2085 int type = (s >> 16) & 0xffff;
2086 int value = s & 0xffff;
2087 int mode = TP_ACPI_MULTI_MODE_INVALID;
2088 int valid_modes = 0;
2089
2090 if (has_tablet_mode)
2091 *has_tablet_mode = 0;
2092
2093 switch (type) {
2094 case 1:
2095 valid_modes = TP_ACPI_MULTI_MODE_LAPTOP |
2096 TP_ACPI_MULTI_MODE_TABLET |
2097 TP_ACPI_MULTI_MODE_STAND_TENT;
2098 break;
2099 case 2:
2100 valid_modes = TP_ACPI_MULTI_MODE_LAPTOP |
2101 TP_ACPI_MULTI_MODE_FLAT |
2102 TP_ACPI_MULTI_MODE_TABLET |
2103 TP_ACPI_MULTI_MODE_STAND |
2104 TP_ACPI_MULTI_MODE_TENT;
2105 break;
2106 case 3:
2107 valid_modes = TP_ACPI_MULTI_MODE_LAPTOP |
2108 TP_ACPI_MULTI_MODE_FLAT;
2109 break;
2110 case 4:
Benjamin Bergdda3ec02017-09-15 15:20:49 +02002111 case 5:
Benjamin Berg26befef2017-11-14 17:14:14 +01002112 /* In mode 4, FLAT is not specified as a valid mode. However,
2113 * it can be seen at least on the X1 Yoga 2nd Generation.
2114 */
Benjamin Bergdda3ec02017-09-15 15:20:49 +02002115 valid_modes = TP_ACPI_MULTI_MODE_LAPTOP |
2116 TP_ACPI_MULTI_MODE_FLAT |
2117 TP_ACPI_MULTI_MODE_TABLET |
2118 TP_ACPI_MULTI_MODE_STAND |
2119 TP_ACPI_MULTI_MODE_TENT;
2120 break;
2121 default:
2122 pr_err("Unknown multi mode status type %d with value 0x%04X, please report this to %s\n",
2123 type, value, TPACPI_MAIL);
2124 return 0;
2125 }
2126
2127 if (has_tablet_mode && (valid_modes & TP_ACPI_MULTI_MODE_TABLET_LIKE))
2128 *has_tablet_mode = 1;
2129
2130 switch (value) {
2131 case 1:
2132 mode = TP_ACPI_MULTI_MODE_LAPTOP;
2133 break;
2134 case 2:
2135 mode = TP_ACPI_MULTI_MODE_FLAT;
2136 break;
2137 case 3:
2138 mode = TP_ACPI_MULTI_MODE_TABLET;
2139 break;
2140 case 4:
2141 if (type == 1)
2142 mode = TP_ACPI_MULTI_MODE_STAND_TENT;
2143 else
2144 mode = TP_ACPI_MULTI_MODE_STAND;
2145 break;
2146 case 5:
2147 mode = TP_ACPI_MULTI_MODE_TENT;
2148 break;
2149 default:
2150 if (type == 5 && value == 0xffff) {
2151 pr_warn("Multi mode status is undetected, assuming laptop\n");
2152 return 0;
2153 }
2154 }
2155
2156 if (!(mode & valid_modes)) {
2157 pr_err("Unknown/reserved multi mode value 0x%04X for type %d, please report this to %s\n",
2158 value, type, TPACPI_MAIL);
2159 return 0;
2160 }
2161
2162 return !!(mode & TP_ACPI_MULTI_MODE_TABLET_LIKE);
2163}
2164
Henrique de Moraes Holschuh6c231bd2008-02-16 02:17:58 -02002165static int hotkey_get_tablet_mode(int *status)
2166{
2167 int s;
2168
Lyudeb03f4d42016-11-11 15:15:03 -05002169 switch (tp_features.hotkey_tablet) {
2170 case TP_HOTKEY_TABLET_USES_MHKG:
2171 if (!acpi_evalf(hkey_handle, &s, "MHKG", "d"))
2172 return -EIO;
Henrique de Moraes Holschuh6c231bd2008-02-16 02:17:58 -02002173
Lyudeb03f4d42016-11-11 15:15:03 -05002174 *status = ((s & TP_HOTKEY_TABLET_MASK) != 0);
2175 break;
Benjamin Bergdda3ec02017-09-15 15:20:49 +02002176 case TP_HOTKEY_TABLET_USES_GMMS:
2177 if (!acpi_evalf(hkey_handle, &s, "GMMS", "dd", 0))
Lyudeb03f4d42016-11-11 15:15:03 -05002178 return -EIO;
2179
Benjamin Bergdda3ec02017-09-15 15:20:49 +02002180 *status = hotkey_gmms_get_tablet_mode(s, NULL);
Lyudeb03f4d42016-11-11 15:15:03 -05002181 break;
2182 default:
2183 break;
2184 }
2185
Henrique de Moraes Holschuhcee47f52008-03-04 14:29:21 -08002186 return 0;
Henrique de Moraes Holschuh6c231bd2008-02-16 02:17:58 -02002187}
2188
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02002189/*
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002190 * Reads current event mask from firmware, and updates
2191 * hotkey_acpi_mask accordingly. Also resets any bits
2192 * from hotkey_user_mask that are unavailable to be
2193 * delivered (shadow requirement of the userspace ABI).
2194 *
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02002195 * Call with hotkey_mutex held
2196 */
2197static int hotkey_mask_get(void)
2198{
2199 if (tp_features.hotkey_mask) {
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002200 u32 m = 0;
2201
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002202 if (!acpi_evalf(hkey_handle, &m, "DHKN", "d"))
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02002203 return -EIO;
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002204
2205 hotkey_acpi_mask = m;
2206 } else {
2207 /* no mask support doesn't mean no event support... */
2208 hotkey_acpi_mask = hotkey_all_mask;
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02002209 }
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002210
2211 /* sync userspace-visible mask */
2212 hotkey_user_mask &= (hotkey_acpi_mask | hotkey_source_mask);
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02002213
2214 return 0;
2215}
2216
Jean Delvaredf6dd1b2015-04-27 09:45:06 +02002217static void hotkey_mask_warn_incomplete_mask(void)
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002218{
2219 /* log only what the user can fix... */
2220 const u32 wantedmask = hotkey_driver_mask &
2221 ~(hotkey_acpi_mask | hotkey_source_mask) &
2222 (hotkey_all_mask | TPACPI_HKEY_NVRAM_KNOWN_MASK);
2223
2224 if (wantedmask)
Joe Perches0978e012011-04-04 10:06:25 -07002225 pr_notice("required events 0x%08x not enabled!\n", wantedmask);
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002226}
2227
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02002228/*
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002229 * Set the firmware mask when supported
2230 *
2231 * Also calls hotkey_mask_get to update hotkey_acpi_mask.
2232 *
2233 * NOTE: does not set bits in hotkey_user_mask, but may reset them.
2234 *
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02002235 * Call with hotkey_mutex held
2236 */
2237static int hotkey_mask_set(u32 mask)
2238{
2239 int i;
2240 int rc = 0;
2241
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002242 const u32 fwmask = mask & ~hotkey_source_mask;
Henrique de Moraes Holschuh92889022008-04-26 01:02:18 -03002243
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002244 if (tp_features.hotkey_mask) {
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02002245 for (i = 0; i < 32; i++) {
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02002246 if (!acpi_evalf(hkey_handle,
2247 NULL, "MHKM", "vdd", i + 1,
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002248 !!(mask & (1 << i)))) {
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02002249 rc = -EIO;
2250 break;
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02002251 }
2252 }
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02002253 }
2254
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002255 /*
2256 * We *must* make an inconditional call to hotkey_mask_get to
2257 * refresh hotkey_acpi_mask and update hotkey_user_mask
2258 *
2259 * Take the opportunity to also log when we cannot _enable_
2260 * a given event.
2261 */
2262 if (!hotkey_mask_get() && !rc && (fwmask & ~hotkey_acpi_mask)) {
Andy Shevchenko5cac62a2017-05-09 17:17:20 +03002263 pr_notice("asked for hotkey mask 0x%08x, but firmware forced it to 0x%08x\n",
Joe Perches0978e012011-04-04 10:06:25 -07002264 fwmask, hotkey_acpi_mask);
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002265 }
2266
Henrique de Moraes Holschuh6b30eb72009-12-09 01:36:25 +00002267 if (tpacpi_lifecycle != TPACPI_LIFE_EXITING)
2268 hotkey_mask_warn_incomplete_mask();
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002269
2270 return rc;
2271}
2272
2273/*
2274 * Sets hotkey_user_mask and tries to set the firmware mask
2275 *
2276 * Call with hotkey_mutex held
2277 */
2278static int hotkey_user_mask_set(const u32 mask)
2279{
2280 int rc;
2281
2282 /* Give people a chance to notice they are doing something that
2283 * is bound to go boom on their users sooner or later */
2284 if (!tp_warned.hotkey_mask_ff &&
2285 (mask == 0xffff || mask == 0xffffff ||
2286 mask == 0xffffffff)) {
2287 tp_warned.hotkey_mask_ff = 1;
Andy Shevchenko5cac62a2017-05-09 17:17:20 +03002288 pr_notice("setting the hotkey mask to 0x%08x is likely not the best way to go about it\n",
2289 mask);
2290 pr_notice("please consider using the driver defaults, and refer to up-to-date thinkpad-acpi documentation\n");
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002291 }
2292
2293 /* Try to enable what the user asked for, plus whatever we need.
2294 * this syncs everything but won't enable bits in hotkey_user_mask */
2295 rc = hotkey_mask_set((mask | hotkey_driver_mask) & ~hotkey_source_mask);
2296
2297 /* Enable the available bits in hotkey_user_mask */
2298 hotkey_user_mask = mask & (hotkey_acpi_mask | hotkey_source_mask);
2299
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02002300 return rc;
2301}
2302
Henrique de Moraes Holschuh8b468c02009-09-20 14:09:26 -03002303/*
2304 * Sets the driver hotkey mask.
2305 *
2306 * Can be called even if the hotkey subdriver is inactive
2307 */
2308static int tpacpi_hotkey_driver_mask_set(const u32 mask)
2309{
2310 int rc;
2311
2312 /* Do the right thing if hotkey_init has not been called yet */
2313 if (!tp_features.hotkey) {
2314 hotkey_driver_mask = mask;
2315 return 0;
2316 }
2317
2318 mutex_lock(&hotkey_mutex);
2319
2320 HOTKEY_CONFIG_CRITICAL_START
2321 hotkey_driver_mask = mask;
Henrique de Moraes Holschuhb684a362009-09-26 21:42:49 -03002322#ifdef CONFIG_THINKPAD_ACPI_HOTKEY_POLL
Henrique de Moraes Holschuh8b468c02009-09-20 14:09:26 -03002323 hotkey_source_mask |= (mask & ~hotkey_all_mask);
Henrique de Moraes Holschuhb684a362009-09-26 21:42:49 -03002324#endif
Henrique de Moraes Holschuh8b468c02009-09-20 14:09:26 -03002325 HOTKEY_CONFIG_CRITICAL_END
2326
2327 rc = hotkey_mask_set((hotkey_acpi_mask | hotkey_driver_mask) &
2328 ~hotkey_source_mask);
Henrique de Moraes Holschuh7f0cf712010-02-25 21:29:00 -03002329 hotkey_poll_setup(true);
2330
Henrique de Moraes Holschuh8b468c02009-09-20 14:09:26 -03002331 mutex_unlock(&hotkey_mutex);
2332
2333 return rc;
2334}
2335
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02002336static int hotkey_status_get(int *status)
2337{
2338 if (!acpi_evalf(hkey_handle, status, "DHKC", "d"))
2339 return -EIO;
2340
2341 return 0;
2342}
2343
Henrique de Moraes Holschuh2586d562009-04-04 04:25:48 +00002344static int hotkey_status_set(bool enable)
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02002345{
Henrique de Moraes Holschuh2586d562009-04-04 04:25:48 +00002346 if (!acpi_evalf(hkey_handle, NULL, "MHKC", "vd", enable ? 1 : 0))
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02002347 return -EIO;
2348
2349 return 0;
2350}
2351
Henrique de Moraes Holschuh6c231bd2008-02-16 02:17:58 -02002352static void tpacpi_input_send_tabletsw(void)
Henrique de Moraes Holschuhb3ec6f92008-02-16 02:17:55 -02002353{
Henrique de Moraes Holschuh6c231bd2008-02-16 02:17:58 -02002354 int state;
Henrique de Moraes Holschuhb3ec6f92008-02-16 02:17:55 -02002355
Henrique de Moraes Holschuh6c231bd2008-02-16 02:17:58 -02002356 if (tp_features.hotkey_tablet &&
2357 !hotkey_get_tablet_mode(&state)) {
2358 mutex_lock(&tpacpi_inputdev_send_mutex);
Henrique de Moraes Holschuhb3ec6f92008-02-16 02:17:55 -02002359
Henrique de Moraes Holschuh6c231bd2008-02-16 02:17:58 -02002360 input_report_switch(tpacpi_inputdev,
2361 SW_TABLET_MODE, !!state);
2362 input_sync(tpacpi_inputdev);
2363
2364 mutex_unlock(&tpacpi_inputdev_send_mutex);
2365 }
Henrique de Moraes Holschuhb3ec6f92008-02-16 02:17:55 -02002366}
2367
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002368/* Do NOT call without validating scancode first */
2369static void tpacpi_input_send_key(const unsigned int scancode)
Henrique de Moraes Holschuhb7c8c202008-01-08 13:02:40 -02002370{
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002371 const unsigned int keycode = hotkey_keycode_map[scancode];
Henrique de Moraes Holschuhb7c8c202008-01-08 13:02:40 -02002372
2373 if (keycode != KEY_RESERVED) {
2374 mutex_lock(&tpacpi_inputdev_send_mutex);
2375
Seth Forshee5ffba7e2011-01-14 15:54:39 -06002376 input_event(tpacpi_inputdev, EV_MSC, MSC_SCAN, scancode);
Henrique de Moraes Holschuhb7c8c202008-01-08 13:02:40 -02002377 input_report_key(tpacpi_inputdev, keycode, 1);
Henrique de Moraes Holschuhb7c8c202008-01-08 13:02:40 -02002378 input_sync(tpacpi_inputdev);
2379
Seth Forshee5ffba7e2011-01-14 15:54:39 -06002380 input_event(tpacpi_inputdev, EV_MSC, MSC_SCAN, scancode);
Henrique de Moraes Holschuhb7c8c202008-01-08 13:02:40 -02002381 input_report_key(tpacpi_inputdev, keycode, 0);
Henrique de Moraes Holschuhb7c8c202008-01-08 13:02:40 -02002382 input_sync(tpacpi_inputdev);
2383
2384 mutex_unlock(&tpacpi_inputdev_send_mutex);
2385 }
2386}
2387
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002388/* Do NOT call without validating scancode first */
2389static void tpacpi_input_send_key_masked(const unsigned int scancode)
2390{
Henrique de Moraes Holschuh8b468c02009-09-20 14:09:26 -03002391 hotkey_driver_event(scancode);
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002392 if (hotkey_user_mask & (1 << scancode))
2393 tpacpi_input_send_key(scancode);
2394}
2395
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002396#ifdef CONFIG_THINKPAD_ACPI_HOTKEY_POLL
2397static struct tp_acpi_drv_struct ibm_hotkey_acpidriver;
2398
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002399/* Do NOT call without validating scancode first */
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002400static void tpacpi_hotkey_send_key(unsigned int scancode)
2401{
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002402 tpacpi_input_send_key_masked(scancode);
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002403}
2404
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002405static void hotkey_read_nvram(struct tp_nvram_state *n, const u32 m)
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002406{
2407 u8 d;
2408
2409 if (m & TP_NVRAM_HKEY_GROUP_HK2) {
2410 d = nvram_read_byte(TP_NVRAM_ADDR_HK2);
2411 n->thinkpad_toggle = !!(d & TP_NVRAM_MASK_HKT_THINKPAD);
2412 n->zoom_toggle = !!(d & TP_NVRAM_MASK_HKT_ZOOM);
2413 n->display_toggle = !!(d & TP_NVRAM_MASK_HKT_DISPLAY);
2414 n->hibernate_toggle = !!(d & TP_NVRAM_MASK_HKT_HIBERNATE);
2415 }
Hans de Goedec685e202017-02-09 16:44:13 +01002416 if (m & TP_ACPI_HKEY_KBD_LIGHT_MASK) {
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002417 d = nvram_read_byte(TP_NVRAM_ADDR_THINKLIGHT);
2418 n->thinklight_toggle = !!(d & TP_NVRAM_MASK_THINKLIGHT);
2419 }
2420 if (m & TP_ACPI_HKEY_DISPXPAND_MASK) {
2421 d = nvram_read_byte(TP_NVRAM_ADDR_VIDEO);
2422 n->displayexp_toggle =
2423 !!(d & TP_NVRAM_MASK_HKT_DISPEXPND);
2424 }
2425 if (m & TP_NVRAM_HKEY_GROUP_BRIGHTNESS) {
2426 d = nvram_read_byte(TP_NVRAM_ADDR_BRIGHTNESS);
2427 n->brightness_level = (d & TP_NVRAM_MASK_LEVEL_BRIGHTNESS)
2428 >> TP_NVRAM_POS_LEVEL_BRIGHTNESS;
2429 n->brightness_toggle =
2430 !!(d & TP_NVRAM_MASK_HKT_BRIGHTNESS);
2431 }
2432 if (m & TP_NVRAM_HKEY_GROUP_VOLUME) {
2433 d = nvram_read_byte(TP_NVRAM_ADDR_MIXER);
2434 n->volume_level = (d & TP_NVRAM_MASK_LEVEL_VOLUME)
2435 >> TP_NVRAM_POS_LEVEL_VOLUME;
2436 n->mute = !!(d & TP_NVRAM_MASK_MUTE);
2437 n->volume_toggle = !!(d & TP_NVRAM_MASK_HKT_VOLUME);
2438 }
2439}
2440
Behan Webstera4d44ba2014-02-12 21:58:46 +01002441#define TPACPI_COMPARE_KEY(__scancode, __member) \
2442do { \
2443 if ((event_mask & (1 << __scancode)) && \
2444 oldn->__member != newn->__member) \
2445 tpacpi_hotkey_send_key(__scancode); \
2446} while (0)
2447
2448#define TPACPI_MAY_SEND_KEY(__scancode) \
2449do { \
2450 if (event_mask & (1 << __scancode)) \
2451 tpacpi_hotkey_send_key(__scancode); \
2452} while (0)
2453
2454static void issue_volchange(const unsigned int oldvol,
2455 const unsigned int newvol,
2456 const u32 event_mask)
2457{
2458 unsigned int i = oldvol;
2459
2460 while (i > newvol) {
2461 TPACPI_MAY_SEND_KEY(TP_ACPI_HOTKEYSCAN_VOLUMEDOWN);
2462 i--;
2463 }
2464 while (i < newvol) {
2465 TPACPI_MAY_SEND_KEY(TP_ACPI_HOTKEYSCAN_VOLUMEUP);
2466 i++;
2467 }
2468}
2469
2470static void issue_brightnesschange(const unsigned int oldbrt,
2471 const unsigned int newbrt,
2472 const u32 event_mask)
2473{
2474 unsigned int i = oldbrt;
2475
2476 while (i > newbrt) {
2477 TPACPI_MAY_SEND_KEY(TP_ACPI_HOTKEYSCAN_FNEND);
2478 i--;
2479 }
2480 while (i < newbrt) {
2481 TPACPI_MAY_SEND_KEY(TP_ACPI_HOTKEYSCAN_FNHOME);
2482 i++;
2483 }
2484}
2485
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002486static void hotkey_compare_and_issue_event(struct tp_nvram_state *oldn,
2487 struct tp_nvram_state *newn,
2488 const u32 event_mask)
2489{
2490
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002491 TPACPI_COMPARE_KEY(TP_ACPI_HOTKEYSCAN_THINKPAD, thinkpad_toggle);
2492 TPACPI_COMPARE_KEY(TP_ACPI_HOTKEYSCAN_FNSPACE, zoom_toggle);
2493 TPACPI_COMPARE_KEY(TP_ACPI_HOTKEYSCAN_FNF7, display_toggle);
2494 TPACPI_COMPARE_KEY(TP_ACPI_HOTKEYSCAN_FNF12, hibernate_toggle);
2495
2496 TPACPI_COMPARE_KEY(TP_ACPI_HOTKEYSCAN_FNPAGEUP, thinklight_toggle);
2497
2498 TPACPI_COMPARE_KEY(TP_ACPI_HOTKEYSCAN_FNF8, displayexp_toggle);
2499
Henrique de Moraes Holschuh5d756db2010-05-16 19:45:28 -03002500 /*
2501 * Handle volume
2502 *
2503 * This code is supposed to duplicate the IBM firmware behaviour:
2504 * - Pressing MUTE issues mute hotkey message, even when already mute
2505 * - Pressing Volume up/down issues volume up/down hotkey messages,
Lucas De Marchic8440332011-03-17 17:18:22 -03002506 * even when already at maximum or minimum volume
Henrique de Moraes Holschuh5d756db2010-05-16 19:45:28 -03002507 * - The act of unmuting issues volume up/down notification,
2508 * depending which key was used to unmute
2509 *
2510 * We are constrained to what the NVRAM can tell us, which is not much
2511 * and certainly not enough if more than one volume hotkey was pressed
2512 * since the last poll cycle.
2513 *
2514 * Just to make our life interesting, some newer Lenovo ThinkPads have
2515 * bugs in the BIOS and may fail to update volume_toggle properly.
2516 */
2517 if (newn->mute) {
2518 /* muted */
2519 if (!oldn->mute ||
2520 oldn->volume_toggle != newn->volume_toggle ||
2521 oldn->volume_level != newn->volume_level) {
2522 /* recently muted, or repeated mute keypress, or
2523 * multiple presses ending in mute */
Behan Webstera4d44ba2014-02-12 21:58:46 +01002524 issue_volchange(oldn->volume_level, newn->volume_level,
2525 event_mask);
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002526 TPACPI_MAY_SEND_KEY(TP_ACPI_HOTKEYSCAN_MUTE);
2527 }
Henrique de Moraes Holschuh5d756db2010-05-16 19:45:28 -03002528 } else {
2529 /* unmute */
2530 if (oldn->mute) {
2531 /* recently unmuted, issue 'unmute' keypress */
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002532 TPACPI_MAY_SEND_KEY(TP_ACPI_HOTKEYSCAN_VOLUMEUP);
Henrique de Moraes Holschuh5d756db2010-05-16 19:45:28 -03002533 }
2534 if (oldn->volume_level != newn->volume_level) {
Behan Webstera4d44ba2014-02-12 21:58:46 +01002535 issue_volchange(oldn->volume_level, newn->volume_level,
2536 event_mask);
Henrique de Moraes Holschuh5d756db2010-05-16 19:45:28 -03002537 } else if (oldn->volume_toggle != newn->volume_toggle) {
2538 /* repeated vol up/down keypress at end of scale ? */
2539 if (newn->volume_level == 0)
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002540 TPACPI_MAY_SEND_KEY(TP_ACPI_HOTKEYSCAN_VOLUMEDOWN);
Henrique de Moraes Holschuh5d756db2010-05-16 19:45:28 -03002541 else if (newn->volume_level >= TP_NVRAM_LEVEL_VOLUME_MAX)
2542 TPACPI_MAY_SEND_KEY(TP_ACPI_HOTKEYSCAN_VOLUMEUP);
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002543 }
2544 }
2545
2546 /* handle brightness */
Henrique de Moraes Holschuh28999022010-05-16 19:45:36 -03002547 if (oldn->brightness_level != newn->brightness_level) {
2548 issue_brightnesschange(oldn->brightness_level,
Behan Webstera4d44ba2014-02-12 21:58:46 +01002549 newn->brightness_level, event_mask);
Henrique de Moraes Holschuh28999022010-05-16 19:45:36 -03002550 } else if (oldn->brightness_toggle != newn->brightness_toggle) {
2551 /* repeated key presses that didn't change state */
2552 if (newn->brightness_level == 0)
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002553 TPACPI_MAY_SEND_KEY(TP_ACPI_HOTKEYSCAN_FNEND);
Henrique de Moraes Holschuh28999022010-05-16 19:45:36 -03002554 else if (newn->brightness_level >= bright_maxlvl
2555 && !tp_features.bright_unkfw)
2556 TPACPI_MAY_SEND_KEY(TP_ACPI_HOTKEYSCAN_FNHOME);
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002557 }
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002558
2559#undef TPACPI_COMPARE_KEY
2560#undef TPACPI_MAY_SEND_KEY
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002561}
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002562
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002563/*
2564 * Polling driver
2565 *
2566 * We track all events in hotkey_source_mask all the time, since
2567 * most of them are edge-based. We only issue those requested by
2568 * hotkey_user_mask or hotkey_driver_mask, though.
2569 */
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002570static int hotkey_kthread(void *data)
2571{
2572 struct tp_nvram_state s[2];
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002573 u32 poll_mask, event_mask;
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002574 unsigned int si, so;
2575 unsigned long t;
Tejun Heo8a32c442011-11-21 12:32:23 -08002576 unsigned int change_detector;
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03002577 unsigned int poll_freq;
Tejun Heo8a32c442011-11-21 12:32:23 -08002578 bool was_frozen;
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002579
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002580 if (tpacpi_lifecycle == TPACPI_LIFE_EXITING)
2581 goto exit;
2582
2583 set_freezable();
2584
2585 so = 0;
2586 si = 1;
2587 t = 0;
2588
2589 /* Initial state for compares */
2590 mutex_lock(&hotkey_thread_data_mutex);
2591 change_detector = hotkey_config_change;
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002592 poll_mask = hotkey_source_mask;
2593 event_mask = hotkey_source_mask &
2594 (hotkey_driver_mask | hotkey_user_mask);
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03002595 poll_freq = hotkey_poll_freq;
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002596 mutex_unlock(&hotkey_thread_data_mutex);
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002597 hotkey_read_nvram(&s[so], poll_mask);
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002598
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03002599 while (!kthread_should_stop()) {
2600 if (t == 0) {
2601 if (likely(poll_freq))
2602 t = 1000/poll_freq;
2603 else
2604 t = 100; /* should never happen... */
2605 }
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002606 t = msleep_interruptible(t);
Tejun Heo8a32c442011-11-21 12:32:23 -08002607 if (unlikely(kthread_freezable_should_stop(&was_frozen)))
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002608 break;
Tejun Heo8a32c442011-11-21 12:32:23 -08002609
2610 if (t > 0 && !was_frozen)
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002611 continue;
2612
2613 mutex_lock(&hotkey_thread_data_mutex);
Tejun Heo8a32c442011-11-21 12:32:23 -08002614 if (was_frozen || hotkey_config_change != change_detector) {
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002615 /* forget old state on thaw or config change */
2616 si = so;
2617 t = 0;
2618 change_detector = hotkey_config_change;
2619 }
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002620 poll_mask = hotkey_source_mask;
2621 event_mask = hotkey_source_mask &
2622 (hotkey_driver_mask | hotkey_user_mask);
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03002623 poll_freq = hotkey_poll_freq;
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002624 mutex_unlock(&hotkey_thread_data_mutex);
2625
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002626 if (likely(poll_mask)) {
2627 hotkey_read_nvram(&s[si], poll_mask);
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002628 if (likely(si != so)) {
2629 hotkey_compare_and_issue_event(&s[so], &s[si],
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002630 event_mask);
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002631 }
2632 }
2633
2634 so = si;
2635 si ^= 1;
2636 }
2637
2638exit:
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002639 return 0;
2640}
2641
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03002642/* call with hotkey_mutex held */
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002643static void hotkey_poll_stop_sync(void)
2644{
2645 if (tpacpi_hotkey_task) {
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002646 kthread_stop(tpacpi_hotkey_task);
2647 tpacpi_hotkey_task = NULL;
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002648 }
2649}
2650
2651/* call with hotkey_mutex held */
Henrique de Moraes Holschuh7f0cf712010-02-25 21:29:00 -03002652static void hotkey_poll_setup(const bool may_warn)
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002653{
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002654 const u32 poll_driver_mask = hotkey_driver_mask & hotkey_source_mask;
2655 const u32 poll_user_mask = hotkey_user_mask & hotkey_source_mask;
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03002656
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002657 if (hotkey_poll_freq > 0 &&
2658 (poll_driver_mask ||
2659 (poll_user_mask && tpacpi_inputdev->users > 0))) {
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002660 if (!tpacpi_hotkey_task) {
2661 tpacpi_hotkey_task = kthread_run(hotkey_kthread,
Henrique de Moraes Holschuh95e57ab2008-04-26 01:02:22 -03002662 NULL, TPACPI_NVRAM_KTHREAD_NAME);
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002663 if (IS_ERR(tpacpi_hotkey_task)) {
2664 tpacpi_hotkey_task = NULL;
Andy Shevchenko5cac62a2017-05-09 17:17:20 +03002665 pr_err("could not create kernel thread for hotkey polling\n");
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002666 }
2667 }
2668 } else {
2669 hotkey_poll_stop_sync();
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002670 if (may_warn && (poll_driver_mask || poll_user_mask) &&
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03002671 hotkey_poll_freq == 0) {
Andy Shevchenko5cac62a2017-05-09 17:17:20 +03002672 pr_notice("hot keys 0x%08x and/or events 0x%08x require polling, which is currently disabled\n",
Joe Perches0978e012011-04-04 10:06:25 -07002673 poll_user_mask, poll_driver_mask);
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002674 }
2675 }
2676}
2677
Henrique de Moraes Holschuh7f0cf712010-02-25 21:29:00 -03002678static void hotkey_poll_setup_safe(const bool may_warn)
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002679{
2680 mutex_lock(&hotkey_mutex);
2681 hotkey_poll_setup(may_warn);
2682 mutex_unlock(&hotkey_mutex);
2683}
2684
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03002685/* call with hotkey_mutex held */
2686static void hotkey_poll_set_freq(unsigned int freq)
2687{
2688 if (!freq)
2689 hotkey_poll_stop_sync();
2690
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03002691 hotkey_poll_freq = freq;
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03002692}
2693
Henrique de Moraes Holschuh1bc6b9c2008-02-16 02:17:52 -02002694#else /* CONFIG_THINKPAD_ACPI_HOTKEY_POLL */
2695
Henrique de Moraes Holschuh7f0cf712010-02-25 21:29:00 -03002696static void hotkey_poll_setup(const bool __unused)
2697{
2698}
2699
2700static void hotkey_poll_setup_safe(const bool __unused)
Henrique de Moraes Holschuh1bc6b9c2008-02-16 02:17:52 -02002701{
2702}
2703
2704#endif /* CONFIG_THINKPAD_ACPI_HOTKEY_POLL */
2705
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002706static int hotkey_inputdev_open(struct input_dev *dev)
2707{
2708 switch (tpacpi_lifecycle) {
2709 case TPACPI_LIFE_INIT:
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002710 case TPACPI_LIFE_RUNNING:
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03002711 hotkey_poll_setup_safe(false);
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002712 return 0;
Henrique de Moraes Holschuhb589ea42010-02-25 21:28:58 -03002713 case TPACPI_LIFE_EXITING:
2714 return -EBUSY;
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002715 }
2716
2717 /* Should only happen if tpacpi_lifecycle is corrupt */
2718 BUG();
2719 return -EBUSY;
2720}
2721
2722static void hotkey_inputdev_close(struct input_dev *dev)
2723{
2724 /* disable hotkey polling when possible */
Henrique de Moraes Holschuhb589ea42010-02-25 21:28:58 -03002725 if (tpacpi_lifecycle != TPACPI_LIFE_EXITING &&
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002726 !(hotkey_source_mask & hotkey_driver_mask))
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03002727 hotkey_poll_setup_safe(false);
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002728}
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002729
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03002730/* sysfs hotkey enable ------------------------------------------------- */
2731static ssize_t hotkey_enable_show(struct device *dev,
2732 struct device_attribute *attr,
2733 char *buf)
2734{
Henrique de Moraes Holschuhae92bd12007-07-18 23:45:29 -03002735 int res, status;
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03002736
Henrique de Moraes Holschuh2586d562009-04-04 04:25:48 +00002737 printk_deprecated_attribute("hotkey_enable",
2738 "Hotkey reporting is always enabled");
2739
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02002740 res = hotkey_status_get(&status);
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03002741 if (res)
2742 return res;
2743
2744 return snprintf(buf, PAGE_SIZE, "%d\n", status);
2745}
2746
2747static ssize_t hotkey_enable_store(struct device *dev,
2748 struct device_attribute *attr,
2749 const char *buf, size_t count)
2750{
2751 unsigned long t;
Henrique de Moraes Holschuh2586d562009-04-04 04:25:48 +00002752
2753 printk_deprecated_attribute("hotkey_enable",
2754 "Hotkeys can be disabled through hotkey_mask");
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03002755
2756 if (parse_strtoul(buf, 1, &t))
2757 return -EINVAL;
2758
Henrique de Moraes Holschuh2586d562009-04-04 04:25:48 +00002759 if (t == 0)
2760 return -EPERM;
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03002761
Henrique de Moraes Holschuh2586d562009-04-04 04:25:48 +00002762 return count;
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03002763}
2764
Bastien Nocerab4dd04ac2015-03-02 18:40:50 +01002765static DEVICE_ATTR_RW(hotkey_enable);
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03002766
2767/* sysfs hotkey mask --------------------------------------------------- */
2768static ssize_t hotkey_mask_show(struct device *dev,
2769 struct device_attribute *attr,
2770 char *buf)
2771{
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002772 return snprintf(buf, PAGE_SIZE, "0x%08x\n", hotkey_user_mask);
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03002773}
2774
2775static ssize_t hotkey_mask_store(struct device *dev,
2776 struct device_attribute *attr,
2777 const char *buf, size_t count)
2778{
2779 unsigned long t;
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02002780 int res;
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03002781
Henrique de Moraes Holschuhae92bd12007-07-18 23:45:29 -03002782 if (parse_strtoul(buf, 0xffffffffUL, &t))
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03002783 return -EINVAL;
2784
Henrique de Moraes Holschuh7646ea82009-01-11 03:01:04 -02002785 if (mutex_lock_killable(&hotkey_mutex))
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02002786 return -ERESTARTSYS;
2787
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002788 res = hotkey_user_mask_set(t);
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002789
2790#ifdef CONFIG_THINKPAD_ACPI_HOTKEY_POLL
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03002791 hotkey_poll_setup(true);
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002792#endif
2793
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02002794 mutex_unlock(&hotkey_mutex);
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03002795
Henrique de Moraes Holschuh56e2c202009-04-04 04:25:51 +00002796 tpacpi_disclose_usertask("hotkey_mask", "set to 0x%08lx\n", t);
2797
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03002798 return (res) ? res : count;
2799}
2800
Bastien Nocerab4dd04ac2015-03-02 18:40:50 +01002801static DEVICE_ATTR_RW(hotkey_mask);
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03002802
2803/* sysfs hotkey bios_enabled ------------------------------------------- */
2804static ssize_t hotkey_bios_enabled_show(struct device *dev,
2805 struct device_attribute *attr,
2806 char *buf)
2807{
Henrique de Moraes Holschuh2586d562009-04-04 04:25:48 +00002808 return sprintf(buf, "0\n");
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03002809}
2810
Bastien Nocerab4dd04ac2015-03-02 18:40:50 +01002811static DEVICE_ATTR_RO(hotkey_bios_enabled);
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03002812
2813/* sysfs hotkey bios_mask ---------------------------------------------- */
2814static ssize_t hotkey_bios_mask_show(struct device *dev,
2815 struct device_attribute *attr,
2816 char *buf)
2817{
Henrique de Moraes Holschuh06777be2009-09-12 15:22:15 -03002818 printk_deprecated_attribute("hotkey_bios_mask",
2819 "This attribute is useless.");
Henrique de Moraes Holschuhae92bd12007-07-18 23:45:29 -03002820 return snprintf(buf, PAGE_SIZE, "0x%08x\n", hotkey_orig_mask);
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03002821}
2822
Bastien Nocerab4dd04ac2015-03-02 18:40:50 +01002823static DEVICE_ATTR_RO(hotkey_bios_mask);
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03002824
Henrique de Moraes Holschuh9b010de2007-07-18 23:45:30 -03002825/* sysfs hotkey all_mask ----------------------------------------------- */
2826static ssize_t hotkey_all_mask_show(struct device *dev,
2827 struct device_attribute *attr,
2828 char *buf)
2829{
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002830 return snprintf(buf, PAGE_SIZE, "0x%08x\n",
2831 hotkey_all_mask | hotkey_source_mask);
Henrique de Moraes Holschuh9b010de2007-07-18 23:45:30 -03002832}
2833
Bastien Nocerab4dd04ac2015-03-02 18:40:50 +01002834static DEVICE_ATTR_RO(hotkey_all_mask);
Henrique de Moraes Holschuh9b010de2007-07-18 23:45:30 -03002835
Dennis Wassenberg0118c2d2016-06-08 10:54:25 -04002836/* sysfs hotkey all_mask ----------------------------------------------- */
2837static ssize_t hotkey_adaptive_all_mask_show(struct device *dev,
2838 struct device_attribute *attr,
2839 char *buf)
2840{
2841 return snprintf(buf, PAGE_SIZE, "0x%08x\n",
2842 hotkey_adaptive_all_mask | hotkey_source_mask);
2843}
2844
2845static DEVICE_ATTR_RO(hotkey_adaptive_all_mask);
2846
Henrique de Moraes Holschuh9b010de2007-07-18 23:45:30 -03002847/* sysfs hotkey recommended_mask --------------------------------------- */
2848static ssize_t hotkey_recommended_mask_show(struct device *dev,
2849 struct device_attribute *attr,
2850 char *buf)
2851{
2852 return snprintf(buf, PAGE_SIZE, "0x%08x\n",
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002853 (hotkey_all_mask | hotkey_source_mask)
2854 & ~hotkey_reserved_mask);
Henrique de Moraes Holschuh9b010de2007-07-18 23:45:30 -03002855}
2856
Bastien Nocerab4dd04ac2015-03-02 18:40:50 +01002857static DEVICE_ATTR_RO(hotkey_recommended_mask);
Henrique de Moraes Holschuh9b010de2007-07-18 23:45:30 -03002858
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002859#ifdef CONFIG_THINKPAD_ACPI_HOTKEY_POLL
2860
2861/* sysfs hotkey hotkey_source_mask ------------------------------------- */
2862static ssize_t hotkey_source_mask_show(struct device *dev,
2863 struct device_attribute *attr,
2864 char *buf)
2865{
2866 return snprintf(buf, PAGE_SIZE, "0x%08x\n", hotkey_source_mask);
2867}
2868
2869static ssize_t hotkey_source_mask_store(struct device *dev,
2870 struct device_attribute *attr,
2871 const char *buf, size_t count)
2872{
2873 unsigned long t;
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002874 u32 r_ev;
2875 int rc;
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002876
2877 if (parse_strtoul(buf, 0xffffffffUL, &t) ||
2878 ((t & ~TPACPI_HKEY_NVRAM_KNOWN_MASK) != 0))
2879 return -EINVAL;
2880
Henrique de Moraes Holschuh7646ea82009-01-11 03:01:04 -02002881 if (mutex_lock_killable(&hotkey_mutex))
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002882 return -ERESTARTSYS;
2883
2884 HOTKEY_CONFIG_CRITICAL_START
2885 hotkey_source_mask = t;
2886 HOTKEY_CONFIG_CRITICAL_END
2887
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002888 rc = hotkey_mask_set((hotkey_user_mask | hotkey_driver_mask) &
2889 ~hotkey_source_mask);
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03002890 hotkey_poll_setup(true);
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002891
2892 /* check if events needed by the driver got disabled */
2893 r_ev = hotkey_driver_mask & ~(hotkey_acpi_mask & hotkey_all_mask)
2894 & ~hotkey_source_mask & TPACPI_HKEY_NVRAM_KNOWN_MASK;
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002895
2896 mutex_unlock(&hotkey_mutex);
2897
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002898 if (rc < 0)
Andy Shevchenko5cac62a2017-05-09 17:17:20 +03002899 pr_err("hotkey_source_mask: failed to update the firmware event mask!\n");
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002900
2901 if (r_ev)
Andy Shevchenko5cac62a2017-05-09 17:17:20 +03002902 pr_notice("hotkey_source_mask: some important events were disabled: 0x%04x\n",
Joe Perches0978e012011-04-04 10:06:25 -07002903 r_ev);
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002904
Henrique de Moraes Holschuh56e2c202009-04-04 04:25:51 +00002905 tpacpi_disclose_usertask("hotkey_source_mask", "set to 0x%08lx\n", t);
2906
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002907 return (rc < 0) ? rc : count;
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002908}
2909
Bastien Nocerab4dd04ac2015-03-02 18:40:50 +01002910static DEVICE_ATTR_RW(hotkey_source_mask);
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002911
2912/* sysfs hotkey hotkey_poll_freq --------------------------------------- */
2913static ssize_t hotkey_poll_freq_show(struct device *dev,
2914 struct device_attribute *attr,
2915 char *buf)
2916{
2917 return snprintf(buf, PAGE_SIZE, "%d\n", hotkey_poll_freq);
2918}
2919
2920static ssize_t hotkey_poll_freq_store(struct device *dev,
2921 struct device_attribute *attr,
2922 const char *buf, size_t count)
2923{
2924 unsigned long t;
2925
2926 if (parse_strtoul(buf, 25, &t))
2927 return -EINVAL;
2928
Henrique de Moraes Holschuh7646ea82009-01-11 03:01:04 -02002929 if (mutex_lock_killable(&hotkey_mutex))
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002930 return -ERESTARTSYS;
2931
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03002932 hotkey_poll_set_freq(t);
2933 hotkey_poll_setup(true);
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002934
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002935 mutex_unlock(&hotkey_mutex);
2936
Henrique de Moraes Holschuh56e2c202009-04-04 04:25:51 +00002937 tpacpi_disclose_usertask("hotkey_poll_freq", "set to %lu\n", t);
2938
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002939 return count;
2940}
2941
Bastien Nocerab4dd04ac2015-03-02 18:40:50 +01002942static DEVICE_ATTR_RW(hotkey_poll_freq);
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002943
2944#endif /* CONFIG_THINKPAD_ACPI_HOTKEY_POLL */
2945
Henrique de Moraes Holschuh50ebec02008-01-08 13:02:55 -02002946/* sysfs hotkey radio_sw (pollable) ------------------------------------ */
Henrique de Moraes Holschuh74941a62007-07-18 23:45:31 -03002947static ssize_t hotkey_radio_sw_show(struct device *dev,
2948 struct device_attribute *attr,
2949 char *buf)
2950{
Johannes Berg19d337d2009-06-02 13:01:37 +02002951 int res;
2952 res = hotkey_get_wlsw();
Henrique de Moraes Holschuh74941a62007-07-18 23:45:31 -03002953 if (res < 0)
2954 return res;
2955
Johannes Berg19d337d2009-06-02 13:01:37 +02002956 /* Opportunistic update */
2957 tpacpi_rfk_update_hwblock_state((res == TPACPI_RFK_RADIO_OFF));
2958
2959 return snprintf(buf, PAGE_SIZE, "%d\n",
2960 (res == TPACPI_RFK_RADIO_OFF) ? 0 : 1);
Henrique de Moraes Holschuh74941a62007-07-18 23:45:31 -03002961}
2962
Bastien Nocerab4dd04ac2015-03-02 18:40:50 +01002963static DEVICE_ATTR_RO(hotkey_radio_sw);
Henrique de Moraes Holschuh74941a62007-07-18 23:45:31 -03002964
Henrique de Moraes Holschuh50ebec02008-01-08 13:02:55 -02002965static void hotkey_radio_sw_notify_change(void)
2966{
2967 if (tp_features.hotkey_wlsw)
2968 sysfs_notify(&tpacpi_pdev->dev.kobj, NULL,
2969 "hotkey_radio_sw");
2970}
2971
Henrique de Moraes Holschuh6c231bd2008-02-16 02:17:58 -02002972/* sysfs hotkey tablet mode (pollable) --------------------------------- */
2973static ssize_t hotkey_tablet_mode_show(struct device *dev,
2974 struct device_attribute *attr,
2975 char *buf)
2976{
2977 int res, s;
2978 res = hotkey_get_tablet_mode(&s);
2979 if (res < 0)
2980 return res;
2981
2982 return snprintf(buf, PAGE_SIZE, "%d\n", !!s);
2983}
2984
Bastien Nocerab4dd04ac2015-03-02 18:40:50 +01002985static DEVICE_ATTR_RO(hotkey_tablet_mode);
Henrique de Moraes Holschuh6c231bd2008-02-16 02:17:58 -02002986
2987static void hotkey_tablet_mode_notify_change(void)
2988{
2989 if (tp_features.hotkey_tablet)
2990 sysfs_notify(&tpacpi_pdev->dev.kobj, NULL,
2991 "hotkey_tablet_mode");
2992}
2993
Henrique de Moraes Holschuh50ebec02008-01-08 13:02:55 -02002994/* sysfs wakeup reason (pollable) -------------------------------------- */
Henrique de Moraes Holschuha713b4d2008-01-08 13:02:52 -02002995static ssize_t hotkey_wakeup_reason_show(struct device *dev,
2996 struct device_attribute *attr,
2997 char *buf)
2998{
2999 return snprintf(buf, PAGE_SIZE, "%d\n", hotkey_wakeup_reason);
3000}
3001
Bjørn Mork5fb73bc2015-05-19 19:45:03 +02003002static DEVICE_ATTR(wakeup_reason, S_IRUGO, hotkey_wakeup_reason_show, NULL);
Henrique de Moraes Holschuha713b4d2008-01-08 13:02:52 -02003003
Adrian Bunk1d5a2b52008-02-13 23:30:06 +02003004static void hotkey_wakeup_reason_notify_change(void)
Henrique de Moraes Holschuh50ebec02008-01-08 13:02:55 -02003005{
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03003006 sysfs_notify(&tpacpi_pdev->dev.kobj, NULL,
3007 "wakeup_reason");
Henrique de Moraes Holschuh50ebec02008-01-08 13:02:55 -02003008}
3009
3010/* sysfs wakeup hotunplug_complete (pollable) -------------------------- */
Henrique de Moraes Holschuha713b4d2008-01-08 13:02:52 -02003011static ssize_t hotkey_wakeup_hotunplug_complete_show(struct device *dev,
3012 struct device_attribute *attr,
3013 char *buf)
3014{
3015 return snprintf(buf, PAGE_SIZE, "%d\n", hotkey_autosleep_ack);
3016}
3017
Bjørn Mork5fb73bc2015-05-19 19:45:03 +02003018static DEVICE_ATTR(wakeup_hotunplug_complete, S_IRUGO,
3019 hotkey_wakeup_hotunplug_complete_show, NULL);
Henrique de Moraes Holschuha713b4d2008-01-08 13:02:52 -02003020
Adrian Bunk1d5a2b52008-02-13 23:30:06 +02003021static void hotkey_wakeup_hotunplug_complete_notify_change(void)
Henrique de Moraes Holschuh50ebec02008-01-08 13:02:55 -02003022{
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03003023 sysfs_notify(&tpacpi_pdev->dev.kobj, NULL,
3024 "wakeup_hotunplug_complete");
Henrique de Moraes Holschuh50ebec02008-01-08 13:02:55 -02003025}
3026
Bastien Nocerab790cee2015-03-02 14:45:27 +01003027/* sysfs adaptive kbd mode --------------------------------------------- */
3028
3029static int adaptive_keyboard_get_mode(void);
3030static int adaptive_keyboard_set_mode(int new_mode);
3031
3032enum ADAPTIVE_KEY_MODE {
3033 HOME_MODE,
3034 WEB_BROWSER_MODE,
3035 WEB_CONFERENCE_MODE,
3036 FUNCTION_MODE,
3037 LAYFLAT_MODE
3038};
3039
3040static ssize_t adaptive_kbd_mode_show(struct device *dev,
3041 struct device_attribute *attr,
3042 char *buf)
3043{
Dan Carpenterabf9dc02015-03-11 12:34:50 +03003044 int current_mode;
Bastien Nocerab790cee2015-03-02 14:45:27 +01003045
3046 current_mode = adaptive_keyboard_get_mode();
3047 if (current_mode < 0)
3048 return current_mode;
3049
3050 return snprintf(buf, PAGE_SIZE, "%d\n", current_mode);
3051}
3052
3053static ssize_t adaptive_kbd_mode_store(struct device *dev,
3054 struct device_attribute *attr,
3055 const char *buf, size_t count)
3056{
3057 unsigned long t;
3058 int res;
3059
3060 if (parse_strtoul(buf, LAYFLAT_MODE, &t))
3061 return -EINVAL;
3062
3063 res = adaptive_keyboard_set_mode(t);
3064 return (res < 0) ? res : count;
3065}
3066
3067static DEVICE_ATTR_RW(adaptive_kbd_mode);
3068
3069static struct attribute *adaptive_kbd_attributes[] = {
3070 &dev_attr_adaptive_kbd_mode.attr,
3071 NULL
3072};
3073
3074static const struct attribute_group adaptive_kbd_attr_group = {
3075 .attrs = adaptive_kbd_attributes,
3076};
3077
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03003078/* --------------------------------------------------------------------- */
3079
Henrique de Moraes Holschuhff80f132007-09-04 11:13:15 -03003080static struct attribute *hotkey_attributes[] __initdata = {
3081 &dev_attr_hotkey_enable.attr,
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02003082 &dev_attr_hotkey_bios_enabled.attr,
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03003083 &dev_attr_hotkey_bios_mask.attr,
Bjørn Mork5fb73bc2015-05-19 19:45:03 +02003084 &dev_attr_wakeup_reason.attr,
3085 &dev_attr_wakeup_hotunplug_complete.attr,
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02003086 &dev_attr_hotkey_mask.attr,
3087 &dev_attr_hotkey_all_mask.attr,
Dennis Wassenberg0118c2d2016-06-08 10:54:25 -04003088 &dev_attr_hotkey_adaptive_all_mask.attr,
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02003089 &dev_attr_hotkey_recommended_mask.attr,
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03003090#ifdef CONFIG_THINKPAD_ACPI_HOTKEY_POLL
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02003091 &dev_attr_hotkey_source_mask.attr,
3092 &dev_attr_hotkey_poll_freq.attr,
3093#endif
Henrique de Moraes Holschuhff80f132007-09-04 11:13:15 -03003094};
3095
Johannes Berg19d337d2009-06-02 13:01:37 +02003096/*
3097 * Sync both the hw and sw blocking state of all switches
3098 */
Henrique de Moraes Holschuh733e27c2008-07-21 09:15:49 -03003099static void tpacpi_send_radiosw_update(void)
3100{
3101 int wlsw;
3102
Johannes Berg19d337d2009-06-02 13:01:37 +02003103 /*
3104 * We must sync all rfkill controllers *before* issuing any
3105 * rfkill input events, or we will race the rfkill core input
3106 * handler.
3107 *
Lucas De Marchic8440332011-03-17 17:18:22 -03003108 * tpacpi_inputdev_send_mutex works as a synchronization point
Johannes Berg19d337d2009-06-02 13:01:37 +02003109 * for the above.
3110 *
3111 * We optimize to avoid numerous calls to hotkey_get_wlsw.
3112 */
Henrique de Moraes Holschuh0e74dc22008-07-21 09:15:51 -03003113
Johannes Berg19d337d2009-06-02 13:01:37 +02003114 wlsw = hotkey_get_wlsw();
3115
3116 /* Sync hw blocking state first if it is hw-blocked */
3117 if (wlsw == TPACPI_RFK_RADIO_OFF)
3118 tpacpi_rfk_update_hwblock_state(true);
3119
3120 /* Sync sw blocking state */
3121 tpacpi_rfk_update_swstate_all();
3122
3123 /* Sync hw blocking state last if it is hw-unblocked */
3124 if (wlsw == TPACPI_RFK_RADIO_ON)
3125 tpacpi_rfk_update_hwblock_state(false);
3126
3127 /* Issue rfkill input event for WLSW switch */
3128 if (!(wlsw < 0)) {
Henrique de Moraes Holschuh733e27c2008-07-21 09:15:49 -03003129 mutex_lock(&tpacpi_inputdev_send_mutex);
3130
3131 input_report_switch(tpacpi_inputdev,
Johannes Berg19d337d2009-06-02 13:01:37 +02003132 SW_RFKILL_ALL, (wlsw > 0));
Henrique de Moraes Holschuh733e27c2008-07-21 09:15:49 -03003133 input_sync(tpacpi_inputdev);
3134
3135 mutex_unlock(&tpacpi_inputdev_send_mutex);
3136 }
Johannes Berg19d337d2009-06-02 13:01:37 +02003137
3138 /*
3139 * this can be unconditional, as we will poll state again
3140 * if userspace uses the notify to read data
3141 */
Henrique de Moraes Holschuh733e27c2008-07-21 09:15:49 -03003142 hotkey_radio_sw_notify_change();
3143}
3144
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003145static void hotkey_exit(void)
3146{
3147#ifdef CONFIG_THINKPAD_ACPI_HOTKEY_POLL
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03003148 mutex_lock(&hotkey_mutex);
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003149 hotkey_poll_stop_sync();
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03003150 mutex_unlock(&hotkey_mutex);
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003151#endif
3152
3153 if (hotkey_dev_attributes)
3154 delete_attr_set(hotkey_dev_attributes, &tpacpi_pdev->dev.kobj);
3155
Henrique de Moraes Holschuh4be73002009-09-20 14:09:23 -03003156 dbg_printk(TPACPI_DBG_EXIT | TPACPI_DBG_HKEY,
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03003157 "restoring original HKEY status and mask\n");
3158 /* yes, there is a bitwise or below, we want the
3159 * functions to be called even if one of them fail */
3160 if (((tp_features.hotkey_mask &&
3161 hotkey_mask_set(hotkey_orig_mask)) |
3162 hotkey_status_set(false)) != 0)
Andy Shevchenko5cac62a2017-05-09 17:17:20 +03003163 pr_err("failed to restore hot key mask to BIOS defaults\n");
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003164}
3165
Henrique de Moraes Holschuhde4c8cc2009-09-12 15:22:18 -03003166static void __init hotkey_unmap(const unsigned int scancode)
3167{
3168 if (hotkey_keycode_map[scancode] != KEY_RESERVED) {
3169 clear_bit(hotkey_keycode_map[scancode],
3170 tpacpi_inputdev->keybit);
3171 hotkey_keycode_map[scancode] = KEY_RESERVED;
3172 }
3173}
3174
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03003175/*
3176 * HKEY quirks:
3177 * TPACPI_HK_Q_INIMASK: Supports FN+F3,FN+F4,FN+F12
3178 */
3179
3180#define TPACPI_HK_Q_INIMASK 0x0001
3181
3182static const struct tpacpi_quirk tpacpi_hotkey_qtable[] __initconst = {
3183 TPACPI_Q_IBM('I', 'H', TPACPI_HK_Q_INIMASK), /* 600E */
3184 TPACPI_Q_IBM('I', 'N', TPACPI_HK_Q_INIMASK), /* 600E */
3185 TPACPI_Q_IBM('I', 'D', TPACPI_HK_Q_INIMASK), /* 770, 770E, 770ED */
3186 TPACPI_Q_IBM('I', 'W', TPACPI_HK_Q_INIMASK), /* A20m */
3187 TPACPI_Q_IBM('I', 'V', TPACPI_HK_Q_INIMASK), /* A20p */
3188 TPACPI_Q_IBM('1', '0', TPACPI_HK_Q_INIMASK), /* A21e, A22e */
3189 TPACPI_Q_IBM('K', 'U', TPACPI_HK_Q_INIMASK), /* A21e */
3190 TPACPI_Q_IBM('K', 'X', TPACPI_HK_Q_INIMASK), /* A21m, A22m */
3191 TPACPI_Q_IBM('K', 'Y', TPACPI_HK_Q_INIMASK), /* A21p, A22p */
3192 TPACPI_Q_IBM('1', 'B', TPACPI_HK_Q_INIMASK), /* A22e */
3193 TPACPI_Q_IBM('1', '3', TPACPI_HK_Q_INIMASK), /* A22m */
3194 TPACPI_Q_IBM('1', 'E', TPACPI_HK_Q_INIMASK), /* A30/p (0) */
3195 TPACPI_Q_IBM('1', 'C', TPACPI_HK_Q_INIMASK), /* R30 */
3196 TPACPI_Q_IBM('1', 'F', TPACPI_HK_Q_INIMASK), /* R31 */
3197 TPACPI_Q_IBM('I', 'Y', TPACPI_HK_Q_INIMASK), /* T20 */
3198 TPACPI_Q_IBM('K', 'Z', TPACPI_HK_Q_INIMASK), /* T21 */
3199 TPACPI_Q_IBM('1', '6', TPACPI_HK_Q_INIMASK), /* T22 */
3200 TPACPI_Q_IBM('I', 'Z', TPACPI_HK_Q_INIMASK), /* X20, X21 */
3201 TPACPI_Q_IBM('1', 'D', TPACPI_HK_Q_INIMASK), /* X22, X23, X24 */
3202};
3203
Henrique de Moraes Holschuhfc6e7562010-09-17 21:53:41 -03003204typedef u16 tpacpi_keymap_entry_t;
3205typedef tpacpi_keymap_entry_t tpacpi_keymap_t[TPACPI_HOTKEY_MAP_LEN];
Henrique de Moraes Holschuhd1e14dc2010-08-09 23:48:21 -03003206
Lyudeb3180022016-11-11 15:15:02 -05003207static int hotkey_init_tablet_mode(void)
3208{
Darren Hartcb2bf252016-12-14 14:45:48 -08003209 int in_tablet_mode = 0, res;
3210 char *type = NULL;
Lyudeb3180022016-11-11 15:15:02 -05003211
Benjamin Bergdda3ec02017-09-15 15:20:49 +02003212 if (acpi_evalf(hkey_handle, &res, "GMMS", "qdd", 0)) {
3213 int has_tablet_mode;
3214
3215 in_tablet_mode = hotkey_gmms_get_tablet_mode(res,
3216 &has_tablet_mode);
3217 if (has_tablet_mode)
3218 tp_features.hotkey_tablet = TP_HOTKEY_TABLET_USES_GMMS;
3219 type = "GMMS";
3220 } else if (acpi_evalf(hkey_handle, &res, "MHKG", "qd")) {
Lyudeb03f4d42016-11-11 15:15:03 -05003221 /* For X41t, X60t, X61t Tablets... */
Lyudeb3180022016-11-11 15:15:02 -05003222 tp_features.hotkey_tablet = TP_HOTKEY_TABLET_USES_MHKG;
3223 in_tablet_mode = !!(res & TP_HOTKEY_TABLET_MASK);
3224 type = "MHKG";
3225 }
3226
3227 if (!tp_features.hotkey_tablet)
3228 return 0;
3229
3230 pr_info("Tablet mode switch found (type: %s), currently in %s mode\n",
3231 type, in_tablet_mode ? "tablet" : "laptop");
3232
3233 res = add_to_attr_set(hotkey_dev_attributes,
3234 &dev_attr_hotkey_tablet_mode.attr);
3235 if (res)
3236 return -1;
3237
3238 return in_tablet_mode;
3239}
3240
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03003241static int __init hotkey_init(struct ibm_init_struct *iibm)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03003242{
Henrique de Moraes Holschuh0f089142008-01-08 13:02:38 -02003243 /* Requirements for changing the default keymaps:
3244 *
3245 * 1. Many of the keys are mapped to KEY_RESERVED for very
3246 * good reasons. Do not change them unless you have deep
3247 * knowledge on the IBM and Lenovo ThinkPad firmware for
3248 * the various ThinkPad models. The driver behaves
3249 * differently for KEY_RESERVED: such keys have their
3250 * hot key mask *unset* in mask_recommended, and also
3251 * in the initial hot key mask programmed into the
3252 * firmware at driver load time, which means the firm-
3253 * ware may react very differently if you change them to
3254 * something else;
3255 *
3256 * 2. You must be subscribed to the linux-thinkpad and
3257 * ibm-acpi-devel mailing lists, and you should read the
3258 * list archives since 2007 if you want to change the
3259 * keymaps. This requirement exists so that you will
3260 * know the past history of problems with the thinkpad-
3261 * acpi driver keymaps, and also that you will be
3262 * listening to any bug reports;
3263 *
3264 * 3. Do not send thinkpad-acpi specific patches directly to
3265 * for merging, *ever*. Send them to the linux-acpi
3266 * mailinglist for comments. Merging is to be done only
3267 * through acpi-test and the ACPI maintainer.
3268 *
3269 * If the above is too much to ask, don't change the keymap.
3270 * Ask the thinkpad-acpi maintainer to do it, instead.
3271 */
Henrique de Moraes Holschuhd1e14dc2010-08-09 23:48:21 -03003272
3273 enum keymap_index {
3274 TPACPI_KEYMAP_IBM_GENERIC = 0,
3275 TPACPI_KEYMAP_LENOVO_GENERIC,
3276 };
3277
3278 static const tpacpi_keymap_t tpacpi_keymaps[] __initconst = {
3279 /* Generic keymap for IBM ThinkPads */
3280 [TPACPI_KEYMAP_IBM_GENERIC] = {
Henrique de Moraes Holschuhedf0e0e2007-07-18 23:45:44 -03003281 /* Scan Codes 0x00 to 0x0B: ACPI HKEY FN+F1..F12 */
Henrique de Moraes Holschuhd1e14dc2010-08-09 23:48:21 -03003282 KEY_FN_F1, KEY_BATTERY, KEY_COFFEE, KEY_SLEEP,
Henrique de Moraes Holschuhedf0e0e2007-07-18 23:45:44 -03003283 KEY_WLAN, KEY_FN_F6, KEY_SWITCHVIDEOMODE, KEY_FN_F8,
3284 KEY_FN_F9, KEY_FN_F10, KEY_FN_F11, KEY_SUSPEND,
Henrique de Moraes Holschuh0f089142008-01-08 13:02:38 -02003285
3286 /* Scan codes 0x0C to 0x1F: Other ACPI HKEY hot keys */
Henrique de Moraes Holschuhedf0e0e2007-07-18 23:45:44 -03003287 KEY_UNKNOWN, /* 0x0C: FN+BACKSPACE */
3288 KEY_UNKNOWN, /* 0x0D: FN+INSERT */
3289 KEY_UNKNOWN, /* 0x0E: FN+DELETE */
Henrique de Moraes Holschuh0f089142008-01-08 13:02:38 -02003290
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03003291 /* brightness: firmware always reacts to them */
Henrique de Moraes Holschuhe927c082007-10-30 17:46:19 -02003292 KEY_RESERVED, /* 0x0F: FN+HOME (brightness up) */
Henrique de Moraes Holschuhe927c082007-10-30 17:46:19 -02003293 KEY_RESERVED, /* 0x10: FN+END (brightness down) */
Henrique de Moraes Holschuh0f089142008-01-08 13:02:38 -02003294
3295 /* Thinklight: firmware always react to it */
Henrique de Moraes Holschuhedf0e0e2007-07-18 23:45:44 -03003296 KEY_RESERVED, /* 0x11: FN+PGUP (thinklight toggle) */
Henrique de Moraes Holschuh0f089142008-01-08 13:02:38 -02003297
Henrique de Moraes Holschuhedf0e0e2007-07-18 23:45:44 -03003298 KEY_UNKNOWN, /* 0x12: FN+PGDOWN */
3299 KEY_ZOOM, /* 0x13: FN+SPACE (zoom) */
Henrique de Moraes Holschuh0f089142008-01-08 13:02:38 -02003300
3301 /* Volume: firmware always react to it and reprograms
3302 * the built-in *extra* mixer. Never map it to control
3303 * another mixer by default. */
Henrique de Moraes Holschuhe927c082007-10-30 17:46:19 -02003304 KEY_RESERVED, /* 0x14: VOLUME UP */
3305 KEY_RESERVED, /* 0x15: VOLUME DOWN */
3306 KEY_RESERVED, /* 0x16: MUTE */
Henrique de Moraes Holschuh0f089142008-01-08 13:02:38 -02003307
Henrique de Moraes Holschuhedf0e0e2007-07-18 23:45:44 -03003308 KEY_VENDOR, /* 0x17: Thinkpad/AccessIBM/Lenovo */
Henrique de Moraes Holschuh0f089142008-01-08 13:02:38 -02003309
Henrique de Moraes Holschuhedf0e0e2007-07-18 23:45:44 -03003310 /* (assignments unknown, please report if found) */
3311 KEY_UNKNOWN, KEY_UNKNOWN, KEY_UNKNOWN, KEY_UNKNOWN,
3312 KEY_UNKNOWN, KEY_UNKNOWN, KEY_UNKNOWN, KEY_UNKNOWN,
Bastien Nocera6a68d852015-03-02 14:45:31 +01003313
3314 /* No assignments, only used for Adaptive keyboards. */
3315 KEY_UNKNOWN, KEY_UNKNOWN, KEY_UNKNOWN, KEY_UNKNOWN,
3316 KEY_UNKNOWN, KEY_UNKNOWN, KEY_UNKNOWN, KEY_UNKNOWN,
3317 KEY_UNKNOWN, KEY_UNKNOWN, KEY_UNKNOWN, KEY_UNKNOWN,
3318 KEY_UNKNOWN, KEY_UNKNOWN, KEY_UNKNOWN, KEY_UNKNOWN,
3319 KEY_UNKNOWN, KEY_UNKNOWN, KEY_UNKNOWN,
Christian Kellner696c65232017-02-28 17:10:57 +01003320
3321 /* No assignment, used for newer Lenovo models */
3322 KEY_UNKNOWN, KEY_UNKNOWN, KEY_UNKNOWN, KEY_UNKNOWN,
3323 KEY_UNKNOWN, KEY_UNKNOWN, KEY_UNKNOWN, KEY_UNKNOWN,
3324 KEY_UNKNOWN, KEY_UNKNOWN, KEY_UNKNOWN, KEY_UNKNOWN,
3325 KEY_UNKNOWN, KEY_UNKNOWN, KEY_UNKNOWN, KEY_UNKNOWN,
3326 KEY_UNKNOWN, KEY_UNKNOWN, KEY_UNKNOWN, KEY_UNKNOWN,
3327 KEY_UNKNOWN, KEY_UNKNOWN
3328
Henrique de Moraes Holschuhd1e14dc2010-08-09 23:48:21 -03003329 },
3330
3331 /* Generic keymap for Lenovo ThinkPads */
3332 [TPACPI_KEYMAP_LENOVO_GENERIC] = {
Henrique de Moraes Holschuhedf0e0e2007-07-18 23:45:44 -03003333 /* Scan Codes 0x00 to 0x0B: ACPI HKEY FN+F1..F12 */
3334 KEY_FN_F1, KEY_COFFEE, KEY_BATTERY, KEY_SLEEP,
Jens Taprogge2b754262010-08-09 23:48:22 -03003335 KEY_WLAN, KEY_CAMERA, KEY_SWITCHVIDEOMODE, KEY_FN_F8,
Henrique de Moraes Holschuhedf0e0e2007-07-18 23:45:44 -03003336 KEY_FN_F9, KEY_FN_F10, KEY_FN_F11, KEY_SUSPEND,
Henrique de Moraes Holschuh0f089142008-01-08 13:02:38 -02003337
3338 /* Scan codes 0x0C to 0x1F: Other ACPI HKEY hot keys */
Henrique de Moraes Holschuhedf0e0e2007-07-18 23:45:44 -03003339 KEY_UNKNOWN, /* 0x0C: FN+BACKSPACE */
3340 KEY_UNKNOWN, /* 0x0D: FN+INSERT */
3341 KEY_UNKNOWN, /* 0x0E: FN+DELETE */
Henrique de Moraes Holschuh0f089142008-01-08 13:02:38 -02003342
Henrique de Moraes Holschuhde4c8cc2009-09-12 15:22:18 -03003343 /* These should be enabled --only-- when ACPI video
3344 * is disabled (i.e. in "vendor" mode), and are handled
3345 * in a special way by the init code */
3346 KEY_BRIGHTNESSUP, /* 0x0F: FN+HOME (brightness up) */
3347 KEY_BRIGHTNESSDOWN, /* 0x10: FN+END (brightness down) */
Henrique de Moraes Holschuh0f089142008-01-08 13:02:38 -02003348
Henrique de Moraes Holschuhedf0e0e2007-07-18 23:45:44 -03003349 KEY_RESERVED, /* 0x11: FN+PGUP (thinklight toggle) */
Henrique de Moraes Holschuh0f089142008-01-08 13:02:38 -02003350
Henrique de Moraes Holschuhedf0e0e2007-07-18 23:45:44 -03003351 KEY_UNKNOWN, /* 0x12: FN+PGDOWN */
3352 KEY_ZOOM, /* 0x13: FN+SPACE (zoom) */
Henrique de Moraes Holschuh0f089142008-01-08 13:02:38 -02003353
3354 /* Volume: z60/z61, T60 (BIOS version?): firmware always
3355 * react to it and reprograms the built-in *extra* mixer.
3356 * Never map it to control another mixer by default.
3357 *
3358 * T60?, T61, R60?, R61: firmware and EC tries to send
3359 * these over the regular keyboard, so these are no-ops,
3360 * but there are still weird bugs re. MUTE, so do not
3361 * change unless you get test reports from all Lenovo
3362 * models. May cause the BIOS to interfere with the
3363 * HDA mixer.
3364 */
Henrique de Moraes Holschuhe927c082007-10-30 17:46:19 -02003365 KEY_RESERVED, /* 0x14: VOLUME UP */
3366 KEY_RESERVED, /* 0x15: VOLUME DOWN */
3367 KEY_RESERVED, /* 0x16: MUTE */
Henrique de Moraes Holschuh0f089142008-01-08 13:02:38 -02003368
Henrique de Moraes Holschuhedf0e0e2007-07-18 23:45:44 -03003369 KEY_VENDOR, /* 0x17: Thinkpad/AccessIBM/Lenovo */
Henrique de Moraes Holschuh0f089142008-01-08 13:02:38 -02003370
Henrique de Moraes Holschuhedf0e0e2007-07-18 23:45:44 -03003371 /* (assignments unknown, please report if found) */
Andy Lutomirski33009552011-05-24 15:16:43 -04003372 KEY_UNKNOWN, KEY_UNKNOWN,
3373
3374 /*
3375 * The mic mute button only sends 0x1a. It does not
3376 * automatically mute the mic or change the mute light.
3377 */
3378 KEY_MICMUTE, /* 0x1a: Mic mute (since ?400 or so) */
3379
3380 /* (assignments unknown, please report if found) */
Andy Lutomirski33009552011-05-24 15:16:43 -04003381 KEY_UNKNOWN,
Hans de Goede8b9dd4f2014-04-09 11:46:46 +02003382
3383 /* Extra keys in use since the X240 / T440 / T540 */
Hans de Goede4beb81d2014-06-23 13:38:23 +02003384 KEY_CONFIG, KEY_SEARCH, KEY_SCALE, KEY_FILE,
Bastien Nocera6a68d852015-03-02 14:45:31 +01003385
3386 /*
3387 * These are the adaptive keyboard keycodes for Carbon X1 2014.
3388 * The first item in this list is the Mute button which is
3389 * emitted with 0x103 through
3390 * adaptive_keyboard_hotkey_notify_hotkey() when the sound
3391 * symbol is held.
3392 * We'll need to offset those by 0x20.
3393 */
3394 KEY_RESERVED, /* Mute held, 0x103 */
3395 KEY_BRIGHTNESS_MIN, /* Backlight off */
3396 KEY_RESERVED, /* Clipping tool */
3397 KEY_RESERVED, /* Cloud */
3398 KEY_RESERVED,
3399 KEY_VOICECOMMAND, /* Voice */
3400 KEY_RESERVED,
3401 KEY_RESERVED, /* Gestures */
3402 KEY_RESERVED,
3403 KEY_RESERVED,
3404 KEY_RESERVED,
3405 KEY_CONFIG, /* Settings */
3406 KEY_RESERVED, /* New tab */
3407 KEY_REFRESH, /* Reload */
3408 KEY_BACK, /* Back */
3409 KEY_RESERVED, /* Microphone down */
3410 KEY_RESERVED, /* Microphone up */
3411 KEY_RESERVED, /* Microphone cancellation */
3412 KEY_RESERVED, /* Camera mode */
3413 KEY_RESERVED, /* Rotate display, 0x116 */
Christian Kellner696c65232017-02-28 17:10:57 +01003414
3415 /*
3416 * These are found in 2017 models (e.g. T470s, X270).
3417 * The lowest known value is 0x311, which according to
3418 * the manual should launch a user defined favorite
3419 * application.
3420 *
3421 * The offset for these is TP_ACPI_HOTKEYSCAN_EXTENDED_START,
3422 * corresponding to 0x34.
3423 */
3424
3425 /* (assignments unknown, please report if found) */
3426 KEY_UNKNOWN, KEY_UNKNOWN, KEY_UNKNOWN, KEY_UNKNOWN,
3427 KEY_UNKNOWN, KEY_UNKNOWN, KEY_UNKNOWN, KEY_UNKNOWN,
3428 KEY_UNKNOWN, KEY_UNKNOWN, KEY_UNKNOWN, KEY_UNKNOWN,
3429 KEY_UNKNOWN, KEY_UNKNOWN, KEY_UNKNOWN, KEY_UNKNOWN,
3430 KEY_UNKNOWN,
3431
Zhang Xianwei8055db32018-10-11 13:59:31 +08003432 KEY_BOOKMARKS, /* Favorite app, 0x311 */
Christian Kellner696c65232017-02-28 17:10:57 +01003433 KEY_RESERVED, /* Clipping tool */
Benjamin Bergcb5c1972018-06-20 15:49:27 +02003434 KEY_CALC, /* Calculator (above numpad, P52) */
Christian Kellner696c65232017-02-28 17:10:57 +01003435 KEY_BLUETOOTH, /* Bluetooth */
3436 KEY_KEYBOARD /* Keyboard, 0x315 */
Henrique de Moraes Holschuhd1e14dc2010-08-09 23:48:21 -03003437 },
Henrique de Moraes Holschuhedf0e0e2007-07-18 23:45:44 -03003438 };
3439
Henrique de Moraes Holschuhd1e14dc2010-08-09 23:48:21 -03003440 static const struct tpacpi_quirk tpacpi_keymap_qtable[] __initconst = {
3441 /* Generic maps (fallback) */
3442 {
3443 .vendor = PCI_VENDOR_ID_IBM,
3444 .bios = TPACPI_MATCH_ANY, .ec = TPACPI_MATCH_ANY,
3445 .quirks = TPACPI_KEYMAP_IBM_GENERIC,
3446 },
3447 {
3448 .vendor = PCI_VENDOR_ID_LENOVO,
3449 .bios = TPACPI_MATCH_ANY, .ec = TPACPI_MATCH_ANY,
3450 .quirks = TPACPI_KEYMAP_LENOVO_GENERIC,
3451 },
3452 };
3453
3454#define TPACPI_HOTKEY_MAP_SIZE sizeof(tpacpi_keymap_t)
Henrique de Moraes Holschuhfc6e7562010-09-17 21:53:41 -03003455#define TPACPI_HOTKEY_MAP_TYPESIZE sizeof(tpacpi_keymap_entry_t)
Henrique de Moraes Holschuhedf0e0e2007-07-18 23:45:44 -03003456
Henrique de Moraes Holschuh6a38abb2007-07-18 23:45:35 -03003457 int res, i;
Henrique de Moraes Holschuh74941a62007-07-18 23:45:31 -03003458 int status;
Henrique de Moraes Holschuh1b6521d2007-09-23 11:39:03 -03003459 int hkeyv;
Henrique de Moraes Holschuhd89a7272009-12-15 21:51:06 -02003460 bool radiosw_state = false;
3461 bool tabletsw_state = false;
Henrique de Moraes Holschuhb86c4722007-04-21 11:08:39 -03003462
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03003463 unsigned long quirks;
Henrique de Moraes Holschuhd1e14dc2010-08-09 23:48:21 -03003464 unsigned long keymap_id;
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03003465
Henrique de Moraes Holschuh56e2c202009-04-04 04:25:51 +00003466 vdbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_HKEY,
3467 "initializing hotkey subdriver\n");
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03003468
Henrique de Moraes Holschuh6a38abb2007-07-18 23:45:35 -03003469 BUG_ON(!tpacpi_inputdev);
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02003470 BUG_ON(tpacpi_inputdev->open != NULL ||
3471 tpacpi_inputdev->close != NULL);
Henrique de Moraes Holschuh6a38abb2007-07-18 23:45:35 -03003472
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02003473 TPACPI_ACPIHANDLE_INIT(hkey);
Henrique de Moraes Holschuh40ca9fd2007-04-24 11:48:15 -03003474 mutex_init(&hotkey_mutex);
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03003475
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02003476#ifdef CONFIG_THINKPAD_ACPI_HOTKEY_POLL
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02003477 mutex_init(&hotkey_thread_data_mutex);
3478#endif
3479
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03003480 /* hotkey not supported on 570 */
Henrique de Moraes Holschuhd8fd94d2007-04-21 11:08:36 -03003481 tp_features.hotkey = hkey_handle != NULL;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03003482
Henrique de Moraes Holschuh56e2c202009-04-04 04:25:51 +00003483 vdbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_HKEY,
3484 "hotkeys are %s\n",
Henrique de Moraes Holschuhd8fd94d2007-04-21 11:08:36 -03003485 str_supported(tp_features.hotkey));
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03003486
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003487 if (!tp_features.hotkey)
3488 return 1;
3489
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03003490 quirks = tpacpi_check_quirks(tpacpi_hotkey_qtable,
3491 ARRAY_SIZE(tpacpi_hotkey_qtable));
3492
Henrique de Moraes Holschuhd64c81c42008-10-18 14:23:55 -03003493 tpacpi_disable_brightness_delay();
3494
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03003495 /* MUST have enough space for all attributes to be added to
3496 * hotkey_dev_attributes */
3497 hotkey_dev_attributes = create_attr_set(
3498 ARRAY_SIZE(hotkey_attributes) + 2,
3499 NULL);
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003500 if (!hotkey_dev_attributes)
3501 return -ENOMEM;
3502 res = add_many_to_attr_set(hotkey_dev_attributes,
3503 hotkey_attributes,
3504 ARRAY_SIZE(hotkey_attributes));
3505 if (res)
3506 goto err_exit;
3507
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03003508 /* mask not supported on 600e/x, 770e, 770x, A21e, A2xm/p,
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003509 A30, R30, R31, T20-22, X20-21, X22-24. Detected by checking
3510 for HKEY interface version 0x100 */
3511 if (acpi_evalf(hkey_handle, &hkeyv, "MHKV", "qd")) {
Dennis Wassenberg0118c2d2016-06-08 10:54:25 -04003512 vdbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_HKEY,
3513 "firmware HKEY interface version: 0x%x\n",
3514 hkeyv);
3515
3516 switch (hkeyv >> 8) {
3517 case 1:
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003518 /*
3519 * MHKV 0x100 in A31, R40, R40e,
3520 * T4x, X31, and later
3521 */
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03003522
3523 /* Paranoia check AND init hotkey_all_mask */
3524 if (!acpi_evalf(hkey_handle, &hotkey_all_mask,
3525 "MHKA", "qd")) {
Dennis Wassenberg0118c2d2016-06-08 10:54:25 -04003526 pr_err("missing MHKA handler, please report this to %s\n",
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03003527 TPACPI_MAIL);
3528 /* Fallback: pre-init for FN+F3,F4,F12 */
3529 hotkey_all_mask = 0x080cU;
3530 } else {
3531 tp_features.hotkey_mask = 1;
3532 }
Dennis Wassenberg0118c2d2016-06-08 10:54:25 -04003533 break;
3534
3535 case 2:
3536 /*
3537 * MHKV 0x200 in X1, T460s, X260, T560, X1 Tablet (2016)
3538 */
3539
3540 /* Paranoia check AND init hotkey_all_mask */
3541 if (!acpi_evalf(hkey_handle, &hotkey_all_mask,
3542 "MHKA", "dd", 1)) {
3543 pr_err("missing MHKA handler, please report this to %s\n",
3544 TPACPI_MAIL);
3545 /* Fallback: pre-init for FN+F3,F4,F12 */
3546 hotkey_all_mask = 0x080cU;
3547 } else {
3548 tp_features.hotkey_mask = 1;
3549 }
3550
3551 /*
3552 * Check if we have an adaptive keyboard, like on the
3553 * Lenovo Carbon X1 2014 (2nd Gen).
3554 */
3555 if (acpi_evalf(hkey_handle, &hotkey_adaptive_all_mask,
3556 "MHKA", "dd", 2)) {
3557 if (hotkey_adaptive_all_mask != 0) {
3558 tp_features.has_adaptive_kbd = true;
3559 res = sysfs_create_group(
3560 &tpacpi_pdev->dev.kobj,
3561 &adaptive_kbd_attr_group);
3562 if (res)
3563 goto err_exit;
3564 }
3565 } else {
3566 tp_features.has_adaptive_kbd = false;
3567 hotkey_adaptive_all_mask = 0x0U;
3568 }
3569 break;
3570
3571 default:
3572 pr_err("unknown version of the HKEY interface: 0x%x\n",
3573 hkeyv);
3574 pr_err("please report this to %s\n", TPACPI_MAIL);
3575 break;
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003576 }
3577 }
3578
Henrique de Moraes Holschuh56e2c202009-04-04 04:25:51 +00003579 vdbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_HKEY,
3580 "hotkey masks are %s\n",
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003581 str_supported(tp_features.hotkey_mask));
3582
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03003583 /* Init hotkey_all_mask if not initialized yet */
3584 if (!tp_features.hotkey_mask && !hotkey_all_mask &&
3585 (quirks & TPACPI_HK_Q_INIMASK))
3586 hotkey_all_mask = 0x080cU; /* FN+F12, FN+F4, FN+F3 */
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003587
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03003588 /* Init hotkey_acpi_mask and hotkey_orig_mask */
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003589 if (tp_features.hotkey_mask) {
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03003590 /* hotkey_source_mask *must* be zero for
3591 * the first hotkey_mask_get to return hotkey_orig_mask */
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003592 res = hotkey_mask_get();
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03003593 if (res)
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003594 goto err_exit;
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03003595
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03003596 hotkey_orig_mask = hotkey_acpi_mask;
3597 } else {
3598 hotkey_orig_mask = hotkey_all_mask;
3599 hotkey_acpi_mask = hotkey_all_mask;
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003600 }
Henrique de Moraes Holschuh74941a62007-07-18 23:45:31 -03003601
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02003602#ifdef CONFIG_THINKPAD_ACPI_DEBUGFACILITIES
3603 if (dbg_wlswemul) {
3604 tp_features.hotkey_wlsw = 1;
Henrique de Moraes Holschuhd89a7272009-12-15 21:51:06 -02003605 radiosw_state = !!tpacpi_wlsw_emulstate;
Joe Perches0978e012011-04-04 10:06:25 -07003606 pr_info("radio switch emulation enabled\n");
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02003607 } else
3608#endif
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003609 /* Not all thinkpads have a hardware radio switch */
3610 if (acpi_evalf(hkey_handle, &status, "WLSW", "qd")) {
3611 tp_features.hotkey_wlsw = 1;
Henrique de Moraes Holschuhd89a7272009-12-15 21:51:06 -02003612 radiosw_state = !!status;
Joe Perches0978e012011-04-04 10:06:25 -07003613 pr_info("radio switch found; radios are %s\n",
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003614 enabled(status, 0));
Henrique de Moraes Holschuh3a872082008-07-21 09:15:49 -03003615 }
3616 if (tp_features.hotkey_wlsw)
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003617 res = add_to_attr_set(hotkey_dev_attributes,
3618 &dev_attr_hotkey_radio_sw.attr);
Henrique de Moraes Holschuh74941a62007-07-18 23:45:31 -03003619
Lyudeb3180022016-11-11 15:15:02 -05003620 res = hotkey_init_tablet_mode();
3621 if (res < 0)
3622 goto err_exit;
Henrique de Moraes Holschuh6c231bd2008-02-16 02:17:58 -02003623
Lyudeb3180022016-11-11 15:15:02 -05003624 tabletsw_state = res;
3625
3626 res = register_attr_set_with_sysfs(hotkey_dev_attributes,
3627 &tpacpi_pdev->dev.kobj);
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003628 if (res)
3629 goto err_exit;
Henrique de Moraes Holschuh6a38abb2007-07-18 23:45:35 -03003630
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003631 /* Set up key map */
Henrique de Moraes Holschuhd1e14dc2010-08-09 23:48:21 -03003632 keymap_id = tpacpi_check_quirks(tpacpi_keymap_qtable,
3633 ARRAY_SIZE(tpacpi_keymap_qtable));
3634 BUG_ON(keymap_id >= ARRAY_SIZE(tpacpi_keymaps));
3635 dbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_HKEY,
3636 "using keymap number %lu\n", keymap_id);
3637
Fuqian Huang35b7c802019-07-04 00:30:00 +08003638 hotkey_keycode_map = kmemdup(&tpacpi_keymaps[keymap_id],
3639 TPACPI_HOTKEY_MAP_SIZE, GFP_KERNEL);
3640 if (!hotkey_keycode_map) {
3641 pr_err("failed to allocate memory for key map\n");
3642 res = -ENOMEM;
3643 goto err_exit;
3644 }
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003645
Henrique de Moraes Holschuh792979c2009-12-09 01:36:29 +00003646 input_set_capability(tpacpi_inputdev, EV_MSC, MSC_SCAN);
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003647 tpacpi_inputdev->keycodesize = TPACPI_HOTKEY_MAP_TYPESIZE;
3648 tpacpi_inputdev->keycodemax = TPACPI_HOTKEY_MAP_LEN;
3649 tpacpi_inputdev->keycode = hotkey_keycode_map;
3650 for (i = 0; i < TPACPI_HOTKEY_MAP_LEN; i++) {
3651 if (hotkey_keycode_map[i] != KEY_RESERVED) {
Henrique de Moraes Holschuh792979c2009-12-09 01:36:29 +00003652 input_set_capability(tpacpi_inputdev, EV_KEY,
3653 hotkey_keycode_map[i]);
Henrique de Moraes Holschuhedf0e0e2007-07-18 23:45:44 -03003654 } else {
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003655 if (i < sizeof(hotkey_reserved_mask)*8)
3656 hotkey_reserved_mask |= 1 << i;
Henrique de Moraes Holschuhedf0e0e2007-07-18 23:45:44 -03003657 }
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03003658 }
3659
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003660 if (tp_features.hotkey_wlsw) {
Henrique de Moraes Holschuh792979c2009-12-09 01:36:29 +00003661 input_set_capability(tpacpi_inputdev, EV_SW, SW_RFKILL_ALL);
Henrique de Moraes Holschuhd89a7272009-12-15 21:51:06 -02003662 input_report_switch(tpacpi_inputdev,
3663 SW_RFKILL_ALL, radiosw_state);
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003664 }
3665 if (tp_features.hotkey_tablet) {
Henrique de Moraes Holschuh792979c2009-12-09 01:36:29 +00003666 input_set_capability(tpacpi_inputdev, EV_SW, SW_TABLET_MODE);
Henrique de Moraes Holschuhd89a7272009-12-15 21:51:06 -02003667 input_report_switch(tpacpi_inputdev,
3668 SW_TABLET_MODE, tabletsw_state);
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03003669 }
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03003670
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003671 /* Do not issue duplicate brightness change events to
Henrique de Moraes Holschuh77775832010-05-16 19:45:33 -03003672 * userspace. tpacpi_detect_brightness_capabilities() must have
3673 * been called before this point */
Hans de Goedeb33c6ce2015-06-16 16:28:10 +02003674 if (acpi_video_get_backlight_type() != acpi_backlight_vendor) {
Andy Shevchenko5cac62a2017-05-09 17:17:20 +03003675 pr_info("This ThinkPad has standard ACPI backlight brightness control, supported by the ACPI video driver\n");
3676 pr_notice("Disabling thinkpad-acpi brightness events by default...\n");
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003677
Henrique de Moraes Holschuhde4c8cc2009-09-12 15:22:18 -03003678 /* Disable brightness up/down on Lenovo thinkpads when
3679 * ACPI is handling them, otherwise it is plain impossible
3680 * for userspace to do something even remotely sane */
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003681 hotkey_reserved_mask |=
3682 (1 << TP_ACPI_HOTKEYSCAN_FNHOME)
3683 | (1 << TP_ACPI_HOTKEYSCAN_FNEND);
Henrique de Moraes Holschuhde4c8cc2009-09-12 15:22:18 -03003684 hotkey_unmap(TP_ACPI_HOTKEYSCAN_FNHOME);
3685 hotkey_unmap(TP_ACPI_HOTKEYSCAN_FNEND);
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03003686 }
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003687
Henrique de Moraes Holschuh230d8cf252009-09-12 15:22:17 -03003688#ifdef CONFIG_THINKPAD_ACPI_HOTKEY_POLL
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03003689 hotkey_source_mask = TPACPI_HKEY_NVRAM_GOOD_MASK
3690 & ~hotkey_all_mask
3691 & ~hotkey_reserved_mask;
Henrique de Moraes Holschuh230d8cf252009-09-12 15:22:17 -03003692
3693 vdbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_HKEY,
3694 "hotkey source mask 0x%08x, polling freq %u\n",
3695 hotkey_source_mask, hotkey_poll_freq);
3696#endif
3697
Henrique de Moraes Holschuh56e2c202009-04-04 04:25:51 +00003698 dbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_HKEY,
3699 "enabling firmware HKEY event interface...\n");
Henrique de Moraes Holschuh2586d562009-04-04 04:25:48 +00003700 res = hotkey_status_set(true);
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003701 if (res) {
3702 hotkey_exit();
3703 return res;
3704 }
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03003705 res = hotkey_mask_set(((hotkey_all_mask & ~hotkey_reserved_mask)
3706 | hotkey_driver_mask)
3707 & ~hotkey_source_mask);
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003708 if (res < 0 && res != -ENXIO) {
3709 hotkey_exit();
3710 return res;
3711 }
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03003712 hotkey_user_mask = (hotkey_acpi_mask | hotkey_source_mask)
3713 & ~hotkey_reserved_mask;
3714 vdbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_HKEY,
3715 "initial masks: user=0x%08x, fw=0x%08x, poll=0x%08x\n",
3716 hotkey_user_mask, hotkey_acpi_mask, hotkey_source_mask);
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003717
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003718 tpacpi_inputdev->open = &hotkey_inputdev_open;
3719 tpacpi_inputdev->close = &hotkey_inputdev_close;
3720
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03003721 hotkey_poll_setup_safe(true);
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003722
3723 return 0;
3724
3725err_exit:
3726 delete_attr_set(hotkey_dev_attributes, &tpacpi_pdev->dev.kobj);
Bastien Nocerab790cee2015-03-02 14:45:27 +01003727 sysfs_remove_group(&tpacpi_pdev->dev.kobj,
3728 &adaptive_kbd_attr_group);
3729
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003730 hotkey_dev_attributes = NULL;
3731
Jan van den Berg72a979f2014-09-17 00:01:08 +02003732 return (res < 0) ? res : 1;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03003733}
3734
Shuduo Sang3a9d20b2014-03-06 18:20:46 +08003735/* Thinkpad X1 Carbon support 5 modes including Home mode, Web browser
3736 * mode, Web conference mode, Function mode and Lay-flat mode.
3737 * We support Home mode and Function mode currently.
3738 *
3739 * Will consider support rest of modes in future.
3740 *
3741 */
Lad, Prabhakarb201a472015-02-05 14:45:38 +00003742static const int adaptive_keyboard_modes[] = {
Shuduo Sang3a9d20b2014-03-06 18:20:46 +08003743 HOME_MODE,
3744/* WEB_BROWSER_MODE = 2,
3745 WEB_CONFERENCE_MODE = 3, */
3746 FUNCTION_MODE
3747};
3748
3749#define DFR_CHANGE_ROW 0x101
3750#define DFR_SHOW_QUICKVIEW_ROW 0x102
Bastien Nocera6a68d852015-03-02 14:45:31 +01003751#define FIRST_ADAPTIVE_KEY 0x103
Shuduo Sang3a9d20b2014-03-06 18:20:46 +08003752
3753/* press Fn key a while second, it will switch to Function Mode. Then
3754 * release Fn key, previous mode be restored.
3755 */
3756static bool adaptive_keyboard_mode_is_saved;
3757static int adaptive_keyboard_prev_mode;
3758
Bastien Noceraf74587f2015-03-02 14:45:22 +01003759static int adaptive_keyboard_get_mode(void)
3760{
3761 int mode = 0;
3762
3763 if (!acpi_evalf(hkey_handle, &mode, "GTRW", "dd", 0)) {
3764 pr_err("Cannot read adaptive keyboard mode\n");
3765 return -EIO;
3766 }
3767
3768 return mode;
3769}
3770
3771static int adaptive_keyboard_set_mode(int new_mode)
3772{
3773 if (new_mode < 0 ||
3774 new_mode > LAYFLAT_MODE)
3775 return -EINVAL;
3776
3777 if (!acpi_evalf(hkey_handle, NULL, "STRW", "vd", new_mode)) {
3778 pr_err("Cannot set adaptive keyboard mode\n");
3779 return -EIO;
3780 }
3781
3782 return 0;
3783}
3784
Shuduo Sang3a9d20b2014-03-06 18:20:46 +08003785static int adaptive_keyboard_get_next_mode(int mode)
3786{
3787 size_t i;
3788 size_t max_mode = ARRAY_SIZE(adaptive_keyboard_modes) - 1;
3789
3790 for (i = 0; i <= max_mode; i++) {
3791 if (adaptive_keyboard_modes[i] == mode)
3792 break;
3793 }
3794
3795 if (i >= max_mode)
3796 i = 0;
3797 else
3798 i++;
3799
3800 return adaptive_keyboard_modes[i];
3801}
3802
3803static bool adaptive_keyboard_hotkey_notify_hotkey(unsigned int scancode)
3804{
Dan Carpenterabf9dc02015-03-11 12:34:50 +03003805 int current_mode = 0;
Shuduo Sang3a9d20b2014-03-06 18:20:46 +08003806 int new_mode = 0;
Bastien Nocera6a68d852015-03-02 14:45:31 +01003807 int keycode;
Shuduo Sang3a9d20b2014-03-06 18:20:46 +08003808
3809 switch (scancode) {
3810 case DFR_CHANGE_ROW:
3811 if (adaptive_keyboard_mode_is_saved) {
3812 new_mode = adaptive_keyboard_prev_mode;
3813 adaptive_keyboard_mode_is_saved = false;
3814 } else {
Bastien Noceraf74587f2015-03-02 14:45:22 +01003815 current_mode = adaptive_keyboard_get_mode();
3816 if (current_mode < 0)
Shuduo Sang3a9d20b2014-03-06 18:20:46 +08003817 return false;
Bastien Noceraf74587f2015-03-02 14:45:22 +01003818 new_mode = adaptive_keyboard_get_next_mode(
3819 current_mode);
Shuduo Sang3a9d20b2014-03-06 18:20:46 +08003820 }
3821
Bastien Noceraf74587f2015-03-02 14:45:22 +01003822 if (adaptive_keyboard_set_mode(new_mode) < 0)
Shuduo Sang3a9d20b2014-03-06 18:20:46 +08003823 return false;
Shuduo Sang3a9d20b2014-03-06 18:20:46 +08003824
3825 return true;
3826
3827 case DFR_SHOW_QUICKVIEW_ROW:
Bastien Noceraf74587f2015-03-02 14:45:22 +01003828 current_mode = adaptive_keyboard_get_mode();
3829 if (current_mode < 0)
Shuduo Sang3a9d20b2014-03-06 18:20:46 +08003830 return false;
Shuduo Sang3a9d20b2014-03-06 18:20:46 +08003831
Bastien Noceraf74587f2015-03-02 14:45:22 +01003832 adaptive_keyboard_prev_mode = current_mode;
3833 adaptive_keyboard_mode_is_saved = true;
3834
3835 if (adaptive_keyboard_set_mode (FUNCTION_MODE) < 0)
3836 return false;
Shuduo Sang3a9d20b2014-03-06 18:20:46 +08003837 return true;
3838
3839 default:
Dan Carpenter741d98c2015-03-11 12:36:07 +03003840 if (scancode < FIRST_ADAPTIVE_KEY ||
Christian Kellner696c65232017-02-28 17:10:57 +01003841 scancode >= FIRST_ADAPTIVE_KEY +
3842 TP_ACPI_HOTKEYSCAN_EXTENDED_START -
3843 TP_ACPI_HOTKEYSCAN_ADAPTIVE_START) {
Bastien Nocera6a68d852015-03-02 14:45:31 +01003844 pr_info("Unhandled adaptive keyboard key: 0x%x\n",
Andy Shevchenko5cac62a2017-05-09 17:17:20 +03003845 scancode);
Bastien Nocera6a68d852015-03-02 14:45:31 +01003846 return false;
3847 }
Christian Kellner149c8c72017-02-28 17:10:56 +01003848 keycode = hotkey_keycode_map[scancode - FIRST_ADAPTIVE_KEY +
3849 TP_ACPI_HOTKEYSCAN_ADAPTIVE_START];
Bastien Nocera6a68d852015-03-02 14:45:31 +01003850 if (keycode != KEY_RESERVED) {
3851 mutex_lock(&tpacpi_inputdev_send_mutex);
3852
3853 input_report_key(tpacpi_inputdev, keycode, 1);
3854 input_sync(tpacpi_inputdev);
3855
3856 input_report_key(tpacpi_inputdev, keycode, 0);
3857 input_sync(tpacpi_inputdev);
3858
3859 mutex_unlock(&tpacpi_inputdev_send_mutex);
3860 }
3861 return true;
Shuduo Sang3a9d20b2014-03-06 18:20:46 +08003862 }
3863}
3864
Henrique de Moraes Holschuh3827e7a2009-01-11 03:01:05 -02003865static bool hotkey_notify_hotkey(const u32 hkey,
3866 bool *send_acpi_ev,
3867 bool *ignore_acpi_ev)
3868{
3869 /* 0x1000-0x1FFF: key presses */
3870 unsigned int scancode = hkey & 0xfff;
3871 *send_acpi_ev = true;
3872 *ignore_acpi_ev = false;
3873
Christian Kellner696c65232017-02-28 17:10:57 +01003874 /*
3875 * Original events are in the 0x10XX range, the adaptive keyboard
3876 * found in 2014 X1 Carbon emits events are of 0x11XX. In 2017
3877 * models, additional keys are emitted through 0x13XX.
3878 */
3879 switch ((hkey >> 8) & 0xf) {
3880 case 0:
3881 if (scancode > 0 &&
3882 scancode <= TP_ACPI_HOTKEYSCAN_ADAPTIVE_START) {
3883 /* HKEY event 0x1001 is scancode 0x00 */
3884 scancode--;
3885 if (!(hotkey_source_mask & (1 << scancode))) {
3886 tpacpi_input_send_key_masked(scancode);
3887 *send_acpi_ev = false;
3888 } else {
3889 *ignore_acpi_ev = true;
3890 }
3891 return true;
Henrique de Moraes Holschuh3827e7a2009-01-11 03:01:05 -02003892 }
Christian Kellner696c65232017-02-28 17:10:57 +01003893 break;
3894
3895 case 1:
Shuduo Sang3a9d20b2014-03-06 18:20:46 +08003896 return adaptive_keyboard_hotkey_notify_hotkey(scancode);
Christian Kellner696c65232017-02-28 17:10:57 +01003897
3898 case 3:
3899 /* Extended keycodes start at 0x300 and our offset into the map
3900 * TP_ACPI_HOTKEYSCAN_EXTENDED_START. The calculated scancode
3901 * will be positive, but might not be in the correct range.
3902 */
3903 scancode -= (0x300 - TP_ACPI_HOTKEYSCAN_EXTENDED_START);
3904 if (scancode >= TP_ACPI_HOTKEYSCAN_EXTENDED_START &&
3905 scancode < TPACPI_HOTKEY_MAP_LEN) {
3906 tpacpi_input_send_key(scancode);
3907 return true;
3908 }
3909 break;
Henrique de Moraes Holschuh3827e7a2009-01-11 03:01:05 -02003910 }
Christian Kellner696c65232017-02-28 17:10:57 +01003911
Henrique de Moraes Holschuh3827e7a2009-01-11 03:01:05 -02003912 return false;
3913}
3914
3915static bool hotkey_notify_wakeup(const u32 hkey,
3916 bool *send_acpi_ev,
3917 bool *ignore_acpi_ev)
3918{
3919 /* 0x2000-0x2FFF: Wakeup reason */
3920 *send_acpi_ev = true;
3921 *ignore_acpi_ev = false;
3922
3923 switch (hkey) {
Henrique de Moraes Holschuh67bcae62009-09-20 14:09:27 -03003924 case TP_HKEY_EV_WKUP_S3_UNDOCK: /* suspend, undock */
3925 case TP_HKEY_EV_WKUP_S4_UNDOCK: /* hibernation, undock */
Henrique de Moraes Holschuh3827e7a2009-01-11 03:01:05 -02003926 hotkey_wakeup_reason = TP_ACPI_WAKEUP_UNDOCK;
3927 *ignore_acpi_ev = true;
3928 break;
3929
Henrique de Moraes Holschuh67bcae62009-09-20 14:09:27 -03003930 case TP_HKEY_EV_WKUP_S3_BAYEJ: /* suspend, bay eject */
3931 case TP_HKEY_EV_WKUP_S4_BAYEJ: /* hibernation, bay eject */
Henrique de Moraes Holschuh3827e7a2009-01-11 03:01:05 -02003932 hotkey_wakeup_reason = TP_ACPI_WAKEUP_BAYEJ;
3933 *ignore_acpi_ev = true;
3934 break;
3935
Henrique de Moraes Holschuh67bcae62009-09-20 14:09:27 -03003936 case TP_HKEY_EV_WKUP_S3_BATLOW: /* Battery on critical low level/S3 */
3937 case TP_HKEY_EV_WKUP_S4_BATLOW: /* Battery on critical low level/S4 */
Joe Perches0978e012011-04-04 10:06:25 -07003938 pr_alert("EMERGENCY WAKEUP: battery almost empty\n");
Henrique de Moraes Holschuh106b4e62009-01-11 03:01:06 -02003939 /* how to auto-heal: */
3940 /* 2313: woke up from S3, go to S4/S5 */
3941 /* 2413: woke up from S4, go to S5 */
3942 break;
3943
Henrique de Moraes Holschuh3827e7a2009-01-11 03:01:05 -02003944 default:
3945 return false;
3946 }
3947
3948 if (hotkey_wakeup_reason != TP_ACPI_WAKEUP_NONE) {
Joe Perches0978e012011-04-04 10:06:25 -07003949 pr_info("woke up due to a hot-unplug request...\n");
Henrique de Moraes Holschuh3827e7a2009-01-11 03:01:05 -02003950 hotkey_wakeup_reason_notify_change();
3951 }
3952 return true;
3953}
3954
Henrique de Moraes Holschuha50245a2011-06-05 16:22:35 -03003955static bool hotkey_notify_dockevent(const u32 hkey,
3956 bool *send_acpi_ev,
3957 bool *ignore_acpi_ev)
3958{
3959 /* 0x4000-0x4FFF: dock-related events */
3960 *send_acpi_ev = true;
3961 *ignore_acpi_ev = false;
3962
3963 switch (hkey) {
3964 case TP_HKEY_EV_UNDOCK_ACK:
3965 /* ACPI undock operation completed after wakeup */
3966 hotkey_autosleep_ack = 1;
3967 pr_info("undocked\n");
3968 hotkey_wakeup_hotunplug_complete_notify_change();
3969 return true;
3970
3971 case TP_HKEY_EV_HOTPLUG_DOCK: /* docked to port replicator */
3972 pr_info("docked into hotplug port replicator\n");
3973 return true;
3974 case TP_HKEY_EV_HOTPLUG_UNDOCK: /* undocked from port replicator */
3975 pr_info("undocked from hotplug port replicator\n");
3976 return true;
3977
3978 default:
3979 return false;
3980 }
3981}
3982
Henrique de Moraes Holschuh3827e7a2009-01-11 03:01:05 -02003983static bool hotkey_notify_usrevent(const u32 hkey,
3984 bool *send_acpi_ev,
3985 bool *ignore_acpi_ev)
3986{
3987 /* 0x5000-0x5FFF: human interface helpers */
3988 *send_acpi_ev = true;
3989 *ignore_acpi_ev = false;
3990
3991 switch (hkey) {
Henrique de Moraes Holschuh67bcae62009-09-20 14:09:27 -03003992 case TP_HKEY_EV_PEN_INSERTED: /* X61t: tablet pen inserted into bay */
3993 case TP_HKEY_EV_PEN_REMOVED: /* X61t: tablet pen removed from bay */
Henrique de Moraes Holschuh3827e7a2009-01-11 03:01:05 -02003994 return true;
3995
Henrique de Moraes Holschuh67bcae62009-09-20 14:09:27 -03003996 case TP_HKEY_EV_TABLET_TABLET: /* X41t-X61t: tablet mode */
3997 case TP_HKEY_EV_TABLET_NOTEBOOK: /* X41t-X61t: normal mode */
Henrique de Moraes Holschuh3827e7a2009-01-11 03:01:05 -02003998 tpacpi_input_send_tabletsw();
3999 hotkey_tablet_mode_notify_change();
4000 *send_acpi_ev = false;
4001 return true;
4002
Henrique de Moraes Holschuh67bcae62009-09-20 14:09:27 -03004003 case TP_HKEY_EV_LID_CLOSE: /* Lid closed */
4004 case TP_HKEY_EV_LID_OPEN: /* Lid opened */
4005 case TP_HKEY_EV_BRGHT_CHANGED: /* brightness changed */
Henrique de Moraes Holschuh176dd982009-09-20 14:09:24 -03004006 /* do not propagate these events */
Henrique de Moraes Holschuh3827e7a2009-01-11 03:01:05 -02004007 *ignore_acpi_ev = true;
4008 return true;
4009
4010 default:
4011 return false;
4012 }
4013}
4014
Henrique de Moraes Holschuh9ebd9e82009-12-09 01:36:28 +00004015static void thermal_dump_all_sensors(void);
4016
Henrique de Moraes Holschuh2d43f672011-06-05 16:22:34 -03004017static bool hotkey_notify_6xxx(const u32 hkey,
Henrique de Moraes Holschuh106b4e62009-01-11 03:01:06 -02004018 bool *send_acpi_ev,
4019 bool *ignore_acpi_ev)
4020{
Henrique de Moraes Holschuh2d43f672011-06-05 16:22:34 -03004021 /* 0x6000-0x6FFF: thermal alarms/notices and keyboard events */
Henrique de Moraes Holschuh106b4e62009-01-11 03:01:06 -02004022 *send_acpi_ev = true;
4023 *ignore_acpi_ev = false;
4024
4025 switch (hkey) {
Henrique de Moraes Holschuh67bcae62009-09-20 14:09:27 -03004026 case TP_HKEY_EV_THM_TABLE_CHANGED:
Henrique de Moraes Holschuh6e6bc5f62018-04-24 16:56:03 -03004027 pr_debug("EC reports: Thermal Table has changed\n");
4028 /* recommended action: do nothing, we don't have
4029 * Lenovo ATM information */
4030 return true;
4031 case TP_HKEY_EV_THM_CSM_COMPLETED:
4032 pr_debug("EC reports: Thermal Control Command set completed (DYTC)\n");
4033 /* recommended action: do nothing, we don't have
4034 * Lenovo ATM information */
4035 return true;
4036 case TP_HKEY_EV_THM_TRANSFM_CHANGED:
4037 pr_debug("EC reports: Thermal Transformation changed (GMTS)\n");
Henrique de Moraes Holschuh54926ce2009-01-11 03:01:09 -02004038 /* recommended action: do nothing, we don't have
4039 * Lenovo ATM information */
4040 return true;
Henrique de Moraes Holschuh9ebd9e82009-12-09 01:36:28 +00004041 case TP_HKEY_EV_ALARM_BAT_HOT:
Joe Perches0978e012011-04-04 10:06:25 -07004042 pr_crit("THERMAL ALARM: battery is too hot!\n");
Henrique de Moraes Holschuh9ebd9e82009-12-09 01:36:28 +00004043 /* recommended action: warn user through gui */
4044 break;
4045 case TP_HKEY_EV_ALARM_BAT_XHOT:
Joe Perches0978e012011-04-04 10:06:25 -07004046 pr_alert("THERMAL EMERGENCY: battery is extremely hot!\n");
Henrique de Moraes Holschuh9ebd9e82009-12-09 01:36:28 +00004047 /* recommended action: immediate sleep/hibernate */
4048 break;
4049 case TP_HKEY_EV_ALARM_SENSOR_HOT:
Andy Shevchenko5cac62a2017-05-09 17:17:20 +03004050 pr_crit("THERMAL ALARM: a sensor reports something is too hot!\n");
Henrique de Moraes Holschuh9ebd9e82009-12-09 01:36:28 +00004051 /* recommended action: warn user through gui, that */
4052 /* some internal component is too hot */
4053 break;
4054 case TP_HKEY_EV_ALARM_SENSOR_XHOT:
Andy Shevchenko5cac62a2017-05-09 17:17:20 +03004055 pr_alert("THERMAL EMERGENCY: a sensor reports something is extremely hot!\n");
Henrique de Moraes Holschuh9ebd9e82009-12-09 01:36:28 +00004056 /* recommended action: immediate sleep/hibernate */
4057 break;
Richard Hartmann6f62bc32012-12-29 22:51:49 +01004058 case TP_HKEY_EV_AC_CHANGED:
4059 /* X120e, X121e, X220, X220i, X220t, X230, T420, T420s, W520:
4060 * AC status changed; can be triggered by plugging or
4061 * unplugging AC adapter, docking or undocking. */
4062
4063 /* fallthrough */
Henrique de Moraes Holschuh2d43f672011-06-05 16:22:34 -03004064
4065 case TP_HKEY_EV_KEY_NUMLOCK:
4066 case TP_HKEY_EV_KEY_FN:
Xavier Naveira67ab6242015-02-10 08:45:18 +01004067 case TP_HKEY_EV_KEY_FN_ESC:
Henrique de Moraes Holschuh2d43f672011-06-05 16:22:34 -03004068 /* key press events, we just ignore them as long as the EC
4069 * is still reporting them in the normal keyboard stream */
4070 *send_acpi_ev = false;
4071 *ignore_acpi_ev = true;
4072 return true;
4073
Lyudeb03f4d42016-11-11 15:15:03 -05004074 case TP_HKEY_EV_TABLET_CHANGED:
4075 tpacpi_input_send_tabletsw();
4076 hotkey_tablet_mode_notify_change();
4077 *send_acpi_ev = false;
Henrique de Moraes Holschuhedd1ed72018-04-24 16:56:04 -03004078 return true;
Lyudeb03f4d42016-11-11 15:15:03 -05004079
David Herrmann587d8622018-01-12 12:04:45 +01004080 case TP_HKEY_EV_PALM_DETECTED:
4081 case TP_HKEY_EV_PALM_UNDETECTED:
4082 /* palm detected hovering the keyboard, forward to user-space
4083 * via netlink for consumption */
4084 return true;
4085
Henrique de Moraes Holschuh106b4e62009-01-11 03:01:06 -02004086 default:
Henrique de Moraes Holschuhfd75ba22018-04-24 16:56:05 -03004087 /* report simply as unknown, no sensor dump */
4088 return false;
Henrique de Moraes Holschuh106b4e62009-01-11 03:01:06 -02004089 }
Henrique de Moraes Holschuh9ebd9e82009-12-09 01:36:28 +00004090
4091 thermal_dump_all_sensors();
Henrique de Moraes Holschuhfd75ba22018-04-24 16:56:05 -03004092 return true;
Henrique de Moraes Holschuh106b4e62009-01-11 03:01:06 -02004093}
4094
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03004095static void hotkey_notify(struct ibm_struct *ibm, u32 event)
4096{
Henrique de Moraes Holschuh6a38abb2007-07-18 23:45:35 -03004097 u32 hkey;
Henrique de Moraes Holschuh3827e7a2009-01-11 03:01:05 -02004098 bool send_acpi_ev;
4099 bool ignore_acpi_ev;
4100 bool known_ev;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03004101
Henrique de Moraes Holschuh3eea1232007-09-23 11:39:04 -03004102 if (event != 0x80) {
Joe Perches0978e012011-04-04 10:06:25 -07004103 pr_err("unknown HKEY notification event %d\n", event);
Henrique de Moraes Holschuh3eea1232007-09-23 11:39:04 -03004104 /* forward it to userspace, maybe it knows how to handle it */
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02004105 acpi_bus_generate_netlink_event(
4106 ibm->acpi->device->pnp.device_class,
Kay Sieverse0b36fc2009-01-11 03:00:59 -02004107 dev_name(&ibm->acpi->device->dev),
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02004108 event, 0);
Henrique de Moraes Holschuh3eea1232007-09-23 11:39:04 -03004109 return;
4110 }
4111
4112 while (1) {
4113 if (!acpi_evalf(hkey_handle, &hkey, "MHKP", "d")) {
Joe Perches0978e012011-04-04 10:06:25 -07004114 pr_err("failed to retrieve HKEY event\n");
Henrique de Moraes Holschuh3eea1232007-09-23 11:39:04 -03004115 return;
4116 }
4117
4118 if (hkey == 0) {
4119 /* queue empty */
4120 return;
4121 }
4122
Henrique de Moraes Holschuh3827e7a2009-01-11 03:01:05 -02004123 send_acpi_ev = true;
4124 ignore_acpi_ev = false;
Henrique de Moraes Holschuh3eea1232007-09-23 11:39:04 -03004125
Henrique de Moraes Holschuhff80f132007-09-04 11:13:15 -03004126 switch (hkey >> 12) {
4127 case 1:
4128 /* 0x1000-0x1FFF: key presses */
Henrique de Moraes Holschuh3827e7a2009-01-11 03:01:05 -02004129 known_ev = hotkey_notify_hotkey(hkey, &send_acpi_ev,
4130 &ignore_acpi_ev);
Henrique de Moraes Holschuhff80f132007-09-04 11:13:15 -03004131 break;
Henrique de Moraes Holschuha713b4d2008-01-08 13:02:52 -02004132 case 2:
Henrique de Moraes Holschuh3827e7a2009-01-11 03:01:05 -02004133 /* 0x2000-0x2FFF: Wakeup reason */
4134 known_ev = hotkey_notify_wakeup(hkey, &send_acpi_ev,
4135 &ignore_acpi_ev);
Henrique de Moraes Holschuha713b4d2008-01-08 13:02:52 -02004136 break;
4137 case 3:
Henrique de Moraes Holschuh3827e7a2009-01-11 03:01:05 -02004138 /* 0x3000-0x3FFF: bay-related wakeups */
Henrique de Moraes Holschuhbf8b29c2010-02-25 21:28:56 -03004139 switch (hkey) {
4140 case TP_HKEY_EV_BAYEJ_ACK:
Henrique de Moraes Holschuha713b4d2008-01-08 13:02:52 -02004141 hotkey_autosleep_ack = 1;
Joe Perches0978e012011-04-04 10:06:25 -07004142 pr_info("bay ejected\n");
Henrique de Moraes Holschuh50ebec02008-01-08 13:02:55 -02004143 hotkey_wakeup_hotunplug_complete_notify_change();
Henrique de Moraes Holschuh3827e7a2009-01-11 03:01:05 -02004144 known_ev = true;
Henrique de Moraes Holschuhbf8b29c2010-02-25 21:28:56 -03004145 break;
4146 case TP_HKEY_EV_OPTDRV_EJ:
4147 /* FIXME: kick libata if SATA link offline */
4148 known_ev = true;
4149 break;
4150 default:
Henrique de Moraes Holschuh3827e7a2009-01-11 03:01:05 -02004151 known_ev = false;
Henrique de Moraes Holschuha713b4d2008-01-08 13:02:52 -02004152 }
4153 break;
4154 case 4:
Henrique de Moraes Holschuha50245a2011-06-05 16:22:35 -03004155 /* 0x4000-0x4FFF: dock-related events */
4156 known_ev = hotkey_notify_dockevent(hkey, &send_acpi_ev,
4157 &ignore_acpi_ev);
Henrique de Moraes Holschuha713b4d2008-01-08 13:02:52 -02004158 break;
Henrique de Moraes Holschuhff80f132007-09-04 11:13:15 -03004159 case 5:
Henrique de Moraes Holschuhd1edb2b2008-01-08 13:02:53 -02004160 /* 0x5000-0x5FFF: human interface helpers */
Henrique de Moraes Holschuh3827e7a2009-01-11 03:01:05 -02004161 known_ev = hotkey_notify_usrevent(hkey, &send_acpi_ev,
4162 &ignore_acpi_ev);
Henrique de Moraes Holschuhff80f132007-09-04 11:13:15 -03004163 break;
Henrique de Moraes Holschuh106b4e62009-01-11 03:01:06 -02004164 case 6:
Henrique de Moraes Holschuh2d43f672011-06-05 16:22:34 -03004165 /* 0x6000-0x6FFF: thermal alarms/notices and
4166 * keyboard events */
4167 known_ev = hotkey_notify_6xxx(hkey, &send_acpi_ev,
Henrique de Moraes Holschuh106b4e62009-01-11 03:01:06 -02004168 &ignore_acpi_ev);
4169 break;
Henrique de Moraes Holschuhff80f132007-09-04 11:13:15 -03004170 case 7:
4171 /* 0x7000-0x7FFF: misc */
Henrique de Moraes Holschuh67bcae62009-09-20 14:09:27 -03004172 if (tp_features.hotkey_wlsw &&
4173 hkey == TP_HKEY_EV_RFKILL_CHANGED) {
Henrique de Moraes Holschuh733e27c2008-07-21 09:15:49 -03004174 tpacpi_send_radiosw_update();
Henrique de Moraes Holschuh3b64b512008-01-08 13:02:51 -02004175 send_acpi_ev = 0;
Henrique de Moraes Holschuh3827e7a2009-01-11 03:01:05 -02004176 known_ev = true;
Henrique de Moraes Holschuhff80f132007-09-04 11:13:15 -03004177 break;
4178 }
Gustavo A. R. Silvac77c3572019-04-24 13:15:44 -05004179 /* fallthrough - to default */
Henrique de Moraes Holschuhff80f132007-09-04 11:13:15 -03004180 default:
Henrique de Moraes Holschuh3827e7a2009-01-11 03:01:05 -02004181 known_ev = false;
Henrique de Moraes Holschuh3b64b512008-01-08 13:02:51 -02004182 }
Henrique de Moraes Holschuh3827e7a2009-01-11 03:01:05 -02004183 if (!known_ev) {
Joe Perches0978e012011-04-04 10:06:25 -07004184 pr_notice("unhandled HKEY event 0x%04x\n", hkey);
Andy Shevchenko5cac62a2017-05-09 17:17:20 +03004185 pr_notice("please report the conditions when this event happened to %s\n",
4186 TPACPI_MAIL);
Henrique de Moraes Holschuh6a38abb2007-07-18 23:45:35 -03004187 }
Henrique de Moraes Holschuhff80f132007-09-04 11:13:15 -03004188
Henrique de Moraes Holschuh3eea1232007-09-23 11:39:04 -03004189 /* netlink events */
Henrique de Moraes Holschuh3e5ce912007-09-23 11:39:05 -03004190 if (!ignore_acpi_ev && send_acpi_ev) {
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02004191 acpi_bus_generate_netlink_event(
4192 ibm->acpi->device->pnp.device_class,
Kay Sieverse0b36fc2009-01-11 03:00:59 -02004193 dev_name(&ibm->acpi->device->dev),
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02004194 event, hkey);
Henrique de Moraes Holschuh3eea1232007-09-23 11:39:04 -03004195 }
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03004196 }
4197}
4198
Rafael J. Wysockifd3c3a42012-06-27 23:18:44 +02004199static void hotkey_suspend(void)
Henrique de Moraes Holschuha713b4d2008-01-08 13:02:52 -02004200{
4201 /* Do these on suspend, we get the events on early resume! */
4202 hotkey_wakeup_reason = TP_ACPI_WAKEUP_NONE;
4203 hotkey_autosleep_ack = 0;
Shuduo Sang330947b2014-03-27 18:06:25 +08004204
4205 /* save previous mode of adaptive keyboard of X1 Carbon */
Bastien Noceraf23a5bc2015-03-02 14:45:16 +01004206 if (tp_features.has_adaptive_kbd) {
4207 if (!acpi_evalf(hkey_handle, &adaptive_keyboard_prev_mode,
4208 "GTRW", "dd", 0)) {
4209 pr_err("Cannot read adaptive keyboard mode.\n");
Shuduo Sang330947b2014-03-27 18:06:25 +08004210 }
4211 }
Henrique de Moraes Holschuha713b4d2008-01-08 13:02:52 -02004212}
4213
Henrique de Moraes Holschuh5c29d582007-07-18 23:45:38 -03004214static void hotkey_resume(void)
4215{
Henrique de Moraes Holschuhd64c81c42008-10-18 14:23:55 -03004216 tpacpi_disable_brightness_delay();
4217
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03004218 if (hotkey_status_set(true) < 0 ||
4219 hotkey_mask_set(hotkey_acpi_mask) < 0)
Andy Shevchenko5cac62a2017-05-09 17:17:20 +03004220 pr_err("error while attempting to reset the event firmware interface\n");
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03004221
Henrique de Moraes Holschuh733e27c2008-07-21 09:15:49 -03004222 tpacpi_send_radiosw_update();
Henrique de Moraes Holschuh6c231bd2008-02-16 02:17:58 -02004223 hotkey_tablet_mode_notify_change();
Henrique de Moraes Holschuh50ebec02008-01-08 13:02:55 -02004224 hotkey_wakeup_reason_notify_change();
4225 hotkey_wakeup_hotunplug_complete_notify_change();
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03004226 hotkey_poll_setup_safe(false);
Shuduo Sang330947b2014-03-27 18:06:25 +08004227
4228 /* restore previous mode of adapive keyboard of X1 Carbon */
Bastien Noceraf23a5bc2015-03-02 14:45:16 +01004229 if (tp_features.has_adaptive_kbd) {
4230 if (!acpi_evalf(hkey_handle, NULL, "STRW", "vd",
4231 adaptive_keyboard_prev_mode)) {
4232 pr_err("Cannot set adaptive keyboard mode.\n");
Shuduo Sang330947b2014-03-27 18:06:25 +08004233 }
4234 }
Henrique de Moraes Holschuh5c29d582007-07-18 23:45:38 -03004235}
4236
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03004237/* procfs -------------------------------------------------------------- */
Alexey Dobriyan887965e2009-12-15 21:51:12 -02004238static int hotkey_read(struct seq_file *m)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004239{
Henrique de Moraes Holschuhae92bd12007-07-18 23:45:29 -03004240 int res, status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004241
Henrique de Moraes Holschuhd8fd94d2007-04-21 11:08:36 -03004242 if (!tp_features.hotkey) {
Alexey Dobriyan887965e2009-12-15 21:51:12 -02004243 seq_printf(m, "status:\t\tnot supported\n");
4244 return 0;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004245 }
4246
Henrique de Moraes Holschuh7646ea82009-01-11 03:01:04 -02004247 if (mutex_lock_killable(&hotkey_mutex))
Henrique de Moraes Holschuhfc589a32007-10-30 17:46:24 -02004248 return -ERESTARTSYS;
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02004249 res = hotkey_status_get(&status);
4250 if (!res)
4251 res = hotkey_mask_get();
Henrique de Moraes Holschuh40ca9fd2007-04-24 11:48:15 -03004252 mutex_unlock(&hotkey_mutex);
Henrique de Moraes Holschuhb86c4722007-04-21 11:08:39 -03004253 if (res)
4254 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004255
Alexey Dobriyan887965e2009-12-15 21:51:12 -02004256 seq_printf(m, "status:\t\t%s\n", enabled(status, 0));
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03004257 if (hotkey_all_mask) {
Alexey Dobriyan887965e2009-12-15 21:51:12 -02004258 seq_printf(m, "mask:\t\t0x%08x\n", hotkey_user_mask);
4259 seq_printf(m, "commands:\tenable, disable, reset, <mask>\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004260 } else {
Alexey Dobriyan887965e2009-12-15 21:51:12 -02004261 seq_printf(m, "mask:\t\tnot supported\n");
4262 seq_printf(m, "commands:\tenable, disable, reset\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004263 }
4264
Alexey Dobriyan887965e2009-12-15 21:51:12 -02004265 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004266}
4267
Henrique de Moraes Holschuh406e9882009-04-14 02:44:10 +00004268static void hotkey_enabledisable_warn(bool enable)
Henrique de Moraes Holschuh2586d562009-04-04 04:25:48 +00004269{
4270 tpacpi_log_usertask("procfs hotkey enable/disable");
Henrique de Moraes Holschuh406e9882009-04-14 02:44:10 +00004271 if (!WARN((tpacpi_lifecycle == TPACPI_LIFE_RUNNING || !enable),
Andy Shevchenko5cac62a2017-05-09 17:17:20 +03004272 pr_fmt("hotkey enable/disable functionality has been removed from the driver. Hotkeys are always enabled.\n")))
4273 pr_err("Please remove the hotkey=enable module parameter, it is deprecated. Hotkeys are always enabled.\n");
Henrique de Moraes Holschuh2586d562009-04-04 04:25:48 +00004274}
4275
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004276static int hotkey_write(char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004277{
Henrique de Moraes Holschuh2586d562009-04-04 04:25:48 +00004278 int res;
Henrique de Moraes Holschuhae92bd12007-07-18 23:45:29 -03004279 u32 mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004280 char *cmd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004281
Henrique de Moraes Holschuhd8fd94d2007-04-21 11:08:36 -03004282 if (!tp_features.hotkey)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004283 return -ENODEV;
4284
Henrique de Moraes Holschuh7646ea82009-01-11 03:01:04 -02004285 if (mutex_lock_killable(&hotkey_mutex))
Henrique de Moraes Holschuhfc589a32007-10-30 17:46:24 -02004286 return -ERESTARTSYS;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004287
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03004288 mask = hotkey_user_mask;
Henrique de Moraes Holschuh40ca9fd2007-04-24 11:48:15 -03004289
4290 res = 0;
Andy Shevchenkobe51bd42020-05-11 15:56:24 +03004291 while ((cmd = strsep(&buf, ","))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004292 if (strlencmp(cmd, "enable") == 0) {
Henrique de Moraes Holschuh406e9882009-04-14 02:44:10 +00004293 hotkey_enabledisable_warn(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004294 } else if (strlencmp(cmd, "disable") == 0) {
Henrique de Moraes Holschuh406e9882009-04-14 02:44:10 +00004295 hotkey_enabledisable_warn(0);
Henrique de Moraes Holschuh2586d562009-04-04 04:25:48 +00004296 res = -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004297 } else if (strlencmp(cmd, "reset") == 0) {
Henrique de Moraes Holschuh20c9aa42009-09-12 15:22:16 -03004298 mask = (hotkey_all_mask | hotkey_source_mask)
4299 & ~hotkey_reserved_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004300 } else if (sscanf(cmd, "0x%x", &mask) == 1) {
4301 /* mask set */
4302 } else if (sscanf(cmd, "%x", &mask) == 1) {
4303 /* mask set */
Henrique de Moraes Holschuh40ca9fd2007-04-24 11:48:15 -03004304 } else {
4305 res = -EINVAL;
4306 goto errexit;
4307 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004308 }
Henrique de Moraes Holschuh56e2c202009-04-04 04:25:51 +00004309
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03004310 if (!res) {
Henrique de Moraes Holschuh56e2c202009-04-04 04:25:51 +00004311 tpacpi_disclose_usertask("procfs hotkey",
4312 "set mask to 0x%08x\n", mask);
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03004313 res = hotkey_user_mask_set(mask);
4314 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004315
Henrique de Moraes Holschuh40ca9fd2007-04-24 11:48:15 -03004316errexit:
4317 mutex_unlock(&hotkey_mutex);
4318 return res;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004319}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004320
Thomas Renninger1ba90e32007-07-23 14:44:41 +02004321static const struct acpi_device_id ibm_htk_device_ids[] = {
Manoj Iyer9fbdaeb2011-05-08 18:04:29 -04004322 {TPACPI_ACPI_IBM_HKEY_HID, 0},
4323 {TPACPI_ACPI_LENOVO_HKEY_HID, 0},
Hui Wanga3c42a42016-11-08 16:13:23 +08004324 {TPACPI_ACPI_LENOVO_HKEY_V2_HID, 0},
Thomas Renninger1ba90e32007-07-23 14:44:41 +02004325 {"", 0},
4326};
4327
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -03004328static struct tp_acpi_drv_struct ibm_hotkey_acpidriver = {
Thomas Renninger1ba90e32007-07-23 14:44:41 +02004329 .hid = ibm_htk_device_ids,
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03004330 .notify = hotkey_notify,
4331 .handle = &hkey_handle,
4332 .type = ACPI_DEVICE_NOTIFY,
4333};
4334
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -03004335static struct ibm_struct hotkey_driver_data = {
4336 .name = "hotkey",
4337 .read = hotkey_read,
4338 .write = hotkey_write,
4339 .exit = hotkey_exit,
Henrique de Moraes Holschuh5c29d582007-07-18 23:45:38 -03004340 .resume = hotkey_resume,
Henrique de Moraes Holschuha713b4d2008-01-08 13:02:52 -02004341 .suspend = hotkey_suspend,
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -03004342 .acpi = &ibm_hotkey_acpidriver,
4343};
4344
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03004345/*************************************************************************
4346 * Bluetooth subdriver
4347 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004348
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02004349enum {
4350 /* ACPI GBDC/SBDC bits */
4351 TP_ACPI_BLUETOOTH_HWPRESENT = 0x01, /* Bluetooth hw available */
4352 TP_ACPI_BLUETOOTH_RADIOSSW = 0x02, /* Bluetooth radio enabled */
Henrique de Moraes Holschuh153f8222009-01-11 03:01:01 -02004353 TP_ACPI_BLUETOOTH_RESUMECTRL = 0x04, /* Bluetooth state at resume:
Henrique de Moraes Holschuh08fedfc2010-02-25 22:22:07 -03004354 0 = disable, 1 = enable */
Henrique de Moraes Holschuh153f8222009-01-11 03:01:01 -02004355};
4356
4357enum {
4358 /* ACPI \BLTH commands */
4359 TP_ACPI_BLTH_GET_ULTRAPORT_ID = 0x00, /* Get Ultraport BT ID */
4360 TP_ACPI_BLTH_GET_PWR_ON_RESUME = 0x01, /* Get power-on-resume state */
4361 TP_ACPI_BLTH_PWR_ON_ON_RESUME = 0x02, /* Resume powered on */
4362 TP_ACPI_BLTH_PWR_OFF_ON_RESUME = 0x03, /* Resume powered off */
4363 TP_ACPI_BLTH_SAVE_STATE = 0x05, /* Save state for S4/S5 */
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02004364};
4365
Henrique de Moraes Holschuhbee4cd9b2009-04-04 04:25:50 +00004366#define TPACPI_RFK_BLUETOOTH_SW_NAME "tpacpi_bluetooth_sw"
4367
Johannes Berg19d337d2009-06-02 13:01:37 +02004368static int bluetooth_get_status(void)
Henrique de Moraes Holschuh07431ec2008-07-21 09:15:50 -03004369{
4370 int status;
4371
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02004372#ifdef CONFIG_THINKPAD_ACPI_DEBUGFACILITIES
4373 if (dbg_bluetoothemul)
4374 return (tpacpi_bluetooth_emulstate) ?
Johannes Berg19d337d2009-06-02 13:01:37 +02004375 TPACPI_RFK_RADIO_ON : TPACPI_RFK_RADIO_OFF;
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02004376#endif
4377
Henrique de Moraes Holschuh07431ec2008-07-21 09:15:50 -03004378 if (!acpi_evalf(hkey_handle, &status, "GBDC", "d"))
4379 return -EIO;
4380
Henrique de Moraes Holschuh0e74dc22008-07-21 09:15:51 -03004381 return ((status & TP_ACPI_BLUETOOTH_RADIOSSW) != 0) ?
Johannes Berg19d337d2009-06-02 13:01:37 +02004382 TPACPI_RFK_RADIO_ON : TPACPI_RFK_RADIO_OFF;
Henrique de Moraes Holschuh07431ec2008-07-21 09:15:50 -03004383}
4384
Johannes Berg19d337d2009-06-02 13:01:37 +02004385static int bluetooth_set_status(enum tpacpi_rfkill_state state)
Henrique de Moraes Holschuh0e74dc22008-07-21 09:15:51 -03004386{
4387 int status;
4388
Henrique de Moraes Holschuhbee4cd9b2009-04-04 04:25:50 +00004389 vdbg_printk(TPACPI_DBG_RFKILL,
Johannes Berg19d337d2009-06-02 13:01:37 +02004390 "will attempt to %s bluetooth\n",
4391 (state == TPACPI_RFK_RADIO_ON) ? "enable" : "disable");
Henrique de Moraes Holschuhbee4cd9b2009-04-04 04:25:50 +00004392
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02004393#ifdef CONFIG_THINKPAD_ACPI_DEBUGFACILITIES
4394 if (dbg_bluetoothemul) {
Johannes Berg19d337d2009-06-02 13:01:37 +02004395 tpacpi_bluetooth_emulstate = (state == TPACPI_RFK_RADIO_ON);
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02004396 return 0;
4397 }
4398#endif
4399
Johannes Berg19d337d2009-06-02 13:01:37 +02004400 if (state == TPACPI_RFK_RADIO_ON)
Henrique de Moraes Holschuh08fedfc2010-02-25 22:22:07 -03004401 status = TP_ACPI_BLUETOOTH_RADIOSSW
4402 | TP_ACPI_BLUETOOTH_RESUMECTRL;
4403 else
4404 status = 0;
Johannes Berg19d337d2009-06-02 13:01:37 +02004405
Henrique de Moraes Holschuh07431ec2008-07-21 09:15:50 -03004406 if (!acpi_evalf(hkey_handle, NULL, "SBDC", "vd", status))
4407 return -EIO;
4408
4409 return 0;
4410}
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02004411
Henrique de Moraes Holschuhd3a6ade2007-04-27 22:00:17 -03004412/* sysfs bluetooth enable ---------------------------------------------- */
4413static ssize_t bluetooth_enable_show(struct device *dev,
4414 struct device_attribute *attr,
4415 char *buf)
4416{
Johannes Berg19d337d2009-06-02 13:01:37 +02004417 return tpacpi_rfk_sysfs_enable_show(TPACPI_RFK_BLUETOOTH_SW_ID,
4418 attr, buf);
Henrique de Moraes Holschuhd3a6ade2007-04-27 22:00:17 -03004419}
4420
4421static ssize_t bluetooth_enable_store(struct device *dev,
4422 struct device_attribute *attr,
4423 const char *buf, size_t count)
4424{
Johannes Berg19d337d2009-06-02 13:01:37 +02004425 return tpacpi_rfk_sysfs_enable_store(TPACPI_RFK_BLUETOOTH_SW_ID,
4426 attr, buf, count);
Henrique de Moraes Holschuhd3a6ade2007-04-27 22:00:17 -03004427}
4428
Bastien Nocerab4dd04ac2015-03-02 18:40:50 +01004429static DEVICE_ATTR_RW(bluetooth_enable);
Henrique de Moraes Holschuhd3a6ade2007-04-27 22:00:17 -03004430
4431/* --------------------------------------------------------------------- */
4432
4433static struct attribute *bluetooth_attributes[] = {
4434 &dev_attr_bluetooth_enable.attr,
4435 NULL
4436};
4437
4438static const struct attribute_group bluetooth_attr_group = {
Henrique de Moraes Holschuhd3a6ade2007-04-27 22:00:17 -03004439 .attrs = bluetooth_attributes,
4440};
4441
Johannes Berg19d337d2009-06-02 13:01:37 +02004442static const struct tpacpi_rfk_ops bluetooth_tprfk_ops = {
4443 .get_status = bluetooth_get_status,
4444 .set_status = bluetooth_set_status,
4445};
Henrique de Moraes Holschuh0e74dc22008-07-21 09:15:51 -03004446
Henrique de Moraes Holschuh90d9d3c2009-01-11 03:01:02 -02004447static void bluetooth_shutdown(void)
4448{
4449 /* Order firmware to save current state to NVRAM */
4450 if (!acpi_evalf(NULL, NULL, "\\BLTH", "vd",
4451 TP_ACPI_BLTH_SAVE_STATE))
Joe Perches0978e012011-04-04 10:06:25 -07004452 pr_notice("failed to save bluetooth state to NVRAM\n");
Henrique de Moraes Holschuhbee4cd9b2009-04-04 04:25:50 +00004453 else
4454 vdbg_printk(TPACPI_DBG_RFKILL,
Paul Bolle1f013582011-10-06 22:57:56 +02004455 "bluetooth state saved to NVRAM\n");
Henrique de Moraes Holschuh90d9d3c2009-01-11 03:01:02 -02004456}
4457
Henrique de Moraes Holschuh07431ec2008-07-21 09:15:50 -03004458static void bluetooth_exit(void)
4459{
4460 sysfs_remove_group(&tpacpi_pdev->dev.kobj,
4461 &bluetooth_attr_group);
Johannes Berg19d337d2009-06-02 13:01:37 +02004462
4463 tpacpi_destroy_rfkill(TPACPI_RFK_BLUETOOTH_SW_ID);
4464
4465 bluetooth_shutdown();
Henrique de Moraes Holschuh07431ec2008-07-21 09:15:50 -03004466}
4467
Jiaxun Yangf7db8392019-03-07 17:37:16 +08004468static const struct dmi_system_id bt_fwbug_list[] __initconst = {
4469 {
4470 .ident = "ThinkPad E485",
4471 .matches = {
4472 DMI_MATCH(DMI_SYS_VENDOR, "LENOVO"),
4473 DMI_MATCH(DMI_BOARD_NAME, "20KU"),
4474 },
4475 },
4476 {
4477 .ident = "ThinkPad E585",
4478 .matches = {
4479 DMI_MATCH(DMI_SYS_VENDOR, "LENOVO"),
4480 DMI_MATCH(DMI_BOARD_NAME, "20KV"),
4481 },
4482 },
4483 {
4484 .ident = "ThinkPad A285 - 20MW",
4485 .matches = {
4486 DMI_MATCH(DMI_SYS_VENDOR, "LENOVO"),
4487 DMI_MATCH(DMI_BOARD_NAME, "20MW"),
4488 },
4489 },
4490 {
4491 .ident = "ThinkPad A285 - 20MX",
4492 .matches = {
4493 DMI_MATCH(DMI_SYS_VENDOR, "LENOVO"),
4494 DMI_MATCH(DMI_BOARD_NAME, "20MX"),
4495 },
4496 },
4497 {
4498 .ident = "ThinkPad A485 - 20MU",
4499 .matches = {
4500 DMI_MATCH(DMI_SYS_VENDOR, "LENOVO"),
4501 DMI_MATCH(DMI_BOARD_NAME, "20MU"),
4502 },
4503 },
4504 {
4505 .ident = "ThinkPad A485 - 20MV",
4506 .matches = {
4507 DMI_MATCH(DMI_SYS_VENDOR, "LENOVO"),
4508 DMI_MATCH(DMI_BOARD_NAME, "20MV"),
4509 },
4510 },
4511 {}
4512};
4513
4514static const struct pci_device_id fwbug_cards_ids[] __initconst = {
4515 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, 0x24F3) },
4516 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, 0x24FD) },
4517 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, 0x2526) },
4518 {}
4519};
4520
4521
4522static int __init have_bt_fwbug(void)
4523{
4524 /*
4525 * Some AMD based ThinkPads have a firmware bug that calling
4526 * "GBDC" will cause bluetooth on Intel wireless cards blocked
4527 */
4528 if (dmi_check_system(bt_fwbug_list) && pci_dev_present(fwbug_cards_ids)) {
4529 vdbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_RFKILL,
4530 FW_BUG "disable bluetooth subdriver for Intel cards\n");
4531 return 1;
4532 } else
4533 return 0;
4534}
4535
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03004536static int __init bluetooth_init(struct ibm_init_struct *iibm)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004537{
Henrique de Moraes Holschuhd3a6ade2007-04-27 22:00:17 -03004538 int res;
Henrique de Moraes Holschuhd6fdd1e2007-04-21 11:08:40 -03004539 int status = 0;
4540
Henrique de Moraes Holschuhbee4cd9b2009-04-04 04:25:50 +00004541 vdbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_RFKILL,
4542 "initializing bluetooth subdriver\n");
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03004543
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02004544 TPACPI_ACPIHANDLE_INIT(hkey);
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03004545
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004546 /* bluetooth not supported on 570, 600e/x, 770e, 770x, A21e, A2xm/p,
4547 G4x, R30, R31, R40e, R50e, T20-22, X20-21 */
Jiaxun Yangf7db8392019-03-07 17:37:16 +08004548 tp_features.bluetooth = !have_bt_fwbug() && hkey_handle &&
Henrique de Moraes Holschuhd6fdd1e2007-04-21 11:08:40 -03004549 acpi_evalf(hkey_handle, &status, "GBDC", "qd");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004550
Henrique de Moraes Holschuhbee4cd9b2009-04-04 04:25:50 +00004551 vdbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_RFKILL,
4552 "bluetooth is %s, status 0x%02x\n",
Henrique de Moraes Holschuhd6fdd1e2007-04-21 11:08:40 -03004553 str_supported(tp_features.bluetooth),
4554 status);
4555
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02004556#ifdef CONFIG_THINKPAD_ACPI_DEBUGFACILITIES
4557 if (dbg_bluetoothemul) {
4558 tp_features.bluetooth = 1;
Joe Perches0978e012011-04-04 10:06:25 -07004559 pr_info("bluetooth switch emulation enabled\n");
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02004560 } else
4561#endif
Henrique de Moraes Holschuh3a872082008-07-21 09:15:49 -03004562 if (tp_features.bluetooth &&
4563 !(status & TP_ACPI_BLUETOOTH_HWPRESENT)) {
4564 /* no bluetooth hardware present in system */
4565 tp_features.bluetooth = 0;
Henrique de Moraes Holschuhbee4cd9b2009-04-04 04:25:50 +00004566 dbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_RFKILL,
Henrique de Moraes Holschuh3a872082008-07-21 09:15:49 -03004567 "bluetooth hardware not installed\n");
4568 }
4569
Henrique de Moraes Holschuh0e74dc22008-07-21 09:15:51 -03004570 if (!tp_features.bluetooth)
4571 return 1;
4572
Johannes Berg19d337d2009-06-02 13:01:37 +02004573 res = tpacpi_new_rfkill(TPACPI_RFK_BLUETOOTH_SW_ID,
4574 &bluetooth_tprfk_ops,
4575 RFKILL_TYPE_BLUETOOTH,
4576 TPACPI_RFK_BLUETOOTH_SW_NAME,
4577 true);
Henrique de Moraes Holschuh0e74dc22008-07-21 09:15:51 -03004578 if (res)
4579 return res;
4580
Johannes Berg19d337d2009-06-02 13:01:37 +02004581 res = sysfs_create_group(&tpacpi_pdev->dev.kobj,
4582 &bluetooth_attr_group);
Henrique de Moraes Holschuh0e74dc22008-07-21 09:15:51 -03004583 if (res) {
Johannes Berg19d337d2009-06-02 13:01:37 +02004584 tpacpi_destroy_rfkill(TPACPI_RFK_BLUETOOTH_SW_ID);
Henrique de Moraes Holschuh0e74dc22008-07-21 09:15:51 -03004585 return res;
Henrique de Moraes Holschuhd6fdd1e2007-04-21 11:08:40 -03004586 }
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03004587
Henrique de Moraes Holschuh0e74dc22008-07-21 09:15:51 -03004588 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004589}
4590
Henrique de Moraes Holschuhd3a6ade2007-04-27 22:00:17 -03004591/* procfs -------------------------------------------------------------- */
Alexey Dobriyan887965e2009-12-15 21:51:12 -02004592static int bluetooth_read(struct seq_file *m)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004593{
Alexey Dobriyan887965e2009-12-15 21:51:12 -02004594 return tpacpi_rfk_procfs_read(TPACPI_RFK_BLUETOOTH_SW_ID, m);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004595}
4596
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004597static int bluetooth_write(char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004598{
Johannes Berg19d337d2009-06-02 13:01:37 +02004599 return tpacpi_rfk_procfs_write(TPACPI_RFK_BLUETOOTH_SW_ID, buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004600}
4601
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03004602static struct ibm_struct bluetooth_driver_data = {
4603 .name = "bluetooth",
4604 .read = bluetooth_read,
4605 .write = bluetooth_write,
Henrique de Moraes Holschuhd3a6ade2007-04-27 22:00:17 -03004606 .exit = bluetooth_exit,
Henrique de Moraes Holschuh90d9d3c2009-01-11 03:01:02 -02004607 .shutdown = bluetooth_shutdown,
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03004608};
4609
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03004610/*************************************************************************
4611 * Wan subdriver
4612 */
4613
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02004614enum {
4615 /* ACPI GWAN/SWAN bits */
4616 TP_ACPI_WANCARD_HWPRESENT = 0x01, /* Wan hw available */
4617 TP_ACPI_WANCARD_RADIOSSW = 0x02, /* Wan radio enabled */
Henrique de Moraes Holschuh153f8222009-01-11 03:01:01 -02004618 TP_ACPI_WANCARD_RESUMECTRL = 0x04, /* Wan state at resume:
Henrique de Moraes Holschuh08fedfc2010-02-25 22:22:07 -03004619 0 = disable, 1 = enable */
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02004620};
4621
Henrique de Moraes Holschuhbee4cd9b2009-04-04 04:25:50 +00004622#define TPACPI_RFK_WWAN_SW_NAME "tpacpi_wwan_sw"
4623
Johannes Berg19d337d2009-06-02 13:01:37 +02004624static int wan_get_status(void)
Henrique de Moraes Holschuh07431ec2008-07-21 09:15:50 -03004625{
4626 int status;
4627
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02004628#ifdef CONFIG_THINKPAD_ACPI_DEBUGFACILITIES
4629 if (dbg_wwanemul)
4630 return (tpacpi_wwan_emulstate) ?
Johannes Berg19d337d2009-06-02 13:01:37 +02004631 TPACPI_RFK_RADIO_ON : TPACPI_RFK_RADIO_OFF;
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02004632#endif
4633
Henrique de Moraes Holschuh07431ec2008-07-21 09:15:50 -03004634 if (!acpi_evalf(hkey_handle, &status, "GWAN", "d"))
4635 return -EIO;
4636
Henrique de Moraes Holschuh0e74dc22008-07-21 09:15:51 -03004637 return ((status & TP_ACPI_WANCARD_RADIOSSW) != 0) ?
Johannes Berg19d337d2009-06-02 13:01:37 +02004638 TPACPI_RFK_RADIO_ON : TPACPI_RFK_RADIO_OFF;
Henrique de Moraes Holschuh07431ec2008-07-21 09:15:50 -03004639}
4640
Johannes Berg19d337d2009-06-02 13:01:37 +02004641static int wan_set_status(enum tpacpi_rfkill_state state)
Henrique de Moraes Holschuh0e74dc22008-07-21 09:15:51 -03004642{
4643 int status;
4644
Henrique de Moraes Holschuhbee4cd9b2009-04-04 04:25:50 +00004645 vdbg_printk(TPACPI_DBG_RFKILL,
Johannes Berg19d337d2009-06-02 13:01:37 +02004646 "will attempt to %s wwan\n",
4647 (state == TPACPI_RFK_RADIO_ON) ? "enable" : "disable");
Henrique de Moraes Holschuhbee4cd9b2009-04-04 04:25:50 +00004648
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02004649#ifdef CONFIG_THINKPAD_ACPI_DEBUGFACILITIES
4650 if (dbg_wwanemul) {
Johannes Berg19d337d2009-06-02 13:01:37 +02004651 tpacpi_wwan_emulstate = (state == TPACPI_RFK_RADIO_ON);
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02004652 return 0;
4653 }
4654#endif
4655
Johannes Berg19d337d2009-06-02 13:01:37 +02004656 if (state == TPACPI_RFK_RADIO_ON)
Henrique de Moraes Holschuh08fedfc2010-02-25 22:22:07 -03004657 status = TP_ACPI_WANCARD_RADIOSSW
4658 | TP_ACPI_WANCARD_RESUMECTRL;
4659 else
4660 status = 0;
Johannes Berg19d337d2009-06-02 13:01:37 +02004661
Henrique de Moraes Holschuh07431ec2008-07-21 09:15:50 -03004662 if (!acpi_evalf(hkey_handle, NULL, "SWAN", "vd", status))
4663 return -EIO;
4664
4665 return 0;
4666}
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02004667
Henrique de Moraes Holschuhd3a6ade2007-04-27 22:00:17 -03004668/* sysfs wan enable ---------------------------------------------------- */
4669static ssize_t wan_enable_show(struct device *dev,
4670 struct device_attribute *attr,
4671 char *buf)
4672{
Johannes Berg19d337d2009-06-02 13:01:37 +02004673 return tpacpi_rfk_sysfs_enable_show(TPACPI_RFK_WWAN_SW_ID,
4674 attr, buf);
Henrique de Moraes Holschuhd3a6ade2007-04-27 22:00:17 -03004675}
4676
4677static ssize_t wan_enable_store(struct device *dev,
4678 struct device_attribute *attr,
4679 const char *buf, size_t count)
4680{
Johannes Berg19d337d2009-06-02 13:01:37 +02004681 return tpacpi_rfk_sysfs_enable_store(TPACPI_RFK_WWAN_SW_ID,
4682 attr, buf, count);
Henrique de Moraes Holschuhd3a6ade2007-04-27 22:00:17 -03004683}
4684
Bjørn Mork5fb73bc2015-05-19 19:45:03 +02004685static DEVICE_ATTR(wwan_enable, S_IWUSR | S_IRUGO,
4686 wan_enable_show, wan_enable_store);
Henrique de Moraes Holschuhd3a6ade2007-04-27 22:00:17 -03004687
4688/* --------------------------------------------------------------------- */
4689
4690static struct attribute *wan_attributes[] = {
Bjørn Mork5fb73bc2015-05-19 19:45:03 +02004691 &dev_attr_wwan_enable.attr,
Henrique de Moraes Holschuhd3a6ade2007-04-27 22:00:17 -03004692 NULL
4693};
4694
4695static const struct attribute_group wan_attr_group = {
Henrique de Moraes Holschuhd3a6ade2007-04-27 22:00:17 -03004696 .attrs = wan_attributes,
4697};
4698
Johannes Berg19d337d2009-06-02 13:01:37 +02004699static const struct tpacpi_rfk_ops wan_tprfk_ops = {
4700 .get_status = wan_get_status,
4701 .set_status = wan_set_status,
4702};
Henrique de Moraes Holschuh0e74dc22008-07-21 09:15:51 -03004703
Henrique de Moraes Holschuh90d9d3c2009-01-11 03:01:02 -02004704static void wan_shutdown(void)
4705{
4706 /* Order firmware to save current state to NVRAM */
4707 if (!acpi_evalf(NULL, NULL, "\\WGSV", "vd",
4708 TP_ACPI_WGSV_SAVE_STATE))
Joe Perches0978e012011-04-04 10:06:25 -07004709 pr_notice("failed to save WWAN state to NVRAM\n");
Henrique de Moraes Holschuhbee4cd9b2009-04-04 04:25:50 +00004710 else
4711 vdbg_printk(TPACPI_DBG_RFKILL,
4712 "WWAN state saved to NVRAM\n");
Henrique de Moraes Holschuh90d9d3c2009-01-11 03:01:02 -02004713}
4714
Henrique de Moraes Holschuh07431ec2008-07-21 09:15:50 -03004715static void wan_exit(void)
4716{
4717 sysfs_remove_group(&tpacpi_pdev->dev.kobj,
4718 &wan_attr_group);
Johannes Berg19d337d2009-06-02 13:01:37 +02004719
4720 tpacpi_destroy_rfkill(TPACPI_RFK_WWAN_SW_ID);
4721
4722 wan_shutdown();
Henrique de Moraes Holschuh07431ec2008-07-21 09:15:50 -03004723}
4724
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03004725static int __init wan_init(struct ibm_init_struct *iibm)
Jeremy Fitzhardinge42adb532006-06-01 17:41:00 -04004726{
Henrique de Moraes Holschuhd3a6ade2007-04-27 22:00:17 -03004727 int res;
Henrique de Moraes Holschuhd6fdd1e2007-04-21 11:08:40 -03004728 int status = 0;
4729
Henrique de Moraes Holschuhbee4cd9b2009-04-04 04:25:50 +00004730 vdbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_RFKILL,
4731 "initializing wan subdriver\n");
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03004732
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02004733 TPACPI_ACPIHANDLE_INIT(hkey);
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03004734
Henrique de Moraes Holschuhd8fd94d2007-04-21 11:08:36 -03004735 tp_features.wan = hkey_handle &&
Henrique de Moraes Holschuhd6fdd1e2007-04-21 11:08:40 -03004736 acpi_evalf(hkey_handle, &status, "GWAN", "qd");
Jeremy Fitzhardinge42adb532006-06-01 17:41:00 -04004737
Henrique de Moraes Holschuhbee4cd9b2009-04-04 04:25:50 +00004738 vdbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_RFKILL,
4739 "wan is %s, status 0x%02x\n",
Henrique de Moraes Holschuhd6fdd1e2007-04-21 11:08:40 -03004740 str_supported(tp_features.wan),
4741 status);
4742
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02004743#ifdef CONFIG_THINKPAD_ACPI_DEBUGFACILITIES
4744 if (dbg_wwanemul) {
4745 tp_features.wan = 1;
Joe Perches0978e012011-04-04 10:06:25 -07004746 pr_info("wwan switch emulation enabled\n");
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02004747 } else
4748#endif
Henrique de Moraes Holschuh3a872082008-07-21 09:15:49 -03004749 if (tp_features.wan &&
4750 !(status & TP_ACPI_WANCARD_HWPRESENT)) {
4751 /* no wan hardware present in system */
4752 tp_features.wan = 0;
Henrique de Moraes Holschuhbee4cd9b2009-04-04 04:25:50 +00004753 dbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_RFKILL,
Henrique de Moraes Holschuh3a872082008-07-21 09:15:49 -03004754 "wan hardware not installed\n");
4755 }
4756
Henrique de Moraes Holschuh0e74dc22008-07-21 09:15:51 -03004757 if (!tp_features.wan)
4758 return 1;
4759
Johannes Berg19d337d2009-06-02 13:01:37 +02004760 res = tpacpi_new_rfkill(TPACPI_RFK_WWAN_SW_ID,
4761 &wan_tprfk_ops,
4762 RFKILL_TYPE_WWAN,
4763 TPACPI_RFK_WWAN_SW_NAME,
4764 true);
Henrique de Moraes Holschuh0e74dc22008-07-21 09:15:51 -03004765 if (res)
4766 return res;
4767
Johannes Berg19d337d2009-06-02 13:01:37 +02004768 res = sysfs_create_group(&tpacpi_pdev->dev.kobj,
4769 &wan_attr_group);
4770
Henrique de Moraes Holschuh0e74dc22008-07-21 09:15:51 -03004771 if (res) {
Johannes Berg19d337d2009-06-02 13:01:37 +02004772 tpacpi_destroy_rfkill(TPACPI_RFK_WWAN_SW_ID);
Henrique de Moraes Holschuh0e74dc22008-07-21 09:15:51 -03004773 return res;
Henrique de Moraes Holschuhd6fdd1e2007-04-21 11:08:40 -03004774 }
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03004775
Henrique de Moraes Holschuh0e74dc22008-07-21 09:15:51 -03004776 return 0;
Jeremy Fitzhardinge42adb532006-06-01 17:41:00 -04004777}
4778
Henrique de Moraes Holschuhd3a6ade2007-04-27 22:00:17 -03004779/* procfs -------------------------------------------------------------- */
Alexey Dobriyan887965e2009-12-15 21:51:12 -02004780static int wan_read(struct seq_file *m)
Jeremy Fitzhardinge42adb532006-06-01 17:41:00 -04004781{
Alexey Dobriyan887965e2009-12-15 21:51:12 -02004782 return tpacpi_rfk_procfs_read(TPACPI_RFK_WWAN_SW_ID, m);
Jeremy Fitzhardinge42adb532006-06-01 17:41:00 -04004783}
4784
4785static int wan_write(char *buf)
4786{
Johannes Berg19d337d2009-06-02 13:01:37 +02004787 return tpacpi_rfk_procfs_write(TPACPI_RFK_WWAN_SW_ID, buf);
Jeremy Fitzhardinge42adb532006-06-01 17:41:00 -04004788}
4789
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03004790static struct ibm_struct wan_driver_data = {
4791 .name = "wan",
4792 .read = wan_read,
4793 .write = wan_write,
Henrique de Moraes Holschuhd3a6ade2007-04-27 22:00:17 -03004794 .exit = wan_exit,
Henrique de Moraes Holschuh90d9d3c2009-01-11 03:01:02 -02004795 .shutdown = wan_shutdown,
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03004796};
4797
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03004798/*************************************************************************
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -02004799 * UWB subdriver
4800 */
4801
4802enum {
4803 /* ACPI GUWB/SUWB bits */
4804 TP_ACPI_UWB_HWPRESENT = 0x01, /* UWB hw available */
4805 TP_ACPI_UWB_RADIOSSW = 0x02, /* UWB radio enabled */
4806};
4807
Henrique de Moraes Holschuhbee4cd9b2009-04-04 04:25:50 +00004808#define TPACPI_RFK_UWB_SW_NAME "tpacpi_uwb_sw"
4809
Johannes Berg19d337d2009-06-02 13:01:37 +02004810static int uwb_get_status(void)
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -02004811{
4812 int status;
4813
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -02004814#ifdef CONFIG_THINKPAD_ACPI_DEBUGFACILITIES
4815 if (dbg_uwbemul)
4816 return (tpacpi_uwb_emulstate) ?
Johannes Berg19d337d2009-06-02 13:01:37 +02004817 TPACPI_RFK_RADIO_ON : TPACPI_RFK_RADIO_OFF;
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -02004818#endif
4819
4820 if (!acpi_evalf(hkey_handle, &status, "GUWB", "d"))
4821 return -EIO;
4822
4823 return ((status & TP_ACPI_UWB_RADIOSSW) != 0) ?
Johannes Berg19d337d2009-06-02 13:01:37 +02004824 TPACPI_RFK_RADIO_ON : TPACPI_RFK_RADIO_OFF;
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -02004825}
4826
Johannes Berg19d337d2009-06-02 13:01:37 +02004827static int uwb_set_status(enum tpacpi_rfkill_state state)
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -02004828{
4829 int status;
4830
Henrique de Moraes Holschuhbee4cd9b2009-04-04 04:25:50 +00004831 vdbg_printk(TPACPI_DBG_RFKILL,
Johannes Berg19d337d2009-06-02 13:01:37 +02004832 "will attempt to %s UWB\n",
4833 (state == TPACPI_RFK_RADIO_ON) ? "enable" : "disable");
Henrique de Moraes Holschuhbee4cd9b2009-04-04 04:25:50 +00004834
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -02004835#ifdef CONFIG_THINKPAD_ACPI_DEBUGFACILITIES
4836 if (dbg_uwbemul) {
Johannes Berg19d337d2009-06-02 13:01:37 +02004837 tpacpi_uwb_emulstate = (state == TPACPI_RFK_RADIO_ON);
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -02004838 return 0;
4839 }
4840#endif
4841
Johannes Berg19d337d2009-06-02 13:01:37 +02004842 if (state == TPACPI_RFK_RADIO_ON)
4843 status = TP_ACPI_UWB_RADIOSSW;
4844 else
4845 status = 0;
4846
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -02004847 if (!acpi_evalf(hkey_handle, NULL, "SUWB", "vd", status))
4848 return -EIO;
4849
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -02004850 return 0;
4851}
4852
4853/* --------------------------------------------------------------------- */
4854
Johannes Berg19d337d2009-06-02 13:01:37 +02004855static const struct tpacpi_rfk_ops uwb_tprfk_ops = {
4856 .get_status = uwb_get_status,
4857 .set_status = uwb_set_status,
4858};
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -02004859
4860static void uwb_exit(void)
4861{
Johannes Berg19d337d2009-06-02 13:01:37 +02004862 tpacpi_destroy_rfkill(TPACPI_RFK_UWB_SW_ID);
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -02004863}
4864
4865static int __init uwb_init(struct ibm_init_struct *iibm)
4866{
4867 int res;
4868 int status = 0;
4869
Henrique de Moraes Holschuhbee4cd9b2009-04-04 04:25:50 +00004870 vdbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_RFKILL,
4871 "initializing uwb subdriver\n");
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -02004872
4873 TPACPI_ACPIHANDLE_INIT(hkey);
4874
4875 tp_features.uwb = hkey_handle &&
4876 acpi_evalf(hkey_handle, &status, "GUWB", "qd");
4877
Henrique de Moraes Holschuhbee4cd9b2009-04-04 04:25:50 +00004878 vdbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_RFKILL,
4879 "uwb is %s, status 0x%02x\n",
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -02004880 str_supported(tp_features.uwb),
4881 status);
4882
4883#ifdef CONFIG_THINKPAD_ACPI_DEBUGFACILITIES
4884 if (dbg_uwbemul) {
4885 tp_features.uwb = 1;
Joe Perches0978e012011-04-04 10:06:25 -07004886 pr_info("uwb switch emulation enabled\n");
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -02004887 } else
4888#endif
4889 if (tp_features.uwb &&
4890 !(status & TP_ACPI_UWB_HWPRESENT)) {
4891 /* no uwb hardware present in system */
4892 tp_features.uwb = 0;
4893 dbg_printk(TPACPI_DBG_INIT,
4894 "uwb hardware not installed\n");
4895 }
4896
4897 if (!tp_features.uwb)
4898 return 1;
4899
4900 res = tpacpi_new_rfkill(TPACPI_RFK_UWB_SW_ID,
Johannes Berg19d337d2009-06-02 13:01:37 +02004901 &uwb_tprfk_ops,
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -02004902 RFKILL_TYPE_UWB,
Henrique de Moraes Holschuhbee4cd9b2009-04-04 04:25:50 +00004903 TPACPI_RFK_UWB_SW_NAME,
Johannes Berg19d337d2009-06-02 13:01:37 +02004904 false);
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -02004905 return res;
4906}
4907
4908static struct ibm_struct uwb_driver_data = {
4909 .name = "uwb",
4910 .exit = uwb_exit,
4911 .flags.experimental = 1,
4912};
4913
4914/*************************************************************************
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03004915 * Video subdriver
4916 */
4917
Henrique de Moraes Holschuhd7c1d172008-02-16 02:17:54 -02004918#ifdef CONFIG_THINKPAD_ACPI_VIDEO
4919
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02004920enum video_access_mode {
4921 TPACPI_VIDEO_NONE = 0,
4922 TPACPI_VIDEO_570, /* 570 */
4923 TPACPI_VIDEO_770, /* 600e/x, 770e, 770x */
4924 TPACPI_VIDEO_NEW, /* all others */
4925};
4926
4927enum { /* video status flags, based on VIDEO_570 */
4928 TP_ACPI_VIDEO_S_LCD = 0x01, /* LCD output enabled */
4929 TP_ACPI_VIDEO_S_CRT = 0x02, /* CRT output enabled */
4930 TP_ACPI_VIDEO_S_DVI = 0x08, /* DVI output enabled */
4931};
4932
4933enum { /* TPACPI_VIDEO_570 constants */
4934 TP_ACPI_VIDEO_570_PHSCMD = 0x87, /* unknown magic constant :( */
4935 TP_ACPI_VIDEO_570_PHSMASK = 0x03, /* PHS bits that map to
4936 * video_status_flags */
4937 TP_ACPI_VIDEO_570_PHS2CMD = 0x8b, /* unknown magic constant :( */
4938 TP_ACPI_VIDEO_570_PHS2SET = 0x80, /* unknown magic constant :( */
4939};
4940
Henrique de Moraes Holschuh9a8e1732006-11-25 16:36:00 -02004941static enum video_access_mode video_supported;
4942static int video_orig_autosw;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004943
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02004944static int video_autosw_get(void);
4945static int video_autosw_set(int enable);
4946
Joe Perches112a6ee2011-04-04 10:06:24 -07004947TPACPI_HANDLE(vid, root,
4948 "\\_SB.PCI.AGP.VGA", /* 570 */
4949 "\\_SB.PCI0.AGP0.VID0", /* 600e/x, 770x */
4950 "\\_SB.PCI0.VID0", /* 770e */
4951 "\\_SB.PCI0.VID", /* A21e, G4x, R50e, X30, X40 */
4952 "\\_SB.PCI0.AGP.VGA", /* X100e and a few others */
4953 "\\_SB.PCI0.AGP.VID", /* all others */
4954 ); /* R30, R31 */
4955
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02004956TPACPI_HANDLE(vid2, root, "\\_SB.PCI0.AGPB.VID"); /* G41 */
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03004957
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03004958static int __init video_init(struct ibm_init_struct *iibm)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004959{
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004960 int ivga;
4961
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03004962 vdbg_printk(TPACPI_DBG_INIT, "initializing video subdriver\n");
4963
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02004964 TPACPI_ACPIHANDLE_INIT(vid);
Henrique de Moraes Holschuhe28393c2010-05-16 19:45:23 -03004965 if (tpacpi_is_ibm())
4966 TPACPI_ACPIHANDLE_INIT(vid2);
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03004967
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004968 if (vid2_handle && acpi_evalf(NULL, &ivga, "\\IVGA", "d") && ivga)
4969 /* G41, assume IVGA doesn't change */
4970 vid_handle = vid2_handle;
4971
4972 if (!vid_handle)
4973 /* video switching not supported on R30, R31 */
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03004974 video_supported = TPACPI_VIDEO_NONE;
Henrique de Moraes Holschuhe28393c2010-05-16 19:45:23 -03004975 else if (tpacpi_is_ibm() &&
4976 acpi_evalf(vid_handle, &video_orig_autosw, "SWIT", "qd"))
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004977 /* 570 */
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03004978 video_supported = TPACPI_VIDEO_570;
Henrique de Moraes Holschuhe28393c2010-05-16 19:45:23 -03004979 else if (tpacpi_is_ibm() &&
4980 acpi_evalf(vid_handle, &video_orig_autosw, "^VADL", "qd"))
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004981 /* 600e/x, 770e, 770x */
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03004982 video_supported = TPACPI_VIDEO_770;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004983 else
4984 /* all others */
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03004985 video_supported = TPACPI_VIDEO_NEW;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004986
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03004987 vdbg_printk(TPACPI_DBG_INIT, "video is %s, mode %d\n",
4988 str_supported(video_supported != TPACPI_VIDEO_NONE),
4989 video_supported);
4990
Jan van den Berg72a979f2014-09-17 00:01:08 +02004991 return (video_supported != TPACPI_VIDEO_NONE) ? 0 : 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004992}
4993
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03004994static void video_exit(void)
4995{
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004996 dbg_printk(TPACPI_DBG_EXIT,
4997 "restoring original video autoswitch mode\n");
4998 if (video_autosw_set(video_orig_autosw))
Andy Shevchenko5cac62a2017-05-09 17:17:20 +03004999 pr_err("error while trying to restore original video autoswitch mode\n");
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03005000}
5001
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03005002static int video_outputsw_get(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005003{
5004 int status = 0;
5005 int i;
5006
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03005007 switch (video_supported) {
5008 case TPACPI_VIDEO_570:
5009 if (!acpi_evalf(NULL, &i, "\\_SB.PHS", "dd",
5010 TP_ACPI_VIDEO_570_PHSCMD))
5011 return -EIO;
5012 status = i & TP_ACPI_VIDEO_570_PHSMASK;
5013 break;
5014 case TPACPI_VIDEO_770:
5015 if (!acpi_evalf(NULL, &i, "\\VCDL", "d"))
5016 return -EIO;
5017 if (i)
5018 status |= TP_ACPI_VIDEO_S_LCD;
5019 if (!acpi_evalf(NULL, &i, "\\VCDC", "d"))
5020 return -EIO;
5021 if (i)
5022 status |= TP_ACPI_VIDEO_S_CRT;
5023 break;
5024 case TPACPI_VIDEO_NEW:
5025 if (!acpi_evalf(NULL, NULL, "\\VUPS", "vd", 1) ||
5026 !acpi_evalf(NULL, &i, "\\VCDC", "d"))
5027 return -EIO;
5028 if (i)
5029 status |= TP_ACPI_VIDEO_S_CRT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005030
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03005031 if (!acpi_evalf(NULL, NULL, "\\VUPS", "vd", 0) ||
5032 !acpi_evalf(NULL, &i, "\\VCDL", "d"))
5033 return -EIO;
5034 if (i)
5035 status |= TP_ACPI_VIDEO_S_LCD;
5036 if (!acpi_evalf(NULL, &i, "\\VCDD", "d"))
5037 return -EIO;
5038 if (i)
5039 status |= TP_ACPI_VIDEO_S_DVI;
5040 break;
5041 default:
5042 return -ENOSYS;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005043 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005044
5045 return status;
5046}
5047
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03005048static int video_outputsw_set(int status)
5049{
5050 int autosw;
5051 int res = 0;
5052
5053 switch (video_supported) {
5054 case TPACPI_VIDEO_570:
5055 res = acpi_evalf(NULL, NULL,
5056 "\\_SB.PHS2", "vdd",
5057 TP_ACPI_VIDEO_570_PHS2CMD,
5058 status | TP_ACPI_VIDEO_570_PHS2SET);
5059 break;
5060 case TPACPI_VIDEO_770:
5061 autosw = video_autosw_get();
5062 if (autosw < 0)
5063 return autosw;
5064
5065 res = video_autosw_set(1);
5066 if (res)
5067 return res;
5068 res = acpi_evalf(vid_handle, NULL,
5069 "ASWT", "vdd", status * 0x100, 0);
5070 if (!autosw && video_autosw_set(autosw)) {
Joe Perches0978e012011-04-04 10:06:25 -07005071 pr_err("video auto-switch left enabled due to error\n");
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03005072 return -EIO;
5073 }
5074 break;
5075 case TPACPI_VIDEO_NEW:
5076 res = acpi_evalf(NULL, NULL, "\\VUPS", "vd", 0x80) &&
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02005077 acpi_evalf(NULL, NULL, "\\VSDS", "vdd", status, 1);
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03005078 break;
5079 default:
5080 return -ENOSYS;
5081 }
5082
Jan van den Berg72a979f2014-09-17 00:01:08 +02005083 return (res) ? 0 : -EIO;
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03005084}
5085
5086static int video_autosw_get(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005087{
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005088 int autosw = 0;
5089
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03005090 switch (video_supported) {
5091 case TPACPI_VIDEO_570:
5092 if (!acpi_evalf(vid_handle, &autosw, "SWIT", "d"))
5093 return -EIO;
5094 break;
5095 case TPACPI_VIDEO_770:
5096 case TPACPI_VIDEO_NEW:
5097 if (!acpi_evalf(vid_handle, &autosw, "^VDEE", "d"))
5098 return -EIO;
5099 break;
5100 default:
5101 return -ENOSYS;
5102 }
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005103
5104 return autosw & 1;
5105}
5106
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03005107static int video_autosw_set(int enable)
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005108{
Jan van den Berg72a979f2014-09-17 00:01:08 +02005109 if (!acpi_evalf(vid_handle, NULL, "_DOS", "vd", (enable) ? 1 : 0))
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005110 return -EIO;
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03005111 return 0;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005112}
5113
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03005114static int video_outputsw_cycle(void)
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005115{
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03005116 int autosw = video_autosw_get();
5117 int res;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005118
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03005119 if (autosw < 0)
5120 return autosw;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005121
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03005122 switch (video_supported) {
5123 case TPACPI_VIDEO_570:
5124 res = video_autosw_set(1);
5125 if (res)
5126 return res;
5127 res = acpi_evalf(ec_handle, NULL, "_Q16", "v");
5128 break;
5129 case TPACPI_VIDEO_770:
5130 case TPACPI_VIDEO_NEW:
5131 res = video_autosw_set(1);
5132 if (res)
5133 return res;
5134 res = acpi_evalf(vid_handle, NULL, "VSWT", "v");
5135 break;
5136 default:
5137 return -ENOSYS;
5138 }
5139 if (!autosw && video_autosw_set(autosw)) {
Joe Perches0978e012011-04-04 10:06:25 -07005140 pr_err("video auto-switch left enabled due to error\n");
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03005141 return -EIO;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005142 }
5143
Jan van den Berg72a979f2014-09-17 00:01:08 +02005144 return (res) ? 0 : -EIO;
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03005145}
5146
5147static int video_expand_toggle(void)
5148{
5149 switch (video_supported) {
5150 case TPACPI_VIDEO_570:
Jan van den Berg72a979f2014-09-17 00:01:08 +02005151 return acpi_evalf(ec_handle, NULL, "_Q17", "v") ?
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03005152 0 : -EIO;
5153 case TPACPI_VIDEO_770:
Jan van den Berg72a979f2014-09-17 00:01:08 +02005154 return acpi_evalf(vid_handle, NULL, "VEXP", "v") ?
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03005155 0 : -EIO;
5156 case TPACPI_VIDEO_NEW:
Jan van den Berg72a979f2014-09-17 00:01:08 +02005157 return acpi_evalf(NULL, NULL, "\\VEXP", "v") ?
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03005158 0 : -EIO;
5159 default:
5160 return -ENOSYS;
5161 }
5162 /* not reached */
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005163}
5164
Alexey Dobriyan887965e2009-12-15 21:51:12 -02005165static int video_read(struct seq_file *m)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03005166{
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03005167 int status, autosw;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03005168
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03005169 if (video_supported == TPACPI_VIDEO_NONE) {
Alexey Dobriyan887965e2009-12-15 21:51:12 -02005170 seq_printf(m, "status:\t\tnot supported\n");
5171 return 0;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03005172 }
5173
Henrique de Moraes Holschuhb525c062010-02-25 22:22:22 -03005174 /* Even reads can crash X.org, so... */
5175 if (!capable(CAP_SYS_ADMIN))
5176 return -EPERM;
5177
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03005178 status = video_outputsw_get();
5179 if (status < 0)
5180 return status;
5181
5182 autosw = video_autosw_get();
5183 if (autosw < 0)
5184 return autosw;
5185
Alexey Dobriyan887965e2009-12-15 21:51:12 -02005186 seq_printf(m, "status:\t\tsupported\n");
5187 seq_printf(m, "lcd:\t\t%s\n", enabled(status, 0));
5188 seq_printf(m, "crt:\t\t%s\n", enabled(status, 1));
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03005189 if (video_supported == TPACPI_VIDEO_NEW)
Alexey Dobriyan887965e2009-12-15 21:51:12 -02005190 seq_printf(m, "dvi:\t\t%s\n", enabled(status, 3));
5191 seq_printf(m, "auto:\t\t%s\n", enabled(autosw, 0));
5192 seq_printf(m, "commands:\tlcd_enable, lcd_disable\n");
5193 seq_printf(m, "commands:\tcrt_enable, crt_disable\n");
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03005194 if (video_supported == TPACPI_VIDEO_NEW)
Alexey Dobriyan887965e2009-12-15 21:51:12 -02005195 seq_printf(m, "commands:\tdvi_enable, dvi_disable\n");
5196 seq_printf(m, "commands:\tauto_enable, auto_disable\n");
5197 seq_printf(m, "commands:\tvideo_switch, expand_toggle\n");
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03005198
Alexey Dobriyan887965e2009-12-15 21:51:12 -02005199 return 0;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03005200}
5201
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005202static int video_write(char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005203{
5204 char *cmd;
5205 int enable, disable, status;
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03005206 int res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005207
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03005208 if (video_supported == TPACPI_VIDEO_NONE)
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005209 return -ENODEV;
5210
Henrique de Moraes Holschuhb525c062010-02-25 22:22:22 -03005211 /* Even reads can crash X.org, let alone writes... */
5212 if (!capable(CAP_SYS_ADMIN))
5213 return -EPERM;
5214
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03005215 enable = 0;
5216 disable = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005217
Andy Shevchenkobe51bd42020-05-11 15:56:24 +03005218 while ((cmd = strsep(&buf, ","))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005219 if (strlencmp(cmd, "lcd_enable") == 0) {
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03005220 enable |= TP_ACPI_VIDEO_S_LCD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005221 } else if (strlencmp(cmd, "lcd_disable") == 0) {
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03005222 disable |= TP_ACPI_VIDEO_S_LCD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005223 } else if (strlencmp(cmd, "crt_enable") == 0) {
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03005224 enable |= TP_ACPI_VIDEO_S_CRT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005225 } else if (strlencmp(cmd, "crt_disable") == 0) {
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03005226 disable |= TP_ACPI_VIDEO_S_CRT;
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03005227 } else if (video_supported == TPACPI_VIDEO_NEW &&
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005228 strlencmp(cmd, "dvi_enable") == 0) {
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03005229 enable |= TP_ACPI_VIDEO_S_DVI;
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03005230 } else if (video_supported == TPACPI_VIDEO_NEW &&
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005231 strlencmp(cmd, "dvi_disable") == 0) {
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03005232 disable |= TP_ACPI_VIDEO_S_DVI;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005233 } else if (strlencmp(cmd, "auto_enable") == 0) {
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03005234 res = video_autosw_set(1);
5235 if (res)
5236 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005237 } else if (strlencmp(cmd, "auto_disable") == 0) {
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03005238 res = video_autosw_set(0);
5239 if (res)
5240 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005241 } else if (strlencmp(cmd, "video_switch") == 0) {
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03005242 res = video_outputsw_cycle();
5243 if (res)
5244 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005245 } else if (strlencmp(cmd, "expand_toggle") == 0) {
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03005246 res = video_expand_toggle();
5247 if (res)
5248 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005249 } else
5250 return -EINVAL;
5251 }
5252
5253 if (enable || disable) {
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03005254 status = video_outputsw_get();
5255 if (status < 0)
5256 return status;
5257 res = video_outputsw_set((status & ~disable) | enable);
5258 if (res)
5259 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005260 }
5261
5262 return 0;
5263}
5264
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03005265static struct ibm_struct video_driver_data = {
5266 .name = "video",
5267 .read = video_read,
5268 .write = video_write,
5269 .exit = video_exit,
5270};
5271
Henrique de Moraes Holschuhd7c1d172008-02-16 02:17:54 -02005272#endif /* CONFIG_THINKPAD_ACPI_VIDEO */
5273
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03005274/*************************************************************************
Pali Rohárbb28f3d52015-12-30 23:27:41 +01005275 * Keyboard backlight subdriver
5276 */
5277
Hans de Goedec685e202017-02-09 16:44:13 +01005278static enum led_brightness kbdlight_brightness;
5279static DEFINE_MUTEX(kbdlight_mutex);
5280
Pali Rohárbb28f3d52015-12-30 23:27:41 +01005281static int kbdlight_set_level(int level)
5282{
Hans de Goedec685e202017-02-09 16:44:13 +01005283 int ret = 0;
5284
Pali Rohárbb28f3d52015-12-30 23:27:41 +01005285 if (!hkey_handle)
5286 return -ENXIO;
5287
Hans de Goedec685e202017-02-09 16:44:13 +01005288 mutex_lock(&kbdlight_mutex);
Pali Rohárbb28f3d52015-12-30 23:27:41 +01005289
Hans de Goedec685e202017-02-09 16:44:13 +01005290 if (!acpi_evalf(hkey_handle, NULL, "MLCS", "dd", level))
5291 ret = -EIO;
5292 else
5293 kbdlight_brightness = level;
5294
5295 mutex_unlock(&kbdlight_mutex);
5296
5297 return ret;
Pali Rohárbb28f3d52015-12-30 23:27:41 +01005298}
5299
5300static int kbdlight_get_level(void)
5301{
5302 int status = 0;
5303
5304 if (!hkey_handle)
5305 return -ENXIO;
5306
5307 if (!acpi_evalf(hkey_handle, &status, "MLCG", "dd", 0))
5308 return -EIO;
5309
5310 if (status < 0)
5311 return status;
5312
5313 return status & 0x3;
5314}
5315
5316static bool kbdlight_is_supported(void)
5317{
5318 int status = 0;
5319
5320 if (!hkey_handle)
5321 return false;
5322
5323 if (!acpi_has_method(hkey_handle, "MLCG")) {
5324 vdbg_printk(TPACPI_DBG_INIT, "kbdlight MLCG is unavailable\n");
5325 return false;
5326 }
5327
5328 if (!acpi_evalf(hkey_handle, &status, "MLCG", "qdd", 0)) {
5329 vdbg_printk(TPACPI_DBG_INIT, "kbdlight MLCG failed\n");
5330 return false;
5331 }
5332
5333 if (status < 0) {
5334 vdbg_printk(TPACPI_DBG_INIT, "kbdlight MLCG err: %d\n", status);
5335 return false;
5336 }
5337
5338 vdbg_printk(TPACPI_DBG_INIT, "kbdlight MLCG returned 0x%x\n", status);
5339 /*
5340 * Guessed test for keyboard backlight:
5341 *
5342 * Machines with backlight keyboard return:
5343 * b010100000010000000XX - ThinkPad X1 Carbon 3rd
5344 * b110100010010000000XX - ThinkPad x230
5345 * b010100000010000000XX - ThinkPad x240
5346 * b010100000010000000XX - ThinkPad W541
5347 * (XX is current backlight level)
5348 *
5349 * Machines without backlight keyboard return:
5350 * b10100001000000000000 - ThinkPad x230
5351 * b10110001000000000000 - ThinkPad E430
5352 * b00000000000000000000 - ThinkPad E450
5353 *
5354 * Candidate BITs for detection test (XOR):
5355 * b01000000001000000000
5356 * ^
5357 */
5358 return status & BIT(9);
5359}
5360
Hans de Goede86ec0c22017-02-09 16:44:12 +01005361static int kbdlight_sysfs_set(struct led_classdev *led_cdev,
Pali Rohárbb28f3d52015-12-30 23:27:41 +01005362 enum led_brightness brightness)
5363{
Hans de Goede86ec0c22017-02-09 16:44:12 +01005364 return kbdlight_set_level(brightness);
Pali Rohárbb28f3d52015-12-30 23:27:41 +01005365}
5366
5367static enum led_brightness kbdlight_sysfs_get(struct led_classdev *led_cdev)
5368{
5369 int level;
5370
5371 level = kbdlight_get_level();
5372 if (level < 0)
5373 return 0;
5374
5375 return level;
5376}
5377
5378static struct tpacpi_led_classdev tpacpi_led_kbdlight = {
5379 .led_classdev = {
5380 .name = "tpacpi::kbd_backlight",
5381 .max_brightness = 2,
Hans de Goedec685e202017-02-09 16:44:13 +01005382 .flags = LED_BRIGHT_HW_CHANGED,
Hans de Goede86ec0c22017-02-09 16:44:12 +01005383 .brightness_set_blocking = &kbdlight_sysfs_set,
Pali Rohárbb28f3d52015-12-30 23:27:41 +01005384 .brightness_get = &kbdlight_sysfs_get,
Pali Rohárbb28f3d52015-12-30 23:27:41 +01005385 }
5386};
5387
5388static int __init kbdlight_init(struct ibm_init_struct *iibm)
5389{
5390 int rc;
5391
5392 vdbg_printk(TPACPI_DBG_INIT, "initializing kbdlight subdriver\n");
5393
5394 TPACPI_ACPIHANDLE_INIT(hkey);
Pali Rohárbb28f3d52015-12-30 23:27:41 +01005395
5396 if (!kbdlight_is_supported()) {
5397 tp_features.kbdlight = 0;
5398 vdbg_printk(TPACPI_DBG_INIT, "kbdlight is unsupported\n");
5399 return 1;
5400 }
5401
Hans de Goedec685e202017-02-09 16:44:13 +01005402 kbdlight_brightness = kbdlight_sysfs_get(NULL);
Pali Rohárbb28f3d52015-12-30 23:27:41 +01005403 tp_features.kbdlight = 1;
5404
5405 rc = led_classdev_register(&tpacpi_pdev->dev,
5406 &tpacpi_led_kbdlight.led_classdev);
5407 if (rc < 0) {
5408 tp_features.kbdlight = 0;
5409 return rc;
5410 }
5411
Hans de Goedec685e202017-02-09 16:44:13 +01005412 tpacpi_hotkey_driver_mask_set(hotkey_driver_mask |
5413 TP_ACPI_HKEY_KBD_LIGHT_MASK);
Pali Rohárbb28f3d52015-12-30 23:27:41 +01005414 return 0;
5415}
5416
5417static void kbdlight_exit(void)
5418{
Andy Shevchenko41f80042020-05-07 19:37:23 +03005419 led_classdev_unregister(&tpacpi_led_kbdlight.led_classdev);
Pali Rohárbb28f3d52015-12-30 23:27:41 +01005420}
5421
Marco Trevisan (Treviño)afcedeb2016-05-24 00:39:51 +02005422static int kbdlight_set_level_and_update(int level)
5423{
5424 int ret;
5425 struct led_classdev *led_cdev;
5426
5427 ret = kbdlight_set_level(level);
5428 led_cdev = &tpacpi_led_kbdlight.led_classdev;
5429
5430 if (ret == 0 && !(led_cdev->flags & LED_SUSPENDED))
5431 led_cdev->brightness = level;
5432
5433 return ret;
5434}
5435
Pali Rohárbb28f3d52015-12-30 23:27:41 +01005436static int kbdlight_read(struct seq_file *m)
5437{
5438 int level;
5439
5440 if (!tp_features.kbdlight) {
5441 seq_printf(m, "status:\t\tnot supported\n");
5442 } else {
5443 level = kbdlight_get_level();
5444 if (level < 0)
5445 seq_printf(m, "status:\t\terror %d\n", level);
5446 else
5447 seq_printf(m, "status:\t\t%d\n", level);
5448 seq_printf(m, "commands:\t0, 1, 2\n");
5449 }
5450
5451 return 0;
5452}
5453
5454static int kbdlight_write(char *buf)
5455{
5456 char *cmd;
5457 int level = -1;
5458
5459 if (!tp_features.kbdlight)
5460 return -ENODEV;
5461
Andy Shevchenkobe51bd42020-05-11 15:56:24 +03005462 while ((cmd = strsep(&buf, ","))) {
Pali Rohárbb28f3d52015-12-30 23:27:41 +01005463 if (strlencmp(cmd, "0") == 0)
5464 level = 0;
5465 else if (strlencmp(cmd, "1") == 0)
5466 level = 1;
5467 else if (strlencmp(cmd, "2") == 0)
5468 level = 2;
5469 else
5470 return -EINVAL;
5471 }
5472
5473 if (level == -1)
5474 return -EINVAL;
5475
Marco Trevisan (Treviño)afcedeb2016-05-24 00:39:51 +02005476 return kbdlight_set_level_and_update(level);
5477}
5478
5479static void kbdlight_suspend(void)
5480{
5481 struct led_classdev *led_cdev;
5482
5483 if (!tp_features.kbdlight)
5484 return;
5485
5486 led_cdev = &tpacpi_led_kbdlight.led_classdev;
5487 led_update_brightness(led_cdev);
5488 led_classdev_suspend(led_cdev);
5489}
5490
5491static void kbdlight_resume(void)
5492{
5493 if (!tp_features.kbdlight)
5494 return;
5495
5496 led_classdev_resume(&tpacpi_led_kbdlight.led_classdev);
Pali Rohárbb28f3d52015-12-30 23:27:41 +01005497}
5498
5499static struct ibm_struct kbdlight_driver_data = {
5500 .name = "kbdlight",
5501 .read = kbdlight_read,
5502 .write = kbdlight_write,
Marco Trevisan (Treviño)afcedeb2016-05-24 00:39:51 +02005503 .suspend = kbdlight_suspend,
5504 .resume = kbdlight_resume,
Pali Rohárbb28f3d52015-12-30 23:27:41 +01005505 .exit = kbdlight_exit,
5506};
5507
5508/*************************************************************************
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03005509 * Light (thinklight) subdriver
5510 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005511
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02005512TPACPI_HANDLE(lght, root, "\\LGHT"); /* A21e, A2xm/p, T20-22, X20-21 */
5513TPACPI_HANDLE(ledb, ec, "LEDB"); /* G4x */
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03005514
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03005515static int light_get_status(void)
5516{
5517 int status = 0;
5518
5519 if (tp_features.light_status) {
5520 if (!acpi_evalf(ec_handle, &status, "KBLT", "d"))
5521 return -EIO;
5522 return (!!status);
5523 }
5524
5525 return -ENXIO;
5526}
5527
5528static int light_set_status(int status)
5529{
5530 int rc;
5531
5532 if (tp_features.light) {
5533 if (cmos_handle) {
5534 rc = acpi_evalf(cmos_handle, NULL, NULL, "vd",
Jan van den Berg72a979f2014-09-17 00:01:08 +02005535 (status) ?
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03005536 TP_CMOS_THINKLIGHT_ON :
5537 TP_CMOS_THINKLIGHT_OFF);
5538 } else {
5539 rc = acpi_evalf(lght_handle, NULL, NULL, "vd",
Jan van den Berg72a979f2014-09-17 00:01:08 +02005540 (status) ? 1 : 0);
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03005541 }
Jan van den Berg72a979f2014-09-17 00:01:08 +02005542 return (rc) ? 0 : -EIO;
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03005543 }
5544
5545 return -ENXIO;
5546}
5547
Hans de Goede86ec0c22017-02-09 16:44:12 +01005548static int light_sysfs_set(struct led_classdev *led_cdev,
Henrique de Moraes Holschuhe3065012008-04-26 01:02:24 -03005549 enum led_brightness brightness)
5550{
Hans de Goede86ec0c22017-02-09 16:44:12 +01005551 return light_set_status((brightness != LED_OFF) ?
5552 TPACPI_LED_ON : TPACPI_LED_OFF);
Henrique de Moraes Holschuhe3065012008-04-26 01:02:24 -03005553}
5554
5555static enum led_brightness light_sysfs_get(struct led_classdev *led_cdev)
5556{
Jan van den Berg72a979f2014-09-17 00:01:08 +02005557 return (light_get_status() == 1) ? LED_FULL : LED_OFF;
Henrique de Moraes Holschuhe3065012008-04-26 01:02:24 -03005558}
5559
5560static struct tpacpi_led_classdev tpacpi_led_thinklight = {
5561 .led_classdev = {
5562 .name = "tpacpi::thinklight",
Hans de Goede86ec0c22017-02-09 16:44:12 +01005563 .brightness_set_blocking = &light_sysfs_set,
Henrique de Moraes Holschuhe3065012008-04-26 01:02:24 -03005564 .brightness_get = &light_sysfs_get,
5565 }
5566};
5567
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03005568static int __init light_init(struct ibm_init_struct *iibm)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005569{
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03005570 int rc;
Henrique de Moraes Holschuhe3065012008-04-26 01:02:24 -03005571
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03005572 vdbg_printk(TPACPI_DBG_INIT, "initializing light subdriver\n");
5573
Henrique de Moraes Holschuhe28393c2010-05-16 19:45:23 -03005574 if (tpacpi_is_ibm()) {
5575 TPACPI_ACPIHANDLE_INIT(ledb);
5576 TPACPI_ACPIHANDLE_INIT(lght);
5577 }
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02005578 TPACPI_ACPIHANDLE_INIT(cmos);
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03005579
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005580 /* light not supported on 570, 600e/x, 770e, 770x, G4x, R30, R31 */
Henrique de Moraes Holschuhd8fd94d2007-04-21 11:08:36 -03005581 tp_features.light = (cmos_handle || lght_handle) && !ledb_handle;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005582
Henrique de Moraes Holschuhd8fd94d2007-04-21 11:08:36 -03005583 if (tp_features.light)
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005584 /* light status not supported on
5585 570, 600e/x, 770e, 770x, G4x, R30, R31, R32, X20 */
Henrique de Moraes Holschuhd8fd94d2007-04-21 11:08:36 -03005586 tp_features.light_status =
5587 acpi_evalf(ec_handle, NULL, "KBLT", "qv");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005588
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03005589 vdbg_printk(TPACPI_DBG_INIT, "light is %s, light status is %s\n",
5590 str_supported(tp_features.light),
5591 str_supported(tp_features.light_status));
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03005592
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03005593 if (!tp_features.light)
5594 return 1;
5595
5596 rc = led_classdev_register(&tpacpi_pdev->dev,
5597 &tpacpi_led_thinklight.led_classdev);
Henrique de Moraes Holschuhe3065012008-04-26 01:02:24 -03005598
5599 if (rc < 0) {
5600 tp_features.light = 0;
5601 tp_features.light_status = 0;
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03005602 } else {
5603 rc = 0;
Henrique de Moraes Holschuhe3065012008-04-26 01:02:24 -03005604 }
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03005605
Henrique de Moraes Holschuhe3065012008-04-26 01:02:24 -03005606 return rc;
5607}
5608
5609static void light_exit(void)
5610{
5611 led_classdev_unregister(&tpacpi_led_thinklight.led_classdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005612}
5613
Alexey Dobriyan887965e2009-12-15 21:51:12 -02005614static int light_read(struct seq_file *m)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005615{
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03005616 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005617
Henrique de Moraes Holschuhd8fd94d2007-04-21 11:08:36 -03005618 if (!tp_features.light) {
Alexey Dobriyan887965e2009-12-15 21:51:12 -02005619 seq_printf(m, "status:\t\tnot supported\n");
Henrique de Moraes Holschuhd8fd94d2007-04-21 11:08:36 -03005620 } else if (!tp_features.light_status) {
Alexey Dobriyan887965e2009-12-15 21:51:12 -02005621 seq_printf(m, "status:\t\tunknown\n");
5622 seq_printf(m, "commands:\ton, off\n");
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005623 } else {
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03005624 status = light_get_status();
5625 if (status < 0)
5626 return status;
Alexey Dobriyan887965e2009-12-15 21:51:12 -02005627 seq_printf(m, "status:\t\t%s\n", onoff(status, 0));
5628 seq_printf(m, "commands:\ton, off\n");
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005629 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005630
Alexey Dobriyan887965e2009-12-15 21:51:12 -02005631 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005632}
5633
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005634static int light_write(char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005635{
Linus Torvalds1da177e2005-04-16 15:20:36 -07005636 char *cmd;
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03005637 int newstatus = 0;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005638
Henrique de Moraes Holschuhd8fd94d2007-04-21 11:08:36 -03005639 if (!tp_features.light)
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005640 return -ENODEV;
5641
Andy Shevchenkobe51bd42020-05-11 15:56:24 +03005642 while ((cmd = strsep(&buf, ","))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005643 if (strlencmp(cmd, "on") == 0) {
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03005644 newstatus = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005645 } else if (strlencmp(cmd, "off") == 0) {
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03005646 newstatus = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005647 } else
5648 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005649 }
5650
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03005651 return light_set_status(newstatus);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005652}
5653
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03005654static struct ibm_struct light_driver_data = {
5655 .name = "light",
5656 .read = light_read,
5657 .write = light_write,
Henrique de Moraes Holschuhe3065012008-04-26 01:02:24 -03005658 .exit = light_exit,
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03005659};
5660
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03005661/*************************************************************************
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03005662 * CMOS subdriver
5663 */
5664
Henrique de Moraes Holschuhb6160042007-04-24 11:48:19 -03005665/* sysfs cmos_command -------------------------------------------------- */
5666static ssize_t cmos_command_store(struct device *dev,
5667 struct device_attribute *attr,
5668 const char *buf, size_t count)
5669{
5670 unsigned long cmos_cmd;
5671 int res;
5672
5673 if (parse_strtoul(buf, 21, &cmos_cmd))
5674 return -EINVAL;
5675
5676 res = issue_thinkpad_cmos_command(cmos_cmd);
Jan van den Berg72a979f2014-09-17 00:01:08 +02005677 return (res) ? res : count;
Henrique de Moraes Holschuhb6160042007-04-24 11:48:19 -03005678}
5679
Bastien Nocerab4dd04ac2015-03-02 18:40:50 +01005680static DEVICE_ATTR_WO(cmos_command);
Henrique de Moraes Holschuhb6160042007-04-24 11:48:19 -03005681
5682/* --------------------------------------------------------------------- */
5683
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03005684static int __init cmos_init(struct ibm_init_struct *iibm)
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03005685{
Henrique de Moraes Holschuhb6160042007-04-24 11:48:19 -03005686 int res;
5687
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03005688 vdbg_printk(TPACPI_DBG_INIT,
5689 "initializing cmos commands subdriver\n");
5690
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02005691 TPACPI_ACPIHANDLE_INIT(cmos);
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03005692
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03005693 vdbg_printk(TPACPI_DBG_INIT, "cmos commands are %s\n",
5694 str_supported(cmos_handle != NULL));
Henrique de Moraes Holschuhb6160042007-04-24 11:48:19 -03005695
5696 res = device_create_file(&tpacpi_pdev->dev, &dev_attr_cmos_command);
5697 if (res)
5698 return res;
5699
Jan van den Berg72a979f2014-09-17 00:01:08 +02005700 return (cmos_handle) ? 0 : 1;
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03005701}
5702
Henrique de Moraes Holschuhb6160042007-04-24 11:48:19 -03005703static void cmos_exit(void)
5704{
5705 device_remove_file(&tpacpi_pdev->dev, &dev_attr_cmos_command);
5706}
5707
Alexey Dobriyan887965e2009-12-15 21:51:12 -02005708static int cmos_read(struct seq_file *m)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005709{
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005710 /* cmos not supported on 570, 600e/x, 770e, 770x, A21e, A2xm/p,
5711 R30, R31, T20-22, X20-21 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005712 if (!cmos_handle)
Alexey Dobriyan887965e2009-12-15 21:51:12 -02005713 seq_printf(m, "status:\t\tnot supported\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005714 else {
Alexey Dobriyan887965e2009-12-15 21:51:12 -02005715 seq_printf(m, "status:\t\tsupported\n");
5716 seq_printf(m, "commands:\t<cmd> (<cmd> is 0-21)\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005717 }
5718
Alexey Dobriyan887965e2009-12-15 21:51:12 -02005719 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005720}
5721
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005722static int cmos_write(char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005723{
5724 char *cmd;
Henrique de Moraes Holschuhc9bea992007-04-21 11:08:42 -03005725 int cmos_cmd, res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005726
Andy Shevchenkobe51bd42020-05-11 15:56:24 +03005727 while ((cmd = strsep(&buf, ","))) {
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005728 if (sscanf(cmd, "%u", &cmos_cmd) == 1 &&
5729 cmos_cmd >= 0 && cmos_cmd <= 21) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005730 /* cmos_cmd set */
5731 } else
5732 return -EINVAL;
5733
Henrique de Moraes Holschuhc9bea992007-04-21 11:08:42 -03005734 res = issue_thinkpad_cmos_command(cmos_cmd);
5735 if (res)
5736 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005737 }
5738
5739 return 0;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005740}
5741
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03005742static struct ibm_struct cmos_driver_data = {
5743 .name = "cmos",
5744 .read = cmos_read,
5745 .write = cmos_write,
Henrique de Moraes Holschuhb6160042007-04-24 11:48:19 -03005746 .exit = cmos_exit,
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03005747};
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03005748
5749/*************************************************************************
5750 * LED subdriver
5751 */
5752
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02005753enum led_access_mode {
5754 TPACPI_LED_NONE = 0,
5755 TPACPI_LED_570, /* 570 */
5756 TPACPI_LED_OLD, /* 600e/x, 770e, 770x, A21e, A2xm/p, T20-22, X20-21 */
5757 TPACPI_LED_NEW, /* all others */
5758};
5759
5760enum { /* For TPACPI_LED_OLD */
5761 TPACPI_LED_EC_HLCL = 0x0c, /* EC reg to get led to power on */
5762 TPACPI_LED_EC_HLBL = 0x0d, /* EC reg to blink a lit led */
5763 TPACPI_LED_EC_HLMS = 0x0e, /* EC reg to select led to command */
5764};
5765
Henrique de Moraes Holschuh9a8e1732006-11-25 16:36:00 -02005766static enum led_access_mode led_supported;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005767
Henrique de Moraes Holschuh2cbb5c82010-05-16 19:45:50 -03005768static acpi_handle led_handle;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03005769
Henrique de Moraes Holschuhf21179a2009-05-30 13:25:08 -03005770#define TPACPI_LED_NUMLEDS 16
Henrique de Moraes Holschuhaf116102008-04-26 01:02:25 -03005771static struct tpacpi_led_classdev *tpacpi_leds;
5772static enum led_status_t tpacpi_led_state_cache[TPACPI_LED_NUMLEDS];
Harvey Harrisone3aa51f2008-05-29 17:51:57 -07005773static const char * const tpacpi_led_names[TPACPI_LED_NUMLEDS] = {
Henrique de Moraes Holschuhaf116102008-04-26 01:02:25 -03005774 /* there's a limit of 19 chars + NULL before 2.6.26 */
5775 "tpacpi::power",
5776 "tpacpi:orange:batt",
5777 "tpacpi:green:batt",
5778 "tpacpi::dock_active",
5779 "tpacpi::bay_active",
5780 "tpacpi::dock_batt",
5781 "tpacpi::unknown_led",
5782 "tpacpi::standby",
Henrique de Moraes Holschuhf21179a2009-05-30 13:25:08 -03005783 "tpacpi::dock_status1",
5784 "tpacpi::dock_status2",
5785 "tpacpi::unknown_led2",
5786 "tpacpi::unknown_led3",
5787 "tpacpi::thinkvantage",
Henrique de Moraes Holschuhaf116102008-04-26 01:02:25 -03005788};
Henrique de Moraes Holschuhf21179a2009-05-30 13:25:08 -03005789#define TPACPI_SAFE_LEDS 0x1081U
Henrique de Moraes Holschuha4d5eff2009-04-04 04:25:49 +00005790
5791static inline bool tpacpi_is_led_restricted(const unsigned int led)
5792{
5793#ifdef CONFIG_THINKPAD_ACPI_UNSAFE_LEDS
5794 return false;
5795#else
Henrique de Moraes Holschuhf21179a2009-05-30 13:25:08 -03005796 return (1U & (TPACPI_SAFE_LEDS >> led)) == 0;
Henrique de Moraes Holschuha4d5eff2009-04-04 04:25:49 +00005797#endif
5798}
Henrique de Moraes Holschuhaf116102008-04-26 01:02:25 -03005799
Henrique de Moraes Holschuh24e45bb2008-06-03 23:36:11 -03005800static int led_get_status(const unsigned int led)
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03005801{
5802 int status;
Henrique de Moraes Holschuhaf116102008-04-26 01:02:25 -03005803 enum led_status_t led_s;
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03005804
5805 switch (led_supported) {
5806 case TPACPI_LED_570:
5807 if (!acpi_evalf(ec_handle,
5808 &status, "GLED", "dd", 1 << led))
5809 return -EIO;
Jan van den Berg72a979f2014-09-17 00:01:08 +02005810 led_s = (status == 0) ?
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03005811 TPACPI_LED_OFF :
Jan van den Berg72a979f2014-09-17 00:01:08 +02005812 ((status == 1) ?
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03005813 TPACPI_LED_ON :
5814 TPACPI_LED_BLINK);
Henrique de Moraes Holschuhaf116102008-04-26 01:02:25 -03005815 tpacpi_led_state_cache[led] = led_s;
5816 return led_s;
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03005817 default:
5818 return -ENXIO;
5819 }
5820
5821 /* not reached */
5822}
5823
Henrique de Moraes Holschuh24e45bb2008-06-03 23:36:11 -03005824static int led_set_status(const unsigned int led,
5825 const enum led_status_t ledstatus)
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03005826{
5827 /* off, on, blink. Index is led_status_t */
Henrique de Moraes Holschuh24e45bb2008-06-03 23:36:11 -03005828 static const unsigned int led_sled_arg1[] = { 0, 1, 3 };
5829 static const unsigned int led_led_arg1[] = { 0, 0x80, 0xc0 };
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03005830
5831 int rc = 0;
5832
5833 switch (led_supported) {
5834 case TPACPI_LED_570:
Henrique de Moraes Holschuh24e45bb2008-06-03 23:36:11 -03005835 /* 570 */
Henrique de Moraes Holschuha4d5eff2009-04-04 04:25:49 +00005836 if (unlikely(led > 7))
Henrique de Moraes Holschuh24e45bb2008-06-03 23:36:11 -03005837 return -EINVAL;
Henrique de Moraes Holschuha4d5eff2009-04-04 04:25:49 +00005838 if (unlikely(tpacpi_is_led_restricted(led)))
5839 return -EPERM;
Henrique de Moraes Holschuh24e45bb2008-06-03 23:36:11 -03005840 if (!acpi_evalf(led_handle, NULL, NULL, "vdd",
5841 (1 << led), led_sled_arg1[ledstatus]))
Pavel Machekaac33112019-04-29 17:21:48 +02005842 return -EIO;
Henrique de Moraes Holschuh24e45bb2008-06-03 23:36:11 -03005843 break;
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03005844 case TPACPI_LED_OLD:
Henrique de Moraes Holschuh24e45bb2008-06-03 23:36:11 -03005845 /* 600e/x, 770e, 770x, A21e, A2xm/p, T20-22, X20 */
Henrique de Moraes Holschuha4d5eff2009-04-04 04:25:49 +00005846 if (unlikely(led > 7))
Henrique de Moraes Holschuh24e45bb2008-06-03 23:36:11 -03005847 return -EINVAL;
Henrique de Moraes Holschuha4d5eff2009-04-04 04:25:49 +00005848 if (unlikely(tpacpi_is_led_restricted(led)))
5849 return -EPERM;
Henrique de Moraes Holschuh24e45bb2008-06-03 23:36:11 -03005850 rc = ec_write(TPACPI_LED_EC_HLMS, (1 << led));
5851 if (rc >= 0)
5852 rc = ec_write(TPACPI_LED_EC_HLBL,
5853 (ledstatus == TPACPI_LED_BLINK) << led);
5854 if (rc >= 0)
5855 rc = ec_write(TPACPI_LED_EC_HLCL,
5856 (ledstatus != TPACPI_LED_OFF) << led);
5857 break;
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03005858 case TPACPI_LED_NEW:
Henrique de Moraes Holschuh24e45bb2008-06-03 23:36:11 -03005859 /* all others */
Henrique de Moraes Holschuha4d5eff2009-04-04 04:25:49 +00005860 if (unlikely(led >= TPACPI_LED_NUMLEDS))
5861 return -EINVAL;
5862 if (unlikely(tpacpi_is_led_restricted(led)))
5863 return -EPERM;
Henrique de Moraes Holschuh24e45bb2008-06-03 23:36:11 -03005864 if (!acpi_evalf(led_handle, NULL, NULL, "vdd",
5865 led, led_led_arg1[ledstatus]))
Pavel Machekaac33112019-04-29 17:21:48 +02005866 return -EIO;
Henrique de Moraes Holschuh24e45bb2008-06-03 23:36:11 -03005867 break;
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03005868 default:
Pavel Machekaac33112019-04-29 17:21:48 +02005869 return -ENXIO;
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03005870 }
5871
Henrique de Moraes Holschuhaf116102008-04-26 01:02:25 -03005872 if (!rc)
5873 tpacpi_led_state_cache[led] = ledstatus;
5874
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03005875 return rc;
5876}
5877
Hans de Goede86ec0c22017-02-09 16:44:12 +01005878static int led_sysfs_set(struct led_classdev *led_cdev,
Henrique de Moraes Holschuhaf116102008-04-26 01:02:25 -03005879 enum led_brightness brightness)
5880{
5881 struct tpacpi_led_classdev *data = container_of(led_cdev,
5882 struct tpacpi_led_classdev, led_classdev);
Hans de Goede86ec0c22017-02-09 16:44:12 +01005883 enum led_status_t new_state;
Henrique de Moraes Holschuhaf116102008-04-26 01:02:25 -03005884
Henrique de Moraes Holschuh75bd3bf2009-04-14 02:44:11 +00005885 if (brightness == LED_OFF)
Hans de Goede86ec0c22017-02-09 16:44:12 +01005886 new_state = TPACPI_LED_OFF;
Henrique de Moraes Holschuh75bd3bf2009-04-14 02:44:11 +00005887 else if (tpacpi_led_state_cache[data->led] != TPACPI_LED_BLINK)
Hans de Goede86ec0c22017-02-09 16:44:12 +01005888 new_state = TPACPI_LED_ON;
Henrique de Moraes Holschuh75bd3bf2009-04-14 02:44:11 +00005889 else
Hans de Goede86ec0c22017-02-09 16:44:12 +01005890 new_state = TPACPI_LED_BLINK;
Henrique de Moraes Holschuh75bd3bf2009-04-14 02:44:11 +00005891
Hans de Goede86ec0c22017-02-09 16:44:12 +01005892 return led_set_status(data->led, new_state);
Henrique de Moraes Holschuhaf116102008-04-26 01:02:25 -03005893}
5894
5895static int led_sysfs_blink_set(struct led_classdev *led_cdev,
5896 unsigned long *delay_on, unsigned long *delay_off)
5897{
5898 struct tpacpi_led_classdev *data = container_of(led_cdev,
5899 struct tpacpi_led_classdev, led_classdev);
5900
5901 /* Can we choose the flash rate? */
5902 if (*delay_on == 0 && *delay_off == 0) {
5903 /* yes. set them to the hardware blink rate (1 Hz) */
5904 *delay_on = 500; /* ms */
5905 *delay_off = 500; /* ms */
5906 } else if ((*delay_on != 500) || (*delay_off != 500))
5907 return -EINVAL;
5908
Hans de Goede86ec0c22017-02-09 16:44:12 +01005909 return led_set_status(data->led, TPACPI_LED_BLINK);
Henrique de Moraes Holschuhaf116102008-04-26 01:02:25 -03005910}
5911
5912static enum led_brightness led_sysfs_get(struct led_classdev *led_cdev)
5913{
5914 int rc;
5915
5916 struct tpacpi_led_classdev *data = container_of(led_cdev,
5917 struct tpacpi_led_classdev, led_classdev);
5918
5919 rc = led_get_status(data->led);
5920
5921 if (rc == TPACPI_LED_OFF || rc < 0)
5922 rc = LED_OFF; /* no error handling in led class :( */
5923 else
5924 rc = LED_FULL;
5925
5926 return rc;
5927}
5928
5929static void led_exit(void)
5930{
5931 unsigned int i;
5932
Andy Shevchenko41f80042020-05-07 19:37:23 +03005933 for (i = 0; i < TPACPI_LED_NUMLEDS; i++)
5934 led_classdev_unregister(&tpacpi_leds[i].led_classdev);
Henrique de Moraes Holschuhaf116102008-04-26 01:02:25 -03005935
5936 kfree(tpacpi_leds);
Henrique de Moraes Holschuhaf116102008-04-26 01:02:25 -03005937}
5938
Henrique de Moraes Holschuha4d5eff2009-04-04 04:25:49 +00005939static int __init tpacpi_init_led(unsigned int led)
5940{
Henrique de Moraes Holschuhf21179a2009-05-30 13:25:08 -03005941 /* LEDs with no name don't get registered */
5942 if (!tpacpi_led_names[led])
5943 return 0;
5944
Hans de Goede86ec0c22017-02-09 16:44:12 +01005945 tpacpi_leds[led].led_classdev.brightness_set_blocking = &led_sysfs_set;
Henrique de Moraes Holschuha4d5eff2009-04-04 04:25:49 +00005946 tpacpi_leds[led].led_classdev.blink_set = &led_sysfs_blink_set;
5947 if (led_supported == TPACPI_LED_570)
Andy Shevchenko41f80042020-05-07 19:37:23 +03005948 tpacpi_leds[led].led_classdev.brightness_get = &led_sysfs_get;
Henrique de Moraes Holschuha4d5eff2009-04-04 04:25:49 +00005949
5950 tpacpi_leds[led].led_classdev.name = tpacpi_led_names[led];
Andy Shevchenko41f80042020-05-07 19:37:23 +03005951 tpacpi_leds[led].led = led;
Henrique de Moraes Holschuha4d5eff2009-04-04 04:25:49 +00005952
Andy Shevchenko41f80042020-05-07 19:37:23 +03005953 return led_classdev_register(&tpacpi_pdev->dev, &tpacpi_leds[led].led_classdev);
Henrique de Moraes Holschuha4d5eff2009-04-04 04:25:49 +00005954}
5955
Henrique de Moraes Holschuhf21179a2009-05-30 13:25:08 -03005956static const struct tpacpi_quirk led_useful_qtable[] __initconst = {
5957 TPACPI_Q_IBM('1', 'E', 0x009f), /* A30 */
5958 TPACPI_Q_IBM('1', 'N', 0x009f), /* A31 */
5959 TPACPI_Q_IBM('1', 'G', 0x009f), /* A31 */
5960
5961 TPACPI_Q_IBM('1', 'I', 0x0097), /* T30 */
5962 TPACPI_Q_IBM('1', 'R', 0x0097), /* T40, T41, T42, R50, R51 */
5963 TPACPI_Q_IBM('7', '0', 0x0097), /* T43, R52 */
5964 TPACPI_Q_IBM('1', 'Y', 0x0097), /* T43 */
5965 TPACPI_Q_IBM('1', 'W', 0x0097), /* R50e */
5966 TPACPI_Q_IBM('1', 'V', 0x0097), /* R51 */
5967 TPACPI_Q_IBM('7', '8', 0x0097), /* R51e */
5968 TPACPI_Q_IBM('7', '6', 0x0097), /* R52 */
5969
5970 TPACPI_Q_IBM('1', 'K', 0x00bf), /* X30 */
5971 TPACPI_Q_IBM('1', 'Q', 0x00bf), /* X31, X32 */
5972 TPACPI_Q_IBM('1', 'U', 0x00bf), /* X40 */
5973 TPACPI_Q_IBM('7', '4', 0x00bf), /* X41 */
5974 TPACPI_Q_IBM('7', '5', 0x00bf), /* X41t */
5975
5976 TPACPI_Q_IBM('7', '9', 0x1f97), /* T60 (1) */
5977 TPACPI_Q_IBM('7', '7', 0x1f97), /* Z60* (1) */
5978 TPACPI_Q_IBM('7', 'F', 0x1f97), /* Z61* (1) */
5979 TPACPI_Q_IBM('7', 'B', 0x1fb7), /* X60 (1) */
5980
5981 /* (1) - may have excess leds enabled on MSB */
5982
5983 /* Defaults (order matters, keep last, don't reorder!) */
5984 { /* Lenovo */
5985 .vendor = PCI_VENDOR_ID_LENOVO,
5986 .bios = TPACPI_MATCH_ANY, .ec = TPACPI_MATCH_ANY,
5987 .quirks = 0x1fffU,
5988 },
5989 { /* IBM ThinkPads with no EC version string */
5990 .vendor = PCI_VENDOR_ID_IBM,
5991 .bios = TPACPI_MATCH_ANY, .ec = TPACPI_MATCH_UNKNOWN,
5992 .quirks = 0x00ffU,
5993 },
5994 { /* IBM ThinkPads with EC version string */
5995 .vendor = PCI_VENDOR_ID_IBM,
5996 .bios = TPACPI_MATCH_ANY, .ec = TPACPI_MATCH_ANY,
5997 .quirks = 0x00bfU,
5998 },
5999};
6000
Henrique de Moraes Holschuh2cbb5c82010-05-16 19:45:50 -03006001static enum led_access_mode __init led_init_detect_mode(void)
6002{
6003 acpi_status status;
6004
6005 if (tpacpi_is_ibm()) {
6006 /* 570 */
6007 status = acpi_get_handle(ec_handle, "SLED", &led_handle);
6008 if (ACPI_SUCCESS(status))
6009 return TPACPI_LED_570;
6010
6011 /* 600e/x, 770e, 770x, A21e, A2xm/p, T20-22, X20-21 */
6012 status = acpi_get_handle(ec_handle, "SYSL", &led_handle);
6013 if (ACPI_SUCCESS(status))
6014 return TPACPI_LED_OLD;
6015 }
6016
6017 /* most others */
6018 status = acpi_get_handle(ec_handle, "LED", &led_handle);
6019 if (ACPI_SUCCESS(status))
6020 return TPACPI_LED_NEW;
6021
6022 /* R30, R31, and unknown firmwares */
6023 led_handle = NULL;
6024 return TPACPI_LED_NONE;
6025}
6026
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03006027static int __init led_init(struct ibm_init_struct *iibm)
Borislav Deianov78f81cc2005-08-17 00:00:00 -04006028{
Henrique de Moraes Holschuhaf116102008-04-26 01:02:25 -03006029 unsigned int i;
6030 int rc;
Henrique de Moraes Holschuhf21179a2009-05-30 13:25:08 -03006031 unsigned long useful_leds;
Henrique de Moraes Holschuhaf116102008-04-26 01:02:25 -03006032
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03006033 vdbg_printk(TPACPI_DBG_INIT, "initializing LED subdriver\n");
6034
Henrique de Moraes Holschuh2cbb5c82010-05-16 19:45:50 -03006035 led_supported = led_init_detect_mode();
Borislav Deianov78f81cc2005-08-17 00:00:00 -04006036
Adam Leefcb44e12013-06-07 16:20:08 +08006037 if (led_supported != TPACPI_LED_NONE) {
6038 useful_leds = tpacpi_check_quirks(led_useful_qtable,
6039 ARRAY_SIZE(led_useful_qtable));
6040
6041 if (!useful_leds) {
6042 led_handle = NULL;
6043 led_supported = TPACPI_LED_NONE;
6044 }
6045 }
6046
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03006047 vdbg_printk(TPACPI_DBG_INIT, "LED commands are %s, mode %d\n",
6048 str_supported(led_supported), led_supported);
6049
Henrique de Moraes Holschuhf21179a2009-05-30 13:25:08 -03006050 if (led_supported == TPACPI_LED_NONE)
6051 return 1;
6052
Kees Cook6396bb22018-06-12 14:03:40 -07006053 tpacpi_leds = kcalloc(TPACPI_LED_NUMLEDS, sizeof(*tpacpi_leds),
Henrique de Moraes Holschuhaf116102008-04-26 01:02:25 -03006054 GFP_KERNEL);
6055 if (!tpacpi_leds) {
Joe Perches0978e012011-04-04 10:06:25 -07006056 pr_err("Out of memory for LED data\n");
Henrique de Moraes Holschuhaf116102008-04-26 01:02:25 -03006057 return -ENOMEM;
6058 }
6059
6060 for (i = 0; i < TPACPI_LED_NUMLEDS; i++) {
Adam Leeedf2d772013-06-08 16:51:15 +08006061 tpacpi_leds[i].led = -1;
6062
Andy Shevchenko41f80042020-05-07 19:37:23 +03006063 if (!tpacpi_is_led_restricted(i) && test_bit(i, &useful_leds)) {
Henrique de Moraes Holschuha4d5eff2009-04-04 04:25:49 +00006064 rc = tpacpi_init_led(i);
6065 if (rc < 0) {
6066 led_exit();
6067 return rc;
6068 }
Henrique de Moraes Holschuhaf116102008-04-26 01:02:25 -03006069 }
6070 }
6071
Henrique de Moraes Holschuha4d5eff2009-04-04 04:25:49 +00006072#ifdef CONFIG_THINKPAD_ACPI_UNSAFE_LEDS
Andy Shevchenko5cac62a2017-05-09 17:17:20 +03006073 pr_notice("warning: userspace override of important firmware LEDs is enabled\n");
Henrique de Moraes Holschuha4d5eff2009-04-04 04:25:49 +00006074#endif
Henrique de Moraes Holschuhf21179a2009-05-30 13:25:08 -03006075 return 0;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04006076}
6077
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03006078#define str_led_status(s) \
6079 ((s) == TPACPI_LED_OFF ? "off" : \
6080 ((s) == TPACPI_LED_ON ? "on" : "blinking"))
Borislav Deianov78f81cc2005-08-17 00:00:00 -04006081
Alexey Dobriyan887965e2009-12-15 21:51:12 -02006082static int led_read(struct seq_file *m)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006083{
Borislav Deianov78f81cc2005-08-17 00:00:00 -04006084 if (!led_supported) {
Alexey Dobriyan887965e2009-12-15 21:51:12 -02006085 seq_printf(m, "status:\t\tnot supported\n");
6086 return 0;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04006087 }
Alexey Dobriyan887965e2009-12-15 21:51:12 -02006088 seq_printf(m, "status:\t\tsupported\n");
Borislav Deianov78f81cc2005-08-17 00:00:00 -04006089
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03006090 if (led_supported == TPACPI_LED_570) {
Borislav Deianov78f81cc2005-08-17 00:00:00 -04006091 /* 570 */
6092 int i, status;
6093 for (i = 0; i < 8; i++) {
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03006094 status = led_get_status(i);
6095 if (status < 0)
Borislav Deianov78f81cc2005-08-17 00:00:00 -04006096 return -EIO;
Alexey Dobriyan887965e2009-12-15 21:51:12 -02006097 seq_printf(m, "%d:\t\t%s\n",
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03006098 i, str_led_status(status));
Borislav Deianov78f81cc2005-08-17 00:00:00 -04006099 }
6100 }
6101
Andy Shevchenko5cac62a2017-05-09 17:17:20 +03006102 seq_printf(m, "commands:\t<led> on, <led> off, <led> blink (<led> is 0-15)\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07006103
Alexey Dobriyan887965e2009-12-15 21:51:12 -02006104 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006105}
6106
Borislav Deianov78f81cc2005-08-17 00:00:00 -04006107static int led_write(char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006108{
6109 char *cmd;
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03006110 int led, rc;
6111 enum led_status_t s;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04006112
6113 if (!led_supported)
6114 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006115
Andy Shevchenkobe51bd42020-05-11 15:56:24 +03006116 while ((cmd = strsep(&buf, ","))) {
Adam Leeedf2d772013-06-08 16:51:15 +08006117 if (sscanf(cmd, "%d", &led) != 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006118 return -EINVAL;
6119
Andy Shevchenko41f80042020-05-07 19:37:23 +03006120 if (led < 0 || led > (TPACPI_LED_NUMLEDS - 1))
6121 return -ENODEV;
6122
6123 if (tpacpi_leds[led].led < 0)
Adam Leeedf2d772013-06-08 16:51:15 +08006124 return -ENODEV;
6125
Borislav Deianov78f81cc2005-08-17 00:00:00 -04006126 if (strstr(cmd, "off")) {
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03006127 s = TPACPI_LED_OFF;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006128 } else if (strstr(cmd, "on")) {
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03006129 s = TPACPI_LED_ON;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04006130 } else if (strstr(cmd, "blink")) {
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03006131 s = TPACPI_LED_BLINK;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04006132 } else {
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03006133 return -EINVAL;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04006134 }
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03006135
6136 rc = led_set_status(led, s);
6137 if (rc < 0)
6138 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006139 }
6140
6141 return 0;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04006142}
6143
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03006144static struct ibm_struct led_driver_data = {
6145 .name = "led",
6146 .read = led_read,
6147 .write = led_write,
Henrique de Moraes Holschuhaf116102008-04-26 01:02:25 -03006148 .exit = led_exit,
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03006149};
6150
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03006151/*************************************************************************
6152 * Beep subdriver
6153 */
6154
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02006155TPACPI_HANDLE(beep, ec, "BEEP"); /* all except R30, R31 */
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03006156
Henrique de Moraes Holschuh60201732009-05-30 13:25:07 -03006157#define TPACPI_BEEP_Q1 0x0001
6158
6159static const struct tpacpi_quirk beep_quirk_table[] __initconst = {
6160 TPACPI_Q_IBM('I', 'M', TPACPI_BEEP_Q1), /* 570 */
6161 TPACPI_Q_IBM('I', 'U', TPACPI_BEEP_Q1), /* 570E - unverified */
6162};
6163
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03006164static int __init beep_init(struct ibm_init_struct *iibm)
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03006165{
Henrique de Moraes Holschuh60201732009-05-30 13:25:07 -03006166 unsigned long quirks;
6167
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03006168 vdbg_printk(TPACPI_DBG_INIT, "initializing beep subdriver\n");
6169
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02006170 TPACPI_ACPIHANDLE_INIT(beep);
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03006171
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03006172 vdbg_printk(TPACPI_DBG_INIT, "beep is %s\n",
6173 str_supported(beep_handle != NULL));
6174
Henrique de Moraes Holschuh60201732009-05-30 13:25:07 -03006175 quirks = tpacpi_check_quirks(beep_quirk_table,
6176 ARRAY_SIZE(beep_quirk_table));
6177
6178 tp_features.beep_needs_two_args = !!(quirks & TPACPI_BEEP_Q1);
6179
Jan van den Berg72a979f2014-09-17 00:01:08 +02006180 return (beep_handle) ? 0 : 1;
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03006181}
6182
Alexey Dobriyan887965e2009-12-15 21:51:12 -02006183static int beep_read(struct seq_file *m)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006184{
Borislav Deianov78f81cc2005-08-17 00:00:00 -04006185 if (!beep_handle)
Alexey Dobriyan887965e2009-12-15 21:51:12 -02006186 seq_printf(m, "status:\t\tnot supported\n");
Borislav Deianov78f81cc2005-08-17 00:00:00 -04006187 else {
Alexey Dobriyan887965e2009-12-15 21:51:12 -02006188 seq_printf(m, "status:\t\tsupported\n");
6189 seq_printf(m, "commands:\t<cmd> (<cmd> is 0-17)\n");
Borislav Deianov78f81cc2005-08-17 00:00:00 -04006190 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006191
Alexey Dobriyan887965e2009-12-15 21:51:12 -02006192 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006193}
6194
Borislav Deianov78f81cc2005-08-17 00:00:00 -04006195static int beep_write(char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006196{
6197 char *cmd;
6198 int beep_cmd;
6199
Borislav Deianov78f81cc2005-08-17 00:00:00 -04006200 if (!beep_handle)
6201 return -ENODEV;
6202
Andy Shevchenkobe51bd42020-05-11 15:56:24 +03006203 while ((cmd = strsep(&buf, ","))) {
Borislav Deianov78f81cc2005-08-17 00:00:00 -04006204 if (sscanf(cmd, "%u", &beep_cmd) == 1 &&
6205 beep_cmd >= 0 && beep_cmd <= 17) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006206 /* beep_cmd set */
6207 } else
6208 return -EINVAL;
Henrique de Moraes Holschuh60201732009-05-30 13:25:07 -03006209 if (tp_features.beep_needs_two_args) {
6210 if (!acpi_evalf(beep_handle, NULL, NULL, "vdd",
6211 beep_cmd, 0))
6212 return -EIO;
6213 } else {
6214 if (!acpi_evalf(beep_handle, NULL, NULL, "vd",
6215 beep_cmd))
6216 return -EIO;
6217 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006218 }
6219
6220 return 0;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04006221}
6222
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03006223static struct ibm_struct beep_driver_data = {
6224 .name = "beep",
6225 .read = beep_read,
6226 .write = beep_write,
6227};
6228
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03006229/*************************************************************************
6230 * Thermal subdriver
6231 */
Borislav Deianov78f81cc2005-08-17 00:00:00 -04006232
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02006233enum thermal_access_mode {
6234 TPACPI_THERMAL_NONE = 0, /* No thermal support */
6235 TPACPI_THERMAL_ACPI_TMP07, /* Use ACPI TMP0-7 */
6236 TPACPI_THERMAL_ACPI_UPDT, /* Use ACPI TMP0-7 with UPDT */
6237 TPACPI_THERMAL_TPEC_8, /* Use ACPI EC regs, 8 sensors */
6238 TPACPI_THERMAL_TPEC_16, /* Use ACPI EC regs, 16 sensors */
6239};
6240
6241enum { /* TPACPI_THERMAL_TPEC_* */
6242 TP_EC_THERMAL_TMP0 = 0x78, /* ACPI EC regs TMP 0..7 */
6243 TP_EC_THERMAL_TMP8 = 0xC0, /* ACPI EC regs TMP 8..15 */
6244 TP_EC_THERMAL_TMP_NA = -128, /* ACPI EC sensor not available */
Henrique de Moraes Holschuh9ebd9e82009-12-09 01:36:28 +00006245
6246 TPACPI_THERMAL_SENSOR_NA = -128000, /* Sensor not available */
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02006247};
6248
Henrique de Moraes Holschuh9ebd9e82009-12-09 01:36:28 +00006249
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02006250#define TPACPI_MAX_THERMAL_SENSORS 16 /* Max thermal sensors supported */
6251struct ibm_thermal_sensors_struct {
6252 s32 temp[TPACPI_MAX_THERMAL_SENSORS];
6253};
6254
Henrique de Moraes Holschuha26f8782006-11-24 11:47:08 -02006255static enum thermal_access_mode thermal_read_mode;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04006256
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02006257/* idx is zero-based */
6258static int thermal_get_sensor(int idx, s32 *value)
6259{
6260 int t;
6261 s8 tmp;
6262 char tmpi[5];
6263
6264 t = TP_EC_THERMAL_TMP0;
6265
6266 switch (thermal_read_mode) {
6267#if TPACPI_MAX_THERMAL_SENSORS >= 16
6268 case TPACPI_THERMAL_TPEC_16:
6269 if (idx >= 8 && idx <= 15) {
6270 t = TP_EC_THERMAL_TMP8;
6271 idx -= 8;
6272 }
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02006273#endif
Gustavo A. R. Silvac77c3572019-04-24 13:15:44 -05006274 /* fallthrough */
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02006275 case TPACPI_THERMAL_TPEC_8:
6276 if (idx <= 7) {
6277 if (!acpi_ec_read(t + idx, &tmp))
6278 return -EIO;
6279 *value = tmp * 1000;
6280 return 0;
6281 }
6282 break;
6283
6284 case TPACPI_THERMAL_ACPI_UPDT:
6285 if (idx <= 7) {
6286 snprintf(tmpi, sizeof(tmpi), "TMP%c", '0' + idx);
6287 if (!acpi_evalf(ec_handle, NULL, "UPDT", "v"))
6288 return -EIO;
6289 if (!acpi_evalf(ec_handle, &t, tmpi, "d"))
6290 return -EIO;
6291 *value = (t - 2732) * 100;
6292 return 0;
6293 }
6294 break;
6295
6296 case TPACPI_THERMAL_ACPI_TMP07:
6297 if (idx <= 7) {
6298 snprintf(tmpi, sizeof(tmpi), "TMP%c", '0' + idx);
6299 if (!acpi_evalf(ec_handle, &t, tmpi, "d"))
6300 return -EIO;
6301 if (t > 127 || t < -127)
6302 t = TP_EC_THERMAL_TMP_NA;
6303 *value = t * 1000;
6304 return 0;
6305 }
6306 break;
6307
6308 case TPACPI_THERMAL_NONE:
6309 default:
6310 return -ENOSYS;
6311 }
6312
6313 return -EINVAL;
6314}
6315
6316static int thermal_get_sensors(struct ibm_thermal_sensors_struct *s)
6317{
6318 int res, i;
6319 int n;
6320
6321 n = 8;
6322 i = 0;
6323
6324 if (!s)
6325 return -EINVAL;
6326
6327 if (thermal_read_mode == TPACPI_THERMAL_TPEC_16)
6328 n = 16;
6329
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02006330 for (i = 0 ; i < n; i++) {
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02006331 res = thermal_get_sensor(i, &s->temp[i]);
6332 if (res)
6333 return res;
6334 }
6335
6336 return n;
6337}
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02006338
Henrique de Moraes Holschuh9ebd9e82009-12-09 01:36:28 +00006339static void thermal_dump_all_sensors(void)
6340{
6341 int n, i;
6342 struct ibm_thermal_sensors_struct t;
6343
6344 n = thermal_get_sensors(&t);
6345 if (n <= 0)
6346 return;
6347
Joe Perches0978e012011-04-04 10:06:25 -07006348 pr_notice("temperatures (Celsius):");
Henrique de Moraes Holschuh9ebd9e82009-12-09 01:36:28 +00006349
6350 for (i = 0; i < n; i++) {
6351 if (t.temp[i] != TPACPI_THERMAL_SENSOR_NA)
Joe Perches0978e012011-04-04 10:06:25 -07006352 pr_cont(" %d", (int)(t.temp[i] / 1000));
Henrique de Moraes Holschuh9ebd9e82009-12-09 01:36:28 +00006353 else
Joe Perches0978e012011-04-04 10:06:25 -07006354 pr_cont(" N/A");
Henrique de Moraes Holschuh9ebd9e82009-12-09 01:36:28 +00006355 }
6356
Joe Perches0978e012011-04-04 10:06:25 -07006357 pr_cont("\n");
Henrique de Moraes Holschuh9ebd9e82009-12-09 01:36:28 +00006358}
6359
Henrique de Moraes Holschuh2c37aa42007-04-24 11:48:16 -03006360/* sysfs temp##_input -------------------------------------------------- */
6361
6362static ssize_t thermal_temp_input_show(struct device *dev,
6363 struct device_attribute *attr,
6364 char *buf)
6365{
6366 struct sensor_device_attribute *sensor_attr =
6367 to_sensor_dev_attr(attr);
6368 int idx = sensor_attr->index;
6369 s32 value;
6370 int res;
6371
6372 res = thermal_get_sensor(idx, &value);
6373 if (res)
6374 return res;
Henrique de Moraes Holschuh9ebd9e82009-12-09 01:36:28 +00006375 if (value == TPACPI_THERMAL_SENSOR_NA)
Henrique de Moraes Holschuh2c37aa42007-04-24 11:48:16 -03006376 return -ENXIO;
6377
6378 return snprintf(buf, PAGE_SIZE, "%d\n", value);
6379}
6380
6381#define THERMAL_SENSOR_ATTR_TEMP(_idxA, _idxB) \
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02006382 SENSOR_ATTR(temp##_idxA##_input, S_IRUGO, \
6383 thermal_temp_input_show, NULL, _idxB)
Henrique de Moraes Holschuh2c37aa42007-04-24 11:48:16 -03006384
6385static struct sensor_device_attribute sensor_dev_attr_thermal_temp_input[] = {
6386 THERMAL_SENSOR_ATTR_TEMP(1, 0),
6387 THERMAL_SENSOR_ATTR_TEMP(2, 1),
6388 THERMAL_SENSOR_ATTR_TEMP(3, 2),
6389 THERMAL_SENSOR_ATTR_TEMP(4, 3),
6390 THERMAL_SENSOR_ATTR_TEMP(5, 4),
6391 THERMAL_SENSOR_ATTR_TEMP(6, 5),
6392 THERMAL_SENSOR_ATTR_TEMP(7, 6),
6393 THERMAL_SENSOR_ATTR_TEMP(8, 7),
6394 THERMAL_SENSOR_ATTR_TEMP(9, 8),
6395 THERMAL_SENSOR_ATTR_TEMP(10, 9),
6396 THERMAL_SENSOR_ATTR_TEMP(11, 10),
6397 THERMAL_SENSOR_ATTR_TEMP(12, 11),
6398 THERMAL_SENSOR_ATTR_TEMP(13, 12),
6399 THERMAL_SENSOR_ATTR_TEMP(14, 13),
6400 THERMAL_SENSOR_ATTR_TEMP(15, 14),
6401 THERMAL_SENSOR_ATTR_TEMP(16, 15),
6402};
6403
6404#define THERMAL_ATTRS(X) \
6405 &sensor_dev_attr_thermal_temp_input[X].dev_attr.attr
6406
6407static struct attribute *thermal_temp_input_attr[] = {
6408 THERMAL_ATTRS(8),
6409 THERMAL_ATTRS(9),
6410 THERMAL_ATTRS(10),
6411 THERMAL_ATTRS(11),
6412 THERMAL_ATTRS(12),
6413 THERMAL_ATTRS(13),
6414 THERMAL_ATTRS(14),
6415 THERMAL_ATTRS(15),
6416 THERMAL_ATTRS(0),
6417 THERMAL_ATTRS(1),
6418 THERMAL_ATTRS(2),
6419 THERMAL_ATTRS(3),
6420 THERMAL_ATTRS(4),
6421 THERMAL_ATTRS(5),
6422 THERMAL_ATTRS(6),
6423 THERMAL_ATTRS(7),
6424 NULL
6425};
6426
6427static const struct attribute_group thermal_temp_input16_group = {
6428 .attrs = thermal_temp_input_attr
6429};
6430
6431static const struct attribute_group thermal_temp_input8_group = {
6432 .attrs = &thermal_temp_input_attr[8]
6433};
6434
6435#undef THERMAL_SENSOR_ATTR_TEMP
6436#undef THERMAL_ATTRS
6437
6438/* --------------------------------------------------------------------- */
6439
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03006440static int __init thermal_init(struct ibm_init_struct *iibm)
Borislav Deianov78f81cc2005-08-17 00:00:00 -04006441{
Henrique de Moraes Holschuh60eb0b32006-11-24 11:47:08 -02006442 u8 t, ta1, ta2;
6443 int i;
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03006444 int acpi_tmp7;
Henrique de Moraes Holschuh2c37aa42007-04-24 11:48:16 -03006445 int res;
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03006446
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03006447 vdbg_printk(TPACPI_DBG_INIT, "initializing thermal subdriver\n");
6448
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03006449 acpi_tmp7 = acpi_evalf(ec_handle, NULL, "TMP7", "qv");
Borislav Deianov78f81cc2005-08-17 00:00:00 -04006450
Henrique de Moraes Holschuh3d6f99c2007-07-18 23:45:46 -03006451 if (thinkpad_id.ec_model) {
Henrique de Moraes Holschuh60eb0b32006-11-24 11:47:08 -02006452 /*
6453 * Direct EC access mode: sensors at registers
6454 * 0x78-0x7F, 0xC0-0xC7. Registers return 0x00 for
6455 * non-implemented, thermal sensors return 0x80 when
6456 * not available
6457 */
6458
6459 ta1 = ta2 = 0;
6460 for (i = 0; i < 8; i++) {
Henrique de Moraes Holschuh04cc8622007-04-21 11:08:43 -03006461 if (acpi_ec_read(TP_EC_THERMAL_TMP0 + i, &t)) {
Henrique de Moraes Holschuh60eb0b32006-11-24 11:47:08 -02006462 ta1 |= t;
6463 } else {
6464 ta1 = 0;
6465 break;
6466 }
Henrique de Moraes Holschuh04cc8622007-04-21 11:08:43 -03006467 if (acpi_ec_read(TP_EC_THERMAL_TMP8 + i, &t)) {
Henrique de Moraes Holschuh60eb0b32006-11-24 11:47:08 -02006468 ta2 |= t;
6469 } else {
6470 ta1 = 0;
6471 break;
6472 }
6473 }
6474 if (ta1 == 0) {
6475 /* This is sheer paranoia, but we handle it anyway */
6476 if (acpi_tmp7) {
Andy Shevchenko5cac62a2017-05-09 17:17:20 +03006477 pr_err("ThinkPad ACPI EC access misbehaving, falling back to ACPI TMPx access mode\n");
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03006478 thermal_read_mode = TPACPI_THERMAL_ACPI_TMP07;
Henrique de Moraes Holschuh60eb0b32006-11-24 11:47:08 -02006479 } else {
Andy Shevchenko5cac62a2017-05-09 17:17:20 +03006480 pr_err("ThinkPad ACPI EC access misbehaving, disabling thermal sensors access\n");
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03006481 thermal_read_mode = TPACPI_THERMAL_NONE;
Henrique de Moraes Holschuh60eb0b32006-11-24 11:47:08 -02006482 }
6483 } else {
6484 thermal_read_mode =
6485 (ta2 != 0) ?
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03006486 TPACPI_THERMAL_TPEC_16 : TPACPI_THERMAL_TPEC_8;
Henrique de Moraes Holschuh60eb0b32006-11-24 11:47:08 -02006487 }
6488 } else if (acpi_tmp7) {
Henrique de Moraes Holschuhe28393c2010-05-16 19:45:23 -03006489 if (tpacpi_is_ibm() &&
6490 acpi_evalf(ec_handle, NULL, "UPDT", "qv")) {
Henrique de Moraes Holschuha26f8782006-11-24 11:47:08 -02006491 /* 600e/x, 770e, 770x */
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03006492 thermal_read_mode = TPACPI_THERMAL_ACPI_UPDT;
Henrique de Moraes Holschuha26f8782006-11-24 11:47:08 -02006493 } else {
Henrique de Moraes Holschuhe28393c2010-05-16 19:45:23 -03006494 /* IBM/LENOVO DSDT EC.TMPx access, max 8 sensors */
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03006495 thermal_read_mode = TPACPI_THERMAL_ACPI_TMP07;
Henrique de Moraes Holschuha26f8782006-11-24 11:47:08 -02006496 }
6497 } else {
6498 /* temperatures not supported on 570, G4x, R30, R31, R32 */
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03006499 thermal_read_mode = TPACPI_THERMAL_NONE;
Henrique de Moraes Holschuha26f8782006-11-24 11:47:08 -02006500 }
Borislav Deianov78f81cc2005-08-17 00:00:00 -04006501
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03006502 vdbg_printk(TPACPI_DBG_INIT, "thermal is %s, mode %d\n",
6503 str_supported(thermal_read_mode != TPACPI_THERMAL_NONE),
6504 thermal_read_mode);
6505
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02006506 switch (thermal_read_mode) {
Henrique de Moraes Holschuh2c37aa42007-04-24 11:48:16 -03006507 case TPACPI_THERMAL_TPEC_16:
Stanislav Fomichev6b99e352017-06-20 20:45:13 -07006508 res = sysfs_create_group(&tpacpi_hwmon->kobj,
Henrique de Moraes Holschuh2c37aa42007-04-24 11:48:16 -03006509 &thermal_temp_input16_group);
6510 if (res)
6511 return res;
6512 break;
6513 case TPACPI_THERMAL_TPEC_8:
6514 case TPACPI_THERMAL_ACPI_TMP07:
6515 case TPACPI_THERMAL_ACPI_UPDT:
Stanislav Fomichev6b99e352017-06-20 20:45:13 -07006516 res = sysfs_create_group(&tpacpi_hwmon->kobj,
Henrique de Moraes Holschuh2c37aa42007-04-24 11:48:16 -03006517 &thermal_temp_input8_group);
6518 if (res)
6519 return res;
6520 break;
6521 case TPACPI_THERMAL_NONE:
6522 default:
6523 return 1;
6524 }
6525
6526 return 0;
6527}
6528
6529static void thermal_exit(void)
6530{
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02006531 switch (thermal_read_mode) {
Henrique de Moraes Holschuh2c37aa42007-04-24 11:48:16 -03006532 case TPACPI_THERMAL_TPEC_16:
Stanislav Fomichev6b99e352017-06-20 20:45:13 -07006533 sysfs_remove_group(&tpacpi_hwmon->kobj,
Henrique de Moraes Holschuh2c37aa42007-04-24 11:48:16 -03006534 &thermal_temp_input16_group);
6535 break;
6536 case TPACPI_THERMAL_TPEC_8:
6537 case TPACPI_THERMAL_ACPI_TMP07:
6538 case TPACPI_THERMAL_ACPI_UPDT:
Stanislav Fomichev6b99e352017-06-20 20:45:13 -07006539 sysfs_remove_group(&tpacpi_hwmon->kobj,
Roel Kluinf04d5e02010-02-02 14:37:58 -08006540 &thermal_temp_input8_group);
Henrique de Moraes Holschuh2c37aa42007-04-24 11:48:16 -03006541 break;
6542 case TPACPI_THERMAL_NONE:
6543 default:
6544 break;
6545 }
Borislav Deianov78f81cc2005-08-17 00:00:00 -04006546}
6547
Alexey Dobriyan887965e2009-12-15 21:51:12 -02006548static int thermal_read(struct seq_file *m)
Borislav Deianov78f81cc2005-08-17 00:00:00 -04006549{
Henrique de Moraes Holschuha26f8782006-11-24 11:47:08 -02006550 int n, i;
6551 struct ibm_thermal_sensors_struct t;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04006552
Henrique de Moraes Holschuha26f8782006-11-24 11:47:08 -02006553 n = thermal_get_sensors(&t);
6554 if (unlikely(n < 0))
6555 return n;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04006556
Alexey Dobriyan887965e2009-12-15 21:51:12 -02006557 seq_printf(m, "temperatures:\t");
Borislav Deianov78f81cc2005-08-17 00:00:00 -04006558
Henrique de Moraes Holschuha26f8782006-11-24 11:47:08 -02006559 if (n > 0) {
6560 for (i = 0; i < (n - 1); i++)
Alexey Dobriyan887965e2009-12-15 21:51:12 -02006561 seq_printf(m, "%d ", t.temp[i] / 1000);
6562 seq_printf(m, "%d\n", t.temp[i] / 1000);
Henrique de Moraes Holschuha26f8782006-11-24 11:47:08 -02006563 } else
Alexey Dobriyan887965e2009-12-15 21:51:12 -02006564 seq_printf(m, "not supported\n");
Borislav Deianov78f81cc2005-08-17 00:00:00 -04006565
Alexey Dobriyan887965e2009-12-15 21:51:12 -02006566 return 0;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04006567}
6568
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03006569static struct ibm_struct thermal_driver_data = {
6570 .name = "thermal",
6571 .read = thermal_read,
Henrique de Moraes Holschuh2c37aa42007-04-24 11:48:16 -03006572 .exit = thermal_exit,
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03006573};
6574
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03006575/*************************************************************************
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03006576 * Backlight/brightness subdriver
6577 */
Holger Macht8acb0252006-10-20 14:30:28 -07006578
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02006579#define TPACPI_BACKLIGHT_DEV_NAME "thinkpad_screen"
6580
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00006581/*
6582 * ThinkPads can read brightness from two places: EC HBRV (0x31), or
6583 * CMOS NVRAM byte 0x5E, bits 0-3.
6584 *
6585 * EC HBRV (0x31) has the following layout
6586 * Bit 7: unknown function
6587 * Bit 6: unknown function
6588 * Bit 5: Z: honour scale changes, NZ: ignore scale changes
6589 * Bit 4: must be set to zero to avoid problems
6590 * Bit 3-0: backlight brightness level
6591 *
6592 * brightness_get_raw returns status data in the HBRV layout
Henrique de Moraes Holschuhd7880f12009-06-18 00:40:16 -03006593 *
6594 * WARNING: The X61 has been verified to use HBRV for something else, so
6595 * this should be used _only_ on IBM ThinkPads, and maybe with some careful
6596 * testing on the very early *60 Lenovo models...
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00006597 */
6598
Henrique de Moraes Holschuhe11aecf2008-04-26 01:02:21 -03006599enum {
6600 TP_EC_BACKLIGHT = 0x31,
6601
6602 /* TP_EC_BACKLIGHT bitmasks */
6603 TP_EC_BACKLIGHT_LVLMSK = 0x1F,
6604 TP_EC_BACKLIGHT_CMDMSK = 0xE0,
6605 TP_EC_BACKLIGHT_MAPSW = 0x20,
6606};
6607
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00006608enum tpacpi_brightness_access_mode {
6609 TPACPI_BRGHT_MODE_AUTO = 0, /* Not implemented yet */
6610 TPACPI_BRGHT_MODE_EC, /* EC control */
6611 TPACPI_BRGHT_MODE_UCMS_STEP, /* UCMS step-based control */
6612 TPACPI_BRGHT_MODE_ECNVRAM, /* EC control w/ NVRAM store */
6613 TPACPI_BRGHT_MODE_MAX
6614};
6615
Henrique de Moraes Holschuh94954cc62007-07-18 23:45:27 -03006616static struct backlight_device *ibm_backlight_device;
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00006617
6618static enum tpacpi_brightness_access_mode brightness_mode =
6619 TPACPI_BRGHT_MODE_MAX;
6620
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02006621static unsigned int brightness_enable = 2; /* 2 = auto, 0 = no, 1 = yes */
6622
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02006623static struct mutex brightness_mutex;
6624
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00006625/* NVRAM brightness access,
6626 * call with brightness_mutex held! */
6627static unsigned int tpacpi_brightness_nvram_get(void)
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02006628{
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00006629 u8 lnvram;
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02006630
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00006631 lnvram = (nvram_read_byte(TP_NVRAM_ADDR_BRIGHTNESS)
6632 & TP_NVRAM_MASK_LEVEL_BRIGHTNESS)
6633 >> TP_NVRAM_POS_LEVEL_BRIGHTNESS;
Henrique de Moraes Holschuh77775832010-05-16 19:45:33 -03006634 lnvram &= bright_maxlvl;
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02006635
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00006636 return lnvram;
6637}
6638
6639static void tpacpi_brightness_checkpoint_nvram(void)
6640{
6641 u8 lec = 0;
6642 u8 b_nvram;
6643
6644 if (brightness_mode != TPACPI_BRGHT_MODE_ECNVRAM)
6645 return;
6646
6647 vdbg_printk(TPACPI_DBG_BRGHT,
6648 "trying to checkpoint backlight level to NVRAM...\n");
6649
6650 if (mutex_lock_killable(&brightness_mutex) < 0)
6651 return;
6652
6653 if (unlikely(!acpi_ec_read(TP_EC_BACKLIGHT, &lec)))
6654 goto unlock;
6655 lec &= TP_EC_BACKLIGHT_LVLMSK;
6656 b_nvram = nvram_read_byte(TP_NVRAM_ADDR_BRIGHTNESS);
6657
6658 if (lec != ((b_nvram & TP_NVRAM_MASK_LEVEL_BRIGHTNESS)
6659 >> TP_NVRAM_POS_LEVEL_BRIGHTNESS)) {
6660 /* NVRAM needs update */
6661 b_nvram &= ~(TP_NVRAM_MASK_LEVEL_BRIGHTNESS <<
6662 TP_NVRAM_POS_LEVEL_BRIGHTNESS);
6663 b_nvram |= lec;
6664 nvram_write_byte(b_nvram, TP_NVRAM_ADDR_BRIGHTNESS);
6665 dbg_printk(TPACPI_DBG_BRGHT,
6666 "updated NVRAM backlight level to %u (0x%02x)\n",
6667 (unsigned int) lec, (unsigned int) b_nvram);
6668 } else
6669 vdbg_printk(TPACPI_DBG_BRGHT,
6670 "NVRAM backlight level already is %u (0x%02x)\n",
6671 (unsigned int) lec, (unsigned int) b_nvram);
6672
6673unlock:
6674 mutex_unlock(&brightness_mutex);
6675}
6676
6677
6678/* call with brightness_mutex held! */
6679static int tpacpi_brightness_get_raw(int *status)
6680{
6681 u8 lec = 0;
6682
6683 switch (brightness_mode) {
6684 case TPACPI_BRGHT_MODE_UCMS_STEP:
6685 *status = tpacpi_brightness_nvram_get();
6686 return 0;
6687 case TPACPI_BRGHT_MODE_EC:
6688 case TPACPI_BRGHT_MODE_ECNVRAM:
6689 if (unlikely(!acpi_ec_read(TP_EC_BACKLIGHT, &lec)))
Henrique de Moraes Holschuh2d5e94d2008-04-26 01:02:20 -03006690 return -EIO;
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00006691 *status = lec;
6692 return 0;
6693 default:
6694 return -ENXIO;
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02006695 }
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00006696}
6697
6698/* call with brightness_mutex held! */
6699/* do NOT call with illegal backlight level value */
6700static int tpacpi_brightness_set_ec(unsigned int value)
6701{
6702 u8 lec = 0;
6703
6704 if (unlikely(!acpi_ec_read(TP_EC_BACKLIGHT, &lec)))
6705 return -EIO;
6706
6707 if (unlikely(!acpi_ec_write(TP_EC_BACKLIGHT,
6708 (lec & TP_EC_BACKLIGHT_CMDMSK) |
6709 (value & TP_EC_BACKLIGHT_LVLMSK))))
6710 return -EIO;
6711
6712 return 0;
6713}
6714
6715/* call with brightness_mutex held! */
6716static int tpacpi_brightness_set_ucmsstep(unsigned int value)
6717{
6718 int cmos_cmd, inc;
6719 unsigned int current_value, i;
6720
6721 current_value = tpacpi_brightness_nvram_get();
6722
6723 if (value == current_value)
6724 return 0;
6725
6726 cmos_cmd = (value > current_value) ?
6727 TP_CMOS_BRIGHTNESS_UP :
6728 TP_CMOS_BRIGHTNESS_DOWN;
6729 inc = (value > current_value) ? 1 : -1;
6730
6731 for (i = current_value; i != value; i += inc)
6732 if (issue_thinkpad_cmos_command(cmos_cmd))
6733 return -EIO;
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02006734
Henrique de Moraes Holschuhe11aecf2008-04-26 01:02:21 -03006735 return 0;
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02006736}
6737
6738/* May return EINTR which can always be mapped to ERESTARTSYS */
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00006739static int brightness_set(unsigned int value)
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02006740{
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00006741 int res;
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02006742
Andrey Utkinbd3c7b9e2014-07-15 01:56:21 +03006743 if (value > bright_maxlvl)
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02006744 return -EINVAL;
6745
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00006746 vdbg_printk(TPACPI_DBG_BRGHT,
6747 "set backlight level to %d\n", value);
6748
Henrique de Moraes Holschuh7646ea82009-01-11 03:01:04 -02006749 res = mutex_lock_killable(&brightness_mutex);
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02006750 if (res < 0)
6751 return res;
6752
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00006753 switch (brightness_mode) {
6754 case TPACPI_BRGHT_MODE_EC:
6755 case TPACPI_BRGHT_MODE_ECNVRAM:
6756 res = tpacpi_brightness_set_ec(value);
6757 break;
6758 case TPACPI_BRGHT_MODE_UCMS_STEP:
6759 res = tpacpi_brightness_set_ucmsstep(value);
6760 break;
6761 default:
6762 res = -ENXIO;
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02006763 }
6764
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02006765 mutex_unlock(&brightness_mutex);
6766 return res;
6767}
6768
6769/* sysfs backlight class ----------------------------------------------- */
6770
6771static int brightness_update_status(struct backlight_device *bd)
6772{
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00006773 unsigned int level =
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02006774 (bd->props.fb_blank == FB_BLANK_UNBLANK &&
6775 bd->props.power == FB_BLANK_UNBLANK) ?
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00006776 bd->props.brightness : 0;
6777
6778 dbg_printk(TPACPI_DBG_BRGHT,
6779 "backlight: attempt to set level to %d\n",
6780 level);
6781
6782 /* it is the backlight class's job (caller) to handle
6783 * EINTR and other errors properly */
6784 return brightness_set(level);
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02006785}
Holger Macht8acb0252006-10-20 14:30:28 -07006786
Henrique de Moraes Holschuhe11aecf2008-04-26 01:02:21 -03006787static int brightness_get(struct backlight_device *bd)
6788{
6789 int status, res;
6790
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00006791 res = mutex_lock_killable(&brightness_mutex);
Henrique de Moraes Holschuhe11aecf2008-04-26 01:02:21 -03006792 if (res < 0)
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00006793 return 0;
6794
6795 res = tpacpi_brightness_get_raw(&status);
6796
6797 mutex_unlock(&brightness_mutex);
6798
6799 if (res < 0)
6800 return 0;
Henrique de Moraes Holschuhe11aecf2008-04-26 01:02:21 -03006801
6802 return status & TP_EC_BACKLIGHT_LVLMSK;
6803}
6804
Henrique de Moraes Holschuh347a2682009-12-09 01:36:24 +00006805static void tpacpi_brightness_notify_change(void)
6806{
6807 backlight_force_update(ibm_backlight_device,
6808 BACKLIGHT_UPDATE_HOTKEY);
6809}
6810
Lionel Debrouxacc24722010-11-16 14:14:02 +01006811static const struct backlight_ops ibm_backlight_data = {
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02006812 .get_brightness = brightness_get,
6813 .update_status = brightness_update_status,
Henrique de Moraes Holschuhfb87a812006-11-25 16:35:09 -02006814};
6815
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02006816/* --------------------------------------------------------------------- */
Henrique de Moraes Holschuhf4322552007-07-18 23:45:48 -03006817
Henrique de Moraes Holschuh122f2672010-08-09 23:48:18 -03006818/*
6819 * Call _BCL method of video device. On some ThinkPads this will
6820 * switch the firmware to the ACPI brightness control mode.
6821 */
6822
Henrique de Moraes Holschuh77775832010-05-16 19:45:33 -03006823static int __init tpacpi_query_bcl_levels(acpi_handle handle)
6824{
6825 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
6826 union acpi_object *obj;
Aaron Lu46445b62013-10-11 21:27:46 +08006827 struct acpi_device *device, *child;
Henrique de Moraes Holschuh77775832010-05-16 19:45:33 -03006828 int rc;
6829
Aaron Lu46445b62013-10-11 21:27:46 +08006830 if (acpi_bus_get_device(handle, &device))
6831 return 0;
6832
6833 rc = 0;
6834 list_for_each_entry(child, &device->children, node) {
6835 acpi_status status = acpi_evaluate_object(child->handle, "_BCL",
6836 NULL, &buffer);
6837 if (ACPI_FAILURE(status))
6838 continue;
6839
Henrique de Moraes Holschuh77775832010-05-16 19:45:33 -03006840 obj = (union acpi_object *)buffer.pointer;
6841 if (!obj || (obj->type != ACPI_TYPE_PACKAGE)) {
Joe Perches0978e012011-04-04 10:06:25 -07006842 pr_err("Unknown _BCL data, please report this to %s\n",
Aaron Lu46445b62013-10-11 21:27:46 +08006843 TPACPI_MAIL);
Henrique de Moraes Holschuh77775832010-05-16 19:45:33 -03006844 rc = 0;
6845 } else {
6846 rc = obj->package.count;
6847 }
Aaron Lu46445b62013-10-11 21:27:46 +08006848 break;
Henrique de Moraes Holschuh77775832010-05-16 19:45:33 -03006849 }
6850
6851 kfree(buffer.pointer);
6852 return rc;
6853}
6854
Henrique de Moraes Holschuh77775832010-05-16 19:45:33 -03006855
6856/*
6857 * Returns 0 (no ACPI _BCL or _BCL invalid), or size of brightness map
6858 */
6859static unsigned int __init tpacpi_check_std_acpi_brightness_support(void)
6860{
Henrique de Moraes Holschuh122f2672010-08-09 23:48:18 -03006861 acpi_handle video_device;
Henrique de Moraes Holschuh77775832010-05-16 19:45:33 -03006862 int bcl_levels = 0;
Henrique de Moraes Holschuh77775832010-05-16 19:45:33 -03006863
Aaron Lu46445b62013-10-11 21:27:46 +08006864 tpacpi_acpi_handle_locate("video", NULL, &video_device);
Henrique de Moraes Holschuh122f2672010-08-09 23:48:18 -03006865 if (video_device)
6866 bcl_levels = tpacpi_query_bcl_levels(video_device);
Henrique de Moraes Holschuh77775832010-05-16 19:45:33 -03006867
Henrique de Moraes Holschuh122f2672010-08-09 23:48:18 -03006868 tp_features.bright_acpimode = (bcl_levels > 0);
Henrique de Moraes Holschuh77775832010-05-16 19:45:33 -03006869
Henrique de Moraes Holschuh122f2672010-08-09 23:48:18 -03006870 return (bcl_levels > 2) ? (bcl_levels - 2) : 0;
Henrique de Moraes Holschuh77775832010-05-16 19:45:33 -03006871}
6872
Henrique de Moraes Holschuh59fe4fe2009-08-01 12:04:20 -03006873/*
6874 * These are only useful for models that have only one possibility
6875 * of GPU. If the BIOS model handles both ATI and Intel, don't use
6876 * these quirks.
6877 */
6878#define TPACPI_BRGHT_Q_NOEC 0x0001 /* Must NOT use EC HBRV */
6879#define TPACPI_BRGHT_Q_EC 0x0002 /* Should or must use EC HBRV */
6880#define TPACPI_BRGHT_Q_ASK 0x8000 /* Ask for user report */
6881
6882static const struct tpacpi_quirk brightness_quirk_table[] __initconst = {
6883 /* Models with ATI GPUs known to require ECNVRAM mode */
6884 TPACPI_Q_IBM('1', 'Y', TPACPI_BRGHT_Q_EC), /* T43/p ATI */
6885
Henrique de Moraes Holschuh6da25bf2009-09-12 15:22:11 -03006886 /* Models with ATI GPUs that can use ECNVRAM */
Henrique de Moraes Holschuh7d1894d2010-02-25 21:28:56 -03006887 TPACPI_Q_IBM('1', 'R', TPACPI_BRGHT_Q_EC), /* R50,51 T40-42 */
Henrique de Moraes Holschuh59fe4fe2009-08-01 12:04:20 -03006888 TPACPI_Q_IBM('1', 'Q', TPACPI_BRGHT_Q_ASK|TPACPI_BRGHT_Q_EC),
Henrique de Moraes Holschuh7d1894d2010-02-25 21:28:56 -03006889 TPACPI_Q_IBM('7', '6', TPACPI_BRGHT_Q_EC), /* R52 */
Henrique de Moraes Holschuh59fe4fe2009-08-01 12:04:20 -03006890 TPACPI_Q_IBM('7', '8', TPACPI_BRGHT_Q_ASK|TPACPI_BRGHT_Q_EC),
6891
Henrique de Moraes Holschuh6da25bf2009-09-12 15:22:11 -03006892 /* Models with Intel Extreme Graphics 2 */
Henrique de Moraes Holschuh7d1894d2010-02-25 21:28:56 -03006893 TPACPI_Q_IBM('1', 'U', TPACPI_BRGHT_Q_NOEC), /* X40 */
Henrique de Moraes Holschuha9f8eac2009-12-09 01:36:21 +00006894 TPACPI_Q_IBM('1', 'V', TPACPI_BRGHT_Q_ASK|TPACPI_BRGHT_Q_EC),
6895 TPACPI_Q_IBM('1', 'W', TPACPI_BRGHT_Q_ASK|TPACPI_BRGHT_Q_EC),
Henrique de Moraes Holschuh59fe4fe2009-08-01 12:04:20 -03006896
6897 /* Models with Intel GMA900 */
6898 TPACPI_Q_IBM('7', '0', TPACPI_BRGHT_Q_NOEC), /* T43, R52 */
6899 TPACPI_Q_IBM('7', '4', TPACPI_BRGHT_Q_NOEC), /* X41 */
6900 TPACPI_Q_IBM('7', '5', TPACPI_BRGHT_Q_NOEC), /* X41 Tablet */
6901};
6902
Henrique de Moraes Holschuh77775832010-05-16 19:45:33 -03006903/*
6904 * Returns < 0 for error, otherwise sets tp_features.bright_*
6905 * and bright_maxlvl.
6906 */
6907static void __init tpacpi_detect_brightness_capabilities(void)
6908{
6909 unsigned int b;
6910
6911 vdbg_printk(TPACPI_DBG_INIT,
6912 "detecting firmware brightness interface capabilities\n");
6913
6914 /* we could run a quirks check here (same table used by
6915 * brightness_init) if needed */
6916
6917 /*
6918 * We always attempt to detect acpi support, so as to switch
6919 * Lenovo Vista BIOS to ACPI brightness mode even if we are not
6920 * going to publish a backlight interface
6921 */
6922 b = tpacpi_check_std_acpi_brightness_support();
6923 switch (b) {
6924 case 16:
6925 bright_maxlvl = 15;
Henrique de Moraes Holschuh77775832010-05-16 19:45:33 -03006926 break;
6927 case 8:
6928 case 0:
6929 bright_maxlvl = 7;
Henrique de Moraes Holschuh77775832010-05-16 19:45:33 -03006930 break;
6931 default:
Henrique de Moraes Holschuh77775832010-05-16 19:45:33 -03006932 tp_features.bright_unkfw = 1;
6933 bright_maxlvl = b - 1;
6934 }
Eric Curtin15c75622016-01-30 16:55:59 +00006935 pr_debug("detected %u brightness levels\n", bright_maxlvl + 1);
Henrique de Moraes Holschuh77775832010-05-16 19:45:33 -03006936}
6937
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03006938static int __init brightness_init(struct ibm_init_struct *iibm)
Henrique de Moraes Holschuhfb87a812006-11-25 16:35:09 -02006939{
Matthew Garretta19a6ee2010-02-17 16:39:44 -05006940 struct backlight_properties props;
Henrique de Moraes Holschuhadb00582007-02-22 16:04:55 -02006941 int b;
Henrique de Moraes Holschuh59fe4fe2009-08-01 12:04:20 -03006942 unsigned long quirks;
Henrique de Moraes Holschuhadb00582007-02-22 16:04:55 -02006943
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03006944 vdbg_printk(TPACPI_DBG_INIT, "initializing brightness subdriver\n");
6945
Henrique de Moraes Holschuhf4322552007-07-18 23:45:48 -03006946 mutex_init(&brightness_mutex);
6947
Henrique de Moraes Holschuh59fe4fe2009-08-01 12:04:20 -03006948 quirks = tpacpi_check_quirks(brightness_quirk_table,
6949 ARRAY_SIZE(brightness_quirk_table));
6950
Henrique de Moraes Holschuh77775832010-05-16 19:45:33 -03006951 /* tpacpi_detect_brightness_capabilities() must have run already */
Thomas Renninger2dba1b52008-08-01 17:38:03 +02006952
Henrique de Moraes Holschuh77775832010-05-16 19:45:33 -03006953 /* if it is unknown, we don't handle it: it wouldn't be safe */
6954 if (tp_features.bright_unkfw)
6955 return 1;
6956
Henrique de Moraes Holschuhb5972792008-04-26 01:02:17 -03006957 if (!brightness_enable) {
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00006958 dbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_BRGHT,
Andy Shevchenko5cac62a2017-05-09 17:17:20 +03006959 "brightness support disabled by module parameter\n");
Henrique de Moraes Holschuhb5972792008-04-26 01:02:17 -03006960 return 1;
6961 }
6962
Hans de Goedeb33c6ce2015-06-16 16:28:10 +02006963 if (acpi_video_get_backlight_type() != acpi_backlight_vendor) {
Henrique de Moraes Holschuh217f0962010-08-09 23:48:19 -03006964 if (brightness_enable > 1) {
Andy Shevchenko5cac62a2017-05-09 17:17:20 +03006965 pr_info("Standard ACPI backlight interface available, not loading native one\n");
Henrique de Moraes Holschuh217f0962010-08-09 23:48:19 -03006966 return 1;
6967 } else if (brightness_enable == 1) {
Andy Shevchenko5cac62a2017-05-09 17:17:20 +03006968 pr_warn("Cannot enable backlight brightness support, ACPI is already handling it. Refer to the acpi_backlight kernel parameter.\n");
Henrique de Moraes Holschuh217f0962010-08-09 23:48:19 -03006969 return 1;
6970 }
6971 } else if (tp_features.bright_acpimode && brightness_enable > 1) {
Andy Shevchenko5cac62a2017-05-09 17:17:20 +03006972 pr_notice("Standard ACPI backlight interface not available, thinkpad_acpi native brightness control enabled\n");
Henrique de Moraes Holschuh217f0962010-08-09 23:48:19 -03006973 }
6974
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00006975 /*
6976 * Check for module parameter bogosity, note that we
6977 * init brightness_mode to TPACPI_BRGHT_MODE_MAX in order to be
6978 * able to detect "unspecified"
6979 */
6980 if (brightness_mode > TPACPI_BRGHT_MODE_MAX)
Henrique de Moraes Holschuh24d3b772007-07-18 23:45:43 -03006981 return -EINVAL;
6982
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00006983 /* TPACPI_BRGHT_MODE_AUTO not implemented yet, just use default */
6984 if (brightness_mode == TPACPI_BRGHT_MODE_AUTO ||
6985 brightness_mode == TPACPI_BRGHT_MODE_MAX) {
Henrique de Moraes Holschuh59fe4fe2009-08-01 12:04:20 -03006986 if (quirks & TPACPI_BRGHT_Q_EC)
6987 brightness_mode = TPACPI_BRGHT_MODE_ECNVRAM;
6988 else
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00006989 brightness_mode = TPACPI_BRGHT_MODE_UCMS_STEP;
6990
6991 dbg_printk(TPACPI_DBG_BRGHT,
Henrique de Moraes Holschuh59fe4fe2009-08-01 12:04:20 -03006992 "driver auto-selected brightness_mode=%d\n",
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00006993 brightness_mode);
6994 }
6995
Henrique de Moraes Holschuhd7880f12009-06-18 00:40:16 -03006996 /* Safety */
Henrique de Moraes Holschuhe28393c2010-05-16 19:45:23 -03006997 if (!tpacpi_is_ibm() &&
Henrique de Moraes Holschuhd7880f12009-06-18 00:40:16 -03006998 (brightness_mode == TPACPI_BRGHT_MODE_ECNVRAM ||
6999 brightness_mode == TPACPI_BRGHT_MODE_EC))
7000 return -EINVAL;
7001
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00007002 if (tpacpi_brightness_get_raw(&b) < 0)
Henrique de Moraes Holschuh24d3b772007-07-18 23:45:43 -03007003 return 1;
Henrique de Moraes Holschuhadb00582007-02-22 16:04:55 -02007004
Matthew Garretta19a6ee2010-02-17 16:39:44 -05007005 memset(&props, 0, sizeof(struct backlight_properties));
Matthew Garrettbb7ca742011-03-22 16:30:21 -07007006 props.type = BACKLIGHT_PLATFORM;
Henrique de Moraes Holschuh77775832010-05-16 19:45:33 -03007007 props.max_brightness = bright_maxlvl;
7008 props.brightness = b & TP_EC_BACKLIGHT_LVLMSK;
Matthew Garretta19a6ee2010-02-17 16:39:44 -05007009 ibm_backlight_device = backlight_device_register(TPACPI_BACKLIGHT_DEV_NAME,
7010 NULL, NULL,
7011 &ibm_backlight_data,
7012 &props);
Henrique de Moraes Holschuhfb87a812006-11-25 16:35:09 -02007013 if (IS_ERR(ibm_backlight_device)) {
Henrique de Moraes Holschuh435c47e2009-09-20 14:09:22 -03007014 int rc = PTR_ERR(ibm_backlight_device);
7015 ibm_backlight_device = NULL;
Joe Perches0978e012011-04-04 10:06:25 -07007016 pr_err("Could not register backlight device\n");
Henrique de Moraes Holschuh435c47e2009-09-20 14:09:22 -03007017 return rc;
Henrique de Moraes Holschuhfb87a812006-11-25 16:35:09 -02007018 }
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00007019 vdbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_BRGHT,
7020 "brightness is supported\n");
Henrique de Moraes Holschuhfb87a812006-11-25 16:35:09 -02007021
Henrique de Moraes Holschuh59fe4fe2009-08-01 12:04:20 -03007022 if (quirks & TPACPI_BRGHT_Q_ASK) {
Andy Shevchenko5cac62a2017-05-09 17:17:20 +03007023 pr_notice("brightness: will use unverified default: brightness_mode=%d\n",
7024 brightness_mode);
7025 pr_notice("brightness: please report to %s whether it works well or not on your ThinkPad\n",
7026 TPACPI_MAIL);
Henrique de Moraes Holschuh59fe4fe2009-08-01 12:04:20 -03007027 }
7028
Henrique de Moraes Holschuh7d9745c2010-05-16 19:45:57 -03007029 /* Added by mistake in early 2007. Probably useless, but it could
7030 * be working around some unknown firmware problem where the value
7031 * read at startup doesn't match the real hardware state... so leave
7032 * it in place just in case */
Henrique de Moraes Holschuhadb00582007-02-22 16:04:55 -02007033 backlight_update_status(ibm_backlight_device);
Richard Purdie599a52d2007-02-10 23:07:48 +00007034
Henrique de Moraes Holschuh347a2682009-12-09 01:36:24 +00007035 vdbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_BRGHT,
Andy Shevchenko5cac62a2017-05-09 17:17:20 +03007036 "brightness: registering brightness hotkeys as change notification\n");
Henrique de Moraes Holschuh347a2682009-12-09 01:36:24 +00007037 tpacpi_hotkey_driver_mask_set(hotkey_driver_mask
7038 | TP_ACPI_HKEY_BRGHTUP_MASK
Joe Perches30980642010-11-14 19:04:38 -08007039 | TP_ACPI_HKEY_BRGHTDWN_MASK);
Henrique de Moraes Holschuhfb87a812006-11-25 16:35:09 -02007040 return 0;
7041}
7042
Rafael J. Wysockifd3c3a42012-06-27 23:18:44 +02007043static void brightness_suspend(void)
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00007044{
7045 tpacpi_brightness_checkpoint_nvram();
7046}
7047
7048static void brightness_shutdown(void)
7049{
7050 tpacpi_brightness_checkpoint_nvram();
7051}
7052
Henrique de Moraes Holschuhfb87a812006-11-25 16:35:09 -02007053static void brightness_exit(void)
7054{
7055 if (ibm_backlight_device) {
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00007056 vdbg_printk(TPACPI_DBG_EXIT | TPACPI_DBG_BRGHT,
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03007057 "calling backlight_device_unregister()\n");
Henrique de Moraes Holschuhfb87a812006-11-25 16:35:09 -02007058 backlight_device_unregister(ibm_backlight_device);
Henrique de Moraes Holschuhfb87a812006-11-25 16:35:09 -02007059 }
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00007060
7061 tpacpi_brightness_checkpoint_nvram();
Henrique de Moraes Holschuhfb87a812006-11-25 16:35:09 -02007062}
7063
Alexey Dobriyan887965e2009-12-15 21:51:12 -02007064static int brightness_read(struct seq_file *m)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03007065{
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03007066 int level;
7067
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02007068 level = brightness_get(NULL);
7069 if (level < 0) {
Alexey Dobriyan887965e2009-12-15 21:51:12 -02007070 seq_printf(m, "level:\t\tunreadable\n");
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03007071 } else {
Alexey Dobriyan887965e2009-12-15 21:51:12 -02007072 seq_printf(m, "level:\t\t%d\n", level);
7073 seq_printf(m, "commands:\tup, down\n");
Henrique de Moraes Holschuh77775832010-05-16 19:45:33 -03007074 seq_printf(m, "commands:\tlevel <level> (<level> is 0-%d)\n",
7075 bright_maxlvl);
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03007076 }
7077
Alexey Dobriyan887965e2009-12-15 21:51:12 -02007078 return 0;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03007079}
7080
7081static int brightness_write(char *buf)
7082{
7083 int level;
Henrique de Moraes Holschuh4273af82007-10-30 17:46:25 -02007084 int rc;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03007085 char *cmd;
7086
Henrique de Moraes Holschuh4273af82007-10-30 17:46:25 -02007087 level = brightness_get(NULL);
7088 if (level < 0)
7089 return level;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03007090
Andy Shevchenkobe51bd42020-05-11 15:56:24 +03007091 while ((cmd = strsep(&buf, ","))) {
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03007092 if (strlencmp(cmd, "up") == 0) {
Henrique de Moraes Holschuh77775832010-05-16 19:45:33 -03007093 if (level < bright_maxlvl)
Henrique de Moraes Holschuh4273af82007-10-30 17:46:25 -02007094 level++;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03007095 } else if (strlencmp(cmd, "down") == 0) {
Henrique de Moraes Holschuh4273af82007-10-30 17:46:25 -02007096 if (level > 0)
7097 level--;
7098 } else if (sscanf(cmd, "level %d", &level) == 1 &&
Henrique de Moraes Holschuh77775832010-05-16 19:45:33 -03007099 level >= 0 && level <= bright_maxlvl) {
Henrique de Moraes Holschuh4273af82007-10-30 17:46:25 -02007100 /* new level set */
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03007101 } else
7102 return -EINVAL;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03007103 }
7104
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00007105 tpacpi_disclose_usertask("procfs brightness",
7106 "set level to %d\n", level);
7107
Henrique de Moraes Holschuh4273af82007-10-30 17:46:25 -02007108 /*
7109 * Now we know what the final level should be, so we try to set it.
7110 * Doing it this way makes the syscall restartable in case of EINTR
7111 */
7112 rc = brightness_set(level);
Henrique de Moraes Holschuh347a2682009-12-09 01:36:24 +00007113 if (!rc && ibm_backlight_device)
7114 backlight_force_update(ibm_backlight_device,
7115 BACKLIGHT_UPDATE_SYSFS);
Jan van den Berg72a979f2014-09-17 00:01:08 +02007116 return (rc == -EINTR) ? -ERESTARTSYS : rc;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03007117}
7118
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03007119static struct ibm_struct brightness_driver_data = {
7120 .name = "brightness",
7121 .read = brightness_read,
7122 .write = brightness_write,
7123 .exit = brightness_exit,
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00007124 .suspend = brightness_suspend,
7125 .shutdown = brightness_shutdown,
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03007126};
7127
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03007128/*************************************************************************
7129 * Volume subdriver
7130 */
7131
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02007132/*
7133 * IBM ThinkPads have a simple volume controller with MUTE gating.
7134 * Very early Lenovo ThinkPads follow the IBM ThinkPad spec.
7135 *
7136 * Since the *61 series (and probably also the later *60 series), Lenovo
7137 * ThinkPads only implement the MUTE gate.
7138 *
7139 * EC register 0x30
7140 * Bit 6: MUTE (1 mutes sound)
7141 * Bit 3-0: Volume
7142 * Other bits should be zero as far as we know.
7143 *
7144 * This is also stored in CMOS NVRAM, byte 0x60, bit 6 (MUTE), and
7145 * bits 3-0 (volume). Other bits in NVRAM may have other functions,
7146 * such as bit 7 which is used to detect repeated presses of MUTE,
7147 * and we leave them unchanged.
Andy Lutomirski9a417ec2014-10-17 17:04:29 -07007148 *
7149 * On newer Lenovo ThinkPads, the EC can automatically change the volume
7150 * in response to user input. Unfortunately, this rarely works well.
7151 * The laptop changes the state of its internal MUTE gate and, on some
7152 * models, sends KEY_MUTE, causing any user code that responds to the
7153 * mute button to get confused. The hardware MUTE gate is also
7154 * unnecessary, since user code can handle the mute button without
7155 * kernel or EC help.
7156 *
7157 * To avoid confusing userspace, we simply disable all EC-based mute
7158 * and volume controls when possible.
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02007159 */
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02007160
Henrique de Moraes Holschuhff850c32009-12-26 22:52:15 -02007161#ifdef CONFIG_THINKPAD_ACPI_ALSA_SUPPORT
7162
Henrique de Moraes Holschuh0d204c32009-12-15 21:51:11 -02007163#define TPACPI_ALSA_DRVNAME "ThinkPad EC"
7164#define TPACPI_ALSA_SHRTNAME "ThinkPad Console Audio Control"
7165#define TPACPI_ALSA_MIXERNAME TPACPI_ALSA_SHRTNAME
7166
Takashi Iwaicab66612013-10-24 16:06:32 +02007167#if SNDRV_CARDS <= 32
7168#define DEFAULT_ALSA_IDX ~((1 << (SNDRV_CARDS - 3)) - 1)
7169#else
7170#define DEFAULT_ALSA_IDX ~((1 << (32 - 3)) - 1)
7171#endif
7172static int alsa_index = DEFAULT_ALSA_IDX; /* last three slots */
Henrique de Moraes Holschuh0d204c32009-12-15 21:51:11 -02007173static char *alsa_id = "ThinkPadEC";
Rusty Russell90ab5ee2012-01-13 09:32:20 +10307174static bool alsa_enable = SNDRV_DEFAULT_ENABLE1;
Henrique de Moraes Holschuh0d204c32009-12-15 21:51:11 -02007175
7176struct tpacpi_alsa_data {
7177 struct snd_card *card;
7178 struct snd_ctl_elem_id *ctl_mute_id;
7179 struct snd_ctl_elem_id *ctl_vol_id;
7180};
7181
7182static struct snd_card *alsa_card;
7183
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02007184enum {
7185 TP_EC_AUDIO = 0x30,
7186
7187 /* TP_EC_AUDIO bits */
7188 TP_EC_AUDIO_MUTESW = 6,
7189
7190 /* TP_EC_AUDIO bitmasks */
7191 TP_EC_AUDIO_LVL_MSK = 0x0F,
7192 TP_EC_AUDIO_MUTESW_MSK = (1 << TP_EC_AUDIO_MUTESW),
7193
7194 /* Maximum volume */
7195 TP_EC_VOLUME_MAX = 14,
7196};
7197
7198enum tpacpi_volume_access_mode {
7199 TPACPI_VOL_MODE_AUTO = 0, /* Not implemented yet */
7200 TPACPI_VOL_MODE_EC, /* Pure EC control */
7201 TPACPI_VOL_MODE_UCMS_STEP, /* UCMS step-based control: N/A */
7202 TPACPI_VOL_MODE_ECNVRAM, /* EC control w/ NVRAM store */
7203 TPACPI_VOL_MODE_MAX
7204};
7205
Henrique de Moraes Holschuha112cee2009-12-15 21:51:09 -02007206enum tpacpi_volume_capabilities {
7207 TPACPI_VOL_CAP_AUTO = 0, /* Use white/blacklist */
7208 TPACPI_VOL_CAP_VOLMUTE, /* Output vol and mute */
7209 TPACPI_VOL_CAP_MUTEONLY, /* Output mute only */
7210 TPACPI_VOL_CAP_MAX
7211};
7212
Andy Lutomirski9a417ec2014-10-17 17:04:29 -07007213enum tpacpi_mute_btn_mode {
7214 TP_EC_MUTE_BTN_LATCH = 0, /* Mute mutes; up/down unmutes */
7215 /* We don't know what mode 1 is. */
7216 TP_EC_MUTE_BTN_NONE = 2, /* Mute and up/down are just keys */
7217 TP_EC_MUTE_BTN_TOGGLE = 3, /* Mute toggles; up/down unmutes */
7218};
7219
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02007220static enum tpacpi_volume_access_mode volume_mode =
7221 TPACPI_VOL_MODE_MAX;
7222
Henrique de Moraes Holschuha112cee2009-12-15 21:51:09 -02007223static enum tpacpi_volume_capabilities volume_capabilities;
Rusty Russell90ab5ee2012-01-13 09:32:20 +10307224static bool volume_control_allowed;
Andy Lutomirski9a417ec2014-10-17 17:04:29 -07007225static bool software_mute_requested = true;
7226static bool software_mute_active;
7227static int software_mute_orig_mode;
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02007228
7229/*
7230 * Used to syncronize writers to TP_EC_AUDIO and
7231 * TP_NVRAM_ADDR_MIXER, as we need to do read-modify-write
7232 */
7233static struct mutex volume_mutex;
7234
7235static void tpacpi_volume_checkpoint_nvram(void)
Borislav Deianov78f81cc2005-08-17 00:00:00 -04007236{
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02007237 u8 lec = 0;
7238 u8 b_nvram;
Henrique de Moraes Holschuha112cee2009-12-15 21:51:09 -02007239 u8 ec_mask;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04007240
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02007241 if (volume_mode != TPACPI_VOL_MODE_ECNVRAM)
7242 return;
Henrique de Moraes Holschuhc7ac6292009-12-15 21:51:10 -02007243 if (!volume_control_allowed)
7244 return;
Andy Lutomirski9a417ec2014-10-17 17:04:29 -07007245 if (software_mute_active)
7246 return;
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02007247
7248 vdbg_printk(TPACPI_DBG_MIXER,
7249 "trying to checkpoint mixer state to NVRAM...\n");
7250
Henrique de Moraes Holschuha112cee2009-12-15 21:51:09 -02007251 if (tp_features.mixer_no_level_control)
7252 ec_mask = TP_EC_AUDIO_MUTESW_MSK;
7253 else
7254 ec_mask = TP_EC_AUDIO_MUTESW_MSK | TP_EC_AUDIO_LVL_MSK;
7255
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02007256 if (mutex_lock_killable(&volume_mutex) < 0)
7257 return;
7258
7259 if (unlikely(!acpi_ec_read(TP_EC_AUDIO, &lec)))
7260 goto unlock;
7261 lec &= ec_mask;
7262 b_nvram = nvram_read_byte(TP_NVRAM_ADDR_MIXER);
7263
7264 if (lec != (b_nvram & ec_mask)) {
7265 /* NVRAM needs update */
7266 b_nvram &= ~ec_mask;
7267 b_nvram |= lec;
7268 nvram_write_byte(b_nvram, TP_NVRAM_ADDR_MIXER);
7269 dbg_printk(TPACPI_DBG_MIXER,
7270 "updated NVRAM mixer status to 0x%02x (0x%02x)\n",
7271 (unsigned int) lec, (unsigned int) b_nvram);
Borislav Deianov78f81cc2005-08-17 00:00:00 -04007272 } else {
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02007273 vdbg_printk(TPACPI_DBG_MIXER,
7274 "NVRAM mixer status already is 0x%02x (0x%02x)\n",
7275 (unsigned int) lec, (unsigned int) b_nvram);
Borislav Deianov78f81cc2005-08-17 00:00:00 -04007276 }
7277
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02007278unlock:
7279 mutex_unlock(&volume_mutex);
Borislav Deianov78f81cc2005-08-17 00:00:00 -04007280}
7281
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02007282static int volume_get_status_ec(u8 *status)
Borislav Deianov78f81cc2005-08-17 00:00:00 -04007283{
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02007284 u8 s;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04007285
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02007286 if (!acpi_ec_read(TP_EC_AUDIO, &s))
7287 return -EIO;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04007288
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02007289 *status = s;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04007290
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02007291 dbg_printk(TPACPI_DBG_MIXER, "status 0x%02x\n", s);
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02007292
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02007293 return 0;
7294}
Borislav Deianov78f81cc2005-08-17 00:00:00 -04007295
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02007296static int volume_get_status(u8 *status)
7297{
7298 return volume_get_status_ec(status);
7299}
Borislav Deianov78f81cc2005-08-17 00:00:00 -04007300
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02007301static int volume_set_status_ec(const u8 status)
7302{
7303 if (!acpi_ec_write(TP_EC_AUDIO, status))
7304 return -EIO;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04007305
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02007306 dbg_printk(TPACPI_DBG_MIXER, "set EC mixer to 0x%02x\n", status);
7307
Andy Lutomirski9a417ec2014-10-17 17:04:29 -07007308 /*
7309 * On X200s, and possibly on others, it can take a while for
7310 * reads to become correct.
7311 */
7312 msleep(1);
7313
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02007314 return 0;
7315}
7316
7317static int volume_set_status(const u8 status)
7318{
7319 return volume_set_status_ec(status);
7320}
7321
Henrique de Moraes Holschuh88cc8372010-02-27 18:45:29 -03007322/* returns < 0 on error, 0 on no change, 1 on change */
7323static int __volume_set_mute_ec(const bool mute)
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02007324{
7325 int rc;
7326 u8 s, n;
7327
7328 if (mutex_lock_killable(&volume_mutex) < 0)
7329 return -EINTR;
7330
7331 rc = volume_get_status_ec(&s);
7332 if (rc)
7333 goto unlock;
7334
7335 n = (mute) ? s | TP_EC_AUDIO_MUTESW_MSK :
7336 s & ~TP_EC_AUDIO_MUTESW_MSK;
7337
Henrique de Moraes Holschuh88cc8372010-02-27 18:45:29 -03007338 if (n != s) {
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02007339 rc = volume_set_status_ec(n);
Henrique de Moraes Holschuh88cc8372010-02-27 18:45:29 -03007340 if (!rc)
7341 rc = 1;
7342 }
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02007343
7344unlock:
7345 mutex_unlock(&volume_mutex);
7346 return rc;
7347}
7348
Henrique de Moraes Holschuh88cc8372010-02-27 18:45:29 -03007349static int volume_alsa_set_mute(const bool mute)
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02007350{
Henrique de Moraes Holschuh88cc8372010-02-27 18:45:29 -03007351 dbg_printk(TPACPI_DBG_MIXER, "ALSA: trying to %smute\n",
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02007352 (mute) ? "" : "un");
Henrique de Moraes Holschuh88cc8372010-02-27 18:45:29 -03007353 return __volume_set_mute_ec(mute);
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02007354}
7355
Henrique de Moraes Holschuh88cc8372010-02-27 18:45:29 -03007356static int volume_set_mute(const bool mute)
7357{
7358 int rc;
7359
7360 dbg_printk(TPACPI_DBG_MIXER, "trying to %smute\n",
7361 (mute) ? "" : "un");
7362
7363 rc = __volume_set_mute_ec(mute);
7364 return (rc < 0) ? rc : 0;
7365}
7366
7367/* returns < 0 on error, 0 on no change, 1 on change */
7368static int __volume_set_volume_ec(const u8 vol)
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02007369{
7370 int rc;
7371 u8 s, n;
7372
7373 if (vol > TP_EC_VOLUME_MAX)
7374 return -EINVAL;
7375
7376 if (mutex_lock_killable(&volume_mutex) < 0)
7377 return -EINTR;
7378
7379 rc = volume_get_status_ec(&s);
7380 if (rc)
7381 goto unlock;
7382
7383 n = (s & ~TP_EC_AUDIO_LVL_MSK) | vol;
7384
Henrique de Moraes Holschuh88cc8372010-02-27 18:45:29 -03007385 if (n != s) {
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02007386 rc = volume_set_status_ec(n);
Henrique de Moraes Holschuh88cc8372010-02-27 18:45:29 -03007387 if (!rc)
7388 rc = 1;
7389 }
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02007390
7391unlock:
7392 mutex_unlock(&volume_mutex);
7393 return rc;
7394}
7395
Andy Lutomirski9a417ec2014-10-17 17:04:29 -07007396static int volume_set_software_mute(bool startup)
7397{
7398 int result;
7399
7400 if (!tpacpi_is_lenovo())
7401 return -ENODEV;
7402
7403 if (startup) {
7404 if (!acpi_evalf(ec_handle, &software_mute_orig_mode,
7405 "HAUM", "qd"))
7406 return -EIO;
7407
7408 dbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_MIXER,
7409 "Initial HAUM setting was %d\n",
7410 software_mute_orig_mode);
7411 }
7412
7413 if (!acpi_evalf(ec_handle, &result, "SAUM", "qdd",
7414 (int)TP_EC_MUTE_BTN_NONE))
7415 return -EIO;
7416
7417 if (result != TP_EC_MUTE_BTN_NONE)
7418 pr_warn("Unexpected SAUM result %d\n",
7419 result);
7420
7421 /*
7422 * In software mute mode, the standard codec controls take
7423 * precendence, so we unmute the ThinkPad HW switch at
7424 * startup. Just on case there are SAUM-capable ThinkPads
7425 * with level controls, set max HW volume as well.
7426 */
7427 if (tp_features.mixer_no_level_control)
7428 result = volume_set_mute(false);
7429 else
7430 result = volume_set_status(TP_EC_VOLUME_MAX);
7431
7432 if (result != 0)
7433 pr_warn("Failed to unmute the HW mute switch\n");
7434
7435 return 0;
7436}
7437
7438static void volume_exit_software_mute(void)
7439{
7440 int r;
7441
7442 if (!acpi_evalf(ec_handle, &r, "SAUM", "qdd", software_mute_orig_mode)
7443 || r != software_mute_orig_mode)
7444 pr_warn("Failed to restore mute mode\n");
7445}
7446
Henrique de Moraes Holschuh88cc8372010-02-27 18:45:29 -03007447static int volume_alsa_set_volume(const u8 vol)
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02007448{
7449 dbg_printk(TPACPI_DBG_MIXER,
Henrique de Moraes Holschuh88cc8372010-02-27 18:45:29 -03007450 "ALSA: trying to set volume level to %hu\n", vol);
7451 return __volume_set_volume_ec(vol);
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02007452}
7453
Henrique de Moraes Holschuh0d204c32009-12-15 21:51:11 -02007454static void volume_alsa_notify_change(void)
7455{
7456 struct tpacpi_alsa_data *d;
7457
7458 if (alsa_card && alsa_card->private_data) {
7459 d = alsa_card->private_data;
7460 if (d->ctl_mute_id)
7461 snd_ctl_notify(alsa_card,
7462 SNDRV_CTL_EVENT_MASK_VALUE,
7463 d->ctl_mute_id);
7464 if (d->ctl_vol_id)
7465 snd_ctl_notify(alsa_card,
7466 SNDRV_CTL_EVENT_MASK_VALUE,
7467 d->ctl_vol_id);
7468 }
7469}
7470
7471static int volume_alsa_vol_info(struct snd_kcontrol *kcontrol,
7472 struct snd_ctl_elem_info *uinfo)
7473{
7474 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
7475 uinfo->count = 1;
7476 uinfo->value.integer.min = 0;
7477 uinfo->value.integer.max = TP_EC_VOLUME_MAX;
7478 return 0;
7479}
7480
7481static int volume_alsa_vol_get(struct snd_kcontrol *kcontrol,
7482 struct snd_ctl_elem_value *ucontrol)
7483{
7484 u8 s;
7485 int rc;
7486
7487 rc = volume_get_status(&s);
7488 if (rc < 0)
7489 return rc;
7490
7491 ucontrol->value.integer.value[0] = s & TP_EC_AUDIO_LVL_MSK;
7492 return 0;
7493}
7494
7495static int volume_alsa_vol_put(struct snd_kcontrol *kcontrol,
7496 struct snd_ctl_elem_value *ucontrol)
7497{
Henrique de Moraes Holschuh38e11cd2010-05-16 19:45:40 -03007498 tpacpi_disclose_usertask("ALSA", "set volume to %ld\n",
7499 ucontrol->value.integer.value[0]);
Henrique de Moraes Holschuh88cc8372010-02-27 18:45:29 -03007500 return volume_alsa_set_volume(ucontrol->value.integer.value[0]);
Henrique de Moraes Holschuh0d204c32009-12-15 21:51:11 -02007501}
7502
7503#define volume_alsa_mute_info snd_ctl_boolean_mono_info
7504
7505static int volume_alsa_mute_get(struct snd_kcontrol *kcontrol,
7506 struct snd_ctl_elem_value *ucontrol)
7507{
7508 u8 s;
7509 int rc;
7510
7511 rc = volume_get_status(&s);
7512 if (rc < 0)
7513 return rc;
7514
7515 ucontrol->value.integer.value[0] =
7516 (s & TP_EC_AUDIO_MUTESW_MSK) ? 0 : 1;
7517 return 0;
7518}
7519
7520static int volume_alsa_mute_put(struct snd_kcontrol *kcontrol,
7521 struct snd_ctl_elem_value *ucontrol)
7522{
Henrique de Moraes Holschuh38e11cd2010-05-16 19:45:40 -03007523 tpacpi_disclose_usertask("ALSA", "%smute\n",
7524 ucontrol->value.integer.value[0] ?
7525 "un" : "");
Henrique de Moraes Holschuh88cc8372010-02-27 18:45:29 -03007526 return volume_alsa_set_mute(!ucontrol->value.integer.value[0]);
Henrique de Moraes Holschuh0d204c32009-12-15 21:51:11 -02007527}
7528
Mathias Krausec3aa4722014-07-16 19:43:17 +02007529static struct snd_kcontrol_new volume_alsa_control_vol __initdata = {
Henrique de Moraes Holschuh0d204c32009-12-15 21:51:11 -02007530 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
7531 .name = "Console Playback Volume",
7532 .index = 0,
7533 .access = SNDRV_CTL_ELEM_ACCESS_READ,
7534 .info = volume_alsa_vol_info,
7535 .get = volume_alsa_vol_get,
7536};
7537
Mathias Krausec3aa4722014-07-16 19:43:17 +02007538static struct snd_kcontrol_new volume_alsa_control_mute __initdata = {
Henrique de Moraes Holschuh0d204c32009-12-15 21:51:11 -02007539 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
7540 .name = "Console Playback Switch",
7541 .index = 0,
7542 .access = SNDRV_CTL_ELEM_ACCESS_READ,
7543 .info = volume_alsa_mute_info,
7544 .get = volume_alsa_mute_get,
7545};
7546
Rafael J. Wysockifd3c3a42012-06-27 23:18:44 +02007547static void volume_suspend(void)
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02007548{
7549 tpacpi_volume_checkpoint_nvram();
7550}
7551
Henrique de Moraes Holschuh0d204c32009-12-15 21:51:11 -02007552static void volume_resume(void)
7553{
Andy Lutomirski9a417ec2014-10-17 17:04:29 -07007554 if (software_mute_active) {
7555 if (volume_set_software_mute(false) < 0)
7556 pr_warn("Failed to restore software mute\n");
7557 } else {
7558 volume_alsa_notify_change();
7559 }
Henrique de Moraes Holschuh0d204c32009-12-15 21:51:11 -02007560}
7561
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02007562static void volume_shutdown(void)
7563{
7564 tpacpi_volume_checkpoint_nvram();
7565}
7566
7567static void volume_exit(void)
7568{
Henrique de Moraes Holschuh0d204c32009-12-15 21:51:11 -02007569 if (alsa_card) {
7570 snd_card_free(alsa_card);
7571 alsa_card = NULL;
7572 }
7573
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02007574 tpacpi_volume_checkpoint_nvram();
Andy Lutomirski9a417ec2014-10-17 17:04:29 -07007575
7576 if (software_mute_active)
7577 volume_exit_software_mute();
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02007578}
7579
Henrique de Moraes Holschuh0d204c32009-12-15 21:51:11 -02007580static int __init volume_create_alsa_mixer(void)
7581{
7582 struct snd_card *card;
7583 struct tpacpi_alsa_data *data;
7584 struct snd_kcontrol *ctl_vol;
7585 struct snd_kcontrol *ctl_mute;
7586 int rc;
7587
Takashi Iwai89235e52014-01-29 15:01:27 +01007588 rc = snd_card_new(&tpacpi_pdev->dev,
7589 alsa_index, alsa_id, THIS_MODULE,
7590 sizeof(struct tpacpi_alsa_data), &card);
Henrique de Moraes Holschuh74c75c12009-12-26 22:52:14 -02007591 if (rc < 0 || !card) {
Joe Perches0978e012011-04-04 10:06:25 -07007592 pr_err("Failed to create ALSA card structures: %d\n", rc);
Henrique de Moraes Holschuh74c75c12009-12-26 22:52:14 -02007593 return 1;
7594 }
Henrique de Moraes Holschuh0d204c32009-12-15 21:51:11 -02007595
7596 BUG_ON(!card->private_data);
7597 data = card->private_data;
7598 data->card = card;
7599
7600 strlcpy(card->driver, TPACPI_ALSA_DRVNAME,
7601 sizeof(card->driver));
7602 strlcpy(card->shortname, TPACPI_ALSA_SHRTNAME,
7603 sizeof(card->shortname));
7604 snprintf(card->mixername, sizeof(card->mixername), "ThinkPad EC %s",
7605 (thinkpad_id.ec_version_str) ?
7606 thinkpad_id.ec_version_str : "(unknown)");
7607 snprintf(card->longname, sizeof(card->longname),
7608 "%s at EC reg 0x%02x, fw %s", card->shortname, TP_EC_AUDIO,
7609 (thinkpad_id.ec_version_str) ?
7610 thinkpad_id.ec_version_str : "unknown");
7611
7612 if (volume_control_allowed) {
7613 volume_alsa_control_vol.put = volume_alsa_vol_put;
7614 volume_alsa_control_vol.access =
7615 SNDRV_CTL_ELEM_ACCESS_READWRITE;
7616
7617 volume_alsa_control_mute.put = volume_alsa_mute_put;
7618 volume_alsa_control_mute.access =
7619 SNDRV_CTL_ELEM_ACCESS_READWRITE;
7620 }
7621
7622 if (!tp_features.mixer_no_level_control) {
7623 ctl_vol = snd_ctl_new1(&volume_alsa_control_vol, NULL);
7624 rc = snd_ctl_add(card, ctl_vol);
7625 if (rc < 0) {
Joe Perches0978e012011-04-04 10:06:25 -07007626 pr_err("Failed to create ALSA volume control: %d\n",
7627 rc);
Henrique de Moraes Holschuh74c75c12009-12-26 22:52:14 -02007628 goto err_exit;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04007629 }
Henrique de Moraes Holschuh0d204c32009-12-15 21:51:11 -02007630 data->ctl_vol_id = &ctl_vol->id;
7631 }
Borislav Deianov78f81cc2005-08-17 00:00:00 -04007632
Henrique de Moraes Holschuh0d204c32009-12-15 21:51:11 -02007633 ctl_mute = snd_ctl_new1(&volume_alsa_control_mute, NULL);
7634 rc = snd_ctl_add(card, ctl_mute);
7635 if (rc < 0) {
Joe Perches0978e012011-04-04 10:06:25 -07007636 pr_err("Failed to create ALSA mute control: %d\n", rc);
Henrique de Moraes Holschuh74c75c12009-12-26 22:52:14 -02007637 goto err_exit;
Henrique de Moraes Holschuh0d204c32009-12-15 21:51:11 -02007638 }
7639 data->ctl_mute_id = &ctl_mute->id;
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02007640
Henrique de Moraes Holschuh0d204c32009-12-15 21:51:11 -02007641 rc = snd_card_register(card);
Henrique de Moraes Holschuh0d204c32009-12-15 21:51:11 -02007642 if (rc < 0) {
Joe Perches0978e012011-04-04 10:06:25 -07007643 pr_err("Failed to register ALSA card: %d\n", rc);
Henrique de Moraes Holschuh74c75c12009-12-26 22:52:14 -02007644 goto err_exit;
Henrique de Moraes Holschuh0d204c32009-12-15 21:51:11 -02007645 }
7646
7647 alsa_card = card;
Henrique de Moraes Holschuh74c75c12009-12-26 22:52:14 -02007648 return 0;
7649
7650err_exit:
7651 snd_card_free(card);
7652 return 1;
Henrique de Moraes Holschuh0d204c32009-12-15 21:51:11 -02007653}
7654
Henrique de Moraes Holschuha112cee2009-12-15 21:51:09 -02007655#define TPACPI_VOL_Q_MUTEONLY 0x0001 /* Mute-only control available */
7656#define TPACPI_VOL_Q_LEVEL 0x0002 /* Volume control available */
7657
7658static const struct tpacpi_quirk volume_quirk_table[] __initconst = {
7659 /* Whitelist volume level on all IBM by default */
7660 { .vendor = PCI_VENDOR_ID_IBM,
7661 .bios = TPACPI_MATCH_ANY,
7662 .ec = TPACPI_MATCH_ANY,
7663 .quirks = TPACPI_VOL_Q_LEVEL },
7664
7665 /* Lenovo models with volume control (needs confirmation) */
7666 TPACPI_QEC_LNV('7', 'C', TPACPI_VOL_Q_LEVEL), /* R60/i */
7667 TPACPI_QEC_LNV('7', 'E', TPACPI_VOL_Q_LEVEL), /* R60e/i */
7668 TPACPI_QEC_LNV('7', '9', TPACPI_VOL_Q_LEVEL), /* T60/p */
7669 TPACPI_QEC_LNV('7', 'B', TPACPI_VOL_Q_LEVEL), /* X60/s */
7670 TPACPI_QEC_LNV('7', 'J', TPACPI_VOL_Q_LEVEL), /* X60t */
7671 TPACPI_QEC_LNV('7', '7', TPACPI_VOL_Q_LEVEL), /* Z60 */
7672 TPACPI_QEC_LNV('7', 'F', TPACPI_VOL_Q_LEVEL), /* Z61 */
7673
7674 /* Whitelist mute-only on all Lenovo by default */
7675 { .vendor = PCI_VENDOR_ID_LENOVO,
7676 .bios = TPACPI_MATCH_ANY,
7677 .ec = TPACPI_MATCH_ANY,
7678 .quirks = TPACPI_VOL_Q_MUTEONLY }
7679};
7680
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02007681static int __init volume_init(struct ibm_init_struct *iibm)
7682{
Henrique de Moraes Holschuha112cee2009-12-15 21:51:09 -02007683 unsigned long quirks;
Henrique de Moraes Holschuh0d204c32009-12-15 21:51:11 -02007684 int rc;
Henrique de Moraes Holschuha112cee2009-12-15 21:51:09 -02007685
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02007686 vdbg_printk(TPACPI_DBG_INIT, "initializing volume subdriver\n");
7687
7688 mutex_init(&volume_mutex);
7689
7690 /*
7691 * Check for module parameter bogosity, note that we
7692 * init volume_mode to TPACPI_VOL_MODE_MAX in order to be
7693 * able to detect "unspecified"
7694 */
7695 if (volume_mode > TPACPI_VOL_MODE_MAX)
7696 return -EINVAL;
7697
7698 if (volume_mode == TPACPI_VOL_MODE_UCMS_STEP) {
Andy Shevchenko5cac62a2017-05-09 17:17:20 +03007699 pr_err("UCMS step volume mode not implemented, please contact %s\n",
7700 TPACPI_MAIL);
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02007701 return 1;
7702 }
7703
Henrique de Moraes Holschuha112cee2009-12-15 21:51:09 -02007704 if (volume_capabilities >= TPACPI_VOL_CAP_MAX)
7705 return -EINVAL;
7706
Henrique de Moraes Holschuh0d204c32009-12-15 21:51:11 -02007707 /*
7708 * The ALSA mixer is our primary interface.
7709 * When disabled, don't install the subdriver at all
7710 */
7711 if (!alsa_enable) {
7712 vdbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_MIXER,
Andy Shevchenko5cac62a2017-05-09 17:17:20 +03007713 "ALSA mixer disabled by parameter, not loading volume subdriver...\n");
Henrique de Moraes Holschuh0d204c32009-12-15 21:51:11 -02007714 return 1;
7715 }
7716
Henrique de Moraes Holschuha112cee2009-12-15 21:51:09 -02007717 quirks = tpacpi_check_quirks(volume_quirk_table,
7718 ARRAY_SIZE(volume_quirk_table));
7719
7720 switch (volume_capabilities) {
7721 case TPACPI_VOL_CAP_AUTO:
7722 if (quirks & TPACPI_VOL_Q_MUTEONLY)
7723 tp_features.mixer_no_level_control = 1;
7724 else if (quirks & TPACPI_VOL_Q_LEVEL)
7725 tp_features.mixer_no_level_control = 0;
7726 else
7727 return 1; /* no mixer */
7728 break;
7729 case TPACPI_VOL_CAP_VOLMUTE:
7730 tp_features.mixer_no_level_control = 0;
7731 break;
7732 case TPACPI_VOL_CAP_MUTEONLY:
7733 tp_features.mixer_no_level_control = 1;
7734 break;
7735 default:
7736 return 1;
7737 }
7738
7739 if (volume_capabilities != TPACPI_VOL_CAP_AUTO)
7740 dbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_MIXER,
7741 "using user-supplied volume_capabilities=%d\n",
7742 volume_capabilities);
7743
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02007744 if (volume_mode == TPACPI_VOL_MODE_AUTO ||
7745 volume_mode == TPACPI_VOL_MODE_MAX) {
7746 volume_mode = TPACPI_VOL_MODE_ECNVRAM;
7747
7748 dbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_MIXER,
7749 "driver auto-selected volume_mode=%d\n",
7750 volume_mode);
7751 } else {
7752 dbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_MIXER,
7753 "using user-supplied volume_mode=%d\n",
7754 volume_mode);
7755 }
7756
7757 vdbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_MIXER,
Henrique de Moraes Holschuha112cee2009-12-15 21:51:09 -02007758 "mute is supported, volume control is %s\n",
7759 str_supported(!tp_features.mixer_no_level_control));
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02007760
Andy Lutomirski9a417ec2014-10-17 17:04:29 -07007761 if (software_mute_requested && volume_set_software_mute(true) == 0) {
7762 software_mute_active = true;
7763 } else {
7764 rc = volume_create_alsa_mixer();
7765 if (rc) {
7766 pr_err("Could not create the ALSA mixer interface\n");
7767 return rc;
7768 }
Henrique de Moraes Holschuh0d204c32009-12-15 21:51:11 -02007769
Andy Lutomirski9a417ec2014-10-17 17:04:29 -07007770 pr_info("Console audio control enabled, mode: %s\n",
7771 (volume_control_allowed) ?
7772 "override (read/write)" :
7773 "monitor (read only)");
7774 }
Henrique de Moraes Holschuhc7ac6292009-12-15 21:51:10 -02007775
Henrique de Moraes Holschuh0d204c32009-12-15 21:51:11 -02007776 vdbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_MIXER,
7777 "registering volume hotkeys as change notification\n");
7778 tpacpi_hotkey_driver_mask_set(hotkey_driver_mask
7779 | TP_ACPI_HKEY_VOLUP_MASK
7780 | TP_ACPI_HKEY_VOLDWN_MASK
7781 | TP_ACPI_HKEY_MUTE_MASK);
7782
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02007783 return 0;
7784}
Borislav Deianov78f81cc2005-08-17 00:00:00 -04007785
Alexey Dobriyan887965e2009-12-15 21:51:12 -02007786static int volume_read(struct seq_file *m)
Borislav Deianov78f81cc2005-08-17 00:00:00 -04007787{
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02007788 u8 status;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04007789
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02007790 if (volume_get_status(&status) < 0) {
Alexey Dobriyan887965e2009-12-15 21:51:12 -02007791 seq_printf(m, "level:\t\tunreadable\n");
Borislav Deianov78f81cc2005-08-17 00:00:00 -04007792 } else {
Henrique de Moraes Holschuha112cee2009-12-15 21:51:09 -02007793 if (tp_features.mixer_no_level_control)
Alexey Dobriyan887965e2009-12-15 21:51:12 -02007794 seq_printf(m, "level:\t\tunsupported\n");
Henrique de Moraes Holschuha112cee2009-12-15 21:51:09 -02007795 else
Alexey Dobriyan887965e2009-12-15 21:51:12 -02007796 seq_printf(m, "level:\t\t%d\n",
Henrique de Moraes Holschuha112cee2009-12-15 21:51:09 -02007797 status & TP_EC_AUDIO_LVL_MSK);
7798
Alexey Dobriyan887965e2009-12-15 21:51:12 -02007799 seq_printf(m, "mute:\t\t%s\n",
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02007800 onoff(status, TP_EC_AUDIO_MUTESW));
Henrique de Moraes Holschuha112cee2009-12-15 21:51:09 -02007801
Henrique de Moraes Holschuhc7ac6292009-12-15 21:51:10 -02007802 if (volume_control_allowed) {
Alexey Dobriyan887965e2009-12-15 21:51:12 -02007803 seq_printf(m, "commands:\tunmute, mute\n");
Henrique de Moraes Holschuhc7ac6292009-12-15 21:51:10 -02007804 if (!tp_features.mixer_no_level_control) {
Andy Shevchenko5cac62a2017-05-09 17:17:20 +03007805 seq_printf(m, "commands:\tup, down\n");
7806 seq_printf(m, "commands:\tlevel <level> (<level> is 0-%d)\n",
7807 TP_EC_VOLUME_MAX);
Henrique de Moraes Holschuhc7ac6292009-12-15 21:51:10 -02007808 }
Borislav Deianov78f81cc2005-08-17 00:00:00 -04007809 }
7810 }
7811
7812 return 0;
7813}
7814
Borislav Deianov78f81cc2005-08-17 00:00:00 -04007815static int volume_write(char *buf)
7816{
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02007817 u8 s;
7818 u8 new_level, new_mute;
7819 int l;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04007820 char *cmd;
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02007821 int rc;
7822
Henrique de Moraes Holschuhc7ac6292009-12-15 21:51:10 -02007823 /*
7824 * We do allow volume control at driver startup, so that the
7825 * user can set initial state through the volume=... parameter hack.
7826 */
7827 if (!volume_control_allowed && tpacpi_lifecycle != TPACPI_LIFE_INIT) {
7828 if (unlikely(!tp_warned.volume_ctrl_forbidden)) {
7829 tp_warned.volume_ctrl_forbidden = 1;
Andy Shevchenko5cac62a2017-05-09 17:17:20 +03007830 pr_notice("Console audio control in monitor mode, changes are not allowed\n");
7831 pr_notice("Use the volume_control=1 module parameter to enable volume control\n");
Henrique de Moraes Holschuhc7ac6292009-12-15 21:51:10 -02007832 }
7833 return -EPERM;
7834 }
7835
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02007836 rc = volume_get_status(&s);
7837 if (rc < 0)
7838 return rc;
7839
7840 new_level = s & TP_EC_AUDIO_LVL_MSK;
7841 new_mute = s & TP_EC_AUDIO_MUTESW_MSK;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04007842
Andy Shevchenkobe51bd42020-05-11 15:56:24 +03007843 while ((cmd = strsep(&buf, ","))) {
Henrique de Moraes Holschuha112cee2009-12-15 21:51:09 -02007844 if (!tp_features.mixer_no_level_control) {
7845 if (strlencmp(cmd, "up") == 0) {
7846 if (new_mute)
7847 new_mute = 0;
7848 else if (new_level < TP_EC_VOLUME_MAX)
7849 new_level++;
7850 continue;
7851 } else if (strlencmp(cmd, "down") == 0) {
7852 if (new_mute)
7853 new_mute = 0;
7854 else if (new_level > 0)
7855 new_level--;
7856 continue;
7857 } else if (sscanf(cmd, "level %u", &l) == 1 &&
7858 l >= 0 && l <= TP_EC_VOLUME_MAX) {
7859 new_level = l;
7860 continue;
7861 }
7862 }
7863 if (strlencmp(cmd, "mute") == 0)
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02007864 new_mute = TP_EC_AUDIO_MUTESW_MSK;
Henrique de Moraes Holschuha112cee2009-12-15 21:51:09 -02007865 else if (strlencmp(cmd, "unmute") == 0)
7866 new_mute = 0;
7867 else
Borislav Deianov78f81cc2005-08-17 00:00:00 -04007868 return -EINVAL;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04007869 }
7870
Henrique de Moraes Holschuha112cee2009-12-15 21:51:09 -02007871 if (tp_features.mixer_no_level_control) {
7872 tpacpi_disclose_usertask("procfs volume", "%smute\n",
7873 new_mute ? "" : "un");
7874 rc = volume_set_mute(!!new_mute);
7875 } else {
7876 tpacpi_disclose_usertask("procfs volume",
7877 "%smute and set level to %d\n",
7878 new_mute ? "" : "un", new_level);
7879 rc = volume_set_status(new_mute | new_level);
7880 }
Henrique de Moraes Holschuh0d204c32009-12-15 21:51:11 -02007881 volume_alsa_notify_change();
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02007882
7883 return (rc == -EINTR) ? -ERESTARTSYS : rc;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04007884}
7885
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03007886static struct ibm_struct volume_driver_data = {
7887 .name = "volume",
7888 .read = volume_read,
7889 .write = volume_write,
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02007890 .exit = volume_exit,
7891 .suspend = volume_suspend,
Henrique de Moraes Holschuh0d204c32009-12-15 21:51:11 -02007892 .resume = volume_resume,
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02007893 .shutdown = volume_shutdown,
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03007894};
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03007895
Henrique de Moraes Holschuhff850c32009-12-26 22:52:15 -02007896#else /* !CONFIG_THINKPAD_ACPI_ALSA_SUPPORT */
7897
7898#define alsa_card NULL
7899
Tobias Klauserbb55a2e2016-11-25 14:18:07 +01007900static inline void volume_alsa_notify_change(void)
Henrique de Moraes Holschuhff850c32009-12-26 22:52:15 -02007901{
7902}
7903
7904static int __init volume_init(struct ibm_init_struct *iibm)
7905{
Joe Perches0978e012011-04-04 10:06:25 -07007906 pr_info("volume: disabled as there is no ALSA support in this kernel\n");
Henrique de Moraes Holschuhff850c32009-12-26 22:52:15 -02007907
7908 return 1;
7909}
7910
7911static struct ibm_struct volume_driver_data = {
7912 .name = "volume",
7913};
7914
7915#endif /* CONFIG_THINKPAD_ACPI_ALSA_SUPPORT */
7916
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03007917/*************************************************************************
7918 * Fan subdriver
7919 */
7920
7921/*
7922 * FAN ACCESS MODES
7923 *
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03007924 * TPACPI_FAN_RD_ACPI_GFAN:
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03007925 * ACPI GFAN method: returns fan level
7926 *
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03007927 * see TPACPI_FAN_WR_ACPI_SFAN
Henrique de Moraes Holschuhf51d1a32007-04-21 11:08:29 -03007928 * EC 0x2f (HFSP) not available if GFAN exists
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03007929 *
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03007930 * TPACPI_FAN_WR_ACPI_SFAN:
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03007931 * ACPI SFAN method: sets fan level, 0 (stop) to 7 (max)
7932 *
Henrique de Moraes Holschuhf51d1a32007-04-21 11:08:29 -03007933 * EC 0x2f (HFSP) might be available *for reading*, but do not use
7934 * it for writing.
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03007935 *
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03007936 * TPACPI_FAN_WR_TPEC:
Henrique de Moraes Holschuhf51d1a32007-04-21 11:08:29 -03007937 * ThinkPad EC register 0x2f (HFSP): fan control loop mode
7938 * Supported on almost all ThinkPads
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03007939 *
7940 * Fan speed changes of any sort (including those caused by the
7941 * disengaged mode) are usually done slowly by the firmware as the
Uwe Kleine-König9ddc5b62010-01-20 17:02:24 +01007942 * maximum amount of fan duty cycle change per second seems to be
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03007943 * limited.
7944 *
7945 * Reading is not available if GFAN exists.
7946 * Writing is not available if SFAN exists.
7947 *
7948 * Bits
7949 * 7 automatic mode engaged;
7950 * (default operation mode of the ThinkPad)
7951 * fan level is ignored in this mode.
Henrique de Moraes Holschuhf51d1a32007-04-21 11:08:29 -03007952 * 6 full speed mode (takes precedence over bit 7);
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03007953 * not available on all thinkpads. May disable
Henrique de Moraes Holschuhf51d1a32007-04-21 11:08:29 -03007954 * the tachometer while the fan controller ramps up
7955 * the speed (which can take up to a few *minutes*).
7956 * Speeds up fan to 100% duty-cycle, which is far above
7957 * the standard RPM levels. It is not impossible that
7958 * it could cause hardware damage.
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03007959 * 5-3 unused in some models. Extra bits for fan level
7960 * in others, but still useless as all values above
7961 * 7 map to the same speed as level 7 in these models.
7962 * 2-0 fan level (0..7 usually)
7963 * 0x00 = stop
7964 * 0x07 = max (set when temperatures critical)
7965 * Some ThinkPads may have other levels, see
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03007966 * TPACPI_FAN_WR_ACPI_FANS (X31/X40/X41)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03007967 *
7968 * FIRMWARE BUG: on some models, EC 0x2f might not be initialized at
Uwe Kleine-Königb5950762010-11-01 15:38:34 -04007969 * boot. Apparently the EC does not initialize it, so unless ACPI DSDT
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03007970 * does so, its initial value is meaningless (0x07).
7971 *
7972 * For firmware bugs, refer to:
7973 * http://thinkwiki.org/wiki/Embedded_Controller_Firmware#Firmware_Issues
7974 *
7975 * ----
7976 *
7977 * ThinkPad EC register 0x84 (LSB), 0x85 (MSB):
7978 * Main fan tachometer reading (in RPM)
7979 *
7980 * This register is present on all ThinkPads with a new-style EC, and
7981 * it is known not to be present on the A21m/e, and T22, as there is
7982 * something else in offset 0x84 according to the ACPI DSDT. Other
7983 * ThinkPads from this same time period (and earlier) probably lack the
7984 * tachometer as well.
7985 *
Nick Andrew877d0312009-01-26 11:06:57 +01007986 * Unfortunately a lot of ThinkPads with new-style ECs but whose firmware
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03007987 * was never fixed by IBM to report the EC firmware version string
7988 * probably support the tachometer (like the early X models), so
7989 * detecting it is quite hard. We need more data to know for sure.
7990 *
7991 * FIRMWARE BUG: always read 0x84 first, otherwise incorrect readings
7992 * might result.
7993 *
Henrique de Moraes Holschuhf51d1a32007-04-21 11:08:29 -03007994 * FIRMWARE BUG: may go stale while the EC is switching to full speed
7995 * mode.
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03007996 *
7997 * For firmware bugs, refer to:
7998 * http://thinkwiki.org/wiki/Embedded_Controller_Firmware#Firmware_Issues
7999 *
Henrique de Moraes Holschuhd7377242009-06-18 00:40:17 -03008000 * ----
8001 *
8002 * ThinkPad EC register 0x31 bit 0 (only on select models)
8003 *
8004 * When bit 0 of EC register 0x31 is zero, the tachometer registers
8005 * show the speed of the main fan. When bit 0 of EC register 0x31
8006 * is one, the tachometer registers show the speed of the auxiliary
8007 * fan.
8008 *
8009 * Fan control seems to affect both fans, regardless of the state
8010 * of this bit.
8011 *
8012 * So far, only the firmware for the X60/X61 non-tablet versions
8013 * seem to support this (firmware TP-7M).
8014 *
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03008015 * TPACPI_FAN_WR_ACPI_FANS:
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03008016 * ThinkPad X31, X40, X41. Not available in the X60.
8017 *
8018 * FANS ACPI handle: takes three arguments: low speed, medium speed,
8019 * high speed. ACPI DSDT seems to map these three speeds to levels
8020 * as follows: STOP LOW LOW MED MED HIGH HIGH HIGH HIGH
8021 * (this map is stored on FAN0..FAN8 as "0,1,1,2,2,3,3,3,3")
8022 *
8023 * The speeds are stored on handles
8024 * (FANA:FAN9), (FANC:FANB), (FANE:FAND).
8025 *
André Goddard Rosaaf901ca2009-11-14 13:09:05 -02008026 * There are three default speed sets, accessible as handles:
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03008027 * FS1L,FS1M,FS1H; FS2L,FS2M,FS2H; FS3L,FS3M,FS3H
8028 *
8029 * ACPI DSDT switches which set is in use depending on various
8030 * factors.
8031 *
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03008032 * TPACPI_FAN_WR_TPEC is also available and should be used to
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03008033 * command the fan. The X31/X40/X41 seems to have 8 fan levels,
8034 * but the ACPI tables just mention level 7.
8035 */
8036
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02008037enum { /* Fan control constants */
8038 fan_status_offset = 0x2f, /* EC register 0x2f */
8039 fan_rpm_offset = 0x84, /* EC register 0x84: LSB, 0x85 MSB (RPM)
8040 * 0x84 must be read before 0x85 */
Henrique de Moraes Holschuhd7377242009-06-18 00:40:17 -03008041 fan_select_offset = 0x31, /* EC register 0x31 (Firmware 7M)
8042 bit 0 selects which fan is active */
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02008043
8044 TP_EC_FAN_FULLSPEED = 0x40, /* EC fan mode: full speed */
8045 TP_EC_FAN_AUTO = 0x80, /* EC fan mode: auto fan control */
8046
8047 TPACPI_FAN_LAST_LEVEL = 0x100, /* Use cached last-seen fan level */
8048};
8049
8050enum fan_status_access_mode {
8051 TPACPI_FAN_NONE = 0, /* No fan status or control */
8052 TPACPI_FAN_RD_ACPI_GFAN, /* Use ACPI GFAN */
8053 TPACPI_FAN_RD_TPEC, /* Use ACPI EC regs 0x2f, 0x84-0x85 */
8054};
8055
8056enum fan_control_access_mode {
8057 TPACPI_FAN_WR_NONE = 0, /* No fan control */
8058 TPACPI_FAN_WR_ACPI_SFAN, /* Use ACPI SFAN */
8059 TPACPI_FAN_WR_TPEC, /* Use ACPI EC reg 0x2f */
8060 TPACPI_FAN_WR_ACPI_FANS, /* Use ACPI FANS and EC reg 0x2f */
8061};
8062
8063enum fan_control_commands {
8064 TPACPI_FAN_CMD_SPEED = 0x0001, /* speed command */
8065 TPACPI_FAN_CMD_LEVEL = 0x0002, /* level command */
8066 TPACPI_FAN_CMD_ENABLE = 0x0004, /* enable/disable cmd,
8067 * and also watchdog cmd */
8068};
8069
Rusty Russell90ab5ee2012-01-13 09:32:20 +10308070static bool fan_control_allowed;
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02008071
Henrique de Moraes Holschuh69ba91c2006-11-24 11:47:09 -02008072static enum fan_status_access_mode fan_status_access_mode;
8073static enum fan_control_access_mode fan_control_access_mode;
8074static enum fan_control_commands fan_control_commands;
8075
Henrique de Moraes Holschuh778b4d72006-11-24 11:47:14 -02008076static u8 fan_control_initial_status;
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03008077static u8 fan_control_desired_level;
Henrique de Moraes Holschuh0081b162008-11-09 10:54:02 -02008078static u8 fan_control_resume_level;
Henrique de Moraes Holschuh16663a82006-11-24 11:47:14 -02008079static int fan_watchdog_maxinterval;
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02008080
8081static struct mutex fan_mutex;
8082
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02008083static void fan_watchdog_fire(struct work_struct *ignored);
Len Brown25c68a32006-12-08 04:43:41 -05008084static DECLARE_DELAYED_WORK(fan_watchdog_task, fan_watchdog_fire);
Henrique de Moraes Holschuh16663a82006-11-24 11:47:14 -02008085
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02008086TPACPI_HANDLE(fans, ec, "FANS"); /* X31, X40, X41 */
8087TPACPI_HANDLE(gfan, ec, "GFAN", /* 570 */
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03008088 "\\FSPD", /* 600e/x, 770e, 770x */
8089 ); /* all others */
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02008090TPACPI_HANDLE(sfan, ec, "SFAN", /* 570 */
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03008091 "JFNS", /* 770x-JL */
8092 ); /* all others */
8093
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03008094/*
Henrique de Moraes Holschuh1c2ece72009-01-11 03:01:08 -02008095 * Unitialized HFSP quirk: ACPI DSDT and EC fail to initialize the
8096 * HFSP register at boot, so it contains 0x07 but the Thinkpad could
8097 * be in auto mode (0x80).
8098 *
8099 * This is corrected by any write to HFSP either by the driver, or
8100 * by the firmware.
8101 *
8102 * We assume 0x07 really means auto mode while this quirk is active,
8103 * as this is far more likely than the ThinkPad being in level 7,
8104 * which is only used by the firmware during thermal emergencies.
Henrique de Moraes Holschuh7d95a3d2009-05-30 13:25:06 -03008105 *
8106 * Enable for TP-1Y (T43), TP-78 (R51e), TP-76 (R52),
8107 * TP-70 (T43, R52), which are known to be buggy.
Henrique de Moraes Holschuh1c2ece72009-01-11 03:01:08 -02008108 */
8109
Henrique de Moraes Holschuh7d95a3d2009-05-30 13:25:06 -03008110static void fan_quirk1_setup(void)
Henrique de Moraes Holschuh1c2ece72009-01-11 03:01:08 -02008111{
Henrique de Moraes Holschuh1c2ece72009-01-11 03:01:08 -02008112 if (fan_control_initial_status == 0x07) {
Andy Shevchenko5cac62a2017-05-09 17:17:20 +03008113 pr_notice("fan_init: initial fan status is unknown, assuming it is in auto mode\n");
Henrique de Moraes Holschuh7d95a3d2009-05-30 13:25:06 -03008114 tp_features.fan_ctrl_status_undef = 1;
Henrique de Moraes Holschuh1c2ece72009-01-11 03:01:08 -02008115 }
8116}
8117
8118static void fan_quirk1_handle(u8 *fan_status)
8119{
8120 if (unlikely(tp_features.fan_ctrl_status_undef)) {
8121 if (*fan_status != fan_control_initial_status) {
8122 /* something changed the HFSP regisnter since
8123 * driver init time, so it is not undefined
8124 * anymore */
8125 tp_features.fan_ctrl_status_undef = 0;
8126 } else {
8127 /* Return most likely status. In fact, it
8128 * might be the only possible status */
8129 *fan_status = TP_EC_FAN_AUTO;
8130 }
8131 }
8132}
8133
Henrique de Moraes Holschuhd7377242009-06-18 00:40:17 -03008134/* Select main fan on X60/X61, NOOP on others */
8135static bool fan_select_fan1(void)
8136{
8137 if (tp_features.second_fan) {
8138 u8 val;
8139
8140 if (ec_read(fan_select_offset, &val) < 0)
8141 return false;
8142 val &= 0xFEU;
8143 if (ec_write(fan_select_offset, val) < 0)
8144 return false;
8145 }
8146 return true;
8147}
8148
8149/* Select secondary fan on X60/X61 */
8150static bool fan_select_fan2(void)
8151{
8152 u8 val;
8153
8154 if (!tp_features.second_fan)
8155 return false;
8156
8157 if (ec_read(fan_select_offset, &val) < 0)
8158 return false;
8159 val |= 0x01U;
8160 if (ec_write(fan_select_offset, val) < 0)
8161 return false;
8162
8163 return true;
8164}
8165
Henrique de Moraes Holschuh1c2ece72009-01-11 03:01:08 -02008166/*
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02008167 * Call with fan_mutex held
8168 */
8169static void fan_update_desired_level(u8 status)
8170{
8171 if ((status &
8172 (TP_EC_FAN_AUTO | TP_EC_FAN_FULLSPEED)) == 0) {
8173 if (status > 7)
8174 fan_control_desired_level = 7;
8175 else
8176 fan_control_desired_level = status;
8177 }
8178}
8179
8180static int fan_get_status(u8 *status)
8181{
8182 u8 s;
8183
8184 /* TODO:
8185 * Add TPACPI_FAN_RD_ACPI_FANS ? */
8186
8187 switch (fan_status_access_mode) {
Dan Carpentereceeb432012-09-01 12:54:07 -07008188 case TPACPI_FAN_RD_ACPI_GFAN: {
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02008189 /* 570, 600e/x, 770e, 770x */
Dan Carpentereceeb432012-09-01 12:54:07 -07008190 int res;
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02008191
Dan Carpentereceeb432012-09-01 12:54:07 -07008192 if (unlikely(!acpi_evalf(gfan_handle, &res, NULL, "d")))
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02008193 return -EIO;
8194
8195 if (likely(status))
Dan Carpentereceeb432012-09-01 12:54:07 -07008196 *status = res & 0x07;
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02008197
8198 break;
Dan Carpentereceeb432012-09-01 12:54:07 -07008199 }
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02008200 case TPACPI_FAN_RD_TPEC:
8201 /* all except 570, 600e/x, 770e, 770x */
8202 if (unlikely(!acpi_ec_read(fan_status_offset, &s)))
8203 return -EIO;
8204
Henrique de Moraes Holschuh1c2ece72009-01-11 03:01:08 -02008205 if (likely(status)) {
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02008206 *status = s;
Henrique de Moraes Holschuh1c2ece72009-01-11 03:01:08 -02008207 fan_quirk1_handle(status);
8208 }
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02008209
8210 break;
8211
8212 default:
8213 return -ENXIO;
8214 }
8215
8216 return 0;
8217}
8218
8219static int fan_get_status_safe(u8 *status)
8220{
8221 int rc;
8222 u8 s;
8223
Henrique de Moraes Holschuh7646ea82009-01-11 03:01:04 -02008224 if (mutex_lock_killable(&fan_mutex))
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02008225 return -ERESTARTSYS;
8226 rc = fan_get_status(&s);
8227 if (!rc)
8228 fan_update_desired_level(s);
8229 mutex_unlock(&fan_mutex);
8230
Dan Carpentera7718362016-04-15 17:46:34 +03008231 if (rc)
8232 return rc;
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02008233 if (status)
8234 *status = s;
8235
Dan Carpentera7718362016-04-15 17:46:34 +03008236 return 0;
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02008237}
8238
8239static int fan_get_speed(unsigned int *speed)
8240{
8241 u8 hi, lo;
8242
8243 switch (fan_status_access_mode) {
8244 case TPACPI_FAN_RD_TPEC:
8245 /* all except 570, 600e/x, 770e, 770x */
Henrique de Moraes Holschuhd7377242009-06-18 00:40:17 -03008246 if (unlikely(!fan_select_fan1()))
8247 return -EIO;
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02008248 if (unlikely(!acpi_ec_read(fan_rpm_offset, &lo) ||
8249 !acpi_ec_read(fan_rpm_offset + 1, &hi)))
8250 return -EIO;
8251
8252 if (likely(speed))
8253 *speed = (hi << 8) | lo;
8254
8255 break;
8256
8257 default:
8258 return -ENXIO;
8259 }
8260
8261 return 0;
8262}
8263
Henrique de Moraes Holschuhd7377242009-06-18 00:40:17 -03008264static int fan2_get_speed(unsigned int *speed)
8265{
8266 u8 hi, lo;
8267 bool rc;
8268
8269 switch (fan_status_access_mode) {
8270 case TPACPI_FAN_RD_TPEC:
8271 /* all except 570, 600e/x, 770e, 770x */
8272 if (unlikely(!fan_select_fan2()))
8273 return -EIO;
8274 rc = !acpi_ec_read(fan_rpm_offset, &lo) ||
8275 !acpi_ec_read(fan_rpm_offset + 1, &hi);
8276 fan_select_fan1(); /* play it safe */
8277 if (rc)
8278 return -EIO;
8279
8280 if (likely(speed))
8281 *speed = (hi << 8) | lo;
8282
8283 break;
8284
8285 default:
8286 return -ENXIO;
8287 }
8288
8289 return 0;
8290}
8291
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02008292static int fan_set_level(int level)
8293{
8294 if (!fan_control_allowed)
8295 return -EPERM;
8296
8297 switch (fan_control_access_mode) {
8298 case TPACPI_FAN_WR_ACPI_SFAN:
Lars Hofhansl14232c62020-04-23 14:57:09 -07008299 if ((level < 0) || (level > 7))
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02008300 return -EINVAL;
Lars Hofhansl14232c62020-04-23 14:57:09 -07008301
8302 if (tp_features.second_fan_ctl) {
8303 if (!fan_select_fan2() ||
8304 !acpi_evalf(sfan_handle, NULL, NULL, "vd", level)) {
8305 pr_warn("Couldn't set 2nd fan level, disabling support\n");
8306 tp_features.second_fan_ctl = 0;
8307 }
8308 fan_select_fan1();
8309 }
8310 if (!acpi_evalf(sfan_handle, NULL, NULL, "vd", level))
8311 return -EIO;
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02008312 break;
8313
8314 case TPACPI_FAN_WR_ACPI_FANS:
8315 case TPACPI_FAN_WR_TPEC:
Henrique de Moraes Holschuh0081b162008-11-09 10:54:02 -02008316 if (!(level & TP_EC_FAN_AUTO) &&
8317 !(level & TP_EC_FAN_FULLSPEED) &&
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02008318 ((level < 0) || (level > 7)))
8319 return -EINVAL;
8320
8321 /* safety net should the EC not support AUTO
8322 * or FULLSPEED mode bits and just ignore them */
8323 if (level & TP_EC_FAN_FULLSPEED)
8324 level |= 7; /* safety min speed 7 */
Roel Kluin547266e2008-02-05 00:24:56 +01008325 else if (level & TP_EC_FAN_AUTO)
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02008326 level |= 4; /* safety min speed 4 */
8327
Lars Hofhansl14232c62020-04-23 14:57:09 -07008328 if (tp_features.second_fan_ctl) {
8329 if (!fan_select_fan2() ||
8330 !acpi_ec_write(fan_status_offset, level)) {
8331 pr_warn("Couldn't set 2nd fan level, disabling support\n");
8332 tp_features.second_fan_ctl = 0;
8333 }
8334 fan_select_fan1();
8335
8336 }
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02008337 if (!acpi_ec_write(fan_status_offset, level))
8338 return -EIO;
8339 else
8340 tp_features.fan_ctrl_status_undef = 0;
8341 break;
8342
8343 default:
8344 return -ENXIO;
8345 }
Henrique de Moraes Holschuh74a60c02009-04-04 04:25:52 +00008346
8347 vdbg_printk(TPACPI_DBG_FAN,
8348 "fan control: set fan control register to 0x%02x\n", level);
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02008349 return 0;
8350}
8351
8352static int fan_set_level_safe(int level)
8353{
8354 int rc;
8355
8356 if (!fan_control_allowed)
8357 return -EPERM;
8358
Henrique de Moraes Holschuh7646ea82009-01-11 03:01:04 -02008359 if (mutex_lock_killable(&fan_mutex))
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02008360 return -ERESTARTSYS;
8361
8362 if (level == TPACPI_FAN_LAST_LEVEL)
8363 level = fan_control_desired_level;
8364
8365 rc = fan_set_level(level);
8366 if (!rc)
8367 fan_update_desired_level(level);
8368
8369 mutex_unlock(&fan_mutex);
8370 return rc;
8371}
8372
8373static int fan_set_enable(void)
8374{
8375 u8 s;
8376 int rc;
8377
8378 if (!fan_control_allowed)
8379 return -EPERM;
8380
Henrique de Moraes Holschuh7646ea82009-01-11 03:01:04 -02008381 if (mutex_lock_killable(&fan_mutex))
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02008382 return -ERESTARTSYS;
8383
8384 switch (fan_control_access_mode) {
8385 case TPACPI_FAN_WR_ACPI_FANS:
8386 case TPACPI_FAN_WR_TPEC:
8387 rc = fan_get_status(&s);
8388 if (rc < 0)
8389 break;
8390
8391 /* Don't go out of emergency fan mode */
8392 if (s != 7) {
8393 s &= 0x07;
8394 s |= TP_EC_FAN_AUTO | 4; /* min fan speed 4 */
8395 }
8396
8397 if (!acpi_ec_write(fan_status_offset, s))
8398 rc = -EIO;
8399 else {
8400 tp_features.fan_ctrl_status_undef = 0;
8401 rc = 0;
8402 }
8403 break;
8404
8405 case TPACPI_FAN_WR_ACPI_SFAN:
8406 rc = fan_get_status(&s);
8407 if (rc < 0)
8408 break;
8409
8410 s &= 0x07;
8411
8412 /* Set fan to at least level 4 */
8413 s |= 4;
8414
8415 if (!acpi_evalf(sfan_handle, NULL, NULL, "vd", s))
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02008416 rc = -EIO;
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02008417 else
8418 rc = 0;
8419 break;
8420
8421 default:
8422 rc = -ENXIO;
8423 }
8424
8425 mutex_unlock(&fan_mutex);
Henrique de Moraes Holschuh74a60c02009-04-04 04:25:52 +00008426
8427 if (!rc)
8428 vdbg_printk(TPACPI_DBG_FAN,
8429 "fan control: set fan control register to 0x%02x\n",
8430 s);
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02008431 return rc;
8432}
8433
8434static int fan_set_disable(void)
8435{
8436 int rc;
8437
8438 if (!fan_control_allowed)
8439 return -EPERM;
8440
Henrique de Moraes Holschuh7646ea82009-01-11 03:01:04 -02008441 if (mutex_lock_killable(&fan_mutex))
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02008442 return -ERESTARTSYS;
8443
8444 rc = 0;
8445 switch (fan_control_access_mode) {
8446 case TPACPI_FAN_WR_ACPI_FANS:
8447 case TPACPI_FAN_WR_TPEC:
8448 if (!acpi_ec_write(fan_status_offset, 0x00))
8449 rc = -EIO;
8450 else {
8451 fan_control_desired_level = 0;
8452 tp_features.fan_ctrl_status_undef = 0;
8453 }
8454 break;
8455
8456 case TPACPI_FAN_WR_ACPI_SFAN:
8457 if (!acpi_evalf(sfan_handle, NULL, NULL, "vd", 0x00))
8458 rc = -EIO;
8459 else
8460 fan_control_desired_level = 0;
8461 break;
8462
8463 default:
8464 rc = -ENXIO;
8465 }
8466
Henrique de Moraes Holschuh74a60c02009-04-04 04:25:52 +00008467 if (!rc)
8468 vdbg_printk(TPACPI_DBG_FAN,
8469 "fan control: set fan control register to 0\n");
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02008470
8471 mutex_unlock(&fan_mutex);
8472 return rc;
8473}
8474
8475static int fan_set_speed(int speed)
8476{
8477 int rc;
8478
8479 if (!fan_control_allowed)
8480 return -EPERM;
8481
Henrique de Moraes Holschuh7646ea82009-01-11 03:01:04 -02008482 if (mutex_lock_killable(&fan_mutex))
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02008483 return -ERESTARTSYS;
8484
8485 rc = 0;
8486 switch (fan_control_access_mode) {
8487 case TPACPI_FAN_WR_ACPI_FANS:
8488 if (speed >= 0 && speed <= 65535) {
8489 if (!acpi_evalf(fans_handle, NULL, NULL, "vddd",
8490 speed, speed, speed))
8491 rc = -EIO;
8492 } else
8493 rc = -EINVAL;
8494 break;
8495
8496 default:
8497 rc = -ENXIO;
8498 }
8499
8500 mutex_unlock(&fan_mutex);
8501 return rc;
8502}
8503
8504static void fan_watchdog_reset(void)
8505{
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02008506 if (fan_control_access_mode == TPACPI_FAN_WR_NONE)
8507 return;
8508
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02008509 if (fan_watchdog_maxinterval > 0 &&
Tejun Heo41f63c52012-08-03 10:30:47 -07008510 tpacpi_lifecycle != TPACPI_LIFE_EXITING)
8511 mod_delayed_work(tpacpi_wq, &fan_watchdog_task,
8512 msecs_to_jiffies(fan_watchdog_maxinterval * 1000));
8513 else
8514 cancel_delayed_work(&fan_watchdog_task);
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02008515}
8516
8517static void fan_watchdog_fire(struct work_struct *ignored)
8518{
8519 int rc;
8520
8521 if (tpacpi_lifecycle != TPACPI_LIFE_RUNNING)
8522 return;
8523
Joe Perches0978e012011-04-04 10:06:25 -07008524 pr_notice("fan watchdog: enabling fan\n");
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02008525 rc = fan_set_enable();
8526 if (rc < 0) {
Andy Shevchenko5cac62a2017-05-09 17:17:20 +03008527 pr_err("fan watchdog: error %d while enabling fan, will try again later...\n",
8528 rc);
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02008529 /* reschedule for later */
8530 fan_watchdog_reset();
8531 }
8532}
8533
8534/*
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03008535 * SYSFS fan layout: hwmon compatible (device)
8536 *
8537 * pwm*_enable:
8538 * 0: "disengaged" mode
8539 * 1: manual mode
8540 * 2: native EC "auto" mode (recommended, hardware default)
8541 *
8542 * pwm*: set speed in manual mode, ignored otherwise.
8543 * 0 is level 0; 255 is level 7. Intermediate points done with linear
8544 * interpolation.
8545 *
8546 * fan*_input: tachometer reading, RPM
8547 *
8548 *
8549 * SYSFS fan layout: extensions
8550 *
8551 * fan_watchdog (driver):
8552 * fan watchdog interval in seconds, 0 disables (default), max 120
8553 */
8554
8555/* sysfs fan pwm1_enable ----------------------------------------------- */
8556static ssize_t fan_pwm1_enable_show(struct device *dev,
8557 struct device_attribute *attr,
8558 char *buf)
8559{
8560 int res, mode;
8561 u8 status;
8562
8563 res = fan_get_status_safe(&status);
8564 if (res)
8565 return res;
8566
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03008567 if (status & TP_EC_FAN_FULLSPEED) {
8568 mode = 0;
8569 } else if (status & TP_EC_FAN_AUTO) {
8570 mode = 2;
8571 } else
8572 mode = 1;
8573
8574 return snprintf(buf, PAGE_SIZE, "%d\n", mode);
8575}
8576
8577static ssize_t fan_pwm1_enable_store(struct device *dev,
8578 struct device_attribute *attr,
8579 const char *buf, size_t count)
8580{
8581 unsigned long t;
8582 int res, level;
8583
8584 if (parse_strtoul(buf, 2, &t))
8585 return -EINVAL;
8586
Henrique de Moraes Holschuh74a60c02009-04-04 04:25:52 +00008587 tpacpi_disclose_usertask("hwmon pwm1_enable",
8588 "set fan mode to %lu\n", t);
8589
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03008590 switch (t) {
8591 case 0:
8592 level = TP_EC_FAN_FULLSPEED;
8593 break;
8594 case 1:
8595 level = TPACPI_FAN_LAST_LEVEL;
8596 break;
8597 case 2:
8598 level = TP_EC_FAN_AUTO;
8599 break;
8600 case 3:
8601 /* reserved for software-controlled auto mode */
8602 return -ENOSYS;
8603 default:
8604 return -EINVAL;
8605 }
8606
8607 res = fan_set_level_safe(level);
Henrique de Moraes Holschuhc573ddb2007-04-27 22:00:12 -03008608 if (res == -ENXIO)
8609 return -EINVAL;
8610 else if (res < 0)
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03008611 return res;
8612
8613 fan_watchdog_reset();
8614
8615 return count;
8616}
8617
Bjørn Mork5fb73bc2015-05-19 19:45:03 +02008618static DEVICE_ATTR(pwm1_enable, S_IWUSR | S_IRUGO,
8619 fan_pwm1_enable_show, fan_pwm1_enable_store);
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03008620
8621/* sysfs fan pwm1 ------------------------------------------------------ */
8622static ssize_t fan_pwm1_show(struct device *dev,
8623 struct device_attribute *attr,
8624 char *buf)
8625{
8626 int res;
8627 u8 status;
8628
8629 res = fan_get_status_safe(&status);
8630 if (res)
8631 return res;
8632
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03008633 if ((status &
8634 (TP_EC_FAN_AUTO | TP_EC_FAN_FULLSPEED)) != 0)
8635 status = fan_control_desired_level;
8636
8637 if (status > 7)
8638 status = 7;
8639
8640 return snprintf(buf, PAGE_SIZE, "%u\n", (status * 255) / 7);
8641}
8642
8643static ssize_t fan_pwm1_store(struct device *dev,
8644 struct device_attribute *attr,
8645 const char *buf, size_t count)
8646{
8647 unsigned long s;
8648 int rc;
8649 u8 status, newlevel;
8650
8651 if (parse_strtoul(buf, 255, &s))
8652 return -EINVAL;
8653
Henrique de Moraes Holschuh74a60c02009-04-04 04:25:52 +00008654 tpacpi_disclose_usertask("hwmon pwm1",
8655 "set fan speed to %lu\n", s);
8656
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03008657 /* scale down from 0-255 to 0-7 */
8658 newlevel = (s >> 5) & 0x07;
8659
Henrique de Moraes Holschuh7646ea82009-01-11 03:01:04 -02008660 if (mutex_lock_killable(&fan_mutex))
Henrique de Moraes Holschuhfc589a32007-10-30 17:46:24 -02008661 return -ERESTARTSYS;
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03008662
8663 rc = fan_get_status(&status);
8664 if (!rc && (status &
8665 (TP_EC_FAN_AUTO | TP_EC_FAN_FULLSPEED)) == 0) {
8666 rc = fan_set_level(newlevel);
Henrique de Moraes Holschuhc573ddb2007-04-27 22:00:12 -03008667 if (rc == -ENXIO)
8668 rc = -EINVAL;
8669 else if (!rc) {
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03008670 fan_update_desired_level(newlevel);
Henrique de Moraes Holschuhca4ac2f2007-04-27 22:00:11 -03008671 fan_watchdog_reset();
8672 }
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03008673 }
8674
8675 mutex_unlock(&fan_mutex);
Jan van den Berg72a979f2014-09-17 00:01:08 +02008676 return (rc) ? rc : count;
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03008677}
8678
Bjørn Mork5fb73bc2015-05-19 19:45:03 +02008679static DEVICE_ATTR(pwm1, S_IWUSR | S_IRUGO, fan_pwm1_show, fan_pwm1_store);
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03008680
8681/* sysfs fan fan1_input ------------------------------------------------ */
8682static ssize_t fan_fan1_input_show(struct device *dev,
8683 struct device_attribute *attr,
8684 char *buf)
8685{
8686 int res;
8687 unsigned int speed;
8688
8689 res = fan_get_speed(&speed);
8690 if (res < 0)
8691 return res;
8692
8693 return snprintf(buf, PAGE_SIZE, "%u\n", speed);
8694}
8695
Bjørn Mork5fb73bc2015-05-19 19:45:03 +02008696static DEVICE_ATTR(fan1_input, S_IRUGO, fan_fan1_input_show, NULL);
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03008697
Henrique de Moraes Holschuhd7377242009-06-18 00:40:17 -03008698/* sysfs fan fan2_input ------------------------------------------------ */
8699static ssize_t fan_fan2_input_show(struct device *dev,
8700 struct device_attribute *attr,
8701 char *buf)
8702{
8703 int res;
8704 unsigned int speed;
8705
8706 res = fan2_get_speed(&speed);
8707 if (res < 0)
8708 return res;
8709
8710 return snprintf(buf, PAGE_SIZE, "%u\n", speed);
8711}
8712
Bjørn Mork5fb73bc2015-05-19 19:45:03 +02008713static DEVICE_ATTR(fan2_input, S_IRUGO, fan_fan2_input_show, NULL);
Henrique de Moraes Holschuhd7377242009-06-18 00:40:17 -03008714
Henrique de Moraes Holschuh7fd40022007-09-25 06:38:03 -03008715/* sysfs fan fan_watchdog (hwmon driver) ------------------------------- */
Greg Kroah-Hartmanac3054c2017-06-09 11:03:12 +02008716static ssize_t fan_watchdog_show(struct device_driver *drv, char *buf)
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03008717{
8718 return snprintf(buf, PAGE_SIZE, "%u\n", fan_watchdog_maxinterval);
8719}
8720
Greg Kroah-Hartmanac3054c2017-06-09 11:03:12 +02008721static ssize_t fan_watchdog_store(struct device_driver *drv, const char *buf,
8722 size_t count)
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03008723{
8724 unsigned long t;
8725
8726 if (parse_strtoul(buf, 120, &t))
8727 return -EINVAL;
8728
Henrique de Moraes Holschuhecf2a802007-04-27 22:00:09 -03008729 if (!fan_control_allowed)
8730 return -EPERM;
8731
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03008732 fan_watchdog_maxinterval = t;
8733 fan_watchdog_reset();
8734
Henrique de Moraes Holschuh74a60c02009-04-04 04:25:52 +00008735 tpacpi_disclose_usertask("fan_watchdog", "set to %lu\n", t);
8736
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03008737 return count;
8738}
Greg Kroah-Hartmanac3054c2017-06-09 11:03:12 +02008739static DRIVER_ATTR_RW(fan_watchdog);
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03008740
8741/* --------------------------------------------------------------------- */
8742static struct attribute *fan_attributes[] = {
Bjørn Mork5fb73bc2015-05-19 19:45:03 +02008743 &dev_attr_pwm1_enable.attr, &dev_attr_pwm1.attr,
8744 &dev_attr_fan1_input.attr,
Henrique de Moraes Holschuhd7377242009-06-18 00:40:17 -03008745 NULL, /* for fan2_input */
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03008746 NULL
8747};
8748
8749static const struct attribute_group fan_attr_group = {
8750 .attrs = fan_attributes,
8751};
8752
Jouke Witteveen599eeff2018-12-05 12:17:52 +01008753#define TPACPI_FAN_Q1 0x0001 /* Unitialized HFSP */
Henrique de Moraes Holschuhd7377242009-06-18 00:40:17 -03008754#define TPACPI_FAN_2FAN 0x0002 /* EC 0x31 bit 0 selects fan2 */
Lars Hofhansl14232c62020-04-23 14:57:09 -07008755#define TPACPI_FAN_2CTL 0x0004 /* selects fan2 control */
Henrique de Moraes Holschuh7d95a3d2009-05-30 13:25:06 -03008756
Henrique de Moraes Holschuh7d95a3d2009-05-30 13:25:06 -03008757static const struct tpacpi_quirk fan_quirk_table[] __initconst = {
Jouke Witteveen599eeff2018-12-05 12:17:52 +01008758 TPACPI_QEC_IBM('1', 'Y', TPACPI_FAN_Q1),
8759 TPACPI_QEC_IBM('7', '8', TPACPI_FAN_Q1),
8760 TPACPI_QEC_IBM('7', '6', TPACPI_FAN_Q1),
8761 TPACPI_QEC_IBM('7', '0', TPACPI_FAN_Q1),
8762 TPACPI_QEC_LNV('7', 'M', TPACPI_FAN_2FAN),
8763 TPACPI_Q_LNV('N', '1', TPACPI_FAN_2FAN),
Lars Hofhansl14232c62020-04-23 14:57:09 -07008764 TPACPI_Q_LNV3('N', '1', 'D', TPACPI_FAN_2CTL), /* P70 */
8765 TPACPI_Q_LNV3('N', '1', 'E', TPACPI_FAN_2CTL), /* P50 */
8766 TPACPI_Q_LNV3('N', '1', 'T', TPACPI_FAN_2CTL), /* P71 */
8767 TPACPI_Q_LNV3('N', '1', 'U', TPACPI_FAN_2CTL), /* P51 */
8768 TPACPI_Q_LNV3('N', '2', 'C', TPACPI_FAN_2CTL), /* P52 / P72 */
8769 TPACPI_Q_LNV3('N', '2', 'E', TPACPI_FAN_2CTL), /* P1 / X1 Extreme (1st gen) */
8770 TPACPI_Q_LNV3('N', '2', 'O', TPACPI_FAN_2CTL), /* P1 / X1 Extreme (2nd gen) */
Henrique de Moraes Holschuh7d95a3d2009-05-30 13:25:06 -03008771};
8772
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03008773static int __init fan_init(struct ibm_init_struct *iibm)
Henrique de Moraes Holschuh69ba91c2006-11-24 11:47:09 -02008774{
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03008775 int rc;
Henrique de Moraes Holschuh7d95a3d2009-05-30 13:25:06 -03008776 unsigned long quirks;
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03008777
Henrique de Moraes Holschuh74a60c02009-04-04 04:25:52 +00008778 vdbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_FAN,
8779 "initializing fan subdriver\n");
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03008780
Henrique de Moraes Holschuh40ca9fd2007-04-24 11:48:15 -03008781 mutex_init(&fan_mutex);
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03008782 fan_status_access_mode = TPACPI_FAN_NONE;
8783 fan_control_access_mode = TPACPI_FAN_WR_NONE;
Henrique de Moraes Holschuh69ba91c2006-11-24 11:47:09 -02008784 fan_control_commands = 0;
Henrique de Moraes Holschuh16663a82006-11-24 11:47:14 -02008785 fan_watchdog_maxinterval = 0;
Henrique de Moraes Holschuhd8fd94d2007-04-21 11:08:36 -03008786 tp_features.fan_ctrl_status_undef = 0;
Henrique de Moraes Holschuhd7377242009-06-18 00:40:17 -03008787 tp_features.second_fan = 0;
Lars Hofhansl14232c62020-04-23 14:57:09 -07008788 tp_features.second_fan_ctl = 0;
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03008789 fan_control_desired_level = 7;
Henrique de Moraes Holschuh69ba91c2006-11-24 11:47:09 -02008790
Henrique de Moraes Holschuhe28393c2010-05-16 19:45:23 -03008791 if (tpacpi_is_ibm()) {
8792 TPACPI_ACPIHANDLE_INIT(fans);
8793 TPACPI_ACPIHANDLE_INIT(gfan);
8794 TPACPI_ACPIHANDLE_INIT(sfan);
8795 }
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03008796
Henrique de Moraes Holschuh7d95a3d2009-05-30 13:25:06 -03008797 quirks = tpacpi_check_quirks(fan_quirk_table,
8798 ARRAY_SIZE(fan_quirk_table));
8799
Henrique de Moraes Holschuh69ba91c2006-11-24 11:47:09 -02008800 if (gfan_handle) {
8801 /* 570, 600e/x, 770e, 770x */
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03008802 fan_status_access_mode = TPACPI_FAN_RD_ACPI_GFAN;
Henrique de Moraes Holschuh69ba91c2006-11-24 11:47:09 -02008803 } else {
8804 /* all other ThinkPads: note that even old-style
8805 * ThinkPad ECs supports the fan control register */
Henrique de Moraes Holschuh778b4d72006-11-24 11:47:14 -02008806 if (likely(acpi_ec_read(fan_status_offset,
8807 &fan_control_initial_status))) {
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03008808 fan_status_access_mode = TPACPI_FAN_RD_TPEC;
Henrique de Moraes Holschuh7d95a3d2009-05-30 13:25:06 -03008809 if (quirks & TPACPI_FAN_Q1)
8810 fan_quirk1_setup();
Henrique de Moraes Holschuhd7377242009-06-18 00:40:17 -03008811 if (quirks & TPACPI_FAN_2FAN) {
8812 tp_features.second_fan = 1;
Lars Hofhansl14232c62020-04-23 14:57:09 -07008813 pr_info("secondary fan support enabled\n");
8814 }
8815 if (quirks & TPACPI_FAN_2CTL) {
8816 tp_features.second_fan = 1;
8817 tp_features.second_fan_ctl = 1;
8818 pr_info("secondary fan control enabled\n");
Henrique de Moraes Holschuhd7377242009-06-18 00:40:17 -03008819 }
Henrique de Moraes Holschuh69ba91c2006-11-24 11:47:09 -02008820 } else {
Andy Shevchenko5cac62a2017-05-09 17:17:20 +03008821 pr_err("ThinkPad ACPI EC access misbehaving, fan status and control unavailable\n");
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03008822 return 1;
Henrique de Moraes Holschuh69ba91c2006-11-24 11:47:09 -02008823 }
8824 }
8825
8826 if (sfan_handle) {
8827 /* 570, 770x-JL */
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03008828 fan_control_access_mode = TPACPI_FAN_WR_ACPI_SFAN;
Henrique de Moraes Holschuh1c6a3342006-11-24 11:47:12 -02008829 fan_control_commands |=
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03008830 TPACPI_FAN_CMD_LEVEL | TPACPI_FAN_CMD_ENABLE;
Henrique de Moraes Holschuh69ba91c2006-11-24 11:47:09 -02008831 } else {
8832 if (!gfan_handle) {
8833 /* gfan without sfan means no fan control */
8834 /* all other models implement TP EC 0x2f control */
8835
8836 if (fans_handle) {
Henrique de Moraes Holschuha8b7a662006-11-24 11:47:11 -02008837 /* X31, X40, X41 */
Henrique de Moraes Holschuh69ba91c2006-11-24 11:47:09 -02008838 fan_control_access_mode =
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03008839 TPACPI_FAN_WR_ACPI_FANS;
Henrique de Moraes Holschuh69ba91c2006-11-24 11:47:09 -02008840 fan_control_commands |=
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03008841 TPACPI_FAN_CMD_SPEED |
8842 TPACPI_FAN_CMD_LEVEL |
8843 TPACPI_FAN_CMD_ENABLE;
Henrique de Moraes Holschuh69ba91c2006-11-24 11:47:09 -02008844 } else {
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03008845 fan_control_access_mode = TPACPI_FAN_WR_TPEC;
Henrique de Moraes Holschuha12095c2006-11-24 11:47:13 -02008846 fan_control_commands |=
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03008847 TPACPI_FAN_CMD_LEVEL |
8848 TPACPI_FAN_CMD_ENABLE;
Henrique de Moraes Holschuh69ba91c2006-11-24 11:47:09 -02008849 }
8850 }
8851 }
8852
Henrique de Moraes Holschuh74a60c02009-04-04 04:25:52 +00008853 vdbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_FAN,
8854 "fan is %s, modes %d, %d\n",
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03008855 str_supported(fan_status_access_mode != TPACPI_FAN_NONE ||
8856 fan_control_access_mode != TPACPI_FAN_WR_NONE),
8857 fan_status_access_mode, fan_control_access_mode);
8858
Henrique de Moraes Holschuhecf2a802007-04-27 22:00:09 -03008859 /* fan control master switch */
8860 if (!fan_control_allowed) {
8861 fan_control_access_mode = TPACPI_FAN_WR_NONE;
8862 fan_control_commands = 0;
Henrique de Moraes Holschuh74a60c02009-04-04 04:25:52 +00008863 dbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_FAN,
Henrique de Moraes Holschuhecf2a802007-04-27 22:00:09 -03008864 "fan control features disabled by parameter\n");
8865 }
8866
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03008867 /* update fan_control_desired_level */
8868 if (fan_status_access_mode != TPACPI_FAN_NONE)
8869 fan_get_status_safe(NULL);
8870
8871 if (fan_status_access_mode != TPACPI_FAN_NONE ||
8872 fan_control_access_mode != TPACPI_FAN_WR_NONE) {
Henrique de Moraes Holschuhd7377242009-06-18 00:40:17 -03008873 if (tp_features.second_fan) {
8874 /* attach second fan tachometer */
8875 fan_attributes[ARRAY_SIZE(fan_attributes)-2] =
Bjørn Mork5fb73bc2015-05-19 19:45:03 +02008876 &dev_attr_fan2_input.attr;
Henrique de Moraes Holschuhd7377242009-06-18 00:40:17 -03008877 }
Stanislav Fomichev6b99e352017-06-20 20:45:13 -07008878 rc = sysfs_create_group(&tpacpi_hwmon->kobj,
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03008879 &fan_attr_group);
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03008880 if (rc < 0)
8881 return rc;
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03008882
8883 rc = driver_create_file(&tpacpi_hwmon_pdriver.driver,
8884 &driver_attr_fan_watchdog);
8885 if (rc < 0) {
Stanislav Fomichev6b99e352017-06-20 20:45:13 -07008886 sysfs_remove_group(&tpacpi_hwmon->kobj,
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03008887 &fan_attr_group);
8888 return rc;
8889 }
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03008890 return 0;
8891 } else
8892 return 1;
8893}
8894
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03008895static void fan_exit(void)
8896{
Henrique de Moraes Holschuh74a60c02009-04-04 04:25:52 +00008897 vdbg_printk(TPACPI_DBG_EXIT | TPACPI_DBG_FAN,
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02008898 "cancelling any pending fan watchdog tasks\n");
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03008899
8900 /* FIXME: can we really do this unconditionally? */
Stanislav Fomichev6b99e352017-06-20 20:45:13 -07008901 sysfs_remove_group(&tpacpi_hwmon->kobj, &fan_attr_group);
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02008902 driver_remove_file(&tpacpi_hwmon_pdriver.driver,
8903 &driver_attr_fan_watchdog);
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03008904
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03008905 cancel_delayed_work(&fan_watchdog_task);
Henrique de Moraes Holschuhe0e3c062008-04-26 01:02:28 -03008906 flush_workqueue(tpacpi_wq);
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03008907}
8908
Rafael J. Wysockifd3c3a42012-06-27 23:18:44 +02008909static void fan_suspend(void)
Henrique de Moraes Holschuh75700e52008-10-18 14:23:52 -03008910{
Henrique de Moraes Holschuh0081b162008-11-09 10:54:02 -02008911 int rc;
8912
Henrique de Moraes Holschuh75700e52008-10-18 14:23:52 -03008913 if (!fan_control_allowed)
8914 return;
8915
8916 /* Store fan status in cache */
Henrique de Moraes Holschuh0081b162008-11-09 10:54:02 -02008917 fan_control_resume_level = 0;
8918 rc = fan_get_status_safe(&fan_control_resume_level);
8919 if (rc < 0)
Andy Shevchenko5cac62a2017-05-09 17:17:20 +03008920 pr_notice("failed to read fan level for later restore during resume: %d\n",
8921 rc);
Henrique de Moraes Holschuh0081b162008-11-09 10:54:02 -02008922
8923 /* if it is undefined, don't attempt to restore it.
8924 * KEEP THIS LAST */
Henrique de Moraes Holschuh75700e52008-10-18 14:23:52 -03008925 if (tp_features.fan_ctrl_status_undef)
Henrique de Moraes Holschuh0081b162008-11-09 10:54:02 -02008926 fan_control_resume_level = 0;
Henrique de Moraes Holschuh75700e52008-10-18 14:23:52 -03008927}
8928
8929static void fan_resume(void)
8930{
Henrique de Moraes Holschuh75700e52008-10-18 14:23:52 -03008931 u8 current_level = 7;
8932 bool do_set = false;
Henrique de Moraes Holschuh0081b162008-11-09 10:54:02 -02008933 int rc;
Henrique de Moraes Holschuh75700e52008-10-18 14:23:52 -03008934
8935 /* DSDT *always* updates status on resume */
8936 tp_features.fan_ctrl_status_undef = 0;
8937
Henrique de Moraes Holschuh75700e52008-10-18 14:23:52 -03008938 if (!fan_control_allowed ||
Henrique de Moraes Holschuh0081b162008-11-09 10:54:02 -02008939 !fan_control_resume_level ||
Henrique de Moraes Holschuh75700e52008-10-18 14:23:52 -03008940 (fan_get_status_safe(&current_level) < 0))
8941 return;
8942
8943 switch (fan_control_access_mode) {
8944 case TPACPI_FAN_WR_ACPI_SFAN:
Henrique de Moraes Holschuh0081b162008-11-09 10:54:02 -02008945 /* never decrease fan level */
8946 do_set = (fan_control_resume_level > current_level);
Henrique de Moraes Holschuh75700e52008-10-18 14:23:52 -03008947 break;
8948 case TPACPI_FAN_WR_ACPI_FANS:
8949 case TPACPI_FAN_WR_TPEC:
Henrique de Moraes Holschuh0081b162008-11-09 10:54:02 -02008950 /* never decrease fan level, scale is:
8951 * TP_EC_FAN_FULLSPEED > 7 >= TP_EC_FAN_AUTO
8952 *
8953 * We expect the firmware to set either 7 or AUTO, but we
8954 * handle FULLSPEED out of paranoia.
8955 *
8956 * So, we can safely only restore FULLSPEED or 7, anything
8957 * else could slow the fan. Restoring AUTO is useless, at
8958 * best that's exactly what the DSDT already set (it is the
8959 * slower it uses).
8960 *
8961 * Always keep in mind that the DSDT *will* have set the
8962 * fans to what the vendor supposes is the best level. We
8963 * muck with it only to speed the fan up.
8964 */
8965 if (fan_control_resume_level != 7 &&
8966 !(fan_control_resume_level & TP_EC_FAN_FULLSPEED))
8967 return;
8968 else
8969 do_set = !(current_level & TP_EC_FAN_FULLSPEED) &&
8970 (current_level != fan_control_resume_level);
Henrique de Moraes Holschuh75700e52008-10-18 14:23:52 -03008971 break;
8972 default:
8973 return;
8974 }
8975 if (do_set) {
Joe Perches0978e012011-04-04 10:06:25 -07008976 pr_notice("restoring fan level to 0x%02x\n",
8977 fan_control_resume_level);
Henrique de Moraes Holschuh0081b162008-11-09 10:54:02 -02008978 rc = fan_set_level_safe(fan_control_resume_level);
8979 if (rc < 0)
Joe Perches0978e012011-04-04 10:06:25 -07008980 pr_notice("failed to restore fan level: %d\n", rc);
Henrique de Moraes Holschuh75700e52008-10-18 14:23:52 -03008981 }
8982}
8983
Alexey Dobriyan887965e2009-12-15 21:51:12 -02008984static int fan_read(struct seq_file *m)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03008985{
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03008986 int rc;
8987 u8 status;
8988 unsigned int speed = 0;
8989
8990 switch (fan_status_access_mode) {
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03008991 case TPACPI_FAN_RD_ACPI_GFAN:
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03008992 /* 570, 600e/x, 770e, 770x */
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02008993 rc = fan_get_status_safe(&status);
8994 if (rc < 0)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03008995 return rc;
8996
Alexey Dobriyan887965e2009-12-15 21:51:12 -02008997 seq_printf(m, "status:\t\t%s\n"
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03008998 "level:\t\t%d\n",
8999 (status != 0) ? "enabled" : "disabled", status);
9000 break;
9001
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03009002 case TPACPI_FAN_RD_TPEC:
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03009003 /* all except 570, 600e/x, 770e, 770x */
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02009004 rc = fan_get_status_safe(&status);
9005 if (rc < 0)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03009006 return rc;
9007
Alexey Dobriyan887965e2009-12-15 21:51:12 -02009008 seq_printf(m, "status:\t\t%s\n",
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03009009 (status != 0) ? "enabled" : "disabled");
9010
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02009011 rc = fan_get_speed(&speed);
9012 if (rc < 0)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03009013 return rc;
9014
Alexey Dobriyan887965e2009-12-15 21:51:12 -02009015 seq_printf(m, "speed:\t\t%d\n", speed);
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03009016
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03009017 if (status & TP_EC_FAN_FULLSPEED)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03009018 /* Disengaged mode takes precedence */
Alexey Dobriyan887965e2009-12-15 21:51:12 -02009019 seq_printf(m, "level:\t\tdisengaged\n");
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03009020 else if (status & TP_EC_FAN_AUTO)
Alexey Dobriyan887965e2009-12-15 21:51:12 -02009021 seq_printf(m, "level:\t\tauto\n");
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03009022 else
Alexey Dobriyan887965e2009-12-15 21:51:12 -02009023 seq_printf(m, "level:\t\t%d\n", status);
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03009024 break;
9025
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03009026 case TPACPI_FAN_NONE:
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03009027 default:
Alexey Dobriyan887965e2009-12-15 21:51:12 -02009028 seq_printf(m, "status:\t\tnot supported\n");
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03009029 }
9030
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03009031 if (fan_control_commands & TPACPI_FAN_CMD_LEVEL) {
Alexey Dobriyan887965e2009-12-15 21:51:12 -02009032 seq_printf(m, "commands:\tlevel <level>");
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03009033
9034 switch (fan_control_access_mode) {
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03009035 case TPACPI_FAN_WR_ACPI_SFAN:
Alexey Dobriyan887965e2009-12-15 21:51:12 -02009036 seq_printf(m, " (<level> is 0-7)\n");
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03009037 break;
9038
9039 default:
Andy Shevchenko5cac62a2017-05-09 17:17:20 +03009040 seq_printf(m, " (<level> is 0-7, auto, disengaged, full-speed)\n");
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03009041 break;
9042 }
9043 }
9044
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03009045 if (fan_control_commands & TPACPI_FAN_CMD_ENABLE)
Alexey Dobriyan887965e2009-12-15 21:51:12 -02009046 seq_printf(m, "commands:\tenable, disable\n"
Andy Shevchenko5cac62a2017-05-09 17:17:20 +03009047 "commands:\twatchdog <timeout> (<timeout> is 0 (off), 1-120 (seconds))\n");
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03009048
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03009049 if (fan_control_commands & TPACPI_FAN_CMD_SPEED)
Andy Shevchenko5cac62a2017-05-09 17:17:20 +03009050 seq_printf(m, "commands:\tspeed <speed> (<speed> is 0-65535)\n");
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03009051
Alexey Dobriyan887965e2009-12-15 21:51:12 -02009052 return 0;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03009053}
9054
Henrique de Moraes Holschuh18ad7992006-11-24 11:47:11 -02009055static int fan_write_cmd_level(const char *cmd, int *rc)
9056{
9057 int level;
9058
Henrique de Moraes Holschuha12095c2006-11-24 11:47:13 -02009059 if (strlencmp(cmd, "level auto") == 0)
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03009060 level = TP_EC_FAN_AUTO;
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03009061 else if ((strlencmp(cmd, "level disengaged") == 0) |
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02009062 (strlencmp(cmd, "level full-speed") == 0))
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03009063 level = TP_EC_FAN_FULLSPEED;
Henrique de Moraes Holschuha12095c2006-11-24 11:47:13 -02009064 else if (sscanf(cmd, "level %d", &level) != 1)
Henrique de Moraes Holschuh18ad7992006-11-24 11:47:11 -02009065 return 0;
9066
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02009067 *rc = fan_set_level_safe(level);
9068 if (*rc == -ENXIO)
Joe Perches0978e012011-04-04 10:06:25 -07009069 pr_err("level command accepted for unsupported access mode %d\n",
9070 fan_control_access_mode);
Henrique de Moraes Holschuh74a60c02009-04-04 04:25:52 +00009071 else if (!*rc)
9072 tpacpi_disclose_usertask("procfs fan",
9073 "set level to %d\n", level);
Henrique de Moraes Holschuh18ad7992006-11-24 11:47:11 -02009074
9075 return 1;
9076}
9077
9078static int fan_write_cmd_enable(const char *cmd, int *rc)
9079{
9080 if (strlencmp(cmd, "enable") != 0)
9081 return 0;
9082
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02009083 *rc = fan_set_enable();
9084 if (*rc == -ENXIO)
Joe Perches0978e012011-04-04 10:06:25 -07009085 pr_err("enable command accepted for unsupported access mode %d\n",
9086 fan_control_access_mode);
Henrique de Moraes Holschuh74a60c02009-04-04 04:25:52 +00009087 else if (!*rc)
9088 tpacpi_disclose_usertask("procfs fan", "enable\n");
Henrique de Moraes Holschuh18ad7992006-11-24 11:47:11 -02009089
9090 return 1;
9091}
9092
9093static int fan_write_cmd_disable(const char *cmd, int *rc)
9094{
9095 if (strlencmp(cmd, "disable") != 0)
9096 return 0;
9097
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02009098 *rc = fan_set_disable();
9099 if (*rc == -ENXIO)
Joe Perches0978e012011-04-04 10:06:25 -07009100 pr_err("disable command accepted for unsupported access mode %d\n",
9101 fan_control_access_mode);
Henrique de Moraes Holschuh74a60c02009-04-04 04:25:52 +00009102 else if (!*rc)
9103 tpacpi_disclose_usertask("procfs fan", "disable\n");
Henrique de Moraes Holschuh18ad7992006-11-24 11:47:11 -02009104
9105 return 1;
9106}
9107
9108static int fan_write_cmd_speed(const char *cmd, int *rc)
9109{
9110 int speed;
9111
Henrique de Moraes Holschuha8b7a662006-11-24 11:47:11 -02009112 /* TODO:
9113 * Support speed <low> <medium> <high> ? */
9114
Henrique de Moraes Holschuh18ad7992006-11-24 11:47:11 -02009115 if (sscanf(cmd, "speed %d", &speed) != 1)
9116 return 0;
9117
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02009118 *rc = fan_set_speed(speed);
9119 if (*rc == -ENXIO)
Joe Perches0978e012011-04-04 10:06:25 -07009120 pr_err("speed command accepted for unsupported access mode %d\n",
9121 fan_control_access_mode);
Henrique de Moraes Holschuh74a60c02009-04-04 04:25:52 +00009122 else if (!*rc)
9123 tpacpi_disclose_usertask("procfs fan",
9124 "set speed to %d\n", speed);
Henrique de Moraes Holschuh18ad7992006-11-24 11:47:11 -02009125
9126 return 1;
9127}
9128
Henrique de Moraes Holschuh16663a82006-11-24 11:47:14 -02009129static int fan_write_cmd_watchdog(const char *cmd, int *rc)
9130{
9131 int interval;
9132
9133 if (sscanf(cmd, "watchdog %d", &interval) != 1)
9134 return 0;
9135
9136 if (interval < 0 || interval > 120)
9137 *rc = -EINVAL;
Henrique de Moraes Holschuh74a60c02009-04-04 04:25:52 +00009138 else {
Henrique de Moraes Holschuh16663a82006-11-24 11:47:14 -02009139 fan_watchdog_maxinterval = interval;
Henrique de Moraes Holschuh74a60c02009-04-04 04:25:52 +00009140 tpacpi_disclose_usertask("procfs fan",
9141 "set watchdog timer to %d\n",
9142 interval);
9143 }
Henrique de Moraes Holschuh16663a82006-11-24 11:47:14 -02009144
9145 return 1;
9146}
9147
Henrique de Moraes Holschuh18ad7992006-11-24 11:47:11 -02009148static int fan_write(char *buf)
9149{
9150 char *cmd;
9151 int rc = 0;
9152
Andy Shevchenkobe51bd42020-05-11 15:56:24 +03009153 while (!rc && (cmd = strsep(&buf, ","))) {
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03009154 if (!((fan_control_commands & TPACPI_FAN_CMD_LEVEL) &&
Henrique de Moraes Holschuh18ad7992006-11-24 11:47:11 -02009155 fan_write_cmd_level(cmd, &rc)) &&
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03009156 !((fan_control_commands & TPACPI_FAN_CMD_ENABLE) &&
Henrique de Moraes Holschuh18ad7992006-11-24 11:47:11 -02009157 (fan_write_cmd_enable(cmd, &rc) ||
Henrique de Moraes Holschuh16663a82006-11-24 11:47:14 -02009158 fan_write_cmd_disable(cmd, &rc) ||
9159 fan_write_cmd_watchdog(cmd, &rc))) &&
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03009160 !((fan_control_commands & TPACPI_FAN_CMD_SPEED) &&
Henrique de Moraes Holschuh18ad7992006-11-24 11:47:11 -02009161 fan_write_cmd_speed(cmd, &rc))
9162 )
9163 rc = -EINVAL;
Henrique de Moraes Holschuh16663a82006-11-24 11:47:14 -02009164 else if (!rc)
9165 fan_watchdog_reset();
Borislav Deianov78f81cc2005-08-17 00:00:00 -04009166 }
9167
Henrique de Moraes Holschuh18ad7992006-11-24 11:47:11 -02009168 return rc;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04009169}
9170
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03009171static struct ibm_struct fan_driver_data = {
9172 .name = "fan",
9173 .read = fan_read,
9174 .write = fan_write,
9175 .exit = fan_exit,
Henrique de Moraes Holschuh75700e52008-10-18 14:23:52 -03009176 .suspend = fan_suspend,
9177 .resume = fan_resume,
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03009178};
9179
David Henningsson420f9732013-10-16 23:10:31 +02009180/*************************************************************************
9181 * Mute LED subdriver
9182 */
9183
Takashi Iwai9e908a12018-11-26 17:47:47 +01009184#define TPACPI_LED_MAX 2
David Henningsson420f9732013-10-16 23:10:31 +02009185
9186struct tp_led_table {
9187 acpi_string name;
9188 int on_value;
9189 int off_value;
9190 int state;
9191};
9192
Takashi Iwai9e908a12018-11-26 17:47:47 +01009193static struct tp_led_table led_tables[TPACPI_LED_MAX] = {
9194 [LED_AUDIO_MUTE] = {
David Henningsson420f9732013-10-16 23:10:31 +02009195 .name = "SSMS",
9196 .on_value = 1,
9197 .off_value = 0,
9198 },
Takashi Iwai9e908a12018-11-26 17:47:47 +01009199 [LED_AUDIO_MICMUTE] = {
David Henningsson420f9732013-10-16 23:10:31 +02009200 .name = "MMTS",
9201 .on_value = 2,
9202 .off_value = 0,
9203 },
9204};
9205
9206static int mute_led_on_off(struct tp_led_table *t, bool state)
9207{
9208 acpi_handle temp;
9209 int output;
9210
Axel Lin3526eca2016-09-19 09:33:51 +08009211 if (ACPI_FAILURE(acpi_get_handle(hkey_handle, t->name, &temp))) {
David Henningsson420f9732013-10-16 23:10:31 +02009212 pr_warn("Thinkpad ACPI has no %s interface.\n", t->name);
9213 return -EIO;
9214 }
9215
9216 if (!acpi_evalf(hkey_handle, &output, t->name, "dd",
9217 state ? t->on_value : t->off_value))
9218 return -EIO;
9219
9220 t->state = state;
9221 return state;
9222}
9223
Takashi Iwai9e908a12018-11-26 17:47:47 +01009224static int tpacpi_led_set(int whichled, bool on)
David Henningsson420f9732013-10-16 23:10:31 +02009225{
9226 struct tp_led_table *t;
9227
David Henningsson420f9732013-10-16 23:10:31 +02009228 t = &led_tables[whichled];
9229 if (t->state < 0 || t->state == on)
9230 return t->state;
9231 return mute_led_on_off(t, on);
9232}
David Henningsson420f9732013-10-16 23:10:31 +02009233
Takashi Iwai4e1d0922018-11-26 17:47:45 +01009234static int tpacpi_led_mute_set(struct led_classdev *led_cdev,
9235 enum led_brightness brightness)
9236{
Takashi Iwai9e908a12018-11-26 17:47:47 +01009237 return tpacpi_led_set(LED_AUDIO_MUTE, brightness != LED_OFF);
Takashi Iwai4e1d0922018-11-26 17:47:45 +01009238}
9239
9240static int tpacpi_led_micmute_set(struct led_classdev *led_cdev,
9241 enum led_brightness brightness)
9242{
Takashi Iwai9e908a12018-11-26 17:47:47 +01009243 return tpacpi_led_set(LED_AUDIO_MICMUTE, brightness != LED_OFF);
Takashi Iwai4e1d0922018-11-26 17:47:45 +01009244}
9245
Takashi Iwai9e908a12018-11-26 17:47:47 +01009246static struct led_classdev mute_led_cdev[TPACPI_LED_MAX] = {
9247 [LED_AUDIO_MUTE] = {
Takashi Iwai4e1d0922018-11-26 17:47:45 +01009248 .name = "platform::mute",
9249 .max_brightness = 1,
9250 .brightness_set_blocking = tpacpi_led_mute_set,
9251 .default_trigger = "audio-mute",
9252 },
Takashi Iwai9e908a12018-11-26 17:47:47 +01009253 [LED_AUDIO_MICMUTE] = {
Takashi Iwai4e1d0922018-11-26 17:47:45 +01009254 .name = "platform::micmute",
9255 .max_brightness = 1,
9256 .brightness_set_blocking = tpacpi_led_micmute_set,
9257 .default_trigger = "audio-micmute",
9258 },
9259};
David Henningsson420f9732013-10-16 23:10:31 +02009260
9261static int mute_led_init(struct ibm_init_struct *iibm)
9262{
9263 acpi_handle temp;
Takashi Iwai4e1d0922018-11-26 17:47:45 +01009264 int i, err;
David Henningsson420f9732013-10-16 23:10:31 +02009265
9266 for (i = 0; i < TPACPI_LED_MAX; i++) {
9267 struct tp_led_table *t = &led_tables[i];
Takashi Iwai4e1d0922018-11-26 17:47:45 +01009268 if (ACPI_FAILURE(acpi_get_handle(hkey_handle, t->name, &temp))) {
David Henningsson420f9732013-10-16 23:10:31 +02009269 t->state = -ENODEV;
Takashi Iwai4e1d0922018-11-26 17:47:45 +01009270 continue;
9271 }
9272
Takashi Iwai9e908a12018-11-26 17:47:47 +01009273 mute_led_cdev[i].brightness = ledtrig_audio_get(i);
Takashi Iwai4e1d0922018-11-26 17:47:45 +01009274 err = led_classdev_register(&tpacpi_pdev->dev, &mute_led_cdev[i]);
9275 if (err < 0) {
Andy Shevchenko41f80042020-05-07 19:37:23 +03009276 while (i--)
9277 led_classdev_unregister(&mute_led_cdev[i]);
Takashi Iwai4e1d0922018-11-26 17:47:45 +01009278 return err;
9279 }
David Henningsson420f9732013-10-16 23:10:31 +02009280 }
9281 return 0;
9282}
9283
9284static void mute_led_exit(void)
9285{
9286 int i;
9287
Takashi Iwai4e1d0922018-11-26 17:47:45 +01009288 for (i = 0; i < TPACPI_LED_MAX; i++) {
Andy Shevchenko41f80042020-05-07 19:37:23 +03009289 led_classdev_unregister(&mute_led_cdev[i]);
9290 tpacpi_led_set(i, false);
Takashi Iwai4e1d0922018-11-26 17:47:45 +01009291 }
David Henningsson420f9732013-10-16 23:10:31 +02009292}
9293
Takashi Iwai119f4492014-02-12 16:32:45 +01009294static void mute_led_resume(void)
9295{
9296 int i;
9297
9298 for (i = 0; i < TPACPI_LED_MAX; i++) {
9299 struct tp_led_table *t = &led_tables[i];
9300 if (t->state >= 0)
9301 mute_led_on_off(t, t->state);
9302 }
9303}
9304
David Henningsson420f9732013-10-16 23:10:31 +02009305static struct ibm_struct mute_led_driver_data = {
9306 .name = "mute_led",
9307 .exit = mute_led_exit,
Takashi Iwai119f4492014-02-12 16:32:45 +01009308 .resume = mute_led_resume,
David Henningsson420f9732013-10-16 23:10:31 +02009309};
9310
Ognjen Galic2801b962018-02-07 15:58:44 +01009311/*
9312 * Battery Wear Control Driver
9313 * Contact: Ognjen Galic <smclt30p@gmail.com>
9314 */
9315
9316/* Metadata */
9317
9318#define GET_START "BCTG"
9319#define SET_START "BCCS"
9320#define GET_STOP "BCSG"
9321#define SET_STOP "BCSS"
9322
9323#define START_ATTR "charge_start_threshold"
9324#define STOP_ATTR "charge_stop_threshold"
9325
9326enum {
9327 BAT_ANY = 0,
9328 BAT_PRIMARY = 1,
9329 BAT_SECONDARY = 2
9330};
9331
9332enum {
9333 /* Error condition bit */
9334 METHOD_ERR = BIT(31),
9335};
9336
9337enum {
9338 /* This is used in the get/set helpers */
9339 THRESHOLD_START,
9340 THRESHOLD_STOP,
9341};
9342
9343struct tpacpi_battery_data {
9344 int charge_start;
9345 int start_support;
9346 int charge_stop;
9347 int stop_support;
9348};
9349
9350struct tpacpi_battery_driver_data {
9351 struct tpacpi_battery_data batteries[3];
9352 int individual_addressing;
9353};
9354
9355static struct tpacpi_battery_driver_data battery_info;
9356
9357/* ACPI helpers/functions/probes */
9358
9359/**
9360 * This evaluates a ACPI method call specific to the battery
9361 * ACPI extension. The specifics are that an error is marked
9362 * in the 32rd bit of the response, so we just check that here.
9363 */
9364static acpi_status tpacpi_battery_acpi_eval(char *method, int *ret, int param)
9365{
9366 int response;
9367
9368 if (!acpi_evalf(hkey_handle, &response, method, "dd", param)) {
9369 acpi_handle_err(hkey_handle, "%s: evaluate failed", method);
9370 return AE_ERROR;
9371 }
9372 if (response & METHOD_ERR) {
9373 acpi_handle_err(hkey_handle,
9374 "%s evaluated but flagged as error", method);
9375 return AE_ERROR;
9376 }
9377 *ret = response;
9378 return AE_OK;
9379}
9380
9381static int tpacpi_battery_get(int what, int battery, int *ret)
9382{
9383 switch (what) {
9384 case THRESHOLD_START:
9385 if ACPI_FAILURE(tpacpi_battery_acpi_eval(GET_START, ret, battery))
9386 return -ENODEV;
9387
9388 /* The value is in the low 8 bits of the response */
9389 *ret = *ret & 0xFF;
9390 return 0;
9391 case THRESHOLD_STOP:
9392 if ACPI_FAILURE(tpacpi_battery_acpi_eval(GET_STOP, ret, battery))
9393 return -ENODEV;
9394 /* Value is in lower 8 bits */
9395 *ret = *ret & 0xFF;
9396 /*
9397 * On the stop value, if we return 0 that
9398 * does not make any sense. 0 means Default, which
9399 * means that charging stops at 100%, so we return
9400 * that.
9401 */
9402 if (*ret == 0)
9403 *ret = 100;
9404 return 0;
9405 default:
9406 pr_crit("wrong parameter: %d", what);
9407 return -EINVAL;
9408 }
9409}
9410
9411static int tpacpi_battery_set(int what, int battery, int value)
9412{
9413 int param, ret;
9414 /* The first 8 bits are the value of the threshold */
9415 param = value;
9416 /* The battery ID is in bits 8-9, 2 bits */
9417 param |= battery << 8;
9418
9419 switch (what) {
9420 case THRESHOLD_START:
9421 if ACPI_FAILURE(tpacpi_battery_acpi_eval(SET_START, &ret, param)) {
9422 pr_err("failed to set charge threshold on battery %d",
9423 battery);
9424 return -ENODEV;
9425 }
9426 return 0;
9427 case THRESHOLD_STOP:
9428 if ACPI_FAILURE(tpacpi_battery_acpi_eval(SET_STOP, &ret, param)) {
9429 pr_err("failed to set stop threshold: %d", battery);
9430 return -ENODEV;
9431 }
9432 return 0;
9433 default:
9434 pr_crit("wrong parameter: %d", what);
9435 return -EINVAL;
9436 }
9437}
9438
9439static int tpacpi_battery_probe(int battery)
9440{
9441 int ret = 0;
9442
Thomas Weißschuhd22296d2018-08-02 00:24:18 +02009443 memset(&battery_info.batteries[battery], 0,
9444 sizeof(battery_info.batteries[battery]));
9445
Ognjen Galic2801b962018-02-07 15:58:44 +01009446 /*
9447 * 1) Get the current start threshold
9448 * 2) Check for support
9449 * 3) Get the current stop threshold
9450 * 4) Check for support
9451 */
9452 if (acpi_has_method(hkey_handle, GET_START)) {
9453 if ACPI_FAILURE(tpacpi_battery_acpi_eval(GET_START, &ret, battery)) {
9454 pr_err("Error probing battery %d\n", battery);
9455 return -ENODEV;
9456 }
9457 /* Individual addressing is in bit 9 */
9458 if (ret & BIT(9))
9459 battery_info.individual_addressing = true;
9460 /* Support is marked in bit 8 */
9461 if (ret & BIT(8))
9462 battery_info.batteries[battery].start_support = 1;
9463 else
9464 return -ENODEV;
9465 if (tpacpi_battery_get(THRESHOLD_START, battery,
9466 &battery_info.batteries[battery].charge_start)) {
9467 pr_err("Error probing battery %d\n", battery);
9468 return -ENODEV;
9469 }
9470 }
9471 if (acpi_has_method(hkey_handle, GET_STOP)) {
9472 if ACPI_FAILURE(tpacpi_battery_acpi_eval(GET_STOP, &ret, battery)) {
9473 pr_err("Error probing battery stop; %d\n", battery);
9474 return -ENODEV;
9475 }
9476 /* Support is marked in bit 8 */
9477 if (ret & BIT(8))
9478 battery_info.batteries[battery].stop_support = 1;
9479 else
9480 return -ENODEV;
9481 if (tpacpi_battery_get(THRESHOLD_STOP, battery,
9482 &battery_info.batteries[battery].charge_stop)) {
9483 pr_err("Error probing battery stop: %d\n", battery);
9484 return -ENODEV;
9485 }
9486 }
9487 pr_info("battery %d registered (start %d, stop %d)",
9488 battery,
9489 battery_info.batteries[battery].charge_start,
9490 battery_info.batteries[battery].charge_stop);
9491
9492 return 0;
9493}
9494
9495/* General helper functions */
9496
9497static int tpacpi_battery_get_id(const char *battery_name)
9498{
9499
Jouke Witteveen1a32ebb2018-07-11 11:45:36 +02009500 if (strcmp(battery_name, "BAT0") == 0 ||
9501 tp_features.battery_force_primary)
Ognjen Galic2801b962018-02-07 15:58:44 +01009502 return BAT_PRIMARY;
9503 if (strcmp(battery_name, "BAT1") == 0)
9504 return BAT_SECONDARY;
9505 /*
9506 * If for some reason the battery is not BAT0 nor is it
9507 * BAT1, we will assume it's the default, first battery,
9508 * AKA primary.
9509 */
9510 pr_warn("unknown battery %s, assuming primary", battery_name);
9511 return BAT_PRIMARY;
9512}
9513
9514/* sysfs interface */
9515
9516static ssize_t tpacpi_battery_store(int what,
9517 struct device *dev,
9518 const char *buf, size_t count)
9519{
9520 struct power_supply *supply = to_power_supply(dev);
9521 unsigned long value;
9522 int battery, rval;
9523 /*
9524 * Some systems have support for more than
9525 * one battery. If that is the case,
9526 * tpacpi_battery_probe marked that addressing
9527 * them individually is supported, so we do that
9528 * based on the device struct.
9529 *
9530 * On systems that are not supported, we assume
9531 * the primary as most of the ACPI calls fail
9532 * with "Any Battery" as the parameter.
9533 */
9534 if (battery_info.individual_addressing)
9535 /* BAT_PRIMARY or BAT_SECONDARY */
9536 battery = tpacpi_battery_get_id(supply->desc->name);
9537 else
9538 battery = BAT_PRIMARY;
9539
9540 rval = kstrtoul(buf, 10, &value);
9541 if (rval)
9542 return rval;
9543
9544 switch (what) {
9545 case THRESHOLD_START:
9546 if (!battery_info.batteries[battery].start_support)
9547 return -ENODEV;
9548 /* valid values are [0, 99] */
Xiongfeng Wangb9911782020-04-29 16:59:40 +08009549 if (value > 99)
Ognjen Galic2801b962018-02-07 15:58:44 +01009550 return -EINVAL;
9551 if (value > battery_info.batteries[battery].charge_stop)
9552 return -EINVAL;
9553 if (tpacpi_battery_set(THRESHOLD_START, battery, value))
9554 return -ENODEV;
9555 battery_info.batteries[battery].charge_start = value;
9556 return count;
9557
9558 case THRESHOLD_STOP:
9559 if (!battery_info.batteries[battery].stop_support)
9560 return -ENODEV;
9561 /* valid values are [1, 100] */
9562 if (value < 1 || value > 100)
9563 return -EINVAL;
9564 if (value < battery_info.batteries[battery].charge_start)
9565 return -EINVAL;
9566 battery_info.batteries[battery].charge_stop = value;
9567 /*
9568 * When 100 is passed to stop, we need to flip
9569 * it to 0 as that the EC understands that as
9570 * "Default", which will charge to 100%
9571 */
9572 if (value == 100)
9573 value = 0;
9574 if (tpacpi_battery_set(THRESHOLD_STOP, battery, value))
9575 return -EINVAL;
9576 return count;
9577 default:
9578 pr_crit("Wrong parameter: %d", what);
9579 return -EINVAL;
9580 }
9581 return count;
9582}
9583
9584static ssize_t tpacpi_battery_show(int what,
9585 struct device *dev,
9586 char *buf)
9587{
9588 struct power_supply *supply = to_power_supply(dev);
9589 int ret, battery;
9590 /*
9591 * Some systems have support for more than
9592 * one battery. If that is the case,
9593 * tpacpi_battery_probe marked that addressing
9594 * them individually is supported, so we;
9595 * based on the device struct.
9596 *
9597 * On systems that are not supported, we assume
9598 * the primary as most of the ACPI calls fail
9599 * with "Any Battery" as the parameter.
9600 */
9601 if (battery_info.individual_addressing)
9602 /* BAT_PRIMARY or BAT_SECONDARY */
9603 battery = tpacpi_battery_get_id(supply->desc->name);
9604 else
9605 battery = BAT_PRIMARY;
9606 if (tpacpi_battery_get(what, battery, &ret))
9607 return -ENODEV;
9608 return sprintf(buf, "%d\n", ret);
9609}
9610
9611static ssize_t charge_start_threshold_show(struct device *device,
9612 struct device_attribute *attr,
9613 char *buf)
9614{
9615 return tpacpi_battery_show(THRESHOLD_START, device, buf);
9616}
9617
9618static ssize_t charge_stop_threshold_show(struct device *device,
9619 struct device_attribute *attr,
9620 char *buf)
9621{
9622 return tpacpi_battery_show(THRESHOLD_STOP, device, buf);
9623}
9624
9625static ssize_t charge_start_threshold_store(struct device *dev,
9626 struct device_attribute *attr,
9627 const char *buf, size_t count)
9628{
9629 return tpacpi_battery_store(THRESHOLD_START, dev, buf, count);
9630}
9631
9632static ssize_t charge_stop_threshold_store(struct device *dev,
9633 struct device_attribute *attr,
9634 const char *buf, size_t count)
9635{
9636 return tpacpi_battery_store(THRESHOLD_STOP, dev, buf, count);
9637}
9638
9639static DEVICE_ATTR_RW(charge_start_threshold);
9640static DEVICE_ATTR_RW(charge_stop_threshold);
9641
9642static struct attribute *tpacpi_battery_attrs[] = {
9643 &dev_attr_charge_start_threshold.attr,
9644 &dev_attr_charge_stop_threshold.attr,
9645 NULL,
9646};
9647
9648ATTRIBUTE_GROUPS(tpacpi_battery);
9649
9650/* ACPI battery hooking */
9651
9652static int tpacpi_battery_add(struct power_supply *battery)
9653{
9654 int batteryid = tpacpi_battery_get_id(battery->desc->name);
9655
9656 if (tpacpi_battery_probe(batteryid))
9657 return -ENODEV;
9658 if (device_add_groups(&battery->dev, tpacpi_battery_groups))
9659 return -ENODEV;
9660 return 0;
9661}
9662
9663static int tpacpi_battery_remove(struct power_supply *battery)
9664{
9665 device_remove_groups(&battery->dev, tpacpi_battery_groups);
9666 return 0;
9667}
9668
9669static struct acpi_battery_hook battery_hook = {
9670 .add_battery = tpacpi_battery_add,
9671 .remove_battery = tpacpi_battery_remove,
9672 .name = "ThinkPad Battery Extension",
9673};
9674
9675/* Subdriver init/exit */
9676
Jouke Witteveen1a32ebb2018-07-11 11:45:36 +02009677static const struct tpacpi_quirk battery_quirk_table[] __initconst = {
9678 /*
9679 * Individual addressing is broken on models that expose the
9680 * primary battery as BAT1.
9681 */
Jouke Witteveen6640ee62018-08-02 22:28:49 +02009682 TPACPI_Q_LNV('J', '7', true), /* B5400 */
9683 TPACPI_Q_LNV('J', 'I', true), /* Thinkpad 11e */
9684 TPACPI_Q_LNV3('R', '0', 'B', true), /* Thinkpad 11e gen 3 */
Jouke Witteveen1a32ebb2018-07-11 11:45:36 +02009685 TPACPI_Q_LNV3('R', '0', 'C', true), /* Thinkpad 13 */
Jouke Witteveen6640ee62018-08-02 22:28:49 +02009686 TPACPI_Q_LNV3('R', '0', 'J', true), /* Thinkpad 13 gen 2 */
Jouke Witteveen1a32ebb2018-07-11 11:45:36 +02009687};
9688
Ognjen Galic2801b962018-02-07 15:58:44 +01009689static int __init tpacpi_battery_init(struct ibm_init_struct *ibm)
9690{
Thomas Weißschuhd22296d2018-08-02 00:24:18 +02009691 memset(&battery_info, 0, sizeof(battery_info));
9692
Jouke Witteveen1a32ebb2018-07-11 11:45:36 +02009693 tp_features.battery_force_primary = tpacpi_check_quirks(
9694 battery_quirk_table,
9695 ARRAY_SIZE(battery_quirk_table));
9696
Ognjen Galic2801b962018-02-07 15:58:44 +01009697 battery_hook_register(&battery_hook);
9698 return 0;
9699}
9700
9701static void tpacpi_battery_exit(void)
9702{
9703 battery_hook_unregister(&battery_hook);
9704}
9705
9706static struct ibm_struct battery_driver_data = {
9707 .name = "battery",
9708 .exit = tpacpi_battery_exit,
9709};
9710
Alexander Schremmer110ea1d2019-08-22 13:48:33 +02009711/*************************************************************************
9712 * LCD Shadow subdriver, for the Lenovo PrivacyGuard feature
9713 */
9714
9715static int lcdshadow_state;
9716
9717static int lcdshadow_on_off(bool state)
9718{
9719 acpi_handle set_shadow_handle;
9720 int output;
9721
9722 if (ACPI_FAILURE(acpi_get_handle(hkey_handle, "SSSS", &set_shadow_handle))) {
9723 pr_warn("Thinkpad ACPI has no %s interface.\n", "SSSS");
9724 return -EIO;
9725 }
9726
9727 if (!acpi_evalf(set_shadow_handle, &output, NULL, "dd", (int)state))
9728 return -EIO;
9729
9730 lcdshadow_state = state;
9731 return 0;
9732}
9733
9734static int lcdshadow_set(bool on)
9735{
9736 if (lcdshadow_state < 0)
9737 return lcdshadow_state;
9738 if (lcdshadow_state == on)
9739 return 0;
9740 return lcdshadow_on_off(on);
9741}
9742
9743static int tpacpi_lcdshadow_init(struct ibm_init_struct *iibm)
9744{
9745 acpi_handle get_shadow_handle;
9746 int output;
9747
9748 if (ACPI_FAILURE(acpi_get_handle(hkey_handle, "GSSS", &get_shadow_handle))) {
9749 lcdshadow_state = -ENODEV;
9750 return 0;
9751 }
9752
9753 if (!acpi_evalf(get_shadow_handle, &output, NULL, "dd", 0)) {
9754 lcdshadow_state = -EIO;
9755 return -EIO;
9756 }
9757 if (!(output & 0x10000)) {
9758 lcdshadow_state = -ENODEV;
9759 return 0;
9760 }
9761 lcdshadow_state = output & 0x1;
9762
9763 return 0;
9764}
9765
9766static void lcdshadow_resume(void)
9767{
9768 if (lcdshadow_state >= 0)
9769 lcdshadow_on_off(lcdshadow_state);
9770}
9771
9772static int lcdshadow_read(struct seq_file *m)
9773{
9774 if (lcdshadow_state < 0) {
9775 seq_puts(m, "status:\t\tnot supported\n");
9776 } else {
9777 seq_printf(m, "status:\t\t%d\n", lcdshadow_state);
9778 seq_puts(m, "commands:\t0, 1\n");
9779 }
9780
9781 return 0;
9782}
9783
9784static int lcdshadow_write(char *buf)
9785{
9786 char *cmd;
9787 int state = -1;
9788
9789 if (lcdshadow_state < 0)
9790 return -ENODEV;
9791
Andy Shevchenkobe51bd42020-05-11 15:56:24 +03009792 while ((cmd = strsep(&buf, ","))) {
Alexander Schremmer110ea1d2019-08-22 13:48:33 +02009793 if (strlencmp(cmd, "0") == 0)
9794 state = 0;
9795 else if (strlencmp(cmd, "1") == 0)
9796 state = 1;
9797 }
9798
9799 if (state == -1)
9800 return -EINVAL;
9801
9802 return lcdshadow_set(state);
9803}
9804
9805static struct ibm_struct lcdshadow_driver_data = {
9806 .name = "lcdshadow",
9807 .resume = lcdshadow_resume,
9808 .read = lcdshadow_read,
9809 .write = lcdshadow_write,
9810};
9811
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03009812/****************************************************************************
9813 ****************************************************************************
9814 *
9815 * Infrastructure
9816 *
9817 ****************************************************************************
9818 ****************************************************************************/
Linus Torvalds1da177e2005-04-16 15:20:36 -07009819
Henrique de Moraes Holschuh8b468c02009-09-20 14:09:26 -03009820/*
9821 * HKEY event callout for other subdrivers go here
9822 * (yes, it is ugly, but it is quick, safe, and gets the job done
9823 */
9824static void tpacpi_driver_event(const unsigned int hkey_event)
9825{
Henrique de Moraes Holschuh347a2682009-12-09 01:36:24 +00009826 if (ibm_backlight_device) {
9827 switch (hkey_event) {
9828 case TP_HKEY_EV_BRGHT_UP:
9829 case TP_HKEY_EV_BRGHT_DOWN:
9830 tpacpi_brightness_notify_change();
9831 }
9832 }
Henrique de Moraes Holschuh0d204c32009-12-15 21:51:11 -02009833 if (alsa_card) {
9834 switch (hkey_event) {
9835 case TP_HKEY_EV_VOL_UP:
9836 case TP_HKEY_EV_VOL_DOWN:
9837 case TP_HKEY_EV_VOL_MUTE:
9838 volume_alsa_notify_change();
9839 }
9840 }
Hans de Goedec685e202017-02-09 16:44:13 +01009841 if (tp_features.kbdlight && hkey_event == TP_HKEY_EV_KBD_LIGHT) {
9842 enum led_brightness brightness;
9843
9844 mutex_lock(&kbdlight_mutex);
9845
9846 /*
9847 * Check the brightness actually changed, setting the brightness
9848 * through kbdlight_set_level() also triggers this event.
9849 */
9850 brightness = kbdlight_sysfs_get(NULL);
9851 if (kbdlight_brightness != brightness) {
9852 kbdlight_brightness = brightness;
9853 led_classdev_notify_brightness_hw_changed(
9854 &tpacpi_led_kbdlight.led_classdev, brightness);
9855 }
9856
9857 mutex_unlock(&kbdlight_mutex);
9858 }
Henrique de Moraes Holschuh8b468c02009-09-20 14:09:26 -03009859}
9860
Henrique de Moraes Holschuh8b468c02009-09-20 14:09:26 -03009861static void hotkey_driver_event(const unsigned int scancode)
9862{
Henrique de Moraes Holschuh67bcae62009-09-20 14:09:27 -03009863 tpacpi_driver_event(TP_HKEY_EV_HOTKEY_BASE + scancode);
Henrique de Moraes Holschuh8b468c02009-09-20 14:09:26 -03009864}
9865
Henrique de Moraes Holschuh7fd40022007-09-25 06:38:03 -03009866/* --------------------------------------------------------------------- */
9867
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03009868/* /proc support */
Henrique de Moraes Holschuh94954cc62007-07-18 23:45:27 -03009869static struct proc_dir_entry *proc_dir;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03009870
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03009871/*
9872 * Module and infrastructure proble, init and exit handling
9873 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07009874
Rusty Russell90ab5ee2012-01-13 09:32:20 +10309875static bool force_load;
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02009876
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03009877#ifdef CONFIG_THINKPAD_ACPI_DEBUG
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03009878static const char * __init str_supported(int is_supported)
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03009879{
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03009880 static char text_unsupported[] __initdata = "not supported";
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03009881
Jan van den Berg72a979f2014-09-17 00:01:08 +02009882 return (is_supported) ? &text_unsupported[4] : &text_unsupported[0];
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03009883}
9884#endif /* CONFIG_THINKPAD_ACPI_DEBUG */
9885
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02009886static void ibm_exit(struct ibm_struct *ibm)
9887{
9888 dbg_printk(TPACPI_DBG_EXIT, "removing %s\n", ibm->name);
9889
9890 list_del_init(&ibm->all_drivers);
9891
9892 if (ibm->flags.acpi_notify_installed) {
9893 dbg_printk(TPACPI_DBG_EXIT,
9894 "%s: acpi_remove_notify_handler\n", ibm->name);
9895 BUG_ON(!ibm->acpi);
9896 acpi_remove_notify_handler(*ibm->acpi->handle,
9897 ibm->acpi->type,
9898 dispatch_acpi_notify);
9899 ibm->flags.acpi_notify_installed = 0;
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02009900 }
9901
9902 if (ibm->flags.proc_created) {
9903 dbg_printk(TPACPI_DBG_EXIT,
9904 "%s: remove_proc_entry\n", ibm->name);
9905 remove_proc_entry(ibm->name, proc_dir);
9906 ibm->flags.proc_created = 0;
9907 }
9908
9909 if (ibm->flags.acpi_driver_registered) {
9910 dbg_printk(TPACPI_DBG_EXIT,
9911 "%s: acpi_bus_unregister_driver\n", ibm->name);
9912 BUG_ON(!ibm->acpi);
9913 acpi_bus_unregister_driver(ibm->acpi->driver);
9914 kfree(ibm->acpi->driver);
9915 ibm->acpi->driver = NULL;
9916 ibm->flags.acpi_driver_registered = 0;
9917 }
9918
9919 if (ibm->flags.init_called && ibm->exit) {
9920 ibm->exit();
9921 ibm->flags.init_called = 0;
9922 }
9923
9924 dbg_printk(TPACPI_DBG_INIT, "finished removing %s\n", ibm->name);
9925}
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02009926
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03009927static int __init ibm_init(struct ibm_init_struct *iibm)
Linus Torvalds1da177e2005-04-16 15:20:36 -07009928{
9929 int ret;
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03009930 struct ibm_struct *ibm = iibm->data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009931 struct proc_dir_entry *entry;
9932
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03009933 BUG_ON(ibm == NULL);
9934
9935 INIT_LIST_HEAD(&ibm->all_drivers);
9936
Henrique de Moraes Holschuh92641172007-04-21 11:08:35 -03009937 if (ibm->flags.experimental && !experimental)
Linus Torvalds1da177e2005-04-16 15:20:36 -07009938 return 0;
9939
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03009940 dbg_printk(TPACPI_DBG_INIT,
9941 "probing for %s\n", ibm->name);
9942
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03009943 if (iibm->init) {
9944 ret = iibm->init(iibm);
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03009945 if (ret > 0)
9946 return 0; /* probe failed */
9947 if (ret)
Linus Torvalds1da177e2005-04-16 15:20:36 -07009948 return ret;
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03009949
Henrique de Moraes Holschuh92641172007-04-21 11:08:35 -03009950 ibm->flags.init_called = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009951 }
9952
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -03009953 if (ibm->acpi) {
9954 if (ibm->acpi->hid) {
9955 ret = register_tpacpi_subdriver(ibm);
9956 if (ret)
9957 goto err_out;
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03009958 }
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -03009959
9960 if (ibm->acpi->notify) {
9961 ret = setup_acpi_notify(ibm);
9962 if (ret == -ENODEV) {
Joe Perches0978e012011-04-04 10:06:25 -07009963 pr_notice("disabling subdriver %s\n",
9964 ibm->name);
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -03009965 ret = 0;
9966 goto err_out;
9967 }
9968 if (ret < 0)
9969 goto err_out;
9970 }
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03009971 }
9972
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03009973 dbg_printk(TPACPI_DBG_INIT,
9974 "%s installed\n", ibm->name);
9975
Borislav Deianov78f81cc2005-08-17 00:00:00 -04009976 if (ibm->read) {
Al Virod161a132011-07-24 03:36:29 -04009977 umode_t mode = iibm->base_procfs_mode;
Alexey Dobriyan887965e2009-12-15 21:51:12 -02009978
Henrique de Moraes Holschuhb525c062010-02-25 22:22:22 -03009979 if (!mode)
9980 mode = S_IRUGO;
Alexey Dobriyan887965e2009-12-15 21:51:12 -02009981 if (ibm->write)
9982 mode |= S_IWUSR;
9983 entry = proc_create_data(ibm->name, mode, proc_dir,
Alexey Dobriyan97a32532020-02-03 17:37:17 -08009984 &dispatch_proc_ops, ibm);
Borislav Deianov78f81cc2005-08-17 00:00:00 -04009985 if (!entry) {
Joe Perches0978e012011-04-04 10:06:25 -07009986 pr_err("unable to create proc entry %s\n", ibm->name);
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03009987 ret = -ENODEV;
9988 goto err_out;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04009989 }
Henrique de Moraes Holschuh92641172007-04-21 11:08:35 -03009990 ibm->flags.proc_created = 1;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04009991 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07009992
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03009993 list_add_tail(&ibm->all_drivers, &tpacpi_all_drivers);
9994
Linus Torvalds1da177e2005-04-16 15:20:36 -07009995 return 0;
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03009996
9997err_out:
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03009998 dbg_printk(TPACPI_DBG_INIT,
9999 "%s: at error exit path with result %d\n",
10000 ibm->name, ret);
10001
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -030010002 ibm_exit(ibm);
Jan van den Berg72a979f2014-09-17 00:01:08 +020010003 return (ret < 0) ? ret : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010004}
10005
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -030010006/* Probing */
Linus Torvalds1da177e2005-04-16 15:20:36 -070010007
Jouke Witteveen846a4162018-07-11 11:44:41 +020010008static char __init tpacpi_parse_fw_id(const char * const s,
10009 u32 *model, u16 *release)
Henrique de Moraes Holschuh050df102009-05-30 13:25:05 -030010010{
Jouke Witteveen846a4162018-07-11 11:44:41 +020010011 int i;
Henrique de Moraes Holschuh050df102009-05-30 13:25:05 -030010012
Jouke Witteveen846a4162018-07-11 11:44:41 +020010013 if (!s || strlen(s) < 8)
10014 goto invalid;
10015
10016 for (i = 0; i < 8; i++)
10017 if (!((s[i] >= '0' && s[i] <= '9') ||
10018 (s[i] >= 'A' && s[i] <= 'Z')))
10019 goto invalid;
10020
Adam Lee1b0eb5b2015-02-11 13:43:10 +080010021 /*
10022 * Most models: xxyTkkWW (#.##c)
10023 * Ancient 570/600 and -SL lacks (#.##c)
10024 */
Jouke Witteveen846a4162018-07-11 11:44:41 +020010025 if (s[3] == 'T' || s[3] == 'N') {
10026 *model = TPID(s[0], s[1]);
10027 *release = TPVER(s[4], s[5]);
10028 return s[2];
Adam Lee1b0eb5b2015-02-11 13:43:10 +080010029
10030 /* New models: xxxyTkkW (#.##c); T550 and some others */
Jouke Witteveen846a4162018-07-11 11:44:41 +020010031 } else if (s[4] == 'T' || s[4] == 'N') {
10032 *model = TPID3(s[0], s[1], s[2]);
10033 *release = TPVER(s[5], s[6]);
10034 return s[3];
10035 }
10036
10037invalid:
10038 return '\0';
Henrique de Moraes Holschuh050df102009-05-30 13:25:05 -030010039}
10040
Jiaxun Yang9a4b33d2019-03-08 21:14:26 +080010041static void find_new_ec_fwstr(const struct dmi_header *dm, void *private)
10042{
10043 char *ec_fw_string = (char *) private;
10044 const char *dmi_data = (const char *)dm;
10045 /*
10046 * ThinkPad Embedded Controller Program Table on newer models
10047 *
10048 * Offset | Name | Width | Description
10049 * ----------------------------------------------------
10050 * 0x00 | Type | BYTE | 0x8C
10051 * 0x01 | Length | BYTE |
10052 * 0x02 | Handle | WORD | Varies
10053 * 0x04 | Signature | BYTEx6 | ASCII for "LENOVO"
10054 * 0x0A | OEM struct offset | BYTE | 0x0B
10055 * 0x0B | OEM struct number | BYTE | 0x07, for this structure
10056 * 0x0C | OEM struct revision | BYTE | 0x01, for this format
10057 * 0x0D | ECP version ID | STR ID |
10058 * 0x0E | ECP release date | STR ID |
10059 */
10060
10061 /* Return if data structure not match */
10062 if (dm->type != 140 || dm->length < 0x0F ||
10063 memcmp(dmi_data + 4, "LENOVO", 6) != 0 ||
10064 dmi_data[0x0A] != 0x0B || dmi_data[0x0B] != 0x07 ||
10065 dmi_data[0x0C] != 0x01)
10066 return;
10067
10068 /* fwstr is the first 8byte string */
10069 strncpy(ec_fw_string, dmi_data + 0x0F, 8);
10070}
10071
Henrique de Moraes Holschuhbf20e742008-07-21 09:15:51 -030010072/* returns 0 - probe ok, or < 0 - probe error.
10073 * Probe ok doesn't mean thinkpad found.
10074 * On error, kfree() cleanup on tp->* is not performed, caller must do it */
10075static int __must_check __init get_thinkpad_model_data(
10076 struct thinkpad_id_data *tp)
Henrique de Moraes Holschuh60eb0b32006-11-24 11:47:08 -020010077{
Jeff Garzik18552562007-10-03 15:15:40 -040010078 const struct dmi_device *dev = NULL;
Jiaxun Yang9a4b33d2019-03-08 21:14:26 +080010079 char ec_fw_string[18] = {0};
Henrique de Moraes Holschuhbf20e742008-07-21 09:15:51 -030010080 char const *s;
Jouke Witteveen846a4162018-07-11 11:44:41 +020010081 char t;
Henrique de Moraes Holschuh60eb0b32006-11-24 11:47:08 -020010082
Henrique de Moraes Holschuhd5a2f2f2007-07-18 23:45:42 -030010083 if (!tp)
Henrique de Moraes Holschuhbf20e742008-07-21 09:15:51 -030010084 return -EINVAL;
Henrique de Moraes Holschuhd5a2f2f2007-07-18 23:45:42 -030010085
10086 memset(tp, 0, sizeof(*tp));
10087
10088 if (dmi_name_in_vendors("IBM"))
10089 tp->vendor = PCI_VENDOR_ID_IBM;
10090 else if (dmi_name_in_vendors("LENOVO"))
10091 tp->vendor = PCI_VENDOR_ID_LENOVO;
10092 else
Henrique de Moraes Holschuhbf20e742008-07-21 09:15:51 -030010093 return 0;
Henrique de Moraes Holschuhd5a2f2f2007-07-18 23:45:42 -030010094
Henrique de Moraes Holschuhbf20e742008-07-21 09:15:51 -030010095 s = dmi_get_system_info(DMI_BIOS_VERSION);
10096 tp->bios_version_str = kstrdup(s, GFP_KERNEL);
10097 if (s && !tp->bios_version_str)
10098 return -ENOMEM;
Henrique de Moraes Holschuh050df102009-05-30 13:25:05 -030010099
10100 /* Really ancient ThinkPad 240X will fail this, which is fine */
Jouke Witteveen846a4162018-07-11 11:44:41 +020010101 t = tpacpi_parse_fw_id(tp->bios_version_str,
10102 &tp->bios_model, &tp->bios_release);
10103 if (t != 'E' && t != 'C')
Henrique de Moraes Holschuhbf20e742008-07-21 09:15:51 -030010104 return 0;
Henrique de Moraes Holschuh050df102009-05-30 13:25:05 -030010105
Henrique de Moraes Holschuh60eb0b32006-11-24 11:47:08 -020010106 /*
10107 * ThinkPad T23 or newer, A31 or newer, R50e or newer,
10108 * X32 or newer, all Z series; Some models must have an
10109 * up-to-date BIOS or they will not be detected.
10110 *
10111 * See http://thinkwiki.org/wiki/List_of_DMI_IDs
10112 */
10113 while ((dev = dmi_find_device(DMI_DEV_TYPE_OEM_STRING, NULL, dev))) {
Henrique de Moraes Holschuh49a13cd2006-11-24 11:47:13 -020010114 if (sscanf(dev->name,
10115 "IBM ThinkPad Embedded Controller -[%17c",
10116 ec_fw_string) == 1) {
10117 ec_fw_string[sizeof(ec_fw_string) - 1] = 0;
10118 ec_fw_string[strcspn(ec_fw_string, " ]")] = 0;
Henrique de Moraes Holschuhd5a2f2f2007-07-18 23:45:42 -030010119 break;
Henrique de Moraes Holschuh49a13cd2006-11-24 11:47:13 -020010120 }
Henrique de Moraes Holschuh60eb0b32006-11-24 11:47:08 -020010121 }
Henrique de Moraes Holschuhd5a2f2f2007-07-18 23:45:42 -030010122
Jiaxun Yang9a4b33d2019-03-08 21:14:26 +080010123 /* Newer ThinkPads have different EC program info table */
10124 if (!ec_fw_string[0])
10125 dmi_walk(find_new_ec_fwstr, &ec_fw_string);
10126
10127 if (ec_fw_string[0]) {
10128 tp->ec_version_str = kstrdup(ec_fw_string, GFP_KERNEL);
10129 if (!tp->ec_version_str)
10130 return -ENOMEM;
10131
10132 t = tpacpi_parse_fw_id(ec_fw_string,
10133 &tp->ec_model, &tp->ec_release);
10134 if (t != 'H') {
10135 pr_notice("ThinkPad firmware release %s doesn't match the known patterns\n",
10136 ec_fw_string);
10137 pr_notice("please report this to %s\n", TPACPI_MAIL);
10138 }
10139 }
10140
Henrique de Moraes Holschuhbf20e742008-07-21 09:15:51 -030010141 s = dmi_get_system_info(DMI_PRODUCT_VERSION);
Rasmus Villemoes40f5c772014-10-13 15:54:52 -070010142 if (s && !(strncasecmp(s, "ThinkPad", 8) && strncasecmp(s, "Lenovo", 6))) {
Henrique de Moraes Holschuhbf20e742008-07-21 09:15:51 -030010143 tp->model_str = kstrdup(s, GFP_KERNEL);
10144 if (!tp->model_str)
10145 return -ENOMEM;
Manoj Iyera4f46bb2012-08-06 18:15:37 -050010146 } else {
10147 s = dmi_get_system_info(DMI_BIOS_VENDOR);
Rasmus Villemoes40f5c772014-10-13 15:54:52 -070010148 if (s && !(strncasecmp(s, "Lenovo", 6))) {
Manoj Iyera4f46bb2012-08-06 18:15:37 -050010149 tp->model_str = kstrdup(s, GFP_KERNEL);
10150 if (!tp->model_str)
10151 return -ENOMEM;
10152 }
Henrique de Moraes Holschuhd5a2f2f2007-07-18 23:45:42 -030010153 }
Henrique de Moraes Holschuh8c74adb2008-04-26 01:02:19 -030010154
Henrique de Moraes Holschuhbf20e742008-07-21 09:15:51 -030010155 s = dmi_get_system_info(DMI_PRODUCT_NAME);
10156 tp->nummodel_str = kstrdup(s, GFP_KERNEL);
10157 if (s && !tp->nummodel_str)
10158 return -ENOMEM;
10159
10160 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010161}
10162
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -030010163static int __init probe_for_thinkpad(void)
10164{
10165 int is_thinkpad;
10166
10167 if (acpi_disabled)
10168 return -ENODEV;
10169
Henrique de Moraes Holschuhe28393c2010-05-16 19:45:23 -030010170 /* It would be dangerous to run the driver in this case */
10171 if (!tpacpi_is_ibm() && !tpacpi_is_lenovo())
10172 return -ENODEV;
10173
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -030010174 /*
10175 * Non-ancient models have better DMI tagging, but very old models
Henrique de Moraes Holschuhe675aba2009-09-12 15:22:13 -030010176 * don't. tpacpi_is_fw_known() is a cheat to help in that case.
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -030010177 */
Henrique de Moraes Holschuhe675aba2009-09-12 15:22:13 -030010178 is_thinkpad = (thinkpad_id.model_str != NULL) ||
10179 (thinkpad_id.ec_model != 0) ||
10180 tpacpi_is_fw_known();
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -030010181
Henrique de Moraes Holschuh437e4702010-05-16 19:45:43 -030010182 /* The EC handler is required */
10183 tpacpi_acpi_handle_locate("ec", TPACPI_ACPI_EC_HID, &ec_handle);
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -030010184 if (!ec_handle) {
10185 if (is_thinkpad)
Joe Perches0978e012011-04-04 10:06:25 -070010186 pr_err("Not yet supported ThinkPad detected!\n");
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -030010187 return -ENODEV;
10188 }
10189
Henrique de Moraes Holschuh0dcef772007-04-21 11:08:34 -030010190 if (!is_thinkpad && !force_load)
10191 return -ENODEV;
10192
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -030010193 return 0;
10194}
10195
Henrique de Moraes Holschuh7a43f782010-05-16 19:45:31 -030010196static void __init thinkpad_acpi_init_banner(void)
10197{
Joe Perches0978e012011-04-04 10:06:25 -070010198 pr_info("%s v%s\n", TPACPI_DESC, TPACPI_VERSION);
10199 pr_info("%s\n", TPACPI_URL);
Henrique de Moraes Holschuh7a43f782010-05-16 19:45:31 -030010200
Joe Perches0978e012011-04-04 10:06:25 -070010201 pr_info("ThinkPad BIOS %s, EC %s\n",
Henrique de Moraes Holschuh7a43f782010-05-16 19:45:31 -030010202 (thinkpad_id.bios_version_str) ?
10203 thinkpad_id.bios_version_str : "unknown",
10204 (thinkpad_id.ec_version_str) ?
10205 thinkpad_id.ec_version_str : "unknown");
10206
10207 BUG_ON(!thinkpad_id.vendor);
10208
10209 if (thinkpad_id.model_str)
Joe Perches0978e012011-04-04 10:06:25 -070010210 pr_info("%s %s, model %s\n",
Henrique de Moraes Holschuh7a43f782010-05-16 19:45:31 -030010211 (thinkpad_id.vendor == PCI_VENDOR_ID_IBM) ?
10212 "IBM" : ((thinkpad_id.vendor ==
10213 PCI_VENDOR_ID_LENOVO) ?
10214 "Lenovo" : "Unknown vendor"),
10215 thinkpad_id.model_str,
10216 (thinkpad_id.nummodel_str) ?
10217 thinkpad_id.nummodel_str : "unknown");
10218}
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -030010219
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -030010220/* Module init, exit, parameters */
10221
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -030010222static struct ibm_init_struct ibms_init[] __initdata = {
10223 {
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -030010224 .data = &thinkpad_acpi_driver_data,
10225 },
10226 {
10227 .init = hotkey_init,
10228 .data = &hotkey_driver_data,
10229 },
10230 {
10231 .init = bluetooth_init,
10232 .data = &bluetooth_driver_data,
10233 },
10234 {
10235 .init = wan_init,
10236 .data = &wan_driver_data,
10237 },
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -020010238 {
10239 .init = uwb_init,
10240 .data = &uwb_driver_data,
10241 },
Henrique de Moraes Holschuhd7c1d172008-02-16 02:17:54 -020010242#ifdef CONFIG_THINKPAD_ACPI_VIDEO
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -030010243 {
10244 .init = video_init,
Henrique de Moraes Holschuhb525c062010-02-25 22:22:22 -030010245 .base_procfs_mode = S_IRUSR,
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -030010246 .data = &video_driver_data,
10247 },
Henrique de Moraes Holschuhd7c1d172008-02-16 02:17:54 -020010248#endif
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -030010249 {
Pali Rohárbb28f3d52015-12-30 23:27:41 +010010250 .init = kbdlight_init,
10251 .data = &kbdlight_driver_data,
10252 },
10253 {
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -030010254 .init = light_init,
10255 .data = &light_driver_data,
10256 },
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -030010257 {
10258 .init = cmos_init,
10259 .data = &cmos_driver_data,
10260 },
10261 {
10262 .init = led_init,
10263 .data = &led_driver_data,
10264 },
10265 {
10266 .init = beep_init,
10267 .data = &beep_driver_data,
10268 },
10269 {
10270 .init = thermal_init,
10271 .data = &thermal_driver_data,
10272 },
10273 {
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -030010274 .init = brightness_init,
10275 .data = &brightness_driver_data,
10276 },
10277 {
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -020010278 .init = volume_init,
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -030010279 .data = &volume_driver_data,
10280 },
10281 {
10282 .init = fan_init,
10283 .data = &fan_driver_data,
10284 },
David Henningsson420f9732013-10-16 23:10:31 +020010285 {
10286 .init = mute_led_init,
10287 .data = &mute_led_driver_data,
10288 },
Ognjen Galic2801b962018-02-07 15:58:44 +010010289 {
10290 .init = tpacpi_battery_init,
10291 .data = &battery_driver_data,
10292 },
Alexander Schremmer110ea1d2019-08-22 13:48:33 +020010293 {
10294 .init = tpacpi_lcdshadow_init,
10295 .data = &lcdshadow_driver_data,
10296 },
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -030010297};
10298
Kees Cooke4dca7b2017-10-17 19:04:42 -070010299static int __init set_ibm_param(const char *val, const struct kernel_param *kp)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -030010300{
10301 unsigned int i;
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -030010302 struct ibm_struct *ibm;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -030010303
Henrique de Moraes Holschuh59f91ff2007-11-18 09:18:29 -020010304 if (!kp || !kp->name || !val)
10305 return -EINVAL;
10306
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -030010307 for (i = 0; i < ARRAY_SIZE(ibms_init); i++) {
10308 ibm = ibms_init[i].data;
Henrique de Moraes Holschuh59f91ff2007-11-18 09:18:29 -020010309 WARN_ON(ibm == NULL);
10310
10311 if (!ibm || !ibm->name)
10312 continue;
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -030010313
10314 if (strcmp(ibm->name, kp->name) == 0 && ibm->write) {
Andy Shevchenkobe51bd42020-05-11 15:56:24 +030010315 if (strlen(val) > sizeof(ibms_init[i].param) - 1)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -030010316 return -ENOSPC;
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -030010317 strcpy(ibms_init[i].param, val);
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -030010318 return 0;
10319 }
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -030010320 }
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -030010321
10322 return -EINVAL;
10323}
10324
Henrique de Moraes Holschuhb09c7222009-12-09 01:36:27 +000010325module_param(experimental, int, 0444);
Henrique de Moraes Holschuhf68080f2008-01-08 13:02:47 -020010326MODULE_PARM_DESC(experimental,
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -020010327 "Enables experimental features when non-zero");
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -030010328
Henrique de Moraes Holschuh132ce092007-04-21 11:08:30 -030010329module_param_named(debug, dbg_level, uint, 0);
Henrique de Moraes Holschuhf68080f2008-01-08 13:02:47 -020010330MODULE_PARM_DESC(debug, "Sets debug level bit-mask");
Henrique de Moraes Holschuh132ce092007-04-21 11:08:30 -030010331
Henrique de Moraes Holschuhb09c7222009-12-09 01:36:27 +000010332module_param(force_load, bool, 0444);
Henrique de Moraes Holschuhf68080f2008-01-08 13:02:47 -020010333MODULE_PARM_DESC(force_load,
Andy Shevchenko5cac62a2017-05-09 17:17:20 +030010334 "Attempts to load the driver even on a mis-identified ThinkPad when true");
Henrique de Moraes Holschuh0dcef772007-04-21 11:08:34 -030010335
Henrique de Moraes Holschuhb09c7222009-12-09 01:36:27 +000010336module_param_named(fan_control, fan_control_allowed, bool, 0444);
Henrique de Moraes Holschuhf68080f2008-01-08 13:02:47 -020010337MODULE_PARM_DESC(fan_control,
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -020010338 "Enables setting fan parameters features when true");
Henrique de Moraes Holschuhecf2a802007-04-27 22:00:09 -030010339
Henrique de Moraes Holschuhb09c7222009-12-09 01:36:27 +000010340module_param_named(brightness_mode, brightness_mode, uint, 0444);
Henrique de Moraes Holschuhf68080f2008-01-08 13:02:47 -020010341MODULE_PARM_DESC(brightness_mode,
Andy Shevchenko5cac62a2017-05-09 17:17:20 +030010342 "Selects brightness control strategy: 0=auto, 1=EC, 2=UCMS, 3=EC+NVRAM");
Henrique de Moraes Holschuh24d3b772007-07-18 23:45:43 -030010343
Henrique de Moraes Holschuhb09c7222009-12-09 01:36:27 +000010344module_param(brightness_enable, uint, 0444);
Henrique de Moraes Holschuhf68080f2008-01-08 13:02:47 -020010345MODULE_PARM_DESC(brightness_enable,
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -020010346 "Enables backlight control when 1, disables when 0");
Henrique de Moraes Holschuh87cc5372007-10-30 18:02:07 -020010347
Henrique de Moraes Holschuhff850c32009-12-26 22:52:15 -020010348#ifdef CONFIG_THINKPAD_ACPI_ALSA_SUPPORT
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -020010349module_param_named(volume_mode, volume_mode, uint, 0444);
10350MODULE_PARM_DESC(volume_mode,
Andy Shevchenko5cac62a2017-05-09 17:17:20 +030010351 "Selects volume control strategy: 0=auto, 1=EC, 2=N/A, 3=EC+NVRAM");
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -020010352
Henrique de Moraes Holschuha112cee2009-12-15 21:51:09 -020010353module_param_named(volume_capabilities, volume_capabilities, uint, 0444);
10354MODULE_PARM_DESC(volume_capabilities,
Colin Ian Kingd33a7e52019-04-15 13:52:04 +010010355 "Selects the mixer capabilities: 0=auto, 1=volume and mute, 2=mute only");
Henrique de Moraes Holschuha112cee2009-12-15 21:51:09 -020010356
Henrique de Moraes Holschuhc7ac6292009-12-15 21:51:10 -020010357module_param_named(volume_control, volume_control_allowed, bool, 0444);
10358MODULE_PARM_DESC(volume_control,
Andy Shevchenko5cac62a2017-05-09 17:17:20 +030010359 "Enables software override for the console audio control when true");
Henrique de Moraes Holschuhc7ac6292009-12-15 21:51:10 -020010360
Andy Lutomirski9a417ec2014-10-17 17:04:29 -070010361module_param_named(software_mute, software_mute_requested, bool, 0444);
10362MODULE_PARM_DESC(software_mute,
10363 "Request full software mute control");
10364
Henrique de Moraes Holschuh0d204c32009-12-15 21:51:11 -020010365/* ALSA module API parameters */
10366module_param_named(index, alsa_index, int, 0444);
10367MODULE_PARM_DESC(index, "ALSA index for the ACPI EC Mixer");
10368module_param_named(id, alsa_id, charp, 0444);
10369MODULE_PARM_DESC(id, "ALSA id for the ACPI EC Mixer");
10370module_param_named(enable, alsa_enable, bool, 0444);
10371MODULE_PARM_DESC(enable, "Enable the ALSA interface for the ACPI EC Mixer");
Henrique de Moraes Holschuhff850c32009-12-26 22:52:15 -020010372#endif /* CONFIG_THINKPAD_ACPI_ALSA_SUPPORT */
Henrique de Moraes Holschuh0d204c32009-12-15 21:51:11 -020010373
Andy Shevchenko9b4bbbd2017-05-09 17:17:21 +030010374/* The module parameter can't be read back, that's why 0 is used here */
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -020010375#define TPACPI_PARAM(feature) \
Henrique de Moraes Holschuhf68080f2008-01-08 13:02:47 -020010376 module_param_call(feature, set_ibm_param, NULL, NULL, 0); \
Andy Shevchenko5cac62a2017-05-09 17:17:20 +030010377 MODULE_PARM_DESC(feature, "Simulates thinkpad-acpi procfs command at module load, see documentation")
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -030010378
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -020010379TPACPI_PARAM(hotkey);
10380TPACPI_PARAM(bluetooth);
10381TPACPI_PARAM(video);
10382TPACPI_PARAM(light);
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -020010383TPACPI_PARAM(cmos);
10384TPACPI_PARAM(led);
10385TPACPI_PARAM(beep);
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -020010386TPACPI_PARAM(brightness);
10387TPACPI_PARAM(volume);
10388TPACPI_PARAM(fan);
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -030010389
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -020010390#ifdef CONFIG_THINKPAD_ACPI_DEBUGFACILITIES
Henrique de Moraes Holschuhb09c7222009-12-09 01:36:27 +000010391module_param(dbg_wlswemul, uint, 0444);
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -020010392MODULE_PARM_DESC(dbg_wlswemul, "Enables WLSW emulation");
10393module_param_named(wlsw_state, tpacpi_wlsw_emulstate, bool, 0);
10394MODULE_PARM_DESC(wlsw_state,
10395 "Initial state of the emulated WLSW switch");
10396
Henrique de Moraes Holschuhb09c7222009-12-09 01:36:27 +000010397module_param(dbg_bluetoothemul, uint, 0444);
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -020010398MODULE_PARM_DESC(dbg_bluetoothemul, "Enables bluetooth switch emulation");
10399module_param_named(bluetooth_state, tpacpi_bluetooth_emulstate, bool, 0);
10400MODULE_PARM_DESC(bluetooth_state,
10401 "Initial state of the emulated bluetooth switch");
10402
Henrique de Moraes Holschuhb09c7222009-12-09 01:36:27 +000010403module_param(dbg_wwanemul, uint, 0444);
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -020010404MODULE_PARM_DESC(dbg_wwanemul, "Enables WWAN switch emulation");
10405module_param_named(wwan_state, tpacpi_wwan_emulstate, bool, 0);
10406MODULE_PARM_DESC(wwan_state,
10407 "Initial state of the emulated WWAN switch");
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -020010408
Henrique de Moraes Holschuhb09c7222009-12-09 01:36:27 +000010409module_param(dbg_uwbemul, uint, 0444);
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -020010410MODULE_PARM_DESC(dbg_uwbemul, "Enables UWB switch emulation");
10411module_param_named(uwb_state, tpacpi_uwb_emulstate, bool, 0);
10412MODULE_PARM_DESC(uwb_state,
10413 "Initial state of the emulated UWB switch");
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -020010414#endif
10415
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -020010416static void thinkpad_acpi_module_exit(void)
10417{
10418 struct ibm_struct *ibm, *itmp;
10419
10420 tpacpi_lifecycle = TPACPI_LIFE_EXITING;
10421
10422 list_for_each_entry_safe_reverse(ibm, itmp,
10423 &tpacpi_all_drivers,
10424 all_drivers) {
10425 ibm_exit(ibm);
10426 }
10427
10428 dbg_printk(TPACPI_DBG_INIT, "finished subdriver exit path...\n");
10429
10430 if (tpacpi_inputdev) {
10431 if (tp_features.input_device_registered)
10432 input_unregister_device(tpacpi_inputdev);
10433 else
10434 input_free_device(tpacpi_inputdev);
Li Dongyang00d39592012-07-25 10:45:09 +100010435 kfree(hotkey_keycode_map);
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -020010436 }
10437
10438 if (tpacpi_hwmon)
10439 hwmon_device_unregister(tpacpi_hwmon);
10440
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -020010441 if (tpacpi_sensors_pdev)
10442 platform_device_unregister(tpacpi_sensors_pdev);
10443 if (tpacpi_pdev)
10444 platform_device_unregister(tpacpi_pdev);
10445
10446 if (tp_features.sensors_pdrv_attrs_registered)
10447 tpacpi_remove_driver_attributes(&tpacpi_hwmon_pdriver.driver);
10448 if (tp_features.platform_drv_attrs_registered)
10449 tpacpi_remove_driver_attributes(&tpacpi_pdriver.driver);
10450
10451 if (tp_features.sensors_pdrv_registered)
10452 platform_driver_unregister(&tpacpi_hwmon_pdriver);
10453
10454 if (tp_features.platform_drv_registered)
10455 platform_driver_unregister(&tpacpi_pdriver);
10456
10457 if (proc_dir)
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -020010458 remove_proc_entry(TPACPI_PROC_DIR, acpi_root_dir);
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -020010459
Henrique de Moraes Holschuhe0e3c062008-04-26 01:02:28 -030010460 if (tpacpi_wq)
10461 destroy_workqueue(tpacpi_wq);
10462
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -020010463 kfree(thinkpad_id.bios_version_str);
10464 kfree(thinkpad_id.ec_version_str);
10465 kfree(thinkpad_id.model_str);
Li Dongyangd2be15b2012-07-25 10:45:08 +100010466 kfree(thinkpad_id.nummodel_str);
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -020010467}
10468
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -020010469
Henrique de Moraes Holschuh1def7112007-04-21 11:08:27 -030010470static int __init thinkpad_acpi_module_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -070010471{
10472 int ret, i;
10473
Henrique de Moraes Holschuh8fef5022007-09-23 11:39:02 -030010474 tpacpi_lifecycle = TPACPI_LIFE_INIT;
10475
Henrique de Moraes Holschuh54ae1502007-04-24 11:48:12 -030010476 /* Driver-level probe */
Henrique de Moraes Holschuhd5a2f2f2007-07-18 23:45:42 -030010477
Henrique de Moraes Holschuhbf20e742008-07-21 09:15:51 -030010478 ret = get_thinkpad_model_data(&thinkpad_id);
10479 if (ret) {
Joe Perches0978e012011-04-04 10:06:25 -070010480 pr_err("unable to get DMI data: %d\n", ret);
Henrique de Moraes Holschuhbf20e742008-07-21 09:15:51 -030010481 thinkpad_acpi_module_exit();
10482 return ret;
10483 }
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -030010484 ret = probe_for_thinkpad();
Henrique de Moraes Holschuhd5a2f2f2007-07-18 23:45:42 -030010485 if (ret) {
10486 thinkpad_acpi_module_exit();
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -030010487 return ret;
Henrique de Moraes Holschuhd5a2f2f2007-07-18 23:45:42 -030010488 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070010489
Henrique de Moraes Holschuh54ae1502007-04-24 11:48:12 -030010490 /* Driver initialization */
Henrique de Moraes Holschuhd5a2f2f2007-07-18 23:45:42 -030010491
Henrique de Moraes Holschuh7a43f782010-05-16 19:45:31 -030010492 thinkpad_acpi_init_banner();
10493 tpacpi_check_outdated_fw();
10494
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -020010495 TPACPI_ACPIHANDLE_INIT(ecrd);
10496 TPACPI_ACPIHANDLE_INIT(ecwr);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010497
Henrique de Moraes Holschuhe0e3c062008-04-26 01:02:28 -030010498 tpacpi_wq = create_singlethread_workqueue(TPACPI_WORKQUEUE_NAME);
10499 if (!tpacpi_wq) {
10500 thinkpad_acpi_module_exit();
10501 return -ENOMEM;
10502 }
10503
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -020010504 proc_dir = proc_mkdir(TPACPI_PROC_DIR, acpi_root_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010505 if (!proc_dir) {
Joe Perches0978e012011-04-04 10:06:25 -070010506 pr_err("unable to create proc dir " TPACPI_PROC_DIR "\n");
Henrique de Moraes Holschuh1def7112007-04-21 11:08:27 -030010507 thinkpad_acpi_module_exit();
Linus Torvalds1da177e2005-04-16 15:20:36 -070010508 return -ENODEV;
10509 }
Borislav Deianov78f81cc2005-08-17 00:00:00 -040010510
Henrique de Moraes Holschuh54ae1502007-04-24 11:48:12 -030010511 ret = platform_driver_register(&tpacpi_pdriver);
10512 if (ret) {
Joe Perches0978e012011-04-04 10:06:25 -070010513 pr_err("unable to register main platform driver\n");
Henrique de Moraes Holschuh54ae1502007-04-24 11:48:12 -030010514 thinkpad_acpi_module_exit();
10515 return ret;
10516 }
Henrique de Moraes Holschuhac363932007-07-27 17:04:40 -030010517 tp_features.platform_drv_registered = 1;
10518
Henrique de Moraes Holschuh7fd40022007-09-25 06:38:03 -030010519 ret = platform_driver_register(&tpacpi_hwmon_pdriver);
10520 if (ret) {
Joe Perches0978e012011-04-04 10:06:25 -070010521 pr_err("unable to register hwmon platform driver\n");
Henrique de Moraes Holschuh7fd40022007-09-25 06:38:03 -030010522 thinkpad_acpi_module_exit();
10523 return ret;
10524 }
10525 tp_features.sensors_pdrv_registered = 1;
10526
Henrique de Moraes Holschuh176750d2007-04-24 11:48:13 -030010527 ret = tpacpi_create_driver_attributes(&tpacpi_pdriver.driver);
Henrique de Moraes Holschuh2369cc92007-09-23 11:39:07 -030010528 if (!ret) {
10529 tp_features.platform_drv_attrs_registered = 1;
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -020010530 ret = tpacpi_create_driver_attributes(
10531 &tpacpi_hwmon_pdriver.driver);
Henrique de Moraes Holschuh2369cc92007-09-23 11:39:07 -030010532 }
Henrique de Moraes Holschuh176750d2007-04-24 11:48:13 -030010533 if (ret) {
Joe Perches0978e012011-04-04 10:06:25 -070010534 pr_err("unable to create sysfs driver attributes\n");
Henrique de Moraes Holschuh176750d2007-04-24 11:48:13 -030010535 thinkpad_acpi_module_exit();
10536 return ret;
10537 }
Henrique de Moraes Holschuh2369cc92007-09-23 11:39:07 -030010538 tp_features.sensors_pdrv_attrs_registered = 1;
Henrique de Moraes Holschuh176750d2007-04-24 11:48:13 -030010539
Henrique de Moraes Holschuh54ae1502007-04-24 11:48:12 -030010540
10541 /* Device initialization */
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -020010542 tpacpi_pdev = platform_device_register_simple(TPACPI_DRVR_NAME, -1,
Henrique de Moraes Holschuh54ae1502007-04-24 11:48:12 -030010543 NULL, 0);
10544 if (IS_ERR(tpacpi_pdev)) {
10545 ret = PTR_ERR(tpacpi_pdev);
10546 tpacpi_pdev = NULL;
Joe Perches0978e012011-04-04 10:06:25 -070010547 pr_err("unable to register platform device\n");
Henrique de Moraes Holschuh54ae1502007-04-24 11:48:12 -030010548 thinkpad_acpi_module_exit();
10549 return ret;
10550 }
Henrique de Moraes Holschuh7fd40022007-09-25 06:38:03 -030010551 tpacpi_sensors_pdev = platform_device_register_simple(
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -020010552 TPACPI_HWMON_DRVR_NAME,
10553 -1, NULL, 0);
Henrique de Moraes Holschuh7fd40022007-09-25 06:38:03 -030010554 if (IS_ERR(tpacpi_sensors_pdev)) {
10555 ret = PTR_ERR(tpacpi_sensors_pdev);
10556 tpacpi_sensors_pdev = NULL;
Joe Perches0978e012011-04-04 10:06:25 -070010557 pr_err("unable to register hwmon platform device\n");
Henrique de Moraes Holschuh7fd40022007-09-25 06:38:03 -030010558 thinkpad_acpi_module_exit();
10559 return ret;
10560 }
Henrique de Moraes Holschuh7fd40022007-09-25 06:38:03 -030010561 tp_features.sensors_pdev_attrs_registered = 1;
Stanislav Fomichev6b99e352017-06-20 20:45:13 -070010562 tpacpi_hwmon = hwmon_device_register_with_groups(
10563 &tpacpi_sensors_pdev->dev, TPACPI_NAME, NULL, NULL);
10564
Henrique de Moraes Holschuh54ae1502007-04-24 11:48:12 -030010565 if (IS_ERR(tpacpi_hwmon)) {
10566 ret = PTR_ERR(tpacpi_hwmon);
10567 tpacpi_hwmon = NULL;
Joe Perches0978e012011-04-04 10:06:25 -070010568 pr_err("unable to register hwmon device\n");
Henrique de Moraes Holschuh54ae1502007-04-24 11:48:12 -030010569 thinkpad_acpi_module_exit();
10570 return ret;
10571 }
Henrique de Moraes Holschuh8523ed62007-09-23 11:39:01 -030010572 mutex_init(&tpacpi_inputdev_send_mutex);
Henrique de Moraes Holschuh7f5d1cd2007-07-18 23:45:34 -030010573 tpacpi_inputdev = input_allocate_device();
10574 if (!tpacpi_inputdev) {
Henrique de Moraes Holschuh7f5d1cd2007-07-18 23:45:34 -030010575 thinkpad_acpi_module_exit();
10576 return -ENOMEM;
10577 } else {
10578 /* Prepare input device, but don't register */
10579 tpacpi_inputdev->name = "ThinkPad Extra Buttons";
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -020010580 tpacpi_inputdev->phys = TPACPI_DRVR_NAME "/input0";
Henrique de Moraes Holschuh7f5d1cd2007-07-18 23:45:34 -030010581 tpacpi_inputdev->id.bustype = BUS_HOST;
Henrique de Moraes Holschuhe28393c2010-05-16 19:45:23 -030010582 tpacpi_inputdev->id.vendor = thinkpad_id.vendor;
Henrique de Moraes Holschuh7f5d1cd2007-07-18 23:45:34 -030010583 tpacpi_inputdev->id.product = TPACPI_HKEY_INPUT_PRODUCT;
10584 tpacpi_inputdev->id.version = TPACPI_HKEY_INPUT_VERSION;
Henrique de Moraes Holschuhd112ef92009-12-09 01:36:26 +000010585 tpacpi_inputdev->dev.parent = &tpacpi_pdev->dev;
Henrique de Moraes Holschuh7f5d1cd2007-07-18 23:45:34 -030010586 }
Henrique de Moraes Holschuh77775832010-05-16 19:45:33 -030010587
10588 /* Init subdriver dependencies */
10589 tpacpi_detect_brightness_capabilities();
10590
10591 /* Init subdrivers */
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -030010592 for (i = 0; i < ARRAY_SIZE(ibms_init); i++) {
10593 ret = ibm_init(&ibms_init[i]);
10594 if (ret >= 0 && *ibms_init[i].param)
10595 ret = ibms_init[i].data->write(ibms_init[i].param);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010596 if (ret < 0) {
Henrique de Moraes Holschuh1def7112007-04-21 11:08:27 -030010597 thinkpad_acpi_module_exit();
Linus Torvalds1da177e2005-04-16 15:20:36 -070010598 return ret;
10599 }
10600 }
Henrique de Moraes Holschuhb589ea42010-02-25 21:28:58 -030010601
10602 tpacpi_lifecycle = TPACPI_LIFE_RUNNING;
10603
Henrique de Moraes Holschuh7f5d1cd2007-07-18 23:45:34 -030010604 ret = input_register_device(tpacpi_inputdev);
10605 if (ret < 0) {
Joe Perches0978e012011-04-04 10:06:25 -070010606 pr_err("unable to register input device\n");
Henrique de Moraes Holschuh7f5d1cd2007-07-18 23:45:34 -030010607 thinkpad_acpi_module_exit();
10608 return ret;
10609 } else {
10610 tp_features.input_device_registered = 1;
10611 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070010612
10613 return 0;
10614}
10615
Henrique de Moraes Holschuh95e57ab2008-04-26 01:02:22 -030010616MODULE_ALIAS(TPACPI_DRVR_SHORTNAME);
10617
Henrique de Moraes Holschuhf68080f2008-01-08 13:02:47 -020010618/*
Henrique de Moraes Holschuh922fe092009-04-14 02:44:13 +000010619 * This will autoload the driver in almost every ThinkPad
10620 * in widespread use.
10621 *
10622 * Only _VERY_ old models, like the 240, 240x and 570 lack
10623 * the HKEY event interface.
10624 */
10625MODULE_DEVICE_TABLE(acpi, ibm_htk_device_ids);
10626
10627/*
Henrique de Moraes Holschuhf68080f2008-01-08 13:02:47 -020010628 * DMI matching for module autoloading
10629 *
10630 * See http://thinkwiki.org/wiki/List_of_DMI_IDs
10631 * See http://thinkwiki.org/wiki/BIOS_Upgrade_Downloads
10632 *
10633 * Only models listed in thinkwiki will be supported, so add yours
10634 * if it is not there yet.
10635 */
10636#define IBM_BIOS_MODULE_ALIAS(__type) \
Mathieu Chouquet-Stringerb36a50f2009-03-14 16:35:26 +010010637 MODULE_ALIAS("dmi:bvnIBM:bvr" __type "ET??WW*")
Henrique de Moraes Holschuhf68080f2008-01-08 13:02:47 -020010638
Henrique de Moraes Holschuhf68080f2008-01-08 13:02:47 -020010639/* Ancient thinkpad BIOSes have to be identified by
10640 * BIOS type or model number, and there are far less
10641 * BIOS types than model numbers... */
Henrique de Moraes Holschuh922fe092009-04-14 02:44:13 +000010642IBM_BIOS_MODULE_ALIAS("I[MU]"); /* 570, 570e */
Henrique de Moraes Holschuhf68080f2008-01-08 13:02:47 -020010643
Henrique de Moraes Holschuhf68f53a2009-04-14 02:44:12 +000010644MODULE_AUTHOR("Borislav Deianov <borislav@users.sf.net>");
10645MODULE_AUTHOR("Henrique de Moraes Holschuh <hmh@hmh.eng.br>");
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -020010646MODULE_DESCRIPTION(TPACPI_DESC);
10647MODULE_VERSION(TPACPI_VERSION);
Henrique de Moraes Holschuhf68080f2008-01-08 13:02:47 -020010648MODULE_LICENSE("GPL");
10649
Henrique de Moraes Holschuh1def7112007-04-21 11:08:27 -030010650module_init(thinkpad_acpi_module_init);
10651module_exit(thinkpad_acpi_module_exit);