2 * asus_acpi.c - Asus Laptop ACPI Extras
5 * Copyright (C) 2002-2005 Julien Lerouge, 2003-2006 Karol Kozimor
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
22 * The development page for this driver is located at
23 * http://sourceforge.net/projects/acpi4asus/
26 * Pontus Fuchs - Helper functions, cleanup
27 * Johann Wiesner - Small compile fixes
28 * John Belmonte - ACPI code for Toshiba laptop was a good starting point.
29 * �ic Burghard - LED display support for W1N
33 #include <linux/kernel.h>
34 #include <linux/module.h>
35 #include <linux/init.h>
36 #include <linux/types.h>
37 #include <linux/proc_fs.h>
38 #include <linux/backlight.h>
39 #include <acpi/acpi_drivers.h>
40 #include <acpi/acpi_bus.h>
41 #include <asm/uaccess.h>
43 #define ASUS_ACPI_VERSION "0.30"
45 #define PROC_ASUS "asus" //the directory
46 #define PROC_MLED "mled"
47 #define PROC_WLED "wled"
48 #define PROC_TLED "tled"
49 #define PROC_BT "bluetooth"
50 #define PROC_LEDD "ledd"
51 #define PROC_INFO "info"
52 #define PROC_LCD "lcd"
53 #define PROC_BRN "brn"
54 #define PROC_DISP "disp"
56 #define ACPI_HOTK_NAME "Asus Laptop ACPI Extras Driver"
57 #define ACPI_HOTK_CLASS "hotkey"
58 #define ACPI_HOTK_DEVICE_NAME "Hotkey"
59 #define ACPI_HOTK_HID "ATK0100"
62 * Some events we use, same for all Asus
68 * Flags for hotk status
70 #define MLED_ON 0x01 //mail LED
71 #define WLED_ON 0x02 //wireless LED
72 #define TLED_ON 0x04 //touchpad LED
73 #define BT_ON 0x08 //internal Bluetooth
75 MODULE_AUTHOR("Julien Lerouge, Karol Kozimor");
76 MODULE_DESCRIPTION(ACPI_HOTK_NAME
);
77 MODULE_LICENSE("GPL");
79 static uid_t asus_uid
;
80 static gid_t asus_gid
;
81 module_param(asus_uid
, uint
, 0);
82 MODULE_PARM_DESC(asus_uid
, "UID for entries in /proc/acpi/asus.\n");
83 module_param(asus_gid
, uint
, 0);
84 MODULE_PARM_DESC(asus_gid
, "GID for entries in /proc/acpi/asus.\n");
86 /* For each model, all features implemented,
87 * those marked with R are relative to HOTK, A for absolute */
89 char *name
; //name of the laptop________________A
90 char *mt_mled
; //method to handle mled_____________R
91 char *mled_status
; //node to handle mled reading_______A
92 char *mt_wled
; //method to handle wled_____________R
93 char *wled_status
; //node to handle wled reading_______A
94 char *mt_tled
; //method to handle tled_____________R
95 char *tled_status
; //node to handle tled reading_______A
96 char *mt_ledd
; //method to handle LED display______R
97 char *mt_bt_switch
; //method to switch Bluetooth on/off_R
98 char *bt_status
; //no model currently supports this__?
99 char *mt_lcd_switch
; //method to turn LCD on/off_________A
100 char *lcd_status
; //node to read LCD panel state______A
101 char *brightness_up
; //method to set brightness up_______A
102 char *brightness_down
; //guess what ?______________________A
103 char *brightness_set
; //method to set absolute brightness_R
104 char *brightness_get
; //method to get absolute brightness_R
105 char *brightness_status
; //node to get brightness____________A
106 char *display_set
; //method to set video output________R
107 char *display_get
; //method to get video output________R
111 * This is the main structure, we can use it to store anything interesting
112 * about the hotk device
115 struct acpi_device
*device
; //the device we are in
116 acpi_handle handle
; //the handle of the hotk device
117 char status
; //status of the hotk, for LEDs, ...
118 u32 ledd_status
; //status of the LED display
119 struct model_data
*methods
; //methods available on the laptop
120 u8 brightness
; //brightness level
122 A1x
= 0, //A1340D, A1300F
129 L3H
, //L3H, L2000E, L5D
134 M2E
, //M2400E, L4400L
135 M6N
, //M6800N, W3400N
136 M6R
, //M6700R, A3000G
138 S1x
, //S1300A, but also L1400B and M2400A (L84F)
139 S2x
, //S200 (J1 reported), Victor MP-XP7210
143 xxN
, //M2400N, M3700N, M5200N, M6800N, S1300N, S5200N
147 } model
; //Models currently supported
148 u16 event_count
[128]; //count for each event TODO make this better
152 #define A1x_PREFIX "\\_SB.PCI0.ISA.EC0."
153 #define L3C_PREFIX "\\_SB.PCI0.PX40.ECD0."
154 #define M1A_PREFIX "\\_SB.PCI0.PX40.EC0."
155 #define P30_PREFIX "\\_SB.PCI0.LPCB.EC0."
156 #define S1x_PREFIX "\\_SB.PCI0.PX40."
157 #define S2x_PREFIX A1x_PREFIX
158 #define xxN_PREFIX "\\_SB.PCI0.SBRG.EC0."
160 static struct model_data model_conf
[END_MODEL
] = {
162 * TODO I have seen a SWBX and AIBX method on some models, like L1400B,
163 * it seems to be a kind of switch, but what for ?
169 .mled_status
= "\\MAIL",
170 .mt_lcd_switch
= A1x_PREFIX
"_Q10",
171 .lcd_status
= "\\BKLI",
172 .brightness_up
= A1x_PREFIX
"_Q0E",
173 .brightness_down
= A1x_PREFIX
"_Q0F"},
179 .wled_status
= "\\SG66",
180 .mt_lcd_switch
= "\\Q10",
181 .lcd_status
= "\\BAOF",
182 .brightness_set
= "SPLV",
183 .brightness_get
= "GPLV",
184 .display_set
= "SDSP",
185 .display_get
= "\\INFB"},
190 /* WLED present, but not controlled by ACPI */
191 .mt_lcd_switch
= xxN_PREFIX
"_Q10",
192 .brightness_set
= "SPLV",
193 .brightness_get
= "GPLV",
194 .display_set
= "SDSP",
195 .display_get
= "\\ADVG"},
200 .mt_lcd_switch
= "\\Q0D",
201 .lcd_status
= "\\GP11",
202 .brightness_up
= "\\Q0C",
203 .brightness_down
= "\\Q0B",
204 .brightness_status
= "\\BLVL",
205 .display_set
= "SDSP",
206 .display_get
= "\\INFB"},
211 .mled_status
= "\\SGP6",
213 .wled_status
= "\\RCP3",
214 .mt_lcd_switch
= "\\Q10",
215 .lcd_status
= "\\SGP0",
216 .brightness_up
= "\\Q0E",
217 .brightness_down
= "\\Q0F",
218 .display_set
= "SDSP",
219 .display_get
= "\\INFB"},
225 .mt_lcd_switch
= L3C_PREFIX
"_Q10",
226 .lcd_status
= "\\GL32",
227 .brightness_set
= "SPLV",
228 .brightness_get
= "GPLV",
229 .display_set
= "SDSP",
230 .display_get
= "\\_SB.PCI0.PCI1.VGAC.NMAP"},
235 .mled_status
= "\\MALD",
237 .mt_lcd_switch
= "\\Q10",
238 .lcd_status
= "\\BKLG",
239 .brightness_set
= "SPLV",
240 .brightness_get
= "GPLV",
241 .display_set
= "SDSP",
242 .display_get
= "\\INFB"},
248 .mt_lcd_switch
= "EHK",
249 .lcd_status
= "\\_SB.PCI0.PM.PBC",
250 .brightness_set
= "SPLV",
251 .brightness_get
= "GPLV",
252 .display_set
= "SDSP",
253 .display_get
= "\\INFB"},
259 .wled_status
= "\\_SB.PCI0.SBRG.SG13",
260 .mt_lcd_switch
= xxN_PREFIX
"_Q10",
261 .lcd_status
= "\\_SB.PCI0.SBSM.SEO4",
262 .brightness_set
= "SPLV",
263 .brightness_get
= "GPLV",
264 .display_set
= "SDSP",
265 .display_get
= "\\_SB.PCI0.P0P1.VGA.GETD"},
270 /* WLED present, but not controlled by ACPI */
272 .mt_lcd_switch
= "\\Q0D",
273 .lcd_status
= "\\BAOF",
274 .brightness_set
= "SPLV",
275 .brightness_get
= "GPLV",
276 .display_set
= "SDSP",
277 .display_get
= "\\INFB"},
281 /* No features, but at least support the hotkeys */
287 .mt_lcd_switch
= M1A_PREFIX
"Q10",
288 .lcd_status
= "\\PNOF",
289 .brightness_up
= M1A_PREFIX
"Q0E",
290 .brightness_down
= M1A_PREFIX
"Q0F",
291 .brightness_status
= "\\BRIT",
292 .display_set
= "SDSP",
293 .display_get
= "\\INFB"},
299 .mt_lcd_switch
= "\\Q10",
300 .lcd_status
= "\\GP06",
301 .brightness_set
= "SPLV",
302 .brightness_get
= "GPLV",
303 .display_set
= "SDSP",
304 .display_get
= "\\INFB"},
310 .wled_status
= "\\_SB.PCI0.SBRG.SG13",
311 .mt_lcd_switch
= xxN_PREFIX
"_Q10",
312 .lcd_status
= "\\_SB.BKLT",
313 .brightness_set
= "SPLV",
314 .brightness_get
= "GPLV",
315 .display_set
= "SDSP",
316 .display_get
= "\\SSTE"},
322 .mt_lcd_switch
= xxN_PREFIX
"_Q10",
323 .lcd_status
= "\\_SB.PCI0.SBSM.SEO4",
324 .brightness_set
= "SPLV",
325 .brightness_get
= "GPLV",
326 .display_set
= "SDSP",
327 .display_get
= "\\_SB.PCI0.P0P1.VGA.GETD"},
332 .mt_lcd_switch
= P30_PREFIX
"_Q0E",
333 .lcd_status
= "\\BKLT",
334 .brightness_up
= P30_PREFIX
"_Q68",
335 .brightness_down
= P30_PREFIX
"_Q69",
336 .brightness_get
= "GPLV",
337 .display_set
= "SDSP",
338 .display_get
= "\\DNXT"},
343 .mled_status
= "\\EMLE",
345 .mt_lcd_switch
= S1x_PREFIX
"Q10",
346 .lcd_status
= "\\PNOF",
347 .brightness_set
= "SPLV",
348 .brightness_get
= "GPLV"},
353 .mled_status
= "\\MAIL",
354 .mt_lcd_switch
= S2x_PREFIX
"_Q10",
355 .lcd_status
= "\\BKLI",
356 .brightness_up
= S2x_PREFIX
"_Q0B",
357 .brightness_down
= S2x_PREFIX
"_Q0A"},
364 .mt_lcd_switch
= xxN_PREFIX
"_Q10",
365 .lcd_status
= "\\BKLT",
366 .brightness_set
= "SPLV",
367 .brightness_get
= "GPLV",
368 .display_set
= "SDSP",
369 .display_get
= "\\ADVG"},
373 .mt_bt_switch
= "BLED",
375 .mt_lcd_switch
= xxN_PREFIX
"_Q10",
376 .brightness_set
= "SPLV",
377 .brightness_get
= "GPLV",
378 .display_set
= "SDSP",
379 .display_get
= "\\ADVG"},
385 .mt_lcd_switch
= xxN_PREFIX
"_Q10",
386 .lcd_status
= "\\BKLT",
387 .brightness_set
= "SPLV",
388 .brightness_get
= "GPLV",
389 .display_set
= "SDSP",
390 .display_get
= "\\INFB"},
395 /* WLED present, but not controlled by ACPI */
396 .mt_lcd_switch
= xxN_PREFIX
"_Q10",
397 .lcd_status
= "\\BKLT",
398 .brightness_set
= "SPLV",
399 .brightness_get
= "GPLV",
400 .display_set
= "SDSP",
401 .display_get
= "\\ADVG"},
405 .brightness_set
= "SPLV",
406 .brightness_get
= "GPLV",
407 .mt_bt_switch
= "BLED",
414 static struct proc_dir_entry
*asus_proc_dir
;
416 static struct backlight_device
*asus_backlight_device
;
419 * This header is made available to allow proper configuration given model,
420 * revision number , ... this info cannot go in struct asus_hotk because it is
421 * available before the hotk
423 static struct acpi_table_header
*asus_info
;
425 /* The actual device the driver binds to */
426 static struct asus_hotk
*hotk
;
429 * The hotkey driver declaration
431 static int asus_hotk_add(struct acpi_device
*device
);
432 static int asus_hotk_remove(struct acpi_device
*device
, int type
);
433 static struct acpi_driver asus_hotk_driver
= {
435 .class = ACPI_HOTK_CLASS
,
436 .ids
= ACPI_HOTK_HID
,
438 .add
= asus_hotk_add
,
439 .remove
= asus_hotk_remove
,
444 * This function evaluates an ACPI method, given an int as parameter, the
445 * method is searched within the scope of the handle, can be NULL. The output
446 * of the method is written is output, which can also be NULL
448 * returns 1 if write is successful, 0 else.
450 static int write_acpi_int(acpi_handle handle
, const char *method
, int val
,
451 struct acpi_buffer
*output
)
453 struct acpi_object_list params
; //list of input parameters (an int here)
454 union acpi_object in_obj
; //the only param we use
458 params
.pointer
= &in_obj
;
459 in_obj
.type
= ACPI_TYPE_INTEGER
;
460 in_obj
.integer
.value
= val
;
462 status
= acpi_evaluate_object(handle
, (char *)method
, ¶ms
, output
);
463 return (status
== AE_OK
);
466 static int read_acpi_int(acpi_handle handle
, const char *method
, int *val
)
468 struct acpi_buffer output
;
469 union acpi_object out_obj
;
472 output
.length
= sizeof(out_obj
);
473 output
.pointer
= &out_obj
;
475 status
= acpi_evaluate_object(handle
, (char *)method
, NULL
, &output
);
476 *val
= out_obj
.integer
.value
;
477 return (status
== AE_OK
) && (out_obj
.type
== ACPI_TYPE_INTEGER
);
481 * We write our info in page, we begin at offset off and cannot write more
482 * than count bytes. We set eof to 1 if we handle those 2 values. We return the
483 * number of bytes written in page
486 proc_read_info(char *page
, char **start
, off_t off
, int count
, int *eof
,
491 char buf
[16]; //enough for all info
493 * We use the easy way, we don't care of off and count, so we don't set eof
497 len
+= sprintf(page
, ACPI_HOTK_NAME
" " ASUS_ACPI_VERSION
"\n");
498 len
+= sprintf(page
+ len
, "Model reference : %s\n",
499 hotk
->methods
->name
);
501 * The SFUN method probably allows the original driver to get the list
502 * of features supported by a given model. For now, 0x0100 or 0x0800
503 * bit signifies that the laptop is equipped with a Wi-Fi MiniPCI card.
504 * The significance of others is yet to be found.
506 if (read_acpi_int(hotk
->handle
, "SFUN", &temp
))
508 sprintf(page
+ len
, "SFUN value : 0x%04x\n", temp
);
510 * Another value for userspace: the ASYM method returns 0x02 for
511 * battery low and 0x04 for battery critical, its readings tend to be
512 * more accurate than those provided by _BST.
513 * Note: since not all the laptops provide this method, errors are
516 if (read_acpi_int(hotk
->handle
, "ASYM", &temp
))
518 sprintf(page
+ len
, "ASYM value : 0x%04x\n", temp
);
520 snprintf(buf
, 16, "%d", asus_info
->length
);
521 len
+= sprintf(page
+ len
, "DSDT length : %s\n", buf
);
522 snprintf(buf
, 16, "%d", asus_info
->checksum
);
523 len
+= sprintf(page
+ len
, "DSDT checksum : %s\n", buf
);
524 snprintf(buf
, 16, "%d", asus_info
->revision
);
525 len
+= sprintf(page
+ len
, "DSDT revision : %s\n", buf
);
526 snprintf(buf
, 7, "%s", asus_info
->oem_id
);
527 len
+= sprintf(page
+ len
, "OEM id : %s\n", buf
);
528 snprintf(buf
, 9, "%s", asus_info
->oem_table_id
);
529 len
+= sprintf(page
+ len
, "OEM table id : %s\n", buf
);
530 snprintf(buf
, 16, "%x", asus_info
->oem_revision
);
531 len
+= sprintf(page
+ len
, "OEM revision : 0x%s\n", buf
);
532 snprintf(buf
, 5, "%s", asus_info
->asl_compiler_id
);
533 len
+= sprintf(page
+ len
, "ASL comp vendor id : %s\n", buf
);
534 snprintf(buf
, 16, "%x", asus_info
->asl_compiler_revision
);
535 len
+= sprintf(page
+ len
, "ASL comp revision : 0x%s\n", buf
);
543 * We write our info in page, we begin at offset off and cannot write more
544 * than count bytes. We set eof to 1 if we handle those 2 values. We return the
545 * number of bytes written in page
548 /* Generic LED functions */
549 static int read_led(const char *ledname
, int ledmask
)
554 if (read_acpi_int(NULL
, ledname
, &led_status
))
557 printk(KERN_WARNING
"Asus ACPI: Error reading LED "
560 return (hotk
->status
& ledmask
) ? 1 : 0;
563 static int parse_arg(const char __user
* buf
, unsigned long count
, int *val
)
570 if (copy_from_user(s
, buf
, count
))
573 if (sscanf(s
, "%i", val
) != 1)
578 /* FIXME: kill extraneous args so it can be called independently */
580 write_led(const char __user
* buffer
, unsigned long count
,
581 char *ledname
, int ledmask
, int invert
)
586 rv
= parse_arg(buffer
, count
, &value
);
588 led_out
= value
? 1 : 0;
591 (led_out
) ? (hotk
->status
| ledmask
) : (hotk
->status
& ~ledmask
);
593 if (invert
) /* invert target value */
594 led_out
= !led_out
& 0x1;
596 if (!write_acpi_int(hotk
->handle
, ledname
, led_out
, NULL
))
597 printk(KERN_WARNING
"Asus ACPI: LED (%s) write failed\n",
604 * Proc handlers for MLED
607 proc_read_mled(char *page
, char **start
, off_t off
, int count
, int *eof
,
610 return sprintf(page
, "%d\n",
611 read_led(hotk
->methods
->mled_status
, MLED_ON
));
615 proc_write_mled(struct file
*file
, const char __user
* buffer
,
616 unsigned long count
, void *data
)
618 return write_led(buffer
, count
, hotk
->methods
->mt_mled
, MLED_ON
, 1);
622 * Proc handlers for LED display
625 proc_read_ledd(char *page
, char **start
, off_t off
, int count
, int *eof
,
628 return sprintf(page
, "0x%08x\n", hotk
->ledd_status
);
632 proc_write_ledd(struct file
*file
, const char __user
* buffer
,
633 unsigned long count
, void *data
)
637 rv
= parse_arg(buffer
, count
, &value
);
640 (hotk
->handle
, hotk
->methods
->mt_ledd
, value
, NULL
))
642 "Asus ACPI: LED display write failed\n");
644 hotk
->ledd_status
= (u32
) value
;
650 * Proc handlers for WLED
653 proc_read_wled(char *page
, char **start
, off_t off
, int count
, int *eof
,
656 return sprintf(page
, "%d\n",
657 read_led(hotk
->methods
->wled_status
, WLED_ON
));
661 proc_write_wled(struct file
*file
, const char __user
* buffer
,
662 unsigned long count
, void *data
)
664 return write_led(buffer
, count
, hotk
->methods
->mt_wled
, WLED_ON
, 0);
668 * Proc handlers for Bluetooth
671 proc_read_bluetooth(char *page
, char **start
, off_t off
, int count
, int *eof
,
674 return sprintf(page
, "%d\n", read_led(hotk
->methods
->bt_status
, BT_ON
));
678 proc_write_bluetooth(struct file
*file
, const char __user
* buffer
,
679 unsigned long count
, void *data
)
681 /* Note: mt_bt_switch controls both internal Bluetooth adapter's
682 presence and its LED */
683 return write_led(buffer
, count
, hotk
->methods
->mt_bt_switch
, BT_ON
, 0);
687 * Proc handlers for TLED
690 proc_read_tled(char *page
, char **start
, off_t off
, int count
, int *eof
,
693 return sprintf(page
, "%d\n",
694 read_led(hotk
->methods
->tled_status
, TLED_ON
));
698 proc_write_tled(struct file
*file
, const char __user
* buffer
,
699 unsigned long count
, void *data
)
701 return write_led(buffer
, count
, hotk
->methods
->mt_tled
, TLED_ON
, 0);
704 static int get_lcd_state(void)
708 if (hotk
->model
!= L3H
) {
709 /* We don't have to check anything if we are here */
710 if (!read_acpi_int(NULL
, hotk
->methods
->lcd_status
, &lcd
))
712 "Asus ACPI: Error reading LCD status\n");
714 if (hotk
->model
== L2D
)
716 } else { /* L3H and the like have to be handled differently */
717 acpi_status status
= 0;
718 struct acpi_object_list input
;
719 union acpi_object mt_params
[2];
720 struct acpi_buffer output
;
721 union acpi_object out_obj
;
724 input
.pointer
= mt_params
;
725 /* Note: the following values are partly guessed up, but
726 otherwise they seem to work */
727 mt_params
[0].type
= ACPI_TYPE_INTEGER
;
728 mt_params
[0].integer
.value
= 0x02;
729 mt_params
[1].type
= ACPI_TYPE_INTEGER
;
730 mt_params
[1].integer
.value
= 0x02;
732 output
.length
= sizeof(out_obj
);
733 output
.pointer
= &out_obj
;
736 acpi_evaluate_object(NULL
, hotk
->methods
->lcd_status
,
740 if (out_obj
.type
== ACPI_TYPE_INTEGER
)
741 /* That's what the AML code does */
742 lcd
= out_obj
.integer
.value
>> 8;
748 static int set_lcd_state(int value
)
751 acpi_status status
= 0;
754 if (lcd
!= get_lcd_state()) {
756 if (hotk
->model
!= L3H
) {
758 acpi_evaluate_object(NULL
,
759 hotk
->methods
->mt_lcd_switch
,
761 } else { /* L3H and the like have to be handled differently */
763 (hotk
->handle
, hotk
->methods
->mt_lcd_switch
, 0x07,
766 /* L3H's AML executes EHK (0x07) upon Fn+F7 keypress,
767 the exact behaviour is simulated here */
769 if (ACPI_FAILURE(status
))
770 printk(KERN_WARNING
"Asus ACPI: Error switching LCD\n");
777 proc_read_lcd(char *page
, char **start
, off_t off
, int count
, int *eof
,
780 return sprintf(page
, "%d\n", get_lcd_state());
784 proc_write_lcd(struct file
*file
, const char __user
* buffer
,
785 unsigned long count
, void *data
)
789 rv
= parse_arg(buffer
, count
, &value
);
791 set_lcd_state(value
);
795 static int read_brightness(struct backlight_device
*bd
)
799 if (hotk
->methods
->brightness_get
) { /* SPLV/GPLV laptop */
800 if (!read_acpi_int(hotk
->handle
, hotk
->methods
->brightness_get
,
803 "Asus ACPI: Error reading brightness\n");
804 } else if (hotk
->methods
->brightness_status
) { /* For D1 for example */
805 if (!read_acpi_int(NULL
, hotk
->methods
->brightness_status
,
808 "Asus ACPI: Error reading brightness\n");
809 } else /* No GPLV method */
810 value
= hotk
->brightness
;
815 * Change the brightness level
817 static int set_brightness(int value
)
819 acpi_status status
= 0;
823 if (hotk
->methods
->brightness_set
) {
824 if (!write_acpi_int(hotk
->handle
, hotk
->methods
->brightness_set
,
827 "Asus ACPI: Error changing brightness\n");
832 /* No SPLV method if we are here, act as appropriate */
833 value
-= read_brightness(NULL
);
835 status
= acpi_evaluate_object(NULL
, (value
> 0) ?
836 hotk
->methods
->brightness_up
:
837 hotk
->methods
->brightness_down
,
839 (value
> 0) ? value
-- : value
++;
840 if (ACPI_FAILURE(status
))
842 "Asus ACPI: Error changing brightness\n");
849 static int set_brightness_status(struct backlight_device
*bd
)
851 return set_brightness(bd
->props
.brightness
);
855 proc_read_brn(char *page
, char **start
, off_t off
, int count
, int *eof
,
858 return sprintf(page
, "%d\n", read_brightness(NULL
));
862 proc_write_brn(struct file
*file
, const char __user
* buffer
,
863 unsigned long count
, void *data
)
867 rv
= parse_arg(buffer
, count
, &value
);
869 value
= (0 < value
) ? ((15 < value
) ? 15 : value
) : 0;
870 /* 0 <= value <= 15 */
871 set_brightness(value
);
876 static void set_display(int value
)
878 /* no sanity check needed for now */
879 if (!write_acpi_int(hotk
->handle
, hotk
->methods
->display_set
,
881 printk(KERN_WARNING
"Asus ACPI: Error setting display\n");
886 * Now, *this* one could be more user-friendly, but so far, no-one has
887 * complained. The significance of bits is the same as in proc_write_disp()
890 proc_read_disp(char *page
, char **start
, off_t off
, int count
, int *eof
,
895 if (!read_acpi_int(hotk
->handle
, hotk
->methods
->display_get
, &value
))
897 "Asus ACPI: Error reading display status\n");
898 value
&= 0x07; /* needed for some models, shouldn't hurt others */
899 return sprintf(page
, "%d\n", value
);
903 * Experimental support for display switching. As of now: 1 should activate
904 * the LCD output, 2 should do for CRT, and 4 for TV-Out. Any combination
905 * (bitwise) of these will suffice. I never actually tested 3 displays hooked up
906 * simultaneously, so be warned. See the acpi4asus README for more info.
909 proc_write_disp(struct file
*file
, const char __user
* buffer
,
910 unsigned long count
, void *data
)
914 rv
= parse_arg(buffer
, count
, &value
);
920 typedef int (proc_readfunc
) (char *page
, char **start
, off_t off
, int count
,
921 int *eof
, void *data
);
922 typedef int (proc_writefunc
) (struct file
* file
, const char __user
* buffer
,
923 unsigned long count
, void *data
);
926 asus_proc_add(char *name
, proc_writefunc
* writefunc
,
927 proc_readfunc
* readfunc
, mode_t mode
,
928 struct acpi_device
*device
)
930 struct proc_dir_entry
*proc
=
931 create_proc_entry(name
, mode
, acpi_device_dir(device
));
933 printk(KERN_WARNING
" Unable to create %s fs entry\n", name
);
936 proc
->write_proc
= writefunc
;
937 proc
->read_proc
= readfunc
;
938 proc
->data
= acpi_driver_data(device
);
939 proc
->owner
= THIS_MODULE
;
940 proc
->uid
= asus_uid
;
941 proc
->gid
= asus_gid
;
945 static int asus_hotk_add_fs(struct acpi_device
*device
)
947 struct proc_dir_entry
*proc
;
951 * If parameter uid or gid is not changed, keep the default setting for
952 * our proc entries (-rw-rw-rw-) else, it means we care about security,
953 * and then set to -rw-rw----
956 if ((asus_uid
== 0) && (asus_gid
== 0)) {
957 mode
= S_IFREG
| S_IRUGO
| S_IWUGO
;
959 mode
= S_IFREG
| S_IRUSR
| S_IRGRP
| S_IWUSR
| S_IWGRP
;
960 printk(KERN_WARNING
" asus_uid and asus_gid parameters are "
961 "deprecated, use chown and chmod instead!\n");
964 acpi_device_dir(device
) = asus_proc_dir
;
965 if (!acpi_device_dir(device
))
968 proc
= create_proc_entry(PROC_INFO
, mode
, acpi_device_dir(device
));
970 proc
->read_proc
= proc_read_info
;
971 proc
->data
= acpi_driver_data(device
);
972 proc
->owner
= THIS_MODULE
;
973 proc
->uid
= asus_uid
;
974 proc
->gid
= asus_gid
;
976 printk(KERN_WARNING
" Unable to create " PROC_INFO
980 if (hotk
->methods
->mt_wled
) {
981 asus_proc_add(PROC_WLED
, &proc_write_wled
, &proc_read_wled
,
985 if (hotk
->methods
->mt_ledd
) {
986 asus_proc_add(PROC_LEDD
, &proc_write_ledd
, &proc_read_ledd
,
990 if (hotk
->methods
->mt_mled
) {
991 asus_proc_add(PROC_MLED
, &proc_write_mled
, &proc_read_mled
,
995 if (hotk
->methods
->mt_tled
) {
996 asus_proc_add(PROC_TLED
, &proc_write_tled
, &proc_read_tled
,
1000 if (hotk
->methods
->mt_bt_switch
) {
1001 asus_proc_add(PROC_BT
, &proc_write_bluetooth
,
1002 &proc_read_bluetooth
, mode
, device
);
1006 * We need both read node and write method as LCD switch is also accessible
1009 if (hotk
->methods
->mt_lcd_switch
&& hotk
->methods
->lcd_status
) {
1010 asus_proc_add(PROC_LCD
, &proc_write_lcd
, &proc_read_lcd
, mode
,
1014 if ((hotk
->methods
->brightness_up
&& hotk
->methods
->brightness_down
) ||
1015 (hotk
->methods
->brightness_get
&& hotk
->methods
->brightness_set
)) {
1016 asus_proc_add(PROC_BRN
, &proc_write_brn
, &proc_read_brn
, mode
,
1020 if (hotk
->methods
->display_set
) {
1021 asus_proc_add(PROC_DISP
, &proc_write_disp
, &proc_read_disp
,
1028 static int asus_hotk_remove_fs(struct acpi_device
*device
)
1030 if (acpi_device_dir(device
)) {
1031 remove_proc_entry(PROC_INFO
, acpi_device_dir(device
));
1032 if (hotk
->methods
->mt_wled
)
1033 remove_proc_entry(PROC_WLED
, acpi_device_dir(device
));
1034 if (hotk
->methods
->mt_mled
)
1035 remove_proc_entry(PROC_MLED
, acpi_device_dir(device
));
1036 if (hotk
->methods
->mt_tled
)
1037 remove_proc_entry(PROC_TLED
, acpi_device_dir(device
));
1038 if (hotk
->methods
->mt_ledd
)
1039 remove_proc_entry(PROC_LEDD
, acpi_device_dir(device
));
1040 if (hotk
->methods
->mt_bt_switch
)
1041 remove_proc_entry(PROC_BT
, acpi_device_dir(device
));
1042 if (hotk
->methods
->mt_lcd_switch
&& hotk
->methods
->lcd_status
)
1043 remove_proc_entry(PROC_LCD
, acpi_device_dir(device
));
1044 if ((hotk
->methods
->brightness_up
1045 && hotk
->methods
->brightness_down
)
1046 || (hotk
->methods
->brightness_get
1047 && hotk
->methods
->brightness_set
))
1048 remove_proc_entry(PROC_BRN
, acpi_device_dir(device
));
1049 if (hotk
->methods
->display_set
)
1050 remove_proc_entry(PROC_DISP
, acpi_device_dir(device
));
1055 static void asus_hotk_notify(acpi_handle handle
, u32 event
, void *data
)
1057 /* TODO Find a better way to handle events count. */
1061 if ((event
& ~((u32
) BR_UP
)) < 16) {
1062 hotk
->brightness
= (event
& ~((u32
) BR_UP
));
1063 } else if ((event
& ~((u32
) BR_DOWN
)) < 16) {
1064 hotk
->brightness
= (event
& ~((u32
) BR_DOWN
));
1067 acpi_bus_generate_event(hotk
->device
, event
,
1068 hotk
->event_count
[event
% 128]++);
1074 * Match the model string to the list of supported models. Return END_MODEL if
1075 * no match or model is NULL.
1077 static int asus_model_match(char *model
)
1082 if (strncmp(model
, "L3D", 3) == 0)
1084 else if (strncmp(model
, "L2E", 3) == 0 ||
1085 strncmp(model
, "L3H", 3) == 0 || strncmp(model
, "L5D", 3) == 0)
1087 else if (strncmp(model
, "L3", 2) == 0 || strncmp(model
, "L2B", 3) == 0)
1089 else if (strncmp(model
, "L8L", 3) == 0)
1091 else if (strncmp(model
, "L4R", 3) == 0)
1093 else if (strncmp(model
, "M6N", 3) == 0 || strncmp(model
, "W3N", 3) == 0)
1095 else if (strncmp(model
, "M6R", 3) == 0 || strncmp(model
, "A3G", 3) == 0)
1097 else if (strncmp(model
, "M2N", 3) == 0 ||
1098 strncmp(model
, "M3N", 3) == 0 ||
1099 strncmp(model
, "M5N", 3) == 0 ||
1100 strncmp(model
, "M6N", 3) == 0 ||
1101 strncmp(model
, "S1N", 3) == 0 ||
1102 strncmp(model
, "S5N", 3) == 0 || strncmp(model
, "W1N", 3) == 0)
1104 else if (strncmp(model
, "M1", 2) == 0)
1106 else if (strncmp(model
, "M2", 2) == 0 || strncmp(model
, "L4E", 3) == 0)
1108 else if (strncmp(model
, "L2", 2) == 0)
1110 else if (strncmp(model
, "L8", 2) == 0)
1112 else if (strncmp(model
, "D1", 2) == 0)
1114 else if (strncmp(model
, "A1", 2) == 0)
1116 else if (strncmp(model
, "A2", 2) == 0)
1118 else if (strncmp(model
, "J1", 2) == 0)
1120 else if (strncmp(model
, "L5", 2) == 0)
1122 else if (strncmp(model
, "A4G", 3) == 0)
1124 else if (strncmp(model
, "W1N", 3) == 0)
1126 else if (strncmp(model
, "W3V", 3) == 0)
1128 else if (strncmp(model
, "W5A", 3) == 0)
1130 else if (strncmp(model
, "A4S", 3) == 0)
1137 * This function is used to initialize the hotk with right values. In this
1138 * method, we can make all the detection we want, and modify the hotk struct
1140 static int asus_hotk_get_info(void)
1142 struct acpi_buffer buffer
= { ACPI_ALLOCATE_BUFFER
, NULL
};
1143 union acpi_object
*model
= NULL
;
1145 char *string
= NULL
;
1149 * Get DSDT headers early enough to allow for differentiating between
1150 * models, but late enough to allow acpi_bus_register_driver() to fail
1151 * before doing anything ACPI-specific. Should we encounter a machine,
1152 * which needs special handling (i.e. its hotkey device has a different
1153 * HID), this bit will be moved. A global variable asus_info contains
1156 status
= acpi_get_table(ACPI_SIG_DSDT
, 1, &asus_info
);
1157 if (ACPI_FAILURE(status
))
1158 printk(KERN_WARNING
" Couldn't get the DSDT table header\n");
1160 /* We have to write 0 on init this far for all ASUS models */
1161 if (!write_acpi_int(hotk
->handle
, "INIT", 0, &buffer
)) {
1162 printk(KERN_ERR
" Hotkey initialization failed\n");
1166 /* This needs to be called for some laptops to init properly */
1167 if (!read_acpi_int(hotk
->handle
, "BSTS", &bsts_result
))
1168 printk(KERN_WARNING
" Error calling BSTS\n");
1169 else if (bsts_result
)
1170 printk(KERN_NOTICE
" BSTS called, 0x%02x returned\n",
1174 * Try to match the object returned by INIT to the specific model.
1175 * Handle every possible object (or the lack of thereof) the DSDT
1176 * writers might throw at us. When in trouble, we pass NULL to
1177 * asus_model_match() and try something completely different.
1179 if (buffer
.pointer
) {
1180 model
= buffer
.pointer
;
1181 switch (model
->type
) {
1182 case ACPI_TYPE_STRING
:
1183 string
= model
->string
.pointer
;
1185 case ACPI_TYPE_BUFFER
:
1186 string
= model
->buffer
.pointer
;
1193 hotk
->model
= asus_model_match(string
);
1194 if (hotk
->model
== END_MODEL
) { /* match failed */
1196 strncmp(asus_info
->oem_table_id
, "ODEM", 4) == 0) {
1199 " Samsung P30 detected, supported\n");
1202 printk(KERN_NOTICE
" unsupported model %s, trying "
1203 "default values\n", string
);
1205 " send /proc/acpi/dsdt to the developers\n");
1207 hotk
->methods
= &model_conf
[hotk
->model
];
1210 hotk
->methods
= &model_conf
[hotk
->model
];
1211 printk(KERN_NOTICE
" %s model detected, supported\n", string
);
1213 /* Sort of per-model blacklist */
1214 if (strncmp(string
, "L2B", 3) == 0)
1215 hotk
->methods
->lcd_status
= NULL
;
1216 /* L2B is similar enough to L3C to use its settings, with this only
1218 else if (strncmp(string
, "A3G", 3) == 0)
1219 hotk
->methods
->lcd_status
= "\\BLFG";
1220 /* A3G is like M6R */
1221 else if (strncmp(string
, "S5N", 3) == 0 ||
1222 strncmp(string
, "M5N", 3) == 0 ||
1223 strncmp(string
, "W3N", 3) == 0)
1224 hotk
->methods
->mt_mled
= NULL
;
1225 /* S5N, M5N and W3N have no MLED */
1226 else if (strncmp(string
, "L5D", 3) == 0)
1227 hotk
->methods
->mt_wled
= NULL
;
1228 /* L5D's WLED is not controlled by ACPI */
1229 else if (strncmp(string
, "M2N", 3) == 0 ||
1230 strncmp(string
, "W3V", 3) == 0 ||
1231 strncmp(string
, "S1N", 3) == 0)
1232 hotk
->methods
->mt_wled
= "WLED";
1233 /* M2N, S1N and W3V have a usable WLED */
1234 else if (asus_info
) {
1235 if (strncmp(asus_info
->oem_table_id
, "L1", 2) == 0)
1236 hotk
->methods
->mled_status
= NULL
;
1237 /* S1300A reports L84F, but L1400B too, account for that */
1245 static int asus_hotk_check(void)
1249 result
= acpi_bus_get_status(hotk
->device
);
1253 if (hotk
->device
->status
.present
) {
1254 result
= asus_hotk_get_info();
1256 printk(KERN_ERR
" Hotkey device not present, aborting\n");
1263 static int asus_hotk_found
;
1265 static int asus_hotk_add(struct acpi_device
*device
)
1267 acpi_status status
= AE_OK
;
1273 printk(KERN_NOTICE
"Asus Laptop ACPI Extras version %s\n",
1276 hotk
= kzalloc(sizeof(struct asus_hotk
), GFP_KERNEL
);
1280 hotk
->handle
= device
->handle
;
1281 strcpy(acpi_device_name(device
), ACPI_HOTK_DEVICE_NAME
);
1282 strcpy(acpi_device_class(device
), ACPI_HOTK_CLASS
);
1283 acpi_driver_data(device
) = hotk
;
1284 hotk
->device
= device
;
1286 result
= asus_hotk_check();
1290 result
= asus_hotk_add_fs(device
);
1295 * We install the handler, it will receive the hotk in parameter, so, we
1296 * could add other data to the hotk struct
1298 status
= acpi_install_notify_handler(hotk
->handle
, ACPI_SYSTEM_NOTIFY
,
1299 asus_hotk_notify
, hotk
);
1300 if (ACPI_FAILURE(status
))
1301 printk(KERN_ERR
" Error installing notify handler\n");
1303 /* For laptops without GPLV: init the hotk->brightness value */
1304 if ((!hotk
->methods
->brightness_get
)
1305 && (!hotk
->methods
->brightness_status
)
1306 && (hotk
->methods
->brightness_up
&& hotk
->methods
->brightness_down
)) {
1308 acpi_evaluate_object(NULL
, hotk
->methods
->brightness_down
,
1310 if (ACPI_FAILURE(status
))
1311 printk(KERN_WARNING
" Error changing brightness\n");
1314 acpi_evaluate_object(NULL
,
1315 hotk
->methods
->brightness_up
,
1317 if (ACPI_FAILURE(status
))
1318 printk(KERN_WARNING
" Strange, error changing"
1323 asus_hotk_found
= 1;
1325 /* LED display is off by default */
1326 hotk
->ledd_status
= 0xFFF;
1336 static int asus_hotk_remove(struct acpi_device
*device
, int type
)
1338 acpi_status status
= 0;
1340 if (!device
|| !acpi_driver_data(device
))
1343 status
= acpi_remove_notify_handler(hotk
->handle
, ACPI_SYSTEM_NOTIFY
,
1345 if (ACPI_FAILURE(status
))
1346 printk(KERN_ERR
"Asus ACPI: Error removing notify handler\n");
1348 asus_hotk_remove_fs(device
);
1355 static struct backlight_ops asus_backlight_data
= {
1356 .get_brightness
= read_brightness
,
1357 .update_status
= set_brightness_status
,
1360 static void asus_acpi_exit(void)
1362 if (asus_backlight_device
)
1363 backlight_device_unregister(asus_backlight_device
);
1365 acpi_bus_unregister_driver(&asus_hotk_driver
);
1366 remove_proc_entry(PROC_ASUS
, acpi_root_dir
);
1371 static int __init
asus_acpi_init(void)
1378 asus_proc_dir
= proc_mkdir(PROC_ASUS
, acpi_root_dir
);
1379 if (!asus_proc_dir
) {
1380 printk(KERN_ERR
"Asus ACPI: Unable to create /proc entry\n");
1383 asus_proc_dir
->owner
= THIS_MODULE
;
1385 result
= acpi_bus_register_driver(&asus_hotk_driver
);
1387 remove_proc_entry(PROC_ASUS
, acpi_root_dir
);
1392 * This is a bit of a kludge. We only want this module loaded
1393 * for ASUS systems, but there's currently no way to probe the
1394 * ACPI namespace for ASUS HIDs. So we just return failure if
1395 * we didn't find one, which will cause the module to be
1398 if (!asus_hotk_found
) {
1399 acpi_bus_unregister_driver(&asus_hotk_driver
);
1400 remove_proc_entry(PROC_ASUS
, acpi_root_dir
);
1404 asus_backlight_device
= backlight_device_register("asus",NULL
,NULL
,
1405 &asus_backlight_data
);
1406 if (IS_ERR(asus_backlight_device
)) {
1407 printk(KERN_ERR
"Could not register asus backlight device\n");
1408 asus_backlight_device
= NULL
;
1411 asus_backlight_device
->props
.max_brightness
= 15;
1416 module_init(asus_acpi_init
);
1417 module_exit(asus_acpi_exit
);