2 * thinkpad_acpi.c - ThinkPad ACPI Extras
5 * Copyright (C) 2004-2005 Borislav Deianov <borislav@users.sf.net>
6 * Copyright (C) 2006-2008 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 TPACPI_VERSION "0.19"
25 #define TPACPI_SYSFS_VERSION 0x020200
29 * 2007-10-20 changelog trimmed down
31 * 2007-03-27 0.14 renamed to thinkpad_acpi and moved to
34 * 2006-11-22 0.13 new maintainer
35 * changelog now lives in git commit history, and will
36 * not be updated further in-file.
38 * 2005-03-17 0.11 support for 600e, 770x
39 * thanks to Jamie Lentin <lentinj@dial.pipex.com>
41 * 2005-01-16 0.9 use MODULE_VERSION
42 * thanks to Henrik Brix Andersen <brix@gentoo.org>
43 * fix parameter passing on module loading
44 * thanks to Rusty Russell <rusty@rustcorp.com.au>
45 * thanks to Jim Radford <radford@blackbean.org>
46 * 2004-11-08 0.8 fix init error case, don't return from a macro
47 * thanks to Chris Wright <chrisw@osdl.org>
50 #include <linux/kernel.h>
51 #include <linux/module.h>
52 #include <linux/init.h>
53 #include <linux/types.h>
54 #include <linux/string.h>
55 #include <linux/list.h>
56 #include <linux/mutex.h>
57 #include <linux/kthread.h>
58 #include <linux/freezer.h>
59 #include <linux/delay.h>
61 #include <linux/nvram.h>
62 #include <linux/proc_fs.h>
63 #include <linux/sysfs.h>
64 #include <linux/backlight.h>
66 #include <linux/platform_device.h>
67 #include <linux/hwmon.h>
68 #include <linux/hwmon-sysfs.h>
69 #include <linux/input.h>
70 #include <linux/leds.h>
71 #include <asm/uaccess.h>
73 #include <linux/dmi.h>
74 #include <linux/jiffies.h>
75 #include <linux/workqueue.h>
77 #include <acpi/acpi_drivers.h>
78 #include <acpi/acnamesp.h>
80 #include <linux/pci_ids.h>
83 /* ThinkPad CMOS commands */
84 #define TP_CMOS_VOLUME_DOWN 0
85 #define TP_CMOS_VOLUME_UP 1
86 #define TP_CMOS_VOLUME_MUTE 2
87 #define TP_CMOS_BRIGHTNESS_UP 4
88 #define TP_CMOS_BRIGHTNESS_DOWN 5
89 #define TP_CMOS_THINKLIGHT_ON 12
90 #define TP_CMOS_THINKLIGHT_OFF 13
94 TP_NVRAM_ADDR_HK2 = 0x57,
95 TP_NVRAM_ADDR_THINKLIGHT = 0x58,
96 TP_NVRAM_ADDR_VIDEO = 0x59,
97 TP_NVRAM_ADDR_BRIGHTNESS = 0x5e,
98 TP_NVRAM_ADDR_MIXER = 0x60,
101 /* NVRAM bit masks */
103 TP_NVRAM_MASK_HKT_THINKPAD = 0x08,
104 TP_NVRAM_MASK_HKT_ZOOM = 0x20,
105 TP_NVRAM_MASK_HKT_DISPLAY = 0x40,
106 TP_NVRAM_MASK_HKT_HIBERNATE = 0x80,
107 TP_NVRAM_MASK_THINKLIGHT = 0x10,
108 TP_NVRAM_MASK_HKT_DISPEXPND = 0x30,
109 TP_NVRAM_MASK_HKT_BRIGHTNESS = 0x20,
110 TP_NVRAM_MASK_LEVEL_BRIGHTNESS = 0x0f,
111 TP_NVRAM_POS_LEVEL_BRIGHTNESS = 0,
112 TP_NVRAM_MASK_MUTE = 0x40,
113 TP_NVRAM_MASK_HKT_VOLUME = 0x80,
114 TP_NVRAM_MASK_LEVEL_VOLUME = 0x0f,
115 TP_NVRAM_POS_LEVEL_VOLUME = 0,
119 #define TPACPI_ACPI_HKEY_HID "IBM0068"
122 #define TPACPI_HKEY_INPUT_PRODUCT 0x5054 /* "TP" */
123 #define TPACPI_HKEY_INPUT_VERSION 0x4101
126 /****************************************************************************
130 #define TPACPI_NAME "thinkpad"
131 #define TPACPI_DESC "ThinkPad ACPI Extras"
132 #define TPACPI_FILE TPACPI_NAME "_acpi"
133 #define TPACPI_URL "http://ibm-acpi.sf.net/"
134 #define TPACPI_MAIL "ibm-acpi-devel@lists.sourceforge.net"
136 #define TPACPI_PROC_DIR "ibm"
137 #define TPACPI_ACPI_EVENT_PREFIX "ibm"
138 #define TPACPI_DRVR_NAME TPACPI_FILE
139 #define TPACPI_DRVR_SHORTNAME "tpacpi"
140 #define TPACPI_HWMON_DRVR_NAME TPACPI_NAME "_hwmon"
142 #define TPACPI_NVRAM_KTHREAD_NAME "ktpacpi_nvramd"
144 #define TPACPI_MAX_ACPI_ARGS 3
147 #define TPACPI_LOG TPACPI_FILE ": "
148 #define TPACPI_ERR KERN_ERR TPACPI_LOG
149 #define TPACPI_NOTICE KERN_NOTICE TPACPI_LOG
150 #define TPACPI_INFO KERN_INFO TPACPI_LOG
151 #define TPACPI_DEBUG KERN_DEBUG TPACPI_LOG
153 #define TPACPI_DBG_ALL 0xffff
154 #define TPACPI_DBG_ALL 0xffff
155 #define TPACPI_DBG_INIT 0x0001
156 #define TPACPI_DBG_EXIT 0x0002
157 #define dbg_printk(a_dbg_level, format, arg...) \
158 do { if (dbg_level & a_dbg_level) \
159 printk(TPACPI_DEBUG "%s: " format, __func__ , ## arg); \
161 #ifdef CONFIG_THINKPAD_ACPI_DEBUG
162 #define vdbg_printk(a_dbg_level, format, arg...) \
163 dbg_printk(a_dbg_level, format, ## arg)
164 static const char *str_supported(int is_supported);
166 #define vdbg_printk(a_dbg_level, format, arg...)
169 #define onoff(status, bit) ((status) & (1 << (bit)) ? "on" : "off")
170 #define enabled(status, bit) ((status) & (1 << (bit)) ? "enabled" : "disabled")
171 #define strlencmp(a, b) (strncmp((a), (b), strlen(b)))
174 /****************************************************************************
175 * Driver-wide structs and misc. variables
180 struct tp_acpi_drv_struct {
181 const struct acpi_device_id *hid;
182 struct acpi_driver *driver;
184 void (*notify) (struct ibm_struct *, u32);
187 struct acpi_device *device;
193 int (*read) (char *);
194 int (*write) (char *);
196 void (*resume) (void);
197 void (*suspend) (pm_message_t state);
199 struct list_head all_drivers;
201 struct tp_acpi_drv_struct *acpi;
204 u8 acpi_driver_registered:1;
205 u8 acpi_notify_installed:1;
212 struct ibm_init_struct {
215 int (*init) (struct ibm_init_struct *);
216 struct ibm_struct *data;
220 #ifdef CONFIG_THINKPAD_ACPI_BAY
233 u32 bright_16levels:1;
234 u32 bright_acpimode:1;
236 u32 fan_ctrl_status_undef:1;
237 u32 input_device_registered:1;
238 u32 platform_drv_registered:1;
239 u32 platform_drv_attrs_registered:1;
240 u32 sensors_pdrv_registered:1;
241 u32 sensors_pdrv_attrs_registered:1;
242 u32 sensors_pdev_attrs_registered:1;
243 u32 hotkey_poll_active:1;
247 u16 hotkey_mask_ff:1;
248 u16 bright_cmos_ec_unsync:1;
251 struct thinkpad_id_data {
252 unsigned int vendor; /* ThinkPad vendor:
253 * PCI_VENDOR_ID_IBM/PCI_VENDOR_ID_LENOVO */
255 char *bios_version_str; /* Something like 1ZET51WW (1.03z) */
256 char *ec_version_str; /* Something like 1ZHT51WW-1.04a */
258 u16 bios_model; /* Big Endian, TP-1Y = 0x5931, 0 = unknown */
261 char *model_str; /* ThinkPad T43 */
262 char *nummodel_str; /* 9384A9C for a 9384-A9C model */
264 static struct thinkpad_id_data thinkpad_id;
267 TPACPI_LIFE_INIT = 0,
272 static int experimental;
273 static u32 dbg_level;
275 /* Special LED class that can defer work */
276 struct tpacpi_led_classdev {
277 struct led_classdev led_classdev;
278 struct work_struct work;
279 enum led_brightness new_brightness;
282 /****************************************************************************
283 ****************************************************************************
285 * ACPI Helpers and device model
287 ****************************************************************************
288 ****************************************************************************/
290 /*************************************************************************
294 static acpi_handle root_handle;
296 #define TPACPI_HANDLE(object, parent, paths...) \
297 static acpi_handle object##_handle; \
298 static acpi_handle *object##_parent = &parent##_handle; \
299 static char *object##_path; \
300 static char *object##_paths[] = { paths }
302 TPACPI_HANDLE(ec, root, "\\_SB.PCI0.ISA.EC0", /* 240, 240x */
303 "\\_SB.PCI.ISA.EC", /* 570 */
304 "\\_SB.PCI0.ISA0.EC0", /* 600e/x, 770e, 770x */
305 "\\_SB.PCI0.ISA.EC", /* A21e, A2xm/p, T20-22, X20-21 */
306 "\\_SB.PCI0.AD4S.EC0", /* i1400, R30 */
307 "\\_SB.PCI0.ICH3.EC0", /* R31 */
308 "\\_SB.PCI0.LPC.EC", /* all others */
311 TPACPI_HANDLE(ecrd, ec, "ECRD"); /* 570 */
312 TPACPI_HANDLE(ecwr, ec, "ECWR"); /* 570 */
314 TPACPI_HANDLE(cmos, root, "\\UCMS", /* R50, R50e, R50p, R51, */
316 "\\CMOS", /* A3x, G4x, R32, T23, T30, X22-24, X30 */
317 "\\CMS", /* R40, R40e */
320 TPACPI_HANDLE(hkey, ec, "\\_SB.HKEY", /* 600e/x, 770e, 770x */
321 "^HKEY", /* R30, R31 */
322 "HKEY", /* all others */
325 TPACPI_HANDLE(vid, root, "\\_SB.PCI.AGP.VGA", /* 570 */
326 "\\_SB.PCI0.AGP0.VID0", /* 600e/x, 770x */
327 "\\_SB.PCI0.VID0", /* 770e */
328 "\\_SB.PCI0.VID", /* A21e, G4x, R50e, X30, X40 */
329 "\\_SB.PCI0.AGP.VID", /* all others */
333 /*************************************************************************
337 static int acpi_evalf(acpi_handle handle,
338 void *res, char *method, char *fmt, ...)
341 struct acpi_object_list params;
342 union acpi_object in_objs[TPACPI_MAX_ACPI_ARGS];
343 struct acpi_buffer result, *resultp;
344 union acpi_object out_obj;
352 printk(TPACPI_ERR "acpi_evalf() called with empty format\n");
365 params.pointer = &in_objs[0];
372 in_objs[params.count].integer.value = va_arg(ap, int);
373 in_objs[params.count++].type = ACPI_TYPE_INTEGER;
375 /* add more types as needed */
377 printk(TPACPI_ERR "acpi_evalf() called "
378 "with invalid format character '%c'\n", c);
384 if (res_type != 'v') {
385 result.length = sizeof(out_obj);
386 result.pointer = &out_obj;
391 status = acpi_evaluate_object(handle, method, ¶ms, resultp);
396 *(int *)res = out_obj.integer.value;
397 success = status == AE_OK && out_obj.type == ACPI_TYPE_INTEGER;
400 success = status == AE_OK;
402 /* add more types as needed */
404 printk(TPACPI_ERR "acpi_evalf() called "
405 "with invalid format character '%c'\n", res_type);
409 if (!success && !quiet)
410 printk(TPACPI_ERR "acpi_evalf(%s, %s, ...) failed: %d\n",
411 method, fmt0, status);
416 static int acpi_ec_read(int i, u8 *p)
421 if (!acpi_evalf(ecrd_handle, &v, NULL, "dd", i))
425 if (ec_read(i, p) < 0)
432 static int acpi_ec_write(int i, u8 v)
435 if (!acpi_evalf(ecwr_handle, NULL, NULL, "vdd", i, v))
438 if (ec_write(i, v) < 0)
445 #if defined(CONFIG_THINKPAD_ACPI_DOCK) || defined(CONFIG_THINKPAD_ACPI_BAY)
446 static int _sta(acpi_handle handle)
450 if (!handle || !acpi_evalf(handle, &status, "_STA", "d"))
457 static int issue_thinkpad_cmos_command(int cmos_cmd)
462 if (!acpi_evalf(cmos_handle, NULL, NULL, "vd", cmos_cmd))
468 /*************************************************************************
472 #define TPACPI_ACPIHANDLE_INIT(object) \
473 drv_acpi_handle_init(#object, &object##_handle, *object##_parent, \
474 object##_paths, ARRAY_SIZE(object##_paths), &object##_path)
476 static void drv_acpi_handle_init(char *name,
477 acpi_handle *handle, acpi_handle parent,
478 char **paths, int num_paths, char **path)
483 vdbg_printk(TPACPI_DBG_INIT, "trying to locate ACPI handle for %s\n",
486 for (i = 0; i < num_paths; i++) {
487 status = acpi_get_handle(parent, paths[i], handle);
488 if (ACPI_SUCCESS(status)) {
490 dbg_printk(TPACPI_DBG_INIT,
491 "Found ACPI handle %s for %s\n",
497 vdbg_printk(TPACPI_DBG_INIT, "ACPI handle for %s not found\n",
502 static void dispatch_acpi_notify(acpi_handle handle, u32 event, void *data)
504 struct ibm_struct *ibm = data;
506 if (tpacpi_lifecycle != TPACPI_LIFE_RUNNING)
509 if (!ibm || !ibm->acpi || !ibm->acpi->notify)
512 ibm->acpi->notify(ibm, event);
515 static int __init setup_acpi_notify(struct ibm_struct *ibm)
522 if (!*ibm->acpi->handle)
525 vdbg_printk(TPACPI_DBG_INIT,
526 "setting up ACPI notify for %s\n", ibm->name);
528 rc = acpi_bus_get_device(*ibm->acpi->handle, &ibm->acpi->device);
530 printk(TPACPI_ERR "acpi_bus_get_device(%s) failed: %d\n",
535 acpi_driver_data(ibm->acpi->device) = ibm;
536 sprintf(acpi_device_class(ibm->acpi->device), "%s/%s",
537 TPACPI_ACPI_EVENT_PREFIX,
540 status = acpi_install_notify_handler(*ibm->acpi->handle,
541 ibm->acpi->type, dispatch_acpi_notify, ibm);
542 if (ACPI_FAILURE(status)) {
543 if (status == AE_ALREADY_EXISTS) {
545 "another device driver is already "
546 "handling %s events\n", ibm->name);
549 "acpi_install_notify_handler(%s) failed: %d\n",
554 ibm->flags.acpi_notify_installed = 1;
558 static int __init tpacpi_device_add(struct acpi_device *device)
563 static int __init register_tpacpi_subdriver(struct ibm_struct *ibm)
567 dbg_printk(TPACPI_DBG_INIT,
568 "registering %s as an ACPI driver\n", ibm->name);
572 ibm->acpi->driver = kzalloc(sizeof(struct acpi_driver), GFP_KERNEL);
573 if (!ibm->acpi->driver) {
574 printk(TPACPI_ERR "kzalloc(ibm->driver) failed\n");
578 sprintf(ibm->acpi->driver->name, "%s_%s", TPACPI_NAME, ibm->name);
579 ibm->acpi->driver->ids = ibm->acpi->hid;
581 ibm->acpi->driver->ops.add = &tpacpi_device_add;
583 rc = acpi_bus_register_driver(ibm->acpi->driver);
585 printk(TPACPI_ERR "acpi_bus_register_driver(%s) failed: %d\n",
587 kfree(ibm->acpi->driver);
588 ibm->acpi->driver = NULL;
590 ibm->flags.acpi_driver_registered = 1;
596 /****************************************************************************
597 ****************************************************************************
601 ****************************************************************************
602 ****************************************************************************/
604 static int dispatch_procfs_read(char *page, char **start, off_t off,
605 int count, int *eof, void *data)
607 struct ibm_struct *ibm = data;
610 if (!ibm || !ibm->read)
613 len = ibm->read(page);
617 if (len <= off + count)
629 static int dispatch_procfs_write(struct file *file,
630 const char __user *userbuf,
631 unsigned long count, void *data)
633 struct ibm_struct *ibm = data;
637 if (!ibm || !ibm->write)
640 kernbuf = kmalloc(count + 2, GFP_KERNEL);
644 if (copy_from_user(kernbuf, userbuf, count)) {
650 strcat(kernbuf, ",");
651 ret = ibm->write(kernbuf);
660 static char *next_cmd(char **cmds)
665 while ((end = strchr(start, ',')) && end == start)
677 /****************************************************************************
678 ****************************************************************************
680 * Device model: input, hwmon and platform
682 ****************************************************************************
683 ****************************************************************************/
685 static struct platform_device *tpacpi_pdev;
686 static struct platform_device *tpacpi_sensors_pdev;
687 static struct device *tpacpi_hwmon;
688 static struct input_dev *tpacpi_inputdev;
689 static struct mutex tpacpi_inputdev_send_mutex;
690 static LIST_HEAD(tpacpi_all_drivers);
692 static int tpacpi_suspend_handler(struct platform_device *pdev,
695 struct ibm_struct *ibm, *itmp;
697 list_for_each_entry_safe(ibm, itmp,
701 (ibm->suspend)(state);
707 static int tpacpi_resume_handler(struct platform_device *pdev)
709 struct ibm_struct *ibm, *itmp;
711 list_for_each_entry_safe(ibm, itmp,
721 static struct platform_driver tpacpi_pdriver = {
723 .name = TPACPI_DRVR_NAME,
724 .owner = THIS_MODULE,
726 .suspend = tpacpi_suspend_handler,
727 .resume = tpacpi_resume_handler,
730 static struct platform_driver tpacpi_hwmon_pdriver = {
732 .name = TPACPI_HWMON_DRVR_NAME,
733 .owner = THIS_MODULE,
737 /*************************************************************************
738 * sysfs support helpers
741 struct attribute_set {
742 unsigned int members, max_members;
743 struct attribute_group group;
746 struct attribute_set_obj {
747 struct attribute_set s;
749 } __attribute__((packed));
751 static struct attribute_set *create_attr_set(unsigned int max_members,
754 struct attribute_set_obj *sobj;
756 if (max_members == 0)
759 /* Allocates space for implicit NULL at the end too */
760 sobj = kzalloc(sizeof(struct attribute_set_obj) +
761 max_members * sizeof(struct attribute *),
765 sobj->s.max_members = max_members;
766 sobj->s.group.attrs = &sobj->a;
767 sobj->s.group.name = name;
772 #define destroy_attr_set(_set) \
775 /* not multi-threaded safe, use it in a single thread per set */
776 static int add_to_attr_set(struct attribute_set *s, struct attribute *attr)
781 if (s->members >= s->max_members)
784 s->group.attrs[s->members] = attr;
790 static int add_many_to_attr_set(struct attribute_set *s,
791 struct attribute **attr,
796 for (i = 0; i < count; i++) {
797 res = add_to_attr_set(s, attr[i]);
805 static void delete_attr_set(struct attribute_set *s, struct kobject *kobj)
807 sysfs_remove_group(kobj, &s->group);
811 #define register_attr_set_with_sysfs(_attr_set, _kobj) \
812 sysfs_create_group(_kobj, &_attr_set->group)
814 static int parse_strtoul(const char *buf,
815 unsigned long max, unsigned long *value)
819 while (*buf && isspace(*buf))
821 *value = simple_strtoul(buf, &endp, 0);
822 while (*endp && isspace(*endp))
824 if (*endp || *value > max)
830 static int __init tpacpi_query_bcl_levels(acpi_handle handle)
832 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
833 union acpi_object *obj;
836 if (ACPI_SUCCESS(acpi_evaluate_object(handle, NULL, NULL, &buffer))) {
837 obj = (union acpi_object *)buffer.pointer;
838 if (!obj || (obj->type != ACPI_TYPE_PACKAGE)) {
839 printk(TPACPI_ERR "Unknown _BCL data, "
840 "please report this to %s\n", TPACPI_MAIL);
843 rc = obj->package.count;
849 kfree(buffer.pointer);
853 static acpi_status __init tpacpi_acpi_walk_find_bcl(acpi_handle handle,
854 u32 lvl, void *context, void **rv)
856 char name[ACPI_PATH_SEGMENT_LENGTH];
857 struct acpi_buffer buffer = { sizeof(name), &name };
859 if (ACPI_SUCCESS(acpi_get_name(handle, ACPI_SINGLE_NAME, &buffer)) &&
860 !strncmp("_BCL", name, sizeof(name) - 1)) {
862 **(int **)rv = tpacpi_query_bcl_levels(handle);
863 return AE_CTRL_TERMINATE;
870 * Returns 0 (no ACPI _BCL or _BCL invalid), or size of brightness map
872 static int __init tpacpi_check_std_acpi_brightness_support(void)
876 void *bcl_ptr = &bcl_levels;
879 TPACPI_ACPIHANDLE_INIT(vid);
885 * Search for a _BCL method, and execute it. This is safe on all
886 * ThinkPads, and as a side-effect, _BCL will place a Lenovo Vista
887 * BIOS in ACPI backlight control mode. We do NOT have to care
888 * about calling the _BCL method in an enabled video device, any
889 * will do for our purposes.
892 status = acpi_walk_namespace(ACPI_TYPE_METHOD, vid_handle, 3,
893 tpacpi_acpi_walk_find_bcl, NULL,
896 if (ACPI_SUCCESS(status) && bcl_levels > 2) {
897 tp_features.bright_acpimode = 1;
898 return (bcl_levels - 2);
904 /*************************************************************************
905 * thinkpad-acpi driver attributes
908 /* interface_version --------------------------------------------------- */
909 static ssize_t tpacpi_driver_interface_version_show(
910 struct device_driver *drv,
913 return snprintf(buf, PAGE_SIZE, "0x%08x\n", TPACPI_SYSFS_VERSION);
916 static DRIVER_ATTR(interface_version, S_IRUGO,
917 tpacpi_driver_interface_version_show, NULL);
919 /* debug_level --------------------------------------------------------- */
920 static ssize_t tpacpi_driver_debug_show(struct device_driver *drv,
923 return snprintf(buf, PAGE_SIZE, "0x%04x\n", dbg_level);
926 static ssize_t tpacpi_driver_debug_store(struct device_driver *drv,
927 const char *buf, size_t count)
931 if (parse_strtoul(buf, 0xffff, &t))
939 static DRIVER_ATTR(debug_level, S_IWUSR | S_IRUGO,
940 tpacpi_driver_debug_show, tpacpi_driver_debug_store);
942 /* version ------------------------------------------------------------- */
943 static ssize_t tpacpi_driver_version_show(struct device_driver *drv,
946 return snprintf(buf, PAGE_SIZE, "%s v%s\n",
947 TPACPI_DESC, TPACPI_VERSION);
950 static DRIVER_ATTR(version, S_IRUGO,
951 tpacpi_driver_version_show, NULL);
953 /* --------------------------------------------------------------------- */
955 static struct driver_attribute *tpacpi_driver_attributes[] = {
956 &driver_attr_debug_level, &driver_attr_version,
957 &driver_attr_interface_version,
960 static int __init tpacpi_create_driver_attributes(struct device_driver *drv)
966 while (!res && i < ARRAY_SIZE(tpacpi_driver_attributes)) {
967 res = driver_create_file(drv, tpacpi_driver_attributes[i]);
974 static void tpacpi_remove_driver_attributes(struct device_driver *drv)
978 for (i = 0; i < ARRAY_SIZE(tpacpi_driver_attributes); i++)
979 driver_remove_file(drv, tpacpi_driver_attributes[i]);
982 /****************************************************************************
983 ****************************************************************************
987 ****************************************************************************
988 ****************************************************************************/
990 /*************************************************************************
991 * thinkpad-acpi init subdriver
994 static int __init thinkpad_acpi_driver_init(struct ibm_init_struct *iibm)
996 printk(TPACPI_INFO "%s v%s\n", TPACPI_DESC, TPACPI_VERSION);
997 printk(TPACPI_INFO "%s\n", TPACPI_URL);
999 printk(TPACPI_INFO "ThinkPad BIOS %s, EC %s\n",
1000 (thinkpad_id.bios_version_str) ?
1001 thinkpad_id.bios_version_str : "unknown",
1002 (thinkpad_id.ec_version_str) ?
1003 thinkpad_id.ec_version_str : "unknown");
1005 if (thinkpad_id.vendor && thinkpad_id.model_str)
1006 printk(TPACPI_INFO "%s %s, model %s\n",
1007 (thinkpad_id.vendor == PCI_VENDOR_ID_IBM) ?
1008 "IBM" : ((thinkpad_id.vendor ==
1009 PCI_VENDOR_ID_LENOVO) ?
1010 "Lenovo" : "Unknown vendor"),
1011 thinkpad_id.model_str,
1012 (thinkpad_id.nummodel_str) ?
1013 thinkpad_id.nummodel_str : "unknown");
1018 static int thinkpad_acpi_driver_read(char *p)
1022 len += sprintf(p + len, "driver:\t\t%s\n", TPACPI_DESC);
1023 len += sprintf(p + len, "version:\t%s\n", TPACPI_VERSION);
1028 static struct ibm_struct thinkpad_acpi_driver_data = {
1030 .read = thinkpad_acpi_driver_read,
1033 /*************************************************************************
1037 enum { /* hot key scan codes (derived from ACPI DSDT) */
1038 TP_ACPI_HOTKEYSCAN_FNF1 = 0,
1039 TP_ACPI_HOTKEYSCAN_FNF2,
1040 TP_ACPI_HOTKEYSCAN_FNF3,
1041 TP_ACPI_HOTKEYSCAN_FNF4,
1042 TP_ACPI_HOTKEYSCAN_FNF5,
1043 TP_ACPI_HOTKEYSCAN_FNF6,
1044 TP_ACPI_HOTKEYSCAN_FNF7,
1045 TP_ACPI_HOTKEYSCAN_FNF8,
1046 TP_ACPI_HOTKEYSCAN_FNF9,
1047 TP_ACPI_HOTKEYSCAN_FNF10,
1048 TP_ACPI_HOTKEYSCAN_FNF11,
1049 TP_ACPI_HOTKEYSCAN_FNF12,
1050 TP_ACPI_HOTKEYSCAN_FNBACKSPACE,
1051 TP_ACPI_HOTKEYSCAN_FNINSERT,
1052 TP_ACPI_HOTKEYSCAN_FNDELETE,
1053 TP_ACPI_HOTKEYSCAN_FNHOME,
1054 TP_ACPI_HOTKEYSCAN_FNEND,
1055 TP_ACPI_HOTKEYSCAN_FNPAGEUP,
1056 TP_ACPI_HOTKEYSCAN_FNPAGEDOWN,
1057 TP_ACPI_HOTKEYSCAN_FNSPACE,
1058 TP_ACPI_HOTKEYSCAN_VOLUMEUP,
1059 TP_ACPI_HOTKEYSCAN_VOLUMEDOWN,
1060 TP_ACPI_HOTKEYSCAN_MUTE,
1061 TP_ACPI_HOTKEYSCAN_THINKPAD,
1064 enum { /* Keys available through NVRAM polling */
1065 TPACPI_HKEY_NVRAM_KNOWN_MASK = 0x00fb88c0U,
1066 TPACPI_HKEY_NVRAM_GOOD_MASK = 0x00fb8000U,
1069 enum { /* Positions of some of the keys in hotkey masks */
1070 TP_ACPI_HKEY_DISPSWTCH_MASK = 1 << TP_ACPI_HOTKEYSCAN_FNF7,
1071 TP_ACPI_HKEY_DISPXPAND_MASK = 1 << TP_ACPI_HOTKEYSCAN_FNF8,
1072 TP_ACPI_HKEY_HIBERNATE_MASK = 1 << TP_ACPI_HOTKEYSCAN_FNF12,
1073 TP_ACPI_HKEY_BRGHTUP_MASK = 1 << TP_ACPI_HOTKEYSCAN_FNHOME,
1074 TP_ACPI_HKEY_BRGHTDWN_MASK = 1 << TP_ACPI_HOTKEYSCAN_FNEND,
1075 TP_ACPI_HKEY_THNKLGHT_MASK = 1 << TP_ACPI_HOTKEYSCAN_FNPAGEUP,
1076 TP_ACPI_HKEY_ZOOM_MASK = 1 << TP_ACPI_HOTKEYSCAN_FNSPACE,
1077 TP_ACPI_HKEY_VOLUP_MASK = 1 << TP_ACPI_HOTKEYSCAN_VOLUMEUP,
1078 TP_ACPI_HKEY_VOLDWN_MASK = 1 << TP_ACPI_HOTKEYSCAN_VOLUMEDOWN,
1079 TP_ACPI_HKEY_MUTE_MASK = 1 << TP_ACPI_HOTKEYSCAN_MUTE,
1080 TP_ACPI_HKEY_THINKPAD_MASK = 1 << TP_ACPI_HOTKEYSCAN_THINKPAD,
1083 enum { /* NVRAM to ACPI HKEY group map */
1084 TP_NVRAM_HKEY_GROUP_HK2 = TP_ACPI_HKEY_THINKPAD_MASK |
1085 TP_ACPI_HKEY_ZOOM_MASK |
1086 TP_ACPI_HKEY_DISPSWTCH_MASK |
1087 TP_ACPI_HKEY_HIBERNATE_MASK,
1088 TP_NVRAM_HKEY_GROUP_BRIGHTNESS = TP_ACPI_HKEY_BRGHTUP_MASK |
1089 TP_ACPI_HKEY_BRGHTDWN_MASK,
1090 TP_NVRAM_HKEY_GROUP_VOLUME = TP_ACPI_HKEY_VOLUP_MASK |
1091 TP_ACPI_HKEY_VOLDWN_MASK |
1092 TP_ACPI_HKEY_MUTE_MASK,
1095 #ifdef CONFIG_THINKPAD_ACPI_HOTKEY_POLL
1096 struct tp_nvram_state {
1097 u16 thinkpad_toggle:1;
1099 u16 display_toggle:1;
1100 u16 thinklight_toggle:1;
1101 u16 hibernate_toggle:1;
1102 u16 displayexp_toggle:1;
1103 u16 display_state:1;
1104 u16 brightness_toggle:1;
1105 u16 volume_toggle:1;
1108 u8 brightness_level;
1112 static struct task_struct *tpacpi_hotkey_task;
1113 static u32 hotkey_source_mask; /* bit mask 0=ACPI,1=NVRAM */
1114 static int hotkey_poll_freq = 10; /* Hz */
1115 static struct mutex hotkey_thread_mutex;
1116 static struct mutex hotkey_thread_data_mutex;
1117 static unsigned int hotkey_config_change;
1119 #else /* CONFIG_THINKPAD_ACPI_HOTKEY_POLL */
1121 #define hotkey_source_mask 0U
1123 #endif /* CONFIG_THINKPAD_ACPI_HOTKEY_POLL */
1125 static struct mutex hotkey_mutex;
1127 static enum { /* Reasons for waking up */
1128 TP_ACPI_WAKEUP_NONE = 0, /* None or unknown */
1129 TP_ACPI_WAKEUP_BAYEJ, /* Bay ejection request */
1130 TP_ACPI_WAKEUP_UNDOCK, /* Undock request */
1131 } hotkey_wakeup_reason;
1133 static int hotkey_autosleep_ack;
1135 static int hotkey_orig_status;
1136 static u32 hotkey_orig_mask;
1137 static u32 hotkey_all_mask;
1138 static u32 hotkey_reserved_mask;
1139 static u32 hotkey_mask;
1141 static unsigned int hotkey_report_mode;
1143 static u16 *hotkey_keycode_map;
1145 static struct attribute_set *hotkey_dev_attributes;
1147 #ifdef CONFIG_THINKPAD_ACPI_HOTKEY_POLL
1148 #define HOTKEY_CONFIG_CRITICAL_START \
1150 mutex_lock(&hotkey_thread_data_mutex); \
1151 hotkey_config_change++; \
1153 #define HOTKEY_CONFIG_CRITICAL_END \
1154 mutex_unlock(&hotkey_thread_data_mutex);
1156 #define HOTKEY_CONFIG_CRITICAL_START
1157 #define HOTKEY_CONFIG_CRITICAL_END
1158 #endif /* CONFIG_THINKPAD_ACPI_HOTKEY_POLL */
1160 /* HKEY.MHKG() return bits */
1161 #define TP_HOTKEY_TABLET_MASK (1 << 3)
1163 static int hotkey_get_wlsw(int *status)
1165 if (!acpi_evalf(hkey_handle, status, "WLSW", "d"))
1170 static int hotkey_get_tablet_mode(int *status)
1174 if (!acpi_evalf(hkey_handle, &s, "MHKG", "d"))
1177 *status = ((s & TP_HOTKEY_TABLET_MASK) != 0);
1182 * Call with hotkey_mutex held
1184 static int hotkey_mask_get(void)
1188 if (tp_features.hotkey_mask) {
1189 if (!acpi_evalf(hkey_handle, &m, "DHKN", "d"))
1192 hotkey_mask = m | (hotkey_source_mask & hotkey_mask);
1198 * Call with hotkey_mutex held
1200 static int hotkey_mask_set(u32 mask)
1205 if (tp_features.hotkey_mask) {
1206 if (!tp_warned.hotkey_mask_ff &&
1207 (mask == 0xffff || mask == 0xffffff ||
1208 mask == 0xffffffff)) {
1209 tp_warned.hotkey_mask_ff = 1;
1210 printk(TPACPI_NOTICE
1211 "setting the hotkey mask to 0x%08x is likely "
1212 "not the best way to go about it\n", mask);
1213 printk(TPACPI_NOTICE
1214 "please consider using the driver defaults, "
1215 "and refer to up-to-date thinkpad-acpi "
1219 HOTKEY_CONFIG_CRITICAL_START
1220 for (i = 0; i < 32; i++) {
1222 /* enable in firmware mask only keys not in NVRAM
1223 * mode, but enable the key in the cached hotkey_mask
1224 * regardless of mode, or the key will end up
1225 * disabled by hotkey_mask_get() */
1226 if (!acpi_evalf(hkey_handle,
1227 NULL, "MHKM", "vdd", i + 1,
1228 !!((mask & ~hotkey_source_mask) & m))) {
1232 hotkey_mask = (hotkey_mask & ~m) | (mask & m);
1235 HOTKEY_CONFIG_CRITICAL_END
1237 /* hotkey_mask_get must be called unconditionally below */
1238 if (!hotkey_mask_get() && !rc &&
1239 (hotkey_mask & ~hotkey_source_mask) !=
1240 (mask & ~hotkey_source_mask)) {
1241 printk(TPACPI_NOTICE
1242 "requested hot key mask 0x%08x, but "
1243 "firmware forced it to 0x%08x\n",
1247 #ifdef CONFIG_THINKPAD_ACPI_HOTKEY_POLL
1248 HOTKEY_CONFIG_CRITICAL_START
1249 hotkey_mask = mask & hotkey_source_mask;
1250 HOTKEY_CONFIG_CRITICAL_END
1252 if (hotkey_mask != mask) {
1253 printk(TPACPI_NOTICE
1254 "requested hot key mask 0x%08x, "
1255 "forced to 0x%08x (NVRAM poll mask is "
1256 "0x%08x): no firmware mask support\n",
1257 mask, hotkey_mask, hotkey_source_mask);
1262 #endif /* CONFIG_THINKPAD_ACPI_HOTKEY_POLL */
1268 static int hotkey_status_get(int *status)
1270 if (!acpi_evalf(hkey_handle, status, "DHKC", "d"))
1276 static int hotkey_status_set(int status)
1278 if (!acpi_evalf(hkey_handle, NULL, "MHKC", "vd", status))
1284 static void tpacpi_input_send_radiosw(void)
1288 if (tp_features.hotkey_wlsw && !hotkey_get_wlsw(&wlsw)) {
1289 mutex_lock(&tpacpi_inputdev_send_mutex);
1291 input_report_switch(tpacpi_inputdev,
1293 input_sync(tpacpi_inputdev);
1295 mutex_unlock(&tpacpi_inputdev_send_mutex);
1299 static void tpacpi_input_send_tabletsw(void)
1303 if (tp_features.hotkey_tablet &&
1304 !hotkey_get_tablet_mode(&state)) {
1305 mutex_lock(&tpacpi_inputdev_send_mutex);
1307 input_report_switch(tpacpi_inputdev,
1308 SW_TABLET_MODE, !!state);
1309 input_sync(tpacpi_inputdev);
1311 mutex_unlock(&tpacpi_inputdev_send_mutex);
1315 static void tpacpi_input_send_key(unsigned int scancode)
1317 unsigned int keycode;
1319 keycode = hotkey_keycode_map[scancode];
1321 if (keycode != KEY_RESERVED) {
1322 mutex_lock(&tpacpi_inputdev_send_mutex);
1324 input_report_key(tpacpi_inputdev, keycode, 1);
1325 if (keycode == KEY_UNKNOWN)
1326 input_event(tpacpi_inputdev, EV_MSC, MSC_SCAN,
1328 input_sync(tpacpi_inputdev);
1330 input_report_key(tpacpi_inputdev, keycode, 0);
1331 if (keycode == KEY_UNKNOWN)
1332 input_event(tpacpi_inputdev, EV_MSC, MSC_SCAN,
1334 input_sync(tpacpi_inputdev);
1336 mutex_unlock(&tpacpi_inputdev_send_mutex);
1340 #ifdef CONFIG_THINKPAD_ACPI_HOTKEY_POLL
1341 static struct tp_acpi_drv_struct ibm_hotkey_acpidriver;
1343 static void tpacpi_hotkey_send_key(unsigned int scancode)
1345 tpacpi_input_send_key(scancode);
1346 if (hotkey_report_mode < 2) {
1347 acpi_bus_generate_proc_event(ibm_hotkey_acpidriver.device,
1348 0x80, 0x1001 + scancode);
1352 static void hotkey_read_nvram(struct tp_nvram_state *n, u32 m)
1356 if (m & TP_NVRAM_HKEY_GROUP_HK2) {
1357 d = nvram_read_byte(TP_NVRAM_ADDR_HK2);
1358 n->thinkpad_toggle = !!(d & TP_NVRAM_MASK_HKT_THINKPAD);
1359 n->zoom_toggle = !!(d & TP_NVRAM_MASK_HKT_ZOOM);
1360 n->display_toggle = !!(d & TP_NVRAM_MASK_HKT_DISPLAY);
1361 n->hibernate_toggle = !!(d & TP_NVRAM_MASK_HKT_HIBERNATE);
1363 if (m & TP_ACPI_HKEY_THNKLGHT_MASK) {
1364 d = nvram_read_byte(TP_NVRAM_ADDR_THINKLIGHT);
1365 n->thinklight_toggle = !!(d & TP_NVRAM_MASK_THINKLIGHT);
1367 if (m & TP_ACPI_HKEY_DISPXPAND_MASK) {
1368 d = nvram_read_byte(TP_NVRAM_ADDR_VIDEO);
1369 n->displayexp_toggle =
1370 !!(d & TP_NVRAM_MASK_HKT_DISPEXPND);
1372 if (m & TP_NVRAM_HKEY_GROUP_BRIGHTNESS) {
1373 d = nvram_read_byte(TP_NVRAM_ADDR_BRIGHTNESS);
1374 n->brightness_level = (d & TP_NVRAM_MASK_LEVEL_BRIGHTNESS)
1375 >> TP_NVRAM_POS_LEVEL_BRIGHTNESS;
1376 n->brightness_toggle =
1377 !!(d & TP_NVRAM_MASK_HKT_BRIGHTNESS);
1379 if (m & TP_NVRAM_HKEY_GROUP_VOLUME) {
1380 d = nvram_read_byte(TP_NVRAM_ADDR_MIXER);
1381 n->volume_level = (d & TP_NVRAM_MASK_LEVEL_VOLUME)
1382 >> TP_NVRAM_POS_LEVEL_VOLUME;
1383 n->mute = !!(d & TP_NVRAM_MASK_MUTE);
1384 n->volume_toggle = !!(d & TP_NVRAM_MASK_HKT_VOLUME);
1388 #define TPACPI_COMPARE_KEY(__scancode, __member) \
1390 if ((mask & (1 << __scancode)) && \
1391 oldn->__member != newn->__member) \
1392 tpacpi_hotkey_send_key(__scancode); \
1395 #define TPACPI_MAY_SEND_KEY(__scancode) \
1396 do { if (mask & (1 << __scancode)) \
1397 tpacpi_hotkey_send_key(__scancode); } while (0)
1399 static void hotkey_compare_and_issue_event(struct tp_nvram_state *oldn,
1400 struct tp_nvram_state *newn,
1403 TPACPI_COMPARE_KEY(TP_ACPI_HOTKEYSCAN_THINKPAD, thinkpad_toggle);
1404 TPACPI_COMPARE_KEY(TP_ACPI_HOTKEYSCAN_FNSPACE, zoom_toggle);
1405 TPACPI_COMPARE_KEY(TP_ACPI_HOTKEYSCAN_FNF7, display_toggle);
1406 TPACPI_COMPARE_KEY(TP_ACPI_HOTKEYSCAN_FNF12, hibernate_toggle);
1408 TPACPI_COMPARE_KEY(TP_ACPI_HOTKEYSCAN_FNPAGEUP, thinklight_toggle);
1410 TPACPI_COMPARE_KEY(TP_ACPI_HOTKEYSCAN_FNF8, displayexp_toggle);
1413 if (oldn->volume_toggle != newn->volume_toggle) {
1414 if (oldn->mute != newn->mute) {
1415 TPACPI_MAY_SEND_KEY(TP_ACPI_HOTKEYSCAN_MUTE);
1417 if (oldn->volume_level > newn->volume_level) {
1418 TPACPI_MAY_SEND_KEY(TP_ACPI_HOTKEYSCAN_VOLUMEDOWN);
1419 } else if (oldn->volume_level < newn->volume_level) {
1420 TPACPI_MAY_SEND_KEY(TP_ACPI_HOTKEYSCAN_VOLUMEUP);
1421 } else if (oldn->mute == newn->mute) {
1422 /* repeated key presses that didn't change state */
1424 TPACPI_MAY_SEND_KEY(TP_ACPI_HOTKEYSCAN_MUTE);
1425 } else if (newn->volume_level != 0) {
1426 TPACPI_MAY_SEND_KEY(TP_ACPI_HOTKEYSCAN_VOLUMEUP);
1428 TPACPI_MAY_SEND_KEY(TP_ACPI_HOTKEYSCAN_VOLUMEDOWN);
1433 /* handle brightness */
1434 if (oldn->brightness_toggle != newn->brightness_toggle) {
1435 if (oldn->brightness_level < newn->brightness_level) {
1436 TPACPI_MAY_SEND_KEY(TP_ACPI_HOTKEYSCAN_FNHOME);
1437 } else if (oldn->brightness_level > newn->brightness_level) {
1438 TPACPI_MAY_SEND_KEY(TP_ACPI_HOTKEYSCAN_FNEND);
1440 /* repeated key presses that didn't change state */
1441 if (newn->brightness_level != 0) {
1442 TPACPI_MAY_SEND_KEY(TP_ACPI_HOTKEYSCAN_FNHOME);
1444 TPACPI_MAY_SEND_KEY(TP_ACPI_HOTKEYSCAN_FNEND);
1450 #undef TPACPI_COMPARE_KEY
1451 #undef TPACPI_MAY_SEND_KEY
1453 static int hotkey_kthread(void *data)
1455 struct tp_nvram_state s[2];
1457 unsigned int si, so;
1459 unsigned int change_detector, must_reset;
1461 mutex_lock(&hotkey_thread_mutex);
1463 if (tpacpi_lifecycle == TPACPI_LIFE_EXITING)
1472 /* Initial state for compares */
1473 mutex_lock(&hotkey_thread_data_mutex);
1474 change_detector = hotkey_config_change;
1475 mask = hotkey_source_mask & hotkey_mask;
1476 mutex_unlock(&hotkey_thread_data_mutex);
1477 hotkey_read_nvram(&s[so], mask);
1479 while (!kthread_should_stop() && hotkey_poll_freq) {
1481 t = 1000/hotkey_poll_freq;
1482 t = msleep_interruptible(t);
1483 if (unlikely(kthread_should_stop()))
1485 must_reset = try_to_freeze();
1486 if (t > 0 && !must_reset)
1489 mutex_lock(&hotkey_thread_data_mutex);
1490 if (must_reset || hotkey_config_change != change_detector) {
1491 /* forget old state on thaw or config change */
1494 change_detector = hotkey_config_change;
1496 mask = hotkey_source_mask & hotkey_mask;
1497 mutex_unlock(&hotkey_thread_data_mutex);
1500 hotkey_read_nvram(&s[si], mask);
1501 if (likely(si != so)) {
1502 hotkey_compare_and_issue_event(&s[so], &s[si],
1512 mutex_unlock(&hotkey_thread_mutex);
1516 static void hotkey_poll_stop_sync(void)
1518 if (tpacpi_hotkey_task) {
1519 if (frozen(tpacpi_hotkey_task) ||
1520 freezing(tpacpi_hotkey_task))
1521 thaw_process(tpacpi_hotkey_task);
1523 kthread_stop(tpacpi_hotkey_task);
1524 tpacpi_hotkey_task = NULL;
1525 mutex_lock(&hotkey_thread_mutex);
1526 /* at this point, the thread did exit */
1527 mutex_unlock(&hotkey_thread_mutex);
1531 /* call with hotkey_mutex held */
1532 static void hotkey_poll_setup(int may_warn)
1534 if ((hotkey_source_mask & hotkey_mask) != 0 &&
1535 hotkey_poll_freq > 0 &&
1536 (tpacpi_inputdev->users > 0 || hotkey_report_mode < 2)) {
1537 if (!tpacpi_hotkey_task) {
1538 tpacpi_hotkey_task = kthread_run(hotkey_kthread,
1539 NULL, TPACPI_NVRAM_KTHREAD_NAME);
1540 if (IS_ERR(tpacpi_hotkey_task)) {
1541 tpacpi_hotkey_task = NULL;
1543 "could not create kernel thread "
1544 "for hotkey polling\n");
1548 hotkey_poll_stop_sync();
1550 hotkey_source_mask != 0 && hotkey_poll_freq == 0) {
1551 printk(TPACPI_NOTICE
1552 "hot keys 0x%08x require polling, "
1553 "which is currently disabled\n",
1554 hotkey_source_mask);
1559 static void hotkey_poll_setup_safe(int may_warn)
1561 mutex_lock(&hotkey_mutex);
1562 hotkey_poll_setup(may_warn);
1563 mutex_unlock(&hotkey_mutex);
1566 #else /* CONFIG_THINKPAD_ACPI_HOTKEY_POLL */
1568 static void hotkey_poll_setup_safe(int __unused)
1572 #endif /* CONFIG_THINKPAD_ACPI_HOTKEY_POLL */
1574 static int hotkey_inputdev_open(struct input_dev *dev)
1576 switch (tpacpi_lifecycle) {
1577 case TPACPI_LIFE_INIT:
1579 * hotkey_init will call hotkey_poll_setup_safe
1580 * at the appropriate moment
1583 case TPACPI_LIFE_EXITING:
1585 case TPACPI_LIFE_RUNNING:
1586 hotkey_poll_setup_safe(0);
1590 /* Should only happen if tpacpi_lifecycle is corrupt */
1595 static void hotkey_inputdev_close(struct input_dev *dev)
1597 /* disable hotkey polling when possible */
1598 if (tpacpi_lifecycle == TPACPI_LIFE_RUNNING)
1599 hotkey_poll_setup_safe(0);
1602 /* sysfs hotkey enable ------------------------------------------------- */
1603 static ssize_t hotkey_enable_show(struct device *dev,
1604 struct device_attribute *attr,
1609 res = hotkey_status_get(&status);
1613 return snprintf(buf, PAGE_SIZE, "%d\n", status);
1616 static ssize_t hotkey_enable_store(struct device *dev,
1617 struct device_attribute *attr,
1618 const char *buf, size_t count)
1623 if (parse_strtoul(buf, 1, &t))
1626 res = hotkey_status_set(t);
1628 return (res) ? res : count;
1631 static struct device_attribute dev_attr_hotkey_enable =
1632 __ATTR(hotkey_enable, S_IWUSR | S_IRUGO,
1633 hotkey_enable_show, hotkey_enable_store);
1635 /* sysfs hotkey mask --------------------------------------------------- */
1636 static ssize_t hotkey_mask_show(struct device *dev,
1637 struct device_attribute *attr,
1642 if (mutex_lock_interruptible(&hotkey_mutex))
1643 return -ERESTARTSYS;
1644 res = hotkey_mask_get();
1645 mutex_unlock(&hotkey_mutex);
1648 res : snprintf(buf, PAGE_SIZE, "0x%08x\n", hotkey_mask);
1651 static ssize_t hotkey_mask_store(struct device *dev,
1652 struct device_attribute *attr,
1653 const char *buf, size_t count)
1658 if (parse_strtoul(buf, 0xffffffffUL, &t))
1661 if (mutex_lock_interruptible(&hotkey_mutex))
1662 return -ERESTARTSYS;
1664 res = hotkey_mask_set(t);
1666 #ifdef CONFIG_THINKPAD_ACPI_HOTKEY_POLL
1667 hotkey_poll_setup(1);
1670 mutex_unlock(&hotkey_mutex);
1672 return (res) ? res : count;
1675 static struct device_attribute dev_attr_hotkey_mask =
1676 __ATTR(hotkey_mask, S_IWUSR | S_IRUGO,
1677 hotkey_mask_show, hotkey_mask_store);
1679 /* sysfs hotkey bios_enabled ------------------------------------------- */
1680 static ssize_t hotkey_bios_enabled_show(struct device *dev,
1681 struct device_attribute *attr,
1684 return snprintf(buf, PAGE_SIZE, "%d\n", hotkey_orig_status);
1687 static struct device_attribute dev_attr_hotkey_bios_enabled =
1688 __ATTR(hotkey_bios_enabled, S_IRUGO, hotkey_bios_enabled_show, NULL);
1690 /* sysfs hotkey bios_mask ---------------------------------------------- */
1691 static ssize_t hotkey_bios_mask_show(struct device *dev,
1692 struct device_attribute *attr,
1695 return snprintf(buf, PAGE_SIZE, "0x%08x\n", hotkey_orig_mask);
1698 static struct device_attribute dev_attr_hotkey_bios_mask =
1699 __ATTR(hotkey_bios_mask, S_IRUGO, hotkey_bios_mask_show, NULL);
1701 /* sysfs hotkey all_mask ----------------------------------------------- */
1702 static ssize_t hotkey_all_mask_show(struct device *dev,
1703 struct device_attribute *attr,
1706 return snprintf(buf, PAGE_SIZE, "0x%08x\n",
1707 hotkey_all_mask | hotkey_source_mask);
1710 static struct device_attribute dev_attr_hotkey_all_mask =
1711 __ATTR(hotkey_all_mask, S_IRUGO, hotkey_all_mask_show, NULL);
1713 /* sysfs hotkey recommended_mask --------------------------------------- */
1714 static ssize_t hotkey_recommended_mask_show(struct device *dev,
1715 struct device_attribute *attr,
1718 return snprintf(buf, PAGE_SIZE, "0x%08x\n",
1719 (hotkey_all_mask | hotkey_source_mask)
1720 & ~hotkey_reserved_mask);
1723 static struct device_attribute dev_attr_hotkey_recommended_mask =
1724 __ATTR(hotkey_recommended_mask, S_IRUGO,
1725 hotkey_recommended_mask_show, NULL);
1727 #ifdef CONFIG_THINKPAD_ACPI_HOTKEY_POLL
1729 /* sysfs hotkey hotkey_source_mask ------------------------------------- */
1730 static ssize_t hotkey_source_mask_show(struct device *dev,
1731 struct device_attribute *attr,
1734 return snprintf(buf, PAGE_SIZE, "0x%08x\n", hotkey_source_mask);
1737 static ssize_t hotkey_source_mask_store(struct device *dev,
1738 struct device_attribute *attr,
1739 const char *buf, size_t count)
1743 if (parse_strtoul(buf, 0xffffffffUL, &t) ||
1744 ((t & ~TPACPI_HKEY_NVRAM_KNOWN_MASK) != 0))
1747 if (mutex_lock_interruptible(&hotkey_mutex))
1748 return -ERESTARTSYS;
1750 HOTKEY_CONFIG_CRITICAL_START
1751 hotkey_source_mask = t;
1752 HOTKEY_CONFIG_CRITICAL_END
1754 hotkey_poll_setup(1);
1756 mutex_unlock(&hotkey_mutex);
1761 static struct device_attribute dev_attr_hotkey_source_mask =
1762 __ATTR(hotkey_source_mask, S_IWUSR | S_IRUGO,
1763 hotkey_source_mask_show, hotkey_source_mask_store);
1765 /* sysfs hotkey hotkey_poll_freq --------------------------------------- */
1766 static ssize_t hotkey_poll_freq_show(struct device *dev,
1767 struct device_attribute *attr,
1770 return snprintf(buf, PAGE_SIZE, "%d\n", hotkey_poll_freq);
1773 static ssize_t hotkey_poll_freq_store(struct device *dev,
1774 struct device_attribute *attr,
1775 const char *buf, size_t count)
1779 if (parse_strtoul(buf, 25, &t))
1782 if (mutex_lock_interruptible(&hotkey_mutex))
1783 return -ERESTARTSYS;
1785 hotkey_poll_freq = t;
1787 hotkey_poll_setup(1);
1788 mutex_unlock(&hotkey_mutex);
1793 static struct device_attribute dev_attr_hotkey_poll_freq =
1794 __ATTR(hotkey_poll_freq, S_IWUSR | S_IRUGO,
1795 hotkey_poll_freq_show, hotkey_poll_freq_store);
1797 #endif /* CONFIG_THINKPAD_ACPI_HOTKEY_POLL */
1799 /* sysfs hotkey radio_sw (pollable) ------------------------------------ */
1800 static ssize_t hotkey_radio_sw_show(struct device *dev,
1801 struct device_attribute *attr,
1805 res = hotkey_get_wlsw(&s);
1809 return snprintf(buf, PAGE_SIZE, "%d\n", !!s);
1812 static struct device_attribute dev_attr_hotkey_radio_sw =
1813 __ATTR(hotkey_radio_sw, S_IRUGO, hotkey_radio_sw_show, NULL);
1815 static void hotkey_radio_sw_notify_change(void)
1817 if (tp_features.hotkey_wlsw)
1818 sysfs_notify(&tpacpi_pdev->dev.kobj, NULL,
1822 /* sysfs hotkey tablet mode (pollable) --------------------------------- */
1823 static ssize_t hotkey_tablet_mode_show(struct device *dev,
1824 struct device_attribute *attr,
1828 res = hotkey_get_tablet_mode(&s);
1832 return snprintf(buf, PAGE_SIZE, "%d\n", !!s);
1835 static struct device_attribute dev_attr_hotkey_tablet_mode =
1836 __ATTR(hotkey_tablet_mode, S_IRUGO, hotkey_tablet_mode_show, NULL);
1838 static void hotkey_tablet_mode_notify_change(void)
1840 if (tp_features.hotkey_tablet)
1841 sysfs_notify(&tpacpi_pdev->dev.kobj, NULL,
1842 "hotkey_tablet_mode");
1845 /* sysfs hotkey report_mode -------------------------------------------- */
1846 static ssize_t hotkey_report_mode_show(struct device *dev,
1847 struct device_attribute *attr,
1850 return snprintf(buf, PAGE_SIZE, "%d\n",
1851 (hotkey_report_mode != 0) ? hotkey_report_mode : 1);
1854 static struct device_attribute dev_attr_hotkey_report_mode =
1855 __ATTR(hotkey_report_mode, S_IRUGO, hotkey_report_mode_show, NULL);
1857 /* sysfs wakeup reason (pollable) -------------------------------------- */
1858 static ssize_t hotkey_wakeup_reason_show(struct device *dev,
1859 struct device_attribute *attr,
1862 return snprintf(buf, PAGE_SIZE, "%d\n", hotkey_wakeup_reason);
1865 static struct device_attribute dev_attr_hotkey_wakeup_reason =
1866 __ATTR(wakeup_reason, S_IRUGO, hotkey_wakeup_reason_show, NULL);
1868 static void hotkey_wakeup_reason_notify_change(void)
1870 if (tp_features.hotkey_mask)
1871 sysfs_notify(&tpacpi_pdev->dev.kobj, NULL,
1875 /* sysfs wakeup hotunplug_complete (pollable) -------------------------- */
1876 static ssize_t hotkey_wakeup_hotunplug_complete_show(struct device *dev,
1877 struct device_attribute *attr,
1880 return snprintf(buf, PAGE_SIZE, "%d\n", hotkey_autosleep_ack);
1883 static struct device_attribute dev_attr_hotkey_wakeup_hotunplug_complete =
1884 __ATTR(wakeup_hotunplug_complete, S_IRUGO,
1885 hotkey_wakeup_hotunplug_complete_show, NULL);
1887 static void hotkey_wakeup_hotunplug_complete_notify_change(void)
1889 if (tp_features.hotkey_mask)
1890 sysfs_notify(&tpacpi_pdev->dev.kobj, NULL,
1891 "wakeup_hotunplug_complete");
1894 /* --------------------------------------------------------------------- */
1896 static struct attribute *hotkey_attributes[] __initdata = {
1897 &dev_attr_hotkey_enable.attr,
1898 &dev_attr_hotkey_bios_enabled.attr,
1899 &dev_attr_hotkey_report_mode.attr,
1900 #ifdef CONFIG_THINKPAD_ACPI_HOTKEY_POLL
1901 &dev_attr_hotkey_mask.attr,
1902 &dev_attr_hotkey_all_mask.attr,
1903 &dev_attr_hotkey_recommended_mask.attr,
1904 &dev_attr_hotkey_source_mask.attr,
1905 &dev_attr_hotkey_poll_freq.attr,
1909 static struct attribute *hotkey_mask_attributes[] __initdata = {
1910 &dev_attr_hotkey_bios_mask.attr,
1911 #ifndef CONFIG_THINKPAD_ACPI_HOTKEY_POLL
1912 &dev_attr_hotkey_mask.attr,
1913 &dev_attr_hotkey_all_mask.attr,
1914 &dev_attr_hotkey_recommended_mask.attr,
1916 &dev_attr_hotkey_wakeup_reason.attr,
1917 &dev_attr_hotkey_wakeup_hotunplug_complete.attr,
1920 static int __init hotkey_init(struct ibm_init_struct *iibm)
1922 /* Requirements for changing the default keymaps:
1924 * 1. Many of the keys are mapped to KEY_RESERVED for very
1925 * good reasons. Do not change them unless you have deep
1926 * knowledge on the IBM and Lenovo ThinkPad firmware for
1927 * the various ThinkPad models. The driver behaves
1928 * differently for KEY_RESERVED: such keys have their
1929 * hot key mask *unset* in mask_recommended, and also
1930 * in the initial hot key mask programmed into the
1931 * firmware at driver load time, which means the firm-
1932 * ware may react very differently if you change them to
1935 * 2. You must be subscribed to the linux-thinkpad and
1936 * ibm-acpi-devel mailing lists, and you should read the
1937 * list archives since 2007 if you want to change the
1938 * keymaps. This requirement exists so that you will
1939 * know the past history of problems with the thinkpad-
1940 * acpi driver keymaps, and also that you will be
1941 * listening to any bug reports;
1943 * 3. Do not send thinkpad-acpi specific patches directly to
1944 * for merging, *ever*. Send them to the linux-acpi
1945 * mailinglist for comments. Merging is to be done only
1946 * through acpi-test and the ACPI maintainer.
1948 * If the above is too much to ask, don't change the keymap.
1949 * Ask the thinkpad-acpi maintainer to do it, instead.
1951 static u16 ibm_keycode_map[] __initdata = {
1952 /* Scan Codes 0x00 to 0x0B: ACPI HKEY FN+F1..F12 */
1953 KEY_FN_F1, KEY_FN_F2, KEY_COFFEE, KEY_SLEEP,
1954 KEY_WLAN, KEY_FN_F6, KEY_SWITCHVIDEOMODE, KEY_FN_F8,
1955 KEY_FN_F9, KEY_FN_F10, KEY_FN_F11, KEY_SUSPEND,
1957 /* Scan codes 0x0C to 0x1F: Other ACPI HKEY hot keys */
1958 KEY_UNKNOWN, /* 0x0C: FN+BACKSPACE */
1959 KEY_UNKNOWN, /* 0x0D: FN+INSERT */
1960 KEY_UNKNOWN, /* 0x0E: FN+DELETE */
1962 /* brightness: firmware always reacts to them, unless
1963 * X.org did some tricks in the radeon BIOS scratch
1964 * registers of *some* models */
1965 KEY_RESERVED, /* 0x0F: FN+HOME (brightness up) */
1966 KEY_RESERVED, /* 0x10: FN+END (brightness down) */
1968 /* Thinklight: firmware always react to it */
1969 KEY_RESERVED, /* 0x11: FN+PGUP (thinklight toggle) */
1971 KEY_UNKNOWN, /* 0x12: FN+PGDOWN */
1972 KEY_ZOOM, /* 0x13: FN+SPACE (zoom) */
1974 /* Volume: firmware always react to it and reprograms
1975 * the built-in *extra* mixer. Never map it to control
1976 * another mixer by default. */
1977 KEY_RESERVED, /* 0x14: VOLUME UP */
1978 KEY_RESERVED, /* 0x15: VOLUME DOWN */
1979 KEY_RESERVED, /* 0x16: MUTE */
1981 KEY_VENDOR, /* 0x17: Thinkpad/AccessIBM/Lenovo */
1983 /* (assignments unknown, please report if found) */
1984 KEY_UNKNOWN, KEY_UNKNOWN, KEY_UNKNOWN, KEY_UNKNOWN,
1985 KEY_UNKNOWN, KEY_UNKNOWN, KEY_UNKNOWN, KEY_UNKNOWN,
1987 static u16 lenovo_keycode_map[] __initdata = {
1988 /* Scan Codes 0x00 to 0x0B: ACPI HKEY FN+F1..F12 */
1989 KEY_FN_F1, KEY_COFFEE, KEY_BATTERY, KEY_SLEEP,
1990 KEY_WLAN, KEY_FN_F6, KEY_SWITCHVIDEOMODE, KEY_FN_F8,
1991 KEY_FN_F9, KEY_FN_F10, KEY_FN_F11, KEY_SUSPEND,
1993 /* Scan codes 0x0C to 0x1F: Other ACPI HKEY hot keys */
1994 KEY_UNKNOWN, /* 0x0C: FN+BACKSPACE */
1995 KEY_UNKNOWN, /* 0x0D: FN+INSERT */
1996 KEY_UNKNOWN, /* 0x0E: FN+DELETE */
1998 /* These either have to go through ACPI video, or
1999 * act like in the IBM ThinkPads, so don't ever
2000 * enable them by default */
2001 KEY_RESERVED, /* 0x0F: FN+HOME (brightness up) */
2002 KEY_RESERVED, /* 0x10: FN+END (brightness down) */
2004 KEY_RESERVED, /* 0x11: FN+PGUP (thinklight toggle) */
2006 KEY_UNKNOWN, /* 0x12: FN+PGDOWN */
2007 KEY_ZOOM, /* 0x13: FN+SPACE (zoom) */
2009 /* Volume: z60/z61, T60 (BIOS version?): firmware always
2010 * react to it and reprograms the built-in *extra* mixer.
2011 * Never map it to control another mixer by default.
2013 * T60?, T61, R60?, R61: firmware and EC tries to send
2014 * these over the regular keyboard, so these are no-ops,
2015 * but there are still weird bugs re. MUTE, so do not
2016 * change unless you get test reports from all Lenovo
2017 * models. May cause the BIOS to interfere with the
2020 KEY_RESERVED, /* 0x14: VOLUME UP */
2021 KEY_RESERVED, /* 0x15: VOLUME DOWN */
2022 KEY_RESERVED, /* 0x16: MUTE */
2024 KEY_VENDOR, /* 0x17: Thinkpad/AccessIBM/Lenovo */
2026 /* (assignments unknown, please report if found) */
2027 KEY_UNKNOWN, KEY_UNKNOWN, KEY_UNKNOWN, KEY_UNKNOWN,
2028 KEY_UNKNOWN, KEY_UNKNOWN, KEY_UNKNOWN, KEY_UNKNOWN,
2031 #define TPACPI_HOTKEY_MAP_LEN ARRAY_SIZE(ibm_keycode_map)
2032 #define TPACPI_HOTKEY_MAP_SIZE sizeof(ibm_keycode_map)
2033 #define TPACPI_HOTKEY_MAP_TYPESIZE sizeof(ibm_keycode_map[0])
2039 vdbg_printk(TPACPI_DBG_INIT, "initializing hotkey subdriver\n");
2041 BUG_ON(!tpacpi_inputdev);
2042 BUG_ON(tpacpi_inputdev->open != NULL ||
2043 tpacpi_inputdev->close != NULL);
2045 TPACPI_ACPIHANDLE_INIT(hkey);
2046 mutex_init(&hotkey_mutex);
2048 #ifdef CONFIG_THINKPAD_ACPI_HOTKEY_POLL
2049 mutex_init(&hotkey_thread_mutex);
2050 mutex_init(&hotkey_thread_data_mutex);
2053 /* hotkey not supported on 570 */
2054 tp_features.hotkey = hkey_handle != NULL;
2056 vdbg_printk(TPACPI_DBG_INIT, "hotkeys are %s\n",
2057 str_supported(tp_features.hotkey));
2059 if (tp_features.hotkey) {
2060 hotkey_dev_attributes = create_attr_set(13, NULL);
2061 if (!hotkey_dev_attributes)
2063 res = add_many_to_attr_set(hotkey_dev_attributes,
2065 ARRAY_SIZE(hotkey_attributes));
2069 /* mask not supported on 570, 600e/x, 770e, 770x, A21e, A2xm/p,
2070 A30, R30, R31, T20-22, X20-21, X22-24. Detected by checking
2071 for HKEY interface version 0x100 */
2072 if (acpi_evalf(hkey_handle, &hkeyv, "MHKV", "qd")) {
2073 if ((hkeyv >> 8) != 1) {
2074 printk(TPACPI_ERR "unknown version of the "
2075 "HKEY interface: 0x%x\n", hkeyv);
2076 printk(TPACPI_ERR "please report this to %s\n",
2080 * MHKV 0x100 in A31, R40, R40e,
2081 * T4x, X31, and later
2083 tp_features.hotkey_mask = 1;
2087 vdbg_printk(TPACPI_DBG_INIT, "hotkey masks are %s\n",
2088 str_supported(tp_features.hotkey_mask));
2090 if (tp_features.hotkey_mask) {
2091 if (!acpi_evalf(hkey_handle, &hotkey_all_mask,
2094 "missing MHKA handler, "
2095 "please report this to %s\n",
2097 /* FN+F12, FN+F4, FN+F3 */
2098 hotkey_all_mask = 0x080cU;
2102 /* hotkey_source_mask *must* be zero for
2103 * the first hotkey_mask_get */
2104 res = hotkey_status_get(&hotkey_orig_status);
2105 if (!res && tp_features.hotkey_mask) {
2106 res = hotkey_mask_get();
2107 hotkey_orig_mask = hotkey_mask;
2109 res = add_many_to_attr_set(
2110 hotkey_dev_attributes,
2111 hotkey_mask_attributes,
2112 ARRAY_SIZE(hotkey_mask_attributes));
2116 #ifdef CONFIG_THINKPAD_ACPI_HOTKEY_POLL
2117 if (tp_features.hotkey_mask) {
2118 hotkey_source_mask = TPACPI_HKEY_NVRAM_GOOD_MASK
2121 hotkey_source_mask = TPACPI_HKEY_NVRAM_GOOD_MASK;
2124 vdbg_printk(TPACPI_DBG_INIT,
2125 "hotkey source mask 0x%08x, polling freq %d\n",
2126 hotkey_source_mask, hotkey_poll_freq);
2129 /* Not all thinkpads have a hardware radio switch */
2130 if (!res && acpi_evalf(hkey_handle, &status, "WLSW", "qd")) {
2131 tp_features.hotkey_wlsw = 1;
2133 "radio switch found; radios are %s\n",
2134 enabled(status, 0));
2135 res = add_to_attr_set(hotkey_dev_attributes,
2136 &dev_attr_hotkey_radio_sw.attr);
2139 /* For X41t, X60t, X61t Tablets... */
2140 if (!res && acpi_evalf(hkey_handle, &status, "MHKG", "qd")) {
2141 tp_features.hotkey_tablet = 1;
2143 "possible tablet mode switch found; "
2144 "ThinkPad in %s mode\n",
2145 (status & TP_HOTKEY_TABLET_MASK)?
2146 "tablet" : "laptop");
2147 res = add_to_attr_set(hotkey_dev_attributes,
2148 &dev_attr_hotkey_tablet_mode.attr);
2152 res = register_attr_set_with_sysfs(
2153 hotkey_dev_attributes,
2154 &tpacpi_pdev->dev.kobj);
2158 /* Set up key map */
2160 hotkey_keycode_map = kmalloc(TPACPI_HOTKEY_MAP_SIZE,
2162 if (!hotkey_keycode_map) {
2164 "failed to allocate memory for key map\n");
2168 if (thinkpad_id.vendor == PCI_VENDOR_ID_LENOVO) {
2169 dbg_printk(TPACPI_DBG_INIT,
2170 "using Lenovo default hot key map\n");
2171 memcpy(hotkey_keycode_map, &lenovo_keycode_map,
2172 TPACPI_HOTKEY_MAP_SIZE);
2174 dbg_printk(TPACPI_DBG_INIT,
2175 "using IBM default hot key map\n");
2176 memcpy(hotkey_keycode_map, &ibm_keycode_map,
2177 TPACPI_HOTKEY_MAP_SIZE);
2180 set_bit(EV_KEY, tpacpi_inputdev->evbit);
2181 set_bit(EV_MSC, tpacpi_inputdev->evbit);
2182 set_bit(MSC_SCAN, tpacpi_inputdev->mscbit);
2183 tpacpi_inputdev->keycodesize = TPACPI_HOTKEY_MAP_TYPESIZE;
2184 tpacpi_inputdev->keycodemax = TPACPI_HOTKEY_MAP_LEN;
2185 tpacpi_inputdev->keycode = hotkey_keycode_map;
2186 for (i = 0; i < TPACPI_HOTKEY_MAP_LEN; i++) {
2187 if (hotkey_keycode_map[i] != KEY_RESERVED) {
2188 set_bit(hotkey_keycode_map[i],
2189 tpacpi_inputdev->keybit);
2191 if (i < sizeof(hotkey_reserved_mask)*8)
2192 hotkey_reserved_mask |= 1 << i;
2196 if (tp_features.hotkey_wlsw) {
2197 set_bit(EV_SW, tpacpi_inputdev->evbit);
2198 set_bit(SW_RADIO, tpacpi_inputdev->swbit);
2200 if (tp_features.hotkey_tablet) {
2201 set_bit(EV_SW, tpacpi_inputdev->evbit);
2202 set_bit(SW_TABLET_MODE, tpacpi_inputdev->swbit);
2205 /* Do not issue duplicate brightness change events to
2207 if (!tp_features.bright_acpimode)
2208 /* update bright_acpimode... */
2209 tpacpi_check_std_acpi_brightness_support();
2211 if (tp_features.bright_acpimode) {
2213 "This ThinkPad has standard ACPI backlight "
2214 "brightness control, supported by the ACPI "
2216 printk(TPACPI_NOTICE
2217 "Disabling thinkpad-acpi brightness events "
2220 /* The hotkey_reserved_mask change below is not
2221 * necessary while the keys are at KEY_RESERVED in the
2222 * default map, but better safe than sorry, leave it
2223 * here as a marker of what we have to do, especially
2224 * when we finally become able to set this at runtime
2225 * on response to X.org requests */
2226 hotkey_reserved_mask |=
2227 (1 << TP_ACPI_HOTKEYSCAN_FNHOME)
2228 | (1 << TP_ACPI_HOTKEYSCAN_FNEND);
2231 dbg_printk(TPACPI_DBG_INIT,
2232 "enabling hot key handling\n");
2233 res = hotkey_status_set(1);
2236 res = hotkey_mask_set(((hotkey_all_mask | hotkey_source_mask)
2237 & ~hotkey_reserved_mask)
2238 | hotkey_orig_mask);
2239 if (res < 0 && res != -ENXIO)
2242 dbg_printk(TPACPI_DBG_INIT,
2243 "legacy hot key reporting over procfs %s\n",
2244 (hotkey_report_mode < 2) ?
2245 "enabled" : "disabled");
2247 tpacpi_inputdev->open = &hotkey_inputdev_open;
2248 tpacpi_inputdev->close = &hotkey_inputdev_close;
2250 hotkey_poll_setup_safe(1);
2251 tpacpi_input_send_radiosw();
2252 tpacpi_input_send_tabletsw();
2255 return (tp_features.hotkey)? 0 : 1;
2258 static void hotkey_exit(void)
2260 #ifdef CONFIG_THINKPAD_ACPI_HOTKEY_POLL
2261 hotkey_poll_stop_sync();
2264 if (tp_features.hotkey) {
2265 dbg_printk(TPACPI_DBG_EXIT,
2266 "restoring original hot key mask\n");
2267 /* no short-circuit boolean operator below! */
2268 if ((hotkey_mask_set(hotkey_orig_mask) |
2269 hotkey_status_set(hotkey_orig_status)) != 0)
2271 "failed to restore hot key mask "
2272 "to BIOS defaults\n");
2275 if (hotkey_dev_attributes) {
2276 delete_attr_set(hotkey_dev_attributes, &tpacpi_pdev->dev.kobj);
2277 hotkey_dev_attributes = NULL;
2281 static void hotkey_notify(struct ibm_struct *ibm, u32 event)
2284 unsigned int scancode;
2289 if (event != 0x80) {
2291 "unknown HKEY notification event %d\n", event);
2292 /* forward it to userspace, maybe it knows how to handle it */
2293 acpi_bus_generate_netlink_event(
2294 ibm->acpi->device->pnp.device_class,
2295 ibm->acpi->device->dev.bus_id,
2301 if (!acpi_evalf(hkey_handle, &hkey, "MHKP", "d")) {
2302 printk(TPACPI_ERR "failed to retrieve HKEY event\n");
2315 switch (hkey >> 12) {
2317 /* 0x1000-0x1FFF: key presses */
2318 scancode = hkey & 0xfff;
2319 if (scancode > 0 && scancode < 0x21) {
2321 if (!(hotkey_source_mask & (1 << scancode))) {
2322 tpacpi_input_send_key(scancode);
2334 case 0x2304: /* suspend, undock */
2335 case 0x2404: /* hibernation, undock */
2336 hotkey_wakeup_reason = TP_ACPI_WAKEUP_UNDOCK;
2339 case 0x2305: /* suspend, bay eject */
2340 case 0x2405: /* hibernation, bay eject */
2341 hotkey_wakeup_reason = TP_ACPI_WAKEUP_BAYEJ;
2347 if (hotkey_wakeup_reason != TP_ACPI_WAKEUP_NONE) {
2349 "woke up due to a hot-unplug "
2351 hotkey_wakeup_reason_notify_change();
2355 /* bay-related wakeups */
2356 if (hkey == 0x3003) {
2357 hotkey_autosleep_ack = 1;
2360 hotkey_wakeup_hotunplug_complete_notify_change();
2366 /* dock-related wakeups */
2367 if (hkey == 0x4003) {
2368 hotkey_autosleep_ack = 1;
2371 hotkey_wakeup_hotunplug_complete_notify_change();
2377 /* 0x5000-0x5FFF: human interface helpers */
2379 case 0x5010: /* Lenovo new BIOS: brightness changed */
2380 case 0x500b: /* X61t: tablet pen inserted into bay */
2381 case 0x500c: /* X61t: tablet pen removed from bay */
2383 case 0x5009: /* X41t-X61t: swivel up (tablet mode) */
2384 case 0x500a: /* X41t-X61t: swivel down (normal mode) */
2385 tpacpi_input_send_tabletsw();
2386 hotkey_tablet_mode_notify_change();
2391 /* LID switch events. Do not propagate */
2399 /* 0x7000-0x7FFF: misc */
2400 if (tp_features.hotkey_wlsw && hkey == 0x7000) {
2401 tpacpi_input_send_radiosw();
2402 hotkey_radio_sw_notify_change();
2406 /* fallthrough to default */
2411 printk(TPACPI_NOTICE
2412 "unhandled HKEY event 0x%04x\n", hkey);
2416 if (!ignore_acpi_ev &&
2417 (send_acpi_ev || hotkey_report_mode < 2)) {
2418 acpi_bus_generate_proc_event(ibm->acpi->device,
2422 /* netlink events */
2423 if (!ignore_acpi_ev && send_acpi_ev) {
2424 acpi_bus_generate_netlink_event(
2425 ibm->acpi->device->pnp.device_class,
2426 ibm->acpi->device->dev.bus_id,
2432 static void hotkey_suspend(pm_message_t state)
2434 /* Do these on suspend, we get the events on early resume! */
2435 hotkey_wakeup_reason = TP_ACPI_WAKEUP_NONE;
2436 hotkey_autosleep_ack = 0;
2439 static void hotkey_resume(void)
2441 if (hotkey_mask_get())
2443 "error while trying to read hot key mask "
2445 tpacpi_input_send_radiosw();
2446 hotkey_radio_sw_notify_change();
2447 hotkey_tablet_mode_notify_change();
2448 hotkey_wakeup_reason_notify_change();
2449 hotkey_wakeup_hotunplug_complete_notify_change();
2450 hotkey_poll_setup_safe(0);
2453 /* procfs -------------------------------------------------------------- */
2454 static int hotkey_read(char *p)
2459 if (!tp_features.hotkey) {
2460 len += sprintf(p + len, "status:\t\tnot supported\n");
2464 if (mutex_lock_interruptible(&hotkey_mutex))
2465 return -ERESTARTSYS;
2466 res = hotkey_status_get(&status);
2468 res = hotkey_mask_get();
2469 mutex_unlock(&hotkey_mutex);
2473 len += sprintf(p + len, "status:\t\t%s\n", enabled(status, 0));
2474 if (tp_features.hotkey_mask) {
2475 len += sprintf(p + len, "mask:\t\t0x%08x\n", hotkey_mask);
2476 len += sprintf(p + len,
2477 "commands:\tenable, disable, reset, <mask>\n");
2479 len += sprintf(p + len, "mask:\t\tnot supported\n");
2480 len += sprintf(p + len, "commands:\tenable, disable, reset\n");
2486 static int hotkey_write(char *buf)
2492 if (!tp_features.hotkey)
2495 if (mutex_lock_interruptible(&hotkey_mutex))
2496 return -ERESTARTSYS;
2502 while ((cmd = next_cmd(&buf))) {
2503 if (strlencmp(cmd, "enable") == 0) {
2505 } else if (strlencmp(cmd, "disable") == 0) {
2507 } else if (strlencmp(cmd, "reset") == 0) {
2508 status = hotkey_orig_status;
2509 mask = hotkey_orig_mask;
2510 } else if (sscanf(cmd, "0x%x", &mask) == 1) {
2512 } else if (sscanf(cmd, "%x", &mask) == 1) {
2520 res = hotkey_status_set(status);
2522 if (!res && mask != hotkey_mask)
2523 res = hotkey_mask_set(mask);
2526 mutex_unlock(&hotkey_mutex);
2530 static const struct acpi_device_id ibm_htk_device_ids[] = {
2531 {TPACPI_ACPI_HKEY_HID, 0},
2535 static struct tp_acpi_drv_struct ibm_hotkey_acpidriver = {
2536 .hid = ibm_htk_device_ids,
2537 .notify = hotkey_notify,
2538 .handle = &hkey_handle,
2539 .type = ACPI_DEVICE_NOTIFY,
2542 static struct ibm_struct hotkey_driver_data = {
2544 .read = hotkey_read,
2545 .write = hotkey_write,
2546 .exit = hotkey_exit,
2547 .resume = hotkey_resume,
2548 .suspend = hotkey_suspend,
2549 .acpi = &ibm_hotkey_acpidriver,
2552 /*************************************************************************
2553 * Bluetooth subdriver
2557 /* ACPI GBDC/SBDC bits */
2558 TP_ACPI_BLUETOOTH_HWPRESENT = 0x01, /* Bluetooth hw available */
2559 TP_ACPI_BLUETOOTH_RADIOSSW = 0x02, /* Bluetooth radio enabled */
2560 TP_ACPI_BLUETOOTH_UNK = 0x04, /* unknown function */
2563 static int bluetooth_get_radiosw(void);
2564 static int bluetooth_set_radiosw(int radio_on);
2566 /* sysfs bluetooth enable ---------------------------------------------- */
2567 static ssize_t bluetooth_enable_show(struct device *dev,
2568 struct device_attribute *attr,
2573 status = bluetooth_get_radiosw();
2577 return snprintf(buf, PAGE_SIZE, "%d\n", status ? 1 : 0);
2580 static ssize_t bluetooth_enable_store(struct device *dev,
2581 struct device_attribute *attr,
2582 const char *buf, size_t count)
2587 if (parse_strtoul(buf, 1, &t))
2590 res = bluetooth_set_radiosw(t);
2592 return (res) ? res : count;
2595 static struct device_attribute dev_attr_bluetooth_enable =
2596 __ATTR(bluetooth_enable, S_IWUSR | S_IRUGO,
2597 bluetooth_enable_show, bluetooth_enable_store);
2599 /* --------------------------------------------------------------------- */
2601 static struct attribute *bluetooth_attributes[] = {
2602 &dev_attr_bluetooth_enable.attr,
2606 static const struct attribute_group bluetooth_attr_group = {
2607 .attrs = bluetooth_attributes,
2610 static int __init bluetooth_init(struct ibm_init_struct *iibm)
2615 vdbg_printk(TPACPI_DBG_INIT, "initializing bluetooth subdriver\n");
2617 TPACPI_ACPIHANDLE_INIT(hkey);
2619 /* bluetooth not supported on 570, 600e/x, 770e, 770x, A21e, A2xm/p,
2620 G4x, R30, R31, R40e, R50e, T20-22, X20-21 */
2621 tp_features.bluetooth = hkey_handle &&
2622 acpi_evalf(hkey_handle, &status, "GBDC", "qd");
2624 vdbg_printk(TPACPI_DBG_INIT, "bluetooth is %s, status 0x%02x\n",
2625 str_supported(tp_features.bluetooth),
2628 if (tp_features.bluetooth) {
2629 if (!(status & TP_ACPI_BLUETOOTH_HWPRESENT)) {
2630 /* no bluetooth hardware present in system */
2631 tp_features.bluetooth = 0;
2632 dbg_printk(TPACPI_DBG_INIT,
2633 "bluetooth hardware not installed\n");
2635 res = sysfs_create_group(&tpacpi_pdev->dev.kobj,
2636 &bluetooth_attr_group);
2642 return (tp_features.bluetooth)? 0 : 1;
2645 static void bluetooth_exit(void)
2647 sysfs_remove_group(&tpacpi_pdev->dev.kobj,
2648 &bluetooth_attr_group);
2651 static int bluetooth_get_radiosw(void)
2655 if (!tp_features.bluetooth)
2658 if (!acpi_evalf(hkey_handle, &status, "GBDC", "d"))
2661 return ((status & TP_ACPI_BLUETOOTH_RADIOSSW) != 0);
2664 static int bluetooth_set_radiosw(int radio_on)
2668 if (!tp_features.bluetooth)
2671 if (!acpi_evalf(hkey_handle, &status, "GBDC", "d"))
2674 status |= TP_ACPI_BLUETOOTH_RADIOSSW;
2676 status &= ~TP_ACPI_BLUETOOTH_RADIOSSW;
2677 if (!acpi_evalf(hkey_handle, NULL, "SBDC", "vd", status))
2683 /* procfs -------------------------------------------------------------- */
2684 static int bluetooth_read(char *p)
2687 int status = bluetooth_get_radiosw();
2689 if (!tp_features.bluetooth)
2690 len += sprintf(p + len, "status:\t\tnot supported\n");
2692 len += sprintf(p + len, "status:\t\t%s\n",
2693 (status)? "enabled" : "disabled");
2694 len += sprintf(p + len, "commands:\tenable, disable\n");
2700 static int bluetooth_write(char *buf)
2704 if (!tp_features.bluetooth)
2707 while ((cmd = next_cmd(&buf))) {
2708 if (strlencmp(cmd, "enable") == 0) {
2709 bluetooth_set_radiosw(1);
2710 } else if (strlencmp(cmd, "disable") == 0) {
2711 bluetooth_set_radiosw(0);
2719 static struct ibm_struct bluetooth_driver_data = {
2720 .name = "bluetooth",
2721 .read = bluetooth_read,
2722 .write = bluetooth_write,
2723 .exit = bluetooth_exit,
2726 /*************************************************************************
2731 /* ACPI GWAN/SWAN bits */
2732 TP_ACPI_WANCARD_HWPRESENT = 0x01, /* Wan hw available */
2733 TP_ACPI_WANCARD_RADIOSSW = 0x02, /* Wan radio enabled */
2734 TP_ACPI_WANCARD_UNK = 0x04, /* unknown function */
2737 static int wan_get_radiosw(void);
2738 static int wan_set_radiosw(int radio_on);
2740 /* sysfs wan enable ---------------------------------------------------- */
2741 static ssize_t wan_enable_show(struct device *dev,
2742 struct device_attribute *attr,
2747 status = wan_get_radiosw();
2751 return snprintf(buf, PAGE_SIZE, "%d\n", status ? 1 : 0);
2754 static ssize_t wan_enable_store(struct device *dev,
2755 struct device_attribute *attr,
2756 const char *buf, size_t count)
2761 if (parse_strtoul(buf, 1, &t))
2764 res = wan_set_radiosw(t);
2766 return (res) ? res : count;
2769 static struct device_attribute dev_attr_wan_enable =
2770 __ATTR(wwan_enable, S_IWUSR | S_IRUGO,
2771 wan_enable_show, wan_enable_store);
2773 /* --------------------------------------------------------------------- */
2775 static struct attribute *wan_attributes[] = {
2776 &dev_attr_wan_enable.attr,
2780 static const struct attribute_group wan_attr_group = {
2781 .attrs = wan_attributes,
2784 static int __init wan_init(struct ibm_init_struct *iibm)
2789 vdbg_printk(TPACPI_DBG_INIT, "initializing wan subdriver\n");
2791 TPACPI_ACPIHANDLE_INIT(hkey);
2793 tp_features.wan = hkey_handle &&
2794 acpi_evalf(hkey_handle, &status, "GWAN", "qd");
2796 vdbg_printk(TPACPI_DBG_INIT, "wan is %s, status 0x%02x\n",
2797 str_supported(tp_features.wan),
2800 if (tp_features.wan) {
2801 if (!(status & TP_ACPI_WANCARD_HWPRESENT)) {
2802 /* no wan hardware present in system */
2803 tp_features.wan = 0;
2804 dbg_printk(TPACPI_DBG_INIT,
2805 "wan hardware not installed\n");
2807 res = sysfs_create_group(&tpacpi_pdev->dev.kobj,
2814 return (tp_features.wan)? 0 : 1;
2817 static void wan_exit(void)
2819 sysfs_remove_group(&tpacpi_pdev->dev.kobj,
2823 static int wan_get_radiosw(void)
2827 if (!tp_features.wan)
2830 if (!acpi_evalf(hkey_handle, &status, "GWAN", "d"))
2833 return ((status & TP_ACPI_WANCARD_RADIOSSW) != 0);
2836 static int wan_set_radiosw(int radio_on)
2840 if (!tp_features.wan)
2843 if (!acpi_evalf(hkey_handle, &status, "GWAN", "d"))
2846 status |= TP_ACPI_WANCARD_RADIOSSW;
2848 status &= ~TP_ACPI_WANCARD_RADIOSSW;
2849 if (!acpi_evalf(hkey_handle, NULL, "SWAN", "vd", status))
2855 /* procfs -------------------------------------------------------------- */
2856 static int wan_read(char *p)
2859 int status = wan_get_radiosw();
2861 if (!tp_features.wan)
2862 len += sprintf(p + len, "status:\t\tnot supported\n");
2864 len += sprintf(p + len, "status:\t\t%s\n",
2865 (status)? "enabled" : "disabled");
2866 len += sprintf(p + len, "commands:\tenable, disable\n");
2872 static int wan_write(char *buf)
2876 if (!tp_features.wan)
2879 while ((cmd = next_cmd(&buf))) {
2880 if (strlencmp(cmd, "enable") == 0) {
2882 } else if (strlencmp(cmd, "disable") == 0) {
2891 static struct ibm_struct wan_driver_data = {
2896 .flags.experimental = 1,
2899 /*************************************************************************
2903 #ifdef CONFIG_THINKPAD_ACPI_VIDEO
2905 enum video_access_mode {
2906 TPACPI_VIDEO_NONE = 0,
2907 TPACPI_VIDEO_570, /* 570 */
2908 TPACPI_VIDEO_770, /* 600e/x, 770e, 770x */
2909 TPACPI_VIDEO_NEW, /* all others */
2912 enum { /* video status flags, based on VIDEO_570 */
2913 TP_ACPI_VIDEO_S_LCD = 0x01, /* LCD output enabled */
2914 TP_ACPI_VIDEO_S_CRT = 0x02, /* CRT output enabled */
2915 TP_ACPI_VIDEO_S_DVI = 0x08, /* DVI output enabled */
2918 enum { /* TPACPI_VIDEO_570 constants */
2919 TP_ACPI_VIDEO_570_PHSCMD = 0x87, /* unknown magic constant :( */
2920 TP_ACPI_VIDEO_570_PHSMASK = 0x03, /* PHS bits that map to
2921 * video_status_flags */
2922 TP_ACPI_VIDEO_570_PHS2CMD = 0x8b, /* unknown magic constant :( */
2923 TP_ACPI_VIDEO_570_PHS2SET = 0x80, /* unknown magic constant :( */
2926 static enum video_access_mode video_supported;
2927 static int video_orig_autosw;
2929 static int video_autosw_get(void);
2930 static int video_autosw_set(int enable);
2932 TPACPI_HANDLE(vid2, root, "\\_SB.PCI0.AGPB.VID"); /* G41 */
2934 static int __init video_init(struct ibm_init_struct *iibm)
2938 vdbg_printk(TPACPI_DBG_INIT, "initializing video subdriver\n");
2940 TPACPI_ACPIHANDLE_INIT(vid);
2941 TPACPI_ACPIHANDLE_INIT(vid2);
2943 if (vid2_handle && acpi_evalf(NULL, &ivga, "\\IVGA", "d") && ivga)
2944 /* G41, assume IVGA doesn't change */
2945 vid_handle = vid2_handle;
2948 /* video switching not supported on R30, R31 */
2949 video_supported = TPACPI_VIDEO_NONE;
2950 else if (acpi_evalf(vid_handle, &video_orig_autosw, "SWIT", "qd"))
2952 video_supported = TPACPI_VIDEO_570;
2953 else if (acpi_evalf(vid_handle, &video_orig_autosw, "^VADL", "qd"))
2954 /* 600e/x, 770e, 770x */
2955 video_supported = TPACPI_VIDEO_770;
2958 video_supported = TPACPI_VIDEO_NEW;
2960 vdbg_printk(TPACPI_DBG_INIT, "video is %s, mode %d\n",
2961 str_supported(video_supported != TPACPI_VIDEO_NONE),
2964 return (video_supported != TPACPI_VIDEO_NONE)? 0 : 1;
2967 static void video_exit(void)
2969 dbg_printk(TPACPI_DBG_EXIT,
2970 "restoring original video autoswitch mode\n");
2971 if (video_autosw_set(video_orig_autosw))
2972 printk(TPACPI_ERR "error while trying to restore original "
2973 "video autoswitch mode\n");
2976 static int video_outputsw_get(void)
2981 switch (video_supported) {
2982 case TPACPI_VIDEO_570:
2983 if (!acpi_evalf(NULL, &i, "\\_SB.PHS", "dd",
2984 TP_ACPI_VIDEO_570_PHSCMD))
2986 status = i & TP_ACPI_VIDEO_570_PHSMASK;
2988 case TPACPI_VIDEO_770:
2989 if (!acpi_evalf(NULL, &i, "\\VCDL", "d"))
2992 status |= TP_ACPI_VIDEO_S_LCD;
2993 if (!acpi_evalf(NULL, &i, "\\VCDC", "d"))
2996 status |= TP_ACPI_VIDEO_S_CRT;
2998 case TPACPI_VIDEO_NEW:
2999 if (!acpi_evalf(NULL, NULL, "\\VUPS", "vd", 1) ||
3000 !acpi_evalf(NULL, &i, "\\VCDC", "d"))
3003 status |= TP_ACPI_VIDEO_S_CRT;
3005 if (!acpi_evalf(NULL, NULL, "\\VUPS", "vd", 0) ||
3006 !acpi_evalf(NULL, &i, "\\VCDL", "d"))
3009 status |= TP_ACPI_VIDEO_S_LCD;
3010 if (!acpi_evalf(NULL, &i, "\\VCDD", "d"))
3013 status |= TP_ACPI_VIDEO_S_DVI;
3022 static int video_outputsw_set(int status)
3027 switch (video_supported) {
3028 case TPACPI_VIDEO_570:
3029 res = acpi_evalf(NULL, NULL,
3030 "\\_SB.PHS2", "vdd",
3031 TP_ACPI_VIDEO_570_PHS2CMD,
3032 status | TP_ACPI_VIDEO_570_PHS2SET);
3034 case TPACPI_VIDEO_770:
3035 autosw = video_autosw_get();
3039 res = video_autosw_set(1);
3042 res = acpi_evalf(vid_handle, NULL,
3043 "ASWT", "vdd", status * 0x100, 0);
3044 if (!autosw && video_autosw_set(autosw)) {
3046 "video auto-switch left enabled due to error\n");
3050 case TPACPI_VIDEO_NEW:
3051 res = acpi_evalf(NULL, NULL, "\\VUPS", "vd", 0x80) &&
3052 acpi_evalf(NULL, NULL, "\\VSDS", "vdd", status, 1);
3058 return (res)? 0 : -EIO;
3061 static int video_autosw_get(void)
3065 switch (video_supported) {
3066 case TPACPI_VIDEO_570:
3067 if (!acpi_evalf(vid_handle, &autosw, "SWIT", "d"))
3070 case TPACPI_VIDEO_770:
3071 case TPACPI_VIDEO_NEW:
3072 if (!acpi_evalf(vid_handle, &autosw, "^VDEE", "d"))
3082 static int video_autosw_set(int enable)
3084 if (!acpi_evalf(vid_handle, NULL, "_DOS", "vd", (enable)? 1 : 0))
3089 static int video_outputsw_cycle(void)
3091 int autosw = video_autosw_get();
3097 switch (video_supported) {
3098 case TPACPI_VIDEO_570:
3099 res = video_autosw_set(1);
3102 res = acpi_evalf(ec_handle, NULL, "_Q16", "v");
3104 case TPACPI_VIDEO_770:
3105 case TPACPI_VIDEO_NEW:
3106 res = video_autosw_set(1);
3109 res = acpi_evalf(vid_handle, NULL, "VSWT", "v");
3114 if (!autosw && video_autosw_set(autosw)) {
3116 "video auto-switch left enabled due to error\n");
3120 return (res)? 0 : -EIO;
3123 static int video_expand_toggle(void)
3125 switch (video_supported) {
3126 case TPACPI_VIDEO_570:
3127 return acpi_evalf(ec_handle, NULL, "_Q17", "v")?
3129 case TPACPI_VIDEO_770:
3130 return acpi_evalf(vid_handle, NULL, "VEXP", "v")?
3132 case TPACPI_VIDEO_NEW:
3133 return acpi_evalf(NULL, NULL, "\\VEXP", "v")?
3141 static int video_read(char *p)
3146 if (video_supported == TPACPI_VIDEO_NONE) {
3147 len += sprintf(p + len, "status:\t\tnot supported\n");
3151 status = video_outputsw_get();
3155 autosw = video_autosw_get();
3159 len += sprintf(p + len, "status:\t\tsupported\n");
3160 len += sprintf(p + len, "lcd:\t\t%s\n", enabled(status, 0));
3161 len += sprintf(p + len, "crt:\t\t%s\n", enabled(status, 1));
3162 if (video_supported == TPACPI_VIDEO_NEW)
3163 len += sprintf(p + len, "dvi:\t\t%s\n", enabled(status, 3));
3164 len += sprintf(p + len, "auto:\t\t%s\n", enabled(autosw, 0));
3165 len += sprintf(p + len, "commands:\tlcd_enable, lcd_disable\n");
3166 len += sprintf(p + len, "commands:\tcrt_enable, crt_disable\n");
3167 if (video_supported == TPACPI_VIDEO_NEW)
3168 len += sprintf(p + len, "commands:\tdvi_enable, dvi_disable\n");
3169 len += sprintf(p + len, "commands:\tauto_enable, auto_disable\n");
3170 len += sprintf(p + len, "commands:\tvideo_switch, expand_toggle\n");
3175 static int video_write(char *buf)
3178 int enable, disable, status;
3181 if (video_supported == TPACPI_VIDEO_NONE)
3187 while ((cmd = next_cmd(&buf))) {
3188 if (strlencmp(cmd, "lcd_enable") == 0) {
3189 enable |= TP_ACPI_VIDEO_S_LCD;
3190 } else if (strlencmp(cmd, "lcd_disable") == 0) {
3191 disable |= TP_ACPI_VIDEO_S_LCD;
3192 } else if (strlencmp(cmd, "crt_enable") == 0) {
3193 enable |= TP_ACPI_VIDEO_S_CRT;
3194 } else if (strlencmp(cmd, "crt_disable") == 0) {
3195 disable |= TP_ACPI_VIDEO_S_CRT;
3196 } else if (video_supported == TPACPI_VIDEO_NEW &&
3197 strlencmp(cmd, "dvi_enable") == 0) {
3198 enable |= TP_ACPI_VIDEO_S_DVI;
3199 } else if (video_supported == TPACPI_VIDEO_NEW &&
3200 strlencmp(cmd, "dvi_disable") == 0) {
3201 disable |= TP_ACPI_VIDEO_S_DVI;
3202 } else if (strlencmp(cmd, "auto_enable") == 0) {
3203 res = video_autosw_set(1);
3206 } else if (strlencmp(cmd, "auto_disable") == 0) {
3207 res = video_autosw_set(0);
3210 } else if (strlencmp(cmd, "video_switch") == 0) {
3211 res = video_outputsw_cycle();
3214 } else if (strlencmp(cmd, "expand_toggle") == 0) {
3215 res = video_expand_toggle();
3222 if (enable || disable) {
3223 status = video_outputsw_get();
3226 res = video_outputsw_set((status & ~disable) | enable);
3234 static struct ibm_struct video_driver_data = {
3237 .write = video_write,
3241 #endif /* CONFIG_THINKPAD_ACPI_VIDEO */
3243 /*************************************************************************
3244 * Light (thinklight) subdriver
3247 TPACPI_HANDLE(lght, root, "\\LGHT"); /* A21e, A2xm/p, T20-22, X20-21 */
3248 TPACPI_HANDLE(ledb, ec, "LEDB"); /* G4x */
3250 static int light_get_status(void)
3254 if (tp_features.light_status) {
3255 if (!acpi_evalf(ec_handle, &status, "KBLT", "d"))
3263 static int light_set_status(int status)
3267 if (tp_features.light) {
3269 rc = acpi_evalf(cmos_handle, NULL, NULL, "vd",
3271 TP_CMOS_THINKLIGHT_ON :
3272 TP_CMOS_THINKLIGHT_OFF);
3274 rc = acpi_evalf(lght_handle, NULL, NULL, "vd",
3277 return (rc)? 0 : -EIO;
3283 static void light_set_status_worker(struct work_struct *work)
3285 struct tpacpi_led_classdev *data =
3286 container_of(work, struct tpacpi_led_classdev, work);
3288 if (likely(tpacpi_lifecycle == TPACPI_LIFE_RUNNING))
3289 light_set_status((data->new_brightness != LED_OFF));
3292 static void light_sysfs_set(struct led_classdev *led_cdev,
3293 enum led_brightness brightness)
3295 struct tpacpi_led_classdev *data =
3296 container_of(led_cdev,
3297 struct tpacpi_led_classdev,
3299 data->new_brightness = brightness;
3300 schedule_work(&data->work);
3303 static enum led_brightness light_sysfs_get(struct led_classdev *led_cdev)
3305 return (light_get_status() == 1)? LED_FULL : LED_OFF;
3308 static struct tpacpi_led_classdev tpacpi_led_thinklight = {
3310 .name = "tpacpi::thinklight",
3311 .brightness_set = &light_sysfs_set,
3312 .brightness_get = &light_sysfs_get,
3316 static int __init light_init(struct ibm_init_struct *iibm)
3320 vdbg_printk(TPACPI_DBG_INIT, "initializing light subdriver\n");
3322 TPACPI_ACPIHANDLE_INIT(ledb);
3323 TPACPI_ACPIHANDLE_INIT(lght);
3324 TPACPI_ACPIHANDLE_INIT(cmos);
3325 INIT_WORK(&tpacpi_led_thinklight.work, light_set_status_worker);
3327 /* light not supported on 570, 600e/x, 770e, 770x, G4x, R30, R31 */
3328 tp_features.light = (cmos_handle || lght_handle) && !ledb_handle;
3330 if (tp_features.light)
3331 /* light status not supported on
3332 570, 600e/x, 770e, 770x, G4x, R30, R31, R32, X20 */
3333 tp_features.light_status =
3334 acpi_evalf(ec_handle, NULL, "KBLT", "qv");
3336 vdbg_printk(TPACPI_DBG_INIT, "light is %s\n",
3337 str_supported(tp_features.light));
3339 if (tp_features.light) {
3340 rc = led_classdev_register(&tpacpi_pdev->dev,
3341 &tpacpi_led_thinklight.led_classdev);
3345 tp_features.light = 0;
3346 tp_features.light_status = 0;
3348 rc = (tp_features.light)? 0 : 1;
3353 static void light_exit(void)
3355 led_classdev_unregister(&tpacpi_led_thinklight.led_classdev);
3356 if (work_pending(&tpacpi_led_thinklight.work))
3357 flush_scheduled_work();
3360 static int light_read(char *p)
3365 if (!tp_features.light) {
3366 len += sprintf(p + len, "status:\t\tnot supported\n");
3367 } else if (!tp_features.light_status) {
3368 len += sprintf(p + len, "status:\t\tunknown\n");
3369 len += sprintf(p + len, "commands:\ton, off\n");
3371 status = light_get_status();
3374 len += sprintf(p + len, "status:\t\t%s\n", onoff(status, 0));
3375 len += sprintf(p + len, "commands:\ton, off\n");
3381 static int light_write(char *buf)
3386 if (!tp_features.light)
3389 while ((cmd = next_cmd(&buf))) {
3390 if (strlencmp(cmd, "on") == 0) {
3392 } else if (strlencmp(cmd, "off") == 0) {
3398 return light_set_status(newstatus);
3401 static struct ibm_struct light_driver_data = {
3404 .write = light_write,
3408 /*************************************************************************
3412 #ifdef CONFIG_THINKPAD_ACPI_DOCK
3414 static void dock_notify(struct ibm_struct *ibm, u32 event);
3415 static int dock_read(char *p);
3416 static int dock_write(char *buf);
3418 TPACPI_HANDLE(dock, root, "\\_SB.GDCK", /* X30, X31, X40 */
3419 "\\_SB.PCI0.DOCK", /* 600e/x,770e,770x,A2xm/p,T20-22,X20-21 */
3420 "\\_SB.PCI0.PCI1.DOCK", /* all others */
3421 "\\_SB.PCI.ISA.SLCE", /* 570 */
3422 ); /* A21e,G4x,R30,R31,R32,R40,R40e,R50e */
3424 /* don't list other alternatives as we install a notify handler on the 570 */
3425 TPACPI_HANDLE(pci, root, "\\_SB.PCI"); /* 570 */
3427 static const struct acpi_device_id ibm_pci_device_ids[] = {
3428 {PCI_ROOT_HID_STRING, 0},
3432 static struct tp_acpi_drv_struct ibm_dock_acpidriver[2] = {
3434 .notify = dock_notify,
3435 .handle = &dock_handle,
3436 .type = ACPI_SYSTEM_NOTIFY,
3439 /* THIS ONE MUST NEVER BE USED FOR DRIVER AUTOLOADING.
3440 * We just use it to get notifications of dock hotplug
3441 * in very old thinkpads */
3442 .hid = ibm_pci_device_ids,
3443 .notify = dock_notify,
3444 .handle = &pci_handle,
3445 .type = ACPI_SYSTEM_NOTIFY,
3449 static struct ibm_struct dock_driver_data[2] = {
3453 .write = dock_write,
3454 .acpi = &ibm_dock_acpidriver[0],
3458 .acpi = &ibm_dock_acpidriver[1],
3462 #define dock_docked() (_sta(dock_handle) & 1)
3464 static int __init dock_init(struct ibm_init_struct *iibm)
3466 vdbg_printk(TPACPI_DBG_INIT, "initializing dock subdriver\n");
3468 TPACPI_ACPIHANDLE_INIT(dock);
3470 vdbg_printk(TPACPI_DBG_INIT, "dock is %s\n",
3471 str_supported(dock_handle != NULL));
3473 return (dock_handle)? 0 : 1;
3476 static int __init dock_init2(struct ibm_init_struct *iibm)
3480 vdbg_printk(TPACPI_DBG_INIT, "initializing dock subdriver part 2\n");
3482 if (dock_driver_data[0].flags.acpi_driver_registered &&
3483 dock_driver_data[0].flags.acpi_notify_installed) {
3484 TPACPI_ACPIHANDLE_INIT(pci);
3485 dock2_needed = (pci_handle != NULL);
3486 vdbg_printk(TPACPI_DBG_INIT,
3487 "dock PCI handler for the TP 570 is %s\n",
3488 str_supported(dock2_needed));
3490 vdbg_printk(TPACPI_DBG_INIT,
3491 "dock subdriver part 2 not required\n");
3495 return (dock2_needed)? 0 : 1;
3498 static void dock_notify(struct ibm_struct *ibm, u32 event)
3500 int docked = dock_docked();
3501 int pci = ibm->acpi->hid && ibm->acpi->device &&
3502 acpi_match_device_ids(ibm->acpi->device, ibm_pci_device_ids);
3505 if (event == 1 && !pci) /* 570 */
3506 data = 1; /* button */
3507 else if (event == 1 && pci) /* 570 */
3508 data = 3; /* dock */
3509 else if (event == 3 && docked)
3510 data = 1; /* button */
3511 else if (event == 3 && !docked)
3512 data = 2; /* undock */
3513 else if (event == 0 && docked)
3514 data = 3; /* dock */
3516 printk(TPACPI_ERR "unknown dock event %d, status %d\n",
3517 event, _sta(dock_handle));
3518 data = 0; /* unknown */
3520 acpi_bus_generate_proc_event(ibm->acpi->device, event, data);
3521 acpi_bus_generate_netlink_event(ibm->acpi->device->pnp.device_class,
3522 ibm->acpi->device->dev.bus_id,
3526 static int dock_read(char *p)
3529 int docked = dock_docked();
3532 len += sprintf(p + len, "status:\t\tnot supported\n");
3534 len += sprintf(p + len, "status:\t\tundocked\n");
3536 len += sprintf(p + len, "status:\t\tdocked\n");
3537 len += sprintf(p + len, "commands:\tdock, undock\n");
3543 static int dock_write(char *buf)
3550 while ((cmd = next_cmd(&buf))) {
3551 if (strlencmp(cmd, "undock") == 0) {
3552 if (!acpi_evalf(dock_handle, NULL, "_DCK", "vd", 0) ||
3553 !acpi_evalf(dock_handle, NULL, "_EJ0", "vd", 1))
3555 } else if (strlencmp(cmd, "dock") == 0) {
3556 if (!acpi_evalf(dock_handle, NULL, "_DCK", "vd", 1))
3565 #endif /* CONFIG_THINKPAD_ACPI_DOCK */
3567 /*************************************************************************
3571 #ifdef CONFIG_THINKPAD_ACPI_BAY
3573 TPACPI_HANDLE(bay, root, "\\_SB.PCI.IDE.SECN.MAST", /* 570 */
3574 "\\_SB.PCI0.IDE0.IDES.IDSM", /* 600e/x, 770e, 770x */
3575 "\\_SB.PCI0.SATA.SCND.MSTR", /* T60, X60, Z60 */
3576 "\\_SB.PCI0.IDE0.SCND.MSTR", /* all others */
3577 ); /* A21e, R30, R31 */
3578 TPACPI_HANDLE(bay_ej, bay, "_EJ3", /* 600e/x, A2xm/p, A3x */
3579 "_EJ0", /* all others */
3580 ); /* 570,A21e,G4x,R30,R31,R32,R40e,R50e */
3581 TPACPI_HANDLE(bay2, root, "\\_SB.PCI0.IDE0.PRIM.SLAV", /* A3x, R32 */
3582 "\\_SB.PCI0.IDE0.IDEP.IDPS", /* 600e/x, 770e, 770x */
3584 TPACPI_HANDLE(bay2_ej, bay2, "_EJ3", /* 600e/x, 770e, A3x */
3588 static int __init bay_init(struct ibm_init_struct *iibm)
3590 vdbg_printk(TPACPI_DBG_INIT, "initializing bay subdriver\n");
3592 TPACPI_ACPIHANDLE_INIT(bay);
3594 TPACPI_ACPIHANDLE_INIT(bay_ej);
3595 TPACPI_ACPIHANDLE_INIT(bay2);
3597 TPACPI_ACPIHANDLE_INIT(bay2_ej);
3599 tp_features.bay_status = bay_handle &&
3600 acpi_evalf(bay_handle, NULL, "_STA", "qv");
3601 tp_features.bay_status2 = bay2_handle &&
3602 acpi_evalf(bay2_handle, NULL, "_STA", "qv");
3604 tp_features.bay_eject = bay_handle && bay_ej_handle &&
3605 (strlencmp(bay_ej_path, "_EJ0") == 0 || experimental);
3606 tp_features.bay_eject2 = bay2_handle && bay2_ej_handle &&
3607 (strlencmp(bay2_ej_path, "_EJ0") == 0 || experimental);
3609 vdbg_printk(TPACPI_DBG_INIT,
3610 "bay 1: status %s, eject %s; bay 2: status %s, eject %s\n",
3611 str_supported(tp_features.bay_status),
3612 str_supported(tp_features.bay_eject),
3613 str_supported(tp_features.bay_status2),
3614 str_supported(tp_features.bay_eject2));
3616 return (tp_features.bay_status || tp_features.bay_eject ||
3617 tp_features.bay_status2 || tp_features.bay_eject2)? 0 : 1;
3620 static void bay_notify(struct ibm_struct *ibm, u32 event)
3622 acpi_bus_generate_proc_event(ibm->acpi->device, event, 0);
3623 acpi_bus_generate_netlink_event(ibm->acpi->device->pnp.device_class,
3624 ibm->acpi->device->dev.bus_id,
3628 #define bay_occupied(b) (_sta(b##_handle) & 1)
3630 static int bay_read(char *p)
3633 int occupied = bay_occupied(bay);
3634 int occupied2 = bay_occupied(bay2);
3637 len += sprintf(p + len, "status:\t\t%s\n",
3638 tp_features.bay_status ?
3639 (occupied ? "occupied" : "unoccupied") :
3641 if (tp_features.bay_status2)
3642 len += sprintf(p + len, "status2:\t%s\n", occupied2 ?
3643 "occupied" : "unoccupied");
3645 eject = tp_features.bay_eject && occupied;
3646 eject2 = tp_features.bay_eject2 && occupied2;
3648 if (eject && eject2)
3649 len += sprintf(p + len, "commands:\teject, eject2\n");
3651 len += sprintf(p + len, "commands:\teject\n");
3653 len += sprintf(p + len, "commands:\teject2\n");
3658 static int bay_write(char *buf)
3662 if (!tp_features.bay_eject && !tp_features.bay_eject2)
3665 while ((cmd = next_cmd(&buf))) {
3666 if (tp_features.bay_eject && strlencmp(cmd, "eject") == 0) {
3667 if (!acpi_evalf(bay_ej_handle, NULL, NULL, "vd", 1))
3669 } else if (tp_features.bay_eject2 &&
3670 strlencmp(cmd, "eject2") == 0) {
3671 if (!acpi_evalf(bay2_ej_handle, NULL, NULL, "vd", 1))
3680 static struct tp_acpi_drv_struct ibm_bay_acpidriver = {
3681 .notify = bay_notify,
3682 .handle = &bay_handle,
3683 .type = ACPI_SYSTEM_NOTIFY,
3686 static struct ibm_struct bay_driver_data = {
3690 .acpi = &ibm_bay_acpidriver,
3693 #endif /* CONFIG_THINKPAD_ACPI_BAY */
3695 /*************************************************************************
3699 /* sysfs cmos_command -------------------------------------------------- */
3700 static ssize_t cmos_command_store(struct device *dev,
3701 struct device_attribute *attr,
3702 const char *buf, size_t count)
3704 unsigned long cmos_cmd;
3707 if (parse_strtoul(buf, 21, &cmos_cmd))
3710 res = issue_thinkpad_cmos_command(cmos_cmd);
3711 return (res)? res : count;
3714 static struct device_attribute dev_attr_cmos_command =
3715 __ATTR(cmos_command, S_IWUSR, NULL, cmos_command_store);
3717 /* --------------------------------------------------------------------- */
3719 static int __init cmos_init(struct ibm_init_struct *iibm)
3723 vdbg_printk(TPACPI_DBG_INIT,
3724 "initializing cmos commands subdriver\n");
3726 TPACPI_ACPIHANDLE_INIT(cmos);
3728 vdbg_printk(TPACPI_DBG_INIT, "cmos commands are %s\n",
3729 str_supported(cmos_handle != NULL));
3731 res = device_create_file(&tpacpi_pdev->dev, &dev_attr_cmos_command);
3735 return (cmos_handle)? 0 : 1;
3738 static void cmos_exit(void)
3740 device_remove_file(&tpacpi_pdev->dev, &dev_attr_cmos_command);
3743 static int cmos_read(char *p)
3747 /* cmos not supported on 570, 600e/x, 770e, 770x, A21e, A2xm/p,
3748 R30, R31, T20-22, X20-21 */
3750 len += sprintf(p + len, "status:\t\tnot supported\n");
3752 len += sprintf(p + len, "status:\t\tsupported\n");
3753 len += sprintf(p + len, "commands:\t<cmd> (<cmd> is 0-21)\n");
3759 static int cmos_write(char *buf)
3764 while ((cmd = next_cmd(&buf))) {
3765 if (sscanf(cmd, "%u", &cmos_cmd) == 1 &&
3766 cmos_cmd >= 0 && cmos_cmd <= 21) {
3771 res = issue_thinkpad_cmos_command(cmos_cmd);
3779 static struct ibm_struct cmos_driver_data = {
3782 .write = cmos_write,
3786 /*************************************************************************
3790 enum led_access_mode {
3791 TPACPI_LED_NONE = 0,
3792 TPACPI_LED_570, /* 570 */
3793 TPACPI_LED_OLD, /* 600e/x, 770e, 770x, A21e, A2xm/p, T20-22, X20-21 */
3794 TPACPI_LED_NEW, /* all others */
3797 enum { /* For TPACPI_LED_OLD */
3798 TPACPI_LED_EC_HLCL = 0x0c, /* EC reg to get led to power on */
3799 TPACPI_LED_EC_HLBL = 0x0d, /* EC reg to blink a lit led */
3800 TPACPI_LED_EC_HLMS = 0x0e, /* EC reg to select led to command */
3809 static enum led_access_mode led_supported;
3811 TPACPI_HANDLE(led, ec, "SLED", /* 570 */
3812 "SYSL", /* 600e/x, 770e, 770x, A21e, A2xm/p, */
3813 /* T20-22, X20-21 */
3814 "LED", /* all others */
3817 static int led_get_status(unsigned int led)
3821 switch (led_supported) {
3822 case TPACPI_LED_570:
3823 if (!acpi_evalf(ec_handle,
3824 &status, "GLED", "dd", 1 << led))
3826 return (status == 0)?
3838 static int led_set_status(unsigned int led, enum led_status_t ledstatus)
3840 /* off, on, blink. Index is led_status_t */
3841 static const int const led_sled_arg1[] = { 0, 1, 3 };
3842 static const int const led_exp_hlbl[] = { 0, 0, 1 }; /* led# * */
3843 static const int const led_exp_hlcl[] = { 0, 1, 1 }; /* led# * */
3844 static const int const led_led_arg1[] = { 0, 0x80, 0xc0 };
3848 switch (led_supported) {
3849 case TPACPI_LED_570:
3852 if (!acpi_evalf(led_handle, NULL, NULL, "vdd",
3853 led, led_sled_arg1[ledstatus]))
3856 case TPACPI_LED_OLD:
3857 /* 600e/x, 770e, 770x, A21e, A2xm/p, T20-22, X20 */
3859 rc = ec_write(TPACPI_LED_EC_HLMS, led);
3861 rc = ec_write(TPACPI_LED_EC_HLBL,
3862 led * led_exp_hlbl[ledstatus]);
3864 rc = ec_write(TPACPI_LED_EC_HLCL,
3865 led * led_exp_hlcl[ledstatus]);
3867 case TPACPI_LED_NEW:
3869 if (!acpi_evalf(led_handle, NULL, NULL, "vdd",
3870 led, led_led_arg1[ledstatus]))
3880 static int __init led_init(struct ibm_init_struct *iibm)
3882 vdbg_printk(TPACPI_DBG_INIT, "initializing LED subdriver\n");
3884 TPACPI_ACPIHANDLE_INIT(led);
3887 /* led not supported on R30, R31 */
3888 led_supported = TPACPI_LED_NONE;
3889 else if (strlencmp(led_path, "SLED") == 0)
3891 led_supported = TPACPI_LED_570;
3892 else if (strlencmp(led_path, "SYSL") == 0)
3893 /* 600e/x, 770e, 770x, A21e, A2xm/p, T20-22, X20-21 */
3894 led_supported = TPACPI_LED_OLD;
3897 led_supported = TPACPI_LED_NEW;
3899 vdbg_printk(TPACPI_DBG_INIT, "LED commands are %s, mode %d\n",
3900 str_supported(led_supported), led_supported);
3902 return (led_supported != TPACPI_LED_NONE)? 0 : 1;
3905 #define str_led_status(s) \
3906 ((s) == TPACPI_LED_OFF ? "off" : \
3907 ((s) == TPACPI_LED_ON ? "on" : "blinking"))
3909 static int led_read(char *p)
3913 if (!led_supported) {
3914 len += sprintf(p + len, "status:\t\tnot supported\n");
3917 len += sprintf(p + len, "status:\t\tsupported\n");
3919 if (led_supported == TPACPI_LED_570) {
3922 for (i = 0; i < 8; i++) {
3923 status = led_get_status(i);
3926 len += sprintf(p + len, "%d:\t\t%s\n",
3927 i, str_led_status(status));
3931 len += sprintf(p + len, "commands:\t"
3932 "<led> on, <led> off, <led> blink (<led> is 0-7)\n");
3937 static int led_write(char *buf)
3941 enum led_status_t s;
3946 while ((cmd = next_cmd(&buf))) {
3947 if (sscanf(cmd, "%d", &led) != 1 || led < 0 || led > 7)
3950 if (strstr(cmd, "off")) {
3952 } else if (strstr(cmd, "on")) {
3954 } else if (strstr(cmd, "blink")) {
3955 s = TPACPI_LED_BLINK;
3960 rc = led_set_status(led, s);
3968 static struct ibm_struct led_driver_data = {
3974 /*************************************************************************
3978 TPACPI_HANDLE(beep, ec, "BEEP"); /* all except R30, R31 */
3980 static int __init beep_init(struct ibm_init_struct *iibm)
3982 vdbg_printk(TPACPI_DBG_INIT, "initializing beep subdriver\n");
3984 TPACPI_ACPIHANDLE_INIT(beep);
3986 vdbg_printk(TPACPI_DBG_INIT, "beep is %s\n",
3987 str_supported(beep_handle != NULL));
3989 return (beep_handle)? 0 : 1;
3992 static int beep_read(char *p)
3997 len += sprintf(p + len, "status:\t\tnot supported\n");
3999 len += sprintf(p + len, "status:\t\tsupported\n");
4000 len += sprintf(p + len, "commands:\t<cmd> (<cmd> is 0-17)\n");
4006 static int beep_write(char *buf)
4014 while ((cmd = next_cmd(&buf))) {
4015 if (sscanf(cmd, "%u", &beep_cmd) == 1 &&
4016 beep_cmd >= 0 && beep_cmd <= 17) {
4020 if (!acpi_evalf(beep_handle, NULL, NULL, "vdd", beep_cmd, 0))
4027 static struct ibm_struct beep_driver_data = {
4030 .write = beep_write,
4033 /*************************************************************************
4037 enum thermal_access_mode {
4038 TPACPI_THERMAL_NONE = 0, /* No thermal support */
4039 TPACPI_THERMAL_ACPI_TMP07, /* Use ACPI TMP0-7 */
4040 TPACPI_THERMAL_ACPI_UPDT, /* Use ACPI TMP0-7 with UPDT */
4041 TPACPI_THERMAL_TPEC_8, /* Use ACPI EC regs, 8 sensors */
4042 TPACPI_THERMAL_TPEC_16, /* Use ACPI EC regs, 16 sensors */
4045 enum { /* TPACPI_THERMAL_TPEC_* */
4046 TP_EC_THERMAL_TMP0 = 0x78, /* ACPI EC regs TMP 0..7 */
4047 TP_EC_THERMAL_TMP8 = 0xC0, /* ACPI EC regs TMP 8..15 */
4048 TP_EC_THERMAL_TMP_NA = -128, /* ACPI EC sensor not available */
4051 #define TPACPI_MAX_THERMAL_SENSORS 16 /* Max thermal sensors supported */
4052 struct ibm_thermal_sensors_struct {
4053 s32 temp[TPACPI_MAX_THERMAL_SENSORS];
4056 static enum thermal_access_mode thermal_read_mode;
4058 /* idx is zero-based */
4059 static int thermal_get_sensor(int idx, s32 *value)
4065 t = TP_EC_THERMAL_TMP0;
4067 switch (thermal_read_mode) {
4068 #if TPACPI_MAX_THERMAL_SENSORS >= 16
4069 case TPACPI_THERMAL_TPEC_16:
4070 if (idx >= 8 && idx <= 15) {
4071 t = TP_EC_THERMAL_TMP8;
4076 case TPACPI_THERMAL_TPEC_8:
4078 if (!acpi_ec_read(t + idx, &tmp))
4080 *value = tmp * 1000;
4085 case TPACPI_THERMAL_ACPI_UPDT:
4087 snprintf(tmpi, sizeof(tmpi), "TMP%c", '0' + idx);
4088 if (!acpi_evalf(ec_handle, NULL, "UPDT", "v"))
4090 if (!acpi_evalf(ec_handle, &t, tmpi, "d"))
4092 *value = (t - 2732) * 100;
4097 case TPACPI_THERMAL_ACPI_TMP07:
4099 snprintf(tmpi, sizeof(tmpi), "TMP%c", '0' + idx);
4100 if (!acpi_evalf(ec_handle, &t, tmpi, "d"))
4102 if (t > 127 || t < -127)
4103 t = TP_EC_THERMAL_TMP_NA;
4109 case TPACPI_THERMAL_NONE:
4117 static int thermal_get_sensors(struct ibm_thermal_sensors_struct *s)
4128 if (thermal_read_mode == TPACPI_THERMAL_TPEC_16)
4131 for (i = 0 ; i < n; i++) {
4132 res = thermal_get_sensor(i, &s->temp[i]);
4140 /* sysfs temp##_input -------------------------------------------------- */
4142 static ssize_t thermal_temp_input_show(struct device *dev,
4143 struct device_attribute *attr,
4146 struct sensor_device_attribute *sensor_attr =
4147 to_sensor_dev_attr(attr);
4148 int idx = sensor_attr->index;
4152 res = thermal_get_sensor(idx, &value);
4155 if (value == TP_EC_THERMAL_TMP_NA * 1000)
4158 return snprintf(buf, PAGE_SIZE, "%d\n", value);
4161 #define THERMAL_SENSOR_ATTR_TEMP(_idxA, _idxB) \
4162 SENSOR_ATTR(temp##_idxA##_input, S_IRUGO, \
4163 thermal_temp_input_show, NULL, _idxB)
4165 static struct sensor_device_attribute sensor_dev_attr_thermal_temp_input[] = {
4166 THERMAL_SENSOR_ATTR_TEMP(1, 0),
4167 THERMAL_SENSOR_ATTR_TEMP(2, 1),
4168 THERMAL_SENSOR_ATTR_TEMP(3, 2),
4169 THERMAL_SENSOR_ATTR_TEMP(4, 3),
4170 THERMAL_SENSOR_ATTR_TEMP(5, 4),
4171 THERMAL_SENSOR_ATTR_TEMP(6, 5),
4172 THERMAL_SENSOR_ATTR_TEMP(7, 6),
4173 THERMAL_SENSOR_ATTR_TEMP(8, 7),
4174 THERMAL_SENSOR_ATTR_TEMP(9, 8),
4175 THERMAL_SENSOR_ATTR_TEMP(10, 9),
4176 THERMAL_SENSOR_ATTR_TEMP(11, 10),
4177 THERMAL_SENSOR_ATTR_TEMP(12, 11),
4178 THERMAL_SENSOR_ATTR_TEMP(13, 12),
4179 THERMAL_SENSOR_ATTR_TEMP(14, 13),
4180 THERMAL_SENSOR_ATTR_TEMP(15, 14),
4181 THERMAL_SENSOR_ATTR_TEMP(16, 15),
4184 #define THERMAL_ATTRS(X) \
4185 &sensor_dev_attr_thermal_temp_input[X].dev_attr.attr
4187 static struct attribute *thermal_temp_input_attr[] = {
4207 static const struct attribute_group thermal_temp_input16_group = {
4208 .attrs = thermal_temp_input_attr
4211 static const struct attribute_group thermal_temp_input8_group = {
4212 .attrs = &thermal_temp_input_attr[8]
4215 #undef THERMAL_SENSOR_ATTR_TEMP
4216 #undef THERMAL_ATTRS
4218 /* --------------------------------------------------------------------- */
4220 static int __init thermal_init(struct ibm_init_struct *iibm)
4227 vdbg_printk(TPACPI_DBG_INIT, "initializing thermal subdriver\n");
4229 acpi_tmp7 = acpi_evalf(ec_handle, NULL, "TMP7", "qv");
4231 if (thinkpad_id.ec_model) {
4233 * Direct EC access mode: sensors at registers
4234 * 0x78-0x7F, 0xC0-0xC7. Registers return 0x00 for
4235 * non-implemented, thermal sensors return 0x80 when
4240 for (i = 0; i < 8; i++) {
4241 if (acpi_ec_read(TP_EC_THERMAL_TMP0 + i, &t)) {
4247 if (acpi_ec_read(TP_EC_THERMAL_TMP8 + i, &t)) {
4255 /* This is sheer paranoia, but we handle it anyway */
4258 "ThinkPad ACPI EC access misbehaving, "
4259 "falling back to ACPI TMPx access "
4261 thermal_read_mode = TPACPI_THERMAL_ACPI_TMP07;
4264 "ThinkPad ACPI EC access misbehaving, "
4265 "disabling thermal sensors access\n");
4266 thermal_read_mode = TPACPI_THERMAL_NONE;
4271 TPACPI_THERMAL_TPEC_16 : TPACPI_THERMAL_TPEC_8;
4273 } else if (acpi_tmp7) {
4274 if (acpi_evalf(ec_handle, NULL, "UPDT", "qv")) {
4275 /* 600e/x, 770e, 770x */
4276 thermal_read_mode = TPACPI_THERMAL_ACPI_UPDT;
4278 /* Standard ACPI TMPx access, max 8 sensors */
4279 thermal_read_mode = TPACPI_THERMAL_ACPI_TMP07;
4282 /* temperatures not supported on 570, G4x, R30, R31, R32 */
4283 thermal_read_mode = TPACPI_THERMAL_NONE;
4286 vdbg_printk(TPACPI_DBG_INIT, "thermal is %s, mode %d\n",
4287 str_supported(thermal_read_mode != TPACPI_THERMAL_NONE),
4290 switch (thermal_read_mode) {
4291 case TPACPI_THERMAL_TPEC_16:
4292 res = sysfs_create_group(&tpacpi_sensors_pdev->dev.kobj,
4293 &thermal_temp_input16_group);
4297 case TPACPI_THERMAL_TPEC_8:
4298 case TPACPI_THERMAL_ACPI_TMP07:
4299 case TPACPI_THERMAL_ACPI_UPDT:
4300 res = sysfs_create_group(&tpacpi_sensors_pdev->dev.kobj,
4301 &thermal_temp_input8_group);
4305 case TPACPI_THERMAL_NONE:
4313 static void thermal_exit(void)
4315 switch (thermal_read_mode) {
4316 case TPACPI_THERMAL_TPEC_16:
4317 sysfs_remove_group(&tpacpi_sensors_pdev->dev.kobj,
4318 &thermal_temp_input16_group);
4320 case TPACPI_THERMAL_TPEC_8:
4321 case TPACPI_THERMAL_ACPI_TMP07:
4322 case TPACPI_THERMAL_ACPI_UPDT:
4323 sysfs_remove_group(&tpacpi_sensors_pdev->dev.kobj,
4324 &thermal_temp_input16_group);
4326 case TPACPI_THERMAL_NONE:
4332 static int thermal_read(char *p)
4336 struct ibm_thermal_sensors_struct t;
4338 n = thermal_get_sensors(&t);
4339 if (unlikely(n < 0))
4342 len += sprintf(p + len, "temperatures:\t");
4345 for (i = 0; i < (n - 1); i++)
4346 len += sprintf(p + len, "%d ", t.temp[i] / 1000);
4347 len += sprintf(p + len, "%d\n", t.temp[i] / 1000);
4349 len += sprintf(p + len, "not supported\n");
4354 static struct ibm_struct thermal_driver_data = {
4356 .read = thermal_read,
4357 .exit = thermal_exit,
4360 /*************************************************************************
4364 static u8 ecdump_regs[256];
4366 static int ecdump_read(char *p)
4372 len += sprintf(p + len, "EC "
4373 " +00 +01 +02 +03 +04 +05 +06 +07"
4374 " +08 +09 +0a +0b +0c +0d +0e +0f\n");
4375 for (i = 0; i < 256; i += 16) {
4376 len += sprintf(p + len, "EC 0x%02x:", i);
4377 for (j = 0; j < 16; j++) {
4378 if (!acpi_ec_read(i + j, &v))
4380 if (v != ecdump_regs[i + j])
4381 len += sprintf(p + len, " *%02x", v);
4383 len += sprintf(p + len, " %02x", v);
4384 ecdump_regs[i + j] = v;
4386 len += sprintf(p + len, "\n");
4391 /* These are way too dangerous to advertise openly... */
4393 len += sprintf(p + len, "commands:\t0x<offset> 0x<value>"
4394 " (<offset> is 00-ff, <value> is 00-ff)\n");
4395 len += sprintf(p + len, "commands:\t0x<offset> <value> "
4396 " (<offset> is 00-ff, <value> is 0-255)\n");
4401 static int ecdump_write(char *buf)
4406 while ((cmd = next_cmd(&buf))) {
4407 if (sscanf(cmd, "0x%x 0x%x", &i, &v) == 2) {
4409 } else if (sscanf(cmd, "0x%x %u", &i, &v) == 2) {
4413 if (i >= 0 && i < 256 && v >= 0 && v < 256) {
4414 if (!acpi_ec_write(i, v))
4423 static struct ibm_struct ecdump_driver_data = {
4425 .read = ecdump_read,
4426 .write = ecdump_write,
4427 .flags.experimental = 1,
4430 /*************************************************************************
4431 * Backlight/brightness subdriver
4434 #define TPACPI_BACKLIGHT_DEV_NAME "thinkpad_screen"
4437 TP_EC_BACKLIGHT = 0x31,
4439 /* TP_EC_BACKLIGHT bitmasks */
4440 TP_EC_BACKLIGHT_LVLMSK = 0x1F,
4441 TP_EC_BACKLIGHT_CMDMSK = 0xE0,
4442 TP_EC_BACKLIGHT_MAPSW = 0x20,
4445 static struct backlight_device *ibm_backlight_device;
4446 static int brightness_mode;
4447 static unsigned int brightness_enable = 2; /* 2 = auto, 0 = no, 1 = yes */
4449 static struct mutex brightness_mutex;
4452 * ThinkPads can read brightness from two places: EC 0x31, or
4453 * CMOS NVRAM byte 0x5E, bits 0-3.
4455 * EC 0x31 has the following layout
4456 * Bit 7: unknown function
4457 * Bit 6: unknown function
4458 * Bit 5: Z: honour scale changes, NZ: ignore scale changes
4459 * Bit 4: must be set to zero to avoid problems
4460 * Bit 3-0: backlight brightness level
4462 * brightness_get_raw returns status data in the EC 0x31 layout
4464 static int brightness_get_raw(int *status)
4466 u8 lec = 0, lcmos = 0, level = 0;
4468 if (brightness_mode & 1) {
4469 if (!acpi_ec_read(TP_EC_BACKLIGHT, &lec))
4471 level = lec & TP_EC_BACKLIGHT_LVLMSK;
4473 if (brightness_mode & 2) {
4474 lcmos = (nvram_read_byte(TP_NVRAM_ADDR_BRIGHTNESS)
4475 & TP_NVRAM_MASK_LEVEL_BRIGHTNESS)
4476 >> TP_NVRAM_POS_LEVEL_BRIGHTNESS;
4477 lcmos &= (tp_features.bright_16levels)? 0x0f : 0x07;
4481 if (brightness_mode == 3) {
4482 *status = lec; /* Prefer EC, CMOS is just a backing store */
4483 lec &= TP_EC_BACKLIGHT_LVLMSK;
4485 tp_warned.bright_cmos_ec_unsync = 0;
4487 if (!tp_warned.bright_cmos_ec_unsync) {
4489 "CMOS NVRAM (%u) and EC (%u) do not "
4490 "agree on display brightness level\n",
4491 (unsigned int) lcmos,
4492 (unsigned int) lec);
4493 tp_warned.bright_cmos_ec_unsync = 1;
4504 /* May return EINTR which can always be mapped to ERESTARTSYS */
4505 static int brightness_set(int value)
4507 int cmos_cmd, inc, i, res;
4511 if (value > ((tp_features.bright_16levels)? 15 : 7) ||
4515 res = mutex_lock_interruptible(&brightness_mutex);
4519 res = brightness_get_raw(¤t_value);
4523 command_bits = current_value & TP_EC_BACKLIGHT_CMDMSK;
4524 current_value &= TP_EC_BACKLIGHT_LVLMSK;
4526 cmos_cmd = value > current_value ?
4527 TP_CMOS_BRIGHTNESS_UP :
4528 TP_CMOS_BRIGHTNESS_DOWN;
4529 inc = (value > current_value)? 1 : -1;
4532 for (i = current_value; i != value; i += inc) {
4533 if ((brightness_mode & 2) &&
4534 issue_thinkpad_cmos_command(cmos_cmd)) {
4538 if ((brightness_mode & 1) &&
4539 !acpi_ec_write(TP_EC_BACKLIGHT,
4540 (i + inc) | command_bits)) {
4547 mutex_unlock(&brightness_mutex);
4551 /* sysfs backlight class ----------------------------------------------- */
4553 static int brightness_update_status(struct backlight_device *bd)
4555 /* it is the backlight class's job (caller) to handle
4556 * EINTR and other errors properly */
4557 return brightness_set(
4558 (bd->props.fb_blank == FB_BLANK_UNBLANK &&
4559 bd->props.power == FB_BLANK_UNBLANK) ?
4560 bd->props.brightness : 0);
4563 static int brightness_get(struct backlight_device *bd)
4567 res = brightness_get_raw(&status);
4569 return 0; /* FIXME: teach backlight about error handling */
4571 return status & TP_EC_BACKLIGHT_LVLMSK;
4574 static struct backlight_ops ibm_backlight_data = {
4575 .get_brightness = brightness_get,
4576 .update_status = brightness_update_status,
4579 /* --------------------------------------------------------------------- */
4581 static int __init brightness_init(struct ibm_init_struct *iibm)
4585 vdbg_printk(TPACPI_DBG_INIT, "initializing brightness subdriver\n");
4587 mutex_init(&brightness_mutex);
4590 * We always attempt to detect acpi support, so as to switch
4591 * Lenovo Vista BIOS to ACPI brightness mode even if we are not
4592 * going to publish a backlight interface
4594 b = tpacpi_check_std_acpi_brightness_support();
4596 if (thinkpad_id.vendor == PCI_VENDOR_ID_LENOVO) {
4597 printk(TPACPI_NOTICE
4598 "Lenovo BIOS switched to ACPI backlight "
4601 if (brightness_enable > 1) {
4602 printk(TPACPI_NOTICE
4603 "standard ACPI backlight interface "
4604 "available, not loading native one...\n");
4609 if (!brightness_enable) {
4610 dbg_printk(TPACPI_DBG_INIT,
4611 "brightness support disabled by "
4612 "module parameter\n");
4618 "Unsupported brightness interface, "
4619 "please contact %s\n", TPACPI_MAIL);
4623 tp_features.bright_16levels = 1;
4625 if (!brightness_mode) {
4626 if (thinkpad_id.vendor == PCI_VENDOR_ID_LENOVO)
4627 brightness_mode = 2;
4629 brightness_mode = 3;
4631 dbg_printk(TPACPI_DBG_INIT, "selected brightness_mode=%d\n",
4635 if (brightness_mode > 3)
4638 if (brightness_get_raw(&b) < 0)
4641 if (tp_features.bright_16levels)
4643 "detected a 16-level brightness capable ThinkPad\n");
4645 ibm_backlight_device = backlight_device_register(
4646 TPACPI_BACKLIGHT_DEV_NAME, NULL, NULL,
4647 &ibm_backlight_data);
4648 if (IS_ERR(ibm_backlight_device)) {
4649 printk(TPACPI_ERR "Could not register backlight device\n");
4650 return PTR_ERR(ibm_backlight_device);
4652 vdbg_printk(TPACPI_DBG_INIT, "brightness is supported\n");
4654 ibm_backlight_device->props.max_brightness =
4655 (tp_features.bright_16levels)? 15 : 7;
4656 ibm_backlight_device->props.brightness = b & TP_EC_BACKLIGHT_LVLMSK;
4657 backlight_update_status(ibm_backlight_device);
4662 static void brightness_exit(void)
4664 if (ibm_backlight_device) {
4665 vdbg_printk(TPACPI_DBG_EXIT,
4666 "calling backlight_device_unregister()\n");
4667 backlight_device_unregister(ibm_backlight_device);
4668 ibm_backlight_device = NULL;
4672 static int brightness_read(char *p)
4677 level = brightness_get(NULL);
4679 len += sprintf(p + len, "level:\t\tunreadable\n");
4681 len += sprintf(p + len, "level:\t\t%d\n", level);
4682 len += sprintf(p + len, "commands:\tup, down\n");
4683 len += sprintf(p + len, "commands:\tlevel <level>"
4684 " (<level> is 0-%d)\n",
4685 (tp_features.bright_16levels) ? 15 : 7);
4691 static int brightness_write(char *buf)
4696 int max_level = (tp_features.bright_16levels) ? 15 : 7;
4698 level = brightness_get(NULL);
4702 while ((cmd = next_cmd(&buf))) {
4703 if (strlencmp(cmd, "up") == 0) {
4704 if (level < max_level)
4706 } else if (strlencmp(cmd, "down") == 0) {
4709 } else if (sscanf(cmd, "level %d", &level) == 1 &&
4710 level >= 0 && level <= max_level) {
4717 * Now we know what the final level should be, so we try to set it.
4718 * Doing it this way makes the syscall restartable in case of EINTR
4720 rc = brightness_set(level);
4721 return (rc == -EINTR)? ERESTARTSYS : rc;
4724 static struct ibm_struct brightness_driver_data = {
4725 .name = "brightness",
4726 .read = brightness_read,
4727 .write = brightness_write,
4728 .exit = brightness_exit,
4731 /*************************************************************************
4735 static int volume_offset = 0x30;
4737 static int volume_read(char *p)
4742 if (!acpi_ec_read(volume_offset, &level)) {
4743 len += sprintf(p + len, "level:\t\tunreadable\n");
4745 len += sprintf(p + len, "level:\t\t%d\n", level & 0xf);
4746 len += sprintf(p + len, "mute:\t\t%s\n", onoff(level, 6));
4747 len += sprintf(p + len, "commands:\tup, down, mute\n");
4748 len += sprintf(p + len, "commands:\tlevel <level>"
4749 " (<level> is 0-15)\n");
4755 static int volume_write(char *buf)
4757 int cmos_cmd, inc, i;
4759 int new_level, new_mute;
4762 while ((cmd = next_cmd(&buf))) {
4763 if (!acpi_ec_read(volume_offset, &level))
4765 new_mute = mute = level & 0x40;
4766 new_level = level = level & 0xf;
4768 if (strlencmp(cmd, "up") == 0) {
4772 new_level = level == 15 ? 15 : level + 1;
4773 } else if (strlencmp(cmd, "down") == 0) {
4777 new_level = level == 0 ? 0 : level - 1;
4778 } else if (sscanf(cmd, "level %d", &new_level) == 1 &&
4779 new_level >= 0 && new_level <= 15) {
4781 } else if (strlencmp(cmd, "mute") == 0) {
4786 if (new_level != level) {
4787 /* mute doesn't change */
4789 cmos_cmd = (new_level > level) ?
4790 TP_CMOS_VOLUME_UP : TP_CMOS_VOLUME_DOWN;
4791 inc = new_level > level ? 1 : -1;
4793 if (mute && (issue_thinkpad_cmos_command(cmos_cmd) ||
4794 !acpi_ec_write(volume_offset, level)))
4797 for (i = level; i != new_level; i += inc)
4798 if (issue_thinkpad_cmos_command(cmos_cmd) ||
4799 !acpi_ec_write(volume_offset, i + inc))
4803 (issue_thinkpad_cmos_command(TP_CMOS_VOLUME_MUTE) ||
4804 !acpi_ec_write(volume_offset, new_level + mute))) {
4809 if (new_mute != mute) {
4810 /* level doesn't change */
4812 cmos_cmd = (new_mute) ?
4813 TP_CMOS_VOLUME_MUTE : TP_CMOS_VOLUME_UP;
4815 if (issue_thinkpad_cmos_command(cmos_cmd) ||
4816 !acpi_ec_write(volume_offset, level + new_mute))
4824 static struct ibm_struct volume_driver_data = {
4826 .read = volume_read,
4827 .write = volume_write,
4830 /*************************************************************************
4837 * TPACPI_FAN_RD_ACPI_GFAN:
4838 * ACPI GFAN method: returns fan level
4840 * see TPACPI_FAN_WR_ACPI_SFAN
4841 * EC 0x2f (HFSP) not available if GFAN exists
4843 * TPACPI_FAN_WR_ACPI_SFAN:
4844 * ACPI SFAN method: sets fan level, 0 (stop) to 7 (max)
4846 * EC 0x2f (HFSP) might be available *for reading*, but do not use
4849 * TPACPI_FAN_WR_TPEC:
4850 * ThinkPad EC register 0x2f (HFSP): fan control loop mode
4851 * Supported on almost all ThinkPads
4853 * Fan speed changes of any sort (including those caused by the
4854 * disengaged mode) are usually done slowly by the firmware as the
4855 * maximum ammount of fan duty cycle change per second seems to be
4858 * Reading is not available if GFAN exists.
4859 * Writing is not available if SFAN exists.
4862 * 7 automatic mode engaged;
4863 * (default operation mode of the ThinkPad)
4864 * fan level is ignored in this mode.
4865 * 6 full speed mode (takes precedence over bit 7);
4866 * not available on all thinkpads. May disable
4867 * the tachometer while the fan controller ramps up
4868 * the speed (which can take up to a few *minutes*).
4869 * Speeds up fan to 100% duty-cycle, which is far above
4870 * the standard RPM levels. It is not impossible that
4871 * it could cause hardware damage.
4872 * 5-3 unused in some models. Extra bits for fan level
4873 * in others, but still useless as all values above
4874 * 7 map to the same speed as level 7 in these models.
4875 * 2-0 fan level (0..7 usually)
4877 * 0x07 = max (set when temperatures critical)
4878 * Some ThinkPads may have other levels, see
4879 * TPACPI_FAN_WR_ACPI_FANS (X31/X40/X41)
4881 * FIRMWARE BUG: on some models, EC 0x2f might not be initialized at
4882 * boot. Apparently the EC does not intialize it, so unless ACPI DSDT
4883 * does so, its initial value is meaningless (0x07).
4885 * For firmware bugs, refer to:
4886 * http://thinkwiki.org/wiki/Embedded_Controller_Firmware#Firmware_Issues
4890 * ThinkPad EC register 0x84 (LSB), 0x85 (MSB):
4891 * Main fan tachometer reading (in RPM)
4893 * This register is present on all ThinkPads with a new-style EC, and
4894 * it is known not to be present on the A21m/e, and T22, as there is
4895 * something else in offset 0x84 according to the ACPI DSDT. Other
4896 * ThinkPads from this same time period (and earlier) probably lack the
4897 * tachometer as well.
4899 * Unfortunately a lot of ThinkPads with new-style ECs but whose firwmare
4900 * was never fixed by IBM to report the EC firmware version string
4901 * probably support the tachometer (like the early X models), so
4902 * detecting it is quite hard. We need more data to know for sure.
4904 * FIRMWARE BUG: always read 0x84 first, otherwise incorrect readings
4907 * FIRMWARE BUG: may go stale while the EC is switching to full speed
4910 * For firmware bugs, refer to:
4911 * http://thinkwiki.org/wiki/Embedded_Controller_Firmware#Firmware_Issues
4913 * TPACPI_FAN_WR_ACPI_FANS:
4914 * ThinkPad X31, X40, X41. Not available in the X60.
4916 * FANS ACPI handle: takes three arguments: low speed, medium speed,
4917 * high speed. ACPI DSDT seems to map these three speeds to levels
4918 * as follows: STOP LOW LOW MED MED HIGH HIGH HIGH HIGH
4919 * (this map is stored on FAN0..FAN8 as "0,1,1,2,2,3,3,3,3")
4921 * The speeds are stored on handles
4922 * (FANA:FAN9), (FANC:FANB), (FANE:FAND).
4924 * There are three default speed sets, acessible as handles:
4925 * FS1L,FS1M,FS1H; FS2L,FS2M,FS2H; FS3L,FS3M,FS3H
4927 * ACPI DSDT switches which set is in use depending on various
4930 * TPACPI_FAN_WR_TPEC is also available and should be used to
4931 * command the fan. The X31/X40/X41 seems to have 8 fan levels,
4932 * but the ACPI tables just mention level 7.
4935 enum { /* Fan control constants */
4936 fan_status_offset = 0x2f, /* EC register 0x2f */
4937 fan_rpm_offset = 0x84, /* EC register 0x84: LSB, 0x85 MSB (RPM)
4938 * 0x84 must be read before 0x85 */
4940 TP_EC_FAN_FULLSPEED = 0x40, /* EC fan mode: full speed */
4941 TP_EC_FAN_AUTO = 0x80, /* EC fan mode: auto fan control */
4943 TPACPI_FAN_LAST_LEVEL = 0x100, /* Use cached last-seen fan level */
4946 enum fan_status_access_mode {
4947 TPACPI_FAN_NONE = 0, /* No fan status or control */
4948 TPACPI_FAN_RD_ACPI_GFAN, /* Use ACPI GFAN */
4949 TPACPI_FAN_RD_TPEC, /* Use ACPI EC regs 0x2f, 0x84-0x85 */
4952 enum fan_control_access_mode {
4953 TPACPI_FAN_WR_NONE = 0, /* No fan control */
4954 TPACPI_FAN_WR_ACPI_SFAN, /* Use ACPI SFAN */
4955 TPACPI_FAN_WR_TPEC, /* Use ACPI EC reg 0x2f */
4956 TPACPI_FAN_WR_ACPI_FANS, /* Use ACPI FANS and EC reg 0x2f */
4959 enum fan_control_commands {
4960 TPACPI_FAN_CMD_SPEED = 0x0001, /* speed command */
4961 TPACPI_FAN_CMD_LEVEL = 0x0002, /* level command */
4962 TPACPI_FAN_CMD_ENABLE = 0x0004, /* enable/disable cmd,
4963 * and also watchdog cmd */
4966 static int fan_control_allowed;
4968 static enum fan_status_access_mode fan_status_access_mode;
4969 static enum fan_control_access_mode fan_control_access_mode;
4970 static enum fan_control_commands fan_control_commands;
4972 static u8 fan_control_initial_status;
4973 static u8 fan_control_desired_level;
4974 static int fan_watchdog_maxinterval;
4976 static struct mutex fan_mutex;
4978 static void fan_watchdog_fire(struct work_struct *ignored);
4979 static DECLARE_DELAYED_WORK(fan_watchdog_task, fan_watchdog_fire);
4981 TPACPI_HANDLE(fans, ec, "FANS"); /* X31, X40, X41 */
4982 TPACPI_HANDLE(gfan, ec, "GFAN", /* 570 */
4983 "\\FSPD", /* 600e/x, 770e, 770x */
4985 TPACPI_HANDLE(sfan, ec, "SFAN", /* 570 */
4986 "JFNS", /* 770x-JL */
4990 * Call with fan_mutex held
4992 static void fan_update_desired_level(u8 status)
4995 (TP_EC_FAN_AUTO | TP_EC_FAN_FULLSPEED)) == 0) {
4997 fan_control_desired_level = 7;
4999 fan_control_desired_level = status;
5003 static int fan_get_status(u8 *status)
5008 * Add TPACPI_FAN_RD_ACPI_FANS ? */
5010 switch (fan_status_access_mode) {
5011 case TPACPI_FAN_RD_ACPI_GFAN:
5012 /* 570, 600e/x, 770e, 770x */
5014 if (unlikely(!acpi_evalf(gfan_handle, &s, NULL, "d")))
5022 case TPACPI_FAN_RD_TPEC:
5023 /* all except 570, 600e/x, 770e, 770x */
5024 if (unlikely(!acpi_ec_read(fan_status_offset, &s)))
5039 static int fan_get_status_safe(u8 *status)
5044 if (mutex_lock_interruptible(&fan_mutex))
5045 return -ERESTARTSYS;
5046 rc = fan_get_status(&s);
5048 fan_update_desired_level(s);
5049 mutex_unlock(&fan_mutex);
5057 static int fan_get_speed(unsigned int *speed)
5061 switch (fan_status_access_mode) {
5062 case TPACPI_FAN_RD_TPEC:
5063 /* all except 570, 600e/x, 770e, 770x */
5064 if (unlikely(!acpi_ec_read(fan_rpm_offset, &lo) ||
5065 !acpi_ec_read(fan_rpm_offset + 1, &hi)))
5069 *speed = (hi << 8) | lo;
5080 static int fan_set_level(int level)
5082 if (!fan_control_allowed)
5085 switch (fan_control_access_mode) {
5086 case TPACPI_FAN_WR_ACPI_SFAN:
5087 if (level >= 0 && level <= 7) {
5088 if (!acpi_evalf(sfan_handle, NULL, NULL, "vd", level))
5094 case TPACPI_FAN_WR_ACPI_FANS:
5095 case TPACPI_FAN_WR_TPEC:
5096 if ((level != TP_EC_FAN_AUTO) &&
5097 (level != TP_EC_FAN_FULLSPEED) &&
5098 ((level < 0) || (level > 7)))
5101 /* safety net should the EC not support AUTO
5102 * or FULLSPEED mode bits and just ignore them */
5103 if (level & TP_EC_FAN_FULLSPEED)
5104 level |= 7; /* safety min speed 7 */
5105 else if (level & TP_EC_FAN_AUTO)
5106 level |= 4; /* safety min speed 4 */
5108 if (!acpi_ec_write(fan_status_offset, level))
5111 tp_features.fan_ctrl_status_undef = 0;
5120 static int fan_set_level_safe(int level)
5124 if (!fan_control_allowed)
5127 if (mutex_lock_interruptible(&fan_mutex))
5128 return -ERESTARTSYS;
5130 if (level == TPACPI_FAN_LAST_LEVEL)
5131 level = fan_control_desired_level;
5133 rc = fan_set_level(level);
5135 fan_update_desired_level(level);
5137 mutex_unlock(&fan_mutex);
5141 static int fan_set_enable(void)
5146 if (!fan_control_allowed)
5149 if (mutex_lock_interruptible(&fan_mutex))
5150 return -ERESTARTSYS;
5152 switch (fan_control_access_mode) {
5153 case TPACPI_FAN_WR_ACPI_FANS:
5154 case TPACPI_FAN_WR_TPEC:
5155 rc = fan_get_status(&s);
5159 /* Don't go out of emergency fan mode */
5162 s |= TP_EC_FAN_AUTO | 4; /* min fan speed 4 */
5165 if (!acpi_ec_write(fan_status_offset, s))
5168 tp_features.fan_ctrl_status_undef = 0;
5173 case TPACPI_FAN_WR_ACPI_SFAN:
5174 rc = fan_get_status(&s);
5180 /* Set fan to at least level 4 */
5183 if (!acpi_evalf(sfan_handle, NULL, NULL, "vd", s))
5193 mutex_unlock(&fan_mutex);
5197 static int fan_set_disable(void)
5201 if (!fan_control_allowed)
5204 if (mutex_lock_interruptible(&fan_mutex))
5205 return -ERESTARTSYS;
5208 switch (fan_control_access_mode) {
5209 case TPACPI_FAN_WR_ACPI_FANS:
5210 case TPACPI_FAN_WR_TPEC:
5211 if (!acpi_ec_write(fan_status_offset, 0x00))
5214 fan_control_desired_level = 0;
5215 tp_features.fan_ctrl_status_undef = 0;
5219 case TPACPI_FAN_WR_ACPI_SFAN:
5220 if (!acpi_evalf(sfan_handle, NULL, NULL, "vd", 0x00))
5223 fan_control_desired_level = 0;
5231 mutex_unlock(&fan_mutex);
5235 static int fan_set_speed(int speed)
5239 if (!fan_control_allowed)
5242 if (mutex_lock_interruptible(&fan_mutex))
5243 return -ERESTARTSYS;
5246 switch (fan_control_access_mode) {
5247 case TPACPI_FAN_WR_ACPI_FANS:
5248 if (speed >= 0 && speed <= 65535) {
5249 if (!acpi_evalf(fans_handle, NULL, NULL, "vddd",
5250 speed, speed, speed))
5260 mutex_unlock(&fan_mutex);
5264 static void fan_watchdog_reset(void)
5266 static int fan_watchdog_active;
5268 if (fan_control_access_mode == TPACPI_FAN_WR_NONE)
5271 if (fan_watchdog_active)
5272 cancel_delayed_work(&fan_watchdog_task);
5274 if (fan_watchdog_maxinterval > 0 &&
5275 tpacpi_lifecycle != TPACPI_LIFE_EXITING) {
5276 fan_watchdog_active = 1;
5277 if (!schedule_delayed_work(&fan_watchdog_task,
5278 msecs_to_jiffies(fan_watchdog_maxinterval
5281 "failed to schedule the fan watchdog, "
5282 "watchdog will not trigger\n");
5285 fan_watchdog_active = 0;
5288 static void fan_watchdog_fire(struct work_struct *ignored)
5292 if (tpacpi_lifecycle != TPACPI_LIFE_RUNNING)
5295 printk(TPACPI_NOTICE "fan watchdog: enabling fan\n");
5296 rc = fan_set_enable();
5298 printk(TPACPI_ERR "fan watchdog: error %d while enabling fan, "
5299 "will try again later...\n", -rc);
5300 /* reschedule for later */
5301 fan_watchdog_reset();
5306 * SYSFS fan layout: hwmon compatible (device)
5309 * 0: "disengaged" mode
5311 * 2: native EC "auto" mode (recommended, hardware default)
5313 * pwm*: set speed in manual mode, ignored otherwise.
5314 * 0 is level 0; 255 is level 7. Intermediate points done with linear
5317 * fan*_input: tachometer reading, RPM
5320 * SYSFS fan layout: extensions
5322 * fan_watchdog (driver):
5323 * fan watchdog interval in seconds, 0 disables (default), max 120
5326 /* sysfs fan pwm1_enable ----------------------------------------------- */
5327 static ssize_t fan_pwm1_enable_show(struct device *dev,
5328 struct device_attribute *attr,
5334 res = fan_get_status_safe(&status);
5338 if (unlikely(tp_features.fan_ctrl_status_undef)) {
5339 if (status != fan_control_initial_status) {
5340 tp_features.fan_ctrl_status_undef = 0;
5342 /* Return most likely status. In fact, it
5343 * might be the only possible status */
5344 status = TP_EC_FAN_AUTO;
5348 if (status & TP_EC_FAN_FULLSPEED) {
5350 } else if (status & TP_EC_FAN_AUTO) {
5355 return snprintf(buf, PAGE_SIZE, "%d\n", mode);
5358 static ssize_t fan_pwm1_enable_store(struct device *dev,
5359 struct device_attribute *attr,
5360 const char *buf, size_t count)
5365 if (parse_strtoul(buf, 2, &t))
5370 level = TP_EC_FAN_FULLSPEED;
5373 level = TPACPI_FAN_LAST_LEVEL;
5376 level = TP_EC_FAN_AUTO;
5379 /* reserved for software-controlled auto mode */
5385 res = fan_set_level_safe(level);
5391 fan_watchdog_reset();
5396 static struct device_attribute dev_attr_fan_pwm1_enable =
5397 __ATTR(pwm1_enable, S_IWUSR | S_IRUGO,
5398 fan_pwm1_enable_show, fan_pwm1_enable_store);
5400 /* sysfs fan pwm1 ------------------------------------------------------ */
5401 static ssize_t fan_pwm1_show(struct device *dev,
5402 struct device_attribute *attr,
5408 res = fan_get_status_safe(&status);
5412 if (unlikely(tp_features.fan_ctrl_status_undef)) {
5413 if (status != fan_control_initial_status) {
5414 tp_features.fan_ctrl_status_undef = 0;
5416 status = TP_EC_FAN_AUTO;
5421 (TP_EC_FAN_AUTO | TP_EC_FAN_FULLSPEED)) != 0)
5422 status = fan_control_desired_level;
5427 return snprintf(buf, PAGE_SIZE, "%u\n", (status * 255) / 7);
5430 static ssize_t fan_pwm1_store(struct device *dev,
5431 struct device_attribute *attr,
5432 const char *buf, size_t count)
5436 u8 status, newlevel;
5438 if (parse_strtoul(buf, 255, &s))
5441 /* scale down from 0-255 to 0-7 */
5442 newlevel = (s >> 5) & 0x07;
5444 if (mutex_lock_interruptible(&fan_mutex))
5445 return -ERESTARTSYS;
5447 rc = fan_get_status(&status);
5448 if (!rc && (status &
5449 (TP_EC_FAN_AUTO | TP_EC_FAN_FULLSPEED)) == 0) {
5450 rc = fan_set_level(newlevel);
5454 fan_update_desired_level(newlevel);
5455 fan_watchdog_reset();
5459 mutex_unlock(&fan_mutex);
5460 return (rc)? rc : count;
5463 static struct device_attribute dev_attr_fan_pwm1 =
5464 __ATTR(pwm1, S_IWUSR | S_IRUGO,
5465 fan_pwm1_show, fan_pwm1_store);
5467 /* sysfs fan fan1_input ------------------------------------------------ */
5468 static ssize_t fan_fan1_input_show(struct device *dev,
5469 struct device_attribute *attr,
5475 res = fan_get_speed(&speed);
5479 return snprintf(buf, PAGE_SIZE, "%u\n", speed);
5482 static struct device_attribute dev_attr_fan_fan1_input =
5483 __ATTR(fan1_input, S_IRUGO,
5484 fan_fan1_input_show, NULL);
5486 /* sysfs fan fan_watchdog (hwmon driver) ------------------------------- */
5487 static ssize_t fan_fan_watchdog_show(struct device_driver *drv,
5490 return snprintf(buf, PAGE_SIZE, "%u\n", fan_watchdog_maxinterval);
5493 static ssize_t fan_fan_watchdog_store(struct device_driver *drv,
5494 const char *buf, size_t count)
5498 if (parse_strtoul(buf, 120, &t))
5501 if (!fan_control_allowed)
5504 fan_watchdog_maxinterval = t;
5505 fan_watchdog_reset();
5510 static DRIVER_ATTR(fan_watchdog, S_IWUSR | S_IRUGO,
5511 fan_fan_watchdog_show, fan_fan_watchdog_store);
5513 /* --------------------------------------------------------------------- */
5514 static struct attribute *fan_attributes[] = {
5515 &dev_attr_fan_pwm1_enable.attr, &dev_attr_fan_pwm1.attr,
5516 &dev_attr_fan_fan1_input.attr,
5520 static const struct attribute_group fan_attr_group = {
5521 .attrs = fan_attributes,
5524 static int __init fan_init(struct ibm_init_struct *iibm)
5528 vdbg_printk(TPACPI_DBG_INIT, "initializing fan subdriver\n");
5530 mutex_init(&fan_mutex);
5531 fan_status_access_mode = TPACPI_FAN_NONE;
5532 fan_control_access_mode = TPACPI_FAN_WR_NONE;
5533 fan_control_commands = 0;
5534 fan_watchdog_maxinterval = 0;
5535 tp_features.fan_ctrl_status_undef = 0;
5536 fan_control_desired_level = 7;
5538 TPACPI_ACPIHANDLE_INIT(fans);
5539 TPACPI_ACPIHANDLE_INIT(gfan);
5540 TPACPI_ACPIHANDLE_INIT(sfan);
5543 /* 570, 600e/x, 770e, 770x */
5544 fan_status_access_mode = TPACPI_FAN_RD_ACPI_GFAN;
5546 /* all other ThinkPads: note that even old-style
5547 * ThinkPad ECs supports the fan control register */
5548 if (likely(acpi_ec_read(fan_status_offset,
5549 &fan_control_initial_status))) {
5550 fan_status_access_mode = TPACPI_FAN_RD_TPEC;
5552 /* In some ThinkPads, neither the EC nor the ACPI
5553 * DSDT initialize the fan status, and it ends up
5554 * being set to 0x07 when it *could* be either
5557 * Enable for TP-1Y (T43), TP-78 (R51e),
5558 * TP-76 (R52), TP-70 (T43, R52), which are known
5560 if (fan_control_initial_status == 0x07) {
5561 switch (thinkpad_id.ec_model) {
5562 case 0x5931: /* TP-1Y */
5563 case 0x3837: /* TP-78 */
5564 case 0x3637: /* TP-76 */
5565 case 0x3037: /* TP-70 */
5566 printk(TPACPI_NOTICE
5567 "fan_init: initial fan status "
5568 "is unknown, assuming it is "
5570 tp_features.fan_ctrl_status_undef = 1;
5576 "ThinkPad ACPI EC access misbehaving, "
5577 "fan status and control unavailable\n");
5584 fan_control_access_mode = TPACPI_FAN_WR_ACPI_SFAN;
5585 fan_control_commands |=
5586 TPACPI_FAN_CMD_LEVEL | TPACPI_FAN_CMD_ENABLE;
5589 /* gfan without sfan means no fan control */
5590 /* all other models implement TP EC 0x2f control */
5594 fan_control_access_mode =
5595 TPACPI_FAN_WR_ACPI_FANS;
5596 fan_control_commands |=
5597 TPACPI_FAN_CMD_SPEED |
5598 TPACPI_FAN_CMD_LEVEL |
5599 TPACPI_FAN_CMD_ENABLE;
5601 fan_control_access_mode = TPACPI_FAN_WR_TPEC;
5602 fan_control_commands |=
5603 TPACPI_FAN_CMD_LEVEL |
5604 TPACPI_FAN_CMD_ENABLE;
5609 vdbg_printk(TPACPI_DBG_INIT, "fan is %s, modes %d, %d\n",
5610 str_supported(fan_status_access_mode != TPACPI_FAN_NONE ||
5611 fan_control_access_mode != TPACPI_FAN_WR_NONE),
5612 fan_status_access_mode, fan_control_access_mode);
5614 /* fan control master switch */
5615 if (!fan_control_allowed) {
5616 fan_control_access_mode = TPACPI_FAN_WR_NONE;
5617 fan_control_commands = 0;
5618 dbg_printk(TPACPI_DBG_INIT,
5619 "fan control features disabled by parameter\n");
5622 /* update fan_control_desired_level */
5623 if (fan_status_access_mode != TPACPI_FAN_NONE)
5624 fan_get_status_safe(NULL);
5626 if (fan_status_access_mode != TPACPI_FAN_NONE ||
5627 fan_control_access_mode != TPACPI_FAN_WR_NONE) {
5628 rc = sysfs_create_group(&tpacpi_sensors_pdev->dev.kobj,
5631 rc = driver_create_file(&tpacpi_hwmon_pdriver.driver,
5632 &driver_attr_fan_watchdog);
5640 static void fan_exit(void)
5642 vdbg_printk(TPACPI_DBG_EXIT,
5643 "cancelling any pending fan watchdog tasks\n");
5645 /* FIXME: can we really do this unconditionally? */
5646 sysfs_remove_group(&tpacpi_sensors_pdev->dev.kobj, &fan_attr_group);
5647 driver_remove_file(&tpacpi_hwmon_pdriver.driver,
5648 &driver_attr_fan_watchdog);
5650 cancel_delayed_work(&fan_watchdog_task);
5651 flush_scheduled_work();
5654 static int fan_read(char *p)
5659 unsigned int speed = 0;
5661 switch (fan_status_access_mode) {
5662 case TPACPI_FAN_RD_ACPI_GFAN:
5663 /* 570, 600e/x, 770e, 770x */
5664 rc = fan_get_status_safe(&status);
5668 len += sprintf(p + len, "status:\t\t%s\n"
5670 (status != 0) ? "enabled" : "disabled", status);
5673 case TPACPI_FAN_RD_TPEC:
5674 /* all except 570, 600e/x, 770e, 770x */
5675 rc = fan_get_status_safe(&status);
5679 if (unlikely(tp_features.fan_ctrl_status_undef)) {
5680 if (status != fan_control_initial_status)
5681 tp_features.fan_ctrl_status_undef = 0;
5683 /* Return most likely status. In fact, it
5684 * might be the only possible status */
5685 status = TP_EC_FAN_AUTO;
5688 len += sprintf(p + len, "status:\t\t%s\n",
5689 (status != 0) ? "enabled" : "disabled");
5691 rc = fan_get_speed(&speed);
5695 len += sprintf(p + len, "speed:\t\t%d\n", speed);
5697 if (status & TP_EC_FAN_FULLSPEED)
5698 /* Disengaged mode takes precedence */
5699 len += sprintf(p + len, "level:\t\tdisengaged\n");
5700 else if (status & TP_EC_FAN_AUTO)
5701 len += sprintf(p + len, "level:\t\tauto\n");
5703 len += sprintf(p + len, "level:\t\t%d\n", status);
5706 case TPACPI_FAN_NONE:
5708 len += sprintf(p + len, "status:\t\tnot supported\n");
5711 if (fan_control_commands & TPACPI_FAN_CMD_LEVEL) {
5712 len += sprintf(p + len, "commands:\tlevel <level>");
5714 switch (fan_control_access_mode) {
5715 case TPACPI_FAN_WR_ACPI_SFAN:
5716 len += sprintf(p + len, " (<level> is 0-7)\n");
5720 len += sprintf(p + len, " (<level> is 0-7, "
5721 "auto, disengaged, full-speed)\n");
5726 if (fan_control_commands & TPACPI_FAN_CMD_ENABLE)
5727 len += sprintf(p + len, "commands:\tenable, disable\n"
5728 "commands:\twatchdog <timeout> (<timeout> "
5729 "is 0 (off), 1-120 (seconds))\n");
5731 if (fan_control_commands & TPACPI_FAN_CMD_SPEED)
5732 len += sprintf(p + len, "commands:\tspeed <speed>"
5733 " (<speed> is 0-65535)\n");
5738 static int fan_write_cmd_level(const char *cmd, int *rc)
5742 if (strlencmp(cmd, "level auto") == 0)
5743 level = TP_EC_FAN_AUTO;
5744 else if ((strlencmp(cmd, "level disengaged") == 0) |
5745 (strlencmp(cmd, "level full-speed") == 0))
5746 level = TP_EC_FAN_FULLSPEED;
5747 else if (sscanf(cmd, "level %d", &level) != 1)
5750 *rc = fan_set_level_safe(level);
5752 printk(TPACPI_ERR "level command accepted for unsupported "
5753 "access mode %d", fan_control_access_mode);
5758 static int fan_write_cmd_enable(const char *cmd, int *rc)
5760 if (strlencmp(cmd, "enable") != 0)
5763 *rc = fan_set_enable();
5765 printk(TPACPI_ERR "enable command accepted for unsupported "
5766 "access mode %d", fan_control_access_mode);
5771 static int fan_write_cmd_disable(const char *cmd, int *rc)
5773 if (strlencmp(cmd, "disable") != 0)
5776 *rc = fan_set_disable();
5778 printk(TPACPI_ERR "disable command accepted for unsupported "
5779 "access mode %d", fan_control_access_mode);
5784 static int fan_write_cmd_speed(const char *cmd, int *rc)
5789 * Support speed <low> <medium> <high> ? */
5791 if (sscanf(cmd, "speed %d", &speed) != 1)
5794 *rc = fan_set_speed(speed);
5796 printk(TPACPI_ERR "speed command accepted for unsupported "
5797 "access mode %d", fan_control_access_mode);
5802 static int fan_write_cmd_watchdog(const char *cmd, int *rc)
5806 if (sscanf(cmd, "watchdog %d", &interval) != 1)
5809 if (interval < 0 || interval > 120)
5812 fan_watchdog_maxinterval = interval;
5817 static int fan_write(char *buf)
5822 while (!rc && (cmd = next_cmd(&buf))) {
5823 if (!((fan_control_commands & TPACPI_FAN_CMD_LEVEL) &&
5824 fan_write_cmd_level(cmd, &rc)) &&
5825 !((fan_control_commands & TPACPI_FAN_CMD_ENABLE) &&
5826 (fan_write_cmd_enable(cmd, &rc) ||
5827 fan_write_cmd_disable(cmd, &rc) ||
5828 fan_write_cmd_watchdog(cmd, &rc))) &&
5829 !((fan_control_commands & TPACPI_FAN_CMD_SPEED) &&
5830 fan_write_cmd_speed(cmd, &rc))
5834 fan_watchdog_reset();
5840 static struct ibm_struct fan_driver_data = {
5847 /****************************************************************************
5848 ****************************************************************************
5852 ****************************************************************************
5853 ****************************************************************************/
5855 /* sysfs name ---------------------------------------------------------- */
5856 static ssize_t thinkpad_acpi_pdev_name_show(struct device *dev,
5857 struct device_attribute *attr,
5860 return snprintf(buf, PAGE_SIZE, "%s\n", TPACPI_NAME);
5863 static struct device_attribute dev_attr_thinkpad_acpi_pdev_name =
5864 __ATTR(name, S_IRUGO, thinkpad_acpi_pdev_name_show, NULL);
5866 /* --------------------------------------------------------------------- */
5869 static struct proc_dir_entry *proc_dir;
5872 * Module and infrastructure proble, init and exit handling
5875 static int force_load;
5877 #ifdef CONFIG_THINKPAD_ACPI_DEBUG
5878 static const char * __init str_supported(int is_supported)
5880 static char text_unsupported[] __initdata = "not supported";
5882 return (is_supported)? &text_unsupported[4] : &text_unsupported[0];
5884 #endif /* CONFIG_THINKPAD_ACPI_DEBUG */
5886 static void ibm_exit(struct ibm_struct *ibm)
5888 dbg_printk(TPACPI_DBG_EXIT, "removing %s\n", ibm->name);
5890 list_del_init(&ibm->all_drivers);
5892 if (ibm->flags.acpi_notify_installed) {
5893 dbg_printk(TPACPI_DBG_EXIT,
5894 "%s: acpi_remove_notify_handler\n", ibm->name);
5896 acpi_remove_notify_handler(*ibm->acpi->handle,
5898 dispatch_acpi_notify);
5899 ibm->flags.acpi_notify_installed = 0;
5900 ibm->flags.acpi_notify_installed = 0;
5903 if (ibm->flags.proc_created) {
5904 dbg_printk(TPACPI_DBG_EXIT,
5905 "%s: remove_proc_entry\n", ibm->name);
5906 remove_proc_entry(ibm->name, proc_dir);
5907 ibm->flags.proc_created = 0;
5910 if (ibm->flags.acpi_driver_registered) {
5911 dbg_printk(TPACPI_DBG_EXIT,
5912 "%s: acpi_bus_unregister_driver\n", ibm->name);
5914 acpi_bus_unregister_driver(ibm->acpi->driver);
5915 kfree(ibm->acpi->driver);
5916 ibm->acpi->driver = NULL;
5917 ibm->flags.acpi_driver_registered = 0;
5920 if (ibm->flags.init_called && ibm->exit) {
5922 ibm->flags.init_called = 0;
5925 dbg_printk(TPACPI_DBG_INIT, "finished removing %s\n", ibm->name);
5928 static int __init ibm_init(struct ibm_init_struct *iibm)
5931 struct ibm_struct *ibm = iibm->data;
5932 struct proc_dir_entry *entry;
5934 BUG_ON(ibm == NULL);
5936 INIT_LIST_HEAD(&ibm->all_drivers);
5938 if (ibm->flags.experimental && !experimental)
5941 dbg_printk(TPACPI_DBG_INIT,
5942 "probing for %s\n", ibm->name);
5945 ret = iibm->init(iibm);
5947 return 0; /* probe failed */
5951 ibm->flags.init_called = 1;
5955 if (ibm->acpi->hid) {
5956 ret = register_tpacpi_subdriver(ibm);
5961 if (ibm->acpi->notify) {
5962 ret = setup_acpi_notify(ibm);
5963 if (ret == -ENODEV) {
5964 printk(TPACPI_NOTICE "disabling subdriver %s\n",
5974 dbg_printk(TPACPI_DBG_INIT,
5975 "%s installed\n", ibm->name);
5978 entry = create_proc_entry(ibm->name,
5979 S_IFREG | S_IRUGO | S_IWUSR,
5982 printk(TPACPI_ERR "unable to create proc entry %s\n",
5987 entry->owner = THIS_MODULE;
5989 entry->read_proc = &dispatch_procfs_read;
5991 entry->write_proc = &dispatch_procfs_write;
5992 ibm->flags.proc_created = 1;
5995 list_add_tail(&ibm->all_drivers, &tpacpi_all_drivers);
6000 dbg_printk(TPACPI_DBG_INIT,
6001 "%s: at error exit path with result %d\n",
6005 return (ret < 0)? ret : 0;
6010 static void __init get_thinkpad_model_data(struct thinkpad_id_data *tp)
6012 const struct dmi_device *dev = NULL;
6013 char ec_fw_string[18];
6018 memset(tp, 0, sizeof(*tp));
6020 if (dmi_name_in_vendors("IBM"))
6021 tp->vendor = PCI_VENDOR_ID_IBM;
6022 else if (dmi_name_in_vendors("LENOVO"))
6023 tp->vendor = PCI_VENDOR_ID_LENOVO;
6027 tp->bios_version_str = kstrdup(dmi_get_system_info(DMI_BIOS_VERSION),
6029 if (!tp->bios_version_str)
6031 tp->bios_model = tp->bios_version_str[0]
6032 | (tp->bios_version_str[1] << 8);
6035 * ThinkPad T23 or newer, A31 or newer, R50e or newer,
6036 * X32 or newer, all Z series; Some models must have an
6037 * up-to-date BIOS or they will not be detected.
6039 * See http://thinkwiki.org/wiki/List_of_DMI_IDs
6041 while ((dev = dmi_find_device(DMI_DEV_TYPE_OEM_STRING, NULL, dev))) {
6042 if (sscanf(dev->name,
6043 "IBM ThinkPad Embedded Controller -[%17c",
6044 ec_fw_string) == 1) {
6045 ec_fw_string[sizeof(ec_fw_string) - 1] = 0;
6046 ec_fw_string[strcspn(ec_fw_string, " ]")] = 0;
6048 tp->ec_version_str = kstrdup(ec_fw_string, GFP_KERNEL);
6049 tp->ec_model = ec_fw_string[0]
6050 | (ec_fw_string[1] << 8);
6055 tp->model_str = kstrdup(dmi_get_system_info(DMI_PRODUCT_VERSION),
6057 if (strnicmp(tp->model_str, "ThinkPad", 8) != 0) {
6058 kfree(tp->model_str);
6059 tp->model_str = NULL;
6062 tp->nummodel_str = kstrdup(dmi_get_system_info(DMI_PRODUCT_NAME),
6066 static int __init probe_for_thinkpad(void)
6074 * Non-ancient models have better DMI tagging, but very old models
6077 is_thinkpad = (thinkpad_id.model_str != NULL);
6079 /* ec is required because many other handles are relative to it */
6080 TPACPI_ACPIHANDLE_INIT(ec);
6084 "Not yet supported ThinkPad detected!\n");
6089 * Risks a regression on very old machines, but reduces potential
6090 * false positives a damn great deal
6093 is_thinkpad = (thinkpad_id.vendor == PCI_VENDOR_ID_IBM);
6095 if (!is_thinkpad && !force_load)
6102 /* Module init, exit, parameters */
6104 static struct ibm_init_struct ibms_init[] __initdata = {
6106 .init = thinkpad_acpi_driver_init,
6107 .data = &thinkpad_acpi_driver_data,
6110 .init = hotkey_init,
6111 .data = &hotkey_driver_data,
6114 .init = bluetooth_init,
6115 .data = &bluetooth_driver_data,
6119 .data = &wan_driver_data,
6121 #ifdef CONFIG_THINKPAD_ACPI_VIDEO
6124 .data = &video_driver_data,
6129 .data = &light_driver_data,
6131 #ifdef CONFIG_THINKPAD_ACPI_DOCK
6134 .data = &dock_driver_data[0],
6138 .data = &dock_driver_data[1],
6141 #ifdef CONFIG_THINKPAD_ACPI_BAY
6144 .data = &bay_driver_data,
6149 .data = &cmos_driver_data,
6153 .data = &led_driver_data,
6157 .data = &beep_driver_data,
6160 .init = thermal_init,
6161 .data = &thermal_driver_data,
6164 .data = &ecdump_driver_data,
6167 .init = brightness_init,
6168 .data = &brightness_driver_data,
6171 .data = &volume_driver_data,
6175 .data = &fan_driver_data,
6179 static int __init set_ibm_param(const char *val, struct kernel_param *kp)
6182 struct ibm_struct *ibm;
6184 if (!kp || !kp->name || !val)
6187 for (i = 0; i < ARRAY_SIZE(ibms_init); i++) {
6188 ibm = ibms_init[i].data;
6189 WARN_ON(ibm == NULL);
6191 if (!ibm || !ibm->name)
6194 if (strcmp(ibm->name, kp->name) == 0 && ibm->write) {
6195 if (strlen(val) > sizeof(ibms_init[i].param) - 2)
6197 strcpy(ibms_init[i].param, val);
6198 strcat(ibms_init[i].param, ",");
6206 module_param(experimental, int, 0);
6207 MODULE_PARM_DESC(experimental,
6208 "Enables experimental features when non-zero");
6210 module_param_named(debug, dbg_level, uint, 0);
6211 MODULE_PARM_DESC(debug, "Sets debug level bit-mask");
6213 module_param(force_load, bool, 0);
6214 MODULE_PARM_DESC(force_load,
6215 "Attempts to load the driver even on a "
6216 "mis-identified ThinkPad when true");
6218 module_param_named(fan_control, fan_control_allowed, bool, 0);
6219 MODULE_PARM_DESC(fan_control,
6220 "Enables setting fan parameters features when true");
6222 module_param_named(brightness_mode, brightness_mode, int, 0);
6223 MODULE_PARM_DESC(brightness_mode,
6224 "Selects brightness control strategy: "
6225 "0=auto, 1=EC, 2=CMOS, 3=both");
6227 module_param(brightness_enable, uint, 0);
6228 MODULE_PARM_DESC(brightness_enable,
6229 "Enables backlight control when 1, disables when 0");
6231 module_param(hotkey_report_mode, uint, 0);
6232 MODULE_PARM_DESC(hotkey_report_mode,
6233 "used for backwards compatibility with userspace, "
6234 "see documentation");
6236 #define TPACPI_PARAM(feature) \
6237 module_param_call(feature, set_ibm_param, NULL, NULL, 0); \
6238 MODULE_PARM_DESC(feature, "Simulates thinkpad-acpi procfs command " \
6239 "at module load, see documentation")
6241 TPACPI_PARAM(hotkey);
6242 TPACPI_PARAM(bluetooth);
6243 TPACPI_PARAM(video);
6244 TPACPI_PARAM(light);
6245 #ifdef CONFIG_THINKPAD_ACPI_DOCK
6248 #ifdef CONFIG_THINKPAD_ACPI_BAY
6250 #endif /* CONFIG_THINKPAD_ACPI_BAY */
6254 TPACPI_PARAM(ecdump);
6255 TPACPI_PARAM(brightness);
6256 TPACPI_PARAM(volume);
6259 static void thinkpad_acpi_module_exit(void)
6261 struct ibm_struct *ibm, *itmp;
6263 tpacpi_lifecycle = TPACPI_LIFE_EXITING;
6265 list_for_each_entry_safe_reverse(ibm, itmp,
6266 &tpacpi_all_drivers,
6271 dbg_printk(TPACPI_DBG_INIT, "finished subdriver exit path...\n");
6273 if (tpacpi_inputdev) {
6274 if (tp_features.input_device_registered)
6275 input_unregister_device(tpacpi_inputdev);
6277 input_free_device(tpacpi_inputdev);
6281 hwmon_device_unregister(tpacpi_hwmon);
6283 if (tp_features.sensors_pdev_attrs_registered)
6284 device_remove_file(&tpacpi_sensors_pdev->dev,
6285 &dev_attr_thinkpad_acpi_pdev_name);
6286 if (tpacpi_sensors_pdev)
6287 platform_device_unregister(tpacpi_sensors_pdev);
6289 platform_device_unregister(tpacpi_pdev);
6291 if (tp_features.sensors_pdrv_attrs_registered)
6292 tpacpi_remove_driver_attributes(&tpacpi_hwmon_pdriver.driver);
6293 if (tp_features.platform_drv_attrs_registered)
6294 tpacpi_remove_driver_attributes(&tpacpi_pdriver.driver);
6296 if (tp_features.sensors_pdrv_registered)
6297 platform_driver_unregister(&tpacpi_hwmon_pdriver);
6299 if (tp_features.platform_drv_registered)
6300 platform_driver_unregister(&tpacpi_pdriver);
6303 remove_proc_entry(TPACPI_PROC_DIR, acpi_root_dir);
6305 kfree(thinkpad_id.bios_version_str);
6306 kfree(thinkpad_id.ec_version_str);
6307 kfree(thinkpad_id.model_str);
6311 static int __init thinkpad_acpi_module_init(void)
6315 tpacpi_lifecycle = TPACPI_LIFE_INIT;
6317 /* Parameter checking */
6318 if (hotkey_report_mode > 2)
6321 /* Driver-level probe */
6323 get_thinkpad_model_data(&thinkpad_id);
6324 ret = probe_for_thinkpad();
6326 thinkpad_acpi_module_exit();
6330 /* Driver initialization */
6332 TPACPI_ACPIHANDLE_INIT(ecrd);
6333 TPACPI_ACPIHANDLE_INIT(ecwr);
6335 proc_dir = proc_mkdir(TPACPI_PROC_DIR, acpi_root_dir);
6338 "unable to create proc dir " TPACPI_PROC_DIR);
6339 thinkpad_acpi_module_exit();
6342 proc_dir->owner = THIS_MODULE;
6344 ret = platform_driver_register(&tpacpi_pdriver);
6347 "unable to register main platform driver\n");
6348 thinkpad_acpi_module_exit();
6351 tp_features.platform_drv_registered = 1;
6353 ret = platform_driver_register(&tpacpi_hwmon_pdriver);
6356 "unable to register hwmon platform driver\n");
6357 thinkpad_acpi_module_exit();
6360 tp_features.sensors_pdrv_registered = 1;
6362 ret = tpacpi_create_driver_attributes(&tpacpi_pdriver.driver);
6364 tp_features.platform_drv_attrs_registered = 1;
6365 ret = tpacpi_create_driver_attributes(
6366 &tpacpi_hwmon_pdriver.driver);
6370 "unable to create sysfs driver attributes\n");
6371 thinkpad_acpi_module_exit();
6374 tp_features.sensors_pdrv_attrs_registered = 1;
6377 /* Device initialization */
6378 tpacpi_pdev = platform_device_register_simple(TPACPI_DRVR_NAME, -1,
6380 if (IS_ERR(tpacpi_pdev)) {
6381 ret = PTR_ERR(tpacpi_pdev);
6383 printk(TPACPI_ERR "unable to register platform device\n");
6384 thinkpad_acpi_module_exit();
6387 tpacpi_sensors_pdev = platform_device_register_simple(
6388 TPACPI_HWMON_DRVR_NAME,
6390 if (IS_ERR(tpacpi_sensors_pdev)) {
6391 ret = PTR_ERR(tpacpi_sensors_pdev);
6392 tpacpi_sensors_pdev = NULL;
6394 "unable to register hwmon platform device\n");
6395 thinkpad_acpi_module_exit();
6398 ret = device_create_file(&tpacpi_sensors_pdev->dev,
6399 &dev_attr_thinkpad_acpi_pdev_name);
6402 "unable to create sysfs hwmon device attributes\n");
6403 thinkpad_acpi_module_exit();
6406 tp_features.sensors_pdev_attrs_registered = 1;
6407 tpacpi_hwmon = hwmon_device_register(&tpacpi_sensors_pdev->dev);
6408 if (IS_ERR(tpacpi_hwmon)) {
6409 ret = PTR_ERR(tpacpi_hwmon);
6410 tpacpi_hwmon = NULL;
6411 printk(TPACPI_ERR "unable to register hwmon device\n");
6412 thinkpad_acpi_module_exit();
6415 mutex_init(&tpacpi_inputdev_send_mutex);
6416 tpacpi_inputdev = input_allocate_device();
6417 if (!tpacpi_inputdev) {
6418 printk(TPACPI_ERR "unable to allocate input device\n");
6419 thinkpad_acpi_module_exit();
6422 /* Prepare input device, but don't register */
6423 tpacpi_inputdev->name = "ThinkPad Extra Buttons";
6424 tpacpi_inputdev->phys = TPACPI_DRVR_NAME "/input0";
6425 tpacpi_inputdev->id.bustype = BUS_HOST;
6426 tpacpi_inputdev->id.vendor = (thinkpad_id.vendor) ?
6427 thinkpad_id.vendor :
6429 tpacpi_inputdev->id.product = TPACPI_HKEY_INPUT_PRODUCT;
6430 tpacpi_inputdev->id.version = TPACPI_HKEY_INPUT_VERSION;
6432 for (i = 0; i < ARRAY_SIZE(ibms_init); i++) {
6433 ret = ibm_init(&ibms_init[i]);
6434 if (ret >= 0 && *ibms_init[i].param)
6435 ret = ibms_init[i].data->write(ibms_init[i].param);
6437 thinkpad_acpi_module_exit();
6441 ret = input_register_device(tpacpi_inputdev);
6443 printk(TPACPI_ERR "unable to register input device\n");
6444 thinkpad_acpi_module_exit();
6447 tp_features.input_device_registered = 1;
6450 tpacpi_lifecycle = TPACPI_LIFE_RUNNING;
6454 /* Please remove this in year 2009 */
6455 MODULE_ALIAS("ibm_acpi");
6457 MODULE_ALIAS(TPACPI_DRVR_SHORTNAME);
6460 * DMI matching for module autoloading
6462 * See http://thinkwiki.org/wiki/List_of_DMI_IDs
6463 * See http://thinkwiki.org/wiki/BIOS_Upgrade_Downloads
6465 * Only models listed in thinkwiki will be supported, so add yours
6466 * if it is not there yet.
6468 #define IBM_BIOS_MODULE_ALIAS(__type) \
6469 MODULE_ALIAS("dmi:bvnIBM:bvr" __type "ET??WW")
6471 /* Non-ancient thinkpads */
6472 MODULE_ALIAS("dmi:bvnIBM:*:svnIBM:*:pvrThinkPad*:rvnIBM:*");
6473 MODULE_ALIAS("dmi:bvnLENOVO:*:svnLENOVO:*:pvrThinkPad*:rvnLENOVO:*");
6475 /* Ancient thinkpad BIOSes have to be identified by
6476 * BIOS type or model number, and there are far less
6477 * BIOS types than model numbers... */
6478 IBM_BIOS_MODULE_ALIAS("I[B,D,H,I,M,N,O,T,W,V,Y,Z]");
6479 IBM_BIOS_MODULE_ALIAS("1[0,3,6,8,A-G,I,K,M-P,S,T]");
6480 IBM_BIOS_MODULE_ALIAS("K[U,X-Z]");
6482 MODULE_AUTHOR("Borislav Deianov, Henrique de Moraes Holschuh");
6483 MODULE_DESCRIPTION(TPACPI_DESC);
6484 MODULE_VERSION(TPACPI_VERSION);
6485 MODULE_LICENSE("GPL");
6487 module_init(thinkpad_acpi_module_init);
6488 module_exit(thinkpad_acpi_module_exit);