1 // SPDX-License-Identifier: GPL-2.0-or-later
2 /*
3 * thinkpad_acpi.c - ThinkPad ACPI Extras
4 *
5 * Copyright (C) 2004-2005 Borislav Deianov <borislav@users.sf.net>
6 * Copyright (C) 2006-2009 Henrique de Moraes Holschuh <hmh@hmh.eng.br>
7 */
8
9 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
10
11 #define TPACPI_VERSION "0.26"
12 #define TPACPI_SYSFS_VERSION 0x030000
13
14 /*
15 * Changelog:
16 * 2007-10-20 changelog trimmed down
17 *
18 * 2007-03-27 0.14 renamed to thinkpad_acpi and moved to
19 * drivers/misc.
20 *
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.
24 *
25 * 2005-03-17 0.11 support for 600e, 770x
26 * thanks to Jamie Lentin <lentinj@dial.pipex.com>
27 *
28 * 2005-01-16 0.9 use MODULE_VERSION
29 * 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>
35 */
36
37 #include <linux/acpi.h>
38 #include <linux/backlight.h>
39 #include <linux/bitops.h>
40 #include <linux/delay.h>
41 #include <linux/dmi.h>
42 #include <linux/freezer.h>
43 #include <linux/hwmon.h>
44 #include <linux/hwmon-sysfs.h>
45 #include <linux/init.h>
46 #include <linux/input.h>
47 #include <linux/input/sparse-keymap.h>
48 #include <linux/jiffies.h>
49 #include <linux/kernel.h>
50 #include <linux/kthread.h>
51 #include <linux/leds.h>
52 #include <linux/list.h>
53 #include <linux/lockdep.h>
54 #include <linux/module.h>
55 #include <linux/mutex.h>
56 #include <linux/nvram.h>
57 #include <linux/pci.h>
58 #include <linux/platform_device.h>
59 #include <linux/platform_profile.h>
60 #include <linux/power_supply.h>
61 #include <linux/proc_fs.h>
62 #include <linux/rfkill.h>
63 #include <linux/sched.h>
64 #include <linux/sched/signal.h>
65 #include <linux/seq_file.h>
66 #include <linux/slab.h>
67 #include <linux/string.h>
68 #include <linux/string_helpers.h>
69 #include <linux/sysfs.h>
70 #include <linux/types.h>
71 #include <linux/uaccess.h>
72 #include <linux/units.h>
73 #include <linux/workqueue.h>
74
75 #include <acpi/battery.h>
76 #include <acpi/video.h>
77
78 #include <drm/drm_privacy_screen_driver.h>
79
80 #include <sound/control.h>
81 #include <sound/core.h>
82 #include <sound/initval.h>
83
84 #include "dual_accel_detect.h"
85
86 /* ThinkPad CMOS commands */
87 #define TP_CMOS_VOLUME_DOWN 0
88 #define TP_CMOS_VOLUME_UP 1
89 #define TP_CMOS_VOLUME_MUTE 2
90 #define TP_CMOS_BRIGHTNESS_UP 4
91 #define TP_CMOS_BRIGHTNESS_DOWN 5
92 #define TP_CMOS_THINKLIGHT_ON 12
93 #define TP_CMOS_THINKLIGHT_OFF 13
94
95 /* NVRAM Addresses */
96 enum tp_nvram_addr {
97 TP_NVRAM_ADDR_HK2 = 0x57,
98 TP_NVRAM_ADDR_THINKLIGHT = 0x58,
99 TP_NVRAM_ADDR_VIDEO = 0x59,
100 TP_NVRAM_ADDR_BRIGHTNESS = 0x5e,
101 TP_NVRAM_ADDR_MIXER = 0x60,
102 };
103
104 /* NVRAM bit masks */
105 enum {
106 TP_NVRAM_MASK_HKT_THINKPAD = 0x08,
107 TP_NVRAM_MASK_HKT_ZOOM = 0x20,
108 TP_NVRAM_MASK_HKT_DISPLAY = 0x40,
109 TP_NVRAM_MASK_HKT_HIBERNATE = 0x80,
110 TP_NVRAM_MASK_THINKLIGHT = 0x10,
111 TP_NVRAM_MASK_HKT_DISPEXPND = 0x30,
112 TP_NVRAM_MASK_HKT_BRIGHTNESS = 0x20,
113 TP_NVRAM_MASK_LEVEL_BRIGHTNESS = 0x0f,
114 TP_NVRAM_POS_LEVEL_BRIGHTNESS = 0,
115 TP_NVRAM_MASK_MUTE = 0x40,
116 TP_NVRAM_MASK_HKT_VOLUME = 0x80,
117 TP_NVRAM_MASK_LEVEL_VOLUME = 0x0f,
118 TP_NVRAM_POS_LEVEL_VOLUME = 0,
119 };
120
121 /* Misc NVRAM-related */
122 enum {
123 TP_NVRAM_LEVEL_VOLUME_MAX = 14,
124 };
125
126 /* ACPI HIDs */
127 #define TPACPI_ACPI_IBM_HKEY_HID "IBM0068"
128 #define TPACPI_ACPI_LENOVO_HKEY_HID "LEN0068"
129 #define TPACPI_ACPI_LENOVO_HKEY_V2_HID "LEN0268"
130 #define TPACPI_ACPI_EC_HID "PNP0C09"
131
132 /* Input IDs */
133 #define TPACPI_HKEY_INPUT_PRODUCT 0x5054 /* "TP" */
134 #define TPACPI_HKEY_INPUT_VERSION 0x4101
135
136 /* ACPI \WGSV commands */
137 enum {
138 TP_ACPI_WGSV_GET_STATE = 0x01, /* Get state information */
139 TP_ACPI_WGSV_PWR_ON_ON_RESUME = 0x02, /* Resume WWAN powered on */
140 TP_ACPI_WGSV_PWR_OFF_ON_RESUME = 0x03, /* Resume WWAN powered off */
141 TP_ACPI_WGSV_SAVE_STATE = 0x04, /* Save state for S4/S5 */
142 };
143
144 /* TP_ACPI_WGSV_GET_STATE bits */
145 enum {
146 TP_ACPI_WGSV_STATE_WWANEXIST = 0x0001, /* WWAN hw available */
147 TP_ACPI_WGSV_STATE_WWANPWR = 0x0002, /* WWAN radio enabled */
148 TP_ACPI_WGSV_STATE_WWANPWRRES = 0x0004, /* WWAN state at resume */
149 TP_ACPI_WGSV_STATE_WWANBIOSOFF = 0x0008, /* WWAN disabled in BIOS */
150 TP_ACPI_WGSV_STATE_BLTHEXIST = 0x0001, /* BLTH hw available */
151 TP_ACPI_WGSV_STATE_BLTHPWR = 0x0002, /* BLTH radio enabled */
152 TP_ACPI_WGSV_STATE_BLTHPWRRES = 0x0004, /* BLTH state at resume */
153 TP_ACPI_WGSV_STATE_BLTHBIOSOFF = 0x0008, /* BLTH disabled in BIOS */
154 TP_ACPI_WGSV_STATE_UWBEXIST = 0x0010, /* UWB hw available */
155 TP_ACPI_WGSV_STATE_UWBPWR = 0x0020, /* UWB radio enabled */
156 };
157
158 /* HKEY events */
159 enum tpacpi_hkey_event_t {
160 /* Original hotkeys */
161 TP_HKEY_EV_ORIG_KEY_START = 0x1001, /* First hotkey (FN+F1) */
162 TP_HKEY_EV_BRGHT_UP = 0x1010, /* Brightness up */
163 TP_HKEY_EV_BRGHT_DOWN = 0x1011, /* Brightness down */
164 TP_HKEY_EV_KBD_LIGHT = 0x1012, /* Thinklight/kbd backlight */
165 TP_HKEY_EV_VOL_UP = 0x1015, /* Volume up or unmute */
166 TP_HKEY_EV_VOL_DOWN = 0x1016, /* Volume down or unmute */
167 TP_HKEY_EV_VOL_MUTE = 0x1017, /* Mixer output mute */
168 TP_HKEY_EV_ORIG_KEY_END = 0x1020, /* Last original hotkey code */
169
170 /* Adaptive keyboard (2014 X1 Carbon) */
171 TP_HKEY_EV_DFR_CHANGE_ROW = 0x1101, /* Change adaptive kbd Fn row mode */
172 TP_HKEY_EV_DFR_S_QUICKVIEW_ROW = 0x1102, /* Set adap. kbd Fn row to function mode */
173 TP_HKEY_EV_ADAPTIVE_KEY_START = 0x1103, /* First hotkey code on adaptive kbd */
174 TP_HKEY_EV_ADAPTIVE_KEY_END = 0x1116, /* Last hotkey code on adaptive kbd */
175
176 /* Extended hotkey events in 2017+ models */
177 TP_HKEY_EV_EXTENDED_KEY_START = 0x1300, /* First extended hotkey code */
178 TP_HKEY_EV_PRIVACYGUARD_TOGGLE = 0x130f, /* Toggle priv.guard on/off */
179 TP_HKEY_EV_EXTENDED_KEY_END = 0x1319, /* Last extended hotkey code using
180 * hkey -> scancode translation for
181 * compat. Later codes are entered
182 * directly in the sparse-keymap.
183 */
184 TP_HKEY_EV_AMT_TOGGLE = 0x131a, /* Toggle AMT on/off */
185 TP_HKEY_EV_DOUBLETAP_TOGGLE = 0x131c, /* Toggle trackpoint doubletap on/off */
186 TP_HKEY_EV_PROFILE_TOGGLE = 0x131f, /* Toggle platform profile in 2024 systems */
187 TP_HKEY_EV_PROFILE_TOGGLE2 = 0x1401, /* Toggle platform profile in 2025 + systems */
188
189 /* Reasons for waking up from S3/S4 */
190 TP_HKEY_EV_WKUP_S3_UNDOCK = 0x2304, /* undock requested, S3 */
191 TP_HKEY_EV_WKUP_S4_UNDOCK = 0x2404, /* undock requested, S4 */
192 TP_HKEY_EV_WKUP_S3_BAYEJ = 0x2305, /* bay ejection req, S3 */
193 TP_HKEY_EV_WKUP_S4_BAYEJ = 0x2405, /* bay ejection req, S4 */
194 TP_HKEY_EV_WKUP_S3_BATLOW = 0x2313, /* battery empty, S3 */
195 TP_HKEY_EV_WKUP_S4_BATLOW = 0x2413, /* battery empty, S4 */
196
197 /* Auto-sleep after eject request */
198 TP_HKEY_EV_BAYEJ_ACK = 0x3003, /* bay ejection complete */
199 TP_HKEY_EV_UNDOCK_ACK = 0x4003, /* undock complete */
200
201 /* Misc bay events */
202 TP_HKEY_EV_OPTDRV_EJ = 0x3006, /* opt. drive tray ejected */
203 TP_HKEY_EV_HOTPLUG_DOCK = 0x4010, /* docked into hotplug dock
204 or port replicator */
205 TP_HKEY_EV_HOTPLUG_UNDOCK = 0x4011, /* undocked from hotplug
206 dock or port replicator */
207 /*
208 * Thinkpad X1 Tablet series devices emit 0x4012 and 0x4013
209 * when keyboard cover is attached, detached or folded onto the back
210 */
211 TP_HKEY_EV_KBD_COVER_ATTACH = 0x4012, /* keyboard cover attached */
212 TP_HKEY_EV_KBD_COVER_DETACH = 0x4013, /* keyboard cover detached or folded back */
213
214 /* User-interface events */
215 TP_HKEY_EV_LID_CLOSE = 0x5001, /* laptop lid closed */
216 TP_HKEY_EV_LID_OPEN = 0x5002, /* laptop lid opened */
217 TP_HKEY_EV_TABLET_TABLET = 0x5009, /* tablet swivel up */
218 TP_HKEY_EV_TABLET_NOTEBOOK = 0x500a, /* tablet swivel down */
219 TP_HKEY_EV_TABLET_CHANGED = 0x60c0, /* X1 Yoga (2016):
220 * enter/leave tablet mode
221 */
222 TP_HKEY_EV_PEN_INSERTED = 0x500b, /* tablet pen inserted */
223 TP_HKEY_EV_PEN_REMOVED = 0x500c, /* tablet pen removed */
224 TP_HKEY_EV_BRGHT_CHANGED = 0x5010, /* backlight control event */
225
226 /* Key-related user-interface events */
227 TP_HKEY_EV_KEY_NUMLOCK = 0x6000, /* NumLock key pressed */
228 TP_HKEY_EV_KEY_FN = 0x6005, /* Fn key pressed? E420 */
229 TP_HKEY_EV_KEY_FN_ESC = 0x6060, /* Fn+Esc key pressed X240 */
230
231 /* Thermal events */
232 TP_HKEY_EV_ALARM_BAT_HOT = 0x6011, /* battery too hot */
233 TP_HKEY_EV_ALARM_BAT_XHOT = 0x6012, /* battery critically hot */
234 TP_HKEY_EV_ALARM_SENSOR_HOT = 0x6021, /* sensor too hot */
235 TP_HKEY_EV_ALARM_SENSOR_XHOT = 0x6022, /* sensor critically hot */
236 TP_HKEY_EV_THM_TABLE_CHANGED = 0x6030, /* windows; thermal table changed */
237 TP_HKEY_EV_THM_CSM_COMPLETED = 0x6032, /* windows; thermal control set
238 * command completed. Related to
239 * AML DYTC */
240 TP_HKEY_EV_THM_TRANSFM_CHANGED = 0x60F0, /* windows; thermal transformation
241 * changed. Related to AML GMTS */
242
243 /* AC-related events */
244 TP_HKEY_EV_AC_CHANGED = 0x6040, /* AC status changed */
245
246 /* Further user-interface events */
247 TP_HKEY_EV_PALM_DETECTED = 0x60b0, /* palm hoveres keyboard */
248 TP_HKEY_EV_PALM_UNDETECTED = 0x60b1, /* palm removed */
249
250 /* Misc */
251 TP_HKEY_EV_RFKILL_CHANGED = 0x7000, /* rfkill switch changed */
252
253 /* Misc2 */
254 TP_HKEY_EV_TRACK_DOUBLETAP = 0x8036, /* trackpoint doubletap */
255 };
256
257 /****************************************************************************
258 * Main driver
259 */
260
261 #define TPACPI_NAME "thinkpad"
262 #define TPACPI_DESC "ThinkPad ACPI Extras"
263 #define TPACPI_FILE TPACPI_NAME "_acpi"
264 #define TPACPI_URL "http://ibm-acpi.sf.net/"
265 #define TPACPI_MAIL "ibm-acpi-devel@lists.sourceforge.net"
266
267 #define TPACPI_PROC_DIR "ibm"
268 #define TPACPI_ACPI_EVENT_PREFIX "ibm"
269 #define TPACPI_DRVR_NAME TPACPI_FILE
270 #define TPACPI_DRVR_SHORTNAME "tpacpi"
271 #define TPACPI_HWMON_DRVR_NAME TPACPI_NAME "_hwmon"
272
273 #define TPACPI_NVRAM_KTHREAD_NAME "ktpacpi_nvramd"
274 #define TPACPI_WORKQUEUE_NAME "ktpacpid"
275
276 #define TPACPI_MAX_ACPI_ARGS 3
277
278 /* Debugging printk groups */
279 #define TPACPI_DBG_ALL 0xffff
280 #define TPACPI_DBG_DISCLOSETASK 0x8000
281 #define TPACPI_DBG_INIT 0x0001
282 #define TPACPI_DBG_EXIT 0x0002
283 #define TPACPI_DBG_RFKILL 0x0004
284 #define TPACPI_DBG_HKEY 0x0008
285 #define TPACPI_DBG_FAN 0x0010
286 #define TPACPI_DBG_BRGHT 0x0020
287 #define TPACPI_DBG_MIXER 0x0040
288
289 #define FAN_NOT_PRESENT 65535
290
291 /****************************************************************************
292 * Driver-wide structs and misc. variables
293 */
294
295 struct ibm_struct;
296
297 struct tp_acpi_drv_struct {
298 const struct acpi_device_id *hid;
299 struct acpi_driver *driver;
300
301 void (*notify) (struct ibm_struct *, u32);
302 acpi_handle *handle;
303 u32 type;
304 struct acpi_device *device;
305 };
306
307 struct ibm_struct {
308 char *name;
309
310 int (*read) (struct seq_file *);
311 int (*write) (char *);
312 void (*exit) (void);
313 void (*resume) (void);
314 void (*suspend) (void);
315 void (*shutdown) (void);
316
317 struct list_head all_drivers;
318
319 struct tp_acpi_drv_struct *acpi;
320
321 struct {
322 u8 acpi_driver_registered:1;
323 u8 acpi_notify_installed:1;
324 u8 proc_created:1;
325 u8 init_called:1;
326 u8 experimental:1;
327 } flags;
328 };
329
330 struct ibm_init_struct {
331 char param[32];
332
333 int (*init) (struct ibm_init_struct *);
334 umode_t base_procfs_mode;
335 struct ibm_struct *data;
336 };
337
338 /* DMI Quirks */
339 struct quirk_entry {
340 bool btusb_bug;
341 };
342
343 static struct quirk_entry quirk_btusb_bug = {
344 .btusb_bug = true,
345 };
346
347 static struct {
348 u32 bluetooth:1;
349 u32 hotkey:1;
350 u32 hotkey_mask:1;
351 u32 hotkey_wlsw:1;
352 enum {
353 TP_HOTKEY_TABLET_NONE = 0,
354 TP_HOTKEY_TABLET_USES_MHKG,
355 TP_HOTKEY_TABLET_USES_GMMS,
356 } hotkey_tablet;
357 u32 kbdlight:1;
358 u32 light:1;
359 u32 light_status:1;
360 u32 bright_acpimode:1;
361 u32 bright_unkfw:1;
362 u32 wan:1;
363 u32 uwb:1;
364 u32 fan_ctrl_status_undef:1;
365 u32 second_fan:1;
366 u32 second_fan_ctl:1;
367 u32 beep_needs_two_args:1;
368 u32 mixer_no_level_control:1;
369 u32 battery_force_primary:1;
370 u32 platform_drv_registered:1;
371 u32 hotkey_poll_active:1;
372 u32 has_adaptive_kbd:1;
373 u32 kbd_lang:1;
374 u32 trackpoint_doubletap:1;
375 struct quirk_entry *quirks;
376 } tp_features;
377
378 static struct {
379 u16 hotkey_mask_ff:1;
380 u16 volume_ctrl_forbidden:1;
381 } tp_warned;
382
383 struct thinkpad_id_data {
384 unsigned int vendor; /* ThinkPad vendor:
385 * PCI_VENDOR_ID_IBM/PCI_VENDOR_ID_LENOVO */
386
387 char *bios_version_str; /* Something like 1ZET51WW (1.03z) */
388 char *ec_version_str; /* Something like 1ZHT51WW-1.04a */
389
390 u32 bios_model; /* 1Y = 0x3159, 0 = unknown */
391 u32 ec_model;
392 u16 bios_release; /* 1ZETK1WW = 0x4b31, 0 = unknown */
393 u16 ec_release;
394
395 char *model_str; /* ThinkPad T43 */
396 char *nummodel_str; /* 9384A9C for a 9384-A9C model */
397 };
398 static struct thinkpad_id_data thinkpad_id;
399
400 static enum {
401 TPACPI_LIFE_INIT = 0,
402 TPACPI_LIFE_RUNNING,
403 TPACPI_LIFE_EXITING,
404 } tpacpi_lifecycle;
405
406 static int experimental;
407 static u32 dbg_level;
408
409 static struct workqueue_struct *tpacpi_wq;
410
411 enum led_status_t {
412 TPACPI_LED_OFF = 0,
413 TPACPI_LED_ON,
414 TPACPI_LED_BLINK,
415 };
416
417 /* tpacpi LED class */
418 struct tpacpi_led_classdev {
419 struct led_classdev led_classdev;
420 int led;
421 };
422
423 /* brightness level capabilities */
424 static unsigned int bright_maxlvl; /* 0 = unknown */
425
426 #ifdef CONFIG_THINKPAD_ACPI_DEBUGFACILITIES
427 static int dbg_wlswemul;
428 static bool tpacpi_wlsw_emulstate;
429 static int dbg_bluetoothemul;
430 static bool tpacpi_bluetooth_emulstate;
431 static int dbg_wwanemul;
432 static bool tpacpi_wwan_emulstate;
433 static int dbg_uwbemul;
434 static bool tpacpi_uwb_emulstate;
435 #endif
436
437
438 /*************************************************************************
439 * Debugging helpers
440 */
441
442 #define dbg_printk(a_dbg_level, format, arg...) \
443 do { \
444 if (dbg_level & (a_dbg_level)) \
445 printk(KERN_DEBUG pr_fmt("%s: " format), \
446 __func__, ##arg); \
447 } while (0)
448
449 #ifdef CONFIG_THINKPAD_ACPI_DEBUG
450 #define vdbg_printk dbg_printk
451 static const char *str_supported(int is_supported);
452 #else
str_supported(int is_supported)453 static inline const char *str_supported(int is_supported) { return ""; }
454 #define vdbg_printk(a_dbg_level, format, arg...) \
455 do { if (0) no_printk(format, ##arg); } while (0)
456 #endif
457
tpacpi_log_usertask(const char * const what)458 static void tpacpi_log_usertask(const char * const what)
459 {
460 printk(KERN_DEBUG pr_fmt("%s: access by process with PID %d\n"),
461 what, task_tgid_vnr(current));
462 }
463
464 #define tpacpi_disclose_usertask(what, format, arg...) \
465 do { \
466 if (unlikely((dbg_level & TPACPI_DBG_DISCLOSETASK) && \
467 (tpacpi_lifecycle == TPACPI_LIFE_RUNNING))) { \
468 printk(KERN_DEBUG pr_fmt("%s: PID %d: " format), \
469 what, task_tgid_vnr(current), ## arg); \
470 } \
471 } while (0)
472
473 /*
474 * Quirk handling helpers
475 *
476 * ThinkPad IDs and versions seen in the field so far are
477 * two or three characters from the set [0-9A-Z], i.e. base 36.
478 *
479 * We use values well outside that range as specials.
480 */
481
482 #define TPACPI_MATCH_ANY 0xffffffffU
483 #define TPACPI_MATCH_ANY_VERSION 0xffffU
484 #define TPACPI_MATCH_UNKNOWN 0U
485
486 /* TPID('1', 'Y') == 0x3159 */
487 #define TPID(__c1, __c2) (((__c1) << 8) | (__c2))
488 #define TPID3(__c1, __c2, __c3) (((__c1) << 16) | ((__c2) << 8) | (__c3))
489 #define TPVER TPID
490
491 #define TPACPI_Q_IBM(__id1, __id2, __quirk) \
492 { .vendor = PCI_VENDOR_ID_IBM, \
493 .bios = TPID(__id1, __id2), \
494 .ec = TPACPI_MATCH_ANY, \
495 .quirks = (__quirk) }
496
497 #define TPACPI_Q_LNV(__id1, __id2, __quirk) \
498 { .vendor = PCI_VENDOR_ID_LENOVO, \
499 .bios = TPID(__id1, __id2), \
500 .ec = TPACPI_MATCH_ANY, \
501 .quirks = (__quirk) }
502
503 #define TPACPI_Q_LNV3(__id1, __id2, __id3, __quirk) \
504 { .vendor = PCI_VENDOR_ID_LENOVO, \
505 .bios = TPID3(__id1, __id2, __id3), \
506 .ec = TPACPI_MATCH_ANY, \
507 .quirks = (__quirk) }
508
509 #define TPACPI_QEC_IBM(__id1, __id2, __quirk) \
510 { .vendor = PCI_VENDOR_ID_IBM, \
511 .bios = TPACPI_MATCH_ANY, \
512 .ec = TPID(__id1, __id2), \
513 .quirks = (__quirk) }
514
515 #define TPACPI_QEC_LNV(__id1, __id2, __quirk) \
516 { .vendor = PCI_VENDOR_ID_LENOVO, \
517 .bios = TPACPI_MATCH_ANY, \
518 .ec = TPID(__id1, __id2), \
519 .quirks = (__quirk) }
520
521 struct tpacpi_quirk {
522 unsigned int vendor;
523 u32 bios;
524 u32 ec;
525 unsigned long quirks;
526 };
527
528 /**
529 * tpacpi_check_quirks() - search BIOS/EC version on a list
530 * @qlist: array of &struct tpacpi_quirk
531 * @qlist_size: number of elements in @qlist
532 *
533 * Iterates over a quirks list until one is found that matches the
534 * ThinkPad's vendor, BIOS and EC model.
535 *
536 * Returns: %0 if nothing matches, otherwise returns the quirks field of
537 * the matching &struct tpacpi_quirk entry.
538 *
539 * The match criteria is: vendor, ec and bios must match.
540 */
tpacpi_check_quirks(const struct tpacpi_quirk * qlist,unsigned int qlist_size)541 static unsigned long __init tpacpi_check_quirks(
542 const struct tpacpi_quirk *qlist,
543 unsigned int qlist_size)
544 {
545 while (qlist_size) {
546 if ((qlist->vendor == thinkpad_id.vendor ||
547 qlist->vendor == TPACPI_MATCH_ANY) &&
548 (qlist->bios == thinkpad_id.bios_model ||
549 qlist->bios == TPACPI_MATCH_ANY) &&
550 (qlist->ec == thinkpad_id.ec_model ||
551 qlist->ec == TPACPI_MATCH_ANY))
552 return qlist->quirks;
553
554 qlist_size--;
555 qlist++;
556 }
557 return 0;
558 }
559
tpacpi_is_lenovo(void)560 static inline bool __pure __init tpacpi_is_lenovo(void)
561 {
562 return thinkpad_id.vendor == PCI_VENDOR_ID_LENOVO;
563 }
564
tpacpi_is_ibm(void)565 static inline bool __pure __init tpacpi_is_ibm(void)
566 {
567 return thinkpad_id.vendor == PCI_VENDOR_ID_IBM;
568 }
569
570 /****************************************************************************
571 ****************************************************************************
572 *
573 * ACPI Helpers and device model
574 *
575 ****************************************************************************
576 ****************************************************************************/
577
578 /*************************************************************************
579 * ACPI basic handles
580 */
581
582 static acpi_handle root_handle;
583 static acpi_handle ec_handle;
584
585 #define TPACPI_HANDLE(object, parent, paths...) \
586 static acpi_handle object##_handle; \
587 static const acpi_handle * const object##_parent __initconst = \
588 &parent##_handle; \
589 static char *object##_paths[] __initdata = { paths }
590
591 TPACPI_HANDLE(ecrd, ec, "ECRD"); /* 570 */
592 TPACPI_HANDLE(ecwr, ec, "ECWR"); /* 570 */
593
594 TPACPI_HANDLE(cmos, root, "\\UCMS", /* R50, R50e, R50p, R51, */
595 /* T4x, X31, X40 */
596 "\\CMOS", /* A3x, G4x, R32, T23, T30, X22-24, X30 */
597 "\\CMS", /* R40, R40e */
598 ); /* all others */
599
600 TPACPI_HANDLE(hkey, ec, "\\_SB.HKEY", /* 600e/x, 770e, 770x */
601 "^HKEY", /* R30, R31 */
602 "HKEY", /* all others */
603 ); /* 570 */
604
605 /*************************************************************************
606 * ACPI helpers
607 */
608
acpi_evalf(acpi_handle handle,int * res,char * method,char * fmt,...)609 static int acpi_evalf(acpi_handle handle,
610 int *res, char *method, char *fmt, ...)
611 {
612 char *fmt0 = fmt;
613 struct acpi_object_list params;
614 union acpi_object in_objs[TPACPI_MAX_ACPI_ARGS];
615 struct acpi_buffer result, *resultp;
616 union acpi_object out_obj;
617 acpi_status status;
618 va_list ap;
619 char res_type;
620 int success;
621 int quiet;
622
623 if (!*fmt) {
624 pr_err("acpi_evalf() called with empty format\n");
625 return 0;
626 }
627
628 if (*fmt == 'q') {
629 quiet = 1;
630 fmt++;
631 } else
632 quiet = 0;
633
634 res_type = *(fmt++);
635
636 params.count = 0;
637 params.pointer = &in_objs[0];
638
639 va_start(ap, fmt);
640 while (*fmt) {
641 char c = *(fmt++);
642 switch (c) {
643 case 'd': /* int */
644 in_objs[params.count].integer.value = va_arg(ap, int);
645 in_objs[params.count++].type = ACPI_TYPE_INTEGER;
646 break;
647 /* add more types as needed */
648 default:
649 pr_err("acpi_evalf() called with invalid format character '%c'\n",
650 c);
651 va_end(ap);
652 return 0;
653 }
654 }
655 va_end(ap);
656
657 if (res_type != 'v') {
658 result.length = sizeof(out_obj);
659 result.pointer = &out_obj;
660 resultp = &result;
661 } else
662 resultp = NULL;
663
664 status = acpi_evaluate_object(handle, method, ¶ms, resultp);
665
666 switch (res_type) {
667 case 'd': /* int */
668 success = (status == AE_OK &&
669 out_obj.type == ACPI_TYPE_INTEGER);
670 if (success && res)
671 *res = out_obj.integer.value;
672 break;
673 case 'v': /* void */
674 success = status == AE_OK;
675 break;
676 /* add more types as needed */
677 default:
678 pr_err("acpi_evalf() called with invalid format character '%c'\n",
679 res_type);
680 return 0;
681 }
682
683 if (!success && !quiet)
684 pr_err("acpi_evalf(%s, %s, ...) failed: %s\n",
685 method, fmt0, acpi_format_exception(status));
686
687 return success;
688 }
689
acpi_ec_read(int i,u8 * p)690 static int acpi_ec_read(int i, u8 *p)
691 {
692 int v;
693
694 if (ecrd_handle) {
695 if (!acpi_evalf(ecrd_handle, &v, NULL, "dd", i))
696 return 0;
697 *p = v;
698 } else {
699 if (ec_read(i, p) < 0)
700 return 0;
701 }
702
703 return 1;
704 }
705
acpi_ec_write(int i,u8 v)706 static int acpi_ec_write(int i, u8 v)
707 {
708 if (ecwr_handle) {
709 if (!acpi_evalf(ecwr_handle, NULL, NULL, "vdd", i, v))
710 return 0;
711 } else {
712 if (ec_write(i, v) < 0)
713 return 0;
714 }
715
716 return 1;
717 }
718
issue_thinkpad_cmos_command(int cmos_cmd)719 static int issue_thinkpad_cmos_command(int cmos_cmd)
720 {
721 if (!cmos_handle)
722 return -ENXIO;
723
724 if (!acpi_evalf(cmos_handle, NULL, NULL, "vd", cmos_cmd))
725 return -EIO;
726
727 return 0;
728 }
729
730 /*************************************************************************
731 * ACPI device model
732 */
733
734 #define TPACPI_ACPIHANDLE_INIT(object) \
735 drv_acpi_handle_init(#object, &object##_handle, *object##_parent, \
736 object##_paths, ARRAY_SIZE(object##_paths))
737
drv_acpi_handle_init(const char * name,acpi_handle * handle,const acpi_handle parent,char ** paths,const int num_paths)738 static void __init drv_acpi_handle_init(const char *name,
739 acpi_handle *handle, const acpi_handle parent,
740 char **paths, const int num_paths)
741 {
742 int i;
743 acpi_status status;
744
745 vdbg_printk(TPACPI_DBG_INIT, "trying to locate ACPI handle for %s\n",
746 name);
747
748 for (i = 0; i < num_paths; i++) {
749 status = acpi_get_handle(parent, paths[i], handle);
750 if (ACPI_SUCCESS(status)) {
751 dbg_printk(TPACPI_DBG_INIT,
752 "Found ACPI handle %s for %s\n",
753 paths[i], name);
754 return;
755 }
756 }
757
758 vdbg_printk(TPACPI_DBG_INIT, "ACPI handle for %s not found\n",
759 name);
760 *handle = NULL;
761 }
762
tpacpi_acpi_handle_locate_callback(acpi_handle handle,u32 level,void * context,void ** return_value)763 static acpi_status __init tpacpi_acpi_handle_locate_callback(acpi_handle handle,
764 u32 level, void *context, void **return_value)
765 {
766 if (!strcmp(context, "video")) {
767 struct acpi_device *dev = acpi_fetch_acpi_dev(handle);
768
769 if (!dev || strcmp(ACPI_VIDEO_HID, acpi_device_hid(dev)))
770 return AE_OK;
771 }
772
773 *(acpi_handle *)return_value = handle;
774
775 return AE_CTRL_TERMINATE;
776 }
777
tpacpi_acpi_handle_locate(const char * name,const char * hid,acpi_handle * handle)778 static void __init tpacpi_acpi_handle_locate(const char *name,
779 const char *hid,
780 acpi_handle *handle)
781 {
782 acpi_status status;
783 acpi_handle device_found;
784
785 BUG_ON(!name || !handle);
786 vdbg_printk(TPACPI_DBG_INIT,
787 "trying to locate ACPI handle for %s, using HID %s\n",
788 name, hid ? hid : "NULL");
789
790 memset(&device_found, 0, sizeof(device_found));
791 status = acpi_get_devices(hid, tpacpi_acpi_handle_locate_callback,
792 (void *)name, &device_found);
793
794 *handle = NULL;
795
796 if (ACPI_SUCCESS(status)) {
797 *handle = device_found;
798 dbg_printk(TPACPI_DBG_INIT,
799 "Found ACPI handle for %s\n", name);
800 } else {
801 vdbg_printk(TPACPI_DBG_INIT,
802 "Could not locate an ACPI handle for %s: %s\n",
803 name, acpi_format_exception(status));
804 }
805 }
806
dispatch_acpi_notify(acpi_handle handle,u32 event,void * data)807 static void dispatch_acpi_notify(acpi_handle handle, u32 event, void *data)
808 {
809 struct ibm_struct *ibm = data;
810
811 if (tpacpi_lifecycle != TPACPI_LIFE_RUNNING)
812 return;
813
814 if (!ibm || !ibm->acpi || !ibm->acpi->notify)
815 return;
816
817 ibm->acpi->notify(ibm, event);
818 }
819
setup_acpi_notify(struct ibm_struct * ibm)820 static int __init setup_acpi_notify(struct ibm_struct *ibm)
821 {
822 acpi_status status;
823
824 BUG_ON(!ibm->acpi);
825
826 if (!*ibm->acpi->handle)
827 return 0;
828
829 vdbg_printk(TPACPI_DBG_INIT,
830 "setting up ACPI notify for %s\n", ibm->name);
831
832 ibm->acpi->device = acpi_fetch_acpi_dev(*ibm->acpi->handle);
833 if (!ibm->acpi->device) {
834 pr_err("acpi_fetch_acpi_dev(%s) failed\n", ibm->name);
835 return -ENODEV;
836 }
837
838 ibm->acpi->device->driver_data = ibm;
839 sprintf(acpi_device_class(ibm->acpi->device), "%s/%s",
840 TPACPI_ACPI_EVENT_PREFIX,
841 ibm->name);
842
843 status = acpi_install_notify_handler(*ibm->acpi->handle,
844 ibm->acpi->type, dispatch_acpi_notify, ibm);
845 if (ACPI_FAILURE(status)) {
846 if (status == AE_ALREADY_EXISTS) {
847 pr_notice("another device driver is already handling %s events\n",
848 ibm->name);
849 } else {
850 pr_err("acpi_install_notify_handler(%s) failed: %s\n",
851 ibm->name, acpi_format_exception(status));
852 }
853 return -ENODEV;
854 }
855 ibm->flags.acpi_notify_installed = 1;
856 return 0;
857 }
858
tpacpi_device_add(struct acpi_device * device)859 static int __init tpacpi_device_add(struct acpi_device *device)
860 {
861 return 0;
862 }
863
register_tpacpi_subdriver(struct ibm_struct * ibm)864 static int __init register_tpacpi_subdriver(struct ibm_struct *ibm)
865 {
866 int rc;
867
868 dbg_printk(TPACPI_DBG_INIT,
869 "registering %s as an ACPI driver\n", ibm->name);
870
871 BUG_ON(!ibm->acpi);
872
873 ibm->acpi->driver = kzalloc(sizeof(struct acpi_driver), GFP_KERNEL);
874 if (!ibm->acpi->driver) {
875 pr_err("failed to allocate memory for ibm->acpi->driver\n");
876 return -ENOMEM;
877 }
878
879 sprintf(ibm->acpi->driver->name, "%s_%s", TPACPI_NAME, ibm->name);
880 ibm->acpi->driver->ids = ibm->acpi->hid;
881
882 ibm->acpi->driver->ops.add = &tpacpi_device_add;
883
884 rc = acpi_bus_register_driver(ibm->acpi->driver);
885 if (rc < 0) {
886 pr_err("acpi_bus_register_driver(%s) failed: %d\n",
887 ibm->name, rc);
888 kfree(ibm->acpi->driver);
889 ibm->acpi->driver = NULL;
890 } else if (!rc)
891 ibm->flags.acpi_driver_registered = 1;
892
893 return rc;
894 }
895
896
897 /****************************************************************************
898 ****************************************************************************
899 *
900 * Procfs Helpers
901 *
902 ****************************************************************************
903 ****************************************************************************/
904
dispatch_proc_show(struct seq_file * m,void * v)905 static int dispatch_proc_show(struct seq_file *m, void *v)
906 {
907 struct ibm_struct *ibm = m->private;
908
909 if (!ibm || !ibm->read)
910 return -EINVAL;
911 return ibm->read(m);
912 }
913
dispatch_proc_open(struct inode * inode,struct file * file)914 static int dispatch_proc_open(struct inode *inode, struct file *file)
915 {
916 return single_open(file, dispatch_proc_show, pde_data(inode));
917 }
918
dispatch_proc_write(struct file * file,const char __user * userbuf,size_t count,loff_t * pos)919 static ssize_t dispatch_proc_write(struct file *file,
920 const char __user *userbuf,
921 size_t count, loff_t *pos)
922 {
923 struct ibm_struct *ibm = pde_data(file_inode(file));
924 char *kernbuf;
925 int ret;
926
927 if (!ibm || !ibm->write)
928 return -EINVAL;
929 if (count > PAGE_SIZE - 1)
930 return -EINVAL;
931
932 kernbuf = memdup_user_nul(userbuf, count);
933 if (IS_ERR(kernbuf))
934 return PTR_ERR(kernbuf);
935 ret = ibm->write(kernbuf);
936 if (ret == 0)
937 ret = count;
938
939 kfree(kernbuf);
940
941 return ret;
942 }
943
944 static const struct proc_ops dispatch_proc_ops = {
945 .proc_open = dispatch_proc_open,
946 .proc_read = seq_read,
947 .proc_lseek = seq_lseek,
948 .proc_release = single_release,
949 .proc_write = dispatch_proc_write,
950 };
951
952 /****************************************************************************
953 ****************************************************************************
954 *
955 * Device model: input, hwmon and platform
956 *
957 ****************************************************************************
958 ****************************************************************************/
959
960 static struct platform_device *tpacpi_pdev;
961 static struct platform_device *tpacpi_sensors_pdev;
962 static struct device *tpacpi_hwmon;
963 static struct device *tpacpi_pprof;
964 static struct input_dev *tpacpi_inputdev;
965 static struct mutex tpacpi_inputdev_send_mutex;
966 static LIST_HEAD(tpacpi_all_drivers);
967
968 #ifdef CONFIG_PM_SLEEP
tpacpi_suspend_handler(struct device * dev)969 static int tpacpi_suspend_handler(struct device *dev)
970 {
971 struct ibm_struct *ibm, *itmp;
972
973 list_for_each_entry_safe(ibm, itmp,
974 &tpacpi_all_drivers,
975 all_drivers) {
976 if (ibm->suspend)
977 (ibm->suspend)();
978 }
979
980 return 0;
981 }
982
tpacpi_resume_handler(struct device * dev)983 static int tpacpi_resume_handler(struct device *dev)
984 {
985 struct ibm_struct *ibm, *itmp;
986
987 list_for_each_entry_safe(ibm, itmp,
988 &tpacpi_all_drivers,
989 all_drivers) {
990 if (ibm->resume)
991 (ibm->resume)();
992 }
993
994 return 0;
995 }
996 #endif
997
998 static SIMPLE_DEV_PM_OPS(tpacpi_pm,
999 tpacpi_suspend_handler, tpacpi_resume_handler);
1000
tpacpi_shutdown_handler(struct platform_device * pdev)1001 static void tpacpi_shutdown_handler(struct platform_device *pdev)
1002 {
1003 struct ibm_struct *ibm, *itmp;
1004
1005 list_for_each_entry_safe(ibm, itmp,
1006 &tpacpi_all_drivers,
1007 all_drivers) {
1008 if (ibm->shutdown)
1009 (ibm->shutdown)();
1010 }
1011 }
1012
1013 /*************************************************************************
1014 * sysfs support helpers
1015 */
1016
parse_strtoul(const char * buf,unsigned long max,unsigned long * value)1017 static int parse_strtoul(const char *buf,
1018 unsigned long max, unsigned long *value)
1019 {
1020 char *endp;
1021
1022 *value = simple_strtoul(skip_spaces(buf), &endp, 0);
1023 endp = skip_spaces(endp);
1024 if (*endp || *value > max)
1025 return -EINVAL;
1026
1027 return 0;
1028 }
1029
tpacpi_disable_brightness_delay(void)1030 static void tpacpi_disable_brightness_delay(void)
1031 {
1032 if (acpi_evalf(hkey_handle, NULL, "PWMS", "qvd", 0))
1033 pr_notice("ACPI backlight control delay disabled\n");
1034 }
1035
printk_deprecated_attribute(const char * const what,const char * const details)1036 static void printk_deprecated_attribute(const char * const what,
1037 const char * const details)
1038 {
1039 tpacpi_log_usertask("deprecated sysfs attribute");
1040 pr_warn("WARNING: sysfs attribute %s is deprecated and will be removed. %s\n",
1041 what, details);
1042 }
1043
1044 /*************************************************************************
1045 * rfkill and radio control support helpers
1046 */
1047
1048 /*
1049 * ThinkPad-ACPI firmware handling model:
1050 *
1051 * WLSW (master wireless switch) is event-driven, and is common to all
1052 * firmware-controlled radios. It cannot be controlled, just monitored,
1053 * as expected. It overrides all radio state in firmware
1054 *
1055 * The kernel, a masked-off hotkey, and WLSW can change the radio state
1056 * (TODO: verify how WLSW interacts with the returned radio state).
1057 *
1058 * The only time there are shadow radio state changes, is when
1059 * masked-off hotkeys are used.
1060 */
1061
1062 /*
1063 * Internal driver API for radio state:
1064 *
1065 * int: < 0 = error, otherwise enum tpacpi_rfkill_state
1066 * bool: true means radio blocked (off)
1067 */
1068 enum tpacpi_rfkill_state {
1069 TPACPI_RFK_RADIO_OFF = 0,
1070 TPACPI_RFK_RADIO_ON
1071 };
1072
1073 /* rfkill switches */
1074 enum tpacpi_rfk_id {
1075 TPACPI_RFK_BLUETOOTH_SW_ID = 0,
1076 TPACPI_RFK_WWAN_SW_ID,
1077 TPACPI_RFK_UWB_SW_ID,
1078 TPACPI_RFK_SW_MAX
1079 };
1080
1081 static const char *tpacpi_rfkill_names[] = {
1082 [TPACPI_RFK_BLUETOOTH_SW_ID] = "bluetooth",
1083 [TPACPI_RFK_WWAN_SW_ID] = "wwan",
1084 [TPACPI_RFK_UWB_SW_ID] = "uwb",
1085 [TPACPI_RFK_SW_MAX] = NULL
1086 };
1087
1088 /* ThinkPad-ACPI rfkill subdriver */
1089 struct tpacpi_rfk {
1090 struct rfkill *rfkill;
1091 enum tpacpi_rfk_id id;
1092 const struct tpacpi_rfk_ops *ops;
1093 };
1094
1095 struct tpacpi_rfk_ops {
1096 /* firmware interface */
1097 int (*get_status)(void);
1098 int (*set_status)(const enum tpacpi_rfkill_state);
1099 };
1100
1101 static struct tpacpi_rfk *tpacpi_rfkill_switches[TPACPI_RFK_SW_MAX];
1102
1103 /* Query FW and update rfkill sw state for a given rfkill switch */
tpacpi_rfk_update_swstate(const struct tpacpi_rfk * tp_rfk)1104 static int tpacpi_rfk_update_swstate(const struct tpacpi_rfk *tp_rfk)
1105 {
1106 int status;
1107
1108 if (!tp_rfk)
1109 return -ENODEV;
1110
1111 status = (tp_rfk->ops->get_status)();
1112 if (status < 0)
1113 return status;
1114
1115 rfkill_set_sw_state(tp_rfk->rfkill,
1116 (status == TPACPI_RFK_RADIO_OFF));
1117
1118 return status;
1119 }
1120
1121 /*
1122 * Sync the HW-blocking state of all rfkill switches,
1123 * do notice it causes the rfkill core to schedule uevents
1124 */
tpacpi_rfk_update_hwblock_state(bool blocked)1125 static void tpacpi_rfk_update_hwblock_state(bool blocked)
1126 {
1127 unsigned int i;
1128 struct tpacpi_rfk *tp_rfk;
1129
1130 for (i = 0; i < TPACPI_RFK_SW_MAX; i++) {
1131 tp_rfk = tpacpi_rfkill_switches[i];
1132 if (tp_rfk) {
1133 if (rfkill_set_hw_state(tp_rfk->rfkill,
1134 blocked)) {
1135 /* ignore -- we track sw block */
1136 }
1137 }
1138 }
1139 }
1140
1141 /* Call to get the WLSW state from the firmware */
1142 static int hotkey_get_wlsw(void);
1143
1144 /* Call to query WLSW state and update all rfkill switches */
tpacpi_rfk_check_hwblock_state(void)1145 static bool tpacpi_rfk_check_hwblock_state(void)
1146 {
1147 int res = hotkey_get_wlsw();
1148 int hw_blocked;
1149
1150 /* When unknown or unsupported, we have to assume it is unblocked */
1151 if (res < 0)
1152 return false;
1153
1154 hw_blocked = (res == TPACPI_RFK_RADIO_OFF);
1155 tpacpi_rfk_update_hwblock_state(hw_blocked);
1156
1157 return hw_blocked;
1158 }
1159
tpacpi_rfk_hook_set_block(void * data,bool blocked)1160 static int tpacpi_rfk_hook_set_block(void *data, bool blocked)
1161 {
1162 struct tpacpi_rfk *tp_rfk = data;
1163 int res;
1164
1165 dbg_printk(TPACPI_DBG_RFKILL,
1166 "request to change radio state to %s\n",
1167 blocked ? "blocked" : "unblocked");
1168
1169 /* try to set radio state */
1170 res = (tp_rfk->ops->set_status)(blocked ?
1171 TPACPI_RFK_RADIO_OFF : TPACPI_RFK_RADIO_ON);
1172
1173 /* and update the rfkill core with whatever the FW really did */
1174 tpacpi_rfk_update_swstate(tp_rfk);
1175
1176 return (res < 0) ? res : 0;
1177 }
1178
1179 static const struct rfkill_ops tpacpi_rfk_rfkill_ops = {
1180 .set_block = tpacpi_rfk_hook_set_block,
1181 };
1182
tpacpi_new_rfkill(const enum tpacpi_rfk_id id,const struct tpacpi_rfk_ops * tp_rfkops,const enum rfkill_type rfktype,const char * name,const bool set_default)1183 static int __init tpacpi_new_rfkill(const enum tpacpi_rfk_id id,
1184 const struct tpacpi_rfk_ops *tp_rfkops,
1185 const enum rfkill_type rfktype,
1186 const char *name,
1187 const bool set_default)
1188 {
1189 struct tpacpi_rfk *atp_rfk;
1190 int res;
1191 bool sw_state = false;
1192 bool hw_state;
1193 int sw_status;
1194
1195 BUG_ON(id >= TPACPI_RFK_SW_MAX || tpacpi_rfkill_switches[id]);
1196
1197 atp_rfk = kzalloc(sizeof(struct tpacpi_rfk), GFP_KERNEL);
1198 if (atp_rfk)
1199 atp_rfk->rfkill = rfkill_alloc(name,
1200 &tpacpi_pdev->dev,
1201 rfktype,
1202 &tpacpi_rfk_rfkill_ops,
1203 atp_rfk);
1204 if (!atp_rfk || !atp_rfk->rfkill) {
1205 pr_err("failed to allocate memory for rfkill class\n");
1206 kfree(atp_rfk);
1207 return -ENOMEM;
1208 }
1209
1210 atp_rfk->id = id;
1211 atp_rfk->ops = tp_rfkops;
1212
1213 sw_status = (tp_rfkops->get_status)();
1214 if (sw_status < 0) {
1215 pr_err("failed to read initial state for %s, error %d\n",
1216 name, sw_status);
1217 } else {
1218 sw_state = (sw_status == TPACPI_RFK_RADIO_OFF);
1219 if (set_default) {
1220 /* try to keep the initial state, since we ask the
1221 * firmware to preserve it across S5 in NVRAM */
1222 rfkill_init_sw_state(atp_rfk->rfkill, sw_state);
1223 }
1224 }
1225 hw_state = tpacpi_rfk_check_hwblock_state();
1226 rfkill_set_hw_state(atp_rfk->rfkill, hw_state);
1227
1228 res = rfkill_register(atp_rfk->rfkill);
1229 if (res < 0) {
1230 pr_err("failed to register %s rfkill switch: %d\n", name, res);
1231 rfkill_destroy(atp_rfk->rfkill);
1232 kfree(atp_rfk);
1233 return res;
1234 }
1235
1236 tpacpi_rfkill_switches[id] = atp_rfk;
1237
1238 pr_info("rfkill switch %s: radio is %sblocked\n",
1239 name, (sw_state || hw_state) ? "" : "un");
1240 return 0;
1241 }
1242
tpacpi_destroy_rfkill(const enum tpacpi_rfk_id id)1243 static void tpacpi_destroy_rfkill(const enum tpacpi_rfk_id id)
1244 {
1245 struct tpacpi_rfk *tp_rfk;
1246
1247 BUG_ON(id >= TPACPI_RFK_SW_MAX);
1248
1249 tp_rfk = tpacpi_rfkill_switches[id];
1250 if (tp_rfk) {
1251 rfkill_unregister(tp_rfk->rfkill);
1252 rfkill_destroy(tp_rfk->rfkill);
1253 tpacpi_rfkill_switches[id] = NULL;
1254 kfree(tp_rfk);
1255 }
1256 }
1257
printk_deprecated_rfkill_attribute(const char * const what)1258 static void printk_deprecated_rfkill_attribute(const char * const what)
1259 {
1260 printk_deprecated_attribute(what,
1261 "Please switch to generic rfkill before year 2010");
1262 }
1263
1264 /* sysfs <radio> enable ------------------------------------------------ */
tpacpi_rfk_sysfs_enable_show(const enum tpacpi_rfk_id id,struct device_attribute * attr,char * buf)1265 static ssize_t tpacpi_rfk_sysfs_enable_show(const enum tpacpi_rfk_id id,
1266 struct device_attribute *attr,
1267 char *buf)
1268 {
1269 int status;
1270
1271 printk_deprecated_rfkill_attribute(attr->attr.name);
1272
1273 /* This is in the ABI... */
1274 if (tpacpi_rfk_check_hwblock_state()) {
1275 status = TPACPI_RFK_RADIO_OFF;
1276 } else {
1277 status = tpacpi_rfk_update_swstate(tpacpi_rfkill_switches[id]);
1278 if (status < 0)
1279 return status;
1280 }
1281
1282 return sysfs_emit(buf, "%d\n",
1283 (status == TPACPI_RFK_RADIO_ON) ? 1 : 0);
1284 }
1285
tpacpi_rfk_sysfs_enable_store(const enum tpacpi_rfk_id id,struct device_attribute * attr,const char * buf,size_t count)1286 static ssize_t tpacpi_rfk_sysfs_enable_store(const enum tpacpi_rfk_id id,
1287 struct device_attribute *attr,
1288 const char *buf, size_t count)
1289 {
1290 unsigned long t;
1291 int res;
1292
1293 printk_deprecated_rfkill_attribute(attr->attr.name);
1294
1295 if (parse_strtoul(buf, 1, &t))
1296 return -EINVAL;
1297
1298 tpacpi_disclose_usertask(attr->attr.name, "set to %ld\n", t);
1299
1300 /* This is in the ABI... */
1301 if (tpacpi_rfk_check_hwblock_state() && !!t)
1302 return -EPERM;
1303
1304 res = tpacpi_rfkill_switches[id]->ops->set_status((!!t) ?
1305 TPACPI_RFK_RADIO_ON : TPACPI_RFK_RADIO_OFF);
1306 tpacpi_rfk_update_swstate(tpacpi_rfkill_switches[id]);
1307
1308 return (res < 0) ? res : count;
1309 }
1310
1311 /* procfs -------------------------------------------------------------- */
tpacpi_rfk_procfs_read(const enum tpacpi_rfk_id id,struct seq_file * m)1312 static int tpacpi_rfk_procfs_read(const enum tpacpi_rfk_id id, struct seq_file *m)
1313 {
1314 if (id >= TPACPI_RFK_SW_MAX)
1315 seq_printf(m, "status:\t\tnot supported\n");
1316 else {
1317 int status;
1318
1319 /* This is in the ABI... */
1320 if (tpacpi_rfk_check_hwblock_state()) {
1321 status = TPACPI_RFK_RADIO_OFF;
1322 } else {
1323 status = tpacpi_rfk_update_swstate(
1324 tpacpi_rfkill_switches[id]);
1325 if (status < 0)
1326 return status;
1327 }
1328
1329 seq_printf(m, "status:\t\t%s\n", str_enabled_disabled(status == TPACPI_RFK_RADIO_ON));
1330 seq_printf(m, "commands:\tenable, disable\n");
1331 }
1332
1333 return 0;
1334 }
1335
tpacpi_rfk_procfs_write(const enum tpacpi_rfk_id id,char * buf)1336 static int tpacpi_rfk_procfs_write(const enum tpacpi_rfk_id id, char *buf)
1337 {
1338 char *cmd;
1339 int status = -1;
1340 int res = 0;
1341
1342 if (id >= TPACPI_RFK_SW_MAX)
1343 return -ENODEV;
1344
1345 while ((cmd = strsep(&buf, ","))) {
1346 if (strstarts(cmd, "enable"))
1347 status = TPACPI_RFK_RADIO_ON;
1348 else if (strstarts(cmd, "disable"))
1349 status = TPACPI_RFK_RADIO_OFF;
1350 else
1351 return -EINVAL;
1352 }
1353
1354 if (status != -1) {
1355 tpacpi_disclose_usertask("procfs", "attempt to %s %s\n",
1356 str_enable_disable(status == TPACPI_RFK_RADIO_ON),
1357 tpacpi_rfkill_names[id]);
1358 res = (tpacpi_rfkill_switches[id]->ops->set_status)(status);
1359 tpacpi_rfk_update_swstate(tpacpi_rfkill_switches[id]);
1360 }
1361
1362 return res;
1363 }
1364
1365 /*************************************************************************
1366 * thinkpad-acpi driver attributes
1367 */
1368
1369 /* interface_version --------------------------------------------------- */
interface_version_show(struct device_driver * drv,char * buf)1370 static ssize_t interface_version_show(struct device_driver *drv, char *buf)
1371 {
1372 return sysfs_emit(buf, "0x%08x\n", TPACPI_SYSFS_VERSION);
1373 }
1374 static DRIVER_ATTR_RO(interface_version);
1375
1376 /* debug_level --------------------------------------------------------- */
debug_level_show(struct device_driver * drv,char * buf)1377 static ssize_t debug_level_show(struct device_driver *drv, char *buf)
1378 {
1379 return sysfs_emit(buf, "0x%04x\n", dbg_level);
1380 }
1381
debug_level_store(struct device_driver * drv,const char * buf,size_t count)1382 static ssize_t debug_level_store(struct device_driver *drv, const char *buf,
1383 size_t count)
1384 {
1385 unsigned long t;
1386
1387 if (parse_strtoul(buf, 0xffff, &t))
1388 return -EINVAL;
1389
1390 dbg_level = t;
1391
1392 return count;
1393 }
1394 static DRIVER_ATTR_RW(debug_level);
1395
1396 /* version ------------------------------------------------------------- */
version_show(struct device_driver * drv,char * buf)1397 static ssize_t version_show(struct device_driver *drv, char *buf)
1398 {
1399 return sysfs_emit(buf, "%s v%s\n",
1400 TPACPI_DESC, TPACPI_VERSION);
1401 }
1402 static DRIVER_ATTR_RO(version);
1403
1404 /* --------------------------------------------------------------------- */
1405
1406 #ifdef CONFIG_THINKPAD_ACPI_DEBUGFACILITIES
1407
1408 /* wlsw_emulstate ------------------------------------------------------ */
wlsw_emulstate_show(struct device_driver * drv,char * buf)1409 static ssize_t wlsw_emulstate_show(struct device_driver *drv, char *buf)
1410 {
1411 return sysfs_emit(buf, "%d\n", !!tpacpi_wlsw_emulstate);
1412 }
1413
wlsw_emulstate_store(struct device_driver * drv,const char * buf,size_t count)1414 static ssize_t wlsw_emulstate_store(struct device_driver *drv, const char *buf,
1415 size_t count)
1416 {
1417 unsigned long t;
1418
1419 if (parse_strtoul(buf, 1, &t))
1420 return -EINVAL;
1421
1422 if (tpacpi_wlsw_emulstate != !!t) {
1423 tpacpi_wlsw_emulstate = !!t;
1424 tpacpi_rfk_update_hwblock_state(!t); /* negative logic */
1425 }
1426
1427 return count;
1428 }
1429 static DRIVER_ATTR_RW(wlsw_emulstate);
1430
1431 /* bluetooth_emulstate ------------------------------------------------- */
bluetooth_emulstate_show(struct device_driver * drv,char * buf)1432 static ssize_t bluetooth_emulstate_show(struct device_driver *drv, char *buf)
1433 {
1434 return sysfs_emit(buf, "%d\n", !!tpacpi_bluetooth_emulstate);
1435 }
1436
bluetooth_emulstate_store(struct device_driver * drv,const char * buf,size_t count)1437 static ssize_t bluetooth_emulstate_store(struct device_driver *drv,
1438 const char *buf, size_t count)
1439 {
1440 unsigned long t;
1441
1442 if (parse_strtoul(buf, 1, &t))
1443 return -EINVAL;
1444
1445 tpacpi_bluetooth_emulstate = !!t;
1446
1447 return count;
1448 }
1449 static DRIVER_ATTR_RW(bluetooth_emulstate);
1450
1451 /* wwan_emulstate ------------------------------------------------- */
wwan_emulstate_show(struct device_driver * drv,char * buf)1452 static ssize_t wwan_emulstate_show(struct device_driver *drv, char *buf)
1453 {
1454 return sysfs_emit(buf, "%d\n", !!tpacpi_wwan_emulstate);
1455 }
1456
wwan_emulstate_store(struct device_driver * drv,const char * buf,size_t count)1457 static ssize_t wwan_emulstate_store(struct device_driver *drv, const char *buf,
1458 size_t count)
1459 {
1460 unsigned long t;
1461
1462 if (parse_strtoul(buf, 1, &t))
1463 return -EINVAL;
1464
1465 tpacpi_wwan_emulstate = !!t;
1466
1467 return count;
1468 }
1469 static DRIVER_ATTR_RW(wwan_emulstate);
1470
1471 /* uwb_emulstate ------------------------------------------------- */
uwb_emulstate_show(struct device_driver * drv,char * buf)1472 static ssize_t uwb_emulstate_show(struct device_driver *drv, char *buf)
1473 {
1474 return sysfs_emit(buf, "%d\n", !!tpacpi_uwb_emulstate);
1475 }
1476
uwb_emulstate_store(struct device_driver * drv,const char * buf,size_t count)1477 static ssize_t uwb_emulstate_store(struct device_driver *drv, const char *buf,
1478 size_t count)
1479 {
1480 unsigned long t;
1481
1482 if (parse_strtoul(buf, 1, &t))
1483 return -EINVAL;
1484
1485 tpacpi_uwb_emulstate = !!t;
1486
1487 return count;
1488 }
1489 static DRIVER_ATTR_RW(uwb_emulstate);
1490 #endif
1491
1492 /*************************************************************************
1493 * Firmware Data
1494 */
1495
1496 /*
1497 * Table of recommended minimum BIOS versions
1498 *
1499 * Reasons for listing:
1500 * 1. Stable BIOS, listed because the unknown amount of
1501 * bugs and bad ACPI behaviour on older versions
1502 *
1503 * 2. BIOS or EC fw with known bugs that trigger on Linux
1504 *
1505 * 3. BIOS with known reduced functionality in older versions
1506 *
1507 * We recommend the latest BIOS and EC version.
1508 * We only support the latest BIOS and EC fw version as a rule.
1509 *
1510 * Sources: IBM ThinkPad Public Web Documents (update changelogs),
1511 * Information from users in ThinkWiki
1512 *
1513 * WARNING: we use this table also to detect that the machine is
1514 * a ThinkPad in some cases, so don't remove entries lightly.
1515 */
1516
1517 #define TPV_Q(__v, __id1, __id2, __bv1, __bv2) \
1518 { .vendor = (__v), \
1519 .bios = TPID(__id1, __id2), \
1520 .ec = TPACPI_MATCH_ANY, \
1521 .quirks = TPACPI_MATCH_ANY_VERSION << 16 \
1522 | TPVER(__bv1, __bv2) }
1523
1524 #define TPV_Q_X(__v, __bid1, __bid2, __bv1, __bv2, \
1525 __eid, __ev1, __ev2) \
1526 { .vendor = (__v), \
1527 .bios = TPID(__bid1, __bid2), \
1528 .ec = __eid, \
1529 .quirks = TPVER(__ev1, __ev2) << 16 \
1530 | TPVER(__bv1, __bv2) }
1531
1532 #define TPV_QI0(__id1, __id2, __bv1, __bv2) \
1533 TPV_Q(PCI_VENDOR_ID_IBM, __id1, __id2, __bv1, __bv2)
1534
1535 /* Outdated IBM BIOSes often lack the EC id string */
1536 #define TPV_QI1(__id1, __id2, __bv1, __bv2, __ev1, __ev2) \
1537 TPV_Q_X(PCI_VENDOR_ID_IBM, __id1, __id2, \
1538 __bv1, __bv2, TPID(__id1, __id2), \
1539 __ev1, __ev2), \
1540 TPV_Q_X(PCI_VENDOR_ID_IBM, __id1, __id2, \
1541 __bv1, __bv2, TPACPI_MATCH_UNKNOWN, \
1542 __ev1, __ev2)
1543
1544 /* Outdated IBM BIOSes often lack the EC id string */
1545 #define TPV_QI2(__bid1, __bid2, __bv1, __bv2, \
1546 __eid1, __eid2, __ev1, __ev2) \
1547 TPV_Q_X(PCI_VENDOR_ID_IBM, __bid1, __bid2, \
1548 __bv1, __bv2, TPID(__eid1, __eid2), \
1549 __ev1, __ev2), \
1550 TPV_Q_X(PCI_VENDOR_ID_IBM, __bid1, __bid2, \
1551 __bv1, __bv2, TPACPI_MATCH_UNKNOWN, \
1552 __ev1, __ev2)
1553
1554 #define TPV_QL0(__id1, __id2, __bv1, __bv2) \
1555 TPV_Q(PCI_VENDOR_ID_LENOVO, __id1, __id2, __bv1, __bv2)
1556
1557 #define TPV_QL1(__id1, __id2, __bv1, __bv2, __ev1, __ev2) \
1558 TPV_Q_X(PCI_VENDOR_ID_LENOVO, __id1, __id2, \
1559 __bv1, __bv2, TPID(__id1, __id2), \
1560 __ev1, __ev2)
1561
1562 #define TPV_QL2(__bid1, __bid2, __bv1, __bv2, \
1563 __eid1, __eid2, __ev1, __ev2) \
1564 TPV_Q_X(PCI_VENDOR_ID_LENOVO, __bid1, __bid2, \
1565 __bv1, __bv2, TPID(__eid1, __eid2), \
1566 __ev1, __ev2)
1567
1568 static const struct tpacpi_quirk tpacpi_bios_version_qtable[] __initconst = {
1569 /* Numeric models ------------------ */
1570 /* FW MODEL BIOS VERS */
1571 TPV_QI0('I', 'M', '6', '5'), /* 570 */
1572 TPV_QI0('I', 'U', '2', '6'), /* 570E */
1573 TPV_QI0('I', 'B', '5', '4'), /* 600 */
1574 TPV_QI0('I', 'H', '4', '7'), /* 600E */
1575 TPV_QI0('I', 'N', '3', '6'), /* 600E */
1576 TPV_QI0('I', 'T', '5', '5'), /* 600X */
1577 TPV_QI0('I', 'D', '4', '8'), /* 770, 770E, 770ED */
1578 TPV_QI0('I', 'I', '4', '2'), /* 770X */
1579 TPV_QI0('I', 'O', '2', '3'), /* 770Z */
1580
1581 /* A-series ------------------------- */
1582 /* FW MODEL BIOS VERS EC VERS */
1583 TPV_QI0('I', 'W', '5', '9'), /* A20m */
1584 TPV_QI0('I', 'V', '6', '9'), /* A20p */
1585 TPV_QI0('1', '0', '2', '6'), /* A21e, A22e */
1586 TPV_QI0('K', 'U', '3', '6'), /* A21e */
1587 TPV_QI0('K', 'X', '3', '6'), /* A21m, A22m */
1588 TPV_QI0('K', 'Y', '3', '8'), /* A21p, A22p */
1589 TPV_QI0('1', 'B', '1', '7'), /* A22e */
1590 TPV_QI0('1', '3', '2', '0'), /* A22m */
1591 TPV_QI0('1', 'E', '7', '3'), /* A30/p (0) */
1592 TPV_QI1('1', 'G', '4', '1', '1', '7'), /* A31/p (0) */
1593 TPV_QI1('1', 'N', '1', '6', '0', '7'), /* A31/p (0) */
1594
1595 /* G-series ------------------------- */
1596 /* FW MODEL BIOS VERS */
1597 TPV_QI0('1', 'T', 'A', '6'), /* G40 */
1598 TPV_QI0('1', 'X', '5', '7'), /* G41 */
1599
1600 /* R-series, T-series --------------- */
1601 /* FW MODEL BIOS VERS EC VERS */
1602 TPV_QI0('1', 'C', 'F', '0'), /* R30 */
1603 TPV_QI0('1', 'F', 'F', '1'), /* R31 */
1604 TPV_QI0('1', 'M', '9', '7'), /* R32 */
1605 TPV_QI0('1', 'O', '6', '1'), /* R40 */
1606 TPV_QI0('1', 'P', '6', '5'), /* R40 */
1607 TPV_QI0('1', 'S', '7', '0'), /* R40e */
1608 TPV_QI1('1', 'R', 'D', 'R', '7', '1'), /* R50/p, R51,
1609 T40/p, T41/p, T42/p (1) */
1610 TPV_QI1('1', 'V', '7', '1', '2', '8'), /* R50e, R51 (1) */
1611 TPV_QI1('7', '8', '7', '1', '0', '6'), /* R51e (1) */
1612 TPV_QI1('7', '6', '6', '9', '1', '6'), /* R52 (1) */
1613 TPV_QI1('7', '0', '6', '9', '2', '8'), /* R52, T43 (1) */
1614
1615 TPV_QI0('I', 'Y', '6', '1'), /* T20 */
1616 TPV_QI0('K', 'Z', '3', '4'), /* T21 */
1617 TPV_QI0('1', '6', '3', '2'), /* T22 */
1618 TPV_QI1('1', 'A', '6', '4', '2', '3'), /* T23 (0) */
1619 TPV_QI1('1', 'I', '7', '1', '2', '0'), /* T30 (0) */
1620 TPV_QI1('1', 'Y', '6', '5', '2', '9'), /* T43/p (1) */
1621
1622 TPV_QL1('7', '9', 'E', '3', '5', '0'), /* T60/p */
1623 TPV_QL1('7', 'C', 'D', '2', '2', '2'), /* R60, R60i */
1624 TPV_QL1('7', 'E', 'D', '0', '1', '5'), /* R60e, R60i */
1625
1626 /* BIOS FW BIOS VERS EC FW EC VERS */
1627 TPV_QI2('1', 'W', '9', '0', '1', 'V', '2', '8'), /* R50e (1) */
1628 TPV_QL2('7', 'I', '3', '4', '7', '9', '5', '0'), /* T60/p wide */
1629
1630 /* X-series ------------------------- */
1631 /* FW MODEL BIOS VERS EC VERS */
1632 TPV_QI0('I', 'Z', '9', 'D'), /* X20, X21 */
1633 TPV_QI0('1', 'D', '7', '0'), /* X22, X23, X24 */
1634 TPV_QI1('1', 'K', '4', '8', '1', '8'), /* X30 (0) */
1635 TPV_QI1('1', 'Q', '9', '7', '2', '3'), /* X31, X32 (0) */
1636 TPV_QI1('1', 'U', 'D', '3', 'B', '2'), /* X40 (0) */
1637 TPV_QI1('7', '4', '6', '4', '2', '7'), /* X41 (0) */
1638 TPV_QI1('7', '5', '6', '0', '2', '0'), /* X41t (0) */
1639
1640 TPV_QL1('7', 'B', 'D', '7', '4', '0'), /* X60/s */
1641 TPV_QL1('7', 'J', '3', '0', '1', '3'), /* X60t */
1642
1643 /* (0) - older versions lack DMI EC fw string and functionality */
1644 /* (1) - older versions known to lack functionality */
1645 };
1646
1647 #undef TPV_QL1
1648 #undef TPV_QL0
1649 #undef TPV_QI2
1650 #undef TPV_QI1
1651 #undef TPV_QI0
1652 #undef TPV_Q_X
1653 #undef TPV_Q
1654
tpacpi_check_outdated_fw(void)1655 static void __init tpacpi_check_outdated_fw(void)
1656 {
1657 unsigned long fwvers;
1658 u16 ec_version, bios_version;
1659
1660 fwvers = tpacpi_check_quirks(tpacpi_bios_version_qtable,
1661 ARRAY_SIZE(tpacpi_bios_version_qtable));
1662
1663 if (!fwvers)
1664 return;
1665
1666 bios_version = fwvers & 0xffffU;
1667 ec_version = (fwvers >> 16) & 0xffffU;
1668
1669 /* note that unknown versions are set to 0x0000 and we use that */
1670 if ((bios_version > thinkpad_id.bios_release) ||
1671 (ec_version > thinkpad_id.ec_release &&
1672 ec_version != TPACPI_MATCH_ANY_VERSION)) {
1673 /*
1674 * The changelogs would let us track down the exact
1675 * reason, but it is just too much of a pain to track
1676 * it. We only list BIOSes that are either really
1677 * broken, or really stable to begin with, so it is
1678 * best if the user upgrades the firmware anyway.
1679 */
1680 pr_warn("WARNING: Outdated ThinkPad BIOS/EC firmware\n");
1681 pr_warn("WARNING: This firmware may be missing critical bug fixes and/or important features\n");
1682 }
1683 }
1684
tpacpi_is_fw_known(void)1685 static bool __init tpacpi_is_fw_known(void)
1686 {
1687 return tpacpi_check_quirks(tpacpi_bios_version_qtable,
1688 ARRAY_SIZE(tpacpi_bios_version_qtable)) != 0;
1689 }
1690
1691 /****************************************************************************
1692 ****************************************************************************
1693 *
1694 * Subdrivers
1695 *
1696 ****************************************************************************
1697 ****************************************************************************/
1698
1699 /*************************************************************************
1700 * thinkpad-acpi metadata subdriver
1701 */
1702
thinkpad_acpi_driver_read(struct seq_file * m)1703 static int thinkpad_acpi_driver_read(struct seq_file *m)
1704 {
1705 seq_printf(m, "driver:\t\t%s\n", TPACPI_DESC);
1706 seq_printf(m, "version:\t%s\n", TPACPI_VERSION);
1707 return 0;
1708 }
1709
1710 static struct ibm_struct thinkpad_acpi_driver_data = {
1711 .name = "driver",
1712 .read = thinkpad_acpi_driver_read,
1713 };
1714
1715 /*************************************************************************
1716 * Hotkey subdriver
1717 */
1718
1719 /*
1720 * ThinkPad firmware event model
1721 *
1722 * The ThinkPad firmware has two main event interfaces: normal ACPI
1723 * notifications (which follow the ACPI standard), and a private event
1724 * interface.
1725 *
1726 * The private event interface also issues events for the hotkeys. As
1727 * the driver gained features, the event handling code ended up being
1728 * built around the hotkey subdriver. This will need to be refactored
1729 * to a more formal event API eventually.
1730 *
1731 * Some "hotkeys" are actually supposed to be used as event reports,
1732 * such as "brightness has changed", "volume has changed", depending on
1733 * the ThinkPad model and how the firmware is operating.
1734 *
1735 * Unlike other classes, hotkey-class events have mask/unmask control on
1736 * non-ancient firmware. However, how it behaves changes a lot with the
1737 * firmware model and version.
1738 */
1739
1740 enum { /* hot key scan codes (derived from ACPI DSDT) */
1741 TP_ACPI_HOTKEYSCAN_FNF1 = 0,
1742 TP_ACPI_HOTKEYSCAN_FNF2,
1743 TP_ACPI_HOTKEYSCAN_FNF3,
1744 TP_ACPI_HOTKEYSCAN_FNF4,
1745 TP_ACPI_HOTKEYSCAN_FNF5,
1746 TP_ACPI_HOTKEYSCAN_FNF6,
1747 TP_ACPI_HOTKEYSCAN_FNF7,
1748 TP_ACPI_HOTKEYSCAN_FNF8,
1749 TP_ACPI_HOTKEYSCAN_FNF9,
1750 TP_ACPI_HOTKEYSCAN_FNF10,
1751 TP_ACPI_HOTKEYSCAN_FNF11,
1752 TP_ACPI_HOTKEYSCAN_FNF12,
1753 TP_ACPI_HOTKEYSCAN_FNBACKSPACE,
1754 TP_ACPI_HOTKEYSCAN_FNINSERT,
1755 TP_ACPI_HOTKEYSCAN_FNDELETE,
1756 TP_ACPI_HOTKEYSCAN_FNHOME,
1757 TP_ACPI_HOTKEYSCAN_FNEND,
1758 TP_ACPI_HOTKEYSCAN_FNPAGEUP,
1759 TP_ACPI_HOTKEYSCAN_FNPAGEDOWN,
1760 TP_ACPI_HOTKEYSCAN_FNSPACE,
1761 TP_ACPI_HOTKEYSCAN_VOLUMEUP,
1762 TP_ACPI_HOTKEYSCAN_VOLUMEDOWN,
1763 TP_ACPI_HOTKEYSCAN_MUTE,
1764 TP_ACPI_HOTKEYSCAN_THINKPAD,
1765 TP_ACPI_HOTKEYSCAN_UNK1,
1766 TP_ACPI_HOTKEYSCAN_UNK2,
1767 TP_ACPI_HOTKEYSCAN_MICMUTE,
1768 TP_ACPI_HOTKEYSCAN_UNK4,
1769 TP_ACPI_HOTKEYSCAN_CONFIG,
1770 TP_ACPI_HOTKEYSCAN_SEARCH,
1771 TP_ACPI_HOTKEYSCAN_SCALE,
1772 TP_ACPI_HOTKEYSCAN_FILE,
1773
1774 /* Adaptive keyboard keycodes */
1775 TP_ACPI_HOTKEYSCAN_ADAPTIVE_START, /* 32 / 0x20 */
1776 TP_ACPI_HOTKEYSCAN_MUTE2 = TP_ACPI_HOTKEYSCAN_ADAPTIVE_START,
1777 TP_ACPI_HOTKEYSCAN_BRIGHTNESS_ZERO,
1778 TP_ACPI_HOTKEYSCAN_CLIPPING_TOOL,
1779 TP_ACPI_HOTKEYSCAN_CLOUD,
1780 TP_ACPI_HOTKEYSCAN_UNK9,
1781 TP_ACPI_HOTKEYSCAN_VOICE,
1782 TP_ACPI_HOTKEYSCAN_UNK10,
1783 TP_ACPI_HOTKEYSCAN_GESTURES,
1784 TP_ACPI_HOTKEYSCAN_UNK11,
1785 TP_ACPI_HOTKEYSCAN_UNK12,
1786 TP_ACPI_HOTKEYSCAN_UNK13,
1787 TP_ACPI_HOTKEYSCAN_CONFIG2,
1788 TP_ACPI_HOTKEYSCAN_NEW_TAB,
1789 TP_ACPI_HOTKEYSCAN_RELOAD,
1790 TP_ACPI_HOTKEYSCAN_BACK,
1791 TP_ACPI_HOTKEYSCAN_MIC_DOWN,
1792 TP_ACPI_HOTKEYSCAN_MIC_UP,
1793 TP_ACPI_HOTKEYSCAN_MIC_CANCELLATION,
1794 TP_ACPI_HOTKEYSCAN_CAMERA_MODE,
1795 TP_ACPI_HOTKEYSCAN_ROTATE_DISPLAY,
1796
1797 /* Lenovo extended keymap, starting at 0x1300 */
1798 TP_ACPI_HOTKEYSCAN_EXTENDED_START, /* 52 / 0x34 */
1799 /* first new observed key (star, favorites) is 0x1311 */
1800 TP_ACPI_HOTKEYSCAN_STAR = 69,
1801 TP_ACPI_HOTKEYSCAN_CLIPPING_TOOL2,
1802 TP_ACPI_HOTKEYSCAN_CALCULATOR,
1803 TP_ACPI_HOTKEYSCAN_BLUETOOTH,
1804 TP_ACPI_HOTKEYSCAN_KEYBOARD,
1805 TP_ACPI_HOTKEYSCAN_FN_RIGHT_SHIFT, /* Used by "Lenovo Quick Clean" */
1806 TP_ACPI_HOTKEYSCAN_NOTIFICATION_CENTER,
1807 TP_ACPI_HOTKEYSCAN_PICKUP_PHONE,
1808 TP_ACPI_HOTKEYSCAN_HANGUP_PHONE,
1809 };
1810
1811 enum { /* Keys/events available through NVRAM polling */
1812 TPACPI_HKEY_NVRAM_KNOWN_MASK = 0x00fb88c0U,
1813 TPACPI_HKEY_NVRAM_GOOD_MASK = 0x00fb8000U,
1814 };
1815
1816 enum { /* Positions of some of the keys in hotkey masks */
1817 TP_ACPI_HKEY_DISPSWTCH_MASK = 1 << TP_ACPI_HOTKEYSCAN_FNF7,
1818 TP_ACPI_HKEY_DISPXPAND_MASK = 1 << TP_ACPI_HOTKEYSCAN_FNF8,
1819 TP_ACPI_HKEY_HIBERNATE_MASK = 1 << TP_ACPI_HOTKEYSCAN_FNF12,
1820 TP_ACPI_HKEY_BRGHTUP_MASK = 1 << TP_ACPI_HOTKEYSCAN_FNHOME,
1821 TP_ACPI_HKEY_BRGHTDWN_MASK = 1 << TP_ACPI_HOTKEYSCAN_FNEND,
1822 TP_ACPI_HKEY_KBD_LIGHT_MASK = 1 << TP_ACPI_HOTKEYSCAN_FNPAGEUP,
1823 TP_ACPI_HKEY_ZOOM_MASK = 1 << TP_ACPI_HOTKEYSCAN_FNSPACE,
1824 TP_ACPI_HKEY_VOLUP_MASK = 1 << TP_ACPI_HOTKEYSCAN_VOLUMEUP,
1825 TP_ACPI_HKEY_VOLDWN_MASK = 1 << TP_ACPI_HOTKEYSCAN_VOLUMEDOWN,
1826 TP_ACPI_HKEY_MUTE_MASK = 1 << TP_ACPI_HOTKEYSCAN_MUTE,
1827 TP_ACPI_HKEY_THINKPAD_MASK = 1 << TP_ACPI_HOTKEYSCAN_THINKPAD,
1828 };
1829
1830 enum { /* NVRAM to ACPI HKEY group map */
1831 TP_NVRAM_HKEY_GROUP_HK2 = TP_ACPI_HKEY_THINKPAD_MASK |
1832 TP_ACPI_HKEY_ZOOM_MASK |
1833 TP_ACPI_HKEY_DISPSWTCH_MASK |
1834 TP_ACPI_HKEY_HIBERNATE_MASK,
1835 TP_NVRAM_HKEY_GROUP_BRIGHTNESS = TP_ACPI_HKEY_BRGHTUP_MASK |
1836 TP_ACPI_HKEY_BRGHTDWN_MASK,
1837 TP_NVRAM_HKEY_GROUP_VOLUME = TP_ACPI_HKEY_VOLUP_MASK |
1838 TP_ACPI_HKEY_VOLDWN_MASK |
1839 TP_ACPI_HKEY_MUTE_MASK,
1840 };
1841
1842 #ifdef CONFIG_THINKPAD_ACPI_HOTKEY_POLL
1843 struct tp_nvram_state {
1844 u16 thinkpad_toggle:1;
1845 u16 zoom_toggle:1;
1846 u16 display_toggle:1;
1847 u16 thinklight_toggle:1;
1848 u16 hibernate_toggle:1;
1849 u16 displayexp_toggle:1;
1850 u16 display_state:1;
1851 u16 brightness_toggle:1;
1852 u16 volume_toggle:1;
1853 u16 mute:1;
1854
1855 u8 brightness_level;
1856 u8 volume_level;
1857 };
1858
1859 /* kthread for the hotkey poller */
1860 static struct task_struct *tpacpi_hotkey_task;
1861
1862 /*
1863 * Acquire mutex to write poller control variables as an
1864 * atomic block.
1865 *
1866 * Increment hotkey_config_change when changing them if you
1867 * want the kthread to forget old state.
1868 *
1869 * See HOTKEY_CONFIG_CRITICAL_START/HOTKEY_CONFIG_CRITICAL_END
1870 */
1871 static struct mutex hotkey_thread_data_mutex;
1872 static unsigned int hotkey_config_change;
1873
1874 /*
1875 * hotkey poller control variables
1876 *
1877 * Must be atomic or readers will also need to acquire mutex
1878 *
1879 * HOTKEY_CONFIG_CRITICAL_START/HOTKEY_CONFIG_CRITICAL_END
1880 * should be used only when the changes need to be taken as
1881 * a block, OR when one needs to force the kthread to forget
1882 * old state.
1883 */
1884 static u32 hotkey_source_mask; /* bit mask 0=ACPI,1=NVRAM */
1885 static unsigned int hotkey_poll_freq = 10; /* Hz */
1886
1887 #define HOTKEY_CONFIG_CRITICAL_START \
1888 do { \
1889 mutex_lock(&hotkey_thread_data_mutex); \
1890 hotkey_config_change++; \
1891 } while (0);
1892 #define HOTKEY_CONFIG_CRITICAL_END \
1893 mutex_unlock(&hotkey_thread_data_mutex);
1894
1895 #else /* CONFIG_THINKPAD_ACPI_HOTKEY_POLL */
1896
1897 #define hotkey_source_mask 0U
1898 #define HOTKEY_CONFIG_CRITICAL_START
1899 #define HOTKEY_CONFIG_CRITICAL_END
1900
1901 #endif /* CONFIG_THINKPAD_ACPI_HOTKEY_POLL */
1902
1903 static struct mutex hotkey_mutex;
1904
1905 static enum { /* Reasons for waking up */
1906 TP_ACPI_WAKEUP_NONE = 0, /* None or unknown */
1907 TP_ACPI_WAKEUP_BAYEJ, /* Bay ejection request */
1908 TP_ACPI_WAKEUP_UNDOCK, /* Undock request */
1909 } hotkey_wakeup_reason;
1910
1911 static int hotkey_autosleep_ack;
1912
1913 static u32 hotkey_orig_mask; /* events the BIOS had enabled */
1914 static u32 hotkey_all_mask; /* all events supported in fw */
1915 static u32 hotkey_adaptive_all_mask; /* all adaptive events supported in fw */
1916 static u32 hotkey_reserved_mask; /* events better left disabled */
1917 static u32 hotkey_driver_mask; /* events needed by the driver */
1918 static u32 hotkey_user_mask; /* events visible to userspace */
1919 static u32 hotkey_acpi_mask; /* events enabled in firmware */
1920
1921 static bool tpacpi_driver_event(const unsigned int hkey_event);
1922 static void hotkey_poll_setup(const bool may_warn);
1923
1924 /* HKEY.MHKG() return bits */
1925 #define TP_HOTKEY_TABLET_MASK (1 << 3)
1926 enum {
1927 TP_ACPI_MULTI_MODE_INVALID = 0,
1928 TP_ACPI_MULTI_MODE_UNKNOWN = 1 << 0,
1929 TP_ACPI_MULTI_MODE_LAPTOP = 1 << 1,
1930 TP_ACPI_MULTI_MODE_TABLET = 1 << 2,
1931 TP_ACPI_MULTI_MODE_FLAT = 1 << 3,
1932 TP_ACPI_MULTI_MODE_STAND = 1 << 4,
1933 TP_ACPI_MULTI_MODE_TENT = 1 << 5,
1934 TP_ACPI_MULTI_MODE_STAND_TENT = 1 << 6,
1935 };
1936
1937 enum {
1938 /* The following modes are considered tablet mode for the purpose of
1939 * reporting the status to userspace. i.e. in all these modes it makes
1940 * sense to disable the laptop input devices such as touchpad and
1941 * keyboard.
1942 */
1943 TP_ACPI_MULTI_MODE_TABLET_LIKE = TP_ACPI_MULTI_MODE_TABLET |
1944 TP_ACPI_MULTI_MODE_STAND |
1945 TP_ACPI_MULTI_MODE_TENT |
1946 TP_ACPI_MULTI_MODE_STAND_TENT,
1947 };
1948
hotkey_get_wlsw(void)1949 static int hotkey_get_wlsw(void)
1950 {
1951 int status;
1952
1953 if (!tp_features.hotkey_wlsw)
1954 return -ENODEV;
1955
1956 #ifdef CONFIG_THINKPAD_ACPI_DEBUGFACILITIES
1957 if (dbg_wlswemul)
1958 return (tpacpi_wlsw_emulstate) ?
1959 TPACPI_RFK_RADIO_ON : TPACPI_RFK_RADIO_OFF;
1960 #endif
1961
1962 if (!acpi_evalf(hkey_handle, &status, "WLSW", "d"))
1963 return -EIO;
1964
1965 return (status) ? TPACPI_RFK_RADIO_ON : TPACPI_RFK_RADIO_OFF;
1966 }
1967
hotkey_gmms_get_tablet_mode(int s,int * has_tablet_mode)1968 static int hotkey_gmms_get_tablet_mode(int s, int *has_tablet_mode)
1969 {
1970 int type = (s >> 16) & 0xffff;
1971 int value = s & 0xffff;
1972 int mode = TP_ACPI_MULTI_MODE_INVALID;
1973 int valid_modes = 0;
1974
1975 if (has_tablet_mode)
1976 *has_tablet_mode = 0;
1977
1978 switch (type) {
1979 case 1:
1980 valid_modes = TP_ACPI_MULTI_MODE_LAPTOP |
1981 TP_ACPI_MULTI_MODE_TABLET |
1982 TP_ACPI_MULTI_MODE_STAND_TENT;
1983 break;
1984 case 2:
1985 valid_modes = TP_ACPI_MULTI_MODE_LAPTOP |
1986 TP_ACPI_MULTI_MODE_FLAT |
1987 TP_ACPI_MULTI_MODE_TABLET |
1988 TP_ACPI_MULTI_MODE_STAND |
1989 TP_ACPI_MULTI_MODE_TENT;
1990 break;
1991 case 3:
1992 valid_modes = TP_ACPI_MULTI_MODE_LAPTOP |
1993 TP_ACPI_MULTI_MODE_FLAT;
1994 break;
1995 case 4:
1996 case 5:
1997 /* In mode 4, FLAT is not specified as a valid mode. However,
1998 * it can be seen at least on the X1 Yoga 2nd Generation.
1999 */
2000 valid_modes = TP_ACPI_MULTI_MODE_LAPTOP |
2001 TP_ACPI_MULTI_MODE_FLAT |
2002 TP_ACPI_MULTI_MODE_TABLET |
2003 TP_ACPI_MULTI_MODE_STAND |
2004 TP_ACPI_MULTI_MODE_TENT;
2005 break;
2006 default:
2007 pr_err("Unknown multi mode status type %d with value 0x%04X, please report this to %s\n",
2008 type, value, TPACPI_MAIL);
2009 return 0;
2010 }
2011
2012 if (has_tablet_mode && (valid_modes & TP_ACPI_MULTI_MODE_TABLET_LIKE))
2013 *has_tablet_mode = 1;
2014
2015 switch (value) {
2016 case 1:
2017 mode = TP_ACPI_MULTI_MODE_LAPTOP;
2018 break;
2019 case 2:
2020 mode = TP_ACPI_MULTI_MODE_FLAT;
2021 break;
2022 case 3:
2023 mode = TP_ACPI_MULTI_MODE_TABLET;
2024 break;
2025 case 4:
2026 if (type == 1)
2027 mode = TP_ACPI_MULTI_MODE_STAND_TENT;
2028 else
2029 mode = TP_ACPI_MULTI_MODE_STAND;
2030 break;
2031 case 5:
2032 mode = TP_ACPI_MULTI_MODE_TENT;
2033 break;
2034 default:
2035 if (type == 5 && value == 0xffff) {
2036 pr_warn("Multi mode status is undetected, assuming laptop\n");
2037 return 0;
2038 }
2039 }
2040
2041 if (!(mode & valid_modes)) {
2042 pr_err("Unknown/reserved multi mode value 0x%04X for type %d, please report this to %s\n",
2043 value, type, TPACPI_MAIL);
2044 return 0;
2045 }
2046
2047 return !!(mode & TP_ACPI_MULTI_MODE_TABLET_LIKE);
2048 }
2049
hotkey_get_tablet_mode(int * status)2050 static int hotkey_get_tablet_mode(int *status)
2051 {
2052 int s;
2053
2054 switch (tp_features.hotkey_tablet) {
2055 case TP_HOTKEY_TABLET_USES_MHKG:
2056 if (!acpi_evalf(hkey_handle, &s, "MHKG", "d"))
2057 return -EIO;
2058
2059 *status = ((s & TP_HOTKEY_TABLET_MASK) != 0);
2060 break;
2061 case TP_HOTKEY_TABLET_USES_GMMS:
2062 if (!acpi_evalf(hkey_handle, &s, "GMMS", "dd", 0))
2063 return -EIO;
2064
2065 *status = hotkey_gmms_get_tablet_mode(s, NULL);
2066 break;
2067 default:
2068 break;
2069 }
2070
2071 return 0;
2072 }
2073
2074 /*
2075 * Reads current event mask from firmware, and updates
2076 * hotkey_acpi_mask accordingly. Also resets any bits
2077 * from hotkey_user_mask that are unavailable to be
2078 * delivered (shadow requirement of the userspace ABI).
2079 */
hotkey_mask_get(void)2080 static int hotkey_mask_get(void)
2081 {
2082 lockdep_assert_held(&hotkey_mutex);
2083
2084 if (tp_features.hotkey_mask) {
2085 u32 m = 0;
2086
2087 if (!acpi_evalf(hkey_handle, &m, "DHKN", "d"))
2088 return -EIO;
2089
2090 hotkey_acpi_mask = m;
2091 } else {
2092 /* no mask support doesn't mean no event support... */
2093 hotkey_acpi_mask = hotkey_all_mask;
2094 }
2095
2096 /* sync userspace-visible mask */
2097 hotkey_user_mask &= (hotkey_acpi_mask | hotkey_source_mask);
2098
2099 return 0;
2100 }
2101
hotkey_mask_warn_incomplete_mask(void)2102 static void hotkey_mask_warn_incomplete_mask(void)
2103 {
2104 /* log only what the user can fix... */
2105 const u32 wantedmask = hotkey_driver_mask &
2106 ~(hotkey_acpi_mask | hotkey_source_mask) &
2107 (hotkey_all_mask | TPACPI_HKEY_NVRAM_KNOWN_MASK);
2108
2109 if (wantedmask)
2110 pr_notice("required events 0x%08x not enabled!\n", wantedmask);
2111 }
2112
2113 /*
2114 * Set the firmware mask when supported
2115 *
2116 * Also calls hotkey_mask_get to update hotkey_acpi_mask.
2117 *
2118 * NOTE: does not set bits in hotkey_user_mask, but may reset them.
2119 */
hotkey_mask_set(u32 mask)2120 static int hotkey_mask_set(u32 mask)
2121 {
2122 int i;
2123 int rc = 0;
2124
2125 const u32 fwmask = mask & ~hotkey_source_mask;
2126
2127 lockdep_assert_held(&hotkey_mutex);
2128
2129 if (tp_features.hotkey_mask) {
2130 for (i = 0; i < 32; i++) {
2131 if (!acpi_evalf(hkey_handle,
2132 NULL, "MHKM", "vdd", i + 1,
2133 !!(mask & (1 << i)))) {
2134 rc = -EIO;
2135 break;
2136 }
2137 }
2138 }
2139
2140 /*
2141 * We *must* make an inconditional call to hotkey_mask_get to
2142 * refresh hotkey_acpi_mask and update hotkey_user_mask
2143 *
2144 * Take the opportunity to also log when we cannot _enable_
2145 * a given event.
2146 */
2147 if (!hotkey_mask_get() && !rc && (fwmask & ~hotkey_acpi_mask)) {
2148 pr_notice("asked for hotkey mask 0x%08x, but firmware forced it to 0x%08x\n",
2149 fwmask, hotkey_acpi_mask);
2150 }
2151
2152 if (tpacpi_lifecycle != TPACPI_LIFE_EXITING)
2153 hotkey_mask_warn_incomplete_mask();
2154
2155 return rc;
2156 }
2157
2158 /*
2159 * Sets hotkey_user_mask and tries to set the firmware mask
2160 */
hotkey_user_mask_set(const u32 mask)2161 static int hotkey_user_mask_set(const u32 mask)
2162 {
2163 int rc;
2164
2165 lockdep_assert_held(&hotkey_mutex);
2166
2167 /* Give people a chance to notice they are doing something that
2168 * is bound to go boom on their users sooner or later */
2169 if (!tp_warned.hotkey_mask_ff &&
2170 (mask == 0xffff || mask == 0xffffff ||
2171 mask == 0xffffffff)) {
2172 tp_warned.hotkey_mask_ff = 1;
2173 pr_notice("setting the hotkey mask to 0x%08x is likely not the best way to go about it\n",
2174 mask);
2175 pr_notice("please consider using the driver defaults, and refer to up-to-date thinkpad-acpi documentation\n");
2176 }
2177
2178 /* Try to enable what the user asked for, plus whatever we need.
2179 * this syncs everything but won't enable bits in hotkey_user_mask */
2180 rc = hotkey_mask_set((mask | hotkey_driver_mask) & ~hotkey_source_mask);
2181
2182 /* Enable the available bits in hotkey_user_mask */
2183 hotkey_user_mask = mask & (hotkey_acpi_mask | hotkey_source_mask);
2184
2185 return rc;
2186 }
2187
2188 /*
2189 * Sets the driver hotkey mask.
2190 *
2191 * Can be called even if the hotkey subdriver is inactive
2192 */
tpacpi_hotkey_driver_mask_set(const u32 mask)2193 static int tpacpi_hotkey_driver_mask_set(const u32 mask)
2194 {
2195 int rc;
2196
2197 /* Do the right thing if hotkey_init has not been called yet */
2198 if (!tp_features.hotkey) {
2199 hotkey_driver_mask = mask;
2200 return 0;
2201 }
2202
2203 mutex_lock(&hotkey_mutex);
2204
2205 HOTKEY_CONFIG_CRITICAL_START
2206 hotkey_driver_mask = mask;
2207 #ifdef CONFIG_THINKPAD_ACPI_HOTKEY_POLL
2208 hotkey_source_mask |= (mask & ~hotkey_all_mask);
2209 #endif
2210 HOTKEY_CONFIG_CRITICAL_END
2211
2212 rc = hotkey_mask_set((hotkey_acpi_mask | hotkey_driver_mask) &
2213 ~hotkey_source_mask);
2214 hotkey_poll_setup(true);
2215
2216 mutex_unlock(&hotkey_mutex);
2217
2218 return rc;
2219 }
2220
hotkey_status_get(int * status)2221 static int hotkey_status_get(int *status)
2222 {
2223 if (!acpi_evalf(hkey_handle, status, "DHKC", "d"))
2224 return -EIO;
2225
2226 return 0;
2227 }
2228
hotkey_status_set(bool enable)2229 static int hotkey_status_set(bool enable)
2230 {
2231 if (!acpi_evalf(hkey_handle, NULL, "MHKC", "vd", enable ? 1 : 0))
2232 return -EIO;
2233
2234 return 0;
2235 }
2236
tpacpi_input_send_tabletsw(void)2237 static void tpacpi_input_send_tabletsw(void)
2238 {
2239 int state;
2240
2241 if (tp_features.hotkey_tablet &&
2242 !hotkey_get_tablet_mode(&state)) {
2243 mutex_lock(&tpacpi_inputdev_send_mutex);
2244
2245 input_report_switch(tpacpi_inputdev,
2246 SW_TABLET_MODE, !!state);
2247 input_sync(tpacpi_inputdev);
2248
2249 mutex_unlock(&tpacpi_inputdev_send_mutex);
2250 }
2251 }
2252
tpacpi_input_send_key(const u32 hkey,bool * send_acpi_ev)2253 static bool tpacpi_input_send_key(const u32 hkey, bool *send_acpi_ev)
2254 {
2255 bool known_ev;
2256 u32 scancode;
2257
2258 if (tpacpi_driver_event(hkey))
2259 return true;
2260
2261 /*
2262 * Before the conversion to using the sparse-keymap helpers the driver used to
2263 * map the hkey event codes to 0x00 - 0x4d scancodes so that a straight scancode
2264 * indexed array could be used to map scancodes to keycodes:
2265 *
2266 * 0x1001 - 0x1020 -> 0x00 - 0x1f (Original ThinkPad events)
2267 * 0x1103 - 0x1116 -> 0x20 - 0x33 (Adaptive keyboard, 2014 X1 Carbon)
2268 * 0x1300 - 0x1319 -> 0x34 - 0x4d (Additional keys send in 2017+ models)
2269 *
2270 * The sparse-keymap tables still use these scancodes for these ranges to
2271 * preserve userspace API compatibility (e.g. hwdb keymappings).
2272 */
2273 if (hkey >= TP_HKEY_EV_ORIG_KEY_START &&
2274 hkey <= TP_HKEY_EV_ORIG_KEY_END) {
2275 scancode = hkey - TP_HKEY_EV_ORIG_KEY_START;
2276 if (!(hotkey_user_mask & (1 << scancode)))
2277 return true; /* Not reported but still a known code */
2278 } else if (hkey >= TP_HKEY_EV_ADAPTIVE_KEY_START &&
2279 hkey <= TP_HKEY_EV_ADAPTIVE_KEY_END) {
2280 scancode = hkey - TP_HKEY_EV_ADAPTIVE_KEY_START +
2281 TP_ACPI_HOTKEYSCAN_ADAPTIVE_START;
2282 } else if (hkey >= TP_HKEY_EV_EXTENDED_KEY_START &&
2283 hkey <= TP_HKEY_EV_EXTENDED_KEY_END) {
2284 scancode = hkey - TP_HKEY_EV_EXTENDED_KEY_START +
2285 TP_ACPI_HOTKEYSCAN_EXTENDED_START;
2286 } else {
2287 /*
2288 * Do not send ACPI netlink events for unknown hotkeys, to
2289 * avoid userspace starting to rely on them. Instead these
2290 * should be added to the keymap to send evdev events.
2291 */
2292 if (send_acpi_ev)
2293 *send_acpi_ev = false;
2294
2295 scancode = hkey;
2296 }
2297
2298 mutex_lock(&tpacpi_inputdev_send_mutex);
2299 known_ev = sparse_keymap_report_event(tpacpi_inputdev, scancode, 1, true);
2300 mutex_unlock(&tpacpi_inputdev_send_mutex);
2301
2302 return known_ev;
2303 }
2304
2305 #ifdef CONFIG_THINKPAD_ACPI_HOTKEY_POLL
2306 static struct tp_acpi_drv_struct ibm_hotkey_acpidriver;
2307
2308 /* Do NOT call without validating scancode first */
tpacpi_hotkey_send_key(unsigned int scancode)2309 static void tpacpi_hotkey_send_key(unsigned int scancode)
2310 {
2311 tpacpi_input_send_key(TP_HKEY_EV_ORIG_KEY_START + scancode, NULL);
2312 }
2313
hotkey_read_nvram(struct tp_nvram_state * n,const u32 m)2314 static void hotkey_read_nvram(struct tp_nvram_state *n, const u32 m)
2315 {
2316 u8 d;
2317
2318 if (m & TP_NVRAM_HKEY_GROUP_HK2) {
2319 d = nvram_read_byte(TP_NVRAM_ADDR_HK2);
2320 n->thinkpad_toggle = !!(d & TP_NVRAM_MASK_HKT_THINKPAD);
2321 n->zoom_toggle = !!(d & TP_NVRAM_MASK_HKT_ZOOM);
2322 n->display_toggle = !!(d & TP_NVRAM_MASK_HKT_DISPLAY);
2323 n->hibernate_toggle = !!(d & TP_NVRAM_MASK_HKT_HIBERNATE);
2324 }
2325 if (m & TP_ACPI_HKEY_KBD_LIGHT_MASK) {
2326 d = nvram_read_byte(TP_NVRAM_ADDR_THINKLIGHT);
2327 n->thinklight_toggle = !!(d & TP_NVRAM_MASK_THINKLIGHT);
2328 }
2329 if (m & TP_ACPI_HKEY_DISPXPAND_MASK) {
2330 d = nvram_read_byte(TP_NVRAM_ADDR_VIDEO);
2331 n->displayexp_toggle =
2332 !!(d & TP_NVRAM_MASK_HKT_DISPEXPND);
2333 }
2334 if (m & TP_NVRAM_HKEY_GROUP_BRIGHTNESS) {
2335 d = nvram_read_byte(TP_NVRAM_ADDR_BRIGHTNESS);
2336 n->brightness_level = (d & TP_NVRAM_MASK_LEVEL_BRIGHTNESS)
2337 >> TP_NVRAM_POS_LEVEL_BRIGHTNESS;
2338 n->brightness_toggle =
2339 !!(d & TP_NVRAM_MASK_HKT_BRIGHTNESS);
2340 }
2341 if (m & TP_NVRAM_HKEY_GROUP_VOLUME) {
2342 d = nvram_read_byte(TP_NVRAM_ADDR_MIXER);
2343 n->volume_level = (d & TP_NVRAM_MASK_LEVEL_VOLUME)
2344 >> TP_NVRAM_POS_LEVEL_VOLUME;
2345 n->mute = !!(d & TP_NVRAM_MASK_MUTE);
2346 n->volume_toggle = !!(d & TP_NVRAM_MASK_HKT_VOLUME);
2347 }
2348 }
2349
2350 #define TPACPI_COMPARE_KEY(__scancode, __member) \
2351 do { \
2352 if ((event_mask & (1 << __scancode)) && \
2353 oldn->__member != newn->__member) \
2354 tpacpi_hotkey_send_key(__scancode); \
2355 } while (0)
2356
2357 #define TPACPI_MAY_SEND_KEY(__scancode) \
2358 do { \
2359 if (event_mask & (1 << __scancode)) \
2360 tpacpi_hotkey_send_key(__scancode); \
2361 } while (0)
2362
issue_volchange(const unsigned int oldvol,const unsigned int newvol,const u32 event_mask)2363 static void issue_volchange(const unsigned int oldvol,
2364 const unsigned int newvol,
2365 const u32 event_mask)
2366 {
2367 unsigned int i = oldvol;
2368
2369 while (i > newvol) {
2370 TPACPI_MAY_SEND_KEY(TP_ACPI_HOTKEYSCAN_VOLUMEDOWN);
2371 i--;
2372 }
2373 while (i < newvol) {
2374 TPACPI_MAY_SEND_KEY(TP_ACPI_HOTKEYSCAN_VOLUMEUP);
2375 i++;
2376 }
2377 }
2378
issue_brightnesschange(const unsigned int oldbrt,const unsigned int newbrt,const u32 event_mask)2379 static void issue_brightnesschange(const unsigned int oldbrt,
2380 const unsigned int newbrt,
2381 const u32 event_mask)
2382 {
2383 unsigned int i = oldbrt;
2384
2385 while (i > newbrt) {
2386 TPACPI_MAY_SEND_KEY(TP_ACPI_HOTKEYSCAN_FNEND);
2387 i--;
2388 }
2389 while (i < newbrt) {
2390 TPACPI_MAY_SEND_KEY(TP_ACPI_HOTKEYSCAN_FNHOME);
2391 i++;
2392 }
2393 }
2394
hotkey_compare_and_issue_event(struct tp_nvram_state * oldn,struct tp_nvram_state * newn,const u32 event_mask)2395 static void hotkey_compare_and_issue_event(struct tp_nvram_state *oldn,
2396 struct tp_nvram_state *newn,
2397 const u32 event_mask)
2398 {
2399
2400 TPACPI_COMPARE_KEY(TP_ACPI_HOTKEYSCAN_THINKPAD, thinkpad_toggle);
2401 TPACPI_COMPARE_KEY(TP_ACPI_HOTKEYSCAN_FNSPACE, zoom_toggle);
2402 TPACPI_COMPARE_KEY(TP_ACPI_HOTKEYSCAN_FNF7, display_toggle);
2403 TPACPI_COMPARE_KEY(TP_ACPI_HOTKEYSCAN_FNF12, hibernate_toggle);
2404
2405 TPACPI_COMPARE_KEY(TP_ACPI_HOTKEYSCAN_FNPAGEUP, thinklight_toggle);
2406
2407 TPACPI_COMPARE_KEY(TP_ACPI_HOTKEYSCAN_FNF8, displayexp_toggle);
2408
2409 /*
2410 * Handle volume
2411 *
2412 * This code is supposed to duplicate the IBM firmware behaviour:
2413 * - Pressing MUTE issues mute hotkey message, even when already mute
2414 * - Pressing Volume up/down issues volume up/down hotkey messages,
2415 * even when already at maximum or minimum volume
2416 * - The act of unmuting issues volume up/down notification,
2417 * depending which key was used to unmute
2418 *
2419 * We are constrained to what the NVRAM can tell us, which is not much
2420 * and certainly not enough if more than one volume hotkey was pressed
2421 * since the last poll cycle.
2422 *
2423 * Just to make our life interesting, some newer Lenovo ThinkPads have
2424 * bugs in the BIOS and may fail to update volume_toggle properly.
2425 */
2426 if (newn->mute) {
2427 /* muted */
2428 if (!oldn->mute ||
2429 oldn->volume_toggle != newn->volume_toggle ||
2430 oldn->volume_level != newn->volume_level) {
2431 /* recently muted, or repeated mute keypress, or
2432 * multiple presses ending in mute */
2433 issue_volchange(oldn->volume_level, newn->volume_level,
2434 event_mask);
2435 TPACPI_MAY_SEND_KEY(TP_ACPI_HOTKEYSCAN_MUTE);
2436 }
2437 } else {
2438 /* unmute */
2439 if (oldn->mute) {
2440 /* recently unmuted, issue 'unmute' keypress */
2441 TPACPI_MAY_SEND_KEY(TP_ACPI_HOTKEYSCAN_VOLUMEUP);
2442 }
2443 if (oldn->volume_level != newn->volume_level) {
2444 issue_volchange(oldn->volume_level, newn->volume_level,
2445 event_mask);
2446 } else if (oldn->volume_toggle != newn->volume_toggle) {
2447 /* repeated vol up/down keypress at end of scale ? */
2448 if (newn->volume_level == 0)
2449 TPACPI_MAY_SEND_KEY(TP_ACPI_HOTKEYSCAN_VOLUMEDOWN);
2450 else if (newn->volume_level >= TP_NVRAM_LEVEL_VOLUME_MAX)
2451 TPACPI_MAY_SEND_KEY(TP_ACPI_HOTKEYSCAN_VOLUMEUP);
2452 }
2453 }
2454
2455 /* handle brightness */
2456 if (oldn->brightness_level != newn->brightness_level) {
2457 issue_brightnesschange(oldn->brightness_level,
2458 newn->brightness_level, event_mask);
2459 } else if (oldn->brightness_toggle != newn->brightness_toggle) {
2460 /* repeated key presses that didn't change state */
2461 if (newn->brightness_level == 0)
2462 TPACPI_MAY_SEND_KEY(TP_ACPI_HOTKEYSCAN_FNEND);
2463 else if (newn->brightness_level >= bright_maxlvl
2464 && !tp_features.bright_unkfw)
2465 TPACPI_MAY_SEND_KEY(TP_ACPI_HOTKEYSCAN_FNHOME);
2466 }
2467
2468 #undef TPACPI_COMPARE_KEY
2469 #undef TPACPI_MAY_SEND_KEY
2470 }
2471
2472 /*
2473 * Polling driver
2474 *
2475 * We track all events in hotkey_source_mask all the time, since
2476 * most of them are edge-based. We only issue those requested by
2477 * hotkey_user_mask or hotkey_driver_mask, though.
2478 */
hotkey_kthread(void * data)2479 static int hotkey_kthread(void *data)
2480 {
2481 struct tp_nvram_state s[2] = { 0 };
2482 u32 poll_mask, event_mask;
2483 unsigned int si, so;
2484 unsigned long t;
2485 unsigned int change_detector;
2486 unsigned int poll_freq;
2487 bool was_frozen;
2488
2489 if (tpacpi_lifecycle == TPACPI_LIFE_EXITING)
2490 goto exit;
2491
2492 set_freezable();
2493
2494 so = 0;
2495 si = 1;
2496 t = 0;
2497
2498 /* Initial state for compares */
2499 mutex_lock(&hotkey_thread_data_mutex);
2500 change_detector = hotkey_config_change;
2501 poll_mask = hotkey_source_mask;
2502 event_mask = hotkey_source_mask &
2503 (hotkey_driver_mask | hotkey_user_mask);
2504 poll_freq = hotkey_poll_freq;
2505 mutex_unlock(&hotkey_thread_data_mutex);
2506 hotkey_read_nvram(&s[so], poll_mask);
2507
2508 while (!kthread_should_stop()) {
2509 if (t == 0) {
2510 if (likely(poll_freq))
2511 t = 1000/poll_freq;
2512 else
2513 t = 100; /* should never happen... */
2514 }
2515 t = msleep_interruptible(t);
2516 if (unlikely(kthread_freezable_should_stop(&was_frozen)))
2517 break;
2518
2519 if (t > 0 && !was_frozen)
2520 continue;
2521
2522 mutex_lock(&hotkey_thread_data_mutex);
2523 if (was_frozen || hotkey_config_change != change_detector) {
2524 /* forget old state on thaw or config change */
2525 si = so;
2526 t = 0;
2527 change_detector = hotkey_config_change;
2528 }
2529 poll_mask = hotkey_source_mask;
2530 event_mask = hotkey_source_mask &
2531 (hotkey_driver_mask | hotkey_user_mask);
2532 poll_freq = hotkey_poll_freq;
2533 mutex_unlock(&hotkey_thread_data_mutex);
2534
2535 if (likely(poll_mask)) {
2536 hotkey_read_nvram(&s[si], poll_mask);
2537 if (likely(si != so)) {
2538 hotkey_compare_and_issue_event(&s[so], &s[si],
2539 event_mask);
2540 }
2541 }
2542
2543 so = si;
2544 si ^= 1;
2545 }
2546
2547 exit:
2548 return 0;
2549 }
2550
hotkey_poll_stop_sync(void)2551 static void hotkey_poll_stop_sync(void)
2552 {
2553 lockdep_assert_held(&hotkey_mutex);
2554
2555 if (tpacpi_hotkey_task) {
2556 kthread_stop(tpacpi_hotkey_task);
2557 tpacpi_hotkey_task = NULL;
2558 }
2559 }
2560
hotkey_poll_setup(const bool may_warn)2561 static void hotkey_poll_setup(const bool may_warn)
2562 {
2563 const u32 poll_driver_mask = hotkey_driver_mask & hotkey_source_mask;
2564 const u32 poll_user_mask = hotkey_user_mask & hotkey_source_mask;
2565
2566 lockdep_assert_held(&hotkey_mutex);
2567
2568 if (hotkey_poll_freq > 0 &&
2569 (poll_driver_mask ||
2570 (poll_user_mask && tpacpi_inputdev->users > 0))) {
2571 if (!tpacpi_hotkey_task) {
2572 tpacpi_hotkey_task = kthread_run(hotkey_kthread,
2573 NULL, TPACPI_NVRAM_KTHREAD_NAME);
2574 if (IS_ERR(tpacpi_hotkey_task)) {
2575 tpacpi_hotkey_task = NULL;
2576 pr_err("could not create kernel thread for hotkey polling\n");
2577 }
2578 }
2579 } else {
2580 hotkey_poll_stop_sync();
2581 if (may_warn && (poll_driver_mask || poll_user_mask) &&
2582 hotkey_poll_freq == 0) {
2583 pr_notice("hot keys 0x%08x and/or events 0x%08x require polling, which is currently disabled\n",
2584 poll_user_mask, poll_driver_mask);
2585 }
2586 }
2587 }
2588
hotkey_poll_setup_safe(const bool may_warn)2589 static void hotkey_poll_setup_safe(const bool may_warn)
2590 {
2591 mutex_lock(&hotkey_mutex);
2592 hotkey_poll_setup(may_warn);
2593 mutex_unlock(&hotkey_mutex);
2594 }
2595
hotkey_poll_set_freq(unsigned int freq)2596 static void hotkey_poll_set_freq(unsigned int freq)
2597 {
2598 lockdep_assert_held(&hotkey_mutex);
2599
2600 if (!freq)
2601 hotkey_poll_stop_sync();
2602
2603 hotkey_poll_freq = freq;
2604 }
2605
2606 #else /* CONFIG_THINKPAD_ACPI_HOTKEY_POLL */
2607
hotkey_poll_setup(const bool __unused)2608 static void hotkey_poll_setup(const bool __unused)
2609 {
2610 }
2611
hotkey_poll_setup_safe(const bool __unused)2612 static void hotkey_poll_setup_safe(const bool __unused)
2613 {
2614 }
2615
hotkey_poll_stop_sync(void)2616 static void hotkey_poll_stop_sync(void)
2617 {
2618 }
2619 #endif /* CONFIG_THINKPAD_ACPI_HOTKEY_POLL */
2620
hotkey_inputdev_open(struct input_dev * dev)2621 static int hotkey_inputdev_open(struct input_dev *dev)
2622 {
2623 switch (tpacpi_lifecycle) {
2624 case TPACPI_LIFE_INIT:
2625 case TPACPI_LIFE_RUNNING:
2626 hotkey_poll_setup_safe(false);
2627 return 0;
2628 case TPACPI_LIFE_EXITING:
2629 return -EBUSY;
2630 }
2631
2632 /* Should only happen if tpacpi_lifecycle is corrupt */
2633 BUG();
2634 return -EBUSY;
2635 }
2636
hotkey_inputdev_close(struct input_dev * dev)2637 static void hotkey_inputdev_close(struct input_dev *dev)
2638 {
2639 /* disable hotkey polling when possible */
2640 if (tpacpi_lifecycle != TPACPI_LIFE_EXITING &&
2641 !(hotkey_source_mask & hotkey_driver_mask))
2642 hotkey_poll_setup_safe(false);
2643 }
2644
2645 /* sysfs hotkey enable ------------------------------------------------- */
hotkey_enable_show(struct device * dev,struct device_attribute * attr,char * buf)2646 static ssize_t hotkey_enable_show(struct device *dev,
2647 struct device_attribute *attr,
2648 char *buf)
2649 {
2650 int res, status;
2651
2652 printk_deprecated_attribute("hotkey_enable",
2653 "Hotkey reporting is always enabled");
2654
2655 res = hotkey_status_get(&status);
2656 if (res)
2657 return res;
2658
2659 return sysfs_emit(buf, "%d\n", status);
2660 }
2661
hotkey_enable_store(struct device * dev,struct device_attribute * attr,const char * buf,size_t count)2662 static ssize_t hotkey_enable_store(struct device *dev,
2663 struct device_attribute *attr,
2664 const char *buf, size_t count)
2665 {
2666 unsigned long t;
2667
2668 printk_deprecated_attribute("hotkey_enable",
2669 "Hotkeys can be disabled through hotkey_mask");
2670
2671 if (parse_strtoul(buf, 1, &t))
2672 return -EINVAL;
2673
2674 if (t == 0)
2675 return -EPERM;
2676
2677 return count;
2678 }
2679
2680 static DEVICE_ATTR_RW(hotkey_enable);
2681
2682 /* sysfs hotkey mask --------------------------------------------------- */
hotkey_mask_show(struct device * dev,struct device_attribute * attr,char * buf)2683 static ssize_t hotkey_mask_show(struct device *dev,
2684 struct device_attribute *attr,
2685 char *buf)
2686 {
2687 return sysfs_emit(buf, "0x%08x\n", hotkey_user_mask);
2688 }
2689
hotkey_mask_store(struct device * dev,struct device_attribute * attr,const char * buf,size_t count)2690 static ssize_t hotkey_mask_store(struct device *dev,
2691 struct device_attribute *attr,
2692 const char *buf, size_t count)
2693 {
2694 unsigned long t;
2695 int res;
2696
2697 if (parse_strtoul(buf, 0xffffffffUL, &t))
2698 return -EINVAL;
2699
2700 if (mutex_lock_killable(&hotkey_mutex))
2701 return -ERESTARTSYS;
2702
2703 res = hotkey_user_mask_set(t);
2704
2705 #ifdef CONFIG_THINKPAD_ACPI_HOTKEY_POLL
2706 hotkey_poll_setup(true);
2707 #endif
2708
2709 mutex_unlock(&hotkey_mutex);
2710
2711 tpacpi_disclose_usertask("hotkey_mask", "set to 0x%08lx\n", t);
2712
2713 return (res) ? res : count;
2714 }
2715
2716 static DEVICE_ATTR_RW(hotkey_mask);
2717
2718 /* sysfs hotkey bios_enabled ------------------------------------------- */
hotkey_bios_enabled_show(struct device * dev,struct device_attribute * attr,char * buf)2719 static ssize_t hotkey_bios_enabled_show(struct device *dev,
2720 struct device_attribute *attr,
2721 char *buf)
2722 {
2723 return sysfs_emit(buf, "0\n");
2724 }
2725
2726 static DEVICE_ATTR_RO(hotkey_bios_enabled);
2727
2728 /* sysfs hotkey bios_mask ---------------------------------------------- */
hotkey_bios_mask_show(struct device * dev,struct device_attribute * attr,char * buf)2729 static ssize_t hotkey_bios_mask_show(struct device *dev,
2730 struct device_attribute *attr,
2731 char *buf)
2732 {
2733 printk_deprecated_attribute("hotkey_bios_mask",
2734 "This attribute is useless.");
2735 return sysfs_emit(buf, "0x%08x\n", hotkey_orig_mask);
2736 }
2737
2738 static DEVICE_ATTR_RO(hotkey_bios_mask);
2739
2740 /* sysfs hotkey all_mask ----------------------------------------------- */
hotkey_all_mask_show(struct device * dev,struct device_attribute * attr,char * buf)2741 static ssize_t hotkey_all_mask_show(struct device *dev,
2742 struct device_attribute *attr,
2743 char *buf)
2744 {
2745 return sysfs_emit(buf, "0x%08x\n",
2746 hotkey_all_mask | hotkey_source_mask);
2747 }
2748
2749 static DEVICE_ATTR_RO(hotkey_all_mask);
2750
2751 /* sysfs hotkey all_mask ----------------------------------------------- */
hotkey_adaptive_all_mask_show(struct device * dev,struct device_attribute * attr,char * buf)2752 static ssize_t hotkey_adaptive_all_mask_show(struct device *dev,
2753 struct device_attribute *attr,
2754 char *buf)
2755 {
2756 return sysfs_emit(buf, "0x%08x\n",
2757 hotkey_adaptive_all_mask | hotkey_source_mask);
2758 }
2759
2760 static DEVICE_ATTR_RO(hotkey_adaptive_all_mask);
2761
2762 /* sysfs hotkey recommended_mask --------------------------------------- */
hotkey_recommended_mask_show(struct device * dev,struct device_attribute * attr,char * buf)2763 static ssize_t hotkey_recommended_mask_show(struct device *dev,
2764 struct device_attribute *attr,
2765 char *buf)
2766 {
2767 return sysfs_emit(buf, "0x%08x\n",
2768 (hotkey_all_mask | hotkey_source_mask)
2769 & ~hotkey_reserved_mask);
2770 }
2771
2772 static DEVICE_ATTR_RO(hotkey_recommended_mask);
2773
2774 #ifdef CONFIG_THINKPAD_ACPI_HOTKEY_POLL
2775
2776 /* sysfs hotkey hotkey_source_mask ------------------------------------- */
hotkey_source_mask_show(struct device * dev,struct device_attribute * attr,char * buf)2777 static ssize_t hotkey_source_mask_show(struct device *dev,
2778 struct device_attribute *attr,
2779 char *buf)
2780 {
2781 return sysfs_emit(buf, "0x%08x\n", hotkey_source_mask);
2782 }
2783
hotkey_source_mask_store(struct device * dev,struct device_attribute * attr,const char * buf,size_t count)2784 static ssize_t hotkey_source_mask_store(struct device *dev,
2785 struct device_attribute *attr,
2786 const char *buf, size_t count)
2787 {
2788 unsigned long t;
2789 u32 r_ev;
2790 int rc;
2791
2792 if (parse_strtoul(buf, 0xffffffffUL, &t) ||
2793 ((t & ~TPACPI_HKEY_NVRAM_KNOWN_MASK) != 0))
2794 return -EINVAL;
2795
2796 if (mutex_lock_killable(&hotkey_mutex))
2797 return -ERESTARTSYS;
2798
2799 HOTKEY_CONFIG_CRITICAL_START
2800 hotkey_source_mask = t;
2801 HOTKEY_CONFIG_CRITICAL_END
2802
2803 rc = hotkey_mask_set((hotkey_user_mask | hotkey_driver_mask) &
2804 ~hotkey_source_mask);
2805 hotkey_poll_setup(true);
2806
2807 /* check if events needed by the driver got disabled */
2808 r_ev = hotkey_driver_mask & ~(hotkey_acpi_mask & hotkey_all_mask)
2809 & ~hotkey_source_mask & TPACPI_HKEY_NVRAM_KNOWN_MASK;
2810
2811 mutex_unlock(&hotkey_mutex);
2812
2813 if (rc < 0)
2814 pr_err("hotkey_source_mask: failed to update the firmware event mask!\n");
2815
2816 if (r_ev)
2817 pr_notice("hotkey_source_mask: some important events were disabled: 0x%04x\n",
2818 r_ev);
2819
2820 tpacpi_disclose_usertask("hotkey_source_mask", "set to 0x%08lx\n", t);
2821
2822 return (rc < 0) ? rc : count;
2823 }
2824
2825 static DEVICE_ATTR_RW(hotkey_source_mask);
2826
2827 /* sysfs hotkey hotkey_poll_freq --------------------------------------- */
hotkey_poll_freq_show(struct device * dev,struct device_attribute * attr,char * buf)2828 static ssize_t hotkey_poll_freq_show(struct device *dev,
2829 struct device_attribute *attr,
2830 char *buf)
2831 {
2832 return sysfs_emit(buf, "%d\n", hotkey_poll_freq);
2833 }
2834
hotkey_poll_freq_store(struct device * dev,struct device_attribute * attr,const char * buf,size_t count)2835 static ssize_t hotkey_poll_freq_store(struct device *dev,
2836 struct device_attribute *attr,
2837 const char *buf, size_t count)
2838 {
2839 unsigned long t;
2840
2841 if (parse_strtoul(buf, 25, &t))
2842 return -EINVAL;
2843
2844 if (mutex_lock_killable(&hotkey_mutex))
2845 return -ERESTARTSYS;
2846
2847 hotkey_poll_set_freq(t);
2848 hotkey_poll_setup(true);
2849
2850 mutex_unlock(&hotkey_mutex);
2851
2852 tpacpi_disclose_usertask("hotkey_poll_freq", "set to %lu\n", t);
2853
2854 return count;
2855 }
2856
2857 static DEVICE_ATTR_RW(hotkey_poll_freq);
2858
2859 #endif /* CONFIG_THINKPAD_ACPI_HOTKEY_POLL */
2860
2861 /* sysfs hotkey radio_sw (pollable) ------------------------------------ */
hotkey_radio_sw_show(struct device * dev,struct device_attribute * attr,char * buf)2862 static ssize_t hotkey_radio_sw_show(struct device *dev,
2863 struct device_attribute *attr,
2864 char *buf)
2865 {
2866 int res;
2867 res = hotkey_get_wlsw();
2868 if (res < 0)
2869 return res;
2870
2871 /* Opportunistic update */
2872 tpacpi_rfk_update_hwblock_state((res == TPACPI_RFK_RADIO_OFF));
2873
2874 return sysfs_emit(buf, "%d\n",
2875 (res == TPACPI_RFK_RADIO_OFF) ? 0 : 1);
2876 }
2877
2878 static DEVICE_ATTR_RO(hotkey_radio_sw);
2879
hotkey_radio_sw_notify_change(void)2880 static void hotkey_radio_sw_notify_change(void)
2881 {
2882 if (tp_features.hotkey_wlsw)
2883 sysfs_notify(&tpacpi_pdev->dev.kobj, NULL,
2884 "hotkey_radio_sw");
2885 }
2886
2887 /* sysfs hotkey tablet mode (pollable) --------------------------------- */
hotkey_tablet_mode_show(struct device * dev,struct device_attribute * attr,char * buf)2888 static ssize_t hotkey_tablet_mode_show(struct device *dev,
2889 struct device_attribute *attr,
2890 char *buf)
2891 {
2892 int res, s;
2893 res = hotkey_get_tablet_mode(&s);
2894 if (res < 0)
2895 return res;
2896
2897 return sysfs_emit(buf, "%d\n", !!s);
2898 }
2899
2900 static DEVICE_ATTR_RO(hotkey_tablet_mode);
2901
hotkey_tablet_mode_notify_change(void)2902 static void hotkey_tablet_mode_notify_change(void)
2903 {
2904 if (tp_features.hotkey_tablet)
2905 sysfs_notify(&tpacpi_pdev->dev.kobj, NULL,
2906 "hotkey_tablet_mode");
2907 }
2908
2909 /* sysfs wakeup reason (pollable) -------------------------------------- */
hotkey_wakeup_reason_show(struct device * dev,struct device_attribute * attr,char * buf)2910 static ssize_t hotkey_wakeup_reason_show(struct device *dev,
2911 struct device_attribute *attr,
2912 char *buf)
2913 {
2914 return sysfs_emit(buf, "%d\n", hotkey_wakeup_reason);
2915 }
2916
2917 static DEVICE_ATTR(wakeup_reason, S_IRUGO, hotkey_wakeup_reason_show, NULL);
2918
hotkey_wakeup_reason_notify_change(void)2919 static void hotkey_wakeup_reason_notify_change(void)
2920 {
2921 sysfs_notify(&tpacpi_pdev->dev.kobj, NULL,
2922 "wakeup_reason");
2923 }
2924
2925 /* sysfs wakeup hotunplug_complete (pollable) -------------------------- */
hotkey_wakeup_hotunplug_complete_show(struct device * dev,struct device_attribute * attr,char * buf)2926 static ssize_t hotkey_wakeup_hotunplug_complete_show(struct device *dev,
2927 struct device_attribute *attr,
2928 char *buf)
2929 {
2930 return sysfs_emit(buf, "%d\n", hotkey_autosleep_ack);
2931 }
2932
2933 static DEVICE_ATTR(wakeup_hotunplug_complete, S_IRUGO,
2934 hotkey_wakeup_hotunplug_complete_show, NULL);
2935
hotkey_wakeup_hotunplug_complete_notify_change(void)2936 static void hotkey_wakeup_hotunplug_complete_notify_change(void)
2937 {
2938 sysfs_notify(&tpacpi_pdev->dev.kobj, NULL,
2939 "wakeup_hotunplug_complete");
2940 }
2941
2942 /* sysfs adaptive kbd mode --------------------------------------------- */
2943
2944 static int adaptive_keyboard_get_mode(void);
2945 static int adaptive_keyboard_set_mode(int new_mode);
2946
2947 enum ADAPTIVE_KEY_MODE {
2948 HOME_MODE,
2949 WEB_BROWSER_MODE,
2950 WEB_CONFERENCE_MODE,
2951 FUNCTION_MODE,
2952 LAYFLAT_MODE
2953 };
2954
adaptive_kbd_mode_show(struct device * dev,struct device_attribute * attr,char * buf)2955 static ssize_t adaptive_kbd_mode_show(struct device *dev,
2956 struct device_attribute *attr,
2957 char *buf)
2958 {
2959 int current_mode;
2960
2961 current_mode = adaptive_keyboard_get_mode();
2962 if (current_mode < 0)
2963 return current_mode;
2964
2965 return sysfs_emit(buf, "%d\n", current_mode);
2966 }
2967
adaptive_kbd_mode_store(struct device * dev,struct device_attribute * attr,const char * buf,size_t count)2968 static ssize_t adaptive_kbd_mode_store(struct device *dev,
2969 struct device_attribute *attr,
2970 const char *buf, size_t count)
2971 {
2972 unsigned long t;
2973 int res;
2974
2975 if (parse_strtoul(buf, LAYFLAT_MODE, &t))
2976 return -EINVAL;
2977
2978 res = adaptive_keyboard_set_mode(t);
2979 return (res < 0) ? res : count;
2980 }
2981
2982 static DEVICE_ATTR_RW(adaptive_kbd_mode);
2983
2984 static struct attribute *adaptive_kbd_attributes[] = {
2985 &dev_attr_adaptive_kbd_mode.attr,
2986 NULL
2987 };
2988
hadaptive_kbd_attr_is_visible(struct kobject * kobj,struct attribute * attr,int n)2989 static umode_t hadaptive_kbd_attr_is_visible(struct kobject *kobj,
2990 struct attribute *attr, int n)
2991 {
2992 return tp_features.has_adaptive_kbd ? attr->mode : 0;
2993 }
2994
2995 static const struct attribute_group adaptive_kbd_attr_group = {
2996 .is_visible = hadaptive_kbd_attr_is_visible,
2997 .attrs = adaptive_kbd_attributes,
2998 };
2999
3000 /* --------------------------------------------------------------------- */
3001
3002 static struct attribute *hotkey_attributes[] = {
3003 &dev_attr_hotkey_enable.attr,
3004 &dev_attr_hotkey_bios_enabled.attr,
3005 &dev_attr_hotkey_bios_mask.attr,
3006 &dev_attr_wakeup_reason.attr,
3007 &dev_attr_wakeup_hotunplug_complete.attr,
3008 &dev_attr_hotkey_mask.attr,
3009 &dev_attr_hotkey_all_mask.attr,
3010 &dev_attr_hotkey_adaptive_all_mask.attr,
3011 &dev_attr_hotkey_recommended_mask.attr,
3012 &dev_attr_hotkey_tablet_mode.attr,
3013 &dev_attr_hotkey_radio_sw.attr,
3014 #ifdef CONFIG_THINKPAD_ACPI_HOTKEY_POLL
3015 &dev_attr_hotkey_source_mask.attr,
3016 &dev_attr_hotkey_poll_freq.attr,
3017 #endif
3018 NULL
3019 };
3020
hotkey_attr_is_visible(struct kobject * kobj,struct attribute * attr,int n)3021 static umode_t hotkey_attr_is_visible(struct kobject *kobj,
3022 struct attribute *attr, int n)
3023 {
3024 if (attr == &dev_attr_hotkey_tablet_mode.attr) {
3025 if (!tp_features.hotkey_tablet)
3026 return 0;
3027 } else if (attr == &dev_attr_hotkey_radio_sw.attr) {
3028 if (!tp_features.hotkey_wlsw)
3029 return 0;
3030 }
3031
3032 return attr->mode;
3033 }
3034
3035 static const struct attribute_group hotkey_attr_group = {
3036 .is_visible = hotkey_attr_is_visible,
3037 .attrs = hotkey_attributes,
3038 };
3039
3040 /*
3041 * Sync both the hw and sw blocking state of all switches
3042 */
tpacpi_send_radiosw_update(void)3043 static void tpacpi_send_radiosw_update(void)
3044 {
3045 int wlsw;
3046
3047 /*
3048 * We must sync all rfkill controllers *before* issuing any
3049 * rfkill input events, or we will race the rfkill core input
3050 * handler.
3051 *
3052 * tpacpi_inputdev_send_mutex works as a synchronization point
3053 * for the above.
3054 *
3055 * We optimize to avoid numerous calls to hotkey_get_wlsw.
3056 */
3057
3058 wlsw = hotkey_get_wlsw();
3059
3060 /* Sync hw blocking state first if it is hw-blocked */
3061 if (wlsw == TPACPI_RFK_RADIO_OFF)
3062 tpacpi_rfk_update_hwblock_state(true);
3063
3064 /* Sync hw blocking state last if it is hw-unblocked */
3065 if (wlsw == TPACPI_RFK_RADIO_ON)
3066 tpacpi_rfk_update_hwblock_state(false);
3067
3068 /* Issue rfkill input event for WLSW switch */
3069 if (!(wlsw < 0)) {
3070 mutex_lock(&tpacpi_inputdev_send_mutex);
3071
3072 input_report_switch(tpacpi_inputdev,
3073 SW_RFKILL_ALL, (wlsw > 0));
3074 input_sync(tpacpi_inputdev);
3075
3076 mutex_unlock(&tpacpi_inputdev_send_mutex);
3077 }
3078
3079 /*
3080 * this can be unconditional, as we will poll state again
3081 * if userspace uses the notify to read data
3082 */
3083 hotkey_radio_sw_notify_change();
3084 }
3085
hotkey_exit(void)3086 static void hotkey_exit(void)
3087 {
3088 mutex_lock(&hotkey_mutex);
3089 hotkey_poll_stop_sync();
3090 dbg_printk(TPACPI_DBG_EXIT | TPACPI_DBG_HKEY,
3091 "restoring original HKEY status and mask\n");
3092 /* yes, there is a bitwise or below, we want the
3093 * functions to be called even if one of them fail */
3094 if (((tp_features.hotkey_mask &&
3095 hotkey_mask_set(hotkey_orig_mask)) |
3096 hotkey_status_set(false)) != 0)
3097 pr_err("failed to restore hot key mask to BIOS defaults\n");
3098
3099 mutex_unlock(&hotkey_mutex);
3100 }
3101
3102 /*
3103 * HKEY quirks:
3104 * TPACPI_HK_Q_INIMASK: Supports FN+F3,FN+F4,FN+F12
3105 */
3106
3107 #define TPACPI_HK_Q_INIMASK 0x0001
3108
3109 static const struct tpacpi_quirk tpacpi_hotkey_qtable[] __initconst = {
3110 TPACPI_Q_IBM('I', 'H', TPACPI_HK_Q_INIMASK), /* 600E */
3111 TPACPI_Q_IBM('I', 'N', TPACPI_HK_Q_INIMASK), /* 600E */
3112 TPACPI_Q_IBM('I', 'D', TPACPI_HK_Q_INIMASK), /* 770, 770E, 770ED */
3113 TPACPI_Q_IBM('I', 'W', TPACPI_HK_Q_INIMASK), /* A20m */
3114 TPACPI_Q_IBM('I', 'V', TPACPI_HK_Q_INIMASK), /* A20p */
3115 TPACPI_Q_IBM('1', '0', TPACPI_HK_Q_INIMASK), /* A21e, A22e */
3116 TPACPI_Q_IBM('K', 'U', TPACPI_HK_Q_INIMASK), /* A21e */
3117 TPACPI_Q_IBM('K', 'X', TPACPI_HK_Q_INIMASK), /* A21m, A22m */
3118 TPACPI_Q_IBM('K', 'Y', TPACPI_HK_Q_INIMASK), /* A21p, A22p */
3119 TPACPI_Q_IBM('1', 'B', TPACPI_HK_Q_INIMASK), /* A22e */
3120 TPACPI_Q_IBM('1', '3', TPACPI_HK_Q_INIMASK), /* A22m */
3121 TPACPI_Q_IBM('1', 'E', TPACPI_HK_Q_INIMASK), /* A30/p (0) */
3122 TPACPI_Q_IBM('1', 'C', TPACPI_HK_Q_INIMASK), /* R30 */
3123 TPACPI_Q_IBM('1', 'F', TPACPI_HK_Q_INIMASK), /* R31 */
3124 TPACPI_Q_IBM('I', 'Y', TPACPI_HK_Q_INIMASK), /* T20 */
3125 TPACPI_Q_IBM('K', 'Z', TPACPI_HK_Q_INIMASK), /* T21 */
3126 TPACPI_Q_IBM('1', '6', TPACPI_HK_Q_INIMASK), /* T22 */
3127 TPACPI_Q_IBM('I', 'Z', TPACPI_HK_Q_INIMASK), /* X20, X21 */
3128 TPACPI_Q_IBM('1', 'D', TPACPI_HK_Q_INIMASK), /* X22, X23, X24 */
3129 };
3130
hotkey_init_tablet_mode(void)3131 static int hotkey_init_tablet_mode(void)
3132 {
3133 int in_tablet_mode = 0, res;
3134 char *type = NULL;
3135
3136 if (acpi_evalf(hkey_handle, &res, "GMMS", "qdd", 0)) {
3137 int has_tablet_mode;
3138
3139 in_tablet_mode = hotkey_gmms_get_tablet_mode(res,
3140 &has_tablet_mode);
3141 /*
3142 * The Yoga 11e series has 2 accelerometers described by a
3143 * BOSC0200 ACPI node. This setup relies on a Windows service
3144 * which calls special ACPI methods on this node to report
3145 * the laptop/tent/tablet mode to the EC. The bmc150 iio driver
3146 * does not support this, so skip the hotkey on these models.
3147 */
3148 if (has_tablet_mode && !dual_accel_detect())
3149 tp_features.hotkey_tablet = TP_HOTKEY_TABLET_USES_GMMS;
3150 type = "GMMS";
3151 } else if (acpi_evalf(hkey_handle, &res, "MHKG", "qd")) {
3152 /* For X41t, X60t, X61t Tablets... */
3153 tp_features.hotkey_tablet = TP_HOTKEY_TABLET_USES_MHKG;
3154 in_tablet_mode = !!(res & TP_HOTKEY_TABLET_MASK);
3155 type = "MHKG";
3156 }
3157
3158 if (!tp_features.hotkey_tablet)
3159 return 0;
3160
3161 pr_info("Tablet mode switch found (type: %s), currently in %s mode\n",
3162 type, in_tablet_mode ? "tablet" : "laptop");
3163
3164 return in_tablet_mode;
3165 }
3166
3167 static const struct key_entry keymap_ibm[] __initconst = {
3168 /* Original hotkey mappings translated scancodes 0x00 - 0x1f */
3169 { KE_KEY, TP_ACPI_HOTKEYSCAN_FNF1, { KEY_FN_F1 } },
3170 { KE_KEY, TP_ACPI_HOTKEYSCAN_FNF2, { KEY_BATTERY } },
3171 { KE_KEY, TP_ACPI_HOTKEYSCAN_FNF3, { KEY_COFFEE } },
3172 { KE_KEY, TP_ACPI_HOTKEYSCAN_FNF4, { KEY_SLEEP } },
3173 { KE_KEY, TP_ACPI_HOTKEYSCAN_FNF5, { KEY_WLAN } },
3174 { KE_KEY, TP_ACPI_HOTKEYSCAN_FNF6, { KEY_FN_F6 } },
3175 { KE_KEY, TP_ACPI_HOTKEYSCAN_FNF7, { KEY_SWITCHVIDEOMODE } },
3176 { KE_KEY, TP_ACPI_HOTKEYSCAN_FNF8, { KEY_FN_F8 } },
3177 { KE_KEY, TP_ACPI_HOTKEYSCAN_FNF9, { KEY_FN_F9 } },
3178 { KE_KEY, TP_ACPI_HOTKEYSCAN_FNF10, { KEY_FN_F10 } },
3179 { KE_KEY, TP_ACPI_HOTKEYSCAN_FNF11, { KEY_FN_F11 } },
3180 { KE_KEY, TP_ACPI_HOTKEYSCAN_FNF12, { KEY_SUSPEND } },
3181 /* Brightness: firmware always reacts, suppressed through hotkey_reserved_mask. */
3182 { KE_KEY, TP_ACPI_HOTKEYSCAN_FNHOME, { KEY_BRIGHTNESSUP } },
3183 { KE_KEY, TP_ACPI_HOTKEYSCAN_FNEND, { KEY_BRIGHTNESSDOWN } },
3184 /* Thinklight: firmware always reacts, suppressed through hotkey_reserved_mask. */
3185 { KE_KEY, TP_ACPI_HOTKEYSCAN_FNPAGEUP, { KEY_KBDILLUMTOGGLE } },
3186 { KE_KEY, TP_ACPI_HOTKEYSCAN_FNSPACE, { KEY_ZOOM } },
3187 /*
3188 * Volume: firmware always reacts and reprograms the built-in *extra* mixer.
3189 * Suppressed by default through hotkey_reserved_mask.
3190 */
3191 { KE_KEY, TP_ACPI_HOTKEYSCAN_VOLUMEUP, { KEY_VOLUMEUP } },
3192 { KE_KEY, TP_ACPI_HOTKEYSCAN_VOLUMEDOWN, { KEY_VOLUMEDOWN } },
3193 { KE_KEY, TP_ACPI_HOTKEYSCAN_MUTE, { KEY_MUTE } },
3194 { KE_KEY, TP_ACPI_HOTKEYSCAN_THINKPAD, { KEY_VENDOR } },
3195 { KE_END }
3196 };
3197
3198 static const struct key_entry keymap_lenovo[] __initconst = {
3199 /* Original hotkey mappings translated scancodes 0x00 - 0x1f */
3200 { KE_KEY, TP_ACPI_HOTKEYSCAN_FNF1, { KEY_FN_F1 } },
3201 { KE_KEY, TP_ACPI_HOTKEYSCAN_FNF2, { KEY_COFFEE } },
3202 { KE_KEY, TP_ACPI_HOTKEYSCAN_FNF3, { KEY_BATTERY } },
3203 { KE_KEY, TP_ACPI_HOTKEYSCAN_FNF4, { KEY_SLEEP } },
3204 { KE_KEY, TP_ACPI_HOTKEYSCAN_FNF5, { KEY_WLAN } },
3205 { KE_KEY, TP_ACPI_HOTKEYSCAN_FNF6, { KEY_CAMERA, } },
3206 { KE_KEY, TP_ACPI_HOTKEYSCAN_FNF7, { KEY_SWITCHVIDEOMODE } },
3207 { KE_KEY, TP_ACPI_HOTKEYSCAN_FNF8, { KEY_FN_F8 } },
3208 { KE_KEY, TP_ACPI_HOTKEYSCAN_FNF9, { KEY_FN_F9 } },
3209 { KE_KEY, TP_ACPI_HOTKEYSCAN_FNF10, { KEY_FN_F10 } },
3210 { KE_KEY, TP_ACPI_HOTKEYSCAN_FNF11, { KEY_FN_F11 } },
3211 { KE_KEY, TP_ACPI_HOTKEYSCAN_FNF12, { KEY_SUSPEND } },
3212 /*
3213 * These should be enabled --only-- when ACPI video is disabled and
3214 * are handled in a special way by the init code.
3215 */
3216 { KE_KEY, TP_ACPI_HOTKEYSCAN_FNHOME, { KEY_BRIGHTNESSUP } },
3217 { KE_KEY, TP_ACPI_HOTKEYSCAN_FNEND, { KEY_BRIGHTNESSDOWN } },
3218 /* Suppressed by default through hotkey_reserved_mask. */
3219 { KE_KEY, TP_ACPI_HOTKEYSCAN_FNPAGEUP, { KEY_KBDILLUMTOGGLE } },
3220 { KE_KEY, TP_ACPI_HOTKEYSCAN_FNSPACE, { KEY_ZOOM } },
3221 /*
3222 * Volume: z60/z61, T60 (BIOS version?): firmware always reacts and
3223 * reprograms the built-in *extra* mixer.
3224 * T60?, T61, R60?, R61: firmware and EC tries to send these over
3225 * the regular keyboard (not through tpacpi). There are still weird bugs
3226 * re. MUTE. May cause the BIOS to interfere with the HDA mixer.
3227 * Suppressed by default through hotkey_reserved_mask.
3228 */
3229 { KE_KEY, TP_ACPI_HOTKEYSCAN_VOLUMEUP, { KEY_VOLUMEUP } },
3230 { KE_KEY, TP_ACPI_HOTKEYSCAN_VOLUMEDOWN, { KEY_VOLUMEDOWN } },
3231 { KE_KEY, TP_ACPI_HOTKEYSCAN_MUTE, { KEY_MUTE } },
3232 { KE_KEY, TP_ACPI_HOTKEYSCAN_THINKPAD, { KEY_VENDOR } },
3233 { KE_KEY, TP_ACPI_HOTKEYSCAN_MICMUTE, { KEY_MICMUTE } },
3234 { KE_KEY, TP_ACPI_HOTKEYSCAN_CONFIG, { KEY_CONFIG } },
3235 { KE_KEY, TP_ACPI_HOTKEYSCAN_SEARCH, { KEY_SEARCH } },
3236 { KE_KEY, TP_ACPI_HOTKEYSCAN_SCALE, { KEY_SCALE } },
3237 { KE_KEY, TP_ACPI_HOTKEYSCAN_FILE, { KEY_FILE } },
3238 /* Adaptive keyboard mappings for Carbon X1 2014 translated scancodes 0x20 - 0x33 */
3239 { KE_KEY, TP_ACPI_HOTKEYSCAN_MUTE2, { KEY_RESERVED } },
3240 { KE_KEY, TP_ACPI_HOTKEYSCAN_BRIGHTNESS_ZERO, { KEY_BRIGHTNESS_MIN } },
3241 { KE_KEY, TP_ACPI_HOTKEYSCAN_CLIPPING_TOOL, { KEY_SELECTIVE_SCREENSHOT } },
3242 { KE_KEY, TP_ACPI_HOTKEYSCAN_CLOUD, { KEY_XFER } },
3243 { KE_KEY, TP_ACPI_HOTKEYSCAN_UNK9, { KEY_RESERVED } },
3244 { KE_KEY, TP_ACPI_HOTKEYSCAN_VOICE, { KEY_VOICECOMMAND } },
3245 { KE_KEY, TP_ACPI_HOTKEYSCAN_UNK10, { KEY_RESERVED } },
3246 { KE_KEY, TP_ACPI_HOTKEYSCAN_GESTURES, { KEY_RESERVED } },
3247 { KE_KEY, TP_ACPI_HOTKEYSCAN_UNK11, { KEY_RESERVED } },
3248 { KE_KEY, TP_ACPI_HOTKEYSCAN_UNK12, { KEY_RESERVED } },
3249 { KE_KEY, TP_ACPI_HOTKEYSCAN_UNK13, { KEY_RESERVED } },
3250 { KE_KEY, TP_ACPI_HOTKEYSCAN_CONFIG2, { KEY_CONFIG } },
3251 { KE_KEY, TP_ACPI_HOTKEYSCAN_NEW_TAB, { KEY_RESERVED } },
3252 { KE_KEY, TP_ACPI_HOTKEYSCAN_RELOAD, { KEY_REFRESH } },
3253 { KE_KEY, TP_ACPI_HOTKEYSCAN_BACK, { KEY_BACK } },
3254 { KE_KEY, TP_ACPI_HOTKEYSCAN_MIC_DOWN, { KEY_RESERVED } },
3255 { KE_KEY, TP_ACPI_HOTKEYSCAN_MIC_UP, { KEY_RESERVED } },
3256 { KE_KEY, TP_ACPI_HOTKEYSCAN_MIC_CANCELLATION, { KEY_RESERVED } },
3257 { KE_KEY, TP_ACPI_HOTKEYSCAN_CAMERA_MODE, { KEY_RESERVED } },
3258 { KE_KEY, TP_ACPI_HOTKEYSCAN_ROTATE_DISPLAY, { KEY_RESERVED } },
3259 /* Extended hotkeys mappings translated scancodes 0x34 - 0x4d */
3260 { KE_KEY, TP_ACPI_HOTKEYSCAN_STAR, { KEY_BOOKMARKS } },
3261 { KE_KEY, TP_ACPI_HOTKEYSCAN_CLIPPING_TOOL2, { KEY_SELECTIVE_SCREENSHOT } },
3262 { KE_KEY, TP_ACPI_HOTKEYSCAN_CALCULATOR, { KEY_CALC } },
3263 { KE_KEY, TP_ACPI_HOTKEYSCAN_BLUETOOTH, { KEY_BLUETOOTH } },
3264 { KE_KEY, TP_ACPI_HOTKEYSCAN_KEYBOARD, { KEY_KEYBOARD } },
3265 /* Used by "Lenovo Quick Clean" */
3266 { KE_KEY, TP_ACPI_HOTKEYSCAN_FN_RIGHT_SHIFT, { KEY_FN_RIGHT_SHIFT } },
3267 { KE_KEY, TP_ACPI_HOTKEYSCAN_NOTIFICATION_CENTER, { KEY_NOTIFICATION_CENTER } },
3268 { KE_KEY, TP_ACPI_HOTKEYSCAN_PICKUP_PHONE, { KEY_PICKUP_PHONE } },
3269 { KE_KEY, TP_ACPI_HOTKEYSCAN_HANGUP_PHONE, { KEY_HANGUP_PHONE } },
3270 /*
3271 * All mapping below are for raw untranslated hkey event codes mapped directly
3272 * after switching to sparse keymap support. The mappings above use translated
3273 * scancodes to preserve uAPI compatibility, see tpacpi_input_send_key().
3274 */
3275 { KE_KEY, 0x131d, { KEY_VENDOR } }, /* System debug info, similar to old ThinkPad key */
3276 { KE_KEY, 0x1320, { KEY_LINK_PHONE } },
3277 { KE_KEY, TP_HKEY_EV_TRACK_DOUBLETAP /* 0x8036 */, { KEY_PROG4 } },
3278 { KE_END }
3279 };
3280
hotkey_init(struct ibm_init_struct * iibm)3281 static int __init hotkey_init(struct ibm_init_struct *iibm)
3282 {
3283 enum keymap_index {
3284 TPACPI_KEYMAP_IBM_GENERIC = 0,
3285 TPACPI_KEYMAP_LENOVO_GENERIC,
3286 };
3287
3288 static const struct tpacpi_quirk tpacpi_keymap_qtable[] __initconst = {
3289 /* Generic maps (fallback) */
3290 {
3291 .vendor = PCI_VENDOR_ID_IBM,
3292 .bios = TPACPI_MATCH_ANY, .ec = TPACPI_MATCH_ANY,
3293 .quirks = TPACPI_KEYMAP_IBM_GENERIC,
3294 },
3295 {
3296 .vendor = PCI_VENDOR_ID_LENOVO,
3297 .bios = TPACPI_MATCH_ANY, .ec = TPACPI_MATCH_ANY,
3298 .quirks = TPACPI_KEYMAP_LENOVO_GENERIC,
3299 },
3300 };
3301
3302 unsigned long keymap_id, quirks;
3303 const struct key_entry *keymap;
3304 bool radiosw_state = false;
3305 bool tabletsw_state = false;
3306 int hkeyv, res, status;
3307
3308 vdbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_HKEY,
3309 "initializing hotkey subdriver\n");
3310
3311 BUG_ON(!tpacpi_inputdev);
3312 BUG_ON(tpacpi_inputdev->open != NULL ||
3313 tpacpi_inputdev->close != NULL);
3314
3315 TPACPI_ACPIHANDLE_INIT(hkey);
3316 mutex_init(&hotkey_mutex);
3317
3318 #ifdef CONFIG_THINKPAD_ACPI_HOTKEY_POLL
3319 mutex_init(&hotkey_thread_data_mutex);
3320 #endif
3321
3322 /* hotkey not supported on 570 */
3323 tp_features.hotkey = hkey_handle != NULL;
3324
3325 vdbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_HKEY,
3326 "hotkeys are %s\n",
3327 str_supported(tp_features.hotkey));
3328
3329 if (!tp_features.hotkey)
3330 return -ENODEV;
3331
3332 quirks = tpacpi_check_quirks(tpacpi_hotkey_qtable,
3333 ARRAY_SIZE(tpacpi_hotkey_qtable));
3334
3335 tpacpi_disable_brightness_delay();
3336
3337 /* mask not supported on 600e/x, 770e, 770x, A21e, A2xm/p,
3338 A30, R30, R31, T20-22, X20-21, X22-24. Detected by checking
3339 for HKEY interface version 0x100 */
3340 if (acpi_evalf(hkey_handle, &hkeyv, "MHKV", "qd")) {
3341 vdbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_HKEY,
3342 "firmware HKEY interface version: 0x%x\n",
3343 hkeyv);
3344
3345 switch (hkeyv >> 8) {
3346 case 1:
3347 /*
3348 * MHKV 0x100 in A31, R40, R40e,
3349 * T4x, X31, and later
3350 */
3351
3352 /* Paranoia check AND init hotkey_all_mask */
3353 if (!acpi_evalf(hkey_handle, &hotkey_all_mask,
3354 "MHKA", "qd")) {
3355 pr_err("missing MHKA handler, please report this to %s\n",
3356 TPACPI_MAIL);
3357 /* Fallback: pre-init for FN+F3,F4,F12 */
3358 hotkey_all_mask = 0x080cU;
3359 } else {
3360 tp_features.hotkey_mask = 1;
3361 }
3362 break;
3363
3364 case 2:
3365 /*
3366 * MHKV 0x200 in X1, T460s, X260, T560, X1 Tablet (2016)
3367 */
3368
3369 /* Paranoia check AND init hotkey_all_mask */
3370 if (!acpi_evalf(hkey_handle, &hotkey_all_mask,
3371 "MHKA", "dd", 1)) {
3372 pr_err("missing MHKA handler, please report this to %s\n",
3373 TPACPI_MAIL);
3374 /* Fallback: pre-init for FN+F3,F4,F12 */
3375 hotkey_all_mask = 0x080cU;
3376 } else {
3377 tp_features.hotkey_mask = 1;
3378 }
3379
3380 /*
3381 * Check if we have an adaptive keyboard, like on the
3382 * Lenovo Carbon X1 2014 (2nd Gen).
3383 */
3384 if (acpi_evalf(hkey_handle, &hotkey_adaptive_all_mask,
3385 "MHKA", "dd", 2)) {
3386 if (hotkey_adaptive_all_mask != 0)
3387 tp_features.has_adaptive_kbd = true;
3388 } else {
3389 tp_features.has_adaptive_kbd = false;
3390 hotkey_adaptive_all_mask = 0x0U;
3391 }
3392 break;
3393
3394 default:
3395 pr_err("unknown version of the HKEY interface: 0x%x\n",
3396 hkeyv);
3397 pr_err("please report this to %s\n", TPACPI_MAIL);
3398 break;
3399 }
3400 }
3401
3402 vdbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_HKEY,
3403 "hotkey masks are %s\n",
3404 str_supported(tp_features.hotkey_mask));
3405
3406 /* Init hotkey_all_mask if not initialized yet */
3407 if (!tp_features.hotkey_mask && !hotkey_all_mask &&
3408 (quirks & TPACPI_HK_Q_INIMASK))
3409 hotkey_all_mask = 0x080cU; /* FN+F12, FN+F4, FN+F3 */
3410
3411 /* Init hotkey_acpi_mask and hotkey_orig_mask */
3412 if (tp_features.hotkey_mask) {
3413 /* hotkey_source_mask *must* be zero for
3414 * the first hotkey_mask_get to return hotkey_orig_mask */
3415 mutex_lock(&hotkey_mutex);
3416 res = hotkey_mask_get();
3417 mutex_unlock(&hotkey_mutex);
3418 if (res)
3419 return res;
3420
3421 hotkey_orig_mask = hotkey_acpi_mask;
3422 } else {
3423 hotkey_orig_mask = hotkey_all_mask;
3424 hotkey_acpi_mask = hotkey_all_mask;
3425 }
3426
3427 #ifdef CONFIG_THINKPAD_ACPI_DEBUGFACILITIES
3428 if (dbg_wlswemul) {
3429 tp_features.hotkey_wlsw = 1;
3430 radiosw_state = !!tpacpi_wlsw_emulstate;
3431 pr_info("radio switch emulation enabled\n");
3432 } else
3433 #endif
3434 /* Not all thinkpads have a hardware radio switch */
3435 if (acpi_evalf(hkey_handle, &status, "WLSW", "qd")) {
3436 tp_features.hotkey_wlsw = 1;
3437 radiosw_state = !!status;
3438 pr_info("radio switch found; radios are %s\n", str_enabled_disabled(status & BIT(0)));
3439 }
3440
3441 tabletsw_state = hotkey_init_tablet_mode();
3442
3443 /* Set up key map */
3444 keymap_id = tpacpi_check_quirks(tpacpi_keymap_qtable,
3445 ARRAY_SIZE(tpacpi_keymap_qtable));
3446 dbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_HKEY,
3447 "using keymap number %lu\n", keymap_id);
3448
3449 /* Keys which should be reserved on both IBM and Lenovo models */
3450 hotkey_reserved_mask = TP_ACPI_HKEY_KBD_LIGHT_MASK |
3451 TP_ACPI_HKEY_VOLUP_MASK |
3452 TP_ACPI_HKEY_VOLDWN_MASK |
3453 TP_ACPI_HKEY_MUTE_MASK;
3454 /*
3455 * Reserve brightness up/down unconditionally on IBM models, on Lenovo
3456 * models these are disabled based on acpi_video_get_backlight_type().
3457 */
3458 if (keymap_id == TPACPI_KEYMAP_IBM_GENERIC) {
3459 hotkey_reserved_mask |= TP_ACPI_HKEY_BRGHTUP_MASK |
3460 TP_ACPI_HKEY_BRGHTDWN_MASK;
3461 keymap = keymap_ibm;
3462 } else {
3463 keymap = keymap_lenovo;
3464 }
3465
3466 res = sparse_keymap_setup(tpacpi_inputdev, keymap, NULL);
3467 if (res)
3468 return res;
3469
3470 if (tp_features.hotkey_wlsw) {
3471 input_set_capability(tpacpi_inputdev, EV_SW, SW_RFKILL_ALL);
3472 input_report_switch(tpacpi_inputdev,
3473 SW_RFKILL_ALL, radiosw_state);
3474 }
3475 if (tp_features.hotkey_tablet) {
3476 input_set_capability(tpacpi_inputdev, EV_SW, SW_TABLET_MODE);
3477 input_report_switch(tpacpi_inputdev,
3478 SW_TABLET_MODE, tabletsw_state);
3479 }
3480
3481 /* Do not issue duplicate brightness change events to
3482 * userspace. tpacpi_detect_brightness_capabilities() must have
3483 * been called before this point */
3484 if (acpi_video_get_backlight_type() != acpi_backlight_vendor) {
3485 pr_info("This ThinkPad has standard ACPI backlight brightness control, supported by the ACPI video driver\n");
3486 pr_notice("Disabling thinkpad-acpi brightness events by default...\n");
3487
3488 /* Disable brightness up/down on Lenovo thinkpads when
3489 * ACPI is handling them, otherwise it is plain impossible
3490 * for userspace to do something even remotely sane */
3491 hotkey_reserved_mask |= TP_ACPI_HKEY_BRGHTUP_MASK |
3492 TP_ACPI_HKEY_BRGHTDWN_MASK;
3493 }
3494
3495 #ifdef CONFIG_THINKPAD_ACPI_HOTKEY_POLL
3496 hotkey_source_mask = TPACPI_HKEY_NVRAM_GOOD_MASK
3497 & ~hotkey_all_mask
3498 & ~hotkey_reserved_mask;
3499
3500 vdbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_HKEY,
3501 "hotkey source mask 0x%08x, polling freq %u\n",
3502 hotkey_source_mask, hotkey_poll_freq);
3503 #endif
3504
3505 dbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_HKEY,
3506 "enabling firmware HKEY event interface...\n");
3507 res = hotkey_status_set(true);
3508 if (res) {
3509 hotkey_exit();
3510 return res;
3511 }
3512 mutex_lock(&hotkey_mutex);
3513 res = hotkey_mask_set(((hotkey_all_mask & ~hotkey_reserved_mask)
3514 | hotkey_driver_mask)
3515 & ~hotkey_source_mask);
3516 mutex_unlock(&hotkey_mutex);
3517 if (res < 0 && res != -ENXIO) {
3518 hotkey_exit();
3519 return res;
3520 }
3521 hotkey_user_mask = (hotkey_acpi_mask | hotkey_source_mask)
3522 & ~hotkey_reserved_mask;
3523 vdbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_HKEY,
3524 "initial masks: user=0x%08x, fw=0x%08x, poll=0x%08x\n",
3525 hotkey_user_mask, hotkey_acpi_mask, hotkey_source_mask);
3526
3527 tpacpi_inputdev->open = &hotkey_inputdev_open;
3528 tpacpi_inputdev->close = &hotkey_inputdev_close;
3529
3530 hotkey_poll_setup_safe(true);
3531
3532 /* Enable doubletap by default */
3533 tp_features.trackpoint_doubletap = 1;
3534
3535 return 0;
3536 }
3537
3538 /* Thinkpad X1 Carbon support 5 modes including Home mode, Web browser
3539 * mode, Web conference mode, Function mode and Lay-flat mode.
3540 * We support Home mode and Function mode currently.
3541 *
3542 * Will consider support rest of modes in future.
3543 *
3544 */
3545 static const int adaptive_keyboard_modes[] = {
3546 HOME_MODE,
3547 /* WEB_BROWSER_MODE = 2,
3548 WEB_CONFERENCE_MODE = 3, */
3549 FUNCTION_MODE
3550 };
3551
3552 /* press Fn key a while second, it will switch to Function Mode. Then
3553 * release Fn key, previous mode be restored.
3554 */
3555 static bool adaptive_keyboard_mode_is_saved;
3556 static int adaptive_keyboard_prev_mode;
3557
adaptive_keyboard_get_mode(void)3558 static int adaptive_keyboard_get_mode(void)
3559 {
3560 int mode = 0;
3561
3562 if (!acpi_evalf(hkey_handle, &mode, "GTRW", "dd", 0)) {
3563 pr_err("Cannot read adaptive keyboard mode\n");
3564 return -EIO;
3565 }
3566
3567 return mode;
3568 }
3569
adaptive_keyboard_set_mode(int new_mode)3570 static int adaptive_keyboard_set_mode(int new_mode)
3571 {
3572 if (new_mode < 0 ||
3573 new_mode > LAYFLAT_MODE)
3574 return -EINVAL;
3575
3576 if (!acpi_evalf(hkey_handle, NULL, "STRW", "vd", new_mode)) {
3577 pr_err("Cannot set adaptive keyboard mode\n");
3578 return -EIO;
3579 }
3580
3581 return 0;
3582 }
3583
adaptive_keyboard_get_next_mode(int mode)3584 static int adaptive_keyboard_get_next_mode(int mode)
3585 {
3586 size_t i;
3587 size_t max_mode = ARRAY_SIZE(adaptive_keyboard_modes) - 1;
3588
3589 for (i = 0; i <= max_mode; i++) {
3590 if (adaptive_keyboard_modes[i] == mode)
3591 break;
3592 }
3593
3594 if (i >= max_mode)
3595 i = 0;
3596 else
3597 i++;
3598
3599 return adaptive_keyboard_modes[i];
3600 }
3601
adaptive_keyboard_change_row(void)3602 static void adaptive_keyboard_change_row(void)
3603 {
3604 int mode;
3605
3606 if (adaptive_keyboard_mode_is_saved) {
3607 mode = adaptive_keyboard_prev_mode;
3608 adaptive_keyboard_mode_is_saved = false;
3609 } else {
3610 mode = adaptive_keyboard_get_mode();
3611 if (mode < 0)
3612 return;
3613 mode = adaptive_keyboard_get_next_mode(mode);
3614 }
3615
3616 adaptive_keyboard_set_mode(mode);
3617 }
3618
adaptive_keyboard_s_quickview_row(void)3619 static void adaptive_keyboard_s_quickview_row(void)
3620 {
3621 int mode;
3622
3623 mode = adaptive_keyboard_get_mode();
3624 if (mode < 0)
3625 return;
3626
3627 adaptive_keyboard_prev_mode = mode;
3628 adaptive_keyboard_mode_is_saved = true;
3629
3630 adaptive_keyboard_set_mode(FUNCTION_MODE);
3631 }
3632
3633 /* 0x1000-0x1FFF: key presses */
hotkey_notify_hotkey(const u32 hkey,bool * send_acpi_ev)3634 static bool hotkey_notify_hotkey(const u32 hkey, bool *send_acpi_ev)
3635 {
3636 /* Never send ACPI netlink events for original hotkeys (hkey: 0x1001 - 0x1020) */
3637 if (hkey >= TP_HKEY_EV_ORIG_KEY_START && hkey <= TP_HKEY_EV_ORIG_KEY_END) {
3638 *send_acpi_ev = false;
3639
3640 /* Original hotkeys may be polled from NVRAM instead */
3641 unsigned int scancode = hkey - TP_HKEY_EV_ORIG_KEY_START;
3642 if (hotkey_source_mask & (1 << scancode))
3643 return true;
3644 }
3645
3646 return tpacpi_input_send_key(hkey, send_acpi_ev);
3647 }
3648
3649 /* 0x2000-0x2FFF: Wakeup reason */
hotkey_notify_wakeup(const u32 hkey,bool * send_acpi_ev)3650 static bool hotkey_notify_wakeup(const u32 hkey, bool *send_acpi_ev)
3651 {
3652 switch (hkey) {
3653 case TP_HKEY_EV_WKUP_S3_UNDOCK: /* suspend, undock */
3654 case TP_HKEY_EV_WKUP_S4_UNDOCK: /* hibernation, undock */
3655 hotkey_wakeup_reason = TP_ACPI_WAKEUP_UNDOCK;
3656 *send_acpi_ev = false;
3657 break;
3658
3659 case TP_HKEY_EV_WKUP_S3_BAYEJ: /* suspend, bay eject */
3660 case TP_HKEY_EV_WKUP_S4_BAYEJ: /* hibernation, bay eject */
3661 hotkey_wakeup_reason = TP_ACPI_WAKEUP_BAYEJ;
3662 *send_acpi_ev = false;
3663 break;
3664
3665 case TP_HKEY_EV_WKUP_S3_BATLOW: /* Battery on critical low level/S3 */
3666 case TP_HKEY_EV_WKUP_S4_BATLOW: /* Battery on critical low level/S4 */
3667 pr_alert("EMERGENCY WAKEUP: battery almost empty\n");
3668 /* how to auto-heal: */
3669 /* 2313: woke up from S3, go to S4/S5 */
3670 /* 2413: woke up from S4, go to S5 */
3671 break;
3672
3673 default:
3674 return false;
3675 }
3676
3677 if (hotkey_wakeup_reason != TP_ACPI_WAKEUP_NONE) {
3678 pr_info("woke up due to a hot-unplug request...\n");
3679 hotkey_wakeup_reason_notify_change();
3680 }
3681 return true;
3682 }
3683
3684 /* 0x4000-0x4FFF: dock-related events */
hotkey_notify_dockevent(const u32 hkey,bool * send_acpi_ev)3685 static bool hotkey_notify_dockevent(const u32 hkey, bool *send_acpi_ev)
3686 {
3687 switch (hkey) {
3688 case TP_HKEY_EV_UNDOCK_ACK:
3689 /* ACPI undock operation completed after wakeup */
3690 hotkey_autosleep_ack = 1;
3691 pr_info("undocked\n");
3692 hotkey_wakeup_hotunplug_complete_notify_change();
3693 return true;
3694
3695 case TP_HKEY_EV_HOTPLUG_DOCK: /* docked to port replicator */
3696 pr_info("docked into hotplug port replicator\n");
3697 return true;
3698 case TP_HKEY_EV_HOTPLUG_UNDOCK: /* undocked from port replicator */
3699 pr_info("undocked from hotplug port replicator\n");
3700 return true;
3701
3702 /*
3703 * Deliberately ignore attaching and detaching the keybord cover to avoid
3704 * duplicates from intel-vbtn, which already emits SW_TABLET_MODE events
3705 * to userspace.
3706 *
3707 * Please refer to the following thread for more information and a preliminary
3708 * implementation using the GTOP ("Get Tablet OPtions") interface that could be
3709 * extended to other attachment options of the ThinkPad X1 Tablet series, such as
3710 * the Pico cartridge dock module:
3711 * https://lore.kernel.org/platform-driver-x86/38cb8265-1e30-d547-9e12-b4ae290be737@a-kobel.de/
3712 */
3713 case TP_HKEY_EV_KBD_COVER_ATTACH:
3714 case TP_HKEY_EV_KBD_COVER_DETACH:
3715 *send_acpi_ev = false;
3716 return true;
3717
3718 default:
3719 return false;
3720 }
3721 }
3722
3723 /* 0x5000-0x5FFF: human interface helpers */
hotkey_notify_usrevent(const u32 hkey,bool * send_acpi_ev)3724 static bool hotkey_notify_usrevent(const u32 hkey, bool *send_acpi_ev)
3725 {
3726 switch (hkey) {
3727 case TP_HKEY_EV_PEN_INSERTED: /* X61t: tablet pen inserted into bay */
3728 case TP_HKEY_EV_PEN_REMOVED: /* X61t: tablet pen removed from bay */
3729 return true;
3730
3731 case TP_HKEY_EV_TABLET_TABLET: /* X41t-X61t: tablet mode */
3732 case TP_HKEY_EV_TABLET_NOTEBOOK: /* X41t-X61t: normal mode */
3733 tpacpi_input_send_tabletsw();
3734 hotkey_tablet_mode_notify_change();
3735 *send_acpi_ev = false;
3736 return true;
3737
3738 case TP_HKEY_EV_LID_CLOSE: /* Lid closed */
3739 case TP_HKEY_EV_LID_OPEN: /* Lid opened */
3740 case TP_HKEY_EV_BRGHT_CHANGED: /* brightness changed */
3741 /* do not propagate these events */
3742 *send_acpi_ev = false;
3743 return true;
3744
3745 default:
3746 return false;
3747 }
3748 }
3749
3750 static void thermal_dump_all_sensors(void);
3751 static void palmsensor_refresh(void);
3752
3753 /* 0x6000-0x6FFF: thermal alarms/notices and keyboard events */
hotkey_notify_6xxx(const u32 hkey,bool * send_acpi_ev)3754 static bool hotkey_notify_6xxx(const u32 hkey, bool *send_acpi_ev)
3755 {
3756 switch (hkey) {
3757 case TP_HKEY_EV_THM_TABLE_CHANGED:
3758 pr_debug("EC reports: Thermal Table has changed\n");
3759 /* recommended action: do nothing, we don't have
3760 * Lenovo ATM information */
3761 return true;
3762 case TP_HKEY_EV_THM_CSM_COMPLETED:
3763 pr_debug("EC reports: Thermal Control Command set completed (DYTC)\n");
3764 /* Thermal event - pass on to event handler */
3765 tpacpi_driver_event(hkey);
3766 return true;
3767 case TP_HKEY_EV_THM_TRANSFM_CHANGED:
3768 pr_debug("EC reports: Thermal Transformation changed (GMTS)\n");
3769 /* recommended action: do nothing, we don't have
3770 * Lenovo ATM information */
3771 return true;
3772 case TP_HKEY_EV_ALARM_BAT_HOT:
3773 pr_crit("THERMAL ALARM: battery is too hot!\n");
3774 /* recommended action: warn user through gui */
3775 break;
3776 case TP_HKEY_EV_ALARM_BAT_XHOT:
3777 pr_alert("THERMAL EMERGENCY: battery is extremely hot!\n");
3778 /* recommended action: immediate sleep/hibernate */
3779 break;
3780 case TP_HKEY_EV_ALARM_SENSOR_HOT:
3781 pr_crit("THERMAL ALARM: a sensor reports something is too hot!\n");
3782 /* recommended action: warn user through gui, that */
3783 /* some internal component is too hot */
3784 break;
3785 case TP_HKEY_EV_ALARM_SENSOR_XHOT:
3786 pr_alert("THERMAL EMERGENCY: a sensor reports something is extremely hot!\n");
3787 /* recommended action: immediate sleep/hibernate */
3788 break;
3789 case TP_HKEY_EV_AC_CHANGED:
3790 /* X120e, X121e, X220, X220i, X220t, X230, T420, T420s, W520:
3791 * AC status changed; can be triggered by plugging or
3792 * unplugging AC adapter, docking or undocking. */
3793
3794 fallthrough;
3795
3796 case TP_HKEY_EV_KEY_NUMLOCK:
3797 case TP_HKEY_EV_KEY_FN:
3798 /* key press events, we just ignore them as long as the EC
3799 * is still reporting them in the normal keyboard stream */
3800 *send_acpi_ev = false;
3801 return true;
3802
3803 case TP_HKEY_EV_KEY_FN_ESC:
3804 /* Get the media key status to force the status LED to update */
3805 acpi_evalf(hkey_handle, NULL, "GMKS", "v");
3806 *send_acpi_ev = false;
3807 return true;
3808
3809 case TP_HKEY_EV_TABLET_CHANGED:
3810 tpacpi_input_send_tabletsw();
3811 hotkey_tablet_mode_notify_change();
3812 *send_acpi_ev = false;
3813 return true;
3814
3815 case TP_HKEY_EV_PALM_DETECTED:
3816 case TP_HKEY_EV_PALM_UNDETECTED:
3817 /* palm detected - pass on to event handler */
3818 palmsensor_refresh();
3819 return true;
3820
3821 default:
3822 /* report simply as unknown, no sensor dump */
3823 return false;
3824 }
3825
3826 thermal_dump_all_sensors();
3827 return true;
3828 }
3829
hotkey_notify_8xxx(const u32 hkey,bool * send_acpi_ev)3830 static bool hotkey_notify_8xxx(const u32 hkey, bool *send_acpi_ev)
3831 {
3832 switch (hkey) {
3833 case TP_HKEY_EV_TRACK_DOUBLETAP:
3834 if (tp_features.trackpoint_doubletap)
3835 tpacpi_input_send_key(hkey, send_acpi_ev);
3836
3837 return true;
3838 default:
3839 return false;
3840 }
3841 }
3842
hotkey_notify(struct ibm_struct * ibm,u32 event)3843 static void hotkey_notify(struct ibm_struct *ibm, u32 event)
3844 {
3845 u32 hkey;
3846 bool send_acpi_ev;
3847 bool known_ev;
3848
3849 if (event != 0x80) {
3850 pr_err("unknown HKEY notification event %d\n", event);
3851 /* forward it to userspace, maybe it knows how to handle it */
3852 acpi_bus_generate_netlink_event(
3853 ibm->acpi->device->pnp.device_class,
3854 dev_name(&ibm->acpi->device->dev),
3855 event, 0);
3856 return;
3857 }
3858
3859 while (1) {
3860 if (!acpi_evalf(hkey_handle, &hkey, "MHKP", "d")) {
3861 pr_err("failed to retrieve HKEY event\n");
3862 return;
3863 }
3864
3865 if (hkey == 0) {
3866 /* queue empty */
3867 return;
3868 }
3869
3870 send_acpi_ev = true;
3871 known_ev = false;
3872
3873 switch (hkey >> 12) {
3874 case 1:
3875 /* 0x1000-0x1FFF: key presses */
3876 known_ev = hotkey_notify_hotkey(hkey, &send_acpi_ev);
3877 break;
3878 case 2:
3879 /* 0x2000-0x2FFF: Wakeup reason */
3880 known_ev = hotkey_notify_wakeup(hkey, &send_acpi_ev);
3881 break;
3882 case 3:
3883 /* 0x3000-0x3FFF: bay-related wakeups */
3884 switch (hkey) {
3885 case TP_HKEY_EV_BAYEJ_ACK:
3886 hotkey_autosleep_ack = 1;
3887 pr_info("bay ejected\n");
3888 hotkey_wakeup_hotunplug_complete_notify_change();
3889 known_ev = true;
3890 break;
3891 case TP_HKEY_EV_OPTDRV_EJ:
3892 /* FIXME: kick libata if SATA link offline */
3893 known_ev = true;
3894 break;
3895 }
3896 break;
3897 case 4:
3898 /* 0x4000-0x4FFF: dock-related events */
3899 known_ev = hotkey_notify_dockevent(hkey, &send_acpi_ev);
3900 break;
3901 case 5:
3902 /* 0x5000-0x5FFF: human interface helpers */
3903 known_ev = hotkey_notify_usrevent(hkey, &send_acpi_ev);
3904 break;
3905 case 6:
3906 /* 0x6000-0x6FFF: thermal alarms/notices and
3907 * keyboard events */
3908 known_ev = hotkey_notify_6xxx(hkey, &send_acpi_ev);
3909 break;
3910 case 7:
3911 /* 0x7000-0x7FFF: misc */
3912 if (tp_features.hotkey_wlsw &&
3913 hkey == TP_HKEY_EV_RFKILL_CHANGED) {
3914 tpacpi_send_radiosw_update();
3915 send_acpi_ev = false;
3916 known_ev = true;
3917 }
3918 break;
3919 case 8:
3920 /* 0x8000-0x8FFF: misc2 */
3921 known_ev = hotkey_notify_8xxx(hkey, &send_acpi_ev);
3922 break;
3923 }
3924 if (!known_ev) {
3925 pr_notice("unhandled HKEY event 0x%04x\n", hkey);
3926 pr_notice("please report the conditions when this event happened to %s\n",
3927 TPACPI_MAIL);
3928 }
3929
3930 /* netlink events */
3931 if (send_acpi_ev) {
3932 acpi_bus_generate_netlink_event(
3933 ibm->acpi->device->pnp.device_class,
3934 dev_name(&ibm->acpi->device->dev),
3935 event, hkey);
3936 }
3937 }
3938 }
3939
hotkey_suspend(void)3940 static void hotkey_suspend(void)
3941 {
3942 /* Do these on suspend, we get the events on early resume! */
3943 hotkey_wakeup_reason = TP_ACPI_WAKEUP_NONE;
3944 hotkey_autosleep_ack = 0;
3945
3946 /* save previous mode of adaptive keyboard of X1 Carbon */
3947 if (tp_features.has_adaptive_kbd) {
3948 if (!acpi_evalf(hkey_handle, &adaptive_keyboard_prev_mode,
3949 "GTRW", "dd", 0)) {
3950 pr_err("Cannot read adaptive keyboard mode.\n");
3951 }
3952 }
3953 }
3954
hotkey_resume(void)3955 static void hotkey_resume(void)
3956 {
3957 tpacpi_disable_brightness_delay();
3958
3959 mutex_lock(&hotkey_mutex);
3960 if (hotkey_status_set(true) < 0 ||
3961 hotkey_mask_set(hotkey_acpi_mask) < 0)
3962 pr_err("error while attempting to reset the event firmware interface\n");
3963 mutex_unlock(&hotkey_mutex);
3964
3965 tpacpi_send_radiosw_update();
3966 tpacpi_input_send_tabletsw();
3967 hotkey_tablet_mode_notify_change();
3968 hotkey_wakeup_reason_notify_change();
3969 hotkey_wakeup_hotunplug_complete_notify_change();
3970 hotkey_poll_setup_safe(false);
3971
3972 /* restore previous mode of adapive keyboard of X1 Carbon */
3973 if (tp_features.has_adaptive_kbd) {
3974 if (!acpi_evalf(hkey_handle, NULL, "STRW", "vd",
3975 adaptive_keyboard_prev_mode)) {
3976 pr_err("Cannot set adaptive keyboard mode.\n");
3977 }
3978 }
3979 }
3980
3981 /* procfs -------------------------------------------------------------- */
hotkey_read(struct seq_file * m)3982 static int hotkey_read(struct seq_file *m)
3983 {
3984 int res, status;
3985
3986 if (!tp_features.hotkey) {
3987 seq_printf(m, "status:\t\tnot supported\n");
3988 return 0;
3989 }
3990
3991 if (mutex_lock_killable(&hotkey_mutex))
3992 return -ERESTARTSYS;
3993 res = hotkey_status_get(&status);
3994 if (!res)
3995 res = hotkey_mask_get();
3996 mutex_unlock(&hotkey_mutex);
3997 if (res)
3998 return res;
3999
4000 seq_printf(m, "status:\t\t%s\n", str_enabled_disabled(status & BIT(0)));
4001 if (hotkey_all_mask) {
4002 seq_printf(m, "mask:\t\t0x%08x\n", hotkey_user_mask);
4003 seq_printf(m, "commands:\tenable, disable, reset, <mask>\n");
4004 } else {
4005 seq_printf(m, "mask:\t\tnot supported\n");
4006 seq_printf(m, "commands:\tenable, disable, reset\n");
4007 }
4008
4009 return 0;
4010 }
4011
hotkey_enabledisable_warn(bool enable)4012 static void hotkey_enabledisable_warn(bool enable)
4013 {
4014 tpacpi_log_usertask("procfs hotkey enable/disable");
4015 if (!WARN((tpacpi_lifecycle == TPACPI_LIFE_RUNNING || !enable),
4016 pr_fmt("hotkey enable/disable functionality has been removed from the driver. Hotkeys are always enabled.\n")))
4017 pr_err("Please remove the hotkey=enable module parameter, it is deprecated. Hotkeys are always enabled.\n");
4018 }
4019
hotkey_write(char * buf)4020 static int hotkey_write(char *buf)
4021 {
4022 int res;
4023 u32 mask;
4024 char *cmd;
4025
4026 if (!tp_features.hotkey)
4027 return -ENODEV;
4028
4029 if (mutex_lock_killable(&hotkey_mutex))
4030 return -ERESTARTSYS;
4031
4032 mask = hotkey_user_mask;
4033
4034 res = 0;
4035 while ((cmd = strsep(&buf, ","))) {
4036 if (strstarts(cmd, "enable")) {
4037 hotkey_enabledisable_warn(1);
4038 } else if (strstarts(cmd, "disable")) {
4039 hotkey_enabledisable_warn(0);
4040 res = -EPERM;
4041 } else if (strstarts(cmd, "reset")) {
4042 mask = (hotkey_all_mask | hotkey_source_mask)
4043 & ~hotkey_reserved_mask;
4044 } else if (sscanf(cmd, "0x%x", &mask) == 1) {
4045 /* mask set */
4046 } else if (sscanf(cmd, "%x", &mask) == 1) {
4047 /* mask set */
4048 } else {
4049 res = -EINVAL;
4050 goto errexit;
4051 }
4052 }
4053
4054 if (!res) {
4055 tpacpi_disclose_usertask("procfs hotkey",
4056 "set mask to 0x%08x\n", mask);
4057 res = hotkey_user_mask_set(mask);
4058 }
4059
4060 errexit:
4061 mutex_unlock(&hotkey_mutex);
4062 return res;
4063 }
4064
4065 static const struct acpi_device_id ibm_htk_device_ids[] = {
4066 {TPACPI_ACPI_IBM_HKEY_HID, 0},
4067 {TPACPI_ACPI_LENOVO_HKEY_HID, 0},
4068 {TPACPI_ACPI_LENOVO_HKEY_V2_HID, 0},
4069 {"", 0},
4070 };
4071
4072 static struct tp_acpi_drv_struct ibm_hotkey_acpidriver = {
4073 .hid = ibm_htk_device_ids,
4074 .notify = hotkey_notify,
4075 .handle = &hkey_handle,
4076 .type = ACPI_DEVICE_NOTIFY,
4077 };
4078
4079 static struct ibm_struct hotkey_driver_data = {
4080 .name = "hotkey",
4081 .read = hotkey_read,
4082 .write = hotkey_write,
4083 .exit = hotkey_exit,
4084 .resume = hotkey_resume,
4085 .suspend = hotkey_suspend,
4086 .acpi = &ibm_hotkey_acpidriver,
4087 };
4088
4089 /*************************************************************************
4090 * Bluetooth subdriver
4091 */
4092
4093 enum {
4094 /* ACPI GBDC/SBDC bits */
4095 TP_ACPI_BLUETOOTH_HWPRESENT = 0x01, /* Bluetooth hw available */
4096 TP_ACPI_BLUETOOTH_RADIOSSW = 0x02, /* Bluetooth radio enabled */
4097 TP_ACPI_BLUETOOTH_RESUMECTRL = 0x04, /* Bluetooth state at resume:
4098 0 = disable, 1 = enable */
4099 };
4100
4101 enum {
4102 /* ACPI \BLTH commands */
4103 TP_ACPI_BLTH_GET_ULTRAPORT_ID = 0x00, /* Get Ultraport BT ID */
4104 TP_ACPI_BLTH_GET_PWR_ON_RESUME = 0x01, /* Get power-on-resume state */
4105 TP_ACPI_BLTH_PWR_ON_ON_RESUME = 0x02, /* Resume powered on */
4106 TP_ACPI_BLTH_PWR_OFF_ON_RESUME = 0x03, /* Resume powered off */
4107 TP_ACPI_BLTH_SAVE_STATE = 0x05, /* Save state for S4/S5 */
4108 };
4109
4110 #define TPACPI_RFK_BLUETOOTH_SW_NAME "tpacpi_bluetooth_sw"
4111
bluetooth_get_status(void)4112 static int bluetooth_get_status(void)
4113 {
4114 int status;
4115
4116 #ifdef CONFIG_THINKPAD_ACPI_DEBUGFACILITIES
4117 if (dbg_bluetoothemul)
4118 return (tpacpi_bluetooth_emulstate) ?
4119 TPACPI_RFK_RADIO_ON : TPACPI_RFK_RADIO_OFF;
4120 #endif
4121
4122 if (!acpi_evalf(hkey_handle, &status, "GBDC", "d"))
4123 return -EIO;
4124
4125 return ((status & TP_ACPI_BLUETOOTH_RADIOSSW) != 0) ?
4126 TPACPI_RFK_RADIO_ON : TPACPI_RFK_RADIO_OFF;
4127 }
4128
bluetooth_set_status(enum tpacpi_rfkill_state state)4129 static int bluetooth_set_status(enum tpacpi_rfkill_state state)
4130 {
4131 int status;
4132
4133 vdbg_printk(TPACPI_DBG_RFKILL, "will attempt to %s bluetooth\n",
4134 str_enable_disable(state == TPACPI_RFK_RADIO_ON));
4135
4136 #ifdef CONFIG_THINKPAD_ACPI_DEBUGFACILITIES
4137 if (dbg_bluetoothemul) {
4138 tpacpi_bluetooth_emulstate = (state == TPACPI_RFK_RADIO_ON);
4139 return 0;
4140 }
4141 #endif
4142
4143 if (state == TPACPI_RFK_RADIO_ON)
4144 status = TP_ACPI_BLUETOOTH_RADIOSSW
4145 | TP_ACPI_BLUETOOTH_RESUMECTRL;
4146 else
4147 status = 0;
4148
4149 if (!acpi_evalf(hkey_handle, NULL, "SBDC", "vd", status))
4150 return -EIO;
4151
4152 return 0;
4153 }
4154
4155 /* sysfs bluetooth enable ---------------------------------------------- */
bluetooth_enable_show(struct device * dev,struct device_attribute * attr,char * buf)4156 static ssize_t bluetooth_enable_show(struct device *dev,
4157 struct device_attribute *attr,
4158 char *buf)
4159 {
4160 return tpacpi_rfk_sysfs_enable_show(TPACPI_RFK_BLUETOOTH_SW_ID,
4161 attr, buf);
4162 }
4163
bluetooth_enable_store(struct device * dev,struct device_attribute * attr,const char * buf,size_t count)4164 static ssize_t bluetooth_enable_store(struct device *dev,
4165 struct device_attribute *attr,
4166 const char *buf, size_t count)
4167 {
4168 return tpacpi_rfk_sysfs_enable_store(TPACPI_RFK_BLUETOOTH_SW_ID,
4169 attr, buf, count);
4170 }
4171
4172 static DEVICE_ATTR_RW(bluetooth_enable);
4173
4174 /* --------------------------------------------------------------------- */
4175
4176 static struct attribute *bluetooth_attributes[] = {
4177 &dev_attr_bluetooth_enable.attr,
4178 NULL
4179 };
4180
bluetooth_attr_is_visible(struct kobject * kobj,struct attribute * attr,int n)4181 static umode_t bluetooth_attr_is_visible(struct kobject *kobj,
4182 struct attribute *attr, int n)
4183 {
4184 return tp_features.bluetooth ? attr->mode : 0;
4185 }
4186
4187 static const struct attribute_group bluetooth_attr_group = {
4188 .is_visible = bluetooth_attr_is_visible,
4189 .attrs = bluetooth_attributes,
4190 };
4191
4192 static const struct tpacpi_rfk_ops bluetooth_tprfk_ops = {
4193 .get_status = bluetooth_get_status,
4194 .set_status = bluetooth_set_status,
4195 };
4196
bluetooth_shutdown(void)4197 static void bluetooth_shutdown(void)
4198 {
4199 /* Order firmware to save current state to NVRAM */
4200 if (!acpi_evalf(NULL, NULL, "\\BLTH", "vd",
4201 TP_ACPI_BLTH_SAVE_STATE))
4202 pr_notice("failed to save bluetooth state to NVRAM\n");
4203 else
4204 vdbg_printk(TPACPI_DBG_RFKILL,
4205 "bluetooth state saved to NVRAM\n");
4206 }
4207
bluetooth_exit(void)4208 static void bluetooth_exit(void)
4209 {
4210 tpacpi_destroy_rfkill(TPACPI_RFK_BLUETOOTH_SW_ID);
4211 bluetooth_shutdown();
4212 }
4213
4214 static const struct dmi_system_id fwbug_list[] __initconst = {
4215 {
4216 .ident = "ThinkPad E485",
4217 .driver_data = &quirk_btusb_bug,
4218 .matches = {
4219 DMI_MATCH(DMI_SYS_VENDOR, "LENOVO"),
4220 DMI_MATCH(DMI_BOARD_NAME, "20KU"),
4221 },
4222 },
4223 {
4224 .ident = "ThinkPad E585",
4225 .driver_data = &quirk_btusb_bug,
4226 .matches = {
4227 DMI_MATCH(DMI_SYS_VENDOR, "LENOVO"),
4228 DMI_MATCH(DMI_BOARD_NAME, "20KV"),
4229 },
4230 },
4231 {
4232 .ident = "ThinkPad A285 - 20MW",
4233 .driver_data = &quirk_btusb_bug,
4234 .matches = {
4235 DMI_MATCH(DMI_SYS_VENDOR, "LENOVO"),
4236 DMI_MATCH(DMI_BOARD_NAME, "20MW"),
4237 },
4238 },
4239 {
4240 .ident = "ThinkPad A285 - 20MX",
4241 .driver_data = &quirk_btusb_bug,
4242 .matches = {
4243 DMI_MATCH(DMI_SYS_VENDOR, "LENOVO"),
4244 DMI_MATCH(DMI_BOARD_NAME, "20MX"),
4245 },
4246 },
4247 {
4248 .ident = "ThinkPad A485 - 20MU",
4249 .driver_data = &quirk_btusb_bug,
4250 .matches = {
4251 DMI_MATCH(DMI_SYS_VENDOR, "LENOVO"),
4252 DMI_MATCH(DMI_BOARD_NAME, "20MU"),
4253 },
4254 },
4255 {
4256 .ident = "ThinkPad A485 - 20MV",
4257 .driver_data = &quirk_btusb_bug,
4258 .matches = {
4259 DMI_MATCH(DMI_SYS_VENDOR, "LENOVO"),
4260 DMI_MATCH(DMI_BOARD_NAME, "20MV"),
4261 },
4262 },
4263 {}
4264 };
4265
4266 static const struct pci_device_id fwbug_cards_ids[] __initconst = {
4267 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, 0x24F3) },
4268 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, 0x24FD) },
4269 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, 0x2526) },
4270 {}
4271 };
4272
4273
have_bt_fwbug(void)4274 static int __init have_bt_fwbug(void)
4275 {
4276 /*
4277 * Some AMD based ThinkPads have a firmware bug that calling
4278 * "GBDC" will cause bluetooth on Intel wireless cards blocked
4279 */
4280 if (tp_features.quirks && tp_features.quirks->btusb_bug &&
4281 pci_dev_present(fwbug_cards_ids)) {
4282 vdbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_RFKILL,
4283 FW_BUG "disable bluetooth subdriver for Intel cards\n");
4284 return 1;
4285 } else
4286 return 0;
4287 }
4288
bluetooth_init(struct ibm_init_struct * iibm)4289 static int __init bluetooth_init(struct ibm_init_struct *iibm)
4290 {
4291 int res;
4292 int status = 0;
4293
4294 vdbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_RFKILL,
4295 "initializing bluetooth subdriver\n");
4296
4297 TPACPI_ACPIHANDLE_INIT(hkey);
4298
4299 /* bluetooth not supported on 570, 600e/x, 770e, 770x, A21e, A2xm/p,
4300 G4x, R30, R31, R40e, R50e, T20-22, X20-21 */
4301 tp_features.bluetooth = !have_bt_fwbug() && hkey_handle &&
4302 acpi_evalf(hkey_handle, &status, "GBDC", "qd");
4303
4304 vdbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_RFKILL,
4305 "bluetooth is %s, status 0x%02x\n",
4306 str_supported(tp_features.bluetooth),
4307 status);
4308
4309 #ifdef CONFIG_THINKPAD_ACPI_DEBUGFACILITIES
4310 if (dbg_bluetoothemul) {
4311 tp_features.bluetooth = 1;
4312 pr_info("bluetooth switch emulation enabled\n");
4313 } else
4314 #endif
4315 if (tp_features.bluetooth &&
4316 !(status & TP_ACPI_BLUETOOTH_HWPRESENT)) {
4317 /* no bluetooth hardware present in system */
4318 tp_features.bluetooth = 0;
4319 dbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_RFKILL,
4320 "bluetooth hardware not installed\n");
4321 }
4322
4323 if (!tp_features.bluetooth)
4324 return -ENODEV;
4325
4326 res = tpacpi_new_rfkill(TPACPI_RFK_BLUETOOTH_SW_ID,
4327 &bluetooth_tprfk_ops,
4328 RFKILL_TYPE_BLUETOOTH,
4329 TPACPI_RFK_BLUETOOTH_SW_NAME,
4330 true);
4331 return res;
4332 }
4333
4334 /* procfs -------------------------------------------------------------- */
bluetooth_read(struct seq_file * m)4335 static int bluetooth_read(struct seq_file *m)
4336 {
4337 return tpacpi_rfk_procfs_read(TPACPI_RFK_BLUETOOTH_SW_ID, m);
4338 }
4339
bluetooth_write(char * buf)4340 static int bluetooth_write(char *buf)
4341 {
4342 return tpacpi_rfk_procfs_write(TPACPI_RFK_BLUETOOTH_SW_ID, buf);
4343 }
4344
4345 static struct ibm_struct bluetooth_driver_data = {
4346 .name = "bluetooth",
4347 .read = bluetooth_read,
4348 .write = bluetooth_write,
4349 .exit = bluetooth_exit,
4350 .shutdown = bluetooth_shutdown,
4351 };
4352
4353 /*************************************************************************
4354 * Wan subdriver
4355 */
4356
4357 enum {
4358 /* ACPI GWAN/SWAN bits */
4359 TP_ACPI_WANCARD_HWPRESENT = 0x01, /* Wan hw available */
4360 TP_ACPI_WANCARD_RADIOSSW = 0x02, /* Wan radio enabled */
4361 TP_ACPI_WANCARD_RESUMECTRL = 0x04, /* Wan state at resume:
4362 0 = disable, 1 = enable */
4363 };
4364
4365 #define TPACPI_RFK_WWAN_SW_NAME "tpacpi_wwan_sw"
4366
wan_get_status(void)4367 static int wan_get_status(void)
4368 {
4369 int status;
4370
4371 #ifdef CONFIG_THINKPAD_ACPI_DEBUGFACILITIES
4372 if (dbg_wwanemul)
4373 return (tpacpi_wwan_emulstate) ?
4374 TPACPI_RFK_RADIO_ON : TPACPI_RFK_RADIO_OFF;
4375 #endif
4376
4377 if (!acpi_evalf(hkey_handle, &status, "GWAN", "d"))
4378 return -EIO;
4379
4380 return ((status & TP_ACPI_WANCARD_RADIOSSW) != 0) ?
4381 TPACPI_RFK_RADIO_ON : TPACPI_RFK_RADIO_OFF;
4382 }
4383
wan_set_status(enum tpacpi_rfkill_state state)4384 static int wan_set_status(enum tpacpi_rfkill_state state)
4385 {
4386 int status;
4387
4388 vdbg_printk(TPACPI_DBG_RFKILL, "will attempt to %s wwan\n",
4389 str_enable_disable(state == TPACPI_RFK_RADIO_ON));
4390
4391 #ifdef CONFIG_THINKPAD_ACPI_DEBUGFACILITIES
4392 if (dbg_wwanemul) {
4393 tpacpi_wwan_emulstate = (state == TPACPI_RFK_RADIO_ON);
4394 return 0;
4395 }
4396 #endif
4397
4398 if (state == TPACPI_RFK_RADIO_ON)
4399 status = TP_ACPI_WANCARD_RADIOSSW
4400 | TP_ACPI_WANCARD_RESUMECTRL;
4401 else
4402 status = 0;
4403
4404 if (!acpi_evalf(hkey_handle, NULL, "SWAN", "vd", status))
4405 return -EIO;
4406
4407 return 0;
4408 }
4409
4410 /* sysfs wan enable ---------------------------------------------------- */
wan_enable_show(struct device * dev,struct device_attribute * attr,char * buf)4411 static ssize_t wan_enable_show(struct device *dev,
4412 struct device_attribute *attr,
4413 char *buf)
4414 {
4415 return tpacpi_rfk_sysfs_enable_show(TPACPI_RFK_WWAN_SW_ID,
4416 attr, buf);
4417 }
4418
wan_enable_store(struct device * dev,struct device_attribute * attr,const char * buf,size_t count)4419 static ssize_t wan_enable_store(struct device *dev,
4420 struct device_attribute *attr,
4421 const char *buf, size_t count)
4422 {
4423 return tpacpi_rfk_sysfs_enable_store(TPACPI_RFK_WWAN_SW_ID,
4424 attr, buf, count);
4425 }
4426
4427 static DEVICE_ATTR(wwan_enable, S_IWUSR | S_IRUGO,
4428 wan_enable_show, wan_enable_store);
4429
4430 /* --------------------------------------------------------------------- */
4431
4432 static struct attribute *wan_attributes[] = {
4433 &dev_attr_wwan_enable.attr,
4434 NULL
4435 };
4436
wan_attr_is_visible(struct kobject * kobj,struct attribute * attr,int n)4437 static umode_t wan_attr_is_visible(struct kobject *kobj, struct attribute *attr,
4438 int n)
4439 {
4440 return tp_features.wan ? attr->mode : 0;
4441 }
4442
4443 static const struct attribute_group wan_attr_group = {
4444 .is_visible = wan_attr_is_visible,
4445 .attrs = wan_attributes,
4446 };
4447
4448 static const struct tpacpi_rfk_ops wan_tprfk_ops = {
4449 .get_status = wan_get_status,
4450 .set_status = wan_set_status,
4451 };
4452
wan_shutdown(void)4453 static void wan_shutdown(void)
4454 {
4455 /* Order firmware to save current state to NVRAM */
4456 if (!acpi_evalf(NULL, NULL, "\\WGSV", "vd",
4457 TP_ACPI_WGSV_SAVE_STATE))
4458 pr_notice("failed to save WWAN state to NVRAM\n");
4459 else
4460 vdbg_printk(TPACPI_DBG_RFKILL,
4461 "WWAN state saved to NVRAM\n");
4462 }
4463
wan_exit(void)4464 static void wan_exit(void)
4465 {
4466 tpacpi_destroy_rfkill(TPACPI_RFK_WWAN_SW_ID);
4467 wan_shutdown();
4468 }
4469
wan_init(struct ibm_init_struct * iibm)4470 static int __init wan_init(struct ibm_init_struct *iibm)
4471 {
4472 int res;
4473 int status = 0;
4474
4475 vdbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_RFKILL,
4476 "initializing wan subdriver\n");
4477
4478 TPACPI_ACPIHANDLE_INIT(hkey);
4479
4480 tp_features.wan = hkey_handle &&
4481 acpi_evalf(hkey_handle, &status, "GWAN", "qd");
4482
4483 vdbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_RFKILL,
4484 "wan is %s, status 0x%02x\n",
4485 str_supported(tp_features.wan),
4486 status);
4487
4488 #ifdef CONFIG_THINKPAD_ACPI_DEBUGFACILITIES
4489 if (dbg_wwanemul) {
4490 tp_features.wan = 1;
4491 pr_info("wwan switch emulation enabled\n");
4492 } else
4493 #endif
4494 if (tp_features.wan &&
4495 !(status & TP_ACPI_WANCARD_HWPRESENT)) {
4496 /* no wan hardware present in system */
4497 tp_features.wan = 0;
4498 dbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_RFKILL,
4499 "wan hardware not installed\n");
4500 }
4501
4502 if (!tp_features.wan)
4503 return -ENODEV;
4504
4505 res = tpacpi_new_rfkill(TPACPI_RFK_WWAN_SW_ID,
4506 &wan_tprfk_ops,
4507 RFKILL_TYPE_WWAN,
4508 TPACPI_RFK_WWAN_SW_NAME,
4509 true);
4510 return res;
4511 }
4512
4513 /* procfs -------------------------------------------------------------- */
wan_read(struct seq_file * m)4514 static int wan_read(struct seq_file *m)
4515 {
4516 return tpacpi_rfk_procfs_read(TPACPI_RFK_WWAN_SW_ID, m);
4517 }
4518
wan_write(char * buf)4519 static int wan_write(char *buf)
4520 {
4521 return tpacpi_rfk_procfs_write(TPACPI_RFK_WWAN_SW_ID, buf);
4522 }
4523
4524 static struct ibm_struct wan_driver_data = {
4525 .name = "wan",
4526 .read = wan_read,
4527 .write = wan_write,
4528 .exit = wan_exit,
4529 .shutdown = wan_shutdown,
4530 };
4531
4532 /*************************************************************************
4533 * UWB subdriver
4534 */
4535
4536 enum {
4537 /* ACPI GUWB/SUWB bits */
4538 TP_ACPI_UWB_HWPRESENT = 0x01, /* UWB hw available */
4539 TP_ACPI_UWB_RADIOSSW = 0x02, /* UWB radio enabled */
4540 };
4541
4542 #define TPACPI_RFK_UWB_SW_NAME "tpacpi_uwb_sw"
4543
uwb_get_status(void)4544 static int uwb_get_status(void)
4545 {
4546 int status;
4547
4548 #ifdef CONFIG_THINKPAD_ACPI_DEBUGFACILITIES
4549 if (dbg_uwbemul)
4550 return (tpacpi_uwb_emulstate) ?
4551 TPACPI_RFK_RADIO_ON : TPACPI_RFK_RADIO_OFF;
4552 #endif
4553
4554 if (!acpi_evalf(hkey_handle, &status, "GUWB", "d"))
4555 return -EIO;
4556
4557 return ((status & TP_ACPI_UWB_RADIOSSW) != 0) ?
4558 TPACPI_RFK_RADIO_ON : TPACPI_RFK_RADIO_OFF;
4559 }
4560
uwb_set_status(enum tpacpi_rfkill_state state)4561 static int uwb_set_status(enum tpacpi_rfkill_state state)
4562 {
4563 int status;
4564
4565 vdbg_printk(TPACPI_DBG_RFKILL, "will attempt to %s UWB\n",
4566 str_enable_disable(state == TPACPI_RFK_RADIO_ON));
4567
4568 #ifdef CONFIG_THINKPAD_ACPI_DEBUGFACILITIES
4569 if (dbg_uwbemul) {
4570 tpacpi_uwb_emulstate = (state == TPACPI_RFK_RADIO_ON);
4571 return 0;
4572 }
4573 #endif
4574
4575 if (state == TPACPI_RFK_RADIO_ON)
4576 status = TP_ACPI_UWB_RADIOSSW;
4577 else
4578 status = 0;
4579
4580 if (!acpi_evalf(hkey_handle, NULL, "SUWB", "vd", status))
4581 return -EIO;
4582
4583 return 0;
4584 }
4585
4586 /* --------------------------------------------------------------------- */
4587
4588 static const struct tpacpi_rfk_ops uwb_tprfk_ops = {
4589 .get_status = uwb_get_status,
4590 .set_status = uwb_set_status,
4591 };
4592
uwb_exit(void)4593 static void uwb_exit(void)
4594 {
4595 tpacpi_destroy_rfkill(TPACPI_RFK_UWB_SW_ID);
4596 }
4597
uwb_init(struct ibm_init_struct * iibm)4598 static int __init uwb_init(struct ibm_init_struct *iibm)
4599 {
4600 int res;
4601 int status = 0;
4602
4603 vdbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_RFKILL,
4604 "initializing uwb subdriver\n");
4605
4606 TPACPI_ACPIHANDLE_INIT(hkey);
4607
4608 tp_features.uwb = hkey_handle &&
4609 acpi_evalf(hkey_handle, &status, "GUWB", "qd");
4610
4611 vdbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_RFKILL,
4612 "uwb is %s, status 0x%02x\n",
4613 str_supported(tp_features.uwb),
4614 status);
4615
4616 #ifdef CONFIG_THINKPAD_ACPI_DEBUGFACILITIES
4617 if (dbg_uwbemul) {
4618 tp_features.uwb = 1;
4619 pr_info("uwb switch emulation enabled\n");
4620 } else
4621 #endif
4622 if (tp_features.uwb &&
4623 !(status & TP_ACPI_UWB_HWPRESENT)) {
4624 /* no uwb hardware present in system */
4625 tp_features.uwb = 0;
4626 dbg_printk(TPACPI_DBG_INIT,
4627 "uwb hardware not installed\n");
4628 }
4629
4630 if (!tp_features.uwb)
4631 return -ENODEV;
4632
4633 res = tpacpi_new_rfkill(TPACPI_RFK_UWB_SW_ID,
4634 &uwb_tprfk_ops,
4635 RFKILL_TYPE_UWB,
4636 TPACPI_RFK_UWB_SW_NAME,
4637 false);
4638 return res;
4639 }
4640
4641 static struct ibm_struct uwb_driver_data = {
4642 .name = "uwb",
4643 .exit = uwb_exit,
4644 .flags.experimental = 1,
4645 };
4646
4647 /*************************************************************************
4648 * Video subdriver
4649 */
4650
4651 #ifdef CONFIG_THINKPAD_ACPI_VIDEO
4652
4653 enum video_access_mode {
4654 TPACPI_VIDEO_NONE = 0,
4655 TPACPI_VIDEO_570, /* 570 */
4656 TPACPI_VIDEO_770, /* 600e/x, 770e, 770x */
4657 TPACPI_VIDEO_NEW, /* all others */
4658 };
4659
4660 enum { /* video status flags, based on VIDEO_570 */
4661 TP_ACPI_VIDEO_S_LCD = 0x01, /* LCD output enabled */
4662 TP_ACPI_VIDEO_S_CRT = 0x02, /* CRT output enabled */
4663 TP_ACPI_VIDEO_S_DVI = 0x08, /* DVI output enabled */
4664 };
4665
4666 enum { /* TPACPI_VIDEO_570 constants */
4667 TP_ACPI_VIDEO_570_PHSCMD = 0x87, /* unknown magic constant :( */
4668 TP_ACPI_VIDEO_570_PHSMASK = 0x03, /* PHS bits that map to
4669 * video_status_flags */
4670 TP_ACPI_VIDEO_570_PHS2CMD = 0x8b, /* unknown magic constant :( */
4671 TP_ACPI_VIDEO_570_PHS2SET = 0x80, /* unknown magic constant :( */
4672 };
4673
4674 static enum video_access_mode video_supported;
4675 static int video_orig_autosw;
4676
4677 static int video_autosw_get(void);
4678 static int video_autosw_set(int enable);
4679
4680 TPACPI_HANDLE(vid, root,
4681 "\\_SB.PCI.AGP.VGA", /* 570 */
4682 "\\_SB.PCI0.AGP0.VID0", /* 600e/x, 770x */
4683 "\\_SB.PCI0.VID0", /* 770e */
4684 "\\_SB.PCI0.VID", /* A21e, G4x, R50e, X30, X40 */
4685 "\\_SB.PCI0.AGP.VGA", /* X100e and a few others */
4686 "\\_SB.PCI0.AGP.VID", /* all others */
4687 ); /* R30, R31 */
4688
4689 TPACPI_HANDLE(vid2, root, "\\_SB.PCI0.AGPB.VID"); /* G41 */
4690
video_init(struct ibm_init_struct * iibm)4691 static int __init video_init(struct ibm_init_struct *iibm)
4692 {
4693 int ivga;
4694
4695 vdbg_printk(TPACPI_DBG_INIT, "initializing video subdriver\n");
4696
4697 TPACPI_ACPIHANDLE_INIT(vid);
4698 if (tpacpi_is_ibm())
4699 TPACPI_ACPIHANDLE_INIT(vid2);
4700
4701 if (vid2_handle && acpi_evalf(NULL, &ivga, "\\IVGA", "d") && ivga)
4702 /* G41, assume IVGA doesn't change */
4703 vid_handle = vid2_handle;
4704
4705 if (!vid_handle)
4706 /* video switching not supported on R30, R31 */
4707 video_supported = TPACPI_VIDEO_NONE;
4708 else if (tpacpi_is_ibm() &&
4709 acpi_evalf(vid_handle, &video_orig_autosw, "SWIT", "qd"))
4710 /* 570 */
4711 video_supported = TPACPI_VIDEO_570;
4712 else if (tpacpi_is_ibm() &&
4713 acpi_evalf(vid_handle, &video_orig_autosw, "^VADL", "qd"))
4714 /* 600e/x, 770e, 770x */
4715 video_supported = TPACPI_VIDEO_770;
4716 else
4717 /* all others */
4718 video_supported = TPACPI_VIDEO_NEW;
4719
4720 vdbg_printk(TPACPI_DBG_INIT, "video is %s, mode %d\n",
4721 str_supported(video_supported != TPACPI_VIDEO_NONE),
4722 video_supported);
4723
4724 return (video_supported != TPACPI_VIDEO_NONE) ? 0 : -ENODEV;
4725 }
4726
video_exit(void)4727 static void video_exit(void)
4728 {
4729 dbg_printk(TPACPI_DBG_EXIT,
4730 "restoring original video autoswitch mode\n");
4731 if (video_autosw_set(video_orig_autosw))
4732 pr_err("error while trying to restore original video autoswitch mode\n");
4733 }
4734
video_outputsw_get(void)4735 static int video_outputsw_get(void)
4736 {
4737 int status = 0;
4738 int i;
4739
4740 switch (video_supported) {
4741 case TPACPI_VIDEO_570:
4742 if (!acpi_evalf(NULL, &i, "\\_SB.PHS", "dd",
4743 TP_ACPI_VIDEO_570_PHSCMD))
4744 return -EIO;
4745 status = i & TP_ACPI_VIDEO_570_PHSMASK;
4746 break;
4747 case TPACPI_VIDEO_770:
4748 if (!acpi_evalf(NULL, &i, "\\VCDL", "d"))
4749 return -EIO;
4750 if (i)
4751 status |= TP_ACPI_VIDEO_S_LCD;
4752 if (!acpi_evalf(NULL, &i, "\\VCDC", "d"))
4753 return -EIO;
4754 if (i)
4755 status |= TP_ACPI_VIDEO_S_CRT;
4756 break;
4757 case TPACPI_VIDEO_NEW:
4758 if (!acpi_evalf(NULL, NULL, "\\VUPS", "vd", 1) ||
4759 !acpi_evalf(NULL, &i, "\\VCDC", "d"))
4760 return -EIO;
4761 if (i)
4762 status |= TP_ACPI_VIDEO_S_CRT;
4763
4764 if (!acpi_evalf(NULL, NULL, "\\VUPS", "vd", 0) ||
4765 !acpi_evalf(NULL, &i, "\\VCDL", "d"))
4766 return -EIO;
4767 if (i)
4768 status |= TP_ACPI_VIDEO_S_LCD;
4769 if (!acpi_evalf(NULL, &i, "\\VCDD", "d"))
4770 return -EIO;
4771 if (i)
4772 status |= TP_ACPI_VIDEO_S_DVI;
4773 break;
4774 default:
4775 return -ENOSYS;
4776 }
4777
4778 return status;
4779 }
4780
video_outputsw_set(int status)4781 static int video_outputsw_set(int status)
4782 {
4783 int autosw;
4784 int res = 0;
4785
4786 switch (video_supported) {
4787 case TPACPI_VIDEO_570:
4788 res = acpi_evalf(NULL, NULL,
4789 "\\_SB.PHS2", "vdd",
4790 TP_ACPI_VIDEO_570_PHS2CMD,
4791 status | TP_ACPI_VIDEO_570_PHS2SET);
4792 break;
4793 case TPACPI_VIDEO_770:
4794 autosw = video_autosw_get();
4795 if (autosw < 0)
4796 return autosw;
4797
4798 res = video_autosw_set(1);
4799 if (res)
4800 return res;
4801 res = acpi_evalf(vid_handle, NULL,
4802 "ASWT", "vdd", status * 0x100, 0);
4803 if (!autosw && video_autosw_set(autosw)) {
4804 pr_err("video auto-switch left enabled due to error\n");
4805 return -EIO;
4806 }
4807 break;
4808 case TPACPI_VIDEO_NEW:
4809 res = acpi_evalf(NULL, NULL, "\\VUPS", "vd", 0x80) &&
4810 acpi_evalf(NULL, NULL, "\\VSDS", "vdd", status, 1);
4811 break;
4812 default:
4813 return -ENOSYS;
4814 }
4815
4816 return (res) ? 0 : -EIO;
4817 }
4818
video_autosw_get(void)4819 static int video_autosw_get(void)
4820 {
4821 int autosw = 0;
4822
4823 switch (video_supported) {
4824 case TPACPI_VIDEO_570:
4825 if (!acpi_evalf(vid_handle, &autosw, "SWIT", "d"))
4826 return -EIO;
4827 break;
4828 case TPACPI_VIDEO_770:
4829 case TPACPI_VIDEO_NEW:
4830 if (!acpi_evalf(vid_handle, &autosw, "^VDEE", "d"))
4831 return -EIO;
4832 break;
4833 default:
4834 return -ENOSYS;
4835 }
4836
4837 return autosw & 1;
4838 }
4839
video_autosw_set(int enable)4840 static int video_autosw_set(int enable)
4841 {
4842 if (!acpi_evalf(vid_handle, NULL, "_DOS", "vd", (enable) ? 1 : 0))
4843 return -EIO;
4844 return 0;
4845 }
4846
video_outputsw_cycle(void)4847 static int video_outputsw_cycle(void)
4848 {
4849 int autosw = video_autosw_get();
4850 int res;
4851
4852 if (autosw < 0)
4853 return autosw;
4854
4855 switch (video_supported) {
4856 case TPACPI_VIDEO_570:
4857 res = video_autosw_set(1);
4858 if (res)
4859 return res;
4860 res = acpi_evalf(ec_handle, NULL, "_Q16", "v");
4861 break;
4862 case TPACPI_VIDEO_770:
4863 case TPACPI_VIDEO_NEW:
4864 res = video_autosw_set(1);
4865 if (res)
4866 return res;
4867 res = acpi_evalf(vid_handle, NULL, "VSWT", "v");
4868 break;
4869 default:
4870 return -ENOSYS;
4871 }
4872 if (!autosw && video_autosw_set(autosw)) {
4873 pr_err("video auto-switch left enabled due to error\n");
4874 return -EIO;
4875 }
4876
4877 return (res) ? 0 : -EIO;
4878 }
4879
video_expand_toggle(void)4880 static int video_expand_toggle(void)
4881 {
4882 switch (video_supported) {
4883 case TPACPI_VIDEO_570:
4884 return acpi_evalf(ec_handle, NULL, "_Q17", "v") ?
4885 0 : -EIO;
4886 case TPACPI_VIDEO_770:
4887 return acpi_evalf(vid_handle, NULL, "VEXP", "v") ?
4888 0 : -EIO;
4889 case TPACPI_VIDEO_NEW:
4890 return acpi_evalf(NULL, NULL, "\\VEXP", "v") ?
4891 0 : -EIO;
4892 default:
4893 return -ENOSYS;
4894 }
4895 /* not reached */
4896 }
4897
video_read(struct seq_file * m)4898 static int video_read(struct seq_file *m)
4899 {
4900 int status, autosw;
4901
4902 if (video_supported == TPACPI_VIDEO_NONE) {
4903 seq_printf(m, "status:\t\tnot supported\n");
4904 return 0;
4905 }
4906
4907 /* Even reads can crash X.org, so... */
4908 if (!capable(CAP_SYS_ADMIN))
4909 return -EPERM;
4910
4911 status = video_outputsw_get();
4912 if (status < 0)
4913 return status;
4914
4915 autosw = video_autosw_get();
4916 if (autosw < 0)
4917 return autosw;
4918
4919 seq_printf(m, "status:\t\tsupported\n");
4920 seq_printf(m, "lcd:\t\t%s\n", str_enabled_disabled(status & BIT(0)));
4921 seq_printf(m, "crt:\t\t%s\n", str_enabled_disabled(status & BIT(1)));
4922 if (video_supported == TPACPI_VIDEO_NEW)
4923 seq_printf(m, "dvi:\t\t%s\n", str_enabled_disabled(status & BIT(3)));
4924 seq_printf(m, "auto:\t\t%s\n", str_enabled_disabled(autosw & BIT(0)));
4925 seq_printf(m, "commands:\tlcd_enable, lcd_disable\n");
4926 seq_printf(m, "commands:\tcrt_enable, crt_disable\n");
4927 if (video_supported == TPACPI_VIDEO_NEW)
4928 seq_printf(m, "commands:\tdvi_enable, dvi_disable\n");
4929 seq_printf(m, "commands:\tauto_enable, auto_disable\n");
4930 seq_printf(m, "commands:\tvideo_switch, expand_toggle\n");
4931
4932 return 0;
4933 }
4934
video_write(char * buf)4935 static int video_write(char *buf)
4936 {
4937 char *cmd;
4938 int enable, disable, status;
4939 int res;
4940
4941 if (video_supported == TPACPI_VIDEO_NONE)
4942 return -ENODEV;
4943
4944 /* Even reads can crash X.org, let alone writes... */
4945 if (!capable(CAP_SYS_ADMIN))
4946 return -EPERM;
4947
4948 enable = 0;
4949 disable = 0;
4950
4951 while ((cmd = strsep(&buf, ","))) {
4952 if (strstarts(cmd, "lcd_enable")) {
4953 enable |= TP_ACPI_VIDEO_S_LCD;
4954 } else if (strstarts(cmd, "lcd_disable")) {
4955 disable |= TP_ACPI_VIDEO_S_LCD;
4956 } else if (strstarts(cmd, "crt_enable")) {
4957 enable |= TP_ACPI_VIDEO_S_CRT;
4958 } else if (strstarts(cmd, "crt_disable")) {
4959 disable |= TP_ACPI_VIDEO_S_CRT;
4960 } else if (video_supported == TPACPI_VIDEO_NEW &&
4961 strstarts(cmd, "dvi_enable")) {
4962 enable |= TP_ACPI_VIDEO_S_DVI;
4963 } else if (video_supported == TPACPI_VIDEO_NEW &&
4964 strstarts(cmd, "dvi_disable")) {
4965 disable |= TP_ACPI_VIDEO_S_DVI;
4966 } else if (strstarts(cmd, "auto_enable")) {
4967 res = video_autosw_set(1);
4968 if (res)
4969 return res;
4970 } else if (strstarts(cmd, "auto_disable")) {
4971 res = video_autosw_set(0);
4972 if (res)
4973 return res;
4974 } else if (strstarts(cmd, "video_switch")) {
4975 res = video_outputsw_cycle();
4976 if (res)
4977 return res;
4978 } else if (strstarts(cmd, "expand_toggle")) {
4979 res = video_expand_toggle();
4980 if (res)
4981 return res;
4982 } else
4983 return -EINVAL;
4984 }
4985
4986 if (enable || disable) {
4987 status = video_outputsw_get();
4988 if (status < 0)
4989 return status;
4990 res = video_outputsw_set((status & ~disable) | enable);
4991 if (res)
4992 return res;
4993 }
4994
4995 return 0;
4996 }
4997
4998 static struct ibm_struct video_driver_data = {
4999 .name = "video",
5000 .read = video_read,
5001 .write = video_write,
5002 .exit = video_exit,
5003 };
5004
5005 #endif /* CONFIG_THINKPAD_ACPI_VIDEO */
5006
5007 /*************************************************************************
5008 * Keyboard backlight subdriver
5009 */
5010
5011 static enum led_brightness kbdlight_brightness;
5012 static DEFINE_MUTEX(kbdlight_mutex);
5013
kbdlight_set_level(int level)5014 static int kbdlight_set_level(int level)
5015 {
5016 int ret = 0;
5017
5018 if (!hkey_handle)
5019 return -ENXIO;
5020
5021 mutex_lock(&kbdlight_mutex);
5022
5023 if (!acpi_evalf(hkey_handle, NULL, "MLCS", "dd", level))
5024 ret = -EIO;
5025 else
5026 kbdlight_brightness = level;
5027
5028 mutex_unlock(&kbdlight_mutex);
5029
5030 return ret;
5031 }
5032
kbdlight_get_level(void)5033 static int kbdlight_get_level(void)
5034 {
5035 int status = 0;
5036
5037 if (!hkey_handle)
5038 return -ENXIO;
5039
5040 if (!acpi_evalf(hkey_handle, &status, "MLCG", "dd", 0))
5041 return -EIO;
5042
5043 if (status < 0)
5044 return status;
5045
5046 return status & 0x3;
5047 }
5048
kbdlight_is_supported(void)5049 static bool kbdlight_is_supported(void)
5050 {
5051 int status = 0;
5052
5053 if (!hkey_handle)
5054 return false;
5055
5056 if (!acpi_has_method(hkey_handle, "MLCG")) {
5057 vdbg_printk(TPACPI_DBG_INIT, "kbdlight MLCG is unavailable\n");
5058 return false;
5059 }
5060
5061 if (!acpi_evalf(hkey_handle, &status, "MLCG", "qdd", 0)) {
5062 vdbg_printk(TPACPI_DBG_INIT, "kbdlight MLCG failed\n");
5063 return false;
5064 }
5065
5066 if (status < 0) {
5067 vdbg_printk(TPACPI_DBG_INIT, "kbdlight MLCG err: %d\n", status);
5068 return false;
5069 }
5070
5071 vdbg_printk(TPACPI_DBG_INIT, "kbdlight MLCG returned 0x%x\n", status);
5072 /*
5073 * Guessed test for keyboard backlight:
5074 *
5075 * Machines with backlight keyboard return:
5076 * b010100000010000000XX - ThinkPad X1 Carbon 3rd
5077 * b110100010010000000XX - ThinkPad x230
5078 * b010100000010000000XX - ThinkPad x240
5079 * b010100000010000000XX - ThinkPad W541
5080 * (XX is current backlight level)
5081 *
5082 * Machines without backlight keyboard return:
5083 * b10100001000000000000 - ThinkPad x230
5084 * b10110001000000000000 - ThinkPad E430
5085 * b00000000000000000000 - ThinkPad E450
5086 *
5087 * Candidate BITs for detection test (XOR):
5088 * b01000000001000000000
5089 * ^
5090 */
5091 return status & BIT(9);
5092 }
5093
kbdlight_sysfs_set(struct led_classdev * led_cdev,enum led_brightness brightness)5094 static int kbdlight_sysfs_set(struct led_classdev *led_cdev,
5095 enum led_brightness brightness)
5096 {
5097 return kbdlight_set_level(brightness);
5098 }
5099
kbdlight_sysfs_get(struct led_classdev * led_cdev)5100 static enum led_brightness kbdlight_sysfs_get(struct led_classdev *led_cdev)
5101 {
5102 int level;
5103
5104 level = kbdlight_get_level();
5105 if (level < 0)
5106 return 0;
5107
5108 return level;
5109 }
5110
5111 static struct tpacpi_led_classdev tpacpi_led_kbdlight = {
5112 .led_classdev = {
5113 .name = "tpacpi::kbd_backlight",
5114 .max_brightness = 2,
5115 .flags = LED_BRIGHT_HW_CHANGED,
5116 .brightness_set_blocking = &kbdlight_sysfs_set,
5117 .brightness_get = &kbdlight_sysfs_get,
5118 }
5119 };
5120
kbdlight_init(struct ibm_init_struct * iibm)5121 static int __init kbdlight_init(struct ibm_init_struct *iibm)
5122 {
5123 int rc;
5124
5125 vdbg_printk(TPACPI_DBG_INIT, "initializing kbdlight subdriver\n");
5126
5127 TPACPI_ACPIHANDLE_INIT(hkey);
5128
5129 if (!kbdlight_is_supported()) {
5130 tp_features.kbdlight = 0;
5131 vdbg_printk(TPACPI_DBG_INIT, "kbdlight is unsupported\n");
5132 return -ENODEV;
5133 }
5134
5135 kbdlight_brightness = kbdlight_sysfs_get(NULL);
5136 tp_features.kbdlight = 1;
5137
5138 rc = led_classdev_register(&tpacpi_pdev->dev,
5139 &tpacpi_led_kbdlight.led_classdev);
5140 if (rc < 0) {
5141 tp_features.kbdlight = 0;
5142 return rc;
5143 }
5144
5145 tpacpi_hotkey_driver_mask_set(hotkey_driver_mask |
5146 TP_ACPI_HKEY_KBD_LIGHT_MASK);
5147 return 0;
5148 }
5149
kbdlight_exit(void)5150 static void kbdlight_exit(void)
5151 {
5152 led_classdev_unregister(&tpacpi_led_kbdlight.led_classdev);
5153 }
5154
kbdlight_set_level_and_update(int level)5155 static int kbdlight_set_level_and_update(int level)
5156 {
5157 int ret;
5158 struct led_classdev *led_cdev;
5159
5160 ret = kbdlight_set_level(level);
5161 led_cdev = &tpacpi_led_kbdlight.led_classdev;
5162
5163 if (ret == 0 && !(led_cdev->flags & LED_SUSPENDED))
5164 led_cdev->brightness = level;
5165
5166 return ret;
5167 }
5168
kbdlight_read(struct seq_file * m)5169 static int kbdlight_read(struct seq_file *m)
5170 {
5171 int level;
5172
5173 if (!tp_features.kbdlight) {
5174 seq_printf(m, "status:\t\tnot supported\n");
5175 } else {
5176 level = kbdlight_get_level();
5177 if (level < 0)
5178 seq_printf(m, "status:\t\terror %d\n", level);
5179 else
5180 seq_printf(m, "status:\t\t%d\n", level);
5181 seq_printf(m, "commands:\t0, 1, 2\n");
5182 }
5183
5184 return 0;
5185 }
5186
kbdlight_write(char * buf)5187 static int kbdlight_write(char *buf)
5188 {
5189 char *cmd;
5190 int res, level = -EINVAL;
5191
5192 if (!tp_features.kbdlight)
5193 return -ENODEV;
5194
5195 while ((cmd = strsep(&buf, ","))) {
5196 res = kstrtoint(cmd, 10, &level);
5197 if (res < 0)
5198 return res;
5199 }
5200
5201 if (level >= 3 || level < 0)
5202 return -EINVAL;
5203
5204 return kbdlight_set_level_and_update(level);
5205 }
5206
kbdlight_suspend(void)5207 static void kbdlight_suspend(void)
5208 {
5209 struct led_classdev *led_cdev;
5210
5211 if (!tp_features.kbdlight)
5212 return;
5213
5214 led_cdev = &tpacpi_led_kbdlight.led_classdev;
5215 led_update_brightness(led_cdev);
5216 led_classdev_suspend(led_cdev);
5217 }
5218
kbdlight_resume(void)5219 static void kbdlight_resume(void)
5220 {
5221 if (!tp_features.kbdlight)
5222 return;
5223
5224 led_classdev_resume(&tpacpi_led_kbdlight.led_classdev);
5225 }
5226
5227 static struct ibm_struct kbdlight_driver_data = {
5228 .name = "kbdlight",
5229 .read = kbdlight_read,
5230 .write = kbdlight_write,
5231 .suspend = kbdlight_suspend,
5232 .resume = kbdlight_resume,
5233 .exit = kbdlight_exit,
5234 };
5235
5236 /*************************************************************************
5237 * Light (thinklight) subdriver
5238 */
5239
5240 TPACPI_HANDLE(lght, root, "\\LGHT"); /* A21e, A2xm/p, T20-22, X20-21 */
5241 TPACPI_HANDLE(ledb, ec, "LEDB"); /* G4x */
5242
light_get_status(void)5243 static int light_get_status(void)
5244 {
5245 int status = 0;
5246
5247 if (tp_features.light_status) {
5248 if (!acpi_evalf(ec_handle, &status, "KBLT", "d"))
5249 return -EIO;
5250 return (!!status);
5251 }
5252
5253 return -ENXIO;
5254 }
5255
light_set_status(int status)5256 static int light_set_status(int status)
5257 {
5258 int rc;
5259
5260 if (tp_features.light) {
5261 if (cmos_handle) {
5262 rc = acpi_evalf(cmos_handle, NULL, NULL, "vd",
5263 (status) ?
5264 TP_CMOS_THINKLIGHT_ON :
5265 TP_CMOS_THINKLIGHT_OFF);
5266 } else {
5267 rc = acpi_evalf(lght_handle, NULL, NULL, "vd",
5268 (status) ? 1 : 0);
5269 }
5270 return (rc) ? 0 : -EIO;
5271 }
5272
5273 return -ENXIO;
5274 }
5275
light_sysfs_set(struct led_classdev * led_cdev,enum led_brightness brightness)5276 static int light_sysfs_set(struct led_classdev *led_cdev,
5277 enum led_brightness brightness)
5278 {
5279 return light_set_status((brightness != LED_OFF) ?
5280 TPACPI_LED_ON : TPACPI_LED_OFF);
5281 }
5282
light_sysfs_get(struct led_classdev * led_cdev)5283 static enum led_brightness light_sysfs_get(struct led_classdev *led_cdev)
5284 {
5285 return (light_get_status() == 1) ? LED_ON : LED_OFF;
5286 }
5287
5288 static struct tpacpi_led_classdev tpacpi_led_thinklight = {
5289 .led_classdev = {
5290 .name = "tpacpi::thinklight",
5291 .max_brightness = 1,
5292 .brightness_set_blocking = &light_sysfs_set,
5293 .brightness_get = &light_sysfs_get,
5294 }
5295 };
5296
light_init(struct ibm_init_struct * iibm)5297 static int __init light_init(struct ibm_init_struct *iibm)
5298 {
5299 int rc;
5300
5301 vdbg_printk(TPACPI_DBG_INIT, "initializing light subdriver\n");
5302
5303 if (tpacpi_is_ibm()) {
5304 TPACPI_ACPIHANDLE_INIT(ledb);
5305 TPACPI_ACPIHANDLE_INIT(lght);
5306 }
5307 TPACPI_ACPIHANDLE_INIT(cmos);
5308
5309 /* light not supported on 570, 600e/x, 770e, 770x, G4x, R30, R31 */
5310 tp_features.light = (cmos_handle || lght_handle) && !ledb_handle;
5311
5312 if (tp_features.light)
5313 /* light status not supported on
5314 570, 600e/x, 770e, 770x, G4x, R30, R31, R32, X20 */
5315 tp_features.light_status =
5316 acpi_evalf(ec_handle, NULL, "KBLT", "qv");
5317
5318 vdbg_printk(TPACPI_DBG_INIT, "light is %s, light status is %s\n",
5319 str_supported(tp_features.light),
5320 str_supported(tp_features.light_status));
5321
5322 if (!tp_features.light)
5323 return -ENODEV;
5324
5325 rc = led_classdev_register(&tpacpi_pdev->dev,
5326 &tpacpi_led_thinklight.led_classdev);
5327
5328 if (rc < 0) {
5329 tp_features.light = 0;
5330 tp_features.light_status = 0;
5331 } else {
5332 rc = 0;
5333 }
5334
5335 return rc;
5336 }
5337
light_exit(void)5338 static void light_exit(void)
5339 {
5340 led_classdev_unregister(&tpacpi_led_thinklight.led_classdev);
5341 }
5342
light_read(struct seq_file * m)5343 static int light_read(struct seq_file *m)
5344 {
5345 int status;
5346
5347 if (!tp_features.light) {
5348 seq_printf(m, "status:\t\tnot supported\n");
5349 } else if (!tp_features.light_status) {
5350 seq_printf(m, "status:\t\tunknown\n");
5351 seq_printf(m, "commands:\ton, off\n");
5352 } else {
5353 status = light_get_status();
5354 if (status < 0)
5355 return status;
5356 seq_printf(m, "status:\t\t%s\n", str_on_off(status & BIT(0)));
5357 seq_printf(m, "commands:\ton, off\n");
5358 }
5359
5360 return 0;
5361 }
5362
light_write(char * buf)5363 static int light_write(char *buf)
5364 {
5365 char *cmd;
5366 int newstatus = 0;
5367
5368 if (!tp_features.light)
5369 return -ENODEV;
5370
5371 while ((cmd = strsep(&buf, ","))) {
5372 if (strstarts(cmd, "on")) {
5373 newstatus = 1;
5374 } else if (strstarts(cmd, "off")) {
5375 newstatus = 0;
5376 } else
5377 return -EINVAL;
5378 }
5379
5380 return light_set_status(newstatus);
5381 }
5382
5383 static struct ibm_struct light_driver_data = {
5384 .name = "light",
5385 .read = light_read,
5386 .write = light_write,
5387 .exit = light_exit,
5388 };
5389
5390 /*************************************************************************
5391 * CMOS subdriver
5392 */
5393
5394 /* sysfs cmos_command -------------------------------------------------- */
cmos_command_store(struct device * dev,struct device_attribute * attr,const char * buf,size_t count)5395 static ssize_t cmos_command_store(struct device *dev,
5396 struct device_attribute *attr,
5397 const char *buf, size_t count)
5398 {
5399 unsigned long cmos_cmd;
5400 int res;
5401
5402 if (parse_strtoul(buf, 21, &cmos_cmd))
5403 return -EINVAL;
5404
5405 res = issue_thinkpad_cmos_command(cmos_cmd);
5406 return (res) ? res : count;
5407 }
5408
5409 static DEVICE_ATTR_WO(cmos_command);
5410
5411 static struct attribute *cmos_attributes[] = {
5412 &dev_attr_cmos_command.attr,
5413 NULL
5414 };
5415
cmos_attr_is_visible(struct kobject * kobj,struct attribute * attr,int n)5416 static umode_t cmos_attr_is_visible(struct kobject *kobj,
5417 struct attribute *attr, int n)
5418 {
5419 return cmos_handle ? attr->mode : 0;
5420 }
5421
5422 static const struct attribute_group cmos_attr_group = {
5423 .is_visible = cmos_attr_is_visible,
5424 .attrs = cmos_attributes,
5425 };
5426
5427 /* --------------------------------------------------------------------- */
5428
cmos_init(struct ibm_init_struct * iibm)5429 static int __init cmos_init(struct ibm_init_struct *iibm)
5430 {
5431 vdbg_printk(TPACPI_DBG_INIT,
5432 "initializing cmos commands subdriver\n");
5433
5434 TPACPI_ACPIHANDLE_INIT(cmos);
5435
5436 vdbg_printk(TPACPI_DBG_INIT, "cmos commands are %s\n",
5437 str_supported(cmos_handle != NULL));
5438
5439 return cmos_handle ? 0 : -ENODEV;
5440 }
5441
cmos_read(struct seq_file * m)5442 static int cmos_read(struct seq_file *m)
5443 {
5444 /* cmos not supported on 570, 600e/x, 770e, 770x, A21e, A2xm/p,
5445 R30, R31, T20-22, X20-21 */
5446 if (!cmos_handle)
5447 seq_printf(m, "status:\t\tnot supported\n");
5448 else {
5449 seq_printf(m, "status:\t\tsupported\n");
5450 seq_printf(m, "commands:\t<cmd> (<cmd> is 0-21)\n");
5451 }
5452
5453 return 0;
5454 }
5455
cmos_write(char * buf)5456 static int cmos_write(char *buf)
5457 {
5458 char *cmd;
5459 int cmos_cmd, res;
5460
5461 while ((cmd = strsep(&buf, ","))) {
5462 if (sscanf(cmd, "%u", &cmos_cmd) == 1 &&
5463 cmos_cmd >= 0 && cmos_cmd <= 21) {
5464 /* cmos_cmd set */
5465 } else
5466 return -EINVAL;
5467
5468 res = issue_thinkpad_cmos_command(cmos_cmd);
5469 if (res)
5470 return res;
5471 }
5472
5473 return 0;
5474 }
5475
5476 static struct ibm_struct cmos_driver_data = {
5477 .name = "cmos",
5478 .read = cmos_read,
5479 .write = cmos_write,
5480 };
5481
5482 /*************************************************************************
5483 * LED subdriver
5484 */
5485
5486 enum led_access_mode {
5487 TPACPI_LED_NONE = 0,
5488 TPACPI_LED_570, /* 570 */
5489 TPACPI_LED_OLD, /* 600e/x, 770e, 770x, A21e, A2xm/p, T20-22, X20-21 */
5490 TPACPI_LED_NEW, /* all others */
5491 };
5492
5493 enum { /* For TPACPI_LED_OLD */
5494 TPACPI_LED_EC_HLCL = 0x0c, /* EC reg to get led to power on */
5495 TPACPI_LED_EC_HLBL = 0x0d, /* EC reg to blink a lit led */
5496 TPACPI_LED_EC_HLMS = 0x0e, /* EC reg to select led to command */
5497 };
5498
5499 static enum led_access_mode led_supported;
5500
5501 static acpi_handle led_handle;
5502
5503 #define TPACPI_LED_NUMLEDS 16
5504 static struct tpacpi_led_classdev *tpacpi_leds;
5505 static enum led_status_t tpacpi_led_state_cache[TPACPI_LED_NUMLEDS];
5506 static const char * const tpacpi_led_names[TPACPI_LED_NUMLEDS] = {
5507 /* there's a limit of 19 chars + NULL before 2.6.26 */
5508 "tpacpi::power",
5509 "tpacpi:orange:batt",
5510 "tpacpi:green:batt",
5511 "tpacpi::dock_active",
5512 "tpacpi::bay_active",
5513 "tpacpi::dock_batt",
5514 "tpacpi::unknown_led",
5515 "tpacpi::standby",
5516 "tpacpi::dock_status1",
5517 "tpacpi::dock_status2",
5518 "tpacpi::lid_logo_dot",
5519 "tpacpi::unknown_led3",
5520 "tpacpi::thinkvantage",
5521 };
5522 #define TPACPI_SAFE_LEDS 0x1481U
5523
tpacpi_is_led_restricted(const unsigned int led)5524 static inline bool tpacpi_is_led_restricted(const unsigned int led)
5525 {
5526 #ifdef CONFIG_THINKPAD_ACPI_UNSAFE_LEDS
5527 return false;
5528 #else
5529 return (1U & (TPACPI_SAFE_LEDS >> led)) == 0;
5530 #endif
5531 }
5532
led_get_status(const unsigned int led)5533 static int led_get_status(const unsigned int led)
5534 {
5535 int status;
5536 enum led_status_t led_s;
5537
5538 switch (led_supported) {
5539 case TPACPI_LED_570:
5540 if (!acpi_evalf(ec_handle,
5541 &status, "GLED", "dd", 1 << led))
5542 return -EIO;
5543 led_s = (status == 0) ?
5544 TPACPI_LED_OFF :
5545 ((status == 1) ?
5546 TPACPI_LED_ON :
5547 TPACPI_LED_BLINK);
5548 tpacpi_led_state_cache[led] = led_s;
5549 return led_s;
5550 default:
5551 return -ENXIO;
5552 }
5553
5554 /* not reached */
5555 }
5556
led_set_status(const unsigned int led,const enum led_status_t ledstatus)5557 static int led_set_status(const unsigned int led,
5558 const enum led_status_t ledstatus)
5559 {
5560 /* off, on, blink. Index is led_status_t */
5561 static const unsigned int led_sled_arg1[] = { 0, 1, 3 };
5562 static const unsigned int led_led_arg1[] = { 0, 0x80, 0xc0 };
5563
5564 int rc = 0;
5565
5566 switch (led_supported) {
5567 case TPACPI_LED_570:
5568 /* 570 */
5569 if (unlikely(led > 7))
5570 return -EINVAL;
5571 if (unlikely(tpacpi_is_led_restricted(led)))
5572 return -EPERM;
5573 if (!acpi_evalf(led_handle, NULL, NULL, "vdd",
5574 (1 << led), led_sled_arg1[ledstatus]))
5575 return -EIO;
5576 break;
5577 case TPACPI_LED_OLD:
5578 /* 600e/x, 770e, 770x, A21e, A2xm/p, T20-22, X20 */
5579 if (unlikely(led > 7))
5580 return -EINVAL;
5581 if (unlikely(tpacpi_is_led_restricted(led)))
5582 return -EPERM;
5583 rc = ec_write(TPACPI_LED_EC_HLMS, (1 << led));
5584 if (rc >= 0)
5585 rc = ec_write(TPACPI_LED_EC_HLBL,
5586 (ledstatus == TPACPI_LED_BLINK) << led);
5587 if (rc >= 0)
5588 rc = ec_write(TPACPI_LED_EC_HLCL,
5589 (ledstatus != TPACPI_LED_OFF) << led);
5590 break;
5591 case TPACPI_LED_NEW:
5592 /* all others */
5593 if (unlikely(led >= TPACPI_LED_NUMLEDS))
5594 return -EINVAL;
5595 if (unlikely(tpacpi_is_led_restricted(led)))
5596 return -EPERM;
5597 if (!acpi_evalf(led_handle, NULL, NULL, "vdd",
5598 led, led_led_arg1[ledstatus]))
5599 return -EIO;
5600 break;
5601 default:
5602 return -ENXIO;
5603 }
5604
5605 if (!rc)
5606 tpacpi_led_state_cache[led] = ledstatus;
5607
5608 return rc;
5609 }
5610
led_sysfs_set(struct led_classdev * led_cdev,enum led_brightness brightness)5611 static int led_sysfs_set(struct led_classdev *led_cdev,
5612 enum led_brightness brightness)
5613 {
5614 struct tpacpi_led_classdev *data = container_of(led_cdev,
5615 struct tpacpi_led_classdev, led_classdev);
5616 enum led_status_t new_state;
5617
5618 if (brightness == LED_OFF)
5619 new_state = TPACPI_LED_OFF;
5620 else if (tpacpi_led_state_cache[data->led] != TPACPI_LED_BLINK)
5621 new_state = TPACPI_LED_ON;
5622 else
5623 new_state = TPACPI_LED_BLINK;
5624
5625 return led_set_status(data->led, new_state);
5626 }
5627
led_sysfs_blink_set(struct led_classdev * led_cdev,unsigned long * delay_on,unsigned long * delay_off)5628 static int led_sysfs_blink_set(struct led_classdev *led_cdev,
5629 unsigned long *delay_on, unsigned long *delay_off)
5630 {
5631 struct tpacpi_led_classdev *data = container_of(led_cdev,
5632 struct tpacpi_led_classdev, led_classdev);
5633
5634 /* Can we choose the flash rate? */
5635 if (*delay_on == 0 && *delay_off == 0) {
5636 /* yes. set them to the hardware blink rate (1 Hz) */
5637 *delay_on = 500; /* ms */
5638 *delay_off = 500; /* ms */
5639 } else if ((*delay_on != 500) || (*delay_off != 500))
5640 return -EINVAL;
5641
5642 return led_set_status(data->led, TPACPI_LED_BLINK);
5643 }
5644
led_sysfs_get(struct led_classdev * led_cdev)5645 static enum led_brightness led_sysfs_get(struct led_classdev *led_cdev)
5646 {
5647 int rc;
5648
5649 struct tpacpi_led_classdev *data = container_of(led_cdev,
5650 struct tpacpi_led_classdev, led_classdev);
5651
5652 rc = led_get_status(data->led);
5653
5654 if (rc == TPACPI_LED_OFF || rc < 0)
5655 rc = LED_OFF; /* no error handling in led class :( */
5656 else
5657 rc = LED_FULL;
5658
5659 return rc;
5660 }
5661
led_exit(void)5662 static void led_exit(void)
5663 {
5664 unsigned int i;
5665
5666 for (i = 0; i < TPACPI_LED_NUMLEDS; i++)
5667 led_classdev_unregister(&tpacpi_leds[i].led_classdev);
5668
5669 kfree(tpacpi_leds);
5670 }
5671
tpacpi_init_led(unsigned int led)5672 static int __init tpacpi_init_led(unsigned int led)
5673 {
5674 /* LEDs with no name don't get registered */
5675 if (!tpacpi_led_names[led])
5676 return 0;
5677
5678 tpacpi_leds[led].led_classdev.brightness_set_blocking = &led_sysfs_set;
5679 tpacpi_leds[led].led_classdev.blink_set = &led_sysfs_blink_set;
5680 if (led_supported == TPACPI_LED_570)
5681 tpacpi_leds[led].led_classdev.brightness_get = &led_sysfs_get;
5682
5683 tpacpi_leds[led].led_classdev.name = tpacpi_led_names[led];
5684 tpacpi_leds[led].led_classdev.flags = LED_RETAIN_AT_SHUTDOWN;
5685 tpacpi_leds[led].led = led;
5686
5687 return led_classdev_register(&tpacpi_pdev->dev, &tpacpi_leds[led].led_classdev);
5688 }
5689
5690 static const struct tpacpi_quirk led_useful_qtable[] __initconst = {
5691 TPACPI_Q_IBM('1', 'E', 0x009f), /* A30 */
5692 TPACPI_Q_IBM('1', 'N', 0x009f), /* A31 */
5693 TPACPI_Q_IBM('1', 'G', 0x009f), /* A31 */
5694
5695 TPACPI_Q_IBM('1', 'I', 0x0097), /* T30 */
5696 TPACPI_Q_IBM('1', 'R', 0x0097), /* T40, T41, T42, R50, R51 */
5697 TPACPI_Q_IBM('7', '0', 0x0097), /* T43, R52 */
5698 TPACPI_Q_IBM('1', 'Y', 0x0097), /* T43 */
5699 TPACPI_Q_IBM('1', 'W', 0x0097), /* R50e */
5700 TPACPI_Q_IBM('1', 'V', 0x0097), /* R51 */
5701 TPACPI_Q_IBM('7', '8', 0x0097), /* R51e */
5702 TPACPI_Q_IBM('7', '6', 0x0097), /* R52 */
5703
5704 TPACPI_Q_IBM('1', 'K', 0x00bf), /* X30 */
5705 TPACPI_Q_IBM('1', 'Q', 0x00bf), /* X31, X32 */
5706 TPACPI_Q_IBM('1', 'U', 0x00bf), /* X40 */
5707 TPACPI_Q_IBM('7', '4', 0x00bf), /* X41 */
5708 TPACPI_Q_IBM('7', '5', 0x00bf), /* X41t */
5709
5710 TPACPI_Q_IBM('7', '9', 0x1f97), /* T60 (1) */
5711 TPACPI_Q_IBM('7', '7', 0x1f97), /* Z60* (1) */
5712 TPACPI_Q_IBM('7', 'F', 0x1f97), /* Z61* (1) */
5713 TPACPI_Q_IBM('7', 'B', 0x1fb7), /* X60 (1) */
5714
5715 /* (1) - may have excess leds enabled on MSB */
5716
5717 /* Defaults (order matters, keep last, don't reorder!) */
5718 { /* Lenovo */
5719 .vendor = PCI_VENDOR_ID_LENOVO,
5720 .bios = TPACPI_MATCH_ANY, .ec = TPACPI_MATCH_ANY,
5721 .quirks = 0x1fffU,
5722 },
5723 { /* IBM ThinkPads with no EC version string */
5724 .vendor = PCI_VENDOR_ID_IBM,
5725 .bios = TPACPI_MATCH_ANY, .ec = TPACPI_MATCH_UNKNOWN,
5726 .quirks = 0x00ffU,
5727 },
5728 { /* IBM ThinkPads with EC version string */
5729 .vendor = PCI_VENDOR_ID_IBM,
5730 .bios = TPACPI_MATCH_ANY, .ec = TPACPI_MATCH_ANY,
5731 .quirks = 0x00bfU,
5732 },
5733 };
5734
led_init_detect_mode(void)5735 static enum led_access_mode __init led_init_detect_mode(void)
5736 {
5737 acpi_status status;
5738
5739 if (tpacpi_is_ibm()) {
5740 /* 570 */
5741 status = acpi_get_handle(ec_handle, "SLED", &led_handle);
5742 if (ACPI_SUCCESS(status))
5743 return TPACPI_LED_570;
5744
5745 /* 600e/x, 770e, 770x, A21e, A2xm/p, T20-22, X20-21 */
5746 status = acpi_get_handle(ec_handle, "SYSL", &led_handle);
5747 if (ACPI_SUCCESS(status))
5748 return TPACPI_LED_OLD;
5749 }
5750
5751 /* most others */
5752 status = acpi_get_handle(ec_handle, "LED", &led_handle);
5753 if (ACPI_SUCCESS(status))
5754 return TPACPI_LED_NEW;
5755
5756 /* R30, R31, and unknown firmwares */
5757 led_handle = NULL;
5758 return TPACPI_LED_NONE;
5759 }
5760
led_init(struct ibm_init_struct * iibm)5761 static int __init led_init(struct ibm_init_struct *iibm)
5762 {
5763 unsigned int i;
5764 int rc;
5765 unsigned long useful_leds;
5766
5767 vdbg_printk(TPACPI_DBG_INIT, "initializing LED subdriver\n");
5768
5769 led_supported = led_init_detect_mode();
5770
5771 if (led_supported != TPACPI_LED_NONE) {
5772 useful_leds = tpacpi_check_quirks(led_useful_qtable,
5773 ARRAY_SIZE(led_useful_qtable));
5774
5775 if (!useful_leds) {
5776 led_handle = NULL;
5777 led_supported = TPACPI_LED_NONE;
5778 }
5779 }
5780
5781 vdbg_printk(TPACPI_DBG_INIT, "LED commands are %s, mode %d\n",
5782 str_supported(led_supported), led_supported);
5783
5784 if (led_supported == TPACPI_LED_NONE)
5785 return -ENODEV;
5786
5787 tpacpi_leds = kcalloc(TPACPI_LED_NUMLEDS, sizeof(*tpacpi_leds),
5788 GFP_KERNEL);
5789 if (!tpacpi_leds) {
5790 pr_err("Out of memory for LED data\n");
5791 return -ENOMEM;
5792 }
5793
5794 for (i = 0; i < TPACPI_LED_NUMLEDS; i++) {
5795 tpacpi_leds[i].led = -1;
5796
5797 if (!tpacpi_is_led_restricted(i) && test_bit(i, &useful_leds)) {
5798 rc = tpacpi_init_led(i);
5799 if (rc < 0) {
5800 led_exit();
5801 return rc;
5802 }
5803 }
5804 }
5805
5806 #ifdef CONFIG_THINKPAD_ACPI_UNSAFE_LEDS
5807 pr_notice("warning: userspace override of important firmware LEDs is enabled\n");
5808 #endif
5809 return 0;
5810 }
5811
5812 #define str_led_status(s) ((s) >= TPACPI_LED_BLINK ? "blinking" : str_on_off(s))
5813
led_read(struct seq_file * m)5814 static int led_read(struct seq_file *m)
5815 {
5816 if (!led_supported) {
5817 seq_printf(m, "status:\t\tnot supported\n");
5818 return 0;
5819 }
5820 seq_printf(m, "status:\t\tsupported\n");
5821
5822 if (led_supported == TPACPI_LED_570) {
5823 /* 570 */
5824 int i, status;
5825 for (i = 0; i < 8; i++) {
5826 status = led_get_status(i);
5827 if (status < 0)
5828 return -EIO;
5829 seq_printf(m, "%d:\t\t%s\n", i, str_led_status(status));
5830 }
5831 }
5832
5833 seq_printf(m, "commands:\t<led> on, <led> off, <led> blink (<led> is 0-15)\n");
5834
5835 return 0;
5836 }
5837
led_write(char * buf)5838 static int led_write(char *buf)
5839 {
5840 char *cmd;
5841 int led, rc;
5842 enum led_status_t s;
5843
5844 if (!led_supported)
5845 return -ENODEV;
5846
5847 while ((cmd = strsep(&buf, ","))) {
5848 if (sscanf(cmd, "%d", &led) != 1)
5849 return -EINVAL;
5850
5851 if (led < 0 || led > (TPACPI_LED_NUMLEDS - 1))
5852 return -ENODEV;
5853
5854 if (tpacpi_leds[led].led < 0)
5855 return -ENODEV;
5856
5857 if (strstr(cmd, "off")) {
5858 s = TPACPI_LED_OFF;
5859 } else if (strstr(cmd, "on")) {
5860 s = TPACPI_LED_ON;
5861 } else if (strstr(cmd, "blink")) {
5862 s = TPACPI_LED_BLINK;
5863 } else {
5864 return -EINVAL;
5865 }
5866
5867 rc = led_set_status(led, s);
5868 if (rc < 0)
5869 return rc;
5870 }
5871
5872 return 0;
5873 }
5874
5875 static struct ibm_struct led_driver_data = {
5876 .name = "led",
5877 .read = led_read,
5878 .write = led_write,
5879 .exit = led_exit,
5880 };
5881
5882 /*************************************************************************
5883 * Beep subdriver
5884 */
5885
5886 TPACPI_HANDLE(beep, ec, "BEEP"); /* all except R30, R31 */
5887
5888 #define TPACPI_BEEP_Q1 0x0001
5889
5890 static const struct tpacpi_quirk beep_quirk_table[] __initconst = {
5891 TPACPI_Q_IBM('I', 'M', TPACPI_BEEP_Q1), /* 570 */
5892 TPACPI_Q_IBM('I', 'U', TPACPI_BEEP_Q1), /* 570E - unverified */
5893 };
5894
beep_init(struct ibm_init_struct * iibm)5895 static int __init beep_init(struct ibm_init_struct *iibm)
5896 {
5897 unsigned long quirks;
5898
5899 vdbg_printk(TPACPI_DBG_INIT, "initializing beep subdriver\n");
5900
5901 TPACPI_ACPIHANDLE_INIT(beep);
5902
5903 vdbg_printk(TPACPI_DBG_INIT, "beep is %s\n",
5904 str_supported(beep_handle != NULL));
5905
5906 quirks = tpacpi_check_quirks(beep_quirk_table,
5907 ARRAY_SIZE(beep_quirk_table));
5908
5909 tp_features.beep_needs_two_args = !!(quirks & TPACPI_BEEP_Q1);
5910
5911 return (beep_handle) ? 0 : -ENODEV;
5912 }
5913
beep_read(struct seq_file * m)5914 static int beep_read(struct seq_file *m)
5915 {
5916 if (!beep_handle)
5917 seq_printf(m, "status:\t\tnot supported\n");
5918 else {
5919 seq_printf(m, "status:\t\tsupported\n");
5920 seq_printf(m, "commands:\t<cmd> (<cmd> is 0-17)\n");
5921 }
5922
5923 return 0;
5924 }
5925
beep_write(char * buf)5926 static int beep_write(char *buf)
5927 {
5928 char *cmd;
5929 int beep_cmd;
5930
5931 if (!beep_handle)
5932 return -ENODEV;
5933
5934 while ((cmd = strsep(&buf, ","))) {
5935 if (sscanf(cmd, "%u", &beep_cmd) == 1 &&
5936 beep_cmd >= 0 && beep_cmd <= 17) {
5937 /* beep_cmd set */
5938 } else
5939 return -EINVAL;
5940 if (tp_features.beep_needs_two_args) {
5941 if (!acpi_evalf(beep_handle, NULL, NULL, "vdd",
5942 beep_cmd, 0))
5943 return -EIO;
5944 } else {
5945 if (!acpi_evalf(beep_handle, NULL, NULL, "vd",
5946 beep_cmd))
5947 return -EIO;
5948 }
5949 }
5950
5951 return 0;
5952 }
5953
5954 static struct ibm_struct beep_driver_data = {
5955 .name = "beep",
5956 .read = beep_read,
5957 .write = beep_write,
5958 };
5959
5960 /*************************************************************************
5961 * Thermal subdriver
5962 */
5963
5964 enum thermal_access_mode {
5965 TPACPI_THERMAL_NONE = 0, /* No thermal support */
5966 TPACPI_THERMAL_ACPI_TMP07, /* Use ACPI TMP0-7 */
5967 TPACPI_THERMAL_ACPI_UPDT, /* Use ACPI TMP0-7 with UPDT */
5968 TPACPI_THERMAL_TPEC_8, /* Use ACPI EC regs, 8 sensors */
5969 TPACPI_THERMAL_TPEC_12, /* Use ACPI EC regs, 12 sensors */
5970 TPACPI_THERMAL_TPEC_16, /* Use ACPI EC regs, 16 sensors */
5971 };
5972
5973 enum { /* TPACPI_THERMAL_TPEC_* */
5974 TP_EC_THERMAL_TMP0 = 0x78, /* ACPI EC regs TMP 0..7 */
5975 TP_EC_THERMAL_TMP8 = 0xC0, /* ACPI EC regs TMP 8..15 */
5976 TP_EC_THERMAL_TMP0_NS = 0xA8, /* ACPI EC Non-Standard regs TMP 0..7 */
5977 TP_EC_THERMAL_TMP8_NS = 0xB8, /* ACPI EC Non-standard regs TMP 8..11 */
5978 TP_EC_FUNCREV = 0xEF, /* ACPI EC Functional revision */
5979 TP_EC_THERMAL_TMP_NA = -128, /* ACPI EC sensor not available */
5980
5981 TPACPI_THERMAL_SENSOR_NA = -128000, /* Sensor not available */
5982 };
5983
5984
5985 #define TPACPI_MAX_THERMAL_SENSORS 16 /* Max thermal sensors supported */
5986 struct ibm_thermal_sensors_struct {
5987 s32 temp[TPACPI_MAX_THERMAL_SENSORS];
5988 };
5989
5990 static const struct tpacpi_quirk thermal_quirk_table[] __initconst = {
5991 /* Non-standard address for thermal registers on some ThinkPads */
5992 TPACPI_Q_LNV3('R', '1', 'F', true), /* L13 Yoga Gen 2 */
5993 TPACPI_Q_LNV3('N', '2', 'U', true), /* X13 Yoga Gen 2*/
5994 TPACPI_Q_LNV3('R', '0', 'R', true), /* L380 */
5995 TPACPI_Q_LNV3('R', '1', '5', true), /* L13 Yoga Gen 1*/
5996 TPACPI_Q_LNV3('R', '1', '0', true), /* L390 */
5997 TPACPI_Q_LNV3('N', '2', 'L', true), /* X13 Yoga Gen 1*/
5998 TPACPI_Q_LNV3('R', '0', 'T', true), /* 11e Gen5 GL*/
5999 TPACPI_Q_LNV3('R', '1', 'D', true), /* 11e Gen5 GL-R*/
6000 TPACPI_Q_LNV3('R', '0', 'V', true), /* 11e Gen5 KL-Y*/
6001 };
6002
6003 static enum thermal_access_mode thermal_read_mode;
6004 static bool thermal_use_labels;
6005 static bool thermal_with_ns_address; /* Non-standard thermal reg address */
6006
6007 /* Function to check thermal read mode */
thermal_read_mode_check(void)6008 static enum thermal_access_mode __init thermal_read_mode_check(void)
6009 {
6010 u8 t, ta1, ta2, ver = 0;
6011 int i;
6012 int acpi_tmp7;
6013
6014 acpi_tmp7 = acpi_evalf(ec_handle, NULL, "TMP7", "qv");
6015
6016 if (thinkpad_id.ec_model) {
6017 /*
6018 * Direct EC access mode: sensors at registers 0x78-0x7F,
6019 * 0xC0-0xC7. Registers return 0x00 for non-implemented,
6020 * thermal sensors return 0x80 when not available.
6021 *
6022 * In some special cases (when Power Supply ID is 0xC2)
6023 * above rule causes thermal control issues. Offset 0xEF
6024 * determines EC version. 0xC0-0xC7 are not thermal registers
6025 * in Ver 3.
6026 */
6027 if (!acpi_ec_read(TP_EC_FUNCREV, &ver))
6028 pr_warn("Thinkpad ACPI EC unable to access EC version\n");
6029
6030 /* Quirks to check non-standard EC */
6031 thermal_with_ns_address = tpacpi_check_quirks(thermal_quirk_table,
6032 ARRAY_SIZE(thermal_quirk_table));
6033
6034 /* Support for Thinkpads with non-standard address */
6035 if (thermal_with_ns_address) {
6036 pr_info("ECFW with non-standard thermal registers found\n");
6037 return TPACPI_THERMAL_TPEC_12;
6038 }
6039
6040 ta1 = ta2 = 0;
6041 for (i = 0; i < 8; i++) {
6042 if (acpi_ec_read(TP_EC_THERMAL_TMP0 + i, &t)) {
6043 ta1 |= t;
6044 } else {
6045 ta1 = 0;
6046 break;
6047 }
6048 if (ver < 3) {
6049 if (acpi_ec_read(TP_EC_THERMAL_TMP8 + i, &t)) {
6050 ta2 |= t;
6051 } else {
6052 ta1 = 0;
6053 break;
6054 }
6055 }
6056 }
6057
6058 if (ta1 == 0) {
6059 /* This is sheer paranoia, but we handle it anyway */
6060 if (acpi_tmp7) {
6061 pr_err("ThinkPad ACPI EC access misbehaving, falling back to ACPI TMPx access mode\n");
6062 return TPACPI_THERMAL_ACPI_TMP07;
6063 }
6064 pr_err("ThinkPad ACPI EC access misbehaving, disabling thermal sensors access\n");
6065 return TPACPI_THERMAL_NONE;
6066 }
6067
6068 if (ver >= 3) {
6069 thermal_use_labels = true;
6070 return TPACPI_THERMAL_TPEC_8;
6071 }
6072
6073 return (ta2 != 0) ? TPACPI_THERMAL_TPEC_16 : TPACPI_THERMAL_TPEC_8;
6074 }
6075
6076 if (acpi_tmp7) {
6077 if (tpacpi_is_ibm() && acpi_evalf(ec_handle, NULL, "UPDT", "qv")) {
6078 /* 600e/x, 770e, 770x */
6079 return TPACPI_THERMAL_ACPI_UPDT;
6080 }
6081 /* IBM/LENOVO DSDT EC.TMPx access, max 8 sensors */
6082 return TPACPI_THERMAL_ACPI_TMP07;
6083 }
6084
6085 /* temperatures not supported on 570, G4x, R30, R31, R32 */
6086 return TPACPI_THERMAL_NONE;
6087 }
6088
6089 /* idx is zero-based */
thermal_get_sensor(int idx,s32 * value)6090 static int thermal_get_sensor(int idx, s32 *value)
6091 {
6092 int t;
6093 s8 tmp;
6094 char tmpi[5];
6095
6096 t = TP_EC_THERMAL_TMP0;
6097
6098 switch (thermal_read_mode) {
6099 #if TPACPI_MAX_THERMAL_SENSORS >= 16
6100 case TPACPI_THERMAL_TPEC_16:
6101 if (idx >= 8 && idx <= 15) {
6102 t = TP_EC_THERMAL_TMP8;
6103 idx -= 8;
6104 }
6105 #endif
6106 fallthrough;
6107 case TPACPI_THERMAL_TPEC_8:
6108 if (idx <= 7) {
6109 if (!acpi_ec_read(t + idx, &tmp))
6110 return -EIO;
6111 *value = tmp * 1000;
6112 return 0;
6113 }
6114 break;
6115
6116 /* The Non-standard EC uses 12 Thermal areas */
6117 case TPACPI_THERMAL_TPEC_12:
6118 if (idx >= 12)
6119 return -EINVAL;
6120
6121 t = idx < 8 ? TP_EC_THERMAL_TMP0_NS + idx :
6122 TP_EC_THERMAL_TMP8_NS + (idx - 8);
6123
6124 if (!acpi_ec_read(t, &tmp))
6125 return -EIO;
6126
6127 *value = tmp * MILLIDEGREE_PER_DEGREE;
6128 return 0;
6129
6130 case TPACPI_THERMAL_ACPI_UPDT:
6131 if (idx <= 7) {
6132 snprintf(tmpi, sizeof(tmpi), "TMP%c", '0' + idx);
6133 if (!acpi_evalf(ec_handle, NULL, "UPDT", "v"))
6134 return -EIO;
6135 if (!acpi_evalf(ec_handle, &t, tmpi, "d"))
6136 return -EIO;
6137 *value = (t - 2732) * 100;
6138 return 0;
6139 }
6140 break;
6141
6142 case TPACPI_THERMAL_ACPI_TMP07:
6143 if (idx <= 7) {
6144 snprintf(tmpi, sizeof(tmpi), "TMP%c", '0' + idx);
6145 if (!acpi_evalf(ec_handle, &t, tmpi, "d"))
6146 return -EIO;
6147 if (t > 127 || t < -127)
6148 t = TP_EC_THERMAL_TMP_NA;
6149 *value = t * 1000;
6150 return 0;
6151 }
6152 break;
6153
6154 case TPACPI_THERMAL_NONE:
6155 default:
6156 return -ENOSYS;
6157 }
6158
6159 return -EINVAL;
6160 }
6161
thermal_get_sensors(struct ibm_thermal_sensors_struct * s)6162 static int thermal_get_sensors(struct ibm_thermal_sensors_struct *s)
6163 {
6164 int res, i, n;
6165
6166 if (!s)
6167 return -EINVAL;
6168
6169 if (thermal_read_mode == TPACPI_THERMAL_TPEC_16)
6170 n = 16;
6171 else if (thermal_read_mode == TPACPI_THERMAL_TPEC_12)
6172 n = 12;
6173 else
6174 n = 8;
6175
6176 for (i = 0 ; i < n; i++) {
6177 res = thermal_get_sensor(i, &s->temp[i]);
6178 if (res)
6179 return res;
6180 }
6181
6182 return n;
6183 }
6184
thermal_dump_all_sensors(void)6185 static void thermal_dump_all_sensors(void)
6186 {
6187 int n, i;
6188 struct ibm_thermal_sensors_struct t;
6189
6190 n = thermal_get_sensors(&t);
6191 if (n <= 0)
6192 return;
6193
6194 pr_notice("temperatures (Celsius):");
6195
6196 for (i = 0; i < n; i++) {
6197 if (t.temp[i] != TPACPI_THERMAL_SENSOR_NA)
6198 pr_cont(" %d", (int)(t.temp[i] / 1000));
6199 else
6200 pr_cont(" N/A");
6201 }
6202
6203 pr_cont("\n");
6204 }
6205
6206 /* sysfs temp##_input -------------------------------------------------- */
6207
thermal_temp_input_show(struct device * dev,struct device_attribute * attr,char * buf)6208 static ssize_t thermal_temp_input_show(struct device *dev,
6209 struct device_attribute *attr,
6210 char *buf)
6211 {
6212 struct sensor_device_attribute *sensor_attr =
6213 to_sensor_dev_attr(attr);
6214 int idx = sensor_attr->index;
6215 s32 value;
6216 int res;
6217
6218 res = thermal_get_sensor(idx, &value);
6219 if (res)
6220 return res;
6221 if (value == TPACPI_THERMAL_SENSOR_NA)
6222 return -ENXIO;
6223
6224 return sysfs_emit(buf, "%d\n", value);
6225 }
6226
6227 #define THERMAL_SENSOR_ATTR_TEMP(_idxA, _idxB) \
6228 SENSOR_ATTR(temp##_idxA##_input, S_IRUGO, \
6229 thermal_temp_input_show, NULL, _idxB)
6230
6231 static struct sensor_device_attribute sensor_dev_attr_thermal_temp_input[] = {
6232 THERMAL_SENSOR_ATTR_TEMP(1, 0),
6233 THERMAL_SENSOR_ATTR_TEMP(2, 1),
6234 THERMAL_SENSOR_ATTR_TEMP(3, 2),
6235 THERMAL_SENSOR_ATTR_TEMP(4, 3),
6236 THERMAL_SENSOR_ATTR_TEMP(5, 4),
6237 THERMAL_SENSOR_ATTR_TEMP(6, 5),
6238 THERMAL_SENSOR_ATTR_TEMP(7, 6),
6239 THERMAL_SENSOR_ATTR_TEMP(8, 7),
6240 THERMAL_SENSOR_ATTR_TEMP(9, 8),
6241 THERMAL_SENSOR_ATTR_TEMP(10, 9),
6242 THERMAL_SENSOR_ATTR_TEMP(11, 10),
6243 THERMAL_SENSOR_ATTR_TEMP(12, 11),
6244 THERMAL_SENSOR_ATTR_TEMP(13, 12),
6245 THERMAL_SENSOR_ATTR_TEMP(14, 13),
6246 THERMAL_SENSOR_ATTR_TEMP(15, 14),
6247 THERMAL_SENSOR_ATTR_TEMP(16, 15),
6248 };
6249
6250 #define THERMAL_ATTRS(X) \
6251 &sensor_dev_attr_thermal_temp_input[X].dev_attr.attr
6252
6253 static struct attribute *thermal_temp_input_attr[] = {
6254 THERMAL_ATTRS(0),
6255 THERMAL_ATTRS(1),
6256 THERMAL_ATTRS(2),
6257 THERMAL_ATTRS(3),
6258 THERMAL_ATTRS(4),
6259 THERMAL_ATTRS(5),
6260 THERMAL_ATTRS(6),
6261 THERMAL_ATTRS(7),
6262 THERMAL_ATTRS(8),
6263 THERMAL_ATTRS(9),
6264 THERMAL_ATTRS(10),
6265 THERMAL_ATTRS(11),
6266 THERMAL_ATTRS(12),
6267 THERMAL_ATTRS(13),
6268 THERMAL_ATTRS(14),
6269 THERMAL_ATTRS(15),
6270 NULL
6271 };
6272
6273 #define to_dev_attr(_attr) container_of(_attr, struct device_attribute, attr)
6274
thermal_attr_is_visible(struct kobject * kobj,struct attribute * attr,int n)6275 static umode_t thermal_attr_is_visible(struct kobject *kobj,
6276 struct attribute *attr, int n)
6277 {
6278 struct device_attribute *dev_attr = to_dev_attr(attr);
6279 struct sensor_device_attribute *sensor_attr =
6280 to_sensor_dev_attr(dev_attr);
6281
6282 int idx = sensor_attr->index;
6283
6284 switch (thermal_read_mode) {
6285 case TPACPI_THERMAL_NONE:
6286 return 0;
6287
6288 case TPACPI_THERMAL_ACPI_TMP07:
6289 case TPACPI_THERMAL_ACPI_UPDT:
6290 case TPACPI_THERMAL_TPEC_8:
6291 if (idx >= 8)
6292 return 0;
6293 break;
6294
6295 case TPACPI_THERMAL_TPEC_12:
6296 if (idx >= 12)
6297 return 0;
6298 break;
6299
6300 default:
6301 break;
6302
6303 }
6304
6305 return attr->mode;
6306 }
6307
6308 static const struct attribute_group thermal_attr_group = {
6309 .is_visible = thermal_attr_is_visible,
6310 .attrs = thermal_temp_input_attr,
6311 };
6312
6313 #undef THERMAL_SENSOR_ATTR_TEMP
6314 #undef THERMAL_ATTRS
6315
temp1_label_show(struct device * dev,struct device_attribute * attr,char * buf)6316 static ssize_t temp1_label_show(struct device *dev, struct device_attribute *attr, char *buf)
6317 {
6318 return sysfs_emit(buf, "CPU\n");
6319 }
6320 static DEVICE_ATTR_RO(temp1_label);
6321
temp2_label_show(struct device * dev,struct device_attribute * attr,char * buf)6322 static ssize_t temp2_label_show(struct device *dev, struct device_attribute *attr, char *buf)
6323 {
6324 return sysfs_emit(buf, "GPU\n");
6325 }
6326 static DEVICE_ATTR_RO(temp2_label);
6327
6328 static struct attribute *temp_label_attributes[] = {
6329 &dev_attr_temp1_label.attr,
6330 &dev_attr_temp2_label.attr,
6331 NULL
6332 };
6333
temp_label_attr_is_visible(struct kobject * kobj,struct attribute * attr,int n)6334 static umode_t temp_label_attr_is_visible(struct kobject *kobj,
6335 struct attribute *attr, int n)
6336 {
6337 return thermal_use_labels ? attr->mode : 0;
6338 }
6339
6340 static const struct attribute_group temp_label_attr_group = {
6341 .is_visible = temp_label_attr_is_visible,
6342 .attrs = temp_label_attributes,
6343 };
6344
6345 /* --------------------------------------------------------------------- */
6346
thermal_init(struct ibm_init_struct * iibm)6347 static int __init thermal_init(struct ibm_init_struct *iibm)
6348 {
6349 vdbg_printk(TPACPI_DBG_INIT, "initializing thermal subdriver\n");
6350
6351 thermal_read_mode = thermal_read_mode_check();
6352
6353 vdbg_printk(TPACPI_DBG_INIT, "thermal is %s, mode %d\n",
6354 str_supported(thermal_read_mode != TPACPI_THERMAL_NONE),
6355 thermal_read_mode);
6356
6357 return thermal_read_mode != TPACPI_THERMAL_NONE ? 0 : -ENODEV;
6358 }
6359
thermal_read(struct seq_file * m)6360 static int thermal_read(struct seq_file *m)
6361 {
6362 int n, i;
6363 struct ibm_thermal_sensors_struct t;
6364
6365 n = thermal_get_sensors(&t);
6366 if (unlikely(n < 0))
6367 return n;
6368
6369 seq_printf(m, "temperatures:\t");
6370
6371 if (n > 0) {
6372 for (i = 0; i < (n - 1); i++)
6373 seq_printf(m, "%d ", t.temp[i] / 1000);
6374 seq_printf(m, "%d\n", t.temp[i] / 1000);
6375 } else
6376 seq_printf(m, "not supported\n");
6377
6378 return 0;
6379 }
6380
6381 static struct ibm_struct thermal_driver_data = {
6382 .name = "thermal",
6383 .read = thermal_read,
6384 };
6385
6386 /*************************************************************************
6387 * Backlight/brightness subdriver
6388 */
6389
6390 #define TPACPI_BACKLIGHT_DEV_NAME "thinkpad_screen"
6391
6392 /*
6393 * ThinkPads can read brightness from two places: EC HBRV (0x31), or
6394 * CMOS NVRAM byte 0x5E, bits 0-3.
6395 *
6396 * EC HBRV (0x31) has the following layout
6397 * Bit 7: unknown function
6398 * Bit 6: unknown function
6399 * Bit 5: Z: honour scale changes, NZ: ignore scale changes
6400 * Bit 4: must be set to zero to avoid problems
6401 * Bit 3-0: backlight brightness level
6402 *
6403 * brightness_get_raw returns status data in the HBRV layout
6404 *
6405 * WARNING: The X61 has been verified to use HBRV for something else, so
6406 * this should be used _only_ on IBM ThinkPads, and maybe with some careful
6407 * testing on the very early *60 Lenovo models...
6408 */
6409
6410 enum {
6411 TP_EC_BACKLIGHT = 0x31,
6412
6413 /* TP_EC_BACKLIGHT bitmasks */
6414 TP_EC_BACKLIGHT_LVLMSK = 0x1F,
6415 TP_EC_BACKLIGHT_CMDMSK = 0xE0,
6416 TP_EC_BACKLIGHT_MAPSW = 0x20,
6417 };
6418
6419 enum tpacpi_brightness_access_mode {
6420 TPACPI_BRGHT_MODE_AUTO = 0, /* Not implemented yet */
6421 TPACPI_BRGHT_MODE_EC, /* EC control */
6422 TPACPI_BRGHT_MODE_UCMS_STEP, /* UCMS step-based control */
6423 TPACPI_BRGHT_MODE_ECNVRAM, /* EC control w/ NVRAM store */
6424 TPACPI_BRGHT_MODE_MAX
6425 };
6426
6427 static struct backlight_device *ibm_backlight_device;
6428
6429 static enum tpacpi_brightness_access_mode brightness_mode =
6430 TPACPI_BRGHT_MODE_MAX;
6431
6432 static unsigned int brightness_enable = 2; /* 2 = auto, 0 = no, 1 = yes */
6433
6434 static struct mutex brightness_mutex;
6435
6436 /* NVRAM brightness access */
tpacpi_brightness_nvram_get(void)6437 static unsigned int tpacpi_brightness_nvram_get(void)
6438 {
6439 u8 lnvram;
6440
6441 lockdep_assert_held(&brightness_mutex);
6442
6443 lnvram = (nvram_read_byte(TP_NVRAM_ADDR_BRIGHTNESS)
6444 & TP_NVRAM_MASK_LEVEL_BRIGHTNESS)
6445 >> TP_NVRAM_POS_LEVEL_BRIGHTNESS;
6446 lnvram &= bright_maxlvl;
6447
6448 return lnvram;
6449 }
6450
tpacpi_brightness_checkpoint_nvram(void)6451 static void tpacpi_brightness_checkpoint_nvram(void)
6452 {
6453 u8 lec = 0;
6454 u8 b_nvram;
6455
6456 if (brightness_mode != TPACPI_BRGHT_MODE_ECNVRAM)
6457 return;
6458
6459 vdbg_printk(TPACPI_DBG_BRGHT,
6460 "trying to checkpoint backlight level to NVRAM...\n");
6461
6462 if (mutex_lock_killable(&brightness_mutex) < 0)
6463 return;
6464
6465 if (unlikely(!acpi_ec_read(TP_EC_BACKLIGHT, &lec)))
6466 goto unlock;
6467 lec &= TP_EC_BACKLIGHT_LVLMSK;
6468 b_nvram = nvram_read_byte(TP_NVRAM_ADDR_BRIGHTNESS);
6469
6470 if (lec != ((b_nvram & TP_NVRAM_MASK_LEVEL_BRIGHTNESS)
6471 >> TP_NVRAM_POS_LEVEL_BRIGHTNESS)) {
6472 /* NVRAM needs update */
6473 b_nvram &= ~(TP_NVRAM_MASK_LEVEL_BRIGHTNESS <<
6474 TP_NVRAM_POS_LEVEL_BRIGHTNESS);
6475 b_nvram |= lec;
6476 nvram_write_byte(b_nvram, TP_NVRAM_ADDR_BRIGHTNESS);
6477 dbg_printk(TPACPI_DBG_BRGHT,
6478 "updated NVRAM backlight level to %u (0x%02x)\n",
6479 (unsigned int) lec, (unsigned int) b_nvram);
6480 } else
6481 vdbg_printk(TPACPI_DBG_BRGHT,
6482 "NVRAM backlight level already is %u (0x%02x)\n",
6483 (unsigned int) lec, (unsigned int) b_nvram);
6484
6485 unlock:
6486 mutex_unlock(&brightness_mutex);
6487 }
6488
6489
tpacpi_brightness_get_raw(int * status)6490 static int tpacpi_brightness_get_raw(int *status)
6491 {
6492 u8 lec = 0;
6493
6494 lockdep_assert_held(&brightness_mutex);
6495
6496 switch (brightness_mode) {
6497 case TPACPI_BRGHT_MODE_UCMS_STEP:
6498 *status = tpacpi_brightness_nvram_get();
6499 return 0;
6500 case TPACPI_BRGHT_MODE_EC:
6501 case TPACPI_BRGHT_MODE_ECNVRAM:
6502 if (unlikely(!acpi_ec_read(TP_EC_BACKLIGHT, &lec)))
6503 return -EIO;
6504 *status = lec;
6505 return 0;
6506 default:
6507 return -ENXIO;
6508 }
6509 }
6510
6511 /* do NOT call with illegal backlight level value */
tpacpi_brightness_set_ec(unsigned int value)6512 static int tpacpi_brightness_set_ec(unsigned int value)
6513 {
6514 u8 lec = 0;
6515
6516 lockdep_assert_held(&brightness_mutex);
6517
6518 if (unlikely(!acpi_ec_read(TP_EC_BACKLIGHT, &lec)))
6519 return -EIO;
6520
6521 if (unlikely(!acpi_ec_write(TP_EC_BACKLIGHT,
6522 (lec & TP_EC_BACKLIGHT_CMDMSK) |
6523 (value & TP_EC_BACKLIGHT_LVLMSK))))
6524 return -EIO;
6525
6526 return 0;
6527 }
6528
tpacpi_brightness_set_ucmsstep(unsigned int value)6529 static int tpacpi_brightness_set_ucmsstep(unsigned int value)
6530 {
6531 int cmos_cmd, inc;
6532 unsigned int current_value, i;
6533
6534 lockdep_assert_held(&brightness_mutex);
6535
6536 current_value = tpacpi_brightness_nvram_get();
6537
6538 if (value == current_value)
6539 return 0;
6540
6541 cmos_cmd = (value > current_value) ?
6542 TP_CMOS_BRIGHTNESS_UP :
6543 TP_CMOS_BRIGHTNESS_DOWN;
6544 inc = (value > current_value) ? 1 : -1;
6545
6546 for (i = current_value; i != value; i += inc)
6547 if (issue_thinkpad_cmos_command(cmos_cmd))
6548 return -EIO;
6549
6550 return 0;
6551 }
6552
6553 /* May return EINTR which can always be mapped to ERESTARTSYS */
brightness_set(unsigned int value)6554 static int brightness_set(unsigned int value)
6555 {
6556 int res;
6557
6558 if (value > bright_maxlvl)
6559 return -EINVAL;
6560
6561 vdbg_printk(TPACPI_DBG_BRGHT,
6562 "set backlight level to %d\n", value);
6563
6564 res = mutex_lock_killable(&brightness_mutex);
6565 if (res < 0)
6566 return res;
6567
6568 switch (brightness_mode) {
6569 case TPACPI_BRGHT_MODE_EC:
6570 case TPACPI_BRGHT_MODE_ECNVRAM:
6571 res = tpacpi_brightness_set_ec(value);
6572 break;
6573 case TPACPI_BRGHT_MODE_UCMS_STEP:
6574 res = tpacpi_brightness_set_ucmsstep(value);
6575 break;
6576 default:
6577 res = -ENXIO;
6578 }
6579
6580 mutex_unlock(&brightness_mutex);
6581 return res;
6582 }
6583
6584 /* sysfs backlight class ----------------------------------------------- */
6585
brightness_update_status(struct backlight_device * bd)6586 static int brightness_update_status(struct backlight_device *bd)
6587 {
6588 int level = backlight_get_brightness(bd);
6589
6590 dbg_printk(TPACPI_DBG_BRGHT,
6591 "backlight: attempt to set level to %d\n",
6592 level);
6593
6594 /* it is the backlight class's job (caller) to handle
6595 * EINTR and other errors properly */
6596 return brightness_set(level);
6597 }
6598
brightness_get(struct backlight_device * bd)6599 static int brightness_get(struct backlight_device *bd)
6600 {
6601 int status, res;
6602
6603 res = mutex_lock_killable(&brightness_mutex);
6604 if (res < 0)
6605 return 0;
6606
6607 res = tpacpi_brightness_get_raw(&status);
6608
6609 mutex_unlock(&brightness_mutex);
6610
6611 if (res < 0)
6612 return 0;
6613
6614 return status & TP_EC_BACKLIGHT_LVLMSK;
6615 }
6616
tpacpi_brightness_notify_change(void)6617 static void tpacpi_brightness_notify_change(void)
6618 {
6619 backlight_force_update(ibm_backlight_device,
6620 BACKLIGHT_UPDATE_HOTKEY);
6621 }
6622
6623 static const struct backlight_ops ibm_backlight_data = {
6624 .get_brightness = brightness_get,
6625 .update_status = brightness_update_status,
6626 };
6627
6628 /* --------------------------------------------------------------------- */
6629
tpacpi_evaluate_bcl(struct acpi_device * adev,void * not_used)6630 static int __init tpacpi_evaluate_bcl(struct acpi_device *adev, void *not_used)
6631 {
6632 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
6633 union acpi_object *obj;
6634 acpi_status status;
6635 int rc;
6636
6637 status = acpi_evaluate_object(adev->handle, "_BCL", NULL, &buffer);
6638 if (ACPI_FAILURE(status))
6639 return 0;
6640
6641 obj = buffer.pointer;
6642 if (!obj || obj->type != ACPI_TYPE_PACKAGE) {
6643 acpi_handle_info(adev->handle,
6644 "Unknown _BCL data, please report this to %s\n",
6645 TPACPI_MAIL);
6646 rc = 0;
6647 } else {
6648 rc = obj->package.count;
6649 }
6650 kfree(obj);
6651
6652 return rc;
6653 }
6654
6655 /*
6656 * Call _BCL method of video device. On some ThinkPads this will
6657 * switch the firmware to the ACPI brightness control mode.
6658 */
6659
tpacpi_query_bcl_levels(acpi_handle handle)6660 static int __init tpacpi_query_bcl_levels(acpi_handle handle)
6661 {
6662 struct acpi_device *device;
6663
6664 device = acpi_fetch_acpi_dev(handle);
6665 if (!device)
6666 return 0;
6667
6668 return acpi_dev_for_each_child(device, tpacpi_evaluate_bcl, NULL);
6669 }
6670
6671
6672 /*
6673 * Returns 0 (no ACPI _BCL or _BCL invalid), or size of brightness map
6674 */
tpacpi_check_std_acpi_brightness_support(void)6675 static unsigned int __init tpacpi_check_std_acpi_brightness_support(void)
6676 {
6677 acpi_handle video_device;
6678 int bcl_levels = 0;
6679
6680 tpacpi_acpi_handle_locate("video", NULL, &video_device);
6681 if (video_device)
6682 bcl_levels = tpacpi_query_bcl_levels(video_device);
6683
6684 tp_features.bright_acpimode = (bcl_levels > 0);
6685
6686 return (bcl_levels > 2) ? (bcl_levels - 2) : 0;
6687 }
6688
6689 /*
6690 * These are only useful for models that have only one possibility
6691 * of GPU. If the BIOS model handles both ATI and Intel, don't use
6692 * these quirks.
6693 */
6694 #define TPACPI_BRGHT_Q_NOEC 0x0001 /* Must NOT use EC HBRV */
6695 #define TPACPI_BRGHT_Q_EC 0x0002 /* Should or must use EC HBRV */
6696 #define TPACPI_BRGHT_Q_ASK 0x8000 /* Ask for user report */
6697
6698 static const struct tpacpi_quirk brightness_quirk_table[] __initconst = {
6699 /* Models with ATI GPUs known to require ECNVRAM mode */
6700 TPACPI_Q_IBM('1', 'Y', TPACPI_BRGHT_Q_EC), /* T43/p ATI */
6701
6702 /* Models with ATI GPUs that can use ECNVRAM */
6703 TPACPI_Q_IBM('1', 'R', TPACPI_BRGHT_Q_EC), /* R50,51 T40-42 */
6704 TPACPI_Q_IBM('1', 'Q', TPACPI_BRGHT_Q_ASK|TPACPI_BRGHT_Q_EC),
6705 TPACPI_Q_IBM('7', '6', TPACPI_BRGHT_Q_EC), /* R52 */
6706 TPACPI_Q_IBM('7', '8', TPACPI_BRGHT_Q_ASK|TPACPI_BRGHT_Q_EC),
6707
6708 /* Models with Intel Extreme Graphics 2 */
6709 TPACPI_Q_IBM('1', 'U', TPACPI_BRGHT_Q_NOEC), /* X40 */
6710 TPACPI_Q_IBM('1', 'V', TPACPI_BRGHT_Q_ASK|TPACPI_BRGHT_Q_EC),
6711 TPACPI_Q_IBM('1', 'W', TPACPI_BRGHT_Q_ASK|TPACPI_BRGHT_Q_EC),
6712
6713 /* Models with Intel GMA900 */
6714 TPACPI_Q_IBM('7', '0', TPACPI_BRGHT_Q_NOEC), /* T43, R52 */
6715 TPACPI_Q_IBM('7', '4', TPACPI_BRGHT_Q_NOEC), /* X41 */
6716 TPACPI_Q_IBM('7', '5', TPACPI_BRGHT_Q_NOEC), /* X41 Tablet */
6717 };
6718
6719 /*
6720 * Returns < 0 for error, otherwise sets tp_features.bright_*
6721 * and bright_maxlvl.
6722 */
tpacpi_detect_brightness_capabilities(void)6723 static void __init tpacpi_detect_brightness_capabilities(void)
6724 {
6725 unsigned int b;
6726
6727 vdbg_printk(TPACPI_DBG_INIT,
6728 "detecting firmware brightness interface capabilities\n");
6729
6730 /* we could run a quirks check here (same table used by
6731 * brightness_init) if needed */
6732
6733 /*
6734 * We always attempt to detect acpi support, so as to switch
6735 * Lenovo Vista BIOS to ACPI brightness mode even if we are not
6736 * going to publish a backlight interface
6737 */
6738 b = tpacpi_check_std_acpi_brightness_support();
6739 switch (b) {
6740 case 16:
6741 bright_maxlvl = 15;
6742 break;
6743 case 8:
6744 case 0:
6745 bright_maxlvl = 7;
6746 break;
6747 default:
6748 tp_features.bright_unkfw = 1;
6749 bright_maxlvl = b - 1;
6750 }
6751 pr_debug("detected %u brightness levels\n", bright_maxlvl + 1);
6752 }
6753
brightness_init(struct ibm_init_struct * iibm)6754 static int __init brightness_init(struct ibm_init_struct *iibm)
6755 {
6756 struct backlight_properties props;
6757 int b;
6758 unsigned long quirks;
6759
6760 vdbg_printk(TPACPI_DBG_INIT, "initializing brightness subdriver\n");
6761
6762 mutex_init(&brightness_mutex);
6763
6764 quirks = tpacpi_check_quirks(brightness_quirk_table,
6765 ARRAY_SIZE(brightness_quirk_table));
6766
6767 /* tpacpi_detect_brightness_capabilities() must have run already */
6768
6769 /* if it is unknown, we don't handle it: it wouldn't be safe */
6770 if (tp_features.bright_unkfw)
6771 return -ENODEV;
6772
6773 if (!brightness_enable) {
6774 dbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_BRGHT,
6775 "brightness support disabled by module parameter\n");
6776 return -ENODEV;
6777 }
6778
6779 if (acpi_video_get_backlight_type() != acpi_backlight_vendor) {
6780 if (brightness_enable > 1) {
6781 pr_info("Standard ACPI backlight interface available, not loading native one\n");
6782 return -ENODEV;
6783 } else if (brightness_enable == 1) {
6784 pr_warn("Cannot enable backlight brightness support, ACPI is already handling it. Refer to the acpi_backlight kernel parameter.\n");
6785 return -ENODEV;
6786 }
6787 } else if (!tp_features.bright_acpimode) {
6788 pr_notice("ACPI backlight interface not available\n");
6789 return -ENODEV;
6790 }
6791
6792 pr_notice("ACPI native brightness control enabled\n");
6793
6794 /*
6795 * Check for module parameter bogosity, note that we
6796 * init brightness_mode to TPACPI_BRGHT_MODE_MAX in order to be
6797 * able to detect "unspecified"
6798 */
6799 if (brightness_mode > TPACPI_BRGHT_MODE_MAX)
6800 return -EINVAL;
6801
6802 /* TPACPI_BRGHT_MODE_AUTO not implemented yet, just use default */
6803 if (brightness_mode == TPACPI_BRGHT_MODE_AUTO ||
6804 brightness_mode == TPACPI_BRGHT_MODE_MAX) {
6805 if (quirks & TPACPI_BRGHT_Q_EC)
6806 brightness_mode = TPACPI_BRGHT_MODE_ECNVRAM;
6807 else
6808 brightness_mode = TPACPI_BRGHT_MODE_UCMS_STEP;
6809
6810 dbg_printk(TPACPI_DBG_BRGHT,
6811 "driver auto-selected brightness_mode=%d\n",
6812 brightness_mode);
6813 }
6814
6815 /* Safety */
6816 if (!tpacpi_is_ibm() &&
6817 (brightness_mode == TPACPI_BRGHT_MODE_ECNVRAM ||
6818 brightness_mode == TPACPI_BRGHT_MODE_EC))
6819 return -EINVAL;
6820
6821 if (tpacpi_brightness_get_raw(&b) < 0)
6822 return -ENODEV;
6823
6824 memset(&props, 0, sizeof(struct backlight_properties));
6825 props.type = BACKLIGHT_PLATFORM;
6826 props.max_brightness = bright_maxlvl;
6827 props.brightness = b & TP_EC_BACKLIGHT_LVLMSK;
6828 ibm_backlight_device = backlight_device_register(TPACPI_BACKLIGHT_DEV_NAME,
6829 NULL, NULL,
6830 &ibm_backlight_data,
6831 &props);
6832 if (IS_ERR(ibm_backlight_device)) {
6833 int rc = PTR_ERR(ibm_backlight_device);
6834 ibm_backlight_device = NULL;
6835 pr_err("Could not register backlight device\n");
6836 return rc;
6837 }
6838 vdbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_BRGHT,
6839 "brightness is supported\n");
6840
6841 if (quirks & TPACPI_BRGHT_Q_ASK) {
6842 pr_notice("brightness: will use unverified default: brightness_mode=%d\n",
6843 brightness_mode);
6844 pr_notice("brightness: please report to %s whether it works well or not on your ThinkPad\n",
6845 TPACPI_MAIL);
6846 }
6847
6848 /* Added by mistake in early 2007. Probably useless, but it could
6849 * be working around some unknown firmware problem where the value
6850 * read at startup doesn't match the real hardware state... so leave
6851 * it in place just in case */
6852 backlight_update_status(ibm_backlight_device);
6853
6854 vdbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_BRGHT,
6855 "brightness: registering brightness hotkeys as change notification\n");
6856 tpacpi_hotkey_driver_mask_set(hotkey_driver_mask
6857 | TP_ACPI_HKEY_BRGHTUP_MASK
6858 | TP_ACPI_HKEY_BRGHTDWN_MASK);
6859 return 0;
6860 }
6861
brightness_suspend(void)6862 static void brightness_suspend(void)
6863 {
6864 tpacpi_brightness_checkpoint_nvram();
6865 }
6866
brightness_shutdown(void)6867 static void brightness_shutdown(void)
6868 {
6869 tpacpi_brightness_checkpoint_nvram();
6870 }
6871
brightness_exit(void)6872 static void brightness_exit(void)
6873 {
6874 if (ibm_backlight_device) {
6875 vdbg_printk(TPACPI_DBG_EXIT | TPACPI_DBG_BRGHT,
6876 "calling backlight_device_unregister()\n");
6877 backlight_device_unregister(ibm_backlight_device);
6878 }
6879
6880 tpacpi_brightness_checkpoint_nvram();
6881 }
6882
brightness_read(struct seq_file * m)6883 static int brightness_read(struct seq_file *m)
6884 {
6885 int level;
6886
6887 level = brightness_get(NULL);
6888 if (level < 0) {
6889 seq_printf(m, "level:\t\tunreadable\n");
6890 } else {
6891 seq_printf(m, "level:\t\t%d\n", level);
6892 seq_printf(m, "commands:\tup, down\n");
6893 seq_printf(m, "commands:\tlevel <level> (<level> is 0-%d)\n",
6894 bright_maxlvl);
6895 }
6896
6897 return 0;
6898 }
6899
brightness_write(char * buf)6900 static int brightness_write(char *buf)
6901 {
6902 int level;
6903 int rc;
6904 char *cmd;
6905
6906 level = brightness_get(NULL);
6907 if (level < 0)
6908 return level;
6909
6910 while ((cmd = strsep(&buf, ","))) {
6911 if (strstarts(cmd, "up")) {
6912 if (level < bright_maxlvl)
6913 level++;
6914 } else if (strstarts(cmd, "down")) {
6915 if (level > 0)
6916 level--;
6917 } else if (sscanf(cmd, "level %d", &level) == 1 &&
6918 level >= 0 && level <= bright_maxlvl) {
6919 /* new level set */
6920 } else
6921 return -EINVAL;
6922 }
6923
6924 tpacpi_disclose_usertask("procfs brightness",
6925 "set level to %d\n", level);
6926
6927 /*
6928 * Now we know what the final level should be, so we try to set it.
6929 * Doing it this way makes the syscall restartable in case of EINTR
6930 */
6931 rc = brightness_set(level);
6932 if (!rc && ibm_backlight_device)
6933 backlight_force_update(ibm_backlight_device,
6934 BACKLIGHT_UPDATE_SYSFS);
6935 return (rc == -EINTR) ? -ERESTARTSYS : rc;
6936 }
6937
6938 static struct ibm_struct brightness_driver_data = {
6939 .name = "brightness",
6940 .read = brightness_read,
6941 .write = brightness_write,
6942 .exit = brightness_exit,
6943 .suspend = brightness_suspend,
6944 .shutdown = brightness_shutdown,
6945 };
6946
6947 /*************************************************************************
6948 * Volume subdriver
6949 */
6950
6951 /*
6952 * IBM ThinkPads have a simple volume controller with MUTE gating.
6953 * Very early Lenovo ThinkPads follow the IBM ThinkPad spec.
6954 *
6955 * Since the *61 series (and probably also the later *60 series), Lenovo
6956 * ThinkPads only implement the MUTE gate.
6957 *
6958 * EC register 0x30
6959 * Bit 6: MUTE (1 mutes sound)
6960 * Bit 3-0: Volume
6961 * Other bits should be zero as far as we know.
6962 *
6963 * This is also stored in CMOS NVRAM, byte 0x60, bit 6 (MUTE), and
6964 * bits 3-0 (volume). Other bits in NVRAM may have other functions,
6965 * such as bit 7 which is used to detect repeated presses of MUTE,
6966 * and we leave them unchanged.
6967 *
6968 * On newer Lenovo ThinkPads, the EC can automatically change the volume
6969 * in response to user input. Unfortunately, this rarely works well.
6970 * The laptop changes the state of its internal MUTE gate and, on some
6971 * models, sends KEY_MUTE, causing any user code that responds to the
6972 * mute button to get confused. The hardware MUTE gate is also
6973 * unnecessary, since user code can handle the mute button without
6974 * kernel or EC help.
6975 *
6976 * To avoid confusing userspace, we simply disable all EC-based mute
6977 * and volume controls when possible.
6978 */
6979
6980 #ifdef CONFIG_THINKPAD_ACPI_ALSA_SUPPORT
6981
6982 #define TPACPI_ALSA_DRVNAME "ThinkPad EC"
6983 #define TPACPI_ALSA_SHRTNAME "ThinkPad Console Audio Control"
6984 #define TPACPI_ALSA_MIXERNAME TPACPI_ALSA_SHRTNAME
6985
6986 #if SNDRV_CARDS <= 32
6987 #define DEFAULT_ALSA_IDX ~((1 << (SNDRV_CARDS - 3)) - 1)
6988 #else
6989 #define DEFAULT_ALSA_IDX ~((1 << (32 - 3)) - 1)
6990 #endif
6991 static int alsa_index = DEFAULT_ALSA_IDX; /* last three slots */
6992 static char *alsa_id = "ThinkPadEC";
6993 static bool alsa_enable = SNDRV_DEFAULT_ENABLE1;
6994
6995 struct tpacpi_alsa_data {
6996 struct snd_card *card;
6997 struct snd_ctl_elem_id *ctl_mute_id;
6998 struct snd_ctl_elem_id *ctl_vol_id;
6999 };
7000
7001 static struct snd_card *alsa_card;
7002
7003 enum {
7004 TP_EC_AUDIO = 0x30,
7005
7006 /* TP_EC_AUDIO bits */
7007 TP_EC_AUDIO_MUTESW = 6,
7008
7009 /* TP_EC_AUDIO bitmasks */
7010 TP_EC_AUDIO_LVL_MSK = 0x0F,
7011 TP_EC_AUDIO_MUTESW_MSK = (1 << TP_EC_AUDIO_MUTESW),
7012
7013 /* Maximum volume */
7014 TP_EC_VOLUME_MAX = 14,
7015 };
7016
7017 enum tpacpi_volume_access_mode {
7018 TPACPI_VOL_MODE_AUTO = 0, /* Not implemented yet */
7019 TPACPI_VOL_MODE_EC, /* Pure EC control */
7020 TPACPI_VOL_MODE_UCMS_STEP, /* UCMS step-based control: N/A */
7021 TPACPI_VOL_MODE_ECNVRAM, /* EC control w/ NVRAM store */
7022 TPACPI_VOL_MODE_MAX
7023 };
7024
7025 enum tpacpi_volume_capabilities {
7026 TPACPI_VOL_CAP_AUTO = 0, /* Use white/blacklist */
7027 TPACPI_VOL_CAP_VOLMUTE, /* Output vol and mute */
7028 TPACPI_VOL_CAP_MUTEONLY, /* Output mute only */
7029 TPACPI_VOL_CAP_MAX
7030 };
7031
7032 enum tpacpi_mute_btn_mode {
7033 TP_EC_MUTE_BTN_LATCH = 0, /* Mute mutes; up/down unmutes */
7034 /* We don't know what mode 1 is. */
7035 TP_EC_MUTE_BTN_NONE = 2, /* Mute and up/down are just keys */
7036 TP_EC_MUTE_BTN_TOGGLE = 3, /* Mute toggles; up/down unmutes */
7037 };
7038
7039 static enum tpacpi_volume_access_mode volume_mode =
7040 TPACPI_VOL_MODE_MAX;
7041
7042 static enum tpacpi_volume_capabilities volume_capabilities;
7043 static bool volume_control_allowed;
7044 static bool software_mute_requested = true;
7045 static bool software_mute_active;
7046 static int software_mute_orig_mode;
7047
7048 /*
7049 * Used to syncronize writers to TP_EC_AUDIO and
7050 * TP_NVRAM_ADDR_MIXER, as we need to do read-modify-write
7051 */
7052 static struct mutex volume_mutex;
7053
tpacpi_volume_checkpoint_nvram(void)7054 static void tpacpi_volume_checkpoint_nvram(void)
7055 {
7056 u8 lec = 0;
7057 u8 b_nvram;
7058 u8 ec_mask;
7059
7060 if (volume_mode != TPACPI_VOL_MODE_ECNVRAM)
7061 return;
7062 if (!volume_control_allowed)
7063 return;
7064 if (software_mute_active)
7065 return;
7066
7067 vdbg_printk(TPACPI_DBG_MIXER,
7068 "trying to checkpoint mixer state to NVRAM...\n");
7069
7070 if (tp_features.mixer_no_level_control)
7071 ec_mask = TP_EC_AUDIO_MUTESW_MSK;
7072 else
7073 ec_mask = TP_EC_AUDIO_MUTESW_MSK | TP_EC_AUDIO_LVL_MSK;
7074
7075 if (mutex_lock_killable(&volume_mutex) < 0)
7076 return;
7077
7078 if (unlikely(!acpi_ec_read(TP_EC_AUDIO, &lec)))
7079 goto unlock;
7080 lec &= ec_mask;
7081 b_nvram = nvram_read_byte(TP_NVRAM_ADDR_MIXER);
7082
7083 if (lec != (b_nvram & ec_mask)) {
7084 /* NVRAM needs update */
7085 b_nvram &= ~ec_mask;
7086 b_nvram |= lec;
7087 nvram_write_byte(b_nvram, TP_NVRAM_ADDR_MIXER);
7088 dbg_printk(TPACPI_DBG_MIXER,
7089 "updated NVRAM mixer status to 0x%02x (0x%02x)\n",
7090 (unsigned int) lec, (unsigned int) b_nvram);
7091 } else {
7092 vdbg_printk(TPACPI_DBG_MIXER,
7093 "NVRAM mixer status already is 0x%02x (0x%02x)\n",
7094 (unsigned int) lec, (unsigned int) b_nvram);
7095 }
7096
7097 unlock:
7098 mutex_unlock(&volume_mutex);
7099 }
7100
volume_get_status_ec(u8 * status)7101 static int volume_get_status_ec(u8 *status)
7102 {
7103 u8 s;
7104
7105 if (!acpi_ec_read(TP_EC_AUDIO, &s))
7106 return -EIO;
7107
7108 *status = s;
7109
7110 dbg_printk(TPACPI_DBG_MIXER, "status 0x%02x\n", s);
7111
7112 return 0;
7113 }
7114
volume_get_status(u8 * status)7115 static int volume_get_status(u8 *status)
7116 {
7117 return volume_get_status_ec(status);
7118 }
7119
volume_set_status_ec(const u8 status)7120 static int volume_set_status_ec(const u8 status)
7121 {
7122 if (!acpi_ec_write(TP_EC_AUDIO, status))
7123 return -EIO;
7124
7125 dbg_printk(TPACPI_DBG_MIXER, "set EC mixer to 0x%02x\n", status);
7126
7127 /*
7128 * On X200s, and possibly on others, it can take a while for
7129 * reads to become correct.
7130 */
7131 msleep(1);
7132
7133 return 0;
7134 }
7135
volume_set_status(const u8 status)7136 static int volume_set_status(const u8 status)
7137 {
7138 return volume_set_status_ec(status);
7139 }
7140
7141 /* returns < 0 on error, 0 on no change, 1 on change */
__volume_set_mute_ec(const bool mute)7142 static int __volume_set_mute_ec(const bool mute)
7143 {
7144 int rc;
7145 u8 s, n;
7146
7147 if (mutex_lock_killable(&volume_mutex) < 0)
7148 return -EINTR;
7149
7150 rc = volume_get_status_ec(&s);
7151 if (rc)
7152 goto unlock;
7153
7154 n = (mute) ? s | TP_EC_AUDIO_MUTESW_MSK :
7155 s & ~TP_EC_AUDIO_MUTESW_MSK;
7156
7157 if (n != s) {
7158 rc = volume_set_status_ec(n);
7159 if (!rc)
7160 rc = 1;
7161 }
7162
7163 unlock:
7164 mutex_unlock(&volume_mutex);
7165 return rc;
7166 }
7167
volume_alsa_set_mute(const bool mute)7168 static int volume_alsa_set_mute(const bool mute)
7169 {
7170 dbg_printk(TPACPI_DBG_MIXER, "ALSA: trying to %smute\n",
7171 (mute) ? "" : "un");
7172 return __volume_set_mute_ec(mute);
7173 }
7174
volume_set_mute(const bool mute)7175 static int volume_set_mute(const bool mute)
7176 {
7177 int rc;
7178
7179 dbg_printk(TPACPI_DBG_MIXER, "trying to %smute\n",
7180 (mute) ? "" : "un");
7181
7182 rc = __volume_set_mute_ec(mute);
7183 return (rc < 0) ? rc : 0;
7184 }
7185
7186 /* returns < 0 on error, 0 on no change, 1 on change */
__volume_set_volume_ec(const u8 vol)7187 static int __volume_set_volume_ec(const u8 vol)
7188 {
7189 int rc;
7190 u8 s, n;
7191
7192 if (vol > TP_EC_VOLUME_MAX)
7193 return -EINVAL;
7194
7195 if (mutex_lock_killable(&volume_mutex) < 0)
7196 return -EINTR;
7197
7198 rc = volume_get_status_ec(&s);
7199 if (rc)
7200 goto unlock;
7201
7202 n = (s & ~TP_EC_AUDIO_LVL_MSK) | vol;
7203
7204 if (n != s) {
7205 rc = volume_set_status_ec(n);
7206 if (!rc)
7207 rc = 1;
7208 }
7209
7210 unlock:
7211 mutex_unlock(&volume_mutex);
7212 return rc;
7213 }
7214
volume_set_software_mute(bool startup)7215 static int volume_set_software_mute(bool startup)
7216 {
7217 int result;
7218
7219 if (!tpacpi_is_lenovo())
7220 return -ENODEV;
7221
7222 if (startup) {
7223 if (!acpi_evalf(ec_handle, &software_mute_orig_mode,
7224 "HAUM", "qd"))
7225 return -EIO;
7226
7227 dbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_MIXER,
7228 "Initial HAUM setting was %d\n",
7229 software_mute_orig_mode);
7230 }
7231
7232 if (!acpi_evalf(ec_handle, &result, "SAUM", "qdd",
7233 (int)TP_EC_MUTE_BTN_NONE))
7234 return -EIO;
7235
7236 if (result != TP_EC_MUTE_BTN_NONE)
7237 pr_warn("Unexpected SAUM result %d\n",
7238 result);
7239
7240 /*
7241 * In software mute mode, the standard codec controls take
7242 * precendence, so we unmute the ThinkPad HW switch at
7243 * startup. Just on case there are SAUM-capable ThinkPads
7244 * with level controls, set max HW volume as well.
7245 */
7246 if (tp_features.mixer_no_level_control)
7247 result = volume_set_mute(false);
7248 else
7249 result = volume_set_status(TP_EC_VOLUME_MAX);
7250
7251 if (result != 0)
7252 pr_warn("Failed to unmute the HW mute switch\n");
7253
7254 return 0;
7255 }
7256
volume_exit_software_mute(void)7257 static void volume_exit_software_mute(void)
7258 {
7259 int r;
7260
7261 if (!acpi_evalf(ec_handle, &r, "SAUM", "qdd", software_mute_orig_mode)
7262 || r != software_mute_orig_mode)
7263 pr_warn("Failed to restore mute mode\n");
7264 }
7265
volume_alsa_set_volume(const u8 vol)7266 static int volume_alsa_set_volume(const u8 vol)
7267 {
7268 dbg_printk(TPACPI_DBG_MIXER,
7269 "ALSA: trying to set volume level to %hu\n", vol);
7270 return __volume_set_volume_ec(vol);
7271 }
7272
volume_alsa_notify_change(void)7273 static void volume_alsa_notify_change(void)
7274 {
7275 struct tpacpi_alsa_data *d;
7276
7277 if (alsa_card && alsa_card->private_data) {
7278 d = alsa_card->private_data;
7279 if (d->ctl_mute_id)
7280 snd_ctl_notify(alsa_card,
7281 SNDRV_CTL_EVENT_MASK_VALUE,
7282 d->ctl_mute_id);
7283 if (d->ctl_vol_id)
7284 snd_ctl_notify(alsa_card,
7285 SNDRV_CTL_EVENT_MASK_VALUE,
7286 d->ctl_vol_id);
7287 }
7288 }
7289
volume_alsa_vol_info(struct snd_kcontrol * kcontrol,struct snd_ctl_elem_info * uinfo)7290 static int volume_alsa_vol_info(struct snd_kcontrol *kcontrol,
7291 struct snd_ctl_elem_info *uinfo)
7292 {
7293 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
7294 uinfo->count = 1;
7295 uinfo->value.integer.min = 0;
7296 uinfo->value.integer.max = TP_EC_VOLUME_MAX;
7297 return 0;
7298 }
7299
volume_alsa_vol_get(struct snd_kcontrol * kcontrol,struct snd_ctl_elem_value * ucontrol)7300 static int volume_alsa_vol_get(struct snd_kcontrol *kcontrol,
7301 struct snd_ctl_elem_value *ucontrol)
7302 {
7303 u8 s;
7304 int rc;
7305
7306 rc = volume_get_status(&s);
7307 if (rc < 0)
7308 return rc;
7309
7310 ucontrol->value.integer.value[0] = s & TP_EC_AUDIO_LVL_MSK;
7311 return 0;
7312 }
7313
volume_alsa_vol_put(struct snd_kcontrol * kcontrol,struct snd_ctl_elem_value * ucontrol)7314 static int volume_alsa_vol_put(struct snd_kcontrol *kcontrol,
7315 struct snd_ctl_elem_value *ucontrol)
7316 {
7317 tpacpi_disclose_usertask("ALSA", "set volume to %ld\n",
7318 ucontrol->value.integer.value[0]);
7319 return volume_alsa_set_volume(ucontrol->value.integer.value[0]);
7320 }
7321
7322 #define volume_alsa_mute_info snd_ctl_boolean_mono_info
7323
volume_alsa_mute_get(struct snd_kcontrol * kcontrol,struct snd_ctl_elem_value * ucontrol)7324 static int volume_alsa_mute_get(struct snd_kcontrol *kcontrol,
7325 struct snd_ctl_elem_value *ucontrol)
7326 {
7327 u8 s;
7328 int rc;
7329
7330 rc = volume_get_status(&s);
7331 if (rc < 0)
7332 return rc;
7333
7334 ucontrol->value.integer.value[0] =
7335 (s & TP_EC_AUDIO_MUTESW_MSK) ? 0 : 1;
7336 return 0;
7337 }
7338
volume_alsa_mute_put(struct snd_kcontrol * kcontrol,struct snd_ctl_elem_value * ucontrol)7339 static int volume_alsa_mute_put(struct snd_kcontrol *kcontrol,
7340 struct snd_ctl_elem_value *ucontrol)
7341 {
7342 tpacpi_disclose_usertask("ALSA", "%smute\n",
7343 ucontrol->value.integer.value[0] ?
7344 "un" : "");
7345 return volume_alsa_set_mute(!ucontrol->value.integer.value[0]);
7346 }
7347
7348 static struct snd_kcontrol_new volume_alsa_control_vol __initdata = {
7349 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
7350 .name = "Console Playback Volume",
7351 .index = 0,
7352 .access = SNDRV_CTL_ELEM_ACCESS_READ,
7353 .info = volume_alsa_vol_info,
7354 .get = volume_alsa_vol_get,
7355 };
7356
7357 static struct snd_kcontrol_new volume_alsa_control_mute __initdata = {
7358 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
7359 .name = "Console Playback Switch",
7360 .index = 0,
7361 .access = SNDRV_CTL_ELEM_ACCESS_READ,
7362 .info = volume_alsa_mute_info,
7363 .get = volume_alsa_mute_get,
7364 };
7365
volume_suspend(void)7366 static void volume_suspend(void)
7367 {
7368 tpacpi_volume_checkpoint_nvram();
7369 }
7370
volume_resume(void)7371 static void volume_resume(void)
7372 {
7373 if (software_mute_active) {
7374 if (volume_set_software_mute(false) < 0)
7375 pr_warn("Failed to restore software mute\n");
7376 } else {
7377 volume_alsa_notify_change();
7378 }
7379 }
7380
volume_shutdown(void)7381 static void volume_shutdown(void)
7382 {
7383 tpacpi_volume_checkpoint_nvram();
7384 }
7385
volume_exit(void)7386 static void volume_exit(void)
7387 {
7388 if (alsa_card) {
7389 snd_card_free(alsa_card);
7390 alsa_card = NULL;
7391 }
7392
7393 tpacpi_volume_checkpoint_nvram();
7394
7395 if (software_mute_active)
7396 volume_exit_software_mute();
7397 }
7398
volume_create_alsa_mixer(void)7399 static int __init volume_create_alsa_mixer(void)
7400 {
7401 struct snd_card *card;
7402 struct tpacpi_alsa_data *data;
7403 struct snd_kcontrol *ctl_vol;
7404 struct snd_kcontrol *ctl_mute;
7405 int rc;
7406
7407 rc = snd_card_new(&tpacpi_pdev->dev,
7408 alsa_index, alsa_id, THIS_MODULE,
7409 sizeof(struct tpacpi_alsa_data), &card);
7410 if (rc < 0 || !card) {
7411 pr_err("Failed to create ALSA card structures: %d\n", rc);
7412 return -ENODEV;
7413 }
7414
7415 BUG_ON(!card->private_data);
7416 data = card->private_data;
7417 data->card = card;
7418
7419 strscpy(card->driver, TPACPI_ALSA_DRVNAME);
7420 strscpy(card->shortname, TPACPI_ALSA_SHRTNAME);
7421 snprintf(card->mixername, sizeof(card->mixername), "ThinkPad EC %s",
7422 (thinkpad_id.ec_version_str) ?
7423 thinkpad_id.ec_version_str : "(unknown)");
7424 snprintf(card->longname, sizeof(card->longname),
7425 "%s at EC reg 0x%02x, fw %s", card->shortname, TP_EC_AUDIO,
7426 (thinkpad_id.ec_version_str) ?
7427 thinkpad_id.ec_version_str : "unknown");
7428
7429 if (volume_control_allowed) {
7430 volume_alsa_control_vol.put = volume_alsa_vol_put;
7431 volume_alsa_control_vol.access =
7432 SNDRV_CTL_ELEM_ACCESS_READWRITE;
7433
7434 volume_alsa_control_mute.put = volume_alsa_mute_put;
7435 volume_alsa_control_mute.access =
7436 SNDRV_CTL_ELEM_ACCESS_READWRITE;
7437 }
7438
7439 if (!tp_features.mixer_no_level_control) {
7440 ctl_vol = snd_ctl_new1(&volume_alsa_control_vol, NULL);
7441 rc = snd_ctl_add(card, ctl_vol);
7442 if (rc < 0) {
7443 pr_err("Failed to create ALSA volume control: %d\n",
7444 rc);
7445 goto err_exit;
7446 }
7447 data->ctl_vol_id = &ctl_vol->id;
7448 }
7449
7450 ctl_mute = snd_ctl_new1(&volume_alsa_control_mute, NULL);
7451 rc = snd_ctl_add(card, ctl_mute);
7452 if (rc < 0) {
7453 pr_err("Failed to create ALSA mute control: %d\n", rc);
7454 goto err_exit;
7455 }
7456 data->ctl_mute_id = &ctl_mute->id;
7457
7458 rc = snd_card_register(card);
7459 if (rc < 0) {
7460 pr_err("Failed to register ALSA card: %d\n", rc);
7461 goto err_exit;
7462 }
7463
7464 alsa_card = card;
7465 return 0;
7466
7467 err_exit:
7468 snd_card_free(card);
7469 return -ENODEV;
7470 }
7471
7472 #define TPACPI_VOL_Q_MUTEONLY 0x0001 /* Mute-only control available */
7473 #define TPACPI_VOL_Q_LEVEL 0x0002 /* Volume control available */
7474
7475 static const struct tpacpi_quirk volume_quirk_table[] __initconst = {
7476 /* Whitelist volume level on all IBM by default */
7477 { .vendor = PCI_VENDOR_ID_IBM,
7478 .bios = TPACPI_MATCH_ANY,
7479 .ec = TPACPI_MATCH_ANY,
7480 .quirks = TPACPI_VOL_Q_LEVEL },
7481
7482 /* Lenovo models with volume control (needs confirmation) */
7483 TPACPI_QEC_LNV('7', 'C', TPACPI_VOL_Q_LEVEL), /* R60/i */
7484 TPACPI_QEC_LNV('7', 'E', TPACPI_VOL_Q_LEVEL), /* R60e/i */
7485 TPACPI_QEC_LNV('7', '9', TPACPI_VOL_Q_LEVEL), /* T60/p */
7486 TPACPI_QEC_LNV('7', 'B', TPACPI_VOL_Q_LEVEL), /* X60/s */
7487 TPACPI_QEC_LNV('7', 'J', TPACPI_VOL_Q_LEVEL), /* X60t */
7488 TPACPI_QEC_LNV('7', '7', TPACPI_VOL_Q_LEVEL), /* Z60 */
7489 TPACPI_QEC_LNV('7', 'F', TPACPI_VOL_Q_LEVEL), /* Z61 */
7490
7491 /* Whitelist mute-only on all Lenovo by default */
7492 { .vendor = PCI_VENDOR_ID_LENOVO,
7493 .bios = TPACPI_MATCH_ANY,
7494 .ec = TPACPI_MATCH_ANY,
7495 .quirks = TPACPI_VOL_Q_MUTEONLY }
7496 };
7497
volume_init(struct ibm_init_struct * iibm)7498 static int __init volume_init(struct ibm_init_struct *iibm)
7499 {
7500 unsigned long quirks;
7501 int rc;
7502
7503 vdbg_printk(TPACPI_DBG_INIT, "initializing volume subdriver\n");
7504
7505 mutex_init(&volume_mutex);
7506
7507 /*
7508 * Check for module parameter bogosity, note that we
7509 * init volume_mode to TPACPI_VOL_MODE_MAX in order to be
7510 * able to detect "unspecified"
7511 */
7512 if (volume_mode > TPACPI_VOL_MODE_MAX)
7513 return -EINVAL;
7514
7515 if (volume_mode == TPACPI_VOL_MODE_UCMS_STEP) {
7516 pr_err("UCMS step volume mode not implemented, please contact %s\n",
7517 TPACPI_MAIL);
7518 return -ENODEV;
7519 }
7520
7521 if (volume_capabilities >= TPACPI_VOL_CAP_MAX)
7522 return -EINVAL;
7523
7524 /*
7525 * The ALSA mixer is our primary interface.
7526 * When disabled, don't install the subdriver at all
7527 */
7528 if (!alsa_enable) {
7529 vdbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_MIXER,
7530 "ALSA mixer disabled by parameter, not loading volume subdriver...\n");
7531 return -ENODEV;
7532 }
7533
7534 quirks = tpacpi_check_quirks(volume_quirk_table,
7535 ARRAY_SIZE(volume_quirk_table));
7536
7537 switch (volume_capabilities) {
7538 case TPACPI_VOL_CAP_AUTO:
7539 if (quirks & TPACPI_VOL_Q_MUTEONLY)
7540 tp_features.mixer_no_level_control = 1;
7541 else if (quirks & TPACPI_VOL_Q_LEVEL)
7542 tp_features.mixer_no_level_control = 0;
7543 else
7544 return -ENODEV; /* no mixer */
7545 break;
7546 case TPACPI_VOL_CAP_VOLMUTE:
7547 tp_features.mixer_no_level_control = 0;
7548 break;
7549 case TPACPI_VOL_CAP_MUTEONLY:
7550 tp_features.mixer_no_level_control = 1;
7551 break;
7552 default:
7553 return -ENODEV;
7554 }
7555
7556 if (volume_capabilities != TPACPI_VOL_CAP_AUTO)
7557 dbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_MIXER,
7558 "using user-supplied volume_capabilities=%d\n",
7559 volume_capabilities);
7560
7561 if (volume_mode == TPACPI_VOL_MODE_AUTO ||
7562 volume_mode == TPACPI_VOL_MODE_MAX) {
7563 volume_mode = TPACPI_VOL_MODE_ECNVRAM;
7564
7565 dbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_MIXER,
7566 "driver auto-selected volume_mode=%d\n",
7567 volume_mode);
7568 } else {
7569 dbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_MIXER,
7570 "using user-supplied volume_mode=%d\n",
7571 volume_mode);
7572 }
7573
7574 vdbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_MIXER,
7575 "mute is supported, volume control is %s\n",
7576 str_supported(!tp_features.mixer_no_level_control));
7577
7578 if (software_mute_requested && volume_set_software_mute(true) == 0) {
7579 software_mute_active = true;
7580 } else {
7581 rc = volume_create_alsa_mixer();
7582 if (rc) {
7583 pr_err("Could not create the ALSA mixer interface\n");
7584 return rc;
7585 }
7586
7587 pr_info("Console audio control enabled, mode: %s\n",
7588 (volume_control_allowed) ?
7589 "override (read/write)" :
7590 "monitor (read only)");
7591 }
7592
7593 vdbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_MIXER,
7594 "registering volume hotkeys as change notification\n");
7595 tpacpi_hotkey_driver_mask_set(hotkey_driver_mask
7596 | TP_ACPI_HKEY_VOLUP_MASK
7597 | TP_ACPI_HKEY_VOLDWN_MASK
7598 | TP_ACPI_HKEY_MUTE_MASK);
7599
7600 return 0;
7601 }
7602
volume_read(struct seq_file * m)7603 static int volume_read(struct seq_file *m)
7604 {
7605 u8 status;
7606
7607 if (volume_get_status(&status) < 0) {
7608 seq_printf(m, "level:\t\tunreadable\n");
7609 } else {
7610 if (tp_features.mixer_no_level_control)
7611 seq_printf(m, "level:\t\tunsupported\n");
7612 else
7613 seq_printf(m, "level:\t\t%d\n",
7614 status & TP_EC_AUDIO_LVL_MSK);
7615
7616 seq_printf(m, "mute:\t\t%s\n", str_on_off(status & BIT(TP_EC_AUDIO_MUTESW)));
7617
7618 if (volume_control_allowed) {
7619 seq_printf(m, "commands:\tunmute, mute\n");
7620 if (!tp_features.mixer_no_level_control) {
7621 seq_printf(m, "commands:\tup, down\n");
7622 seq_printf(m, "commands:\tlevel <level> (<level> is 0-%d)\n",
7623 TP_EC_VOLUME_MAX);
7624 }
7625 }
7626 }
7627
7628 return 0;
7629 }
7630
volume_write(char * buf)7631 static int volume_write(char *buf)
7632 {
7633 u8 s;
7634 u8 new_level, new_mute;
7635 int l;
7636 char *cmd;
7637 int rc;
7638
7639 /*
7640 * We do allow volume control at driver startup, so that the
7641 * user can set initial state through the volume=... parameter hack.
7642 */
7643 if (!volume_control_allowed && tpacpi_lifecycle != TPACPI_LIFE_INIT) {
7644 if (unlikely(!tp_warned.volume_ctrl_forbidden)) {
7645 tp_warned.volume_ctrl_forbidden = 1;
7646 pr_notice("Console audio control in monitor mode, changes are not allowed\n");
7647 pr_notice("Use the volume_control=1 module parameter to enable volume control\n");
7648 }
7649 return -EPERM;
7650 }
7651
7652 rc = volume_get_status(&s);
7653 if (rc < 0)
7654 return rc;
7655
7656 new_level = s & TP_EC_AUDIO_LVL_MSK;
7657 new_mute = s & TP_EC_AUDIO_MUTESW_MSK;
7658
7659 while ((cmd = strsep(&buf, ","))) {
7660 if (!tp_features.mixer_no_level_control) {
7661 if (strstarts(cmd, "up")) {
7662 if (new_mute)
7663 new_mute = 0;
7664 else if (new_level < TP_EC_VOLUME_MAX)
7665 new_level++;
7666 continue;
7667 } else if (strstarts(cmd, "down")) {
7668 if (new_mute)
7669 new_mute = 0;
7670 else if (new_level > 0)
7671 new_level--;
7672 continue;
7673 } else if (sscanf(cmd, "level %u", &l) == 1 &&
7674 l >= 0 && l <= TP_EC_VOLUME_MAX) {
7675 new_level = l;
7676 continue;
7677 }
7678 }
7679 if (strstarts(cmd, "mute"))
7680 new_mute = TP_EC_AUDIO_MUTESW_MSK;
7681 else if (strstarts(cmd, "unmute"))
7682 new_mute = 0;
7683 else
7684 return -EINVAL;
7685 }
7686
7687 if (tp_features.mixer_no_level_control) {
7688 tpacpi_disclose_usertask("procfs volume", "%smute\n",
7689 new_mute ? "" : "un");
7690 rc = volume_set_mute(!!new_mute);
7691 } else {
7692 tpacpi_disclose_usertask("procfs volume",
7693 "%smute and set level to %d\n",
7694 new_mute ? "" : "un", new_level);
7695 rc = volume_set_status(new_mute | new_level);
7696 }
7697 volume_alsa_notify_change();
7698
7699 return (rc == -EINTR) ? -ERESTARTSYS : rc;
7700 }
7701
7702 static struct ibm_struct volume_driver_data = {
7703 .name = "volume",
7704 .read = volume_read,
7705 .write = volume_write,
7706 .exit = volume_exit,
7707 .suspend = volume_suspend,
7708 .resume = volume_resume,
7709 .shutdown = volume_shutdown,
7710 };
7711
7712 #else /* !CONFIG_THINKPAD_ACPI_ALSA_SUPPORT */
7713
7714 #define alsa_card NULL
7715
volume_alsa_notify_change(void)7716 static inline void volume_alsa_notify_change(void)
7717 {
7718 }
7719
volume_init(struct ibm_init_struct * iibm)7720 static int __init volume_init(struct ibm_init_struct *iibm)
7721 {
7722 pr_info("volume: disabled as there is no ALSA support in this kernel\n");
7723
7724 return -ENODEV;
7725 }
7726
7727 static struct ibm_struct volume_driver_data = {
7728 .name = "volume",
7729 };
7730
7731 #endif /* CONFIG_THINKPAD_ACPI_ALSA_SUPPORT */
7732
7733 /*************************************************************************
7734 * Fan subdriver
7735 */
7736
7737 /*
7738 * FAN ACCESS MODES
7739 *
7740 * TPACPI_FAN_RD_ACPI_GFAN:
7741 * ACPI GFAN method: returns fan level
7742 *
7743 * see TPACPI_FAN_WR_ACPI_SFAN
7744 * EC 0x2f (HFSP) not available if GFAN exists
7745 *
7746 * TPACPI_FAN_WR_ACPI_SFAN:
7747 * ACPI SFAN method: sets fan level, 0 (stop) to 7 (max)
7748 *
7749 * EC 0x2f (HFSP) might be available *for reading*, but do not use
7750 * it for writing.
7751 *
7752 * TPACPI_FAN_RD_ACPI_FANG:
7753 * ACPI FANG method: returns fan control register
7754 *
7755 * Takes one parameter which is 0x8100 plus the offset to EC memory
7756 * address 0xf500 and returns the byte at this address.
7757 *
7758 * 0xf500:
7759 * When the value is less than 9 automatic mode is enabled
7760 * 0xf502:
7761 * Contains the current fan speed from 0-100%
7762 * 0xf506:
7763 * Bit 7 has to be set in order to enable manual control by
7764 * writing a value >= 9 to 0xf500
7765 *
7766 * TPACPI_FAN_WR_ACPI_FANW:
7767 * ACPI FANW method: sets fan control registers
7768 *
7769 * Takes 0x8100 plus the offset to EC memory address 0xf500 and the
7770 * value to be written there as parameters.
7771 *
7772 * see TPACPI_FAN_RD_ACPI_FANG
7773 *
7774 * TPACPI_FAN_WR_TPEC:
7775 * ThinkPad EC register 0x2f (HFSP): fan control loop mode
7776 * Supported on almost all ThinkPads
7777 *
7778 * Fan speed changes of any sort (including those caused by the
7779 * disengaged mode) are usually done slowly by the firmware as the
7780 * maximum amount of fan duty cycle change per second seems to be
7781 * limited.
7782 *
7783 * Reading is not available if GFAN exists.
7784 * Writing is not available if SFAN exists.
7785 *
7786 * Bits
7787 * 7 automatic mode engaged;
7788 * (default operation mode of the ThinkPad)
7789 * fan level is ignored in this mode.
7790 * 6 full speed mode (takes precedence over bit 7);
7791 * not available on all thinkpads. May disable
7792 * the tachometer while the fan controller ramps up
7793 * the speed (which can take up to a few *minutes*).
7794 * Speeds up fan to 100% duty-cycle, which is far above
7795 * the standard RPM levels. It is not impossible that
7796 * it could cause hardware damage.
7797 * 5-3 unused in some models. Extra bits for fan level
7798 * in others, but still useless as all values above
7799 * 7 map to the same speed as level 7 in these models.
7800 * 2-0 fan level (0..7 usually)
7801 * 0x00 = stop
7802 * 0x07 = max (set when temperatures critical)
7803 * Some ThinkPads may have other levels, see
7804 * TPACPI_FAN_WR_ACPI_FANS (X31/X40/X41)
7805 *
7806 * FIRMWARE BUG: on some models, EC 0x2f might not be initialized at
7807 * boot. Apparently the EC does not initialize it, so unless ACPI DSDT
7808 * does so, its initial value is meaningless (0x07).
7809 *
7810 * For firmware bugs, refer to:
7811 * https://thinkwiki.org/wiki/Embedded_Controller_Firmware#Firmware_Issues
7812 *
7813 * ----
7814 *
7815 * ThinkPad EC register 0x84 (LSB), 0x85 (MSB):
7816 * Main fan tachometer reading (in RPM)
7817 *
7818 * This register is present on all ThinkPads with a new-style EC, and
7819 * it is known not to be present on the A21m/e, and T22, as there is
7820 * something else in offset 0x84 according to the ACPI DSDT. Other
7821 * ThinkPads from this same time period (and earlier) probably lack the
7822 * tachometer as well.
7823 *
7824 * Unfortunately a lot of ThinkPads with new-style ECs but whose firmware
7825 * was never fixed by IBM to report the EC firmware version string
7826 * probably support the tachometer (like the early X models), so
7827 * detecting it is quite hard. We need more data to know for sure.
7828 *
7829 * FIRMWARE BUG: always read 0x84 first, otherwise incorrect readings
7830 * might result.
7831 *
7832 * FIRMWARE BUG: may go stale while the EC is switching to full speed
7833 * mode.
7834 *
7835 * For firmware bugs, refer to:
7836 * https://thinkwiki.org/wiki/Embedded_Controller_Firmware#Firmware_Issues
7837 *
7838 * ----
7839 *
7840 * ThinkPad EC register 0x31 bit 0 (only on select models)
7841 *
7842 * When bit 0 of EC register 0x31 is zero, the tachometer registers
7843 * show the speed of the main fan. When bit 0 of EC register 0x31
7844 * is one, the tachometer registers show the speed of the auxiliary
7845 * fan.
7846 *
7847 * Fan control seems to affect both fans, regardless of the state
7848 * of this bit.
7849 *
7850 * So far, only the firmware for the X60/X61 non-tablet versions
7851 * seem to support this (firmware TP-7M).
7852 *
7853 * TPACPI_FAN_WR_ACPI_FANS:
7854 * ThinkPad X31, X40, X41. Not available in the X60.
7855 *
7856 * FANS ACPI handle: takes three arguments: low speed, medium speed,
7857 * high speed. ACPI DSDT seems to map these three speeds to levels
7858 * as follows: STOP LOW LOW MED MED HIGH HIGH HIGH HIGH
7859 * (this map is stored on FAN0..FAN8 as "0,1,1,2,2,3,3,3,3")
7860 *
7861 * The speeds are stored on handles
7862 * (FANA:FAN9), (FANC:FANB), (FANE:FAND).
7863 *
7864 * There are three default speed sets, accessible as handles:
7865 * FS1L,FS1M,FS1H; FS2L,FS2M,FS2H; FS3L,FS3M,FS3H
7866 *
7867 * ACPI DSDT switches which set is in use depending on various
7868 * factors.
7869 *
7870 * TPACPI_FAN_WR_TPEC is also available and should be used to
7871 * command the fan. The X31/X40/X41 seems to have 8 fan levels,
7872 * but the ACPI tables just mention level 7.
7873 *
7874 * TPACPI_FAN_RD_TPEC_NS:
7875 * This mode is used for a few ThinkPads (L13 Yoga Gen2, X13 Yoga Gen2 etc.)
7876 * that are using non-standard EC locations for reporting fan speeds.
7877 * Currently these platforms only provide fan rpm reporting.
7878 *
7879 */
7880
7881 #define FAN_RPM_CAL_CONST 491520 /* FAN RPM calculation offset for some non-standard ECFW */
7882
7883 #define FAN_NS_CTRL_STATUS BIT(2) /* Bit which determines control is enabled or not */
7884 #define FAN_NS_CTRL BIT(4) /* Bit which determines control is by host or EC */
7885 #define FAN_CLOCK_TPM (22500*60) /* Ticks per minute for a 22.5 kHz clock */
7886
7887 enum { /* Fan control constants */
7888 fan_status_offset = 0x2f, /* EC register 0x2f */
7889 fan_rpm_offset = 0x84, /* EC register 0x84: LSB, 0x85 MSB (RPM)
7890 * 0x84 must be read before 0x85 */
7891 fan_select_offset = 0x31, /* EC register 0x31 (Firmware 7M)
7892 bit 0 selects which fan is active */
7893
7894 fan_status_offset_ns = 0x93, /* Special status/control offset for non-standard EC Fan1 */
7895 fan2_status_offset_ns = 0x96, /* Special status/control offset for non-standard EC Fan2 */
7896 fan_rpm_status_ns = 0x95, /* Special offset for Fan1 RPM status for non-standard EC */
7897 fan2_rpm_status_ns = 0x98, /* Special offset for Fan2 RPM status for non-standard EC */
7898
7899 TP_EC_FAN_FULLSPEED = 0x40, /* EC fan mode: full speed */
7900 TP_EC_FAN_AUTO = 0x80, /* EC fan mode: auto fan control */
7901
7902 TPACPI_FAN_LAST_LEVEL = 0x100, /* Use cached last-seen fan level */
7903 };
7904
7905 enum fan_status_access_mode {
7906 TPACPI_FAN_NONE = 0, /* No fan status or control */
7907 TPACPI_FAN_RD_ACPI_GFAN, /* Use ACPI GFAN */
7908 TPACPI_FAN_RD_ACPI_FANG, /* Use ACPI FANG */
7909 TPACPI_FAN_RD_TPEC, /* Use ACPI EC regs 0x2f, 0x84-0x85 */
7910 TPACPI_FAN_RD_TPEC_NS, /* Use non-standard ACPI EC regs (eg: L13 Yoga gen2 etc.) */
7911 };
7912
7913 enum fan_control_access_mode {
7914 TPACPI_FAN_WR_NONE = 0, /* No fan control */
7915 TPACPI_FAN_WR_ACPI_SFAN, /* Use ACPI SFAN */
7916 TPACPI_FAN_WR_ACPI_FANW, /* Use ACPI FANW */
7917 TPACPI_FAN_WR_TPEC, /* Use ACPI EC reg 0x2f */
7918 TPACPI_FAN_WR_ACPI_FANS, /* Use ACPI FANS and EC reg 0x2f */
7919 };
7920
7921 enum fan_control_commands {
7922 TPACPI_FAN_CMD_SPEED = 0x0001, /* speed command */
7923 TPACPI_FAN_CMD_LEVEL = 0x0002, /* level command */
7924 TPACPI_FAN_CMD_ENABLE = 0x0004, /* enable/disable cmd,
7925 * and also watchdog cmd */
7926 };
7927
7928 static bool fan_control_allowed;
7929
7930 static enum fan_status_access_mode fan_status_access_mode;
7931 static enum fan_control_access_mode fan_control_access_mode;
7932 static enum fan_control_commands fan_control_commands;
7933
7934 static u8 fan_control_initial_status;
7935 static u8 fan_control_desired_level;
7936 static u8 fan_control_resume_level;
7937 static int fan_watchdog_maxinterval;
7938
7939 static bool fan_with_ns_addr;
7940 static bool ecfw_with_fan_dec_rpm;
7941 static bool fan_speed_in_tpr;
7942
7943 static struct mutex fan_mutex;
7944
7945 static void fan_watchdog_fire(struct work_struct *ignored);
7946 static DECLARE_DELAYED_WORK(fan_watchdog_task, fan_watchdog_fire);
7947
7948 TPACPI_HANDLE(fans, ec, "FANS"); /* X31, X40, X41 */
7949 TPACPI_HANDLE(gfan, ec, "GFAN", /* 570 */
7950 "\\FSPD", /* 600e/x, 770e, 770x */
7951 ); /* all others */
7952 TPACPI_HANDLE(fang, ec, "FANG", /* E531 */
7953 ); /* all others */
7954 TPACPI_HANDLE(sfan, ec, "SFAN", /* 570 */
7955 "JFNS", /* 770x-JL */
7956 ); /* all others */
7957 TPACPI_HANDLE(fanw, ec, "FANW", /* E531 */
7958 ); /* all others */
7959
7960 /*
7961 * Unitialized HFSP quirk: ACPI DSDT and EC fail to initialize the
7962 * HFSP register at boot, so it contains 0x07 but the Thinkpad could
7963 * be in auto mode (0x80).
7964 *
7965 * This is corrected by any write to HFSP either by the driver, or
7966 * by the firmware.
7967 *
7968 * We assume 0x07 really means auto mode while this quirk is active,
7969 * as this is far more likely than the ThinkPad being in level 7,
7970 * which is only used by the firmware during thermal emergencies.
7971 *
7972 * Enable for TP-1Y (T43), TP-78 (R51e), TP-76 (R52),
7973 * TP-70 (T43, R52), which are known to be buggy.
7974 */
7975
fan_quirk1_setup(void)7976 static void fan_quirk1_setup(void)
7977 {
7978 if (fan_control_initial_status == 0x07) {
7979 pr_notice("fan_init: initial fan status is unknown, assuming it is in auto mode\n");
7980 tp_features.fan_ctrl_status_undef = 1;
7981 }
7982 }
7983
fan_quirk1_handle(u8 * fan_status)7984 static void fan_quirk1_handle(u8 *fan_status)
7985 {
7986 if (unlikely(tp_features.fan_ctrl_status_undef)) {
7987 if (*fan_status != fan_control_initial_status) {
7988 /* something changed the HFSP regisnter since
7989 * driver init time, so it is not undefined
7990 * anymore */
7991 tp_features.fan_ctrl_status_undef = 0;
7992 } else {
7993 /* Return most likely status. In fact, it
7994 * might be the only possible status */
7995 *fan_status = TP_EC_FAN_AUTO;
7996 }
7997 }
7998 }
7999
8000 /* Select main fan on X60/X61, NOOP on others */
fan_select_fan1(void)8001 static bool fan_select_fan1(void)
8002 {
8003 if (tp_features.second_fan) {
8004 u8 val;
8005
8006 if (ec_read(fan_select_offset, &val) < 0)
8007 return false;
8008 val &= 0xFEU;
8009 if (ec_write(fan_select_offset, val) < 0)
8010 return false;
8011 }
8012 return true;
8013 }
8014
8015 /* Select secondary fan on X60/X61 */
fan_select_fan2(void)8016 static bool fan_select_fan2(void)
8017 {
8018 u8 val;
8019
8020 if (!tp_features.second_fan)
8021 return false;
8022
8023 if (ec_read(fan_select_offset, &val) < 0)
8024 return false;
8025 val |= 0x01U;
8026 if (ec_write(fan_select_offset, val) < 0)
8027 return false;
8028
8029 return true;
8030 }
8031
fan_update_desired_level(u8 status)8032 static void fan_update_desired_level(u8 status)
8033 {
8034 lockdep_assert_held(&fan_mutex);
8035
8036 if ((status &
8037 (TP_EC_FAN_AUTO | TP_EC_FAN_FULLSPEED)) == 0) {
8038 if (status > 7)
8039 fan_control_desired_level = 7;
8040 else
8041 fan_control_desired_level = status;
8042 }
8043 }
8044
fan_get_status(u8 * status)8045 static int fan_get_status(u8 *status)
8046 {
8047 u8 s;
8048
8049 /* TODO:
8050 * Add TPACPI_FAN_RD_ACPI_FANS ? */
8051
8052 switch (fan_status_access_mode) {
8053 case TPACPI_FAN_RD_ACPI_GFAN: {
8054 /* 570, 600e/x, 770e, 770x */
8055 int res;
8056
8057 if (unlikely(!acpi_evalf(gfan_handle, &res, NULL, "d")))
8058 return -EIO;
8059
8060 if (likely(status))
8061 *status = res & 0x07;
8062
8063 break;
8064 }
8065 case TPACPI_FAN_RD_ACPI_FANG: {
8066 /* E531 */
8067 int mode, speed;
8068
8069 if (unlikely(!acpi_evalf(fang_handle, &mode, NULL, "dd", 0x8100)))
8070 return -EIO;
8071 if (unlikely(!acpi_evalf(fang_handle, &speed, NULL, "dd", 0x8102)))
8072 return -EIO;
8073
8074 if (likely(status)) {
8075 *status = speed * 7 / 100;
8076 if (mode < 9)
8077 *status |= TP_EC_FAN_AUTO;
8078 }
8079
8080 break;
8081 }
8082 case TPACPI_FAN_RD_TPEC:
8083 /* all except 570, 600e/x, 770e, 770x */
8084 if (unlikely(!acpi_ec_read(fan_status_offset, &s)))
8085 return -EIO;
8086
8087 if (likely(status)) {
8088 *status = s;
8089 fan_quirk1_handle(status);
8090 }
8091
8092 break;
8093 case TPACPI_FAN_RD_TPEC_NS:
8094 /* Default mode is AUTO which means controlled by EC */
8095 if (!acpi_ec_read(fan_status_offset_ns, &s))
8096 return -EIO;
8097
8098 if (status)
8099 *status = s;
8100
8101 break;
8102
8103 default:
8104 return -ENXIO;
8105 }
8106
8107 return 0;
8108 }
8109
fan_get_status_safe(u8 * status)8110 static int fan_get_status_safe(u8 *status)
8111 {
8112 int rc;
8113 u8 s;
8114
8115 if (mutex_lock_killable(&fan_mutex))
8116 return -ERESTARTSYS;
8117 rc = fan_get_status(&s);
8118 /* NS EC doesn't have register with level settings */
8119 if (!rc && !fan_with_ns_addr)
8120 fan_update_desired_level(s);
8121 mutex_unlock(&fan_mutex);
8122
8123 if (rc)
8124 return rc;
8125 if (status)
8126 *status = s;
8127
8128 return 0;
8129 }
8130
fan_get_speed(unsigned int * speed)8131 static int fan_get_speed(unsigned int *speed)
8132 {
8133 u8 hi, lo;
8134
8135 switch (fan_status_access_mode) {
8136 case TPACPI_FAN_RD_TPEC:
8137 /* all except 570, 600e/x, 770e, 770x */
8138 if (unlikely(!fan_select_fan1()))
8139 return -EIO;
8140 if (unlikely(!acpi_ec_read(fan_rpm_offset, &lo) ||
8141 !acpi_ec_read(fan_rpm_offset + 1, &hi)))
8142 return -EIO;
8143
8144 if (likely(speed)) {
8145 *speed = (hi << 8) | lo;
8146 if (fan_speed_in_tpr && *speed != 0)
8147 *speed = FAN_CLOCK_TPM / *speed;
8148 }
8149 break;
8150 case TPACPI_FAN_RD_TPEC_NS:
8151 if (!acpi_ec_read(fan_rpm_status_ns, &lo))
8152 return -EIO;
8153
8154 if (speed)
8155 *speed = lo ? FAN_RPM_CAL_CONST / lo : 0;
8156 break;
8157
8158 default:
8159 return -ENXIO;
8160 }
8161
8162 return 0;
8163 }
8164
fan2_get_speed(unsigned int * speed)8165 static int fan2_get_speed(unsigned int *speed)
8166 {
8167 u8 hi, lo, status;
8168 bool rc;
8169
8170 switch (fan_status_access_mode) {
8171 case TPACPI_FAN_RD_TPEC:
8172 /* all except 570, 600e/x, 770e, 770x */
8173 if (unlikely(!fan_select_fan2()))
8174 return -EIO;
8175 rc = !acpi_ec_read(fan_rpm_offset, &lo) ||
8176 !acpi_ec_read(fan_rpm_offset + 1, &hi);
8177 fan_select_fan1(); /* play it safe */
8178 if (rc)
8179 return -EIO;
8180
8181 if (likely(speed)) {
8182 *speed = (hi << 8) | lo;
8183 if (fan_speed_in_tpr && *speed != 0)
8184 *speed = FAN_CLOCK_TPM / *speed;
8185 }
8186 break;
8187
8188 case TPACPI_FAN_RD_TPEC_NS:
8189 rc = !acpi_ec_read(fan2_status_offset_ns, &status);
8190 if (rc)
8191 return -EIO;
8192 if (!(status & FAN_NS_CTRL_STATUS)) {
8193 pr_info("secondary fan control not supported\n");
8194 return -EIO;
8195 }
8196 rc = !acpi_ec_read(fan2_rpm_status_ns, &lo);
8197 if (rc)
8198 return -EIO;
8199 if (speed)
8200 *speed = lo ? FAN_RPM_CAL_CONST / lo : 0;
8201 break;
8202 case TPACPI_FAN_RD_ACPI_FANG: {
8203 /* E531 */
8204 int speed_tmp;
8205
8206 if (unlikely(!acpi_evalf(fang_handle, &speed_tmp, NULL, "dd", 0x8102)))
8207 return -EIO;
8208
8209 if (likely(speed))
8210 *speed = speed_tmp * 65535 / 100;
8211 break;
8212 }
8213
8214 default:
8215 return -ENXIO;
8216 }
8217
8218 return 0;
8219 }
8220
fan_set_level(int level)8221 static int fan_set_level(int level)
8222 {
8223 if (!fan_control_allowed)
8224 return -EPERM;
8225
8226 switch (fan_control_access_mode) {
8227 case TPACPI_FAN_WR_ACPI_SFAN:
8228 if ((level < 0) || (level > 7))
8229 return -EINVAL;
8230
8231 if (tp_features.second_fan_ctl) {
8232 if (!fan_select_fan2() ||
8233 !acpi_evalf(sfan_handle, NULL, NULL, "vd", level)) {
8234 pr_warn("Couldn't set 2nd fan level, disabling support\n");
8235 tp_features.second_fan_ctl = 0;
8236 }
8237 fan_select_fan1();
8238 }
8239 if (!acpi_evalf(sfan_handle, NULL, NULL, "vd", level))
8240 return -EIO;
8241 break;
8242
8243 case TPACPI_FAN_WR_ACPI_FANS:
8244 case TPACPI_FAN_WR_TPEC:
8245 if (!(level & TP_EC_FAN_AUTO) &&
8246 !(level & TP_EC_FAN_FULLSPEED) &&
8247 ((level < 0) || (level > 7)))
8248 return -EINVAL;
8249
8250 /* safety net should the EC not support AUTO
8251 * or FULLSPEED mode bits and just ignore them */
8252 if (level & TP_EC_FAN_FULLSPEED)
8253 level |= 7; /* safety min speed 7 */
8254 else if (level & TP_EC_FAN_AUTO)
8255 level |= 4; /* safety min speed 4 */
8256
8257 if (tp_features.second_fan_ctl) {
8258 if (!fan_select_fan2() ||
8259 !acpi_ec_write(fan_status_offset, level)) {
8260 pr_warn("Couldn't set 2nd fan level, disabling support\n");
8261 tp_features.second_fan_ctl = 0;
8262 }
8263 fan_select_fan1();
8264
8265 }
8266 if (!acpi_ec_write(fan_status_offset, level))
8267 return -EIO;
8268 else
8269 tp_features.fan_ctrl_status_undef = 0;
8270 break;
8271
8272 case TPACPI_FAN_WR_ACPI_FANW:
8273 if (!(level & TP_EC_FAN_AUTO) && (level < 0 || level > 7))
8274 return -EINVAL;
8275 if (level & TP_EC_FAN_FULLSPEED)
8276 return -EINVAL;
8277
8278 if (level & TP_EC_FAN_AUTO) {
8279 if (!acpi_evalf(fanw_handle, NULL, NULL, "vdd", 0x8106, 0x05)) {
8280 return -EIO;
8281 }
8282 if (!acpi_evalf(fanw_handle, NULL, NULL, "vdd", 0x8100, 0x00)) {
8283 return -EIO;
8284 }
8285 } else {
8286 if (!acpi_evalf(fanw_handle, NULL, NULL, "vdd", 0x8106, 0x45)) {
8287 return -EIO;
8288 }
8289 if (!acpi_evalf(fanw_handle, NULL, NULL, "vdd", 0x8100, 0xff)) {
8290 return -EIO;
8291 }
8292 if (!acpi_evalf(fanw_handle, NULL, NULL, "vdd", 0x8102, level * 100 / 7)) {
8293 return -EIO;
8294 }
8295 }
8296 break;
8297
8298 default:
8299 return -ENXIO;
8300 }
8301
8302 vdbg_printk(TPACPI_DBG_FAN,
8303 "fan control: set fan control register to 0x%02x\n", level);
8304 return 0;
8305 }
8306
fan_set_level_safe(int level)8307 static int fan_set_level_safe(int level)
8308 {
8309 int rc;
8310
8311 if (!fan_control_allowed)
8312 return -EPERM;
8313
8314 if (mutex_lock_killable(&fan_mutex))
8315 return -ERESTARTSYS;
8316
8317 if (level == TPACPI_FAN_LAST_LEVEL)
8318 level = fan_control_desired_level;
8319
8320 rc = fan_set_level(level);
8321 if (!rc)
8322 fan_update_desired_level(level);
8323
8324 mutex_unlock(&fan_mutex);
8325 return rc;
8326 }
8327
fan_set_enable(void)8328 static int fan_set_enable(void)
8329 {
8330 u8 s = 0;
8331 int rc;
8332
8333 if (!fan_control_allowed)
8334 return -EPERM;
8335
8336 if (mutex_lock_killable(&fan_mutex))
8337 return -ERESTARTSYS;
8338
8339 switch (fan_control_access_mode) {
8340 case TPACPI_FAN_WR_ACPI_FANS:
8341 case TPACPI_FAN_WR_TPEC:
8342 rc = fan_get_status(&s);
8343 if (rc)
8344 break;
8345
8346 /* Don't go out of emergency fan mode */
8347 if (s != 7) {
8348 s &= 0x07;
8349 s |= TP_EC_FAN_AUTO | 4; /* min fan speed 4 */
8350 }
8351
8352 if (!acpi_ec_write(fan_status_offset, s))
8353 rc = -EIO;
8354 else {
8355 tp_features.fan_ctrl_status_undef = 0;
8356 rc = 0;
8357 }
8358 break;
8359
8360 case TPACPI_FAN_WR_ACPI_SFAN:
8361 rc = fan_get_status(&s);
8362 if (rc)
8363 break;
8364
8365 s &= 0x07;
8366
8367 /* Set fan to at least level 4 */
8368 s |= 4;
8369
8370 if (!acpi_evalf(sfan_handle, NULL, NULL, "vd", s))
8371 rc = -EIO;
8372 else
8373 rc = 0;
8374 break;
8375
8376 case TPACPI_FAN_WR_ACPI_FANW:
8377 if (!acpi_evalf(fanw_handle, NULL, NULL, "vdd", 0x8106, 0x05)) {
8378 rc = -EIO;
8379 break;
8380 }
8381 if (!acpi_evalf(fanw_handle, NULL, NULL, "vdd", 0x8100, 0x00)) {
8382 rc = -EIO;
8383 break;
8384 }
8385
8386 rc = 0;
8387 break;
8388
8389 default:
8390 rc = -ENXIO;
8391 }
8392
8393 mutex_unlock(&fan_mutex);
8394
8395 if (!rc)
8396 vdbg_printk(TPACPI_DBG_FAN,
8397 "fan control: set fan control register to 0x%02x\n",
8398 s);
8399 return rc;
8400 }
8401
fan_set_disable(void)8402 static int fan_set_disable(void)
8403 {
8404 int rc;
8405
8406 if (!fan_control_allowed)
8407 return -EPERM;
8408
8409 if (mutex_lock_killable(&fan_mutex))
8410 return -ERESTARTSYS;
8411
8412 rc = 0;
8413 switch (fan_control_access_mode) {
8414 case TPACPI_FAN_WR_ACPI_FANS:
8415 case TPACPI_FAN_WR_TPEC:
8416 if (!acpi_ec_write(fan_status_offset, 0x00))
8417 rc = -EIO;
8418 else {
8419 fan_control_desired_level = 0;
8420 tp_features.fan_ctrl_status_undef = 0;
8421 }
8422 break;
8423
8424 case TPACPI_FAN_WR_ACPI_SFAN:
8425 if (!acpi_evalf(sfan_handle, NULL, NULL, "vd", 0x00))
8426 rc = -EIO;
8427 else
8428 fan_control_desired_level = 0;
8429 break;
8430
8431 case TPACPI_FAN_WR_ACPI_FANW:
8432 if (!acpi_evalf(fanw_handle, NULL, NULL, "vdd", 0x8106, 0x45)) {
8433 rc = -EIO;
8434 break;
8435 }
8436 if (!acpi_evalf(fanw_handle, NULL, NULL, "vdd", 0x8100, 0xff)) {
8437 rc = -EIO;
8438 break;
8439 }
8440 if (!acpi_evalf(fanw_handle, NULL, NULL, "vdd", 0x8102, 0x00)) {
8441 rc = -EIO;
8442 break;
8443 }
8444 rc = 0;
8445 break;
8446
8447 default:
8448 rc = -ENXIO;
8449 }
8450
8451 if (!rc)
8452 vdbg_printk(TPACPI_DBG_FAN,
8453 "fan control: set fan control register to 0\n");
8454
8455 mutex_unlock(&fan_mutex);
8456 return rc;
8457 }
8458
fan_set_speed(int speed)8459 static int fan_set_speed(int speed)
8460 {
8461 int rc;
8462
8463 if (!fan_control_allowed)
8464 return -EPERM;
8465
8466 if (mutex_lock_killable(&fan_mutex))
8467 return -ERESTARTSYS;
8468
8469 rc = 0;
8470 switch (fan_control_access_mode) {
8471 case TPACPI_FAN_WR_ACPI_FANS:
8472 if (speed >= 0 && speed <= 65535) {
8473 if (!acpi_evalf(fans_handle, NULL, NULL, "vddd",
8474 speed, speed, speed))
8475 rc = -EIO;
8476 } else
8477 rc = -EINVAL;
8478 break;
8479
8480 case TPACPI_FAN_WR_ACPI_FANW:
8481 if (speed >= 0 && speed <= 65535) {
8482 if (!acpi_evalf(fanw_handle, NULL, NULL, "vdd", 0x8106, 0x45)) {
8483 rc = -EIO;
8484 break;
8485 }
8486 if (!acpi_evalf(fanw_handle, NULL, NULL, "vdd", 0x8100, 0xff)) {
8487 rc = -EIO;
8488 break;
8489 }
8490 if (!acpi_evalf(fanw_handle, NULL, NULL, "vdd",
8491 0x8102, speed * 100 / 65535))
8492 rc = -EIO;
8493 } else
8494 rc = -EINVAL;
8495 break;
8496
8497 default:
8498 rc = -ENXIO;
8499 }
8500
8501 mutex_unlock(&fan_mutex);
8502 return rc;
8503 }
8504
fan_watchdog_reset(void)8505 static void fan_watchdog_reset(void)
8506 {
8507 if (fan_control_access_mode == TPACPI_FAN_WR_NONE)
8508 return;
8509
8510 if (fan_watchdog_maxinterval > 0 &&
8511 tpacpi_lifecycle != TPACPI_LIFE_EXITING)
8512 mod_delayed_work(tpacpi_wq, &fan_watchdog_task,
8513 secs_to_jiffies(fan_watchdog_maxinterval));
8514 else
8515 cancel_delayed_work(&fan_watchdog_task);
8516 }
8517
fan_watchdog_fire(struct work_struct * ignored)8518 static void fan_watchdog_fire(struct work_struct *ignored)
8519 {
8520 int rc;
8521
8522 if (tpacpi_lifecycle != TPACPI_LIFE_RUNNING)
8523 return;
8524
8525 pr_notice("fan watchdog: enabling fan\n");
8526 rc = fan_set_enable();
8527 if (rc < 0) {
8528 pr_err("fan watchdog: error %d while enabling fan, will try again later...\n",
8529 rc);
8530 /* reschedule for later */
8531 fan_watchdog_reset();
8532 }
8533 }
8534
8535 /*
8536 * SYSFS fan layout: hwmon compatible (device)
8537 *
8538 * pwm*_enable:
8539 * 0: "disengaged" mode
8540 * 1: manual mode
8541 * 2: native EC "auto" mode (recommended, hardware default)
8542 *
8543 * pwm*: set speed in manual mode, ignored otherwise.
8544 * 0 is level 0; 255 is level 7. Intermediate points done with linear
8545 * interpolation.
8546 *
8547 * fan*_input: tachometer reading, RPM
8548 *
8549 *
8550 * SYSFS fan layout: extensions
8551 *
8552 * fan_watchdog (driver):
8553 * fan watchdog interval in seconds, 0 disables (default), max 120
8554 */
8555
8556 /* sysfs fan pwm1_enable ----------------------------------------------- */
fan_pwm1_enable_show(struct device * dev,struct device_attribute * attr,char * buf)8557 static ssize_t fan_pwm1_enable_show(struct device *dev,
8558 struct device_attribute *attr,
8559 char *buf)
8560 {
8561 int res, mode;
8562 u8 status;
8563
8564 res = fan_get_status_safe(&status);
8565 if (res)
8566 return res;
8567
8568 if (status & TP_EC_FAN_FULLSPEED) {
8569 mode = 0;
8570 } else if (status & TP_EC_FAN_AUTO) {
8571 mode = 2;
8572 } else
8573 mode = 1;
8574
8575 return sysfs_emit(buf, "%d\n", mode);
8576 }
8577
fan_pwm1_enable_store(struct device * dev,struct device_attribute * attr,const char * buf,size_t count)8578 static ssize_t fan_pwm1_enable_store(struct device *dev,
8579 struct device_attribute *attr,
8580 const char *buf, size_t count)
8581 {
8582 unsigned long t;
8583 int res, level;
8584
8585 if (parse_strtoul(buf, 2, &t))
8586 return -EINVAL;
8587
8588 tpacpi_disclose_usertask("hwmon pwm1_enable",
8589 "set fan mode to %lu\n", t);
8590
8591 switch (t) {
8592 case 0:
8593 level = TP_EC_FAN_FULLSPEED;
8594 break;
8595 case 1:
8596 level = TPACPI_FAN_LAST_LEVEL;
8597 break;
8598 case 2:
8599 level = TP_EC_FAN_AUTO;
8600 break;
8601 case 3:
8602 /* reserved for software-controlled auto mode */
8603 return -ENOSYS;
8604 default:
8605 return -EINVAL;
8606 }
8607
8608 res = fan_set_level_safe(level);
8609 if (res == -ENXIO)
8610 return -EINVAL;
8611 else if (res < 0)
8612 return res;
8613
8614 fan_watchdog_reset();
8615
8616 return count;
8617 }
8618
8619 static DEVICE_ATTR(pwm1_enable, S_IWUSR | S_IRUGO,
8620 fan_pwm1_enable_show, fan_pwm1_enable_store);
8621
8622 /* sysfs fan pwm1 ------------------------------------------------------ */
fan_pwm1_show(struct device * dev,struct device_attribute * attr,char * buf)8623 static ssize_t fan_pwm1_show(struct device *dev,
8624 struct device_attribute *attr,
8625 char *buf)
8626 {
8627 int res;
8628 u8 status;
8629
8630 res = fan_get_status_safe(&status);
8631 if (res)
8632 return res;
8633
8634 if ((status &
8635 (TP_EC_FAN_AUTO | TP_EC_FAN_FULLSPEED)) != 0)
8636 status = fan_control_desired_level;
8637
8638 if (status > 7)
8639 status = 7;
8640
8641 return sysfs_emit(buf, "%u\n", (status * 255) / 7);
8642 }
8643
fan_pwm1_store(struct device * dev,struct device_attribute * attr,const char * buf,size_t count)8644 static ssize_t fan_pwm1_store(struct device *dev,
8645 struct device_attribute *attr,
8646 const char *buf, size_t count)
8647 {
8648 unsigned long s;
8649 int rc;
8650 u8 status, newlevel;
8651
8652 if (parse_strtoul(buf, 255, &s))
8653 return -EINVAL;
8654
8655 tpacpi_disclose_usertask("hwmon pwm1",
8656 "set fan speed to %lu\n", s);
8657
8658 /* scale down from 0-255 to 0-7 */
8659 newlevel = (s >> 5) & 0x07;
8660
8661 if (mutex_lock_killable(&fan_mutex))
8662 return -ERESTARTSYS;
8663
8664 rc = fan_get_status(&status);
8665 if (!rc && (status &
8666 (TP_EC_FAN_AUTO | TP_EC_FAN_FULLSPEED)) == 0) {
8667 rc = fan_set_level(newlevel);
8668 if (rc == -ENXIO)
8669 rc = -EINVAL;
8670 else if (!rc) {
8671 fan_update_desired_level(newlevel);
8672 fan_watchdog_reset();
8673 }
8674 }
8675
8676 mutex_unlock(&fan_mutex);
8677 return (rc) ? rc : count;
8678 }
8679
8680 static DEVICE_ATTR(pwm1, S_IWUSR | S_IRUGO, fan_pwm1_show, fan_pwm1_store);
8681
8682 /* sysfs fan fan1_input ------------------------------------------------ */
fan_fan1_input_show(struct device * dev,struct device_attribute * attr,char * buf)8683 static ssize_t fan_fan1_input_show(struct device *dev,
8684 struct device_attribute *attr,
8685 char *buf)
8686 {
8687 int res;
8688 unsigned int speed;
8689
8690 res = fan_get_speed(&speed);
8691 if (res < 0)
8692 return res;
8693
8694 /* Check for fan speeds displayed in hexadecimal */
8695 if (!ecfw_with_fan_dec_rpm)
8696 return sysfs_emit(buf, "%u\n", speed);
8697 else
8698 return sysfs_emit(buf, "%x\n", speed);
8699 }
8700
8701 static DEVICE_ATTR(fan1_input, S_IRUGO, fan_fan1_input_show, NULL);
8702
8703 /* sysfs fan fan2_input ------------------------------------------------ */
fan_fan2_input_show(struct device * dev,struct device_attribute * attr,char * buf)8704 static ssize_t fan_fan2_input_show(struct device *dev,
8705 struct device_attribute *attr,
8706 char *buf)
8707 {
8708 int res;
8709 unsigned int speed;
8710
8711 res = fan2_get_speed(&speed);
8712 if (res < 0)
8713 return res;
8714
8715 /* Check for fan speeds displayed in hexadecimal */
8716 if (!ecfw_with_fan_dec_rpm)
8717 return sysfs_emit(buf, "%u\n", speed);
8718 else
8719 return sysfs_emit(buf, "%x\n", speed);
8720 }
8721
8722 static DEVICE_ATTR(fan2_input, S_IRUGO, fan_fan2_input_show, NULL);
8723
8724 /* sysfs fan fan_watchdog (hwmon driver) ------------------------------- */
fan_watchdog_show(struct device_driver * drv,char * buf)8725 static ssize_t fan_watchdog_show(struct device_driver *drv, char *buf)
8726 {
8727 return sysfs_emit(buf, "%u\n", fan_watchdog_maxinterval);
8728 }
8729
fan_watchdog_store(struct device_driver * drv,const char * buf,size_t count)8730 static ssize_t fan_watchdog_store(struct device_driver *drv, const char *buf,
8731 size_t count)
8732 {
8733 unsigned long t;
8734
8735 if (parse_strtoul(buf, 120, &t))
8736 return -EINVAL;
8737
8738 if (!fan_control_allowed)
8739 return -EPERM;
8740
8741 fan_watchdog_maxinterval = t;
8742 fan_watchdog_reset();
8743
8744 tpacpi_disclose_usertask("fan_watchdog", "set to %lu\n", t);
8745
8746 return count;
8747 }
8748 static DRIVER_ATTR_RW(fan_watchdog);
8749
8750 /* --------------------------------------------------------------------- */
8751
8752 static struct attribute *fan_attributes[] = {
8753 &dev_attr_pwm1_enable.attr,
8754 &dev_attr_pwm1.attr,
8755 &dev_attr_fan1_input.attr,
8756 &dev_attr_fan2_input.attr,
8757 NULL
8758 };
8759
fan_attr_is_visible(struct kobject * kobj,struct attribute * attr,int n)8760 static umode_t fan_attr_is_visible(struct kobject *kobj, struct attribute *attr,
8761 int n)
8762 {
8763 if (fan_status_access_mode == TPACPI_FAN_NONE &&
8764 fan_control_access_mode == TPACPI_FAN_WR_NONE)
8765 return 0;
8766
8767 if (attr == &dev_attr_fan2_input.attr) {
8768 if (!tp_features.second_fan)
8769 return 0;
8770 }
8771
8772 return attr->mode;
8773 }
8774
8775 static const struct attribute_group fan_attr_group = {
8776 .is_visible = fan_attr_is_visible,
8777 .attrs = fan_attributes,
8778 };
8779
8780 static struct attribute *fan_driver_attributes[] = {
8781 &driver_attr_fan_watchdog.attr,
8782 NULL
8783 };
8784
8785 static const struct attribute_group fan_driver_attr_group = {
8786 .is_visible = fan_attr_is_visible,
8787 .attrs = fan_driver_attributes,
8788 };
8789
8790 #define TPACPI_FAN_Q1 0x0001 /* Uninitialized HFSP */
8791 #define TPACPI_FAN_2FAN 0x0002 /* EC 0x31 bit 0 selects fan2 */
8792 #define TPACPI_FAN_2CTL 0x0004 /* selects fan2 control */
8793 #define TPACPI_FAN_NOFAN 0x0008 /* no fan available */
8794 #define TPACPI_FAN_NS 0x0010 /* For EC with non-Standard register addresses */
8795 #define TPACPI_FAN_DECRPM 0x0020 /* For ECFW's with RPM in register as decimal */
8796 #define TPACPI_FAN_TPR 0x0040 /* Fan speed is in Ticks Per Revolution */
8797 #define TPACPI_FAN_NOACPI 0x0080 /* Don't use ACPI methods even if detected */
8798
8799 static const struct tpacpi_quirk fan_quirk_table[] __initconst = {
8800 TPACPI_QEC_IBM('1', 'Y', TPACPI_FAN_Q1),
8801 TPACPI_QEC_IBM('7', '8', TPACPI_FAN_Q1),
8802 TPACPI_QEC_IBM('7', '6', TPACPI_FAN_Q1),
8803 TPACPI_QEC_IBM('7', '0', TPACPI_FAN_Q1),
8804 TPACPI_QEC_LNV('7', 'M', TPACPI_FAN_2FAN),
8805 TPACPI_Q_LNV('N', '1', TPACPI_FAN_2FAN),
8806 TPACPI_Q_LNV3('N', '1', 'D', TPACPI_FAN_2CTL), /* P70 */
8807 TPACPI_Q_LNV3('N', '1', 'E', TPACPI_FAN_2CTL), /* P50 */
8808 TPACPI_Q_LNV3('N', '1', 'T', TPACPI_FAN_2CTL), /* P71 */
8809 TPACPI_Q_LNV3('N', '1', 'U', TPACPI_FAN_2CTL), /* P51 */
8810 TPACPI_Q_LNV3('N', '2', 'C', TPACPI_FAN_2CTL), /* P52 / P72 */
8811 TPACPI_Q_LNV3('N', '2', 'N', TPACPI_FAN_2CTL), /* P53 / P73 */
8812 TPACPI_Q_LNV3('N', '2', 'E', TPACPI_FAN_2CTL), /* P1 / X1 Extreme (1st gen) */
8813 TPACPI_Q_LNV3('N', '2', 'O', TPACPI_FAN_2CTL), /* P1 / X1 Extreme (2nd gen) */
8814 TPACPI_Q_LNV3('N', '3', '0', TPACPI_FAN_2CTL), /* P15 (1st gen) / P15v (1st gen) */
8815 TPACPI_Q_LNV3('N', '3', '7', TPACPI_FAN_2CTL), /* T15g (2nd gen) */
8816 TPACPI_Q_LNV3('R', '1', 'F', TPACPI_FAN_NS), /* L13 Yoga Gen 2 */
8817 TPACPI_Q_LNV3('N', '2', 'U', TPACPI_FAN_NS), /* X13 Yoga Gen 2*/
8818 TPACPI_Q_LNV3('R', '0', 'R', TPACPI_FAN_NS), /* L380 */
8819 TPACPI_Q_LNV3('R', '1', '5', TPACPI_FAN_NS), /* L13 Yoga Gen 1 */
8820 TPACPI_Q_LNV3('R', '1', '0', TPACPI_FAN_NS), /* L390 */
8821 TPACPI_Q_LNV3('N', '2', 'L', TPACPI_FAN_NS), /* X13 Yoga Gen 1 */
8822 TPACPI_Q_LNV3('R', '0', 'T', TPACPI_FAN_NS), /* 11e Gen5 GL */
8823 TPACPI_Q_LNV3('R', '1', 'D', TPACPI_FAN_NS), /* 11e Gen5 GL-R */
8824 TPACPI_Q_LNV3('R', '0', 'V', TPACPI_FAN_NS), /* 11e Gen5 KL-Y */
8825 TPACPI_Q_LNV3('N', '1', 'O', TPACPI_FAN_NOFAN), /* X1 Tablet (2nd gen) */
8826 TPACPI_Q_LNV3('R', '0', 'Q', TPACPI_FAN_DECRPM),/* L480 */
8827 TPACPI_Q_LNV('8', 'F', TPACPI_FAN_TPR), /* ThinkPad x120e */
8828 TPACPI_Q_LNV3('R', '0', '0', TPACPI_FAN_NOACPI),/* E560 */
8829 TPACPI_Q_LNV3('R', '1', '2', TPACPI_FAN_NOACPI),/* T495 */
8830 TPACPI_Q_LNV3('R', '1', '3', TPACPI_FAN_NOACPI),/* T495s */
8831 };
8832
fan_init(struct ibm_init_struct * iibm)8833 static int __init fan_init(struct ibm_init_struct *iibm)
8834 {
8835 unsigned long quirks;
8836
8837 vdbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_FAN,
8838 "initializing fan subdriver\n");
8839
8840 mutex_init(&fan_mutex);
8841 fan_status_access_mode = TPACPI_FAN_NONE;
8842 fan_control_access_mode = TPACPI_FAN_WR_NONE;
8843 fan_control_commands = 0;
8844 fan_watchdog_maxinterval = 0;
8845 tp_features.fan_ctrl_status_undef = 0;
8846 tp_features.second_fan = 0;
8847 tp_features.second_fan_ctl = 0;
8848 fan_control_desired_level = 7;
8849
8850 if (tpacpi_is_ibm()) {
8851 TPACPI_ACPIHANDLE_INIT(fans);
8852 TPACPI_ACPIHANDLE_INIT(gfan);
8853 TPACPI_ACPIHANDLE_INIT(sfan);
8854 }
8855 if (tpacpi_is_lenovo()) {
8856 TPACPI_ACPIHANDLE_INIT(fang);
8857 TPACPI_ACPIHANDLE_INIT(fanw);
8858 }
8859
8860 quirks = tpacpi_check_quirks(fan_quirk_table,
8861 ARRAY_SIZE(fan_quirk_table));
8862
8863 if (quirks & TPACPI_FAN_NOFAN) {
8864 pr_info("No integrated ThinkPad fan available\n");
8865 return -ENODEV;
8866 }
8867
8868 if (quirks & TPACPI_FAN_NS) {
8869 pr_info("ECFW with non-standard fan reg control found\n");
8870 fan_with_ns_addr = 1;
8871 /* Fan ctrl support from host is undefined for now */
8872 tp_features.fan_ctrl_status_undef = 1;
8873 }
8874
8875 /* Check for the EC/BIOS with RPM reported in decimal*/
8876 if (quirks & TPACPI_FAN_DECRPM) {
8877 pr_info("ECFW with fan RPM as decimal in EC register\n");
8878 ecfw_with_fan_dec_rpm = 1;
8879 tp_features.fan_ctrl_status_undef = 1;
8880 }
8881
8882 if (quirks & TPACPI_FAN_NOACPI) {
8883 /* E560, T495, T495s */
8884 pr_info("Ignoring buggy ACPI fan access method\n");
8885 fang_handle = NULL;
8886 fanw_handle = NULL;
8887 }
8888
8889 if (gfan_handle) {
8890 /* 570, 600e/x, 770e, 770x */
8891 fan_status_access_mode = TPACPI_FAN_RD_ACPI_GFAN;
8892 } else if (fang_handle) {
8893 /* E531 */
8894 fan_status_access_mode = TPACPI_FAN_RD_ACPI_FANG;
8895 } else {
8896 /* all other ThinkPads: note that even old-style
8897 * ThinkPad ECs supports the fan control register */
8898 if (fan_with_ns_addr ||
8899 likely(acpi_ec_read(fan_status_offset, &fan_control_initial_status))) {
8900 int res;
8901 unsigned int speed;
8902
8903 fan_status_access_mode = fan_with_ns_addr ?
8904 TPACPI_FAN_RD_TPEC_NS : TPACPI_FAN_RD_TPEC;
8905
8906 if (quirks & TPACPI_FAN_Q1)
8907 fan_quirk1_setup();
8908 if (quirks & TPACPI_FAN_TPR)
8909 fan_speed_in_tpr = true;
8910 /* Try and probe the 2nd fan */
8911 tp_features.second_fan = 1; /* needed for get_speed to work */
8912 res = fan2_get_speed(&speed);
8913 if (res >= 0 && speed != FAN_NOT_PRESENT) {
8914 /* It responded - so let's assume it's there */
8915 tp_features.second_fan = 1;
8916 /* fan control not currently available for ns ECFW */
8917 tp_features.second_fan_ctl = !fan_with_ns_addr;
8918 pr_info("secondary fan control detected & enabled\n");
8919 } else {
8920 /* Fan not auto-detected */
8921 tp_features.second_fan = 0;
8922 if (quirks & TPACPI_FAN_2FAN) {
8923 tp_features.second_fan = 1;
8924 pr_info("secondary fan support enabled\n");
8925 }
8926 if (quirks & TPACPI_FAN_2CTL) {
8927 tp_features.second_fan = 1;
8928 tp_features.second_fan_ctl = 1;
8929 pr_info("secondary fan control enabled\n");
8930 }
8931 }
8932 } else {
8933 pr_err("ThinkPad ACPI EC access misbehaving, fan status and control unavailable\n");
8934 return -ENODEV;
8935 }
8936 }
8937
8938 if (sfan_handle) {
8939 /* 570, 770x-JL */
8940 fan_control_access_mode = TPACPI_FAN_WR_ACPI_SFAN;
8941 fan_control_commands |=
8942 TPACPI_FAN_CMD_LEVEL | TPACPI_FAN_CMD_ENABLE;
8943 } else if (fanw_handle) {
8944 /* E531 */
8945 fan_control_access_mode = TPACPI_FAN_WR_ACPI_FANW;
8946 fan_control_commands |=
8947 TPACPI_FAN_CMD_LEVEL | TPACPI_FAN_CMD_SPEED | TPACPI_FAN_CMD_ENABLE;
8948 } else {
8949 if (!gfan_handle) {
8950 /* gfan without sfan means no fan control */
8951 /* all other models implement TP EC 0x2f control */
8952
8953 if (fans_handle) {
8954 /* X31, X40, X41 */
8955 fan_control_access_mode =
8956 TPACPI_FAN_WR_ACPI_FANS;
8957 fan_control_commands |=
8958 TPACPI_FAN_CMD_SPEED |
8959 TPACPI_FAN_CMD_LEVEL |
8960 TPACPI_FAN_CMD_ENABLE;
8961 } else {
8962 fan_control_access_mode = TPACPI_FAN_WR_TPEC;
8963 fan_control_commands |=
8964 TPACPI_FAN_CMD_LEVEL |
8965 TPACPI_FAN_CMD_ENABLE;
8966 }
8967 }
8968 }
8969
8970 vdbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_FAN,
8971 "fan is %s, modes %d, %d\n",
8972 str_supported(fan_status_access_mode != TPACPI_FAN_NONE ||
8973 fan_control_access_mode != TPACPI_FAN_WR_NONE),
8974 fan_status_access_mode, fan_control_access_mode);
8975
8976 /* fan control master switch */
8977 if (!fan_control_allowed) {
8978 fan_control_access_mode = TPACPI_FAN_WR_NONE;
8979 fan_control_commands = 0;
8980 dbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_FAN,
8981 "fan control features disabled by parameter\n");
8982 }
8983
8984 /* update fan_control_desired_level */
8985 if (fan_status_access_mode != TPACPI_FAN_NONE)
8986 fan_get_status_safe(NULL);
8987
8988 if (fan_status_access_mode == TPACPI_FAN_NONE &&
8989 fan_control_access_mode == TPACPI_FAN_WR_NONE)
8990 return -ENODEV;
8991
8992 return 0;
8993 }
8994
fan_exit(void)8995 static void fan_exit(void)
8996 {
8997 vdbg_printk(TPACPI_DBG_EXIT | TPACPI_DBG_FAN,
8998 "cancelling any pending fan watchdog tasks\n");
8999
9000 cancel_delayed_work(&fan_watchdog_task);
9001 flush_workqueue(tpacpi_wq);
9002 }
9003
fan_suspend(void)9004 static void fan_suspend(void)
9005 {
9006 int rc;
9007
9008 if (!fan_control_allowed)
9009 return;
9010
9011 /* Store fan status in cache */
9012 fan_control_resume_level = 0;
9013 rc = fan_get_status_safe(&fan_control_resume_level);
9014 if (rc)
9015 pr_notice("failed to read fan level for later restore during resume: %d\n",
9016 rc);
9017
9018 /* if it is undefined, don't attempt to restore it.
9019 * KEEP THIS LAST */
9020 if (tp_features.fan_ctrl_status_undef)
9021 fan_control_resume_level = 0;
9022 }
9023
fan_resume(void)9024 static void fan_resume(void)
9025 {
9026 u8 current_level = 7;
9027 bool do_set = false;
9028 int rc;
9029
9030 /* DSDT *always* updates status on resume */
9031 tp_features.fan_ctrl_status_undef = 0;
9032
9033 if (!fan_control_allowed ||
9034 !fan_control_resume_level ||
9035 fan_get_status_safe(¤t_level))
9036 return;
9037
9038 switch (fan_control_access_mode) {
9039 case TPACPI_FAN_WR_ACPI_SFAN:
9040 /* never decrease fan level */
9041 do_set = (fan_control_resume_level > current_level);
9042 break;
9043 case TPACPI_FAN_WR_ACPI_FANS:
9044 case TPACPI_FAN_WR_TPEC:
9045 /* never decrease fan level, scale is:
9046 * TP_EC_FAN_FULLSPEED > 7 >= TP_EC_FAN_AUTO
9047 *
9048 * We expect the firmware to set either 7 or AUTO, but we
9049 * handle FULLSPEED out of paranoia.
9050 *
9051 * So, we can safely only restore FULLSPEED or 7, anything
9052 * else could slow the fan. Restoring AUTO is useless, at
9053 * best that's exactly what the DSDT already set (it is the
9054 * slower it uses).
9055 *
9056 * Always keep in mind that the DSDT *will* have set the
9057 * fans to what the vendor supposes is the best level. We
9058 * muck with it only to speed the fan up.
9059 */
9060 if (fan_control_resume_level != 7 &&
9061 !(fan_control_resume_level & TP_EC_FAN_FULLSPEED))
9062 return;
9063 else
9064 do_set = !(current_level & TP_EC_FAN_FULLSPEED) &&
9065 (current_level != fan_control_resume_level);
9066 break;
9067 default:
9068 return;
9069 }
9070 if (do_set) {
9071 pr_notice("restoring fan level to 0x%02x\n",
9072 fan_control_resume_level);
9073 rc = fan_set_level_safe(fan_control_resume_level);
9074 if (rc < 0)
9075 pr_notice("failed to restore fan level: %d\n", rc);
9076 }
9077 }
9078
fan_read(struct seq_file * m)9079 static int fan_read(struct seq_file *m)
9080 {
9081 int rc;
9082 u8 status;
9083 unsigned int speed = 0;
9084
9085 switch (fan_status_access_mode) {
9086 case TPACPI_FAN_RD_ACPI_GFAN:
9087 /* 570, 600e/x, 770e, 770x */
9088 rc = fan_get_status_safe(&status);
9089 if (rc)
9090 return rc;
9091
9092 seq_printf(m, "status:\t\t%s\n"
9093 "level:\t\t%d\n",
9094 str_enabled_disabled(status), status);
9095 break;
9096
9097 case TPACPI_FAN_RD_TPEC_NS:
9098 case TPACPI_FAN_RD_TPEC:
9099 case TPACPI_FAN_RD_ACPI_FANG:
9100 /* all except 570, 600e/x, 770e, 770x */
9101 rc = fan_get_status_safe(&status);
9102 if (rc)
9103 return rc;
9104
9105 seq_printf(m, "status:\t\t%s\n", str_enabled_disabled(status));
9106
9107 rc = fan_get_speed(&speed);
9108 if (rc < 0)
9109 return rc;
9110
9111 /* Check for fan speeds displayed in hexadecimal */
9112 if (!ecfw_with_fan_dec_rpm)
9113 seq_printf(m, "speed:\t\t%d\n", speed);
9114 else
9115 seq_printf(m, "speed:\t\t%x\n", speed);
9116
9117 if (fan_status_access_mode == TPACPI_FAN_RD_TPEC_NS) {
9118 /*
9119 * No full speed bit in NS EC
9120 * EC Auto mode is set by default.
9121 * No other levels settings available
9122 */
9123 seq_printf(m, "level:\t\t%s\n", status & FAN_NS_CTRL ? "unknown" : "auto");
9124 } else if (fan_status_access_mode == TPACPI_FAN_RD_TPEC) {
9125 if (status & TP_EC_FAN_FULLSPEED)
9126 /* Disengaged mode takes precedence */
9127 seq_printf(m, "level:\t\tdisengaged\n");
9128 else if (status & TP_EC_FAN_AUTO)
9129 seq_printf(m, "level:\t\tauto\n");
9130 else
9131 seq_printf(m, "level:\t\t%d\n", status);
9132 }
9133 break;
9134
9135 case TPACPI_FAN_NONE:
9136 default:
9137 seq_printf(m, "status:\t\tnot supported\n");
9138 }
9139
9140 if (fan_control_commands & TPACPI_FAN_CMD_LEVEL) {
9141 seq_printf(m, "commands:\tlevel <level>");
9142
9143 switch (fan_control_access_mode) {
9144 case TPACPI_FAN_WR_ACPI_SFAN:
9145 seq_printf(m, " (<level> is 0-7)\n");
9146 break;
9147
9148 default:
9149 seq_printf(m, " (<level> is 0-7, auto, disengaged, full-speed)\n");
9150 break;
9151 }
9152 }
9153
9154 if (fan_control_commands & TPACPI_FAN_CMD_ENABLE)
9155 seq_printf(m, "commands:\tenable, disable\n"
9156 "commands:\twatchdog <timeout> (<timeout> is 0 (off), 1-120 (seconds))\n");
9157
9158 if (fan_control_commands & TPACPI_FAN_CMD_SPEED)
9159 seq_printf(m, "commands:\tspeed <speed> (<speed> is 0-65535)\n");
9160
9161 return 0;
9162 }
9163
fan_write_cmd_level(const char * cmd,int * rc)9164 static int fan_write_cmd_level(const char *cmd, int *rc)
9165 {
9166 int level;
9167
9168 if (strstarts(cmd, "level auto"))
9169 level = TP_EC_FAN_AUTO;
9170 else if (strstarts(cmd, "level disengaged") || strstarts(cmd, "level full-speed"))
9171 level = TP_EC_FAN_FULLSPEED;
9172 else if (sscanf(cmd, "level %d", &level) != 1)
9173 return 0;
9174
9175 *rc = fan_set_level_safe(level);
9176 if (*rc == -ENXIO)
9177 pr_err("level command accepted for unsupported access mode %d\n",
9178 fan_control_access_mode);
9179 else if (!*rc)
9180 tpacpi_disclose_usertask("procfs fan",
9181 "set level to %d\n", level);
9182
9183 return 1;
9184 }
9185
fan_write_cmd_enable(const char * cmd,int * rc)9186 static int fan_write_cmd_enable(const char *cmd, int *rc)
9187 {
9188 if (!strstarts(cmd, "enable"))
9189 return 0;
9190
9191 *rc = fan_set_enable();
9192 if (*rc == -ENXIO)
9193 pr_err("enable command accepted for unsupported access mode %d\n",
9194 fan_control_access_mode);
9195 else if (!*rc)
9196 tpacpi_disclose_usertask("procfs fan", "enable\n");
9197
9198 return 1;
9199 }
9200
fan_write_cmd_disable(const char * cmd,int * rc)9201 static int fan_write_cmd_disable(const char *cmd, int *rc)
9202 {
9203 if (!strstarts(cmd, "disable"))
9204 return 0;
9205
9206 *rc = fan_set_disable();
9207 if (*rc == -ENXIO)
9208 pr_err("disable command accepted for unsupported access mode %d\n",
9209 fan_control_access_mode);
9210 else if (!*rc)
9211 tpacpi_disclose_usertask("procfs fan", "disable\n");
9212
9213 return 1;
9214 }
9215
fan_write_cmd_speed(const char * cmd,int * rc)9216 static int fan_write_cmd_speed(const char *cmd, int *rc)
9217 {
9218 int speed;
9219
9220 /* TODO:
9221 * Support speed <low> <medium> <high> ? */
9222
9223 if (sscanf(cmd, "speed %d", &speed) != 1)
9224 return 0;
9225
9226 *rc = fan_set_speed(speed);
9227 if (*rc == -ENXIO)
9228 pr_err("speed command accepted for unsupported access mode %d\n",
9229 fan_control_access_mode);
9230 else if (!*rc)
9231 tpacpi_disclose_usertask("procfs fan",
9232 "set speed to %d\n", speed);
9233
9234 return 1;
9235 }
9236
fan_write_cmd_watchdog(const char * cmd,int * rc)9237 static int fan_write_cmd_watchdog(const char *cmd, int *rc)
9238 {
9239 int interval;
9240
9241 if (sscanf(cmd, "watchdog %d", &interval) != 1)
9242 return 0;
9243
9244 if (interval < 0 || interval > 120)
9245 *rc = -EINVAL;
9246 else {
9247 fan_watchdog_maxinterval = interval;
9248 tpacpi_disclose_usertask("procfs fan",
9249 "set watchdog timer to %d\n",
9250 interval);
9251 }
9252
9253 return 1;
9254 }
9255
fan_write(char * buf)9256 static int fan_write(char *buf)
9257 {
9258 char *cmd;
9259 int rc = 0;
9260
9261 while (!rc && (cmd = strsep(&buf, ","))) {
9262 if (!((fan_control_commands & TPACPI_FAN_CMD_LEVEL) &&
9263 fan_write_cmd_level(cmd, &rc)) &&
9264 !((fan_control_commands & TPACPI_FAN_CMD_ENABLE) &&
9265 (fan_write_cmd_enable(cmd, &rc) ||
9266 fan_write_cmd_disable(cmd, &rc) ||
9267 fan_write_cmd_watchdog(cmd, &rc))) &&
9268 !((fan_control_commands & TPACPI_FAN_CMD_SPEED) &&
9269 fan_write_cmd_speed(cmd, &rc))
9270 )
9271 rc = -EINVAL;
9272 else if (!rc)
9273 fan_watchdog_reset();
9274 }
9275
9276 return rc;
9277 }
9278
9279 static struct ibm_struct fan_driver_data = {
9280 .name = "fan",
9281 .read = fan_read,
9282 .write = fan_write,
9283 .exit = fan_exit,
9284 .suspend = fan_suspend,
9285 .resume = fan_resume,
9286 };
9287
9288 /*************************************************************************
9289 * Mute LED subdriver
9290 */
9291
9292 #define TPACPI_LED_MAX 2
9293
9294 struct tp_led_table {
9295 acpi_string name;
9296 int on_value;
9297 int off_value;
9298 int state;
9299 };
9300
9301 static struct tp_led_table led_tables[TPACPI_LED_MAX] = {
9302 [LED_AUDIO_MUTE] = {
9303 .name = "SSMS",
9304 .on_value = 1,
9305 .off_value = 0,
9306 },
9307 [LED_AUDIO_MICMUTE] = {
9308 .name = "MMTS",
9309 .on_value = 2,
9310 .off_value = 0,
9311 },
9312 };
9313
mute_led_on_off(struct tp_led_table * t,bool state)9314 static int mute_led_on_off(struct tp_led_table *t, bool state)
9315 {
9316 acpi_handle temp;
9317 int output;
9318
9319 if (ACPI_FAILURE(acpi_get_handle(hkey_handle, t->name, &temp))) {
9320 pr_warn("Thinkpad ACPI has no %s interface.\n", t->name);
9321 return -EIO;
9322 }
9323
9324 if (!acpi_evalf(hkey_handle, &output, t->name, "dd",
9325 state ? t->on_value : t->off_value))
9326 return -EIO;
9327
9328 t->state = state;
9329 return state;
9330 }
9331
tpacpi_led_set(int whichled,bool on)9332 static int tpacpi_led_set(int whichled, bool on)
9333 {
9334 struct tp_led_table *t;
9335
9336 t = &led_tables[whichled];
9337 if (t->state < 0 || t->state == on)
9338 return t->state;
9339 return mute_led_on_off(t, on);
9340 }
9341
tpacpi_led_mute_set(struct led_classdev * led_cdev,enum led_brightness brightness)9342 static int tpacpi_led_mute_set(struct led_classdev *led_cdev,
9343 enum led_brightness brightness)
9344 {
9345 return tpacpi_led_set(LED_AUDIO_MUTE, brightness != LED_OFF);
9346 }
9347
tpacpi_led_micmute_set(struct led_classdev * led_cdev,enum led_brightness brightness)9348 static int tpacpi_led_micmute_set(struct led_classdev *led_cdev,
9349 enum led_brightness brightness)
9350 {
9351 return tpacpi_led_set(LED_AUDIO_MICMUTE, brightness != LED_OFF);
9352 }
9353
9354 static struct led_classdev mute_led_cdev[TPACPI_LED_MAX] = {
9355 [LED_AUDIO_MUTE] = {
9356 .name = "platform::mute",
9357 .max_brightness = 1,
9358 .brightness_set_blocking = tpacpi_led_mute_set,
9359 .default_trigger = "audio-mute",
9360 },
9361 [LED_AUDIO_MICMUTE] = {
9362 .name = "platform::micmute",
9363 .max_brightness = 1,
9364 .brightness_set_blocking = tpacpi_led_micmute_set,
9365 .default_trigger = "audio-micmute",
9366 },
9367 };
9368
mute_led_init(struct ibm_init_struct * iibm)9369 static int mute_led_init(struct ibm_init_struct *iibm)
9370 {
9371 acpi_handle temp;
9372 int i, err;
9373
9374 for (i = 0; i < TPACPI_LED_MAX; i++) {
9375 struct tp_led_table *t = &led_tables[i];
9376 if (ACPI_FAILURE(acpi_get_handle(hkey_handle, t->name, &temp))) {
9377 t->state = -ENODEV;
9378 continue;
9379 }
9380
9381 err = led_classdev_register(&tpacpi_pdev->dev, &mute_led_cdev[i]);
9382 if (err < 0) {
9383 while (i--)
9384 led_classdev_unregister(&mute_led_cdev[i]);
9385 return err;
9386 }
9387 }
9388 return 0;
9389 }
9390
mute_led_exit(void)9391 static void mute_led_exit(void)
9392 {
9393 int i;
9394
9395 for (i = 0; i < TPACPI_LED_MAX; i++) {
9396 led_classdev_unregister(&mute_led_cdev[i]);
9397 tpacpi_led_set(i, false);
9398 }
9399 }
9400
mute_led_resume(void)9401 static void mute_led_resume(void)
9402 {
9403 int i;
9404
9405 for (i = 0; i < TPACPI_LED_MAX; i++) {
9406 struct tp_led_table *t = &led_tables[i];
9407 if (t->state >= 0)
9408 mute_led_on_off(t, t->state);
9409 }
9410 }
9411
9412 static struct ibm_struct mute_led_driver_data = {
9413 .name = "mute_led",
9414 .exit = mute_led_exit,
9415 .resume = mute_led_resume,
9416 };
9417
9418 /*
9419 * Battery Wear Control Driver
9420 * Contact: Ognjen Galic <smclt30p@gmail.com>
9421 */
9422
9423 /* Metadata */
9424
9425 #define GET_START "BCTG"
9426 #define SET_START "BCCS"
9427 #define GET_STOP "BCSG"
9428 #define SET_STOP "BCSS"
9429 #define GET_DISCHARGE "BDSG"
9430 #define SET_DISCHARGE "BDSS"
9431 #define GET_INHIBIT "BICG"
9432 #define SET_INHIBIT "BICS"
9433
9434 enum {
9435 BAT_ANY = 0,
9436 BAT_PRIMARY = 1,
9437 BAT_SECONDARY = 2
9438 };
9439
9440 enum {
9441 /* Error condition bit */
9442 METHOD_ERR = BIT(31),
9443 };
9444
9445 enum {
9446 /* This is used in the get/set helpers */
9447 THRESHOLD_START,
9448 THRESHOLD_STOP,
9449 FORCE_DISCHARGE,
9450 INHIBIT_CHARGE,
9451 };
9452
9453 struct tpacpi_battery_data {
9454 int charge_start;
9455 int start_support;
9456 int charge_stop;
9457 int stop_support;
9458 unsigned int charge_behaviours;
9459 };
9460
9461 struct tpacpi_battery_driver_data {
9462 struct tpacpi_battery_data batteries[3];
9463 int individual_addressing;
9464 };
9465
9466 static struct tpacpi_battery_driver_data battery_info;
9467
9468 /* ACPI helpers/functions/probes */
9469
9470 /*
9471 * This evaluates a ACPI method call specific to the battery
9472 * ACPI extension. The specifics are that an error is marked
9473 * in the 32rd bit of the response, so we just check that here.
9474 */
tpacpi_battery_acpi_eval(char * method,int * ret,int param)9475 static acpi_status tpacpi_battery_acpi_eval(char *method, int *ret, int param)
9476 {
9477 int response;
9478
9479 if (!acpi_evalf(hkey_handle, &response, method, "dd", param)) {
9480 acpi_handle_err(hkey_handle, "%s: evaluate failed", method);
9481 return AE_ERROR;
9482 }
9483 if (response & METHOD_ERR) {
9484 acpi_handle_err(hkey_handle,
9485 "%s evaluated but flagged as error", method);
9486 return AE_ERROR;
9487 }
9488 *ret = response;
9489 return AE_OK;
9490 }
9491
tpacpi_battery_get(int what,int battery,int * ret)9492 static int tpacpi_battery_get(int what, int battery, int *ret)
9493 {
9494 switch (what) {
9495 case THRESHOLD_START:
9496 if ACPI_FAILURE(tpacpi_battery_acpi_eval(GET_START, ret, battery))
9497 return -ENODEV;
9498
9499 /* The value is in the low 8 bits of the response */
9500 *ret = *ret & 0xFF;
9501 return 0;
9502 case THRESHOLD_STOP:
9503 if ACPI_FAILURE(tpacpi_battery_acpi_eval(GET_STOP, ret, battery))
9504 return -ENODEV;
9505 /* Value is in lower 8 bits */
9506 *ret = *ret & 0xFF;
9507 /*
9508 * On the stop value, if we return 0 that
9509 * does not make any sense. 0 means Default, which
9510 * means that charging stops at 100%, so we return
9511 * that.
9512 */
9513 if (*ret == 0)
9514 *ret = 100;
9515 return 0;
9516 case FORCE_DISCHARGE:
9517 if ACPI_FAILURE(tpacpi_battery_acpi_eval(GET_DISCHARGE, ret, battery))
9518 return -ENODEV;
9519 /* The force discharge status is in bit 0 */
9520 *ret = *ret & 0x01;
9521 return 0;
9522 case INHIBIT_CHARGE:
9523 if ACPI_FAILURE(tpacpi_battery_acpi_eval(GET_INHIBIT, ret, battery))
9524 return -ENODEV;
9525 /* The inhibit charge status is in bit 0 */
9526 *ret = *ret & 0x01;
9527 return 0;
9528 default:
9529 pr_crit("wrong parameter: %d", what);
9530 return -EINVAL;
9531 }
9532 }
9533
tpacpi_battery_set(int what,int battery,int value)9534 static int tpacpi_battery_set(int what, int battery, int value)
9535 {
9536 int param, ret;
9537 /* The first 8 bits are the value of the threshold */
9538 param = value;
9539 /* The battery ID is in bits 8-9, 2 bits */
9540 param |= battery << 8;
9541
9542 switch (what) {
9543 case THRESHOLD_START:
9544 if ACPI_FAILURE(tpacpi_battery_acpi_eval(SET_START, &ret, param)) {
9545 pr_err("failed to set charge threshold on battery %d",
9546 battery);
9547 return -ENODEV;
9548 }
9549 return 0;
9550 case THRESHOLD_STOP:
9551 if ACPI_FAILURE(tpacpi_battery_acpi_eval(SET_STOP, &ret, param)) {
9552 pr_err("failed to set stop threshold: %d", battery);
9553 return -ENODEV;
9554 }
9555 return 0;
9556 case FORCE_DISCHARGE:
9557 /* Force discharge is in bit 0,
9558 * break on AC attach is in bit 1 (won't work on some ThinkPads),
9559 * battery ID is in bits 8-9, 2 bits.
9560 */
9561 if (ACPI_FAILURE(tpacpi_battery_acpi_eval(SET_DISCHARGE, &ret, param))) {
9562 pr_err("failed to set force discharge on %d", battery);
9563 return -ENODEV;
9564 }
9565 return 0;
9566 case INHIBIT_CHARGE:
9567 /* When setting inhibit charge, we set a default value of
9568 * always breaking on AC detach and the effective time is set to
9569 * be permanent.
9570 * The battery ID is in bits 4-5, 2 bits,
9571 * the effective time is in bits 8-23, 2 bytes.
9572 * A time of FFFF indicates forever.
9573 */
9574 param = value;
9575 param |= battery << 4;
9576 param |= 0xFFFF << 8;
9577 if (ACPI_FAILURE(tpacpi_battery_acpi_eval(SET_INHIBIT, &ret, param))) {
9578 pr_err("failed to set inhibit charge on %d", battery);
9579 return -ENODEV;
9580 }
9581 return 0;
9582 default:
9583 pr_crit("wrong parameter: %d", what);
9584 return -EINVAL;
9585 }
9586 }
9587
tpacpi_battery_set_validate(int what,int battery,int value)9588 static int tpacpi_battery_set_validate(int what, int battery, int value)
9589 {
9590 int ret, v;
9591
9592 ret = tpacpi_battery_set(what, battery, value);
9593 if (ret < 0)
9594 return ret;
9595
9596 ret = tpacpi_battery_get(what, battery, &v);
9597 if (ret < 0)
9598 return ret;
9599
9600 if (v == value)
9601 return 0;
9602
9603 msleep(500);
9604
9605 ret = tpacpi_battery_get(what, battery, &v);
9606 if (ret < 0)
9607 return ret;
9608
9609 if (v == value)
9610 return 0;
9611
9612 return -EIO;
9613 }
9614
tpacpi_battery_probe(int battery)9615 static int tpacpi_battery_probe(int battery)
9616 {
9617 int ret = 0;
9618
9619 memset(&battery_info.batteries[battery], 0,
9620 sizeof(battery_info.batteries[battery]));
9621
9622 /*
9623 * 1) Get the current start threshold
9624 * 2) Check for support
9625 * 3) Get the current stop threshold
9626 * 4) Check for support
9627 * 5) Get the current force discharge status
9628 * 6) Check for support
9629 * 7) Get the current inhibit charge status
9630 * 8) Check for support
9631 */
9632 if (acpi_has_method(hkey_handle, GET_START)) {
9633 if ACPI_FAILURE(tpacpi_battery_acpi_eval(GET_START, &ret, battery)) {
9634 pr_err("Error probing battery %d\n", battery);
9635 return -ENODEV;
9636 }
9637 /* Individual addressing is in bit 9 */
9638 if (ret & BIT(9))
9639 battery_info.individual_addressing = true;
9640 /* Support is marked in bit 8 */
9641 if (ret & BIT(8))
9642 battery_info.batteries[battery].start_support = 1;
9643 else
9644 return -ENODEV;
9645 if (tpacpi_battery_get(THRESHOLD_START, battery,
9646 &battery_info.batteries[battery].charge_start)) {
9647 pr_err("Error probing battery %d\n", battery);
9648 return -ENODEV;
9649 }
9650 }
9651 if (acpi_has_method(hkey_handle, GET_STOP)) {
9652 if ACPI_FAILURE(tpacpi_battery_acpi_eval(GET_STOP, &ret, battery)) {
9653 pr_err("Error probing battery stop; %d\n", battery);
9654 return -ENODEV;
9655 }
9656 /* Support is marked in bit 8 */
9657 if (ret & BIT(8))
9658 battery_info.batteries[battery].stop_support = 1;
9659 else
9660 return -ENODEV;
9661 if (tpacpi_battery_get(THRESHOLD_STOP, battery,
9662 &battery_info.batteries[battery].charge_stop)) {
9663 pr_err("Error probing battery stop: %d\n", battery);
9664 return -ENODEV;
9665 }
9666 }
9667 if (acpi_has_method(hkey_handle, GET_DISCHARGE)) {
9668 if (ACPI_FAILURE(tpacpi_battery_acpi_eval(GET_DISCHARGE, &ret, battery))) {
9669 pr_err("Error probing battery discharge; %d\n", battery);
9670 return -ENODEV;
9671 }
9672 /* Support is marked in bit 8 */
9673 if (ret & BIT(8))
9674 battery_info.batteries[battery].charge_behaviours |=
9675 BIT(POWER_SUPPLY_CHARGE_BEHAVIOUR_FORCE_DISCHARGE);
9676 }
9677 if (acpi_has_method(hkey_handle, GET_INHIBIT)) {
9678 if (ACPI_FAILURE(tpacpi_battery_acpi_eval(GET_INHIBIT, &ret, battery))) {
9679 pr_err("Error probing battery inhibit charge; %d\n", battery);
9680 return -ENODEV;
9681 }
9682 /* Support is marked in bit 5 */
9683 if (ret & BIT(5))
9684 battery_info.batteries[battery].charge_behaviours |=
9685 BIT(POWER_SUPPLY_CHARGE_BEHAVIOUR_INHIBIT_CHARGE);
9686 }
9687
9688 battery_info.batteries[battery].charge_behaviours |=
9689 BIT(POWER_SUPPLY_CHARGE_BEHAVIOUR_AUTO);
9690
9691 pr_info("battery %d registered (start %d, stop %d, behaviours: 0x%x)\n",
9692 battery,
9693 battery_info.batteries[battery].charge_start,
9694 battery_info.batteries[battery].charge_stop,
9695 battery_info.batteries[battery].charge_behaviours);
9696
9697 return 0;
9698 }
9699
9700 /* General helper functions */
9701
tpacpi_battery_get_id(const char * battery_name)9702 static int tpacpi_battery_get_id(const char *battery_name)
9703 {
9704
9705 if (strcmp(battery_name, "BAT0") == 0 ||
9706 tp_features.battery_force_primary)
9707 return BAT_PRIMARY;
9708 if (strcmp(battery_name, "BAT1") == 0)
9709 return BAT_SECONDARY;
9710 /*
9711 * If for some reason the battery is not BAT0 nor is it
9712 * BAT1, we will assume it's the default, first battery,
9713 * AKA primary.
9714 */
9715 pr_warn("unknown battery %s, assuming primary", battery_name);
9716 return BAT_PRIMARY;
9717 }
9718
9719 /* sysfs interface */
9720
tpacpi_battery_store(int what,struct device * dev,const char * buf,size_t count)9721 static ssize_t tpacpi_battery_store(int what,
9722 struct device *dev,
9723 const char *buf, size_t count)
9724 {
9725 struct power_supply *supply = to_power_supply(dev);
9726 unsigned long value;
9727 int battery, rval;
9728 /*
9729 * Some systems have support for more than
9730 * one battery. If that is the case,
9731 * tpacpi_battery_probe marked that addressing
9732 * them individually is supported, so we do that
9733 * based on the device struct.
9734 *
9735 * On systems that are not supported, we assume
9736 * the primary as most of the ACPI calls fail
9737 * with "Any Battery" as the parameter.
9738 */
9739 if (battery_info.individual_addressing)
9740 /* BAT_PRIMARY or BAT_SECONDARY */
9741 battery = tpacpi_battery_get_id(supply->desc->name);
9742 else
9743 battery = BAT_PRIMARY;
9744
9745 rval = kstrtoul(buf, 10, &value);
9746 if (rval)
9747 return rval;
9748
9749 switch (what) {
9750 case THRESHOLD_START:
9751 if (!battery_info.batteries[battery].start_support)
9752 return -ENODEV;
9753 /* valid values are [0, 99] */
9754 if (value > 99)
9755 return -EINVAL;
9756 if (value > battery_info.batteries[battery].charge_stop)
9757 return -EINVAL;
9758 if (tpacpi_battery_set(THRESHOLD_START, battery, value))
9759 return -ENODEV;
9760 battery_info.batteries[battery].charge_start = value;
9761 return count;
9762
9763 case THRESHOLD_STOP:
9764 if (!battery_info.batteries[battery].stop_support)
9765 return -ENODEV;
9766 /* valid values are [1, 100] */
9767 if (value < 1 || value > 100)
9768 return -EINVAL;
9769 if (value < battery_info.batteries[battery].charge_start)
9770 return -EINVAL;
9771 battery_info.batteries[battery].charge_stop = value;
9772 /*
9773 * When 100 is passed to stop, we need to flip
9774 * it to 0 as that the EC understands that as
9775 * "Default", which will charge to 100%
9776 */
9777 if (value == 100)
9778 value = 0;
9779 if (tpacpi_battery_set(THRESHOLD_STOP, battery, value))
9780 return -EINVAL;
9781 return count;
9782 default:
9783 pr_crit("Wrong parameter: %d", what);
9784 return -EINVAL;
9785 }
9786 return count;
9787 }
9788
tpacpi_battery_show(int what,struct device * dev,char * buf)9789 static ssize_t tpacpi_battery_show(int what,
9790 struct device *dev,
9791 char *buf)
9792 {
9793 struct power_supply *supply = to_power_supply(dev);
9794 int ret, battery;
9795 /*
9796 * Some systems have support for more than
9797 * one battery. If that is the case,
9798 * tpacpi_battery_probe marked that addressing
9799 * them individually is supported, so we;
9800 * based on the device struct.
9801 *
9802 * On systems that are not supported, we assume
9803 * the primary as most of the ACPI calls fail
9804 * with "Any Battery" as the parameter.
9805 */
9806 if (battery_info.individual_addressing)
9807 /* BAT_PRIMARY or BAT_SECONDARY */
9808 battery = tpacpi_battery_get_id(supply->desc->name);
9809 else
9810 battery = BAT_PRIMARY;
9811 if (tpacpi_battery_get(what, battery, &ret))
9812 return -ENODEV;
9813 return sysfs_emit(buf, "%d\n", ret);
9814 }
9815
charge_control_start_threshold_show(struct device * device,struct device_attribute * attr,char * buf)9816 static ssize_t charge_control_start_threshold_show(struct device *device,
9817 struct device_attribute *attr,
9818 char *buf)
9819 {
9820 return tpacpi_battery_show(THRESHOLD_START, device, buf);
9821 }
9822
charge_control_end_threshold_show(struct device * device,struct device_attribute * attr,char * buf)9823 static ssize_t charge_control_end_threshold_show(struct device *device,
9824 struct device_attribute *attr,
9825 char *buf)
9826 {
9827 return tpacpi_battery_show(THRESHOLD_STOP, device, buf);
9828 }
9829
charge_behaviour_show(struct device * dev,struct device_attribute * attr,char * buf)9830 static ssize_t charge_behaviour_show(struct device *dev,
9831 struct device_attribute *attr,
9832 char *buf)
9833 {
9834 enum power_supply_charge_behaviour active = POWER_SUPPLY_CHARGE_BEHAVIOUR_AUTO;
9835 struct power_supply *supply = to_power_supply(dev);
9836 unsigned int available;
9837 int ret, battery;
9838
9839 battery = tpacpi_battery_get_id(supply->desc->name);
9840 available = battery_info.batteries[battery].charge_behaviours;
9841
9842 if (available & BIT(POWER_SUPPLY_CHARGE_BEHAVIOUR_FORCE_DISCHARGE)) {
9843 if (tpacpi_battery_get(FORCE_DISCHARGE, battery, &ret))
9844 return -ENODEV;
9845 if (ret) {
9846 active = POWER_SUPPLY_CHARGE_BEHAVIOUR_FORCE_DISCHARGE;
9847 goto out;
9848 }
9849 }
9850
9851 if (available & BIT(POWER_SUPPLY_CHARGE_BEHAVIOUR_INHIBIT_CHARGE)) {
9852 if (tpacpi_battery_get(INHIBIT_CHARGE, battery, &ret))
9853 return -ENODEV;
9854 if (ret) {
9855 active = POWER_SUPPLY_CHARGE_BEHAVIOUR_INHIBIT_CHARGE;
9856 goto out;
9857 }
9858 }
9859
9860 out:
9861 return power_supply_charge_behaviour_show(dev, available, active, buf);
9862 }
9863
charge_control_start_threshold_store(struct device * dev,struct device_attribute * attr,const char * buf,size_t count)9864 static ssize_t charge_control_start_threshold_store(struct device *dev,
9865 struct device_attribute *attr,
9866 const char *buf, size_t count)
9867 {
9868 return tpacpi_battery_store(THRESHOLD_START, dev, buf, count);
9869 }
9870
charge_control_end_threshold_store(struct device * dev,struct device_attribute * attr,const char * buf,size_t count)9871 static ssize_t charge_control_end_threshold_store(struct device *dev,
9872 struct device_attribute *attr,
9873 const char *buf, size_t count)
9874 {
9875 return tpacpi_battery_store(THRESHOLD_STOP, dev, buf, count);
9876 }
9877
charge_behaviour_store(struct device * dev,struct device_attribute * attr,const char * buf,size_t count)9878 static ssize_t charge_behaviour_store(struct device *dev,
9879 struct device_attribute *attr,
9880 const char *buf, size_t count)
9881 {
9882 struct power_supply *supply = to_power_supply(dev);
9883 int selected, battery, ret = 0;
9884 unsigned int available;
9885
9886 battery = tpacpi_battery_get_id(supply->desc->name);
9887 available = battery_info.batteries[battery].charge_behaviours;
9888 selected = power_supply_charge_behaviour_parse(available, buf);
9889
9890 if (selected < 0)
9891 return selected;
9892
9893 switch (selected) {
9894 case POWER_SUPPLY_CHARGE_BEHAVIOUR_AUTO:
9895 if (available & BIT(POWER_SUPPLY_CHARGE_BEHAVIOUR_FORCE_DISCHARGE))
9896 ret = tpacpi_battery_set_validate(FORCE_DISCHARGE, battery, 0);
9897 if (available & BIT(POWER_SUPPLY_CHARGE_BEHAVIOUR_INHIBIT_CHARGE))
9898 ret = min(ret, tpacpi_battery_set_validate(INHIBIT_CHARGE, battery, 0));
9899 if (ret < 0)
9900 return ret;
9901 break;
9902 case POWER_SUPPLY_CHARGE_BEHAVIOUR_FORCE_DISCHARGE:
9903 if (available & BIT(POWER_SUPPLY_CHARGE_BEHAVIOUR_INHIBIT_CHARGE))
9904 ret = tpacpi_battery_set_validate(INHIBIT_CHARGE, battery, 0);
9905 ret = min(ret, tpacpi_battery_set_validate(FORCE_DISCHARGE, battery, 1));
9906 if (ret < 0)
9907 return ret;
9908 break;
9909 case POWER_SUPPLY_CHARGE_BEHAVIOUR_INHIBIT_CHARGE:
9910 if (available & BIT(POWER_SUPPLY_CHARGE_BEHAVIOUR_FORCE_DISCHARGE))
9911 ret = tpacpi_battery_set_validate(FORCE_DISCHARGE, battery, 0);
9912 ret = min(ret, tpacpi_battery_set_validate(INHIBIT_CHARGE, battery, 1));
9913 if (ret < 0)
9914 return ret;
9915 break;
9916 default:
9917 dev_err(dev, "Unexpected charge behaviour: %d\n", selected);
9918 return -EINVAL;
9919 }
9920
9921 return count;
9922 }
9923
9924 static DEVICE_ATTR_RW(charge_control_start_threshold);
9925 static DEVICE_ATTR_RW(charge_control_end_threshold);
9926 static DEVICE_ATTR_RW(charge_behaviour);
9927 static struct device_attribute dev_attr_charge_start_threshold = __ATTR(
9928 charge_start_threshold,
9929 0644,
9930 charge_control_start_threshold_show,
9931 charge_control_start_threshold_store
9932 );
9933 static struct device_attribute dev_attr_charge_stop_threshold = __ATTR(
9934 charge_stop_threshold,
9935 0644,
9936 charge_control_end_threshold_show,
9937 charge_control_end_threshold_store
9938 );
9939
9940 static struct attribute *tpacpi_battery_attrs[] = {
9941 &dev_attr_charge_control_start_threshold.attr,
9942 &dev_attr_charge_control_end_threshold.attr,
9943 &dev_attr_charge_start_threshold.attr,
9944 &dev_attr_charge_stop_threshold.attr,
9945 &dev_attr_charge_behaviour.attr,
9946 NULL,
9947 };
9948
9949 ATTRIBUTE_GROUPS(tpacpi_battery);
9950
9951 /* ACPI battery hooking */
9952
tpacpi_battery_add(struct power_supply * battery,struct acpi_battery_hook * hook)9953 static int tpacpi_battery_add(struct power_supply *battery, struct acpi_battery_hook *hook)
9954 {
9955 int batteryid = tpacpi_battery_get_id(battery->desc->name);
9956
9957 if (tpacpi_battery_probe(batteryid))
9958 return -ENODEV;
9959 if (device_add_groups(&battery->dev, tpacpi_battery_groups))
9960 return -ENODEV;
9961 return 0;
9962 }
9963
tpacpi_battery_remove(struct power_supply * battery,struct acpi_battery_hook * hook)9964 static int tpacpi_battery_remove(struct power_supply *battery, struct acpi_battery_hook *hook)
9965 {
9966 device_remove_groups(&battery->dev, tpacpi_battery_groups);
9967 return 0;
9968 }
9969
9970 static struct acpi_battery_hook battery_hook = {
9971 .add_battery = tpacpi_battery_add,
9972 .remove_battery = tpacpi_battery_remove,
9973 .name = "ThinkPad Battery Extension",
9974 };
9975
9976 /* Subdriver init/exit */
9977
9978 static const struct tpacpi_quirk battery_quirk_table[] __initconst = {
9979 /*
9980 * Individual addressing is broken on models that expose the
9981 * primary battery as BAT1.
9982 */
9983 TPACPI_Q_LNV('G', '8', true), /* ThinkPad X131e */
9984 TPACPI_Q_LNV('8', 'F', true), /* Thinkpad X120e */
9985 TPACPI_Q_LNV('J', '7', true), /* B5400 */
9986 TPACPI_Q_LNV('J', 'I', true), /* Thinkpad 11e */
9987 TPACPI_Q_LNV3('R', '0', 'B', true), /* Thinkpad 11e gen 3 */
9988 TPACPI_Q_LNV3('R', '0', 'C', true), /* Thinkpad 13 */
9989 TPACPI_Q_LNV3('R', '0', 'J', true), /* Thinkpad 13 gen 2 */
9990 TPACPI_Q_LNV3('R', '0', 'K', true), /* Thinkpad 11e gen 4 celeron BIOS */
9991 };
9992
tpacpi_battery_init(struct ibm_init_struct * ibm)9993 static int __init tpacpi_battery_init(struct ibm_init_struct *ibm)
9994 {
9995 memset(&battery_info, 0, sizeof(battery_info));
9996
9997 tp_features.battery_force_primary = tpacpi_check_quirks(
9998 battery_quirk_table,
9999 ARRAY_SIZE(battery_quirk_table));
10000
10001 battery_hook_register(&battery_hook);
10002 return 0;
10003 }
10004
tpacpi_battery_exit(void)10005 static void tpacpi_battery_exit(void)
10006 {
10007 battery_hook_unregister(&battery_hook);
10008 }
10009
10010 static struct ibm_struct battery_driver_data = {
10011 .name = "battery",
10012 .exit = tpacpi_battery_exit,
10013 };
10014
10015 /*************************************************************************
10016 * LCD Shadow subdriver, for the Lenovo PrivacyGuard feature
10017 */
10018
10019 static struct drm_privacy_screen *lcdshadow_dev;
10020 static acpi_handle lcdshadow_get_handle;
10021 static acpi_handle lcdshadow_set_handle;
10022
lcdshadow_set_sw_state(struct drm_privacy_screen * priv,enum drm_privacy_screen_status state)10023 static int lcdshadow_set_sw_state(struct drm_privacy_screen *priv,
10024 enum drm_privacy_screen_status state)
10025 {
10026 int output;
10027
10028 if (WARN_ON(!mutex_is_locked(&priv->lock)))
10029 return -EIO;
10030
10031 if (!acpi_evalf(lcdshadow_set_handle, &output, NULL, "dd", (int)state))
10032 return -EIO;
10033
10034 priv->hw_state = priv->sw_state = state;
10035 return 0;
10036 }
10037
lcdshadow_get_hw_state(struct drm_privacy_screen * priv)10038 static void lcdshadow_get_hw_state(struct drm_privacy_screen *priv)
10039 {
10040 int output;
10041
10042 if (!acpi_evalf(lcdshadow_get_handle, &output, NULL, "dd", 0))
10043 return;
10044
10045 priv->hw_state = priv->sw_state = output & 0x1;
10046 }
10047
10048 static const struct drm_privacy_screen_ops lcdshadow_ops = {
10049 .set_sw_state = lcdshadow_set_sw_state,
10050 .get_hw_state = lcdshadow_get_hw_state,
10051 };
10052
tpacpi_lcdshadow_init(struct ibm_init_struct * iibm)10053 static int tpacpi_lcdshadow_init(struct ibm_init_struct *iibm)
10054 {
10055 acpi_status status1, status2;
10056 int output;
10057
10058 status1 = acpi_get_handle(hkey_handle, "GSSS", &lcdshadow_get_handle);
10059 status2 = acpi_get_handle(hkey_handle, "SSSS", &lcdshadow_set_handle);
10060 if (ACPI_FAILURE(status1) || ACPI_FAILURE(status2))
10061 return 0;
10062
10063 if (!acpi_evalf(lcdshadow_get_handle, &output, NULL, "dd", 0))
10064 return -EIO;
10065
10066 if (!(output & 0x10000))
10067 return 0;
10068
10069 lcdshadow_dev = drm_privacy_screen_register(&tpacpi_pdev->dev,
10070 &lcdshadow_ops, NULL);
10071 if (IS_ERR(lcdshadow_dev))
10072 return PTR_ERR(lcdshadow_dev);
10073
10074 return 0;
10075 }
10076
lcdshadow_exit(void)10077 static void lcdshadow_exit(void)
10078 {
10079 drm_privacy_screen_unregister(lcdshadow_dev);
10080 }
10081
lcdshadow_resume(void)10082 static void lcdshadow_resume(void)
10083 {
10084 if (!lcdshadow_dev)
10085 return;
10086
10087 mutex_lock(&lcdshadow_dev->lock);
10088 lcdshadow_set_sw_state(lcdshadow_dev, lcdshadow_dev->sw_state);
10089 mutex_unlock(&lcdshadow_dev->lock);
10090 }
10091
lcdshadow_read(struct seq_file * m)10092 static int lcdshadow_read(struct seq_file *m)
10093 {
10094 if (!lcdshadow_dev) {
10095 seq_puts(m, "status:\t\tnot supported\n");
10096 } else {
10097 seq_printf(m, "status:\t\t%d\n", lcdshadow_dev->hw_state);
10098 seq_puts(m, "commands:\t0, 1\n");
10099 }
10100
10101 return 0;
10102 }
10103
lcdshadow_write(char * buf)10104 static int lcdshadow_write(char *buf)
10105 {
10106 char *cmd;
10107 int res, state = -EINVAL;
10108
10109 if (!lcdshadow_dev)
10110 return -ENODEV;
10111
10112 while ((cmd = strsep(&buf, ","))) {
10113 res = kstrtoint(cmd, 10, &state);
10114 if (res < 0)
10115 return res;
10116 }
10117
10118 if (state >= 2 || state < 0)
10119 return -EINVAL;
10120
10121 mutex_lock(&lcdshadow_dev->lock);
10122 res = lcdshadow_set_sw_state(lcdshadow_dev, state);
10123 mutex_unlock(&lcdshadow_dev->lock);
10124
10125 drm_privacy_screen_call_notifier_chain(lcdshadow_dev);
10126
10127 return res;
10128 }
10129
10130 static struct ibm_struct lcdshadow_driver_data = {
10131 .name = "lcdshadow",
10132 .exit = lcdshadow_exit,
10133 .resume = lcdshadow_resume,
10134 .read = lcdshadow_read,
10135 .write = lcdshadow_write,
10136 };
10137
10138 /*************************************************************************
10139 * Thinkpad sensor interfaces
10140 */
10141
10142 #define DYTC_CMD_QUERY 0 /* To get DYTC status - enable/revision */
10143 #define DYTC_QUERY_ENABLE_BIT 8 /* Bit 8 - 0 = disabled, 1 = enabled */
10144 #define DYTC_QUERY_SUBREV_BIT 16 /* Bits 16 - 27 - sub revision */
10145 #define DYTC_QUERY_REV_BIT 28 /* Bits 28 - 31 - revision */
10146
10147 #define DYTC_CMD_GET 2 /* To get current IC function and mode */
10148 #define DYTC_GET_LAPMODE_BIT 17 /* Set when in lapmode */
10149
10150 #define PALMSENSOR_PRESENT_BIT 0 /* Determine if psensor present */
10151 #define PALMSENSOR_ON_BIT 1 /* psensor status */
10152
10153 static bool has_palmsensor;
10154 static bool has_lapsensor;
10155 static bool palm_state;
10156 static bool lap_state;
10157 static int dytc_version;
10158
dytc_command(int command,int * output)10159 static int dytc_command(int command, int *output)
10160 {
10161 acpi_handle dytc_handle;
10162
10163 if (ACPI_FAILURE(acpi_get_handle(hkey_handle, "DYTC", &dytc_handle))) {
10164 /* Platform doesn't support DYTC */
10165 return -ENODEV;
10166 }
10167 if (!acpi_evalf(dytc_handle, output, NULL, "dd", command))
10168 return -EIO;
10169 return 0;
10170 }
10171
lapsensor_get(bool * present,bool * state)10172 static int lapsensor_get(bool *present, bool *state)
10173 {
10174 int output, err;
10175
10176 *present = false;
10177 err = dytc_command(DYTC_CMD_GET, &output);
10178 if (err)
10179 return err;
10180
10181 *present = true; /*If we get his far, we have lapmode support*/
10182 *state = output & BIT(DYTC_GET_LAPMODE_BIT) ? true : false;
10183 return 0;
10184 }
10185
palmsensor_get(bool * present,bool * state)10186 static int palmsensor_get(bool *present, bool *state)
10187 {
10188 acpi_handle psensor_handle;
10189 int output;
10190
10191 *present = false;
10192 if (ACPI_FAILURE(acpi_get_handle(hkey_handle, "GPSS", &psensor_handle)))
10193 return -ENODEV;
10194 if (!acpi_evalf(psensor_handle, &output, NULL, "d"))
10195 return -EIO;
10196
10197 *present = output & BIT(PALMSENSOR_PRESENT_BIT) ? true : false;
10198 *state = output & BIT(PALMSENSOR_ON_BIT) ? true : false;
10199 return 0;
10200 }
10201
lapsensor_refresh(void)10202 static void lapsensor_refresh(void)
10203 {
10204 bool state;
10205 int err;
10206
10207 if (has_lapsensor) {
10208 err = lapsensor_get(&has_lapsensor, &state);
10209 if (err)
10210 return;
10211 if (lap_state != state) {
10212 lap_state = state;
10213 sysfs_notify(&tpacpi_pdev->dev.kobj, NULL, "dytc_lapmode");
10214 }
10215 }
10216 }
10217
palmsensor_refresh(void)10218 static void palmsensor_refresh(void)
10219 {
10220 bool state;
10221 int err;
10222
10223 if (has_palmsensor) {
10224 err = palmsensor_get(&has_palmsensor, &state);
10225 if (err)
10226 return;
10227 if (palm_state != state) {
10228 palm_state = state;
10229 sysfs_notify(&tpacpi_pdev->dev.kobj, NULL, "palmsensor");
10230 }
10231 }
10232 }
10233
dytc_lapmode_show(struct device * dev,struct device_attribute * attr,char * buf)10234 static ssize_t dytc_lapmode_show(struct device *dev,
10235 struct device_attribute *attr,
10236 char *buf)
10237 {
10238 if (has_lapsensor)
10239 return sysfs_emit(buf, "%d\n", lap_state);
10240 return sysfs_emit(buf, "\n");
10241 }
10242 static DEVICE_ATTR_RO(dytc_lapmode);
10243
palmsensor_show(struct device * dev,struct device_attribute * attr,char * buf)10244 static ssize_t palmsensor_show(struct device *dev,
10245 struct device_attribute *attr,
10246 char *buf)
10247 {
10248 if (has_palmsensor)
10249 return sysfs_emit(buf, "%d\n", palm_state);
10250 return sysfs_emit(buf, "\n");
10251 }
10252 static DEVICE_ATTR_RO(palmsensor);
10253
10254 static struct attribute *proxsensor_attributes[] = {
10255 &dev_attr_dytc_lapmode.attr,
10256 &dev_attr_palmsensor.attr,
10257 NULL
10258 };
10259
proxsensor_attr_is_visible(struct kobject * kobj,struct attribute * attr,int n)10260 static umode_t proxsensor_attr_is_visible(struct kobject *kobj,
10261 struct attribute *attr, int n)
10262 {
10263 if (attr == &dev_attr_dytc_lapmode.attr) {
10264 /*
10265 * Platforms before DYTC version 5 claim to have a lap sensor,
10266 * but it doesn't work, so we ignore them.
10267 */
10268 if (!has_lapsensor || dytc_version < 5)
10269 return 0;
10270 } else if (attr == &dev_attr_palmsensor.attr) {
10271 if (!has_palmsensor)
10272 return 0;
10273 }
10274
10275 return attr->mode;
10276 }
10277
10278 static const struct attribute_group proxsensor_attr_group = {
10279 .is_visible = proxsensor_attr_is_visible,
10280 .attrs = proxsensor_attributes,
10281 };
10282
tpacpi_proxsensor_init(struct ibm_init_struct * iibm)10283 static int tpacpi_proxsensor_init(struct ibm_init_struct *iibm)
10284 {
10285 int palm_err, lap_err;
10286
10287 palm_err = palmsensor_get(&has_palmsensor, &palm_state);
10288 lap_err = lapsensor_get(&has_lapsensor, &lap_state);
10289 /* If support isn't available for both devices return -ENODEV */
10290 if ((palm_err == -ENODEV) && (lap_err == -ENODEV))
10291 return -ENODEV;
10292 /* Otherwise, if there was an error return it */
10293 if (palm_err && (palm_err != -ENODEV))
10294 return palm_err;
10295 if (lap_err && (lap_err != -ENODEV))
10296 return lap_err;
10297
10298 return 0;
10299 }
10300
10301 static struct ibm_struct proxsensor_driver_data = {
10302 .name = "proximity-sensor",
10303 };
10304
10305 /*************************************************************************
10306 * DYTC Platform Profile interface
10307 */
10308
10309 #define DYTC_CMD_SET 1 /* To enable/disable IC function mode */
10310 #define DYTC_CMD_MMC_GET 8 /* To get current MMC function and mode */
10311 #define DYTC_CMD_RESET 0x1ff /* To reset back to default */
10312
10313 #define DYTC_CMD_FUNC_CAP 3 /* To get DYTC capabilities */
10314 #define DYTC_FC_MMC 27 /* MMC Mode supported */
10315 #define DYTC_FC_PSC 29 /* PSC Mode supported */
10316 #define DYTC_FC_AMT 31 /* AMT mode supported */
10317
10318 #define DYTC_GET_FUNCTION_BIT 8 /* Bits 8-11 - function setting */
10319 #define DYTC_GET_MODE_BIT 12 /* Bits 12-15 - mode setting */
10320
10321 #define DYTC_SET_FUNCTION_BIT 12 /* Bits 12-15 - function setting */
10322 #define DYTC_SET_MODE_BIT 16 /* Bits 16-19 - mode setting */
10323 #define DYTC_SET_VALID_BIT 20 /* Bit 20 - 1 = on, 0 = off */
10324
10325 #define DYTC_FUNCTION_STD 0 /* Function = 0, standard mode */
10326 #define DYTC_FUNCTION_CQL 1 /* Function = 1, lap mode */
10327 #define DYTC_FUNCTION_MMC 11 /* Function = 11, MMC mode */
10328 #define DYTC_FUNCTION_PSC 13 /* Function = 13, PSC mode */
10329 #define DYTC_FUNCTION_AMT 15 /* Function = 15, AMT mode */
10330
10331 #define DYTC_MODE_AMT_ENABLE 0x1 /* Enable AMT (in balanced mode) */
10332 #define DYTC_MODE_AMT_DISABLE 0xF /* Disable AMT (in other modes) */
10333
10334 #define DYTC_MODE_MMC_PERFORM 2 /* High power mode aka performance */
10335 #define DYTC_MODE_MMC_LOWPOWER 3 /* Low power mode */
10336 #define DYTC_MODE_MMC_BALANCE 0xF /* Default mode aka balanced */
10337 #define DYTC_MODE_MMC_DEFAULT 0 /* Default mode from MMC_GET, aka balanced */
10338
10339 #define DYTC_MODE_PSC_LOWPOWER 3 /* Low power mode */
10340 #define DYTC_MODE_PSC_BALANCE 5 /* Default mode aka balanced */
10341 #define DYTC_MODE_PSC_PERFORM 7 /* High power mode aka performance */
10342
10343 #define DYTC_MODE_PSCV9_LOWPOWER 1 /* Low power mode */
10344 #define DYTC_MODE_PSCV9_BALANCE 3 /* Default mode aka balanced */
10345 #define DYTC_MODE_PSCV9_PERFORM 4 /* High power mode aka performance */
10346
10347 #define DYTC_ERR_MASK 0xF /* Bits 0-3 in cmd result are the error result */
10348 #define DYTC_ERR_SUCCESS 1 /* CMD completed successful */
10349
10350 #define DYTC_SET_COMMAND(function, mode, on) \
10351 (DYTC_CMD_SET | (function) << DYTC_SET_FUNCTION_BIT | \
10352 (mode) << DYTC_SET_MODE_BIT | \
10353 (on) << DYTC_SET_VALID_BIT)
10354
10355 #define DYTC_DISABLE_CQL DYTC_SET_COMMAND(DYTC_FUNCTION_CQL, DYTC_MODE_MMC_BALANCE, 0)
10356 #define DYTC_ENABLE_CQL DYTC_SET_COMMAND(DYTC_FUNCTION_CQL, DYTC_MODE_MMC_BALANCE, 1)
10357 static int dytc_control_amt(bool enable);
10358 static bool dytc_amt_active;
10359
10360 static enum platform_profile_option dytc_current_profile;
10361 static atomic_t dytc_ignore_event = ATOMIC_INIT(0);
10362 static DEFINE_MUTEX(dytc_mutex);
10363 static int dytc_capabilities;
10364 static bool dytc_mmc_get_available;
10365 static int profile_force;
10366
10367 static int platform_psc_profile_lowpower = DYTC_MODE_PSC_LOWPOWER;
10368 static int platform_psc_profile_balanced = DYTC_MODE_PSC_BALANCE;
10369 static int platform_psc_profile_performance = DYTC_MODE_PSC_PERFORM;
10370
convert_dytc_to_profile(int funcmode,int dytcmode,enum platform_profile_option * profile)10371 static int convert_dytc_to_profile(int funcmode, int dytcmode,
10372 enum platform_profile_option *profile)
10373 {
10374 switch (funcmode) {
10375 case DYTC_FUNCTION_MMC:
10376 switch (dytcmode) {
10377 case DYTC_MODE_MMC_LOWPOWER:
10378 *profile = PLATFORM_PROFILE_LOW_POWER;
10379 break;
10380 case DYTC_MODE_MMC_DEFAULT:
10381 case DYTC_MODE_MMC_BALANCE:
10382 *profile = PLATFORM_PROFILE_BALANCED;
10383 break;
10384 case DYTC_MODE_MMC_PERFORM:
10385 *profile = PLATFORM_PROFILE_PERFORMANCE;
10386 break;
10387 default: /* Unknown mode */
10388 return -EINVAL;
10389 }
10390 return 0;
10391 case DYTC_FUNCTION_PSC:
10392 if (dytcmode == platform_psc_profile_lowpower)
10393 *profile = PLATFORM_PROFILE_LOW_POWER;
10394 else if (dytcmode == platform_psc_profile_balanced)
10395 *profile = PLATFORM_PROFILE_BALANCED;
10396 else if (dytcmode == platform_psc_profile_performance)
10397 *profile = PLATFORM_PROFILE_PERFORMANCE;
10398 else
10399 return -EINVAL;
10400
10401 return 0;
10402 case DYTC_FUNCTION_AMT:
10403 /* For now return balanced. It's the closest we have to 'auto' */
10404 *profile = PLATFORM_PROFILE_BALANCED;
10405 return 0;
10406 default:
10407 /* Unknown function */
10408 pr_debug("unknown function 0x%x\n", funcmode);
10409 return -EOPNOTSUPP;
10410 }
10411 return 0;
10412 }
10413
convert_profile_to_dytc(enum platform_profile_option profile,int * perfmode)10414 static int convert_profile_to_dytc(enum platform_profile_option profile, int *perfmode)
10415 {
10416 switch (profile) {
10417 case PLATFORM_PROFILE_LOW_POWER:
10418 if (dytc_capabilities & BIT(DYTC_FC_MMC))
10419 *perfmode = DYTC_MODE_MMC_LOWPOWER;
10420 else if (dytc_capabilities & BIT(DYTC_FC_PSC))
10421 *perfmode = platform_psc_profile_lowpower;
10422 break;
10423 case PLATFORM_PROFILE_BALANCED:
10424 if (dytc_capabilities & BIT(DYTC_FC_MMC))
10425 *perfmode = DYTC_MODE_MMC_BALANCE;
10426 else if (dytc_capabilities & BIT(DYTC_FC_PSC))
10427 *perfmode = platform_psc_profile_balanced;
10428 break;
10429 case PLATFORM_PROFILE_PERFORMANCE:
10430 if (dytc_capabilities & BIT(DYTC_FC_MMC))
10431 *perfmode = DYTC_MODE_MMC_PERFORM;
10432 else if (dytc_capabilities & BIT(DYTC_FC_PSC))
10433 *perfmode = platform_psc_profile_performance;
10434 break;
10435 default: /* Unknown profile */
10436 return -EOPNOTSUPP;
10437 }
10438 return 0;
10439 }
10440
10441 /*
10442 * dytc_profile_get: Function to register with platform_profile
10443 * handler. Returns current platform profile.
10444 */
dytc_profile_get(struct device * dev,enum platform_profile_option * profile)10445 static int dytc_profile_get(struct device *dev,
10446 enum platform_profile_option *profile)
10447 {
10448 *profile = dytc_current_profile;
10449 return 0;
10450 }
10451
dytc_control_amt(bool enable)10452 static int dytc_control_amt(bool enable)
10453 {
10454 int dummy;
10455 int err;
10456 int cmd;
10457
10458 if (!(dytc_capabilities & BIT(DYTC_FC_AMT))) {
10459 pr_warn("Attempting to toggle AMT on a system that doesn't advertise support\n");
10460 return -ENODEV;
10461 }
10462
10463 if (enable)
10464 cmd = DYTC_SET_COMMAND(DYTC_FUNCTION_AMT, DYTC_MODE_AMT_ENABLE, enable);
10465 else
10466 cmd = DYTC_SET_COMMAND(DYTC_FUNCTION_AMT, DYTC_MODE_AMT_DISABLE, enable);
10467
10468 pr_debug("%sabling AMT (cmd 0x%x)", enable ? "en":"dis", cmd);
10469 err = dytc_command(cmd, &dummy);
10470 if (err)
10471 return err;
10472 dytc_amt_active = enable;
10473 return 0;
10474 }
10475
10476 /*
10477 * Helper function - check if we are in CQL mode and if we are
10478 * - disable CQL,
10479 * - run the command
10480 * - enable CQL
10481 * If not in CQL mode, just run the command
10482 */
dytc_cql_command(int command,int * output)10483 static int dytc_cql_command(int command, int *output)
10484 {
10485 int err, cmd_err, dummy;
10486 int cur_funcmode;
10487
10488 /* Determine if we are in CQL mode. This alters the commands we do */
10489 err = dytc_command(DYTC_CMD_GET, output);
10490 if (err)
10491 return err;
10492
10493 cur_funcmode = (*output >> DYTC_GET_FUNCTION_BIT) & 0xF;
10494 /* Check if we're OK to return immediately */
10495 if ((command == DYTC_CMD_GET) && (cur_funcmode != DYTC_FUNCTION_CQL))
10496 return 0;
10497
10498 if (cur_funcmode == DYTC_FUNCTION_CQL) {
10499 atomic_inc(&dytc_ignore_event);
10500 err = dytc_command(DYTC_DISABLE_CQL, &dummy);
10501 if (err)
10502 return err;
10503 }
10504
10505 cmd_err = dytc_command(command, output);
10506 /* Check return condition after we've restored CQL state */
10507
10508 if (cur_funcmode == DYTC_FUNCTION_CQL) {
10509 err = dytc_command(DYTC_ENABLE_CQL, &dummy);
10510 if (err)
10511 return err;
10512 }
10513 return cmd_err;
10514 }
10515
10516 /*
10517 * dytc_profile_set: Function to register with platform_profile
10518 * handler. Sets current platform profile.
10519 */
dytc_profile_set(struct device * dev,enum platform_profile_option profile)10520 static int dytc_profile_set(struct device *dev,
10521 enum platform_profile_option profile)
10522 {
10523 int perfmode;
10524 int output;
10525 int err;
10526
10527 err = mutex_lock_interruptible(&dytc_mutex);
10528 if (err)
10529 return err;
10530
10531 err = convert_profile_to_dytc(profile, &perfmode);
10532 if (err)
10533 goto unlock;
10534
10535 if (dytc_capabilities & BIT(DYTC_FC_MMC)) {
10536 if (profile == PLATFORM_PROFILE_BALANCED) {
10537 /*
10538 * To get back to balanced mode we need to issue a reset command.
10539 * Note we still need to disable CQL mode before hand and re-enable
10540 * it afterwards, otherwise dytc_lapmode gets reset to 0 and stays
10541 * stuck at 0 for aprox. 30 minutes.
10542 */
10543 err = dytc_cql_command(DYTC_CMD_RESET, &output);
10544 if (err)
10545 goto unlock;
10546 } else {
10547 /* Determine if we are in CQL mode. This alters the commands we do */
10548 err = dytc_cql_command(DYTC_SET_COMMAND(DYTC_FUNCTION_MMC, perfmode, 1),
10549 &output);
10550 if (err)
10551 goto unlock;
10552 }
10553 } else if (dytc_capabilities & BIT(DYTC_FC_PSC)) {
10554 err = dytc_command(DYTC_SET_COMMAND(DYTC_FUNCTION_PSC, perfmode, 1), &output);
10555 if (err)
10556 goto unlock;
10557
10558 /* system supports AMT, activate it when on balanced */
10559 if (dytc_capabilities & BIT(DYTC_FC_AMT))
10560 dytc_control_amt(profile == PLATFORM_PROFILE_BALANCED);
10561 }
10562 /* Success - update current profile */
10563 dytc_current_profile = profile;
10564 unlock:
10565 mutex_unlock(&dytc_mutex);
10566 return err;
10567 }
10568
dytc_profile_probe(void * drvdata,unsigned long * choices)10569 static int dytc_profile_probe(void *drvdata, unsigned long *choices)
10570 {
10571 set_bit(PLATFORM_PROFILE_LOW_POWER, choices);
10572 set_bit(PLATFORM_PROFILE_BALANCED, choices);
10573 set_bit(PLATFORM_PROFILE_PERFORMANCE, choices);
10574
10575 return 0;
10576 }
10577
10578 static const struct platform_profile_ops dytc_profile_ops = {
10579 .probe = dytc_profile_probe,
10580 .profile_get = dytc_profile_get,
10581 .profile_set = dytc_profile_set,
10582 };
10583
dytc_profile_refresh(void)10584 static void dytc_profile_refresh(void)
10585 {
10586 enum platform_profile_option profile;
10587 int output = 0, err = 0;
10588 int perfmode, funcmode = 0;
10589
10590 mutex_lock(&dytc_mutex);
10591 if (dytc_capabilities & BIT(DYTC_FC_MMC)) {
10592 if (dytc_mmc_get_available)
10593 err = dytc_command(DYTC_CMD_MMC_GET, &output);
10594 else
10595 err = dytc_cql_command(DYTC_CMD_GET, &output);
10596 funcmode = DYTC_FUNCTION_MMC;
10597 } else if (dytc_capabilities & BIT(DYTC_FC_PSC)) {
10598 err = dytc_command(DYTC_CMD_GET, &output);
10599 /* Check if we are PSC mode, or have AMT enabled */
10600 funcmode = (output >> DYTC_GET_FUNCTION_BIT) & 0xF;
10601 } else { /* Unknown profile mode */
10602 err = -ENODEV;
10603 }
10604 mutex_unlock(&dytc_mutex);
10605 if (err)
10606 return;
10607
10608 perfmode = (output >> DYTC_GET_MODE_BIT) & 0xF;
10609 err = convert_dytc_to_profile(funcmode, perfmode, &profile);
10610 if (!err && profile != dytc_current_profile) {
10611 dytc_current_profile = profile;
10612 platform_profile_notify(tpacpi_pprof);
10613 }
10614 }
10615
tpacpi_dytc_profile_init(struct ibm_init_struct * iibm)10616 static int tpacpi_dytc_profile_init(struct ibm_init_struct *iibm)
10617 {
10618 int err, output;
10619
10620 err = dytc_command(DYTC_CMD_QUERY, &output);
10621 if (err)
10622 return err;
10623
10624 if (output & BIT(DYTC_QUERY_ENABLE_BIT))
10625 dytc_version = (output >> DYTC_QUERY_REV_BIT) & 0xF;
10626
10627 dbg_printk(TPACPI_DBG_INIT, "DYTC version %d\n", dytc_version);
10628 /* Check DYTC is enabled and supports mode setting */
10629 if (dytc_version < 5)
10630 return -ENODEV;
10631
10632 /* Check what capabilities are supported */
10633 err = dytc_command(DYTC_CMD_FUNC_CAP, &dytc_capabilities);
10634 if (err)
10635 return err;
10636
10637 /* Check if user wants to override the profile selection */
10638 if (profile_force) {
10639 switch (profile_force) {
10640 case -1:
10641 dytc_capabilities = 0;
10642 break;
10643 case 1:
10644 dytc_capabilities = BIT(DYTC_FC_MMC);
10645 break;
10646 case 2:
10647 dytc_capabilities = BIT(DYTC_FC_PSC);
10648 break;
10649 }
10650 pr_debug("Profile selection forced: 0x%x\n", dytc_capabilities);
10651 }
10652 if (dytc_capabilities & BIT(DYTC_FC_MMC)) { /* MMC MODE */
10653 pr_debug("MMC is supported\n");
10654 /*
10655 * Check if MMC_GET functionality available
10656 * Version > 6 and return success from MMC_GET command
10657 */
10658 dytc_mmc_get_available = false;
10659 if (dytc_version >= 6) {
10660 err = dytc_command(DYTC_CMD_MMC_GET, &output);
10661 if (!err && ((output & DYTC_ERR_MASK) == DYTC_ERR_SUCCESS))
10662 dytc_mmc_get_available = true;
10663 }
10664 } else if (dytc_capabilities & BIT(DYTC_FC_PSC)) { /* PSC MODE */
10665 pr_debug("PSC is supported\n");
10666 if (dytc_version >= 9) { /* update profiles for DYTC 9 and up */
10667 platform_psc_profile_lowpower = DYTC_MODE_PSCV9_LOWPOWER;
10668 platform_psc_profile_balanced = DYTC_MODE_PSCV9_BALANCE;
10669 platform_psc_profile_performance = DYTC_MODE_PSCV9_PERFORM;
10670 }
10671 } else {
10672 dbg_printk(TPACPI_DBG_INIT, "No DYTC support available\n");
10673 return -ENODEV;
10674 }
10675
10676 dbg_printk(TPACPI_DBG_INIT,
10677 "DYTC version %d: thermal mode available\n", dytc_version);
10678
10679 /* Create platform_profile structure and register */
10680 tpacpi_pprof = platform_profile_register(&tpacpi_pdev->dev, "thinkpad-acpi-profile",
10681 NULL, &dytc_profile_ops);
10682 /*
10683 * If for some reason platform_profiles aren't enabled
10684 * don't quit terminally.
10685 */
10686 if (IS_ERR(tpacpi_pprof))
10687 return -ENODEV;
10688
10689 /* Ensure initial values are correct */
10690 dytc_profile_refresh();
10691
10692 /* Workaround for https://bugzilla.kernel.org/show_bug.cgi?id=216347 */
10693 if (dytc_capabilities & BIT(DYTC_FC_PSC))
10694 dytc_profile_set(NULL, PLATFORM_PROFILE_BALANCED);
10695
10696 return 0;
10697 }
10698
dytc_profile_exit(void)10699 static void dytc_profile_exit(void)
10700 {
10701 if (!IS_ERR_OR_NULL(tpacpi_pprof))
10702 platform_profile_remove(tpacpi_pprof);
10703 }
10704
10705 static struct ibm_struct dytc_profile_driver_data = {
10706 .name = "dytc-profile",
10707 .exit = dytc_profile_exit,
10708 };
10709
10710 /*************************************************************************
10711 * Keyboard language interface
10712 */
10713
10714 struct keyboard_lang_data {
10715 const char *lang_str;
10716 int lang_code;
10717 };
10718
10719 static const struct keyboard_lang_data keyboard_lang_data[] = {
10720 {"be", 0x080c},
10721 {"cz", 0x0405},
10722 {"da", 0x0406},
10723 {"de", 0x0c07},
10724 {"en", 0x0000},
10725 {"es", 0x2c0a},
10726 {"et", 0x0425},
10727 {"fr", 0x040c},
10728 {"fr-ch", 0x100c},
10729 {"hu", 0x040e},
10730 {"it", 0x0410},
10731 {"jp", 0x0411},
10732 {"nl", 0x0413},
10733 {"nn", 0x0414},
10734 {"pl", 0x0415},
10735 {"pt", 0x0816},
10736 {"sl", 0x041b},
10737 {"sv", 0x081d},
10738 {"tr", 0x041f},
10739 };
10740
set_keyboard_lang_command(int command)10741 static int set_keyboard_lang_command(int command)
10742 {
10743 acpi_handle sskl_handle;
10744 int output;
10745
10746 if (ACPI_FAILURE(acpi_get_handle(hkey_handle, "SSKL", &sskl_handle))) {
10747 /* Platform doesn't support SSKL */
10748 return -ENODEV;
10749 }
10750
10751 if (!acpi_evalf(sskl_handle, &output, NULL, "dd", command))
10752 return -EIO;
10753
10754 return 0;
10755 }
10756
get_keyboard_lang(int * output)10757 static int get_keyboard_lang(int *output)
10758 {
10759 acpi_handle gskl_handle;
10760 int kbd_lang;
10761
10762 if (ACPI_FAILURE(acpi_get_handle(hkey_handle, "GSKL", &gskl_handle))) {
10763 /* Platform doesn't support GSKL */
10764 return -ENODEV;
10765 }
10766
10767 if (!acpi_evalf(gskl_handle, &kbd_lang, NULL, "dd", 0x02000000))
10768 return -EIO;
10769
10770 /*
10771 * METHOD_ERR gets returned on devices where there are no special (e.g. '=',
10772 * '(' and ')') keys which use layout dependent key-press emulation.
10773 */
10774 if (kbd_lang & METHOD_ERR)
10775 return -ENODEV;
10776
10777 *output = kbd_lang;
10778
10779 return 0;
10780 }
10781
10782 /* sysfs keyboard language entry */
keyboard_lang_show(struct device * dev,struct device_attribute * attr,char * buf)10783 static ssize_t keyboard_lang_show(struct device *dev,
10784 struct device_attribute *attr,
10785 char *buf)
10786 {
10787 int output, err, i, len = 0;
10788
10789 err = get_keyboard_lang(&output);
10790 if (err)
10791 return err;
10792
10793 for (i = 0; i < ARRAY_SIZE(keyboard_lang_data); i++) {
10794 if (i)
10795 len += sysfs_emit_at(buf, len, "%s", " ");
10796
10797 if (output == keyboard_lang_data[i].lang_code) {
10798 len += sysfs_emit_at(buf, len, "[%s]", keyboard_lang_data[i].lang_str);
10799 } else {
10800 len += sysfs_emit_at(buf, len, "%s", keyboard_lang_data[i].lang_str);
10801 }
10802 }
10803 len += sysfs_emit_at(buf, len, "\n");
10804
10805 return len;
10806 }
10807
keyboard_lang_store(struct device * dev,struct device_attribute * attr,const char * buf,size_t count)10808 static ssize_t keyboard_lang_store(struct device *dev,
10809 struct device_attribute *attr,
10810 const char *buf, size_t count)
10811 {
10812 int err, i;
10813 bool lang_found = false;
10814 int lang_code = 0;
10815
10816 for (i = 0; i < ARRAY_SIZE(keyboard_lang_data); i++) {
10817 if (sysfs_streq(buf, keyboard_lang_data[i].lang_str)) {
10818 lang_code = keyboard_lang_data[i].lang_code;
10819 lang_found = true;
10820 break;
10821 }
10822 }
10823
10824 if (lang_found) {
10825 lang_code = lang_code | 1 << 24;
10826
10827 /* Set language code */
10828 err = set_keyboard_lang_command(lang_code);
10829 if (err)
10830 return err;
10831 } else {
10832 dev_err(&tpacpi_pdev->dev, "Unknown Keyboard language. Ignoring\n");
10833 return -EINVAL;
10834 }
10835
10836 tpacpi_disclose_usertask(attr->attr.name,
10837 "keyboard language is set to %s\n", buf);
10838
10839 sysfs_notify(&tpacpi_pdev->dev.kobj, NULL, "keyboard_lang");
10840
10841 return count;
10842 }
10843 static DEVICE_ATTR_RW(keyboard_lang);
10844
10845 static struct attribute *kbdlang_attributes[] = {
10846 &dev_attr_keyboard_lang.attr,
10847 NULL
10848 };
10849
kbdlang_attr_is_visible(struct kobject * kobj,struct attribute * attr,int n)10850 static umode_t kbdlang_attr_is_visible(struct kobject *kobj,
10851 struct attribute *attr, int n)
10852 {
10853 return tp_features.kbd_lang ? attr->mode : 0;
10854 }
10855
10856 static const struct attribute_group kbdlang_attr_group = {
10857 .is_visible = kbdlang_attr_is_visible,
10858 .attrs = kbdlang_attributes,
10859 };
10860
tpacpi_kbdlang_init(struct ibm_init_struct * iibm)10861 static int tpacpi_kbdlang_init(struct ibm_init_struct *iibm)
10862 {
10863 int err, output;
10864
10865 err = get_keyboard_lang(&output);
10866 tp_features.kbd_lang = !err;
10867 return err;
10868 }
10869
10870 static struct ibm_struct kbdlang_driver_data = {
10871 .name = "kbdlang",
10872 };
10873
10874 /*************************************************************************
10875 * DPRC(Dynamic Power Reduction Control) subdriver, for the Lenovo WWAN
10876 * and WLAN feature.
10877 */
10878 #define DPRC_GET_WWAN_ANTENNA_TYPE 0x40000
10879 #define DPRC_WWAN_ANTENNA_TYPE_A_BIT BIT(4)
10880 #define DPRC_WWAN_ANTENNA_TYPE_B_BIT BIT(8)
10881 static bool has_antennatype;
10882 static int wwan_antennatype;
10883
dprc_command(int command,int * output)10884 static int dprc_command(int command, int *output)
10885 {
10886 acpi_handle dprc_handle;
10887
10888 if (ACPI_FAILURE(acpi_get_handle(hkey_handle, "DPRC", &dprc_handle))) {
10889 /* Platform doesn't support DPRC */
10890 return -ENODEV;
10891 }
10892
10893 if (!acpi_evalf(dprc_handle, output, NULL, "dd", command))
10894 return -EIO;
10895
10896 /*
10897 * METHOD_ERR gets returned on devices where few commands are not supported
10898 * for example command to get WWAN Antenna type command is not supported on
10899 * some devices.
10900 */
10901 if (*output & METHOD_ERR)
10902 return -ENODEV;
10903
10904 return 0;
10905 }
10906
get_wwan_antenna(int * wwan_antennatype)10907 static int get_wwan_antenna(int *wwan_antennatype)
10908 {
10909 int output, err;
10910
10911 /* Get current Antenna type */
10912 err = dprc_command(DPRC_GET_WWAN_ANTENNA_TYPE, &output);
10913 if (err)
10914 return err;
10915
10916 if (output & DPRC_WWAN_ANTENNA_TYPE_A_BIT)
10917 *wwan_antennatype = 1;
10918 else if (output & DPRC_WWAN_ANTENNA_TYPE_B_BIT)
10919 *wwan_antennatype = 2;
10920 else
10921 return -ENODEV;
10922
10923 return 0;
10924 }
10925
10926 /* sysfs wwan antenna type entry */
wwan_antenna_type_show(struct device * dev,struct device_attribute * attr,char * buf)10927 static ssize_t wwan_antenna_type_show(struct device *dev,
10928 struct device_attribute *attr,
10929 char *buf)
10930 {
10931 switch (wwan_antennatype) {
10932 case 1:
10933 return sysfs_emit(buf, "type a\n");
10934 case 2:
10935 return sysfs_emit(buf, "type b\n");
10936 default:
10937 return -ENODATA;
10938 }
10939 }
10940 static DEVICE_ATTR_RO(wwan_antenna_type);
10941
10942 static struct attribute *dprc_attributes[] = {
10943 &dev_attr_wwan_antenna_type.attr,
10944 NULL
10945 };
10946
dprc_attr_is_visible(struct kobject * kobj,struct attribute * attr,int n)10947 static umode_t dprc_attr_is_visible(struct kobject *kobj,
10948 struct attribute *attr, int n)
10949 {
10950 return has_antennatype ? attr->mode : 0;
10951 }
10952
10953 static const struct attribute_group dprc_attr_group = {
10954 .is_visible = dprc_attr_is_visible,
10955 .attrs = dprc_attributes,
10956 };
10957
tpacpi_dprc_init(struct ibm_init_struct * iibm)10958 static int tpacpi_dprc_init(struct ibm_init_struct *iibm)
10959 {
10960 int err;
10961
10962 err = get_wwan_antenna(&wwan_antennatype);
10963 if (err)
10964 return err;
10965
10966 has_antennatype = true;
10967 return 0;
10968 }
10969
10970 static struct ibm_struct dprc_driver_data = {
10971 .name = "dprc",
10972 };
10973
10974 /*
10975 * Auxmac
10976 *
10977 * This auxiliary mac address is enabled in the bios through the
10978 * MAC Address Pass-through feature. In most cases, there are three
10979 * possibilities: Internal Mac, Second Mac, and disabled.
10980 *
10981 */
10982
10983 #define AUXMAC_LEN 12
10984 #define AUXMAC_START 9
10985 #define AUXMAC_STRLEN 22
10986 #define AUXMAC_BEGIN_MARKER 8
10987 #define AUXMAC_END_MARKER 21
10988
10989 static char auxmac[AUXMAC_LEN + 1];
10990
auxmac_init(struct ibm_init_struct * iibm)10991 static int auxmac_init(struct ibm_init_struct *iibm)
10992 {
10993 acpi_status status;
10994 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
10995 union acpi_object *obj;
10996
10997 status = acpi_evaluate_object(NULL, "\\MACA", NULL, &buffer);
10998
10999 if (ACPI_FAILURE(status))
11000 return -ENODEV;
11001
11002 obj = buffer.pointer;
11003
11004 if (obj->type != ACPI_TYPE_STRING || obj->string.length != AUXMAC_STRLEN) {
11005 pr_info("Invalid buffer for MAC address pass-through.\n");
11006 goto auxmacinvalid;
11007 }
11008
11009 if (obj->string.pointer[AUXMAC_BEGIN_MARKER] != '#' ||
11010 obj->string.pointer[AUXMAC_END_MARKER] != '#') {
11011 pr_info("Invalid header for MAC address pass-through.\n");
11012 goto auxmacinvalid;
11013 }
11014
11015 if (strncmp(obj->string.pointer + AUXMAC_START, "XXXXXXXXXXXX", AUXMAC_LEN) != 0)
11016 strscpy(auxmac, obj->string.pointer + AUXMAC_START, sizeof(auxmac));
11017 else
11018 strscpy(auxmac, "disabled", sizeof(auxmac));
11019
11020 free:
11021 kfree(obj);
11022 return 0;
11023
11024 auxmacinvalid:
11025 strscpy(auxmac, "unavailable", sizeof(auxmac));
11026 goto free;
11027 }
11028
11029 static struct ibm_struct auxmac_data = {
11030 .name = "auxmac",
11031 };
11032
11033 static DEVICE_STRING_ATTR_RO(auxmac, 0444, auxmac);
11034
auxmac_attr_is_visible(struct kobject * kobj,struct attribute * attr,int n)11035 static umode_t auxmac_attr_is_visible(struct kobject *kobj,
11036 struct attribute *attr, int n)
11037 {
11038 return auxmac[0] == 0 ? 0 : attr->mode;
11039 }
11040
11041 static struct attribute *auxmac_attributes[] = {
11042 &dev_attr_auxmac.attr.attr,
11043 NULL
11044 };
11045
11046 static const struct attribute_group auxmac_attr_group = {
11047 .is_visible = auxmac_attr_is_visible,
11048 .attrs = auxmac_attributes,
11049 };
11050
11051 /* --------------------------------------------------------------------- */
11052
11053 static struct attribute *tpacpi_driver_attributes[] = {
11054 &driver_attr_debug_level.attr,
11055 &driver_attr_version.attr,
11056 &driver_attr_interface_version.attr,
11057 #ifdef CONFIG_THINKPAD_ACPI_DEBUGFACILITIES
11058 &driver_attr_wlsw_emulstate.attr,
11059 &driver_attr_bluetooth_emulstate.attr,
11060 &driver_attr_wwan_emulstate.attr,
11061 &driver_attr_uwb_emulstate.attr,
11062 #endif
11063 NULL
11064 };
11065
11066 #ifdef CONFIG_THINKPAD_ACPI_DEBUGFACILITIES
tpacpi_attr_is_visible(struct kobject * kobj,struct attribute * attr,int n)11067 static umode_t tpacpi_attr_is_visible(struct kobject *kobj,
11068 struct attribute *attr, int n)
11069 {
11070 if (attr == &driver_attr_wlsw_emulstate.attr) {
11071 if (!dbg_wlswemul)
11072 return 0;
11073 } else if (attr == &driver_attr_bluetooth_emulstate.attr) {
11074 if (!dbg_bluetoothemul)
11075 return 0;
11076 } else if (attr == &driver_attr_wwan_emulstate.attr) {
11077 if (!dbg_wwanemul)
11078 return 0;
11079 } else if (attr == &driver_attr_uwb_emulstate.attr) {
11080 if (!dbg_uwbemul)
11081 return 0;
11082 }
11083
11084 return attr->mode;
11085 }
11086 #endif
11087
11088 static const struct attribute_group tpacpi_driver_attr_group = {
11089 #ifdef CONFIG_THINKPAD_ACPI_DEBUGFACILITIES
11090 .is_visible = tpacpi_attr_is_visible,
11091 #endif
11092 .attrs = tpacpi_driver_attributes,
11093 };
11094
11095 static const struct attribute_group *tpacpi_driver_groups[] = {
11096 &tpacpi_driver_attr_group,
11097 NULL,
11098 };
11099
11100 static const struct attribute_group *tpacpi_groups[] = {
11101 &adaptive_kbd_attr_group,
11102 &hotkey_attr_group,
11103 &bluetooth_attr_group,
11104 &wan_attr_group,
11105 &cmos_attr_group,
11106 &proxsensor_attr_group,
11107 &kbdlang_attr_group,
11108 &dprc_attr_group,
11109 &auxmac_attr_group,
11110 NULL,
11111 };
11112
11113 static const struct attribute_group *tpacpi_hwmon_groups[] = {
11114 &thermal_attr_group,
11115 &temp_label_attr_group,
11116 &fan_attr_group,
11117 NULL,
11118 };
11119
11120 static const struct attribute_group *tpacpi_hwmon_driver_groups[] = {
11121 &fan_driver_attr_group,
11122 NULL,
11123 };
11124
11125 /****************************************************************************
11126 ****************************************************************************
11127 *
11128 * Platform drivers
11129 *
11130 ****************************************************************************
11131 ****************************************************************************/
11132
11133 static struct platform_driver tpacpi_pdriver = {
11134 .driver = {
11135 .name = TPACPI_DRVR_NAME,
11136 .pm = &tpacpi_pm,
11137 .groups = tpacpi_driver_groups,
11138 .dev_groups = tpacpi_groups,
11139 },
11140 .shutdown = tpacpi_shutdown_handler,
11141 };
11142
11143 static struct platform_driver tpacpi_hwmon_pdriver = {
11144 .driver = {
11145 .name = TPACPI_HWMON_DRVR_NAME,
11146 .groups = tpacpi_hwmon_driver_groups,
11147 },
11148 };
11149
11150 /****************************************************************************
11151 ****************************************************************************
11152 *
11153 * Infrastructure
11154 *
11155 ****************************************************************************
11156 ****************************************************************************/
11157
11158 /*
11159 * HKEY event callout for other subdrivers go here
11160 * (yes, it is ugly, but it is quick, safe, and gets the job done
11161 */
tpacpi_driver_event(const unsigned int hkey_event)11162 static bool tpacpi_driver_event(const unsigned int hkey_event)
11163 {
11164 switch (hkey_event) {
11165 case TP_HKEY_EV_BRGHT_UP:
11166 case TP_HKEY_EV_BRGHT_DOWN:
11167 if (ibm_backlight_device)
11168 tpacpi_brightness_notify_change();
11169 /*
11170 * Key press events are suppressed by default hotkey_user_mask
11171 * and should still be reported if explicitly requested.
11172 */
11173 return false;
11174 case TP_HKEY_EV_VOL_UP:
11175 case TP_HKEY_EV_VOL_DOWN:
11176 case TP_HKEY_EV_VOL_MUTE:
11177 if (alsa_card)
11178 volume_alsa_notify_change();
11179
11180 /* Key events are suppressed by default hotkey_user_mask */
11181 return false;
11182 case TP_HKEY_EV_KBD_LIGHT:
11183 if (tp_features.kbdlight) {
11184 enum led_brightness brightness;
11185
11186 mutex_lock(&kbdlight_mutex);
11187
11188 /*
11189 * Check the brightness actually changed, setting the brightness
11190 * through kbdlight_set_level() also triggers this event.
11191 */
11192 brightness = kbdlight_sysfs_get(NULL);
11193 if (kbdlight_brightness != brightness) {
11194 kbdlight_brightness = brightness;
11195 led_classdev_notify_brightness_hw_changed(
11196 &tpacpi_led_kbdlight.led_classdev, brightness);
11197 }
11198
11199 mutex_unlock(&kbdlight_mutex);
11200 }
11201 /* Key events are suppressed by default hotkey_user_mask */
11202 return false;
11203 case TP_HKEY_EV_DFR_CHANGE_ROW:
11204 adaptive_keyboard_change_row();
11205 return true;
11206 case TP_HKEY_EV_DFR_S_QUICKVIEW_ROW:
11207 adaptive_keyboard_s_quickview_row();
11208 return true;
11209 case TP_HKEY_EV_THM_CSM_COMPLETED:
11210 lapsensor_refresh();
11211 /* If we are already accessing DYTC then skip dytc update */
11212 if (!atomic_add_unless(&dytc_ignore_event, -1, 0))
11213 dytc_profile_refresh();
11214
11215 return true;
11216 case TP_HKEY_EV_PRIVACYGUARD_TOGGLE:
11217 if (lcdshadow_dev) {
11218 enum drm_privacy_screen_status old_hw_state;
11219 bool changed;
11220
11221 mutex_lock(&lcdshadow_dev->lock);
11222 old_hw_state = lcdshadow_dev->hw_state;
11223 lcdshadow_get_hw_state(lcdshadow_dev);
11224 changed = lcdshadow_dev->hw_state != old_hw_state;
11225 mutex_unlock(&lcdshadow_dev->lock);
11226
11227 if (changed)
11228 drm_privacy_screen_call_notifier_chain(lcdshadow_dev);
11229 }
11230 return true;
11231 case TP_HKEY_EV_AMT_TOGGLE:
11232 /* If we're enabling AMT we need to force balanced mode */
11233 if (!dytc_amt_active)
11234 /* This will also set AMT mode enabled */
11235 dytc_profile_set(NULL, PLATFORM_PROFILE_BALANCED);
11236 else
11237 dytc_control_amt(!dytc_amt_active);
11238
11239 return true;
11240 case TP_HKEY_EV_DOUBLETAP_TOGGLE:
11241 tp_features.trackpoint_doubletap = !tp_features.trackpoint_doubletap;
11242 return true;
11243 case TP_HKEY_EV_PROFILE_TOGGLE:
11244 case TP_HKEY_EV_PROFILE_TOGGLE2:
11245 platform_profile_cycle();
11246 return true;
11247 }
11248
11249 return false;
11250 }
11251
11252 /* --------------------------------------------------------------------- */
11253
11254 /* /proc support */
11255 static struct proc_dir_entry *proc_dir;
11256
11257 /*
11258 * Module and infrastructure proble, init and exit handling
11259 */
11260
11261 static bool force_load;
11262
11263 #ifdef CONFIG_THINKPAD_ACPI_DEBUG
str_supported(int is_supported)11264 static const char * __init str_supported(int is_supported)
11265 {
11266 static char text_unsupported[] __initdata = "not supported";
11267
11268 return (is_supported) ? &text_unsupported[4] : &text_unsupported[0];
11269 }
11270 #endif /* CONFIG_THINKPAD_ACPI_DEBUG */
11271
ibm_exit(struct ibm_struct * ibm)11272 static void ibm_exit(struct ibm_struct *ibm)
11273 {
11274 dbg_printk(TPACPI_DBG_EXIT, "removing %s\n", ibm->name);
11275
11276 list_del_init(&ibm->all_drivers);
11277
11278 if (ibm->flags.acpi_notify_installed) {
11279 dbg_printk(TPACPI_DBG_EXIT,
11280 "%s: acpi_remove_notify_handler\n", ibm->name);
11281 BUG_ON(!ibm->acpi);
11282 acpi_remove_notify_handler(*ibm->acpi->handle,
11283 ibm->acpi->type,
11284 dispatch_acpi_notify);
11285 ibm->flags.acpi_notify_installed = 0;
11286 }
11287
11288 if (ibm->flags.proc_created) {
11289 dbg_printk(TPACPI_DBG_EXIT,
11290 "%s: remove_proc_entry\n", ibm->name);
11291 remove_proc_entry(ibm->name, proc_dir);
11292 ibm->flags.proc_created = 0;
11293 }
11294
11295 if (ibm->flags.acpi_driver_registered) {
11296 dbg_printk(TPACPI_DBG_EXIT,
11297 "%s: acpi_bus_unregister_driver\n", ibm->name);
11298 BUG_ON(!ibm->acpi);
11299 acpi_bus_unregister_driver(ibm->acpi->driver);
11300 kfree(ibm->acpi->driver);
11301 ibm->acpi->driver = NULL;
11302 ibm->flags.acpi_driver_registered = 0;
11303 }
11304
11305 if (ibm->flags.init_called && ibm->exit) {
11306 ibm->exit();
11307 ibm->flags.init_called = 0;
11308 }
11309
11310 dbg_printk(TPACPI_DBG_INIT, "finished removing %s\n", ibm->name);
11311 }
11312
ibm_init(struct ibm_init_struct * iibm)11313 static int __init ibm_init(struct ibm_init_struct *iibm)
11314 {
11315 int ret;
11316 struct ibm_struct *ibm = iibm->data;
11317 struct proc_dir_entry *entry;
11318
11319 BUG_ON(ibm == NULL);
11320
11321 INIT_LIST_HEAD(&ibm->all_drivers);
11322
11323 if (ibm->flags.experimental && !experimental)
11324 return 0;
11325
11326 dbg_printk(TPACPI_DBG_INIT,
11327 "probing for %s\n", ibm->name);
11328
11329 if (iibm->init) {
11330 ret = iibm->init(iibm);
11331 if (ret > 0 || ret == -ENODEV)
11332 return 0; /* subdriver functionality not available */
11333 if (ret)
11334 return ret;
11335
11336 ibm->flags.init_called = 1;
11337 }
11338
11339 if (ibm->acpi) {
11340 if (ibm->acpi->hid) {
11341 ret = register_tpacpi_subdriver(ibm);
11342 if (ret)
11343 goto err_out;
11344 }
11345
11346 if (ibm->acpi->notify) {
11347 ret = setup_acpi_notify(ibm);
11348 if (ret == -ENODEV) {
11349 pr_notice("disabling subdriver %s\n",
11350 ibm->name);
11351 ret = 0;
11352 goto err_out;
11353 }
11354 if (ret < 0)
11355 goto err_out;
11356 }
11357 }
11358
11359 dbg_printk(TPACPI_DBG_INIT,
11360 "%s installed\n", ibm->name);
11361
11362 if (ibm->read) {
11363 umode_t mode = iibm->base_procfs_mode;
11364
11365 if (!mode)
11366 mode = S_IRUGO;
11367 if (ibm->write)
11368 mode |= S_IWUSR;
11369 entry = proc_create_data(ibm->name, mode, proc_dir,
11370 &dispatch_proc_ops, ibm);
11371 if (!entry) {
11372 pr_err("unable to create proc entry %s\n", ibm->name);
11373 ret = -ENODEV;
11374 goto err_out;
11375 }
11376 ibm->flags.proc_created = 1;
11377 }
11378
11379 list_add_tail(&ibm->all_drivers, &tpacpi_all_drivers);
11380
11381 return 0;
11382
11383 err_out:
11384 dbg_printk(TPACPI_DBG_INIT,
11385 "%s: at error exit path with result %d\n",
11386 ibm->name, ret);
11387
11388 ibm_exit(ibm);
11389 return (ret < 0) ? ret : 0;
11390 }
11391
11392 /* Probing */
11393
tpacpi_parse_fw_id(const char * const s,u32 * model,u16 * release)11394 static char __init tpacpi_parse_fw_id(const char * const s,
11395 u32 *model, u16 *release)
11396 {
11397 int i;
11398
11399 if (!s || strlen(s) < 8)
11400 goto invalid;
11401
11402 for (i = 0; i < 8; i++)
11403 if (!((s[i] >= '0' && s[i] <= '9') ||
11404 (s[i] >= 'A' && s[i] <= 'Z')))
11405 goto invalid;
11406
11407 /*
11408 * Most models: xxyTkkWW (#.##c)
11409 * Ancient 570/600 and -SL lacks (#.##c)
11410 */
11411 if (s[3] == 'T' || s[3] == 'N') {
11412 *model = TPID(s[0], s[1]);
11413 *release = TPVER(s[4], s[5]);
11414 return s[2];
11415
11416 /* New models: xxxyTkkW (#.##c); T550 and some others */
11417 } else if (s[4] == 'T' || s[4] == 'N') {
11418 *model = TPID3(s[0], s[1], s[2]);
11419 *release = TPVER(s[5], s[6]);
11420 return s[3];
11421 }
11422
11423 invalid:
11424 return '\0';
11425 }
11426
11427 #define EC_FW_STRING_LEN 18
11428
find_new_ec_fwstr(const struct dmi_header * dm,void * private)11429 static void find_new_ec_fwstr(const struct dmi_header *dm, void *private)
11430 {
11431 char *ec_fw_string = (char *) private;
11432 const char *dmi_data = (const char *)dm;
11433 /*
11434 * ThinkPad Embedded Controller Program Table on newer models
11435 *
11436 * Offset | Name | Width | Description
11437 * ----------------------------------------------------
11438 * 0x00 | Type | BYTE | 0x8C
11439 * 0x01 | Length | BYTE |
11440 * 0x02 | Handle | WORD | Varies
11441 * 0x04 | Signature | BYTEx6 | ASCII for "LENOVO"
11442 * 0x0A | OEM struct offset | BYTE | 0x0B
11443 * 0x0B | OEM struct number | BYTE | 0x07, for this structure
11444 * 0x0C | OEM struct revision | BYTE | 0x01, for this format
11445 * 0x0D | ECP version ID | STR ID |
11446 * 0x0E | ECP release date | STR ID |
11447 */
11448
11449 /* Return if data structure not match */
11450 if (dm->type != 140 || dm->length < 0x0F ||
11451 memcmp(dmi_data + 4, "LENOVO", 6) != 0 ||
11452 dmi_data[0x0A] != 0x0B || dmi_data[0x0B] != 0x07 ||
11453 dmi_data[0x0C] != 0x01)
11454 return;
11455
11456 /* fwstr is the first 8byte string */
11457 BUILD_BUG_ON(EC_FW_STRING_LEN <= 8);
11458 memcpy(ec_fw_string, dmi_data + 0x0F, 8);
11459 }
11460
11461 /* returns 0 - probe ok, or < 0 - probe error.
11462 * Probe ok doesn't mean thinkpad found.
11463 * On error, kfree() cleanup on tp->* is not performed, caller must do it */
get_thinkpad_model_data(struct thinkpad_id_data * tp)11464 static int __must_check __init get_thinkpad_model_data(
11465 struct thinkpad_id_data *tp)
11466 {
11467 const struct dmi_device *dev = NULL;
11468 char ec_fw_string[EC_FW_STRING_LEN] = {0};
11469 char const *s;
11470 char t;
11471
11472 if (!tp)
11473 return -EINVAL;
11474
11475 memset(tp, 0, sizeof(*tp));
11476
11477 if (dmi_name_in_vendors("IBM"))
11478 tp->vendor = PCI_VENDOR_ID_IBM;
11479 else if (dmi_name_in_vendors("LENOVO"))
11480 tp->vendor = PCI_VENDOR_ID_LENOVO;
11481 else
11482 return 0;
11483
11484 s = dmi_get_system_info(DMI_BIOS_VERSION);
11485 tp->bios_version_str = kstrdup(s, GFP_KERNEL);
11486 if (s && !tp->bios_version_str)
11487 return -ENOMEM;
11488
11489 /* Really ancient ThinkPad 240X will fail this, which is fine */
11490 t = tpacpi_parse_fw_id(tp->bios_version_str,
11491 &tp->bios_model, &tp->bios_release);
11492 if (t != 'E' && t != 'C')
11493 return 0;
11494
11495 /*
11496 * ThinkPad T23 or newer, A31 or newer, R50e or newer,
11497 * X32 or newer, all Z series; Some models must have an
11498 * up-to-date BIOS or they will not be detected.
11499 *
11500 * See https://thinkwiki.org/wiki/List_of_DMI_IDs
11501 */
11502 while ((dev = dmi_find_device(DMI_DEV_TYPE_OEM_STRING, NULL, dev))) {
11503 if (sscanf(dev->name,
11504 "IBM ThinkPad Embedded Controller -[%17c",
11505 ec_fw_string) == 1) {
11506 ec_fw_string[sizeof(ec_fw_string) - 1] = 0;
11507 ec_fw_string[strcspn(ec_fw_string, " ]")] = 0;
11508 break;
11509 }
11510 }
11511
11512 /* Newer ThinkPads have different EC program info table */
11513 if (!ec_fw_string[0])
11514 dmi_walk(find_new_ec_fwstr, &ec_fw_string);
11515
11516 if (ec_fw_string[0]) {
11517 tp->ec_version_str = kstrdup(ec_fw_string, GFP_KERNEL);
11518 if (!tp->ec_version_str)
11519 return -ENOMEM;
11520
11521 t = tpacpi_parse_fw_id(ec_fw_string,
11522 &tp->ec_model, &tp->ec_release);
11523 if (t != 'H') {
11524 pr_notice("ThinkPad firmware release %s doesn't match the known patterns\n",
11525 ec_fw_string);
11526 pr_notice("please report this to %s\n", TPACPI_MAIL);
11527 }
11528 }
11529
11530 s = dmi_get_system_info(DMI_PRODUCT_VERSION);
11531 if (s && !(strncasecmp(s, "ThinkPad", 8) && strncasecmp(s, "Lenovo", 6))) {
11532 tp->model_str = kstrdup(s, GFP_KERNEL);
11533 if (!tp->model_str)
11534 return -ENOMEM;
11535 } else {
11536 s = dmi_get_system_info(DMI_BIOS_VENDOR);
11537 if (s && !(strncasecmp(s, "Lenovo", 6))) {
11538 tp->model_str = kstrdup(s, GFP_KERNEL);
11539 if (!tp->model_str)
11540 return -ENOMEM;
11541 }
11542 }
11543
11544 s = dmi_get_system_info(DMI_PRODUCT_NAME);
11545 tp->nummodel_str = kstrdup(s, GFP_KERNEL);
11546 if (s && !tp->nummodel_str)
11547 return -ENOMEM;
11548
11549 return 0;
11550 }
11551
probe_for_thinkpad(void)11552 static int __init probe_for_thinkpad(void)
11553 {
11554 int is_thinkpad;
11555
11556 if (acpi_disabled)
11557 return -ENODEV;
11558
11559 /* It would be dangerous to run the driver in this case */
11560 if (!tpacpi_is_ibm() && !tpacpi_is_lenovo())
11561 return -ENODEV;
11562
11563 /*
11564 * Non-ancient models have better DMI tagging, but very old models
11565 * don't. tpacpi_is_fw_known() is a cheat to help in that case.
11566 */
11567 is_thinkpad = (thinkpad_id.model_str != NULL) ||
11568 (thinkpad_id.ec_model != 0) ||
11569 tpacpi_is_fw_known();
11570
11571 /* The EC handler is required */
11572 tpacpi_acpi_handle_locate("ec", TPACPI_ACPI_EC_HID, &ec_handle);
11573 if (!ec_handle) {
11574 if (is_thinkpad)
11575 pr_err("Not yet supported ThinkPad detected!\n");
11576 return -ENODEV;
11577 }
11578
11579 if (!is_thinkpad && !force_load)
11580 return -ENODEV;
11581
11582 return 0;
11583 }
11584
thinkpad_acpi_init_banner(void)11585 static void __init thinkpad_acpi_init_banner(void)
11586 {
11587 pr_info("%s v%s\n", TPACPI_DESC, TPACPI_VERSION);
11588 pr_info("%s\n", TPACPI_URL);
11589
11590 pr_info("ThinkPad BIOS %s, EC %s\n",
11591 (thinkpad_id.bios_version_str) ?
11592 thinkpad_id.bios_version_str : "unknown",
11593 (thinkpad_id.ec_version_str) ?
11594 thinkpad_id.ec_version_str : "unknown");
11595
11596 BUG_ON(!thinkpad_id.vendor);
11597
11598 if (thinkpad_id.model_str)
11599 pr_info("%s %s, model %s\n",
11600 (thinkpad_id.vendor == PCI_VENDOR_ID_IBM) ?
11601 "IBM" : ((thinkpad_id.vendor ==
11602 PCI_VENDOR_ID_LENOVO) ?
11603 "Lenovo" : "Unknown vendor"),
11604 thinkpad_id.model_str,
11605 (thinkpad_id.nummodel_str) ?
11606 thinkpad_id.nummodel_str : "unknown");
11607 }
11608
11609 /* Module init, exit, parameters */
11610
11611 static struct ibm_init_struct ibms_init[] __initdata = {
11612 {
11613 .data = &thinkpad_acpi_driver_data,
11614 },
11615 {
11616 .init = hotkey_init,
11617 .data = &hotkey_driver_data,
11618 },
11619 {
11620 .init = bluetooth_init,
11621 .data = &bluetooth_driver_data,
11622 },
11623 {
11624 .init = wan_init,
11625 .data = &wan_driver_data,
11626 },
11627 {
11628 .init = uwb_init,
11629 .data = &uwb_driver_data,
11630 },
11631 #ifdef CONFIG_THINKPAD_ACPI_VIDEO
11632 {
11633 .init = video_init,
11634 .base_procfs_mode = S_IRUSR,
11635 .data = &video_driver_data,
11636 },
11637 #endif
11638 {
11639 .init = kbdlight_init,
11640 .data = &kbdlight_driver_data,
11641 },
11642 {
11643 .init = light_init,
11644 .data = &light_driver_data,
11645 },
11646 {
11647 .init = cmos_init,
11648 .data = &cmos_driver_data,
11649 },
11650 {
11651 .init = led_init,
11652 .data = &led_driver_data,
11653 },
11654 {
11655 .init = beep_init,
11656 .data = &beep_driver_data,
11657 },
11658 {
11659 .init = thermal_init,
11660 .data = &thermal_driver_data,
11661 },
11662 {
11663 .init = brightness_init,
11664 .data = &brightness_driver_data,
11665 },
11666 {
11667 .init = volume_init,
11668 .data = &volume_driver_data,
11669 },
11670 {
11671 .init = fan_init,
11672 .data = &fan_driver_data,
11673 },
11674 {
11675 .init = mute_led_init,
11676 .data = &mute_led_driver_data,
11677 },
11678 {
11679 .init = tpacpi_battery_init,
11680 .data = &battery_driver_data,
11681 },
11682 {
11683 .init = tpacpi_lcdshadow_init,
11684 .data = &lcdshadow_driver_data,
11685 },
11686 {
11687 .init = tpacpi_proxsensor_init,
11688 .data = &proxsensor_driver_data,
11689 },
11690 {
11691 .init = tpacpi_dytc_profile_init,
11692 .data = &dytc_profile_driver_data,
11693 },
11694 {
11695 .init = tpacpi_kbdlang_init,
11696 .data = &kbdlang_driver_data,
11697 },
11698 {
11699 .init = tpacpi_dprc_init,
11700 .data = &dprc_driver_data,
11701 },
11702 {
11703 .init = auxmac_init,
11704 .data = &auxmac_data,
11705 },
11706 };
11707
set_ibm_param(const char * val,const struct kernel_param * kp)11708 static int __init set_ibm_param(const char *val, const struct kernel_param *kp)
11709 {
11710 unsigned int i;
11711 struct ibm_struct *ibm;
11712
11713 if (!kp || !kp->name || !val)
11714 return -EINVAL;
11715
11716 for (i = 0; i < ARRAY_SIZE(ibms_init); i++) {
11717 ibm = ibms_init[i].data;
11718 if (!ibm || !ibm->name)
11719 continue;
11720
11721 if (strcmp(ibm->name, kp->name) == 0 && ibm->write) {
11722 if (strlen(val) > sizeof(ibms_init[i].param) - 1)
11723 return -ENOSPC;
11724 strscpy(ibms_init[i].param, val);
11725 return 0;
11726 }
11727 }
11728
11729 return -EINVAL;
11730 }
11731
11732 module_param(experimental, int, 0444);
11733 MODULE_PARM_DESC(experimental,
11734 "Enables experimental features when non-zero");
11735
11736 module_param_named(debug, dbg_level, uint, 0);
11737 MODULE_PARM_DESC(debug, "Sets debug level bit-mask");
11738
11739 module_param(force_load, bool, 0444);
11740 MODULE_PARM_DESC(force_load,
11741 "Attempts to load the driver even on a mis-identified ThinkPad when true");
11742
11743 module_param_named(fan_control, fan_control_allowed, bool, 0444);
11744 MODULE_PARM_DESC(fan_control,
11745 "Enables setting fan parameters features when true");
11746
11747 module_param_named(brightness_mode, brightness_mode, uint, 0444);
11748 MODULE_PARM_DESC(brightness_mode,
11749 "Selects brightness control strategy: 0=auto, 1=EC, 2=UCMS, 3=EC+NVRAM");
11750
11751 module_param(brightness_enable, uint, 0444);
11752 MODULE_PARM_DESC(brightness_enable,
11753 "Enables backlight control when 1, disables when 0");
11754
11755 #ifdef CONFIG_THINKPAD_ACPI_ALSA_SUPPORT
11756 module_param_named(volume_mode, volume_mode, uint, 0444);
11757 MODULE_PARM_DESC(volume_mode,
11758 "Selects volume control strategy: 0=auto, 1=EC, 2=N/A, 3=EC+NVRAM");
11759
11760 module_param_named(volume_capabilities, volume_capabilities, uint, 0444);
11761 MODULE_PARM_DESC(volume_capabilities,
11762 "Selects the mixer capabilities: 0=auto, 1=volume and mute, 2=mute only");
11763
11764 module_param_named(volume_control, volume_control_allowed, bool, 0444);
11765 MODULE_PARM_DESC(volume_control,
11766 "Enables software override for the console audio control when true");
11767
11768 module_param_named(software_mute, software_mute_requested, bool, 0444);
11769 MODULE_PARM_DESC(software_mute,
11770 "Request full software mute control");
11771
11772 /* ALSA module API parameters */
11773 module_param_named(index, alsa_index, int, 0444);
11774 MODULE_PARM_DESC(index, "ALSA index for the ACPI EC Mixer");
11775 module_param_named(id, alsa_id, charp, 0444);
11776 MODULE_PARM_DESC(id, "ALSA id for the ACPI EC Mixer");
11777 module_param_named(enable, alsa_enable, bool, 0444);
11778 MODULE_PARM_DESC(enable, "Enable the ALSA interface for the ACPI EC Mixer");
11779 #endif /* CONFIG_THINKPAD_ACPI_ALSA_SUPPORT */
11780
11781 /* The module parameter can't be read back, that's why 0 is used here */
11782 #define TPACPI_PARAM(feature) \
11783 module_param_call(feature, set_ibm_param, NULL, NULL, 0); \
11784 MODULE_PARM_DESC(feature, "Simulates thinkpad-acpi procfs command at module load, see documentation")
11785
11786 TPACPI_PARAM(hotkey);
11787 TPACPI_PARAM(bluetooth);
11788 TPACPI_PARAM(video);
11789 TPACPI_PARAM(light);
11790 TPACPI_PARAM(cmos);
11791 TPACPI_PARAM(led);
11792 TPACPI_PARAM(beep);
11793 TPACPI_PARAM(brightness);
11794 TPACPI_PARAM(volume);
11795 TPACPI_PARAM(fan);
11796
11797 #ifdef CONFIG_THINKPAD_ACPI_DEBUGFACILITIES
11798 module_param(dbg_wlswemul, uint, 0444);
11799 MODULE_PARM_DESC(dbg_wlswemul, "Enables WLSW emulation");
11800 module_param_named(wlsw_state, tpacpi_wlsw_emulstate, bool, 0);
11801 MODULE_PARM_DESC(wlsw_state,
11802 "Initial state of the emulated WLSW switch");
11803
11804 module_param(dbg_bluetoothemul, uint, 0444);
11805 MODULE_PARM_DESC(dbg_bluetoothemul, "Enables bluetooth switch emulation");
11806 module_param_named(bluetooth_state, tpacpi_bluetooth_emulstate, bool, 0);
11807 MODULE_PARM_DESC(bluetooth_state,
11808 "Initial state of the emulated bluetooth switch");
11809
11810 module_param(dbg_wwanemul, uint, 0444);
11811 MODULE_PARM_DESC(dbg_wwanemul, "Enables WWAN switch emulation");
11812 module_param_named(wwan_state, tpacpi_wwan_emulstate, bool, 0);
11813 MODULE_PARM_DESC(wwan_state,
11814 "Initial state of the emulated WWAN switch");
11815
11816 module_param(dbg_uwbemul, uint, 0444);
11817 MODULE_PARM_DESC(dbg_uwbemul, "Enables UWB switch emulation");
11818 module_param_named(uwb_state, tpacpi_uwb_emulstate, bool, 0);
11819 MODULE_PARM_DESC(uwb_state,
11820 "Initial state of the emulated UWB switch");
11821 #endif
11822
11823 module_param(profile_force, int, 0444);
11824 MODULE_PARM_DESC(profile_force, "Force profile mode. -1=off, 1=MMC, 2=PSC");
11825
thinkpad_acpi_module_exit(void)11826 static void thinkpad_acpi_module_exit(void)
11827 {
11828 tpacpi_lifecycle = TPACPI_LIFE_EXITING;
11829
11830 if (tpacpi_sensors_pdev) {
11831 platform_driver_unregister(&tpacpi_hwmon_pdriver);
11832 platform_device_unregister(tpacpi_sensors_pdev);
11833 }
11834
11835 if (tp_features.platform_drv_registered)
11836 platform_driver_unregister(&tpacpi_pdriver);
11837 if (tpacpi_pdev)
11838 platform_device_unregister(tpacpi_pdev);
11839
11840 if (proc_dir)
11841 remove_proc_entry(TPACPI_PROC_DIR, acpi_root_dir);
11842 if (tpacpi_wq)
11843 destroy_workqueue(tpacpi_wq);
11844
11845 kfree(thinkpad_id.bios_version_str);
11846 kfree(thinkpad_id.ec_version_str);
11847 kfree(thinkpad_id.model_str);
11848 kfree(thinkpad_id.nummodel_str);
11849 }
11850
tpacpi_subdrivers_release(void * data)11851 static void tpacpi_subdrivers_release(void *data)
11852 {
11853 struct ibm_struct *ibm, *itmp;
11854
11855 list_for_each_entry_safe_reverse(ibm, itmp, &tpacpi_all_drivers, all_drivers)
11856 ibm_exit(ibm);
11857
11858 dbg_printk(TPACPI_DBG_INIT, "finished subdriver exit path...\n");
11859 }
11860
tpacpi_pdriver_probe(struct platform_device * pdev)11861 static int __init tpacpi_pdriver_probe(struct platform_device *pdev)
11862 {
11863 int ret;
11864
11865 ret = devm_mutex_init(&pdev->dev, &tpacpi_inputdev_send_mutex);
11866 if (ret)
11867 return ret;
11868
11869 tpacpi_inputdev = devm_input_allocate_device(&pdev->dev);
11870 if (!tpacpi_inputdev)
11871 return -ENOMEM;
11872
11873 tpacpi_inputdev->name = "ThinkPad Extra Buttons";
11874 tpacpi_inputdev->phys = TPACPI_DRVR_NAME "/input0";
11875 tpacpi_inputdev->id.bustype = BUS_HOST;
11876 tpacpi_inputdev->id.vendor = thinkpad_id.vendor;
11877 tpacpi_inputdev->id.product = TPACPI_HKEY_INPUT_PRODUCT;
11878 tpacpi_inputdev->id.version = TPACPI_HKEY_INPUT_VERSION;
11879 tpacpi_inputdev->dev.parent = &tpacpi_pdev->dev;
11880
11881 /* Init subdriver dependencies */
11882 tpacpi_detect_brightness_capabilities();
11883
11884 /* Init subdrivers */
11885 for (unsigned int i = 0; i < ARRAY_SIZE(ibms_init); i++) {
11886 ret = ibm_init(&ibms_init[i]);
11887 if (ret >= 0 && *ibms_init[i].param)
11888 ret = ibms_init[i].data->write(ibms_init[i].param);
11889 if (ret < 0) {
11890 tpacpi_subdrivers_release(NULL);
11891 return ret;
11892 }
11893 }
11894
11895 ret = devm_add_action_or_reset(&pdev->dev, tpacpi_subdrivers_release, NULL);
11896 if (ret)
11897 return ret;
11898
11899 ret = input_register_device(tpacpi_inputdev);
11900 if (ret < 0)
11901 pr_err("unable to register input device\n");
11902
11903 return ret;
11904 }
11905
tpacpi_hwmon_pdriver_probe(struct platform_device * pdev)11906 static int __init tpacpi_hwmon_pdriver_probe(struct platform_device *pdev)
11907 {
11908 tpacpi_hwmon = devm_hwmon_device_register_with_groups(&pdev->dev, TPACPI_NAME,
11909 NULL, tpacpi_hwmon_groups);
11910 if (IS_ERR(tpacpi_hwmon))
11911 pr_err("unable to register hwmon device\n");
11912
11913 return PTR_ERR_OR_ZERO(tpacpi_hwmon);
11914 }
11915
thinkpad_acpi_module_init(void)11916 static int __init thinkpad_acpi_module_init(void)
11917 {
11918 const struct dmi_system_id *dmi_id;
11919 int ret;
11920 acpi_object_type obj_type;
11921
11922 tpacpi_lifecycle = TPACPI_LIFE_INIT;
11923
11924 /* Driver-level probe */
11925
11926 ret = get_thinkpad_model_data(&thinkpad_id);
11927 if (ret) {
11928 pr_err("unable to get DMI data: %d\n", ret);
11929 thinkpad_acpi_module_exit();
11930 return ret;
11931 }
11932 ret = probe_for_thinkpad();
11933 if (ret) {
11934 thinkpad_acpi_module_exit();
11935 return ret;
11936 }
11937
11938 /* Driver initialization */
11939
11940 thinkpad_acpi_init_banner();
11941 tpacpi_check_outdated_fw();
11942
11943 TPACPI_ACPIHANDLE_INIT(ecrd);
11944 TPACPI_ACPIHANDLE_INIT(ecwr);
11945
11946 /*
11947 * Quirk: in some models (e.g. X380 Yoga), an object named ECRD
11948 * exists, but it is a register, not a method.
11949 */
11950 if (ecrd_handle) {
11951 acpi_get_type(ecrd_handle, &obj_type);
11952 if (obj_type != ACPI_TYPE_METHOD)
11953 ecrd_handle = NULL;
11954 }
11955 if (ecwr_handle) {
11956 acpi_get_type(ecwr_handle, &obj_type);
11957 if (obj_type != ACPI_TYPE_METHOD)
11958 ecwr_handle = NULL;
11959 }
11960
11961 tpacpi_wq = create_singlethread_workqueue(TPACPI_WORKQUEUE_NAME);
11962 if (!tpacpi_wq) {
11963 thinkpad_acpi_module_exit();
11964 return -ENOMEM;
11965 }
11966
11967 proc_dir = proc_mkdir(TPACPI_PROC_DIR, acpi_root_dir);
11968 if (!proc_dir) {
11969 pr_err("unable to create proc dir " TPACPI_PROC_DIR "\n");
11970 thinkpad_acpi_module_exit();
11971 return -ENODEV;
11972 }
11973
11974 dmi_id = dmi_first_match(fwbug_list);
11975 if (dmi_id)
11976 tp_features.quirks = dmi_id->driver_data;
11977
11978 /* Device initialization */
11979 tpacpi_pdev = platform_device_register_simple(TPACPI_DRVR_NAME, PLATFORM_DEVID_NONE,
11980 NULL, 0);
11981 if (IS_ERR(tpacpi_pdev)) {
11982 ret = PTR_ERR(tpacpi_pdev);
11983 tpacpi_pdev = NULL;
11984 pr_err("unable to register platform device\n");
11985 thinkpad_acpi_module_exit();
11986 return ret;
11987 }
11988
11989 ret = platform_driver_probe(&tpacpi_pdriver, tpacpi_pdriver_probe);
11990 if (ret) {
11991 pr_err("unable to register main platform driver\n");
11992 thinkpad_acpi_module_exit();
11993 return ret;
11994 }
11995 tp_features.platform_drv_registered = 1;
11996
11997 tpacpi_sensors_pdev = platform_create_bundle(&tpacpi_hwmon_pdriver,
11998 tpacpi_hwmon_pdriver_probe,
11999 NULL, 0, NULL, 0);
12000 if (IS_ERR(tpacpi_sensors_pdev)) {
12001 ret = PTR_ERR(tpacpi_sensors_pdev);
12002 tpacpi_sensors_pdev = NULL;
12003 pr_err("unable to register hwmon platform device/driver bundle\n");
12004 thinkpad_acpi_module_exit();
12005 return ret;
12006 }
12007
12008 tpacpi_lifecycle = TPACPI_LIFE_RUNNING;
12009
12010 return 0;
12011 }
12012
12013 MODULE_ALIAS(TPACPI_DRVR_SHORTNAME);
12014
12015 /*
12016 * This will autoload the driver in almost every ThinkPad
12017 * in widespread use.
12018 *
12019 * Only _VERY_ old models, like the 240, 240x and 570 lack
12020 * the HKEY event interface.
12021 */
12022 MODULE_DEVICE_TABLE(acpi, ibm_htk_device_ids);
12023
12024 /*
12025 * DMI matching for module autoloading
12026 *
12027 * See https://thinkwiki.org/wiki/List_of_DMI_IDs
12028 * See https://thinkwiki.org/wiki/BIOS_Upgrade_Downloads
12029 *
12030 * Only models listed in thinkwiki will be supported, so add yours
12031 * if it is not there yet.
12032 */
12033 #define IBM_BIOS_MODULE_ALIAS(__type) \
12034 MODULE_ALIAS("dmi:bvnIBM:bvr" __type "ET??WW*")
12035
12036 /* Ancient thinkpad BIOSes have to be identified by
12037 * BIOS type or model number, and there are far less
12038 * BIOS types than model numbers... */
12039 IBM_BIOS_MODULE_ALIAS("I[MU]"); /* 570, 570e */
12040
12041 MODULE_AUTHOR("Borislav Deianov <borislav@users.sf.net>");
12042 MODULE_AUTHOR("Henrique de Moraes Holschuh <hmh@hmh.eng.br>");
12043 MODULE_DESCRIPTION(TPACPI_DESC);
12044 MODULE_VERSION(TPACPI_VERSION);
12045 MODULE_LICENSE("GPL");
12046
12047 module_init(thinkpad_acpi_module_init);
12048 module_exit(thinkpad_acpi_module_exit);
12049