2 * ibm_acpi.c - IBM ThinkPad ACPI Extras
5 * Copyright (C) 2004-2005 Borislav Deianov <borislav@users.sf.net>
6 * Copyright (C) 2006 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
23 #define IBM_VERSION "0.13"
28 * 2006-11-22 0.13 new maintainer
29 * changelog now lives in git commit history, and will
30 * not be updated further in-file.
32 * 2005-08-17 0.12 fix compilation on 2.6.13-rc kernels
33 * 2005-03-17 0.11 support for 600e, 770x
34 * thanks to Jamie Lentin <lentinj@dial.pipex.com>
35 * support for 770e, G41
36 * G40 and G41 don't have a thinklight
37 * temperatures no longer experimental
38 * experimental brightness control
39 * experimental volume control
40 * experimental fan enable/disable
41 * 2005-01-16 0.10 fix module loading on R30, R31
42 * 2005-01-16 0.9 support for 570, R30, R31
43 * ultrabay support on A22p, A3x
44 * limit arg for cmos, led, beep, drop experimental status
45 * more capable led control on A21e, A22p, T20-22, X20
46 * experimental temperatures and fan speed
47 * experimental embedded controller register dump
48 * mark more functions as __init, drop incorrect __exit
50 * thanks to Henrik Brix Andersen <brix@gentoo.org>
51 * fix parameter passing on module loading
52 * thanks to Rusty Russell <rusty@rustcorp.com.au>
53 * thanks to Jim Radford <radford@blackbean.org>
54 * 2004-11-08 0.8 fix init error case, don't return from a macro
55 * thanks to Chris Wright <chrisw@osdl.org>
56 * 2004-10-23 0.7 fix module loading on A21e, A22p, T20, T21, X20
57 * fix led control on A21e
58 * 2004-10-19 0.6 use acpi_bus_register_driver() to claim HKEY device
59 * 2004-10-18 0.5 thinklight support on A21e, G40, R32, T20, T21, X20
60 * proc file format changed
61 * video_switch command
62 * experimental cmos control
63 * experimental led control
64 * experimental acpi sounds
65 * 2004-09-16 0.4 support for module parameters
66 * hotkey mask can be prefixed by 0x
67 * video output switching
68 * video expansion control
69 * ultrabay eject support
70 * removed lcd brightness/on/off control, didn't work
71 * 2004-08-17 0.3 support for R40
72 * lcd off, brightness control
74 * 2004-08-14 0.2 support for T series, X20
75 * bluetooth enable/disable
76 * hotkey events disabled by default
77 * removed fan control, currently useless
78 * 2004-08-09 0.1 initial release, support for X series
81 #include <linux/kernel.h>
82 #include <linux/module.h>
83 #include <linux/init.h>
84 #include <linux/types.h>
85 #include <linux/string.h>
87 #include <linux/proc_fs.h>
88 #include <linux/backlight.h>
89 #include <asm/uaccess.h>
91 #include <linux/dmi.h>
92 #include <linux/jiffies.h>
93 #include <linux/workqueue.h>
95 #include <acpi/acpi_drivers.h>
96 #include <acpi/acnamesp.h>
98 #define IBM_NAME "ibm"
99 #define IBM_DESC "IBM ThinkPad ACPI Extras"
100 #define IBM_FILE "ibm_acpi"
101 #define IBM_URL "http://ibm-acpi.sf.net/"
103 MODULE_AUTHOR("Borislav Deianov, Henrique de Moraes Holschuh");
104 MODULE_DESCRIPTION(IBM_DESC
);
105 MODULE_VERSION(IBM_VERSION
);
106 MODULE_LICENSE("GPL");
108 #define IBM_DIR IBM_NAME
110 #define IBM_LOG IBM_FILE ": "
111 #define IBM_ERR KERN_ERR IBM_LOG
112 #define IBM_NOTICE KERN_NOTICE IBM_LOG
113 #define IBM_INFO KERN_INFO IBM_LOG
114 #define IBM_DEBUG KERN_DEBUG IBM_LOG
116 #define IBM_MAX_ACPI_ARGS 3
118 #define __unused __attribute__ ((unused))
120 static int experimental
;
121 module_param(experimental
, int, 0);
123 static acpi_handle root_handle
= NULL
;
125 #define IBM_HANDLE(object, parent, paths...) \
126 static acpi_handle object##_handle; \
127 static acpi_handle *object##_parent = &parent##_handle; \
128 static char *object##_path; \
129 static char *object##_paths[] = { paths }
131 IBM_HANDLE(ec
, root
, "\\_SB.PCI0.ISA.EC0", /* 240, 240x */
132 "\\_SB.PCI.ISA.EC", /* 570 */
133 "\\_SB.PCI0.ISA0.EC0", /* 600e/x, 770e, 770x */
134 "\\_SB.PCI0.ISA.EC", /* A21e, A2xm/p, T20-22, X20-21 */
135 "\\_SB.PCI0.AD4S.EC0", /* i1400, R30 */
136 "\\_SB.PCI0.ICH3.EC0", /* R31 */
137 "\\_SB.PCI0.LPC.EC", /* all others */
140 IBM_HANDLE(vid
, root
, "\\_SB.PCI.AGP.VGA", /* 570 */
141 "\\_SB.PCI0.AGP0.VID0", /* 600e/x, 770x */
142 "\\_SB.PCI0.VID0", /* 770e */
143 "\\_SB.PCI0.VID", /* A21e, G4x, R50e, X30, X40 */
144 "\\_SB.PCI0.AGP.VID", /* all others */
147 IBM_HANDLE(vid2
, root
, "\\_SB.PCI0.AGPB.VID"); /* G41 */
149 IBM_HANDLE(cmos
, root
, "\\UCMS", /* R50, R50e, R50p, R51, T4x, X31, X40 */
150 "\\CMOS", /* A3x, G4x, R32, T23, T30, X22-24, X30 */
151 "\\CMS", /* R40, R40e */
153 #ifdef CONFIG_ACPI_IBM_DOCK
154 IBM_HANDLE(dock
, root
, "\\_SB.GDCK", /* X30, X31, X40 */
155 "\\_SB.PCI0.DOCK", /* 600e/x,770e,770x,A2xm/p,T20-22,X20-21 */
156 "\\_SB.PCI0.PCI1.DOCK", /* all others */
157 "\\_SB.PCI.ISA.SLCE", /* 570 */
158 ); /* A21e,G4x,R30,R31,R32,R40,R40e,R50e */
160 IBM_HANDLE(bay
, root
, "\\_SB.PCI.IDE.SECN.MAST", /* 570 */
161 "\\_SB.PCI0.IDE0.IDES.IDSM", /* 600e/x, 770e, 770x */
162 "\\_SB.PCI0.SATA.SCND.MSTR", /* T60, X60, Z60 */
163 "\\_SB.PCI0.IDE0.SCND.MSTR", /* all others */
164 ); /* A21e, R30, R31 */
166 IBM_HANDLE(bay_ej
, bay
, "_EJ3", /* 600e/x, A2xm/p, A3x */
167 "_EJ0", /* all others */
168 ); /* 570,A21e,G4x,R30,R31,R32,R40e,R50e */
170 IBM_HANDLE(bay2
, root
, "\\_SB.PCI0.IDE0.PRIM.SLAV", /* A3x, R32 */
171 "\\_SB.PCI0.IDE0.IDEP.IDPS", /* 600e/x, 770e, 770x */
174 IBM_HANDLE(bay2_ej
, bay2
, "_EJ3", /* 600e/x, 770e, A3x */
178 /* don't list other alternatives as we install a notify handler on the 570 */
179 IBM_HANDLE(pci
, root
, "\\_SB.PCI"); /* 570 */
181 IBM_HANDLE(hkey
, ec
, "\\_SB.HKEY", /* 600e/x, 770e, 770x */
182 "^HKEY", /* R30, R31 */
183 "HKEY", /* all others */
186 IBM_HANDLE(lght
, root
, "\\LGHT"); /* A21e, A2xm/p, T20-22, X20-21 */
187 IBM_HANDLE(ledb
, ec
, "LEDB"); /* G4x */
189 IBM_HANDLE(led
, ec
, "SLED", /* 570 */
190 "SYSL", /* 600e/x, 770e, 770x, A21e, A2xm/p, T20-22, X20-21 */
191 "LED", /* all others */
194 IBM_HANDLE(beep
, ec
, "BEEP"); /* all except R30, R31 */
195 IBM_HANDLE(ecrd
, ec
, "ECRD"); /* 570 */
196 IBM_HANDLE(ecwr
, ec
, "ECWR"); /* 570 */
197 IBM_HANDLE(fans
, ec
, "FANS"); /* X31, X40, X41 */
199 IBM_HANDLE(gfan
, ec
, "GFAN", /* 570 */
200 "\\FSPD", /* 600e/x, 770e, 770x */
203 IBM_HANDLE(sfan
, ec
, "SFAN", /* 570 */
204 "JFNS", /* 770x-JL */
207 #define IBM_HKEY_HID "IBM0068"
208 #define IBM_PCI_HID "PNP0A03"
210 enum thermal_access_mode
{
211 IBMACPI_THERMAL_NONE
= 0, /* No thermal support */
212 IBMACPI_THERMAL_ACPI_TMP07
, /* Use ACPI TMP0-7 */
213 IBMACPI_THERMAL_ACPI_UPDT
, /* Use ACPI TMP0-7 with UPDT */
214 IBMACPI_THERMAL_TPEC_8
, /* Use ACPI EC regs, 8 sensors */
215 IBMACPI_THERMAL_TPEC_16
, /* Use ACPI EC regs, 16 sensors */
218 #define IBMACPI_MAX_THERMAL_SENSORS 16 /* Max thermal sensors supported */
219 struct ibm_thermal_sensors_struct
{
220 s32 temp
[IBMACPI_MAX_THERMAL_SENSORS
];
226 * IBMACPI_FAN_RD_ACPI_GFAN:
227 * ACPI GFAN method: returns fan level
229 * see IBMACPI_FAN_WR_ACPI_SFAN
230 * EC 0x2f not available if GFAN exists
232 * IBMACPI_FAN_WR_ACPI_SFAN:
233 * ACPI SFAN method: sets fan level, 0 (stop) to 7 (max)
235 * EC 0x2f might be available *for reading*, but never for writing.
237 * IBMACPI_FAN_WR_TPEC:
238 * ThinkPad EC register 0x2f (HFSP): fan control loop mode Supported
239 * on almost all ThinkPads
241 * Fan speed changes of any sort (including those caused by the
242 * disengaged mode) are usually done slowly by the firmware as the
243 * maximum ammount of fan duty cycle change per second seems to be
246 * Reading is not available if GFAN exists.
247 * Writing is not available if SFAN exists.
250 * 7 automatic mode engaged;
251 * (default operation mode of the ThinkPad)
252 * fan level is ignored in this mode.
253 * 6 disengage mode (takes precedence over bit 7);
254 * not available on all thinkpads. May disable
255 * the tachometer, and speeds up fan to 100% duty-cycle,
256 * which speeds it up far above the standard RPM
257 * levels. It is not impossible that it could cause
259 * 5-3 unused in some models. Extra bits for fan level
260 * in others, but still useless as all values above
261 * 7 map to the same speed as level 7 in these models.
262 * 2-0 fan level (0..7 usually)
264 * 0x07 = max (set when temperatures critical)
265 * Some ThinkPads may have other levels, see
266 * IBMACPI_FAN_WR_ACPI_FANS (X31/X40/X41)
268 * FIRMWARE BUG: on some models, EC 0x2f might not be initialized at
269 * boot. Apparently the EC does not intialize it, so unless ACPI DSDT
270 * does so, its initial value is meaningless (0x07).
272 * For firmware bugs, refer to:
273 * http://thinkwiki.org/wiki/Embedded_Controller_Firmware#Firmware_Issues
277 * ThinkPad EC register 0x84 (LSB), 0x85 (MSB):
278 * Main fan tachometer reading (in RPM)
280 * This register is present on all ThinkPads with a new-style EC, and
281 * it is known not to be present on the A21m/e, and T22, as there is
282 * something else in offset 0x84 according to the ACPI DSDT. Other
283 * ThinkPads from this same time period (and earlier) probably lack the
284 * tachometer as well.
286 * Unfortunately a lot of ThinkPads with new-style ECs but whose firwmare
287 * was never fixed by IBM to report the EC firmware version string
288 * probably support the tachometer (like the early X models), so
289 * detecting it is quite hard. We need more data to know for sure.
291 * FIRMWARE BUG: always read 0x84 first, otherwise incorrect readings
294 * FIRMWARE BUG: when EC 0x2f bit 6 is set (disengaged mode), this
295 * register is not invalidated in ThinkPads that disable tachometer
296 * readings. Thus, the tachometer readings go stale.
298 * For firmware bugs, refer to:
299 * http://thinkwiki.org/wiki/Embedded_Controller_Firmware#Firmware_Issues
301 * IBMACPI_FAN_WR_ACPI_FANS:
302 * ThinkPad X31, X40, X41. Not available in the X60.
304 * FANS ACPI handle: takes three arguments: low speed, medium speed,
305 * high speed. ACPI DSDT seems to map these three speeds to levels
306 * as follows: STOP LOW LOW MED MED HIGH HIGH HIGH HIGH
307 * (this map is stored on FAN0..FAN8 as "0,1,1,2,2,3,3,3,3")
309 * The speeds are stored on handles
310 * (FANA:FAN9), (FANC:FANB), (FANE:FAND).
312 * There are three default speed sets, acessible as handles:
313 * FS1L,FS1M,FS1H; FS2L,FS2M,FS2H; FS3L,FS3M,FS3H
315 * ACPI DSDT switches which set is in use depending on various
318 * IBMACPI_FAN_WR_TPEC is also available and should be used to
319 * command the fan. The X31/X40/X41 seems to have 8 fan levels,
320 * but the ACPI tables just mention level 7.
323 enum fan_status_access_mode
{
324 IBMACPI_FAN_NONE
= 0, /* No fan status or control */
325 IBMACPI_FAN_RD_ACPI_GFAN
, /* Use ACPI GFAN */
326 IBMACPI_FAN_RD_TPEC
, /* Use ACPI EC regs 0x2f, 0x84-0x85 */
329 enum fan_control_access_mode
{
330 IBMACPI_FAN_WR_NONE
= 0, /* No fan control */
331 IBMACPI_FAN_WR_ACPI_SFAN
, /* Use ACPI SFAN */
332 IBMACPI_FAN_WR_TPEC
, /* Use ACPI EC reg 0x2f */
333 IBMACPI_FAN_WR_ACPI_FANS
, /* Use ACPI FANS and EC reg 0x2f */
336 enum fan_control_commands
{
337 IBMACPI_FAN_CMD_SPEED
= 0x0001, /* speed command */
338 IBMACPI_FAN_CMD_LEVEL
= 0x0002, /* level command */
339 IBMACPI_FAN_CMD_ENABLE
= 0x0004, /* enable/disable cmd,
340 * and also watchdog cmd */
343 enum { /* Fan control constants */
344 fan_status_offset
= 0x2f, /* EC register 0x2f */
345 fan_rpm_offset
= 0x84, /* EC register 0x84: LSB, 0x85 MSB (RPM)
346 * 0x84 must be read before 0x85 */
348 IBMACPI_FAN_EC_DISENGAGED
= 0x40, /* EC mode: tachometer
350 IBMACPI_FAN_EC_AUTO
= 0x80, /* EC mode: auto fan
354 static char *ibm_thinkpad_ec_found
= NULL
;
361 struct acpi_driver
*driver
;
364 int (*read
) (char *);
365 int (*write
) (char *);
368 void (*notify
) (struct ibm_struct
*, u32
);
371 struct acpi_device
*device
;
373 int driver_registered
;
376 int notify_installed
;
381 static struct proc_dir_entry
*proc_dir
= NULL
;
383 static struct backlight_device
*ibm_backlight_device
= NULL
;
385 #define onoff(status,bit) ((status) & (1 << (bit)) ? "on" : "off")
386 #define enabled(status,bit) ((status) & (1 << (bit)) ? "enabled" : "disabled")
387 #define strlencmp(a,b) (strncmp((a), (b), strlen(b)))
389 static int acpi_evalf(acpi_handle handle
,
390 void *res
, char *method
, char *fmt
, ...)
393 struct acpi_object_list params
;
394 union acpi_object in_objs
[IBM_MAX_ACPI_ARGS
];
395 struct acpi_buffer result
, *resultp
;
396 union acpi_object out_obj
;
404 printk(IBM_ERR
"acpi_evalf() called with empty format\n");
417 params
.pointer
= &in_objs
[0];
424 in_objs
[params
.count
].integer
.value
= va_arg(ap
, int);
425 in_objs
[params
.count
++].type
= ACPI_TYPE_INTEGER
;
427 /* add more types as needed */
429 printk(IBM_ERR
"acpi_evalf() called "
430 "with invalid format character '%c'\n", c
);
436 if (res_type
!= 'v') {
437 result
.length
= sizeof(out_obj
);
438 result
.pointer
= &out_obj
;
443 status
= acpi_evaluate_object(handle
, method
, ¶ms
, resultp
);
448 *(int *)res
= out_obj
.integer
.value
;
449 success
= status
== AE_OK
&& out_obj
.type
== ACPI_TYPE_INTEGER
;
452 success
= status
== AE_OK
;
454 /* add more types as needed */
456 printk(IBM_ERR
"acpi_evalf() called "
457 "with invalid format character '%c'\n", res_type
);
461 if (!success
&& !quiet
)
462 printk(IBM_ERR
"acpi_evalf(%s, %s, ...) failed: %d\n",
463 method
, fmt0
, status
);
468 static void __unused
acpi_print_int(acpi_handle handle
, char *method
)
472 if (acpi_evalf(handle
, &i
, method
, "d"))
473 printk(IBM_INFO
"%s = 0x%x\n", method
, i
);
475 printk(IBM_ERR
"error calling %s\n", method
);
478 static char *next_cmd(char **cmds
)
483 while ((end
= strchr(start
, ',')) && end
== start
)
494 static int ibm_acpi_driver_init(void)
496 printk(IBM_INFO
"%s v%s\n", IBM_DESC
, IBM_VERSION
);
497 printk(IBM_INFO
"%s\n", IBM_URL
);
499 if (ibm_thinkpad_ec_found
)
500 printk(IBM_INFO
"ThinkPad EC firmware %s\n",
501 ibm_thinkpad_ec_found
);
506 static int driver_read(char *p
)
510 len
+= sprintf(p
+ len
, "driver:\t\t%s\n", IBM_DESC
);
511 len
+= sprintf(p
+ len
, "version:\t%s\n", IBM_VERSION
);
516 static int hotkey_supported
;
517 static int hotkey_mask_supported
;
518 static int hotkey_orig_status
;
519 static int hotkey_orig_mask
;
521 static int hotkey_get(int *status
, int *mask
)
523 if (!acpi_evalf(hkey_handle
, status
, "DHKC", "d"))
526 if (hotkey_mask_supported
)
527 if (!acpi_evalf(hkey_handle
, mask
, "DHKN", "d"))
533 static int hotkey_set(int status
, int mask
)
537 if (!acpi_evalf(hkey_handle
, NULL
, "MHKC", "vd", status
))
540 if (hotkey_mask_supported
)
541 for (i
= 0; i
< 32; i
++) {
542 int bit
= ((1 << i
) & mask
) != 0;
543 if (!acpi_evalf(hkey_handle
,
544 NULL
, "MHKM", "vdd", i
+ 1, bit
))
551 static int hotkey_init(void)
553 /* hotkey not supported on 570 */
554 hotkey_supported
= hkey_handle
!= NULL
;
556 if (hotkey_supported
) {
557 /* mask not supported on 570, 600e/x, 770e, 770x, A21e, A2xm/p,
558 A30, R30, R31, T20-22, X20-21, X22-24 */
559 hotkey_mask_supported
=
560 acpi_evalf(hkey_handle
, NULL
, "DHKN", "qv");
562 if (!hotkey_get(&hotkey_orig_status
, &hotkey_orig_mask
))
569 static int hotkey_read(char *p
)
574 if (!hotkey_supported
) {
575 len
+= sprintf(p
+ len
, "status:\t\tnot supported\n");
579 if (!hotkey_get(&status
, &mask
))
582 len
+= sprintf(p
+ len
, "status:\t\t%s\n", enabled(status
, 0));
583 if (hotkey_mask_supported
) {
584 len
+= sprintf(p
+ len
, "mask:\t\t0x%04x\n", mask
);
585 len
+= sprintf(p
+ len
,
586 "commands:\tenable, disable, reset, <mask>\n");
588 len
+= sprintf(p
+ len
, "mask:\t\tnot supported\n");
589 len
+= sprintf(p
+ len
, "commands:\tenable, disable, reset\n");
595 static int hotkey_write(char *buf
)
601 if (!hotkey_supported
)
604 if (!hotkey_get(&status
, &mask
))
607 while ((cmd
= next_cmd(&buf
))) {
608 if (strlencmp(cmd
, "enable") == 0) {
610 } else if (strlencmp(cmd
, "disable") == 0) {
612 } else if (strlencmp(cmd
, "reset") == 0) {
613 status
= hotkey_orig_status
;
614 mask
= hotkey_orig_mask
;
615 } else if (sscanf(cmd
, "0x%x", &mask
) == 1) {
617 } else if (sscanf(cmd
, "%x", &mask
) == 1) {
624 if (do_cmd
&& !hotkey_set(status
, mask
))
630 static void hotkey_exit(void)
632 if (hotkey_supported
)
633 hotkey_set(hotkey_orig_status
, hotkey_orig_mask
);
636 static void hotkey_notify(struct ibm_struct
*ibm
, u32 event
)
640 if (acpi_evalf(hkey_handle
, &hkey
, "MHKP", "d"))
641 acpi_bus_generate_event(ibm
->device
, event
, hkey
);
643 printk(IBM_ERR
"unknown hotkey event %d\n", event
);
644 acpi_bus_generate_event(ibm
->device
, event
, 0);
648 static int bluetooth_supported
;
650 static int bluetooth_init(void)
652 /* bluetooth not supported on 570, 600e/x, 770e, 770x, A21e, A2xm/p,
653 G4x, R30, R31, R40e, R50e, T20-22, X20-21 */
654 bluetooth_supported
= hkey_handle
&&
655 acpi_evalf(hkey_handle
, NULL
, "GBDC", "qv");
660 static int bluetooth_status(void)
664 if (!bluetooth_supported
||
665 !acpi_evalf(hkey_handle
, &status
, "GBDC", "d"))
671 static int bluetooth_read(char *p
)
674 int status
= bluetooth_status();
676 if (!bluetooth_supported
)
677 len
+= sprintf(p
+ len
, "status:\t\tnot supported\n");
678 else if (!(status
& 1))
679 len
+= sprintf(p
+ len
, "status:\t\tnot installed\n");
681 len
+= sprintf(p
+ len
, "status:\t\t%s\n", enabled(status
, 1));
682 len
+= sprintf(p
+ len
, "commands:\tenable, disable\n");
688 static int bluetooth_write(char *buf
)
690 int status
= bluetooth_status();
694 if (!bluetooth_supported
)
697 while ((cmd
= next_cmd(&buf
))) {
698 if (strlencmp(cmd
, "enable") == 0) {
700 } else if (strlencmp(cmd
, "disable") == 0) {
707 if (do_cmd
&& !acpi_evalf(hkey_handle
, NULL
, "SBDC", "vd", status
))
713 static int wan_supported
;
715 static int wan_init(void)
717 wan_supported
= hkey_handle
&&
718 acpi_evalf(hkey_handle
, NULL
, "GWAN", "qv");
723 static int wan_status(void)
727 if (!wan_supported
|| !acpi_evalf(hkey_handle
, &status
, "GWAN", "d"))
733 static int wan_read(char *p
)
736 int status
= wan_status();
739 len
+= sprintf(p
+ len
, "status:\t\tnot supported\n");
740 else if (!(status
& 1))
741 len
+= sprintf(p
+ len
, "status:\t\tnot installed\n");
743 len
+= sprintf(p
+ len
, "status:\t\t%s\n", enabled(status
, 1));
744 len
+= sprintf(p
+ len
, "commands:\tenable, disable\n");
750 static int wan_write(char *buf
)
752 int status
= wan_status();
759 while ((cmd
= next_cmd(&buf
))) {
760 if (strlencmp(cmd
, "enable") == 0) {
762 } else if (strlencmp(cmd
, "disable") == 0) {
769 if (do_cmd
&& !acpi_evalf(hkey_handle
, NULL
, "SWAN", "vd", status
))
775 enum video_access_mode
{
776 IBMACPI_VIDEO_NONE
= 0,
777 IBMACPI_VIDEO_570
, /* 570 */
778 IBMACPI_VIDEO_770
, /* 600e/x, 770e, 770x */
779 IBMACPI_VIDEO_NEW
, /* all others */
782 static enum video_access_mode video_supported
;
783 static int video_orig_autosw
;
785 static int video_init(void)
789 if (vid2_handle
&& acpi_evalf(NULL
, &ivga
, "\\IVGA", "d") && ivga
)
790 /* G41, assume IVGA doesn't change */
791 vid_handle
= vid2_handle
;
794 /* video switching not supported on R30, R31 */
795 video_supported
= IBMACPI_VIDEO_NONE
;
796 else if (acpi_evalf(vid_handle
, &video_orig_autosw
, "SWIT", "qd"))
798 video_supported
= IBMACPI_VIDEO_570
;
799 else if (acpi_evalf(vid_handle
, &video_orig_autosw
, "^VADL", "qd"))
800 /* 600e/x, 770e, 770x */
801 video_supported
= IBMACPI_VIDEO_770
;
804 video_supported
= IBMACPI_VIDEO_NEW
;
809 static int video_status(void)
814 if (video_supported
== IBMACPI_VIDEO_570
) {
815 if (acpi_evalf(NULL
, &i
, "\\_SB.PHS", "dd", 0x87))
817 } else if (video_supported
== IBMACPI_VIDEO_770
) {
818 if (acpi_evalf(NULL
, &i
, "\\VCDL", "d"))
820 if (acpi_evalf(NULL
, &i
, "\\VCDC", "d"))
822 } else if (video_supported
== IBMACPI_VIDEO_NEW
) {
823 acpi_evalf(NULL
, NULL
, "\\VUPS", "vd", 1);
824 if (acpi_evalf(NULL
, &i
, "\\VCDC", "d"))
827 acpi_evalf(NULL
, NULL
, "\\VUPS", "vd", 0);
828 if (acpi_evalf(NULL
, &i
, "\\VCDL", "d"))
830 if (acpi_evalf(NULL
, &i
, "\\VCDD", "d"))
837 static int video_autosw(void)
841 if (video_supported
== IBMACPI_VIDEO_570
)
842 acpi_evalf(vid_handle
, &autosw
, "SWIT", "d");
843 else if (video_supported
== IBMACPI_VIDEO_770
||
844 video_supported
== IBMACPI_VIDEO_NEW
)
845 acpi_evalf(vid_handle
, &autosw
, "^VDEE", "d");
850 static int video_read(char *p
)
852 int status
= video_status();
853 int autosw
= video_autosw();
856 if (!video_supported
) {
857 len
+= sprintf(p
+ len
, "status:\t\tnot supported\n");
861 len
+= sprintf(p
+ len
, "status:\t\tsupported\n");
862 len
+= sprintf(p
+ len
, "lcd:\t\t%s\n", enabled(status
, 0));
863 len
+= sprintf(p
+ len
, "crt:\t\t%s\n", enabled(status
, 1));
864 if (video_supported
== IBMACPI_VIDEO_NEW
)
865 len
+= sprintf(p
+ len
, "dvi:\t\t%s\n", enabled(status
, 3));
866 len
+= sprintf(p
+ len
, "auto:\t\t%s\n", enabled(autosw
, 0));
867 len
+= sprintf(p
+ len
, "commands:\tlcd_enable, lcd_disable\n");
868 len
+= sprintf(p
+ len
, "commands:\tcrt_enable, crt_disable\n");
869 if (video_supported
== IBMACPI_VIDEO_NEW
)
870 len
+= sprintf(p
+ len
, "commands:\tdvi_enable, dvi_disable\n");
871 len
+= sprintf(p
+ len
, "commands:\tauto_enable, auto_disable\n");
872 len
+= sprintf(p
+ len
, "commands:\tvideo_switch, expand_toggle\n");
877 static int video_switch(void)
879 int autosw
= video_autosw();
882 if (!acpi_evalf(vid_handle
, NULL
, "_DOS", "vd", 1))
884 ret
= video_supported
== IBMACPI_VIDEO_570
?
885 acpi_evalf(ec_handle
, NULL
, "_Q16", "v") :
886 acpi_evalf(vid_handle
, NULL
, "VSWT", "v");
887 acpi_evalf(vid_handle
, NULL
, "_DOS", "vd", autosw
);
892 static int video_expand(void)
894 if (video_supported
== IBMACPI_VIDEO_570
)
895 return acpi_evalf(ec_handle
, NULL
, "_Q17", "v");
896 else if (video_supported
== IBMACPI_VIDEO_770
)
897 return acpi_evalf(vid_handle
, NULL
, "VEXP", "v");
899 return acpi_evalf(NULL
, NULL
, "\\VEXP", "v");
902 static int video_switch2(int status
)
906 if (video_supported
== IBMACPI_VIDEO_570
) {
907 ret
= acpi_evalf(NULL
, NULL
,
908 "\\_SB.PHS2", "vdd", 0x8b, status
| 0x80);
909 } else if (video_supported
== IBMACPI_VIDEO_770
) {
910 int autosw
= video_autosw();
911 if (!acpi_evalf(vid_handle
, NULL
, "_DOS", "vd", 1))
914 ret
= acpi_evalf(vid_handle
, NULL
,
915 "ASWT", "vdd", status
* 0x100, 0);
917 acpi_evalf(vid_handle
, NULL
, "_DOS", "vd", autosw
);
919 ret
= acpi_evalf(NULL
, NULL
, "\\VUPS", "vd", 0x80) &&
920 acpi_evalf(NULL
, NULL
, "\\VSDS", "vdd", status
, 1);
926 static int video_write(char *buf
)
929 int enable
, disable
, status
;
931 if (!video_supported
)
934 enable
= disable
= 0;
936 while ((cmd
= next_cmd(&buf
))) {
937 if (strlencmp(cmd
, "lcd_enable") == 0) {
939 } else if (strlencmp(cmd
, "lcd_disable") == 0) {
941 } else if (strlencmp(cmd
, "crt_enable") == 0) {
943 } else if (strlencmp(cmd
, "crt_disable") == 0) {
945 } else if (video_supported
== IBMACPI_VIDEO_NEW
&&
946 strlencmp(cmd
, "dvi_enable") == 0) {
948 } else if (video_supported
== IBMACPI_VIDEO_NEW
&&
949 strlencmp(cmd
, "dvi_disable") == 0) {
951 } else if (strlencmp(cmd
, "auto_enable") == 0) {
952 if (!acpi_evalf(vid_handle
, NULL
, "_DOS", "vd", 1))
954 } else if (strlencmp(cmd
, "auto_disable") == 0) {
955 if (!acpi_evalf(vid_handle
, NULL
, "_DOS", "vd", 0))
957 } else if (strlencmp(cmd
, "video_switch") == 0) {
960 } else if (strlencmp(cmd
, "expand_toggle") == 0) {
967 if (enable
|| disable
) {
968 status
= (video_status() & 0x0f & ~disable
) | enable
;
969 if (!video_switch2(status
))
976 static void video_exit(void)
978 acpi_evalf(vid_handle
, NULL
, "_DOS", "vd", video_orig_autosw
);
981 static int light_supported
;
982 static int light_status_supported
;
984 static int light_init(void)
986 /* light not supported on 570, 600e/x, 770e, 770x, G4x, R30, R31 */
987 light_supported
= (cmos_handle
|| lght_handle
) && !ledb_handle
;
990 /* light status not supported on
991 570, 600e/x, 770e, 770x, G4x, R30, R31, R32, X20 */
992 light_status_supported
= acpi_evalf(ec_handle
, NULL
,
998 static int light_read(char *p
)
1003 if (!light_supported
) {
1004 len
+= sprintf(p
+ len
, "status:\t\tnot supported\n");
1005 } else if (!light_status_supported
) {
1006 len
+= sprintf(p
+ len
, "status:\t\tunknown\n");
1007 len
+= sprintf(p
+ len
, "commands:\ton, off\n");
1009 if (!acpi_evalf(ec_handle
, &status
, "KBLT", "d"))
1011 len
+= sprintf(p
+ len
, "status:\t\t%s\n", onoff(status
, 0));
1012 len
+= sprintf(p
+ len
, "commands:\ton, off\n");
1018 static int light_write(char *buf
)
1020 int cmos_cmd
, lght_cmd
;
1024 if (!light_supported
)
1027 while ((cmd
= next_cmd(&buf
))) {
1028 if (strlencmp(cmd
, "on") == 0) {
1031 } else if (strlencmp(cmd
, "off") == 0) {
1037 success
= cmos_handle
?
1038 acpi_evalf(cmos_handle
, NULL
, NULL
, "vd", cmos_cmd
) :
1039 acpi_evalf(lght_handle
, NULL
, NULL
, "vd", lght_cmd
);
1047 static int _sta(acpi_handle handle
)
1051 if (!handle
|| !acpi_evalf(handle
, &status
, "_STA", "d"))
1057 #ifdef CONFIG_ACPI_IBM_DOCK
1058 #define dock_docked() (_sta(dock_handle) & 1)
1060 static int dock_read(char *p
)
1063 int docked
= dock_docked();
1066 len
+= sprintf(p
+ len
, "status:\t\tnot supported\n");
1068 len
+= sprintf(p
+ len
, "status:\t\tundocked\n");
1070 len
+= sprintf(p
+ len
, "status:\t\tdocked\n");
1071 len
+= sprintf(p
+ len
, "commands:\tdock, undock\n");
1077 static int dock_write(char *buf
)
1084 while ((cmd
= next_cmd(&buf
))) {
1085 if (strlencmp(cmd
, "undock") == 0) {
1086 if (!acpi_evalf(dock_handle
, NULL
, "_DCK", "vd", 0) ||
1087 !acpi_evalf(dock_handle
, NULL
, "_EJ0", "vd", 1))
1089 } else if (strlencmp(cmd
, "dock") == 0) {
1090 if (!acpi_evalf(dock_handle
, NULL
, "_DCK", "vd", 1))
1099 static void dock_notify(struct ibm_struct
*ibm
, u32 event
)
1101 int docked
= dock_docked();
1102 int pci
= ibm
->hid
&& strstr(ibm
->hid
, IBM_PCI_HID
);
1104 if (event
== 1 && !pci
) /* 570 */
1105 acpi_bus_generate_event(ibm
->device
, event
, 1); /* button */
1106 else if (event
== 1 && pci
) /* 570 */
1107 acpi_bus_generate_event(ibm
->device
, event
, 3); /* dock */
1108 else if (event
== 3 && docked
)
1109 acpi_bus_generate_event(ibm
->device
, event
, 1); /* button */
1110 else if (event
== 3 && !docked
)
1111 acpi_bus_generate_event(ibm
->device
, event
, 2); /* undock */
1112 else if (event
== 0 && docked
)
1113 acpi_bus_generate_event(ibm
->device
, event
, 3); /* dock */
1115 printk(IBM_ERR
"unknown dock event %d, status %d\n",
1116 event
, _sta(dock_handle
));
1117 acpi_bus_generate_event(ibm
->device
, event
, 0); /* unknown */
1122 static int bay_status_supported
;
1123 static int bay_status2_supported
;
1124 static int bay_eject_supported
;
1125 static int bay_eject2_supported
;
1127 static int bay_init(void)
1129 bay_status_supported
= bay_handle
&&
1130 acpi_evalf(bay_handle
, NULL
, "_STA", "qv");
1131 bay_status2_supported
= bay2_handle
&&
1132 acpi_evalf(bay2_handle
, NULL
, "_STA", "qv");
1134 bay_eject_supported
= bay_handle
&& bay_ej_handle
&&
1135 (strlencmp(bay_ej_path
, "_EJ0") == 0 || experimental
);
1136 bay_eject2_supported
= bay2_handle
&& bay2_ej_handle
&&
1137 (strlencmp(bay2_ej_path
, "_EJ0") == 0 || experimental
);
1142 #define bay_occupied(b) (_sta(b##_handle) & 1)
1144 static int bay_read(char *p
)
1147 int occupied
= bay_occupied(bay
);
1148 int occupied2
= bay_occupied(bay2
);
1151 len
+= sprintf(p
+ len
, "status:\t\t%s\n", bay_status_supported
?
1152 (occupied
? "occupied" : "unoccupied") :
1154 if (bay_status2_supported
)
1155 len
+= sprintf(p
+ len
, "status2:\t%s\n", occupied2
?
1156 "occupied" : "unoccupied");
1158 eject
= bay_eject_supported
&& occupied
;
1159 eject2
= bay_eject2_supported
&& occupied2
;
1161 if (eject
&& eject2
)
1162 len
+= sprintf(p
+ len
, "commands:\teject, eject2\n");
1164 len
+= sprintf(p
+ len
, "commands:\teject\n");
1166 len
+= sprintf(p
+ len
, "commands:\teject2\n");
1171 static int bay_write(char *buf
)
1175 if (!bay_eject_supported
&& !bay_eject2_supported
)
1178 while ((cmd
= next_cmd(&buf
))) {
1179 if (bay_eject_supported
&& strlencmp(cmd
, "eject") == 0) {
1180 if (!acpi_evalf(bay_ej_handle
, NULL
, NULL
, "vd", 1))
1182 } else if (bay_eject2_supported
&&
1183 strlencmp(cmd
, "eject2") == 0) {
1184 if (!acpi_evalf(bay2_ej_handle
, NULL
, NULL
, "vd", 1))
1193 static void bay_notify(struct ibm_struct
*ibm
, u32 event
)
1195 acpi_bus_generate_event(ibm
->device
, event
, 0);
1198 static int cmos_read(char *p
)
1202 /* cmos not supported on 570, 600e/x, 770e, 770x, A21e, A2xm/p,
1203 R30, R31, T20-22, X20-21 */
1205 len
+= sprintf(p
+ len
, "status:\t\tnot supported\n");
1207 len
+= sprintf(p
+ len
, "status:\t\tsupported\n");
1208 len
+= sprintf(p
+ len
, "commands:\t<cmd> (<cmd> is 0-21)\n");
1214 static int cmos_eval(int cmos_cmd
)
1217 return acpi_evalf(cmos_handle
, NULL
, NULL
, "vd", cmos_cmd
);
1222 static int cmos_write(char *buf
)
1230 while ((cmd
= next_cmd(&buf
))) {
1231 if (sscanf(cmd
, "%u", &cmos_cmd
) == 1 &&
1232 cmos_cmd
>= 0 && cmos_cmd
<= 21) {
1237 if (!cmos_eval(cmos_cmd
))
1244 enum led_access_mode
{
1245 IBMACPI_LED_NONE
= 0,
1246 IBMACPI_LED_570
, /* 570 */
1247 IBMACPI_LED_OLD
, /* 600e/x, 770e, 770x, A21e, A2xm/p, T20-22, X20-21 */
1248 IBMACPI_LED_NEW
, /* all others */
1250 static enum led_access_mode led_supported
;
1252 static int led_init(void)
1255 /* led not supported on R30, R31 */
1256 led_supported
= IBMACPI_LED_NONE
;
1257 else if (strlencmp(led_path
, "SLED") == 0)
1259 led_supported
= IBMACPI_LED_570
;
1260 else if (strlencmp(led_path
, "SYSL") == 0)
1261 /* 600e/x, 770e, 770x, A21e, A2xm/p, T20-22, X20-21 */
1262 led_supported
= IBMACPI_LED_OLD
;
1265 led_supported
= IBMACPI_LED_NEW
;
1270 #define led_status(s) ((s) == 0 ? "off" : ((s) == 1 ? "on" : "blinking"))
1272 static int led_read(char *p
)
1276 if (!led_supported
) {
1277 len
+= sprintf(p
+ len
, "status:\t\tnot supported\n");
1280 len
+= sprintf(p
+ len
, "status:\t\tsupported\n");
1282 if (led_supported
== IBMACPI_LED_570
) {
1285 for (i
= 0; i
< 8; i
++) {
1286 if (!acpi_evalf(ec_handle
,
1287 &status
, "GLED", "dd", 1 << i
))
1289 len
+= sprintf(p
+ len
, "%d:\t\t%s\n",
1290 i
, led_status(status
));
1294 len
+= sprintf(p
+ len
, "commands:\t"
1295 "<led> on, <led> off, <led> blink (<led> is 0-7)\n");
1300 /* off, on, blink */
1301 static const int led_sled_arg1
[] = { 0, 1, 3 };
1302 static const int led_exp_hlbl
[] = { 0, 0, 1 }; /* led# * */
1303 static const int led_exp_hlcl
[] = { 0, 1, 1 }; /* led# * */
1304 static const int led_led_arg1
[] = { 0, 0x80, 0xc0 };
1306 #define EC_HLCL 0x0c
1307 #define EC_HLBL 0x0d
1308 #define EC_HLMS 0x0e
1310 static int led_write(char *buf
)
1318 while ((cmd
= next_cmd(&buf
))) {
1319 if (sscanf(cmd
, "%d", &led
) != 1 || led
< 0 || led
> 7)
1322 if (strstr(cmd
, "off")) {
1324 } else if (strstr(cmd
, "on")) {
1326 } else if (strstr(cmd
, "blink")) {
1331 if (led_supported
== IBMACPI_LED_570
) {
1334 if (!acpi_evalf(led_handle
, NULL
, NULL
, "vdd",
1335 led
, led_sled_arg1
[ind
]))
1337 } else if (led_supported
== IBMACPI_LED_OLD
) {
1338 /* 600e/x, 770e, 770x, A21e, A2xm/p, T20-22, X20 */
1340 ret
= ec_write(EC_HLMS
, led
);
1343 ec_write(EC_HLBL
, led
* led_exp_hlbl
[ind
]);
1346 ec_write(EC_HLCL
, led
* led_exp_hlcl
[ind
]);
1351 if (!acpi_evalf(led_handle
, NULL
, NULL
, "vdd",
1352 led
, led_led_arg1
[ind
]))
1360 static int beep_read(char *p
)
1365 len
+= sprintf(p
+ len
, "status:\t\tnot supported\n");
1367 len
+= sprintf(p
+ len
, "status:\t\tsupported\n");
1368 len
+= sprintf(p
+ len
, "commands:\t<cmd> (<cmd> is 0-17)\n");
1374 static int beep_write(char *buf
)
1382 while ((cmd
= next_cmd(&buf
))) {
1383 if (sscanf(cmd
, "%u", &beep_cmd
) == 1 &&
1384 beep_cmd
>= 0 && beep_cmd
<= 17) {
1388 if (!acpi_evalf(beep_handle
, NULL
, NULL
, "vdd", beep_cmd
, 0))
1395 static int acpi_ec_read(int i
, u8
* p
)
1400 if (!acpi_evalf(ecrd_handle
, &v
, NULL
, "dd", i
))
1404 if (ec_read(i
, p
) < 0)
1411 static int acpi_ec_write(int i
, u8 v
)
1414 if (!acpi_evalf(ecwr_handle
, NULL
, NULL
, "vdd", i
, v
))
1417 if (ec_write(i
, v
) < 0)
1424 static enum thermal_access_mode thermal_read_mode
;
1426 static int thermal_init(void)
1430 int acpi_tmp7
= acpi_evalf(ec_handle
, NULL
, "TMP7", "qv");
1432 if (ibm_thinkpad_ec_found
&& experimental
) {
1434 * Direct EC access mode: sensors at registers
1435 * 0x78-0x7F, 0xC0-0xC7. Registers return 0x00 for
1436 * non-implemented, thermal sensors return 0x80 when
1441 for (i
= 0; i
< 8; i
++) {
1442 if (likely(acpi_ec_read(0x78 + i
, &t
))) {
1448 if (likely(acpi_ec_read(0xC0 + i
, &t
))) {
1456 /* This is sheer paranoia, but we handle it anyway */
1459 "ThinkPad ACPI EC access misbehaving, "
1460 "falling back to ACPI TMPx access mode\n");
1461 thermal_read_mode
= IBMACPI_THERMAL_ACPI_TMP07
;
1464 "ThinkPad ACPI EC access misbehaving, "
1465 "disabling thermal sensors access\n");
1466 thermal_read_mode
= IBMACPI_THERMAL_NONE
;
1471 IBMACPI_THERMAL_TPEC_16
: IBMACPI_THERMAL_TPEC_8
;
1473 } else if (acpi_tmp7
) {
1474 if (acpi_evalf(ec_handle
, NULL
, "UPDT", "qv")) {
1475 /* 600e/x, 770e, 770x */
1476 thermal_read_mode
= IBMACPI_THERMAL_ACPI_UPDT
;
1478 /* Standard ACPI TMPx access, max 8 sensors */
1479 thermal_read_mode
= IBMACPI_THERMAL_ACPI_TMP07
;
1482 /* temperatures not supported on 570, G4x, R30, R31, R32 */
1483 thermal_read_mode
= IBMACPI_THERMAL_NONE
;
1489 static int thermal_get_sensors(struct ibm_thermal_sensors_struct
*s
)
1493 char tmpi
[] = "TMPi";
1498 switch (thermal_read_mode
) {
1499 #if IBMACPI_MAX_THERMAL_SENSORS >= 16
1500 case IBMACPI_THERMAL_TPEC_16
:
1501 for (i
= 0; i
< 8; i
++) {
1502 if (!acpi_ec_read(0xC0 + i
, &tmp
))
1504 s
->temp
[i
+ 8] = tmp
* 1000;
1508 case IBMACPI_THERMAL_TPEC_8
:
1509 for (i
= 0; i
< 8; i
++) {
1510 if (!acpi_ec_read(0x78 + i
, &tmp
))
1512 s
->temp
[i
] = tmp
* 1000;
1514 return (thermal_read_mode
== IBMACPI_THERMAL_TPEC_16
) ? 16 : 8;
1516 case IBMACPI_THERMAL_ACPI_UPDT
:
1517 if (!acpi_evalf(ec_handle
, NULL
, "UPDT", "v"))
1519 for (i
= 0; i
< 8; i
++) {
1521 if (!acpi_evalf(ec_handle
, &t
, tmpi
, "d"))
1523 s
->temp
[i
] = (t
- 2732) * 100;
1527 case IBMACPI_THERMAL_ACPI_TMP07
:
1528 for (i
= 0; i
< 8; i
++) {
1530 if (!acpi_evalf(ec_handle
, &t
, tmpi
, "d"))
1532 s
->temp
[i
] = t
* 1000;
1536 case IBMACPI_THERMAL_NONE
:
1542 static int thermal_read(char *p
)
1546 struct ibm_thermal_sensors_struct t
;
1548 n
= thermal_get_sensors(&t
);
1549 if (unlikely(n
< 0))
1552 len
+= sprintf(p
+ len
, "temperatures:\t");
1555 for (i
= 0; i
< (n
- 1); i
++)
1556 len
+= sprintf(p
+ len
, "%d ", t
.temp
[i
] / 1000);
1557 len
+= sprintf(p
+ len
, "%d\n", t
.temp
[i
] / 1000);
1559 len
+= sprintf(p
+ len
, "not supported\n");
1564 static u8 ecdump_regs
[256];
1566 static int ecdump_read(char *p
)
1572 len
+= sprintf(p
+ len
, "EC "
1573 " +00 +01 +02 +03 +04 +05 +06 +07"
1574 " +08 +09 +0a +0b +0c +0d +0e +0f\n");
1575 for (i
= 0; i
< 256; i
+= 16) {
1576 len
+= sprintf(p
+ len
, "EC 0x%02x:", i
);
1577 for (j
= 0; j
< 16; j
++) {
1578 if (!acpi_ec_read(i
+ j
, &v
))
1580 if (v
!= ecdump_regs
[i
+ j
])
1581 len
+= sprintf(p
+ len
, " *%02x", v
);
1583 len
+= sprintf(p
+ len
, " %02x", v
);
1584 ecdump_regs
[i
+ j
] = v
;
1586 len
+= sprintf(p
+ len
, "\n");
1591 /* These are way too dangerous to advertise openly... */
1593 len
+= sprintf(p
+ len
, "commands:\t0x<offset> 0x<value>"
1594 " (<offset> is 00-ff, <value> is 00-ff)\n");
1595 len
+= sprintf(p
+ len
, "commands:\t0x<offset> <value> "
1596 " (<offset> is 00-ff, <value> is 0-255)\n");
1601 static int ecdump_write(char *buf
)
1606 while ((cmd
= next_cmd(&buf
))) {
1607 if (sscanf(cmd
, "0x%x 0x%x", &i
, &v
) == 2) {
1609 } else if (sscanf(cmd
, "0x%x %u", &i
, &v
) == 2) {
1613 if (i
>= 0 && i
< 256 && v
>= 0 && v
< 256) {
1614 if (!acpi_ec_write(i
, v
))
1623 static int brightness_offset
= 0x31;
1625 static int brightness_get(struct backlight_device
*bd
)
1628 if (!acpi_ec_read(brightness_offset
, &level
))
1636 static int brightness_read(char *p
)
1641 if ((level
= brightness_get(NULL
)) < 0) {
1642 len
+= sprintf(p
+ len
, "level:\t\tunreadable\n");
1644 len
+= sprintf(p
+ len
, "level:\t\t%d\n", level
& 0x7);
1645 len
+= sprintf(p
+ len
, "commands:\tup, down\n");
1646 len
+= sprintf(p
+ len
, "commands:\tlevel <level>"
1647 " (<level> is 0-7)\n");
1653 #define BRIGHTNESS_UP 4
1654 #define BRIGHTNESS_DOWN 5
1656 static int brightness_set(int value
)
1658 int cmos_cmd
, inc
, i
;
1659 int current_value
= brightness_get(NULL
);
1663 cmos_cmd
= value
> current_value
? BRIGHTNESS_UP
: BRIGHTNESS_DOWN
;
1664 inc
= value
> current_value
? 1 : -1;
1665 for (i
= current_value
; i
!= value
; i
+= inc
) {
1666 if (!cmos_eval(cmos_cmd
))
1668 if (!acpi_ec_write(brightness_offset
, i
+ inc
))
1675 static int brightness_write(char *buf
)
1681 while ((cmd
= next_cmd(&buf
))) {
1682 if ((level
= brightness_get(NULL
)) < 0)
1686 if (strlencmp(cmd
, "up") == 0) {
1687 new_level
= level
== 7 ? 7 : level
+ 1;
1688 } else if (strlencmp(cmd
, "down") == 0) {
1689 new_level
= level
== 0 ? 0 : level
- 1;
1690 } else if (sscanf(cmd
, "level %d", &new_level
) == 1 &&
1691 new_level
>= 0 && new_level
<= 7) {
1696 brightness_set(new_level
);
1702 static int brightness_update_status(struct backlight_device
*bd
)
1704 return brightness_set(bd
->props
->brightness
);
1707 static struct backlight_properties ibm_backlight_data
= {
1708 .owner
= THIS_MODULE
,
1709 .get_brightness
= brightness_get
,
1710 .update_status
= brightness_update_status
,
1711 .max_brightness
= 7,
1714 static int brightness_init(void)
1716 ibm_backlight_device
= backlight_device_register("ibm", NULL
, NULL
,
1717 &ibm_backlight_data
);
1718 if (IS_ERR(ibm_backlight_device
)) {
1719 printk(IBM_ERR
"Could not register backlight device\n");
1720 return PTR_ERR(ibm_backlight_device
);
1726 static void brightness_exit(void)
1728 if (ibm_backlight_device
) {
1729 backlight_device_unregister(ibm_backlight_device
);
1730 ibm_backlight_device
= NULL
;
1734 static int volume_offset
= 0x30;
1736 static int volume_read(char *p
)
1741 if (!acpi_ec_read(volume_offset
, &level
)) {
1742 len
+= sprintf(p
+ len
, "level:\t\tunreadable\n");
1744 len
+= sprintf(p
+ len
, "level:\t\t%d\n", level
& 0xf);
1745 len
+= sprintf(p
+ len
, "mute:\t\t%s\n", onoff(level
, 6));
1746 len
+= sprintf(p
+ len
, "commands:\tup, down, mute\n");
1747 len
+= sprintf(p
+ len
, "commands:\tlevel <level>"
1748 " (<level> is 0-15)\n");
1754 #define VOLUME_DOWN 0
1756 #define VOLUME_MUTE 2
1758 static int volume_write(char *buf
)
1760 int cmos_cmd
, inc
, i
;
1762 int new_level
, new_mute
;
1765 while ((cmd
= next_cmd(&buf
))) {
1766 if (!acpi_ec_read(volume_offset
, &level
))
1768 new_mute
= mute
= level
& 0x40;
1769 new_level
= level
= level
& 0xf;
1771 if (strlencmp(cmd
, "up") == 0) {
1775 new_level
= level
== 15 ? 15 : level
+ 1;
1776 } else if (strlencmp(cmd
, "down") == 0) {
1780 new_level
= level
== 0 ? 0 : level
- 1;
1781 } else if (sscanf(cmd
, "level %d", &new_level
) == 1 &&
1782 new_level
>= 0 && new_level
<= 15) {
1784 } else if (strlencmp(cmd
, "mute") == 0) {
1789 if (new_level
!= level
) { /* mute doesn't change */
1790 cmos_cmd
= new_level
> level
? VOLUME_UP
: VOLUME_DOWN
;
1791 inc
= new_level
> level
? 1 : -1;
1793 if (mute
&& (!cmos_eval(cmos_cmd
) ||
1794 !acpi_ec_write(volume_offset
, level
)))
1797 for (i
= level
; i
!= new_level
; i
+= inc
)
1798 if (!cmos_eval(cmos_cmd
) ||
1799 !acpi_ec_write(volume_offset
, i
+ inc
))
1802 if (mute
&& (!cmos_eval(VOLUME_MUTE
) ||
1803 !acpi_ec_write(volume_offset
,
1808 if (new_mute
!= mute
) { /* level doesn't change */
1809 cmos_cmd
= new_mute
? VOLUME_MUTE
: VOLUME_UP
;
1811 if (!cmos_eval(cmos_cmd
) ||
1812 !acpi_ec_write(volume_offset
, level
+ new_mute
))
1820 static enum fan_status_access_mode fan_status_access_mode
;
1821 static enum fan_control_access_mode fan_control_access_mode
;
1822 static enum fan_control_commands fan_control_commands
;
1824 static int fan_control_status_known
;
1825 static u8 fan_control_initial_status
;
1827 static void fan_watchdog_fire(struct work_struct
*ignored
);
1828 static int fan_watchdog_maxinterval
;
1829 static DECLARE_DELAYED_WORK(fan_watchdog_task
, fan_watchdog_fire
);
1831 static int fan_init(void)
1833 fan_status_access_mode
= IBMACPI_FAN_NONE
;
1834 fan_control_access_mode
= IBMACPI_FAN_WR_NONE
;
1835 fan_control_commands
= 0;
1836 fan_control_status_known
= 1;
1837 fan_watchdog_maxinterval
= 0;
1840 /* 570, 600e/x, 770e, 770x */
1841 fan_status_access_mode
= IBMACPI_FAN_RD_ACPI_GFAN
;
1843 /* all other ThinkPads: note that even old-style
1844 * ThinkPad ECs supports the fan control register */
1845 if (likely(acpi_ec_read(fan_status_offset
,
1846 &fan_control_initial_status
))) {
1847 fan_status_access_mode
= IBMACPI_FAN_RD_TPEC
;
1849 /* In some ThinkPads, neither the EC nor the ACPI
1850 * DSDT initialize the fan status, and it ends up
1851 * being set to 0x07 when it *could* be either
1854 * Enable for TP-1Y (T43), TP-78 (R51e),
1855 * TP-76 (R52), TP-70 (T43, R52), which are known
1857 if (fan_control_initial_status
== 0x07 &&
1858 ibm_thinkpad_ec_found
&&
1859 ((ibm_thinkpad_ec_found
[0] == '1' &&
1860 ibm_thinkpad_ec_found
[1] == 'Y') ||
1861 (ibm_thinkpad_ec_found
[0] == '7' &&
1862 (ibm_thinkpad_ec_found
[1] == '6' ||
1863 ibm_thinkpad_ec_found
[1] == '8' ||
1864 ibm_thinkpad_ec_found
[1] == '0'))
1867 "fan_init: initial fan status is "
1868 "unknown, assuming it is in auto "
1870 fan_control_status_known
= 0;
1874 "ThinkPad ACPI EC access misbehaving, "
1875 "fan status and control unavailable\n");
1882 fan_control_access_mode
= IBMACPI_FAN_WR_ACPI_SFAN
;
1883 fan_control_commands
|=
1884 IBMACPI_FAN_CMD_LEVEL
| IBMACPI_FAN_CMD_ENABLE
;
1887 /* gfan without sfan means no fan control */
1888 /* all other models implement TP EC 0x2f control */
1892 fan_control_access_mode
=
1893 IBMACPI_FAN_WR_ACPI_FANS
;
1894 fan_control_commands
|=
1895 IBMACPI_FAN_CMD_SPEED
|
1896 IBMACPI_FAN_CMD_LEVEL
|
1897 IBMACPI_FAN_CMD_ENABLE
;
1899 fan_control_access_mode
= IBMACPI_FAN_WR_TPEC
;
1900 fan_control_commands
|=
1901 IBMACPI_FAN_CMD_LEVEL
|
1902 IBMACPI_FAN_CMD_ENABLE
;
1910 static int fan_get_status(u8
*status
)
1915 * Add IBMACPI_FAN_RD_ACPI_FANS ? */
1917 switch (fan_status_access_mode
) {
1918 case IBMACPI_FAN_RD_ACPI_GFAN
:
1919 /* 570, 600e/x, 770e, 770x */
1921 if (unlikely(!acpi_evalf(gfan_handle
, &s
, NULL
, "d")))
1929 case IBMACPI_FAN_RD_TPEC
:
1930 /* all except 570, 600e/x, 770e, 770x */
1931 if (unlikely(!acpi_ec_read(fan_status_offset
, &s
)))
1946 static int fan_get_speed(unsigned int *speed
)
1950 switch (fan_status_access_mode
) {
1951 case IBMACPI_FAN_RD_TPEC
:
1952 /* all except 570, 600e/x, 770e, 770x */
1953 if (unlikely(!acpi_ec_read(fan_rpm_offset
, &lo
) ||
1954 !acpi_ec_read(fan_rpm_offset
+ 1, &hi
)))
1958 *speed
= (hi
<< 8) | lo
;
1969 static void fan_exit(void)
1971 cancel_delayed_work(&fan_watchdog_task
);
1972 flush_scheduled_work();
1975 static void fan_watchdog_reset(void)
1977 static int fan_watchdog_active
= 0;
1979 if (fan_watchdog_active
)
1980 cancel_delayed_work(&fan_watchdog_task
);
1982 if (fan_watchdog_maxinterval
> 0) {
1983 fan_watchdog_active
= 1;
1984 if (!schedule_delayed_work(&fan_watchdog_task
,
1985 msecs_to_jiffies(fan_watchdog_maxinterval
1987 printk(IBM_ERR
"failed to schedule the fan watchdog, "
1988 "watchdog will not trigger\n");
1991 fan_watchdog_active
= 0;
1994 static int fan_read(char *p
)
1999 unsigned int speed
= 0;
2001 switch (fan_status_access_mode
) {
2002 case IBMACPI_FAN_RD_ACPI_GFAN
:
2003 /* 570, 600e/x, 770e, 770x */
2004 if ((rc
= fan_get_status(&status
)) < 0)
2007 len
+= sprintf(p
+ len
, "status:\t\t%s\n"
2009 (status
!= 0) ? "enabled" : "disabled", status
);
2012 case IBMACPI_FAN_RD_TPEC
:
2013 /* all except 570, 600e/x, 770e, 770x */
2014 if ((rc
= fan_get_status(&status
)) < 0)
2017 if (unlikely(!fan_control_status_known
)) {
2018 if (status
!= fan_control_initial_status
)
2019 fan_control_status_known
= 1;
2021 /* Return most likely status. In fact, it
2022 * might be the only possible status */
2023 status
= IBMACPI_FAN_EC_AUTO
;
2026 len
+= sprintf(p
+ len
, "status:\t\t%s\n",
2027 (status
!= 0) ? "enabled" : "disabled");
2029 /* No ThinkPad boots on disengaged mode, we can safely
2030 * assume the tachometer is online if fan control status
2032 if ((rc
= fan_get_speed(&speed
)) < 0)
2035 len
+= sprintf(p
+ len
, "speed:\t\t%d\n", speed
);
2037 if (status
& IBMACPI_FAN_EC_DISENGAGED
)
2038 /* Disengaged mode takes precedence */
2039 len
+= sprintf(p
+ len
, "level:\t\tdisengaged\n");
2040 else if (status
& IBMACPI_FAN_EC_AUTO
)
2041 len
+= sprintf(p
+ len
, "level:\t\tauto\n");
2043 len
+= sprintf(p
+ len
, "level:\t\t%d\n", status
);
2046 case IBMACPI_FAN_NONE
:
2048 len
+= sprintf(p
+ len
, "status:\t\tnot supported\n");
2051 if (fan_control_commands
& IBMACPI_FAN_CMD_LEVEL
) {
2052 len
+= sprintf(p
+ len
, "commands:\tlevel <level>");
2054 switch (fan_control_access_mode
) {
2055 case IBMACPI_FAN_WR_ACPI_SFAN
:
2056 len
+= sprintf(p
+ len
, " (<level> is 0-7)\n");
2060 len
+= sprintf(p
+ len
, " (<level> is 0-7, "
2061 "auto, disengaged)\n");
2066 if (fan_control_commands
& IBMACPI_FAN_CMD_ENABLE
)
2067 len
+= sprintf(p
+ len
, "commands:\tenable, disable\n"
2068 "commands:\twatchdog <timeout> (<timeout> is 0 (off), "
2069 "1-120 (seconds))\n");
2071 if (fan_control_commands
& IBMACPI_FAN_CMD_SPEED
)
2072 len
+= sprintf(p
+ len
, "commands:\tspeed <speed>"
2073 " (<speed> is 0-65535)\n");
2078 static int fan_set_level(int level
)
2080 switch (fan_control_access_mode
) {
2081 case IBMACPI_FAN_WR_ACPI_SFAN
:
2082 if (level
>= 0 && level
<= 7) {
2083 if (!acpi_evalf(sfan_handle
, NULL
, NULL
, "vd", level
))
2089 case IBMACPI_FAN_WR_ACPI_FANS
:
2090 case IBMACPI_FAN_WR_TPEC
:
2091 if ((level
!= IBMACPI_FAN_EC_AUTO
) &&
2092 (level
!= IBMACPI_FAN_EC_DISENGAGED
) &&
2093 ((level
< 0) || (level
> 7)))
2096 if (!acpi_ec_write(fan_status_offset
, level
))
2099 fan_control_status_known
= 1;
2108 static int fan_set_enable(void)
2113 switch (fan_control_access_mode
) {
2114 case IBMACPI_FAN_WR_ACPI_FANS
:
2115 case IBMACPI_FAN_WR_TPEC
:
2116 if ((rc
= fan_get_status(&s
)) < 0)
2119 /* Don't go out of emergency fan mode */
2121 s
= IBMACPI_FAN_EC_AUTO
;
2123 if (!acpi_ec_write(fan_status_offset
, s
))
2126 fan_control_status_known
= 1;
2129 case IBMACPI_FAN_WR_ACPI_SFAN
:
2130 if ((rc
= fan_get_status(&s
)) < 0)
2135 /* Set fan to at least level 4 */
2139 if (!acpi_evalf(sfan_handle
, NULL
, NULL
, "vd", s
))
2149 static int fan_set_disable(void)
2151 switch (fan_control_access_mode
) {
2152 case IBMACPI_FAN_WR_ACPI_FANS
:
2153 case IBMACPI_FAN_WR_TPEC
:
2154 if (!acpi_ec_write(fan_status_offset
, 0x00))
2157 fan_control_status_known
= 1;
2160 case IBMACPI_FAN_WR_ACPI_SFAN
:
2161 if (!acpi_evalf(sfan_handle
, NULL
, NULL
, "vd", 0x00))
2171 static int fan_set_speed(int speed
)
2173 switch (fan_control_access_mode
) {
2174 case IBMACPI_FAN_WR_ACPI_FANS
:
2175 if (speed
>= 0 && speed
<= 65535) {
2176 if (!acpi_evalf(fans_handle
, NULL
, NULL
, "vddd",
2177 speed
, speed
, speed
))
2189 static int fan_write_cmd_level(const char *cmd
, int *rc
)
2193 if (strlencmp(cmd
, "level auto") == 0)
2194 level
= IBMACPI_FAN_EC_AUTO
;
2195 else if (strlencmp(cmd
, "level disengaged") == 0)
2196 level
= IBMACPI_FAN_EC_DISENGAGED
;
2197 else if (sscanf(cmd
, "level %d", &level
) != 1)
2200 if ((*rc
= fan_set_level(level
)) == -ENXIO
)
2201 printk(IBM_ERR
"level command accepted for unsupported "
2202 "access mode %d", fan_control_access_mode
);
2207 static int fan_write_cmd_enable(const char *cmd
, int *rc
)
2209 if (strlencmp(cmd
, "enable") != 0)
2212 if ((*rc
= fan_set_enable()) == -ENXIO
)
2213 printk(IBM_ERR
"enable command accepted for unsupported "
2214 "access mode %d", fan_control_access_mode
);
2219 static int fan_write_cmd_disable(const char *cmd
, int *rc
)
2221 if (strlencmp(cmd
, "disable") != 0)
2224 if ((*rc
= fan_set_disable()) == -ENXIO
)
2225 printk(IBM_ERR
"disable command accepted for unsupported "
2226 "access mode %d", fan_control_access_mode
);
2231 static int fan_write_cmd_speed(const char *cmd
, int *rc
)
2236 * Support speed <low> <medium> <high> ? */
2238 if (sscanf(cmd
, "speed %d", &speed
) != 1)
2241 if ((*rc
= fan_set_speed(speed
)) == -ENXIO
)
2242 printk(IBM_ERR
"speed command accepted for unsupported "
2243 "access mode %d", fan_control_access_mode
);
2248 static int fan_write_cmd_watchdog(const char *cmd
, int *rc
)
2252 if (sscanf(cmd
, "watchdog %d", &interval
) != 1)
2255 if (interval
< 0 || interval
> 120)
2258 fan_watchdog_maxinterval
= interval
;
2263 static int fan_write(char *buf
)
2268 while (!rc
&& (cmd
= next_cmd(&buf
))) {
2269 if (!((fan_control_commands
& IBMACPI_FAN_CMD_LEVEL
) &&
2270 fan_write_cmd_level(cmd
, &rc
)) &&
2271 !((fan_control_commands
& IBMACPI_FAN_CMD_ENABLE
) &&
2272 (fan_write_cmd_enable(cmd
, &rc
) ||
2273 fan_write_cmd_disable(cmd
, &rc
) ||
2274 fan_write_cmd_watchdog(cmd
, &rc
))) &&
2275 !((fan_control_commands
& IBMACPI_FAN_CMD_SPEED
) &&
2276 fan_write_cmd_speed(cmd
, &rc
))
2280 fan_watchdog_reset();
2286 static void fan_watchdog_fire(struct work_struct
*ignored
)
2288 printk(IBM_NOTICE
"fan watchdog: enabling fan\n");
2289 if (fan_set_enable()) {
2290 printk(IBM_ERR
"fan watchdog: error while enabling fan\n");
2291 /* reschedule for later */
2292 fan_watchdog_reset();
2296 static struct ibm_struct ibms
[] = {
2299 .init
= ibm_acpi_driver_init
,
2300 .read
= driver_read
,
2304 .hid
= IBM_HKEY_HID
,
2305 .init
= hotkey_init
,
2306 .read
= hotkey_read
,
2307 .write
= hotkey_write
,
2308 .exit
= hotkey_exit
,
2309 .notify
= hotkey_notify
,
2310 .handle
= &hkey_handle
,
2311 .type
= ACPI_DEVICE_NOTIFY
,
2314 .name
= "bluetooth",
2315 .init
= bluetooth_init
,
2316 .read
= bluetooth_read
,
2317 .write
= bluetooth_write
,
2330 .write
= video_write
,
2337 .write
= light_write
,
2339 #ifdef CONFIG_ACPI_IBM_DOCK
2343 .write
= dock_write
,
2344 .notify
= dock_notify
,
2345 .handle
= &dock_handle
,
2346 .type
= ACPI_SYSTEM_NOTIFY
,
2351 .notify
= dock_notify
,
2352 .handle
= &pci_handle
,
2353 .type
= ACPI_SYSTEM_NOTIFY
,
2361 .notify
= bay_notify
,
2362 .handle
= &bay_handle
,
2363 .type
= ACPI_SYSTEM_NOTIFY
,
2368 .write
= cmos_write
,
2379 .write
= beep_write
,
2383 .init
= thermal_init
,
2384 .read
= thermal_read
,
2388 .read
= ecdump_read
,
2389 .write
= ecdump_write
,
2393 .name
= "brightness",
2394 .read
= brightness_read
,
2395 .write
= brightness_write
,
2396 .init
= brightness_init
,
2397 .exit
= brightness_exit
,
2401 .read
= volume_read
,
2402 .write
= volume_write
,
2414 static int dispatch_read(char *page
, char **start
, off_t off
, int count
,
2415 int *eof
, void *data
)
2417 struct ibm_struct
*ibm
= data
;
2420 if (!ibm
|| !ibm
->read
)
2423 len
= ibm
->read(page
);
2427 if (len
<= off
+ count
)
2429 *start
= page
+ off
;
2439 static int dispatch_write(struct file
*file
, const char __user
* userbuf
,
2440 unsigned long count
, void *data
)
2442 struct ibm_struct
*ibm
= data
;
2446 if (!ibm
|| !ibm
->write
)
2449 kernbuf
= kmalloc(count
+ 2, GFP_KERNEL
);
2453 if (copy_from_user(kernbuf
, userbuf
, count
)) {
2459 strcat(kernbuf
, ",");
2460 ret
= ibm
->write(kernbuf
);
2469 static void dispatch_notify(acpi_handle handle
, u32 event
, void *data
)
2471 struct ibm_struct
*ibm
= data
;
2473 if (!ibm
|| !ibm
->notify
)
2476 ibm
->notify(ibm
, event
);
2479 static int __init
setup_notify(struct ibm_struct
*ibm
)
2487 ret
= acpi_bus_get_device(*ibm
->handle
, &ibm
->device
);
2489 printk(IBM_ERR
"%s device not present\n", ibm
->name
);
2493 acpi_driver_data(ibm
->device
) = ibm
;
2494 sprintf(acpi_device_class(ibm
->device
), "%s/%s", IBM_NAME
, ibm
->name
);
2496 status
= acpi_install_notify_handler(*ibm
->handle
, ibm
->type
,
2497 dispatch_notify
, ibm
);
2498 if (ACPI_FAILURE(status
)) {
2499 printk(IBM_ERR
"acpi_install_notify_handler(%s) failed: %d\n",
2503 ibm
->notify_installed
= 1;
2507 static int __init
ibm_device_add(struct acpi_device
*device
)
2512 static int __init
register_driver(struct ibm_struct
*ibm
)
2516 ibm
->driver
= kzalloc(sizeof(struct acpi_driver
), GFP_KERNEL
);
2518 printk(IBM_ERR
"kmalloc(ibm->driver) failed\n");
2522 sprintf(ibm
->driver
->name
, "%s_%s", IBM_NAME
, ibm
->name
);
2523 ibm
->driver
->ids
= ibm
->hid
;
2524 ibm
->driver
->ops
.add
= &ibm_device_add
;
2526 ret
= acpi_bus_register_driver(ibm
->driver
);
2528 printk(IBM_ERR
"acpi_bus_register_driver(%s) failed: %d\n",
2536 static int __init
ibm_init(struct ibm_struct
*ibm
)
2539 struct proc_dir_entry
*entry
;
2541 if (ibm
->experimental
&& !experimental
)
2545 ret
= register_driver(ibm
);
2548 ibm
->driver_registered
= 1;
2555 ibm
->init_called
= 1;
2559 entry
= create_proc_entry(ibm
->name
,
2560 S_IFREG
| S_IRUGO
| S_IWUSR
,
2563 printk(IBM_ERR
"unable to create proc entry %s\n",
2567 entry
->owner
= THIS_MODULE
;
2569 entry
->read_proc
= &dispatch_read
;
2571 entry
->write_proc
= &dispatch_write
;
2572 ibm
->proc_created
= 1;
2576 ret
= setup_notify(ibm
);
2584 static void ibm_exit(struct ibm_struct
*ibm
)
2586 if (ibm
->notify_installed
)
2587 acpi_remove_notify_handler(*ibm
->handle
, ibm
->type
,
2590 if (ibm
->proc_created
)
2591 remove_proc_entry(ibm
->name
, proc_dir
);
2593 if (ibm
->init_called
&& ibm
->exit
)
2596 if (ibm
->driver_registered
) {
2597 acpi_bus_unregister_driver(ibm
->driver
);
2602 static void __init
ibm_handle_init(char *name
,
2603 acpi_handle
* handle
, acpi_handle parent
,
2604 char **paths
, int num_paths
, char **path
)
2609 for (i
= 0; i
< num_paths
; i
++) {
2610 status
= acpi_get_handle(parent
, paths
[i
], handle
);
2611 if (ACPI_SUCCESS(status
)) {
2620 #define IBM_HANDLE_INIT(object) \
2621 ibm_handle_init(#object, &object##_handle, *object##_parent, \
2622 object##_paths, ARRAY_SIZE(object##_paths), &object##_path)
2624 static int __init
set_ibm_param(const char *val
, struct kernel_param
*kp
)
2628 for (i
= 0; i
< ARRAY_SIZE(ibms
); i
++)
2629 if (strcmp(ibms
[i
].name
, kp
->name
) == 0 && ibms
[i
].write
) {
2630 if (strlen(val
) > sizeof(ibms
[i
].param
) - 2)
2632 strcpy(ibms
[i
].param
, val
);
2633 strcat(ibms
[i
].param
, ",");
2640 #define IBM_PARAM(feature) \
2641 module_param_call(feature, set_ibm_param, NULL, NULL, 0)
2644 IBM_PARAM(bluetooth
);
2647 #ifdef CONFIG_ACPI_IBM_DOCK
2655 IBM_PARAM(brightness
);
2659 static void acpi_ibm_exit(void)
2663 for (i
= ARRAY_SIZE(ibms
) - 1; i
>= 0; i
--)
2667 remove_proc_entry(IBM_DIR
, acpi_root_dir
);
2669 if (ibm_thinkpad_ec_found
)
2670 kfree(ibm_thinkpad_ec_found
);
2673 static char* __init
check_dmi_for_ec(void)
2675 struct dmi_device
*dev
= NULL
;
2676 char ec_fw_string
[18];
2679 * ThinkPad T23 or newer, A31 or newer, R50e or newer,
2680 * X32 or newer, all Z series; Some models must have an
2681 * up-to-date BIOS or they will not be detected.
2683 * See http://thinkwiki.org/wiki/List_of_DMI_IDs
2685 while ((dev
= dmi_find_device(DMI_DEV_TYPE_OEM_STRING
, NULL
, dev
))) {
2686 if (sscanf(dev
->name
,
2687 "IBM ThinkPad Embedded Controller -[%17c",
2688 ec_fw_string
) == 1) {
2689 ec_fw_string
[sizeof(ec_fw_string
) - 1] = 0;
2690 ec_fw_string
[strcspn(ec_fw_string
, " ]")] = 0;
2691 return kstrdup(ec_fw_string
, GFP_KERNEL
);
2697 static int __init
acpi_ibm_init(void)
2704 /* ec is required because many other handles are relative to it */
2705 IBM_HANDLE_INIT(ec
);
2707 printk(IBM_ERR
"ec object not found\n");
2711 /* Models with newer firmware report the EC in DMI */
2712 ibm_thinkpad_ec_found
= check_dmi_for_ec();
2714 /* these handles are not required */
2715 IBM_HANDLE_INIT(vid
);
2716 IBM_HANDLE_INIT(vid2
);
2717 IBM_HANDLE_INIT(ledb
);
2718 IBM_HANDLE_INIT(led
);
2719 IBM_HANDLE_INIT(hkey
);
2720 IBM_HANDLE_INIT(lght
);
2721 IBM_HANDLE_INIT(cmos
);
2722 #ifdef CONFIG_ACPI_IBM_DOCK
2723 IBM_HANDLE_INIT(dock
);
2725 IBM_HANDLE_INIT(pci
);
2726 IBM_HANDLE_INIT(bay
);
2728 IBM_HANDLE_INIT(bay_ej
);
2729 IBM_HANDLE_INIT(bay2
);
2731 IBM_HANDLE_INIT(bay2_ej
);
2732 IBM_HANDLE_INIT(beep
);
2733 IBM_HANDLE_INIT(ecrd
);
2734 IBM_HANDLE_INIT(ecwr
);
2735 IBM_HANDLE_INIT(fans
);
2736 IBM_HANDLE_INIT(gfan
);
2737 IBM_HANDLE_INIT(sfan
);
2739 proc_dir
= proc_mkdir(IBM_DIR
, acpi_root_dir
);
2741 printk(IBM_ERR
"unable to create proc dir %s", IBM_DIR
);
2745 proc_dir
->owner
= THIS_MODULE
;
2747 for (i
= 0; i
< ARRAY_SIZE(ibms
); i
++) {
2748 ret
= ibm_init(&ibms
[i
]);
2749 if (ret
>= 0 && *ibms
[i
].param
)
2750 ret
= ibms
[i
].write(ibms
[i
].param
);
2760 module_init(acpi_ibm_init
);
2761 module_exit(acpi_ibm_exit
);