2 * thinkpad_acpi.c - ThinkPad ACPI Extras
5 * Copyright (C) 2004-2005 Borislav Deianov <borislav@users.sf.net>
6 * Copyright (C) 2006-2009 Henrique de Moraes Holschuh <hmh@hmh.eng.br>
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
24 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
26 #define TPACPI_VERSION "0.24"
27 #define TPACPI_SYSFS_VERSION 0x020700
31 * 2007-10-20 changelog trimmed down
33 * 2007-03-27 0.14 renamed to thinkpad_acpi and moved to
36 * 2006-11-22 0.13 new maintainer
37 * changelog now lives in git commit history, and will
38 * not be updated further in-file.
40 * 2005-03-17 0.11 support for 600e, 770x
41 * thanks to Jamie Lentin <lentinj@dial.pipex.com>
43 * 2005-01-16 0.9 use MODULE_VERSION
44 * thanks to Henrik Brix Andersen <brix@gentoo.org>
45 * fix parameter passing on module loading
46 * thanks to Rusty Russell <rusty@rustcorp.com.au>
47 * thanks to Jim Radford <radford@blackbean.org>
48 * 2004-11-08 0.8 fix init error case, don't return from a macro
49 * thanks to Chris Wright <chrisw@osdl.org>
52 #include <linux/kernel.h>
53 #include <linux/module.h>
54 #include <linux/init.h>
55 #include <linux/types.h>
56 #include <linux/string.h>
57 #include <linux/list.h>
58 #include <linux/mutex.h>
59 #include <linux/sched.h>
60 #include <linux/kthread.h>
61 #include <linux/freezer.h>
62 #include <linux/delay.h>
63 #include <linux/slab.h>
65 #include <linux/nvram.h>
66 #include <linux/proc_fs.h>
67 #include <linux/seq_file.h>
68 #include <linux/sysfs.h>
69 #include <linux/backlight.h>
71 #include <linux/platform_device.h>
72 #include <linux/hwmon.h>
73 #include <linux/hwmon-sysfs.h>
74 #include <linux/input.h>
75 #include <linux/leds.h>
76 #include <linux/rfkill.h>
77 #include <asm/uaccess.h>
79 #include <linux/dmi.h>
80 #include <linux/jiffies.h>
81 #include <linux/workqueue.h>
83 #include <sound/core.h>
84 #include <sound/control.h>
85 #include <sound/initval.h>
87 #include <acpi/acpi_drivers.h>
89 #include <linux/pci_ids.h>
92 /* ThinkPad CMOS commands */
93 #define TP_CMOS_VOLUME_DOWN 0
94 #define TP_CMOS_VOLUME_UP 1
95 #define TP_CMOS_VOLUME_MUTE 2
96 #define TP_CMOS_BRIGHTNESS_UP 4
97 #define TP_CMOS_BRIGHTNESS_DOWN 5
98 #define TP_CMOS_THINKLIGHT_ON 12
99 #define TP_CMOS_THINKLIGHT_OFF 13
101 /* NVRAM Addresses */
103 TP_NVRAM_ADDR_HK2
= 0x57,
104 TP_NVRAM_ADDR_THINKLIGHT
= 0x58,
105 TP_NVRAM_ADDR_VIDEO
= 0x59,
106 TP_NVRAM_ADDR_BRIGHTNESS
= 0x5e,
107 TP_NVRAM_ADDR_MIXER
= 0x60,
110 /* NVRAM bit masks */
112 TP_NVRAM_MASK_HKT_THINKPAD
= 0x08,
113 TP_NVRAM_MASK_HKT_ZOOM
= 0x20,
114 TP_NVRAM_MASK_HKT_DISPLAY
= 0x40,
115 TP_NVRAM_MASK_HKT_HIBERNATE
= 0x80,
116 TP_NVRAM_MASK_THINKLIGHT
= 0x10,
117 TP_NVRAM_MASK_HKT_DISPEXPND
= 0x30,
118 TP_NVRAM_MASK_HKT_BRIGHTNESS
= 0x20,
119 TP_NVRAM_MASK_LEVEL_BRIGHTNESS
= 0x0f,
120 TP_NVRAM_POS_LEVEL_BRIGHTNESS
= 0,
121 TP_NVRAM_MASK_MUTE
= 0x40,
122 TP_NVRAM_MASK_HKT_VOLUME
= 0x80,
123 TP_NVRAM_MASK_LEVEL_VOLUME
= 0x0f,
124 TP_NVRAM_POS_LEVEL_VOLUME
= 0,
127 /* Misc NVRAM-related */
129 TP_NVRAM_LEVEL_VOLUME_MAX
= 14,
133 #define TPACPI_ACPI_IBM_HKEY_HID "IBM0068"
134 #define TPACPI_ACPI_LENOVO_HKEY_HID "LEN0068"
135 #define TPACPI_ACPI_EC_HID "PNP0C09"
138 #define TPACPI_HKEY_INPUT_PRODUCT 0x5054 /* "TP" */
139 #define TPACPI_HKEY_INPUT_VERSION 0x4101
141 /* ACPI \WGSV commands */
143 TP_ACPI_WGSV_GET_STATE
= 0x01, /* Get state information */
144 TP_ACPI_WGSV_PWR_ON_ON_RESUME
= 0x02, /* Resume WWAN powered on */
145 TP_ACPI_WGSV_PWR_OFF_ON_RESUME
= 0x03, /* Resume WWAN powered off */
146 TP_ACPI_WGSV_SAVE_STATE
= 0x04, /* Save state for S4/S5 */
149 /* TP_ACPI_WGSV_GET_STATE bits */
151 TP_ACPI_WGSV_STATE_WWANEXIST
= 0x0001, /* WWAN hw available */
152 TP_ACPI_WGSV_STATE_WWANPWR
= 0x0002, /* WWAN radio enabled */
153 TP_ACPI_WGSV_STATE_WWANPWRRES
= 0x0004, /* WWAN state at resume */
154 TP_ACPI_WGSV_STATE_WWANBIOSOFF
= 0x0008, /* WWAN disabled in BIOS */
155 TP_ACPI_WGSV_STATE_BLTHEXIST
= 0x0001, /* BLTH hw available */
156 TP_ACPI_WGSV_STATE_BLTHPWR
= 0x0002, /* BLTH radio enabled */
157 TP_ACPI_WGSV_STATE_BLTHPWRRES
= 0x0004, /* BLTH state at resume */
158 TP_ACPI_WGSV_STATE_BLTHBIOSOFF
= 0x0008, /* BLTH disabled in BIOS */
159 TP_ACPI_WGSV_STATE_UWBEXIST
= 0x0010, /* UWB hw available */
160 TP_ACPI_WGSV_STATE_UWBPWR
= 0x0020, /* UWB radio enabled */
164 enum tpacpi_hkey_event_t
{
166 TP_HKEY_EV_HOTKEY_BASE
= 0x1001, /* first hotkey (FN+F1) */
167 TP_HKEY_EV_BRGHT_UP
= 0x1010, /* Brightness up */
168 TP_HKEY_EV_BRGHT_DOWN
= 0x1011, /* Brightness down */
169 TP_HKEY_EV_VOL_UP
= 0x1015, /* Volume up or unmute */
170 TP_HKEY_EV_VOL_DOWN
= 0x1016, /* Volume down or unmute */
171 TP_HKEY_EV_VOL_MUTE
= 0x1017, /* Mixer output mute */
173 /* Reasons for waking up from S3/S4 */
174 TP_HKEY_EV_WKUP_S3_UNDOCK
= 0x2304, /* undock requested, S3 */
175 TP_HKEY_EV_WKUP_S4_UNDOCK
= 0x2404, /* undock requested, S4 */
176 TP_HKEY_EV_WKUP_S3_BAYEJ
= 0x2305, /* bay ejection req, S3 */
177 TP_HKEY_EV_WKUP_S4_BAYEJ
= 0x2405, /* bay ejection req, S4 */
178 TP_HKEY_EV_WKUP_S3_BATLOW
= 0x2313, /* battery empty, S3 */
179 TP_HKEY_EV_WKUP_S4_BATLOW
= 0x2413, /* battery empty, S4 */
181 /* Auto-sleep after eject request */
182 TP_HKEY_EV_BAYEJ_ACK
= 0x3003, /* bay ejection complete */
183 TP_HKEY_EV_UNDOCK_ACK
= 0x4003, /* undock complete */
185 /* Misc bay events */
186 TP_HKEY_EV_OPTDRV_EJ
= 0x3006, /* opt. drive tray ejected */
187 TP_HKEY_EV_HOTPLUG_DOCK
= 0x4010, /* docked into hotplug dock
188 or port replicator */
189 TP_HKEY_EV_HOTPLUG_UNDOCK
= 0x4011, /* undocked from hotplug
190 dock or port replicator */
192 /* User-interface events */
193 TP_HKEY_EV_LID_CLOSE
= 0x5001, /* laptop lid closed */
194 TP_HKEY_EV_LID_OPEN
= 0x5002, /* laptop lid opened */
195 TP_HKEY_EV_TABLET_TABLET
= 0x5009, /* tablet swivel up */
196 TP_HKEY_EV_TABLET_NOTEBOOK
= 0x500a, /* tablet swivel down */
197 TP_HKEY_EV_PEN_INSERTED
= 0x500b, /* tablet pen inserted */
198 TP_HKEY_EV_PEN_REMOVED
= 0x500c, /* tablet pen removed */
199 TP_HKEY_EV_BRGHT_CHANGED
= 0x5010, /* backlight control event */
201 /* Key-related user-interface events */
202 TP_HKEY_EV_KEY_NUMLOCK
= 0x6000, /* NumLock key pressed */
203 TP_HKEY_EV_KEY_FN
= 0x6005, /* Fn key pressed? E420 */
206 TP_HKEY_EV_ALARM_BAT_HOT
= 0x6011, /* battery too hot */
207 TP_HKEY_EV_ALARM_BAT_XHOT
= 0x6012, /* battery critically hot */
208 TP_HKEY_EV_ALARM_SENSOR_HOT
= 0x6021, /* sensor too hot */
209 TP_HKEY_EV_ALARM_SENSOR_XHOT
= 0x6022, /* sensor critically hot */
210 TP_HKEY_EV_THM_TABLE_CHANGED
= 0x6030, /* thermal table changed */
212 TP_HKEY_EV_UNK_6040
= 0x6040, /* Related to AC change?
213 some sort of APM hint,
217 TP_HKEY_EV_RFKILL_CHANGED
= 0x7000, /* rfkill switch changed */
220 /****************************************************************************
224 #define TPACPI_NAME "thinkpad"
225 #define TPACPI_DESC "ThinkPad ACPI Extras"
226 #define TPACPI_FILE TPACPI_NAME "_acpi"
227 #define TPACPI_URL "http://ibm-acpi.sf.net/"
228 #define TPACPI_MAIL "ibm-acpi-devel@lists.sourceforge.net"
230 #define TPACPI_PROC_DIR "ibm"
231 #define TPACPI_ACPI_EVENT_PREFIX "ibm"
232 #define TPACPI_DRVR_NAME TPACPI_FILE
233 #define TPACPI_DRVR_SHORTNAME "tpacpi"
234 #define TPACPI_HWMON_DRVR_NAME TPACPI_NAME "_hwmon"
236 #define TPACPI_NVRAM_KTHREAD_NAME "ktpacpi_nvramd"
237 #define TPACPI_WORKQUEUE_NAME "ktpacpid"
239 #define TPACPI_MAX_ACPI_ARGS 3
241 /* Debugging printk groups */
242 #define TPACPI_DBG_ALL 0xffff
243 #define TPACPI_DBG_DISCLOSETASK 0x8000
244 #define TPACPI_DBG_INIT 0x0001
245 #define TPACPI_DBG_EXIT 0x0002
246 #define TPACPI_DBG_RFKILL 0x0004
247 #define TPACPI_DBG_HKEY 0x0008
248 #define TPACPI_DBG_FAN 0x0010
249 #define TPACPI_DBG_BRGHT 0x0020
250 #define TPACPI_DBG_MIXER 0x0040
252 #define onoff(status, bit) ((status) & (1 << (bit)) ? "on" : "off")
253 #define enabled(status, bit) ((status) & (1 << (bit)) ? "enabled" : "disabled")
254 #define strlencmp(a, b) (strncmp((a), (b), strlen(b)))
257 /****************************************************************************
258 * Driver-wide structs and misc. variables
263 struct tp_acpi_drv_struct
{
264 const struct acpi_device_id
*hid
;
265 struct acpi_driver
*driver
;
267 void (*notify
) (struct ibm_struct
*, u32
);
270 struct acpi_device
*device
;
276 int (*read
) (struct seq_file
*);
277 int (*write
) (char *);
279 void (*resume
) (void);
280 void (*suspend
) (pm_message_t state
);
281 void (*shutdown
) (void);
283 struct list_head all_drivers
;
285 struct tp_acpi_drv_struct
*acpi
;
288 u8 acpi_driver_registered
:1;
289 u8 acpi_notify_installed
:1;
296 struct ibm_init_struct
{
299 int (*init
) (struct ibm_init_struct
*);
300 mode_t base_procfs_mode
;
301 struct ibm_struct
*data
;
312 u32 bright_acpimode
:1;
316 u32 fan_ctrl_status_undef
:1;
318 u32 beep_needs_two_args
:1;
319 u32 mixer_no_level_control
:1;
320 u32 input_device_registered
:1;
321 u32 platform_drv_registered
:1;
322 u32 platform_drv_attrs_registered
:1;
323 u32 sensors_pdrv_registered
:1;
324 u32 sensors_pdrv_attrs_registered
:1;
325 u32 sensors_pdev_attrs_registered
:1;
326 u32 hotkey_poll_active
:1;
330 u16 hotkey_mask_ff
:1;
331 u16 volume_ctrl_forbidden
:1;
334 struct thinkpad_id_data
{
335 unsigned int vendor
; /* ThinkPad vendor:
336 * PCI_VENDOR_ID_IBM/PCI_VENDOR_ID_LENOVO */
338 char *bios_version_str
; /* Something like 1ZET51WW (1.03z) */
339 char *ec_version_str
; /* Something like 1ZHT51WW-1.04a */
341 u16 bios_model
; /* 1Y = 0x5931, 0 = unknown */
343 u16 bios_release
; /* 1ZETK1WW = 0x314b, 0 = unknown */
346 char *model_str
; /* ThinkPad T43 */
347 char *nummodel_str
; /* 9384A9C for a 9384-A9C model */
349 static struct thinkpad_id_data thinkpad_id
;
352 TPACPI_LIFE_INIT
= 0,
357 static int experimental
;
358 static u32 dbg_level
;
360 static struct workqueue_struct
*tpacpi_wq
;
368 /* Special LED class that can defer work */
369 struct tpacpi_led_classdev
{
370 struct led_classdev led_classdev
;
371 struct work_struct work
;
372 enum led_status_t new_state
;
376 /* brightness level capabilities */
377 static unsigned int bright_maxlvl
; /* 0 = unknown */
379 #ifdef CONFIG_THINKPAD_ACPI_DEBUGFACILITIES
380 static int dbg_wlswemul
;
381 static int tpacpi_wlsw_emulstate
;
382 static int dbg_bluetoothemul
;
383 static int tpacpi_bluetooth_emulstate
;
384 static int dbg_wwanemul
;
385 static int tpacpi_wwan_emulstate
;
386 static int dbg_uwbemul
;
387 static int tpacpi_uwb_emulstate
;
391 /*************************************************************************
395 #define dbg_printk(a_dbg_level, format, arg...) \
397 if (dbg_level & (a_dbg_level)) \
398 printk(KERN_DEBUG pr_fmt("%s: " format), \
402 #ifdef CONFIG_THINKPAD_ACPI_DEBUG
403 #define vdbg_printk dbg_printk
404 static const char *str_supported(int is_supported
);
406 static inline const char *str_supported(int is_supported
) { return ""; }
407 #define vdbg_printk(a_dbg_level, format, arg...) \
408 no_printk(format, ##arg)
411 static void tpacpi_log_usertask(const char * const what
)
413 printk(KERN_DEBUG
pr_fmt("%s: access by process with PID %d\n"),
414 what
, task_tgid_vnr(current
));
417 #define tpacpi_disclose_usertask(what, format, arg...) \
419 if (unlikely((dbg_level & TPACPI_DBG_DISCLOSETASK) && \
420 (tpacpi_lifecycle == TPACPI_LIFE_RUNNING))) { \
421 printk(KERN_DEBUG pr_fmt("%s: PID %d: " format), \
422 what, task_tgid_vnr(current), ## arg); \
427 * Quirk handling helpers
429 * ThinkPad IDs and versions seen in the field so far
430 * are two-characters from the set [0-9A-Z], i.e. base 36.
432 * We use values well outside that range as specials.
435 #define TPACPI_MATCH_ANY 0xffffU
436 #define TPACPI_MATCH_UNKNOWN 0U
438 /* TPID('1', 'Y') == 0x5931 */
439 #define TPID(__c1, __c2) (((__c2) << 8) | (__c1))
441 #define TPACPI_Q_IBM(__id1, __id2, __quirk) \
442 { .vendor = PCI_VENDOR_ID_IBM, \
443 .bios = TPID(__id1, __id2), \
444 .ec = TPACPI_MATCH_ANY, \
445 .quirks = (__quirk) }
447 #define TPACPI_Q_LNV(__id1, __id2, __quirk) \
448 { .vendor = PCI_VENDOR_ID_LENOVO, \
449 .bios = TPID(__id1, __id2), \
450 .ec = TPACPI_MATCH_ANY, \
451 .quirks = (__quirk) }
453 #define TPACPI_QEC_LNV(__id1, __id2, __quirk) \
454 { .vendor = PCI_VENDOR_ID_LENOVO, \
455 .bios = TPACPI_MATCH_ANY, \
456 .ec = TPID(__id1, __id2), \
457 .quirks = (__quirk) }
459 struct tpacpi_quirk
{
463 unsigned long quirks
;
467 * tpacpi_check_quirks() - search BIOS/EC version on a list
468 * @qlist: array of &struct tpacpi_quirk
469 * @qlist_size: number of elements in @qlist
471 * Iterates over a quirks list until one is found that matches the
472 * ThinkPad's vendor, BIOS and EC model.
474 * Returns 0 if nothing matches, otherwise returns the quirks field of
475 * the matching &struct tpacpi_quirk entry.
477 * The match criteria is: vendor, ec and bios much match.
479 static unsigned long __init
tpacpi_check_quirks(
480 const struct tpacpi_quirk
*qlist
,
481 unsigned int qlist_size
)
484 if ((qlist
->vendor
== thinkpad_id
.vendor
||
485 qlist
->vendor
== TPACPI_MATCH_ANY
) &&
486 (qlist
->bios
== thinkpad_id
.bios_model
||
487 qlist
->bios
== TPACPI_MATCH_ANY
) &&
488 (qlist
->ec
== thinkpad_id
.ec_model
||
489 qlist
->ec
== TPACPI_MATCH_ANY
))
490 return qlist
->quirks
;
498 static inline bool __pure __init
tpacpi_is_lenovo(void)
500 return thinkpad_id
.vendor
== PCI_VENDOR_ID_LENOVO
;
503 static inline bool __pure __init
tpacpi_is_ibm(void)
505 return thinkpad_id
.vendor
== PCI_VENDOR_ID_IBM
;
508 /****************************************************************************
509 ****************************************************************************
511 * ACPI Helpers and device model
513 ****************************************************************************
514 ****************************************************************************/
516 /*************************************************************************
520 static acpi_handle root_handle
;
521 static acpi_handle ec_handle
;
523 #define TPACPI_HANDLE(object, parent, paths...) \
524 static acpi_handle object##_handle; \
525 static const acpi_handle *object##_parent __initdata = \
527 static char *object##_paths[] __initdata = { paths }
529 TPACPI_HANDLE(ecrd
, ec
, "ECRD"); /* 570 */
530 TPACPI_HANDLE(ecwr
, ec
, "ECWR"); /* 570 */
532 TPACPI_HANDLE(cmos
, root
, "\\UCMS", /* R50, R50e, R50p, R51, */
534 "\\CMOS", /* A3x, G4x, R32, T23, T30, X22-24, X30 */
535 "\\CMS", /* R40, R40e */
538 TPACPI_HANDLE(hkey
, ec
, "\\_SB.HKEY", /* 600e/x, 770e, 770x */
539 "^HKEY", /* R30, R31 */
540 "HKEY", /* all others */
543 /*************************************************************************
547 static int acpi_evalf(acpi_handle handle
,
548 void *res
, char *method
, char *fmt
, ...)
551 struct acpi_object_list params
;
552 union acpi_object in_objs
[TPACPI_MAX_ACPI_ARGS
];
553 struct acpi_buffer result
, *resultp
;
554 union acpi_object out_obj
;
562 pr_err("acpi_evalf() called with empty format\n");
575 params
.pointer
= &in_objs
[0];
582 in_objs
[params
.count
].integer
.value
= va_arg(ap
, int);
583 in_objs
[params
.count
++].type
= ACPI_TYPE_INTEGER
;
585 /* add more types as needed */
587 pr_err("acpi_evalf() called "
588 "with invalid format character '%c'\n", c
);
595 if (res_type
!= 'v') {
596 result
.length
= sizeof(out_obj
);
597 result
.pointer
= &out_obj
;
602 status
= acpi_evaluate_object(handle
, method
, ¶ms
, resultp
);
606 success
= (status
== AE_OK
&&
607 out_obj
.type
== ACPI_TYPE_INTEGER
);
609 *(int *)res
= out_obj
.integer
.value
;
612 success
= status
== AE_OK
;
614 /* add more types as needed */
616 pr_err("acpi_evalf() called "
617 "with invalid format character '%c'\n", res_type
);
621 if (!success
&& !quiet
)
622 pr_err("acpi_evalf(%s, %s, ...) failed: %s\n",
623 method
, fmt0
, acpi_format_exception(status
));
628 static int acpi_ec_read(int i
, u8
*p
)
633 if (!acpi_evalf(ecrd_handle
, &v
, NULL
, "dd", i
))
637 if (ec_read(i
, p
) < 0)
644 static int acpi_ec_write(int i
, u8 v
)
647 if (!acpi_evalf(ecwr_handle
, NULL
, NULL
, "vdd", i
, v
))
650 if (ec_write(i
, v
) < 0)
657 static int issue_thinkpad_cmos_command(int cmos_cmd
)
662 if (!acpi_evalf(cmos_handle
, NULL
, NULL
, "vd", cmos_cmd
))
668 /*************************************************************************
672 #define TPACPI_ACPIHANDLE_INIT(object) \
673 drv_acpi_handle_init(#object, &object##_handle, *object##_parent, \
674 object##_paths, ARRAY_SIZE(object##_paths))
676 static void __init
drv_acpi_handle_init(const char *name
,
677 acpi_handle
*handle
, const acpi_handle parent
,
678 char **paths
, const int num_paths
)
683 vdbg_printk(TPACPI_DBG_INIT
, "trying to locate ACPI handle for %s\n",
686 for (i
= 0; i
< num_paths
; i
++) {
687 status
= acpi_get_handle(parent
, paths
[i
], handle
);
688 if (ACPI_SUCCESS(status
)) {
689 dbg_printk(TPACPI_DBG_INIT
,
690 "Found ACPI handle %s for %s\n",
696 vdbg_printk(TPACPI_DBG_INIT
, "ACPI handle for %s not found\n",
701 static acpi_status __init
tpacpi_acpi_handle_locate_callback(acpi_handle handle
,
702 u32 level
, void *context
, void **return_value
)
704 *(acpi_handle
*)return_value
= handle
;
706 return AE_CTRL_TERMINATE
;
709 static void __init
tpacpi_acpi_handle_locate(const char *name
,
714 acpi_handle device_found
;
716 BUG_ON(!name
|| !hid
|| !handle
);
717 vdbg_printk(TPACPI_DBG_INIT
,
718 "trying to locate ACPI handle for %s, using HID %s\n",
721 memset(&device_found
, 0, sizeof(device_found
));
722 status
= acpi_get_devices(hid
, tpacpi_acpi_handle_locate_callback
,
723 (void *)name
, &device_found
);
727 if (ACPI_SUCCESS(status
)) {
728 *handle
= device_found
;
729 dbg_printk(TPACPI_DBG_INIT
,
730 "Found ACPI handle for %s\n", name
);
732 vdbg_printk(TPACPI_DBG_INIT
,
733 "Could not locate an ACPI handle for %s: %s\n",
734 name
, acpi_format_exception(status
));
738 static void dispatch_acpi_notify(acpi_handle handle
, u32 event
, void *data
)
740 struct ibm_struct
*ibm
= data
;
742 if (tpacpi_lifecycle
!= TPACPI_LIFE_RUNNING
)
745 if (!ibm
|| !ibm
->acpi
|| !ibm
->acpi
->notify
)
748 ibm
->acpi
->notify(ibm
, event
);
751 static int __init
setup_acpi_notify(struct ibm_struct
*ibm
)
758 if (!*ibm
->acpi
->handle
)
761 vdbg_printk(TPACPI_DBG_INIT
,
762 "setting up ACPI notify for %s\n", ibm
->name
);
764 rc
= acpi_bus_get_device(*ibm
->acpi
->handle
, &ibm
->acpi
->device
);
766 pr_err("acpi_bus_get_device(%s) failed: %d\n", ibm
->name
, rc
);
770 ibm
->acpi
->device
->driver_data
= ibm
;
771 sprintf(acpi_device_class(ibm
->acpi
->device
), "%s/%s",
772 TPACPI_ACPI_EVENT_PREFIX
,
775 status
= acpi_install_notify_handler(*ibm
->acpi
->handle
,
776 ibm
->acpi
->type
, dispatch_acpi_notify
, ibm
);
777 if (ACPI_FAILURE(status
)) {
778 if (status
== AE_ALREADY_EXISTS
) {
779 pr_notice("another device driver is already "
780 "handling %s events\n", ibm
->name
);
782 pr_err("acpi_install_notify_handler(%s) failed: %s\n",
783 ibm
->name
, acpi_format_exception(status
));
787 ibm
->flags
.acpi_notify_installed
= 1;
791 static int __init
tpacpi_device_add(struct acpi_device
*device
)
796 static int __init
register_tpacpi_subdriver(struct ibm_struct
*ibm
)
800 dbg_printk(TPACPI_DBG_INIT
,
801 "registering %s as an ACPI driver\n", ibm
->name
);
805 ibm
->acpi
->driver
= kzalloc(sizeof(struct acpi_driver
), GFP_KERNEL
);
806 if (!ibm
->acpi
->driver
) {
807 pr_err("failed to allocate memory for ibm->acpi->driver\n");
811 sprintf(ibm
->acpi
->driver
->name
, "%s_%s", TPACPI_NAME
, ibm
->name
);
812 ibm
->acpi
->driver
->ids
= ibm
->acpi
->hid
;
814 ibm
->acpi
->driver
->ops
.add
= &tpacpi_device_add
;
816 rc
= acpi_bus_register_driver(ibm
->acpi
->driver
);
818 pr_err("acpi_bus_register_driver(%s) failed: %d\n",
820 kfree(ibm
->acpi
->driver
);
821 ibm
->acpi
->driver
= NULL
;
823 ibm
->flags
.acpi_driver_registered
= 1;
829 /****************************************************************************
830 ****************************************************************************
834 ****************************************************************************
835 ****************************************************************************/
837 static int dispatch_proc_show(struct seq_file
*m
, void *v
)
839 struct ibm_struct
*ibm
= m
->private;
841 if (!ibm
|| !ibm
->read
)
846 static int dispatch_proc_open(struct inode
*inode
, struct file
*file
)
848 return single_open(file
, dispatch_proc_show
, PDE(inode
)->data
);
851 static ssize_t
dispatch_proc_write(struct file
*file
,
852 const char __user
*userbuf
,
853 size_t count
, loff_t
*pos
)
855 struct ibm_struct
*ibm
= PDE(file
->f_path
.dentry
->d_inode
)->data
;
859 if (!ibm
|| !ibm
->write
)
861 if (count
> PAGE_SIZE
- 2)
864 kernbuf
= kmalloc(count
+ 2, GFP_KERNEL
);
868 if (copy_from_user(kernbuf
, userbuf
, count
)) {
874 strcat(kernbuf
, ",");
875 ret
= ibm
->write(kernbuf
);
884 static const struct file_operations dispatch_proc_fops
= {
885 .owner
= THIS_MODULE
,
886 .open
= dispatch_proc_open
,
889 .release
= single_release
,
890 .write
= dispatch_proc_write
,
893 static char *next_cmd(char **cmds
)
898 while ((end
= strchr(start
, ',')) && end
== start
)
910 /****************************************************************************
911 ****************************************************************************
913 * Device model: input, hwmon and platform
915 ****************************************************************************
916 ****************************************************************************/
918 static struct platform_device
*tpacpi_pdev
;
919 static struct platform_device
*tpacpi_sensors_pdev
;
920 static struct device
*tpacpi_hwmon
;
921 static struct input_dev
*tpacpi_inputdev
;
922 static struct mutex tpacpi_inputdev_send_mutex
;
923 static LIST_HEAD(tpacpi_all_drivers
);
925 static int tpacpi_suspend_handler(struct platform_device
*pdev
,
928 struct ibm_struct
*ibm
, *itmp
;
930 list_for_each_entry_safe(ibm
, itmp
,
934 (ibm
->suspend
)(state
);
940 static int tpacpi_resume_handler(struct platform_device
*pdev
)
942 struct ibm_struct
*ibm
, *itmp
;
944 list_for_each_entry_safe(ibm
, itmp
,
954 static void tpacpi_shutdown_handler(struct platform_device
*pdev
)
956 struct ibm_struct
*ibm
, *itmp
;
958 list_for_each_entry_safe(ibm
, itmp
,
966 static struct platform_driver tpacpi_pdriver
= {
968 .name
= TPACPI_DRVR_NAME
,
969 .owner
= THIS_MODULE
,
971 .suspend
= tpacpi_suspend_handler
,
972 .resume
= tpacpi_resume_handler
,
973 .shutdown
= tpacpi_shutdown_handler
,
976 static struct platform_driver tpacpi_hwmon_pdriver
= {
978 .name
= TPACPI_HWMON_DRVR_NAME
,
979 .owner
= THIS_MODULE
,
983 /*************************************************************************
984 * sysfs support helpers
987 struct attribute_set
{
988 unsigned int members
, max_members
;
989 struct attribute_group group
;
992 struct attribute_set_obj
{
993 struct attribute_set s
;
995 } __attribute__((packed
));
997 static struct attribute_set
*create_attr_set(unsigned int max_members
,
1000 struct attribute_set_obj
*sobj
;
1002 if (max_members
== 0)
1005 /* Allocates space for implicit NULL at the end too */
1006 sobj
= kzalloc(sizeof(struct attribute_set_obj
) +
1007 max_members
* sizeof(struct attribute
*),
1011 sobj
->s
.max_members
= max_members
;
1012 sobj
->s
.group
.attrs
= &sobj
->a
;
1013 sobj
->s
.group
.name
= name
;
1018 #define destroy_attr_set(_set) \
1021 /* not multi-threaded safe, use it in a single thread per set */
1022 static int add_to_attr_set(struct attribute_set
*s
, struct attribute
*attr
)
1027 if (s
->members
>= s
->max_members
)
1030 s
->group
.attrs
[s
->members
] = attr
;
1036 static int add_many_to_attr_set(struct attribute_set
*s
,
1037 struct attribute
**attr
,
1042 for (i
= 0; i
< count
; i
++) {
1043 res
= add_to_attr_set(s
, attr
[i
]);
1051 static void delete_attr_set(struct attribute_set
*s
, struct kobject
*kobj
)
1053 sysfs_remove_group(kobj
, &s
->group
);
1054 destroy_attr_set(s
);
1057 #define register_attr_set_with_sysfs(_attr_set, _kobj) \
1058 sysfs_create_group(_kobj, &_attr_set->group)
1060 static int parse_strtoul(const char *buf
,
1061 unsigned long max
, unsigned long *value
)
1065 *value
= simple_strtoul(skip_spaces(buf
), &endp
, 0);
1066 endp
= skip_spaces(endp
);
1067 if (*endp
|| *value
> max
)
1073 static void tpacpi_disable_brightness_delay(void)
1075 if (acpi_evalf(hkey_handle
, NULL
, "PWMS", "qvd", 0))
1076 pr_notice("ACPI backlight control delay disabled\n");
1079 static void printk_deprecated_attribute(const char * const what
,
1080 const char * const details
)
1082 tpacpi_log_usertask("deprecated sysfs attribute");
1083 pr_warn("WARNING: sysfs attribute %s is deprecated and "
1084 "will be removed. %s\n",
1088 /*************************************************************************
1089 * rfkill and radio control support helpers
1093 * ThinkPad-ACPI firmware handling model:
1095 * WLSW (master wireless switch) is event-driven, and is common to all
1096 * firmware-controlled radios. It cannot be controlled, just monitored,
1097 * as expected. It overrides all radio state in firmware
1099 * The kernel, a masked-off hotkey, and WLSW can change the radio state
1100 * (TODO: verify how WLSW interacts with the returned radio state).
1102 * The only time there are shadow radio state changes, is when
1103 * masked-off hotkeys are used.
1107 * Internal driver API for radio state:
1109 * int: < 0 = error, otherwise enum tpacpi_rfkill_state
1110 * bool: true means radio blocked (off)
1112 enum tpacpi_rfkill_state
{
1113 TPACPI_RFK_RADIO_OFF
= 0,
1117 /* rfkill switches */
1118 enum tpacpi_rfk_id
{
1119 TPACPI_RFK_BLUETOOTH_SW_ID
= 0,
1120 TPACPI_RFK_WWAN_SW_ID
,
1121 TPACPI_RFK_UWB_SW_ID
,
1125 static const char *tpacpi_rfkill_names
[] = {
1126 [TPACPI_RFK_BLUETOOTH_SW_ID
] = "bluetooth",
1127 [TPACPI_RFK_WWAN_SW_ID
] = "wwan",
1128 [TPACPI_RFK_UWB_SW_ID
] = "uwb",
1129 [TPACPI_RFK_SW_MAX
] = NULL
1132 /* ThinkPad-ACPI rfkill subdriver */
1134 struct rfkill
*rfkill
;
1135 enum tpacpi_rfk_id id
;
1136 const struct tpacpi_rfk_ops
*ops
;
1139 struct tpacpi_rfk_ops
{
1140 /* firmware interface */
1141 int (*get_status
)(void);
1142 int (*set_status
)(const enum tpacpi_rfkill_state
);
1145 static struct tpacpi_rfk
*tpacpi_rfkill_switches
[TPACPI_RFK_SW_MAX
];
1147 /* Query FW and update rfkill sw state for a given rfkill switch */
1148 static int tpacpi_rfk_update_swstate(const struct tpacpi_rfk
*tp_rfk
)
1155 status
= (tp_rfk
->ops
->get_status
)();
1159 rfkill_set_sw_state(tp_rfk
->rfkill
,
1160 (status
== TPACPI_RFK_RADIO_OFF
));
1165 /* Query FW and update rfkill sw state for all rfkill switches */
1166 static void tpacpi_rfk_update_swstate_all(void)
1170 for (i
= 0; i
< TPACPI_RFK_SW_MAX
; i
++)
1171 tpacpi_rfk_update_swstate(tpacpi_rfkill_switches
[i
]);
1175 * Sync the HW-blocking state of all rfkill switches,
1176 * do notice it causes the rfkill core to schedule uevents
1178 static void tpacpi_rfk_update_hwblock_state(bool blocked
)
1181 struct tpacpi_rfk
*tp_rfk
;
1183 for (i
= 0; i
< TPACPI_RFK_SW_MAX
; i
++) {
1184 tp_rfk
= tpacpi_rfkill_switches
[i
];
1186 if (rfkill_set_hw_state(tp_rfk
->rfkill
,
1188 /* ignore -- we track sw block */
1194 /* Call to get the WLSW state from the firmware */
1195 static int hotkey_get_wlsw(void);
1197 /* Call to query WLSW state and update all rfkill switches */
1198 static bool tpacpi_rfk_check_hwblock_state(void)
1200 int res
= hotkey_get_wlsw();
1203 /* When unknown or unsupported, we have to assume it is unblocked */
1207 hw_blocked
= (res
== TPACPI_RFK_RADIO_OFF
);
1208 tpacpi_rfk_update_hwblock_state(hw_blocked
);
1213 static int tpacpi_rfk_hook_set_block(void *data
, bool blocked
)
1215 struct tpacpi_rfk
*tp_rfk
= data
;
1218 dbg_printk(TPACPI_DBG_RFKILL
,
1219 "request to change radio state to %s\n",
1220 blocked
? "blocked" : "unblocked");
1222 /* try to set radio state */
1223 res
= (tp_rfk
->ops
->set_status
)(blocked
?
1224 TPACPI_RFK_RADIO_OFF
: TPACPI_RFK_RADIO_ON
);
1226 /* and update the rfkill core with whatever the FW really did */
1227 tpacpi_rfk_update_swstate(tp_rfk
);
1229 return (res
< 0) ? res
: 0;
1232 static const struct rfkill_ops tpacpi_rfk_rfkill_ops
= {
1233 .set_block
= tpacpi_rfk_hook_set_block
,
1236 static int __init
tpacpi_new_rfkill(const enum tpacpi_rfk_id id
,
1237 const struct tpacpi_rfk_ops
*tp_rfkops
,
1238 const enum rfkill_type rfktype
,
1240 const bool set_default
)
1242 struct tpacpi_rfk
*atp_rfk
;
1244 bool sw_state
= false;
1248 BUG_ON(id
>= TPACPI_RFK_SW_MAX
|| tpacpi_rfkill_switches
[id
]);
1250 atp_rfk
= kzalloc(sizeof(struct tpacpi_rfk
), GFP_KERNEL
);
1252 atp_rfk
->rfkill
= rfkill_alloc(name
,
1255 &tpacpi_rfk_rfkill_ops
,
1257 if (!atp_rfk
|| !atp_rfk
->rfkill
) {
1258 pr_err("failed to allocate memory for rfkill class\n");
1264 atp_rfk
->ops
= tp_rfkops
;
1266 sw_status
= (tp_rfkops
->get_status
)();
1267 if (sw_status
< 0) {
1268 pr_err("failed to read initial state for %s, error %d\n",
1271 sw_state
= (sw_status
== TPACPI_RFK_RADIO_OFF
);
1273 /* try to keep the initial state, since we ask the
1274 * firmware to preserve it across S5 in NVRAM */
1275 rfkill_init_sw_state(atp_rfk
->rfkill
, sw_state
);
1278 hw_state
= tpacpi_rfk_check_hwblock_state();
1279 rfkill_set_hw_state(atp_rfk
->rfkill
, hw_state
);
1281 res
= rfkill_register(atp_rfk
->rfkill
);
1283 pr_err("failed to register %s rfkill switch: %d\n", name
, res
);
1284 rfkill_destroy(atp_rfk
->rfkill
);
1289 tpacpi_rfkill_switches
[id
] = atp_rfk
;
1291 pr_info("rfkill switch %s: radio is %sblocked\n",
1292 name
, (sw_state
|| hw_state
) ? "" : "un");
1296 static void tpacpi_destroy_rfkill(const enum tpacpi_rfk_id id
)
1298 struct tpacpi_rfk
*tp_rfk
;
1300 BUG_ON(id
>= TPACPI_RFK_SW_MAX
);
1302 tp_rfk
= tpacpi_rfkill_switches
[id
];
1304 rfkill_unregister(tp_rfk
->rfkill
);
1305 rfkill_destroy(tp_rfk
->rfkill
);
1306 tpacpi_rfkill_switches
[id
] = NULL
;
1311 static void printk_deprecated_rfkill_attribute(const char * const what
)
1313 printk_deprecated_attribute(what
,
1314 "Please switch to generic rfkill before year 2010");
1317 /* sysfs <radio> enable ------------------------------------------------ */
1318 static ssize_t
tpacpi_rfk_sysfs_enable_show(const enum tpacpi_rfk_id id
,
1319 struct device_attribute
*attr
,
1324 printk_deprecated_rfkill_attribute(attr
->attr
.name
);
1326 /* This is in the ABI... */
1327 if (tpacpi_rfk_check_hwblock_state()) {
1328 status
= TPACPI_RFK_RADIO_OFF
;
1330 status
= tpacpi_rfk_update_swstate(tpacpi_rfkill_switches
[id
]);
1335 return snprintf(buf
, PAGE_SIZE
, "%d\n",
1336 (status
== TPACPI_RFK_RADIO_ON
) ? 1 : 0);
1339 static ssize_t
tpacpi_rfk_sysfs_enable_store(const enum tpacpi_rfk_id id
,
1340 struct device_attribute
*attr
,
1341 const char *buf
, size_t count
)
1346 printk_deprecated_rfkill_attribute(attr
->attr
.name
);
1348 if (parse_strtoul(buf
, 1, &t
))
1351 tpacpi_disclose_usertask(attr
->attr
.name
, "set to %ld\n", t
);
1353 /* This is in the ABI... */
1354 if (tpacpi_rfk_check_hwblock_state() && !!t
)
1357 res
= tpacpi_rfkill_switches
[id
]->ops
->set_status((!!t
) ?
1358 TPACPI_RFK_RADIO_ON
: TPACPI_RFK_RADIO_OFF
);
1359 tpacpi_rfk_update_swstate(tpacpi_rfkill_switches
[id
]);
1361 return (res
< 0) ? res
: count
;
1364 /* procfs -------------------------------------------------------------- */
1365 static int tpacpi_rfk_procfs_read(const enum tpacpi_rfk_id id
, struct seq_file
*m
)
1367 if (id
>= TPACPI_RFK_SW_MAX
)
1368 seq_printf(m
, "status:\t\tnot supported\n");
1372 /* This is in the ABI... */
1373 if (tpacpi_rfk_check_hwblock_state()) {
1374 status
= TPACPI_RFK_RADIO_OFF
;
1376 status
= tpacpi_rfk_update_swstate(
1377 tpacpi_rfkill_switches
[id
]);
1382 seq_printf(m
, "status:\t\t%s\n",
1383 (status
== TPACPI_RFK_RADIO_ON
) ?
1384 "enabled" : "disabled");
1385 seq_printf(m
, "commands:\tenable, disable\n");
1391 static int tpacpi_rfk_procfs_write(const enum tpacpi_rfk_id id
, char *buf
)
1397 if (id
>= TPACPI_RFK_SW_MAX
)
1400 while ((cmd
= next_cmd(&buf
))) {
1401 if (strlencmp(cmd
, "enable") == 0)
1402 status
= TPACPI_RFK_RADIO_ON
;
1403 else if (strlencmp(cmd
, "disable") == 0)
1404 status
= TPACPI_RFK_RADIO_OFF
;
1410 tpacpi_disclose_usertask("procfs", "attempt to %s %s\n",
1411 (status
== TPACPI_RFK_RADIO_ON
) ?
1412 "enable" : "disable",
1413 tpacpi_rfkill_names
[id
]);
1414 res
= (tpacpi_rfkill_switches
[id
]->ops
->set_status
)(status
);
1415 tpacpi_rfk_update_swstate(tpacpi_rfkill_switches
[id
]);
1421 /*************************************************************************
1422 * thinkpad-acpi driver attributes
1425 /* interface_version --------------------------------------------------- */
1426 static ssize_t
tpacpi_driver_interface_version_show(
1427 struct device_driver
*drv
,
1430 return snprintf(buf
, PAGE_SIZE
, "0x%08x\n", TPACPI_SYSFS_VERSION
);
1433 static DRIVER_ATTR(interface_version
, S_IRUGO
,
1434 tpacpi_driver_interface_version_show
, NULL
);
1436 /* debug_level --------------------------------------------------------- */
1437 static ssize_t
tpacpi_driver_debug_show(struct device_driver
*drv
,
1440 return snprintf(buf
, PAGE_SIZE
, "0x%04x\n", dbg_level
);
1443 static ssize_t
tpacpi_driver_debug_store(struct device_driver
*drv
,
1444 const char *buf
, size_t count
)
1448 if (parse_strtoul(buf
, 0xffff, &t
))
1456 static DRIVER_ATTR(debug_level
, S_IWUSR
| S_IRUGO
,
1457 tpacpi_driver_debug_show
, tpacpi_driver_debug_store
);
1459 /* version ------------------------------------------------------------- */
1460 static ssize_t
tpacpi_driver_version_show(struct device_driver
*drv
,
1463 return snprintf(buf
, PAGE_SIZE
, "%s v%s\n",
1464 TPACPI_DESC
, TPACPI_VERSION
);
1467 static DRIVER_ATTR(version
, S_IRUGO
,
1468 tpacpi_driver_version_show
, NULL
);
1470 /* --------------------------------------------------------------------- */
1472 #ifdef CONFIG_THINKPAD_ACPI_DEBUGFACILITIES
1474 /* wlsw_emulstate ------------------------------------------------------ */
1475 static ssize_t
tpacpi_driver_wlsw_emulstate_show(struct device_driver
*drv
,
1478 return snprintf(buf
, PAGE_SIZE
, "%d\n", !!tpacpi_wlsw_emulstate
);
1481 static ssize_t
tpacpi_driver_wlsw_emulstate_store(struct device_driver
*drv
,
1482 const char *buf
, size_t count
)
1486 if (parse_strtoul(buf
, 1, &t
))
1489 if (tpacpi_wlsw_emulstate
!= !!t
) {
1490 tpacpi_wlsw_emulstate
= !!t
;
1491 tpacpi_rfk_update_hwblock_state(!t
); /* negative logic */
1497 static DRIVER_ATTR(wlsw_emulstate
, S_IWUSR
| S_IRUGO
,
1498 tpacpi_driver_wlsw_emulstate_show
,
1499 tpacpi_driver_wlsw_emulstate_store
);
1501 /* bluetooth_emulstate ------------------------------------------------- */
1502 static ssize_t
tpacpi_driver_bluetooth_emulstate_show(
1503 struct device_driver
*drv
,
1506 return snprintf(buf
, PAGE_SIZE
, "%d\n", !!tpacpi_bluetooth_emulstate
);
1509 static ssize_t
tpacpi_driver_bluetooth_emulstate_store(
1510 struct device_driver
*drv
,
1511 const char *buf
, size_t count
)
1515 if (parse_strtoul(buf
, 1, &t
))
1518 tpacpi_bluetooth_emulstate
= !!t
;
1523 static DRIVER_ATTR(bluetooth_emulstate
, S_IWUSR
| S_IRUGO
,
1524 tpacpi_driver_bluetooth_emulstate_show
,
1525 tpacpi_driver_bluetooth_emulstate_store
);
1527 /* wwan_emulstate ------------------------------------------------- */
1528 static ssize_t
tpacpi_driver_wwan_emulstate_show(
1529 struct device_driver
*drv
,
1532 return snprintf(buf
, PAGE_SIZE
, "%d\n", !!tpacpi_wwan_emulstate
);
1535 static ssize_t
tpacpi_driver_wwan_emulstate_store(
1536 struct device_driver
*drv
,
1537 const char *buf
, size_t count
)
1541 if (parse_strtoul(buf
, 1, &t
))
1544 tpacpi_wwan_emulstate
= !!t
;
1549 static DRIVER_ATTR(wwan_emulstate
, S_IWUSR
| S_IRUGO
,
1550 tpacpi_driver_wwan_emulstate_show
,
1551 tpacpi_driver_wwan_emulstate_store
);
1553 /* uwb_emulstate ------------------------------------------------- */
1554 static ssize_t
tpacpi_driver_uwb_emulstate_show(
1555 struct device_driver
*drv
,
1558 return snprintf(buf
, PAGE_SIZE
, "%d\n", !!tpacpi_uwb_emulstate
);
1561 static ssize_t
tpacpi_driver_uwb_emulstate_store(
1562 struct device_driver
*drv
,
1563 const char *buf
, size_t count
)
1567 if (parse_strtoul(buf
, 1, &t
))
1570 tpacpi_uwb_emulstate
= !!t
;
1575 static DRIVER_ATTR(uwb_emulstate
, S_IWUSR
| S_IRUGO
,
1576 tpacpi_driver_uwb_emulstate_show
,
1577 tpacpi_driver_uwb_emulstate_store
);
1580 /* --------------------------------------------------------------------- */
1582 static struct driver_attribute
*tpacpi_driver_attributes
[] = {
1583 &driver_attr_debug_level
, &driver_attr_version
,
1584 &driver_attr_interface_version
,
1587 static int __init
tpacpi_create_driver_attributes(struct device_driver
*drv
)
1593 while (!res
&& i
< ARRAY_SIZE(tpacpi_driver_attributes
)) {
1594 res
= driver_create_file(drv
, tpacpi_driver_attributes
[i
]);
1598 #ifdef CONFIG_THINKPAD_ACPI_DEBUGFACILITIES
1599 if (!res
&& dbg_wlswemul
)
1600 res
= driver_create_file(drv
, &driver_attr_wlsw_emulstate
);
1601 if (!res
&& dbg_bluetoothemul
)
1602 res
= driver_create_file(drv
, &driver_attr_bluetooth_emulstate
);
1603 if (!res
&& dbg_wwanemul
)
1604 res
= driver_create_file(drv
, &driver_attr_wwan_emulstate
);
1605 if (!res
&& dbg_uwbemul
)
1606 res
= driver_create_file(drv
, &driver_attr_uwb_emulstate
);
1612 static void tpacpi_remove_driver_attributes(struct device_driver
*drv
)
1616 for (i
= 0; i
< ARRAY_SIZE(tpacpi_driver_attributes
); i
++)
1617 driver_remove_file(drv
, tpacpi_driver_attributes
[i
]);
1619 #ifdef THINKPAD_ACPI_DEBUGFACILITIES
1620 driver_remove_file(drv
, &driver_attr_wlsw_emulstate
);
1621 driver_remove_file(drv
, &driver_attr_bluetooth_emulstate
);
1622 driver_remove_file(drv
, &driver_attr_wwan_emulstate
);
1623 driver_remove_file(drv
, &driver_attr_uwb_emulstate
);
1627 /*************************************************************************
1632 * Table of recommended minimum BIOS versions
1634 * Reasons for listing:
1635 * 1. Stable BIOS, listed because the unknown amount of
1636 * bugs and bad ACPI behaviour on older versions
1638 * 2. BIOS or EC fw with known bugs that trigger on Linux
1640 * 3. BIOS with known reduced functionality in older versions
1642 * We recommend the latest BIOS and EC version.
1643 * We only support the latest BIOS and EC fw version as a rule.
1645 * Sources: IBM ThinkPad Public Web Documents (update changelogs),
1646 * Information from users in ThinkWiki
1648 * WARNING: we use this table also to detect that the machine is
1649 * a ThinkPad in some cases, so don't remove entries lightly.
1652 #define TPV_Q(__v, __id1, __id2, __bv1, __bv2) \
1653 { .vendor = (__v), \
1654 .bios = TPID(__id1, __id2), \
1655 .ec = TPACPI_MATCH_ANY, \
1656 .quirks = TPACPI_MATCH_ANY << 16 \
1657 | (__bv1) << 8 | (__bv2) }
1659 #define TPV_Q_X(__v, __bid1, __bid2, __bv1, __bv2, \
1660 __eid, __ev1, __ev2) \
1661 { .vendor = (__v), \
1662 .bios = TPID(__bid1, __bid2), \
1664 .quirks = (__ev1) << 24 | (__ev2) << 16 \
1665 | (__bv1) << 8 | (__bv2) }
1667 #define TPV_QI0(__id1, __id2, __bv1, __bv2) \
1668 TPV_Q(PCI_VENDOR_ID_IBM, __id1, __id2, __bv1, __bv2)
1670 /* Outdated IBM BIOSes often lack the EC id string */
1671 #define TPV_QI1(__id1, __id2, __bv1, __bv2, __ev1, __ev2) \
1672 TPV_Q_X(PCI_VENDOR_ID_IBM, __id1, __id2, \
1673 __bv1, __bv2, TPID(__id1, __id2), \
1675 TPV_Q_X(PCI_VENDOR_ID_IBM, __id1, __id2, \
1676 __bv1, __bv2, TPACPI_MATCH_UNKNOWN, \
1679 /* Outdated IBM BIOSes often lack the EC id string */
1680 #define TPV_QI2(__bid1, __bid2, __bv1, __bv2, \
1681 __eid1, __eid2, __ev1, __ev2) \
1682 TPV_Q_X(PCI_VENDOR_ID_IBM, __bid1, __bid2, \
1683 __bv1, __bv2, TPID(__eid1, __eid2), \
1685 TPV_Q_X(PCI_VENDOR_ID_IBM, __bid1, __bid2, \
1686 __bv1, __bv2, TPACPI_MATCH_UNKNOWN, \
1689 #define TPV_QL0(__id1, __id2, __bv1, __bv2) \
1690 TPV_Q(PCI_VENDOR_ID_LENOVO, __id1, __id2, __bv1, __bv2)
1692 #define TPV_QL1(__id1, __id2, __bv1, __bv2, __ev1, __ev2) \
1693 TPV_Q_X(PCI_VENDOR_ID_LENOVO, __id1, __id2, \
1694 __bv1, __bv2, TPID(__id1, __id2), \
1697 #define TPV_QL2(__bid1, __bid2, __bv1, __bv2, \
1698 __eid1, __eid2, __ev1, __ev2) \
1699 TPV_Q_X(PCI_VENDOR_ID_LENOVO, __bid1, __bid2, \
1700 __bv1, __bv2, TPID(__eid1, __eid2), \
1703 static const struct tpacpi_quirk tpacpi_bios_version_qtable
[] __initconst
= {
1704 /* Numeric models ------------------ */
1705 /* FW MODEL BIOS VERS */
1706 TPV_QI0('I', 'M', '6', '5'), /* 570 */
1707 TPV_QI0('I', 'U', '2', '6'), /* 570E */
1708 TPV_QI0('I', 'B', '5', '4'), /* 600 */
1709 TPV_QI0('I', 'H', '4', '7'), /* 600E */
1710 TPV_QI0('I', 'N', '3', '6'), /* 600E */
1711 TPV_QI0('I', 'T', '5', '5'), /* 600X */
1712 TPV_QI0('I', 'D', '4', '8'), /* 770, 770E, 770ED */
1713 TPV_QI0('I', 'I', '4', '2'), /* 770X */
1714 TPV_QI0('I', 'O', '2', '3'), /* 770Z */
1716 /* A-series ------------------------- */
1717 /* FW MODEL BIOS VERS EC VERS */
1718 TPV_QI0('I', 'W', '5', '9'), /* A20m */
1719 TPV_QI0('I', 'V', '6', '9'), /* A20p */
1720 TPV_QI0('1', '0', '2', '6'), /* A21e, A22e */
1721 TPV_QI0('K', 'U', '3', '6'), /* A21e */
1722 TPV_QI0('K', 'X', '3', '6'), /* A21m, A22m */
1723 TPV_QI0('K', 'Y', '3', '8'), /* A21p, A22p */
1724 TPV_QI0('1', 'B', '1', '7'), /* A22e */
1725 TPV_QI0('1', '3', '2', '0'), /* A22m */
1726 TPV_QI0('1', 'E', '7', '3'), /* A30/p (0) */
1727 TPV_QI1('1', 'G', '4', '1', '1', '7'), /* A31/p (0) */
1728 TPV_QI1('1', 'N', '1', '6', '0', '7'), /* A31/p (0) */
1730 /* G-series ------------------------- */
1731 /* FW MODEL BIOS VERS */
1732 TPV_QI0('1', 'T', 'A', '6'), /* G40 */
1733 TPV_QI0('1', 'X', '5', '7'), /* G41 */
1735 /* R-series, T-series --------------- */
1736 /* FW MODEL BIOS VERS EC VERS */
1737 TPV_QI0('1', 'C', 'F', '0'), /* R30 */
1738 TPV_QI0('1', 'F', 'F', '1'), /* R31 */
1739 TPV_QI0('1', 'M', '9', '7'), /* R32 */
1740 TPV_QI0('1', 'O', '6', '1'), /* R40 */
1741 TPV_QI0('1', 'P', '6', '5'), /* R40 */
1742 TPV_QI0('1', 'S', '7', '0'), /* R40e */
1743 TPV_QI1('1', 'R', 'D', 'R', '7', '1'), /* R50/p, R51,
1744 T40/p, T41/p, T42/p (1) */
1745 TPV_QI1('1', 'V', '7', '1', '2', '8'), /* R50e, R51 (1) */
1746 TPV_QI1('7', '8', '7', '1', '0', '6'), /* R51e (1) */
1747 TPV_QI1('7', '6', '6', '9', '1', '6'), /* R52 (1) */
1748 TPV_QI1('7', '0', '6', '9', '2', '8'), /* R52, T43 (1) */
1750 TPV_QI0('I', 'Y', '6', '1'), /* T20 */
1751 TPV_QI0('K', 'Z', '3', '4'), /* T21 */
1752 TPV_QI0('1', '6', '3', '2'), /* T22 */
1753 TPV_QI1('1', 'A', '6', '4', '2', '3'), /* T23 (0) */
1754 TPV_QI1('1', 'I', '7', '1', '2', '0'), /* T30 (0) */
1755 TPV_QI1('1', 'Y', '6', '5', '2', '9'), /* T43/p (1) */
1757 TPV_QL1('7', '9', 'E', '3', '5', '0'), /* T60/p */
1758 TPV_QL1('7', 'C', 'D', '2', '2', '2'), /* R60, R60i */
1759 TPV_QL1('7', 'E', 'D', '0', '1', '5'), /* R60e, R60i */
1761 /* BIOS FW BIOS VERS EC FW EC VERS */
1762 TPV_QI2('1', 'W', '9', '0', '1', 'V', '2', '8'), /* R50e (1) */
1763 TPV_QL2('7', 'I', '3', '4', '7', '9', '5', '0'), /* T60/p wide */
1765 /* X-series ------------------------- */
1766 /* FW MODEL BIOS VERS EC VERS */
1767 TPV_QI0('I', 'Z', '9', 'D'), /* X20, X21 */
1768 TPV_QI0('1', 'D', '7', '0'), /* X22, X23, X24 */
1769 TPV_QI1('1', 'K', '4', '8', '1', '8'), /* X30 (0) */
1770 TPV_QI1('1', 'Q', '9', '7', '2', '3'), /* X31, X32 (0) */
1771 TPV_QI1('1', 'U', 'D', '3', 'B', '2'), /* X40 (0) */
1772 TPV_QI1('7', '4', '6', '4', '2', '7'), /* X41 (0) */
1773 TPV_QI1('7', '5', '6', '0', '2', '0'), /* X41t (0) */
1775 TPV_QL1('7', 'B', 'D', '7', '4', '0'), /* X60/s */
1776 TPV_QL1('7', 'J', '3', '0', '1', '3'), /* X60t */
1778 /* (0) - older versions lack DMI EC fw string and functionality */
1779 /* (1) - older versions known to lack functionality */
1790 static void __init
tpacpi_check_outdated_fw(void)
1792 unsigned long fwvers
;
1793 u16 ec_version
, bios_version
;
1795 fwvers
= tpacpi_check_quirks(tpacpi_bios_version_qtable
,
1796 ARRAY_SIZE(tpacpi_bios_version_qtable
));
1801 bios_version
= fwvers
& 0xffffU
;
1802 ec_version
= (fwvers
>> 16) & 0xffffU
;
1804 /* note that unknown versions are set to 0x0000 and we use that */
1805 if ((bios_version
> thinkpad_id
.bios_release
) ||
1806 (ec_version
> thinkpad_id
.ec_release
&&
1807 ec_version
!= TPACPI_MATCH_ANY
)) {
1809 * The changelogs would let us track down the exact
1810 * reason, but it is just too much of a pain to track
1811 * it. We only list BIOSes that are either really
1812 * broken, or really stable to begin with, so it is
1813 * best if the user upgrades the firmware anyway.
1815 pr_warn("WARNING: Outdated ThinkPad BIOS/EC firmware\n");
1816 pr_warn("WARNING: This firmware may be missing critical bug "
1817 "fixes and/or important features\n");
1821 static bool __init
tpacpi_is_fw_known(void)
1823 return tpacpi_check_quirks(tpacpi_bios_version_qtable
,
1824 ARRAY_SIZE(tpacpi_bios_version_qtable
)) != 0;
1827 /****************************************************************************
1828 ****************************************************************************
1832 ****************************************************************************
1833 ****************************************************************************/
1835 /*************************************************************************
1836 * thinkpad-acpi metadata subdriver
1839 static int thinkpad_acpi_driver_read(struct seq_file
*m
)
1841 seq_printf(m
, "driver:\t\t%s\n", TPACPI_DESC
);
1842 seq_printf(m
, "version:\t%s\n", TPACPI_VERSION
);
1846 static struct ibm_struct thinkpad_acpi_driver_data
= {
1848 .read
= thinkpad_acpi_driver_read
,
1851 /*************************************************************************
1856 * ThinkPad firmware event model
1858 * The ThinkPad firmware has two main event interfaces: normal ACPI
1859 * notifications (which follow the ACPI standard), and a private event
1862 * The private event interface also issues events for the hotkeys. As
1863 * the driver gained features, the event handling code ended up being
1864 * built around the hotkey subdriver. This will need to be refactored
1865 * to a more formal event API eventually.
1867 * Some "hotkeys" are actually supposed to be used as event reports,
1868 * such as "brightness has changed", "volume has changed", depending on
1869 * the ThinkPad model and how the firmware is operating.
1871 * Unlike other classes, hotkey-class events have mask/unmask control on
1872 * non-ancient firmware. However, how it behaves changes a lot with the
1873 * firmware model and version.
1876 enum { /* hot key scan codes (derived from ACPI DSDT) */
1877 TP_ACPI_HOTKEYSCAN_FNF1
= 0,
1878 TP_ACPI_HOTKEYSCAN_FNF2
,
1879 TP_ACPI_HOTKEYSCAN_FNF3
,
1880 TP_ACPI_HOTKEYSCAN_FNF4
,
1881 TP_ACPI_HOTKEYSCAN_FNF5
,
1882 TP_ACPI_HOTKEYSCAN_FNF6
,
1883 TP_ACPI_HOTKEYSCAN_FNF7
,
1884 TP_ACPI_HOTKEYSCAN_FNF8
,
1885 TP_ACPI_HOTKEYSCAN_FNF9
,
1886 TP_ACPI_HOTKEYSCAN_FNF10
,
1887 TP_ACPI_HOTKEYSCAN_FNF11
,
1888 TP_ACPI_HOTKEYSCAN_FNF12
,
1889 TP_ACPI_HOTKEYSCAN_FNBACKSPACE
,
1890 TP_ACPI_HOTKEYSCAN_FNINSERT
,
1891 TP_ACPI_HOTKEYSCAN_FNDELETE
,
1892 TP_ACPI_HOTKEYSCAN_FNHOME
,
1893 TP_ACPI_HOTKEYSCAN_FNEND
,
1894 TP_ACPI_HOTKEYSCAN_FNPAGEUP
,
1895 TP_ACPI_HOTKEYSCAN_FNPAGEDOWN
,
1896 TP_ACPI_HOTKEYSCAN_FNSPACE
,
1897 TP_ACPI_HOTKEYSCAN_VOLUMEUP
,
1898 TP_ACPI_HOTKEYSCAN_VOLUMEDOWN
,
1899 TP_ACPI_HOTKEYSCAN_MUTE
,
1900 TP_ACPI_HOTKEYSCAN_THINKPAD
,
1901 TP_ACPI_HOTKEYSCAN_UNK1
,
1902 TP_ACPI_HOTKEYSCAN_UNK2
,
1903 TP_ACPI_HOTKEYSCAN_UNK3
,
1904 TP_ACPI_HOTKEYSCAN_UNK4
,
1905 TP_ACPI_HOTKEYSCAN_UNK5
,
1906 TP_ACPI_HOTKEYSCAN_UNK6
,
1907 TP_ACPI_HOTKEYSCAN_UNK7
,
1908 TP_ACPI_HOTKEYSCAN_UNK8
,
1910 /* Hotkey keymap size */
1911 TPACPI_HOTKEY_MAP_LEN
1914 enum { /* Keys/events available through NVRAM polling */
1915 TPACPI_HKEY_NVRAM_KNOWN_MASK
= 0x00fb88c0U
,
1916 TPACPI_HKEY_NVRAM_GOOD_MASK
= 0x00fb8000U
,
1919 enum { /* Positions of some of the keys in hotkey masks */
1920 TP_ACPI_HKEY_DISPSWTCH_MASK
= 1 << TP_ACPI_HOTKEYSCAN_FNF7
,
1921 TP_ACPI_HKEY_DISPXPAND_MASK
= 1 << TP_ACPI_HOTKEYSCAN_FNF8
,
1922 TP_ACPI_HKEY_HIBERNATE_MASK
= 1 << TP_ACPI_HOTKEYSCAN_FNF12
,
1923 TP_ACPI_HKEY_BRGHTUP_MASK
= 1 << TP_ACPI_HOTKEYSCAN_FNHOME
,
1924 TP_ACPI_HKEY_BRGHTDWN_MASK
= 1 << TP_ACPI_HOTKEYSCAN_FNEND
,
1925 TP_ACPI_HKEY_THNKLGHT_MASK
= 1 << TP_ACPI_HOTKEYSCAN_FNPAGEUP
,
1926 TP_ACPI_HKEY_ZOOM_MASK
= 1 << TP_ACPI_HOTKEYSCAN_FNSPACE
,
1927 TP_ACPI_HKEY_VOLUP_MASK
= 1 << TP_ACPI_HOTKEYSCAN_VOLUMEUP
,
1928 TP_ACPI_HKEY_VOLDWN_MASK
= 1 << TP_ACPI_HOTKEYSCAN_VOLUMEDOWN
,
1929 TP_ACPI_HKEY_MUTE_MASK
= 1 << TP_ACPI_HOTKEYSCAN_MUTE
,
1930 TP_ACPI_HKEY_THINKPAD_MASK
= 1 << TP_ACPI_HOTKEYSCAN_THINKPAD
,
1933 enum { /* NVRAM to ACPI HKEY group map */
1934 TP_NVRAM_HKEY_GROUP_HK2
= TP_ACPI_HKEY_THINKPAD_MASK
|
1935 TP_ACPI_HKEY_ZOOM_MASK
|
1936 TP_ACPI_HKEY_DISPSWTCH_MASK
|
1937 TP_ACPI_HKEY_HIBERNATE_MASK
,
1938 TP_NVRAM_HKEY_GROUP_BRIGHTNESS
= TP_ACPI_HKEY_BRGHTUP_MASK
|
1939 TP_ACPI_HKEY_BRGHTDWN_MASK
,
1940 TP_NVRAM_HKEY_GROUP_VOLUME
= TP_ACPI_HKEY_VOLUP_MASK
|
1941 TP_ACPI_HKEY_VOLDWN_MASK
|
1942 TP_ACPI_HKEY_MUTE_MASK
,
1945 #ifdef CONFIG_THINKPAD_ACPI_HOTKEY_POLL
1946 struct tp_nvram_state
{
1947 u16 thinkpad_toggle
:1;
1949 u16 display_toggle
:1;
1950 u16 thinklight_toggle
:1;
1951 u16 hibernate_toggle
:1;
1952 u16 displayexp_toggle
:1;
1953 u16 display_state
:1;
1954 u16 brightness_toggle
:1;
1955 u16 volume_toggle
:1;
1958 u8 brightness_level
;
1962 /* kthread for the hotkey poller */
1963 static struct task_struct
*tpacpi_hotkey_task
;
1965 /* Acquired while the poller kthread is running, use to sync start/stop */
1966 static struct mutex hotkey_thread_mutex
;
1969 * Acquire mutex to write poller control variables as an
1972 * Increment hotkey_config_change when changing them if you
1973 * want the kthread to forget old state.
1975 * See HOTKEY_CONFIG_CRITICAL_START/HOTKEY_CONFIG_CRITICAL_END
1977 static struct mutex hotkey_thread_data_mutex
;
1978 static unsigned int hotkey_config_change
;
1981 * hotkey poller control variables
1983 * Must be atomic or readers will also need to acquire mutex
1985 * HOTKEY_CONFIG_CRITICAL_START/HOTKEY_CONFIG_CRITICAL_END
1986 * should be used only when the changes need to be taken as
1987 * a block, OR when one needs to force the kthread to forget
1990 static u32 hotkey_source_mask
; /* bit mask 0=ACPI,1=NVRAM */
1991 static unsigned int hotkey_poll_freq
= 10; /* Hz */
1993 #define HOTKEY_CONFIG_CRITICAL_START \
1995 mutex_lock(&hotkey_thread_data_mutex); \
1996 hotkey_config_change++; \
1998 #define HOTKEY_CONFIG_CRITICAL_END \
1999 mutex_unlock(&hotkey_thread_data_mutex);
2001 #else /* CONFIG_THINKPAD_ACPI_HOTKEY_POLL */
2003 #define hotkey_source_mask 0U
2004 #define HOTKEY_CONFIG_CRITICAL_START
2005 #define HOTKEY_CONFIG_CRITICAL_END
2007 #endif /* CONFIG_THINKPAD_ACPI_HOTKEY_POLL */
2009 static struct mutex hotkey_mutex
;
2011 static enum { /* Reasons for waking up */
2012 TP_ACPI_WAKEUP_NONE
= 0, /* None or unknown */
2013 TP_ACPI_WAKEUP_BAYEJ
, /* Bay ejection request */
2014 TP_ACPI_WAKEUP_UNDOCK
, /* Undock request */
2015 } hotkey_wakeup_reason
;
2017 static int hotkey_autosleep_ack
;
2019 static u32 hotkey_orig_mask
; /* events the BIOS had enabled */
2020 static u32 hotkey_all_mask
; /* all events supported in fw */
2021 static u32 hotkey_reserved_mask
; /* events better left disabled */
2022 static u32 hotkey_driver_mask
; /* events needed by the driver */
2023 static u32 hotkey_user_mask
; /* events visible to userspace */
2024 static u32 hotkey_acpi_mask
; /* events enabled in firmware */
2026 static unsigned int hotkey_report_mode
;
2028 static u16
*hotkey_keycode_map
;
2030 static struct attribute_set
*hotkey_dev_attributes
;
2032 static void tpacpi_driver_event(const unsigned int hkey_event
);
2033 static void hotkey_driver_event(const unsigned int scancode
);
2034 static void hotkey_poll_setup(const bool may_warn
);
2036 /* HKEY.MHKG() return bits */
2037 #define TP_HOTKEY_TABLET_MASK (1 << 3)
2039 static int hotkey_get_wlsw(void)
2043 if (!tp_features
.hotkey_wlsw
)
2046 #ifdef CONFIG_THINKPAD_ACPI_DEBUGFACILITIES
2048 return (tpacpi_wlsw_emulstate
) ?
2049 TPACPI_RFK_RADIO_ON
: TPACPI_RFK_RADIO_OFF
;
2052 if (!acpi_evalf(hkey_handle
, &status
, "WLSW", "d"))
2055 return (status
) ? TPACPI_RFK_RADIO_ON
: TPACPI_RFK_RADIO_OFF
;
2058 static int hotkey_get_tablet_mode(int *status
)
2062 if (!acpi_evalf(hkey_handle
, &s
, "MHKG", "d"))
2065 *status
= ((s
& TP_HOTKEY_TABLET_MASK
) != 0);
2070 * Reads current event mask from firmware, and updates
2071 * hotkey_acpi_mask accordingly. Also resets any bits
2072 * from hotkey_user_mask that are unavailable to be
2073 * delivered (shadow requirement of the userspace ABI).
2075 * Call with hotkey_mutex held
2077 static int hotkey_mask_get(void)
2079 if (tp_features
.hotkey_mask
) {
2082 if (!acpi_evalf(hkey_handle
, &m
, "DHKN", "d"))
2085 hotkey_acpi_mask
= m
;
2087 /* no mask support doesn't mean no event support... */
2088 hotkey_acpi_mask
= hotkey_all_mask
;
2091 /* sync userspace-visible mask */
2092 hotkey_user_mask
&= (hotkey_acpi_mask
| hotkey_source_mask
);
2097 void static hotkey_mask_warn_incomplete_mask(void)
2099 /* log only what the user can fix... */
2100 const u32 wantedmask
= hotkey_driver_mask
&
2101 ~(hotkey_acpi_mask
| hotkey_source_mask
) &
2102 (hotkey_all_mask
| TPACPI_HKEY_NVRAM_KNOWN_MASK
);
2105 pr_notice("required events 0x%08x not enabled!\n", wantedmask
);
2109 * Set the firmware mask when supported
2111 * Also calls hotkey_mask_get to update hotkey_acpi_mask.
2113 * NOTE: does not set bits in hotkey_user_mask, but may reset them.
2115 * Call with hotkey_mutex held
2117 static int hotkey_mask_set(u32 mask
)
2122 const u32 fwmask
= mask
& ~hotkey_source_mask
;
2124 if (tp_features
.hotkey_mask
) {
2125 for (i
= 0; i
< 32; i
++) {
2126 if (!acpi_evalf(hkey_handle
,
2127 NULL
, "MHKM", "vdd", i
+ 1,
2128 !!(mask
& (1 << i
)))) {
2136 * We *must* make an inconditional call to hotkey_mask_get to
2137 * refresh hotkey_acpi_mask and update hotkey_user_mask
2139 * Take the opportunity to also log when we cannot _enable_
2142 if (!hotkey_mask_get() && !rc
&& (fwmask
& ~hotkey_acpi_mask
)) {
2143 pr_notice("asked for hotkey mask 0x%08x, but "
2144 "firmware forced it to 0x%08x\n",
2145 fwmask
, hotkey_acpi_mask
);
2148 if (tpacpi_lifecycle
!= TPACPI_LIFE_EXITING
)
2149 hotkey_mask_warn_incomplete_mask();
2155 * Sets hotkey_user_mask and tries to set the firmware mask
2157 * Call with hotkey_mutex held
2159 static int hotkey_user_mask_set(const u32 mask
)
2163 /* Give people a chance to notice they are doing something that
2164 * is bound to go boom on their users sooner or later */
2165 if (!tp_warned
.hotkey_mask_ff
&&
2166 (mask
== 0xffff || mask
== 0xffffff ||
2167 mask
== 0xffffffff)) {
2168 tp_warned
.hotkey_mask_ff
= 1;
2169 pr_notice("setting the hotkey mask to 0x%08x is likely "
2170 "not the best way to go about it\n", mask
);
2171 pr_notice("please consider using the driver defaults, "
2172 "and refer to up-to-date thinkpad-acpi "
2176 /* Try to enable what the user asked for, plus whatever we need.
2177 * this syncs everything but won't enable bits in hotkey_user_mask */
2178 rc
= hotkey_mask_set((mask
| hotkey_driver_mask
) & ~hotkey_source_mask
);
2180 /* Enable the available bits in hotkey_user_mask */
2181 hotkey_user_mask
= mask
& (hotkey_acpi_mask
| hotkey_source_mask
);
2187 * Sets the driver hotkey mask.
2189 * Can be called even if the hotkey subdriver is inactive
2191 static int tpacpi_hotkey_driver_mask_set(const u32 mask
)
2195 /* Do the right thing if hotkey_init has not been called yet */
2196 if (!tp_features
.hotkey
) {
2197 hotkey_driver_mask
= mask
;
2201 mutex_lock(&hotkey_mutex
);
2203 HOTKEY_CONFIG_CRITICAL_START
2204 hotkey_driver_mask
= mask
;
2205 #ifdef CONFIG_THINKPAD_ACPI_HOTKEY_POLL
2206 hotkey_source_mask
|= (mask
& ~hotkey_all_mask
);
2208 HOTKEY_CONFIG_CRITICAL_END
2210 rc
= hotkey_mask_set((hotkey_acpi_mask
| hotkey_driver_mask
) &
2211 ~hotkey_source_mask
);
2212 hotkey_poll_setup(true);
2214 mutex_unlock(&hotkey_mutex
);
2219 static int hotkey_status_get(int *status
)
2221 if (!acpi_evalf(hkey_handle
, status
, "DHKC", "d"))
2227 static int hotkey_status_set(bool enable
)
2229 if (!acpi_evalf(hkey_handle
, NULL
, "MHKC", "vd", enable
? 1 : 0))
2235 static void tpacpi_input_send_tabletsw(void)
2239 if (tp_features
.hotkey_tablet
&&
2240 !hotkey_get_tablet_mode(&state
)) {
2241 mutex_lock(&tpacpi_inputdev_send_mutex
);
2243 input_report_switch(tpacpi_inputdev
,
2244 SW_TABLET_MODE
, !!state
);
2245 input_sync(tpacpi_inputdev
);
2247 mutex_unlock(&tpacpi_inputdev_send_mutex
);
2251 /* Do NOT call without validating scancode first */
2252 static void tpacpi_input_send_key(const unsigned int scancode
)
2254 const unsigned int keycode
= hotkey_keycode_map
[scancode
];
2256 if (keycode
!= KEY_RESERVED
) {
2257 mutex_lock(&tpacpi_inputdev_send_mutex
);
2259 input_event(tpacpi_inputdev
, EV_MSC
, MSC_SCAN
, scancode
);
2260 input_report_key(tpacpi_inputdev
, keycode
, 1);
2261 input_sync(tpacpi_inputdev
);
2263 input_event(tpacpi_inputdev
, EV_MSC
, MSC_SCAN
, scancode
);
2264 input_report_key(tpacpi_inputdev
, keycode
, 0);
2265 input_sync(tpacpi_inputdev
);
2267 mutex_unlock(&tpacpi_inputdev_send_mutex
);
2271 /* Do NOT call without validating scancode first */
2272 static void tpacpi_input_send_key_masked(const unsigned int scancode
)
2274 hotkey_driver_event(scancode
);
2275 if (hotkey_user_mask
& (1 << scancode
))
2276 tpacpi_input_send_key(scancode
);
2279 #ifdef CONFIG_THINKPAD_ACPI_HOTKEY_POLL
2280 static struct tp_acpi_drv_struct ibm_hotkey_acpidriver
;
2282 /* Do NOT call without validating scancode first */
2283 static void tpacpi_hotkey_send_key(unsigned int scancode
)
2285 tpacpi_input_send_key_masked(scancode
);
2286 if (hotkey_report_mode
< 2) {
2287 acpi_bus_generate_proc_event(ibm_hotkey_acpidriver
.device
,
2288 0x80, TP_HKEY_EV_HOTKEY_BASE
+ scancode
);
2292 static void hotkey_read_nvram(struct tp_nvram_state
*n
, const u32 m
)
2296 if (m
& TP_NVRAM_HKEY_GROUP_HK2
) {
2297 d
= nvram_read_byte(TP_NVRAM_ADDR_HK2
);
2298 n
->thinkpad_toggle
= !!(d
& TP_NVRAM_MASK_HKT_THINKPAD
);
2299 n
->zoom_toggle
= !!(d
& TP_NVRAM_MASK_HKT_ZOOM
);
2300 n
->display_toggle
= !!(d
& TP_NVRAM_MASK_HKT_DISPLAY
);
2301 n
->hibernate_toggle
= !!(d
& TP_NVRAM_MASK_HKT_HIBERNATE
);
2303 if (m
& TP_ACPI_HKEY_THNKLGHT_MASK
) {
2304 d
= nvram_read_byte(TP_NVRAM_ADDR_THINKLIGHT
);
2305 n
->thinklight_toggle
= !!(d
& TP_NVRAM_MASK_THINKLIGHT
);
2307 if (m
& TP_ACPI_HKEY_DISPXPAND_MASK
) {
2308 d
= nvram_read_byte(TP_NVRAM_ADDR_VIDEO
);
2309 n
->displayexp_toggle
=
2310 !!(d
& TP_NVRAM_MASK_HKT_DISPEXPND
);
2312 if (m
& TP_NVRAM_HKEY_GROUP_BRIGHTNESS
) {
2313 d
= nvram_read_byte(TP_NVRAM_ADDR_BRIGHTNESS
);
2314 n
->brightness_level
= (d
& TP_NVRAM_MASK_LEVEL_BRIGHTNESS
)
2315 >> TP_NVRAM_POS_LEVEL_BRIGHTNESS
;
2316 n
->brightness_toggle
=
2317 !!(d
& TP_NVRAM_MASK_HKT_BRIGHTNESS
);
2319 if (m
& TP_NVRAM_HKEY_GROUP_VOLUME
) {
2320 d
= nvram_read_byte(TP_NVRAM_ADDR_MIXER
);
2321 n
->volume_level
= (d
& TP_NVRAM_MASK_LEVEL_VOLUME
)
2322 >> TP_NVRAM_POS_LEVEL_VOLUME
;
2323 n
->mute
= !!(d
& TP_NVRAM_MASK_MUTE
);
2324 n
->volume_toggle
= !!(d
& TP_NVRAM_MASK_HKT_VOLUME
);
2328 static void hotkey_compare_and_issue_event(struct tp_nvram_state
*oldn
,
2329 struct tp_nvram_state
*newn
,
2330 const u32 event_mask
)
2333 #define TPACPI_COMPARE_KEY(__scancode, __member) \
2335 if ((event_mask & (1 << __scancode)) && \
2336 oldn->__member != newn->__member) \
2337 tpacpi_hotkey_send_key(__scancode); \
2340 #define TPACPI_MAY_SEND_KEY(__scancode) \
2342 if (event_mask & (1 << __scancode)) \
2343 tpacpi_hotkey_send_key(__scancode); \
2346 void issue_volchange(const unsigned int oldvol
,
2347 const unsigned int newvol
)
2349 unsigned int i
= oldvol
;
2351 while (i
> newvol
) {
2352 TPACPI_MAY_SEND_KEY(TP_ACPI_HOTKEYSCAN_VOLUMEDOWN
);
2355 while (i
< newvol
) {
2356 TPACPI_MAY_SEND_KEY(TP_ACPI_HOTKEYSCAN_VOLUMEUP
);
2361 void issue_brightnesschange(const unsigned int oldbrt
,
2362 const unsigned int newbrt
)
2364 unsigned int i
= oldbrt
;
2366 while (i
> newbrt
) {
2367 TPACPI_MAY_SEND_KEY(TP_ACPI_HOTKEYSCAN_FNEND
);
2370 while (i
< newbrt
) {
2371 TPACPI_MAY_SEND_KEY(TP_ACPI_HOTKEYSCAN_FNHOME
);
2376 TPACPI_COMPARE_KEY(TP_ACPI_HOTKEYSCAN_THINKPAD
, thinkpad_toggle
);
2377 TPACPI_COMPARE_KEY(TP_ACPI_HOTKEYSCAN_FNSPACE
, zoom_toggle
);
2378 TPACPI_COMPARE_KEY(TP_ACPI_HOTKEYSCAN_FNF7
, display_toggle
);
2379 TPACPI_COMPARE_KEY(TP_ACPI_HOTKEYSCAN_FNF12
, hibernate_toggle
);
2381 TPACPI_COMPARE_KEY(TP_ACPI_HOTKEYSCAN_FNPAGEUP
, thinklight_toggle
);
2383 TPACPI_COMPARE_KEY(TP_ACPI_HOTKEYSCAN_FNF8
, displayexp_toggle
);
2388 * This code is supposed to duplicate the IBM firmware behaviour:
2389 * - Pressing MUTE issues mute hotkey message, even when already mute
2390 * - Pressing Volume up/down issues volume up/down hotkey messages,
2391 * even when already at maximum or minimum volume
2392 * - The act of unmuting issues volume up/down notification,
2393 * depending which key was used to unmute
2395 * We are constrained to what the NVRAM can tell us, which is not much
2396 * and certainly not enough if more than one volume hotkey was pressed
2397 * since the last poll cycle.
2399 * Just to make our life interesting, some newer Lenovo ThinkPads have
2400 * bugs in the BIOS and may fail to update volume_toggle properly.
2405 oldn
->volume_toggle
!= newn
->volume_toggle
||
2406 oldn
->volume_level
!= newn
->volume_level
) {
2407 /* recently muted, or repeated mute keypress, or
2408 * multiple presses ending in mute */
2409 issue_volchange(oldn
->volume_level
, newn
->volume_level
);
2410 TPACPI_MAY_SEND_KEY(TP_ACPI_HOTKEYSCAN_MUTE
);
2415 /* recently unmuted, issue 'unmute' keypress */
2416 TPACPI_MAY_SEND_KEY(TP_ACPI_HOTKEYSCAN_VOLUMEUP
);
2418 if (oldn
->volume_level
!= newn
->volume_level
) {
2419 issue_volchange(oldn
->volume_level
, newn
->volume_level
);
2420 } else if (oldn
->volume_toggle
!= newn
->volume_toggle
) {
2421 /* repeated vol up/down keypress at end of scale ? */
2422 if (newn
->volume_level
== 0)
2423 TPACPI_MAY_SEND_KEY(TP_ACPI_HOTKEYSCAN_VOLUMEDOWN
);
2424 else if (newn
->volume_level
>= TP_NVRAM_LEVEL_VOLUME_MAX
)
2425 TPACPI_MAY_SEND_KEY(TP_ACPI_HOTKEYSCAN_VOLUMEUP
);
2429 /* handle brightness */
2430 if (oldn
->brightness_level
!= newn
->brightness_level
) {
2431 issue_brightnesschange(oldn
->brightness_level
,
2432 newn
->brightness_level
);
2433 } else if (oldn
->brightness_toggle
!= newn
->brightness_toggle
) {
2434 /* repeated key presses that didn't change state */
2435 if (newn
->brightness_level
== 0)
2436 TPACPI_MAY_SEND_KEY(TP_ACPI_HOTKEYSCAN_FNEND
);
2437 else if (newn
->brightness_level
>= bright_maxlvl
2438 && !tp_features
.bright_unkfw
)
2439 TPACPI_MAY_SEND_KEY(TP_ACPI_HOTKEYSCAN_FNHOME
);
2442 #undef TPACPI_COMPARE_KEY
2443 #undef TPACPI_MAY_SEND_KEY
2449 * We track all events in hotkey_source_mask all the time, since
2450 * most of them are edge-based. We only issue those requested by
2451 * hotkey_user_mask or hotkey_driver_mask, though.
2453 static int hotkey_kthread(void *data
)
2455 struct tp_nvram_state s
[2];
2456 u32 poll_mask
, event_mask
;
2457 unsigned int si
, so
;
2459 unsigned int change_detector
, must_reset
;
2460 unsigned int poll_freq
;
2462 mutex_lock(&hotkey_thread_mutex
);
2464 if (tpacpi_lifecycle
== TPACPI_LIFE_EXITING
)
2473 /* Initial state for compares */
2474 mutex_lock(&hotkey_thread_data_mutex
);
2475 change_detector
= hotkey_config_change
;
2476 poll_mask
= hotkey_source_mask
;
2477 event_mask
= hotkey_source_mask
&
2478 (hotkey_driver_mask
| hotkey_user_mask
);
2479 poll_freq
= hotkey_poll_freq
;
2480 mutex_unlock(&hotkey_thread_data_mutex
);
2481 hotkey_read_nvram(&s
[so
], poll_mask
);
2483 while (!kthread_should_stop()) {
2485 if (likely(poll_freq
))
2488 t
= 100; /* should never happen... */
2490 t
= msleep_interruptible(t
);
2491 if (unlikely(kthread_should_stop()))
2493 must_reset
= try_to_freeze();
2494 if (t
> 0 && !must_reset
)
2497 mutex_lock(&hotkey_thread_data_mutex
);
2498 if (must_reset
|| hotkey_config_change
!= change_detector
) {
2499 /* forget old state on thaw or config change */
2502 change_detector
= hotkey_config_change
;
2504 poll_mask
= hotkey_source_mask
;
2505 event_mask
= hotkey_source_mask
&
2506 (hotkey_driver_mask
| hotkey_user_mask
);
2507 poll_freq
= hotkey_poll_freq
;
2508 mutex_unlock(&hotkey_thread_data_mutex
);
2510 if (likely(poll_mask
)) {
2511 hotkey_read_nvram(&s
[si
], poll_mask
);
2512 if (likely(si
!= so
)) {
2513 hotkey_compare_and_issue_event(&s
[so
], &s
[si
],
2523 mutex_unlock(&hotkey_thread_mutex
);
2527 /* call with hotkey_mutex held */
2528 static void hotkey_poll_stop_sync(void)
2530 if (tpacpi_hotkey_task
) {
2531 if (frozen(tpacpi_hotkey_task
) ||
2532 freezing(tpacpi_hotkey_task
))
2533 thaw_process(tpacpi_hotkey_task
);
2535 kthread_stop(tpacpi_hotkey_task
);
2536 tpacpi_hotkey_task
= NULL
;
2537 mutex_lock(&hotkey_thread_mutex
);
2538 /* at this point, the thread did exit */
2539 mutex_unlock(&hotkey_thread_mutex
);
2543 /* call with hotkey_mutex held */
2544 static void hotkey_poll_setup(const bool may_warn
)
2546 const u32 poll_driver_mask
= hotkey_driver_mask
& hotkey_source_mask
;
2547 const u32 poll_user_mask
= hotkey_user_mask
& hotkey_source_mask
;
2549 if (hotkey_poll_freq
> 0 &&
2550 (poll_driver_mask
||
2551 (poll_user_mask
&& tpacpi_inputdev
->users
> 0))) {
2552 if (!tpacpi_hotkey_task
) {
2553 tpacpi_hotkey_task
= kthread_run(hotkey_kthread
,
2554 NULL
, TPACPI_NVRAM_KTHREAD_NAME
);
2555 if (IS_ERR(tpacpi_hotkey_task
)) {
2556 tpacpi_hotkey_task
= NULL
;
2557 pr_err("could not create kernel thread "
2558 "for hotkey polling\n");
2562 hotkey_poll_stop_sync();
2563 if (may_warn
&& (poll_driver_mask
|| poll_user_mask
) &&
2564 hotkey_poll_freq
== 0) {
2565 pr_notice("hot keys 0x%08x and/or events 0x%08x "
2566 "require polling, which is currently "
2568 poll_user_mask
, poll_driver_mask
);
2573 static void hotkey_poll_setup_safe(const bool may_warn
)
2575 mutex_lock(&hotkey_mutex
);
2576 hotkey_poll_setup(may_warn
);
2577 mutex_unlock(&hotkey_mutex
);
2580 /* call with hotkey_mutex held */
2581 static void hotkey_poll_set_freq(unsigned int freq
)
2584 hotkey_poll_stop_sync();
2586 hotkey_poll_freq
= freq
;
2589 #else /* CONFIG_THINKPAD_ACPI_HOTKEY_POLL */
2591 static void hotkey_poll_setup(const bool __unused
)
2595 static void hotkey_poll_setup_safe(const bool __unused
)
2599 #endif /* CONFIG_THINKPAD_ACPI_HOTKEY_POLL */
2601 static int hotkey_inputdev_open(struct input_dev
*dev
)
2603 switch (tpacpi_lifecycle
) {
2604 case TPACPI_LIFE_INIT
:
2605 case TPACPI_LIFE_RUNNING
:
2606 hotkey_poll_setup_safe(false);
2608 case TPACPI_LIFE_EXITING
:
2612 /* Should only happen if tpacpi_lifecycle is corrupt */
2617 static void hotkey_inputdev_close(struct input_dev
*dev
)
2619 /* disable hotkey polling when possible */
2620 if (tpacpi_lifecycle
!= TPACPI_LIFE_EXITING
&&
2621 !(hotkey_source_mask
& hotkey_driver_mask
))
2622 hotkey_poll_setup_safe(false);
2625 /* sysfs hotkey enable ------------------------------------------------- */
2626 static ssize_t
hotkey_enable_show(struct device
*dev
,
2627 struct device_attribute
*attr
,
2632 printk_deprecated_attribute("hotkey_enable",
2633 "Hotkey reporting is always enabled");
2635 res
= hotkey_status_get(&status
);
2639 return snprintf(buf
, PAGE_SIZE
, "%d\n", status
);
2642 static ssize_t
hotkey_enable_store(struct device
*dev
,
2643 struct device_attribute
*attr
,
2644 const char *buf
, size_t count
)
2648 printk_deprecated_attribute("hotkey_enable",
2649 "Hotkeys can be disabled through hotkey_mask");
2651 if (parse_strtoul(buf
, 1, &t
))
2660 static struct device_attribute dev_attr_hotkey_enable
=
2661 __ATTR(hotkey_enable
, S_IWUSR
| S_IRUGO
,
2662 hotkey_enable_show
, hotkey_enable_store
);
2664 /* sysfs hotkey mask --------------------------------------------------- */
2665 static ssize_t
hotkey_mask_show(struct device
*dev
,
2666 struct device_attribute
*attr
,
2669 return snprintf(buf
, PAGE_SIZE
, "0x%08x\n", hotkey_user_mask
);
2672 static ssize_t
hotkey_mask_store(struct device
*dev
,
2673 struct device_attribute
*attr
,
2674 const char *buf
, size_t count
)
2679 if (parse_strtoul(buf
, 0xffffffffUL
, &t
))
2682 if (mutex_lock_killable(&hotkey_mutex
))
2683 return -ERESTARTSYS
;
2685 res
= hotkey_user_mask_set(t
);
2687 #ifdef CONFIG_THINKPAD_ACPI_HOTKEY_POLL
2688 hotkey_poll_setup(true);
2691 mutex_unlock(&hotkey_mutex
);
2693 tpacpi_disclose_usertask("hotkey_mask", "set to 0x%08lx\n", t
);
2695 return (res
) ? res
: count
;
2698 static struct device_attribute dev_attr_hotkey_mask
=
2699 __ATTR(hotkey_mask
, S_IWUSR
| S_IRUGO
,
2700 hotkey_mask_show
, hotkey_mask_store
);
2702 /* sysfs hotkey bios_enabled ------------------------------------------- */
2703 static ssize_t
hotkey_bios_enabled_show(struct device
*dev
,
2704 struct device_attribute
*attr
,
2707 return sprintf(buf
, "0\n");
2710 static struct device_attribute dev_attr_hotkey_bios_enabled
=
2711 __ATTR(hotkey_bios_enabled
, S_IRUGO
, hotkey_bios_enabled_show
, NULL
);
2713 /* sysfs hotkey bios_mask ---------------------------------------------- */
2714 static ssize_t
hotkey_bios_mask_show(struct device
*dev
,
2715 struct device_attribute
*attr
,
2718 printk_deprecated_attribute("hotkey_bios_mask",
2719 "This attribute is useless.");
2720 return snprintf(buf
, PAGE_SIZE
, "0x%08x\n", hotkey_orig_mask
);
2723 static struct device_attribute dev_attr_hotkey_bios_mask
=
2724 __ATTR(hotkey_bios_mask
, S_IRUGO
, hotkey_bios_mask_show
, NULL
);
2726 /* sysfs hotkey all_mask ----------------------------------------------- */
2727 static ssize_t
hotkey_all_mask_show(struct device
*dev
,
2728 struct device_attribute
*attr
,
2731 return snprintf(buf
, PAGE_SIZE
, "0x%08x\n",
2732 hotkey_all_mask
| hotkey_source_mask
);
2735 static struct device_attribute dev_attr_hotkey_all_mask
=
2736 __ATTR(hotkey_all_mask
, S_IRUGO
, hotkey_all_mask_show
, NULL
);
2738 /* sysfs hotkey recommended_mask --------------------------------------- */
2739 static ssize_t
hotkey_recommended_mask_show(struct device
*dev
,
2740 struct device_attribute
*attr
,
2743 return snprintf(buf
, PAGE_SIZE
, "0x%08x\n",
2744 (hotkey_all_mask
| hotkey_source_mask
)
2745 & ~hotkey_reserved_mask
);
2748 static struct device_attribute dev_attr_hotkey_recommended_mask
=
2749 __ATTR(hotkey_recommended_mask
, S_IRUGO
,
2750 hotkey_recommended_mask_show
, NULL
);
2752 #ifdef CONFIG_THINKPAD_ACPI_HOTKEY_POLL
2754 /* sysfs hotkey hotkey_source_mask ------------------------------------- */
2755 static ssize_t
hotkey_source_mask_show(struct device
*dev
,
2756 struct device_attribute
*attr
,
2759 return snprintf(buf
, PAGE_SIZE
, "0x%08x\n", hotkey_source_mask
);
2762 static ssize_t
hotkey_source_mask_store(struct device
*dev
,
2763 struct device_attribute
*attr
,
2764 const char *buf
, size_t count
)
2770 if (parse_strtoul(buf
, 0xffffffffUL
, &t
) ||
2771 ((t
& ~TPACPI_HKEY_NVRAM_KNOWN_MASK
) != 0))
2774 if (mutex_lock_killable(&hotkey_mutex
))
2775 return -ERESTARTSYS
;
2777 HOTKEY_CONFIG_CRITICAL_START
2778 hotkey_source_mask
= t
;
2779 HOTKEY_CONFIG_CRITICAL_END
2781 rc
= hotkey_mask_set((hotkey_user_mask
| hotkey_driver_mask
) &
2782 ~hotkey_source_mask
);
2783 hotkey_poll_setup(true);
2785 /* check if events needed by the driver got disabled */
2786 r_ev
= hotkey_driver_mask
& ~(hotkey_acpi_mask
& hotkey_all_mask
)
2787 & ~hotkey_source_mask
& TPACPI_HKEY_NVRAM_KNOWN_MASK
;
2789 mutex_unlock(&hotkey_mutex
);
2792 pr_err("hotkey_source_mask: "
2793 "failed to update the firmware event mask!\n");
2796 pr_notice("hotkey_source_mask: "
2797 "some important events were disabled: 0x%04x\n",
2800 tpacpi_disclose_usertask("hotkey_source_mask", "set to 0x%08lx\n", t
);
2802 return (rc
< 0) ? rc
: count
;
2805 static struct device_attribute dev_attr_hotkey_source_mask
=
2806 __ATTR(hotkey_source_mask
, S_IWUSR
| S_IRUGO
,
2807 hotkey_source_mask_show
, hotkey_source_mask_store
);
2809 /* sysfs hotkey hotkey_poll_freq --------------------------------------- */
2810 static ssize_t
hotkey_poll_freq_show(struct device
*dev
,
2811 struct device_attribute
*attr
,
2814 return snprintf(buf
, PAGE_SIZE
, "%d\n", hotkey_poll_freq
);
2817 static ssize_t
hotkey_poll_freq_store(struct device
*dev
,
2818 struct device_attribute
*attr
,
2819 const char *buf
, size_t count
)
2823 if (parse_strtoul(buf
, 25, &t
))
2826 if (mutex_lock_killable(&hotkey_mutex
))
2827 return -ERESTARTSYS
;
2829 hotkey_poll_set_freq(t
);
2830 hotkey_poll_setup(true);
2832 mutex_unlock(&hotkey_mutex
);
2834 tpacpi_disclose_usertask("hotkey_poll_freq", "set to %lu\n", t
);
2839 static struct device_attribute dev_attr_hotkey_poll_freq
=
2840 __ATTR(hotkey_poll_freq
, S_IWUSR
| S_IRUGO
,
2841 hotkey_poll_freq_show
, hotkey_poll_freq_store
);
2843 #endif /* CONFIG_THINKPAD_ACPI_HOTKEY_POLL */
2845 /* sysfs hotkey radio_sw (pollable) ------------------------------------ */
2846 static ssize_t
hotkey_radio_sw_show(struct device
*dev
,
2847 struct device_attribute
*attr
,
2851 res
= hotkey_get_wlsw();
2855 /* Opportunistic update */
2856 tpacpi_rfk_update_hwblock_state((res
== TPACPI_RFK_RADIO_OFF
));
2858 return snprintf(buf
, PAGE_SIZE
, "%d\n",
2859 (res
== TPACPI_RFK_RADIO_OFF
) ? 0 : 1);
2862 static struct device_attribute dev_attr_hotkey_radio_sw
=
2863 __ATTR(hotkey_radio_sw
, S_IRUGO
, hotkey_radio_sw_show
, NULL
);
2865 static void hotkey_radio_sw_notify_change(void)
2867 if (tp_features
.hotkey_wlsw
)
2868 sysfs_notify(&tpacpi_pdev
->dev
.kobj
, NULL
,
2872 /* sysfs hotkey tablet mode (pollable) --------------------------------- */
2873 static ssize_t
hotkey_tablet_mode_show(struct device
*dev
,
2874 struct device_attribute
*attr
,
2878 res
= hotkey_get_tablet_mode(&s
);
2882 return snprintf(buf
, PAGE_SIZE
, "%d\n", !!s
);
2885 static struct device_attribute dev_attr_hotkey_tablet_mode
=
2886 __ATTR(hotkey_tablet_mode
, S_IRUGO
, hotkey_tablet_mode_show
, NULL
);
2888 static void hotkey_tablet_mode_notify_change(void)
2890 if (tp_features
.hotkey_tablet
)
2891 sysfs_notify(&tpacpi_pdev
->dev
.kobj
, NULL
,
2892 "hotkey_tablet_mode");
2895 /* sysfs hotkey report_mode -------------------------------------------- */
2896 static ssize_t
hotkey_report_mode_show(struct device
*dev
,
2897 struct device_attribute
*attr
,
2900 return snprintf(buf
, PAGE_SIZE
, "%d\n",
2901 (hotkey_report_mode
!= 0) ? hotkey_report_mode
: 1);
2904 static struct device_attribute dev_attr_hotkey_report_mode
=
2905 __ATTR(hotkey_report_mode
, S_IRUGO
, hotkey_report_mode_show
, NULL
);
2907 /* sysfs wakeup reason (pollable) -------------------------------------- */
2908 static ssize_t
hotkey_wakeup_reason_show(struct device
*dev
,
2909 struct device_attribute
*attr
,
2912 return snprintf(buf
, PAGE_SIZE
, "%d\n", hotkey_wakeup_reason
);
2915 static struct device_attribute dev_attr_hotkey_wakeup_reason
=
2916 __ATTR(wakeup_reason
, S_IRUGO
, hotkey_wakeup_reason_show
, NULL
);
2918 static void hotkey_wakeup_reason_notify_change(void)
2920 sysfs_notify(&tpacpi_pdev
->dev
.kobj
, NULL
,
2924 /* sysfs wakeup hotunplug_complete (pollable) -------------------------- */
2925 static ssize_t
hotkey_wakeup_hotunplug_complete_show(struct device
*dev
,
2926 struct device_attribute
*attr
,
2929 return snprintf(buf
, PAGE_SIZE
, "%d\n", hotkey_autosleep_ack
);
2932 static struct device_attribute dev_attr_hotkey_wakeup_hotunplug_complete
=
2933 __ATTR(wakeup_hotunplug_complete
, S_IRUGO
,
2934 hotkey_wakeup_hotunplug_complete_show
, NULL
);
2936 static void hotkey_wakeup_hotunplug_complete_notify_change(void)
2938 sysfs_notify(&tpacpi_pdev
->dev
.kobj
, NULL
,
2939 "wakeup_hotunplug_complete");
2942 /* --------------------------------------------------------------------- */
2944 static struct attribute
*hotkey_attributes
[] __initdata
= {
2945 &dev_attr_hotkey_enable
.attr
,
2946 &dev_attr_hotkey_bios_enabled
.attr
,
2947 &dev_attr_hotkey_bios_mask
.attr
,
2948 &dev_attr_hotkey_report_mode
.attr
,
2949 &dev_attr_hotkey_wakeup_reason
.attr
,
2950 &dev_attr_hotkey_wakeup_hotunplug_complete
.attr
,
2951 &dev_attr_hotkey_mask
.attr
,
2952 &dev_attr_hotkey_all_mask
.attr
,
2953 &dev_attr_hotkey_recommended_mask
.attr
,
2954 #ifdef CONFIG_THINKPAD_ACPI_HOTKEY_POLL
2955 &dev_attr_hotkey_source_mask
.attr
,
2956 &dev_attr_hotkey_poll_freq
.attr
,
2961 * Sync both the hw and sw blocking state of all switches
2963 static void tpacpi_send_radiosw_update(void)
2968 * We must sync all rfkill controllers *before* issuing any
2969 * rfkill input events, or we will race the rfkill core input
2972 * tpacpi_inputdev_send_mutex works as a synchronization point
2975 * We optimize to avoid numerous calls to hotkey_get_wlsw.
2978 wlsw
= hotkey_get_wlsw();
2980 /* Sync hw blocking state first if it is hw-blocked */
2981 if (wlsw
== TPACPI_RFK_RADIO_OFF
)
2982 tpacpi_rfk_update_hwblock_state(true);
2984 /* Sync sw blocking state */
2985 tpacpi_rfk_update_swstate_all();
2987 /* Sync hw blocking state last if it is hw-unblocked */
2988 if (wlsw
== TPACPI_RFK_RADIO_ON
)
2989 tpacpi_rfk_update_hwblock_state(false);
2991 /* Issue rfkill input event for WLSW switch */
2993 mutex_lock(&tpacpi_inputdev_send_mutex
);
2995 input_report_switch(tpacpi_inputdev
,
2996 SW_RFKILL_ALL
, (wlsw
> 0));
2997 input_sync(tpacpi_inputdev
);
2999 mutex_unlock(&tpacpi_inputdev_send_mutex
);
3003 * this can be unconditional, as we will poll state again
3004 * if userspace uses the notify to read data
3006 hotkey_radio_sw_notify_change();
3009 static void hotkey_exit(void)
3011 #ifdef CONFIG_THINKPAD_ACPI_HOTKEY_POLL
3012 mutex_lock(&hotkey_mutex
);
3013 hotkey_poll_stop_sync();
3014 mutex_unlock(&hotkey_mutex
);
3017 if (hotkey_dev_attributes
)
3018 delete_attr_set(hotkey_dev_attributes
, &tpacpi_pdev
->dev
.kobj
);
3020 kfree(hotkey_keycode_map
);
3022 dbg_printk(TPACPI_DBG_EXIT
| TPACPI_DBG_HKEY
,
3023 "restoring original HKEY status and mask\n");
3024 /* yes, there is a bitwise or below, we want the
3025 * functions to be called even if one of them fail */
3026 if (((tp_features
.hotkey_mask
&&
3027 hotkey_mask_set(hotkey_orig_mask
)) |
3028 hotkey_status_set(false)) != 0)
3029 pr_err("failed to restore hot key mask "
3030 "to BIOS defaults\n");
3033 static void __init
hotkey_unmap(const unsigned int scancode
)
3035 if (hotkey_keycode_map
[scancode
] != KEY_RESERVED
) {
3036 clear_bit(hotkey_keycode_map
[scancode
],
3037 tpacpi_inputdev
->keybit
);
3038 hotkey_keycode_map
[scancode
] = KEY_RESERVED
;
3044 * TPACPI_HK_Q_INIMASK: Supports FN+F3,FN+F4,FN+F12
3047 #define TPACPI_HK_Q_INIMASK 0x0001
3049 static const struct tpacpi_quirk tpacpi_hotkey_qtable
[] __initconst
= {
3050 TPACPI_Q_IBM('I', 'H', TPACPI_HK_Q_INIMASK
), /* 600E */
3051 TPACPI_Q_IBM('I', 'N', TPACPI_HK_Q_INIMASK
), /* 600E */
3052 TPACPI_Q_IBM('I', 'D', TPACPI_HK_Q_INIMASK
), /* 770, 770E, 770ED */
3053 TPACPI_Q_IBM('I', 'W', TPACPI_HK_Q_INIMASK
), /* A20m */
3054 TPACPI_Q_IBM('I', 'V', TPACPI_HK_Q_INIMASK
), /* A20p */
3055 TPACPI_Q_IBM('1', '0', TPACPI_HK_Q_INIMASK
), /* A21e, A22e */
3056 TPACPI_Q_IBM('K', 'U', TPACPI_HK_Q_INIMASK
), /* A21e */
3057 TPACPI_Q_IBM('K', 'X', TPACPI_HK_Q_INIMASK
), /* A21m, A22m */
3058 TPACPI_Q_IBM('K', 'Y', TPACPI_HK_Q_INIMASK
), /* A21p, A22p */
3059 TPACPI_Q_IBM('1', 'B', TPACPI_HK_Q_INIMASK
), /* A22e */
3060 TPACPI_Q_IBM('1', '3', TPACPI_HK_Q_INIMASK
), /* A22m */
3061 TPACPI_Q_IBM('1', 'E', TPACPI_HK_Q_INIMASK
), /* A30/p (0) */
3062 TPACPI_Q_IBM('1', 'C', TPACPI_HK_Q_INIMASK
), /* R30 */
3063 TPACPI_Q_IBM('1', 'F', TPACPI_HK_Q_INIMASK
), /* R31 */
3064 TPACPI_Q_IBM('I', 'Y', TPACPI_HK_Q_INIMASK
), /* T20 */
3065 TPACPI_Q_IBM('K', 'Z', TPACPI_HK_Q_INIMASK
), /* T21 */
3066 TPACPI_Q_IBM('1', '6', TPACPI_HK_Q_INIMASK
), /* T22 */
3067 TPACPI_Q_IBM('I', 'Z', TPACPI_HK_Q_INIMASK
), /* X20, X21 */
3068 TPACPI_Q_IBM('1', 'D', TPACPI_HK_Q_INIMASK
), /* X22, X23, X24 */
3071 typedef u16 tpacpi_keymap_entry_t
;
3072 typedef tpacpi_keymap_entry_t tpacpi_keymap_t
[TPACPI_HOTKEY_MAP_LEN
];
3074 static int __init
hotkey_init(struct ibm_init_struct
*iibm
)
3076 /* Requirements for changing the default keymaps:
3078 * 1. Many of the keys are mapped to KEY_RESERVED for very
3079 * good reasons. Do not change them unless you have deep
3080 * knowledge on the IBM and Lenovo ThinkPad firmware for
3081 * the various ThinkPad models. The driver behaves
3082 * differently for KEY_RESERVED: such keys have their
3083 * hot key mask *unset* in mask_recommended, and also
3084 * in the initial hot key mask programmed into the
3085 * firmware at driver load time, which means the firm-
3086 * ware may react very differently if you change them to
3089 * 2. You must be subscribed to the linux-thinkpad and
3090 * ibm-acpi-devel mailing lists, and you should read the
3091 * list archives since 2007 if you want to change the
3092 * keymaps. This requirement exists so that you will
3093 * know the past history of problems with the thinkpad-
3094 * acpi driver keymaps, and also that you will be
3095 * listening to any bug reports;
3097 * 3. Do not send thinkpad-acpi specific patches directly to
3098 * for merging, *ever*. Send them to the linux-acpi
3099 * mailinglist for comments. Merging is to be done only
3100 * through acpi-test and the ACPI maintainer.
3102 * If the above is too much to ask, don't change the keymap.
3103 * Ask the thinkpad-acpi maintainer to do it, instead.
3107 TPACPI_KEYMAP_IBM_GENERIC
= 0,
3108 TPACPI_KEYMAP_LENOVO_GENERIC
,
3111 static const tpacpi_keymap_t tpacpi_keymaps
[] __initconst
= {
3112 /* Generic keymap for IBM ThinkPads */
3113 [TPACPI_KEYMAP_IBM_GENERIC
] = {
3114 /* Scan Codes 0x00 to 0x0B: ACPI HKEY FN+F1..F12 */
3115 KEY_FN_F1
, KEY_BATTERY
, KEY_COFFEE
, KEY_SLEEP
,
3116 KEY_WLAN
, KEY_FN_F6
, KEY_SWITCHVIDEOMODE
, KEY_FN_F8
,
3117 KEY_FN_F9
, KEY_FN_F10
, KEY_FN_F11
, KEY_SUSPEND
,
3119 /* Scan codes 0x0C to 0x1F: Other ACPI HKEY hot keys */
3120 KEY_UNKNOWN
, /* 0x0C: FN+BACKSPACE */
3121 KEY_UNKNOWN
, /* 0x0D: FN+INSERT */
3122 KEY_UNKNOWN
, /* 0x0E: FN+DELETE */
3124 /* brightness: firmware always reacts to them */
3125 KEY_RESERVED
, /* 0x0F: FN+HOME (brightness up) */
3126 KEY_RESERVED
, /* 0x10: FN+END (brightness down) */
3128 /* Thinklight: firmware always react to it */
3129 KEY_RESERVED
, /* 0x11: FN+PGUP (thinklight toggle) */
3131 KEY_UNKNOWN
, /* 0x12: FN+PGDOWN */
3132 KEY_ZOOM
, /* 0x13: FN+SPACE (zoom) */
3134 /* Volume: firmware always react to it and reprograms
3135 * the built-in *extra* mixer. Never map it to control
3136 * another mixer by default. */
3137 KEY_RESERVED
, /* 0x14: VOLUME UP */
3138 KEY_RESERVED
, /* 0x15: VOLUME DOWN */
3139 KEY_RESERVED
, /* 0x16: MUTE */
3141 KEY_VENDOR
, /* 0x17: Thinkpad/AccessIBM/Lenovo */
3143 /* (assignments unknown, please report if found) */
3144 KEY_UNKNOWN
, KEY_UNKNOWN
, KEY_UNKNOWN
, KEY_UNKNOWN
,
3145 KEY_UNKNOWN
, KEY_UNKNOWN
, KEY_UNKNOWN
, KEY_UNKNOWN
,
3148 /* Generic keymap for Lenovo ThinkPads */
3149 [TPACPI_KEYMAP_LENOVO_GENERIC
] = {
3150 /* Scan Codes 0x00 to 0x0B: ACPI HKEY FN+F1..F12 */
3151 KEY_FN_F1
, KEY_COFFEE
, KEY_BATTERY
, KEY_SLEEP
,
3152 KEY_WLAN
, KEY_CAMERA
, KEY_SWITCHVIDEOMODE
, KEY_FN_F8
,
3153 KEY_FN_F9
, KEY_FN_F10
, KEY_FN_F11
, KEY_SUSPEND
,
3155 /* Scan codes 0x0C to 0x1F: Other ACPI HKEY hot keys */
3156 KEY_UNKNOWN
, /* 0x0C: FN+BACKSPACE */
3157 KEY_UNKNOWN
, /* 0x0D: FN+INSERT */
3158 KEY_UNKNOWN
, /* 0x0E: FN+DELETE */
3160 /* These should be enabled --only-- when ACPI video
3161 * is disabled (i.e. in "vendor" mode), and are handled
3162 * in a special way by the init code */
3163 KEY_BRIGHTNESSUP
, /* 0x0F: FN+HOME (brightness up) */
3164 KEY_BRIGHTNESSDOWN
, /* 0x10: FN+END (brightness down) */
3166 KEY_RESERVED
, /* 0x11: FN+PGUP (thinklight toggle) */
3168 KEY_UNKNOWN
, /* 0x12: FN+PGDOWN */
3169 KEY_ZOOM
, /* 0x13: FN+SPACE (zoom) */
3171 /* Volume: z60/z61, T60 (BIOS version?): firmware always
3172 * react to it and reprograms the built-in *extra* mixer.
3173 * Never map it to control another mixer by default.
3175 * T60?, T61, R60?, R61: firmware and EC tries to send
3176 * these over the regular keyboard, so these are no-ops,
3177 * but there are still weird bugs re. MUTE, so do not
3178 * change unless you get test reports from all Lenovo
3179 * models. May cause the BIOS to interfere with the
3182 KEY_RESERVED
, /* 0x14: VOLUME UP */
3183 KEY_RESERVED
, /* 0x15: VOLUME DOWN */
3184 KEY_RESERVED
, /* 0x16: MUTE */
3186 KEY_VENDOR
, /* 0x17: Thinkpad/AccessIBM/Lenovo */
3188 /* (assignments unknown, please report if found) */
3189 KEY_UNKNOWN
, KEY_UNKNOWN
, KEY_UNKNOWN
, KEY_UNKNOWN
,
3190 KEY_UNKNOWN
, KEY_UNKNOWN
, KEY_UNKNOWN
, KEY_UNKNOWN
,
3194 static const struct tpacpi_quirk tpacpi_keymap_qtable
[] __initconst
= {
3195 /* Generic maps (fallback) */
3197 .vendor
= PCI_VENDOR_ID_IBM
,
3198 .bios
= TPACPI_MATCH_ANY
, .ec
= TPACPI_MATCH_ANY
,
3199 .quirks
= TPACPI_KEYMAP_IBM_GENERIC
,
3202 .vendor
= PCI_VENDOR_ID_LENOVO
,
3203 .bios
= TPACPI_MATCH_ANY
, .ec
= TPACPI_MATCH_ANY
,
3204 .quirks
= TPACPI_KEYMAP_LENOVO_GENERIC
,
3208 #define TPACPI_HOTKEY_MAP_SIZE sizeof(tpacpi_keymap_t)
3209 #define TPACPI_HOTKEY_MAP_TYPESIZE sizeof(tpacpi_keymap_entry_t)
3214 bool radiosw_state
= false;
3215 bool tabletsw_state
= false;
3217 unsigned long quirks
;
3218 unsigned long keymap_id
;
3220 vdbg_printk(TPACPI_DBG_INIT
| TPACPI_DBG_HKEY
,
3221 "initializing hotkey subdriver\n");
3223 BUG_ON(!tpacpi_inputdev
);
3224 BUG_ON(tpacpi_inputdev
->open
!= NULL
||
3225 tpacpi_inputdev
->close
!= NULL
);
3227 TPACPI_ACPIHANDLE_INIT(hkey
);
3228 mutex_init(&hotkey_mutex
);
3230 #ifdef CONFIG_THINKPAD_ACPI_HOTKEY_POLL
3231 mutex_init(&hotkey_thread_mutex
);
3232 mutex_init(&hotkey_thread_data_mutex
);
3235 /* hotkey not supported on 570 */
3236 tp_features
.hotkey
= hkey_handle
!= NULL
;
3238 vdbg_printk(TPACPI_DBG_INIT
| TPACPI_DBG_HKEY
,
3240 str_supported(tp_features
.hotkey
));
3242 if (!tp_features
.hotkey
)
3245 quirks
= tpacpi_check_quirks(tpacpi_hotkey_qtable
,
3246 ARRAY_SIZE(tpacpi_hotkey_qtable
));
3248 tpacpi_disable_brightness_delay();
3250 /* MUST have enough space for all attributes to be added to
3251 * hotkey_dev_attributes */
3252 hotkey_dev_attributes
= create_attr_set(
3253 ARRAY_SIZE(hotkey_attributes
) + 2,
3255 if (!hotkey_dev_attributes
)
3257 res
= add_many_to_attr_set(hotkey_dev_attributes
,
3259 ARRAY_SIZE(hotkey_attributes
));
3263 /* mask not supported on 600e/x, 770e, 770x, A21e, A2xm/p,
3264 A30, R30, R31, T20-22, X20-21, X22-24. Detected by checking
3265 for HKEY interface version 0x100 */
3266 if (acpi_evalf(hkey_handle
, &hkeyv
, "MHKV", "qd")) {
3267 if ((hkeyv
>> 8) != 1) {
3268 pr_err("unknown version of the HKEY interface: 0x%x\n",
3270 pr_err("please report this to %s\n", TPACPI_MAIL
);
3273 * MHKV 0x100 in A31, R40, R40e,
3274 * T4x, X31, and later
3276 vdbg_printk(TPACPI_DBG_INIT
| TPACPI_DBG_HKEY
,
3277 "firmware HKEY interface version: 0x%x\n",
3280 /* Paranoia check AND init hotkey_all_mask */
3281 if (!acpi_evalf(hkey_handle
, &hotkey_all_mask
,
3283 pr_err("missing MHKA handler, "
3284 "please report this to %s\n",
3286 /* Fallback: pre-init for FN+F3,F4,F12 */
3287 hotkey_all_mask
= 0x080cU
;
3289 tp_features
.hotkey_mask
= 1;
3294 vdbg_printk(TPACPI_DBG_INIT
| TPACPI_DBG_HKEY
,
3295 "hotkey masks are %s\n",
3296 str_supported(tp_features
.hotkey_mask
));
3298 /* Init hotkey_all_mask if not initialized yet */
3299 if (!tp_features
.hotkey_mask
&& !hotkey_all_mask
&&
3300 (quirks
& TPACPI_HK_Q_INIMASK
))
3301 hotkey_all_mask
= 0x080cU
; /* FN+F12, FN+F4, FN+F3 */
3303 /* Init hotkey_acpi_mask and hotkey_orig_mask */
3304 if (tp_features
.hotkey_mask
) {
3305 /* hotkey_source_mask *must* be zero for
3306 * the first hotkey_mask_get to return hotkey_orig_mask */
3307 res
= hotkey_mask_get();
3311 hotkey_orig_mask
= hotkey_acpi_mask
;
3313 hotkey_orig_mask
= hotkey_all_mask
;
3314 hotkey_acpi_mask
= hotkey_all_mask
;
3317 #ifdef CONFIG_THINKPAD_ACPI_DEBUGFACILITIES
3319 tp_features
.hotkey_wlsw
= 1;
3320 radiosw_state
= !!tpacpi_wlsw_emulstate
;
3321 pr_info("radio switch emulation enabled\n");
3324 /* Not all thinkpads have a hardware radio switch */
3325 if (acpi_evalf(hkey_handle
, &status
, "WLSW", "qd")) {
3326 tp_features
.hotkey_wlsw
= 1;
3327 radiosw_state
= !!status
;
3328 pr_info("radio switch found; radios are %s\n",
3329 enabled(status
, 0));
3331 if (tp_features
.hotkey_wlsw
)
3332 res
= add_to_attr_set(hotkey_dev_attributes
,
3333 &dev_attr_hotkey_radio_sw
.attr
);
3335 /* For X41t, X60t, X61t Tablets... */
3336 if (!res
&& acpi_evalf(hkey_handle
, &status
, "MHKG", "qd")) {
3337 tp_features
.hotkey_tablet
= 1;
3338 tabletsw_state
= !!(status
& TP_HOTKEY_TABLET_MASK
);
3339 pr_info("possible tablet mode switch found; "
3340 "ThinkPad in %s mode\n",
3341 (tabletsw_state
) ? "tablet" : "laptop");
3342 res
= add_to_attr_set(hotkey_dev_attributes
,
3343 &dev_attr_hotkey_tablet_mode
.attr
);
3347 res
= register_attr_set_with_sysfs(
3348 hotkey_dev_attributes
,
3349 &tpacpi_pdev
->dev
.kobj
);
3353 /* Set up key map */
3354 hotkey_keycode_map
= kmalloc(TPACPI_HOTKEY_MAP_SIZE
,
3356 if (!hotkey_keycode_map
) {
3357 pr_err("failed to allocate memory for key map\n");
3362 keymap_id
= tpacpi_check_quirks(tpacpi_keymap_qtable
,
3363 ARRAY_SIZE(tpacpi_keymap_qtable
));
3364 BUG_ON(keymap_id
>= ARRAY_SIZE(tpacpi_keymaps
));
3365 dbg_printk(TPACPI_DBG_INIT
| TPACPI_DBG_HKEY
,
3366 "using keymap number %lu\n", keymap_id
);
3368 memcpy(hotkey_keycode_map
, &tpacpi_keymaps
[keymap_id
],
3369 TPACPI_HOTKEY_MAP_SIZE
);
3371 input_set_capability(tpacpi_inputdev
, EV_MSC
, MSC_SCAN
);
3372 tpacpi_inputdev
->keycodesize
= TPACPI_HOTKEY_MAP_TYPESIZE
;
3373 tpacpi_inputdev
->keycodemax
= TPACPI_HOTKEY_MAP_LEN
;
3374 tpacpi_inputdev
->keycode
= hotkey_keycode_map
;
3375 for (i
= 0; i
< TPACPI_HOTKEY_MAP_LEN
; i
++) {
3376 if (hotkey_keycode_map
[i
] != KEY_RESERVED
) {
3377 input_set_capability(tpacpi_inputdev
, EV_KEY
,
3378 hotkey_keycode_map
[i
]);
3380 if (i
< sizeof(hotkey_reserved_mask
)*8)
3381 hotkey_reserved_mask
|= 1 << i
;
3385 if (tp_features
.hotkey_wlsw
) {
3386 input_set_capability(tpacpi_inputdev
, EV_SW
, SW_RFKILL_ALL
);
3387 input_report_switch(tpacpi_inputdev
,
3388 SW_RFKILL_ALL
, radiosw_state
);
3390 if (tp_features
.hotkey_tablet
) {
3391 input_set_capability(tpacpi_inputdev
, EV_SW
, SW_TABLET_MODE
);
3392 input_report_switch(tpacpi_inputdev
,
3393 SW_TABLET_MODE
, tabletsw_state
);
3396 /* Do not issue duplicate brightness change events to
3397 * userspace. tpacpi_detect_brightness_capabilities() must have
3398 * been called before this point */
3399 if (tp_features
.bright_acpimode
&& acpi_video_backlight_support()) {
3400 pr_info("This ThinkPad has standard ACPI backlight "
3401 "brightness control, supported by the ACPI "
3403 pr_notice("Disabling thinkpad-acpi brightness events "
3406 /* Disable brightness up/down on Lenovo thinkpads when
3407 * ACPI is handling them, otherwise it is plain impossible
3408 * for userspace to do something even remotely sane */
3409 hotkey_reserved_mask
|=
3410 (1 << TP_ACPI_HOTKEYSCAN_FNHOME
)
3411 | (1 << TP_ACPI_HOTKEYSCAN_FNEND
);
3412 hotkey_unmap(TP_ACPI_HOTKEYSCAN_FNHOME
);
3413 hotkey_unmap(TP_ACPI_HOTKEYSCAN_FNEND
);
3416 #ifdef CONFIG_THINKPAD_ACPI_HOTKEY_POLL
3417 hotkey_source_mask
= TPACPI_HKEY_NVRAM_GOOD_MASK
3419 & ~hotkey_reserved_mask
;
3421 vdbg_printk(TPACPI_DBG_INIT
| TPACPI_DBG_HKEY
,
3422 "hotkey source mask 0x%08x, polling freq %u\n",
3423 hotkey_source_mask
, hotkey_poll_freq
);
3426 dbg_printk(TPACPI_DBG_INIT
| TPACPI_DBG_HKEY
,
3427 "enabling firmware HKEY event interface...\n");
3428 res
= hotkey_status_set(true);
3433 res
= hotkey_mask_set(((hotkey_all_mask
& ~hotkey_reserved_mask
)
3434 | hotkey_driver_mask
)
3435 & ~hotkey_source_mask
);
3436 if (res
< 0 && res
!= -ENXIO
) {
3440 hotkey_user_mask
= (hotkey_acpi_mask
| hotkey_source_mask
)
3441 & ~hotkey_reserved_mask
;
3442 vdbg_printk(TPACPI_DBG_INIT
| TPACPI_DBG_HKEY
,
3443 "initial masks: user=0x%08x, fw=0x%08x, poll=0x%08x\n",
3444 hotkey_user_mask
, hotkey_acpi_mask
, hotkey_source_mask
);
3446 dbg_printk(TPACPI_DBG_INIT
| TPACPI_DBG_HKEY
,
3447 "legacy ibm/hotkey event reporting over procfs %s\n",
3448 (hotkey_report_mode
< 2) ?
3449 "enabled" : "disabled");
3451 tpacpi_inputdev
->open
= &hotkey_inputdev_open
;
3452 tpacpi_inputdev
->close
= &hotkey_inputdev_close
;
3454 hotkey_poll_setup_safe(true);
3459 delete_attr_set(hotkey_dev_attributes
, &tpacpi_pdev
->dev
.kobj
);
3460 hotkey_dev_attributes
= NULL
;
3462 return (res
< 0)? res
: 1;
3465 static bool hotkey_notify_hotkey(const u32 hkey
,
3467 bool *ignore_acpi_ev
)
3469 /* 0x1000-0x1FFF: key presses */
3470 unsigned int scancode
= hkey
& 0xfff;
3471 *send_acpi_ev
= true;
3472 *ignore_acpi_ev
= false;
3474 /* HKEY event 0x1001 is scancode 0x00 */
3475 if (scancode
> 0 && scancode
<= TPACPI_HOTKEY_MAP_LEN
) {
3477 if (!(hotkey_source_mask
& (1 << scancode
))) {
3478 tpacpi_input_send_key_masked(scancode
);
3479 *send_acpi_ev
= false;
3481 *ignore_acpi_ev
= true;
3488 static bool hotkey_notify_wakeup(const u32 hkey
,
3490 bool *ignore_acpi_ev
)
3492 /* 0x2000-0x2FFF: Wakeup reason */
3493 *send_acpi_ev
= true;
3494 *ignore_acpi_ev
= false;
3497 case TP_HKEY_EV_WKUP_S3_UNDOCK
: /* suspend, undock */
3498 case TP_HKEY_EV_WKUP_S4_UNDOCK
: /* hibernation, undock */
3499 hotkey_wakeup_reason
= TP_ACPI_WAKEUP_UNDOCK
;
3500 *ignore_acpi_ev
= true;
3503 case TP_HKEY_EV_WKUP_S3_BAYEJ
: /* suspend, bay eject */
3504 case TP_HKEY_EV_WKUP_S4_BAYEJ
: /* hibernation, bay eject */
3505 hotkey_wakeup_reason
= TP_ACPI_WAKEUP_BAYEJ
;
3506 *ignore_acpi_ev
= true;
3509 case TP_HKEY_EV_WKUP_S3_BATLOW
: /* Battery on critical low level/S3 */
3510 case TP_HKEY_EV_WKUP_S4_BATLOW
: /* Battery on critical low level/S4 */
3511 pr_alert("EMERGENCY WAKEUP: battery almost empty\n");
3512 /* how to auto-heal: */
3513 /* 2313: woke up from S3, go to S4/S5 */
3514 /* 2413: woke up from S4, go to S5 */
3521 if (hotkey_wakeup_reason
!= TP_ACPI_WAKEUP_NONE
) {
3522 pr_info("woke up due to a hot-unplug request...\n");
3523 hotkey_wakeup_reason_notify_change();
3528 static bool hotkey_notify_dockevent(const u32 hkey
,
3530 bool *ignore_acpi_ev
)
3532 /* 0x4000-0x4FFF: dock-related events */
3533 *send_acpi_ev
= true;
3534 *ignore_acpi_ev
= false;
3537 case TP_HKEY_EV_UNDOCK_ACK
:
3538 /* ACPI undock operation completed after wakeup */
3539 hotkey_autosleep_ack
= 1;
3540 pr_info("undocked\n");
3541 hotkey_wakeup_hotunplug_complete_notify_change();
3544 case TP_HKEY_EV_HOTPLUG_DOCK
: /* docked to port replicator */
3545 pr_info("docked into hotplug port replicator\n");
3547 case TP_HKEY_EV_HOTPLUG_UNDOCK
: /* undocked from port replicator */
3548 pr_info("undocked from hotplug port replicator\n");
3556 static bool hotkey_notify_usrevent(const u32 hkey
,
3558 bool *ignore_acpi_ev
)
3560 /* 0x5000-0x5FFF: human interface helpers */
3561 *send_acpi_ev
= true;
3562 *ignore_acpi_ev
= false;
3565 case TP_HKEY_EV_PEN_INSERTED
: /* X61t: tablet pen inserted into bay */
3566 case TP_HKEY_EV_PEN_REMOVED
: /* X61t: tablet pen removed from bay */
3569 case TP_HKEY_EV_TABLET_TABLET
: /* X41t-X61t: tablet mode */
3570 case TP_HKEY_EV_TABLET_NOTEBOOK
: /* X41t-X61t: normal mode */
3571 tpacpi_input_send_tabletsw();
3572 hotkey_tablet_mode_notify_change();
3573 *send_acpi_ev
= false;
3576 case TP_HKEY_EV_LID_CLOSE
: /* Lid closed */
3577 case TP_HKEY_EV_LID_OPEN
: /* Lid opened */
3578 case TP_HKEY_EV_BRGHT_CHANGED
: /* brightness changed */
3579 /* do not propagate these events */
3580 *ignore_acpi_ev
= true;
3588 static void thermal_dump_all_sensors(void);
3590 static bool hotkey_notify_6xxx(const u32 hkey
,
3592 bool *ignore_acpi_ev
)
3596 /* 0x6000-0x6FFF: thermal alarms/notices and keyboard events */
3597 *send_acpi_ev
= true;
3598 *ignore_acpi_ev
= false;
3601 case TP_HKEY_EV_THM_TABLE_CHANGED
:
3602 pr_info("EC reports that Thermal Table has changed\n");
3603 /* recommended action: do nothing, we don't have
3604 * Lenovo ATM information */
3606 case TP_HKEY_EV_ALARM_BAT_HOT
:
3607 pr_crit("THERMAL ALARM: battery is too hot!\n");
3608 /* recommended action: warn user through gui */
3610 case TP_HKEY_EV_ALARM_BAT_XHOT
:
3611 pr_alert("THERMAL EMERGENCY: battery is extremely hot!\n");
3612 /* recommended action: immediate sleep/hibernate */
3614 case TP_HKEY_EV_ALARM_SENSOR_HOT
:
3615 pr_crit("THERMAL ALARM: "
3616 "a sensor reports something is too hot!\n");
3617 /* recommended action: warn user through gui, that */
3618 /* some internal component is too hot */
3620 case TP_HKEY_EV_ALARM_SENSOR_XHOT
:
3621 pr_alert("THERMAL EMERGENCY: "
3622 "a sensor reports something is extremely hot!\n");
3623 /* recommended action: immediate sleep/hibernate */
3626 case TP_HKEY_EV_KEY_NUMLOCK
:
3627 case TP_HKEY_EV_KEY_FN
:
3628 /* key press events, we just ignore them as long as the EC
3629 * is still reporting them in the normal keyboard stream */
3630 *send_acpi_ev
= false;
3631 *ignore_acpi_ev
= true;
3635 pr_warn("unknown possible thermal alarm or keyboard event received\n");
3639 thermal_dump_all_sensors();
3644 static void hotkey_notify(struct ibm_struct
*ibm
, u32 event
)
3648 bool ignore_acpi_ev
;
3651 if (event
!= 0x80) {
3652 pr_err("unknown HKEY notification event %d\n", event
);
3653 /* forward it to userspace, maybe it knows how to handle it */
3654 acpi_bus_generate_netlink_event(
3655 ibm
->acpi
->device
->pnp
.device_class
,
3656 dev_name(&ibm
->acpi
->device
->dev
),
3662 if (!acpi_evalf(hkey_handle
, &hkey
, "MHKP", "d")) {
3663 pr_err("failed to retrieve HKEY event\n");
3672 send_acpi_ev
= true;
3673 ignore_acpi_ev
= false;
3675 switch (hkey
>> 12) {
3677 /* 0x1000-0x1FFF: key presses */
3678 known_ev
= hotkey_notify_hotkey(hkey
, &send_acpi_ev
,
3682 /* 0x2000-0x2FFF: Wakeup reason */
3683 known_ev
= hotkey_notify_wakeup(hkey
, &send_acpi_ev
,
3687 /* 0x3000-0x3FFF: bay-related wakeups */
3689 case TP_HKEY_EV_BAYEJ_ACK
:
3690 hotkey_autosleep_ack
= 1;
3691 pr_info("bay ejected\n");
3692 hotkey_wakeup_hotunplug_complete_notify_change();
3695 case TP_HKEY_EV_OPTDRV_EJ
:
3696 /* FIXME: kick libata if SATA link offline */
3704 /* 0x4000-0x4FFF: dock-related events */
3705 known_ev
= hotkey_notify_dockevent(hkey
, &send_acpi_ev
,
3709 /* 0x5000-0x5FFF: human interface helpers */
3710 known_ev
= hotkey_notify_usrevent(hkey
, &send_acpi_ev
,
3714 /* 0x6000-0x6FFF: thermal alarms/notices and
3715 * keyboard events */
3716 known_ev
= hotkey_notify_6xxx(hkey
, &send_acpi_ev
,
3720 /* 0x7000-0x7FFF: misc */
3721 if (tp_features
.hotkey_wlsw
&&
3722 hkey
== TP_HKEY_EV_RFKILL_CHANGED
) {
3723 tpacpi_send_radiosw_update();
3728 /* fallthrough to default */
3733 pr_notice("unhandled HKEY event 0x%04x\n", hkey
);
3734 pr_notice("please report the conditions when this "
3735 "event happened to %s\n", TPACPI_MAIL
);
3739 if (!ignore_acpi_ev
&&
3740 (send_acpi_ev
|| hotkey_report_mode
< 2)) {
3741 acpi_bus_generate_proc_event(ibm
->acpi
->device
,
3745 /* netlink events */
3746 if (!ignore_acpi_ev
&& send_acpi_ev
) {
3747 acpi_bus_generate_netlink_event(
3748 ibm
->acpi
->device
->pnp
.device_class
,
3749 dev_name(&ibm
->acpi
->device
->dev
),
3755 static void hotkey_suspend(pm_message_t state
)
3757 /* Do these on suspend, we get the events on early resume! */
3758 hotkey_wakeup_reason
= TP_ACPI_WAKEUP_NONE
;
3759 hotkey_autosleep_ack
= 0;
3762 static void hotkey_resume(void)
3764 tpacpi_disable_brightness_delay();
3766 if (hotkey_status_set(true) < 0 ||
3767 hotkey_mask_set(hotkey_acpi_mask
) < 0)
3768 pr_err("error while attempting to reset the event "
3769 "firmware interface\n");
3771 tpacpi_send_radiosw_update();
3772 hotkey_tablet_mode_notify_change();
3773 hotkey_wakeup_reason_notify_change();
3774 hotkey_wakeup_hotunplug_complete_notify_change();
3775 hotkey_poll_setup_safe(false);
3778 /* procfs -------------------------------------------------------------- */
3779 static int hotkey_read(struct seq_file
*m
)
3783 if (!tp_features
.hotkey
) {
3784 seq_printf(m
, "status:\t\tnot supported\n");
3788 if (mutex_lock_killable(&hotkey_mutex
))
3789 return -ERESTARTSYS
;
3790 res
= hotkey_status_get(&status
);
3792 res
= hotkey_mask_get();
3793 mutex_unlock(&hotkey_mutex
);
3797 seq_printf(m
, "status:\t\t%s\n", enabled(status
, 0));
3798 if (hotkey_all_mask
) {
3799 seq_printf(m
, "mask:\t\t0x%08x\n", hotkey_user_mask
);
3800 seq_printf(m
, "commands:\tenable, disable, reset, <mask>\n");
3802 seq_printf(m
, "mask:\t\tnot supported\n");
3803 seq_printf(m
, "commands:\tenable, disable, reset\n");
3809 static void hotkey_enabledisable_warn(bool enable
)
3811 tpacpi_log_usertask("procfs hotkey enable/disable");
3812 if (!WARN((tpacpi_lifecycle
== TPACPI_LIFE_RUNNING
|| !enable
),
3813 pr_fmt("hotkey enable/disable functionality has been "
3814 "removed from the driver. "
3815 "Hotkeys are always enabled.\n")))
3816 pr_err("Please remove the hotkey=enable module "
3817 "parameter, it is deprecated. "
3818 "Hotkeys are always enabled.\n");
3821 static int hotkey_write(char *buf
)
3827 if (!tp_features
.hotkey
)
3830 if (mutex_lock_killable(&hotkey_mutex
))
3831 return -ERESTARTSYS
;
3833 mask
= hotkey_user_mask
;
3836 while ((cmd
= next_cmd(&buf
))) {
3837 if (strlencmp(cmd
, "enable") == 0) {
3838 hotkey_enabledisable_warn(1);
3839 } else if (strlencmp(cmd
, "disable") == 0) {
3840 hotkey_enabledisable_warn(0);
3842 } else if (strlencmp(cmd
, "reset") == 0) {
3843 mask
= (hotkey_all_mask
| hotkey_source_mask
)
3844 & ~hotkey_reserved_mask
;
3845 } else if (sscanf(cmd
, "0x%x", &mask
) == 1) {
3847 } else if (sscanf(cmd
, "%x", &mask
) == 1) {
3856 tpacpi_disclose_usertask("procfs hotkey",
3857 "set mask to 0x%08x\n", mask
);
3858 res
= hotkey_user_mask_set(mask
);
3862 mutex_unlock(&hotkey_mutex
);
3866 static const struct acpi_device_id ibm_htk_device_ids
[] = {
3867 {TPACPI_ACPI_IBM_HKEY_HID
, 0},
3868 {TPACPI_ACPI_LENOVO_HKEY_HID
, 0},
3872 static struct tp_acpi_drv_struct ibm_hotkey_acpidriver
= {
3873 .hid
= ibm_htk_device_ids
,
3874 .notify
= hotkey_notify
,
3875 .handle
= &hkey_handle
,
3876 .type
= ACPI_DEVICE_NOTIFY
,
3879 static struct ibm_struct hotkey_driver_data
= {
3881 .read
= hotkey_read
,
3882 .write
= hotkey_write
,
3883 .exit
= hotkey_exit
,
3884 .resume
= hotkey_resume
,
3885 .suspend
= hotkey_suspend
,
3886 .acpi
= &ibm_hotkey_acpidriver
,
3889 /*************************************************************************
3890 * Bluetooth subdriver
3894 /* ACPI GBDC/SBDC bits */
3895 TP_ACPI_BLUETOOTH_HWPRESENT
= 0x01, /* Bluetooth hw available */
3896 TP_ACPI_BLUETOOTH_RADIOSSW
= 0x02, /* Bluetooth radio enabled */
3897 TP_ACPI_BLUETOOTH_RESUMECTRL
= 0x04, /* Bluetooth state at resume:
3898 0 = disable, 1 = enable */
3902 /* ACPI \BLTH commands */
3903 TP_ACPI_BLTH_GET_ULTRAPORT_ID
= 0x00, /* Get Ultraport BT ID */
3904 TP_ACPI_BLTH_GET_PWR_ON_RESUME
= 0x01, /* Get power-on-resume state */
3905 TP_ACPI_BLTH_PWR_ON_ON_RESUME
= 0x02, /* Resume powered on */
3906 TP_ACPI_BLTH_PWR_OFF_ON_RESUME
= 0x03, /* Resume powered off */
3907 TP_ACPI_BLTH_SAVE_STATE
= 0x05, /* Save state for S4/S5 */
3910 #define TPACPI_RFK_BLUETOOTH_SW_NAME "tpacpi_bluetooth_sw"
3912 static int bluetooth_get_status(void)
3916 #ifdef CONFIG_THINKPAD_ACPI_DEBUGFACILITIES
3917 if (dbg_bluetoothemul
)
3918 return (tpacpi_bluetooth_emulstate
) ?
3919 TPACPI_RFK_RADIO_ON
: TPACPI_RFK_RADIO_OFF
;
3922 if (!acpi_evalf(hkey_handle
, &status
, "GBDC", "d"))
3925 return ((status
& TP_ACPI_BLUETOOTH_RADIOSSW
) != 0) ?
3926 TPACPI_RFK_RADIO_ON
: TPACPI_RFK_RADIO_OFF
;
3929 static int bluetooth_set_status(enum tpacpi_rfkill_state state
)
3933 vdbg_printk(TPACPI_DBG_RFKILL
,
3934 "will attempt to %s bluetooth\n",
3935 (state
== TPACPI_RFK_RADIO_ON
) ? "enable" : "disable");
3937 #ifdef CONFIG_THINKPAD_ACPI_DEBUGFACILITIES
3938 if (dbg_bluetoothemul
) {
3939 tpacpi_bluetooth_emulstate
= (state
== TPACPI_RFK_RADIO_ON
);
3944 if (state
== TPACPI_RFK_RADIO_ON
)
3945 status
= TP_ACPI_BLUETOOTH_RADIOSSW
3946 | TP_ACPI_BLUETOOTH_RESUMECTRL
;
3950 if (!acpi_evalf(hkey_handle
, NULL
, "SBDC", "vd", status
))
3956 /* sysfs bluetooth enable ---------------------------------------------- */
3957 static ssize_t
bluetooth_enable_show(struct device
*dev
,
3958 struct device_attribute
*attr
,
3961 return tpacpi_rfk_sysfs_enable_show(TPACPI_RFK_BLUETOOTH_SW_ID
,
3965 static ssize_t
bluetooth_enable_store(struct device
*dev
,
3966 struct device_attribute
*attr
,
3967 const char *buf
, size_t count
)
3969 return tpacpi_rfk_sysfs_enable_store(TPACPI_RFK_BLUETOOTH_SW_ID
,
3973 static struct device_attribute dev_attr_bluetooth_enable
=
3974 __ATTR(bluetooth_enable
, S_IWUSR
| S_IRUGO
,
3975 bluetooth_enable_show
, bluetooth_enable_store
);
3977 /* --------------------------------------------------------------------- */
3979 static struct attribute
*bluetooth_attributes
[] = {
3980 &dev_attr_bluetooth_enable
.attr
,
3984 static const struct attribute_group bluetooth_attr_group
= {
3985 .attrs
= bluetooth_attributes
,
3988 static const struct tpacpi_rfk_ops bluetooth_tprfk_ops
= {
3989 .get_status
= bluetooth_get_status
,
3990 .set_status
= bluetooth_set_status
,
3993 static void bluetooth_shutdown(void)
3995 /* Order firmware to save current state to NVRAM */
3996 if (!acpi_evalf(NULL
, NULL
, "\\BLTH", "vd",
3997 TP_ACPI_BLTH_SAVE_STATE
))
3998 pr_notice("failed to save bluetooth state to NVRAM\n");
4000 vdbg_printk(TPACPI_DBG_RFKILL
,
4001 "bluestooth state saved to NVRAM\n");
4004 static void bluetooth_exit(void)
4006 sysfs_remove_group(&tpacpi_pdev
->dev
.kobj
,
4007 &bluetooth_attr_group
);
4009 tpacpi_destroy_rfkill(TPACPI_RFK_BLUETOOTH_SW_ID
);
4011 bluetooth_shutdown();
4014 static int __init
bluetooth_init(struct ibm_init_struct
*iibm
)
4019 vdbg_printk(TPACPI_DBG_INIT
| TPACPI_DBG_RFKILL
,
4020 "initializing bluetooth subdriver\n");
4022 TPACPI_ACPIHANDLE_INIT(hkey
);
4024 /* bluetooth not supported on 570, 600e/x, 770e, 770x, A21e, A2xm/p,
4025 G4x, R30, R31, R40e, R50e, T20-22, X20-21 */
4026 tp_features
.bluetooth
= hkey_handle
&&
4027 acpi_evalf(hkey_handle
, &status
, "GBDC", "qd");
4029 vdbg_printk(TPACPI_DBG_INIT
| TPACPI_DBG_RFKILL
,
4030 "bluetooth is %s, status 0x%02x\n",
4031 str_supported(tp_features
.bluetooth
),
4034 #ifdef CONFIG_THINKPAD_ACPI_DEBUGFACILITIES
4035 if (dbg_bluetoothemul
) {
4036 tp_features
.bluetooth
= 1;
4037 pr_info("bluetooth switch emulation enabled\n");
4040 if (tp_features
.bluetooth
&&
4041 !(status
& TP_ACPI_BLUETOOTH_HWPRESENT
)) {
4042 /* no bluetooth hardware present in system */
4043 tp_features
.bluetooth
= 0;
4044 dbg_printk(TPACPI_DBG_INIT
| TPACPI_DBG_RFKILL
,
4045 "bluetooth hardware not installed\n");
4048 if (!tp_features
.bluetooth
)
4051 res
= tpacpi_new_rfkill(TPACPI_RFK_BLUETOOTH_SW_ID
,
4052 &bluetooth_tprfk_ops
,
4053 RFKILL_TYPE_BLUETOOTH
,
4054 TPACPI_RFK_BLUETOOTH_SW_NAME
,
4059 res
= sysfs_create_group(&tpacpi_pdev
->dev
.kobj
,
4060 &bluetooth_attr_group
);
4062 tpacpi_destroy_rfkill(TPACPI_RFK_BLUETOOTH_SW_ID
);
4069 /* procfs -------------------------------------------------------------- */
4070 static int bluetooth_read(struct seq_file
*m
)
4072 return tpacpi_rfk_procfs_read(TPACPI_RFK_BLUETOOTH_SW_ID
, m
);
4075 static int bluetooth_write(char *buf
)
4077 return tpacpi_rfk_procfs_write(TPACPI_RFK_BLUETOOTH_SW_ID
, buf
);
4080 static struct ibm_struct bluetooth_driver_data
= {
4081 .name
= "bluetooth",
4082 .read
= bluetooth_read
,
4083 .write
= bluetooth_write
,
4084 .exit
= bluetooth_exit
,
4085 .shutdown
= bluetooth_shutdown
,
4088 /*************************************************************************
4093 /* ACPI GWAN/SWAN bits */
4094 TP_ACPI_WANCARD_HWPRESENT
= 0x01, /* Wan hw available */
4095 TP_ACPI_WANCARD_RADIOSSW
= 0x02, /* Wan radio enabled */
4096 TP_ACPI_WANCARD_RESUMECTRL
= 0x04, /* Wan state at resume:
4097 0 = disable, 1 = enable */
4100 #define TPACPI_RFK_WWAN_SW_NAME "tpacpi_wwan_sw"
4102 static int wan_get_status(void)
4106 #ifdef CONFIG_THINKPAD_ACPI_DEBUGFACILITIES
4108 return (tpacpi_wwan_emulstate
) ?
4109 TPACPI_RFK_RADIO_ON
: TPACPI_RFK_RADIO_OFF
;
4112 if (!acpi_evalf(hkey_handle
, &status
, "GWAN", "d"))
4115 return ((status
& TP_ACPI_WANCARD_RADIOSSW
) != 0) ?
4116 TPACPI_RFK_RADIO_ON
: TPACPI_RFK_RADIO_OFF
;
4119 static int wan_set_status(enum tpacpi_rfkill_state state
)
4123 vdbg_printk(TPACPI_DBG_RFKILL
,
4124 "will attempt to %s wwan\n",
4125 (state
== TPACPI_RFK_RADIO_ON
) ? "enable" : "disable");
4127 #ifdef CONFIG_THINKPAD_ACPI_DEBUGFACILITIES
4129 tpacpi_wwan_emulstate
= (state
== TPACPI_RFK_RADIO_ON
);
4134 if (state
== TPACPI_RFK_RADIO_ON
)
4135 status
= TP_ACPI_WANCARD_RADIOSSW
4136 | TP_ACPI_WANCARD_RESUMECTRL
;
4140 if (!acpi_evalf(hkey_handle
, NULL
, "SWAN", "vd", status
))
4146 /* sysfs wan enable ---------------------------------------------------- */
4147 static ssize_t
wan_enable_show(struct device
*dev
,
4148 struct device_attribute
*attr
,
4151 return tpacpi_rfk_sysfs_enable_show(TPACPI_RFK_WWAN_SW_ID
,
4155 static ssize_t
wan_enable_store(struct device
*dev
,
4156 struct device_attribute
*attr
,
4157 const char *buf
, size_t count
)
4159 return tpacpi_rfk_sysfs_enable_store(TPACPI_RFK_WWAN_SW_ID
,
4163 static struct device_attribute dev_attr_wan_enable
=
4164 __ATTR(wwan_enable
, S_IWUSR
| S_IRUGO
,
4165 wan_enable_show
, wan_enable_store
);
4167 /* --------------------------------------------------------------------- */
4169 static struct attribute
*wan_attributes
[] = {
4170 &dev_attr_wan_enable
.attr
,
4174 static const struct attribute_group wan_attr_group
= {
4175 .attrs
= wan_attributes
,
4178 static const struct tpacpi_rfk_ops wan_tprfk_ops
= {
4179 .get_status
= wan_get_status
,
4180 .set_status
= wan_set_status
,
4183 static void wan_shutdown(void)
4185 /* Order firmware to save current state to NVRAM */
4186 if (!acpi_evalf(NULL
, NULL
, "\\WGSV", "vd",
4187 TP_ACPI_WGSV_SAVE_STATE
))
4188 pr_notice("failed to save WWAN state to NVRAM\n");
4190 vdbg_printk(TPACPI_DBG_RFKILL
,
4191 "WWAN state saved to NVRAM\n");
4194 static void wan_exit(void)
4196 sysfs_remove_group(&tpacpi_pdev
->dev
.kobj
,
4199 tpacpi_destroy_rfkill(TPACPI_RFK_WWAN_SW_ID
);
4204 static int __init
wan_init(struct ibm_init_struct
*iibm
)
4209 vdbg_printk(TPACPI_DBG_INIT
| TPACPI_DBG_RFKILL
,
4210 "initializing wan subdriver\n");
4212 TPACPI_ACPIHANDLE_INIT(hkey
);
4214 tp_features
.wan
= hkey_handle
&&
4215 acpi_evalf(hkey_handle
, &status
, "GWAN", "qd");
4217 vdbg_printk(TPACPI_DBG_INIT
| TPACPI_DBG_RFKILL
,
4218 "wan is %s, status 0x%02x\n",
4219 str_supported(tp_features
.wan
),
4222 #ifdef CONFIG_THINKPAD_ACPI_DEBUGFACILITIES
4224 tp_features
.wan
= 1;
4225 pr_info("wwan switch emulation enabled\n");
4228 if (tp_features
.wan
&&
4229 !(status
& TP_ACPI_WANCARD_HWPRESENT
)) {
4230 /* no wan hardware present in system */
4231 tp_features
.wan
= 0;
4232 dbg_printk(TPACPI_DBG_INIT
| TPACPI_DBG_RFKILL
,
4233 "wan hardware not installed\n");
4236 if (!tp_features
.wan
)
4239 res
= tpacpi_new_rfkill(TPACPI_RFK_WWAN_SW_ID
,
4242 TPACPI_RFK_WWAN_SW_NAME
,
4247 res
= sysfs_create_group(&tpacpi_pdev
->dev
.kobj
,
4251 tpacpi_destroy_rfkill(TPACPI_RFK_WWAN_SW_ID
);
4258 /* procfs -------------------------------------------------------------- */
4259 static int wan_read(struct seq_file
*m
)
4261 return tpacpi_rfk_procfs_read(TPACPI_RFK_WWAN_SW_ID
, m
);
4264 static int wan_write(char *buf
)
4266 return tpacpi_rfk_procfs_write(TPACPI_RFK_WWAN_SW_ID
, buf
);
4269 static struct ibm_struct wan_driver_data
= {
4274 .shutdown
= wan_shutdown
,
4277 /*************************************************************************
4282 /* ACPI GUWB/SUWB bits */
4283 TP_ACPI_UWB_HWPRESENT
= 0x01, /* UWB hw available */
4284 TP_ACPI_UWB_RADIOSSW
= 0x02, /* UWB radio enabled */
4287 #define TPACPI_RFK_UWB_SW_NAME "tpacpi_uwb_sw"
4289 static int uwb_get_status(void)
4293 #ifdef CONFIG_THINKPAD_ACPI_DEBUGFACILITIES
4295 return (tpacpi_uwb_emulstate
) ?
4296 TPACPI_RFK_RADIO_ON
: TPACPI_RFK_RADIO_OFF
;
4299 if (!acpi_evalf(hkey_handle
, &status
, "GUWB", "d"))
4302 return ((status
& TP_ACPI_UWB_RADIOSSW
) != 0) ?
4303 TPACPI_RFK_RADIO_ON
: TPACPI_RFK_RADIO_OFF
;
4306 static int uwb_set_status(enum tpacpi_rfkill_state state
)
4310 vdbg_printk(TPACPI_DBG_RFKILL
,
4311 "will attempt to %s UWB\n",
4312 (state
== TPACPI_RFK_RADIO_ON
) ? "enable" : "disable");
4314 #ifdef CONFIG_THINKPAD_ACPI_DEBUGFACILITIES
4316 tpacpi_uwb_emulstate
= (state
== TPACPI_RFK_RADIO_ON
);
4321 if (state
== TPACPI_RFK_RADIO_ON
)
4322 status
= TP_ACPI_UWB_RADIOSSW
;
4326 if (!acpi_evalf(hkey_handle
, NULL
, "SUWB", "vd", status
))
4332 /* --------------------------------------------------------------------- */
4334 static const struct tpacpi_rfk_ops uwb_tprfk_ops
= {
4335 .get_status
= uwb_get_status
,
4336 .set_status
= uwb_set_status
,
4339 static void uwb_exit(void)
4341 tpacpi_destroy_rfkill(TPACPI_RFK_UWB_SW_ID
);
4344 static int __init
uwb_init(struct ibm_init_struct
*iibm
)
4349 vdbg_printk(TPACPI_DBG_INIT
| TPACPI_DBG_RFKILL
,
4350 "initializing uwb subdriver\n");
4352 TPACPI_ACPIHANDLE_INIT(hkey
);
4354 tp_features
.uwb
= hkey_handle
&&
4355 acpi_evalf(hkey_handle
, &status
, "GUWB", "qd");
4357 vdbg_printk(TPACPI_DBG_INIT
| TPACPI_DBG_RFKILL
,
4358 "uwb is %s, status 0x%02x\n",
4359 str_supported(tp_features
.uwb
),
4362 #ifdef CONFIG_THINKPAD_ACPI_DEBUGFACILITIES
4364 tp_features
.uwb
= 1;
4365 pr_info("uwb switch emulation enabled\n");
4368 if (tp_features
.uwb
&&
4369 !(status
& TP_ACPI_UWB_HWPRESENT
)) {
4370 /* no uwb hardware present in system */
4371 tp_features
.uwb
= 0;
4372 dbg_printk(TPACPI_DBG_INIT
,
4373 "uwb hardware not installed\n");
4376 if (!tp_features
.uwb
)
4379 res
= tpacpi_new_rfkill(TPACPI_RFK_UWB_SW_ID
,
4382 TPACPI_RFK_UWB_SW_NAME
,
4387 static struct ibm_struct uwb_driver_data
= {
4390 .flags
.experimental
= 1,
4393 /*************************************************************************
4397 #ifdef CONFIG_THINKPAD_ACPI_VIDEO
4399 enum video_access_mode
{
4400 TPACPI_VIDEO_NONE
= 0,
4401 TPACPI_VIDEO_570
, /* 570 */
4402 TPACPI_VIDEO_770
, /* 600e/x, 770e, 770x */
4403 TPACPI_VIDEO_NEW
, /* all others */
4406 enum { /* video status flags, based on VIDEO_570 */
4407 TP_ACPI_VIDEO_S_LCD
= 0x01, /* LCD output enabled */
4408 TP_ACPI_VIDEO_S_CRT
= 0x02, /* CRT output enabled */
4409 TP_ACPI_VIDEO_S_DVI
= 0x08, /* DVI output enabled */
4412 enum { /* TPACPI_VIDEO_570 constants */
4413 TP_ACPI_VIDEO_570_PHSCMD
= 0x87, /* unknown magic constant :( */
4414 TP_ACPI_VIDEO_570_PHSMASK
= 0x03, /* PHS bits that map to
4415 * video_status_flags */
4416 TP_ACPI_VIDEO_570_PHS2CMD
= 0x8b, /* unknown magic constant :( */
4417 TP_ACPI_VIDEO_570_PHS2SET
= 0x80, /* unknown magic constant :( */
4420 static enum video_access_mode video_supported
;
4421 static int video_orig_autosw
;
4423 static int video_autosw_get(void);
4424 static int video_autosw_set(int enable
);
4426 TPACPI_HANDLE(vid
, root
,
4427 "\\_SB.PCI.AGP.VGA", /* 570 */
4428 "\\_SB.PCI0.AGP0.VID0", /* 600e/x, 770x */
4429 "\\_SB.PCI0.VID0", /* 770e */
4430 "\\_SB.PCI0.VID", /* A21e, G4x, R50e, X30, X40 */
4431 "\\_SB.PCI0.AGP.VGA", /* X100e and a few others */
4432 "\\_SB.PCI0.AGP.VID", /* all others */
4435 TPACPI_HANDLE(vid2
, root
, "\\_SB.PCI0.AGPB.VID"); /* G41 */
4437 static int __init
video_init(struct ibm_init_struct
*iibm
)
4441 vdbg_printk(TPACPI_DBG_INIT
, "initializing video subdriver\n");
4443 TPACPI_ACPIHANDLE_INIT(vid
);
4444 if (tpacpi_is_ibm())
4445 TPACPI_ACPIHANDLE_INIT(vid2
);
4447 if (vid2_handle
&& acpi_evalf(NULL
, &ivga
, "\\IVGA", "d") && ivga
)
4448 /* G41, assume IVGA doesn't change */
4449 vid_handle
= vid2_handle
;
4452 /* video switching not supported on R30, R31 */
4453 video_supported
= TPACPI_VIDEO_NONE
;
4454 else if (tpacpi_is_ibm() &&
4455 acpi_evalf(vid_handle
, &video_orig_autosw
, "SWIT", "qd"))
4457 video_supported
= TPACPI_VIDEO_570
;
4458 else if (tpacpi_is_ibm() &&
4459 acpi_evalf(vid_handle
, &video_orig_autosw
, "^VADL", "qd"))
4460 /* 600e/x, 770e, 770x */
4461 video_supported
= TPACPI_VIDEO_770
;
4464 video_supported
= TPACPI_VIDEO_NEW
;
4466 vdbg_printk(TPACPI_DBG_INIT
, "video is %s, mode %d\n",
4467 str_supported(video_supported
!= TPACPI_VIDEO_NONE
),
4470 return (video_supported
!= TPACPI_VIDEO_NONE
)? 0 : 1;
4473 static void video_exit(void)
4475 dbg_printk(TPACPI_DBG_EXIT
,
4476 "restoring original video autoswitch mode\n");
4477 if (video_autosw_set(video_orig_autosw
))
4478 pr_err("error while trying to restore original "
4479 "video autoswitch mode\n");
4482 static int video_outputsw_get(void)
4487 switch (video_supported
) {
4488 case TPACPI_VIDEO_570
:
4489 if (!acpi_evalf(NULL
, &i
, "\\_SB.PHS", "dd",
4490 TP_ACPI_VIDEO_570_PHSCMD
))
4492 status
= i
& TP_ACPI_VIDEO_570_PHSMASK
;
4494 case TPACPI_VIDEO_770
:
4495 if (!acpi_evalf(NULL
, &i
, "\\VCDL", "d"))
4498 status
|= TP_ACPI_VIDEO_S_LCD
;
4499 if (!acpi_evalf(NULL
, &i
, "\\VCDC", "d"))
4502 status
|= TP_ACPI_VIDEO_S_CRT
;
4504 case TPACPI_VIDEO_NEW
:
4505 if (!acpi_evalf(NULL
, NULL
, "\\VUPS", "vd", 1) ||
4506 !acpi_evalf(NULL
, &i
, "\\VCDC", "d"))
4509 status
|= TP_ACPI_VIDEO_S_CRT
;
4511 if (!acpi_evalf(NULL
, NULL
, "\\VUPS", "vd", 0) ||
4512 !acpi_evalf(NULL
, &i
, "\\VCDL", "d"))
4515 status
|= TP_ACPI_VIDEO_S_LCD
;
4516 if (!acpi_evalf(NULL
, &i
, "\\VCDD", "d"))
4519 status
|= TP_ACPI_VIDEO_S_DVI
;
4528 static int video_outputsw_set(int status
)
4533 switch (video_supported
) {
4534 case TPACPI_VIDEO_570
:
4535 res
= acpi_evalf(NULL
, NULL
,
4536 "\\_SB.PHS2", "vdd",
4537 TP_ACPI_VIDEO_570_PHS2CMD
,
4538 status
| TP_ACPI_VIDEO_570_PHS2SET
);
4540 case TPACPI_VIDEO_770
:
4541 autosw
= video_autosw_get();
4545 res
= video_autosw_set(1);
4548 res
= acpi_evalf(vid_handle
, NULL
,
4549 "ASWT", "vdd", status
* 0x100, 0);
4550 if (!autosw
&& video_autosw_set(autosw
)) {
4551 pr_err("video auto-switch left enabled due to error\n");
4555 case TPACPI_VIDEO_NEW
:
4556 res
= acpi_evalf(NULL
, NULL
, "\\VUPS", "vd", 0x80) &&
4557 acpi_evalf(NULL
, NULL
, "\\VSDS", "vdd", status
, 1);
4563 return (res
)? 0 : -EIO
;
4566 static int video_autosw_get(void)
4570 switch (video_supported
) {
4571 case TPACPI_VIDEO_570
:
4572 if (!acpi_evalf(vid_handle
, &autosw
, "SWIT", "d"))
4575 case TPACPI_VIDEO_770
:
4576 case TPACPI_VIDEO_NEW
:
4577 if (!acpi_evalf(vid_handle
, &autosw
, "^VDEE", "d"))
4587 static int video_autosw_set(int enable
)
4589 if (!acpi_evalf(vid_handle
, NULL
, "_DOS", "vd", (enable
)? 1 : 0))
4594 static int video_outputsw_cycle(void)
4596 int autosw
= video_autosw_get();
4602 switch (video_supported
) {
4603 case TPACPI_VIDEO_570
:
4604 res
= video_autosw_set(1);
4607 res
= acpi_evalf(ec_handle
, NULL
, "_Q16", "v");
4609 case TPACPI_VIDEO_770
:
4610 case TPACPI_VIDEO_NEW
:
4611 res
= video_autosw_set(1);
4614 res
= acpi_evalf(vid_handle
, NULL
, "VSWT", "v");
4619 if (!autosw
&& video_autosw_set(autosw
)) {
4620 pr_err("video auto-switch left enabled due to error\n");
4624 return (res
)? 0 : -EIO
;
4627 static int video_expand_toggle(void)
4629 switch (video_supported
) {
4630 case TPACPI_VIDEO_570
:
4631 return acpi_evalf(ec_handle
, NULL
, "_Q17", "v")?
4633 case TPACPI_VIDEO_770
:
4634 return acpi_evalf(vid_handle
, NULL
, "VEXP", "v")?
4636 case TPACPI_VIDEO_NEW
:
4637 return acpi_evalf(NULL
, NULL
, "\\VEXP", "v")?
4645 static int video_read(struct seq_file
*m
)
4649 if (video_supported
== TPACPI_VIDEO_NONE
) {
4650 seq_printf(m
, "status:\t\tnot supported\n");
4654 /* Even reads can crash X.org, so... */
4655 if (!capable(CAP_SYS_ADMIN
))
4658 status
= video_outputsw_get();
4662 autosw
= video_autosw_get();
4666 seq_printf(m
, "status:\t\tsupported\n");
4667 seq_printf(m
, "lcd:\t\t%s\n", enabled(status
, 0));
4668 seq_printf(m
, "crt:\t\t%s\n", enabled(status
, 1));
4669 if (video_supported
== TPACPI_VIDEO_NEW
)
4670 seq_printf(m
, "dvi:\t\t%s\n", enabled(status
, 3));
4671 seq_printf(m
, "auto:\t\t%s\n", enabled(autosw
, 0));
4672 seq_printf(m
, "commands:\tlcd_enable, lcd_disable\n");
4673 seq_printf(m
, "commands:\tcrt_enable, crt_disable\n");
4674 if (video_supported
== TPACPI_VIDEO_NEW
)
4675 seq_printf(m
, "commands:\tdvi_enable, dvi_disable\n");
4676 seq_printf(m
, "commands:\tauto_enable, auto_disable\n");
4677 seq_printf(m
, "commands:\tvideo_switch, expand_toggle\n");
4682 static int video_write(char *buf
)
4685 int enable
, disable
, status
;
4688 if (video_supported
== TPACPI_VIDEO_NONE
)
4691 /* Even reads can crash X.org, let alone writes... */
4692 if (!capable(CAP_SYS_ADMIN
))
4698 while ((cmd
= next_cmd(&buf
))) {
4699 if (strlencmp(cmd
, "lcd_enable") == 0) {
4700 enable
|= TP_ACPI_VIDEO_S_LCD
;
4701 } else if (strlencmp(cmd
, "lcd_disable") == 0) {
4702 disable
|= TP_ACPI_VIDEO_S_LCD
;
4703 } else if (strlencmp(cmd
, "crt_enable") == 0) {
4704 enable
|= TP_ACPI_VIDEO_S_CRT
;
4705 } else if (strlencmp(cmd
, "crt_disable") == 0) {
4706 disable
|= TP_ACPI_VIDEO_S_CRT
;
4707 } else if (video_supported
== TPACPI_VIDEO_NEW
&&
4708 strlencmp(cmd
, "dvi_enable") == 0) {
4709 enable
|= TP_ACPI_VIDEO_S_DVI
;
4710 } else if (video_supported
== TPACPI_VIDEO_NEW
&&
4711 strlencmp(cmd
, "dvi_disable") == 0) {
4712 disable
|= TP_ACPI_VIDEO_S_DVI
;
4713 } else if (strlencmp(cmd
, "auto_enable") == 0) {
4714 res
= video_autosw_set(1);
4717 } else if (strlencmp(cmd
, "auto_disable") == 0) {
4718 res
= video_autosw_set(0);
4721 } else if (strlencmp(cmd
, "video_switch") == 0) {
4722 res
= video_outputsw_cycle();
4725 } else if (strlencmp(cmd
, "expand_toggle") == 0) {
4726 res
= video_expand_toggle();
4733 if (enable
|| disable
) {
4734 status
= video_outputsw_get();
4737 res
= video_outputsw_set((status
& ~disable
) | enable
);
4745 static struct ibm_struct video_driver_data
= {
4748 .write
= video_write
,
4752 #endif /* CONFIG_THINKPAD_ACPI_VIDEO */
4754 /*************************************************************************
4755 * Light (thinklight) subdriver
4758 TPACPI_HANDLE(lght
, root
, "\\LGHT"); /* A21e, A2xm/p, T20-22, X20-21 */
4759 TPACPI_HANDLE(ledb
, ec
, "LEDB"); /* G4x */
4761 static int light_get_status(void)
4765 if (tp_features
.light_status
) {
4766 if (!acpi_evalf(ec_handle
, &status
, "KBLT", "d"))
4774 static int light_set_status(int status
)
4778 if (tp_features
.light
) {
4780 rc
= acpi_evalf(cmos_handle
, NULL
, NULL
, "vd",
4782 TP_CMOS_THINKLIGHT_ON
:
4783 TP_CMOS_THINKLIGHT_OFF
);
4785 rc
= acpi_evalf(lght_handle
, NULL
, NULL
, "vd",
4788 return (rc
)? 0 : -EIO
;
4794 static void light_set_status_worker(struct work_struct
*work
)
4796 struct tpacpi_led_classdev
*data
=
4797 container_of(work
, struct tpacpi_led_classdev
, work
);
4799 if (likely(tpacpi_lifecycle
== TPACPI_LIFE_RUNNING
))
4800 light_set_status((data
->new_state
!= TPACPI_LED_OFF
));
4803 static void light_sysfs_set(struct led_classdev
*led_cdev
,
4804 enum led_brightness brightness
)
4806 struct tpacpi_led_classdev
*data
=
4807 container_of(led_cdev
,
4808 struct tpacpi_led_classdev
,
4810 data
->new_state
= (brightness
!= LED_OFF
) ?
4811 TPACPI_LED_ON
: TPACPI_LED_OFF
;
4812 queue_work(tpacpi_wq
, &data
->work
);
4815 static enum led_brightness
light_sysfs_get(struct led_classdev
*led_cdev
)
4817 return (light_get_status() == 1)? LED_FULL
: LED_OFF
;
4820 static struct tpacpi_led_classdev tpacpi_led_thinklight
= {
4822 .name
= "tpacpi::thinklight",
4823 .brightness_set
= &light_sysfs_set
,
4824 .brightness_get
= &light_sysfs_get
,
4828 static int __init
light_init(struct ibm_init_struct
*iibm
)
4832 vdbg_printk(TPACPI_DBG_INIT
, "initializing light subdriver\n");
4834 if (tpacpi_is_ibm()) {
4835 TPACPI_ACPIHANDLE_INIT(ledb
);
4836 TPACPI_ACPIHANDLE_INIT(lght
);
4838 TPACPI_ACPIHANDLE_INIT(cmos
);
4839 INIT_WORK(&tpacpi_led_thinklight
.work
, light_set_status_worker
);
4841 /* light not supported on 570, 600e/x, 770e, 770x, G4x, R30, R31 */
4842 tp_features
.light
= (cmos_handle
|| lght_handle
) && !ledb_handle
;
4844 if (tp_features
.light
)
4845 /* light status not supported on
4846 570, 600e/x, 770e, 770x, G4x, R30, R31, R32, X20 */
4847 tp_features
.light_status
=
4848 acpi_evalf(ec_handle
, NULL
, "KBLT", "qv");
4850 vdbg_printk(TPACPI_DBG_INIT
, "light is %s, light status is %s\n",
4851 str_supported(tp_features
.light
),
4852 str_supported(tp_features
.light_status
));
4854 if (!tp_features
.light
)
4857 rc
= led_classdev_register(&tpacpi_pdev
->dev
,
4858 &tpacpi_led_thinklight
.led_classdev
);
4861 tp_features
.light
= 0;
4862 tp_features
.light_status
= 0;
4870 static void light_exit(void)
4872 led_classdev_unregister(&tpacpi_led_thinklight
.led_classdev
);
4873 if (work_pending(&tpacpi_led_thinklight
.work
))
4874 flush_workqueue(tpacpi_wq
);
4877 static int light_read(struct seq_file
*m
)
4881 if (!tp_features
.light
) {
4882 seq_printf(m
, "status:\t\tnot supported\n");
4883 } else if (!tp_features
.light_status
) {
4884 seq_printf(m
, "status:\t\tunknown\n");
4885 seq_printf(m
, "commands:\ton, off\n");
4887 status
= light_get_status();
4890 seq_printf(m
, "status:\t\t%s\n", onoff(status
, 0));
4891 seq_printf(m
, "commands:\ton, off\n");
4897 static int light_write(char *buf
)
4902 if (!tp_features
.light
)
4905 while ((cmd
= next_cmd(&buf
))) {
4906 if (strlencmp(cmd
, "on") == 0) {
4908 } else if (strlencmp(cmd
, "off") == 0) {
4914 return light_set_status(newstatus
);
4917 static struct ibm_struct light_driver_data
= {
4920 .write
= light_write
,
4924 /*************************************************************************
4928 /* sysfs cmos_command -------------------------------------------------- */
4929 static ssize_t
cmos_command_store(struct device
*dev
,
4930 struct device_attribute
*attr
,
4931 const char *buf
, size_t count
)
4933 unsigned long cmos_cmd
;
4936 if (parse_strtoul(buf
, 21, &cmos_cmd
))
4939 res
= issue_thinkpad_cmos_command(cmos_cmd
);
4940 return (res
)? res
: count
;
4943 static struct device_attribute dev_attr_cmos_command
=
4944 __ATTR(cmos_command
, S_IWUSR
, NULL
, cmos_command_store
);
4946 /* --------------------------------------------------------------------- */
4948 static int __init
cmos_init(struct ibm_init_struct
*iibm
)
4952 vdbg_printk(TPACPI_DBG_INIT
,
4953 "initializing cmos commands subdriver\n");
4955 TPACPI_ACPIHANDLE_INIT(cmos
);
4957 vdbg_printk(TPACPI_DBG_INIT
, "cmos commands are %s\n",
4958 str_supported(cmos_handle
!= NULL
));
4960 res
= device_create_file(&tpacpi_pdev
->dev
, &dev_attr_cmos_command
);
4964 return (cmos_handle
)? 0 : 1;
4967 static void cmos_exit(void)
4969 device_remove_file(&tpacpi_pdev
->dev
, &dev_attr_cmos_command
);
4972 static int cmos_read(struct seq_file
*m
)
4974 /* cmos not supported on 570, 600e/x, 770e, 770x, A21e, A2xm/p,
4975 R30, R31, T20-22, X20-21 */
4977 seq_printf(m
, "status:\t\tnot supported\n");
4979 seq_printf(m
, "status:\t\tsupported\n");
4980 seq_printf(m
, "commands:\t<cmd> (<cmd> is 0-21)\n");
4986 static int cmos_write(char *buf
)
4991 while ((cmd
= next_cmd(&buf
))) {
4992 if (sscanf(cmd
, "%u", &cmos_cmd
) == 1 &&
4993 cmos_cmd
>= 0 && cmos_cmd
<= 21) {
4998 res
= issue_thinkpad_cmos_command(cmos_cmd
);
5006 static struct ibm_struct cmos_driver_data
= {
5009 .write
= cmos_write
,
5013 /*************************************************************************
5017 enum led_access_mode
{
5018 TPACPI_LED_NONE
= 0,
5019 TPACPI_LED_570
, /* 570 */
5020 TPACPI_LED_OLD
, /* 600e/x, 770e, 770x, A21e, A2xm/p, T20-22, X20-21 */
5021 TPACPI_LED_NEW
, /* all others */
5024 enum { /* For TPACPI_LED_OLD */
5025 TPACPI_LED_EC_HLCL
= 0x0c, /* EC reg to get led to power on */
5026 TPACPI_LED_EC_HLBL
= 0x0d, /* EC reg to blink a lit led */
5027 TPACPI_LED_EC_HLMS
= 0x0e, /* EC reg to select led to command */
5030 static enum led_access_mode led_supported
;
5032 static acpi_handle led_handle
;
5034 #define TPACPI_LED_NUMLEDS 16
5035 static struct tpacpi_led_classdev
*tpacpi_leds
;
5036 static enum led_status_t tpacpi_led_state_cache
[TPACPI_LED_NUMLEDS
];
5037 static const char * const tpacpi_led_names
[TPACPI_LED_NUMLEDS
] = {
5038 /* there's a limit of 19 chars + NULL before 2.6.26 */
5040 "tpacpi:orange:batt",
5041 "tpacpi:green:batt",
5042 "tpacpi::dock_active",
5043 "tpacpi::bay_active",
5044 "tpacpi::dock_batt",
5045 "tpacpi::unknown_led",
5047 "tpacpi::dock_status1",
5048 "tpacpi::dock_status2",
5049 "tpacpi::unknown_led2",
5050 "tpacpi::unknown_led3",
5051 "tpacpi::thinkvantage",
5053 #define TPACPI_SAFE_LEDS 0x1081U
5055 static inline bool tpacpi_is_led_restricted(const unsigned int led
)
5057 #ifdef CONFIG_THINKPAD_ACPI_UNSAFE_LEDS
5060 return (1U & (TPACPI_SAFE_LEDS
>> led
)) == 0;
5064 static int led_get_status(const unsigned int led
)
5067 enum led_status_t led_s
;
5069 switch (led_supported
) {
5070 case TPACPI_LED_570
:
5071 if (!acpi_evalf(ec_handle
,
5072 &status
, "GLED", "dd", 1 << led
))
5074 led_s
= (status
== 0)?
5079 tpacpi_led_state_cache
[led
] = led_s
;
5088 static int led_set_status(const unsigned int led
,
5089 const enum led_status_t ledstatus
)
5091 /* off, on, blink. Index is led_status_t */
5092 static const unsigned int led_sled_arg1
[] = { 0, 1, 3 };
5093 static const unsigned int led_led_arg1
[] = { 0, 0x80, 0xc0 };
5097 switch (led_supported
) {
5098 case TPACPI_LED_570
:
5100 if (unlikely(led
> 7))
5102 if (unlikely(tpacpi_is_led_restricted(led
)))
5104 if (!acpi_evalf(led_handle
, NULL
, NULL
, "vdd",
5105 (1 << led
), led_sled_arg1
[ledstatus
]))
5108 case TPACPI_LED_OLD
:
5109 /* 600e/x, 770e, 770x, A21e, A2xm/p, T20-22, X20 */
5110 if (unlikely(led
> 7))
5112 if (unlikely(tpacpi_is_led_restricted(led
)))
5114 rc
= ec_write(TPACPI_LED_EC_HLMS
, (1 << led
));
5116 rc
= ec_write(TPACPI_LED_EC_HLBL
,
5117 (ledstatus
== TPACPI_LED_BLINK
) << led
);
5119 rc
= ec_write(TPACPI_LED_EC_HLCL
,
5120 (ledstatus
!= TPACPI_LED_OFF
) << led
);
5122 case TPACPI_LED_NEW
:
5124 if (unlikely(led
>= TPACPI_LED_NUMLEDS
))
5126 if (unlikely(tpacpi_is_led_restricted(led
)))
5128 if (!acpi_evalf(led_handle
, NULL
, NULL
, "vdd",
5129 led
, led_led_arg1
[ledstatus
]))
5137 tpacpi_led_state_cache
[led
] = ledstatus
;
5142 static void led_set_status_worker(struct work_struct
*work
)
5144 struct tpacpi_led_classdev
*data
=
5145 container_of(work
, struct tpacpi_led_classdev
, work
);
5147 if (likely(tpacpi_lifecycle
== TPACPI_LIFE_RUNNING
))
5148 led_set_status(data
->led
, data
->new_state
);
5151 static void led_sysfs_set(struct led_classdev
*led_cdev
,
5152 enum led_brightness brightness
)
5154 struct tpacpi_led_classdev
*data
= container_of(led_cdev
,
5155 struct tpacpi_led_classdev
, led_classdev
);
5157 if (brightness
== LED_OFF
)
5158 data
->new_state
= TPACPI_LED_OFF
;
5159 else if (tpacpi_led_state_cache
[data
->led
] != TPACPI_LED_BLINK
)
5160 data
->new_state
= TPACPI_LED_ON
;
5162 data
->new_state
= TPACPI_LED_BLINK
;
5164 queue_work(tpacpi_wq
, &data
->work
);
5167 static int led_sysfs_blink_set(struct led_classdev
*led_cdev
,
5168 unsigned long *delay_on
, unsigned long *delay_off
)
5170 struct tpacpi_led_classdev
*data
= container_of(led_cdev
,
5171 struct tpacpi_led_classdev
, led_classdev
);
5173 /* Can we choose the flash rate? */
5174 if (*delay_on
== 0 && *delay_off
== 0) {
5175 /* yes. set them to the hardware blink rate (1 Hz) */
5176 *delay_on
= 500; /* ms */
5177 *delay_off
= 500; /* ms */
5178 } else if ((*delay_on
!= 500) || (*delay_off
!= 500))
5181 data
->new_state
= TPACPI_LED_BLINK
;
5182 queue_work(tpacpi_wq
, &data
->work
);
5187 static enum led_brightness
led_sysfs_get(struct led_classdev
*led_cdev
)
5191 struct tpacpi_led_classdev
*data
= container_of(led_cdev
,
5192 struct tpacpi_led_classdev
, led_classdev
);
5194 rc
= led_get_status(data
->led
);
5196 if (rc
== TPACPI_LED_OFF
|| rc
< 0)
5197 rc
= LED_OFF
; /* no error handling in led class :( */
5204 static void led_exit(void)
5208 for (i
= 0; i
< TPACPI_LED_NUMLEDS
; i
++) {
5209 if (tpacpi_leds
[i
].led_classdev
.name
)
5210 led_classdev_unregister(&tpacpi_leds
[i
].led_classdev
);
5216 static int __init
tpacpi_init_led(unsigned int led
)
5220 tpacpi_leds
[led
].led
= led
;
5222 /* LEDs with no name don't get registered */
5223 if (!tpacpi_led_names
[led
])
5226 tpacpi_leds
[led
].led_classdev
.brightness_set
= &led_sysfs_set
;
5227 tpacpi_leds
[led
].led_classdev
.blink_set
= &led_sysfs_blink_set
;
5228 if (led_supported
== TPACPI_LED_570
)
5229 tpacpi_leds
[led
].led_classdev
.brightness_get
=
5232 tpacpi_leds
[led
].led_classdev
.name
= tpacpi_led_names
[led
];
5234 INIT_WORK(&tpacpi_leds
[led
].work
, led_set_status_worker
);
5236 rc
= led_classdev_register(&tpacpi_pdev
->dev
,
5237 &tpacpi_leds
[led
].led_classdev
);
5239 tpacpi_leds
[led
].led_classdev
.name
= NULL
;
5244 static const struct tpacpi_quirk led_useful_qtable
[] __initconst
= {
5245 TPACPI_Q_IBM('1', 'E', 0x009f), /* A30 */
5246 TPACPI_Q_IBM('1', 'N', 0x009f), /* A31 */
5247 TPACPI_Q_IBM('1', 'G', 0x009f), /* A31 */
5249 TPACPI_Q_IBM('1', 'I', 0x0097), /* T30 */
5250 TPACPI_Q_IBM('1', 'R', 0x0097), /* T40, T41, T42, R50, R51 */
5251 TPACPI_Q_IBM('7', '0', 0x0097), /* T43, R52 */
5252 TPACPI_Q_IBM('1', 'Y', 0x0097), /* T43 */
5253 TPACPI_Q_IBM('1', 'W', 0x0097), /* R50e */
5254 TPACPI_Q_IBM('1', 'V', 0x0097), /* R51 */
5255 TPACPI_Q_IBM('7', '8', 0x0097), /* R51e */
5256 TPACPI_Q_IBM('7', '6', 0x0097), /* R52 */
5258 TPACPI_Q_IBM('1', 'K', 0x00bf), /* X30 */
5259 TPACPI_Q_IBM('1', 'Q', 0x00bf), /* X31, X32 */
5260 TPACPI_Q_IBM('1', 'U', 0x00bf), /* X40 */
5261 TPACPI_Q_IBM('7', '4', 0x00bf), /* X41 */
5262 TPACPI_Q_IBM('7', '5', 0x00bf), /* X41t */
5264 TPACPI_Q_IBM('7', '9', 0x1f97), /* T60 (1) */
5265 TPACPI_Q_IBM('7', '7', 0x1f97), /* Z60* (1) */
5266 TPACPI_Q_IBM('7', 'F', 0x1f97), /* Z61* (1) */
5267 TPACPI_Q_IBM('7', 'B', 0x1fb7), /* X60 (1) */
5269 /* (1) - may have excess leds enabled on MSB */
5271 /* Defaults (order matters, keep last, don't reorder!) */
5273 .vendor
= PCI_VENDOR_ID_LENOVO
,
5274 .bios
= TPACPI_MATCH_ANY
, .ec
= TPACPI_MATCH_ANY
,
5277 { /* IBM ThinkPads with no EC version string */
5278 .vendor
= PCI_VENDOR_ID_IBM
,
5279 .bios
= TPACPI_MATCH_ANY
, .ec
= TPACPI_MATCH_UNKNOWN
,
5282 { /* IBM ThinkPads with EC version string */
5283 .vendor
= PCI_VENDOR_ID_IBM
,
5284 .bios
= TPACPI_MATCH_ANY
, .ec
= TPACPI_MATCH_ANY
,
5289 #undef TPACPI_LEDQ_IBM
5290 #undef TPACPI_LEDQ_LNV
5292 static enum led_access_mode __init
led_init_detect_mode(void)
5296 if (tpacpi_is_ibm()) {
5298 status
= acpi_get_handle(ec_handle
, "SLED", &led_handle
);
5299 if (ACPI_SUCCESS(status
))
5300 return TPACPI_LED_570
;
5302 /* 600e/x, 770e, 770x, A21e, A2xm/p, T20-22, X20-21 */
5303 status
= acpi_get_handle(ec_handle
, "SYSL", &led_handle
);
5304 if (ACPI_SUCCESS(status
))
5305 return TPACPI_LED_OLD
;
5309 status
= acpi_get_handle(ec_handle
, "LED", &led_handle
);
5310 if (ACPI_SUCCESS(status
))
5311 return TPACPI_LED_NEW
;
5313 /* R30, R31, and unknown firmwares */
5315 return TPACPI_LED_NONE
;
5318 static int __init
led_init(struct ibm_init_struct
*iibm
)
5322 unsigned long useful_leds
;
5324 vdbg_printk(TPACPI_DBG_INIT
, "initializing LED subdriver\n");
5326 led_supported
= led_init_detect_mode();
5328 vdbg_printk(TPACPI_DBG_INIT
, "LED commands are %s, mode %d\n",
5329 str_supported(led_supported
), led_supported
);
5331 if (led_supported
== TPACPI_LED_NONE
)
5334 tpacpi_leds
= kzalloc(sizeof(*tpacpi_leds
) * TPACPI_LED_NUMLEDS
,
5337 pr_err("Out of memory for LED data\n");
5341 useful_leds
= tpacpi_check_quirks(led_useful_qtable
,
5342 ARRAY_SIZE(led_useful_qtable
));
5344 for (i
= 0; i
< TPACPI_LED_NUMLEDS
; i
++) {
5345 if (!tpacpi_is_led_restricted(i
) &&
5346 test_bit(i
, &useful_leds
)) {
5347 rc
= tpacpi_init_led(i
);
5355 #ifdef CONFIG_THINKPAD_ACPI_UNSAFE_LEDS
5356 pr_notice("warning: userspace override of important "
5357 "firmware LEDs is enabled\n");
5362 #define str_led_status(s) \
5363 ((s) == TPACPI_LED_OFF ? "off" : \
5364 ((s) == TPACPI_LED_ON ? "on" : "blinking"))
5366 static int led_read(struct seq_file
*m
)
5368 if (!led_supported
) {
5369 seq_printf(m
, "status:\t\tnot supported\n");
5372 seq_printf(m
, "status:\t\tsupported\n");
5374 if (led_supported
== TPACPI_LED_570
) {
5377 for (i
= 0; i
< 8; i
++) {
5378 status
= led_get_status(i
);
5381 seq_printf(m
, "%d:\t\t%s\n",
5382 i
, str_led_status(status
));
5386 seq_printf(m
, "commands:\t"
5387 "<led> on, <led> off, <led> blink (<led> is 0-15)\n");
5392 static int led_write(char *buf
)
5396 enum led_status_t s
;
5401 while ((cmd
= next_cmd(&buf
))) {
5402 if (sscanf(cmd
, "%d", &led
) != 1 || led
< 0 || led
> 15)
5405 if (strstr(cmd
, "off")) {
5407 } else if (strstr(cmd
, "on")) {
5409 } else if (strstr(cmd
, "blink")) {
5410 s
= TPACPI_LED_BLINK
;
5415 rc
= led_set_status(led
, s
);
5423 static struct ibm_struct led_driver_data
= {
5430 /*************************************************************************
5434 TPACPI_HANDLE(beep
, ec
, "BEEP"); /* all except R30, R31 */
5436 #define TPACPI_BEEP_Q1 0x0001
5438 static const struct tpacpi_quirk beep_quirk_table
[] __initconst
= {
5439 TPACPI_Q_IBM('I', 'M', TPACPI_BEEP_Q1
), /* 570 */
5440 TPACPI_Q_IBM('I', 'U', TPACPI_BEEP_Q1
), /* 570E - unverified */
5443 static int __init
beep_init(struct ibm_init_struct
*iibm
)
5445 unsigned long quirks
;
5447 vdbg_printk(TPACPI_DBG_INIT
, "initializing beep subdriver\n");
5449 TPACPI_ACPIHANDLE_INIT(beep
);
5451 vdbg_printk(TPACPI_DBG_INIT
, "beep is %s\n",
5452 str_supported(beep_handle
!= NULL
));
5454 quirks
= tpacpi_check_quirks(beep_quirk_table
,
5455 ARRAY_SIZE(beep_quirk_table
));
5457 tp_features
.beep_needs_two_args
= !!(quirks
& TPACPI_BEEP_Q1
);
5459 return (beep_handle
)? 0 : 1;
5462 static int beep_read(struct seq_file
*m
)
5465 seq_printf(m
, "status:\t\tnot supported\n");
5467 seq_printf(m
, "status:\t\tsupported\n");
5468 seq_printf(m
, "commands:\t<cmd> (<cmd> is 0-17)\n");
5474 static int beep_write(char *buf
)
5482 while ((cmd
= next_cmd(&buf
))) {
5483 if (sscanf(cmd
, "%u", &beep_cmd
) == 1 &&
5484 beep_cmd
>= 0 && beep_cmd
<= 17) {
5488 if (tp_features
.beep_needs_two_args
) {
5489 if (!acpi_evalf(beep_handle
, NULL
, NULL
, "vdd",
5493 if (!acpi_evalf(beep_handle
, NULL
, NULL
, "vd",
5502 static struct ibm_struct beep_driver_data
= {
5505 .write
= beep_write
,
5508 /*************************************************************************
5512 enum thermal_access_mode
{
5513 TPACPI_THERMAL_NONE
= 0, /* No thermal support */
5514 TPACPI_THERMAL_ACPI_TMP07
, /* Use ACPI TMP0-7 */
5515 TPACPI_THERMAL_ACPI_UPDT
, /* Use ACPI TMP0-7 with UPDT */
5516 TPACPI_THERMAL_TPEC_8
, /* Use ACPI EC regs, 8 sensors */
5517 TPACPI_THERMAL_TPEC_16
, /* Use ACPI EC regs, 16 sensors */
5520 enum { /* TPACPI_THERMAL_TPEC_* */
5521 TP_EC_THERMAL_TMP0
= 0x78, /* ACPI EC regs TMP 0..7 */
5522 TP_EC_THERMAL_TMP8
= 0xC0, /* ACPI EC regs TMP 8..15 */
5523 TP_EC_THERMAL_TMP_NA
= -128, /* ACPI EC sensor not available */
5525 TPACPI_THERMAL_SENSOR_NA
= -128000, /* Sensor not available */
5529 #define TPACPI_MAX_THERMAL_SENSORS 16 /* Max thermal sensors supported */
5530 struct ibm_thermal_sensors_struct
{
5531 s32 temp
[TPACPI_MAX_THERMAL_SENSORS
];
5534 static enum thermal_access_mode thermal_read_mode
;
5536 /* idx is zero-based */
5537 static int thermal_get_sensor(int idx
, s32
*value
)
5543 t
= TP_EC_THERMAL_TMP0
;
5545 switch (thermal_read_mode
) {
5546 #if TPACPI_MAX_THERMAL_SENSORS >= 16
5547 case TPACPI_THERMAL_TPEC_16
:
5548 if (idx
>= 8 && idx
<= 15) {
5549 t
= TP_EC_THERMAL_TMP8
;
5554 case TPACPI_THERMAL_TPEC_8
:
5556 if (!acpi_ec_read(t
+ idx
, &tmp
))
5558 *value
= tmp
* 1000;
5563 case TPACPI_THERMAL_ACPI_UPDT
:
5565 snprintf(tmpi
, sizeof(tmpi
), "TMP%c", '0' + idx
);
5566 if (!acpi_evalf(ec_handle
, NULL
, "UPDT", "v"))
5568 if (!acpi_evalf(ec_handle
, &t
, tmpi
, "d"))
5570 *value
= (t
- 2732) * 100;
5575 case TPACPI_THERMAL_ACPI_TMP07
:
5577 snprintf(tmpi
, sizeof(tmpi
), "TMP%c", '0' + idx
);
5578 if (!acpi_evalf(ec_handle
, &t
, tmpi
, "d"))
5580 if (t
> 127 || t
< -127)
5581 t
= TP_EC_THERMAL_TMP_NA
;
5587 case TPACPI_THERMAL_NONE
:
5595 static int thermal_get_sensors(struct ibm_thermal_sensors_struct
*s
)
5606 if (thermal_read_mode
== TPACPI_THERMAL_TPEC_16
)
5609 for (i
= 0 ; i
< n
; i
++) {
5610 res
= thermal_get_sensor(i
, &s
->temp
[i
]);
5618 static void thermal_dump_all_sensors(void)
5621 struct ibm_thermal_sensors_struct t
;
5623 n
= thermal_get_sensors(&t
);
5627 pr_notice("temperatures (Celsius):");
5629 for (i
= 0; i
< n
; i
++) {
5630 if (t
.temp
[i
] != TPACPI_THERMAL_SENSOR_NA
)
5631 pr_cont(" %d", (int)(t
.temp
[i
] / 1000));
5639 /* sysfs temp##_input -------------------------------------------------- */
5641 static ssize_t
thermal_temp_input_show(struct device
*dev
,
5642 struct device_attribute
*attr
,
5645 struct sensor_device_attribute
*sensor_attr
=
5646 to_sensor_dev_attr(attr
);
5647 int idx
= sensor_attr
->index
;
5651 res
= thermal_get_sensor(idx
, &value
);
5654 if (value
== TPACPI_THERMAL_SENSOR_NA
)
5657 return snprintf(buf
, PAGE_SIZE
, "%d\n", value
);
5660 #define THERMAL_SENSOR_ATTR_TEMP(_idxA, _idxB) \
5661 SENSOR_ATTR(temp##_idxA##_input, S_IRUGO, \
5662 thermal_temp_input_show, NULL, _idxB)
5664 static struct sensor_device_attribute sensor_dev_attr_thermal_temp_input
[] = {
5665 THERMAL_SENSOR_ATTR_TEMP(1, 0),
5666 THERMAL_SENSOR_ATTR_TEMP(2, 1),
5667 THERMAL_SENSOR_ATTR_TEMP(3, 2),
5668 THERMAL_SENSOR_ATTR_TEMP(4, 3),
5669 THERMAL_SENSOR_ATTR_TEMP(5, 4),
5670 THERMAL_SENSOR_ATTR_TEMP(6, 5),
5671 THERMAL_SENSOR_ATTR_TEMP(7, 6),
5672 THERMAL_SENSOR_ATTR_TEMP(8, 7),
5673 THERMAL_SENSOR_ATTR_TEMP(9, 8),
5674 THERMAL_SENSOR_ATTR_TEMP(10, 9),
5675 THERMAL_SENSOR_ATTR_TEMP(11, 10),
5676 THERMAL_SENSOR_ATTR_TEMP(12, 11),
5677 THERMAL_SENSOR_ATTR_TEMP(13, 12),
5678 THERMAL_SENSOR_ATTR_TEMP(14, 13),
5679 THERMAL_SENSOR_ATTR_TEMP(15, 14),
5680 THERMAL_SENSOR_ATTR_TEMP(16, 15),
5683 #define THERMAL_ATTRS(X) \
5684 &sensor_dev_attr_thermal_temp_input[X].dev_attr.attr
5686 static struct attribute
*thermal_temp_input_attr
[] = {
5706 static const struct attribute_group thermal_temp_input16_group
= {
5707 .attrs
= thermal_temp_input_attr
5710 static const struct attribute_group thermal_temp_input8_group
= {
5711 .attrs
= &thermal_temp_input_attr
[8]
5714 #undef THERMAL_SENSOR_ATTR_TEMP
5715 #undef THERMAL_ATTRS
5717 /* --------------------------------------------------------------------- */
5719 static int __init
thermal_init(struct ibm_init_struct
*iibm
)
5726 vdbg_printk(TPACPI_DBG_INIT
, "initializing thermal subdriver\n");
5728 acpi_tmp7
= acpi_evalf(ec_handle
, NULL
, "TMP7", "qv");
5730 if (thinkpad_id
.ec_model
) {
5732 * Direct EC access mode: sensors at registers
5733 * 0x78-0x7F, 0xC0-0xC7. Registers return 0x00 for
5734 * non-implemented, thermal sensors return 0x80 when
5739 for (i
= 0; i
< 8; i
++) {
5740 if (acpi_ec_read(TP_EC_THERMAL_TMP0
+ i
, &t
)) {
5746 if (acpi_ec_read(TP_EC_THERMAL_TMP8
+ i
, &t
)) {
5754 /* This is sheer paranoia, but we handle it anyway */
5756 pr_err("ThinkPad ACPI EC access misbehaving, "
5757 "falling back to ACPI TMPx access "
5759 thermal_read_mode
= TPACPI_THERMAL_ACPI_TMP07
;
5761 pr_err("ThinkPad ACPI EC access misbehaving, "
5762 "disabling thermal sensors access\n");
5763 thermal_read_mode
= TPACPI_THERMAL_NONE
;
5768 TPACPI_THERMAL_TPEC_16
: TPACPI_THERMAL_TPEC_8
;
5770 } else if (acpi_tmp7
) {
5771 if (tpacpi_is_ibm() &&
5772 acpi_evalf(ec_handle
, NULL
, "UPDT", "qv")) {
5773 /* 600e/x, 770e, 770x */
5774 thermal_read_mode
= TPACPI_THERMAL_ACPI_UPDT
;
5776 /* IBM/LENOVO DSDT EC.TMPx access, max 8 sensors */
5777 thermal_read_mode
= TPACPI_THERMAL_ACPI_TMP07
;
5780 /* temperatures not supported on 570, G4x, R30, R31, R32 */
5781 thermal_read_mode
= TPACPI_THERMAL_NONE
;
5784 vdbg_printk(TPACPI_DBG_INIT
, "thermal is %s, mode %d\n",
5785 str_supported(thermal_read_mode
!= TPACPI_THERMAL_NONE
),
5788 switch (thermal_read_mode
) {
5789 case TPACPI_THERMAL_TPEC_16
:
5790 res
= sysfs_create_group(&tpacpi_sensors_pdev
->dev
.kobj
,
5791 &thermal_temp_input16_group
);
5795 case TPACPI_THERMAL_TPEC_8
:
5796 case TPACPI_THERMAL_ACPI_TMP07
:
5797 case TPACPI_THERMAL_ACPI_UPDT
:
5798 res
= sysfs_create_group(&tpacpi_sensors_pdev
->dev
.kobj
,
5799 &thermal_temp_input8_group
);
5803 case TPACPI_THERMAL_NONE
:
5811 static void thermal_exit(void)
5813 switch (thermal_read_mode
) {
5814 case TPACPI_THERMAL_TPEC_16
:
5815 sysfs_remove_group(&tpacpi_sensors_pdev
->dev
.kobj
,
5816 &thermal_temp_input16_group
);
5818 case TPACPI_THERMAL_TPEC_8
:
5819 case TPACPI_THERMAL_ACPI_TMP07
:
5820 case TPACPI_THERMAL_ACPI_UPDT
:
5821 sysfs_remove_group(&tpacpi_sensors_pdev
->dev
.kobj
,
5822 &thermal_temp_input8_group
);
5824 case TPACPI_THERMAL_NONE
:
5830 static int thermal_read(struct seq_file
*m
)
5833 struct ibm_thermal_sensors_struct t
;
5835 n
= thermal_get_sensors(&t
);
5836 if (unlikely(n
< 0))
5839 seq_printf(m
, "temperatures:\t");
5842 for (i
= 0; i
< (n
- 1); i
++)
5843 seq_printf(m
, "%d ", t
.temp
[i
] / 1000);
5844 seq_printf(m
, "%d\n", t
.temp
[i
] / 1000);
5846 seq_printf(m
, "not supported\n");
5851 static struct ibm_struct thermal_driver_data
= {
5853 .read
= thermal_read
,
5854 .exit
= thermal_exit
,
5857 /*************************************************************************
5858 * Backlight/brightness subdriver
5861 #define TPACPI_BACKLIGHT_DEV_NAME "thinkpad_screen"
5864 * ThinkPads can read brightness from two places: EC HBRV (0x31), or
5865 * CMOS NVRAM byte 0x5E, bits 0-3.
5867 * EC HBRV (0x31) has the following layout
5868 * Bit 7: unknown function
5869 * Bit 6: unknown function
5870 * Bit 5: Z: honour scale changes, NZ: ignore scale changes
5871 * Bit 4: must be set to zero to avoid problems
5872 * Bit 3-0: backlight brightness level
5874 * brightness_get_raw returns status data in the HBRV layout
5876 * WARNING: The X61 has been verified to use HBRV for something else, so
5877 * this should be used _only_ on IBM ThinkPads, and maybe with some careful
5878 * testing on the very early *60 Lenovo models...
5882 TP_EC_BACKLIGHT
= 0x31,
5884 /* TP_EC_BACKLIGHT bitmasks */
5885 TP_EC_BACKLIGHT_LVLMSK
= 0x1F,
5886 TP_EC_BACKLIGHT_CMDMSK
= 0xE0,
5887 TP_EC_BACKLIGHT_MAPSW
= 0x20,
5890 enum tpacpi_brightness_access_mode
{
5891 TPACPI_BRGHT_MODE_AUTO
= 0, /* Not implemented yet */
5892 TPACPI_BRGHT_MODE_EC
, /* EC control */
5893 TPACPI_BRGHT_MODE_UCMS_STEP
, /* UCMS step-based control */
5894 TPACPI_BRGHT_MODE_ECNVRAM
, /* EC control w/ NVRAM store */
5895 TPACPI_BRGHT_MODE_MAX
5898 static struct backlight_device
*ibm_backlight_device
;
5900 static enum tpacpi_brightness_access_mode brightness_mode
=
5901 TPACPI_BRGHT_MODE_MAX
;
5903 static unsigned int brightness_enable
= 2; /* 2 = auto, 0 = no, 1 = yes */
5905 static struct mutex brightness_mutex
;
5907 /* NVRAM brightness access,
5908 * call with brightness_mutex held! */
5909 static unsigned int tpacpi_brightness_nvram_get(void)
5913 lnvram
= (nvram_read_byte(TP_NVRAM_ADDR_BRIGHTNESS
)
5914 & TP_NVRAM_MASK_LEVEL_BRIGHTNESS
)
5915 >> TP_NVRAM_POS_LEVEL_BRIGHTNESS
;
5916 lnvram
&= bright_maxlvl
;
5921 static void tpacpi_brightness_checkpoint_nvram(void)
5926 if (brightness_mode
!= TPACPI_BRGHT_MODE_ECNVRAM
)
5929 vdbg_printk(TPACPI_DBG_BRGHT
,
5930 "trying to checkpoint backlight level to NVRAM...\n");
5932 if (mutex_lock_killable(&brightness_mutex
) < 0)
5935 if (unlikely(!acpi_ec_read(TP_EC_BACKLIGHT
, &lec
)))
5937 lec
&= TP_EC_BACKLIGHT_LVLMSK
;
5938 b_nvram
= nvram_read_byte(TP_NVRAM_ADDR_BRIGHTNESS
);
5940 if (lec
!= ((b_nvram
& TP_NVRAM_MASK_LEVEL_BRIGHTNESS
)
5941 >> TP_NVRAM_POS_LEVEL_BRIGHTNESS
)) {
5942 /* NVRAM needs update */
5943 b_nvram
&= ~(TP_NVRAM_MASK_LEVEL_BRIGHTNESS
<<
5944 TP_NVRAM_POS_LEVEL_BRIGHTNESS
);
5946 nvram_write_byte(b_nvram
, TP_NVRAM_ADDR_BRIGHTNESS
);
5947 dbg_printk(TPACPI_DBG_BRGHT
,
5948 "updated NVRAM backlight level to %u (0x%02x)\n",
5949 (unsigned int) lec
, (unsigned int) b_nvram
);
5951 vdbg_printk(TPACPI_DBG_BRGHT
,
5952 "NVRAM backlight level already is %u (0x%02x)\n",
5953 (unsigned int) lec
, (unsigned int) b_nvram
);
5956 mutex_unlock(&brightness_mutex
);
5960 /* call with brightness_mutex held! */
5961 static int tpacpi_brightness_get_raw(int *status
)
5965 switch (brightness_mode
) {
5966 case TPACPI_BRGHT_MODE_UCMS_STEP
:
5967 *status
= tpacpi_brightness_nvram_get();
5969 case TPACPI_BRGHT_MODE_EC
:
5970 case TPACPI_BRGHT_MODE_ECNVRAM
:
5971 if (unlikely(!acpi_ec_read(TP_EC_BACKLIGHT
, &lec
)))
5980 /* call with brightness_mutex held! */
5981 /* do NOT call with illegal backlight level value */
5982 static int tpacpi_brightness_set_ec(unsigned int value
)
5986 if (unlikely(!acpi_ec_read(TP_EC_BACKLIGHT
, &lec
)))
5989 if (unlikely(!acpi_ec_write(TP_EC_BACKLIGHT
,
5990 (lec
& TP_EC_BACKLIGHT_CMDMSK
) |
5991 (value
& TP_EC_BACKLIGHT_LVLMSK
))))
5997 /* call with brightness_mutex held! */
5998 static int tpacpi_brightness_set_ucmsstep(unsigned int value
)
6001 unsigned int current_value
, i
;
6003 current_value
= tpacpi_brightness_nvram_get();
6005 if (value
== current_value
)
6008 cmos_cmd
= (value
> current_value
) ?
6009 TP_CMOS_BRIGHTNESS_UP
:
6010 TP_CMOS_BRIGHTNESS_DOWN
;
6011 inc
= (value
> current_value
) ? 1 : -1;
6013 for (i
= current_value
; i
!= value
; i
+= inc
)
6014 if (issue_thinkpad_cmos_command(cmos_cmd
))
6020 /* May return EINTR which can always be mapped to ERESTARTSYS */
6021 static int brightness_set(unsigned int value
)
6025 if (value
> bright_maxlvl
|| value
< 0)
6028 vdbg_printk(TPACPI_DBG_BRGHT
,
6029 "set backlight level to %d\n", value
);
6031 res
= mutex_lock_killable(&brightness_mutex
);
6035 switch (brightness_mode
) {
6036 case TPACPI_BRGHT_MODE_EC
:
6037 case TPACPI_BRGHT_MODE_ECNVRAM
:
6038 res
= tpacpi_brightness_set_ec(value
);
6040 case TPACPI_BRGHT_MODE_UCMS_STEP
:
6041 res
= tpacpi_brightness_set_ucmsstep(value
);
6047 mutex_unlock(&brightness_mutex
);
6051 /* sysfs backlight class ----------------------------------------------- */
6053 static int brightness_update_status(struct backlight_device
*bd
)
6055 unsigned int level
=
6056 (bd
->props
.fb_blank
== FB_BLANK_UNBLANK
&&
6057 bd
->props
.power
== FB_BLANK_UNBLANK
) ?
6058 bd
->props
.brightness
: 0;
6060 dbg_printk(TPACPI_DBG_BRGHT
,
6061 "backlight: attempt to set level to %d\n",
6064 /* it is the backlight class's job (caller) to handle
6065 * EINTR and other errors properly */
6066 return brightness_set(level
);
6069 static int brightness_get(struct backlight_device
*bd
)
6073 res
= mutex_lock_killable(&brightness_mutex
);
6077 res
= tpacpi_brightness_get_raw(&status
);
6079 mutex_unlock(&brightness_mutex
);
6084 return status
& TP_EC_BACKLIGHT_LVLMSK
;
6087 static void tpacpi_brightness_notify_change(void)
6089 backlight_force_update(ibm_backlight_device
,
6090 BACKLIGHT_UPDATE_HOTKEY
);
6093 static const struct backlight_ops ibm_backlight_data
= {
6094 .get_brightness
= brightness_get
,
6095 .update_status
= brightness_update_status
,
6098 /* --------------------------------------------------------------------- */
6101 * Call _BCL method of video device. On some ThinkPads this will
6102 * switch the firmware to the ACPI brightness control mode.
6105 static int __init
tpacpi_query_bcl_levels(acpi_handle handle
)
6107 struct acpi_buffer buffer
= { ACPI_ALLOCATE_BUFFER
, NULL
};
6108 union acpi_object
*obj
;
6111 if (ACPI_SUCCESS(acpi_evaluate_object(handle
, "_BCL", NULL
, &buffer
))) {
6112 obj
= (union acpi_object
*)buffer
.pointer
;
6113 if (!obj
|| (obj
->type
!= ACPI_TYPE_PACKAGE
)) {
6114 pr_err("Unknown _BCL data, please report this to %s\n",
6118 rc
= obj
->package
.count
;
6124 kfree(buffer
.pointer
);
6130 * Returns 0 (no ACPI _BCL or _BCL invalid), or size of brightness map
6132 static unsigned int __init
tpacpi_check_std_acpi_brightness_support(void)
6134 acpi_handle video_device
;
6137 tpacpi_acpi_handle_locate("video", ACPI_VIDEO_HID
, &video_device
);
6139 bcl_levels
= tpacpi_query_bcl_levels(video_device
);
6141 tp_features
.bright_acpimode
= (bcl_levels
> 0);
6143 return (bcl_levels
> 2) ? (bcl_levels
- 2) : 0;
6147 * These are only useful for models that have only one possibility
6148 * of GPU. If the BIOS model handles both ATI and Intel, don't use
6151 #define TPACPI_BRGHT_Q_NOEC 0x0001 /* Must NOT use EC HBRV */
6152 #define TPACPI_BRGHT_Q_EC 0x0002 /* Should or must use EC HBRV */
6153 #define TPACPI_BRGHT_Q_ASK 0x8000 /* Ask for user report */
6155 static const struct tpacpi_quirk brightness_quirk_table
[] __initconst
= {
6156 /* Models with ATI GPUs known to require ECNVRAM mode */
6157 TPACPI_Q_IBM('1', 'Y', TPACPI_BRGHT_Q_EC
), /* T43/p ATI */
6159 /* Models with ATI GPUs that can use ECNVRAM */
6160 TPACPI_Q_IBM('1', 'R', TPACPI_BRGHT_Q_EC
), /* R50,51 T40-42 */
6161 TPACPI_Q_IBM('1', 'Q', TPACPI_BRGHT_Q_ASK
|TPACPI_BRGHT_Q_EC
),
6162 TPACPI_Q_IBM('7', '6', TPACPI_BRGHT_Q_EC
), /* R52 */
6163 TPACPI_Q_IBM('7', '8', TPACPI_BRGHT_Q_ASK
|TPACPI_BRGHT_Q_EC
),
6165 /* Models with Intel Extreme Graphics 2 */
6166 TPACPI_Q_IBM('1', 'U', TPACPI_BRGHT_Q_NOEC
), /* X40 */
6167 TPACPI_Q_IBM('1', 'V', TPACPI_BRGHT_Q_ASK
|TPACPI_BRGHT_Q_EC
),
6168 TPACPI_Q_IBM('1', 'W', TPACPI_BRGHT_Q_ASK
|TPACPI_BRGHT_Q_EC
),
6170 /* Models with Intel GMA900 */
6171 TPACPI_Q_IBM('7', '0', TPACPI_BRGHT_Q_NOEC
), /* T43, R52 */
6172 TPACPI_Q_IBM('7', '4', TPACPI_BRGHT_Q_NOEC
), /* X41 */
6173 TPACPI_Q_IBM('7', '5', TPACPI_BRGHT_Q_NOEC
), /* X41 Tablet */
6177 * Returns < 0 for error, otherwise sets tp_features.bright_*
6178 * and bright_maxlvl.
6180 static void __init
tpacpi_detect_brightness_capabilities(void)
6184 vdbg_printk(TPACPI_DBG_INIT
,
6185 "detecting firmware brightness interface capabilities\n");
6187 /* we could run a quirks check here (same table used by
6188 * brightness_init) if needed */
6191 * We always attempt to detect acpi support, so as to switch
6192 * Lenovo Vista BIOS to ACPI brightness mode even if we are not
6193 * going to publish a backlight interface
6195 b
= tpacpi_check_std_acpi_brightness_support();
6199 pr_info("detected a 16-level brightness capable ThinkPad\n");
6204 pr_info("detected a 8-level brightness capable ThinkPad\n");
6207 pr_err("Unsupported brightness interface, "
6208 "please contact %s\n", TPACPI_MAIL
);
6209 tp_features
.bright_unkfw
= 1;
6210 bright_maxlvl
= b
- 1;
6214 static int __init
brightness_init(struct ibm_init_struct
*iibm
)
6216 struct backlight_properties props
;
6218 unsigned long quirks
;
6220 vdbg_printk(TPACPI_DBG_INIT
, "initializing brightness subdriver\n");
6222 mutex_init(&brightness_mutex
);
6224 quirks
= tpacpi_check_quirks(brightness_quirk_table
,
6225 ARRAY_SIZE(brightness_quirk_table
));
6227 /* tpacpi_detect_brightness_capabilities() must have run already */
6229 /* if it is unknown, we don't handle it: it wouldn't be safe */
6230 if (tp_features
.bright_unkfw
)
6233 if (!brightness_enable
) {
6234 dbg_printk(TPACPI_DBG_INIT
| TPACPI_DBG_BRGHT
,
6235 "brightness support disabled by "
6236 "module parameter\n");
6240 if (acpi_video_backlight_support()) {
6241 if (brightness_enable
> 1) {
6242 pr_info("Standard ACPI backlight interface "
6243 "available, not loading native one\n");
6245 } else if (brightness_enable
== 1) {
6246 pr_warn("Cannot enable backlight brightness support, "
6247 "ACPI is already handling it. Refer to the "
6248 "acpi_backlight kernel parameter.\n");
6251 } else if (tp_features
.bright_acpimode
&& brightness_enable
> 1) {
6252 pr_notice("Standard ACPI backlight interface not "
6253 "available, thinkpad_acpi native "
6254 "brightness control enabled\n");
6258 * Check for module parameter bogosity, note that we
6259 * init brightness_mode to TPACPI_BRGHT_MODE_MAX in order to be
6260 * able to detect "unspecified"
6262 if (brightness_mode
> TPACPI_BRGHT_MODE_MAX
)
6265 /* TPACPI_BRGHT_MODE_AUTO not implemented yet, just use default */
6266 if (brightness_mode
== TPACPI_BRGHT_MODE_AUTO
||
6267 brightness_mode
== TPACPI_BRGHT_MODE_MAX
) {
6268 if (quirks
& TPACPI_BRGHT_Q_EC
)
6269 brightness_mode
= TPACPI_BRGHT_MODE_ECNVRAM
;
6271 brightness_mode
= TPACPI_BRGHT_MODE_UCMS_STEP
;
6273 dbg_printk(TPACPI_DBG_BRGHT
,
6274 "driver auto-selected brightness_mode=%d\n",
6279 if (!tpacpi_is_ibm() &&
6280 (brightness_mode
== TPACPI_BRGHT_MODE_ECNVRAM
||
6281 brightness_mode
== TPACPI_BRGHT_MODE_EC
))
6284 if (tpacpi_brightness_get_raw(&b
) < 0)
6287 memset(&props
, 0, sizeof(struct backlight_properties
));
6288 props
.type
= BACKLIGHT_PLATFORM
;
6289 props
.max_brightness
= bright_maxlvl
;
6290 props
.brightness
= b
& TP_EC_BACKLIGHT_LVLMSK
;
6291 ibm_backlight_device
= backlight_device_register(TPACPI_BACKLIGHT_DEV_NAME
,
6293 &ibm_backlight_data
,
6295 if (IS_ERR(ibm_backlight_device
)) {
6296 int rc
= PTR_ERR(ibm_backlight_device
);
6297 ibm_backlight_device
= NULL
;
6298 pr_err("Could not register backlight device\n");
6301 vdbg_printk(TPACPI_DBG_INIT
| TPACPI_DBG_BRGHT
,
6302 "brightness is supported\n");
6304 if (quirks
& TPACPI_BRGHT_Q_ASK
) {
6305 pr_notice("brightness: will use unverified default: "
6306 "brightness_mode=%d\n", brightness_mode
);
6307 pr_notice("brightness: please report to %s whether it works well "
6308 "or not on your ThinkPad\n", TPACPI_MAIL
);
6311 /* Added by mistake in early 2007. Probably useless, but it could
6312 * be working around some unknown firmware problem where the value
6313 * read at startup doesn't match the real hardware state... so leave
6314 * it in place just in case */
6315 backlight_update_status(ibm_backlight_device
);
6317 vdbg_printk(TPACPI_DBG_INIT
| TPACPI_DBG_BRGHT
,
6318 "brightness: registering brightness hotkeys "
6319 "as change notification\n");
6320 tpacpi_hotkey_driver_mask_set(hotkey_driver_mask
6321 | TP_ACPI_HKEY_BRGHTUP_MASK
6322 | TP_ACPI_HKEY_BRGHTDWN_MASK
);
6326 static void brightness_suspend(pm_message_t state
)
6328 tpacpi_brightness_checkpoint_nvram();
6331 static void brightness_shutdown(void)
6333 tpacpi_brightness_checkpoint_nvram();
6336 static void brightness_exit(void)
6338 if (ibm_backlight_device
) {
6339 vdbg_printk(TPACPI_DBG_EXIT
| TPACPI_DBG_BRGHT
,
6340 "calling backlight_device_unregister()\n");
6341 backlight_device_unregister(ibm_backlight_device
);
6344 tpacpi_brightness_checkpoint_nvram();
6347 static int brightness_read(struct seq_file
*m
)
6351 level
= brightness_get(NULL
);
6353 seq_printf(m
, "level:\t\tunreadable\n");
6355 seq_printf(m
, "level:\t\t%d\n", level
);
6356 seq_printf(m
, "commands:\tup, down\n");
6357 seq_printf(m
, "commands:\tlevel <level> (<level> is 0-%d)\n",
6364 static int brightness_write(char *buf
)
6370 level
= brightness_get(NULL
);
6374 while ((cmd
= next_cmd(&buf
))) {
6375 if (strlencmp(cmd
, "up") == 0) {
6376 if (level
< bright_maxlvl
)
6378 } else if (strlencmp(cmd
, "down") == 0) {
6381 } else if (sscanf(cmd
, "level %d", &level
) == 1 &&
6382 level
>= 0 && level
<= bright_maxlvl
) {
6388 tpacpi_disclose_usertask("procfs brightness",
6389 "set level to %d\n", level
);
6392 * Now we know what the final level should be, so we try to set it.
6393 * Doing it this way makes the syscall restartable in case of EINTR
6395 rc
= brightness_set(level
);
6396 if (!rc
&& ibm_backlight_device
)
6397 backlight_force_update(ibm_backlight_device
,
6398 BACKLIGHT_UPDATE_SYSFS
);
6399 return (rc
== -EINTR
)? -ERESTARTSYS
: rc
;
6402 static struct ibm_struct brightness_driver_data
= {
6403 .name
= "brightness",
6404 .read
= brightness_read
,
6405 .write
= brightness_write
,
6406 .exit
= brightness_exit
,
6407 .suspend
= brightness_suspend
,
6408 .shutdown
= brightness_shutdown
,
6411 /*************************************************************************
6416 * IBM ThinkPads have a simple volume controller with MUTE gating.
6417 * Very early Lenovo ThinkPads follow the IBM ThinkPad spec.
6419 * Since the *61 series (and probably also the later *60 series), Lenovo
6420 * ThinkPads only implement the MUTE gate.
6423 * Bit 6: MUTE (1 mutes sound)
6425 * Other bits should be zero as far as we know.
6427 * This is also stored in CMOS NVRAM, byte 0x60, bit 6 (MUTE), and
6428 * bits 3-0 (volume). Other bits in NVRAM may have other functions,
6429 * such as bit 7 which is used to detect repeated presses of MUTE,
6430 * and we leave them unchanged.
6433 #ifdef CONFIG_THINKPAD_ACPI_ALSA_SUPPORT
6435 #define TPACPI_ALSA_DRVNAME "ThinkPad EC"
6436 #define TPACPI_ALSA_SHRTNAME "ThinkPad Console Audio Control"
6437 #define TPACPI_ALSA_MIXERNAME TPACPI_ALSA_SHRTNAME
6439 static int alsa_index
= ~((1 << (SNDRV_CARDS
- 3)) - 1); /* last three slots */
6440 static char *alsa_id
= "ThinkPadEC";
6441 static int alsa_enable
= SNDRV_DEFAULT_ENABLE1
;
6443 struct tpacpi_alsa_data
{
6444 struct snd_card
*card
;
6445 struct snd_ctl_elem_id
*ctl_mute_id
;
6446 struct snd_ctl_elem_id
*ctl_vol_id
;
6449 static struct snd_card
*alsa_card
;
6454 /* TP_EC_AUDIO bits */
6455 TP_EC_AUDIO_MUTESW
= 6,
6457 /* TP_EC_AUDIO bitmasks */
6458 TP_EC_AUDIO_LVL_MSK
= 0x0F,
6459 TP_EC_AUDIO_MUTESW_MSK
= (1 << TP_EC_AUDIO_MUTESW
),
6461 /* Maximum volume */
6462 TP_EC_VOLUME_MAX
= 14,
6465 enum tpacpi_volume_access_mode
{
6466 TPACPI_VOL_MODE_AUTO
= 0, /* Not implemented yet */
6467 TPACPI_VOL_MODE_EC
, /* Pure EC control */
6468 TPACPI_VOL_MODE_UCMS_STEP
, /* UCMS step-based control: N/A */
6469 TPACPI_VOL_MODE_ECNVRAM
, /* EC control w/ NVRAM store */
6473 enum tpacpi_volume_capabilities
{
6474 TPACPI_VOL_CAP_AUTO
= 0, /* Use white/blacklist */
6475 TPACPI_VOL_CAP_VOLMUTE
, /* Output vol and mute */
6476 TPACPI_VOL_CAP_MUTEONLY
, /* Output mute only */
6480 static enum tpacpi_volume_access_mode volume_mode
=
6481 TPACPI_VOL_MODE_MAX
;
6483 static enum tpacpi_volume_capabilities volume_capabilities
;
6484 static int volume_control_allowed
;
6487 * Used to syncronize writers to TP_EC_AUDIO and
6488 * TP_NVRAM_ADDR_MIXER, as we need to do read-modify-write
6490 static struct mutex volume_mutex
;
6492 static void tpacpi_volume_checkpoint_nvram(void)
6498 if (volume_mode
!= TPACPI_VOL_MODE_ECNVRAM
)
6500 if (!volume_control_allowed
)
6503 vdbg_printk(TPACPI_DBG_MIXER
,
6504 "trying to checkpoint mixer state to NVRAM...\n");
6506 if (tp_features
.mixer_no_level_control
)
6507 ec_mask
= TP_EC_AUDIO_MUTESW_MSK
;
6509 ec_mask
= TP_EC_AUDIO_MUTESW_MSK
| TP_EC_AUDIO_LVL_MSK
;
6511 if (mutex_lock_killable(&volume_mutex
) < 0)
6514 if (unlikely(!acpi_ec_read(TP_EC_AUDIO
, &lec
)))
6517 b_nvram
= nvram_read_byte(TP_NVRAM_ADDR_MIXER
);
6519 if (lec
!= (b_nvram
& ec_mask
)) {
6520 /* NVRAM needs update */
6521 b_nvram
&= ~ec_mask
;
6523 nvram_write_byte(b_nvram
, TP_NVRAM_ADDR_MIXER
);
6524 dbg_printk(TPACPI_DBG_MIXER
,
6525 "updated NVRAM mixer status to 0x%02x (0x%02x)\n",
6526 (unsigned int) lec
, (unsigned int) b_nvram
);
6528 vdbg_printk(TPACPI_DBG_MIXER
,
6529 "NVRAM mixer status already is 0x%02x (0x%02x)\n",
6530 (unsigned int) lec
, (unsigned int) b_nvram
);
6534 mutex_unlock(&volume_mutex
);
6537 static int volume_get_status_ec(u8
*status
)
6541 if (!acpi_ec_read(TP_EC_AUDIO
, &s
))
6546 dbg_printk(TPACPI_DBG_MIXER
, "status 0x%02x\n", s
);
6551 static int volume_get_status(u8
*status
)
6553 return volume_get_status_ec(status
);
6556 static int volume_set_status_ec(const u8 status
)
6558 if (!acpi_ec_write(TP_EC_AUDIO
, status
))
6561 dbg_printk(TPACPI_DBG_MIXER
, "set EC mixer to 0x%02x\n", status
);
6566 static int volume_set_status(const u8 status
)
6568 return volume_set_status_ec(status
);
6571 /* returns < 0 on error, 0 on no change, 1 on change */
6572 static int __volume_set_mute_ec(const bool mute
)
6577 if (mutex_lock_killable(&volume_mutex
) < 0)
6580 rc
= volume_get_status_ec(&s
);
6584 n
= (mute
) ? s
| TP_EC_AUDIO_MUTESW_MSK
:
6585 s
& ~TP_EC_AUDIO_MUTESW_MSK
;
6588 rc
= volume_set_status_ec(n
);
6594 mutex_unlock(&volume_mutex
);
6598 static int volume_alsa_set_mute(const bool mute
)
6600 dbg_printk(TPACPI_DBG_MIXER
, "ALSA: trying to %smute\n",
6601 (mute
) ? "" : "un");
6602 return __volume_set_mute_ec(mute
);
6605 static int volume_set_mute(const bool mute
)
6609 dbg_printk(TPACPI_DBG_MIXER
, "trying to %smute\n",
6610 (mute
) ? "" : "un");
6612 rc
= __volume_set_mute_ec(mute
);
6613 return (rc
< 0) ? rc
: 0;
6616 /* returns < 0 on error, 0 on no change, 1 on change */
6617 static int __volume_set_volume_ec(const u8 vol
)
6622 if (vol
> TP_EC_VOLUME_MAX
)
6625 if (mutex_lock_killable(&volume_mutex
) < 0)
6628 rc
= volume_get_status_ec(&s
);
6632 n
= (s
& ~TP_EC_AUDIO_LVL_MSK
) | vol
;
6635 rc
= volume_set_status_ec(n
);
6641 mutex_unlock(&volume_mutex
);
6645 static int volume_alsa_set_volume(const u8 vol
)
6647 dbg_printk(TPACPI_DBG_MIXER
,
6648 "ALSA: trying to set volume level to %hu\n", vol
);
6649 return __volume_set_volume_ec(vol
);
6652 static void volume_alsa_notify_change(void)
6654 struct tpacpi_alsa_data
*d
;
6656 if (alsa_card
&& alsa_card
->private_data
) {
6657 d
= alsa_card
->private_data
;
6659 snd_ctl_notify(alsa_card
,
6660 SNDRV_CTL_EVENT_MASK_VALUE
,
6663 snd_ctl_notify(alsa_card
,
6664 SNDRV_CTL_EVENT_MASK_VALUE
,
6669 static int volume_alsa_vol_info(struct snd_kcontrol
*kcontrol
,
6670 struct snd_ctl_elem_info
*uinfo
)
6672 uinfo
->type
= SNDRV_CTL_ELEM_TYPE_INTEGER
;
6674 uinfo
->value
.integer
.min
= 0;
6675 uinfo
->value
.integer
.max
= TP_EC_VOLUME_MAX
;
6679 static int volume_alsa_vol_get(struct snd_kcontrol
*kcontrol
,
6680 struct snd_ctl_elem_value
*ucontrol
)
6685 rc
= volume_get_status(&s
);
6689 ucontrol
->value
.integer
.value
[0] = s
& TP_EC_AUDIO_LVL_MSK
;
6693 static int volume_alsa_vol_put(struct snd_kcontrol
*kcontrol
,
6694 struct snd_ctl_elem_value
*ucontrol
)
6696 tpacpi_disclose_usertask("ALSA", "set volume to %ld\n",
6697 ucontrol
->value
.integer
.value
[0]);
6698 return volume_alsa_set_volume(ucontrol
->value
.integer
.value
[0]);
6701 #define volume_alsa_mute_info snd_ctl_boolean_mono_info
6703 static int volume_alsa_mute_get(struct snd_kcontrol
*kcontrol
,
6704 struct snd_ctl_elem_value
*ucontrol
)
6709 rc
= volume_get_status(&s
);
6713 ucontrol
->value
.integer
.value
[0] =
6714 (s
& TP_EC_AUDIO_MUTESW_MSK
) ? 0 : 1;
6718 static int volume_alsa_mute_put(struct snd_kcontrol
*kcontrol
,
6719 struct snd_ctl_elem_value
*ucontrol
)
6721 tpacpi_disclose_usertask("ALSA", "%smute\n",
6722 ucontrol
->value
.integer
.value
[0] ?
6724 return volume_alsa_set_mute(!ucontrol
->value
.integer
.value
[0]);
6727 static struct snd_kcontrol_new volume_alsa_control_vol __devinitdata
= {
6728 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
6729 .name
= "Console Playback Volume",
6731 .access
= SNDRV_CTL_ELEM_ACCESS_READ
,
6732 .info
= volume_alsa_vol_info
,
6733 .get
= volume_alsa_vol_get
,
6736 static struct snd_kcontrol_new volume_alsa_control_mute __devinitdata
= {
6737 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
6738 .name
= "Console Playback Switch",
6740 .access
= SNDRV_CTL_ELEM_ACCESS_READ
,
6741 .info
= volume_alsa_mute_info
,
6742 .get
= volume_alsa_mute_get
,
6745 static void volume_suspend(pm_message_t state
)
6747 tpacpi_volume_checkpoint_nvram();
6750 static void volume_resume(void)
6752 volume_alsa_notify_change();
6755 static void volume_shutdown(void)
6757 tpacpi_volume_checkpoint_nvram();
6760 static void volume_exit(void)
6763 snd_card_free(alsa_card
);
6767 tpacpi_volume_checkpoint_nvram();
6770 static int __init
volume_create_alsa_mixer(void)
6772 struct snd_card
*card
;
6773 struct tpacpi_alsa_data
*data
;
6774 struct snd_kcontrol
*ctl_vol
;
6775 struct snd_kcontrol
*ctl_mute
;
6778 rc
= snd_card_create(alsa_index
, alsa_id
, THIS_MODULE
,
6779 sizeof(struct tpacpi_alsa_data
), &card
);
6780 if (rc
< 0 || !card
) {
6781 pr_err("Failed to create ALSA card structures: %d\n", rc
);
6785 BUG_ON(!card
->private_data
);
6786 data
= card
->private_data
;
6789 strlcpy(card
->driver
, TPACPI_ALSA_DRVNAME
,
6790 sizeof(card
->driver
));
6791 strlcpy(card
->shortname
, TPACPI_ALSA_SHRTNAME
,
6792 sizeof(card
->shortname
));
6793 snprintf(card
->mixername
, sizeof(card
->mixername
), "ThinkPad EC %s",
6794 (thinkpad_id
.ec_version_str
) ?
6795 thinkpad_id
.ec_version_str
: "(unknown)");
6796 snprintf(card
->longname
, sizeof(card
->longname
),
6797 "%s at EC reg 0x%02x, fw %s", card
->shortname
, TP_EC_AUDIO
,
6798 (thinkpad_id
.ec_version_str
) ?
6799 thinkpad_id
.ec_version_str
: "unknown");
6801 if (volume_control_allowed
) {
6802 volume_alsa_control_vol
.put
= volume_alsa_vol_put
;
6803 volume_alsa_control_vol
.access
=
6804 SNDRV_CTL_ELEM_ACCESS_READWRITE
;
6806 volume_alsa_control_mute
.put
= volume_alsa_mute_put
;
6807 volume_alsa_control_mute
.access
=
6808 SNDRV_CTL_ELEM_ACCESS_READWRITE
;
6811 if (!tp_features
.mixer_no_level_control
) {
6812 ctl_vol
= snd_ctl_new1(&volume_alsa_control_vol
, NULL
);
6813 rc
= snd_ctl_add(card
, ctl_vol
);
6815 pr_err("Failed to create ALSA volume control: %d\n",
6819 data
->ctl_vol_id
= &ctl_vol
->id
;
6822 ctl_mute
= snd_ctl_new1(&volume_alsa_control_mute
, NULL
);
6823 rc
= snd_ctl_add(card
, ctl_mute
);
6825 pr_err("Failed to create ALSA mute control: %d\n", rc
);
6828 data
->ctl_mute_id
= &ctl_mute
->id
;
6830 snd_card_set_dev(card
, &tpacpi_pdev
->dev
);
6831 rc
= snd_card_register(card
);
6833 pr_err("Failed to register ALSA card: %d\n", rc
);
6841 snd_card_free(card
);
6845 #define TPACPI_VOL_Q_MUTEONLY 0x0001 /* Mute-only control available */
6846 #define TPACPI_VOL_Q_LEVEL 0x0002 /* Volume control available */
6848 static const struct tpacpi_quirk volume_quirk_table
[] __initconst
= {
6849 /* Whitelist volume level on all IBM by default */
6850 { .vendor
= PCI_VENDOR_ID_IBM
,
6851 .bios
= TPACPI_MATCH_ANY
,
6852 .ec
= TPACPI_MATCH_ANY
,
6853 .quirks
= TPACPI_VOL_Q_LEVEL
},
6855 /* Lenovo models with volume control (needs confirmation) */
6856 TPACPI_QEC_LNV('7', 'C', TPACPI_VOL_Q_LEVEL
), /* R60/i */
6857 TPACPI_QEC_LNV('7', 'E', TPACPI_VOL_Q_LEVEL
), /* R60e/i */
6858 TPACPI_QEC_LNV('7', '9', TPACPI_VOL_Q_LEVEL
), /* T60/p */
6859 TPACPI_QEC_LNV('7', 'B', TPACPI_VOL_Q_LEVEL
), /* X60/s */
6860 TPACPI_QEC_LNV('7', 'J', TPACPI_VOL_Q_LEVEL
), /* X60t */
6861 TPACPI_QEC_LNV('7', '7', TPACPI_VOL_Q_LEVEL
), /* Z60 */
6862 TPACPI_QEC_LNV('7', 'F', TPACPI_VOL_Q_LEVEL
), /* Z61 */
6864 /* Whitelist mute-only on all Lenovo by default */
6865 { .vendor
= PCI_VENDOR_ID_LENOVO
,
6866 .bios
= TPACPI_MATCH_ANY
,
6867 .ec
= TPACPI_MATCH_ANY
,
6868 .quirks
= TPACPI_VOL_Q_MUTEONLY
}
6871 static int __init
volume_init(struct ibm_init_struct
*iibm
)
6873 unsigned long quirks
;
6876 vdbg_printk(TPACPI_DBG_INIT
, "initializing volume subdriver\n");
6878 mutex_init(&volume_mutex
);
6881 * Check for module parameter bogosity, note that we
6882 * init volume_mode to TPACPI_VOL_MODE_MAX in order to be
6883 * able to detect "unspecified"
6885 if (volume_mode
> TPACPI_VOL_MODE_MAX
)
6888 if (volume_mode
== TPACPI_VOL_MODE_UCMS_STEP
) {
6889 pr_err("UCMS step volume mode not implemented, "
6890 "please contact %s\n", TPACPI_MAIL
);
6894 if (volume_capabilities
>= TPACPI_VOL_CAP_MAX
)
6898 * The ALSA mixer is our primary interface.
6899 * When disabled, don't install the subdriver at all
6902 vdbg_printk(TPACPI_DBG_INIT
| TPACPI_DBG_MIXER
,
6903 "ALSA mixer disabled by parameter, "
6904 "not loading volume subdriver...\n");
6908 quirks
= tpacpi_check_quirks(volume_quirk_table
,
6909 ARRAY_SIZE(volume_quirk_table
));
6911 switch (volume_capabilities
) {
6912 case TPACPI_VOL_CAP_AUTO
:
6913 if (quirks
& TPACPI_VOL_Q_MUTEONLY
)
6914 tp_features
.mixer_no_level_control
= 1;
6915 else if (quirks
& TPACPI_VOL_Q_LEVEL
)
6916 tp_features
.mixer_no_level_control
= 0;
6918 return 1; /* no mixer */
6920 case TPACPI_VOL_CAP_VOLMUTE
:
6921 tp_features
.mixer_no_level_control
= 0;
6923 case TPACPI_VOL_CAP_MUTEONLY
:
6924 tp_features
.mixer_no_level_control
= 1;
6930 if (volume_capabilities
!= TPACPI_VOL_CAP_AUTO
)
6931 dbg_printk(TPACPI_DBG_INIT
| TPACPI_DBG_MIXER
,
6932 "using user-supplied volume_capabilities=%d\n",
6933 volume_capabilities
);
6935 if (volume_mode
== TPACPI_VOL_MODE_AUTO
||
6936 volume_mode
== TPACPI_VOL_MODE_MAX
) {
6937 volume_mode
= TPACPI_VOL_MODE_ECNVRAM
;
6939 dbg_printk(TPACPI_DBG_INIT
| TPACPI_DBG_MIXER
,
6940 "driver auto-selected volume_mode=%d\n",
6943 dbg_printk(TPACPI_DBG_INIT
| TPACPI_DBG_MIXER
,
6944 "using user-supplied volume_mode=%d\n",
6948 vdbg_printk(TPACPI_DBG_INIT
| TPACPI_DBG_MIXER
,
6949 "mute is supported, volume control is %s\n",
6950 str_supported(!tp_features
.mixer_no_level_control
));
6952 rc
= volume_create_alsa_mixer();
6954 pr_err("Could not create the ALSA mixer interface\n");
6958 pr_info("Console audio control enabled, mode: %s\n",
6959 (volume_control_allowed
) ?
6960 "override (read/write)" :
6961 "monitor (read only)");
6963 vdbg_printk(TPACPI_DBG_INIT
| TPACPI_DBG_MIXER
,
6964 "registering volume hotkeys as change notification\n");
6965 tpacpi_hotkey_driver_mask_set(hotkey_driver_mask
6966 | TP_ACPI_HKEY_VOLUP_MASK
6967 | TP_ACPI_HKEY_VOLDWN_MASK
6968 | TP_ACPI_HKEY_MUTE_MASK
);
6973 static int volume_read(struct seq_file
*m
)
6977 if (volume_get_status(&status
) < 0) {
6978 seq_printf(m
, "level:\t\tunreadable\n");
6980 if (tp_features
.mixer_no_level_control
)
6981 seq_printf(m
, "level:\t\tunsupported\n");
6983 seq_printf(m
, "level:\t\t%d\n",
6984 status
& TP_EC_AUDIO_LVL_MSK
);
6986 seq_printf(m
, "mute:\t\t%s\n",
6987 onoff(status
, TP_EC_AUDIO_MUTESW
));
6989 if (volume_control_allowed
) {
6990 seq_printf(m
, "commands:\tunmute, mute\n");
6991 if (!tp_features
.mixer_no_level_control
) {
6993 "commands:\tup, down\n");
6995 "commands:\tlevel <level>"
6996 " (<level> is 0-%d)\n",
7005 static int volume_write(char *buf
)
7008 u8 new_level
, new_mute
;
7014 * We do allow volume control at driver startup, so that the
7015 * user can set initial state through the volume=... parameter hack.
7017 if (!volume_control_allowed
&& tpacpi_lifecycle
!= TPACPI_LIFE_INIT
) {
7018 if (unlikely(!tp_warned
.volume_ctrl_forbidden
)) {
7019 tp_warned
.volume_ctrl_forbidden
= 1;
7020 pr_notice("Console audio control in monitor mode, "
7021 "changes are not allowed\n");
7022 pr_notice("Use the volume_control=1 module parameter "
7023 "to enable volume control\n");
7028 rc
= volume_get_status(&s
);
7032 new_level
= s
& TP_EC_AUDIO_LVL_MSK
;
7033 new_mute
= s
& TP_EC_AUDIO_MUTESW_MSK
;
7035 while ((cmd
= next_cmd(&buf
))) {
7036 if (!tp_features
.mixer_no_level_control
) {
7037 if (strlencmp(cmd
, "up") == 0) {
7040 else if (new_level
< TP_EC_VOLUME_MAX
)
7043 } else if (strlencmp(cmd
, "down") == 0) {
7046 else if (new_level
> 0)
7049 } else if (sscanf(cmd
, "level %u", &l
) == 1 &&
7050 l
>= 0 && l
<= TP_EC_VOLUME_MAX
) {
7055 if (strlencmp(cmd
, "mute") == 0)
7056 new_mute
= TP_EC_AUDIO_MUTESW_MSK
;
7057 else if (strlencmp(cmd
, "unmute") == 0)
7063 if (tp_features
.mixer_no_level_control
) {
7064 tpacpi_disclose_usertask("procfs volume", "%smute\n",
7065 new_mute
? "" : "un");
7066 rc
= volume_set_mute(!!new_mute
);
7068 tpacpi_disclose_usertask("procfs volume",
7069 "%smute and set level to %d\n",
7070 new_mute
? "" : "un", new_level
);
7071 rc
= volume_set_status(new_mute
| new_level
);
7073 volume_alsa_notify_change();
7075 return (rc
== -EINTR
) ? -ERESTARTSYS
: rc
;
7078 static struct ibm_struct volume_driver_data
= {
7080 .read
= volume_read
,
7081 .write
= volume_write
,
7082 .exit
= volume_exit
,
7083 .suspend
= volume_suspend
,
7084 .resume
= volume_resume
,
7085 .shutdown
= volume_shutdown
,
7088 #else /* !CONFIG_THINKPAD_ACPI_ALSA_SUPPORT */
7090 #define alsa_card NULL
7092 static void inline volume_alsa_notify_change(void)
7096 static int __init
volume_init(struct ibm_init_struct
*iibm
)
7098 pr_info("volume: disabled as there is no ALSA support in this kernel\n");
7103 static struct ibm_struct volume_driver_data
= {
7107 #endif /* CONFIG_THINKPAD_ACPI_ALSA_SUPPORT */
7109 /*************************************************************************
7116 * TPACPI_FAN_RD_ACPI_GFAN:
7117 * ACPI GFAN method: returns fan level
7119 * see TPACPI_FAN_WR_ACPI_SFAN
7120 * EC 0x2f (HFSP) not available if GFAN exists
7122 * TPACPI_FAN_WR_ACPI_SFAN:
7123 * ACPI SFAN method: sets fan level, 0 (stop) to 7 (max)
7125 * EC 0x2f (HFSP) might be available *for reading*, but do not use
7128 * TPACPI_FAN_WR_TPEC:
7129 * ThinkPad EC register 0x2f (HFSP): fan control loop mode
7130 * Supported on almost all ThinkPads
7132 * Fan speed changes of any sort (including those caused by the
7133 * disengaged mode) are usually done slowly by the firmware as the
7134 * maximum amount of fan duty cycle change per second seems to be
7137 * Reading is not available if GFAN exists.
7138 * Writing is not available if SFAN exists.
7141 * 7 automatic mode engaged;
7142 * (default operation mode of the ThinkPad)
7143 * fan level is ignored in this mode.
7144 * 6 full speed mode (takes precedence over bit 7);
7145 * not available on all thinkpads. May disable
7146 * the tachometer while the fan controller ramps up
7147 * the speed (which can take up to a few *minutes*).
7148 * Speeds up fan to 100% duty-cycle, which is far above
7149 * the standard RPM levels. It is not impossible that
7150 * it could cause hardware damage.
7151 * 5-3 unused in some models. Extra bits for fan level
7152 * in others, but still useless as all values above
7153 * 7 map to the same speed as level 7 in these models.
7154 * 2-0 fan level (0..7 usually)
7156 * 0x07 = max (set when temperatures critical)
7157 * Some ThinkPads may have other levels, see
7158 * TPACPI_FAN_WR_ACPI_FANS (X31/X40/X41)
7160 * FIRMWARE BUG: on some models, EC 0x2f might not be initialized at
7161 * boot. Apparently the EC does not initialize it, so unless ACPI DSDT
7162 * does so, its initial value is meaningless (0x07).
7164 * For firmware bugs, refer to:
7165 * http://thinkwiki.org/wiki/Embedded_Controller_Firmware#Firmware_Issues
7169 * ThinkPad EC register 0x84 (LSB), 0x85 (MSB):
7170 * Main fan tachometer reading (in RPM)
7172 * This register is present on all ThinkPads with a new-style EC, and
7173 * it is known not to be present on the A21m/e, and T22, as there is
7174 * something else in offset 0x84 according to the ACPI DSDT. Other
7175 * ThinkPads from this same time period (and earlier) probably lack the
7176 * tachometer as well.
7178 * Unfortunately a lot of ThinkPads with new-style ECs but whose firmware
7179 * was never fixed by IBM to report the EC firmware version string
7180 * probably support the tachometer (like the early X models), so
7181 * detecting it is quite hard. We need more data to know for sure.
7183 * FIRMWARE BUG: always read 0x84 first, otherwise incorrect readings
7186 * FIRMWARE BUG: may go stale while the EC is switching to full speed
7189 * For firmware bugs, refer to:
7190 * http://thinkwiki.org/wiki/Embedded_Controller_Firmware#Firmware_Issues
7194 * ThinkPad EC register 0x31 bit 0 (only on select models)
7196 * When bit 0 of EC register 0x31 is zero, the tachometer registers
7197 * show the speed of the main fan. When bit 0 of EC register 0x31
7198 * is one, the tachometer registers show the speed of the auxiliary
7201 * Fan control seems to affect both fans, regardless of the state
7204 * So far, only the firmware for the X60/X61 non-tablet versions
7205 * seem to support this (firmware TP-7M).
7207 * TPACPI_FAN_WR_ACPI_FANS:
7208 * ThinkPad X31, X40, X41. Not available in the X60.
7210 * FANS ACPI handle: takes three arguments: low speed, medium speed,
7211 * high speed. ACPI DSDT seems to map these three speeds to levels
7212 * as follows: STOP LOW LOW MED MED HIGH HIGH HIGH HIGH
7213 * (this map is stored on FAN0..FAN8 as "0,1,1,2,2,3,3,3,3")
7215 * The speeds are stored on handles
7216 * (FANA:FAN9), (FANC:FANB), (FANE:FAND).
7218 * There are three default speed sets, accessible as handles:
7219 * FS1L,FS1M,FS1H; FS2L,FS2M,FS2H; FS3L,FS3M,FS3H
7221 * ACPI DSDT switches which set is in use depending on various
7224 * TPACPI_FAN_WR_TPEC is also available and should be used to
7225 * command the fan. The X31/X40/X41 seems to have 8 fan levels,
7226 * but the ACPI tables just mention level 7.
7229 enum { /* Fan control constants */
7230 fan_status_offset
= 0x2f, /* EC register 0x2f */
7231 fan_rpm_offset
= 0x84, /* EC register 0x84: LSB, 0x85 MSB (RPM)
7232 * 0x84 must be read before 0x85 */
7233 fan_select_offset
= 0x31, /* EC register 0x31 (Firmware 7M)
7234 bit 0 selects which fan is active */
7236 TP_EC_FAN_FULLSPEED
= 0x40, /* EC fan mode: full speed */
7237 TP_EC_FAN_AUTO
= 0x80, /* EC fan mode: auto fan control */
7239 TPACPI_FAN_LAST_LEVEL
= 0x100, /* Use cached last-seen fan level */
7242 enum fan_status_access_mode
{
7243 TPACPI_FAN_NONE
= 0, /* No fan status or control */
7244 TPACPI_FAN_RD_ACPI_GFAN
, /* Use ACPI GFAN */
7245 TPACPI_FAN_RD_TPEC
, /* Use ACPI EC regs 0x2f, 0x84-0x85 */
7248 enum fan_control_access_mode
{
7249 TPACPI_FAN_WR_NONE
= 0, /* No fan control */
7250 TPACPI_FAN_WR_ACPI_SFAN
, /* Use ACPI SFAN */
7251 TPACPI_FAN_WR_TPEC
, /* Use ACPI EC reg 0x2f */
7252 TPACPI_FAN_WR_ACPI_FANS
, /* Use ACPI FANS and EC reg 0x2f */
7255 enum fan_control_commands
{
7256 TPACPI_FAN_CMD_SPEED
= 0x0001, /* speed command */
7257 TPACPI_FAN_CMD_LEVEL
= 0x0002, /* level command */
7258 TPACPI_FAN_CMD_ENABLE
= 0x0004, /* enable/disable cmd,
7259 * and also watchdog cmd */
7262 static int fan_control_allowed
;
7264 static enum fan_status_access_mode fan_status_access_mode
;
7265 static enum fan_control_access_mode fan_control_access_mode
;
7266 static enum fan_control_commands fan_control_commands
;
7268 static u8 fan_control_initial_status
;
7269 static u8 fan_control_desired_level
;
7270 static u8 fan_control_resume_level
;
7271 static int fan_watchdog_maxinterval
;
7273 static struct mutex fan_mutex
;
7275 static void fan_watchdog_fire(struct work_struct
*ignored
);
7276 static DECLARE_DELAYED_WORK(fan_watchdog_task
, fan_watchdog_fire
);
7278 TPACPI_HANDLE(fans
, ec
, "FANS"); /* X31, X40, X41 */
7279 TPACPI_HANDLE(gfan
, ec
, "GFAN", /* 570 */
7280 "\\FSPD", /* 600e/x, 770e, 770x */
7282 TPACPI_HANDLE(sfan
, ec
, "SFAN", /* 570 */
7283 "JFNS", /* 770x-JL */
7287 * Unitialized HFSP quirk: ACPI DSDT and EC fail to initialize the
7288 * HFSP register at boot, so it contains 0x07 but the Thinkpad could
7289 * be in auto mode (0x80).
7291 * This is corrected by any write to HFSP either by the driver, or
7294 * We assume 0x07 really means auto mode while this quirk is active,
7295 * as this is far more likely than the ThinkPad being in level 7,
7296 * which is only used by the firmware during thermal emergencies.
7298 * Enable for TP-1Y (T43), TP-78 (R51e), TP-76 (R52),
7299 * TP-70 (T43, R52), which are known to be buggy.
7302 static void fan_quirk1_setup(void)
7304 if (fan_control_initial_status
== 0x07) {
7305 pr_notice("fan_init: initial fan status is unknown, "
7306 "assuming it is in auto mode\n");
7307 tp_features
.fan_ctrl_status_undef
= 1;
7311 static void fan_quirk1_handle(u8
*fan_status
)
7313 if (unlikely(tp_features
.fan_ctrl_status_undef
)) {
7314 if (*fan_status
!= fan_control_initial_status
) {
7315 /* something changed the HFSP regisnter since
7316 * driver init time, so it is not undefined
7318 tp_features
.fan_ctrl_status_undef
= 0;
7320 /* Return most likely status. In fact, it
7321 * might be the only possible status */
7322 *fan_status
= TP_EC_FAN_AUTO
;
7327 /* Select main fan on X60/X61, NOOP on others */
7328 static bool fan_select_fan1(void)
7330 if (tp_features
.second_fan
) {
7333 if (ec_read(fan_select_offset
, &val
) < 0)
7336 if (ec_write(fan_select_offset
, val
) < 0)
7342 /* Select secondary fan on X60/X61 */
7343 static bool fan_select_fan2(void)
7347 if (!tp_features
.second_fan
)
7350 if (ec_read(fan_select_offset
, &val
) < 0)
7353 if (ec_write(fan_select_offset
, val
) < 0)
7360 * Call with fan_mutex held
7362 static void fan_update_desired_level(u8 status
)
7365 (TP_EC_FAN_AUTO
| TP_EC_FAN_FULLSPEED
)) == 0) {
7367 fan_control_desired_level
= 7;
7369 fan_control_desired_level
= status
;
7373 static int fan_get_status(u8
*status
)
7378 * Add TPACPI_FAN_RD_ACPI_FANS ? */
7380 switch (fan_status_access_mode
) {
7381 case TPACPI_FAN_RD_ACPI_GFAN
:
7382 /* 570, 600e/x, 770e, 770x */
7384 if (unlikely(!acpi_evalf(gfan_handle
, &s
, NULL
, "d")))
7392 case TPACPI_FAN_RD_TPEC
:
7393 /* all except 570, 600e/x, 770e, 770x */
7394 if (unlikely(!acpi_ec_read(fan_status_offset
, &s
)))
7397 if (likely(status
)) {
7399 fan_quirk1_handle(status
);
7411 static int fan_get_status_safe(u8
*status
)
7416 if (mutex_lock_killable(&fan_mutex
))
7417 return -ERESTARTSYS
;
7418 rc
= fan_get_status(&s
);
7420 fan_update_desired_level(s
);
7421 mutex_unlock(&fan_mutex
);
7429 static int fan_get_speed(unsigned int *speed
)
7433 switch (fan_status_access_mode
) {
7434 case TPACPI_FAN_RD_TPEC
:
7435 /* all except 570, 600e/x, 770e, 770x */
7436 if (unlikely(!fan_select_fan1()))
7438 if (unlikely(!acpi_ec_read(fan_rpm_offset
, &lo
) ||
7439 !acpi_ec_read(fan_rpm_offset
+ 1, &hi
)))
7443 *speed
= (hi
<< 8) | lo
;
7454 static int fan2_get_speed(unsigned int *speed
)
7459 switch (fan_status_access_mode
) {
7460 case TPACPI_FAN_RD_TPEC
:
7461 /* all except 570, 600e/x, 770e, 770x */
7462 if (unlikely(!fan_select_fan2()))
7464 rc
= !acpi_ec_read(fan_rpm_offset
, &lo
) ||
7465 !acpi_ec_read(fan_rpm_offset
+ 1, &hi
);
7466 fan_select_fan1(); /* play it safe */
7471 *speed
= (hi
<< 8) | lo
;
7482 static int fan_set_level(int level
)
7484 if (!fan_control_allowed
)
7487 switch (fan_control_access_mode
) {
7488 case TPACPI_FAN_WR_ACPI_SFAN
:
7489 if (level
>= 0 && level
<= 7) {
7490 if (!acpi_evalf(sfan_handle
, NULL
, NULL
, "vd", level
))
7496 case TPACPI_FAN_WR_ACPI_FANS
:
7497 case TPACPI_FAN_WR_TPEC
:
7498 if (!(level
& TP_EC_FAN_AUTO
) &&
7499 !(level
& TP_EC_FAN_FULLSPEED
) &&
7500 ((level
< 0) || (level
> 7)))
7503 /* safety net should the EC not support AUTO
7504 * or FULLSPEED mode bits and just ignore them */
7505 if (level
& TP_EC_FAN_FULLSPEED
)
7506 level
|= 7; /* safety min speed 7 */
7507 else if (level
& TP_EC_FAN_AUTO
)
7508 level
|= 4; /* safety min speed 4 */
7510 if (!acpi_ec_write(fan_status_offset
, level
))
7513 tp_features
.fan_ctrl_status_undef
= 0;
7520 vdbg_printk(TPACPI_DBG_FAN
,
7521 "fan control: set fan control register to 0x%02x\n", level
);
7525 static int fan_set_level_safe(int level
)
7529 if (!fan_control_allowed
)
7532 if (mutex_lock_killable(&fan_mutex
))
7533 return -ERESTARTSYS
;
7535 if (level
== TPACPI_FAN_LAST_LEVEL
)
7536 level
= fan_control_desired_level
;
7538 rc
= fan_set_level(level
);
7540 fan_update_desired_level(level
);
7542 mutex_unlock(&fan_mutex
);
7546 static int fan_set_enable(void)
7551 if (!fan_control_allowed
)
7554 if (mutex_lock_killable(&fan_mutex
))
7555 return -ERESTARTSYS
;
7557 switch (fan_control_access_mode
) {
7558 case TPACPI_FAN_WR_ACPI_FANS
:
7559 case TPACPI_FAN_WR_TPEC
:
7560 rc
= fan_get_status(&s
);
7564 /* Don't go out of emergency fan mode */
7567 s
|= TP_EC_FAN_AUTO
| 4; /* min fan speed 4 */
7570 if (!acpi_ec_write(fan_status_offset
, s
))
7573 tp_features
.fan_ctrl_status_undef
= 0;
7578 case TPACPI_FAN_WR_ACPI_SFAN
:
7579 rc
= fan_get_status(&s
);
7585 /* Set fan to at least level 4 */
7588 if (!acpi_evalf(sfan_handle
, NULL
, NULL
, "vd", s
))
7598 mutex_unlock(&fan_mutex
);
7601 vdbg_printk(TPACPI_DBG_FAN
,
7602 "fan control: set fan control register to 0x%02x\n",
7607 static int fan_set_disable(void)
7611 if (!fan_control_allowed
)
7614 if (mutex_lock_killable(&fan_mutex
))
7615 return -ERESTARTSYS
;
7618 switch (fan_control_access_mode
) {
7619 case TPACPI_FAN_WR_ACPI_FANS
:
7620 case TPACPI_FAN_WR_TPEC
:
7621 if (!acpi_ec_write(fan_status_offset
, 0x00))
7624 fan_control_desired_level
= 0;
7625 tp_features
.fan_ctrl_status_undef
= 0;
7629 case TPACPI_FAN_WR_ACPI_SFAN
:
7630 if (!acpi_evalf(sfan_handle
, NULL
, NULL
, "vd", 0x00))
7633 fan_control_desired_level
= 0;
7641 vdbg_printk(TPACPI_DBG_FAN
,
7642 "fan control: set fan control register to 0\n");
7644 mutex_unlock(&fan_mutex
);
7648 static int fan_set_speed(int speed
)
7652 if (!fan_control_allowed
)
7655 if (mutex_lock_killable(&fan_mutex
))
7656 return -ERESTARTSYS
;
7659 switch (fan_control_access_mode
) {
7660 case TPACPI_FAN_WR_ACPI_FANS
:
7661 if (speed
>= 0 && speed
<= 65535) {
7662 if (!acpi_evalf(fans_handle
, NULL
, NULL
, "vddd",
7663 speed
, speed
, speed
))
7673 mutex_unlock(&fan_mutex
);
7677 static void fan_watchdog_reset(void)
7679 static int fan_watchdog_active
;
7681 if (fan_control_access_mode
== TPACPI_FAN_WR_NONE
)
7684 if (fan_watchdog_active
)
7685 cancel_delayed_work(&fan_watchdog_task
);
7687 if (fan_watchdog_maxinterval
> 0 &&
7688 tpacpi_lifecycle
!= TPACPI_LIFE_EXITING
) {
7689 fan_watchdog_active
= 1;
7690 if (!queue_delayed_work(tpacpi_wq
, &fan_watchdog_task
,
7691 msecs_to_jiffies(fan_watchdog_maxinterval
7693 pr_err("failed to queue the fan watchdog, "
7694 "watchdog will not trigger\n");
7697 fan_watchdog_active
= 0;
7700 static void fan_watchdog_fire(struct work_struct
*ignored
)
7704 if (tpacpi_lifecycle
!= TPACPI_LIFE_RUNNING
)
7707 pr_notice("fan watchdog: enabling fan\n");
7708 rc
= fan_set_enable();
7710 pr_err("fan watchdog: error %d while enabling fan, "
7711 "will try again later...\n", -rc
);
7712 /* reschedule for later */
7713 fan_watchdog_reset();
7718 * SYSFS fan layout: hwmon compatible (device)
7721 * 0: "disengaged" mode
7723 * 2: native EC "auto" mode (recommended, hardware default)
7725 * pwm*: set speed in manual mode, ignored otherwise.
7726 * 0 is level 0; 255 is level 7. Intermediate points done with linear
7729 * fan*_input: tachometer reading, RPM
7732 * SYSFS fan layout: extensions
7734 * fan_watchdog (driver):
7735 * fan watchdog interval in seconds, 0 disables (default), max 120
7738 /* sysfs fan pwm1_enable ----------------------------------------------- */
7739 static ssize_t
fan_pwm1_enable_show(struct device
*dev
,
7740 struct device_attribute
*attr
,
7746 res
= fan_get_status_safe(&status
);
7750 if (status
& TP_EC_FAN_FULLSPEED
) {
7752 } else if (status
& TP_EC_FAN_AUTO
) {
7757 return snprintf(buf
, PAGE_SIZE
, "%d\n", mode
);
7760 static ssize_t
fan_pwm1_enable_store(struct device
*dev
,
7761 struct device_attribute
*attr
,
7762 const char *buf
, size_t count
)
7767 if (parse_strtoul(buf
, 2, &t
))
7770 tpacpi_disclose_usertask("hwmon pwm1_enable",
7771 "set fan mode to %lu\n", t
);
7775 level
= TP_EC_FAN_FULLSPEED
;
7778 level
= TPACPI_FAN_LAST_LEVEL
;
7781 level
= TP_EC_FAN_AUTO
;
7784 /* reserved for software-controlled auto mode */
7790 res
= fan_set_level_safe(level
);
7796 fan_watchdog_reset();
7801 static struct device_attribute dev_attr_fan_pwm1_enable
=
7802 __ATTR(pwm1_enable
, S_IWUSR
| S_IRUGO
,
7803 fan_pwm1_enable_show
, fan_pwm1_enable_store
);
7805 /* sysfs fan pwm1 ------------------------------------------------------ */
7806 static ssize_t
fan_pwm1_show(struct device
*dev
,
7807 struct device_attribute
*attr
,
7813 res
= fan_get_status_safe(&status
);
7818 (TP_EC_FAN_AUTO
| TP_EC_FAN_FULLSPEED
)) != 0)
7819 status
= fan_control_desired_level
;
7824 return snprintf(buf
, PAGE_SIZE
, "%u\n", (status
* 255) / 7);
7827 static ssize_t
fan_pwm1_store(struct device
*dev
,
7828 struct device_attribute
*attr
,
7829 const char *buf
, size_t count
)
7833 u8 status
, newlevel
;
7835 if (parse_strtoul(buf
, 255, &s
))
7838 tpacpi_disclose_usertask("hwmon pwm1",
7839 "set fan speed to %lu\n", s
);
7841 /* scale down from 0-255 to 0-7 */
7842 newlevel
= (s
>> 5) & 0x07;
7844 if (mutex_lock_killable(&fan_mutex
))
7845 return -ERESTARTSYS
;
7847 rc
= fan_get_status(&status
);
7848 if (!rc
&& (status
&
7849 (TP_EC_FAN_AUTO
| TP_EC_FAN_FULLSPEED
)) == 0) {
7850 rc
= fan_set_level(newlevel
);
7854 fan_update_desired_level(newlevel
);
7855 fan_watchdog_reset();
7859 mutex_unlock(&fan_mutex
);
7860 return (rc
)? rc
: count
;
7863 static struct device_attribute dev_attr_fan_pwm1
=
7864 __ATTR(pwm1
, S_IWUSR
| S_IRUGO
,
7865 fan_pwm1_show
, fan_pwm1_store
);
7867 /* sysfs fan fan1_input ------------------------------------------------ */
7868 static ssize_t
fan_fan1_input_show(struct device
*dev
,
7869 struct device_attribute
*attr
,
7875 res
= fan_get_speed(&speed
);
7879 return snprintf(buf
, PAGE_SIZE
, "%u\n", speed
);
7882 static struct device_attribute dev_attr_fan_fan1_input
=
7883 __ATTR(fan1_input
, S_IRUGO
,
7884 fan_fan1_input_show
, NULL
);
7886 /* sysfs fan fan2_input ------------------------------------------------ */
7887 static ssize_t
fan_fan2_input_show(struct device
*dev
,
7888 struct device_attribute
*attr
,
7894 res
= fan2_get_speed(&speed
);
7898 return snprintf(buf
, PAGE_SIZE
, "%u\n", speed
);
7901 static struct device_attribute dev_attr_fan_fan2_input
=
7902 __ATTR(fan2_input
, S_IRUGO
,
7903 fan_fan2_input_show
, NULL
);
7905 /* sysfs fan fan_watchdog (hwmon driver) ------------------------------- */
7906 static ssize_t
fan_fan_watchdog_show(struct device_driver
*drv
,
7909 return snprintf(buf
, PAGE_SIZE
, "%u\n", fan_watchdog_maxinterval
);
7912 static ssize_t
fan_fan_watchdog_store(struct device_driver
*drv
,
7913 const char *buf
, size_t count
)
7917 if (parse_strtoul(buf
, 120, &t
))
7920 if (!fan_control_allowed
)
7923 fan_watchdog_maxinterval
= t
;
7924 fan_watchdog_reset();
7926 tpacpi_disclose_usertask("fan_watchdog", "set to %lu\n", t
);
7931 static DRIVER_ATTR(fan_watchdog
, S_IWUSR
| S_IRUGO
,
7932 fan_fan_watchdog_show
, fan_fan_watchdog_store
);
7934 /* --------------------------------------------------------------------- */
7935 static struct attribute
*fan_attributes
[] = {
7936 &dev_attr_fan_pwm1_enable
.attr
, &dev_attr_fan_pwm1
.attr
,
7937 &dev_attr_fan_fan1_input
.attr
,
7938 NULL
, /* for fan2_input */
7942 static const struct attribute_group fan_attr_group
= {
7943 .attrs
= fan_attributes
,
7946 #define TPACPI_FAN_Q1 0x0001 /* Unitialized HFSP */
7947 #define TPACPI_FAN_2FAN 0x0002 /* EC 0x31 bit 0 selects fan2 */
7949 #define TPACPI_FAN_QI(__id1, __id2, __quirks) \
7950 { .vendor = PCI_VENDOR_ID_IBM, \
7951 .bios = TPACPI_MATCH_ANY, \
7952 .ec = TPID(__id1, __id2), \
7953 .quirks = __quirks }
7955 #define TPACPI_FAN_QL(__id1, __id2, __quirks) \
7956 { .vendor = PCI_VENDOR_ID_LENOVO, \
7957 .bios = TPACPI_MATCH_ANY, \
7958 .ec = TPID(__id1, __id2), \
7959 .quirks = __quirks }
7961 static const struct tpacpi_quirk fan_quirk_table
[] __initconst
= {
7962 TPACPI_FAN_QI('1', 'Y', TPACPI_FAN_Q1
),
7963 TPACPI_FAN_QI('7', '8', TPACPI_FAN_Q1
),
7964 TPACPI_FAN_QI('7', '6', TPACPI_FAN_Q1
),
7965 TPACPI_FAN_QI('7', '0', TPACPI_FAN_Q1
),
7966 TPACPI_FAN_QL('7', 'M', TPACPI_FAN_2FAN
),
7969 #undef TPACPI_FAN_QL
7970 #undef TPACPI_FAN_QI
7972 static int __init
fan_init(struct ibm_init_struct
*iibm
)
7975 unsigned long quirks
;
7977 vdbg_printk(TPACPI_DBG_INIT
| TPACPI_DBG_FAN
,
7978 "initializing fan subdriver\n");
7980 mutex_init(&fan_mutex
);
7981 fan_status_access_mode
= TPACPI_FAN_NONE
;
7982 fan_control_access_mode
= TPACPI_FAN_WR_NONE
;
7983 fan_control_commands
= 0;
7984 fan_watchdog_maxinterval
= 0;
7985 tp_features
.fan_ctrl_status_undef
= 0;
7986 tp_features
.second_fan
= 0;
7987 fan_control_desired_level
= 7;
7989 if (tpacpi_is_ibm()) {
7990 TPACPI_ACPIHANDLE_INIT(fans
);
7991 TPACPI_ACPIHANDLE_INIT(gfan
);
7992 TPACPI_ACPIHANDLE_INIT(sfan
);
7995 quirks
= tpacpi_check_quirks(fan_quirk_table
,
7996 ARRAY_SIZE(fan_quirk_table
));
7999 /* 570, 600e/x, 770e, 770x */
8000 fan_status_access_mode
= TPACPI_FAN_RD_ACPI_GFAN
;
8002 /* all other ThinkPads: note that even old-style
8003 * ThinkPad ECs supports the fan control register */
8004 if (likely(acpi_ec_read(fan_status_offset
,
8005 &fan_control_initial_status
))) {
8006 fan_status_access_mode
= TPACPI_FAN_RD_TPEC
;
8007 if (quirks
& TPACPI_FAN_Q1
)
8009 if (quirks
& TPACPI_FAN_2FAN
) {
8010 tp_features
.second_fan
= 1;
8011 dbg_printk(TPACPI_DBG_INIT
| TPACPI_DBG_FAN
,
8012 "secondary fan support enabled\n");
8015 pr_err("ThinkPad ACPI EC access misbehaving, "
8016 "fan status and control unavailable\n");
8023 fan_control_access_mode
= TPACPI_FAN_WR_ACPI_SFAN
;
8024 fan_control_commands
|=
8025 TPACPI_FAN_CMD_LEVEL
| TPACPI_FAN_CMD_ENABLE
;
8028 /* gfan without sfan means no fan control */
8029 /* all other models implement TP EC 0x2f control */
8033 fan_control_access_mode
=
8034 TPACPI_FAN_WR_ACPI_FANS
;
8035 fan_control_commands
|=
8036 TPACPI_FAN_CMD_SPEED
|
8037 TPACPI_FAN_CMD_LEVEL
|
8038 TPACPI_FAN_CMD_ENABLE
;
8040 fan_control_access_mode
= TPACPI_FAN_WR_TPEC
;
8041 fan_control_commands
|=
8042 TPACPI_FAN_CMD_LEVEL
|
8043 TPACPI_FAN_CMD_ENABLE
;
8048 vdbg_printk(TPACPI_DBG_INIT
| TPACPI_DBG_FAN
,
8049 "fan is %s, modes %d, %d\n",
8050 str_supported(fan_status_access_mode
!= TPACPI_FAN_NONE
||
8051 fan_control_access_mode
!= TPACPI_FAN_WR_NONE
),
8052 fan_status_access_mode
, fan_control_access_mode
);
8054 /* fan control master switch */
8055 if (!fan_control_allowed
) {
8056 fan_control_access_mode
= TPACPI_FAN_WR_NONE
;
8057 fan_control_commands
= 0;
8058 dbg_printk(TPACPI_DBG_INIT
| TPACPI_DBG_FAN
,
8059 "fan control features disabled by parameter\n");
8062 /* update fan_control_desired_level */
8063 if (fan_status_access_mode
!= TPACPI_FAN_NONE
)
8064 fan_get_status_safe(NULL
);
8066 if (fan_status_access_mode
!= TPACPI_FAN_NONE
||
8067 fan_control_access_mode
!= TPACPI_FAN_WR_NONE
) {
8068 if (tp_features
.second_fan
) {
8069 /* attach second fan tachometer */
8070 fan_attributes
[ARRAY_SIZE(fan_attributes
)-2] =
8071 &dev_attr_fan_fan2_input
.attr
;
8073 rc
= sysfs_create_group(&tpacpi_sensors_pdev
->dev
.kobj
,
8078 rc
= driver_create_file(&tpacpi_hwmon_pdriver
.driver
,
8079 &driver_attr_fan_watchdog
);
8081 sysfs_remove_group(&tpacpi_sensors_pdev
->dev
.kobj
,
8090 static void fan_exit(void)
8092 vdbg_printk(TPACPI_DBG_EXIT
| TPACPI_DBG_FAN
,
8093 "cancelling any pending fan watchdog tasks\n");
8095 /* FIXME: can we really do this unconditionally? */
8096 sysfs_remove_group(&tpacpi_sensors_pdev
->dev
.kobj
, &fan_attr_group
);
8097 driver_remove_file(&tpacpi_hwmon_pdriver
.driver
,
8098 &driver_attr_fan_watchdog
);
8100 cancel_delayed_work(&fan_watchdog_task
);
8101 flush_workqueue(tpacpi_wq
);
8104 static void fan_suspend(pm_message_t state
)
8108 if (!fan_control_allowed
)
8111 /* Store fan status in cache */
8112 fan_control_resume_level
= 0;
8113 rc
= fan_get_status_safe(&fan_control_resume_level
);
8115 pr_notice("failed to read fan level for later "
8116 "restore during resume: %d\n", rc
);
8118 /* if it is undefined, don't attempt to restore it.
8120 if (tp_features
.fan_ctrl_status_undef
)
8121 fan_control_resume_level
= 0;
8124 static void fan_resume(void)
8126 u8 current_level
= 7;
8127 bool do_set
= false;
8130 /* DSDT *always* updates status on resume */
8131 tp_features
.fan_ctrl_status_undef
= 0;
8133 if (!fan_control_allowed
||
8134 !fan_control_resume_level
||
8135 (fan_get_status_safe(¤t_level
) < 0))
8138 switch (fan_control_access_mode
) {
8139 case TPACPI_FAN_WR_ACPI_SFAN
:
8140 /* never decrease fan level */
8141 do_set
= (fan_control_resume_level
> current_level
);
8143 case TPACPI_FAN_WR_ACPI_FANS
:
8144 case TPACPI_FAN_WR_TPEC
:
8145 /* never decrease fan level, scale is:
8146 * TP_EC_FAN_FULLSPEED > 7 >= TP_EC_FAN_AUTO
8148 * We expect the firmware to set either 7 or AUTO, but we
8149 * handle FULLSPEED out of paranoia.
8151 * So, we can safely only restore FULLSPEED or 7, anything
8152 * else could slow the fan. Restoring AUTO is useless, at
8153 * best that's exactly what the DSDT already set (it is the
8156 * Always keep in mind that the DSDT *will* have set the
8157 * fans to what the vendor supposes is the best level. We
8158 * muck with it only to speed the fan up.
8160 if (fan_control_resume_level
!= 7 &&
8161 !(fan_control_resume_level
& TP_EC_FAN_FULLSPEED
))
8164 do_set
= !(current_level
& TP_EC_FAN_FULLSPEED
) &&
8165 (current_level
!= fan_control_resume_level
);
8171 pr_notice("restoring fan level to 0x%02x\n",
8172 fan_control_resume_level
);
8173 rc
= fan_set_level_safe(fan_control_resume_level
);
8175 pr_notice("failed to restore fan level: %d\n", rc
);
8179 static int fan_read(struct seq_file
*m
)
8183 unsigned int speed
= 0;
8185 switch (fan_status_access_mode
) {
8186 case TPACPI_FAN_RD_ACPI_GFAN
:
8187 /* 570, 600e/x, 770e, 770x */
8188 rc
= fan_get_status_safe(&status
);
8192 seq_printf(m
, "status:\t\t%s\n"
8194 (status
!= 0) ? "enabled" : "disabled", status
);
8197 case TPACPI_FAN_RD_TPEC
:
8198 /* all except 570, 600e/x, 770e, 770x */
8199 rc
= fan_get_status_safe(&status
);
8203 seq_printf(m
, "status:\t\t%s\n",
8204 (status
!= 0) ? "enabled" : "disabled");
8206 rc
= fan_get_speed(&speed
);
8210 seq_printf(m
, "speed:\t\t%d\n", speed
);
8212 if (status
& TP_EC_FAN_FULLSPEED
)
8213 /* Disengaged mode takes precedence */
8214 seq_printf(m
, "level:\t\tdisengaged\n");
8215 else if (status
& TP_EC_FAN_AUTO
)
8216 seq_printf(m
, "level:\t\tauto\n");
8218 seq_printf(m
, "level:\t\t%d\n", status
);
8221 case TPACPI_FAN_NONE
:
8223 seq_printf(m
, "status:\t\tnot supported\n");
8226 if (fan_control_commands
& TPACPI_FAN_CMD_LEVEL
) {
8227 seq_printf(m
, "commands:\tlevel <level>");
8229 switch (fan_control_access_mode
) {
8230 case TPACPI_FAN_WR_ACPI_SFAN
:
8231 seq_printf(m
, " (<level> is 0-7)\n");
8235 seq_printf(m
, " (<level> is 0-7, "
8236 "auto, disengaged, full-speed)\n");
8241 if (fan_control_commands
& TPACPI_FAN_CMD_ENABLE
)
8242 seq_printf(m
, "commands:\tenable, disable\n"
8243 "commands:\twatchdog <timeout> (<timeout> "
8244 "is 0 (off), 1-120 (seconds))\n");
8246 if (fan_control_commands
& TPACPI_FAN_CMD_SPEED
)
8247 seq_printf(m
, "commands:\tspeed <speed>"
8248 " (<speed> is 0-65535)\n");
8253 static int fan_write_cmd_level(const char *cmd
, int *rc
)
8257 if (strlencmp(cmd
, "level auto") == 0)
8258 level
= TP_EC_FAN_AUTO
;
8259 else if ((strlencmp(cmd
, "level disengaged") == 0) |
8260 (strlencmp(cmd
, "level full-speed") == 0))
8261 level
= TP_EC_FAN_FULLSPEED
;
8262 else if (sscanf(cmd
, "level %d", &level
) != 1)
8265 *rc
= fan_set_level_safe(level
);
8267 pr_err("level command accepted for unsupported access mode %d\n",
8268 fan_control_access_mode
);
8270 tpacpi_disclose_usertask("procfs fan",
8271 "set level to %d\n", level
);
8276 static int fan_write_cmd_enable(const char *cmd
, int *rc
)
8278 if (strlencmp(cmd
, "enable") != 0)
8281 *rc
= fan_set_enable();
8283 pr_err("enable command accepted for unsupported access mode %d\n",
8284 fan_control_access_mode
);
8286 tpacpi_disclose_usertask("procfs fan", "enable\n");
8291 static int fan_write_cmd_disable(const char *cmd
, int *rc
)
8293 if (strlencmp(cmd
, "disable") != 0)
8296 *rc
= fan_set_disable();
8298 pr_err("disable command accepted for unsupported access mode %d\n",
8299 fan_control_access_mode
);
8301 tpacpi_disclose_usertask("procfs fan", "disable\n");
8306 static int fan_write_cmd_speed(const char *cmd
, int *rc
)
8311 * Support speed <low> <medium> <high> ? */
8313 if (sscanf(cmd
, "speed %d", &speed
) != 1)
8316 *rc
= fan_set_speed(speed
);
8318 pr_err("speed command accepted for unsupported access mode %d\n",
8319 fan_control_access_mode
);
8321 tpacpi_disclose_usertask("procfs fan",
8322 "set speed to %d\n", speed
);
8327 static int fan_write_cmd_watchdog(const char *cmd
, int *rc
)
8331 if (sscanf(cmd
, "watchdog %d", &interval
) != 1)
8334 if (interval
< 0 || interval
> 120)
8337 fan_watchdog_maxinterval
= interval
;
8338 tpacpi_disclose_usertask("procfs fan",
8339 "set watchdog timer to %d\n",
8346 static int fan_write(char *buf
)
8351 while (!rc
&& (cmd
= next_cmd(&buf
))) {
8352 if (!((fan_control_commands
& TPACPI_FAN_CMD_LEVEL
) &&
8353 fan_write_cmd_level(cmd
, &rc
)) &&
8354 !((fan_control_commands
& TPACPI_FAN_CMD_ENABLE
) &&
8355 (fan_write_cmd_enable(cmd
, &rc
) ||
8356 fan_write_cmd_disable(cmd
, &rc
) ||
8357 fan_write_cmd_watchdog(cmd
, &rc
))) &&
8358 !((fan_control_commands
& TPACPI_FAN_CMD_SPEED
) &&
8359 fan_write_cmd_speed(cmd
, &rc
))
8363 fan_watchdog_reset();
8369 static struct ibm_struct fan_driver_data
= {
8374 .suspend
= fan_suspend
,
8375 .resume
= fan_resume
,
8378 /****************************************************************************
8379 ****************************************************************************
8383 ****************************************************************************
8384 ****************************************************************************/
8387 * HKEY event callout for other subdrivers go here
8388 * (yes, it is ugly, but it is quick, safe, and gets the job done
8390 static void tpacpi_driver_event(const unsigned int hkey_event
)
8392 if (ibm_backlight_device
) {
8393 switch (hkey_event
) {
8394 case TP_HKEY_EV_BRGHT_UP
:
8395 case TP_HKEY_EV_BRGHT_DOWN
:
8396 tpacpi_brightness_notify_change();
8400 switch (hkey_event
) {
8401 case TP_HKEY_EV_VOL_UP
:
8402 case TP_HKEY_EV_VOL_DOWN
:
8403 case TP_HKEY_EV_VOL_MUTE
:
8404 volume_alsa_notify_change();
8409 static void hotkey_driver_event(const unsigned int scancode
)
8411 tpacpi_driver_event(TP_HKEY_EV_HOTKEY_BASE
+ scancode
);
8414 /* sysfs name ---------------------------------------------------------- */
8415 static ssize_t
thinkpad_acpi_pdev_name_show(struct device
*dev
,
8416 struct device_attribute
*attr
,
8419 return snprintf(buf
, PAGE_SIZE
, "%s\n", TPACPI_NAME
);
8422 static struct device_attribute dev_attr_thinkpad_acpi_pdev_name
=
8423 __ATTR(name
, S_IRUGO
, thinkpad_acpi_pdev_name_show
, NULL
);
8425 /* --------------------------------------------------------------------- */
8428 static struct proc_dir_entry
*proc_dir
;
8431 * Module and infrastructure proble, init and exit handling
8434 static int force_load
;
8436 #ifdef CONFIG_THINKPAD_ACPI_DEBUG
8437 static const char * __init
str_supported(int is_supported
)
8439 static char text_unsupported
[] __initdata
= "not supported";
8441 return (is_supported
)? &text_unsupported
[4] : &text_unsupported
[0];
8443 #endif /* CONFIG_THINKPAD_ACPI_DEBUG */
8445 static void ibm_exit(struct ibm_struct
*ibm
)
8447 dbg_printk(TPACPI_DBG_EXIT
, "removing %s\n", ibm
->name
);
8449 list_del_init(&ibm
->all_drivers
);
8451 if (ibm
->flags
.acpi_notify_installed
) {
8452 dbg_printk(TPACPI_DBG_EXIT
,
8453 "%s: acpi_remove_notify_handler\n", ibm
->name
);
8455 acpi_remove_notify_handler(*ibm
->acpi
->handle
,
8457 dispatch_acpi_notify
);
8458 ibm
->flags
.acpi_notify_installed
= 0;
8461 if (ibm
->flags
.proc_created
) {
8462 dbg_printk(TPACPI_DBG_EXIT
,
8463 "%s: remove_proc_entry\n", ibm
->name
);
8464 remove_proc_entry(ibm
->name
, proc_dir
);
8465 ibm
->flags
.proc_created
= 0;
8468 if (ibm
->flags
.acpi_driver_registered
) {
8469 dbg_printk(TPACPI_DBG_EXIT
,
8470 "%s: acpi_bus_unregister_driver\n", ibm
->name
);
8472 acpi_bus_unregister_driver(ibm
->acpi
->driver
);
8473 kfree(ibm
->acpi
->driver
);
8474 ibm
->acpi
->driver
= NULL
;
8475 ibm
->flags
.acpi_driver_registered
= 0;
8478 if (ibm
->flags
.init_called
&& ibm
->exit
) {
8480 ibm
->flags
.init_called
= 0;
8483 dbg_printk(TPACPI_DBG_INIT
, "finished removing %s\n", ibm
->name
);
8486 static int __init
ibm_init(struct ibm_init_struct
*iibm
)
8489 struct ibm_struct
*ibm
= iibm
->data
;
8490 struct proc_dir_entry
*entry
;
8492 BUG_ON(ibm
== NULL
);
8494 INIT_LIST_HEAD(&ibm
->all_drivers
);
8496 if (ibm
->flags
.experimental
&& !experimental
)
8499 dbg_printk(TPACPI_DBG_INIT
,
8500 "probing for %s\n", ibm
->name
);
8503 ret
= iibm
->init(iibm
);
8505 return 0; /* probe failed */
8509 ibm
->flags
.init_called
= 1;
8513 if (ibm
->acpi
->hid
) {
8514 ret
= register_tpacpi_subdriver(ibm
);
8519 if (ibm
->acpi
->notify
) {
8520 ret
= setup_acpi_notify(ibm
);
8521 if (ret
== -ENODEV
) {
8522 pr_notice("disabling subdriver %s\n",
8532 dbg_printk(TPACPI_DBG_INIT
,
8533 "%s installed\n", ibm
->name
);
8536 mode_t mode
= iibm
->base_procfs_mode
;
8542 entry
= proc_create_data(ibm
->name
, mode
, proc_dir
,
8543 &dispatch_proc_fops
, ibm
);
8545 pr_err("unable to create proc entry %s\n", ibm
->name
);
8549 ibm
->flags
.proc_created
= 1;
8552 list_add_tail(&ibm
->all_drivers
, &tpacpi_all_drivers
);
8557 dbg_printk(TPACPI_DBG_INIT
,
8558 "%s: at error exit path with result %d\n",
8562 return (ret
< 0)? ret
: 0;
8567 static bool __pure __init
tpacpi_is_fw_digit(const char c
)
8569 return (c
>= '0' && c
<= '9') || (c
>= 'A' && c
<= 'Z');
8572 /* Most models: xxyTkkWW (#.##c); Ancient 570/600 and -SL lacks (#.##c) */
8573 static bool __pure __init
tpacpi_is_valid_fw_id(const char* const s
,
8576 return s
&& strlen(s
) >= 8 &&
8577 tpacpi_is_fw_digit(s
[0]) &&
8578 tpacpi_is_fw_digit(s
[1]) &&
8579 s
[2] == t
&& s
[3] == 'T' &&
8580 tpacpi_is_fw_digit(s
[4]) &&
8581 tpacpi_is_fw_digit(s
[5]);
8584 /* returns 0 - probe ok, or < 0 - probe error.
8585 * Probe ok doesn't mean thinkpad found.
8586 * On error, kfree() cleanup on tp->* is not performed, caller must do it */
8587 static int __must_check __init
get_thinkpad_model_data(
8588 struct thinkpad_id_data
*tp
)
8590 const struct dmi_device
*dev
= NULL
;
8591 char ec_fw_string
[18];
8597 memset(tp
, 0, sizeof(*tp
));
8599 if (dmi_name_in_vendors("IBM"))
8600 tp
->vendor
= PCI_VENDOR_ID_IBM
;
8601 else if (dmi_name_in_vendors("LENOVO"))
8602 tp
->vendor
= PCI_VENDOR_ID_LENOVO
;
8606 s
= dmi_get_system_info(DMI_BIOS_VERSION
);
8607 tp
->bios_version_str
= kstrdup(s
, GFP_KERNEL
);
8608 if (s
&& !tp
->bios_version_str
)
8611 /* Really ancient ThinkPad 240X will fail this, which is fine */
8612 if (!tpacpi_is_valid_fw_id(tp
->bios_version_str
, 'E'))
8615 tp
->bios_model
= tp
->bios_version_str
[0]
8616 | (tp
->bios_version_str
[1] << 8);
8617 tp
->bios_release
= (tp
->bios_version_str
[4] << 8)
8618 | tp
->bios_version_str
[5];
8621 * ThinkPad T23 or newer, A31 or newer, R50e or newer,
8622 * X32 or newer, all Z series; Some models must have an
8623 * up-to-date BIOS or they will not be detected.
8625 * See http://thinkwiki.org/wiki/List_of_DMI_IDs
8627 while ((dev
= dmi_find_device(DMI_DEV_TYPE_OEM_STRING
, NULL
, dev
))) {
8628 if (sscanf(dev
->name
,
8629 "IBM ThinkPad Embedded Controller -[%17c",
8630 ec_fw_string
) == 1) {
8631 ec_fw_string
[sizeof(ec_fw_string
) - 1] = 0;
8632 ec_fw_string
[strcspn(ec_fw_string
, " ]")] = 0;
8634 tp
->ec_version_str
= kstrdup(ec_fw_string
, GFP_KERNEL
);
8635 if (!tp
->ec_version_str
)
8638 if (tpacpi_is_valid_fw_id(ec_fw_string
, 'H')) {
8639 tp
->ec_model
= ec_fw_string
[0]
8640 | (ec_fw_string
[1] << 8);
8641 tp
->ec_release
= (ec_fw_string
[4] << 8)
8644 pr_notice("ThinkPad firmware release %s "
8645 "doesn't match the known patterns\n",
8647 pr_notice("please report this to %s\n",
8654 s
= dmi_get_system_info(DMI_PRODUCT_VERSION
);
8655 if (s
&& !strnicmp(s
, "ThinkPad", 8)) {
8656 tp
->model_str
= kstrdup(s
, GFP_KERNEL
);
8661 s
= dmi_get_system_info(DMI_PRODUCT_NAME
);
8662 tp
->nummodel_str
= kstrdup(s
, GFP_KERNEL
);
8663 if (s
&& !tp
->nummodel_str
)
8669 static int __init
probe_for_thinkpad(void)
8676 /* It would be dangerous to run the driver in this case */
8677 if (!tpacpi_is_ibm() && !tpacpi_is_lenovo())
8681 * Non-ancient models have better DMI tagging, but very old models
8682 * don't. tpacpi_is_fw_known() is a cheat to help in that case.
8684 is_thinkpad
= (thinkpad_id
.model_str
!= NULL
) ||
8685 (thinkpad_id
.ec_model
!= 0) ||
8686 tpacpi_is_fw_known();
8688 /* The EC handler is required */
8689 tpacpi_acpi_handle_locate("ec", TPACPI_ACPI_EC_HID
, &ec_handle
);
8692 pr_err("Not yet supported ThinkPad detected!\n");
8696 if (!is_thinkpad
&& !force_load
)
8702 static void __init
thinkpad_acpi_init_banner(void)
8704 pr_info("%s v%s\n", TPACPI_DESC
, TPACPI_VERSION
);
8705 pr_info("%s\n", TPACPI_URL
);
8707 pr_info("ThinkPad BIOS %s, EC %s\n",
8708 (thinkpad_id
.bios_version_str
) ?
8709 thinkpad_id
.bios_version_str
: "unknown",
8710 (thinkpad_id
.ec_version_str
) ?
8711 thinkpad_id
.ec_version_str
: "unknown");
8713 BUG_ON(!thinkpad_id
.vendor
);
8715 if (thinkpad_id
.model_str
)
8716 pr_info("%s %s, model %s\n",
8717 (thinkpad_id
.vendor
== PCI_VENDOR_ID_IBM
) ?
8718 "IBM" : ((thinkpad_id
.vendor
==
8719 PCI_VENDOR_ID_LENOVO
) ?
8720 "Lenovo" : "Unknown vendor"),
8721 thinkpad_id
.model_str
,
8722 (thinkpad_id
.nummodel_str
) ?
8723 thinkpad_id
.nummodel_str
: "unknown");
8726 /* Module init, exit, parameters */
8728 static struct ibm_init_struct ibms_init
[] __initdata
= {
8730 .data
= &thinkpad_acpi_driver_data
,
8733 .init
= hotkey_init
,
8734 .data
= &hotkey_driver_data
,
8737 .init
= bluetooth_init
,
8738 .data
= &bluetooth_driver_data
,
8742 .data
= &wan_driver_data
,
8746 .data
= &uwb_driver_data
,
8748 #ifdef CONFIG_THINKPAD_ACPI_VIDEO
8751 .base_procfs_mode
= S_IRUSR
,
8752 .data
= &video_driver_data
,
8757 .data
= &light_driver_data
,
8761 .data
= &cmos_driver_data
,
8765 .data
= &led_driver_data
,
8769 .data
= &beep_driver_data
,
8772 .init
= thermal_init
,
8773 .data
= &thermal_driver_data
,
8776 .init
= brightness_init
,
8777 .data
= &brightness_driver_data
,
8780 .init
= volume_init
,
8781 .data
= &volume_driver_data
,
8785 .data
= &fan_driver_data
,
8789 static int __init
set_ibm_param(const char *val
, struct kernel_param
*kp
)
8792 struct ibm_struct
*ibm
;
8794 if (!kp
|| !kp
->name
|| !val
)
8797 for (i
= 0; i
< ARRAY_SIZE(ibms_init
); i
++) {
8798 ibm
= ibms_init
[i
].data
;
8799 WARN_ON(ibm
== NULL
);
8801 if (!ibm
|| !ibm
->name
)
8804 if (strcmp(ibm
->name
, kp
->name
) == 0 && ibm
->write
) {
8805 if (strlen(val
) > sizeof(ibms_init
[i
].param
) - 2)
8807 strcpy(ibms_init
[i
].param
, val
);
8808 strcat(ibms_init
[i
].param
, ",");
8816 module_param(experimental
, int, 0444);
8817 MODULE_PARM_DESC(experimental
,
8818 "Enables experimental features when non-zero");
8820 module_param_named(debug
, dbg_level
, uint
, 0);
8821 MODULE_PARM_DESC(debug
, "Sets debug level bit-mask");
8823 module_param(force_load
, bool, 0444);
8824 MODULE_PARM_DESC(force_load
,
8825 "Attempts to load the driver even on a "
8826 "mis-identified ThinkPad when true");
8828 module_param_named(fan_control
, fan_control_allowed
, bool, 0444);
8829 MODULE_PARM_DESC(fan_control
,
8830 "Enables setting fan parameters features when true");
8832 module_param_named(brightness_mode
, brightness_mode
, uint
, 0444);
8833 MODULE_PARM_DESC(brightness_mode
,
8834 "Selects brightness control strategy: "
8835 "0=auto, 1=EC, 2=UCMS, 3=EC+NVRAM");
8837 module_param(brightness_enable
, uint
, 0444);
8838 MODULE_PARM_DESC(brightness_enable
,
8839 "Enables backlight control when 1, disables when 0");
8841 module_param(hotkey_report_mode
, uint
, 0444);
8842 MODULE_PARM_DESC(hotkey_report_mode
,
8843 "used for backwards compatibility with userspace, "
8844 "see documentation");
8846 #ifdef CONFIG_THINKPAD_ACPI_ALSA_SUPPORT
8847 module_param_named(volume_mode
, volume_mode
, uint
, 0444);
8848 MODULE_PARM_DESC(volume_mode
,
8849 "Selects volume control strategy: "
8850 "0=auto, 1=EC, 2=N/A, 3=EC+NVRAM");
8852 module_param_named(volume_capabilities
, volume_capabilities
, uint
, 0444);
8853 MODULE_PARM_DESC(volume_capabilities
,
8854 "Selects the mixer capabilites: "
8855 "0=auto, 1=volume and mute, 2=mute only");
8857 module_param_named(volume_control
, volume_control_allowed
, bool, 0444);
8858 MODULE_PARM_DESC(volume_control
,
8859 "Enables software override for the console audio "
8860 "control when true");
8862 /* ALSA module API parameters */
8863 module_param_named(index
, alsa_index
, int, 0444);
8864 MODULE_PARM_DESC(index
, "ALSA index for the ACPI EC Mixer");
8865 module_param_named(id
, alsa_id
, charp
, 0444);
8866 MODULE_PARM_DESC(id
, "ALSA id for the ACPI EC Mixer");
8867 module_param_named(enable
, alsa_enable
, bool, 0444);
8868 MODULE_PARM_DESC(enable
, "Enable the ALSA interface for the ACPI EC Mixer");
8869 #endif /* CONFIG_THINKPAD_ACPI_ALSA_SUPPORT */
8871 #define TPACPI_PARAM(feature) \
8872 module_param_call(feature, set_ibm_param, NULL, NULL, 0); \
8873 MODULE_PARM_DESC(feature, "Simulates thinkpad-acpi procfs command " \
8874 "at module load, see documentation")
8876 TPACPI_PARAM(hotkey
);
8877 TPACPI_PARAM(bluetooth
);
8878 TPACPI_PARAM(video
);
8879 TPACPI_PARAM(light
);
8883 TPACPI_PARAM(brightness
);
8884 TPACPI_PARAM(volume
);
8887 #ifdef CONFIG_THINKPAD_ACPI_DEBUGFACILITIES
8888 module_param(dbg_wlswemul
, uint
, 0444);
8889 MODULE_PARM_DESC(dbg_wlswemul
, "Enables WLSW emulation");
8890 module_param_named(wlsw_state
, tpacpi_wlsw_emulstate
, bool, 0);
8891 MODULE_PARM_DESC(wlsw_state
,
8892 "Initial state of the emulated WLSW switch");
8894 module_param(dbg_bluetoothemul
, uint
, 0444);
8895 MODULE_PARM_DESC(dbg_bluetoothemul
, "Enables bluetooth switch emulation");
8896 module_param_named(bluetooth_state
, tpacpi_bluetooth_emulstate
, bool, 0);
8897 MODULE_PARM_DESC(bluetooth_state
,
8898 "Initial state of the emulated bluetooth switch");
8900 module_param(dbg_wwanemul
, uint
, 0444);
8901 MODULE_PARM_DESC(dbg_wwanemul
, "Enables WWAN switch emulation");
8902 module_param_named(wwan_state
, tpacpi_wwan_emulstate
, bool, 0);
8903 MODULE_PARM_DESC(wwan_state
,
8904 "Initial state of the emulated WWAN switch");
8906 module_param(dbg_uwbemul
, uint
, 0444);
8907 MODULE_PARM_DESC(dbg_uwbemul
, "Enables UWB switch emulation");
8908 module_param_named(uwb_state
, tpacpi_uwb_emulstate
, bool, 0);
8909 MODULE_PARM_DESC(uwb_state
,
8910 "Initial state of the emulated UWB switch");
8913 static void thinkpad_acpi_module_exit(void)
8915 struct ibm_struct
*ibm
, *itmp
;
8917 tpacpi_lifecycle
= TPACPI_LIFE_EXITING
;
8919 list_for_each_entry_safe_reverse(ibm
, itmp
,
8920 &tpacpi_all_drivers
,
8925 dbg_printk(TPACPI_DBG_INIT
, "finished subdriver exit path...\n");
8927 if (tpacpi_inputdev
) {
8928 if (tp_features
.input_device_registered
)
8929 input_unregister_device(tpacpi_inputdev
);
8931 input_free_device(tpacpi_inputdev
);
8935 hwmon_device_unregister(tpacpi_hwmon
);
8937 if (tp_features
.sensors_pdev_attrs_registered
)
8938 device_remove_file(&tpacpi_sensors_pdev
->dev
,
8939 &dev_attr_thinkpad_acpi_pdev_name
);
8940 if (tpacpi_sensors_pdev
)
8941 platform_device_unregister(tpacpi_sensors_pdev
);
8943 platform_device_unregister(tpacpi_pdev
);
8945 if (tp_features
.sensors_pdrv_attrs_registered
)
8946 tpacpi_remove_driver_attributes(&tpacpi_hwmon_pdriver
.driver
);
8947 if (tp_features
.platform_drv_attrs_registered
)
8948 tpacpi_remove_driver_attributes(&tpacpi_pdriver
.driver
);
8950 if (tp_features
.sensors_pdrv_registered
)
8951 platform_driver_unregister(&tpacpi_hwmon_pdriver
);
8953 if (tp_features
.platform_drv_registered
)
8954 platform_driver_unregister(&tpacpi_pdriver
);
8957 remove_proc_entry(TPACPI_PROC_DIR
, acpi_root_dir
);
8960 destroy_workqueue(tpacpi_wq
);
8962 kfree(thinkpad_id
.bios_version_str
);
8963 kfree(thinkpad_id
.ec_version_str
);
8964 kfree(thinkpad_id
.model_str
);
8968 static int __init
thinkpad_acpi_module_init(void)
8972 tpacpi_lifecycle
= TPACPI_LIFE_INIT
;
8974 /* Parameter checking */
8975 if (hotkey_report_mode
> 2)
8978 /* Driver-level probe */
8980 ret
= get_thinkpad_model_data(&thinkpad_id
);
8982 pr_err("unable to get DMI data: %d\n", ret
);
8983 thinkpad_acpi_module_exit();
8986 ret
= probe_for_thinkpad();
8988 thinkpad_acpi_module_exit();
8992 /* Driver initialization */
8994 thinkpad_acpi_init_banner();
8995 tpacpi_check_outdated_fw();
8997 TPACPI_ACPIHANDLE_INIT(ecrd
);
8998 TPACPI_ACPIHANDLE_INIT(ecwr
);
9000 tpacpi_wq
= create_singlethread_workqueue(TPACPI_WORKQUEUE_NAME
);
9002 thinkpad_acpi_module_exit();
9006 proc_dir
= proc_mkdir(TPACPI_PROC_DIR
, acpi_root_dir
);
9008 pr_err("unable to create proc dir " TPACPI_PROC_DIR
"\n");
9009 thinkpad_acpi_module_exit();
9013 ret
= platform_driver_register(&tpacpi_pdriver
);
9015 pr_err("unable to register main platform driver\n");
9016 thinkpad_acpi_module_exit();
9019 tp_features
.platform_drv_registered
= 1;
9021 ret
= platform_driver_register(&tpacpi_hwmon_pdriver
);
9023 pr_err("unable to register hwmon platform driver\n");
9024 thinkpad_acpi_module_exit();
9027 tp_features
.sensors_pdrv_registered
= 1;
9029 ret
= tpacpi_create_driver_attributes(&tpacpi_pdriver
.driver
);
9031 tp_features
.platform_drv_attrs_registered
= 1;
9032 ret
= tpacpi_create_driver_attributes(
9033 &tpacpi_hwmon_pdriver
.driver
);
9036 pr_err("unable to create sysfs driver attributes\n");
9037 thinkpad_acpi_module_exit();
9040 tp_features
.sensors_pdrv_attrs_registered
= 1;
9043 /* Device initialization */
9044 tpacpi_pdev
= platform_device_register_simple(TPACPI_DRVR_NAME
, -1,
9046 if (IS_ERR(tpacpi_pdev
)) {
9047 ret
= PTR_ERR(tpacpi_pdev
);
9049 pr_err("unable to register platform device\n");
9050 thinkpad_acpi_module_exit();
9053 tpacpi_sensors_pdev
= platform_device_register_simple(
9054 TPACPI_HWMON_DRVR_NAME
,
9056 if (IS_ERR(tpacpi_sensors_pdev
)) {
9057 ret
= PTR_ERR(tpacpi_sensors_pdev
);
9058 tpacpi_sensors_pdev
= NULL
;
9059 pr_err("unable to register hwmon platform device\n");
9060 thinkpad_acpi_module_exit();
9063 ret
= device_create_file(&tpacpi_sensors_pdev
->dev
,
9064 &dev_attr_thinkpad_acpi_pdev_name
);
9066 pr_err("unable to create sysfs hwmon device attributes\n");
9067 thinkpad_acpi_module_exit();
9070 tp_features
.sensors_pdev_attrs_registered
= 1;
9071 tpacpi_hwmon
= hwmon_device_register(&tpacpi_sensors_pdev
->dev
);
9072 if (IS_ERR(tpacpi_hwmon
)) {
9073 ret
= PTR_ERR(tpacpi_hwmon
);
9074 tpacpi_hwmon
= NULL
;
9075 pr_err("unable to register hwmon device\n");
9076 thinkpad_acpi_module_exit();
9079 mutex_init(&tpacpi_inputdev_send_mutex
);
9080 tpacpi_inputdev
= input_allocate_device();
9081 if (!tpacpi_inputdev
) {
9082 pr_err("unable to allocate input device\n");
9083 thinkpad_acpi_module_exit();
9086 /* Prepare input device, but don't register */
9087 tpacpi_inputdev
->name
= "ThinkPad Extra Buttons";
9088 tpacpi_inputdev
->phys
= TPACPI_DRVR_NAME
"/input0";
9089 tpacpi_inputdev
->id
.bustype
= BUS_HOST
;
9090 tpacpi_inputdev
->id
.vendor
= thinkpad_id
.vendor
;
9091 tpacpi_inputdev
->id
.product
= TPACPI_HKEY_INPUT_PRODUCT
;
9092 tpacpi_inputdev
->id
.version
= TPACPI_HKEY_INPUT_VERSION
;
9093 tpacpi_inputdev
->dev
.parent
= &tpacpi_pdev
->dev
;
9096 /* Init subdriver dependencies */
9097 tpacpi_detect_brightness_capabilities();
9099 /* Init subdrivers */
9100 for (i
= 0; i
< ARRAY_SIZE(ibms_init
); i
++) {
9101 ret
= ibm_init(&ibms_init
[i
]);
9102 if (ret
>= 0 && *ibms_init
[i
].param
)
9103 ret
= ibms_init
[i
].data
->write(ibms_init
[i
].param
);
9105 thinkpad_acpi_module_exit();
9110 tpacpi_lifecycle
= TPACPI_LIFE_RUNNING
;
9112 ret
= input_register_device(tpacpi_inputdev
);
9114 pr_err("unable to register input device\n");
9115 thinkpad_acpi_module_exit();
9118 tp_features
.input_device_registered
= 1;
9124 MODULE_ALIAS(TPACPI_DRVR_SHORTNAME
);
9127 * This will autoload the driver in almost every ThinkPad
9128 * in widespread use.
9130 * Only _VERY_ old models, like the 240, 240x and 570 lack
9131 * the HKEY event interface.
9133 MODULE_DEVICE_TABLE(acpi
, ibm_htk_device_ids
);
9136 * DMI matching for module autoloading
9138 * See http://thinkwiki.org/wiki/List_of_DMI_IDs
9139 * See http://thinkwiki.org/wiki/BIOS_Upgrade_Downloads
9141 * Only models listed in thinkwiki will be supported, so add yours
9142 * if it is not there yet.
9144 #define IBM_BIOS_MODULE_ALIAS(__type) \
9145 MODULE_ALIAS("dmi:bvnIBM:bvr" __type "ET??WW*")
9147 /* Ancient thinkpad BIOSes have to be identified by
9148 * BIOS type or model number, and there are far less
9149 * BIOS types than model numbers... */
9150 IBM_BIOS_MODULE_ALIAS("I[MU]"); /* 570, 570e */
9152 MODULE_AUTHOR("Borislav Deianov <borislav@users.sf.net>");
9153 MODULE_AUTHOR("Henrique de Moraes Holschuh <hmh@hmh.eng.br>");
9154 MODULE_DESCRIPTION(TPACPI_DESC
);
9155 MODULE_VERSION(TPACPI_VERSION
);
9156 MODULE_LICENSE("GPL");
9158 module_init(thinkpad_acpi_module_init
);
9159 module_exit(thinkpad_acpi_module_exit
);