2 * thinkpad_acpi.c - ThinkPad ACPI Extras
5 * Copyright (C) 2004-2005 Borislav Deianov <borislav@users.sf.net>
6 * Copyright (C) 2006-2007 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 IBM_VERSION "0.14"
25 #define TPACPI_SYSFS_VERSION 0x000100
29 * 2007-03-27 0.14 renamed to thinkpad_acpi and moved to
32 * 2006-11-22 0.13 new maintainer
33 * changelog now lives in git commit history, and will
34 * not be updated further in-file.
36 * 2005-08-17 0.12 fix compilation on 2.6.13-rc kernels
37 * 2005-03-17 0.11 support for 600e, 770x
38 * thanks to Jamie Lentin <lentinj@dial.pipex.com>
39 * support for 770e, G41
40 * G40 and G41 don't have a thinklight
41 * temperatures no longer experimental
42 * experimental brightness control
43 * experimental volume control
44 * experimental fan enable/disable
45 * 2005-01-16 0.10 fix module loading on R30, R31
46 * 2005-01-16 0.9 support for 570, R30, R31
47 * ultrabay support on A22p, A3x
48 * limit arg for cmos, led, beep, drop experimental status
49 * more capable led control on A21e, A22p, T20-22, X20
50 * experimental temperatures and fan speed
51 * experimental embedded controller register dump
52 * mark more functions as __init, drop incorrect __exit
54 * thanks to Henrik Brix Andersen <brix@gentoo.org>
55 * fix parameter passing on module loading
56 * thanks to Rusty Russell <rusty@rustcorp.com.au>
57 * thanks to Jim Radford <radford@blackbean.org>
58 * 2004-11-08 0.8 fix init error case, don't return from a macro
59 * thanks to Chris Wright <chrisw@osdl.org>
60 * 2004-10-23 0.7 fix module loading on A21e, A22p, T20, T21, X20
61 * fix led control on A21e
62 * 2004-10-19 0.6 use acpi_bus_register_driver() to claim HKEY device
63 * 2004-10-18 0.5 thinklight support on A21e, G40, R32, T20, T21, X20
64 * proc file format changed
65 * video_switch command
66 * experimental cmos control
67 * experimental led control
68 * experimental acpi sounds
69 * 2004-09-16 0.4 support for module parameters
70 * hotkey mask can be prefixed by 0x
71 * video output switching
72 * video expansion control
73 * ultrabay eject support
74 * removed lcd brightness/on/off control, didn't work
75 * 2004-08-17 0.3 support for R40
76 * lcd off, brightness control
78 * 2004-08-14 0.2 support for T series, X20
79 * bluetooth enable/disable
80 * hotkey events disabled by default
81 * removed fan control, currently useless
82 * 2004-08-09 0.1 initial release, support for X series
85 #include "thinkpad_acpi.h"
87 MODULE_AUTHOR("Borislav Deianov, Henrique de Moraes Holschuh");
88 MODULE_DESCRIPTION(IBM_DESC
);
89 MODULE_VERSION(IBM_VERSION
);
90 MODULE_LICENSE("GPL");
92 /* Please remove this in year 2009 */
93 MODULE_ALIAS("ibm_acpi");
95 #define __unused __attribute__ ((unused))
97 /****************************************************************************
98 ****************************************************************************
100 * ACPI Helpers and device model
102 ****************************************************************************
103 ****************************************************************************/
105 /*************************************************************************
109 static acpi_handle root_handle
= NULL
;
111 #define IBM_HANDLE(object, parent, paths...) \
112 static acpi_handle object##_handle; \
113 static acpi_handle *object##_parent = &parent##_handle; \
114 static char *object##_path; \
115 static char *object##_paths[] = { paths }
117 IBM_HANDLE(ec
, root
, "\\_SB.PCI0.ISA.EC0", /* 240, 240x */
118 "\\_SB.PCI.ISA.EC", /* 570 */
119 "\\_SB.PCI0.ISA0.EC0", /* 600e/x, 770e, 770x */
120 "\\_SB.PCI0.ISA.EC", /* A21e, A2xm/p, T20-22, X20-21 */
121 "\\_SB.PCI0.AD4S.EC0", /* i1400, R30 */
122 "\\_SB.PCI0.ICH3.EC0", /* R31 */
123 "\\_SB.PCI0.LPC.EC", /* all others */
126 IBM_HANDLE(ecrd
, ec
, "ECRD"); /* 570 */
127 IBM_HANDLE(ecwr
, ec
, "ECWR"); /* 570 */
130 /*************************************************************************
134 IBM_HANDLE(cmos
, root
, "\\UCMS", /* R50, R50e, R50p, R51, T4x, X31, X40 */
135 "\\CMOS", /* A3x, G4x, R32, T23, T30, X22-24, X30 */
136 "\\CMS", /* R40, R40e */
139 IBM_HANDLE(hkey
, ec
, "\\_SB.HKEY", /* 600e/x, 770e, 770x */
140 "^HKEY", /* R30, R31 */
141 "HKEY", /* all others */
145 /*************************************************************************
149 static int acpi_evalf(acpi_handle handle
,
150 void *res
, char *method
, char *fmt
, ...)
153 struct acpi_object_list params
;
154 union acpi_object in_objs
[IBM_MAX_ACPI_ARGS
];
155 struct acpi_buffer result
, *resultp
;
156 union acpi_object out_obj
;
164 printk(IBM_ERR
"acpi_evalf() called with empty format\n");
177 params
.pointer
= &in_objs
[0];
184 in_objs
[params
.count
].integer
.value
= va_arg(ap
, int);
185 in_objs
[params
.count
++].type
= ACPI_TYPE_INTEGER
;
187 /* add more types as needed */
189 printk(IBM_ERR
"acpi_evalf() called "
190 "with invalid format character '%c'\n", c
);
196 if (res_type
!= 'v') {
197 result
.length
= sizeof(out_obj
);
198 result
.pointer
= &out_obj
;
203 status
= acpi_evaluate_object(handle
, method
, ¶ms
, resultp
);
208 *(int *)res
= out_obj
.integer
.value
;
209 success
= status
== AE_OK
&& out_obj
.type
== ACPI_TYPE_INTEGER
;
212 success
= status
== AE_OK
;
214 /* add more types as needed */
216 printk(IBM_ERR
"acpi_evalf() called "
217 "with invalid format character '%c'\n", res_type
);
221 if (!success
&& !quiet
)
222 printk(IBM_ERR
"acpi_evalf(%s, %s, ...) failed: %d\n",
223 method
, fmt0
, status
);
228 static void __unused
acpi_print_int(acpi_handle handle
, char *method
)
232 if (acpi_evalf(handle
, &i
, method
, "d"))
233 printk(IBM_INFO
"%s = 0x%x\n", method
, i
);
235 printk(IBM_ERR
"error calling %s\n", method
);
238 static int acpi_ec_read(int i
, u8
* p
)
243 if (!acpi_evalf(ecrd_handle
, &v
, NULL
, "dd", i
))
247 if (ec_read(i
, p
) < 0)
254 static int acpi_ec_write(int i
, u8 v
)
257 if (!acpi_evalf(ecwr_handle
, NULL
, NULL
, "vdd", i
, v
))
260 if (ec_write(i
, v
) < 0)
267 static int _sta(acpi_handle handle
)
271 if (!handle
|| !acpi_evalf(handle
, &status
, "_STA", "d"))
277 static int issue_thinkpad_cmos_command(int cmos_cmd
)
282 if (!acpi_evalf(cmos_handle
, NULL
, NULL
, "vd", cmos_cmd
))
288 /*************************************************************************
292 static void drv_acpi_handle_init(char *name
,
293 acpi_handle
*handle
, acpi_handle parent
,
294 char **paths
, int num_paths
, char **path
)
299 vdbg_printk(TPACPI_DBG_INIT
, "trying to locate ACPI handle for %s\n",
302 for (i
= 0; i
< num_paths
; i
++) {
303 status
= acpi_get_handle(parent
, paths
[i
], handle
);
304 if (ACPI_SUCCESS(status
)) {
306 dbg_printk(TPACPI_DBG_INIT
,
307 "Found ACPI handle %s for %s\n",
313 vdbg_printk(TPACPI_DBG_INIT
, "ACPI handle for %s not found\n",
318 static void dispatch_acpi_notify(acpi_handle handle
, u32 event
, void *data
)
320 struct ibm_struct
*ibm
= data
;
322 if (!ibm
|| !ibm
->acpi
|| !ibm
->acpi
->notify
)
325 ibm
->acpi
->notify(ibm
, event
);
328 static int __init
setup_acpi_notify(struct ibm_struct
*ibm
)
335 if (!*ibm
->acpi
->handle
)
338 vdbg_printk(TPACPI_DBG_INIT
,
339 "setting up ACPI notify for %s\n", ibm
->name
);
341 rc
= acpi_bus_get_device(*ibm
->acpi
->handle
, &ibm
->acpi
->device
);
343 printk(IBM_ERR
"acpi_bus_get_device(%s) failed: %d\n",
348 acpi_driver_data(ibm
->acpi
->device
) = ibm
;
349 sprintf(acpi_device_class(ibm
->acpi
->device
), "%s/%s",
350 IBM_ACPI_EVENT_PREFIX
,
353 status
= acpi_install_notify_handler(*ibm
->acpi
->handle
,
354 ibm
->acpi
->type
, dispatch_acpi_notify
, ibm
);
355 if (ACPI_FAILURE(status
)) {
356 if (status
== AE_ALREADY_EXISTS
) {
357 printk(IBM_NOTICE
"another device driver is already handling %s events\n",
360 printk(IBM_ERR
"acpi_install_notify_handler(%s) failed: %d\n",
365 ibm
->flags
.acpi_notify_installed
= 1;
369 static int __init
tpacpi_device_add(struct acpi_device
*device
)
374 static int __init
register_tpacpi_subdriver(struct ibm_struct
*ibm
)
378 dbg_printk(TPACPI_DBG_INIT
,
379 "registering %s as an ACPI driver\n", ibm
->name
);
383 ibm
->acpi
->driver
= kzalloc(sizeof(struct acpi_driver
), GFP_KERNEL
);
384 if (!ibm
->acpi
->driver
) {
385 printk(IBM_ERR
"kzalloc(ibm->driver) failed\n");
389 sprintf(ibm
->acpi
->driver
->name
, "%s_%s", IBM_NAME
, ibm
->name
);
390 ibm
->acpi
->driver
->ids
= ibm
->acpi
->hid
;
391 ibm
->acpi
->driver
->ops
.add
= &tpacpi_device_add
;
393 rc
= acpi_bus_register_driver(ibm
->acpi
->driver
);
395 printk(IBM_ERR
"acpi_bus_register_driver(%s) failed: %d\n",
397 kfree(ibm
->acpi
->driver
);
398 ibm
->acpi
->driver
= NULL
;
400 ibm
->flags
.acpi_driver_registered
= 1;
406 /****************************************************************************
407 ****************************************************************************
411 ****************************************************************************
412 ****************************************************************************/
414 static int dispatch_procfs_read(char *page
, char **start
, off_t off
,
415 int count
, int *eof
, void *data
)
417 struct ibm_struct
*ibm
= data
;
420 if (!ibm
|| !ibm
->read
)
423 len
= ibm
->read(page
);
427 if (len
<= off
+ count
)
439 static int dispatch_procfs_write(struct file
*file
,
440 const char __user
* userbuf
,
441 unsigned long count
, void *data
)
443 struct ibm_struct
*ibm
= data
;
447 if (!ibm
|| !ibm
->write
)
450 kernbuf
= kmalloc(count
+ 2, GFP_KERNEL
);
454 if (copy_from_user(kernbuf
, userbuf
, count
)) {
460 strcat(kernbuf
, ",");
461 ret
= ibm
->write(kernbuf
);
470 static char *next_cmd(char **cmds
)
475 while ((end
= strchr(start
, ',')) && end
== start
)
487 /****************************************************************************
488 ****************************************************************************
490 * Device model: hwmon and platform
492 ****************************************************************************
493 ****************************************************************************/
495 static struct platform_device
*tpacpi_pdev
= NULL
;
496 static struct class_device
*tpacpi_hwmon
= NULL
;
498 static struct platform_driver tpacpi_pdriver
= {
500 .name
= IBM_DRVR_NAME
,
501 .owner
= THIS_MODULE
,
506 /*************************************************************************
507 * thinkpad-acpi driver attributes
510 /* interface_version --------------------------------------------------- */
511 static ssize_t
tpacpi_driver_interface_version_show(
512 struct device_driver
*drv
,
515 return snprintf(buf
, PAGE_SIZE
, "0x%08x\n", TPACPI_SYSFS_VERSION
);
518 static DRIVER_ATTR(interface_version
, S_IRUGO
,
519 tpacpi_driver_interface_version_show
, NULL
);
521 /* debug_level --------------------------------------------------------- */
522 static ssize_t
tpacpi_driver_debug_show(struct device_driver
*drv
,
525 return snprintf(buf
, PAGE_SIZE
, "0x%04x\n", dbg_level
);
528 static ssize_t
tpacpi_driver_debug_store(struct device_driver
*drv
,
529 const char *buf
, size_t count
)
533 if (parse_strtoul(buf
, 0xffff, &t
))
541 static DRIVER_ATTR(debug_level
, S_IWUSR
| S_IRUGO
,
542 tpacpi_driver_debug_show
, tpacpi_driver_debug_store
);
544 /* version ------------------------------------------------------------- */
545 static ssize_t
tpacpi_driver_version_show(struct device_driver
*drv
,
548 return snprintf(buf
, PAGE_SIZE
, "%s v%s\n", IBM_DESC
, IBM_VERSION
);
551 static DRIVER_ATTR(version
, S_IRUGO
,
552 tpacpi_driver_version_show
, NULL
);
554 /* --------------------------------------------------------------------- */
556 static struct driver_attribute
* tpacpi_driver_attributes
[] = {
557 &driver_attr_debug_level
, &driver_attr_version
,
558 &driver_attr_interface_version
,
561 static int __init
tpacpi_create_driver_attributes(struct device_driver
*drv
)
567 while (!res
&& i
< ARRAY_SIZE(tpacpi_driver_attributes
)) {
568 res
= driver_create_file(drv
, tpacpi_driver_attributes
[i
]);
575 static void tpacpi_remove_driver_attributes(struct device_driver
*drv
)
579 for(i
= 0; i
< ARRAY_SIZE(tpacpi_driver_attributes
); i
++)
580 driver_remove_file(drv
, tpacpi_driver_attributes
[i
]);
583 /*************************************************************************
584 * sysfs support helpers
587 struct attribute_set_obj
{
588 struct attribute_set s
;
590 } __attribute__((packed
));
592 static struct attribute_set
*create_attr_set(unsigned int max_members
,
595 struct attribute_set_obj
*sobj
;
597 if (max_members
== 0)
600 /* Allocates space for implicit NULL at the end too */
601 sobj
= kzalloc(sizeof(struct attribute_set_obj
) +
602 max_members
* sizeof(struct attribute
*),
606 sobj
->s
.max_members
= max_members
;
607 sobj
->s
.group
.attrs
= &sobj
->a
;
608 sobj
->s
.group
.name
= name
;
613 /* not multi-threaded safe, use it in a single thread per set */
614 static int add_to_attr_set(struct attribute_set
* s
, struct attribute
*attr
)
619 if (s
->members
>= s
->max_members
)
622 s
->group
.attrs
[s
->members
] = attr
;
628 static int add_many_to_attr_set(struct attribute_set
* s
,
629 struct attribute
**attr
,
634 for (i
= 0; i
< count
; i
++) {
635 res
= add_to_attr_set(s
, attr
[i
]);
643 static void delete_attr_set(struct attribute_set
* s
, struct kobject
*kobj
)
645 sysfs_remove_group(kobj
, &s
->group
);
649 static int parse_strtoul(const char *buf
,
650 unsigned long max
, unsigned long *value
)
654 *value
= simple_strtoul(buf
, &endp
, 0);
655 while (*endp
&& isspace(*endp
))
657 if (*endp
|| *value
> max
)
663 /****************************************************************************
664 ****************************************************************************
668 ****************************************************************************
669 ****************************************************************************/
671 /*************************************************************************
672 * thinkpad-acpi init subdriver
675 static int __init
thinkpad_acpi_driver_init(struct ibm_init_struct
*iibm
)
677 printk(IBM_INFO
"%s v%s\n", IBM_DESC
, IBM_VERSION
);
678 printk(IBM_INFO
"%s\n", IBM_URL
);
680 if (ibm_thinkpad_ec_found
)
681 printk(IBM_INFO
"ThinkPad EC firmware %s\n",
682 ibm_thinkpad_ec_found
);
687 static int thinkpad_acpi_driver_read(char *p
)
691 len
+= sprintf(p
+ len
, "driver:\t\t%s\n", IBM_DESC
);
692 len
+= sprintf(p
+ len
, "version:\t%s\n", IBM_VERSION
);
697 static struct ibm_struct thinkpad_acpi_driver_data
= {
699 .read
= thinkpad_acpi_driver_read
,
702 /*************************************************************************
706 static int hotkey_orig_status
;
707 static int hotkey_orig_mask
;
709 static struct attribute_set
*hotkey_dev_attributes
= NULL
;
711 /* sysfs hotkey enable ------------------------------------------------- */
712 static ssize_t
hotkey_enable_show(struct device
*dev
,
713 struct device_attribute
*attr
,
716 int res
, status
, mask
;
718 res
= hotkey_get(&status
, &mask
);
722 return snprintf(buf
, PAGE_SIZE
, "%d\n", status
);
725 static ssize_t
hotkey_enable_store(struct device
*dev
,
726 struct device_attribute
*attr
,
727 const char *buf
, size_t count
)
730 int res
, status
, mask
;
732 if (parse_strtoul(buf
, 1, &t
))
735 res
= hotkey_get(&status
, &mask
);
737 res
= hotkey_set(t
, mask
);
739 return (res
) ? res
: count
;
742 static struct device_attribute dev_attr_hotkey_enable
=
743 __ATTR(enable
, S_IWUSR
| S_IRUGO
,
744 hotkey_enable_show
, hotkey_enable_store
);
746 /* sysfs hotkey mask --------------------------------------------------- */
747 static ssize_t
hotkey_mask_show(struct device
*dev
,
748 struct device_attribute
*attr
,
751 int res
, status
, mask
;
753 res
= hotkey_get(&status
, &mask
);
757 return snprintf(buf
, PAGE_SIZE
, "0x%04x\n", mask
);
760 static ssize_t
hotkey_mask_store(struct device
*dev
,
761 struct device_attribute
*attr
,
762 const char *buf
, size_t count
)
765 int res
, status
, mask
;
767 if (parse_strtoul(buf
, 0xffff, &t
))
770 res
= hotkey_get(&status
, &mask
);
772 hotkey_set(status
, t
);
774 return (res
) ? res
: count
;
777 static struct device_attribute dev_attr_hotkey_mask
=
778 __ATTR(mask
, S_IWUSR
| S_IRUGO
,
779 hotkey_mask_show
, hotkey_mask_store
);
781 /* sysfs hotkey bios_enabled ------------------------------------------- */
782 static ssize_t
hotkey_bios_enabled_show(struct device
*dev
,
783 struct device_attribute
*attr
,
786 return snprintf(buf
, PAGE_SIZE
, "%d\n", hotkey_orig_status
);
789 static struct device_attribute dev_attr_hotkey_bios_enabled
=
790 __ATTR(bios_enabled
, S_IRUGO
, hotkey_bios_enabled_show
, NULL
);
792 /* sysfs hotkey bios_mask ---------------------------------------------- */
793 static ssize_t
hotkey_bios_mask_show(struct device
*dev
,
794 struct device_attribute
*attr
,
797 return snprintf(buf
, PAGE_SIZE
, "0x%04x\n", hotkey_orig_mask
);
800 static struct device_attribute dev_attr_hotkey_bios_mask
=
801 __ATTR(bios_mask
, S_IRUGO
, hotkey_bios_mask_show
, NULL
);
803 /* --------------------------------------------------------------------- */
805 static struct attribute
*hotkey_mask_attributes
[] = {
806 &dev_attr_hotkey_mask
.attr
,
807 &dev_attr_hotkey_bios_enabled
.attr
,
808 &dev_attr_hotkey_bios_mask
.attr
,
811 static int __init
hotkey_init(struct ibm_init_struct
*iibm
)
815 vdbg_printk(TPACPI_DBG_INIT
, "initializing hotkey subdriver\n");
817 IBM_ACPIHANDLE_INIT(hkey
);
818 mutex_init(&hotkey_mutex
);
820 /* hotkey not supported on 570 */
821 tp_features
.hotkey
= hkey_handle
!= NULL
;
823 vdbg_printk(TPACPI_DBG_INIT
, "hotkeys are %s\n",
824 str_supported(tp_features
.hotkey
));
826 if (tp_features
.hotkey
) {
827 hotkey_dev_attributes
= create_attr_set(4,
828 TPACPI_HOTKEY_SYSFS_GROUP
);
829 if (!hotkey_dev_attributes
)
831 res
= add_to_attr_set(hotkey_dev_attributes
,
832 &dev_attr_hotkey_enable
.attr
);
836 /* mask not supported on 570, 600e/x, 770e, 770x, A21e, A2xm/p,
837 A30, R30, R31, T20-22, X20-21, X22-24 */
838 tp_features
.hotkey_mask
=
839 acpi_evalf(hkey_handle
, NULL
, "DHKN", "qv");
841 vdbg_printk(TPACPI_DBG_INIT
, "hotkey masks are %s\n",
842 str_supported(tp_features
.hotkey_mask
));
844 res
= hotkey_get(&hotkey_orig_status
, &hotkey_orig_mask
);
845 if (!res
&& tp_features
.hotkey_mask
) {
846 res
= add_many_to_attr_set(hotkey_dev_attributes
,
847 hotkey_mask_attributes
,
848 ARRAY_SIZE(hotkey_mask_attributes
));
851 res
= register_attr_set_with_sysfs(
852 hotkey_dev_attributes
,
853 &tpacpi_pdev
->dev
.kobj
);
859 return (tp_features
.hotkey
)? 0 : 1;
862 static void hotkey_exit(void)
866 if (tp_features
.hotkey
) {
867 dbg_printk(TPACPI_DBG_EXIT
, "restoring original hotkey mask\n");
868 res
= hotkey_set(hotkey_orig_status
, hotkey_orig_mask
);
870 printk(IBM_ERR
"failed to restore hotkey to BIOS defaults\n");
873 if (hotkey_dev_attributes
) {
874 delete_attr_set(hotkey_dev_attributes
, &tpacpi_pdev
->dev
.kobj
);
875 hotkey_dev_attributes
= NULL
;
879 static void hotkey_notify(struct ibm_struct
*ibm
, u32 event
)
883 if (acpi_evalf(hkey_handle
, &hkey
, "MHKP", "d"))
884 acpi_bus_generate_event(ibm
->acpi
->device
, event
, hkey
);
886 printk(IBM_ERR
"unknown hotkey event %d\n", event
);
887 acpi_bus_generate_event(ibm
->acpi
->device
, event
, 0);
892 * Call with hotkey_mutex held
894 static int hotkey_get(int *status
, int *mask
)
896 if (!acpi_evalf(hkey_handle
, status
, "DHKC", "d"))
899 if (tp_features
.hotkey_mask
)
900 if (!acpi_evalf(hkey_handle
, mask
, "DHKN", "d"))
907 * Call with hotkey_mutex held
909 static int hotkey_set(int status
, int mask
)
913 if (!acpi_evalf(hkey_handle
, NULL
, "MHKC", "vd", status
))
916 if (tp_features
.hotkey_mask
)
917 for (i
= 0; i
< 32; i
++) {
918 int bit
= ((1 << i
) & mask
) != 0;
919 if (!acpi_evalf(hkey_handle
,
920 NULL
, "MHKM", "vdd", i
+ 1, bit
))
927 /* procfs -------------------------------------------------------------- */
928 static int hotkey_read(char *p
)
930 int res
, status
, mask
;
933 if (!tp_features
.hotkey
) {
934 len
+= sprintf(p
+ len
, "status:\t\tnot supported\n");
938 res
= mutex_lock_interruptible(&hotkey_mutex
);
941 res
= hotkey_get(&status
, &mask
);
942 mutex_unlock(&hotkey_mutex
);
946 len
+= sprintf(p
+ len
, "status:\t\t%s\n", enabled(status
, 0));
947 if (tp_features
.hotkey_mask
) {
948 len
+= sprintf(p
+ len
, "mask:\t\t0x%04x\n", mask
);
949 len
+= sprintf(p
+ len
,
950 "commands:\tenable, disable, reset, <mask>\n");
952 len
+= sprintf(p
+ len
, "mask:\t\tnot supported\n");
953 len
+= sprintf(p
+ len
, "commands:\tenable, disable, reset\n");
959 static int hotkey_write(char *buf
)
961 int res
, status
, mask
;
965 if (!tp_features
.hotkey
)
968 res
= mutex_lock_interruptible(&hotkey_mutex
);
972 res
= hotkey_get(&status
, &mask
);
977 while ((cmd
= next_cmd(&buf
))) {
978 if (strlencmp(cmd
, "enable") == 0) {
980 } else if (strlencmp(cmd
, "disable") == 0) {
982 } else if (strlencmp(cmd
, "reset") == 0) {
983 status
= hotkey_orig_status
;
984 mask
= hotkey_orig_mask
;
985 } else if (sscanf(cmd
, "0x%x", &mask
) == 1) {
987 } else if (sscanf(cmd
, "%x", &mask
) == 1) {
997 res
= hotkey_set(status
, mask
);
1000 mutex_unlock(&hotkey_mutex
);
1004 static struct tp_acpi_drv_struct ibm_hotkey_acpidriver
= {
1005 .hid
= IBM_HKEY_HID
,
1006 .notify
= hotkey_notify
,
1007 .handle
= &hkey_handle
,
1008 .type
= ACPI_DEVICE_NOTIFY
,
1011 static struct ibm_struct hotkey_driver_data
= {
1013 .read
= hotkey_read
,
1014 .write
= hotkey_write
,
1015 .exit
= hotkey_exit
,
1016 .acpi
= &ibm_hotkey_acpidriver
,
1019 /*************************************************************************
1020 * Bluetooth subdriver
1023 /* sysfs bluetooth enable ---------------------------------------------- */
1024 static ssize_t
bluetooth_enable_show(struct device
*dev
,
1025 struct device_attribute
*attr
,
1030 status
= bluetooth_get_radiosw();
1034 return snprintf(buf
, PAGE_SIZE
, "%d\n", status
? 1 : 0);
1037 static ssize_t
bluetooth_enable_store(struct device
*dev
,
1038 struct device_attribute
*attr
,
1039 const char *buf
, size_t count
)
1044 if (parse_strtoul(buf
, 1, &t
))
1047 res
= bluetooth_set_radiosw(t
);
1049 return (res
) ? res
: count
;
1052 static struct device_attribute dev_attr_bluetooth_enable
=
1053 __ATTR(enable
, S_IWUSR
| S_IRUGO
,
1054 bluetooth_enable_show
, bluetooth_enable_store
);
1056 /* --------------------------------------------------------------------- */
1058 static struct attribute
*bluetooth_attributes
[] = {
1059 &dev_attr_bluetooth_enable
.attr
,
1063 static const struct attribute_group bluetooth_attr_group
= {
1064 .name
= TPACPI_BLUETH_SYSFS_GROUP
,
1065 .attrs
= bluetooth_attributes
,
1068 static int __init
bluetooth_init(struct ibm_init_struct
*iibm
)
1073 vdbg_printk(TPACPI_DBG_INIT
, "initializing bluetooth subdriver\n");
1075 IBM_ACPIHANDLE_INIT(hkey
);
1077 /* bluetooth not supported on 570, 600e/x, 770e, 770x, A21e, A2xm/p,
1078 G4x, R30, R31, R40e, R50e, T20-22, X20-21 */
1079 tp_features
.bluetooth
= hkey_handle
&&
1080 acpi_evalf(hkey_handle
, &status
, "GBDC", "qd");
1082 vdbg_printk(TPACPI_DBG_INIT
, "bluetooth is %s, status 0x%02x\n",
1083 str_supported(tp_features
.bluetooth
),
1086 if (tp_features
.bluetooth
) {
1087 if (!(status
& TP_ACPI_BLUETOOTH_HWPRESENT
)) {
1088 /* no bluetooth hardware present in system */
1089 tp_features
.bluetooth
= 0;
1090 dbg_printk(TPACPI_DBG_INIT
,
1091 "bluetooth hardware not installed\n");
1093 res
= sysfs_create_group(&tpacpi_pdev
->dev
.kobj
,
1094 &bluetooth_attr_group
);
1100 return (tp_features
.bluetooth
)? 0 : 1;
1103 static void bluetooth_exit(void)
1105 sysfs_remove_group(&tpacpi_pdev
->dev
.kobj
,
1106 &bluetooth_attr_group
);
1109 static int bluetooth_get_radiosw(void)
1113 if (!tp_features
.bluetooth
)
1116 if (!acpi_evalf(hkey_handle
, &status
, "GBDC", "d"))
1119 return ((status
& TP_ACPI_BLUETOOTH_RADIOSSW
) != 0);
1122 static int bluetooth_set_radiosw(int radio_on
)
1126 if (!tp_features
.bluetooth
)
1129 if (!acpi_evalf(hkey_handle
, &status
, "GBDC", "d"))
1132 status
|= TP_ACPI_BLUETOOTH_RADIOSSW
;
1134 status
&= ~TP_ACPI_BLUETOOTH_RADIOSSW
;
1135 if (!acpi_evalf(hkey_handle
, NULL
, "SBDC", "vd", status
))
1141 /* procfs -------------------------------------------------------------- */
1142 static int bluetooth_read(char *p
)
1145 int status
= bluetooth_get_radiosw();
1147 if (!tp_features
.bluetooth
)
1148 len
+= sprintf(p
+ len
, "status:\t\tnot supported\n");
1150 len
+= sprintf(p
+ len
, "status:\t\t%s\n",
1151 (status
)? "enabled" : "disabled");
1152 len
+= sprintf(p
+ len
, "commands:\tenable, disable\n");
1158 static int bluetooth_write(char *buf
)
1162 if (!tp_features
.bluetooth
)
1165 while ((cmd
= next_cmd(&buf
))) {
1166 if (strlencmp(cmd
, "enable") == 0) {
1167 bluetooth_set_radiosw(1);
1168 } else if (strlencmp(cmd
, "disable") == 0) {
1169 bluetooth_set_radiosw(0);
1177 static struct ibm_struct bluetooth_driver_data
= {
1178 .name
= "bluetooth",
1179 .read
= bluetooth_read
,
1180 .write
= bluetooth_write
,
1181 .exit
= bluetooth_exit
,
1184 /*************************************************************************
1188 /* sysfs wan enable ---------------------------------------------------- */
1189 static ssize_t
wan_enable_show(struct device
*dev
,
1190 struct device_attribute
*attr
,
1195 status
= wan_get_radiosw();
1199 return snprintf(buf
, PAGE_SIZE
, "%d\n", status
? 1 : 0);
1202 static ssize_t
wan_enable_store(struct device
*dev
,
1203 struct device_attribute
*attr
,
1204 const char *buf
, size_t count
)
1209 if (parse_strtoul(buf
, 1, &t
))
1212 res
= wan_set_radiosw(t
);
1214 return (res
) ? res
: count
;
1217 static struct device_attribute dev_attr_wan_enable
=
1218 __ATTR(enable
, S_IWUSR
| S_IRUGO
,
1219 wan_enable_show
, wan_enable_store
);
1221 /* --------------------------------------------------------------------- */
1223 static struct attribute
*wan_attributes
[] = {
1224 &dev_attr_wan_enable
.attr
,
1228 static const struct attribute_group wan_attr_group
= {
1229 .name
= TPACPI_WAN_SYSFS_GROUP
,
1230 .attrs
= wan_attributes
,
1233 static int __init
wan_init(struct ibm_init_struct
*iibm
)
1238 vdbg_printk(TPACPI_DBG_INIT
, "initializing wan subdriver\n");
1240 IBM_ACPIHANDLE_INIT(hkey
);
1242 tp_features
.wan
= hkey_handle
&&
1243 acpi_evalf(hkey_handle
, &status
, "GWAN", "qd");
1245 vdbg_printk(TPACPI_DBG_INIT
, "wan is %s, status 0x%02x\n",
1246 str_supported(tp_features
.wan
),
1249 if (tp_features
.wan
) {
1250 if (!(status
& TP_ACPI_WANCARD_HWPRESENT
)) {
1251 /* no wan hardware present in system */
1252 tp_features
.wan
= 0;
1253 dbg_printk(TPACPI_DBG_INIT
,
1254 "wan hardware not installed\n");
1256 res
= sysfs_create_group(&tpacpi_pdev
->dev
.kobj
,
1263 return (tp_features
.wan
)? 0 : 1;
1266 static void wan_exit(void)
1268 sysfs_remove_group(&tpacpi_pdev
->dev
.kobj
,
1272 static int wan_get_radiosw(void)
1276 if (!tp_features
.wan
)
1279 if (!acpi_evalf(hkey_handle
, &status
, "GWAN", "d"))
1282 return ((status
& TP_ACPI_WANCARD_RADIOSSW
) != 0);
1285 static int wan_set_radiosw(int radio_on
)
1289 if (!tp_features
.wan
)
1292 if (!acpi_evalf(hkey_handle
, &status
, "GWAN", "d"))
1295 status
|= TP_ACPI_WANCARD_RADIOSSW
;
1297 status
&= ~TP_ACPI_WANCARD_RADIOSSW
;
1298 if (!acpi_evalf(hkey_handle
, NULL
, "SWAN", "vd", status
))
1304 /* procfs -------------------------------------------------------------- */
1305 static int wan_read(char *p
)
1308 int status
= wan_get_radiosw();
1310 if (!tp_features
.wan
)
1311 len
+= sprintf(p
+ len
, "status:\t\tnot supported\n");
1313 len
+= sprintf(p
+ len
, "status:\t\t%s\n",
1314 (status
)? "enabled" : "disabled");
1315 len
+= sprintf(p
+ len
, "commands:\tenable, disable\n");
1321 static int wan_write(char *buf
)
1325 if (!tp_features
.wan
)
1328 while ((cmd
= next_cmd(&buf
))) {
1329 if (strlencmp(cmd
, "enable") == 0) {
1331 } else if (strlencmp(cmd
, "disable") == 0) {
1340 static struct ibm_struct wan_driver_data
= {
1345 .flags
.experimental
= 1,
1348 /*************************************************************************
1352 static enum video_access_mode video_supported
;
1353 static int video_orig_autosw
;
1355 IBM_HANDLE(vid
, root
, "\\_SB.PCI.AGP.VGA", /* 570 */
1356 "\\_SB.PCI0.AGP0.VID0", /* 600e/x, 770x */
1357 "\\_SB.PCI0.VID0", /* 770e */
1358 "\\_SB.PCI0.VID", /* A21e, G4x, R50e, X30, X40 */
1359 "\\_SB.PCI0.AGP.VID", /* all others */
1362 IBM_HANDLE(vid2
, root
, "\\_SB.PCI0.AGPB.VID"); /* G41 */
1364 static int __init
video_init(struct ibm_init_struct
*iibm
)
1368 vdbg_printk(TPACPI_DBG_INIT
, "initializing video subdriver\n");
1370 IBM_ACPIHANDLE_INIT(vid
);
1371 IBM_ACPIHANDLE_INIT(vid2
);
1373 if (vid2_handle
&& acpi_evalf(NULL
, &ivga
, "\\IVGA", "d") && ivga
)
1374 /* G41, assume IVGA doesn't change */
1375 vid_handle
= vid2_handle
;
1378 /* video switching not supported on R30, R31 */
1379 video_supported
= TPACPI_VIDEO_NONE
;
1380 else if (acpi_evalf(vid_handle
, &video_orig_autosw
, "SWIT", "qd"))
1382 video_supported
= TPACPI_VIDEO_570
;
1383 else if (acpi_evalf(vid_handle
, &video_orig_autosw
, "^VADL", "qd"))
1384 /* 600e/x, 770e, 770x */
1385 video_supported
= TPACPI_VIDEO_770
;
1388 video_supported
= TPACPI_VIDEO_NEW
;
1390 vdbg_printk(TPACPI_DBG_INIT
, "video is %s, mode %d\n",
1391 str_supported(video_supported
!= TPACPI_VIDEO_NONE
),
1394 return (video_supported
!= TPACPI_VIDEO_NONE
)? 0 : 1;
1397 static void video_exit(void)
1399 dbg_printk(TPACPI_DBG_EXIT
,
1400 "restoring original video autoswitch mode\n");
1401 if (video_autosw_set(video_orig_autosw
))
1402 printk(IBM_ERR
"error while trying to restore original "
1403 "video autoswitch mode\n");
1406 static int video_outputsw_get(void)
1411 switch (video_supported
) {
1412 case TPACPI_VIDEO_570
:
1413 if (!acpi_evalf(NULL
, &i
, "\\_SB.PHS", "dd",
1414 TP_ACPI_VIDEO_570_PHSCMD
))
1416 status
= i
& TP_ACPI_VIDEO_570_PHSMASK
;
1418 case TPACPI_VIDEO_770
:
1419 if (!acpi_evalf(NULL
, &i
, "\\VCDL", "d"))
1422 status
|= TP_ACPI_VIDEO_S_LCD
;
1423 if (!acpi_evalf(NULL
, &i
, "\\VCDC", "d"))
1426 status
|= TP_ACPI_VIDEO_S_CRT
;
1428 case TPACPI_VIDEO_NEW
:
1429 if (!acpi_evalf(NULL
, NULL
, "\\VUPS", "vd", 1) ||
1430 !acpi_evalf(NULL
, &i
, "\\VCDC", "d"))
1433 status
|= TP_ACPI_VIDEO_S_CRT
;
1435 if (!acpi_evalf(NULL
, NULL
, "\\VUPS", "vd", 0) ||
1436 !acpi_evalf(NULL
, &i
, "\\VCDL", "d"))
1439 status
|= TP_ACPI_VIDEO_S_LCD
;
1440 if (!acpi_evalf(NULL
, &i
, "\\VCDD", "d"))
1443 status
|= TP_ACPI_VIDEO_S_DVI
;
1452 static int video_outputsw_set(int status
)
1457 switch (video_supported
) {
1458 case TPACPI_VIDEO_570
:
1459 res
= acpi_evalf(NULL
, NULL
,
1460 "\\_SB.PHS2", "vdd",
1461 TP_ACPI_VIDEO_570_PHS2CMD
,
1462 status
| TP_ACPI_VIDEO_570_PHS2SET
);
1464 case TPACPI_VIDEO_770
:
1465 autosw
= video_autosw_get();
1469 res
= video_autosw_set(1);
1472 res
= acpi_evalf(vid_handle
, NULL
,
1473 "ASWT", "vdd", status
* 0x100, 0);
1474 if (!autosw
&& video_autosw_set(autosw
)) {
1475 printk(IBM_ERR
"video auto-switch left enabled due to error\n");
1479 case TPACPI_VIDEO_NEW
:
1480 res
= acpi_evalf(NULL
, NULL
, "\\VUPS", "vd", 0x80) &&
1481 acpi_evalf(NULL
, NULL
, "\\VSDS", "vdd", status
, 1);
1487 return (res
)? 0 : -EIO
;
1490 static int video_autosw_get(void)
1494 switch (video_supported
) {
1495 case TPACPI_VIDEO_570
:
1496 if (!acpi_evalf(vid_handle
, &autosw
, "SWIT", "d"))
1499 case TPACPI_VIDEO_770
:
1500 case TPACPI_VIDEO_NEW
:
1501 if (!acpi_evalf(vid_handle
, &autosw
, "^VDEE", "d"))
1511 static int video_autosw_set(int enable
)
1513 if (!acpi_evalf(vid_handle
, NULL
, "_DOS", "vd", (enable
)? 1 : 0))
1518 static int video_outputsw_cycle(void)
1520 int autosw
= video_autosw_get();
1526 switch (video_supported
) {
1527 case TPACPI_VIDEO_570
:
1528 res
= video_autosw_set(1);
1531 res
= acpi_evalf(ec_handle
, NULL
, "_Q16", "v");
1533 case TPACPI_VIDEO_770
:
1534 case TPACPI_VIDEO_NEW
:
1535 res
= video_autosw_set(1);
1538 res
= acpi_evalf(vid_handle
, NULL
, "VSWT", "v");
1543 if (!autosw
&& video_autosw_set(autosw
)) {
1544 printk(IBM_ERR
"video auto-switch left enabled due to error\n");
1548 return (res
)? 0 : -EIO
;
1551 static int video_expand_toggle(void)
1553 switch (video_supported
) {
1554 case TPACPI_VIDEO_570
:
1555 return acpi_evalf(ec_handle
, NULL
, "_Q17", "v")?
1557 case TPACPI_VIDEO_770
:
1558 return acpi_evalf(vid_handle
, NULL
, "VEXP", "v")?
1560 case TPACPI_VIDEO_NEW
:
1561 return acpi_evalf(NULL
, NULL
, "\\VEXP", "v")?
1569 static int video_read(char *p
)
1574 if (video_supported
== TPACPI_VIDEO_NONE
) {
1575 len
+= sprintf(p
+ len
, "status:\t\tnot supported\n");
1579 status
= video_outputsw_get();
1583 autosw
= video_autosw_get();
1587 len
+= sprintf(p
+ len
, "status:\t\tsupported\n");
1588 len
+= sprintf(p
+ len
, "lcd:\t\t%s\n", enabled(status
, 0));
1589 len
+= sprintf(p
+ len
, "crt:\t\t%s\n", enabled(status
, 1));
1590 if (video_supported
== TPACPI_VIDEO_NEW
)
1591 len
+= sprintf(p
+ len
, "dvi:\t\t%s\n", enabled(status
, 3));
1592 len
+= sprintf(p
+ len
, "auto:\t\t%s\n", enabled(autosw
, 0));
1593 len
+= sprintf(p
+ len
, "commands:\tlcd_enable, lcd_disable\n");
1594 len
+= sprintf(p
+ len
, "commands:\tcrt_enable, crt_disable\n");
1595 if (video_supported
== TPACPI_VIDEO_NEW
)
1596 len
+= sprintf(p
+ len
, "commands:\tdvi_enable, dvi_disable\n");
1597 len
+= sprintf(p
+ len
, "commands:\tauto_enable, auto_disable\n");
1598 len
+= sprintf(p
+ len
, "commands:\tvideo_switch, expand_toggle\n");
1603 static int video_write(char *buf
)
1606 int enable
, disable
, status
;
1609 if (video_supported
== TPACPI_VIDEO_NONE
)
1615 while ((cmd
= next_cmd(&buf
))) {
1616 if (strlencmp(cmd
, "lcd_enable") == 0) {
1617 enable
|= TP_ACPI_VIDEO_S_LCD
;
1618 } else if (strlencmp(cmd
, "lcd_disable") == 0) {
1619 disable
|= TP_ACPI_VIDEO_S_LCD
;
1620 } else if (strlencmp(cmd
, "crt_enable") == 0) {
1621 enable
|= TP_ACPI_VIDEO_S_CRT
;
1622 } else if (strlencmp(cmd
, "crt_disable") == 0) {
1623 disable
|= TP_ACPI_VIDEO_S_CRT
;
1624 } else if (video_supported
== TPACPI_VIDEO_NEW
&&
1625 strlencmp(cmd
, "dvi_enable") == 0) {
1626 enable
|= TP_ACPI_VIDEO_S_DVI
;
1627 } else if (video_supported
== TPACPI_VIDEO_NEW
&&
1628 strlencmp(cmd
, "dvi_disable") == 0) {
1629 disable
|= TP_ACPI_VIDEO_S_DVI
;
1630 } else if (strlencmp(cmd
, "auto_enable") == 0) {
1631 res
= video_autosw_set(1);
1634 } else if (strlencmp(cmd
, "auto_disable") == 0) {
1635 res
= video_autosw_set(0);
1638 } else if (strlencmp(cmd
, "video_switch") == 0) {
1639 res
= video_outputsw_cycle();
1642 } else if (strlencmp(cmd
, "expand_toggle") == 0) {
1643 res
= video_expand_toggle();
1650 if (enable
|| disable
) {
1651 status
= video_outputsw_get();
1654 res
= video_outputsw_set((status
& ~disable
) | enable
);
1662 static struct ibm_struct video_driver_data
= {
1665 .write
= video_write
,
1669 /*************************************************************************
1670 * Light (thinklight) subdriver
1673 IBM_HANDLE(lght
, root
, "\\LGHT"); /* A21e, A2xm/p, T20-22, X20-21 */
1674 IBM_HANDLE(ledb
, ec
, "LEDB"); /* G4x */
1676 static int __init
light_init(struct ibm_init_struct
*iibm
)
1678 vdbg_printk(TPACPI_DBG_INIT
, "initializing light subdriver\n");
1680 IBM_ACPIHANDLE_INIT(ledb
);
1681 IBM_ACPIHANDLE_INIT(lght
);
1682 IBM_ACPIHANDLE_INIT(cmos
);
1684 /* light not supported on 570, 600e/x, 770e, 770x, G4x, R30, R31 */
1685 tp_features
.light
= (cmos_handle
|| lght_handle
) && !ledb_handle
;
1687 if (tp_features
.light
)
1688 /* light status not supported on
1689 570, 600e/x, 770e, 770x, G4x, R30, R31, R32, X20 */
1690 tp_features
.light_status
=
1691 acpi_evalf(ec_handle
, NULL
, "KBLT", "qv");
1693 vdbg_printk(TPACPI_DBG_INIT
, "light is %s\n",
1694 str_supported(tp_features
.light
));
1696 return (tp_features
.light
)? 0 : 1;
1699 static int light_read(char *p
)
1704 if (!tp_features
.light
) {
1705 len
+= sprintf(p
+ len
, "status:\t\tnot supported\n");
1706 } else if (!tp_features
.light_status
) {
1707 len
+= sprintf(p
+ len
, "status:\t\tunknown\n");
1708 len
+= sprintf(p
+ len
, "commands:\ton, off\n");
1710 if (!acpi_evalf(ec_handle
, &status
, "KBLT", "d"))
1712 len
+= sprintf(p
+ len
, "status:\t\t%s\n", onoff(status
, 0));
1713 len
+= sprintf(p
+ len
, "commands:\ton, off\n");
1719 static int light_write(char *buf
)
1721 int cmos_cmd
, lght_cmd
;
1725 if (!tp_features
.light
)
1728 while ((cmd
= next_cmd(&buf
))) {
1729 if (strlencmp(cmd
, "on") == 0) {
1732 } else if (strlencmp(cmd
, "off") == 0) {
1738 success
= cmos_handle
?
1739 acpi_evalf(cmos_handle
, NULL
, NULL
, "vd", cmos_cmd
) :
1740 acpi_evalf(lght_handle
, NULL
, NULL
, "vd", lght_cmd
);
1748 static struct ibm_struct light_driver_data
= {
1751 .write
= light_write
,
1754 /*************************************************************************
1758 #ifdef CONFIG_THINKPAD_ACPI_DOCK
1760 IBM_HANDLE(dock
, root
, "\\_SB.GDCK", /* X30, X31, X40 */
1761 "\\_SB.PCI0.DOCK", /* 600e/x,770e,770x,A2xm/p,T20-22,X20-21 */
1762 "\\_SB.PCI0.PCI1.DOCK", /* all others */
1763 "\\_SB.PCI.ISA.SLCE", /* 570 */
1764 ); /* A21e,G4x,R30,R31,R32,R40,R40e,R50e */
1766 /* don't list other alternatives as we install a notify handler on the 570 */
1767 IBM_HANDLE(pci
, root
, "\\_SB.PCI"); /* 570 */
1769 static struct tp_acpi_drv_struct ibm_dock_acpidriver
[2] = {
1771 .notify
= dock_notify
,
1772 .handle
= &dock_handle
,
1773 .type
= ACPI_SYSTEM_NOTIFY
,
1777 .notify
= dock_notify
,
1778 .handle
= &pci_handle
,
1779 .type
= ACPI_SYSTEM_NOTIFY
,
1783 static struct ibm_struct dock_driver_data
[2] = {
1787 .write
= dock_write
,
1788 .acpi
= &ibm_dock_acpidriver
[0],
1792 .acpi
= &ibm_dock_acpidriver
[1],
1796 #define dock_docked() (_sta(dock_handle) & 1)
1798 static int __init
dock_init(struct ibm_init_struct
*iibm
)
1800 vdbg_printk(TPACPI_DBG_INIT
, "initializing dock subdriver\n");
1802 IBM_ACPIHANDLE_INIT(dock
);
1804 vdbg_printk(TPACPI_DBG_INIT
, "dock is %s\n",
1805 str_supported(dock_handle
!= NULL
));
1807 return (dock_handle
)? 0 : 1;
1810 static int __init
dock_init2(struct ibm_init_struct
*iibm
)
1814 vdbg_printk(TPACPI_DBG_INIT
, "initializing dock subdriver part 2\n");
1816 if (dock_driver_data
[0].flags
.acpi_driver_registered
&&
1817 dock_driver_data
[0].flags
.acpi_notify_installed
) {
1818 IBM_ACPIHANDLE_INIT(pci
);
1819 dock2_needed
= (pci_handle
!= NULL
);
1820 vdbg_printk(TPACPI_DBG_INIT
,
1821 "dock PCI handler for the TP 570 is %s\n",
1822 str_supported(dock2_needed
));
1824 vdbg_printk(TPACPI_DBG_INIT
,
1825 "dock subdriver part 2 not required\n");
1829 return (dock2_needed
)? 0 : 1;
1832 static void dock_notify(struct ibm_struct
*ibm
, u32 event
)
1834 int docked
= dock_docked();
1835 int pci
= ibm
->acpi
->hid
&& strstr(ibm
->acpi
->hid
, IBM_PCI_HID
);
1837 if (event
== 1 && !pci
) /* 570 */
1838 acpi_bus_generate_event(ibm
->acpi
->device
, event
, 1); /* button */
1839 else if (event
== 1 && pci
) /* 570 */
1840 acpi_bus_generate_event(ibm
->acpi
->device
, event
, 3); /* dock */
1841 else if (event
== 3 && docked
)
1842 acpi_bus_generate_event(ibm
->acpi
->device
, event
, 1); /* button */
1843 else if (event
== 3 && !docked
)
1844 acpi_bus_generate_event(ibm
->acpi
->device
, event
, 2); /* undock */
1845 else if (event
== 0 && docked
)
1846 acpi_bus_generate_event(ibm
->acpi
->device
, event
, 3); /* dock */
1848 printk(IBM_ERR
"unknown dock event %d, status %d\n",
1849 event
, _sta(dock_handle
));
1850 acpi_bus_generate_event(ibm
->acpi
->device
, event
, 0); /* unknown */
1854 static int dock_read(char *p
)
1857 int docked
= dock_docked();
1860 len
+= sprintf(p
+ len
, "status:\t\tnot supported\n");
1862 len
+= sprintf(p
+ len
, "status:\t\tundocked\n");
1864 len
+= sprintf(p
+ len
, "status:\t\tdocked\n");
1865 len
+= sprintf(p
+ len
, "commands:\tdock, undock\n");
1871 static int dock_write(char *buf
)
1878 while ((cmd
= next_cmd(&buf
))) {
1879 if (strlencmp(cmd
, "undock") == 0) {
1880 if (!acpi_evalf(dock_handle
, NULL
, "_DCK", "vd", 0) ||
1881 !acpi_evalf(dock_handle
, NULL
, "_EJ0", "vd", 1))
1883 } else if (strlencmp(cmd
, "dock") == 0) {
1884 if (!acpi_evalf(dock_handle
, NULL
, "_DCK", "vd", 1))
1893 #endif /* CONFIG_THINKPAD_ACPI_DOCK */
1895 /*************************************************************************
1899 #ifdef CONFIG_THINKPAD_ACPI_BAY
1900 IBM_HANDLE(bay
, root
, "\\_SB.PCI.IDE.SECN.MAST", /* 570 */
1901 "\\_SB.PCI0.IDE0.IDES.IDSM", /* 600e/x, 770e, 770x */
1902 "\\_SB.PCI0.SATA.SCND.MSTR", /* T60, X60, Z60 */
1903 "\\_SB.PCI0.IDE0.SCND.MSTR", /* all others */
1904 ); /* A21e, R30, R31 */
1905 IBM_HANDLE(bay_ej
, bay
, "_EJ3", /* 600e/x, A2xm/p, A3x */
1906 "_EJ0", /* all others */
1907 ); /* 570,A21e,G4x,R30,R31,R32,R40e,R50e */
1908 IBM_HANDLE(bay2
, root
, "\\_SB.PCI0.IDE0.PRIM.SLAV", /* A3x, R32 */
1909 "\\_SB.PCI0.IDE0.IDEP.IDPS", /* 600e/x, 770e, 770x */
1911 IBM_HANDLE(bay2_ej
, bay2
, "_EJ3", /* 600e/x, 770e, A3x */
1915 static int __init
bay_init(struct ibm_init_struct
*iibm
)
1917 vdbg_printk(TPACPI_DBG_INIT
, "initializing bay subdriver\n");
1919 IBM_ACPIHANDLE_INIT(bay
);
1921 IBM_ACPIHANDLE_INIT(bay_ej
);
1922 IBM_ACPIHANDLE_INIT(bay2
);
1924 IBM_ACPIHANDLE_INIT(bay2_ej
);
1926 tp_features
.bay_status
= bay_handle
&&
1927 acpi_evalf(bay_handle
, NULL
, "_STA", "qv");
1928 tp_features
.bay_status2
= bay2_handle
&&
1929 acpi_evalf(bay2_handle
, NULL
, "_STA", "qv");
1931 tp_features
.bay_eject
= bay_handle
&& bay_ej_handle
&&
1932 (strlencmp(bay_ej_path
, "_EJ0") == 0 || experimental
);
1933 tp_features
.bay_eject2
= bay2_handle
&& bay2_ej_handle
&&
1934 (strlencmp(bay2_ej_path
, "_EJ0") == 0 || experimental
);
1936 vdbg_printk(TPACPI_DBG_INIT
,
1937 "bay 1: status %s, eject %s; bay 2: status %s, eject %s\n",
1938 str_supported(tp_features
.bay_status
),
1939 str_supported(tp_features
.bay_eject
),
1940 str_supported(tp_features
.bay_status2
),
1941 str_supported(tp_features
.bay_eject2
));
1943 return (tp_features
.bay_status
|| tp_features
.bay_eject
||
1944 tp_features
.bay_status2
|| tp_features
.bay_eject2
)? 0 : 1;
1947 static void bay_notify(struct ibm_struct
*ibm
, u32 event
)
1949 acpi_bus_generate_event(ibm
->acpi
->device
, event
, 0);
1952 #define bay_occupied(b) (_sta(b##_handle) & 1)
1954 static int bay_read(char *p
)
1957 int occupied
= bay_occupied(bay
);
1958 int occupied2
= bay_occupied(bay2
);
1961 len
+= sprintf(p
+ len
, "status:\t\t%s\n",
1962 tp_features
.bay_status
?
1963 (occupied
? "occupied" : "unoccupied") :
1965 if (tp_features
.bay_status2
)
1966 len
+= sprintf(p
+ len
, "status2:\t%s\n", occupied2
?
1967 "occupied" : "unoccupied");
1969 eject
= tp_features
.bay_eject
&& occupied
;
1970 eject2
= tp_features
.bay_eject2
&& occupied2
;
1972 if (eject
&& eject2
)
1973 len
+= sprintf(p
+ len
, "commands:\teject, eject2\n");
1975 len
+= sprintf(p
+ len
, "commands:\teject\n");
1977 len
+= sprintf(p
+ len
, "commands:\teject2\n");
1982 static int bay_write(char *buf
)
1986 if (!tp_features
.bay_eject
&& !tp_features
.bay_eject2
)
1989 while ((cmd
= next_cmd(&buf
))) {
1990 if (tp_features
.bay_eject
&& strlencmp(cmd
, "eject") == 0) {
1991 if (!acpi_evalf(bay_ej_handle
, NULL
, NULL
, "vd", 1))
1993 } else if (tp_features
.bay_eject2
&&
1994 strlencmp(cmd
, "eject2") == 0) {
1995 if (!acpi_evalf(bay2_ej_handle
, NULL
, NULL
, "vd", 1))
2004 static struct tp_acpi_drv_struct ibm_bay_acpidriver
= {
2005 .notify
= bay_notify
,
2006 .handle
= &bay_handle
,
2007 .type
= ACPI_SYSTEM_NOTIFY
,
2010 static struct ibm_struct bay_driver_data
= {
2014 .acpi
= &ibm_bay_acpidriver
,
2017 #endif /* CONFIG_THINKPAD_ACPI_BAY */
2019 /*************************************************************************
2023 /* sysfs cmos_command -------------------------------------------------- */
2024 static ssize_t
cmos_command_store(struct device
*dev
,
2025 struct device_attribute
*attr
,
2026 const char *buf
, size_t count
)
2028 unsigned long cmos_cmd
;
2031 if (parse_strtoul(buf
, 21, &cmos_cmd
))
2034 res
= issue_thinkpad_cmos_command(cmos_cmd
);
2035 return (res
)? res
: count
;
2038 static struct device_attribute dev_attr_cmos_command
=
2039 __ATTR(cmos_command
, S_IWUSR
, NULL
, cmos_command_store
);
2041 /* --------------------------------------------------------------------- */
2043 static int __init
cmos_init(struct ibm_init_struct
*iibm
)
2047 vdbg_printk(TPACPI_DBG_INIT
,
2048 "initializing cmos commands subdriver\n");
2050 IBM_ACPIHANDLE_INIT(cmos
);
2052 vdbg_printk(TPACPI_DBG_INIT
, "cmos commands are %s\n",
2053 str_supported(cmos_handle
!= NULL
));
2055 res
= device_create_file(&tpacpi_pdev
->dev
, &dev_attr_cmos_command
);
2059 return (cmos_handle
)? 0 : 1;
2062 static void cmos_exit(void)
2064 device_remove_file(&tpacpi_pdev
->dev
, &dev_attr_cmos_command
);
2067 static int cmos_read(char *p
)
2071 /* cmos not supported on 570, 600e/x, 770e, 770x, A21e, A2xm/p,
2072 R30, R31, T20-22, X20-21 */
2074 len
+= sprintf(p
+ len
, "status:\t\tnot supported\n");
2076 len
+= sprintf(p
+ len
, "status:\t\tsupported\n");
2077 len
+= sprintf(p
+ len
, "commands:\t<cmd> (<cmd> is 0-21)\n");
2083 static int cmos_write(char *buf
)
2088 while ((cmd
= next_cmd(&buf
))) {
2089 if (sscanf(cmd
, "%u", &cmos_cmd
) == 1 &&
2090 cmos_cmd
>= 0 && cmos_cmd
<= 21) {
2095 res
= issue_thinkpad_cmos_command(cmos_cmd
);
2103 static struct ibm_struct cmos_driver_data
= {
2106 .write
= cmos_write
,
2110 /*************************************************************************
2114 static enum led_access_mode led_supported
;
2116 IBM_HANDLE(led
, ec
, "SLED", /* 570 */
2117 "SYSL", /* 600e/x, 770e, 770x, A21e, A2xm/p, T20-22, X20-21 */
2118 "LED", /* all others */
2121 static int __init
led_init(struct ibm_init_struct
*iibm
)
2123 vdbg_printk(TPACPI_DBG_INIT
, "initializing LED subdriver\n");
2125 IBM_ACPIHANDLE_INIT(led
);
2128 /* led not supported on R30, R31 */
2129 led_supported
= TPACPI_LED_NONE
;
2130 else if (strlencmp(led_path
, "SLED") == 0)
2132 led_supported
= TPACPI_LED_570
;
2133 else if (strlencmp(led_path
, "SYSL") == 0)
2134 /* 600e/x, 770e, 770x, A21e, A2xm/p, T20-22, X20-21 */
2135 led_supported
= TPACPI_LED_OLD
;
2138 led_supported
= TPACPI_LED_NEW
;
2140 vdbg_printk(TPACPI_DBG_INIT
, "LED commands are %s, mode %d\n",
2141 str_supported(led_supported
), led_supported
);
2143 return (led_supported
!= TPACPI_LED_NONE
)? 0 : 1;
2146 #define led_status(s) ((s) == 0 ? "off" : ((s) == 1 ? "on" : "blinking"))
2148 static int led_read(char *p
)
2152 if (!led_supported
) {
2153 len
+= sprintf(p
+ len
, "status:\t\tnot supported\n");
2156 len
+= sprintf(p
+ len
, "status:\t\tsupported\n");
2158 if (led_supported
== TPACPI_LED_570
) {
2161 for (i
= 0; i
< 8; i
++) {
2162 if (!acpi_evalf(ec_handle
,
2163 &status
, "GLED", "dd", 1 << i
))
2165 len
+= sprintf(p
+ len
, "%d:\t\t%s\n",
2166 i
, led_status(status
));
2170 len
+= sprintf(p
+ len
, "commands:\t"
2171 "<led> on, <led> off, <led> blink (<led> is 0-7)\n");
2176 /* off, on, blink */
2177 static const int led_sled_arg1
[] = { 0, 1, 3 };
2178 static const int led_exp_hlbl
[] = { 0, 0, 1 }; /* led# * */
2179 static const int led_exp_hlcl
[] = { 0, 1, 1 }; /* led# * */
2180 static const int led_led_arg1
[] = { 0, 0x80, 0xc0 };
2182 static int led_write(char *buf
)
2190 while ((cmd
= next_cmd(&buf
))) {
2191 if (sscanf(cmd
, "%d", &led
) != 1 || led
< 0 || led
> 7)
2194 if (strstr(cmd
, "off")) {
2196 } else if (strstr(cmd
, "on")) {
2198 } else if (strstr(cmd
, "blink")) {
2203 if (led_supported
== TPACPI_LED_570
) {
2206 if (!acpi_evalf(led_handle
, NULL
, NULL
, "vdd",
2207 led
, led_sled_arg1
[ind
]))
2209 } else if (led_supported
== TPACPI_LED_OLD
) {
2210 /* 600e/x, 770e, 770x, A21e, A2xm/p, T20-22, X20 */
2212 ret
= ec_write(TPACPI_LED_EC_HLMS
, led
);
2215 ec_write(TPACPI_LED_EC_HLBL
,
2216 led
* led_exp_hlbl
[ind
]);
2219 ec_write(TPACPI_LED_EC_HLCL
,
2220 led
* led_exp_hlcl
[ind
]);
2225 if (!acpi_evalf(led_handle
, NULL
, NULL
, "vdd",
2226 led
, led_led_arg1
[ind
]))
2234 static struct ibm_struct led_driver_data
= {
2240 /*************************************************************************
2244 IBM_HANDLE(beep
, ec
, "BEEP"); /* all except R30, R31 */
2246 static int __init
beep_init(struct ibm_init_struct
*iibm
)
2248 vdbg_printk(TPACPI_DBG_INIT
, "initializing beep subdriver\n");
2250 IBM_ACPIHANDLE_INIT(beep
);
2252 vdbg_printk(TPACPI_DBG_INIT
, "beep is %s\n",
2253 str_supported(beep_handle
!= NULL
));
2255 return (beep_handle
)? 0 : 1;
2258 static int beep_read(char *p
)
2263 len
+= sprintf(p
+ len
, "status:\t\tnot supported\n");
2265 len
+= sprintf(p
+ len
, "status:\t\tsupported\n");
2266 len
+= sprintf(p
+ len
, "commands:\t<cmd> (<cmd> is 0-17)\n");
2272 static int beep_write(char *buf
)
2280 while ((cmd
= next_cmd(&buf
))) {
2281 if (sscanf(cmd
, "%u", &beep_cmd
) == 1 &&
2282 beep_cmd
>= 0 && beep_cmd
<= 17) {
2286 if (!acpi_evalf(beep_handle
, NULL
, NULL
, "vdd", beep_cmd
, 0))
2293 static struct ibm_struct beep_driver_data
= {
2296 .write
= beep_write
,
2299 /*************************************************************************
2303 static enum thermal_access_mode thermal_read_mode
;
2305 /* sysfs temp##_input -------------------------------------------------- */
2307 static ssize_t
thermal_temp_input_show(struct device
*dev
,
2308 struct device_attribute
*attr
,
2311 struct sensor_device_attribute
*sensor_attr
=
2312 to_sensor_dev_attr(attr
);
2313 int idx
= sensor_attr
->index
;
2317 res
= thermal_get_sensor(idx
, &value
);
2320 if (value
== TP_EC_THERMAL_TMP_NA
* 1000)
2323 return snprintf(buf
, PAGE_SIZE
, "%d\n", value
);
2326 #define THERMAL_SENSOR_ATTR_TEMP(_idxA, _idxB) \
2327 SENSOR_ATTR(temp##_idxA##_input, S_IRUGO, thermal_temp_input_show, NULL, _idxB)
2329 static struct sensor_device_attribute sensor_dev_attr_thermal_temp_input
[] = {
2330 THERMAL_SENSOR_ATTR_TEMP(1, 0),
2331 THERMAL_SENSOR_ATTR_TEMP(2, 1),
2332 THERMAL_SENSOR_ATTR_TEMP(3, 2),
2333 THERMAL_SENSOR_ATTR_TEMP(4, 3),
2334 THERMAL_SENSOR_ATTR_TEMP(5, 4),
2335 THERMAL_SENSOR_ATTR_TEMP(6, 5),
2336 THERMAL_SENSOR_ATTR_TEMP(7, 6),
2337 THERMAL_SENSOR_ATTR_TEMP(8, 7),
2338 THERMAL_SENSOR_ATTR_TEMP(9, 8),
2339 THERMAL_SENSOR_ATTR_TEMP(10, 9),
2340 THERMAL_SENSOR_ATTR_TEMP(11, 10),
2341 THERMAL_SENSOR_ATTR_TEMP(12, 11),
2342 THERMAL_SENSOR_ATTR_TEMP(13, 12),
2343 THERMAL_SENSOR_ATTR_TEMP(14, 13),
2344 THERMAL_SENSOR_ATTR_TEMP(15, 14),
2345 THERMAL_SENSOR_ATTR_TEMP(16, 15),
2348 #define THERMAL_ATTRS(X) \
2349 &sensor_dev_attr_thermal_temp_input[X].dev_attr.attr
2351 static struct attribute
*thermal_temp_input_attr
[] = {
2371 static const struct attribute_group thermal_temp_input16_group
= {
2372 .attrs
= thermal_temp_input_attr
2375 static const struct attribute_group thermal_temp_input8_group
= {
2376 .attrs
= &thermal_temp_input_attr
[8]
2379 #undef THERMAL_SENSOR_ATTR_TEMP
2380 #undef THERMAL_ATTRS
2382 /* --------------------------------------------------------------------- */
2384 static int __init
thermal_init(struct ibm_init_struct
*iibm
)
2391 vdbg_printk(TPACPI_DBG_INIT
, "initializing thermal subdriver\n");
2393 acpi_tmp7
= acpi_evalf(ec_handle
, NULL
, "TMP7", "qv");
2395 if (ibm_thinkpad_ec_found
&& experimental
) {
2397 * Direct EC access mode: sensors at registers
2398 * 0x78-0x7F, 0xC0-0xC7. Registers return 0x00 for
2399 * non-implemented, thermal sensors return 0x80 when
2404 for (i
= 0; i
< 8; i
++) {
2405 if (acpi_ec_read(TP_EC_THERMAL_TMP0
+ i
, &t
)) {
2411 if (acpi_ec_read(TP_EC_THERMAL_TMP8
+ i
, &t
)) {
2419 /* This is sheer paranoia, but we handle it anyway */
2422 "ThinkPad ACPI EC access misbehaving, "
2423 "falling back to ACPI TMPx access mode\n");
2424 thermal_read_mode
= TPACPI_THERMAL_ACPI_TMP07
;
2427 "ThinkPad ACPI EC access misbehaving, "
2428 "disabling thermal sensors access\n");
2429 thermal_read_mode
= TPACPI_THERMAL_NONE
;
2434 TPACPI_THERMAL_TPEC_16
: TPACPI_THERMAL_TPEC_8
;
2436 } else if (acpi_tmp7
) {
2437 if (acpi_evalf(ec_handle
, NULL
, "UPDT", "qv")) {
2438 /* 600e/x, 770e, 770x */
2439 thermal_read_mode
= TPACPI_THERMAL_ACPI_UPDT
;
2441 /* Standard ACPI TMPx access, max 8 sensors */
2442 thermal_read_mode
= TPACPI_THERMAL_ACPI_TMP07
;
2445 /* temperatures not supported on 570, G4x, R30, R31, R32 */
2446 thermal_read_mode
= TPACPI_THERMAL_NONE
;
2449 vdbg_printk(TPACPI_DBG_INIT
, "thermal is %s, mode %d\n",
2450 str_supported(thermal_read_mode
!= TPACPI_THERMAL_NONE
),
2453 switch(thermal_read_mode
) {
2454 case TPACPI_THERMAL_TPEC_16
:
2455 res
= sysfs_create_group(&tpacpi_pdev
->dev
.kobj
,
2456 &thermal_temp_input16_group
);
2460 case TPACPI_THERMAL_TPEC_8
:
2461 case TPACPI_THERMAL_ACPI_TMP07
:
2462 case TPACPI_THERMAL_ACPI_UPDT
:
2463 res
= sysfs_create_group(&tpacpi_pdev
->dev
.kobj
,
2464 &thermal_temp_input8_group
);
2468 case TPACPI_THERMAL_NONE
:
2476 static void thermal_exit(void)
2478 switch(thermal_read_mode
) {
2479 case TPACPI_THERMAL_TPEC_16
:
2480 sysfs_remove_group(&tpacpi_pdev
->dev
.kobj
,
2481 &thermal_temp_input16_group
);
2483 case TPACPI_THERMAL_TPEC_8
:
2484 case TPACPI_THERMAL_ACPI_TMP07
:
2485 case TPACPI_THERMAL_ACPI_UPDT
:
2486 sysfs_remove_group(&tpacpi_pdev
->dev
.kobj
,
2487 &thermal_temp_input16_group
);
2489 case TPACPI_THERMAL_NONE
:
2495 /* idx is zero-based */
2496 static int thermal_get_sensor(int idx
, s32
*value
)
2502 t
= TP_EC_THERMAL_TMP0
;
2504 switch (thermal_read_mode
) {
2505 #if TPACPI_MAX_THERMAL_SENSORS >= 16
2506 case TPACPI_THERMAL_TPEC_16
:
2507 if (idx
>= 8 && idx
<= 15) {
2508 t
= TP_EC_THERMAL_TMP8
;
2513 case TPACPI_THERMAL_TPEC_8
:
2515 if (!acpi_ec_read(t
+ idx
, &tmp
))
2517 *value
= tmp
* 1000;
2522 case TPACPI_THERMAL_ACPI_UPDT
:
2524 snprintf(tmpi
, sizeof(tmpi
), "TMP%c", '0' + idx
);
2525 if (!acpi_evalf(ec_handle
, NULL
, "UPDT", "v"))
2527 if (!acpi_evalf(ec_handle
, &t
, tmpi
, "d"))
2529 *value
= (t
- 2732) * 100;
2534 case TPACPI_THERMAL_ACPI_TMP07
:
2536 snprintf(tmpi
, sizeof(tmpi
), "TMP%c", '0' + idx
);
2537 if (!acpi_evalf(ec_handle
, &t
, tmpi
, "d"))
2544 case TPACPI_THERMAL_NONE
:
2552 static int thermal_get_sensors(struct ibm_thermal_sensors_struct
*s
)
2563 if (thermal_read_mode
== TPACPI_THERMAL_TPEC_16
)
2566 for(i
= 0 ; i
< n
; i
++) {
2567 res
= thermal_get_sensor(i
, &s
->temp
[i
]);
2575 static int thermal_read(char *p
)
2579 struct ibm_thermal_sensors_struct t
;
2581 n
= thermal_get_sensors(&t
);
2582 if (unlikely(n
< 0))
2585 len
+= sprintf(p
+ len
, "temperatures:\t");
2588 for (i
= 0; i
< (n
- 1); i
++)
2589 len
+= sprintf(p
+ len
, "%d ", t
.temp
[i
] / 1000);
2590 len
+= sprintf(p
+ len
, "%d\n", t
.temp
[i
] / 1000);
2592 len
+= sprintf(p
+ len
, "not supported\n");
2597 static struct ibm_struct thermal_driver_data
= {
2599 .read
= thermal_read
,
2600 .exit
= thermal_exit
,
2603 /*************************************************************************
2607 static u8 ecdump_regs
[256];
2609 static int ecdump_read(char *p
)
2615 len
+= sprintf(p
+ len
, "EC "
2616 " +00 +01 +02 +03 +04 +05 +06 +07"
2617 " +08 +09 +0a +0b +0c +0d +0e +0f\n");
2618 for (i
= 0; i
< 256; i
+= 16) {
2619 len
+= sprintf(p
+ len
, "EC 0x%02x:", i
);
2620 for (j
= 0; j
< 16; j
++) {
2621 if (!acpi_ec_read(i
+ j
, &v
))
2623 if (v
!= ecdump_regs
[i
+ j
])
2624 len
+= sprintf(p
+ len
, " *%02x", v
);
2626 len
+= sprintf(p
+ len
, " %02x", v
);
2627 ecdump_regs
[i
+ j
] = v
;
2629 len
+= sprintf(p
+ len
, "\n");
2634 /* These are way too dangerous to advertise openly... */
2636 len
+= sprintf(p
+ len
, "commands:\t0x<offset> 0x<value>"
2637 " (<offset> is 00-ff, <value> is 00-ff)\n");
2638 len
+= sprintf(p
+ len
, "commands:\t0x<offset> <value> "
2639 " (<offset> is 00-ff, <value> is 0-255)\n");
2644 static int ecdump_write(char *buf
)
2649 while ((cmd
= next_cmd(&buf
))) {
2650 if (sscanf(cmd
, "0x%x 0x%x", &i
, &v
) == 2) {
2652 } else if (sscanf(cmd
, "0x%x %u", &i
, &v
) == 2) {
2656 if (i
>= 0 && i
< 256 && v
>= 0 && v
< 256) {
2657 if (!acpi_ec_write(i
, v
))
2666 static struct ibm_struct ecdump_driver_data
= {
2668 .read
= ecdump_read
,
2669 .write
= ecdump_write
,
2670 .flags
.experimental
= 1,
2673 /*************************************************************************
2674 * Backlight/brightness subdriver
2677 static struct backlight_device
*ibm_backlight_device
= NULL
;
2679 static struct backlight_ops ibm_backlight_data
= {
2680 .get_brightness
= brightness_get
,
2681 .update_status
= brightness_update_status
,
2684 static int __init
brightness_init(struct ibm_init_struct
*iibm
)
2688 vdbg_printk(TPACPI_DBG_INIT
, "initializing brightness subdriver\n");
2690 b
= brightness_get(NULL
);
2694 ibm_backlight_device
= backlight_device_register(
2695 TPACPI_BACKLIGHT_DEV_NAME
, NULL
, NULL
,
2696 &ibm_backlight_data
);
2697 if (IS_ERR(ibm_backlight_device
)) {
2698 printk(IBM_ERR
"Could not register backlight device\n");
2699 return PTR_ERR(ibm_backlight_device
);
2701 vdbg_printk(TPACPI_DBG_INIT
, "brightness is supported\n");
2703 ibm_backlight_device
->props
.max_brightness
= 7;
2704 ibm_backlight_device
->props
.brightness
= b
;
2705 backlight_update_status(ibm_backlight_device
);
2710 static void brightness_exit(void)
2712 if (ibm_backlight_device
) {
2713 vdbg_printk(TPACPI_DBG_EXIT
,
2714 "calling backlight_device_unregister()\n");
2715 backlight_device_unregister(ibm_backlight_device
);
2716 ibm_backlight_device
= NULL
;
2720 static int brightness_update_status(struct backlight_device
*bd
)
2722 return brightness_set(
2723 (bd
->props
.fb_blank
== FB_BLANK_UNBLANK
&&
2724 bd
->props
.power
== FB_BLANK_UNBLANK
) ?
2725 bd
->props
.brightness
: 0);
2728 static int brightness_get(struct backlight_device
*bd
)
2731 if (!acpi_ec_read(brightness_offset
, &level
))
2739 static int brightness_set(int value
)
2741 int cmos_cmd
, inc
, i
;
2742 int current_value
= brightness_get(NULL
);
2746 cmos_cmd
= value
> current_value
? TP_CMOS_BRIGHTNESS_UP
: TP_CMOS_BRIGHTNESS_DOWN
;
2747 inc
= value
> current_value
? 1 : -1;
2748 for (i
= current_value
; i
!= value
; i
+= inc
) {
2749 if (issue_thinkpad_cmos_command(cmos_cmd
))
2751 if (!acpi_ec_write(brightness_offset
, i
+ inc
))
2758 static int brightness_read(char *p
)
2763 if ((level
= brightness_get(NULL
)) < 0) {
2764 len
+= sprintf(p
+ len
, "level:\t\tunreadable\n");
2766 len
+= sprintf(p
+ len
, "level:\t\t%d\n", level
& 0x7);
2767 len
+= sprintf(p
+ len
, "commands:\tup, down\n");
2768 len
+= sprintf(p
+ len
, "commands:\tlevel <level>"
2769 " (<level> is 0-7)\n");
2775 static int brightness_write(char *buf
)
2781 while ((cmd
= next_cmd(&buf
))) {
2782 if ((level
= brightness_get(NULL
)) < 0)
2786 if (strlencmp(cmd
, "up") == 0) {
2787 new_level
= level
== 7 ? 7 : level
+ 1;
2788 } else if (strlencmp(cmd
, "down") == 0) {
2789 new_level
= level
== 0 ? 0 : level
- 1;
2790 } else if (sscanf(cmd
, "level %d", &new_level
) == 1 &&
2791 new_level
>= 0 && new_level
<= 7) {
2796 brightness_set(new_level
);
2802 static struct ibm_struct brightness_driver_data
= {
2803 .name
= "brightness",
2804 .read
= brightness_read
,
2805 .write
= brightness_write
,
2806 .exit
= brightness_exit
,
2809 /*************************************************************************
2813 static int volume_read(char *p
)
2818 if (!acpi_ec_read(volume_offset
, &level
)) {
2819 len
+= sprintf(p
+ len
, "level:\t\tunreadable\n");
2821 len
+= sprintf(p
+ len
, "level:\t\t%d\n", level
& 0xf);
2822 len
+= sprintf(p
+ len
, "mute:\t\t%s\n", onoff(level
, 6));
2823 len
+= sprintf(p
+ len
, "commands:\tup, down, mute\n");
2824 len
+= sprintf(p
+ len
, "commands:\tlevel <level>"
2825 " (<level> is 0-15)\n");
2831 static int volume_write(char *buf
)
2833 int cmos_cmd
, inc
, i
;
2835 int new_level
, new_mute
;
2838 while ((cmd
= next_cmd(&buf
))) {
2839 if (!acpi_ec_read(volume_offset
, &level
))
2841 new_mute
= mute
= level
& 0x40;
2842 new_level
= level
= level
& 0xf;
2844 if (strlencmp(cmd
, "up") == 0) {
2848 new_level
= level
== 15 ? 15 : level
+ 1;
2849 } else if (strlencmp(cmd
, "down") == 0) {
2853 new_level
= level
== 0 ? 0 : level
- 1;
2854 } else if (sscanf(cmd
, "level %d", &new_level
) == 1 &&
2855 new_level
>= 0 && new_level
<= 15) {
2857 } else if (strlencmp(cmd
, "mute") == 0) {
2862 if (new_level
!= level
) { /* mute doesn't change */
2863 cmos_cmd
= new_level
> level
? TP_CMOS_VOLUME_UP
: TP_CMOS_VOLUME_DOWN
;
2864 inc
= new_level
> level
? 1 : -1;
2866 if (mute
&& (issue_thinkpad_cmos_command(cmos_cmd
) ||
2867 !acpi_ec_write(volume_offset
, level
)))
2870 for (i
= level
; i
!= new_level
; i
+= inc
)
2871 if (issue_thinkpad_cmos_command(cmos_cmd
) ||
2872 !acpi_ec_write(volume_offset
, i
+ inc
))
2875 if (mute
&& (issue_thinkpad_cmos_command(TP_CMOS_VOLUME_MUTE
) ||
2876 !acpi_ec_write(volume_offset
,
2881 if (new_mute
!= mute
) { /* level doesn't change */
2882 cmos_cmd
= new_mute
? TP_CMOS_VOLUME_MUTE
: TP_CMOS_VOLUME_UP
;
2884 if (issue_thinkpad_cmos_command(cmos_cmd
) ||
2885 !acpi_ec_write(volume_offset
, level
+ new_mute
))
2893 static struct ibm_struct volume_driver_data
= {
2895 .read
= volume_read
,
2896 .write
= volume_write
,
2899 /*************************************************************************
2906 * TPACPI_FAN_RD_ACPI_GFAN:
2907 * ACPI GFAN method: returns fan level
2909 * see TPACPI_FAN_WR_ACPI_SFAN
2910 * EC 0x2f (HFSP) not available if GFAN exists
2912 * TPACPI_FAN_WR_ACPI_SFAN:
2913 * ACPI SFAN method: sets fan level, 0 (stop) to 7 (max)
2915 * EC 0x2f (HFSP) might be available *for reading*, but do not use
2918 * TPACPI_FAN_WR_TPEC:
2919 * ThinkPad EC register 0x2f (HFSP): fan control loop mode
2920 * Supported on almost all ThinkPads
2922 * Fan speed changes of any sort (including those caused by the
2923 * disengaged mode) are usually done slowly by the firmware as the
2924 * maximum ammount of fan duty cycle change per second seems to be
2927 * Reading is not available if GFAN exists.
2928 * Writing is not available if SFAN exists.
2931 * 7 automatic mode engaged;
2932 * (default operation mode of the ThinkPad)
2933 * fan level is ignored in this mode.
2934 * 6 full speed mode (takes precedence over bit 7);
2935 * not available on all thinkpads. May disable
2936 * the tachometer while the fan controller ramps up
2937 * the speed (which can take up to a few *minutes*).
2938 * Speeds up fan to 100% duty-cycle, which is far above
2939 * the standard RPM levels. It is not impossible that
2940 * it could cause hardware damage.
2941 * 5-3 unused in some models. Extra bits for fan level
2942 * in others, but still useless as all values above
2943 * 7 map to the same speed as level 7 in these models.
2944 * 2-0 fan level (0..7 usually)
2946 * 0x07 = max (set when temperatures critical)
2947 * Some ThinkPads may have other levels, see
2948 * TPACPI_FAN_WR_ACPI_FANS (X31/X40/X41)
2950 * FIRMWARE BUG: on some models, EC 0x2f might not be initialized at
2951 * boot. Apparently the EC does not intialize it, so unless ACPI DSDT
2952 * does so, its initial value is meaningless (0x07).
2954 * For firmware bugs, refer to:
2955 * http://thinkwiki.org/wiki/Embedded_Controller_Firmware#Firmware_Issues
2959 * ThinkPad EC register 0x84 (LSB), 0x85 (MSB):
2960 * Main fan tachometer reading (in RPM)
2962 * This register is present on all ThinkPads with a new-style EC, and
2963 * it is known not to be present on the A21m/e, and T22, as there is
2964 * something else in offset 0x84 according to the ACPI DSDT. Other
2965 * ThinkPads from this same time period (and earlier) probably lack the
2966 * tachometer as well.
2968 * Unfortunately a lot of ThinkPads with new-style ECs but whose firwmare
2969 * was never fixed by IBM to report the EC firmware version string
2970 * probably support the tachometer (like the early X models), so
2971 * detecting it is quite hard. We need more data to know for sure.
2973 * FIRMWARE BUG: always read 0x84 first, otherwise incorrect readings
2976 * FIRMWARE BUG: may go stale while the EC is switching to full speed
2979 * For firmware bugs, refer to:
2980 * http://thinkwiki.org/wiki/Embedded_Controller_Firmware#Firmware_Issues
2982 * TPACPI_FAN_WR_ACPI_FANS:
2983 * ThinkPad X31, X40, X41. Not available in the X60.
2985 * FANS ACPI handle: takes three arguments: low speed, medium speed,
2986 * high speed. ACPI DSDT seems to map these three speeds to levels
2987 * as follows: STOP LOW LOW MED MED HIGH HIGH HIGH HIGH
2988 * (this map is stored on FAN0..FAN8 as "0,1,1,2,2,3,3,3,3")
2990 * The speeds are stored on handles
2991 * (FANA:FAN9), (FANC:FANB), (FANE:FAND).
2993 * There are three default speed sets, acessible as handles:
2994 * FS1L,FS1M,FS1H; FS2L,FS2M,FS2H; FS3L,FS3M,FS3H
2996 * ACPI DSDT switches which set is in use depending on various
2999 * TPACPI_FAN_WR_TPEC is also available and should be used to
3000 * command the fan. The X31/X40/X41 seems to have 8 fan levels,
3001 * but the ACPI tables just mention level 7.
3004 static enum fan_status_access_mode fan_status_access_mode
;
3005 static enum fan_control_access_mode fan_control_access_mode
;
3006 static enum fan_control_commands fan_control_commands
;
3008 static u8 fan_control_initial_status
;
3009 static u8 fan_control_desired_level
;
3011 static void fan_watchdog_fire(struct work_struct
*ignored
);
3012 static int fan_watchdog_maxinterval
;
3013 static DECLARE_DELAYED_WORK(fan_watchdog_task
, fan_watchdog_fire
);
3015 IBM_HANDLE(fans
, ec
, "FANS"); /* X31, X40, X41 */
3016 IBM_HANDLE(gfan
, ec
, "GFAN", /* 570 */
3017 "\\FSPD", /* 600e/x, 770e, 770x */
3019 IBM_HANDLE(sfan
, ec
, "SFAN", /* 570 */
3020 "JFNS", /* 770x-JL */
3024 * SYSFS fan layout: hwmon compatible (device)
3027 * 0: "disengaged" mode
3029 * 2: native EC "auto" mode (recommended, hardware default)
3031 * pwm*: set speed in manual mode, ignored otherwise.
3032 * 0 is level 0; 255 is level 7. Intermediate points done with linear
3035 * fan*_input: tachometer reading, RPM
3038 * SYSFS fan layout: extensions
3040 * fan_watchdog (driver):
3041 * fan watchdog interval in seconds, 0 disables (default), max 120
3044 /* sysfs fan pwm1_enable ----------------------------------------------- */
3045 static ssize_t
fan_pwm1_enable_show(struct device
*dev
,
3046 struct device_attribute
*attr
,
3052 res
= fan_get_status_safe(&status
);
3056 if (unlikely(tp_features
.fan_ctrl_status_undef
)) {
3057 if (status
!= fan_control_initial_status
) {
3058 tp_features
.fan_ctrl_status_undef
= 0;
3060 /* Return most likely status. In fact, it
3061 * might be the only possible status */
3062 status
= TP_EC_FAN_AUTO
;
3066 if (status
& TP_EC_FAN_FULLSPEED
) {
3068 } else if (status
& TP_EC_FAN_AUTO
) {
3073 return snprintf(buf
, PAGE_SIZE
, "%d\n", mode
);
3076 static ssize_t
fan_pwm1_enable_store(struct device
*dev
,
3077 struct device_attribute
*attr
,
3078 const char *buf
, size_t count
)
3083 if (parse_strtoul(buf
, 2, &t
))
3088 level
= TP_EC_FAN_FULLSPEED
;
3091 level
= TPACPI_FAN_LAST_LEVEL
;
3094 level
= TP_EC_FAN_AUTO
;
3097 /* reserved for software-controlled auto mode */
3103 res
= fan_set_level_safe(level
);
3109 fan_watchdog_reset();
3114 static struct device_attribute dev_attr_fan_pwm1_enable
=
3115 __ATTR(pwm1_enable
, S_IWUSR
| S_IRUGO
,
3116 fan_pwm1_enable_show
, fan_pwm1_enable_store
);
3118 /* sysfs fan pwm1 ------------------------------------------------------ */
3119 static ssize_t
fan_pwm1_show(struct device
*dev
,
3120 struct device_attribute
*attr
,
3126 res
= fan_get_status_safe(&status
);
3130 if (unlikely(tp_features
.fan_ctrl_status_undef
)) {
3131 if (status
!= fan_control_initial_status
) {
3132 tp_features
.fan_ctrl_status_undef
= 0;
3134 status
= TP_EC_FAN_AUTO
;
3139 (TP_EC_FAN_AUTO
| TP_EC_FAN_FULLSPEED
)) != 0)
3140 status
= fan_control_desired_level
;
3145 return snprintf(buf
, PAGE_SIZE
, "%u\n", (status
* 255) / 7);
3148 static ssize_t
fan_pwm1_store(struct device
*dev
,
3149 struct device_attribute
*attr
,
3150 const char *buf
, size_t count
)
3154 u8 status
, newlevel
;
3156 if (parse_strtoul(buf
, 255, &s
))
3159 /* scale down from 0-255 to 0-7 */
3160 newlevel
= (s
>> 5) & 0x07;
3162 rc
= mutex_lock_interruptible(&fan_mutex
);
3166 rc
= fan_get_status(&status
);
3167 if (!rc
&& (status
&
3168 (TP_EC_FAN_AUTO
| TP_EC_FAN_FULLSPEED
)) == 0) {
3169 rc
= fan_set_level(newlevel
);
3173 fan_update_desired_level(newlevel
);
3174 fan_watchdog_reset();
3178 mutex_unlock(&fan_mutex
);
3179 return (rc
)? rc
: count
;
3182 static struct device_attribute dev_attr_fan_pwm1
=
3183 __ATTR(pwm1
, S_IWUSR
| S_IRUGO
,
3184 fan_pwm1_show
, fan_pwm1_store
);
3186 /* sysfs fan fan1_input ------------------------------------------------ */
3187 static ssize_t
fan_fan1_input_show(struct device
*dev
,
3188 struct device_attribute
*attr
,
3194 res
= fan_get_speed(&speed
);
3198 return snprintf(buf
, PAGE_SIZE
, "%u\n", speed
);
3201 static struct device_attribute dev_attr_fan_fan1_input
=
3202 __ATTR(fan1_input
, S_IRUGO
,
3203 fan_fan1_input_show
, NULL
);
3205 /* sysfs fan fan_watchdog (driver) ------------------------------------- */
3206 static ssize_t
fan_fan_watchdog_show(struct device_driver
*drv
,
3209 return snprintf(buf
, PAGE_SIZE
, "%u\n", fan_watchdog_maxinterval
);
3212 static ssize_t
fan_fan_watchdog_store(struct device_driver
*drv
,
3213 const char *buf
, size_t count
)
3217 if (parse_strtoul(buf
, 120, &t
))
3220 if (!fan_control_allowed
)
3223 fan_watchdog_maxinterval
= t
;
3224 fan_watchdog_reset();
3229 static DRIVER_ATTR(fan_watchdog
, S_IWUSR
| S_IRUGO
,
3230 fan_fan_watchdog_show
, fan_fan_watchdog_store
);
3232 /* --------------------------------------------------------------------- */
3233 static struct attribute
*fan_attributes
[] = {
3234 &dev_attr_fan_pwm1_enable
.attr
, &dev_attr_fan_pwm1
.attr
,
3235 &dev_attr_fan_fan1_input
.attr
,
3239 static const struct attribute_group fan_attr_group
= {
3240 .attrs
= fan_attributes
,
3243 static int __init
fan_init(struct ibm_init_struct
*iibm
)
3247 vdbg_printk(TPACPI_DBG_INIT
, "initializing fan subdriver\n");
3249 mutex_init(&fan_mutex
);
3250 fan_status_access_mode
= TPACPI_FAN_NONE
;
3251 fan_control_access_mode
= TPACPI_FAN_WR_NONE
;
3252 fan_control_commands
= 0;
3253 fan_watchdog_maxinterval
= 0;
3254 tp_features
.fan_ctrl_status_undef
= 0;
3255 fan_control_desired_level
= 7;
3257 IBM_ACPIHANDLE_INIT(fans
);
3258 IBM_ACPIHANDLE_INIT(gfan
);
3259 IBM_ACPIHANDLE_INIT(sfan
);
3262 /* 570, 600e/x, 770e, 770x */
3263 fan_status_access_mode
= TPACPI_FAN_RD_ACPI_GFAN
;
3265 /* all other ThinkPads: note that even old-style
3266 * ThinkPad ECs supports the fan control register */
3267 if (likely(acpi_ec_read(fan_status_offset
,
3268 &fan_control_initial_status
))) {
3269 fan_status_access_mode
= TPACPI_FAN_RD_TPEC
;
3271 /* In some ThinkPads, neither the EC nor the ACPI
3272 * DSDT initialize the fan status, and it ends up
3273 * being set to 0x07 when it *could* be either
3276 * Enable for TP-1Y (T43), TP-78 (R51e),
3277 * TP-76 (R52), TP-70 (T43, R52), which are known
3279 if (fan_control_initial_status
== 0x07 &&
3280 ibm_thinkpad_ec_found
&&
3281 ((ibm_thinkpad_ec_found
[0] == '1' &&
3282 ibm_thinkpad_ec_found
[1] == 'Y') ||
3283 (ibm_thinkpad_ec_found
[0] == '7' &&
3284 (ibm_thinkpad_ec_found
[1] == '6' ||
3285 ibm_thinkpad_ec_found
[1] == '8' ||
3286 ibm_thinkpad_ec_found
[1] == '0'))
3289 "fan_init: initial fan status is "
3290 "unknown, assuming it is in auto "
3292 tp_features
.fan_ctrl_status_undef
= 1;
3296 "ThinkPad ACPI EC access misbehaving, "
3297 "fan status and control unavailable\n");
3304 fan_control_access_mode
= TPACPI_FAN_WR_ACPI_SFAN
;
3305 fan_control_commands
|=
3306 TPACPI_FAN_CMD_LEVEL
| TPACPI_FAN_CMD_ENABLE
;
3309 /* gfan without sfan means no fan control */
3310 /* all other models implement TP EC 0x2f control */
3314 fan_control_access_mode
=
3315 TPACPI_FAN_WR_ACPI_FANS
;
3316 fan_control_commands
|=
3317 TPACPI_FAN_CMD_SPEED
|
3318 TPACPI_FAN_CMD_LEVEL
|
3319 TPACPI_FAN_CMD_ENABLE
;
3321 fan_control_access_mode
= TPACPI_FAN_WR_TPEC
;
3322 fan_control_commands
|=
3323 TPACPI_FAN_CMD_LEVEL
|
3324 TPACPI_FAN_CMD_ENABLE
;
3329 vdbg_printk(TPACPI_DBG_INIT
, "fan is %s, modes %d, %d\n",
3330 str_supported(fan_status_access_mode
!= TPACPI_FAN_NONE
||
3331 fan_control_access_mode
!= TPACPI_FAN_WR_NONE
),
3332 fan_status_access_mode
, fan_control_access_mode
);
3334 /* fan control master switch */
3335 if (!fan_control_allowed
) {
3336 fan_control_access_mode
= TPACPI_FAN_WR_NONE
;
3337 fan_control_commands
= 0;
3338 dbg_printk(TPACPI_DBG_INIT
,
3339 "fan control features disabled by parameter\n");
3342 /* update fan_control_desired_level */
3343 if (fan_status_access_mode
!= TPACPI_FAN_NONE
)
3344 fan_get_status_safe(NULL
);
3346 if (fan_status_access_mode
!= TPACPI_FAN_NONE
||
3347 fan_control_access_mode
!= TPACPI_FAN_WR_NONE
) {
3348 rc
= sysfs_create_group(&tpacpi_pdev
->dev
.kobj
,
3351 rc
= driver_create_file(&tpacpi_pdriver
.driver
,
3352 &driver_attr_fan_watchdog
);
3361 * Call with fan_mutex held
3363 static void fan_update_desired_level(u8 status
)
3366 (TP_EC_FAN_AUTO
| TP_EC_FAN_FULLSPEED
)) == 0) {
3368 fan_control_desired_level
= 7;
3370 fan_control_desired_level
= status
;
3374 static int fan_get_status(u8
*status
)
3379 * Add TPACPI_FAN_RD_ACPI_FANS ? */
3381 switch (fan_status_access_mode
) {
3382 case TPACPI_FAN_RD_ACPI_GFAN
:
3383 /* 570, 600e/x, 770e, 770x */
3385 if (unlikely(!acpi_evalf(gfan_handle
, &s
, NULL
, "d")))
3393 case TPACPI_FAN_RD_TPEC
:
3394 /* all except 570, 600e/x, 770e, 770x */
3395 if (unlikely(!acpi_ec_read(fan_status_offset
, &s
)))
3410 static int fan_get_status_safe(u8
*status
)
3415 rc
= mutex_lock_interruptible(&fan_mutex
);
3418 rc
= fan_get_status(&s
);
3420 fan_update_desired_level(s
);
3421 mutex_unlock(&fan_mutex
);
3429 static void fan_exit(void)
3431 vdbg_printk(TPACPI_DBG_EXIT
, "cancelling any pending fan watchdog tasks\n");
3433 /* FIXME: can we really do this unconditionally? */
3434 sysfs_remove_group(&tpacpi_pdev
->dev
.kobj
, &fan_attr_group
);
3435 driver_remove_file(&tpacpi_pdriver
.driver
, &driver_attr_fan_watchdog
);
3437 cancel_delayed_work(&fan_watchdog_task
);
3438 flush_scheduled_work();
3441 static int fan_get_speed(unsigned int *speed
)
3445 switch (fan_status_access_mode
) {
3446 case TPACPI_FAN_RD_TPEC
:
3447 /* all except 570, 600e/x, 770e, 770x */
3448 if (unlikely(!acpi_ec_read(fan_rpm_offset
, &lo
) ||
3449 !acpi_ec_read(fan_rpm_offset
+ 1, &hi
)))
3453 *speed
= (hi
<< 8) | lo
;
3464 static void fan_watchdog_fire(struct work_struct
*ignored
)
3468 printk(IBM_NOTICE
"fan watchdog: enabling fan\n");
3469 rc
= fan_set_enable();
3471 printk(IBM_ERR
"fan watchdog: error %d while enabling fan, "
3472 "will try again later...\n", -rc
);
3473 /* reschedule for later */
3474 fan_watchdog_reset();
3478 static void fan_watchdog_reset(void)
3480 static int fan_watchdog_active
= 0;
3482 if (fan_control_access_mode
== TPACPI_FAN_WR_NONE
)
3485 if (fan_watchdog_active
)
3486 cancel_delayed_work(&fan_watchdog_task
);
3488 if (fan_watchdog_maxinterval
> 0) {
3489 fan_watchdog_active
= 1;
3490 if (!schedule_delayed_work(&fan_watchdog_task
,
3491 msecs_to_jiffies(fan_watchdog_maxinterval
3493 printk(IBM_ERR
"failed to schedule the fan watchdog, "
3494 "watchdog will not trigger\n");
3497 fan_watchdog_active
= 0;
3500 static int fan_set_level(int level
)
3502 if (!fan_control_allowed
)
3505 switch (fan_control_access_mode
) {
3506 case TPACPI_FAN_WR_ACPI_SFAN
:
3507 if (level
>= 0 && level
<= 7) {
3508 if (!acpi_evalf(sfan_handle
, NULL
, NULL
, "vd", level
))
3514 case TPACPI_FAN_WR_ACPI_FANS
:
3515 case TPACPI_FAN_WR_TPEC
:
3516 if ((level
!= TP_EC_FAN_AUTO
) &&
3517 (level
!= TP_EC_FAN_FULLSPEED
) &&
3518 ((level
< 0) || (level
> 7)))
3521 /* safety net should the EC not support AUTO
3522 * or FULLSPEED mode bits and just ignore them */
3523 if (level
& TP_EC_FAN_FULLSPEED
)
3524 level
|= 7; /* safety min speed 7 */
3525 else if (level
& TP_EC_FAN_FULLSPEED
)
3526 level
|= 4; /* safety min speed 4 */
3528 if (!acpi_ec_write(fan_status_offset
, level
))
3531 tp_features
.fan_ctrl_status_undef
= 0;
3540 static int fan_set_level_safe(int level
)
3544 if (!fan_control_allowed
)
3547 rc
= mutex_lock_interruptible(&fan_mutex
);
3551 if (level
== TPACPI_FAN_LAST_LEVEL
)
3552 level
= fan_control_desired_level
;
3554 rc
= fan_set_level(level
);
3556 fan_update_desired_level(level
);
3558 mutex_unlock(&fan_mutex
);
3562 static int fan_set_enable(void)
3567 if (!fan_control_allowed
)
3570 rc
= mutex_lock_interruptible(&fan_mutex
);
3574 switch (fan_control_access_mode
) {
3575 case TPACPI_FAN_WR_ACPI_FANS
:
3576 case TPACPI_FAN_WR_TPEC
:
3577 rc
= fan_get_status(&s
);
3581 /* Don't go out of emergency fan mode */
3584 s
|= TP_EC_FAN_AUTO
| 4; /* min fan speed 4 */
3587 if (!acpi_ec_write(fan_status_offset
, s
))
3590 tp_features
.fan_ctrl_status_undef
= 0;
3595 case TPACPI_FAN_WR_ACPI_SFAN
:
3596 rc
= fan_get_status(&s
);
3602 /* Set fan to at least level 4 */
3605 if (!acpi_evalf(sfan_handle
, NULL
, NULL
, "vd", s
))
3615 mutex_unlock(&fan_mutex
);
3619 static int fan_set_disable(void)
3623 if (!fan_control_allowed
)
3626 rc
= mutex_lock_interruptible(&fan_mutex
);
3631 switch (fan_control_access_mode
) {
3632 case TPACPI_FAN_WR_ACPI_FANS
:
3633 case TPACPI_FAN_WR_TPEC
:
3634 if (!acpi_ec_write(fan_status_offset
, 0x00))
3637 fan_control_desired_level
= 0;
3638 tp_features
.fan_ctrl_status_undef
= 0;
3642 case TPACPI_FAN_WR_ACPI_SFAN
:
3643 if (!acpi_evalf(sfan_handle
, NULL
, NULL
, "vd", 0x00))
3646 fan_control_desired_level
= 0;
3654 mutex_unlock(&fan_mutex
);
3658 static int fan_set_speed(int speed
)
3662 if (!fan_control_allowed
)
3665 rc
= mutex_lock_interruptible(&fan_mutex
);
3670 switch (fan_control_access_mode
) {
3671 case TPACPI_FAN_WR_ACPI_FANS
:
3672 if (speed
>= 0 && speed
<= 65535) {
3673 if (!acpi_evalf(fans_handle
, NULL
, NULL
, "vddd",
3674 speed
, speed
, speed
))
3684 mutex_unlock(&fan_mutex
);
3688 static int fan_read(char *p
)
3693 unsigned int speed
= 0;
3695 switch (fan_status_access_mode
) {
3696 case TPACPI_FAN_RD_ACPI_GFAN
:
3697 /* 570, 600e/x, 770e, 770x */
3698 if ((rc
= fan_get_status_safe(&status
)) < 0)
3701 len
+= sprintf(p
+ len
, "status:\t\t%s\n"
3703 (status
!= 0) ? "enabled" : "disabled", status
);
3706 case TPACPI_FAN_RD_TPEC
:
3707 /* all except 570, 600e/x, 770e, 770x */
3708 if ((rc
= fan_get_status_safe(&status
)) < 0)
3711 if (unlikely(tp_features
.fan_ctrl_status_undef
)) {
3712 if (status
!= fan_control_initial_status
)
3713 tp_features
.fan_ctrl_status_undef
= 0;
3715 /* Return most likely status. In fact, it
3716 * might be the only possible status */
3717 status
= TP_EC_FAN_AUTO
;
3720 len
+= sprintf(p
+ len
, "status:\t\t%s\n",
3721 (status
!= 0) ? "enabled" : "disabled");
3723 if ((rc
= fan_get_speed(&speed
)) < 0)
3726 len
+= sprintf(p
+ len
, "speed:\t\t%d\n", speed
);
3728 if (status
& TP_EC_FAN_FULLSPEED
)
3729 /* Disengaged mode takes precedence */
3730 len
+= sprintf(p
+ len
, "level:\t\tdisengaged\n");
3731 else if (status
& TP_EC_FAN_AUTO
)
3732 len
+= sprintf(p
+ len
, "level:\t\tauto\n");
3734 len
+= sprintf(p
+ len
, "level:\t\t%d\n", status
);
3737 case TPACPI_FAN_NONE
:
3739 len
+= sprintf(p
+ len
, "status:\t\tnot supported\n");
3742 if (fan_control_commands
& TPACPI_FAN_CMD_LEVEL
) {
3743 len
+= sprintf(p
+ len
, "commands:\tlevel <level>");
3745 switch (fan_control_access_mode
) {
3746 case TPACPI_FAN_WR_ACPI_SFAN
:
3747 len
+= sprintf(p
+ len
, " (<level> is 0-7)\n");
3751 len
+= sprintf(p
+ len
, " (<level> is 0-7, "
3752 "auto, disengaged, full-speed)\n");
3757 if (fan_control_commands
& TPACPI_FAN_CMD_ENABLE
)
3758 len
+= sprintf(p
+ len
, "commands:\tenable, disable\n"
3759 "commands:\twatchdog <timeout> (<timeout> is 0 (off), "
3760 "1-120 (seconds))\n");
3762 if (fan_control_commands
& TPACPI_FAN_CMD_SPEED
)
3763 len
+= sprintf(p
+ len
, "commands:\tspeed <speed>"
3764 " (<speed> is 0-65535)\n");
3769 static int fan_write_cmd_level(const char *cmd
, int *rc
)
3773 if (strlencmp(cmd
, "level auto") == 0)
3774 level
= TP_EC_FAN_AUTO
;
3775 else if ((strlencmp(cmd
, "level disengaged") == 0) |
3776 (strlencmp(cmd
, "level full-speed") == 0))
3777 level
= TP_EC_FAN_FULLSPEED
;
3778 else if (sscanf(cmd
, "level %d", &level
) != 1)
3781 if ((*rc
= fan_set_level_safe(level
)) == -ENXIO
)
3782 printk(IBM_ERR
"level command accepted for unsupported "
3783 "access mode %d", fan_control_access_mode
);
3788 static int fan_write_cmd_enable(const char *cmd
, int *rc
)
3790 if (strlencmp(cmd
, "enable") != 0)
3793 if ((*rc
= fan_set_enable()) == -ENXIO
)
3794 printk(IBM_ERR
"enable command accepted for unsupported "
3795 "access mode %d", fan_control_access_mode
);
3800 static int fan_write_cmd_disable(const char *cmd
, int *rc
)
3802 if (strlencmp(cmd
, "disable") != 0)
3805 if ((*rc
= fan_set_disable()) == -ENXIO
)
3806 printk(IBM_ERR
"disable command accepted for unsupported "
3807 "access mode %d", fan_control_access_mode
);
3812 static int fan_write_cmd_speed(const char *cmd
, int *rc
)
3817 * Support speed <low> <medium> <high> ? */
3819 if (sscanf(cmd
, "speed %d", &speed
) != 1)
3822 if ((*rc
= fan_set_speed(speed
)) == -ENXIO
)
3823 printk(IBM_ERR
"speed command accepted for unsupported "
3824 "access mode %d", fan_control_access_mode
);
3829 static int fan_write_cmd_watchdog(const char *cmd
, int *rc
)
3833 if (sscanf(cmd
, "watchdog %d", &interval
) != 1)
3836 if (interval
< 0 || interval
> 120)
3839 fan_watchdog_maxinterval
= interval
;
3844 static int fan_write(char *buf
)
3849 while (!rc
&& (cmd
= next_cmd(&buf
))) {
3850 if (!((fan_control_commands
& TPACPI_FAN_CMD_LEVEL
) &&
3851 fan_write_cmd_level(cmd
, &rc
)) &&
3852 !((fan_control_commands
& TPACPI_FAN_CMD_ENABLE
) &&
3853 (fan_write_cmd_enable(cmd
, &rc
) ||
3854 fan_write_cmd_disable(cmd
, &rc
) ||
3855 fan_write_cmd_watchdog(cmd
, &rc
))) &&
3856 !((fan_control_commands
& TPACPI_FAN_CMD_SPEED
) &&
3857 fan_write_cmd_speed(cmd
, &rc
))
3861 fan_watchdog_reset();
3867 static struct ibm_struct fan_driver_data
= {
3874 /****************************************************************************
3875 ****************************************************************************
3879 ****************************************************************************
3880 ****************************************************************************/
3883 static struct proc_dir_entry
*proc_dir
= NULL
;
3885 /* Subdriver registry */
3886 static LIST_HEAD(tpacpi_all_drivers
);
3890 * Module and infrastructure proble, init and exit handling
3893 #ifdef CONFIG_THINKPAD_ACPI_DEBUG
3894 static const char * __init
str_supported(int is_supported
)
3896 static char text_unsupported
[] __initdata
= "not supported";
3898 return (is_supported
)? &text_unsupported
[4] : &text_unsupported
[0];
3900 #endif /* CONFIG_THINKPAD_ACPI_DEBUG */
3902 static int __init
ibm_init(struct ibm_init_struct
*iibm
)
3905 struct ibm_struct
*ibm
= iibm
->data
;
3906 struct proc_dir_entry
*entry
;
3908 BUG_ON(ibm
== NULL
);
3910 INIT_LIST_HEAD(&ibm
->all_drivers
);
3912 if (ibm
->flags
.experimental
&& !experimental
)
3915 dbg_printk(TPACPI_DBG_INIT
,
3916 "probing for %s\n", ibm
->name
);
3919 ret
= iibm
->init(iibm
);
3921 return 0; /* probe failed */
3925 ibm
->flags
.init_called
= 1;
3929 if (ibm
->acpi
->hid
) {
3930 ret
= register_tpacpi_subdriver(ibm
);
3935 if (ibm
->acpi
->notify
) {
3936 ret
= setup_acpi_notify(ibm
);
3937 if (ret
== -ENODEV
) {
3938 printk(IBM_NOTICE
"disabling subdriver %s\n",
3948 dbg_printk(TPACPI_DBG_INIT
,
3949 "%s installed\n", ibm
->name
);
3952 entry
= create_proc_entry(ibm
->name
,
3953 S_IFREG
| S_IRUGO
| S_IWUSR
,
3956 printk(IBM_ERR
"unable to create proc entry %s\n",
3961 entry
->owner
= THIS_MODULE
;
3963 entry
->read_proc
= &dispatch_procfs_read
;
3965 entry
->write_proc
= &dispatch_procfs_write
;
3966 ibm
->flags
.proc_created
= 1;
3969 list_add_tail(&ibm
->all_drivers
, &tpacpi_all_drivers
);
3974 dbg_printk(TPACPI_DBG_INIT
,
3975 "%s: at error exit path with result %d\n",
3979 return (ret
< 0)? ret
: 0;
3982 static void ibm_exit(struct ibm_struct
*ibm
)
3984 dbg_printk(TPACPI_DBG_EXIT
, "removing %s\n", ibm
->name
);
3986 list_del_init(&ibm
->all_drivers
);
3988 if (ibm
->flags
.acpi_notify_installed
) {
3989 dbg_printk(TPACPI_DBG_EXIT
,
3990 "%s: acpi_remove_notify_handler\n", ibm
->name
);
3992 acpi_remove_notify_handler(*ibm
->acpi
->handle
,
3994 dispatch_acpi_notify
);
3995 ibm
->flags
.acpi_notify_installed
= 0;
3996 ibm
->flags
.acpi_notify_installed
= 0;
3999 if (ibm
->flags
.proc_created
) {
4000 dbg_printk(TPACPI_DBG_EXIT
,
4001 "%s: remove_proc_entry\n", ibm
->name
);
4002 remove_proc_entry(ibm
->name
, proc_dir
);
4003 ibm
->flags
.proc_created
= 0;
4006 if (ibm
->flags
.acpi_driver_registered
) {
4007 dbg_printk(TPACPI_DBG_EXIT
,
4008 "%s: acpi_bus_unregister_driver\n", ibm
->name
);
4010 acpi_bus_unregister_driver(ibm
->acpi
->driver
);
4011 kfree(ibm
->acpi
->driver
);
4012 ibm
->acpi
->driver
= NULL
;
4013 ibm
->flags
.acpi_driver_registered
= 0;
4016 if (ibm
->flags
.init_called
&& ibm
->exit
) {
4018 ibm
->flags
.init_called
= 0;
4021 dbg_printk(TPACPI_DBG_INIT
, "finished removing %s\n", ibm
->name
);
4026 static char *ibm_thinkpad_ec_found
= NULL
;
4028 static char* __init
check_dmi_for_ec(void)
4030 struct dmi_device
*dev
= NULL
;
4031 char ec_fw_string
[18];
4034 * ThinkPad T23 or newer, A31 or newer, R50e or newer,
4035 * X32 or newer, all Z series; Some models must have an
4036 * up-to-date BIOS or they will not be detected.
4038 * See http://thinkwiki.org/wiki/List_of_DMI_IDs
4040 while ((dev
= dmi_find_device(DMI_DEV_TYPE_OEM_STRING
, NULL
, dev
))) {
4041 if (sscanf(dev
->name
,
4042 "IBM ThinkPad Embedded Controller -[%17c",
4043 ec_fw_string
) == 1) {
4044 ec_fw_string
[sizeof(ec_fw_string
) - 1] = 0;
4045 ec_fw_string
[strcspn(ec_fw_string
, " ]")] = 0;
4046 return kstrdup(ec_fw_string
, GFP_KERNEL
);
4052 static int __init
probe_for_thinkpad(void)
4060 * Non-ancient models have better DMI tagging, but very old models
4063 is_thinkpad
= dmi_name_in_vendors("ThinkPad");
4065 /* ec is required because many other handles are relative to it */
4066 IBM_ACPIHANDLE_INIT(ec
);
4070 "Not yet supported ThinkPad detected!\n");
4075 * Risks a regression on very old machines, but reduces potential
4076 * false positives a damn great deal
4079 is_thinkpad
= dmi_name_in_vendors("IBM");
4081 if (!is_thinkpad
&& !force_load
)
4088 /* Module init, exit, parameters */
4090 static struct ibm_init_struct ibms_init
[] __initdata
= {
4092 .init
= thinkpad_acpi_driver_init
,
4093 .data
= &thinkpad_acpi_driver_data
,
4096 .init
= hotkey_init
,
4097 .data
= &hotkey_driver_data
,
4100 .init
= bluetooth_init
,
4101 .data
= &bluetooth_driver_data
,
4105 .data
= &wan_driver_data
,
4109 .data
= &video_driver_data
,
4113 .data
= &light_driver_data
,
4115 #ifdef CONFIG_THINKPAD_ACPI_DOCK
4118 .data
= &dock_driver_data
[0],
4122 .data
= &dock_driver_data
[1],
4125 #ifdef CONFIG_THINKPAD_ACPI_BAY
4128 .data
= &bay_driver_data
,
4133 .data
= &cmos_driver_data
,
4137 .data
= &led_driver_data
,
4141 .data
= &beep_driver_data
,
4144 .init
= thermal_init
,
4145 .data
= &thermal_driver_data
,
4148 .data
= &ecdump_driver_data
,
4151 .init
= brightness_init
,
4152 .data
= &brightness_driver_data
,
4155 .data
= &volume_driver_data
,
4159 .data
= &fan_driver_data
,
4163 static int __init
set_ibm_param(const char *val
, struct kernel_param
*kp
)
4166 struct ibm_struct
*ibm
;
4168 for (i
= 0; i
< ARRAY_SIZE(ibms_init
); i
++) {
4169 ibm
= ibms_init
[i
].data
;
4170 BUG_ON(ibm
== NULL
);
4172 if (strcmp(ibm
->name
, kp
->name
) == 0 && ibm
->write
) {
4173 if (strlen(val
) > sizeof(ibms_init
[i
].param
) - 2)
4175 strcpy(ibms_init
[i
].param
, val
);
4176 strcat(ibms_init
[i
].param
, ",");
4184 static int experimental
;
4185 module_param(experimental
, int, 0);
4187 static u32 dbg_level
;
4188 module_param_named(debug
, dbg_level
, uint
, 0);
4190 static int force_load
;
4191 module_param(force_load
, int, 0);
4193 static int fan_control_allowed
;
4194 module_param_named(fan_control
, fan_control_allowed
, int, 0);
4196 #define IBM_PARAM(feature) \
4197 module_param_call(feature, set_ibm_param, NULL, NULL, 0)
4200 IBM_PARAM(bluetooth
);
4203 #ifdef CONFIG_THINKPAD_ACPI_DOCK
4206 #ifdef CONFIG_THINKPAD_ACPI_BAY
4208 #endif /* CONFIG_THINKPAD_ACPI_BAY */
4213 IBM_PARAM(brightness
);
4217 static int __init
thinkpad_acpi_module_init(void)
4221 /* Driver-level probe */
4222 ret
= probe_for_thinkpad();
4226 /* Driver initialization */
4227 ibm_thinkpad_ec_found
= check_dmi_for_ec();
4228 IBM_ACPIHANDLE_INIT(ecrd
);
4229 IBM_ACPIHANDLE_INIT(ecwr
);
4231 proc_dir
= proc_mkdir(IBM_PROC_DIR
, acpi_root_dir
);
4233 printk(IBM_ERR
"unable to create proc dir " IBM_PROC_DIR
);
4234 thinkpad_acpi_module_exit();
4237 proc_dir
->owner
= THIS_MODULE
;
4239 ret
= platform_driver_register(&tpacpi_pdriver
);
4241 printk(IBM_ERR
"unable to register platform driver\n");
4242 thinkpad_acpi_module_exit();
4245 ret
= tpacpi_create_driver_attributes(&tpacpi_pdriver
.driver
);
4247 printk(IBM_ERR
"unable to create sysfs driver attributes\n");
4248 thinkpad_acpi_module_exit();
4253 /* Device initialization */
4254 tpacpi_pdev
= platform_device_register_simple(IBM_DRVR_NAME
, -1,
4256 if (IS_ERR(tpacpi_pdev
)) {
4257 ret
= PTR_ERR(tpacpi_pdev
);
4259 printk(IBM_ERR
"unable to register platform device\n");
4260 thinkpad_acpi_module_exit();
4263 tpacpi_hwmon
= hwmon_device_register(&tpacpi_pdev
->dev
);
4264 if (IS_ERR(tpacpi_hwmon
)) {
4265 ret
= PTR_ERR(tpacpi_hwmon
);
4266 tpacpi_hwmon
= NULL
;
4267 printk(IBM_ERR
"unable to register hwmon device\n");
4268 thinkpad_acpi_module_exit();
4271 for (i
= 0; i
< ARRAY_SIZE(ibms_init
); i
++) {
4272 ret
= ibm_init(&ibms_init
[i
]);
4273 if (ret
>= 0 && *ibms_init
[i
].param
)
4274 ret
= ibms_init
[i
].data
->write(ibms_init
[i
].param
);
4276 thinkpad_acpi_module_exit();
4284 static void thinkpad_acpi_module_exit(void)
4286 struct ibm_struct
*ibm
, *itmp
;
4288 list_for_each_entry_safe_reverse(ibm
, itmp
,
4289 &tpacpi_all_drivers
,
4294 dbg_printk(TPACPI_DBG_INIT
, "finished subdriver exit path...\n");
4297 hwmon_device_unregister(tpacpi_hwmon
);
4300 platform_device_unregister(tpacpi_pdev
);
4302 tpacpi_remove_driver_attributes(&tpacpi_pdriver
.driver
);
4303 platform_driver_unregister(&tpacpi_pdriver
);
4306 remove_proc_entry(IBM_PROC_DIR
, acpi_root_dir
);
4308 kfree(ibm_thinkpad_ec_found
);
4311 module_init(thinkpad_acpi_module_init
);
4312 module_exit(thinkpad_acpi_module_exit
);