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.20"
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"
143 #define TPACPI_WORKQUEUE_NAME "ktpacpid"
145 #define TPACPI_MAX_ACPI_ARGS 3
148 #define TPACPI_LOG TPACPI_FILE ": "
149 #define TPACPI_ERR KERN_ERR TPACPI_LOG
150 #define TPACPI_NOTICE KERN_NOTICE TPACPI_LOG
151 #define TPACPI_INFO KERN_INFO TPACPI_LOG
152 #define TPACPI_DEBUG KERN_DEBUG TPACPI_LOG
154 #define TPACPI_DBG_ALL 0xffff
155 #define TPACPI_DBG_ALL 0xffff
156 #define TPACPI_DBG_INIT 0x0001
157 #define TPACPI_DBG_EXIT 0x0002
158 #define dbg_printk(a_dbg_level, format, arg...) \
159 do { if (dbg_level & a_dbg_level) \
160 printk(TPACPI_DEBUG "%s: " format, __func__ , ## arg); \
162 #ifdef CONFIG_THINKPAD_ACPI_DEBUG
163 #define vdbg_printk(a_dbg_level, format, arg...) \
164 dbg_printk(a_dbg_level, format, ## arg)
165 static const char *str_supported(int is_supported);
167 #define vdbg_printk(a_dbg_level, format, arg...)
170 #define onoff(status, bit) ((status) & (1 << (bit)) ? "on" : "off")
171 #define enabled(status, bit) ((status) & (1 << (bit)) ? "enabled" : "disabled")
172 #define strlencmp(a, b) (strncmp((a), (b), strlen(b)))
175 /****************************************************************************
176 * Driver-wide structs and misc. variables
181 struct tp_acpi_drv_struct {
182 const struct acpi_device_id *hid;
183 struct acpi_driver *driver;
185 void (*notify) (struct ibm_struct *, u32);
188 struct acpi_device *device;
194 int (*read) (char *);
195 int (*write) (char *);
197 void (*resume) (void);
198 void (*suspend) (pm_message_t state);
200 struct list_head all_drivers;
202 struct tp_acpi_drv_struct *acpi;
205 u8 acpi_driver_registered:1;
206 u8 acpi_notify_installed:1;
213 struct ibm_init_struct {
216 int (*init) (struct ibm_init_struct *);
217 struct ibm_struct *data;
221 #ifdef CONFIG_THINKPAD_ACPI_BAY
234 u32 bright_16levels:1;
235 u32 bright_acpimode:1;
237 u32 fan_ctrl_status_undef:1;
238 u32 input_device_registered:1;
239 u32 platform_drv_registered:1;
240 u32 platform_drv_attrs_registered:1;
241 u32 sensors_pdrv_registered:1;
242 u32 sensors_pdrv_attrs_registered:1;
243 u32 sensors_pdev_attrs_registered:1;
244 u32 hotkey_poll_active:1;
248 u16 hotkey_mask_ff:1;
249 u16 bright_cmos_ec_unsync:1;
252 struct thinkpad_id_data {
253 unsigned int vendor; /* ThinkPad vendor:
254 * PCI_VENDOR_ID_IBM/PCI_VENDOR_ID_LENOVO */
256 char *bios_version_str; /* Something like 1ZET51WW (1.03z) */
257 char *ec_version_str; /* Something like 1ZHT51WW-1.04a */
259 u16 bios_model; /* Big Endian, TP-1Y = 0x5931, 0 = unknown */
262 char *model_str; /* ThinkPad T43 */
263 char *nummodel_str; /* 9384A9C for a 9384-A9C model */
265 static struct thinkpad_id_data thinkpad_id;
268 TPACPI_LIFE_INIT = 0,
273 static int experimental;
274 static u32 dbg_level;
276 static struct workqueue_struct *tpacpi_wq;
278 /* Special LED class that can defer work */
279 struct tpacpi_led_classdev {
280 struct led_classdev led_classdev;
281 struct work_struct work;
282 enum led_brightness new_brightness;
286 /****************************************************************************
287 ****************************************************************************
289 * ACPI Helpers and device model
291 ****************************************************************************
292 ****************************************************************************/
294 /*************************************************************************
298 static acpi_handle root_handle;
300 #define TPACPI_HANDLE(object, parent, paths...) \
301 static acpi_handle object##_handle; \
302 static acpi_handle *object##_parent = &parent##_handle; \
303 static char *object##_path; \
304 static char *object##_paths[] = { paths }
306 TPACPI_HANDLE(ec, root, "\\_SB.PCI0.ISA.EC0", /* 240, 240x */
307 "\\_SB.PCI.ISA.EC", /* 570 */
308 "\\_SB.PCI0.ISA0.EC0", /* 600e/x, 770e, 770x */
309 "\\_SB.PCI0.ISA.EC", /* A21e, A2xm/p, T20-22, X20-21 */
310 "\\_SB.PCI0.AD4S.EC0", /* i1400, R30 */
311 "\\_SB.PCI0.ICH3.EC0", /* R31 */
312 "\\_SB.PCI0.LPC.EC", /* all others */
315 TPACPI_HANDLE(ecrd, ec, "ECRD"); /* 570 */
316 TPACPI_HANDLE(ecwr, ec, "ECWR"); /* 570 */
318 TPACPI_HANDLE(cmos, root, "\\UCMS", /* R50, R50e, R50p, R51, */
320 "\\CMOS", /* A3x, G4x, R32, T23, T30, X22-24, X30 */
321 "\\CMS", /* R40, R40e */
324 TPACPI_HANDLE(hkey, ec, "\\_SB.HKEY", /* 600e/x, 770e, 770x */
325 "^HKEY", /* R30, R31 */
326 "HKEY", /* all others */
329 TPACPI_HANDLE(vid, root, "\\_SB.PCI.AGP.VGA", /* 570 */
330 "\\_SB.PCI0.AGP0.VID0", /* 600e/x, 770x */
331 "\\_SB.PCI0.VID0", /* 770e */
332 "\\_SB.PCI0.VID", /* A21e, G4x, R50e, X30, X40 */
333 "\\_SB.PCI0.AGP.VID", /* all others */
337 /*************************************************************************
341 static int acpi_evalf(acpi_handle handle,
342 void *res, char *method, char *fmt, ...)
345 struct acpi_object_list params;
346 union acpi_object in_objs[TPACPI_MAX_ACPI_ARGS];
347 struct acpi_buffer result, *resultp;
348 union acpi_object out_obj;
356 printk(TPACPI_ERR "acpi_evalf() called with empty format\n");
369 params.pointer = &in_objs[0];
376 in_objs[params.count].integer.value = va_arg(ap, int);
377 in_objs[params.count++].type = ACPI_TYPE_INTEGER;
379 /* add more types as needed */
381 printk(TPACPI_ERR "acpi_evalf() called "
382 "with invalid format character '%c'\n", c);
388 if (res_type != 'v') {
389 result.length = sizeof(out_obj);
390 result.pointer = &out_obj;
395 status = acpi_evaluate_object(handle, method, ¶ms, resultp);
400 *(int *)res = out_obj.integer.value;
401 success = status == AE_OK && out_obj.type == ACPI_TYPE_INTEGER;
404 success = status == AE_OK;
406 /* add more types as needed */
408 printk(TPACPI_ERR "acpi_evalf() called "
409 "with invalid format character '%c'\n", res_type);
413 if (!success && !quiet)
414 printk(TPACPI_ERR "acpi_evalf(%s, %s, ...) failed: %d\n",
415 method, fmt0, status);
420 static int acpi_ec_read(int i, u8 *p)
425 if (!acpi_evalf(ecrd_handle, &v, NULL, "dd", i))
429 if (ec_read(i, p) < 0)
436 static int acpi_ec_write(int i, u8 v)
439 if (!acpi_evalf(ecwr_handle, NULL, NULL, "vdd", i, v))
442 if (ec_write(i, v) < 0)
449 #if defined(CONFIG_THINKPAD_ACPI_DOCK) || defined(CONFIG_THINKPAD_ACPI_BAY)
450 static int _sta(acpi_handle handle)
454 if (!handle || !acpi_evalf(handle, &status, "_STA", "d"))
461 static int issue_thinkpad_cmos_command(int cmos_cmd)
466 if (!acpi_evalf(cmos_handle, NULL, NULL, "vd", cmos_cmd))
472 /*************************************************************************
476 #define TPACPI_ACPIHANDLE_INIT(object) \
477 drv_acpi_handle_init(#object, &object##_handle, *object##_parent, \
478 object##_paths, ARRAY_SIZE(object##_paths), &object##_path)
480 static void drv_acpi_handle_init(char *name,
481 acpi_handle *handle, acpi_handle parent,
482 char **paths, int num_paths, char **path)
487 vdbg_printk(TPACPI_DBG_INIT, "trying to locate ACPI handle for %s\n",
490 for (i = 0; i < num_paths; i++) {
491 status = acpi_get_handle(parent, paths[i], handle);
492 if (ACPI_SUCCESS(status)) {
494 dbg_printk(TPACPI_DBG_INIT,
495 "Found ACPI handle %s for %s\n",
501 vdbg_printk(TPACPI_DBG_INIT, "ACPI handle for %s not found\n",
506 static void dispatch_acpi_notify(acpi_handle handle, u32 event, void *data)
508 struct ibm_struct *ibm = data;
510 if (tpacpi_lifecycle != TPACPI_LIFE_RUNNING)
513 if (!ibm || !ibm->acpi || !ibm->acpi->notify)
516 ibm->acpi->notify(ibm, event);
519 static int __init setup_acpi_notify(struct ibm_struct *ibm)
526 if (!*ibm->acpi->handle)
529 vdbg_printk(TPACPI_DBG_INIT,
530 "setting up ACPI notify for %s\n", ibm->name);
532 rc = acpi_bus_get_device(*ibm->acpi->handle, &ibm->acpi->device);
534 printk(TPACPI_ERR "acpi_bus_get_device(%s) failed: %d\n",
539 acpi_driver_data(ibm->acpi->device) = ibm;
540 sprintf(acpi_device_class(ibm->acpi->device), "%s/%s",
541 TPACPI_ACPI_EVENT_PREFIX,
544 status = acpi_install_notify_handler(*ibm->acpi->handle,
545 ibm->acpi->type, dispatch_acpi_notify, ibm);
546 if (ACPI_FAILURE(status)) {
547 if (status == AE_ALREADY_EXISTS) {
549 "another device driver is already "
550 "handling %s events\n", ibm->name);
553 "acpi_install_notify_handler(%s) failed: %d\n",
558 ibm->flags.acpi_notify_installed = 1;
562 static int __init tpacpi_device_add(struct acpi_device *device)
567 static int __init register_tpacpi_subdriver(struct ibm_struct *ibm)
571 dbg_printk(TPACPI_DBG_INIT,
572 "registering %s as an ACPI driver\n", ibm->name);
576 ibm->acpi->driver = kzalloc(sizeof(struct acpi_driver), GFP_KERNEL);
577 if (!ibm->acpi->driver) {
578 printk(TPACPI_ERR "kzalloc(ibm->driver) failed\n");
582 sprintf(ibm->acpi->driver->name, "%s_%s", TPACPI_NAME, ibm->name);
583 ibm->acpi->driver->ids = ibm->acpi->hid;
585 ibm->acpi->driver->ops.add = &tpacpi_device_add;
587 rc = acpi_bus_register_driver(ibm->acpi->driver);
589 printk(TPACPI_ERR "acpi_bus_register_driver(%s) failed: %d\n",
591 kfree(ibm->acpi->driver);
592 ibm->acpi->driver = NULL;
594 ibm->flags.acpi_driver_registered = 1;
600 /****************************************************************************
601 ****************************************************************************
605 ****************************************************************************
606 ****************************************************************************/
608 static int dispatch_procfs_read(char *page, char **start, off_t off,
609 int count, int *eof, void *data)
611 struct ibm_struct *ibm = data;
614 if (!ibm || !ibm->read)
617 len = ibm->read(page);
621 if (len <= off + count)
633 static int dispatch_procfs_write(struct file *file,
634 const char __user *userbuf,
635 unsigned long count, void *data)
637 struct ibm_struct *ibm = data;
641 if (!ibm || !ibm->write)
644 kernbuf = kmalloc(count + 2, GFP_KERNEL);
648 if (copy_from_user(kernbuf, userbuf, count)) {
654 strcat(kernbuf, ",");
655 ret = ibm->write(kernbuf);
664 static char *next_cmd(char **cmds)
669 while ((end = strchr(start, ',')) && end == start)
681 /****************************************************************************
682 ****************************************************************************
684 * Device model: input, hwmon and platform
686 ****************************************************************************
687 ****************************************************************************/
689 static struct platform_device *tpacpi_pdev;
690 static struct platform_device *tpacpi_sensors_pdev;
691 static struct device *tpacpi_hwmon;
692 static struct input_dev *tpacpi_inputdev;
693 static struct mutex tpacpi_inputdev_send_mutex;
694 static LIST_HEAD(tpacpi_all_drivers);
696 static int tpacpi_suspend_handler(struct platform_device *pdev,
699 struct ibm_struct *ibm, *itmp;
701 list_for_each_entry_safe(ibm, itmp,
705 (ibm->suspend)(state);
711 static int tpacpi_resume_handler(struct platform_device *pdev)
713 struct ibm_struct *ibm, *itmp;
715 list_for_each_entry_safe(ibm, itmp,
725 static struct platform_driver tpacpi_pdriver = {
727 .name = TPACPI_DRVR_NAME,
728 .owner = THIS_MODULE,
730 .suspend = tpacpi_suspend_handler,
731 .resume = tpacpi_resume_handler,
734 static struct platform_driver tpacpi_hwmon_pdriver = {
736 .name = TPACPI_HWMON_DRVR_NAME,
737 .owner = THIS_MODULE,
741 /*************************************************************************
742 * sysfs support helpers
745 struct attribute_set {
746 unsigned int members, max_members;
747 struct attribute_group group;
750 struct attribute_set_obj {
751 struct attribute_set s;
753 } __attribute__((packed));
755 static struct attribute_set *create_attr_set(unsigned int max_members,
758 struct attribute_set_obj *sobj;
760 if (max_members == 0)
763 /* Allocates space for implicit NULL at the end too */
764 sobj = kzalloc(sizeof(struct attribute_set_obj) +
765 max_members * sizeof(struct attribute *),
769 sobj->s.max_members = max_members;
770 sobj->s.group.attrs = &sobj->a;
771 sobj->s.group.name = name;
776 #define destroy_attr_set(_set) \
779 /* not multi-threaded safe, use it in a single thread per set */
780 static int add_to_attr_set(struct attribute_set *s, struct attribute *attr)
785 if (s->members >= s->max_members)
788 s->group.attrs[s->members] = attr;
794 static int add_many_to_attr_set(struct attribute_set *s,
795 struct attribute **attr,
800 for (i = 0; i < count; i++) {
801 res = add_to_attr_set(s, attr[i]);
809 static void delete_attr_set(struct attribute_set *s, struct kobject *kobj)
811 sysfs_remove_group(kobj, &s->group);
815 #define register_attr_set_with_sysfs(_attr_set, _kobj) \
816 sysfs_create_group(_kobj, &_attr_set->group)
818 static int parse_strtoul(const char *buf,
819 unsigned long max, unsigned long *value)
823 while (*buf && isspace(*buf))
825 *value = simple_strtoul(buf, &endp, 0);
826 while (*endp && isspace(*endp))
828 if (*endp || *value > max)
834 static int __init tpacpi_query_bcl_levels(acpi_handle handle)
836 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
837 union acpi_object *obj;
840 if (ACPI_SUCCESS(acpi_evaluate_object(handle, NULL, NULL, &buffer))) {
841 obj = (union acpi_object *)buffer.pointer;
842 if (!obj || (obj->type != ACPI_TYPE_PACKAGE)) {
843 printk(TPACPI_ERR "Unknown _BCL data, "
844 "please report this to %s\n", TPACPI_MAIL);
847 rc = obj->package.count;
853 kfree(buffer.pointer);
857 static acpi_status __init tpacpi_acpi_walk_find_bcl(acpi_handle handle,
858 u32 lvl, void *context, void **rv)
860 char name[ACPI_PATH_SEGMENT_LENGTH];
861 struct acpi_buffer buffer = { sizeof(name), &name };
863 if (ACPI_SUCCESS(acpi_get_name(handle, ACPI_SINGLE_NAME, &buffer)) &&
864 !strncmp("_BCL", name, sizeof(name) - 1)) {
866 **(int **)rv = tpacpi_query_bcl_levels(handle);
867 return AE_CTRL_TERMINATE;
874 * Returns 0 (no ACPI _BCL or _BCL invalid), or size of brightness map
876 static int __init tpacpi_check_std_acpi_brightness_support(void)
880 void *bcl_ptr = &bcl_levels;
883 TPACPI_ACPIHANDLE_INIT(vid);
889 * Search for a _BCL method, and execute it. This is safe on all
890 * ThinkPads, and as a side-effect, _BCL will place a Lenovo Vista
891 * BIOS in ACPI backlight control mode. We do NOT have to care
892 * about calling the _BCL method in an enabled video device, any
893 * will do for our purposes.
896 status = acpi_walk_namespace(ACPI_TYPE_METHOD, vid_handle, 3,
897 tpacpi_acpi_walk_find_bcl, NULL,
900 if (ACPI_SUCCESS(status) && bcl_levels > 2) {
901 tp_features.bright_acpimode = 1;
902 return (bcl_levels - 2);
908 /*************************************************************************
909 * thinkpad-acpi driver attributes
912 /* interface_version --------------------------------------------------- */
913 static ssize_t tpacpi_driver_interface_version_show(
914 struct device_driver *drv,
917 return snprintf(buf, PAGE_SIZE, "0x%08x\n", TPACPI_SYSFS_VERSION);
920 static DRIVER_ATTR(interface_version, S_IRUGO,
921 tpacpi_driver_interface_version_show, NULL);
923 /* debug_level --------------------------------------------------------- */
924 static ssize_t tpacpi_driver_debug_show(struct device_driver *drv,
927 return snprintf(buf, PAGE_SIZE, "0x%04x\n", dbg_level);
930 static ssize_t tpacpi_driver_debug_store(struct device_driver *drv,
931 const char *buf, size_t count)
935 if (parse_strtoul(buf, 0xffff, &t))
943 static DRIVER_ATTR(debug_level, S_IWUSR | S_IRUGO,
944 tpacpi_driver_debug_show, tpacpi_driver_debug_store);
946 /* version ------------------------------------------------------------- */
947 static ssize_t tpacpi_driver_version_show(struct device_driver *drv,
950 return snprintf(buf, PAGE_SIZE, "%s v%s\n",
951 TPACPI_DESC, TPACPI_VERSION);
954 static DRIVER_ATTR(version, S_IRUGO,
955 tpacpi_driver_version_show, NULL);
957 /* --------------------------------------------------------------------- */
959 static struct driver_attribute *tpacpi_driver_attributes[] = {
960 &driver_attr_debug_level, &driver_attr_version,
961 &driver_attr_interface_version,
964 static int __init tpacpi_create_driver_attributes(struct device_driver *drv)
970 while (!res && i < ARRAY_SIZE(tpacpi_driver_attributes)) {
971 res = driver_create_file(drv, tpacpi_driver_attributes[i]);
978 static void tpacpi_remove_driver_attributes(struct device_driver *drv)
982 for (i = 0; i < ARRAY_SIZE(tpacpi_driver_attributes); i++)
983 driver_remove_file(drv, tpacpi_driver_attributes[i]);
986 /****************************************************************************
987 ****************************************************************************
991 ****************************************************************************
992 ****************************************************************************/
994 /*************************************************************************
995 * thinkpad-acpi init subdriver
998 static int __init thinkpad_acpi_driver_init(struct ibm_init_struct *iibm)
1000 printk(TPACPI_INFO "%s v%s\n", TPACPI_DESC, TPACPI_VERSION);
1001 printk(TPACPI_INFO "%s\n", TPACPI_URL);
1003 printk(TPACPI_INFO "ThinkPad BIOS %s, EC %s\n",
1004 (thinkpad_id.bios_version_str) ?
1005 thinkpad_id.bios_version_str : "unknown",
1006 (thinkpad_id.ec_version_str) ?
1007 thinkpad_id.ec_version_str : "unknown");
1009 if (thinkpad_id.vendor && thinkpad_id.model_str)
1010 printk(TPACPI_INFO "%s %s, model %s\n",
1011 (thinkpad_id.vendor == PCI_VENDOR_ID_IBM) ?
1012 "IBM" : ((thinkpad_id.vendor ==
1013 PCI_VENDOR_ID_LENOVO) ?
1014 "Lenovo" : "Unknown vendor"),
1015 thinkpad_id.model_str,
1016 (thinkpad_id.nummodel_str) ?
1017 thinkpad_id.nummodel_str : "unknown");
1022 static int thinkpad_acpi_driver_read(char *p)
1026 len += sprintf(p + len, "driver:\t\t%s\n", TPACPI_DESC);
1027 len += sprintf(p + len, "version:\t%s\n", TPACPI_VERSION);
1032 static struct ibm_struct thinkpad_acpi_driver_data = {
1034 .read = thinkpad_acpi_driver_read,
1037 /*************************************************************************
1041 enum { /* hot key scan codes (derived from ACPI DSDT) */
1042 TP_ACPI_HOTKEYSCAN_FNF1 = 0,
1043 TP_ACPI_HOTKEYSCAN_FNF2,
1044 TP_ACPI_HOTKEYSCAN_FNF3,
1045 TP_ACPI_HOTKEYSCAN_FNF4,
1046 TP_ACPI_HOTKEYSCAN_FNF5,
1047 TP_ACPI_HOTKEYSCAN_FNF6,
1048 TP_ACPI_HOTKEYSCAN_FNF7,
1049 TP_ACPI_HOTKEYSCAN_FNF8,
1050 TP_ACPI_HOTKEYSCAN_FNF9,
1051 TP_ACPI_HOTKEYSCAN_FNF10,
1052 TP_ACPI_HOTKEYSCAN_FNF11,
1053 TP_ACPI_HOTKEYSCAN_FNF12,
1054 TP_ACPI_HOTKEYSCAN_FNBACKSPACE,
1055 TP_ACPI_HOTKEYSCAN_FNINSERT,
1056 TP_ACPI_HOTKEYSCAN_FNDELETE,
1057 TP_ACPI_HOTKEYSCAN_FNHOME,
1058 TP_ACPI_HOTKEYSCAN_FNEND,
1059 TP_ACPI_HOTKEYSCAN_FNPAGEUP,
1060 TP_ACPI_HOTKEYSCAN_FNPAGEDOWN,
1061 TP_ACPI_HOTKEYSCAN_FNSPACE,
1062 TP_ACPI_HOTKEYSCAN_VOLUMEUP,
1063 TP_ACPI_HOTKEYSCAN_VOLUMEDOWN,
1064 TP_ACPI_HOTKEYSCAN_MUTE,
1065 TP_ACPI_HOTKEYSCAN_THINKPAD,
1068 enum { /* Keys available through NVRAM polling */
1069 TPACPI_HKEY_NVRAM_KNOWN_MASK = 0x00fb88c0U,
1070 TPACPI_HKEY_NVRAM_GOOD_MASK = 0x00fb8000U,
1073 enum { /* Positions of some of the keys in hotkey masks */
1074 TP_ACPI_HKEY_DISPSWTCH_MASK = 1 << TP_ACPI_HOTKEYSCAN_FNF7,
1075 TP_ACPI_HKEY_DISPXPAND_MASK = 1 << TP_ACPI_HOTKEYSCAN_FNF8,
1076 TP_ACPI_HKEY_HIBERNATE_MASK = 1 << TP_ACPI_HOTKEYSCAN_FNF12,
1077 TP_ACPI_HKEY_BRGHTUP_MASK = 1 << TP_ACPI_HOTKEYSCAN_FNHOME,
1078 TP_ACPI_HKEY_BRGHTDWN_MASK = 1 << TP_ACPI_HOTKEYSCAN_FNEND,
1079 TP_ACPI_HKEY_THNKLGHT_MASK = 1 << TP_ACPI_HOTKEYSCAN_FNPAGEUP,
1080 TP_ACPI_HKEY_ZOOM_MASK = 1 << TP_ACPI_HOTKEYSCAN_FNSPACE,
1081 TP_ACPI_HKEY_VOLUP_MASK = 1 << TP_ACPI_HOTKEYSCAN_VOLUMEUP,
1082 TP_ACPI_HKEY_VOLDWN_MASK = 1 << TP_ACPI_HOTKEYSCAN_VOLUMEDOWN,
1083 TP_ACPI_HKEY_MUTE_MASK = 1 << TP_ACPI_HOTKEYSCAN_MUTE,
1084 TP_ACPI_HKEY_THINKPAD_MASK = 1 << TP_ACPI_HOTKEYSCAN_THINKPAD,
1087 enum { /* NVRAM to ACPI HKEY group map */
1088 TP_NVRAM_HKEY_GROUP_HK2 = TP_ACPI_HKEY_THINKPAD_MASK |
1089 TP_ACPI_HKEY_ZOOM_MASK |
1090 TP_ACPI_HKEY_DISPSWTCH_MASK |
1091 TP_ACPI_HKEY_HIBERNATE_MASK,
1092 TP_NVRAM_HKEY_GROUP_BRIGHTNESS = TP_ACPI_HKEY_BRGHTUP_MASK |
1093 TP_ACPI_HKEY_BRGHTDWN_MASK,
1094 TP_NVRAM_HKEY_GROUP_VOLUME = TP_ACPI_HKEY_VOLUP_MASK |
1095 TP_ACPI_HKEY_VOLDWN_MASK |
1096 TP_ACPI_HKEY_MUTE_MASK,
1099 #ifdef CONFIG_THINKPAD_ACPI_HOTKEY_POLL
1100 struct tp_nvram_state {
1101 u16 thinkpad_toggle:1;
1103 u16 display_toggle:1;
1104 u16 thinklight_toggle:1;
1105 u16 hibernate_toggle:1;
1106 u16 displayexp_toggle:1;
1107 u16 display_state:1;
1108 u16 brightness_toggle:1;
1109 u16 volume_toggle:1;
1112 u8 brightness_level;
1116 static struct task_struct *tpacpi_hotkey_task;
1117 static u32 hotkey_source_mask; /* bit mask 0=ACPI,1=NVRAM */
1118 static int hotkey_poll_freq = 10; /* Hz */
1119 static struct mutex hotkey_thread_mutex;
1120 static struct mutex hotkey_thread_data_mutex;
1121 static unsigned int hotkey_config_change;
1123 #else /* CONFIG_THINKPAD_ACPI_HOTKEY_POLL */
1125 #define hotkey_source_mask 0U
1127 #endif /* CONFIG_THINKPAD_ACPI_HOTKEY_POLL */
1129 static struct mutex hotkey_mutex;
1131 static enum { /* Reasons for waking up */
1132 TP_ACPI_WAKEUP_NONE = 0, /* None or unknown */
1133 TP_ACPI_WAKEUP_BAYEJ, /* Bay ejection request */
1134 TP_ACPI_WAKEUP_UNDOCK, /* Undock request */
1135 } hotkey_wakeup_reason;
1137 static int hotkey_autosleep_ack;
1139 static int hotkey_orig_status;
1140 static u32 hotkey_orig_mask;
1141 static u32 hotkey_all_mask;
1142 static u32 hotkey_reserved_mask;
1143 static u32 hotkey_mask;
1145 static unsigned int hotkey_report_mode;
1147 static u16 *hotkey_keycode_map;
1149 static struct attribute_set *hotkey_dev_attributes;
1151 #ifdef CONFIG_THINKPAD_ACPI_HOTKEY_POLL
1152 #define HOTKEY_CONFIG_CRITICAL_START \
1154 mutex_lock(&hotkey_thread_data_mutex); \
1155 hotkey_config_change++; \
1157 #define HOTKEY_CONFIG_CRITICAL_END \
1158 mutex_unlock(&hotkey_thread_data_mutex);
1160 #define HOTKEY_CONFIG_CRITICAL_START
1161 #define HOTKEY_CONFIG_CRITICAL_END
1162 #endif /* CONFIG_THINKPAD_ACPI_HOTKEY_POLL */
1164 /* HKEY.MHKG() return bits */
1165 #define TP_HOTKEY_TABLET_MASK (1 << 3)
1167 static int hotkey_get_wlsw(int *status)
1169 if (!acpi_evalf(hkey_handle, status, "WLSW", "d"))
1174 static int hotkey_get_tablet_mode(int *status)
1178 if (!acpi_evalf(hkey_handle, &s, "MHKG", "d"))
1181 *status = ((s & TP_HOTKEY_TABLET_MASK) != 0);
1186 * Call with hotkey_mutex held
1188 static int hotkey_mask_get(void)
1192 if (tp_features.hotkey_mask) {
1193 if (!acpi_evalf(hkey_handle, &m, "DHKN", "d"))
1196 hotkey_mask = m | (hotkey_source_mask & hotkey_mask);
1202 * Call with hotkey_mutex held
1204 static int hotkey_mask_set(u32 mask)
1209 if (tp_features.hotkey_mask) {
1210 if (!tp_warned.hotkey_mask_ff &&
1211 (mask == 0xffff || mask == 0xffffff ||
1212 mask == 0xffffffff)) {
1213 tp_warned.hotkey_mask_ff = 1;
1214 printk(TPACPI_NOTICE
1215 "setting the hotkey mask to 0x%08x is likely "
1216 "not the best way to go about it\n", mask);
1217 printk(TPACPI_NOTICE
1218 "please consider using the driver defaults, "
1219 "and refer to up-to-date thinkpad-acpi "
1223 HOTKEY_CONFIG_CRITICAL_START
1224 for (i = 0; i < 32; i++) {
1226 /* enable in firmware mask only keys not in NVRAM
1227 * mode, but enable the key in the cached hotkey_mask
1228 * regardless of mode, or the key will end up
1229 * disabled by hotkey_mask_get() */
1230 if (!acpi_evalf(hkey_handle,
1231 NULL, "MHKM", "vdd", i + 1,
1232 !!((mask & ~hotkey_source_mask) & m))) {
1236 hotkey_mask = (hotkey_mask & ~m) | (mask & m);
1239 HOTKEY_CONFIG_CRITICAL_END
1241 /* hotkey_mask_get must be called unconditionally below */
1242 if (!hotkey_mask_get() && !rc &&
1243 (hotkey_mask & ~hotkey_source_mask) !=
1244 (mask & ~hotkey_source_mask)) {
1245 printk(TPACPI_NOTICE
1246 "requested hot key mask 0x%08x, but "
1247 "firmware forced it to 0x%08x\n",
1251 #ifdef CONFIG_THINKPAD_ACPI_HOTKEY_POLL
1252 HOTKEY_CONFIG_CRITICAL_START
1253 hotkey_mask = mask & hotkey_source_mask;
1254 HOTKEY_CONFIG_CRITICAL_END
1256 if (hotkey_mask != mask) {
1257 printk(TPACPI_NOTICE
1258 "requested hot key mask 0x%08x, "
1259 "forced to 0x%08x (NVRAM poll mask is "
1260 "0x%08x): no firmware mask support\n",
1261 mask, hotkey_mask, hotkey_source_mask);
1266 #endif /* CONFIG_THINKPAD_ACPI_HOTKEY_POLL */
1272 static int hotkey_status_get(int *status)
1274 if (!acpi_evalf(hkey_handle, status, "DHKC", "d"))
1280 static int hotkey_status_set(int status)
1282 if (!acpi_evalf(hkey_handle, NULL, "MHKC", "vd", status))
1288 static void tpacpi_input_send_radiosw(void)
1292 if (tp_features.hotkey_wlsw && !hotkey_get_wlsw(&wlsw)) {
1293 mutex_lock(&tpacpi_inputdev_send_mutex);
1295 input_report_switch(tpacpi_inputdev,
1297 input_sync(tpacpi_inputdev);
1299 mutex_unlock(&tpacpi_inputdev_send_mutex);
1303 static void tpacpi_input_send_tabletsw(void)
1307 if (tp_features.hotkey_tablet &&
1308 !hotkey_get_tablet_mode(&state)) {
1309 mutex_lock(&tpacpi_inputdev_send_mutex);
1311 input_report_switch(tpacpi_inputdev,
1312 SW_TABLET_MODE, !!state);
1313 input_sync(tpacpi_inputdev);
1315 mutex_unlock(&tpacpi_inputdev_send_mutex);
1319 static void tpacpi_input_send_key(unsigned int scancode)
1321 unsigned int keycode;
1323 keycode = hotkey_keycode_map[scancode];
1325 if (keycode != KEY_RESERVED) {
1326 mutex_lock(&tpacpi_inputdev_send_mutex);
1328 input_report_key(tpacpi_inputdev, keycode, 1);
1329 if (keycode == KEY_UNKNOWN)
1330 input_event(tpacpi_inputdev, EV_MSC, MSC_SCAN,
1332 input_sync(tpacpi_inputdev);
1334 input_report_key(tpacpi_inputdev, keycode, 0);
1335 if (keycode == KEY_UNKNOWN)
1336 input_event(tpacpi_inputdev, EV_MSC, MSC_SCAN,
1338 input_sync(tpacpi_inputdev);
1340 mutex_unlock(&tpacpi_inputdev_send_mutex);
1344 #ifdef CONFIG_THINKPAD_ACPI_HOTKEY_POLL
1345 static struct tp_acpi_drv_struct ibm_hotkey_acpidriver;
1347 static void tpacpi_hotkey_send_key(unsigned int scancode)
1349 tpacpi_input_send_key(scancode);
1350 if (hotkey_report_mode < 2) {
1351 acpi_bus_generate_proc_event(ibm_hotkey_acpidriver.device,
1352 0x80, 0x1001 + scancode);
1356 static void hotkey_read_nvram(struct tp_nvram_state *n, u32 m)
1360 if (m & TP_NVRAM_HKEY_GROUP_HK2) {
1361 d = nvram_read_byte(TP_NVRAM_ADDR_HK2);
1362 n->thinkpad_toggle = !!(d & TP_NVRAM_MASK_HKT_THINKPAD);
1363 n->zoom_toggle = !!(d & TP_NVRAM_MASK_HKT_ZOOM);
1364 n->display_toggle = !!(d & TP_NVRAM_MASK_HKT_DISPLAY);
1365 n->hibernate_toggle = !!(d & TP_NVRAM_MASK_HKT_HIBERNATE);
1367 if (m & TP_ACPI_HKEY_THNKLGHT_MASK) {
1368 d = nvram_read_byte(TP_NVRAM_ADDR_THINKLIGHT);
1369 n->thinklight_toggle = !!(d & TP_NVRAM_MASK_THINKLIGHT);
1371 if (m & TP_ACPI_HKEY_DISPXPAND_MASK) {
1372 d = nvram_read_byte(TP_NVRAM_ADDR_VIDEO);
1373 n->displayexp_toggle =
1374 !!(d & TP_NVRAM_MASK_HKT_DISPEXPND);
1376 if (m & TP_NVRAM_HKEY_GROUP_BRIGHTNESS) {
1377 d = nvram_read_byte(TP_NVRAM_ADDR_BRIGHTNESS);
1378 n->brightness_level = (d & TP_NVRAM_MASK_LEVEL_BRIGHTNESS)
1379 >> TP_NVRAM_POS_LEVEL_BRIGHTNESS;
1380 n->brightness_toggle =
1381 !!(d & TP_NVRAM_MASK_HKT_BRIGHTNESS);
1383 if (m & TP_NVRAM_HKEY_GROUP_VOLUME) {
1384 d = nvram_read_byte(TP_NVRAM_ADDR_MIXER);
1385 n->volume_level = (d & TP_NVRAM_MASK_LEVEL_VOLUME)
1386 >> TP_NVRAM_POS_LEVEL_VOLUME;
1387 n->mute = !!(d & TP_NVRAM_MASK_MUTE);
1388 n->volume_toggle = !!(d & TP_NVRAM_MASK_HKT_VOLUME);
1392 #define TPACPI_COMPARE_KEY(__scancode, __member) \
1394 if ((mask & (1 << __scancode)) && \
1395 oldn->__member != newn->__member) \
1396 tpacpi_hotkey_send_key(__scancode); \
1399 #define TPACPI_MAY_SEND_KEY(__scancode) \
1400 do { if (mask & (1 << __scancode)) \
1401 tpacpi_hotkey_send_key(__scancode); } while (0)
1403 static void hotkey_compare_and_issue_event(struct tp_nvram_state *oldn,
1404 struct tp_nvram_state *newn,
1407 TPACPI_COMPARE_KEY(TP_ACPI_HOTKEYSCAN_THINKPAD, thinkpad_toggle);
1408 TPACPI_COMPARE_KEY(TP_ACPI_HOTKEYSCAN_FNSPACE, zoom_toggle);
1409 TPACPI_COMPARE_KEY(TP_ACPI_HOTKEYSCAN_FNF7, display_toggle);
1410 TPACPI_COMPARE_KEY(TP_ACPI_HOTKEYSCAN_FNF12, hibernate_toggle);
1412 TPACPI_COMPARE_KEY(TP_ACPI_HOTKEYSCAN_FNPAGEUP, thinklight_toggle);
1414 TPACPI_COMPARE_KEY(TP_ACPI_HOTKEYSCAN_FNF8, displayexp_toggle);
1417 if (oldn->volume_toggle != newn->volume_toggle) {
1418 if (oldn->mute != newn->mute) {
1419 TPACPI_MAY_SEND_KEY(TP_ACPI_HOTKEYSCAN_MUTE);
1421 if (oldn->volume_level > newn->volume_level) {
1422 TPACPI_MAY_SEND_KEY(TP_ACPI_HOTKEYSCAN_VOLUMEDOWN);
1423 } else if (oldn->volume_level < newn->volume_level) {
1424 TPACPI_MAY_SEND_KEY(TP_ACPI_HOTKEYSCAN_VOLUMEUP);
1425 } else if (oldn->mute == newn->mute) {
1426 /* repeated key presses that didn't change state */
1428 TPACPI_MAY_SEND_KEY(TP_ACPI_HOTKEYSCAN_MUTE);
1429 } else if (newn->volume_level != 0) {
1430 TPACPI_MAY_SEND_KEY(TP_ACPI_HOTKEYSCAN_VOLUMEUP);
1432 TPACPI_MAY_SEND_KEY(TP_ACPI_HOTKEYSCAN_VOLUMEDOWN);
1437 /* handle brightness */
1438 if (oldn->brightness_toggle != newn->brightness_toggle) {
1439 if (oldn->brightness_level < newn->brightness_level) {
1440 TPACPI_MAY_SEND_KEY(TP_ACPI_HOTKEYSCAN_FNHOME);
1441 } else if (oldn->brightness_level > newn->brightness_level) {
1442 TPACPI_MAY_SEND_KEY(TP_ACPI_HOTKEYSCAN_FNEND);
1444 /* repeated key presses that didn't change state */
1445 if (newn->brightness_level != 0) {
1446 TPACPI_MAY_SEND_KEY(TP_ACPI_HOTKEYSCAN_FNHOME);
1448 TPACPI_MAY_SEND_KEY(TP_ACPI_HOTKEYSCAN_FNEND);
1454 #undef TPACPI_COMPARE_KEY
1455 #undef TPACPI_MAY_SEND_KEY
1457 static int hotkey_kthread(void *data)
1459 struct tp_nvram_state s[2];
1461 unsigned int si, so;
1463 unsigned int change_detector, must_reset;
1465 mutex_lock(&hotkey_thread_mutex);
1467 if (tpacpi_lifecycle == TPACPI_LIFE_EXITING)
1476 /* Initial state for compares */
1477 mutex_lock(&hotkey_thread_data_mutex);
1478 change_detector = hotkey_config_change;
1479 mask = hotkey_source_mask & hotkey_mask;
1480 mutex_unlock(&hotkey_thread_data_mutex);
1481 hotkey_read_nvram(&s[so], mask);
1483 while (!kthread_should_stop() && hotkey_poll_freq) {
1485 t = 1000/hotkey_poll_freq;
1486 t = msleep_interruptible(t);
1487 if (unlikely(kthread_should_stop()))
1489 must_reset = try_to_freeze();
1490 if (t > 0 && !must_reset)
1493 mutex_lock(&hotkey_thread_data_mutex);
1494 if (must_reset || hotkey_config_change != change_detector) {
1495 /* forget old state on thaw or config change */
1498 change_detector = hotkey_config_change;
1500 mask = hotkey_source_mask & hotkey_mask;
1501 mutex_unlock(&hotkey_thread_data_mutex);
1504 hotkey_read_nvram(&s[si], mask);
1505 if (likely(si != so)) {
1506 hotkey_compare_and_issue_event(&s[so], &s[si],
1516 mutex_unlock(&hotkey_thread_mutex);
1520 static void hotkey_poll_stop_sync(void)
1522 if (tpacpi_hotkey_task) {
1523 if (frozen(tpacpi_hotkey_task) ||
1524 freezing(tpacpi_hotkey_task))
1525 thaw_process(tpacpi_hotkey_task);
1527 kthread_stop(tpacpi_hotkey_task);
1528 tpacpi_hotkey_task = NULL;
1529 mutex_lock(&hotkey_thread_mutex);
1530 /* at this point, the thread did exit */
1531 mutex_unlock(&hotkey_thread_mutex);
1535 /* call with hotkey_mutex held */
1536 static void hotkey_poll_setup(int may_warn)
1538 if ((hotkey_source_mask & hotkey_mask) != 0 &&
1539 hotkey_poll_freq > 0 &&
1540 (tpacpi_inputdev->users > 0 || hotkey_report_mode < 2)) {
1541 if (!tpacpi_hotkey_task) {
1542 tpacpi_hotkey_task = kthread_run(hotkey_kthread,
1543 NULL, TPACPI_NVRAM_KTHREAD_NAME);
1544 if (IS_ERR(tpacpi_hotkey_task)) {
1545 tpacpi_hotkey_task = NULL;
1547 "could not create kernel thread "
1548 "for hotkey polling\n");
1552 hotkey_poll_stop_sync();
1554 hotkey_source_mask != 0 && hotkey_poll_freq == 0) {
1555 printk(TPACPI_NOTICE
1556 "hot keys 0x%08x require polling, "
1557 "which is currently disabled\n",
1558 hotkey_source_mask);
1563 static void hotkey_poll_setup_safe(int may_warn)
1565 mutex_lock(&hotkey_mutex);
1566 hotkey_poll_setup(may_warn);
1567 mutex_unlock(&hotkey_mutex);
1570 #else /* CONFIG_THINKPAD_ACPI_HOTKEY_POLL */
1572 static void hotkey_poll_setup_safe(int __unused)
1576 #endif /* CONFIG_THINKPAD_ACPI_HOTKEY_POLL */
1578 static int hotkey_inputdev_open(struct input_dev *dev)
1580 switch (tpacpi_lifecycle) {
1581 case TPACPI_LIFE_INIT:
1583 * hotkey_init will call hotkey_poll_setup_safe
1584 * at the appropriate moment
1587 case TPACPI_LIFE_EXITING:
1589 case TPACPI_LIFE_RUNNING:
1590 hotkey_poll_setup_safe(0);
1594 /* Should only happen if tpacpi_lifecycle is corrupt */
1599 static void hotkey_inputdev_close(struct input_dev *dev)
1601 /* disable hotkey polling when possible */
1602 if (tpacpi_lifecycle == TPACPI_LIFE_RUNNING)
1603 hotkey_poll_setup_safe(0);
1606 /* sysfs hotkey enable ------------------------------------------------- */
1607 static ssize_t hotkey_enable_show(struct device *dev,
1608 struct device_attribute *attr,
1613 res = hotkey_status_get(&status);
1617 return snprintf(buf, PAGE_SIZE, "%d\n", status);
1620 static ssize_t hotkey_enable_store(struct device *dev,
1621 struct device_attribute *attr,
1622 const char *buf, size_t count)
1627 if (parse_strtoul(buf, 1, &t))
1630 res = hotkey_status_set(t);
1632 return (res) ? res : count;
1635 static struct device_attribute dev_attr_hotkey_enable =
1636 __ATTR(hotkey_enable, S_IWUSR | S_IRUGO,
1637 hotkey_enable_show, hotkey_enable_store);
1639 /* sysfs hotkey mask --------------------------------------------------- */
1640 static ssize_t hotkey_mask_show(struct device *dev,
1641 struct device_attribute *attr,
1646 if (mutex_lock_interruptible(&hotkey_mutex))
1647 return -ERESTARTSYS;
1648 res = hotkey_mask_get();
1649 mutex_unlock(&hotkey_mutex);
1652 res : snprintf(buf, PAGE_SIZE, "0x%08x\n", hotkey_mask);
1655 static ssize_t hotkey_mask_store(struct device *dev,
1656 struct device_attribute *attr,
1657 const char *buf, size_t count)
1662 if (parse_strtoul(buf, 0xffffffffUL, &t))
1665 if (mutex_lock_interruptible(&hotkey_mutex))
1666 return -ERESTARTSYS;
1668 res = hotkey_mask_set(t);
1670 #ifdef CONFIG_THINKPAD_ACPI_HOTKEY_POLL
1671 hotkey_poll_setup(1);
1674 mutex_unlock(&hotkey_mutex);
1676 return (res) ? res : count;
1679 static struct device_attribute dev_attr_hotkey_mask =
1680 __ATTR(hotkey_mask, S_IWUSR | S_IRUGO,
1681 hotkey_mask_show, hotkey_mask_store);
1683 /* sysfs hotkey bios_enabled ------------------------------------------- */
1684 static ssize_t hotkey_bios_enabled_show(struct device *dev,
1685 struct device_attribute *attr,
1688 return snprintf(buf, PAGE_SIZE, "%d\n", hotkey_orig_status);
1691 static struct device_attribute dev_attr_hotkey_bios_enabled =
1692 __ATTR(hotkey_bios_enabled, S_IRUGO, hotkey_bios_enabled_show, NULL);
1694 /* sysfs hotkey bios_mask ---------------------------------------------- */
1695 static ssize_t hotkey_bios_mask_show(struct device *dev,
1696 struct device_attribute *attr,
1699 return snprintf(buf, PAGE_SIZE, "0x%08x\n", hotkey_orig_mask);
1702 static struct device_attribute dev_attr_hotkey_bios_mask =
1703 __ATTR(hotkey_bios_mask, S_IRUGO, hotkey_bios_mask_show, NULL);
1705 /* sysfs hotkey all_mask ----------------------------------------------- */
1706 static ssize_t hotkey_all_mask_show(struct device *dev,
1707 struct device_attribute *attr,
1710 return snprintf(buf, PAGE_SIZE, "0x%08x\n",
1711 hotkey_all_mask | hotkey_source_mask);
1714 static struct device_attribute dev_attr_hotkey_all_mask =
1715 __ATTR(hotkey_all_mask, S_IRUGO, hotkey_all_mask_show, NULL);
1717 /* sysfs hotkey recommended_mask --------------------------------------- */
1718 static ssize_t hotkey_recommended_mask_show(struct device *dev,
1719 struct device_attribute *attr,
1722 return snprintf(buf, PAGE_SIZE, "0x%08x\n",
1723 (hotkey_all_mask | hotkey_source_mask)
1724 & ~hotkey_reserved_mask);
1727 static struct device_attribute dev_attr_hotkey_recommended_mask =
1728 __ATTR(hotkey_recommended_mask, S_IRUGO,
1729 hotkey_recommended_mask_show, NULL);
1731 #ifdef CONFIG_THINKPAD_ACPI_HOTKEY_POLL
1733 /* sysfs hotkey hotkey_source_mask ------------------------------------- */
1734 static ssize_t hotkey_source_mask_show(struct device *dev,
1735 struct device_attribute *attr,
1738 return snprintf(buf, PAGE_SIZE, "0x%08x\n", hotkey_source_mask);
1741 static ssize_t hotkey_source_mask_store(struct device *dev,
1742 struct device_attribute *attr,
1743 const char *buf, size_t count)
1747 if (parse_strtoul(buf, 0xffffffffUL, &t) ||
1748 ((t & ~TPACPI_HKEY_NVRAM_KNOWN_MASK) != 0))
1751 if (mutex_lock_interruptible(&hotkey_mutex))
1752 return -ERESTARTSYS;
1754 HOTKEY_CONFIG_CRITICAL_START
1755 hotkey_source_mask = t;
1756 HOTKEY_CONFIG_CRITICAL_END
1758 hotkey_poll_setup(1);
1760 mutex_unlock(&hotkey_mutex);
1765 static struct device_attribute dev_attr_hotkey_source_mask =
1766 __ATTR(hotkey_source_mask, S_IWUSR | S_IRUGO,
1767 hotkey_source_mask_show, hotkey_source_mask_store);
1769 /* sysfs hotkey hotkey_poll_freq --------------------------------------- */
1770 static ssize_t hotkey_poll_freq_show(struct device *dev,
1771 struct device_attribute *attr,
1774 return snprintf(buf, PAGE_SIZE, "%d\n", hotkey_poll_freq);
1777 static ssize_t hotkey_poll_freq_store(struct device *dev,
1778 struct device_attribute *attr,
1779 const char *buf, size_t count)
1783 if (parse_strtoul(buf, 25, &t))
1786 if (mutex_lock_interruptible(&hotkey_mutex))
1787 return -ERESTARTSYS;
1789 hotkey_poll_freq = t;
1791 hotkey_poll_setup(1);
1792 mutex_unlock(&hotkey_mutex);
1797 static struct device_attribute dev_attr_hotkey_poll_freq =
1798 __ATTR(hotkey_poll_freq, S_IWUSR | S_IRUGO,
1799 hotkey_poll_freq_show, hotkey_poll_freq_store);
1801 #endif /* CONFIG_THINKPAD_ACPI_HOTKEY_POLL */
1803 /* sysfs hotkey radio_sw (pollable) ------------------------------------ */
1804 static ssize_t hotkey_radio_sw_show(struct device *dev,
1805 struct device_attribute *attr,
1809 res = hotkey_get_wlsw(&s);
1813 return snprintf(buf, PAGE_SIZE, "%d\n", !!s);
1816 static struct device_attribute dev_attr_hotkey_radio_sw =
1817 __ATTR(hotkey_radio_sw, S_IRUGO, hotkey_radio_sw_show, NULL);
1819 static void hotkey_radio_sw_notify_change(void)
1821 if (tp_features.hotkey_wlsw)
1822 sysfs_notify(&tpacpi_pdev->dev.kobj, NULL,
1826 /* sysfs hotkey tablet mode (pollable) --------------------------------- */
1827 static ssize_t hotkey_tablet_mode_show(struct device *dev,
1828 struct device_attribute *attr,
1832 res = hotkey_get_tablet_mode(&s);
1836 return snprintf(buf, PAGE_SIZE, "%d\n", !!s);
1839 static struct device_attribute dev_attr_hotkey_tablet_mode =
1840 __ATTR(hotkey_tablet_mode, S_IRUGO, hotkey_tablet_mode_show, NULL);
1842 static void hotkey_tablet_mode_notify_change(void)
1844 if (tp_features.hotkey_tablet)
1845 sysfs_notify(&tpacpi_pdev->dev.kobj, NULL,
1846 "hotkey_tablet_mode");
1849 /* sysfs hotkey report_mode -------------------------------------------- */
1850 static ssize_t hotkey_report_mode_show(struct device *dev,
1851 struct device_attribute *attr,
1854 return snprintf(buf, PAGE_SIZE, "%d\n",
1855 (hotkey_report_mode != 0) ? hotkey_report_mode : 1);
1858 static struct device_attribute dev_attr_hotkey_report_mode =
1859 __ATTR(hotkey_report_mode, S_IRUGO, hotkey_report_mode_show, NULL);
1861 /* sysfs wakeup reason (pollable) -------------------------------------- */
1862 static ssize_t hotkey_wakeup_reason_show(struct device *dev,
1863 struct device_attribute *attr,
1866 return snprintf(buf, PAGE_SIZE, "%d\n", hotkey_wakeup_reason);
1869 static struct device_attribute dev_attr_hotkey_wakeup_reason =
1870 __ATTR(wakeup_reason, S_IRUGO, hotkey_wakeup_reason_show, NULL);
1872 static void hotkey_wakeup_reason_notify_change(void)
1874 if (tp_features.hotkey_mask)
1875 sysfs_notify(&tpacpi_pdev->dev.kobj, NULL,
1879 /* sysfs wakeup hotunplug_complete (pollable) -------------------------- */
1880 static ssize_t hotkey_wakeup_hotunplug_complete_show(struct device *dev,
1881 struct device_attribute *attr,
1884 return snprintf(buf, PAGE_SIZE, "%d\n", hotkey_autosleep_ack);
1887 static struct device_attribute dev_attr_hotkey_wakeup_hotunplug_complete =
1888 __ATTR(wakeup_hotunplug_complete, S_IRUGO,
1889 hotkey_wakeup_hotunplug_complete_show, NULL);
1891 static void hotkey_wakeup_hotunplug_complete_notify_change(void)
1893 if (tp_features.hotkey_mask)
1894 sysfs_notify(&tpacpi_pdev->dev.kobj, NULL,
1895 "wakeup_hotunplug_complete");
1898 /* --------------------------------------------------------------------- */
1900 static struct attribute *hotkey_attributes[] __initdata = {
1901 &dev_attr_hotkey_enable.attr,
1902 &dev_attr_hotkey_bios_enabled.attr,
1903 &dev_attr_hotkey_report_mode.attr,
1904 #ifdef CONFIG_THINKPAD_ACPI_HOTKEY_POLL
1905 &dev_attr_hotkey_mask.attr,
1906 &dev_attr_hotkey_all_mask.attr,
1907 &dev_attr_hotkey_recommended_mask.attr,
1908 &dev_attr_hotkey_source_mask.attr,
1909 &dev_attr_hotkey_poll_freq.attr,
1913 static struct attribute *hotkey_mask_attributes[] __initdata = {
1914 &dev_attr_hotkey_bios_mask.attr,
1915 #ifndef CONFIG_THINKPAD_ACPI_HOTKEY_POLL
1916 &dev_attr_hotkey_mask.attr,
1917 &dev_attr_hotkey_all_mask.attr,
1918 &dev_attr_hotkey_recommended_mask.attr,
1920 &dev_attr_hotkey_wakeup_reason.attr,
1921 &dev_attr_hotkey_wakeup_hotunplug_complete.attr,
1924 static int __init hotkey_init(struct ibm_init_struct *iibm)
1926 /* Requirements for changing the default keymaps:
1928 * 1. Many of the keys are mapped to KEY_RESERVED for very
1929 * good reasons. Do not change them unless you have deep
1930 * knowledge on the IBM and Lenovo ThinkPad firmware for
1931 * the various ThinkPad models. The driver behaves
1932 * differently for KEY_RESERVED: such keys have their
1933 * hot key mask *unset* in mask_recommended, and also
1934 * in the initial hot key mask programmed into the
1935 * firmware at driver load time, which means the firm-
1936 * ware may react very differently if you change them to
1939 * 2. You must be subscribed to the linux-thinkpad and
1940 * ibm-acpi-devel mailing lists, and you should read the
1941 * list archives since 2007 if you want to change the
1942 * keymaps. This requirement exists so that you will
1943 * know the past history of problems with the thinkpad-
1944 * acpi driver keymaps, and also that you will be
1945 * listening to any bug reports;
1947 * 3. Do not send thinkpad-acpi specific patches directly to
1948 * for merging, *ever*. Send them to the linux-acpi
1949 * mailinglist for comments. Merging is to be done only
1950 * through acpi-test and the ACPI maintainer.
1952 * If the above is too much to ask, don't change the keymap.
1953 * Ask the thinkpad-acpi maintainer to do it, instead.
1955 static u16 ibm_keycode_map[] __initdata = {
1956 /* Scan Codes 0x00 to 0x0B: ACPI HKEY FN+F1..F12 */
1957 KEY_FN_F1, KEY_FN_F2, KEY_COFFEE, KEY_SLEEP,
1958 KEY_WLAN, KEY_FN_F6, KEY_SWITCHVIDEOMODE, KEY_FN_F8,
1959 KEY_FN_F9, KEY_FN_F10, KEY_FN_F11, KEY_SUSPEND,
1961 /* Scan codes 0x0C to 0x1F: Other ACPI HKEY hot keys */
1962 KEY_UNKNOWN, /* 0x0C: FN+BACKSPACE */
1963 KEY_UNKNOWN, /* 0x0D: FN+INSERT */
1964 KEY_UNKNOWN, /* 0x0E: FN+DELETE */
1966 /* brightness: firmware always reacts to them, unless
1967 * X.org did some tricks in the radeon BIOS scratch
1968 * registers of *some* models */
1969 KEY_RESERVED, /* 0x0F: FN+HOME (brightness up) */
1970 KEY_RESERVED, /* 0x10: FN+END (brightness down) */
1972 /* Thinklight: firmware always react to it */
1973 KEY_RESERVED, /* 0x11: FN+PGUP (thinklight toggle) */
1975 KEY_UNKNOWN, /* 0x12: FN+PGDOWN */
1976 KEY_ZOOM, /* 0x13: FN+SPACE (zoom) */
1978 /* Volume: firmware always react to it and reprograms
1979 * the built-in *extra* mixer. Never map it to control
1980 * another mixer by default. */
1981 KEY_RESERVED, /* 0x14: VOLUME UP */
1982 KEY_RESERVED, /* 0x15: VOLUME DOWN */
1983 KEY_RESERVED, /* 0x16: MUTE */
1985 KEY_VENDOR, /* 0x17: Thinkpad/AccessIBM/Lenovo */
1987 /* (assignments unknown, please report if found) */
1988 KEY_UNKNOWN, KEY_UNKNOWN, KEY_UNKNOWN, KEY_UNKNOWN,
1989 KEY_UNKNOWN, KEY_UNKNOWN, KEY_UNKNOWN, KEY_UNKNOWN,
1991 static u16 lenovo_keycode_map[] __initdata = {
1992 /* Scan Codes 0x00 to 0x0B: ACPI HKEY FN+F1..F12 */
1993 KEY_FN_F1, KEY_COFFEE, KEY_BATTERY, KEY_SLEEP,
1994 KEY_WLAN, KEY_FN_F6, KEY_SWITCHVIDEOMODE, KEY_FN_F8,
1995 KEY_FN_F9, KEY_FN_F10, KEY_FN_F11, KEY_SUSPEND,
1997 /* Scan codes 0x0C to 0x1F: Other ACPI HKEY hot keys */
1998 KEY_UNKNOWN, /* 0x0C: FN+BACKSPACE */
1999 KEY_UNKNOWN, /* 0x0D: FN+INSERT */
2000 KEY_UNKNOWN, /* 0x0E: FN+DELETE */
2002 /* These either have to go through ACPI video, or
2003 * act like in the IBM ThinkPads, so don't ever
2004 * enable them by default */
2005 KEY_RESERVED, /* 0x0F: FN+HOME (brightness up) */
2006 KEY_RESERVED, /* 0x10: FN+END (brightness down) */
2008 KEY_RESERVED, /* 0x11: FN+PGUP (thinklight toggle) */
2010 KEY_UNKNOWN, /* 0x12: FN+PGDOWN */
2011 KEY_ZOOM, /* 0x13: FN+SPACE (zoom) */
2013 /* Volume: z60/z61, T60 (BIOS version?): firmware always
2014 * react to it and reprograms the built-in *extra* mixer.
2015 * Never map it to control another mixer by default.
2017 * T60?, T61, R60?, R61: firmware and EC tries to send
2018 * these over the regular keyboard, so these are no-ops,
2019 * but there are still weird bugs re. MUTE, so do not
2020 * change unless you get test reports from all Lenovo
2021 * models. May cause the BIOS to interfere with the
2024 KEY_RESERVED, /* 0x14: VOLUME UP */
2025 KEY_RESERVED, /* 0x15: VOLUME DOWN */
2026 KEY_RESERVED, /* 0x16: MUTE */
2028 KEY_VENDOR, /* 0x17: Thinkpad/AccessIBM/Lenovo */
2030 /* (assignments unknown, please report if found) */
2031 KEY_UNKNOWN, KEY_UNKNOWN, KEY_UNKNOWN, KEY_UNKNOWN,
2032 KEY_UNKNOWN, KEY_UNKNOWN, KEY_UNKNOWN, KEY_UNKNOWN,
2035 #define TPACPI_HOTKEY_MAP_LEN ARRAY_SIZE(ibm_keycode_map)
2036 #define TPACPI_HOTKEY_MAP_SIZE sizeof(ibm_keycode_map)
2037 #define TPACPI_HOTKEY_MAP_TYPESIZE sizeof(ibm_keycode_map[0])
2043 vdbg_printk(TPACPI_DBG_INIT, "initializing hotkey subdriver\n");
2045 BUG_ON(!tpacpi_inputdev);
2046 BUG_ON(tpacpi_inputdev->open != NULL ||
2047 tpacpi_inputdev->close != NULL);
2049 TPACPI_ACPIHANDLE_INIT(hkey);
2050 mutex_init(&hotkey_mutex);
2052 #ifdef CONFIG_THINKPAD_ACPI_HOTKEY_POLL
2053 mutex_init(&hotkey_thread_mutex);
2054 mutex_init(&hotkey_thread_data_mutex);
2057 /* hotkey not supported on 570 */
2058 tp_features.hotkey = hkey_handle != NULL;
2060 vdbg_printk(TPACPI_DBG_INIT, "hotkeys are %s\n",
2061 str_supported(tp_features.hotkey));
2063 if (tp_features.hotkey) {
2064 hotkey_dev_attributes = create_attr_set(13, NULL);
2065 if (!hotkey_dev_attributes)
2067 res = add_many_to_attr_set(hotkey_dev_attributes,
2069 ARRAY_SIZE(hotkey_attributes));
2073 /* mask not supported on 570, 600e/x, 770e, 770x, A21e, A2xm/p,
2074 A30, R30, R31, T20-22, X20-21, X22-24. Detected by checking
2075 for HKEY interface version 0x100 */
2076 if (acpi_evalf(hkey_handle, &hkeyv, "MHKV", "qd")) {
2077 if ((hkeyv >> 8) != 1) {
2078 printk(TPACPI_ERR "unknown version of the "
2079 "HKEY interface: 0x%x\n", hkeyv);
2080 printk(TPACPI_ERR "please report this to %s\n",
2084 * MHKV 0x100 in A31, R40, R40e,
2085 * T4x, X31, and later
2087 tp_features.hotkey_mask = 1;
2091 vdbg_printk(TPACPI_DBG_INIT, "hotkey masks are %s\n",
2092 str_supported(tp_features.hotkey_mask));
2094 if (tp_features.hotkey_mask) {
2095 if (!acpi_evalf(hkey_handle, &hotkey_all_mask,
2098 "missing MHKA handler, "
2099 "please report this to %s\n",
2101 /* FN+F12, FN+F4, FN+F3 */
2102 hotkey_all_mask = 0x080cU;
2106 /* hotkey_source_mask *must* be zero for
2107 * the first hotkey_mask_get */
2108 res = hotkey_status_get(&hotkey_orig_status);
2109 if (!res && tp_features.hotkey_mask) {
2110 res = hotkey_mask_get();
2111 hotkey_orig_mask = hotkey_mask;
2113 res = add_many_to_attr_set(
2114 hotkey_dev_attributes,
2115 hotkey_mask_attributes,
2116 ARRAY_SIZE(hotkey_mask_attributes));
2120 #ifdef CONFIG_THINKPAD_ACPI_HOTKEY_POLL
2121 if (tp_features.hotkey_mask) {
2122 hotkey_source_mask = TPACPI_HKEY_NVRAM_GOOD_MASK
2125 hotkey_source_mask = TPACPI_HKEY_NVRAM_GOOD_MASK;
2128 vdbg_printk(TPACPI_DBG_INIT,
2129 "hotkey source mask 0x%08x, polling freq %d\n",
2130 hotkey_source_mask, hotkey_poll_freq);
2133 /* Not all thinkpads have a hardware radio switch */
2134 if (!res && acpi_evalf(hkey_handle, &status, "WLSW", "qd")) {
2135 tp_features.hotkey_wlsw = 1;
2137 "radio switch found; radios are %s\n",
2138 enabled(status, 0));
2139 res = add_to_attr_set(hotkey_dev_attributes,
2140 &dev_attr_hotkey_radio_sw.attr);
2143 /* For X41t, X60t, X61t Tablets... */
2144 if (!res && acpi_evalf(hkey_handle, &status, "MHKG", "qd")) {
2145 tp_features.hotkey_tablet = 1;
2147 "possible tablet mode switch found; "
2148 "ThinkPad in %s mode\n",
2149 (status & TP_HOTKEY_TABLET_MASK)?
2150 "tablet" : "laptop");
2151 res = add_to_attr_set(hotkey_dev_attributes,
2152 &dev_attr_hotkey_tablet_mode.attr);
2156 res = register_attr_set_with_sysfs(
2157 hotkey_dev_attributes,
2158 &tpacpi_pdev->dev.kobj);
2162 /* Set up key map */
2164 hotkey_keycode_map = kmalloc(TPACPI_HOTKEY_MAP_SIZE,
2166 if (!hotkey_keycode_map) {
2168 "failed to allocate memory for key map\n");
2172 if (thinkpad_id.vendor == PCI_VENDOR_ID_LENOVO) {
2173 dbg_printk(TPACPI_DBG_INIT,
2174 "using Lenovo default hot key map\n");
2175 memcpy(hotkey_keycode_map, &lenovo_keycode_map,
2176 TPACPI_HOTKEY_MAP_SIZE);
2178 dbg_printk(TPACPI_DBG_INIT,
2179 "using IBM default hot key map\n");
2180 memcpy(hotkey_keycode_map, &ibm_keycode_map,
2181 TPACPI_HOTKEY_MAP_SIZE);
2184 set_bit(EV_KEY, tpacpi_inputdev->evbit);
2185 set_bit(EV_MSC, tpacpi_inputdev->evbit);
2186 set_bit(MSC_SCAN, tpacpi_inputdev->mscbit);
2187 tpacpi_inputdev->keycodesize = TPACPI_HOTKEY_MAP_TYPESIZE;
2188 tpacpi_inputdev->keycodemax = TPACPI_HOTKEY_MAP_LEN;
2189 tpacpi_inputdev->keycode = hotkey_keycode_map;
2190 for (i = 0; i < TPACPI_HOTKEY_MAP_LEN; i++) {
2191 if (hotkey_keycode_map[i] != KEY_RESERVED) {
2192 set_bit(hotkey_keycode_map[i],
2193 tpacpi_inputdev->keybit);
2195 if (i < sizeof(hotkey_reserved_mask)*8)
2196 hotkey_reserved_mask |= 1 << i;
2200 if (tp_features.hotkey_wlsw) {
2201 set_bit(EV_SW, tpacpi_inputdev->evbit);
2202 set_bit(SW_RADIO, tpacpi_inputdev->swbit);
2204 if (tp_features.hotkey_tablet) {
2205 set_bit(EV_SW, tpacpi_inputdev->evbit);
2206 set_bit(SW_TABLET_MODE, tpacpi_inputdev->swbit);
2209 /* Do not issue duplicate brightness change events to
2211 if (!tp_features.bright_acpimode)
2212 /* update bright_acpimode... */
2213 tpacpi_check_std_acpi_brightness_support();
2215 if (tp_features.bright_acpimode) {
2217 "This ThinkPad has standard ACPI backlight "
2218 "brightness control, supported by the ACPI "
2220 printk(TPACPI_NOTICE
2221 "Disabling thinkpad-acpi brightness events "
2224 /* The hotkey_reserved_mask change below is not
2225 * necessary while the keys are at KEY_RESERVED in the
2226 * default map, but better safe than sorry, leave it
2227 * here as a marker of what we have to do, especially
2228 * when we finally become able to set this at runtime
2229 * on response to X.org requests */
2230 hotkey_reserved_mask |=
2231 (1 << TP_ACPI_HOTKEYSCAN_FNHOME)
2232 | (1 << TP_ACPI_HOTKEYSCAN_FNEND);
2235 dbg_printk(TPACPI_DBG_INIT,
2236 "enabling hot key handling\n");
2237 res = hotkey_status_set(1);
2240 res = hotkey_mask_set(((hotkey_all_mask | hotkey_source_mask)
2241 & ~hotkey_reserved_mask)
2242 | hotkey_orig_mask);
2243 if (res < 0 && res != -ENXIO)
2246 dbg_printk(TPACPI_DBG_INIT,
2247 "legacy hot key reporting over procfs %s\n",
2248 (hotkey_report_mode < 2) ?
2249 "enabled" : "disabled");
2251 tpacpi_inputdev->open = &hotkey_inputdev_open;
2252 tpacpi_inputdev->close = &hotkey_inputdev_close;
2254 hotkey_poll_setup_safe(1);
2255 tpacpi_input_send_radiosw();
2256 tpacpi_input_send_tabletsw();
2259 return (tp_features.hotkey)? 0 : 1;
2262 static void hotkey_exit(void)
2264 #ifdef CONFIG_THINKPAD_ACPI_HOTKEY_POLL
2265 hotkey_poll_stop_sync();
2268 if (tp_features.hotkey) {
2269 dbg_printk(TPACPI_DBG_EXIT,
2270 "restoring original hot key mask\n");
2271 /* no short-circuit boolean operator below! */
2272 if ((hotkey_mask_set(hotkey_orig_mask) |
2273 hotkey_status_set(hotkey_orig_status)) != 0)
2275 "failed to restore hot key mask "
2276 "to BIOS defaults\n");
2279 if (hotkey_dev_attributes) {
2280 delete_attr_set(hotkey_dev_attributes, &tpacpi_pdev->dev.kobj);
2281 hotkey_dev_attributes = NULL;
2285 static void hotkey_notify(struct ibm_struct *ibm, u32 event)
2288 unsigned int scancode;
2293 if (event != 0x80) {
2295 "unknown HKEY notification event %d\n", event);
2296 /* forward it to userspace, maybe it knows how to handle it */
2297 acpi_bus_generate_netlink_event(
2298 ibm->acpi->device->pnp.device_class,
2299 ibm->acpi->device->dev.bus_id,
2305 if (!acpi_evalf(hkey_handle, &hkey, "MHKP", "d")) {
2306 printk(TPACPI_ERR "failed to retrieve HKEY event\n");
2319 switch (hkey >> 12) {
2321 /* 0x1000-0x1FFF: key presses */
2322 scancode = hkey & 0xfff;
2323 if (scancode > 0 && scancode < 0x21) {
2325 if (!(hotkey_source_mask & (1 << scancode))) {
2326 tpacpi_input_send_key(scancode);
2338 case 0x2304: /* suspend, undock */
2339 case 0x2404: /* hibernation, undock */
2340 hotkey_wakeup_reason = TP_ACPI_WAKEUP_UNDOCK;
2343 case 0x2305: /* suspend, bay eject */
2344 case 0x2405: /* hibernation, bay eject */
2345 hotkey_wakeup_reason = TP_ACPI_WAKEUP_BAYEJ;
2351 if (hotkey_wakeup_reason != TP_ACPI_WAKEUP_NONE) {
2353 "woke up due to a hot-unplug "
2355 hotkey_wakeup_reason_notify_change();
2359 /* bay-related wakeups */
2360 if (hkey == 0x3003) {
2361 hotkey_autosleep_ack = 1;
2364 hotkey_wakeup_hotunplug_complete_notify_change();
2370 /* dock-related wakeups */
2371 if (hkey == 0x4003) {
2372 hotkey_autosleep_ack = 1;
2375 hotkey_wakeup_hotunplug_complete_notify_change();
2381 /* 0x5000-0x5FFF: human interface helpers */
2383 case 0x5010: /* Lenovo new BIOS: brightness changed */
2384 case 0x500b: /* X61t: tablet pen inserted into bay */
2385 case 0x500c: /* X61t: tablet pen removed from bay */
2387 case 0x5009: /* X41t-X61t: swivel up (tablet mode) */
2388 case 0x500a: /* X41t-X61t: swivel down (normal mode) */
2389 tpacpi_input_send_tabletsw();
2390 hotkey_tablet_mode_notify_change();
2395 /* LID switch events. Do not propagate */
2403 /* 0x7000-0x7FFF: misc */
2404 if (tp_features.hotkey_wlsw && hkey == 0x7000) {
2405 tpacpi_input_send_radiosw();
2406 hotkey_radio_sw_notify_change();
2410 /* fallthrough to default */
2415 printk(TPACPI_NOTICE
2416 "unhandled HKEY event 0x%04x\n", hkey);
2420 if (!ignore_acpi_ev &&
2421 (send_acpi_ev || hotkey_report_mode < 2)) {
2422 acpi_bus_generate_proc_event(ibm->acpi->device,
2426 /* netlink events */
2427 if (!ignore_acpi_ev && send_acpi_ev) {
2428 acpi_bus_generate_netlink_event(
2429 ibm->acpi->device->pnp.device_class,
2430 ibm->acpi->device->dev.bus_id,
2436 static void hotkey_suspend(pm_message_t state)
2438 /* Do these on suspend, we get the events on early resume! */
2439 hotkey_wakeup_reason = TP_ACPI_WAKEUP_NONE;
2440 hotkey_autosleep_ack = 0;
2443 static void hotkey_resume(void)
2445 if (hotkey_mask_get())
2447 "error while trying to read hot key mask "
2449 tpacpi_input_send_radiosw();
2450 hotkey_radio_sw_notify_change();
2451 hotkey_tablet_mode_notify_change();
2452 hotkey_wakeup_reason_notify_change();
2453 hotkey_wakeup_hotunplug_complete_notify_change();
2454 hotkey_poll_setup_safe(0);
2457 /* procfs -------------------------------------------------------------- */
2458 static int hotkey_read(char *p)
2463 if (!tp_features.hotkey) {
2464 len += sprintf(p + len, "status:\t\tnot supported\n");
2468 if (mutex_lock_interruptible(&hotkey_mutex))
2469 return -ERESTARTSYS;
2470 res = hotkey_status_get(&status);
2472 res = hotkey_mask_get();
2473 mutex_unlock(&hotkey_mutex);
2477 len += sprintf(p + len, "status:\t\t%s\n", enabled(status, 0));
2478 if (tp_features.hotkey_mask) {
2479 len += sprintf(p + len, "mask:\t\t0x%08x\n", hotkey_mask);
2480 len += sprintf(p + len,
2481 "commands:\tenable, disable, reset, <mask>\n");
2483 len += sprintf(p + len, "mask:\t\tnot supported\n");
2484 len += sprintf(p + len, "commands:\tenable, disable, reset\n");
2490 static int hotkey_write(char *buf)
2496 if (!tp_features.hotkey)
2499 if (mutex_lock_interruptible(&hotkey_mutex))
2500 return -ERESTARTSYS;
2506 while ((cmd = next_cmd(&buf))) {
2507 if (strlencmp(cmd, "enable") == 0) {
2509 } else if (strlencmp(cmd, "disable") == 0) {
2511 } else if (strlencmp(cmd, "reset") == 0) {
2512 status = hotkey_orig_status;
2513 mask = hotkey_orig_mask;
2514 } else if (sscanf(cmd, "0x%x", &mask) == 1) {
2516 } else if (sscanf(cmd, "%x", &mask) == 1) {
2524 res = hotkey_status_set(status);
2526 if (!res && mask != hotkey_mask)
2527 res = hotkey_mask_set(mask);
2530 mutex_unlock(&hotkey_mutex);
2534 static const struct acpi_device_id ibm_htk_device_ids[] = {
2535 {TPACPI_ACPI_HKEY_HID, 0},
2539 static struct tp_acpi_drv_struct ibm_hotkey_acpidriver = {
2540 .hid = ibm_htk_device_ids,
2541 .notify = hotkey_notify,
2542 .handle = &hkey_handle,
2543 .type = ACPI_DEVICE_NOTIFY,
2546 static struct ibm_struct hotkey_driver_data = {
2548 .read = hotkey_read,
2549 .write = hotkey_write,
2550 .exit = hotkey_exit,
2551 .resume = hotkey_resume,
2552 .suspend = hotkey_suspend,
2553 .acpi = &ibm_hotkey_acpidriver,
2556 /*************************************************************************
2557 * Bluetooth subdriver
2561 /* ACPI GBDC/SBDC bits */
2562 TP_ACPI_BLUETOOTH_HWPRESENT = 0x01, /* Bluetooth hw available */
2563 TP_ACPI_BLUETOOTH_RADIOSSW = 0x02, /* Bluetooth radio enabled */
2564 TP_ACPI_BLUETOOTH_UNK = 0x04, /* unknown function */
2567 static int bluetooth_get_radiosw(void);
2568 static int bluetooth_set_radiosw(int radio_on);
2570 /* sysfs bluetooth enable ---------------------------------------------- */
2571 static ssize_t bluetooth_enable_show(struct device *dev,
2572 struct device_attribute *attr,
2577 status = bluetooth_get_radiosw();
2581 return snprintf(buf, PAGE_SIZE, "%d\n", status ? 1 : 0);
2584 static ssize_t bluetooth_enable_store(struct device *dev,
2585 struct device_attribute *attr,
2586 const char *buf, size_t count)
2591 if (parse_strtoul(buf, 1, &t))
2594 res = bluetooth_set_radiosw(t);
2596 return (res) ? res : count;
2599 static struct device_attribute dev_attr_bluetooth_enable =
2600 __ATTR(bluetooth_enable, S_IWUSR | S_IRUGO,
2601 bluetooth_enable_show, bluetooth_enable_store);
2603 /* --------------------------------------------------------------------- */
2605 static struct attribute *bluetooth_attributes[] = {
2606 &dev_attr_bluetooth_enable.attr,
2610 static const struct attribute_group bluetooth_attr_group = {
2611 .attrs = bluetooth_attributes,
2614 static int __init bluetooth_init(struct ibm_init_struct *iibm)
2619 vdbg_printk(TPACPI_DBG_INIT, "initializing bluetooth subdriver\n");
2621 TPACPI_ACPIHANDLE_INIT(hkey);
2623 /* bluetooth not supported on 570, 600e/x, 770e, 770x, A21e, A2xm/p,
2624 G4x, R30, R31, R40e, R50e, T20-22, X20-21 */
2625 tp_features.bluetooth = hkey_handle &&
2626 acpi_evalf(hkey_handle, &status, "GBDC", "qd");
2628 vdbg_printk(TPACPI_DBG_INIT, "bluetooth is %s, status 0x%02x\n",
2629 str_supported(tp_features.bluetooth),
2632 if (tp_features.bluetooth) {
2633 if (!(status & TP_ACPI_BLUETOOTH_HWPRESENT)) {
2634 /* no bluetooth hardware present in system */
2635 tp_features.bluetooth = 0;
2636 dbg_printk(TPACPI_DBG_INIT,
2637 "bluetooth hardware not installed\n");
2639 res = sysfs_create_group(&tpacpi_pdev->dev.kobj,
2640 &bluetooth_attr_group);
2646 return (tp_features.bluetooth)? 0 : 1;
2649 static void bluetooth_exit(void)
2651 sysfs_remove_group(&tpacpi_pdev->dev.kobj,
2652 &bluetooth_attr_group);
2655 static int bluetooth_get_radiosw(void)
2659 if (!tp_features.bluetooth)
2662 if (!acpi_evalf(hkey_handle, &status, "GBDC", "d"))
2665 return ((status & TP_ACPI_BLUETOOTH_RADIOSSW) != 0);
2668 static int bluetooth_set_radiosw(int radio_on)
2672 if (!tp_features.bluetooth)
2675 if (!acpi_evalf(hkey_handle, &status, "GBDC", "d"))
2678 status |= TP_ACPI_BLUETOOTH_RADIOSSW;
2680 status &= ~TP_ACPI_BLUETOOTH_RADIOSSW;
2681 if (!acpi_evalf(hkey_handle, NULL, "SBDC", "vd", status))
2687 /* procfs -------------------------------------------------------------- */
2688 static int bluetooth_read(char *p)
2691 int status = bluetooth_get_radiosw();
2693 if (!tp_features.bluetooth)
2694 len += sprintf(p + len, "status:\t\tnot supported\n");
2696 len += sprintf(p + len, "status:\t\t%s\n",
2697 (status)? "enabled" : "disabled");
2698 len += sprintf(p + len, "commands:\tenable, disable\n");
2704 static int bluetooth_write(char *buf)
2708 if (!tp_features.bluetooth)
2711 while ((cmd = next_cmd(&buf))) {
2712 if (strlencmp(cmd, "enable") == 0) {
2713 bluetooth_set_radiosw(1);
2714 } else if (strlencmp(cmd, "disable") == 0) {
2715 bluetooth_set_radiosw(0);
2723 static struct ibm_struct bluetooth_driver_data = {
2724 .name = "bluetooth",
2725 .read = bluetooth_read,
2726 .write = bluetooth_write,
2727 .exit = bluetooth_exit,
2730 /*************************************************************************
2735 /* ACPI GWAN/SWAN bits */
2736 TP_ACPI_WANCARD_HWPRESENT = 0x01, /* Wan hw available */
2737 TP_ACPI_WANCARD_RADIOSSW = 0x02, /* Wan radio enabled */
2738 TP_ACPI_WANCARD_UNK = 0x04, /* unknown function */
2741 static int wan_get_radiosw(void);
2742 static int wan_set_radiosw(int radio_on);
2744 /* sysfs wan enable ---------------------------------------------------- */
2745 static ssize_t wan_enable_show(struct device *dev,
2746 struct device_attribute *attr,
2751 status = wan_get_radiosw();
2755 return snprintf(buf, PAGE_SIZE, "%d\n", status ? 1 : 0);
2758 static ssize_t wan_enable_store(struct device *dev,
2759 struct device_attribute *attr,
2760 const char *buf, size_t count)
2765 if (parse_strtoul(buf, 1, &t))
2768 res = wan_set_radiosw(t);
2770 return (res) ? res : count;
2773 static struct device_attribute dev_attr_wan_enable =
2774 __ATTR(wwan_enable, S_IWUSR | S_IRUGO,
2775 wan_enable_show, wan_enable_store);
2777 /* --------------------------------------------------------------------- */
2779 static struct attribute *wan_attributes[] = {
2780 &dev_attr_wan_enable.attr,
2784 static const struct attribute_group wan_attr_group = {
2785 .attrs = wan_attributes,
2788 static int __init wan_init(struct ibm_init_struct *iibm)
2793 vdbg_printk(TPACPI_DBG_INIT, "initializing wan subdriver\n");
2795 TPACPI_ACPIHANDLE_INIT(hkey);
2797 tp_features.wan = hkey_handle &&
2798 acpi_evalf(hkey_handle, &status, "GWAN", "qd");
2800 vdbg_printk(TPACPI_DBG_INIT, "wan is %s, status 0x%02x\n",
2801 str_supported(tp_features.wan),
2804 if (tp_features.wan) {
2805 if (!(status & TP_ACPI_WANCARD_HWPRESENT)) {
2806 /* no wan hardware present in system */
2807 tp_features.wan = 0;
2808 dbg_printk(TPACPI_DBG_INIT,
2809 "wan hardware not installed\n");
2811 res = sysfs_create_group(&tpacpi_pdev->dev.kobj,
2818 return (tp_features.wan)? 0 : 1;
2821 static void wan_exit(void)
2823 sysfs_remove_group(&tpacpi_pdev->dev.kobj,
2827 static int wan_get_radiosw(void)
2831 if (!tp_features.wan)
2834 if (!acpi_evalf(hkey_handle, &status, "GWAN", "d"))
2837 return ((status & TP_ACPI_WANCARD_RADIOSSW) != 0);
2840 static int wan_set_radiosw(int radio_on)
2844 if (!tp_features.wan)
2847 if (!acpi_evalf(hkey_handle, &status, "GWAN", "d"))
2850 status |= TP_ACPI_WANCARD_RADIOSSW;
2852 status &= ~TP_ACPI_WANCARD_RADIOSSW;
2853 if (!acpi_evalf(hkey_handle, NULL, "SWAN", "vd", status))
2859 /* procfs -------------------------------------------------------------- */
2860 static int wan_read(char *p)
2863 int status = wan_get_radiosw();
2865 if (!tp_features.wan)
2866 len += sprintf(p + len, "status:\t\tnot supported\n");
2868 len += sprintf(p + len, "status:\t\t%s\n",
2869 (status)? "enabled" : "disabled");
2870 len += sprintf(p + len, "commands:\tenable, disable\n");
2876 static int wan_write(char *buf)
2880 if (!tp_features.wan)
2883 while ((cmd = next_cmd(&buf))) {
2884 if (strlencmp(cmd, "enable") == 0) {
2886 } else if (strlencmp(cmd, "disable") == 0) {
2895 static struct ibm_struct wan_driver_data = {
2900 .flags.experimental = 1,
2903 /*************************************************************************
2907 #ifdef CONFIG_THINKPAD_ACPI_VIDEO
2909 enum video_access_mode {
2910 TPACPI_VIDEO_NONE = 0,
2911 TPACPI_VIDEO_570, /* 570 */
2912 TPACPI_VIDEO_770, /* 600e/x, 770e, 770x */
2913 TPACPI_VIDEO_NEW, /* all others */
2916 enum { /* video status flags, based on VIDEO_570 */
2917 TP_ACPI_VIDEO_S_LCD = 0x01, /* LCD output enabled */
2918 TP_ACPI_VIDEO_S_CRT = 0x02, /* CRT output enabled */
2919 TP_ACPI_VIDEO_S_DVI = 0x08, /* DVI output enabled */
2922 enum { /* TPACPI_VIDEO_570 constants */
2923 TP_ACPI_VIDEO_570_PHSCMD = 0x87, /* unknown magic constant :( */
2924 TP_ACPI_VIDEO_570_PHSMASK = 0x03, /* PHS bits that map to
2925 * video_status_flags */
2926 TP_ACPI_VIDEO_570_PHS2CMD = 0x8b, /* unknown magic constant :( */
2927 TP_ACPI_VIDEO_570_PHS2SET = 0x80, /* unknown magic constant :( */
2930 static enum video_access_mode video_supported;
2931 static int video_orig_autosw;
2933 static int video_autosw_get(void);
2934 static int video_autosw_set(int enable);
2936 TPACPI_HANDLE(vid2, root, "\\_SB.PCI0.AGPB.VID"); /* G41 */
2938 static int __init video_init(struct ibm_init_struct *iibm)
2942 vdbg_printk(TPACPI_DBG_INIT, "initializing video subdriver\n");
2944 TPACPI_ACPIHANDLE_INIT(vid);
2945 TPACPI_ACPIHANDLE_INIT(vid2);
2947 if (vid2_handle && acpi_evalf(NULL, &ivga, "\\IVGA", "d") && ivga)
2948 /* G41, assume IVGA doesn't change */
2949 vid_handle = vid2_handle;
2952 /* video switching not supported on R30, R31 */
2953 video_supported = TPACPI_VIDEO_NONE;
2954 else if (acpi_evalf(vid_handle, &video_orig_autosw, "SWIT", "qd"))
2956 video_supported = TPACPI_VIDEO_570;
2957 else if (acpi_evalf(vid_handle, &video_orig_autosw, "^VADL", "qd"))
2958 /* 600e/x, 770e, 770x */
2959 video_supported = TPACPI_VIDEO_770;
2962 video_supported = TPACPI_VIDEO_NEW;
2964 vdbg_printk(TPACPI_DBG_INIT, "video is %s, mode %d\n",
2965 str_supported(video_supported != TPACPI_VIDEO_NONE),
2968 return (video_supported != TPACPI_VIDEO_NONE)? 0 : 1;
2971 static void video_exit(void)
2973 dbg_printk(TPACPI_DBG_EXIT,
2974 "restoring original video autoswitch mode\n");
2975 if (video_autosw_set(video_orig_autosw))
2976 printk(TPACPI_ERR "error while trying to restore original "
2977 "video autoswitch mode\n");
2980 static int video_outputsw_get(void)
2985 switch (video_supported) {
2986 case TPACPI_VIDEO_570:
2987 if (!acpi_evalf(NULL, &i, "\\_SB.PHS", "dd",
2988 TP_ACPI_VIDEO_570_PHSCMD))
2990 status = i & TP_ACPI_VIDEO_570_PHSMASK;
2992 case TPACPI_VIDEO_770:
2993 if (!acpi_evalf(NULL, &i, "\\VCDL", "d"))
2996 status |= TP_ACPI_VIDEO_S_LCD;
2997 if (!acpi_evalf(NULL, &i, "\\VCDC", "d"))
3000 status |= TP_ACPI_VIDEO_S_CRT;
3002 case TPACPI_VIDEO_NEW:
3003 if (!acpi_evalf(NULL, NULL, "\\VUPS", "vd", 1) ||
3004 !acpi_evalf(NULL, &i, "\\VCDC", "d"))
3007 status |= TP_ACPI_VIDEO_S_CRT;
3009 if (!acpi_evalf(NULL, NULL, "\\VUPS", "vd", 0) ||
3010 !acpi_evalf(NULL, &i, "\\VCDL", "d"))
3013 status |= TP_ACPI_VIDEO_S_LCD;
3014 if (!acpi_evalf(NULL, &i, "\\VCDD", "d"))
3017 status |= TP_ACPI_VIDEO_S_DVI;
3026 static int video_outputsw_set(int status)
3031 switch (video_supported) {
3032 case TPACPI_VIDEO_570:
3033 res = acpi_evalf(NULL, NULL,
3034 "\\_SB.PHS2", "vdd",
3035 TP_ACPI_VIDEO_570_PHS2CMD,
3036 status | TP_ACPI_VIDEO_570_PHS2SET);
3038 case TPACPI_VIDEO_770:
3039 autosw = video_autosw_get();
3043 res = video_autosw_set(1);
3046 res = acpi_evalf(vid_handle, NULL,
3047 "ASWT", "vdd", status * 0x100, 0);
3048 if (!autosw && video_autosw_set(autosw)) {
3050 "video auto-switch left enabled due to error\n");
3054 case TPACPI_VIDEO_NEW:
3055 res = acpi_evalf(NULL, NULL, "\\VUPS", "vd", 0x80) &&
3056 acpi_evalf(NULL, NULL, "\\VSDS", "vdd", status, 1);
3062 return (res)? 0 : -EIO;
3065 static int video_autosw_get(void)
3069 switch (video_supported) {
3070 case TPACPI_VIDEO_570:
3071 if (!acpi_evalf(vid_handle, &autosw, "SWIT", "d"))
3074 case TPACPI_VIDEO_770:
3075 case TPACPI_VIDEO_NEW:
3076 if (!acpi_evalf(vid_handle, &autosw, "^VDEE", "d"))
3086 static int video_autosw_set(int enable)
3088 if (!acpi_evalf(vid_handle, NULL, "_DOS", "vd", (enable)? 1 : 0))
3093 static int video_outputsw_cycle(void)
3095 int autosw = video_autosw_get();
3101 switch (video_supported) {
3102 case TPACPI_VIDEO_570:
3103 res = video_autosw_set(1);
3106 res = acpi_evalf(ec_handle, NULL, "_Q16", "v");
3108 case TPACPI_VIDEO_770:
3109 case TPACPI_VIDEO_NEW:
3110 res = video_autosw_set(1);
3113 res = acpi_evalf(vid_handle, NULL, "VSWT", "v");
3118 if (!autosw && video_autosw_set(autosw)) {
3120 "video auto-switch left enabled due to error\n");
3124 return (res)? 0 : -EIO;
3127 static int video_expand_toggle(void)
3129 switch (video_supported) {
3130 case TPACPI_VIDEO_570:
3131 return acpi_evalf(ec_handle, NULL, "_Q17", "v")?
3133 case TPACPI_VIDEO_770:
3134 return acpi_evalf(vid_handle, NULL, "VEXP", "v")?
3136 case TPACPI_VIDEO_NEW:
3137 return acpi_evalf(NULL, NULL, "\\VEXP", "v")?
3145 static int video_read(char *p)
3150 if (video_supported == TPACPI_VIDEO_NONE) {
3151 len += sprintf(p + len, "status:\t\tnot supported\n");
3155 status = video_outputsw_get();
3159 autosw = video_autosw_get();
3163 len += sprintf(p + len, "status:\t\tsupported\n");
3164 len += sprintf(p + len, "lcd:\t\t%s\n", enabled(status, 0));
3165 len += sprintf(p + len, "crt:\t\t%s\n", enabled(status, 1));
3166 if (video_supported == TPACPI_VIDEO_NEW)
3167 len += sprintf(p + len, "dvi:\t\t%s\n", enabled(status, 3));
3168 len += sprintf(p + len, "auto:\t\t%s\n", enabled(autosw, 0));
3169 len += sprintf(p + len, "commands:\tlcd_enable, lcd_disable\n");
3170 len += sprintf(p + len, "commands:\tcrt_enable, crt_disable\n");
3171 if (video_supported == TPACPI_VIDEO_NEW)
3172 len += sprintf(p + len, "commands:\tdvi_enable, dvi_disable\n");
3173 len += sprintf(p + len, "commands:\tauto_enable, auto_disable\n");
3174 len += sprintf(p + len, "commands:\tvideo_switch, expand_toggle\n");
3179 static int video_write(char *buf)
3182 int enable, disable, status;
3185 if (video_supported == TPACPI_VIDEO_NONE)
3191 while ((cmd = next_cmd(&buf))) {
3192 if (strlencmp(cmd, "lcd_enable") == 0) {
3193 enable |= TP_ACPI_VIDEO_S_LCD;
3194 } else if (strlencmp(cmd, "lcd_disable") == 0) {
3195 disable |= TP_ACPI_VIDEO_S_LCD;
3196 } else if (strlencmp(cmd, "crt_enable") == 0) {
3197 enable |= TP_ACPI_VIDEO_S_CRT;
3198 } else if (strlencmp(cmd, "crt_disable") == 0) {
3199 disable |= TP_ACPI_VIDEO_S_CRT;
3200 } else if (video_supported == TPACPI_VIDEO_NEW &&
3201 strlencmp(cmd, "dvi_enable") == 0) {
3202 enable |= TP_ACPI_VIDEO_S_DVI;
3203 } else if (video_supported == TPACPI_VIDEO_NEW &&
3204 strlencmp(cmd, "dvi_disable") == 0) {
3205 disable |= TP_ACPI_VIDEO_S_DVI;
3206 } else if (strlencmp(cmd, "auto_enable") == 0) {
3207 res = video_autosw_set(1);
3210 } else if (strlencmp(cmd, "auto_disable") == 0) {
3211 res = video_autosw_set(0);
3214 } else if (strlencmp(cmd, "video_switch") == 0) {
3215 res = video_outputsw_cycle();
3218 } else if (strlencmp(cmd, "expand_toggle") == 0) {
3219 res = video_expand_toggle();
3226 if (enable || disable) {
3227 status = video_outputsw_get();
3230 res = video_outputsw_set((status & ~disable) | enable);
3238 static struct ibm_struct video_driver_data = {
3241 .write = video_write,
3245 #endif /* CONFIG_THINKPAD_ACPI_VIDEO */
3247 /*************************************************************************
3248 * Light (thinklight) subdriver
3251 TPACPI_HANDLE(lght, root, "\\LGHT"); /* A21e, A2xm/p, T20-22, X20-21 */
3252 TPACPI_HANDLE(ledb, ec, "LEDB"); /* G4x */
3254 static int light_get_status(void)
3258 if (tp_features.light_status) {
3259 if (!acpi_evalf(ec_handle, &status, "KBLT", "d"))
3267 static int light_set_status(int status)
3271 if (tp_features.light) {
3273 rc = acpi_evalf(cmos_handle, NULL, NULL, "vd",
3275 TP_CMOS_THINKLIGHT_ON :
3276 TP_CMOS_THINKLIGHT_OFF);
3278 rc = acpi_evalf(lght_handle, NULL, NULL, "vd",
3281 return (rc)? 0 : -EIO;
3287 static void light_set_status_worker(struct work_struct *work)
3289 struct tpacpi_led_classdev *data =
3290 container_of(work, struct tpacpi_led_classdev, work);
3292 if (likely(tpacpi_lifecycle == TPACPI_LIFE_RUNNING))
3293 light_set_status((data->new_brightness != LED_OFF));
3296 static void light_sysfs_set(struct led_classdev *led_cdev,
3297 enum led_brightness brightness)
3299 struct tpacpi_led_classdev *data =
3300 container_of(led_cdev,
3301 struct tpacpi_led_classdev,
3303 data->new_brightness = brightness;
3304 queue_work(tpacpi_wq, &data->work);
3307 static enum led_brightness light_sysfs_get(struct led_classdev *led_cdev)
3309 return (light_get_status() == 1)? LED_FULL : LED_OFF;
3312 static struct tpacpi_led_classdev tpacpi_led_thinklight = {
3314 .name = "tpacpi::thinklight",
3315 .brightness_set = &light_sysfs_set,
3316 .brightness_get = &light_sysfs_get,
3320 static int __init light_init(struct ibm_init_struct *iibm)
3324 vdbg_printk(TPACPI_DBG_INIT, "initializing light subdriver\n");
3326 TPACPI_ACPIHANDLE_INIT(ledb);
3327 TPACPI_ACPIHANDLE_INIT(lght);
3328 TPACPI_ACPIHANDLE_INIT(cmos);
3329 INIT_WORK(&tpacpi_led_thinklight.work, light_set_status_worker);
3331 /* light not supported on 570, 600e/x, 770e, 770x, G4x, R30, R31 */
3332 tp_features.light = (cmos_handle || lght_handle) && !ledb_handle;
3334 if (tp_features.light)
3335 /* light status not supported on
3336 570, 600e/x, 770e, 770x, G4x, R30, R31, R32, X20 */
3337 tp_features.light_status =
3338 acpi_evalf(ec_handle, NULL, "KBLT", "qv");
3340 vdbg_printk(TPACPI_DBG_INIT, "light is %s\n",
3341 str_supported(tp_features.light));
3343 if (tp_features.light) {
3344 rc = led_classdev_register(&tpacpi_pdev->dev,
3345 &tpacpi_led_thinklight.led_classdev);
3349 tp_features.light = 0;
3350 tp_features.light_status = 0;
3352 rc = (tp_features.light)? 0 : 1;
3357 static void light_exit(void)
3359 led_classdev_unregister(&tpacpi_led_thinklight.led_classdev);
3360 if (work_pending(&tpacpi_led_thinklight.work))
3361 flush_workqueue(tpacpi_wq);
3364 static int light_read(char *p)
3369 if (!tp_features.light) {
3370 len += sprintf(p + len, "status:\t\tnot supported\n");
3371 } else if (!tp_features.light_status) {
3372 len += sprintf(p + len, "status:\t\tunknown\n");
3373 len += sprintf(p + len, "commands:\ton, off\n");
3375 status = light_get_status();
3378 len += sprintf(p + len, "status:\t\t%s\n", onoff(status, 0));
3379 len += sprintf(p + len, "commands:\ton, off\n");
3385 static int light_write(char *buf)
3390 if (!tp_features.light)
3393 while ((cmd = next_cmd(&buf))) {
3394 if (strlencmp(cmd, "on") == 0) {
3396 } else if (strlencmp(cmd, "off") == 0) {
3402 return light_set_status(newstatus);
3405 static struct ibm_struct light_driver_data = {
3408 .write = light_write,
3412 /*************************************************************************
3416 #ifdef CONFIG_THINKPAD_ACPI_DOCK
3418 static void dock_notify(struct ibm_struct *ibm, u32 event);
3419 static int dock_read(char *p);
3420 static int dock_write(char *buf);
3422 TPACPI_HANDLE(dock, root, "\\_SB.GDCK", /* X30, X31, X40 */
3423 "\\_SB.PCI0.DOCK", /* 600e/x,770e,770x,A2xm/p,T20-22,X20-21 */
3424 "\\_SB.PCI0.PCI1.DOCK", /* all others */
3425 "\\_SB.PCI.ISA.SLCE", /* 570 */
3426 ); /* A21e,G4x,R30,R31,R32,R40,R40e,R50e */
3428 /* don't list other alternatives as we install a notify handler on the 570 */
3429 TPACPI_HANDLE(pci, root, "\\_SB.PCI"); /* 570 */
3431 static const struct acpi_device_id ibm_pci_device_ids[] = {
3432 {PCI_ROOT_HID_STRING, 0},
3436 static struct tp_acpi_drv_struct ibm_dock_acpidriver[2] = {
3438 .notify = dock_notify,
3439 .handle = &dock_handle,
3440 .type = ACPI_SYSTEM_NOTIFY,
3443 /* THIS ONE MUST NEVER BE USED FOR DRIVER AUTOLOADING.
3444 * We just use it to get notifications of dock hotplug
3445 * in very old thinkpads */
3446 .hid = ibm_pci_device_ids,
3447 .notify = dock_notify,
3448 .handle = &pci_handle,
3449 .type = ACPI_SYSTEM_NOTIFY,
3453 static struct ibm_struct dock_driver_data[2] = {
3457 .write = dock_write,
3458 .acpi = &ibm_dock_acpidriver[0],
3462 .acpi = &ibm_dock_acpidriver[1],
3466 #define dock_docked() (_sta(dock_handle) & 1)
3468 static int __init dock_init(struct ibm_init_struct *iibm)
3470 vdbg_printk(TPACPI_DBG_INIT, "initializing dock subdriver\n");
3472 TPACPI_ACPIHANDLE_INIT(dock);
3474 vdbg_printk(TPACPI_DBG_INIT, "dock is %s\n",
3475 str_supported(dock_handle != NULL));
3477 return (dock_handle)? 0 : 1;
3480 static int __init dock_init2(struct ibm_init_struct *iibm)
3484 vdbg_printk(TPACPI_DBG_INIT, "initializing dock subdriver part 2\n");
3486 if (dock_driver_data[0].flags.acpi_driver_registered &&
3487 dock_driver_data[0].flags.acpi_notify_installed) {
3488 TPACPI_ACPIHANDLE_INIT(pci);
3489 dock2_needed = (pci_handle != NULL);
3490 vdbg_printk(TPACPI_DBG_INIT,
3491 "dock PCI handler for the TP 570 is %s\n",
3492 str_supported(dock2_needed));
3494 vdbg_printk(TPACPI_DBG_INIT,
3495 "dock subdriver part 2 not required\n");
3499 return (dock2_needed)? 0 : 1;
3502 static void dock_notify(struct ibm_struct *ibm, u32 event)
3504 int docked = dock_docked();
3505 int pci = ibm->acpi->hid && ibm->acpi->device &&
3506 acpi_match_device_ids(ibm->acpi->device, ibm_pci_device_ids);
3509 if (event == 1 && !pci) /* 570 */
3510 data = 1; /* button */
3511 else if (event == 1 && pci) /* 570 */
3512 data = 3; /* dock */
3513 else if (event == 3 && docked)
3514 data = 1; /* button */
3515 else if (event == 3 && !docked)
3516 data = 2; /* undock */
3517 else if (event == 0 && docked)
3518 data = 3; /* dock */
3520 printk(TPACPI_ERR "unknown dock event %d, status %d\n",
3521 event, _sta(dock_handle));
3522 data = 0; /* unknown */
3524 acpi_bus_generate_proc_event(ibm->acpi->device, event, data);
3525 acpi_bus_generate_netlink_event(ibm->acpi->device->pnp.device_class,
3526 ibm->acpi->device->dev.bus_id,
3530 static int dock_read(char *p)
3533 int docked = dock_docked();
3536 len += sprintf(p + len, "status:\t\tnot supported\n");
3538 len += sprintf(p + len, "status:\t\tundocked\n");
3540 len += sprintf(p + len, "status:\t\tdocked\n");
3541 len += sprintf(p + len, "commands:\tdock, undock\n");
3547 static int dock_write(char *buf)
3554 while ((cmd = next_cmd(&buf))) {
3555 if (strlencmp(cmd, "undock") == 0) {
3556 if (!acpi_evalf(dock_handle, NULL, "_DCK", "vd", 0) ||
3557 !acpi_evalf(dock_handle, NULL, "_EJ0", "vd", 1))
3559 } else if (strlencmp(cmd, "dock") == 0) {
3560 if (!acpi_evalf(dock_handle, NULL, "_DCK", "vd", 1))
3569 #endif /* CONFIG_THINKPAD_ACPI_DOCK */
3571 /*************************************************************************
3575 #ifdef CONFIG_THINKPAD_ACPI_BAY
3577 TPACPI_HANDLE(bay, root, "\\_SB.PCI.IDE.SECN.MAST", /* 570 */
3578 "\\_SB.PCI0.IDE0.IDES.IDSM", /* 600e/x, 770e, 770x */
3579 "\\_SB.PCI0.SATA.SCND.MSTR", /* T60, X60, Z60 */
3580 "\\_SB.PCI0.IDE0.SCND.MSTR", /* all others */
3581 ); /* A21e, R30, R31 */
3582 TPACPI_HANDLE(bay_ej, bay, "_EJ3", /* 600e/x, A2xm/p, A3x */
3583 "_EJ0", /* all others */
3584 ); /* 570,A21e,G4x,R30,R31,R32,R40e,R50e */
3585 TPACPI_HANDLE(bay2, root, "\\_SB.PCI0.IDE0.PRIM.SLAV", /* A3x, R32 */
3586 "\\_SB.PCI0.IDE0.IDEP.IDPS", /* 600e/x, 770e, 770x */
3588 TPACPI_HANDLE(bay2_ej, bay2, "_EJ3", /* 600e/x, 770e, A3x */
3592 static int __init bay_init(struct ibm_init_struct *iibm)
3594 vdbg_printk(TPACPI_DBG_INIT, "initializing bay subdriver\n");
3596 TPACPI_ACPIHANDLE_INIT(bay);
3598 TPACPI_ACPIHANDLE_INIT(bay_ej);
3599 TPACPI_ACPIHANDLE_INIT(bay2);
3601 TPACPI_ACPIHANDLE_INIT(bay2_ej);
3603 tp_features.bay_status = bay_handle &&
3604 acpi_evalf(bay_handle, NULL, "_STA", "qv");
3605 tp_features.bay_status2 = bay2_handle &&
3606 acpi_evalf(bay2_handle, NULL, "_STA", "qv");
3608 tp_features.bay_eject = bay_handle && bay_ej_handle &&
3609 (strlencmp(bay_ej_path, "_EJ0") == 0 || experimental);
3610 tp_features.bay_eject2 = bay2_handle && bay2_ej_handle &&
3611 (strlencmp(bay2_ej_path, "_EJ0") == 0 || experimental);
3613 vdbg_printk(TPACPI_DBG_INIT,
3614 "bay 1: status %s, eject %s; bay 2: status %s, eject %s\n",
3615 str_supported(tp_features.bay_status),
3616 str_supported(tp_features.bay_eject),
3617 str_supported(tp_features.bay_status2),
3618 str_supported(tp_features.bay_eject2));
3620 return (tp_features.bay_status || tp_features.bay_eject ||
3621 tp_features.bay_status2 || tp_features.bay_eject2)? 0 : 1;
3624 static void bay_notify(struct ibm_struct *ibm, u32 event)
3626 acpi_bus_generate_proc_event(ibm->acpi->device, event, 0);
3627 acpi_bus_generate_netlink_event(ibm->acpi->device->pnp.device_class,
3628 ibm->acpi->device->dev.bus_id,
3632 #define bay_occupied(b) (_sta(b##_handle) & 1)
3634 static int bay_read(char *p)
3637 int occupied = bay_occupied(bay);
3638 int occupied2 = bay_occupied(bay2);
3641 len += sprintf(p + len, "status:\t\t%s\n",
3642 tp_features.bay_status ?
3643 (occupied ? "occupied" : "unoccupied") :
3645 if (tp_features.bay_status2)
3646 len += sprintf(p + len, "status2:\t%s\n", occupied2 ?
3647 "occupied" : "unoccupied");
3649 eject = tp_features.bay_eject && occupied;
3650 eject2 = tp_features.bay_eject2 && occupied2;
3652 if (eject && eject2)
3653 len += sprintf(p + len, "commands:\teject, eject2\n");
3655 len += sprintf(p + len, "commands:\teject\n");
3657 len += sprintf(p + len, "commands:\teject2\n");
3662 static int bay_write(char *buf)
3666 if (!tp_features.bay_eject && !tp_features.bay_eject2)
3669 while ((cmd = next_cmd(&buf))) {
3670 if (tp_features.bay_eject && strlencmp(cmd, "eject") == 0) {
3671 if (!acpi_evalf(bay_ej_handle, NULL, NULL, "vd", 1))
3673 } else if (tp_features.bay_eject2 &&
3674 strlencmp(cmd, "eject2") == 0) {
3675 if (!acpi_evalf(bay2_ej_handle, NULL, NULL, "vd", 1))
3684 static struct tp_acpi_drv_struct ibm_bay_acpidriver = {
3685 .notify = bay_notify,
3686 .handle = &bay_handle,
3687 .type = ACPI_SYSTEM_NOTIFY,
3690 static struct ibm_struct bay_driver_data = {
3694 .acpi = &ibm_bay_acpidriver,
3697 #endif /* CONFIG_THINKPAD_ACPI_BAY */
3699 /*************************************************************************
3703 /* sysfs cmos_command -------------------------------------------------- */
3704 static ssize_t cmos_command_store(struct device *dev,
3705 struct device_attribute *attr,
3706 const char *buf, size_t count)
3708 unsigned long cmos_cmd;
3711 if (parse_strtoul(buf, 21, &cmos_cmd))
3714 res = issue_thinkpad_cmos_command(cmos_cmd);
3715 return (res)? res : count;
3718 static struct device_attribute dev_attr_cmos_command =
3719 __ATTR(cmos_command, S_IWUSR, NULL, cmos_command_store);
3721 /* --------------------------------------------------------------------- */
3723 static int __init cmos_init(struct ibm_init_struct *iibm)
3727 vdbg_printk(TPACPI_DBG_INIT,
3728 "initializing cmos commands subdriver\n");
3730 TPACPI_ACPIHANDLE_INIT(cmos);
3732 vdbg_printk(TPACPI_DBG_INIT, "cmos commands are %s\n",
3733 str_supported(cmos_handle != NULL));
3735 res = device_create_file(&tpacpi_pdev->dev, &dev_attr_cmos_command);
3739 return (cmos_handle)? 0 : 1;
3742 static void cmos_exit(void)
3744 device_remove_file(&tpacpi_pdev->dev, &dev_attr_cmos_command);
3747 static int cmos_read(char *p)
3751 /* cmos not supported on 570, 600e/x, 770e, 770x, A21e, A2xm/p,
3752 R30, R31, T20-22, X20-21 */
3754 len += sprintf(p + len, "status:\t\tnot supported\n");
3756 len += sprintf(p + len, "status:\t\tsupported\n");
3757 len += sprintf(p + len, "commands:\t<cmd> (<cmd> is 0-21)\n");
3763 static int cmos_write(char *buf)
3768 while ((cmd = next_cmd(&buf))) {
3769 if (sscanf(cmd, "%u", &cmos_cmd) == 1 &&
3770 cmos_cmd >= 0 && cmos_cmd <= 21) {
3775 res = issue_thinkpad_cmos_command(cmos_cmd);
3783 static struct ibm_struct cmos_driver_data = {
3786 .write = cmos_write,
3790 /*************************************************************************
3794 enum led_access_mode {
3795 TPACPI_LED_NONE = 0,
3796 TPACPI_LED_570, /* 570 */
3797 TPACPI_LED_OLD, /* 600e/x, 770e, 770x, A21e, A2xm/p, T20-22, X20-21 */
3798 TPACPI_LED_NEW, /* all others */
3801 enum { /* For TPACPI_LED_OLD */
3802 TPACPI_LED_EC_HLCL = 0x0c, /* EC reg to get led to power on */
3803 TPACPI_LED_EC_HLBL = 0x0d, /* EC reg to blink a lit led */
3804 TPACPI_LED_EC_HLMS = 0x0e, /* EC reg to select led to command */
3813 static enum led_access_mode led_supported;
3815 TPACPI_HANDLE(led, ec, "SLED", /* 570 */
3816 "SYSL", /* 600e/x, 770e, 770x, A21e, A2xm/p, */
3817 /* T20-22, X20-21 */
3818 "LED", /* all others */
3821 #define TPACPI_LED_NUMLEDS 8
3822 static struct tpacpi_led_classdev *tpacpi_leds;
3823 static enum led_status_t tpacpi_led_state_cache[TPACPI_LED_NUMLEDS];
3824 static const char const *tpacpi_led_names[TPACPI_LED_NUMLEDS] = {
3825 /* there's a limit of 19 chars + NULL before 2.6.26 */
3827 "tpacpi:orange:batt",
3828 "tpacpi:green:batt",
3829 "tpacpi::dock_active",
3830 "tpacpi::bay_active",
3831 "tpacpi::dock_batt",
3832 "tpacpi::unknown_led",
3836 static int led_get_status(unsigned int led)
3839 enum led_status_t led_s;
3841 switch (led_supported) {
3842 case TPACPI_LED_570:
3843 if (!acpi_evalf(ec_handle,
3844 &status, "GLED", "dd", 1 << led))
3846 led_s = (status == 0)?
3851 tpacpi_led_state_cache[led] = led_s;
3860 static int led_set_status(unsigned int led, enum led_status_t ledstatus)
3862 /* off, on, blink. Index is led_status_t */
3863 static const int const led_sled_arg1[] = { 0, 1, 3 };
3864 static const int const led_exp_hlbl[] = { 0, 0, 1 }; /* led# * */
3865 static const int const led_exp_hlcl[] = { 0, 1, 1 }; /* led# * */
3866 static const int const led_led_arg1[] = { 0, 0x80, 0xc0 };
3870 switch (led_supported) {
3871 case TPACPI_LED_570:
3874 if (!acpi_evalf(led_handle, NULL, NULL, "vdd",
3875 led, led_sled_arg1[ledstatus]))
3878 case TPACPI_LED_OLD:
3879 /* 600e/x, 770e, 770x, A21e, A2xm/p, T20-22, X20 */
3881 rc = ec_write(TPACPI_LED_EC_HLMS, led);
3883 rc = ec_write(TPACPI_LED_EC_HLBL,
3884 led * led_exp_hlbl[ledstatus]);
3886 rc = ec_write(TPACPI_LED_EC_HLCL,
3887 led * led_exp_hlcl[ledstatus]);
3889 case TPACPI_LED_NEW:
3891 if (!acpi_evalf(led_handle, NULL, NULL, "vdd",
3892 led, led_led_arg1[ledstatus]))
3900 tpacpi_led_state_cache[led] = ledstatus;
3905 static void led_sysfs_set_status(unsigned int led,
3906 enum led_brightness brightness)
3909 (brightness == LED_OFF) ?
3911 (tpacpi_led_state_cache[led] == TPACPI_LED_BLINK) ?
3912 TPACPI_LED_BLINK : TPACPI_LED_ON);
3915 static void led_set_status_worker(struct work_struct *work)
3917 struct tpacpi_led_classdev *data =
3918 container_of(work, struct tpacpi_led_classdev, work);
3920 if (likely(tpacpi_lifecycle == TPACPI_LIFE_RUNNING))
3921 led_sysfs_set_status(data->led, data->new_brightness);
3924 static void led_sysfs_set(struct led_classdev *led_cdev,
3925 enum led_brightness brightness)
3927 struct tpacpi_led_classdev *data = container_of(led_cdev,
3928 struct tpacpi_led_classdev, led_classdev);
3930 data->new_brightness = brightness;
3931 queue_work(tpacpi_wq, &data->work);
3934 static int led_sysfs_blink_set(struct led_classdev *led_cdev,
3935 unsigned long *delay_on, unsigned long *delay_off)
3937 struct tpacpi_led_classdev *data = container_of(led_cdev,
3938 struct tpacpi_led_classdev, led_classdev);
3940 /* Can we choose the flash rate? */
3941 if (*delay_on == 0 && *delay_off == 0) {
3942 /* yes. set them to the hardware blink rate (1 Hz) */
3943 *delay_on = 500; /* ms */
3944 *delay_off = 500; /* ms */
3945 } else if ((*delay_on != 500) || (*delay_off != 500))
3948 data->new_brightness = TPACPI_LED_BLINK;
3949 queue_work(tpacpi_wq, &data->work);
3954 static enum led_brightness led_sysfs_get(struct led_classdev *led_cdev)
3958 struct tpacpi_led_classdev *data = container_of(led_cdev,
3959 struct tpacpi_led_classdev, led_classdev);
3961 rc = led_get_status(data->led);
3963 if (rc == TPACPI_LED_OFF || rc < 0)
3964 rc = LED_OFF; /* no error handling in led class :( */
3971 static void led_exit(void)
3975 for (i = 0; i < TPACPI_LED_NUMLEDS; i++) {
3976 if (tpacpi_leds[i].led_classdev.name)
3977 led_classdev_unregister(&tpacpi_leds[i].led_classdev);
3984 static int __init led_init(struct ibm_init_struct *iibm)
3989 vdbg_printk(TPACPI_DBG_INIT, "initializing LED subdriver\n");
3991 TPACPI_ACPIHANDLE_INIT(led);
3994 /* led not supported on R30, R31 */
3995 led_supported = TPACPI_LED_NONE;
3996 else if (strlencmp(led_path, "SLED") == 0)
3998 led_supported = TPACPI_LED_570;
3999 else if (strlencmp(led_path, "SYSL") == 0)
4000 /* 600e/x, 770e, 770x, A21e, A2xm/p, T20-22, X20-21 */
4001 led_supported = TPACPI_LED_OLD;
4004 led_supported = TPACPI_LED_NEW;
4006 vdbg_printk(TPACPI_DBG_INIT, "LED commands are %s, mode %d\n",
4007 str_supported(led_supported), led_supported);
4009 tpacpi_leds = kzalloc(sizeof(*tpacpi_leds) * TPACPI_LED_NUMLEDS,
4012 printk(TPACPI_ERR "Out of memory for LED data\n");
4016 for (i = 0; i < TPACPI_LED_NUMLEDS; i++) {
4017 tpacpi_leds[i].led = i;
4019 tpacpi_leds[i].led_classdev.brightness_set = &led_sysfs_set;
4020 tpacpi_leds[i].led_classdev.blink_set = &led_sysfs_blink_set;
4021 if (led_supported == TPACPI_LED_570)
4022 tpacpi_leds[i].led_classdev.brightness_get =
4025 tpacpi_leds[i].led_classdev.name = tpacpi_led_names[i];
4027 INIT_WORK(&tpacpi_leds[i].work, led_set_status_worker);
4029 rc = led_classdev_register(&tpacpi_pdev->dev,
4030 &tpacpi_leds[i].led_classdev);
4032 tpacpi_leds[i].led_classdev.name = NULL;
4038 return (led_supported != TPACPI_LED_NONE)? 0 : 1;
4041 #define str_led_status(s) \
4042 ((s) == TPACPI_LED_OFF ? "off" : \
4043 ((s) == TPACPI_LED_ON ? "on" : "blinking"))
4045 static int led_read(char *p)
4049 if (!led_supported) {
4050 len += sprintf(p + len, "status:\t\tnot supported\n");
4053 len += sprintf(p + len, "status:\t\tsupported\n");
4055 if (led_supported == TPACPI_LED_570) {
4058 for (i = 0; i < 8; i++) {
4059 status = led_get_status(i);
4062 len += sprintf(p + len, "%d:\t\t%s\n",
4063 i, str_led_status(status));
4067 len += sprintf(p + len, "commands:\t"
4068 "<led> on, <led> off, <led> blink (<led> is 0-7)\n");
4073 static int led_write(char *buf)
4077 enum led_status_t s;
4082 while ((cmd = next_cmd(&buf))) {
4083 if (sscanf(cmd, "%d", &led) != 1 || led < 0 || led > 7)
4086 if (strstr(cmd, "off")) {
4088 } else if (strstr(cmd, "on")) {
4090 } else if (strstr(cmd, "blink")) {
4091 s = TPACPI_LED_BLINK;
4096 rc = led_set_status(led, s);
4104 static struct ibm_struct led_driver_data = {
4111 /*************************************************************************
4115 TPACPI_HANDLE(beep, ec, "BEEP"); /* all except R30, R31 */
4117 static int __init beep_init(struct ibm_init_struct *iibm)
4119 vdbg_printk(TPACPI_DBG_INIT, "initializing beep subdriver\n");
4121 TPACPI_ACPIHANDLE_INIT(beep);
4123 vdbg_printk(TPACPI_DBG_INIT, "beep is %s\n",
4124 str_supported(beep_handle != NULL));
4126 return (beep_handle)? 0 : 1;
4129 static int beep_read(char *p)
4134 len += sprintf(p + len, "status:\t\tnot supported\n");
4136 len += sprintf(p + len, "status:\t\tsupported\n");
4137 len += sprintf(p + len, "commands:\t<cmd> (<cmd> is 0-17)\n");
4143 static int beep_write(char *buf)
4151 while ((cmd = next_cmd(&buf))) {
4152 if (sscanf(cmd, "%u", &beep_cmd) == 1 &&
4153 beep_cmd >= 0 && beep_cmd <= 17) {
4157 if (!acpi_evalf(beep_handle, NULL, NULL, "vdd", beep_cmd, 0))
4164 static struct ibm_struct beep_driver_data = {
4167 .write = beep_write,
4170 /*************************************************************************
4174 enum thermal_access_mode {
4175 TPACPI_THERMAL_NONE = 0, /* No thermal support */
4176 TPACPI_THERMAL_ACPI_TMP07, /* Use ACPI TMP0-7 */
4177 TPACPI_THERMAL_ACPI_UPDT, /* Use ACPI TMP0-7 with UPDT */
4178 TPACPI_THERMAL_TPEC_8, /* Use ACPI EC regs, 8 sensors */
4179 TPACPI_THERMAL_TPEC_16, /* Use ACPI EC regs, 16 sensors */
4182 enum { /* TPACPI_THERMAL_TPEC_* */
4183 TP_EC_THERMAL_TMP0 = 0x78, /* ACPI EC regs TMP 0..7 */
4184 TP_EC_THERMAL_TMP8 = 0xC0, /* ACPI EC regs TMP 8..15 */
4185 TP_EC_THERMAL_TMP_NA = -128, /* ACPI EC sensor not available */
4188 #define TPACPI_MAX_THERMAL_SENSORS 16 /* Max thermal sensors supported */
4189 struct ibm_thermal_sensors_struct {
4190 s32 temp[TPACPI_MAX_THERMAL_SENSORS];
4193 static enum thermal_access_mode thermal_read_mode;
4195 /* idx is zero-based */
4196 static int thermal_get_sensor(int idx, s32 *value)
4202 t = TP_EC_THERMAL_TMP0;
4204 switch (thermal_read_mode) {
4205 #if TPACPI_MAX_THERMAL_SENSORS >= 16
4206 case TPACPI_THERMAL_TPEC_16:
4207 if (idx >= 8 && idx <= 15) {
4208 t = TP_EC_THERMAL_TMP8;
4213 case TPACPI_THERMAL_TPEC_8:
4215 if (!acpi_ec_read(t + idx, &tmp))
4217 *value = tmp * 1000;
4222 case TPACPI_THERMAL_ACPI_UPDT:
4224 snprintf(tmpi, sizeof(tmpi), "TMP%c", '0' + idx);
4225 if (!acpi_evalf(ec_handle, NULL, "UPDT", "v"))
4227 if (!acpi_evalf(ec_handle, &t, tmpi, "d"))
4229 *value = (t - 2732) * 100;
4234 case TPACPI_THERMAL_ACPI_TMP07:
4236 snprintf(tmpi, sizeof(tmpi), "TMP%c", '0' + idx);
4237 if (!acpi_evalf(ec_handle, &t, tmpi, "d"))
4239 if (t > 127 || t < -127)
4240 t = TP_EC_THERMAL_TMP_NA;
4246 case TPACPI_THERMAL_NONE:
4254 static int thermal_get_sensors(struct ibm_thermal_sensors_struct *s)
4265 if (thermal_read_mode == TPACPI_THERMAL_TPEC_16)
4268 for (i = 0 ; i < n; i++) {
4269 res = thermal_get_sensor(i, &s->temp[i]);
4277 /* sysfs temp##_input -------------------------------------------------- */
4279 static ssize_t thermal_temp_input_show(struct device *dev,
4280 struct device_attribute *attr,
4283 struct sensor_device_attribute *sensor_attr =
4284 to_sensor_dev_attr(attr);
4285 int idx = sensor_attr->index;
4289 res = thermal_get_sensor(idx, &value);
4292 if (value == TP_EC_THERMAL_TMP_NA * 1000)
4295 return snprintf(buf, PAGE_SIZE, "%d\n", value);
4298 #define THERMAL_SENSOR_ATTR_TEMP(_idxA, _idxB) \
4299 SENSOR_ATTR(temp##_idxA##_input, S_IRUGO, \
4300 thermal_temp_input_show, NULL, _idxB)
4302 static struct sensor_device_attribute sensor_dev_attr_thermal_temp_input[] = {
4303 THERMAL_SENSOR_ATTR_TEMP(1, 0),
4304 THERMAL_SENSOR_ATTR_TEMP(2, 1),
4305 THERMAL_SENSOR_ATTR_TEMP(3, 2),
4306 THERMAL_SENSOR_ATTR_TEMP(4, 3),
4307 THERMAL_SENSOR_ATTR_TEMP(5, 4),
4308 THERMAL_SENSOR_ATTR_TEMP(6, 5),
4309 THERMAL_SENSOR_ATTR_TEMP(7, 6),
4310 THERMAL_SENSOR_ATTR_TEMP(8, 7),
4311 THERMAL_SENSOR_ATTR_TEMP(9, 8),
4312 THERMAL_SENSOR_ATTR_TEMP(10, 9),
4313 THERMAL_SENSOR_ATTR_TEMP(11, 10),
4314 THERMAL_SENSOR_ATTR_TEMP(12, 11),
4315 THERMAL_SENSOR_ATTR_TEMP(13, 12),
4316 THERMAL_SENSOR_ATTR_TEMP(14, 13),
4317 THERMAL_SENSOR_ATTR_TEMP(15, 14),
4318 THERMAL_SENSOR_ATTR_TEMP(16, 15),
4321 #define THERMAL_ATTRS(X) \
4322 &sensor_dev_attr_thermal_temp_input[X].dev_attr.attr
4324 static struct attribute *thermal_temp_input_attr[] = {
4344 static const struct attribute_group thermal_temp_input16_group = {
4345 .attrs = thermal_temp_input_attr
4348 static const struct attribute_group thermal_temp_input8_group = {
4349 .attrs = &thermal_temp_input_attr[8]
4352 #undef THERMAL_SENSOR_ATTR_TEMP
4353 #undef THERMAL_ATTRS
4355 /* --------------------------------------------------------------------- */
4357 static int __init thermal_init(struct ibm_init_struct *iibm)
4364 vdbg_printk(TPACPI_DBG_INIT, "initializing thermal subdriver\n");
4366 acpi_tmp7 = acpi_evalf(ec_handle, NULL, "TMP7", "qv");
4368 if (thinkpad_id.ec_model) {
4370 * Direct EC access mode: sensors at registers
4371 * 0x78-0x7F, 0xC0-0xC7. Registers return 0x00 for
4372 * non-implemented, thermal sensors return 0x80 when
4377 for (i = 0; i < 8; i++) {
4378 if (acpi_ec_read(TP_EC_THERMAL_TMP0 + i, &t)) {
4384 if (acpi_ec_read(TP_EC_THERMAL_TMP8 + i, &t)) {
4392 /* This is sheer paranoia, but we handle it anyway */
4395 "ThinkPad ACPI EC access misbehaving, "
4396 "falling back to ACPI TMPx access "
4398 thermal_read_mode = TPACPI_THERMAL_ACPI_TMP07;
4401 "ThinkPad ACPI EC access misbehaving, "
4402 "disabling thermal sensors access\n");
4403 thermal_read_mode = TPACPI_THERMAL_NONE;
4408 TPACPI_THERMAL_TPEC_16 : TPACPI_THERMAL_TPEC_8;
4410 } else if (acpi_tmp7) {
4411 if (acpi_evalf(ec_handle, NULL, "UPDT", "qv")) {
4412 /* 600e/x, 770e, 770x */
4413 thermal_read_mode = TPACPI_THERMAL_ACPI_UPDT;
4415 /* Standard ACPI TMPx access, max 8 sensors */
4416 thermal_read_mode = TPACPI_THERMAL_ACPI_TMP07;
4419 /* temperatures not supported on 570, G4x, R30, R31, R32 */
4420 thermal_read_mode = TPACPI_THERMAL_NONE;
4423 vdbg_printk(TPACPI_DBG_INIT, "thermal is %s, mode %d\n",
4424 str_supported(thermal_read_mode != TPACPI_THERMAL_NONE),
4427 switch (thermal_read_mode) {
4428 case TPACPI_THERMAL_TPEC_16:
4429 res = sysfs_create_group(&tpacpi_sensors_pdev->dev.kobj,
4430 &thermal_temp_input16_group);
4434 case TPACPI_THERMAL_TPEC_8:
4435 case TPACPI_THERMAL_ACPI_TMP07:
4436 case TPACPI_THERMAL_ACPI_UPDT:
4437 res = sysfs_create_group(&tpacpi_sensors_pdev->dev.kobj,
4438 &thermal_temp_input8_group);
4442 case TPACPI_THERMAL_NONE:
4450 static void thermal_exit(void)
4452 switch (thermal_read_mode) {
4453 case TPACPI_THERMAL_TPEC_16:
4454 sysfs_remove_group(&tpacpi_sensors_pdev->dev.kobj,
4455 &thermal_temp_input16_group);
4457 case TPACPI_THERMAL_TPEC_8:
4458 case TPACPI_THERMAL_ACPI_TMP07:
4459 case TPACPI_THERMAL_ACPI_UPDT:
4460 sysfs_remove_group(&tpacpi_sensors_pdev->dev.kobj,
4461 &thermal_temp_input16_group);
4463 case TPACPI_THERMAL_NONE:
4469 static int thermal_read(char *p)
4473 struct ibm_thermal_sensors_struct t;
4475 n = thermal_get_sensors(&t);
4476 if (unlikely(n < 0))
4479 len += sprintf(p + len, "temperatures:\t");
4482 for (i = 0; i < (n - 1); i++)
4483 len += sprintf(p + len, "%d ", t.temp[i] / 1000);
4484 len += sprintf(p + len, "%d\n", t.temp[i] / 1000);
4486 len += sprintf(p + len, "not supported\n");
4491 static struct ibm_struct thermal_driver_data = {
4493 .read = thermal_read,
4494 .exit = thermal_exit,
4497 /*************************************************************************
4501 static u8 ecdump_regs[256];
4503 static int ecdump_read(char *p)
4509 len += sprintf(p + len, "EC "
4510 " +00 +01 +02 +03 +04 +05 +06 +07"
4511 " +08 +09 +0a +0b +0c +0d +0e +0f\n");
4512 for (i = 0; i < 256; i += 16) {
4513 len += sprintf(p + len, "EC 0x%02x:", i);
4514 for (j = 0; j < 16; j++) {
4515 if (!acpi_ec_read(i + j, &v))
4517 if (v != ecdump_regs[i + j])
4518 len += sprintf(p + len, " *%02x", v);
4520 len += sprintf(p + len, " %02x", v);
4521 ecdump_regs[i + j] = v;
4523 len += sprintf(p + len, "\n");
4528 /* These are way too dangerous to advertise openly... */
4530 len += sprintf(p + len, "commands:\t0x<offset> 0x<value>"
4531 " (<offset> is 00-ff, <value> is 00-ff)\n");
4532 len += sprintf(p + len, "commands:\t0x<offset> <value> "
4533 " (<offset> is 00-ff, <value> is 0-255)\n");
4538 static int ecdump_write(char *buf)
4543 while ((cmd = next_cmd(&buf))) {
4544 if (sscanf(cmd, "0x%x 0x%x", &i, &v) == 2) {
4546 } else if (sscanf(cmd, "0x%x %u", &i, &v) == 2) {
4550 if (i >= 0 && i < 256 && v >= 0 && v < 256) {
4551 if (!acpi_ec_write(i, v))
4560 static struct ibm_struct ecdump_driver_data = {
4562 .read = ecdump_read,
4563 .write = ecdump_write,
4564 .flags.experimental = 1,
4567 /*************************************************************************
4568 * Backlight/brightness subdriver
4571 #define TPACPI_BACKLIGHT_DEV_NAME "thinkpad_screen"
4574 TP_EC_BACKLIGHT = 0x31,
4576 /* TP_EC_BACKLIGHT bitmasks */
4577 TP_EC_BACKLIGHT_LVLMSK = 0x1F,
4578 TP_EC_BACKLIGHT_CMDMSK = 0xE0,
4579 TP_EC_BACKLIGHT_MAPSW = 0x20,
4582 static struct backlight_device *ibm_backlight_device;
4583 static int brightness_mode;
4584 static unsigned int brightness_enable = 2; /* 2 = auto, 0 = no, 1 = yes */
4586 static struct mutex brightness_mutex;
4589 * ThinkPads can read brightness from two places: EC 0x31, or
4590 * CMOS NVRAM byte 0x5E, bits 0-3.
4592 * EC 0x31 has the following layout
4593 * Bit 7: unknown function
4594 * Bit 6: unknown function
4595 * Bit 5: Z: honour scale changes, NZ: ignore scale changes
4596 * Bit 4: must be set to zero to avoid problems
4597 * Bit 3-0: backlight brightness level
4599 * brightness_get_raw returns status data in the EC 0x31 layout
4601 static int brightness_get_raw(int *status)
4603 u8 lec = 0, lcmos = 0, level = 0;
4605 if (brightness_mode & 1) {
4606 if (!acpi_ec_read(TP_EC_BACKLIGHT, &lec))
4608 level = lec & TP_EC_BACKLIGHT_LVLMSK;
4610 if (brightness_mode & 2) {
4611 lcmos = (nvram_read_byte(TP_NVRAM_ADDR_BRIGHTNESS)
4612 & TP_NVRAM_MASK_LEVEL_BRIGHTNESS)
4613 >> TP_NVRAM_POS_LEVEL_BRIGHTNESS;
4614 lcmos &= (tp_features.bright_16levels)? 0x0f : 0x07;
4618 if (brightness_mode == 3) {
4619 *status = lec; /* Prefer EC, CMOS is just a backing store */
4620 lec &= TP_EC_BACKLIGHT_LVLMSK;
4622 tp_warned.bright_cmos_ec_unsync = 0;
4624 if (!tp_warned.bright_cmos_ec_unsync) {
4626 "CMOS NVRAM (%u) and EC (%u) do not "
4627 "agree on display brightness level\n",
4628 (unsigned int) lcmos,
4629 (unsigned int) lec);
4630 tp_warned.bright_cmos_ec_unsync = 1;
4641 /* May return EINTR which can always be mapped to ERESTARTSYS */
4642 static int brightness_set(int value)
4644 int cmos_cmd, inc, i, res;
4648 if (value > ((tp_features.bright_16levels)? 15 : 7) ||
4652 res = mutex_lock_interruptible(&brightness_mutex);
4656 res = brightness_get_raw(¤t_value);
4660 command_bits = current_value & TP_EC_BACKLIGHT_CMDMSK;
4661 current_value &= TP_EC_BACKLIGHT_LVLMSK;
4663 cmos_cmd = value > current_value ?
4664 TP_CMOS_BRIGHTNESS_UP :
4665 TP_CMOS_BRIGHTNESS_DOWN;
4666 inc = (value > current_value)? 1 : -1;
4669 for (i = current_value; i != value; i += inc) {
4670 if ((brightness_mode & 2) &&
4671 issue_thinkpad_cmos_command(cmos_cmd)) {
4675 if ((brightness_mode & 1) &&
4676 !acpi_ec_write(TP_EC_BACKLIGHT,
4677 (i + inc) | command_bits)) {
4684 mutex_unlock(&brightness_mutex);
4688 /* sysfs backlight class ----------------------------------------------- */
4690 static int brightness_update_status(struct backlight_device *bd)
4692 /* it is the backlight class's job (caller) to handle
4693 * EINTR and other errors properly */
4694 return brightness_set(
4695 (bd->props.fb_blank == FB_BLANK_UNBLANK &&
4696 bd->props.power == FB_BLANK_UNBLANK) ?
4697 bd->props.brightness : 0);
4700 static int brightness_get(struct backlight_device *bd)
4704 res = brightness_get_raw(&status);
4706 return 0; /* FIXME: teach backlight about error handling */
4708 return status & TP_EC_BACKLIGHT_LVLMSK;
4711 static struct backlight_ops ibm_backlight_data = {
4712 .get_brightness = brightness_get,
4713 .update_status = brightness_update_status,
4716 /* --------------------------------------------------------------------- */
4718 static int __init brightness_init(struct ibm_init_struct *iibm)
4722 vdbg_printk(TPACPI_DBG_INIT, "initializing brightness subdriver\n");
4724 mutex_init(&brightness_mutex);
4727 * We always attempt to detect acpi support, so as to switch
4728 * Lenovo Vista BIOS to ACPI brightness mode even if we are not
4729 * going to publish a backlight interface
4731 b = tpacpi_check_std_acpi_brightness_support();
4733 if (thinkpad_id.vendor == PCI_VENDOR_ID_LENOVO) {
4734 printk(TPACPI_NOTICE
4735 "Lenovo BIOS switched to ACPI backlight "
4738 if (brightness_enable > 1) {
4739 printk(TPACPI_NOTICE
4740 "standard ACPI backlight interface "
4741 "available, not loading native one...\n");
4746 if (!brightness_enable) {
4747 dbg_printk(TPACPI_DBG_INIT,
4748 "brightness support disabled by "
4749 "module parameter\n");
4755 "Unsupported brightness interface, "
4756 "please contact %s\n", TPACPI_MAIL);
4760 tp_features.bright_16levels = 1;
4762 if (!brightness_mode) {
4763 if (thinkpad_id.vendor == PCI_VENDOR_ID_LENOVO)
4764 brightness_mode = 2;
4766 brightness_mode = 3;
4768 dbg_printk(TPACPI_DBG_INIT, "selected brightness_mode=%d\n",
4772 if (brightness_mode > 3)
4775 if (brightness_get_raw(&b) < 0)
4778 if (tp_features.bright_16levels)
4780 "detected a 16-level brightness capable ThinkPad\n");
4782 ibm_backlight_device = backlight_device_register(
4783 TPACPI_BACKLIGHT_DEV_NAME, NULL, NULL,
4784 &ibm_backlight_data);
4785 if (IS_ERR(ibm_backlight_device)) {
4786 printk(TPACPI_ERR "Could not register backlight device\n");
4787 return PTR_ERR(ibm_backlight_device);
4789 vdbg_printk(TPACPI_DBG_INIT, "brightness is supported\n");
4791 ibm_backlight_device->props.max_brightness =
4792 (tp_features.bright_16levels)? 15 : 7;
4793 ibm_backlight_device->props.brightness = b & TP_EC_BACKLIGHT_LVLMSK;
4794 backlight_update_status(ibm_backlight_device);
4799 static void brightness_exit(void)
4801 if (ibm_backlight_device) {
4802 vdbg_printk(TPACPI_DBG_EXIT,
4803 "calling backlight_device_unregister()\n");
4804 backlight_device_unregister(ibm_backlight_device);
4805 ibm_backlight_device = NULL;
4809 static int brightness_read(char *p)
4814 level = brightness_get(NULL);
4816 len += sprintf(p + len, "level:\t\tunreadable\n");
4818 len += sprintf(p + len, "level:\t\t%d\n", level);
4819 len += sprintf(p + len, "commands:\tup, down\n");
4820 len += sprintf(p + len, "commands:\tlevel <level>"
4821 " (<level> is 0-%d)\n",
4822 (tp_features.bright_16levels) ? 15 : 7);
4828 static int brightness_write(char *buf)
4833 int max_level = (tp_features.bright_16levels) ? 15 : 7;
4835 level = brightness_get(NULL);
4839 while ((cmd = next_cmd(&buf))) {
4840 if (strlencmp(cmd, "up") == 0) {
4841 if (level < max_level)
4843 } else if (strlencmp(cmd, "down") == 0) {
4846 } else if (sscanf(cmd, "level %d", &level) == 1 &&
4847 level >= 0 && level <= max_level) {
4854 * Now we know what the final level should be, so we try to set it.
4855 * Doing it this way makes the syscall restartable in case of EINTR
4857 rc = brightness_set(level);
4858 return (rc == -EINTR)? ERESTARTSYS : rc;
4861 static struct ibm_struct brightness_driver_data = {
4862 .name = "brightness",
4863 .read = brightness_read,
4864 .write = brightness_write,
4865 .exit = brightness_exit,
4868 /*************************************************************************
4872 static int volume_offset = 0x30;
4874 static int volume_read(char *p)
4879 if (!acpi_ec_read(volume_offset, &level)) {
4880 len += sprintf(p + len, "level:\t\tunreadable\n");
4882 len += sprintf(p + len, "level:\t\t%d\n", level & 0xf);
4883 len += sprintf(p + len, "mute:\t\t%s\n", onoff(level, 6));
4884 len += sprintf(p + len, "commands:\tup, down, mute\n");
4885 len += sprintf(p + len, "commands:\tlevel <level>"
4886 " (<level> is 0-15)\n");
4892 static int volume_write(char *buf)
4894 int cmos_cmd, inc, i;
4896 int new_level, new_mute;
4899 while ((cmd = next_cmd(&buf))) {
4900 if (!acpi_ec_read(volume_offset, &level))
4902 new_mute = mute = level & 0x40;
4903 new_level = level = level & 0xf;
4905 if (strlencmp(cmd, "up") == 0) {
4909 new_level = level == 15 ? 15 : level + 1;
4910 } else if (strlencmp(cmd, "down") == 0) {
4914 new_level = level == 0 ? 0 : level - 1;
4915 } else if (sscanf(cmd, "level %d", &new_level) == 1 &&
4916 new_level >= 0 && new_level <= 15) {
4918 } else if (strlencmp(cmd, "mute") == 0) {
4923 if (new_level != level) {
4924 /* mute doesn't change */
4926 cmos_cmd = (new_level > level) ?
4927 TP_CMOS_VOLUME_UP : TP_CMOS_VOLUME_DOWN;
4928 inc = new_level > level ? 1 : -1;
4930 if (mute && (issue_thinkpad_cmos_command(cmos_cmd) ||
4931 !acpi_ec_write(volume_offset, level)))
4934 for (i = level; i != new_level; i += inc)
4935 if (issue_thinkpad_cmos_command(cmos_cmd) ||
4936 !acpi_ec_write(volume_offset, i + inc))
4940 (issue_thinkpad_cmos_command(TP_CMOS_VOLUME_MUTE) ||
4941 !acpi_ec_write(volume_offset, new_level + mute))) {
4946 if (new_mute != mute) {
4947 /* level doesn't change */
4949 cmos_cmd = (new_mute) ?
4950 TP_CMOS_VOLUME_MUTE : TP_CMOS_VOLUME_UP;
4952 if (issue_thinkpad_cmos_command(cmos_cmd) ||
4953 !acpi_ec_write(volume_offset, level + new_mute))
4961 static struct ibm_struct volume_driver_data = {
4963 .read = volume_read,
4964 .write = volume_write,
4967 /*************************************************************************
4974 * TPACPI_FAN_RD_ACPI_GFAN:
4975 * ACPI GFAN method: returns fan level
4977 * see TPACPI_FAN_WR_ACPI_SFAN
4978 * EC 0x2f (HFSP) not available if GFAN exists
4980 * TPACPI_FAN_WR_ACPI_SFAN:
4981 * ACPI SFAN method: sets fan level, 0 (stop) to 7 (max)
4983 * EC 0x2f (HFSP) might be available *for reading*, but do not use
4986 * TPACPI_FAN_WR_TPEC:
4987 * ThinkPad EC register 0x2f (HFSP): fan control loop mode
4988 * Supported on almost all ThinkPads
4990 * Fan speed changes of any sort (including those caused by the
4991 * disengaged mode) are usually done slowly by the firmware as the
4992 * maximum ammount of fan duty cycle change per second seems to be
4995 * Reading is not available if GFAN exists.
4996 * Writing is not available if SFAN exists.
4999 * 7 automatic mode engaged;
5000 * (default operation mode of the ThinkPad)
5001 * fan level is ignored in this mode.
5002 * 6 full speed mode (takes precedence over bit 7);
5003 * not available on all thinkpads. May disable
5004 * the tachometer while the fan controller ramps up
5005 * the speed (which can take up to a few *minutes*).
5006 * Speeds up fan to 100% duty-cycle, which is far above
5007 * the standard RPM levels. It is not impossible that
5008 * it could cause hardware damage.
5009 * 5-3 unused in some models. Extra bits for fan level
5010 * in others, but still useless as all values above
5011 * 7 map to the same speed as level 7 in these models.
5012 * 2-0 fan level (0..7 usually)
5014 * 0x07 = max (set when temperatures critical)
5015 * Some ThinkPads may have other levels, see
5016 * TPACPI_FAN_WR_ACPI_FANS (X31/X40/X41)
5018 * FIRMWARE BUG: on some models, EC 0x2f might not be initialized at
5019 * boot. Apparently the EC does not intialize it, so unless ACPI DSDT
5020 * does so, its initial value is meaningless (0x07).
5022 * For firmware bugs, refer to:
5023 * http://thinkwiki.org/wiki/Embedded_Controller_Firmware#Firmware_Issues
5027 * ThinkPad EC register 0x84 (LSB), 0x85 (MSB):
5028 * Main fan tachometer reading (in RPM)
5030 * This register is present on all ThinkPads with a new-style EC, and
5031 * it is known not to be present on the A21m/e, and T22, as there is
5032 * something else in offset 0x84 according to the ACPI DSDT. Other
5033 * ThinkPads from this same time period (and earlier) probably lack the
5034 * tachometer as well.
5036 * Unfortunately a lot of ThinkPads with new-style ECs but whose firwmare
5037 * was never fixed by IBM to report the EC firmware version string
5038 * probably support the tachometer (like the early X models), so
5039 * detecting it is quite hard. We need more data to know for sure.
5041 * FIRMWARE BUG: always read 0x84 first, otherwise incorrect readings
5044 * FIRMWARE BUG: may go stale while the EC is switching to full speed
5047 * For firmware bugs, refer to:
5048 * http://thinkwiki.org/wiki/Embedded_Controller_Firmware#Firmware_Issues
5050 * TPACPI_FAN_WR_ACPI_FANS:
5051 * ThinkPad X31, X40, X41. Not available in the X60.
5053 * FANS ACPI handle: takes three arguments: low speed, medium speed,
5054 * high speed. ACPI DSDT seems to map these three speeds to levels
5055 * as follows: STOP LOW LOW MED MED HIGH HIGH HIGH HIGH
5056 * (this map is stored on FAN0..FAN8 as "0,1,1,2,2,3,3,3,3")
5058 * The speeds are stored on handles
5059 * (FANA:FAN9), (FANC:FANB), (FANE:FAND).
5061 * There are three default speed sets, acessible as handles:
5062 * FS1L,FS1M,FS1H; FS2L,FS2M,FS2H; FS3L,FS3M,FS3H
5064 * ACPI DSDT switches which set is in use depending on various
5067 * TPACPI_FAN_WR_TPEC is also available and should be used to
5068 * command the fan. The X31/X40/X41 seems to have 8 fan levels,
5069 * but the ACPI tables just mention level 7.
5072 enum { /* Fan control constants */
5073 fan_status_offset = 0x2f, /* EC register 0x2f */
5074 fan_rpm_offset = 0x84, /* EC register 0x84: LSB, 0x85 MSB (RPM)
5075 * 0x84 must be read before 0x85 */
5077 TP_EC_FAN_FULLSPEED = 0x40, /* EC fan mode: full speed */
5078 TP_EC_FAN_AUTO = 0x80, /* EC fan mode: auto fan control */
5080 TPACPI_FAN_LAST_LEVEL = 0x100, /* Use cached last-seen fan level */
5083 enum fan_status_access_mode {
5084 TPACPI_FAN_NONE = 0, /* No fan status or control */
5085 TPACPI_FAN_RD_ACPI_GFAN, /* Use ACPI GFAN */
5086 TPACPI_FAN_RD_TPEC, /* Use ACPI EC regs 0x2f, 0x84-0x85 */
5089 enum fan_control_access_mode {
5090 TPACPI_FAN_WR_NONE = 0, /* No fan control */
5091 TPACPI_FAN_WR_ACPI_SFAN, /* Use ACPI SFAN */
5092 TPACPI_FAN_WR_TPEC, /* Use ACPI EC reg 0x2f */
5093 TPACPI_FAN_WR_ACPI_FANS, /* Use ACPI FANS and EC reg 0x2f */
5096 enum fan_control_commands {
5097 TPACPI_FAN_CMD_SPEED = 0x0001, /* speed command */
5098 TPACPI_FAN_CMD_LEVEL = 0x0002, /* level command */
5099 TPACPI_FAN_CMD_ENABLE = 0x0004, /* enable/disable cmd,
5100 * and also watchdog cmd */
5103 static int fan_control_allowed;
5105 static enum fan_status_access_mode fan_status_access_mode;
5106 static enum fan_control_access_mode fan_control_access_mode;
5107 static enum fan_control_commands fan_control_commands;
5109 static u8 fan_control_initial_status;
5110 static u8 fan_control_desired_level;
5111 static int fan_watchdog_maxinterval;
5113 static struct mutex fan_mutex;
5115 static void fan_watchdog_fire(struct work_struct *ignored);
5116 static DECLARE_DELAYED_WORK(fan_watchdog_task, fan_watchdog_fire);
5118 TPACPI_HANDLE(fans, ec, "FANS"); /* X31, X40, X41 */
5119 TPACPI_HANDLE(gfan, ec, "GFAN", /* 570 */
5120 "\\FSPD", /* 600e/x, 770e, 770x */
5122 TPACPI_HANDLE(sfan, ec, "SFAN", /* 570 */
5123 "JFNS", /* 770x-JL */
5127 * Call with fan_mutex held
5129 static void fan_update_desired_level(u8 status)
5132 (TP_EC_FAN_AUTO | TP_EC_FAN_FULLSPEED)) == 0) {
5134 fan_control_desired_level = 7;
5136 fan_control_desired_level = status;
5140 static int fan_get_status(u8 *status)
5145 * Add TPACPI_FAN_RD_ACPI_FANS ? */
5147 switch (fan_status_access_mode) {
5148 case TPACPI_FAN_RD_ACPI_GFAN:
5149 /* 570, 600e/x, 770e, 770x */
5151 if (unlikely(!acpi_evalf(gfan_handle, &s, NULL, "d")))
5159 case TPACPI_FAN_RD_TPEC:
5160 /* all except 570, 600e/x, 770e, 770x */
5161 if (unlikely(!acpi_ec_read(fan_status_offset, &s)))
5176 static int fan_get_status_safe(u8 *status)
5181 if (mutex_lock_interruptible(&fan_mutex))
5182 return -ERESTARTSYS;
5183 rc = fan_get_status(&s);
5185 fan_update_desired_level(s);
5186 mutex_unlock(&fan_mutex);
5194 static int fan_get_speed(unsigned int *speed)
5198 switch (fan_status_access_mode) {
5199 case TPACPI_FAN_RD_TPEC:
5200 /* all except 570, 600e/x, 770e, 770x */
5201 if (unlikely(!acpi_ec_read(fan_rpm_offset, &lo) ||
5202 !acpi_ec_read(fan_rpm_offset + 1, &hi)))
5206 *speed = (hi << 8) | lo;
5217 static int fan_set_level(int level)
5219 if (!fan_control_allowed)
5222 switch (fan_control_access_mode) {
5223 case TPACPI_FAN_WR_ACPI_SFAN:
5224 if (level >= 0 && level <= 7) {
5225 if (!acpi_evalf(sfan_handle, NULL, NULL, "vd", level))
5231 case TPACPI_FAN_WR_ACPI_FANS:
5232 case TPACPI_FAN_WR_TPEC:
5233 if ((level != TP_EC_FAN_AUTO) &&
5234 (level != TP_EC_FAN_FULLSPEED) &&
5235 ((level < 0) || (level > 7)))
5238 /* safety net should the EC not support AUTO
5239 * or FULLSPEED mode bits and just ignore them */
5240 if (level & TP_EC_FAN_FULLSPEED)
5241 level |= 7; /* safety min speed 7 */
5242 else if (level & TP_EC_FAN_AUTO)
5243 level |= 4; /* safety min speed 4 */
5245 if (!acpi_ec_write(fan_status_offset, level))
5248 tp_features.fan_ctrl_status_undef = 0;
5257 static int fan_set_level_safe(int level)
5261 if (!fan_control_allowed)
5264 if (mutex_lock_interruptible(&fan_mutex))
5265 return -ERESTARTSYS;
5267 if (level == TPACPI_FAN_LAST_LEVEL)
5268 level = fan_control_desired_level;
5270 rc = fan_set_level(level);
5272 fan_update_desired_level(level);
5274 mutex_unlock(&fan_mutex);
5278 static int fan_set_enable(void)
5283 if (!fan_control_allowed)
5286 if (mutex_lock_interruptible(&fan_mutex))
5287 return -ERESTARTSYS;
5289 switch (fan_control_access_mode) {
5290 case TPACPI_FAN_WR_ACPI_FANS:
5291 case TPACPI_FAN_WR_TPEC:
5292 rc = fan_get_status(&s);
5296 /* Don't go out of emergency fan mode */
5299 s |= TP_EC_FAN_AUTO | 4; /* min fan speed 4 */
5302 if (!acpi_ec_write(fan_status_offset, s))
5305 tp_features.fan_ctrl_status_undef = 0;
5310 case TPACPI_FAN_WR_ACPI_SFAN:
5311 rc = fan_get_status(&s);
5317 /* Set fan to at least level 4 */
5320 if (!acpi_evalf(sfan_handle, NULL, NULL, "vd", s))
5330 mutex_unlock(&fan_mutex);
5334 static int fan_set_disable(void)
5338 if (!fan_control_allowed)
5341 if (mutex_lock_interruptible(&fan_mutex))
5342 return -ERESTARTSYS;
5345 switch (fan_control_access_mode) {
5346 case TPACPI_FAN_WR_ACPI_FANS:
5347 case TPACPI_FAN_WR_TPEC:
5348 if (!acpi_ec_write(fan_status_offset, 0x00))
5351 fan_control_desired_level = 0;
5352 tp_features.fan_ctrl_status_undef = 0;
5356 case TPACPI_FAN_WR_ACPI_SFAN:
5357 if (!acpi_evalf(sfan_handle, NULL, NULL, "vd", 0x00))
5360 fan_control_desired_level = 0;
5368 mutex_unlock(&fan_mutex);
5372 static int fan_set_speed(int speed)
5376 if (!fan_control_allowed)
5379 if (mutex_lock_interruptible(&fan_mutex))
5380 return -ERESTARTSYS;
5383 switch (fan_control_access_mode) {
5384 case TPACPI_FAN_WR_ACPI_FANS:
5385 if (speed >= 0 && speed <= 65535) {
5386 if (!acpi_evalf(fans_handle, NULL, NULL, "vddd",
5387 speed, speed, speed))
5397 mutex_unlock(&fan_mutex);
5401 static void fan_watchdog_reset(void)
5403 static int fan_watchdog_active;
5405 if (fan_control_access_mode == TPACPI_FAN_WR_NONE)
5408 if (fan_watchdog_active)
5409 cancel_delayed_work(&fan_watchdog_task);
5411 if (fan_watchdog_maxinterval > 0 &&
5412 tpacpi_lifecycle != TPACPI_LIFE_EXITING) {
5413 fan_watchdog_active = 1;
5414 if (!queue_delayed_work(tpacpi_wq, &fan_watchdog_task,
5415 msecs_to_jiffies(fan_watchdog_maxinterval
5418 "failed to queue the fan watchdog, "
5419 "watchdog will not trigger\n");
5422 fan_watchdog_active = 0;
5425 static void fan_watchdog_fire(struct work_struct *ignored)
5429 if (tpacpi_lifecycle != TPACPI_LIFE_RUNNING)
5432 printk(TPACPI_NOTICE "fan watchdog: enabling fan\n");
5433 rc = fan_set_enable();
5435 printk(TPACPI_ERR "fan watchdog: error %d while enabling fan, "
5436 "will try again later...\n", -rc);
5437 /* reschedule for later */
5438 fan_watchdog_reset();
5443 * SYSFS fan layout: hwmon compatible (device)
5446 * 0: "disengaged" mode
5448 * 2: native EC "auto" mode (recommended, hardware default)
5450 * pwm*: set speed in manual mode, ignored otherwise.
5451 * 0 is level 0; 255 is level 7. Intermediate points done with linear
5454 * fan*_input: tachometer reading, RPM
5457 * SYSFS fan layout: extensions
5459 * fan_watchdog (driver):
5460 * fan watchdog interval in seconds, 0 disables (default), max 120
5463 /* sysfs fan pwm1_enable ----------------------------------------------- */
5464 static ssize_t fan_pwm1_enable_show(struct device *dev,
5465 struct device_attribute *attr,
5471 res = fan_get_status_safe(&status);
5475 if (unlikely(tp_features.fan_ctrl_status_undef)) {
5476 if (status != fan_control_initial_status) {
5477 tp_features.fan_ctrl_status_undef = 0;
5479 /* Return most likely status. In fact, it
5480 * might be the only possible status */
5481 status = TP_EC_FAN_AUTO;
5485 if (status & TP_EC_FAN_FULLSPEED) {
5487 } else if (status & TP_EC_FAN_AUTO) {
5492 return snprintf(buf, PAGE_SIZE, "%d\n", mode);
5495 static ssize_t fan_pwm1_enable_store(struct device *dev,
5496 struct device_attribute *attr,
5497 const char *buf, size_t count)
5502 if (parse_strtoul(buf, 2, &t))
5507 level = TP_EC_FAN_FULLSPEED;
5510 level = TPACPI_FAN_LAST_LEVEL;
5513 level = TP_EC_FAN_AUTO;
5516 /* reserved for software-controlled auto mode */
5522 res = fan_set_level_safe(level);
5528 fan_watchdog_reset();
5533 static struct device_attribute dev_attr_fan_pwm1_enable =
5534 __ATTR(pwm1_enable, S_IWUSR | S_IRUGO,
5535 fan_pwm1_enable_show, fan_pwm1_enable_store);
5537 /* sysfs fan pwm1 ------------------------------------------------------ */
5538 static ssize_t fan_pwm1_show(struct device *dev,
5539 struct device_attribute *attr,
5545 res = fan_get_status_safe(&status);
5549 if (unlikely(tp_features.fan_ctrl_status_undef)) {
5550 if (status != fan_control_initial_status) {
5551 tp_features.fan_ctrl_status_undef = 0;
5553 status = TP_EC_FAN_AUTO;
5558 (TP_EC_FAN_AUTO | TP_EC_FAN_FULLSPEED)) != 0)
5559 status = fan_control_desired_level;
5564 return snprintf(buf, PAGE_SIZE, "%u\n", (status * 255) / 7);
5567 static ssize_t fan_pwm1_store(struct device *dev,
5568 struct device_attribute *attr,
5569 const char *buf, size_t count)
5573 u8 status, newlevel;
5575 if (parse_strtoul(buf, 255, &s))
5578 /* scale down from 0-255 to 0-7 */
5579 newlevel = (s >> 5) & 0x07;
5581 if (mutex_lock_interruptible(&fan_mutex))
5582 return -ERESTARTSYS;
5584 rc = fan_get_status(&status);
5585 if (!rc && (status &
5586 (TP_EC_FAN_AUTO | TP_EC_FAN_FULLSPEED)) == 0) {
5587 rc = fan_set_level(newlevel);
5591 fan_update_desired_level(newlevel);
5592 fan_watchdog_reset();
5596 mutex_unlock(&fan_mutex);
5597 return (rc)? rc : count;
5600 static struct device_attribute dev_attr_fan_pwm1 =
5601 __ATTR(pwm1, S_IWUSR | S_IRUGO,
5602 fan_pwm1_show, fan_pwm1_store);
5604 /* sysfs fan fan1_input ------------------------------------------------ */
5605 static ssize_t fan_fan1_input_show(struct device *dev,
5606 struct device_attribute *attr,
5612 res = fan_get_speed(&speed);
5616 return snprintf(buf, PAGE_SIZE, "%u\n", speed);
5619 static struct device_attribute dev_attr_fan_fan1_input =
5620 __ATTR(fan1_input, S_IRUGO,
5621 fan_fan1_input_show, NULL);
5623 /* sysfs fan fan_watchdog (hwmon driver) ------------------------------- */
5624 static ssize_t fan_fan_watchdog_show(struct device_driver *drv,
5627 return snprintf(buf, PAGE_SIZE, "%u\n", fan_watchdog_maxinterval);
5630 static ssize_t fan_fan_watchdog_store(struct device_driver *drv,
5631 const char *buf, size_t count)
5635 if (parse_strtoul(buf, 120, &t))
5638 if (!fan_control_allowed)
5641 fan_watchdog_maxinterval = t;
5642 fan_watchdog_reset();
5647 static DRIVER_ATTR(fan_watchdog, S_IWUSR | S_IRUGO,
5648 fan_fan_watchdog_show, fan_fan_watchdog_store);
5650 /* --------------------------------------------------------------------- */
5651 static struct attribute *fan_attributes[] = {
5652 &dev_attr_fan_pwm1_enable.attr, &dev_attr_fan_pwm1.attr,
5653 &dev_attr_fan_fan1_input.attr,
5657 static const struct attribute_group fan_attr_group = {
5658 .attrs = fan_attributes,
5661 static int __init fan_init(struct ibm_init_struct *iibm)
5665 vdbg_printk(TPACPI_DBG_INIT, "initializing fan subdriver\n");
5667 mutex_init(&fan_mutex);
5668 fan_status_access_mode = TPACPI_FAN_NONE;
5669 fan_control_access_mode = TPACPI_FAN_WR_NONE;
5670 fan_control_commands = 0;
5671 fan_watchdog_maxinterval = 0;
5672 tp_features.fan_ctrl_status_undef = 0;
5673 fan_control_desired_level = 7;
5675 TPACPI_ACPIHANDLE_INIT(fans);
5676 TPACPI_ACPIHANDLE_INIT(gfan);
5677 TPACPI_ACPIHANDLE_INIT(sfan);
5680 /* 570, 600e/x, 770e, 770x */
5681 fan_status_access_mode = TPACPI_FAN_RD_ACPI_GFAN;
5683 /* all other ThinkPads: note that even old-style
5684 * ThinkPad ECs supports the fan control register */
5685 if (likely(acpi_ec_read(fan_status_offset,
5686 &fan_control_initial_status))) {
5687 fan_status_access_mode = TPACPI_FAN_RD_TPEC;
5689 /* In some ThinkPads, neither the EC nor the ACPI
5690 * DSDT initialize the fan status, and it ends up
5691 * being set to 0x07 when it *could* be either
5694 * Enable for TP-1Y (T43), TP-78 (R51e),
5695 * TP-76 (R52), TP-70 (T43, R52), which are known
5697 if (fan_control_initial_status == 0x07) {
5698 switch (thinkpad_id.ec_model) {
5699 case 0x5931: /* TP-1Y */
5700 case 0x3837: /* TP-78 */
5701 case 0x3637: /* TP-76 */
5702 case 0x3037: /* TP-70 */
5703 printk(TPACPI_NOTICE
5704 "fan_init: initial fan status "
5705 "is unknown, assuming it is "
5707 tp_features.fan_ctrl_status_undef = 1;
5713 "ThinkPad ACPI EC access misbehaving, "
5714 "fan status and control unavailable\n");
5721 fan_control_access_mode = TPACPI_FAN_WR_ACPI_SFAN;
5722 fan_control_commands |=
5723 TPACPI_FAN_CMD_LEVEL | TPACPI_FAN_CMD_ENABLE;
5726 /* gfan without sfan means no fan control */
5727 /* all other models implement TP EC 0x2f control */
5731 fan_control_access_mode =
5732 TPACPI_FAN_WR_ACPI_FANS;
5733 fan_control_commands |=
5734 TPACPI_FAN_CMD_SPEED |
5735 TPACPI_FAN_CMD_LEVEL |
5736 TPACPI_FAN_CMD_ENABLE;
5738 fan_control_access_mode = TPACPI_FAN_WR_TPEC;
5739 fan_control_commands |=
5740 TPACPI_FAN_CMD_LEVEL |
5741 TPACPI_FAN_CMD_ENABLE;
5746 vdbg_printk(TPACPI_DBG_INIT, "fan is %s, modes %d, %d\n",
5747 str_supported(fan_status_access_mode != TPACPI_FAN_NONE ||
5748 fan_control_access_mode != TPACPI_FAN_WR_NONE),
5749 fan_status_access_mode, fan_control_access_mode);
5751 /* fan control master switch */
5752 if (!fan_control_allowed) {
5753 fan_control_access_mode = TPACPI_FAN_WR_NONE;
5754 fan_control_commands = 0;
5755 dbg_printk(TPACPI_DBG_INIT,
5756 "fan control features disabled by parameter\n");
5759 /* update fan_control_desired_level */
5760 if (fan_status_access_mode != TPACPI_FAN_NONE)
5761 fan_get_status_safe(NULL);
5763 if (fan_status_access_mode != TPACPI_FAN_NONE ||
5764 fan_control_access_mode != TPACPI_FAN_WR_NONE) {
5765 rc = sysfs_create_group(&tpacpi_sensors_pdev->dev.kobj,
5768 rc = driver_create_file(&tpacpi_hwmon_pdriver.driver,
5769 &driver_attr_fan_watchdog);
5777 static void fan_exit(void)
5779 vdbg_printk(TPACPI_DBG_EXIT,
5780 "cancelling any pending fan watchdog tasks\n");
5782 /* FIXME: can we really do this unconditionally? */
5783 sysfs_remove_group(&tpacpi_sensors_pdev->dev.kobj, &fan_attr_group);
5784 driver_remove_file(&tpacpi_hwmon_pdriver.driver,
5785 &driver_attr_fan_watchdog);
5787 cancel_delayed_work(&fan_watchdog_task);
5788 flush_workqueue(tpacpi_wq);
5791 static int fan_read(char *p)
5796 unsigned int speed = 0;
5798 switch (fan_status_access_mode) {
5799 case TPACPI_FAN_RD_ACPI_GFAN:
5800 /* 570, 600e/x, 770e, 770x */
5801 rc = fan_get_status_safe(&status);
5805 len += sprintf(p + len, "status:\t\t%s\n"
5807 (status != 0) ? "enabled" : "disabled", status);
5810 case TPACPI_FAN_RD_TPEC:
5811 /* all except 570, 600e/x, 770e, 770x */
5812 rc = fan_get_status_safe(&status);
5816 if (unlikely(tp_features.fan_ctrl_status_undef)) {
5817 if (status != fan_control_initial_status)
5818 tp_features.fan_ctrl_status_undef = 0;
5820 /* Return most likely status. In fact, it
5821 * might be the only possible status */
5822 status = TP_EC_FAN_AUTO;
5825 len += sprintf(p + len, "status:\t\t%s\n",
5826 (status != 0) ? "enabled" : "disabled");
5828 rc = fan_get_speed(&speed);
5832 len += sprintf(p + len, "speed:\t\t%d\n", speed);
5834 if (status & TP_EC_FAN_FULLSPEED)
5835 /* Disengaged mode takes precedence */
5836 len += sprintf(p + len, "level:\t\tdisengaged\n");
5837 else if (status & TP_EC_FAN_AUTO)
5838 len += sprintf(p + len, "level:\t\tauto\n");
5840 len += sprintf(p + len, "level:\t\t%d\n", status);
5843 case TPACPI_FAN_NONE:
5845 len += sprintf(p + len, "status:\t\tnot supported\n");
5848 if (fan_control_commands & TPACPI_FAN_CMD_LEVEL) {
5849 len += sprintf(p + len, "commands:\tlevel <level>");
5851 switch (fan_control_access_mode) {
5852 case TPACPI_FAN_WR_ACPI_SFAN:
5853 len += sprintf(p + len, " (<level> is 0-7)\n");
5857 len += sprintf(p + len, " (<level> is 0-7, "
5858 "auto, disengaged, full-speed)\n");
5863 if (fan_control_commands & TPACPI_FAN_CMD_ENABLE)
5864 len += sprintf(p + len, "commands:\tenable, disable\n"
5865 "commands:\twatchdog <timeout> (<timeout> "
5866 "is 0 (off), 1-120 (seconds))\n");
5868 if (fan_control_commands & TPACPI_FAN_CMD_SPEED)
5869 len += sprintf(p + len, "commands:\tspeed <speed>"
5870 " (<speed> is 0-65535)\n");
5875 static int fan_write_cmd_level(const char *cmd, int *rc)
5879 if (strlencmp(cmd, "level auto") == 0)
5880 level = TP_EC_FAN_AUTO;
5881 else if ((strlencmp(cmd, "level disengaged") == 0) |
5882 (strlencmp(cmd, "level full-speed") == 0))
5883 level = TP_EC_FAN_FULLSPEED;
5884 else if (sscanf(cmd, "level %d", &level) != 1)
5887 *rc = fan_set_level_safe(level);
5889 printk(TPACPI_ERR "level command accepted for unsupported "
5890 "access mode %d", fan_control_access_mode);
5895 static int fan_write_cmd_enable(const char *cmd, int *rc)
5897 if (strlencmp(cmd, "enable") != 0)
5900 *rc = fan_set_enable();
5902 printk(TPACPI_ERR "enable command accepted for unsupported "
5903 "access mode %d", fan_control_access_mode);
5908 static int fan_write_cmd_disable(const char *cmd, int *rc)
5910 if (strlencmp(cmd, "disable") != 0)
5913 *rc = fan_set_disable();
5915 printk(TPACPI_ERR "disable command accepted for unsupported "
5916 "access mode %d", fan_control_access_mode);
5921 static int fan_write_cmd_speed(const char *cmd, int *rc)
5926 * Support speed <low> <medium> <high> ? */
5928 if (sscanf(cmd, "speed %d", &speed) != 1)
5931 *rc = fan_set_speed(speed);
5933 printk(TPACPI_ERR "speed command accepted for unsupported "
5934 "access mode %d", fan_control_access_mode);
5939 static int fan_write_cmd_watchdog(const char *cmd, int *rc)
5943 if (sscanf(cmd, "watchdog %d", &interval) != 1)
5946 if (interval < 0 || interval > 120)
5949 fan_watchdog_maxinterval = interval;
5954 static int fan_write(char *buf)
5959 while (!rc && (cmd = next_cmd(&buf))) {
5960 if (!((fan_control_commands & TPACPI_FAN_CMD_LEVEL) &&
5961 fan_write_cmd_level(cmd, &rc)) &&
5962 !((fan_control_commands & TPACPI_FAN_CMD_ENABLE) &&
5963 (fan_write_cmd_enable(cmd, &rc) ||
5964 fan_write_cmd_disable(cmd, &rc) ||
5965 fan_write_cmd_watchdog(cmd, &rc))) &&
5966 !((fan_control_commands & TPACPI_FAN_CMD_SPEED) &&
5967 fan_write_cmd_speed(cmd, &rc))
5971 fan_watchdog_reset();
5977 static struct ibm_struct fan_driver_data = {
5984 /****************************************************************************
5985 ****************************************************************************
5989 ****************************************************************************
5990 ****************************************************************************/
5992 /* sysfs name ---------------------------------------------------------- */
5993 static ssize_t thinkpad_acpi_pdev_name_show(struct device *dev,
5994 struct device_attribute *attr,
5997 return snprintf(buf, PAGE_SIZE, "%s\n", TPACPI_NAME);
6000 static struct device_attribute dev_attr_thinkpad_acpi_pdev_name =
6001 __ATTR(name, S_IRUGO, thinkpad_acpi_pdev_name_show, NULL);
6003 /* --------------------------------------------------------------------- */
6006 static struct proc_dir_entry *proc_dir;
6009 * Module and infrastructure proble, init and exit handling
6012 static int force_load;
6014 #ifdef CONFIG_THINKPAD_ACPI_DEBUG
6015 static const char * __init str_supported(int is_supported)
6017 static char text_unsupported[] __initdata = "not supported";
6019 return (is_supported)? &text_unsupported[4] : &text_unsupported[0];
6021 #endif /* CONFIG_THINKPAD_ACPI_DEBUG */
6023 static void ibm_exit(struct ibm_struct *ibm)
6025 dbg_printk(TPACPI_DBG_EXIT, "removing %s\n", ibm->name);
6027 list_del_init(&ibm->all_drivers);
6029 if (ibm->flags.acpi_notify_installed) {
6030 dbg_printk(TPACPI_DBG_EXIT,
6031 "%s: acpi_remove_notify_handler\n", ibm->name);
6033 acpi_remove_notify_handler(*ibm->acpi->handle,
6035 dispatch_acpi_notify);
6036 ibm->flags.acpi_notify_installed = 0;
6037 ibm->flags.acpi_notify_installed = 0;
6040 if (ibm->flags.proc_created) {
6041 dbg_printk(TPACPI_DBG_EXIT,
6042 "%s: remove_proc_entry\n", ibm->name);
6043 remove_proc_entry(ibm->name, proc_dir);
6044 ibm->flags.proc_created = 0;
6047 if (ibm->flags.acpi_driver_registered) {
6048 dbg_printk(TPACPI_DBG_EXIT,
6049 "%s: acpi_bus_unregister_driver\n", ibm->name);
6051 acpi_bus_unregister_driver(ibm->acpi->driver);
6052 kfree(ibm->acpi->driver);
6053 ibm->acpi->driver = NULL;
6054 ibm->flags.acpi_driver_registered = 0;
6057 if (ibm->flags.init_called && ibm->exit) {
6059 ibm->flags.init_called = 0;
6062 dbg_printk(TPACPI_DBG_INIT, "finished removing %s\n", ibm->name);
6065 static int __init ibm_init(struct ibm_init_struct *iibm)
6068 struct ibm_struct *ibm = iibm->data;
6069 struct proc_dir_entry *entry;
6071 BUG_ON(ibm == NULL);
6073 INIT_LIST_HEAD(&ibm->all_drivers);
6075 if (ibm->flags.experimental && !experimental)
6078 dbg_printk(TPACPI_DBG_INIT,
6079 "probing for %s\n", ibm->name);
6082 ret = iibm->init(iibm);
6084 return 0; /* probe failed */
6088 ibm->flags.init_called = 1;
6092 if (ibm->acpi->hid) {
6093 ret = register_tpacpi_subdriver(ibm);
6098 if (ibm->acpi->notify) {
6099 ret = setup_acpi_notify(ibm);
6100 if (ret == -ENODEV) {
6101 printk(TPACPI_NOTICE "disabling subdriver %s\n",
6111 dbg_printk(TPACPI_DBG_INIT,
6112 "%s installed\n", ibm->name);
6115 entry = create_proc_entry(ibm->name,
6116 S_IFREG | S_IRUGO | S_IWUSR,
6119 printk(TPACPI_ERR "unable to create proc entry %s\n",
6124 entry->owner = THIS_MODULE;
6126 entry->read_proc = &dispatch_procfs_read;
6128 entry->write_proc = &dispatch_procfs_write;
6129 ibm->flags.proc_created = 1;
6132 list_add_tail(&ibm->all_drivers, &tpacpi_all_drivers);
6137 dbg_printk(TPACPI_DBG_INIT,
6138 "%s: at error exit path with result %d\n",
6142 return (ret < 0)? ret : 0;
6147 static void __init get_thinkpad_model_data(struct thinkpad_id_data *tp)
6149 const struct dmi_device *dev = NULL;
6150 char ec_fw_string[18];
6155 memset(tp, 0, sizeof(*tp));
6157 if (dmi_name_in_vendors("IBM"))
6158 tp->vendor = PCI_VENDOR_ID_IBM;
6159 else if (dmi_name_in_vendors("LENOVO"))
6160 tp->vendor = PCI_VENDOR_ID_LENOVO;
6164 tp->bios_version_str = kstrdup(dmi_get_system_info(DMI_BIOS_VERSION),
6166 if (!tp->bios_version_str)
6168 tp->bios_model = tp->bios_version_str[0]
6169 | (tp->bios_version_str[1] << 8);
6172 * ThinkPad T23 or newer, A31 or newer, R50e or newer,
6173 * X32 or newer, all Z series; Some models must have an
6174 * up-to-date BIOS or they will not be detected.
6176 * See http://thinkwiki.org/wiki/List_of_DMI_IDs
6178 while ((dev = dmi_find_device(DMI_DEV_TYPE_OEM_STRING, NULL, dev))) {
6179 if (sscanf(dev->name,
6180 "IBM ThinkPad Embedded Controller -[%17c",
6181 ec_fw_string) == 1) {
6182 ec_fw_string[sizeof(ec_fw_string) - 1] = 0;
6183 ec_fw_string[strcspn(ec_fw_string, " ]")] = 0;
6185 tp->ec_version_str = kstrdup(ec_fw_string, GFP_KERNEL);
6186 tp->ec_model = ec_fw_string[0]
6187 | (ec_fw_string[1] << 8);
6192 tp->model_str = kstrdup(dmi_get_system_info(DMI_PRODUCT_VERSION),
6194 if (tp->model_str && strnicmp(tp->model_str, "ThinkPad", 8) != 0) {
6195 kfree(tp->model_str);
6196 tp->model_str = NULL;
6199 tp->nummodel_str = kstrdup(dmi_get_system_info(DMI_PRODUCT_NAME),
6203 static int __init probe_for_thinkpad(void)
6211 * Non-ancient models have better DMI tagging, but very old models
6214 is_thinkpad = (thinkpad_id.model_str != NULL);
6216 /* ec is required because many other handles are relative to it */
6217 TPACPI_ACPIHANDLE_INIT(ec);
6221 "Not yet supported ThinkPad detected!\n");
6226 * Risks a regression on very old machines, but reduces potential
6227 * false positives a damn great deal
6230 is_thinkpad = (thinkpad_id.vendor == PCI_VENDOR_ID_IBM);
6232 if (!is_thinkpad && !force_load)
6239 /* Module init, exit, parameters */
6241 static struct ibm_init_struct ibms_init[] __initdata = {
6243 .init = thinkpad_acpi_driver_init,
6244 .data = &thinkpad_acpi_driver_data,
6247 .init = hotkey_init,
6248 .data = &hotkey_driver_data,
6251 .init = bluetooth_init,
6252 .data = &bluetooth_driver_data,
6256 .data = &wan_driver_data,
6258 #ifdef CONFIG_THINKPAD_ACPI_VIDEO
6261 .data = &video_driver_data,
6266 .data = &light_driver_data,
6268 #ifdef CONFIG_THINKPAD_ACPI_DOCK
6271 .data = &dock_driver_data[0],
6275 .data = &dock_driver_data[1],
6278 #ifdef CONFIG_THINKPAD_ACPI_BAY
6281 .data = &bay_driver_data,
6286 .data = &cmos_driver_data,
6290 .data = &led_driver_data,
6294 .data = &beep_driver_data,
6297 .init = thermal_init,
6298 .data = &thermal_driver_data,
6301 .data = &ecdump_driver_data,
6304 .init = brightness_init,
6305 .data = &brightness_driver_data,
6308 .data = &volume_driver_data,
6312 .data = &fan_driver_data,
6316 static int __init set_ibm_param(const char *val, struct kernel_param *kp)
6319 struct ibm_struct *ibm;
6321 if (!kp || !kp->name || !val)
6324 for (i = 0; i < ARRAY_SIZE(ibms_init); i++) {
6325 ibm = ibms_init[i].data;
6326 WARN_ON(ibm == NULL);
6328 if (!ibm || !ibm->name)
6331 if (strcmp(ibm->name, kp->name) == 0 && ibm->write) {
6332 if (strlen(val) > sizeof(ibms_init[i].param) - 2)
6334 strcpy(ibms_init[i].param, val);
6335 strcat(ibms_init[i].param, ",");
6343 module_param(experimental, int, 0);
6344 MODULE_PARM_DESC(experimental,
6345 "Enables experimental features when non-zero");
6347 module_param_named(debug, dbg_level, uint, 0);
6348 MODULE_PARM_DESC(debug, "Sets debug level bit-mask");
6350 module_param(force_load, bool, 0);
6351 MODULE_PARM_DESC(force_load,
6352 "Attempts to load the driver even on a "
6353 "mis-identified ThinkPad when true");
6355 module_param_named(fan_control, fan_control_allowed, bool, 0);
6356 MODULE_PARM_DESC(fan_control,
6357 "Enables setting fan parameters features when true");
6359 module_param_named(brightness_mode, brightness_mode, int, 0);
6360 MODULE_PARM_DESC(brightness_mode,
6361 "Selects brightness control strategy: "
6362 "0=auto, 1=EC, 2=CMOS, 3=both");
6364 module_param(brightness_enable, uint, 0);
6365 MODULE_PARM_DESC(brightness_enable,
6366 "Enables backlight control when 1, disables when 0");
6368 module_param(hotkey_report_mode, uint, 0);
6369 MODULE_PARM_DESC(hotkey_report_mode,
6370 "used for backwards compatibility with userspace, "
6371 "see documentation");
6373 #define TPACPI_PARAM(feature) \
6374 module_param_call(feature, set_ibm_param, NULL, NULL, 0); \
6375 MODULE_PARM_DESC(feature, "Simulates thinkpad-acpi procfs command " \
6376 "at module load, see documentation")
6378 TPACPI_PARAM(hotkey);
6379 TPACPI_PARAM(bluetooth);
6380 TPACPI_PARAM(video);
6381 TPACPI_PARAM(light);
6382 #ifdef CONFIG_THINKPAD_ACPI_DOCK
6385 #ifdef CONFIG_THINKPAD_ACPI_BAY
6387 #endif /* CONFIG_THINKPAD_ACPI_BAY */
6391 TPACPI_PARAM(ecdump);
6392 TPACPI_PARAM(brightness);
6393 TPACPI_PARAM(volume);
6396 static void thinkpad_acpi_module_exit(void)
6398 struct ibm_struct *ibm, *itmp;
6400 tpacpi_lifecycle = TPACPI_LIFE_EXITING;
6402 list_for_each_entry_safe_reverse(ibm, itmp,
6403 &tpacpi_all_drivers,
6408 dbg_printk(TPACPI_DBG_INIT, "finished subdriver exit path...\n");
6410 if (tpacpi_inputdev) {
6411 if (tp_features.input_device_registered)
6412 input_unregister_device(tpacpi_inputdev);
6414 input_free_device(tpacpi_inputdev);
6418 hwmon_device_unregister(tpacpi_hwmon);
6420 if (tp_features.sensors_pdev_attrs_registered)
6421 device_remove_file(&tpacpi_sensors_pdev->dev,
6422 &dev_attr_thinkpad_acpi_pdev_name);
6423 if (tpacpi_sensors_pdev)
6424 platform_device_unregister(tpacpi_sensors_pdev);
6426 platform_device_unregister(tpacpi_pdev);
6428 if (tp_features.sensors_pdrv_attrs_registered)
6429 tpacpi_remove_driver_attributes(&tpacpi_hwmon_pdriver.driver);
6430 if (tp_features.platform_drv_attrs_registered)
6431 tpacpi_remove_driver_attributes(&tpacpi_pdriver.driver);
6433 if (tp_features.sensors_pdrv_registered)
6434 platform_driver_unregister(&tpacpi_hwmon_pdriver);
6436 if (tp_features.platform_drv_registered)
6437 platform_driver_unregister(&tpacpi_pdriver);
6440 remove_proc_entry(TPACPI_PROC_DIR, acpi_root_dir);
6443 destroy_workqueue(tpacpi_wq);
6445 kfree(thinkpad_id.bios_version_str);
6446 kfree(thinkpad_id.ec_version_str);
6447 kfree(thinkpad_id.model_str);
6451 static int __init thinkpad_acpi_module_init(void)
6455 tpacpi_lifecycle = TPACPI_LIFE_INIT;
6457 /* Parameter checking */
6458 if (hotkey_report_mode > 2)
6461 /* Driver-level probe */
6463 get_thinkpad_model_data(&thinkpad_id);
6464 ret = probe_for_thinkpad();
6466 thinkpad_acpi_module_exit();
6470 /* Driver initialization */
6472 TPACPI_ACPIHANDLE_INIT(ecrd);
6473 TPACPI_ACPIHANDLE_INIT(ecwr);
6475 tpacpi_wq = create_singlethread_workqueue(TPACPI_WORKQUEUE_NAME);
6477 thinkpad_acpi_module_exit();
6481 proc_dir = proc_mkdir(TPACPI_PROC_DIR, acpi_root_dir);
6484 "unable to create proc dir " TPACPI_PROC_DIR);
6485 thinkpad_acpi_module_exit();
6488 proc_dir->owner = THIS_MODULE;
6490 ret = platform_driver_register(&tpacpi_pdriver);
6493 "unable to register main platform driver\n");
6494 thinkpad_acpi_module_exit();
6497 tp_features.platform_drv_registered = 1;
6499 ret = platform_driver_register(&tpacpi_hwmon_pdriver);
6502 "unable to register hwmon platform driver\n");
6503 thinkpad_acpi_module_exit();
6506 tp_features.sensors_pdrv_registered = 1;
6508 ret = tpacpi_create_driver_attributes(&tpacpi_pdriver.driver);
6510 tp_features.platform_drv_attrs_registered = 1;
6511 ret = tpacpi_create_driver_attributes(
6512 &tpacpi_hwmon_pdriver.driver);
6516 "unable to create sysfs driver attributes\n");
6517 thinkpad_acpi_module_exit();
6520 tp_features.sensors_pdrv_attrs_registered = 1;
6523 /* Device initialization */
6524 tpacpi_pdev = platform_device_register_simple(TPACPI_DRVR_NAME, -1,
6526 if (IS_ERR(tpacpi_pdev)) {
6527 ret = PTR_ERR(tpacpi_pdev);
6529 printk(TPACPI_ERR "unable to register platform device\n");
6530 thinkpad_acpi_module_exit();
6533 tpacpi_sensors_pdev = platform_device_register_simple(
6534 TPACPI_HWMON_DRVR_NAME,
6536 if (IS_ERR(tpacpi_sensors_pdev)) {
6537 ret = PTR_ERR(tpacpi_sensors_pdev);
6538 tpacpi_sensors_pdev = NULL;
6540 "unable to register hwmon platform device\n");
6541 thinkpad_acpi_module_exit();
6544 ret = device_create_file(&tpacpi_sensors_pdev->dev,
6545 &dev_attr_thinkpad_acpi_pdev_name);
6548 "unable to create sysfs hwmon device attributes\n");
6549 thinkpad_acpi_module_exit();
6552 tp_features.sensors_pdev_attrs_registered = 1;
6553 tpacpi_hwmon = hwmon_device_register(&tpacpi_sensors_pdev->dev);
6554 if (IS_ERR(tpacpi_hwmon)) {
6555 ret = PTR_ERR(tpacpi_hwmon);
6556 tpacpi_hwmon = NULL;
6557 printk(TPACPI_ERR "unable to register hwmon device\n");
6558 thinkpad_acpi_module_exit();
6561 mutex_init(&tpacpi_inputdev_send_mutex);
6562 tpacpi_inputdev = input_allocate_device();
6563 if (!tpacpi_inputdev) {
6564 printk(TPACPI_ERR "unable to allocate input device\n");
6565 thinkpad_acpi_module_exit();
6568 /* Prepare input device, but don't register */
6569 tpacpi_inputdev->name = "ThinkPad Extra Buttons";
6570 tpacpi_inputdev->phys = TPACPI_DRVR_NAME "/input0";
6571 tpacpi_inputdev->id.bustype = BUS_HOST;
6572 tpacpi_inputdev->id.vendor = (thinkpad_id.vendor) ?
6573 thinkpad_id.vendor :
6575 tpacpi_inputdev->id.product = TPACPI_HKEY_INPUT_PRODUCT;
6576 tpacpi_inputdev->id.version = TPACPI_HKEY_INPUT_VERSION;
6578 for (i = 0; i < ARRAY_SIZE(ibms_init); i++) {
6579 ret = ibm_init(&ibms_init[i]);
6580 if (ret >= 0 && *ibms_init[i].param)
6581 ret = ibms_init[i].data->write(ibms_init[i].param);
6583 thinkpad_acpi_module_exit();
6587 ret = input_register_device(tpacpi_inputdev);
6589 printk(TPACPI_ERR "unable to register input device\n");
6590 thinkpad_acpi_module_exit();
6593 tp_features.input_device_registered = 1;
6596 tpacpi_lifecycle = TPACPI_LIFE_RUNNING;
6600 /* Please remove this in year 2009 */
6601 MODULE_ALIAS("ibm_acpi");
6603 MODULE_ALIAS(TPACPI_DRVR_SHORTNAME);
6606 * DMI matching for module autoloading
6608 * See http://thinkwiki.org/wiki/List_of_DMI_IDs
6609 * See http://thinkwiki.org/wiki/BIOS_Upgrade_Downloads
6611 * Only models listed in thinkwiki will be supported, so add yours
6612 * if it is not there yet.
6614 #define IBM_BIOS_MODULE_ALIAS(__type) \
6615 MODULE_ALIAS("dmi:bvnIBM:bvr" __type "ET??WW")
6617 /* Non-ancient thinkpads */
6618 MODULE_ALIAS("dmi:bvnIBM:*:svnIBM:*:pvrThinkPad*:rvnIBM:*");
6619 MODULE_ALIAS("dmi:bvnLENOVO:*:svnLENOVO:*:pvrThinkPad*:rvnLENOVO:*");
6621 /* Ancient thinkpad BIOSes have to be identified by
6622 * BIOS type or model number, and there are far less
6623 * BIOS types than model numbers... */
6624 IBM_BIOS_MODULE_ALIAS("I[B,D,H,I,M,N,O,T,W,V,Y,Z]");
6625 IBM_BIOS_MODULE_ALIAS("1[0,3,6,8,A-G,I,K,M-P,S,T]");
6626 IBM_BIOS_MODULE_ALIAS("K[U,X-Z]");
6628 MODULE_AUTHOR("Borislav Deianov, Henrique de Moraes Holschuh");
6629 MODULE_DESCRIPTION(TPACPI_DESC);
6630 MODULE_VERSION(TPACPI_VERSION);
6631 MODULE_LICENSE("GPL");
6633 module_init(thinkpad_acpi_module_init);
6634 module_exit(thinkpad_acpi_module_exit);