2 * asus_acpi.c - Asus Laptop ACPI Extras
5 * Copyright (C) 2002, 2003, 2004 Julien Lerouge, 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.
32 * Add mode selection on module loading (parameter) -> still necessary?
33 * Complete display switching -- may require dirty hacks or calling _DOS?
36 #include <linux/kernel.h>
37 #include <linux/module.h>
38 #include <linux/init.h>
39 #include <linux/types.h>
40 #include <linux/proc_fs.h>
41 #include <acpi/acpi_drivers.h>
42 #include <acpi/acpi_bus.h>
43 #include <asm/uaccess.h>
45 #define ASUS_ACPI_VERSION "0.29"
47 #define PROC_ASUS "asus" //the directory
48 #define PROC_MLED "mled"
49 #define PROC_WLED "wled"
50 #define PROC_TLED "tled"
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 //is MLED ON ?
74 MODULE_AUTHOR("Julien Lerouge, Karol Kozimor");
75 MODULE_DESCRIPTION(ACPI_HOTK_NAME
);
76 MODULE_LICENSE("GPL");
78 static uid_t asus_uid
;
79 static gid_t asus_gid
;
80 module_param(asus_uid
, uint
, 0);
81 MODULE_PARM_DESC(asus_uid
, "UID for entries in /proc/acpi/asus.\n");
82 module_param(asus_gid
, uint
, 0);
83 MODULE_PARM_DESC(asus_gid
, "GID for entries in /proc/acpi/asus.\n");
85 /* For each model, all features implemented,
86 * those marked with R are relative to HOTK, A for absolute */
88 char *name
; //name of the laptop________________A
89 char *mt_mled
; //method to handle mled_____________R
90 char *mled_status
; //node to handle mled reading_______A
91 char *mt_wled
; //method to handle wled_____________R
92 char *wled_status
; //node to handle wled reading_______A
93 char *mt_tled
; //method to handle tled_____________R
94 char *tled_status
; //node to handle tled reading_______A
95 char *mt_lcd_switch
; //method to turn LCD ON/OFF_________A
96 char *lcd_status
; //node to read LCD panel state______A
97 char *brightness_up
; //method to set brightness up_______A
98 char *brightness_down
; //guess what ?______________________A
99 char *brightness_set
; //method to set absolute brightness_R
100 char *brightness_get
; //method to get absolute brightness_R
101 char *brightness_status
; //node to get brightness____________A
102 char *display_set
; //method to set video output________R
103 char *display_get
; //method to get video output________R
107 * This is the main structure, we can use it to store anything interesting
108 * about the hotk device
111 struct acpi_device
*device
; //the device we are in
112 acpi_handle handle
; //the handle of the hotk device
113 char status
; //status of the hotk, for LEDs, ...
114 struct model_data
*methods
; //methods available on the laptop
115 u8 brightness
; //brightness level
117 A1x
= 0, //A1340D, A1300F
123 L3H
, //L3H, but also L2000E
128 M2E
, //M2400E, L4400L
132 S1x
, //S1300A, but also L1400B and M2400A (L84F)
133 S2x
, //S200 (J1 reported), Victor MP-XP7210
134 xxN
, //M2400N, M3700N, M5200N, S1300N, S5200N, W1OOON
137 } model
; //Models currently supported
138 u16 event_count
[128]; //count for each event TODO make this better
142 #define A1x_PREFIX "\\_SB.PCI0.ISA.EC0."
143 #define L3C_PREFIX "\\_SB.PCI0.PX40.ECD0."
144 #define M1A_PREFIX "\\_SB.PCI0.PX40.EC0."
145 #define P30_PREFIX "\\_SB.PCI0.LPCB.EC0."
146 #define S1x_PREFIX "\\_SB.PCI0.PX40."
147 #define S2x_PREFIX A1x_PREFIX
148 #define xxN_PREFIX "\\_SB.PCI0.SBRG.EC0."
150 static struct model_data model_conf
[END_MODEL
] = {
152 * Those pathnames are relative to the HOTK / ATKD device :
160 * TODO I have seen a SWBX and AIBX method on some models, like L1400B,
161 * it seems to be a kind of switch, but what for ?
168 .mled_status
= "\\MAIL",
169 .mt_lcd_switch
= A1x_PREFIX
"_Q10",
170 .lcd_status
= "\\BKLI",
171 .brightness_up
= A1x_PREFIX
"_Q0E",
172 .brightness_down
= A1x_PREFIX
"_Q0F"},
178 .wled_status
= "\\SG66",
179 .mt_lcd_switch
= "\\Q10",
180 .lcd_status
= "\\BAOF",
181 .brightness_set
= "SPLV",
182 .brightness_get
= "GPLV",
183 .display_set
= "SDSP",
184 .display_get
= "\\INFB"},
189 .mt_lcd_switch
= "\\Q0D",
190 .lcd_status
= "\\GP11",
191 .brightness_up
= "\\Q0C",
192 .brightness_down
= "\\Q0B",
193 .brightness_status
= "\\BLVL",
194 .display_set
= "SDSP",
195 .display_get
= "\\INFB"},
200 .mled_status
= "\\SGP6",
202 .wled_status
= "\\RCP3",
203 .mt_lcd_switch
= "\\Q10",
204 .lcd_status
= "\\SGP0",
205 .brightness_up
= "\\Q0E",
206 .brightness_down
= "\\Q0F",
207 .display_set
= "SDSP",
208 .display_get
= "\\INFB"},
214 .mt_lcd_switch
= L3C_PREFIX
"_Q10",
215 .lcd_status
= "\\GL32",
216 .brightness_set
= "SPLV",
217 .brightness_get
= "GPLV",
218 .display_set
= "SDSP",
219 .display_get
= "\\_SB.PCI0.PCI1.VGAC.NMAP"},
224 .mled_status
= "\\MALD",
226 .mt_lcd_switch
= "\\Q10",
227 .lcd_status
= "\\BKLG",
228 .brightness_set
= "SPLV",
229 .brightness_get
= "GPLV",
230 .display_set
= "SDSP",
231 .display_get
= "\\INFB"},
237 .mt_lcd_switch
= "EHK",
238 .lcd_status
= "\\_SB.PCI0.PM.PBC",
239 .brightness_set
= "SPLV",
240 .brightness_get
= "GPLV",
241 .display_set
= "SDSP",
242 .display_get
= "\\INFB"},
248 .wled_status
= "\\_SB.PCI0.SBRG.SG13",
249 .mt_lcd_switch
= xxN_PREFIX
"_Q10",
250 .lcd_status
= "\\_SB.PCI0.SBSM.SEO4",
251 .brightness_set
= "SPLV",
252 .brightness_get
= "GPLV",
253 .display_set
= "SDSP",
254 .display_get
= "\\_SB.PCI0.P0P1.VGA.GETD"},
259 /* WLED present, but not controlled by ACPI */
261 .mt_lcd_switch
= "\\Q0D",
262 .lcd_status
= "\\BAOF",
263 .brightness_set
= "SPLV",
264 .brightness_get
= "GPLV",
265 .display_set
= "SDSP",
266 .display_get
= "\\INFB"},
270 /* No features, but at least support the hotkeys */
276 .mt_lcd_switch
= M1A_PREFIX
"Q10",
277 .lcd_status
= "\\PNOF",
278 .brightness_up
= M1A_PREFIX
"Q0E",
279 .brightness_down
= M1A_PREFIX
"Q0F",
280 .brightness_status
= "\\BRIT",
281 .display_set
= "SDSP",
282 .display_get
= "\\INFB"},
288 .mt_lcd_switch
= "\\Q10",
289 .lcd_status
= "\\GP06",
290 .brightness_set
= "SPLV",
291 .brightness_get
= "GPLV",
292 .display_set
= "SDSP",
293 .display_get
= "\\INFB"},
299 .wled_status
= "\\_SB.PCI0.SBRG.SG13",
300 .mt_lcd_switch
= xxN_PREFIX
"_Q10",
301 .lcd_status
= "\\_SB.BKLT",
302 .brightness_set
= "SPLV",
303 .brightness_get
= "GPLV",
304 .display_set
= "SDSP",
305 .display_get
= "\\_SB.PCI0.P0P1.VGA.GETD"},
310 .mt_lcd_switch
= xxN_PREFIX
"_Q10",
311 .lcd_status
= "\\_SB.PCI0.SBSM.SEO4",
312 .brightness_set
= "SPLV",
313 .brightness_get
= "GPLV",
314 .display_set
= "SDSP",
315 .display_get
= "\\SSTE"},
320 .mt_lcd_switch
= P30_PREFIX
"_Q0E",
321 .lcd_status
= "\\BKLT",
322 .brightness_up
= P30_PREFIX
"_Q68",
323 .brightness_down
= P30_PREFIX
"_Q69",
324 .brightness_get
= "GPLV",
325 .display_set
= "SDSP",
326 .display_get
= "\\DNXT"},
331 .mled_status
= "\\EMLE",
333 .mt_lcd_switch
= S1x_PREFIX
"Q10",
334 .lcd_status
= "\\PNOF",
335 .brightness_set
= "SPLV",
336 .brightness_get
= "GPLV"},
341 .mled_status
= "\\MAIL",
342 .mt_lcd_switch
= S2x_PREFIX
"_Q10",
343 .lcd_status
= "\\BKLI",
344 .brightness_up
= S2x_PREFIX
"_Q0B",
345 .brightness_down
= S2x_PREFIX
"_Q0A"},
350 /* WLED present, but not controlled by ACPI */
351 .mt_lcd_switch
= xxN_PREFIX
"_Q10",
352 .lcd_status
= "\\BKLT",
353 .brightness_set
= "SPLV",
354 .brightness_get
= "GPLV",
355 .display_set
= "SDSP",
356 .display_get
= "\\ADVG"}
360 static struct proc_dir_entry
*asus_proc_dir
;
363 * This header is made available to allow proper configuration given model,
364 * revision number , ... this info cannot go in struct asus_hotk because it is
365 * available before the hotk
367 static struct acpi_table_header
*asus_info
;
369 /* The actual device the driver binds to */
370 static struct asus_hotk
*hotk
;
373 * The hotkey driver declaration
375 static int asus_hotk_add(struct acpi_device
*device
);
376 static int asus_hotk_remove(struct acpi_device
*device
, int type
);
377 static struct acpi_driver asus_hotk_driver
= {
378 .name
= ACPI_HOTK_NAME
,
379 .class = ACPI_HOTK_CLASS
,
380 .ids
= ACPI_HOTK_HID
,
382 .add
= asus_hotk_add
,
383 .remove
= asus_hotk_remove
,
388 * This function evaluates an ACPI method, given an int as parameter, the
389 * method is searched within the scope of the handle, can be NULL. The output
390 * of the method is written is output, which can also be NULL
392 * returns 1 if write is successful, 0 else.
394 static int write_acpi_int(acpi_handle handle
, const char *method
, int val
,
395 struct acpi_buffer
*output
)
397 struct acpi_object_list params
; //list of input parameters (an int here)
398 union acpi_object in_obj
; //the only param we use
402 params
.pointer
= &in_obj
;
403 in_obj
.type
= ACPI_TYPE_INTEGER
;
404 in_obj
.integer
.value
= val
;
406 status
= acpi_evaluate_object(handle
, (char *)method
, ¶ms
, output
);
407 return (status
== AE_OK
);
410 static int read_acpi_int(acpi_handle handle
, const char *method
, int *val
)
412 struct acpi_buffer output
;
413 union acpi_object out_obj
;
416 output
.length
= sizeof(out_obj
);
417 output
.pointer
= &out_obj
;
419 status
= acpi_evaluate_object(handle
, (char *)method
, NULL
, &output
);
420 *val
= out_obj
.integer
.value
;
421 return (status
== AE_OK
) && (out_obj
.type
== ACPI_TYPE_INTEGER
);
425 * We write our info in page, we begin at offset off and cannot write more
426 * than count bytes. We set eof to 1 if we handle those 2 values. We return the
427 * number of bytes written in page
430 proc_read_info(char *page
, char **start
, off_t off
, int count
, int *eof
,
435 char buf
[16]; //enough for all info
437 * We use the easy way, we don't care of off and count, so we don't set eof
441 len
+= sprintf(page
, ACPI_HOTK_NAME
" " ASUS_ACPI_VERSION
"\n");
442 len
+= sprintf(page
+ len
, "Model reference : %s\n",
443 hotk
->methods
->name
);
445 * The SFUN method probably allows the original driver to get the list
446 * of features supported by a given model. For now, 0x0100 or 0x0800
447 * bit signifies that the laptop is equipped with a Wi-Fi MiniPCI card.
448 * The significance of others is yet to be found.
450 if (read_acpi_int(hotk
->handle
, "SFUN", &temp
))
452 sprintf(page
+ len
, "SFUN value : 0x%04x\n", temp
);
454 * Another value for userspace: the ASYM method returns 0x02 for
455 * battery low and 0x04 for battery critical, its readings tend to be
456 * more accurate than those provided by _BST.
457 * Note: since not all the laptops provide this method, errors are
460 if (read_acpi_int(hotk
->handle
, "ASYM", &temp
))
462 sprintf(page
+ len
, "ASYM value : 0x%04x\n", temp
);
464 snprintf(buf
, 16, "%d", asus_info
->length
);
465 len
+= sprintf(page
+ len
, "DSDT length : %s\n", buf
);
466 snprintf(buf
, 16, "%d", asus_info
->checksum
);
467 len
+= sprintf(page
+ len
, "DSDT checksum : %s\n", buf
);
468 snprintf(buf
, 16, "%d", asus_info
->revision
);
469 len
+= sprintf(page
+ len
, "DSDT revision : %s\n", buf
);
470 snprintf(buf
, 7, "%s", asus_info
->oem_id
);
471 len
+= sprintf(page
+ len
, "OEM id : %s\n", buf
);
472 snprintf(buf
, 9, "%s", asus_info
->oem_table_id
);
473 len
+= sprintf(page
+ len
, "OEM table id : %s\n", buf
);
474 snprintf(buf
, 16, "%x", asus_info
->oem_revision
);
475 len
+= sprintf(page
+ len
, "OEM revision : 0x%s\n", buf
);
476 snprintf(buf
, 5, "%s", asus_info
->asl_compiler_id
);
477 len
+= sprintf(page
+ len
, "ASL comp vendor id : %s\n", buf
);
478 snprintf(buf
, 16, "%x", asus_info
->asl_compiler_revision
);
479 len
+= sprintf(page
+ len
, "ASL comp revision : 0x%s\n", buf
);
487 * We write our info in page, we begin at offset off and cannot write more
488 * than count bytes. We set eof to 1 if we handle those 2 values. We return the
489 * number of bytes written in page
492 /* Generic LED functions */
493 static int read_led(const char *ledname
, int ledmask
)
498 if (read_acpi_int(NULL
, ledname
, &led_status
))
501 printk(KERN_WARNING
"Asus ACPI: Error reading LED "
504 return (hotk
->status
& ledmask
) ? 1 : 0;
507 static int parse_arg(const char __user
* buf
, unsigned long count
, int *val
)
514 if (copy_from_user(s
, buf
, count
))
517 if (sscanf(s
, "%i", val
) != 1)
522 /* FIXME: kill extraneous args so it can be called independently */
524 write_led(const char __user
* buffer
, unsigned long count
,
525 char *ledname
, int ledmask
, int invert
)
530 count
= parse_arg(buffer
, count
, &value
);
532 led_out
= value
? 1 : 0;
535 (led_out
) ? (hotk
->status
| ledmask
) : (hotk
->status
& ~ledmask
);
537 if (invert
) /* invert target value */
538 led_out
= !led_out
& 0x1;
540 if (!write_acpi_int(hotk
->handle
, ledname
, led_out
, NULL
))
541 printk(KERN_WARNING
"Asus ACPI: LED (%s) write failed\n",
548 * Proc handlers for MLED
551 proc_read_mled(char *page
, char **start
, off_t off
, int count
, int *eof
,
554 return sprintf(page
, "%d\n",
555 read_led(hotk
->methods
->mled_status
, MLED_ON
));
559 proc_write_mled(struct file
*file
, const char __user
* buffer
,
560 unsigned long count
, void *data
)
562 return write_led(buffer
, count
, hotk
->methods
->mt_mled
, MLED_ON
, 1);
566 * Proc handlers for WLED
569 proc_read_wled(char *page
, char **start
, off_t off
, int count
, int *eof
,
572 return sprintf(page
, "%d\n",
573 read_led(hotk
->methods
->wled_status
, WLED_ON
));
577 proc_write_wled(struct file
*file
, const char __user
* buffer
,
578 unsigned long count
, void *data
)
580 return write_led(buffer
, count
, hotk
->methods
->mt_wled
, WLED_ON
, 0);
584 * Proc handlers for TLED
587 proc_read_tled(char *page
, char **start
, off_t off
, int count
, int *eof
,
590 return sprintf(page
, "%d\n",
591 read_led(hotk
->methods
->tled_status
, TLED_ON
));
595 proc_write_tled(struct file
*file
, const char __user
* buffer
,
596 unsigned long count
, void *data
)
598 return write_led(buffer
, count
, hotk
->methods
->mt_tled
, TLED_ON
, 0);
601 static int get_lcd_state(void)
605 if (hotk
->model
!= L3H
) {
606 /* We don't have to check anything if we are here */
607 if (!read_acpi_int(NULL
, hotk
->methods
->lcd_status
, &lcd
))
609 "Asus ACPI: Error reading LCD status\n");
611 if (hotk
->model
== L2D
)
613 } else { /* L3H and the like have to be handled differently */
614 acpi_status status
= 0;
615 struct acpi_object_list input
;
616 union acpi_object mt_params
[2];
617 struct acpi_buffer output
;
618 union acpi_object out_obj
;
621 input
.pointer
= mt_params
;
622 /* Note: the following values are partly guessed up, but
623 otherwise they seem to work */
624 mt_params
[0].type
= ACPI_TYPE_INTEGER
;
625 mt_params
[0].integer
.value
= 0x02;
626 mt_params
[1].type
= ACPI_TYPE_INTEGER
;
627 mt_params
[1].integer
.value
= 0x02;
629 output
.length
= sizeof(out_obj
);
630 output
.pointer
= &out_obj
;
633 acpi_evaluate_object(NULL
, hotk
->methods
->lcd_status
,
637 if (out_obj
.type
== ACPI_TYPE_INTEGER
)
638 /* That's what the AML code does */
639 lcd
= out_obj
.integer
.value
>> 8;
645 static int set_lcd_state(int value
)
648 acpi_status status
= 0;
651 if (lcd
!= get_lcd_state()) {
653 if (hotk
->model
!= L3H
) {
655 acpi_evaluate_object(NULL
,
656 hotk
->methods
->mt_lcd_switch
,
658 } else { /* L3H and the like have to be handled differently */
660 (hotk
->handle
, hotk
->methods
->mt_lcd_switch
, 0x07,
663 /* L3H's AML executes EHK (0x07) upon Fn+F7 keypress,
664 the exact behaviour is simulated here */
666 if (ACPI_FAILURE(status
))
667 printk(KERN_WARNING
"Asus ACPI: Error switching LCD\n");
674 proc_read_lcd(char *page
, char **start
, off_t off
, int count
, int *eof
,
677 return sprintf(page
, "%d\n", get_lcd_state());
681 proc_write_lcd(struct file
*file
, const char __user
* buffer
,
682 unsigned long count
, void *data
)
686 count
= parse_arg(buffer
, count
, &value
);
688 set_lcd_state(value
);
692 static int read_brightness(void)
696 if (hotk
->methods
->brightness_get
) { /* SPLV/GPLV laptop */
697 if (!read_acpi_int(hotk
->handle
, hotk
->methods
->brightness_get
,
700 "Asus ACPI: Error reading brightness\n");
701 } else if (hotk
->methods
->brightness_status
) { /* For D1 for example */
702 if (!read_acpi_int(NULL
, hotk
->methods
->brightness_status
,
705 "Asus ACPI: Error reading brightness\n");
706 } else /* No GPLV method */
707 value
= hotk
->brightness
;
712 * Change the brightness level
714 static void set_brightness(int value
)
716 acpi_status status
= 0;
719 if (hotk
->methods
->brightness_set
) {
720 if (!write_acpi_int(hotk
->handle
, hotk
->methods
->brightness_set
,
723 "Asus ACPI: Error changing brightness\n");
727 /* No SPLV method if we are here, act as appropriate */
728 value
-= read_brightness();
730 status
= acpi_evaluate_object(NULL
, (value
> 0) ?
731 hotk
->methods
->brightness_up
:
732 hotk
->methods
->brightness_down
,
734 (value
> 0) ? value
-- : value
++;
735 if (ACPI_FAILURE(status
))
737 "Asus ACPI: Error changing brightness\n");
743 proc_read_brn(char *page
, char **start
, off_t off
, int count
, int *eof
,
746 return sprintf(page
, "%d\n", read_brightness());
750 proc_write_brn(struct file
*file
, const char __user
* buffer
,
751 unsigned long count
, void *data
)
755 count
= parse_arg(buffer
, count
, &value
);
757 value
= (0 < value
) ? ((15 < value
) ? 15 : value
) : 0;
758 /* 0 <= value <= 15 */
759 set_brightness(value
);
760 } else if (count
< 0) {
761 printk(KERN_WARNING
"Asus ACPI: Error reading user input\n");
767 static void set_display(int value
)
769 /* no sanity check needed for now */
770 if (!write_acpi_int(hotk
->handle
, hotk
->methods
->display_set
,
772 printk(KERN_WARNING
"Asus ACPI: Error setting display\n");
777 * Now, *this* one could be more user-friendly, but so far, no-one has
778 * complained. The significance of bits is the same as in proc_write_disp()
781 proc_read_disp(char *page
, char **start
, off_t off
, int count
, int *eof
,
786 if (!read_acpi_int(hotk
->handle
, hotk
->methods
->display_get
, &value
))
788 "Asus ACPI: Error reading display status\n");
789 value
&= 0x07; /* needed for some models, shouldn't hurt others */
790 return sprintf(page
, "%d\n", value
);
794 * Experimental support for display switching. As of now: 1 should activate
795 * the LCD output, 2 should do for CRT, and 4 for TV-Out. Any combination
796 * (bitwise) of these will suffice. I never actually tested 3 displays hooked up
797 * simultaneously, so be warned. See the acpi4asus README for more info.
800 proc_write_disp(struct file
*file
, const char __user
* buffer
,
801 unsigned long count
, void *data
)
805 count
= parse_arg(buffer
, count
, &value
);
809 printk(KERN_WARNING
"Asus ACPI: Error reading user input\n");
814 typedef int (proc_readfunc
) (char *page
, char **start
, off_t off
, int count
,
815 int *eof
, void *data
);
816 typedef int (proc_writefunc
) (struct file
* file
, const char __user
* buffer
,
817 unsigned long count
, void *data
);
820 __init
asus_proc_add(char *name
, proc_writefunc
* writefunc
,
821 proc_readfunc
* readfunc
, mode_t mode
,
822 struct acpi_device
*device
)
824 struct proc_dir_entry
*proc
=
825 create_proc_entry(name
, mode
, acpi_device_dir(device
));
827 printk(KERN_WARNING
" Unable to create %s fs entry\n", name
);
830 proc
->write_proc
= writefunc
;
831 proc
->read_proc
= readfunc
;
832 proc
->data
= acpi_driver_data(device
);
833 proc
->owner
= THIS_MODULE
;
834 proc
->uid
= asus_uid
;
835 proc
->gid
= asus_gid
;
839 static int __init
asus_hotk_add_fs(struct acpi_device
*device
)
841 struct proc_dir_entry
*proc
;
845 * If parameter uid or gid is not changed, keep the default setting for
846 * our proc entries (-rw-rw-rw-) else, it means we care about security,
847 * and then set to -rw-rw----
850 if ((asus_uid
== 0) && (asus_gid
== 0)) {
851 mode
= S_IFREG
| S_IRUGO
| S_IWUGO
;
853 mode
= S_IFREG
| S_IRUSR
| S_IRGRP
| S_IWUSR
| S_IWGRP
;
854 printk(KERN_WARNING
" asus_uid and asus_gid parameters are "
855 "deprecated, use chown and chmod instead!\n");
858 acpi_device_dir(device
) = asus_proc_dir
;
859 if (!acpi_device_dir(device
))
862 proc
= create_proc_entry(PROC_INFO
, mode
, acpi_device_dir(device
));
864 proc
->read_proc
= proc_read_info
;
865 proc
->data
= acpi_driver_data(device
);
866 proc
->owner
= THIS_MODULE
;
867 proc
->uid
= asus_uid
;
868 proc
->gid
= asus_gid
;
870 printk(KERN_WARNING
" Unable to create " PROC_INFO
874 if (hotk
->methods
->mt_wled
) {
875 asus_proc_add(PROC_WLED
, &proc_write_wled
, &proc_read_wled
,
879 if (hotk
->methods
->mt_mled
) {
880 asus_proc_add(PROC_MLED
, &proc_write_mled
, &proc_read_mled
,
884 if (hotk
->methods
->mt_tled
) {
885 asus_proc_add(PROC_TLED
, &proc_write_tled
, &proc_read_tled
,
890 * We need both read node and write method as LCD switch is also accessible
893 if (hotk
->methods
->mt_lcd_switch
&& hotk
->methods
->lcd_status
) {
894 asus_proc_add(PROC_LCD
, &proc_write_lcd
, &proc_read_lcd
, mode
,
898 if ((hotk
->methods
->brightness_up
&& hotk
->methods
->brightness_down
) ||
899 (hotk
->methods
->brightness_get
&& hotk
->methods
->brightness_set
)) {
900 asus_proc_add(PROC_BRN
, &proc_write_brn
, &proc_read_brn
, mode
,
904 if (hotk
->methods
->display_set
) {
905 asus_proc_add(PROC_DISP
, &proc_write_disp
, &proc_read_disp
,
912 static int asus_hotk_remove_fs(struct acpi_device
*device
)
914 if (acpi_device_dir(device
)) {
915 remove_proc_entry(PROC_INFO
, acpi_device_dir(device
));
916 if (hotk
->methods
->mt_wled
)
917 remove_proc_entry(PROC_WLED
, acpi_device_dir(device
));
918 if (hotk
->methods
->mt_mled
)
919 remove_proc_entry(PROC_MLED
, acpi_device_dir(device
));
920 if (hotk
->methods
->mt_tled
)
921 remove_proc_entry(PROC_TLED
, acpi_device_dir(device
));
922 if (hotk
->methods
->mt_lcd_switch
&& hotk
->methods
->lcd_status
)
923 remove_proc_entry(PROC_LCD
, acpi_device_dir(device
));
924 if ((hotk
->methods
->brightness_up
925 && hotk
->methods
->brightness_down
)
926 || (hotk
->methods
->brightness_get
927 && hotk
->methods
->brightness_set
))
928 remove_proc_entry(PROC_BRN
, acpi_device_dir(device
));
929 if (hotk
->methods
->display_set
)
930 remove_proc_entry(PROC_DISP
, acpi_device_dir(device
));
935 static void asus_hotk_notify(acpi_handle handle
, u32 event
, void *data
)
937 /* TODO Find a better way to handle events count. */
941 if ((event
& ~((u32
) BR_UP
)) < 16) {
942 hotk
->brightness
= (event
& ~((u32
) BR_UP
));
943 } else if ((event
& ~((u32
) BR_DOWN
)) < 16) {
944 hotk
->brightness
= (event
& ~((u32
) BR_DOWN
));
947 acpi_bus_generate_event(hotk
->device
, event
,
948 hotk
->event_count
[event
% 128]++);
954 * This function is used to initialize the hotk with right values. In this
955 * method, we can make all the detection we want, and modify the hotk struct
957 static int __init
asus_hotk_get_info(void)
959 struct acpi_buffer buffer
= { ACPI_ALLOCATE_BUFFER
, NULL
};
960 struct acpi_buffer dsdt
= { ACPI_ALLOCATE_BUFFER
, NULL
};
961 union acpi_object
*model
= NULL
;
966 * Get DSDT headers early enough to allow for differentiating between
967 * models, but late enough to allow acpi_bus_register_driver() to fail
968 * before doing anything ACPI-specific. Should we encounter a machine,
969 * which needs special handling (i.e. its hotkey device has a different
970 * HID), this bit will be moved. A global variable asus_info contains
973 status
= acpi_get_table(ACPI_TABLE_DSDT
, 1, &dsdt
);
974 if (ACPI_FAILURE(status
))
975 printk(KERN_WARNING
" Couldn't get the DSDT table header\n");
977 asus_info
= (struct acpi_table_header
*)dsdt
.pointer
;
979 /* We have to write 0 on init this far for all ASUS models */
980 if (!write_acpi_int(hotk
->handle
, "INIT", 0, &buffer
)) {
981 printk(KERN_ERR
" Hotkey initialization failed\n");
985 /* This needs to be called for some laptops to init properly */
986 if (!read_acpi_int(hotk
->handle
, "BSTS", &bsts_result
))
987 printk(KERN_WARNING
" Error calling BSTS\n");
988 else if (bsts_result
)
989 printk(KERN_NOTICE
" BSTS called, 0x%02x returned\n",
992 /* This is unlikely with implicit return */
993 if (buffer
.pointer
== NULL
)
996 model
= (union acpi_object
*) buffer
.pointer
;
998 * Samsung P30 has a device with a valid _HID whose INIT does not
999 * return anything. It used to be possible to catch this exception,
1000 * but the implicit return code will now happily confuse the
1001 * driver. We assume that every ACPI_TYPE_STRING is a valid model
1002 * identifier but it's still possible to get completely bogus data.
1004 if (model
->type
== ACPI_TYPE_STRING
) {
1005 printk(KERN_NOTICE
" %s model detected, ", model
->string
.pointer
);
1007 if (asus_info
&& /* Samsung P30 */
1008 strncmp(asus_info
->oem_table_id
, "ODEM", 4) == 0) {
1011 " Samsung P30 detected, supported\n");
1014 printk(KERN_WARNING
" no string returned by INIT\n");
1015 printk(KERN_WARNING
" trying default values, supply "
1016 "the developers with your DSDT\n");
1018 hotk
->methods
= &model_conf
[hotk
->model
];
1020 acpi_os_free(model
);
1025 hotk
->model
= END_MODEL
;
1026 if (strncmp(model
->string
.pointer
, "L3D", 3) == 0)
1028 else if (strncmp(model
->string
.pointer
, "L3H", 3) == 0 ||
1029 strncmp(model
->string
.pointer
, "L2E", 3) == 0)
1031 else if (strncmp(model
->string
.pointer
, "L3", 2) == 0 ||
1032 strncmp(model
->string
.pointer
, "L2B", 3) == 0)
1034 else if (strncmp(model
->string
.pointer
, "L8L", 3) == 0)
1036 else if (strncmp(model
->string
.pointer
, "L4R", 3) == 0)
1038 else if (strncmp(model
->string
.pointer
, "M6N", 3) == 0)
1040 else if (strncmp(model
->string
.pointer
, "M6R", 3) == 0)
1042 else if (strncmp(model
->string
.pointer
, "M2N", 3) == 0 ||
1043 strncmp(model
->string
.pointer
, "M3N", 3) == 0 ||
1044 strncmp(model
->string
.pointer
, "M5N", 3) == 0 ||
1045 strncmp(model
->string
.pointer
, "M6N", 3) == 0 ||
1046 strncmp(model
->string
.pointer
, "S1N", 3) == 0 ||
1047 strncmp(model
->string
.pointer
, "S5N", 3) == 0 ||
1048 strncmp(model
->string
.pointer
, "W1N", 3) == 0)
1050 else if (strncmp(model
->string
.pointer
, "M1", 2) == 0)
1052 else if (strncmp(model
->string
.pointer
, "M2", 2) == 0 ||
1053 strncmp(model
->string
.pointer
, "L4E", 3) == 0)
1055 else if (strncmp(model
->string
.pointer
, "L2", 2) == 0)
1057 else if (strncmp(model
->string
.pointer
, "L8", 2) == 0)
1059 else if (strncmp(model
->string
.pointer
, "D1", 2) == 0)
1061 else if (strncmp(model
->string
.pointer
, "A1", 2) == 0)
1063 else if (strncmp(model
->string
.pointer
, "A2", 2) == 0)
1065 else if (strncmp(model
->string
.pointer
, "J1", 2) == 0)
1067 else if (strncmp(model
->string
.pointer
, "L5", 2) == 0)
1070 if (hotk
->model
== END_MODEL
) {
1071 printk("unsupported, trying default values, supply the "
1072 "developers with your DSDT\n");
1075 printk("supported\n");
1078 hotk
->methods
= &model_conf
[hotk
->model
];
1080 /* Sort of per-model blacklist */
1081 if (strncmp(model
->string
.pointer
, "L2B", 3) == 0)
1082 hotk
->methods
->lcd_status
= NULL
;
1083 /* L2B is similar enough to L3C to use its settings, with this only
1085 else if (strncmp(model
->string
.pointer
, "S5N", 3) == 0 ||
1086 strncmp(model
->string
.pointer
, "M5N", 3) == 0)
1087 hotk
->methods
->mt_mled
= NULL
;
1088 /* S5N and M5N have no MLED */
1089 else if (strncmp(model
->string
.pointer
, "M2N", 3) == 0 ||
1090 strncmp(model
->string
.pointer
, "W1N", 3) == 0)
1091 hotk
->methods
->mt_wled
= "WLED";
1092 /* M2N and W1N have a usable WLED */
1093 else if (asus_info
) {
1094 if (strncmp(asus_info
->oem_table_id
, "L1", 2) == 0)
1095 hotk
->methods
->mled_status
= NULL
;
1096 /* S1300A reports L84F, but L1400B too, account for that */
1099 acpi_os_free(model
);
1104 static int __init
asus_hotk_check(void)
1108 result
= acpi_bus_get_status(hotk
->device
);
1112 if (hotk
->device
->status
.present
) {
1113 result
= asus_hotk_get_info();
1115 printk(KERN_ERR
" Hotkey device not present, aborting\n");
1122 static int __init
asus_hotk_add(struct acpi_device
*device
)
1124 acpi_status status
= AE_OK
;
1130 printk(KERN_NOTICE
"Asus Laptop ACPI Extras version %s\n",
1134 (struct asus_hotk
*)kmalloc(sizeof(struct asus_hotk
), GFP_KERNEL
);
1137 memset(hotk
, 0, sizeof(struct asus_hotk
));
1139 hotk
->handle
= device
->handle
;
1140 strcpy(acpi_device_name(device
), ACPI_HOTK_DEVICE_NAME
);
1141 strcpy(acpi_device_class(device
), ACPI_HOTK_CLASS
);
1142 acpi_driver_data(device
) = hotk
;
1143 hotk
->device
= device
;
1145 result
= asus_hotk_check();
1149 result
= asus_hotk_add_fs(device
);
1154 * We install the handler, it will receive the hotk in parameter, so, we
1155 * could add other data to the hotk struct
1157 status
= acpi_install_notify_handler(hotk
->handle
, ACPI_SYSTEM_NOTIFY
,
1158 asus_hotk_notify
, hotk
);
1159 if (ACPI_FAILURE(status
))
1160 printk(KERN_ERR
" Error installing notify handler\n");
1162 /* For laptops without GPLV: init the hotk->brightness value */
1163 if ((!hotk
->methods
->brightness_get
)
1164 && (!hotk
->methods
->brightness_status
)
1165 && (hotk
->methods
->brightness_up
1166 && hotk
->methods
->brightness_down
)) {
1168 acpi_evaluate_object(NULL
, hotk
->methods
->brightness_down
,
1170 if (ACPI_FAILURE(status
))
1171 printk(KERN_WARNING
" Error changing brightness\n");
1174 acpi_evaluate_object(NULL
,
1175 hotk
->methods
->brightness_up
,
1177 if (ACPI_FAILURE(status
))
1178 printk(KERN_WARNING
" Strange, error changing"
1191 static int asus_hotk_remove(struct acpi_device
*device
, int type
)
1193 acpi_status status
= 0;
1195 if (!device
|| !acpi_driver_data(device
))
1198 status
= acpi_remove_notify_handler(hotk
->handle
, ACPI_SYSTEM_NOTIFY
,
1200 if (ACPI_FAILURE(status
))
1201 printk(KERN_ERR
"Asus ACPI: Error removing notify handler\n");
1203 asus_hotk_remove_fs(device
);
1210 static int __init
asus_acpi_init(void)
1217 if (!acpi_specific_hotkey_enabled
) {
1218 printk(KERN_ERR
"Using generic hotkey driver\n");
1221 asus_proc_dir
= proc_mkdir(PROC_ASUS
, acpi_root_dir
);
1222 if (!asus_proc_dir
) {
1223 printk(KERN_ERR
"Asus ACPI: Unable to create /proc entry\n");
1226 asus_proc_dir
->owner
= THIS_MODULE
;
1228 result
= acpi_bus_register_driver(&asus_hotk_driver
);
1230 acpi_bus_unregister_driver(&asus_hotk_driver
);
1231 remove_proc_entry(PROC_ASUS
, acpi_root_dir
);
1238 static void __exit
asus_acpi_exit(void)
1240 acpi_bus_unregister_driver(&asus_hotk_driver
);
1241 remove_proc_entry(PROC_ASUS
, acpi_root_dir
);
1243 acpi_os_free(asus_info
);
1248 module_init(asus_acpi_init
);
1249 module_exit(asus_acpi_exit
);