2 * asus-laptop.c - Asus Laptop Support
5 * Copyright (C) 2002-2005 Julien Lerouge, 2003-2006 Karol Kozimor
6 * Copyright (C) 2006-2007 Corentin Chary
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 * The development page for this driver is located at
24 * http://sourceforge.net/projects/acpi4asus/
27 * Pontus Fuchs - Helper functions, cleanup
28 * Johann Wiesner - Small compile fixes
29 * John Belmonte - ACPI code for Toshiba laptop was a good starting point.
30 * Eric Burghard - LED display support for W1N
31 * Josh Green - Light Sens support
32 * Thomas Tuttle - His first patch for led support was very helpful
33 * Sam Lin - GPS support
36 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
38 #include <linux/kernel.h>
39 #include <linux/module.h>
40 #include <linux/init.h>
41 #include <linux/types.h>
42 #include <linux/err.h>
43 #include <linux/proc_fs.h>
44 #include <linux/backlight.h>
46 #include <linux/leds.h>
47 #include <linux/platform_device.h>
48 #include <linux/uaccess.h>
49 #include <linux/input.h>
50 #include <linux/input/sparse-keymap.h>
51 #include <linux/rfkill.h>
52 #include <linux/slab.h>
53 #include <linux/dmi.h>
54 #include <acpi/acpi_drivers.h>
55 #include <acpi/acpi_bus.h>
57 #define ASUS_LAPTOP_VERSION "0.42"
59 #define ASUS_LAPTOP_NAME "Asus Laptop Support"
60 #define ASUS_LAPTOP_CLASS "hotkey"
61 #define ASUS_LAPTOP_DEVICE_NAME "Hotkey"
62 #define ASUS_LAPTOP_FILE KBUILD_MODNAME
63 #define ASUS_LAPTOP_PREFIX "\\_SB.ATKD."
65 MODULE_AUTHOR("Julien Lerouge, Karol Kozimor, Corentin Chary");
66 MODULE_DESCRIPTION(ASUS_LAPTOP_NAME
);
67 MODULE_LICENSE("GPL");
70 * WAPF defines the behavior of the Fn+Fx wlan key
71 * The significance of values is yet to be found, but
73 * Bit | Bluetooth | WLAN
74 * 0 | Hardware | Hardware
75 * 1 | Hardware | Software
76 * 4 | Software | Software
79 module_param(wapf
, uint
, 0444);
80 MODULE_PARM_DESC(wapf
, "WAPF value");
82 static int wlan_status
= 1;
83 static int bluetooth_status
= 1;
84 static int wimax_status
= -1;
85 static int wwan_status
= -1;
87 module_param(wlan_status
, int, 0444);
88 MODULE_PARM_DESC(wlan_status
, "Set the wireless status on boot "
89 "(0 = disabled, 1 = enabled, -1 = don't do anything). "
92 module_param(bluetooth_status
, int, 0444);
93 MODULE_PARM_DESC(bluetooth_status
, "Set the wireless status on boot "
94 "(0 = disabled, 1 = enabled, -1 = don't do anything). "
97 module_param(wimax_status
, int, 0444);
98 MODULE_PARM_DESC(wimax_status
, "Set the wireless status on boot "
99 "(0 = disabled, 1 = enabled, -1 = don't do anything). "
102 module_param(wwan_status
, int, 0444);
103 MODULE_PARM_DESC(wwan_status
, "Set the wireless status on boot "
104 "(0 = disabled, 1 = enabled, -1 = don't do anything). "
108 * Some events we use, same for all Asus
110 #define ATKD_BR_UP 0x10 /* (event & ~ATKD_BR_UP) = brightness level */
111 #define ATKD_BR_DOWN 0x20 /* (event & ~ATKD_BR_DOWN) = britghness level */
112 #define ATKD_BR_MIN ATKD_BR_UP
113 #define ATKD_BR_MAX (ATKD_BR_DOWN | 0xF) /* 0x2f */
114 #define ATKD_LCD_ON 0x33
115 #define ATKD_LCD_OFF 0x34
118 * Known bits returned by \_SB.ATKD.HWRS
121 #define BT_HWRS 0x100
124 * Flags for hotk status
125 * WL_ON and BT_ON are also used for wireless_status()
127 #define WL_RSTS 0x01 /* internal Wifi */
128 #define BT_RSTS 0x02 /* internal Bluetooth */
129 #define WM_RSTS 0x08 /* internal wimax */
130 #define WW_RSTS 0x20 /* internal wwan */
133 #define METHOD_MLED "MLED"
134 #define METHOD_TLED "TLED"
135 #define METHOD_RLED "RLED" /* W1JC */
136 #define METHOD_PLED "PLED" /* A7J */
137 #define METHOD_GLED "GLED" /* G1, G2 (probably) */
140 #define METHOD_LEDD "SLCM"
144 * WLED and BLED are not handled like other XLED, because in some dsdt
145 * they also control the WLAN/Bluetooth device.
147 #define METHOD_WLAN "WLED"
148 #define METHOD_BLUETOOTH "BLED"
151 #define METHOD_WWAN "GSMC"
152 #define METHOD_WIMAX "WMXC"
154 #define METHOD_WL_STATUS "RSTS"
157 #define METHOD_BRIGHTNESS_SET "SPLV"
158 #define METHOD_BRIGHTNESS_GET "GPLV"
161 #define METHOD_SWITCH_DISPLAY "SDSP"
163 #define METHOD_ALS_CONTROL "ALSC" /* Z71A Z71V */
164 #define METHOD_ALS_LEVEL "ALSL" /* Z71A Z71V */
167 /* R2H use different handle for GPS on/off */
168 #define METHOD_GPS_ON "SDON"
169 #define METHOD_GPS_OFF "SDOF"
170 #define METHOD_GPS_STATUS "GPST"
173 #define METHOD_KBD_LIGHT_SET "SLKB"
174 #define METHOD_KBD_LIGHT_GET "GLKB"
177 * Define a specific led structure to keep the main structure clean
181 struct work_struct work
;
182 struct led_classdev led
;
183 struct asus_laptop
*asus
;
188 * This is the main structure, we can use it to store anything interesting
189 * about the hotk device
192 char *name
; /* laptop name */
194 struct acpi_table_header
*dsdt_info
;
195 struct platform_device
*platform_device
;
196 struct acpi_device
*device
; /* the device we are in */
197 struct backlight_device
*backlight_device
;
199 struct input_dev
*inputdev
;
200 struct key_entry
*keymap
;
202 struct asus_led mled
;
203 struct asus_led tled
;
204 struct asus_led rled
;
205 struct asus_led pled
;
206 struct asus_led gled
;
207 struct asus_led kled
;
208 struct workqueue_struct
*led_workqueue
;
213 struct rfkill
*gps_rfkill
;
215 acpi_handle handle
; /* the handle of the hotk device */
216 u32 ledd_status
; /* status of the LED display */
217 u8 light_level
; /* light sensor level */
218 u8 light_switch
; /* light sensor switch value */
219 u16 event_count
[128]; /* count for each event TODO make this better */
222 static const struct key_entry asus_keymap
[] = {
223 /* Lenovo SL Specific keycodes */
224 {KE_KEY
, 0x02, { KEY_SCREENLOCK
} },
225 {KE_KEY
, 0x05, { KEY_WLAN
} },
226 {KE_KEY
, 0x08, { KEY_F13
} },
227 {KE_KEY
, 0x17, { KEY_ZOOM
} },
228 {KE_KEY
, 0x1f, { KEY_BATTERY
} },
229 /* End of Lenovo SL Specific keycodes */
230 {KE_KEY
, 0x30, { KEY_VOLUMEUP
} },
231 {KE_KEY
, 0x31, { KEY_VOLUMEDOWN
} },
232 {KE_KEY
, 0x32, { KEY_MUTE
} },
233 {KE_KEY
, 0x33, { KEY_SWITCHVIDEOMODE
} },
234 {KE_KEY
, 0x34, { KEY_SWITCHVIDEOMODE
} },
235 {KE_KEY
, 0x40, { KEY_PREVIOUSSONG
} },
236 {KE_KEY
, 0x41, { KEY_NEXTSONG
} },
237 {KE_KEY
, 0x43, { KEY_STOPCD
} },
238 {KE_KEY
, 0x45, { KEY_PLAYPAUSE
} },
239 {KE_KEY
, 0x4c, { KEY_MEDIA
} },
240 {KE_KEY
, 0x50, { KEY_EMAIL
} },
241 {KE_KEY
, 0x51, { KEY_WWW
} },
242 {KE_KEY
, 0x55, { KEY_CALC
} },
243 {KE_KEY
, 0x5C, { KEY_SCREENLOCK
} }, /* Screenlock */
244 {KE_KEY
, 0x5D, { KEY_WLAN
} },
245 {KE_KEY
, 0x5E, { KEY_WLAN
} },
246 {KE_KEY
, 0x5F, { KEY_WLAN
} },
247 {KE_KEY
, 0x60, { KEY_SWITCHVIDEOMODE
} },
248 {KE_KEY
, 0x61, { KEY_SWITCHVIDEOMODE
} },
249 {KE_KEY
, 0x62, { KEY_SWITCHVIDEOMODE
} },
250 {KE_KEY
, 0x63, { KEY_SWITCHVIDEOMODE
} },
251 {KE_KEY
, 0x6B, { KEY_F13
} }, /* Lock Touchpad */
252 {KE_KEY
, 0x7E, { KEY_BLUETOOTH
} },
253 {KE_KEY
, 0x7D, { KEY_BLUETOOTH
} },
254 {KE_KEY
, 0x82, { KEY_CAMERA
} },
255 {KE_KEY
, 0x88, { KEY_WLAN
} },
256 {KE_KEY
, 0x8A, { KEY_PROG1
} },
257 {KE_KEY
, 0x95, { KEY_MEDIA
} },
258 {KE_KEY
, 0x99, { KEY_PHONE
} },
259 {KE_KEY
, 0xc4, { KEY_KBDILLUMUP
} },
260 {KE_KEY
, 0xc5, { KEY_KBDILLUMDOWN
} },
261 {KE_KEY
, 0xb5, { KEY_CALC
} },
267 * This function evaluates an ACPI method, given an int as parameter, the
268 * method is searched within the scope of the handle, can be NULL. The output
269 * of the method is written is output, which can also be NULL
271 * returns 0 if write is successful, -1 else.
273 static int write_acpi_int_ret(acpi_handle handle
, const char *method
, int val
,
274 struct acpi_buffer
*output
)
276 struct acpi_object_list params
; /* list of input parameters (an int) */
277 union acpi_object in_obj
; /* the only param we use */
284 params
.pointer
= &in_obj
;
285 in_obj
.type
= ACPI_TYPE_INTEGER
;
286 in_obj
.integer
.value
= val
;
288 status
= acpi_evaluate_object(handle
, (char *)method
, ¶ms
, output
);
295 static int write_acpi_int(acpi_handle handle
, const char *method
, int val
)
297 return write_acpi_int_ret(handle
, method
, val
, NULL
);
300 static int acpi_check_handle(acpi_handle handle
, const char *method
,
309 status
= acpi_get_handle(handle
, (char *)method
,
314 status
= acpi_get_handle(handle
, (char *)method
,
318 if (status
!= AE_OK
) {
320 pr_warn("Error finding %s\n", method
);
326 /* Generic LED function */
327 static int asus_led_set(struct asus_laptop
*asus
, const char *method
,
330 if (!strcmp(method
, METHOD_MLED
))
332 else if (!strcmp(method
, METHOD_GLED
))
337 return write_acpi_int(asus
->handle
, method
, value
);
343 /* /sys/class/led handlers */
344 static void asus_led_cdev_set(struct led_classdev
*led_cdev
,
345 enum led_brightness value
)
347 struct asus_led
*led
= container_of(led_cdev
, struct asus_led
, led
);
348 struct asus_laptop
*asus
= led
->asus
;
351 queue_work(asus
->led_workqueue
, &led
->work
);
354 static void asus_led_cdev_update(struct work_struct
*work
)
356 struct asus_led
*led
= container_of(work
, struct asus_led
, work
);
357 struct asus_laptop
*asus
= led
->asus
;
359 asus_led_set(asus
, led
->method
, led
->wk
);
362 static enum led_brightness
asus_led_cdev_get(struct led_classdev
*led_cdev
)
364 return led_cdev
->brightness
;
368 * Keyboard backlight (also a LED)
370 static int asus_kled_lvl(struct asus_laptop
*asus
)
372 unsigned long long kblv
;
373 struct acpi_object_list params
;
374 union acpi_object in_obj
;
378 params
.pointer
= &in_obj
;
379 in_obj
.type
= ACPI_TYPE_INTEGER
;
380 in_obj
.integer
.value
= 2;
382 rv
= acpi_evaluate_integer(asus
->handle
, METHOD_KBD_LIGHT_GET
,
384 if (ACPI_FAILURE(rv
)) {
385 pr_warn("Error reading kled level\n");
391 static int asus_kled_set(struct asus_laptop
*asus
, int kblv
)
394 kblv
= (1 << 7) | (kblv
& 0x7F);
398 if (write_acpi_int(asus
->handle
, METHOD_KBD_LIGHT_SET
, kblv
)) {
399 pr_warn("Keyboard LED display write failed\n");
405 static void asus_kled_cdev_set(struct led_classdev
*led_cdev
,
406 enum led_brightness value
)
408 struct asus_led
*led
= container_of(led_cdev
, struct asus_led
, led
);
409 struct asus_laptop
*asus
= led
->asus
;
412 queue_work(asus
->led_workqueue
, &led
->work
);
415 static void asus_kled_cdev_update(struct work_struct
*work
)
417 struct asus_led
*led
= container_of(work
, struct asus_led
, work
);
418 struct asus_laptop
*asus
= led
->asus
;
420 asus_kled_set(asus
, led
->wk
);
423 static enum led_brightness
asus_kled_cdev_get(struct led_classdev
*led_cdev
)
425 struct asus_led
*led
= container_of(led_cdev
, struct asus_led
, led
);
426 struct asus_laptop
*asus
= led
->asus
;
428 return asus_kled_lvl(asus
);
431 static void asus_led_exit(struct asus_laptop
*asus
)
433 if (asus
->mled
.led
.dev
)
434 led_classdev_unregister(&asus
->mled
.led
);
435 if (asus
->tled
.led
.dev
)
436 led_classdev_unregister(&asus
->tled
.led
);
437 if (asus
->pled
.led
.dev
)
438 led_classdev_unregister(&asus
->pled
.led
);
439 if (asus
->rled
.led
.dev
)
440 led_classdev_unregister(&asus
->rled
.led
);
441 if (asus
->gled
.led
.dev
)
442 led_classdev_unregister(&asus
->gled
.led
);
443 if (asus
->kled
.led
.dev
)
444 led_classdev_unregister(&asus
->kled
.led
);
445 if (asus
->led_workqueue
) {
446 destroy_workqueue(asus
->led_workqueue
);
447 asus
->led_workqueue
= NULL
;
451 /* Ugly macro, need to fix that later */
452 static int asus_led_register(struct asus_laptop
*asus
,
453 struct asus_led
*led
,
454 const char *name
, const char *method
)
456 struct led_classdev
*led_cdev
= &led
->led
;
458 if (!method
|| acpi_check_handle(asus
->handle
, method
, NULL
))
459 return 0; /* Led not present */
462 led
->method
= method
;
464 INIT_WORK(&led
->work
, asus_led_cdev_update
);
465 led_cdev
->name
= name
;
466 led_cdev
->brightness_set
= asus_led_cdev_set
;
467 led_cdev
->brightness_get
= asus_led_cdev_get
;
468 led_cdev
->max_brightness
= 1;
469 return led_classdev_register(&asus
->platform_device
->dev
, led_cdev
);
472 static int asus_led_init(struct asus_laptop
*asus
)
477 * Functions that actually update the LED's are called from a
478 * workqueue. By doing this as separate work rather than when the LED
479 * subsystem asks, we avoid messing with the Asus ACPI stuff during a
480 * potentially bad time, such as a timer interrupt.
482 asus
->led_workqueue
= create_singlethread_workqueue("led_workqueue");
483 if (!asus
->led_workqueue
)
486 r
= asus_led_register(asus
, &asus
->mled
, "asus::mail", METHOD_MLED
);
489 r
= asus_led_register(asus
, &asus
->tled
, "asus::touchpad", METHOD_TLED
);
492 r
= asus_led_register(asus
, &asus
->rled
, "asus::record", METHOD_RLED
);
495 r
= asus_led_register(asus
, &asus
->pled
, "asus::phone", METHOD_PLED
);
498 r
= asus_led_register(asus
, &asus
->gled
, "asus::gaming", METHOD_GLED
);
501 if (!acpi_check_handle(asus
->handle
, METHOD_KBD_LIGHT_SET
, NULL
) &&
502 !acpi_check_handle(asus
->handle
, METHOD_KBD_LIGHT_GET
, NULL
)) {
503 struct asus_led
*led
= &asus
->kled
;
504 struct led_classdev
*cdev
= &led
->led
;
508 INIT_WORK(&led
->work
, asus_kled_cdev_update
);
509 cdev
->name
= "asus::kbd_backlight";
510 cdev
->brightness_set
= asus_kled_cdev_set
;
511 cdev
->brightness_get
= asus_kled_cdev_get
;
512 cdev
->max_brightness
= 3;
513 r
= led_classdev_register(&asus
->platform_device
->dev
, cdev
);
524 static int asus_read_brightness(struct backlight_device
*bd
)
526 struct asus_laptop
*asus
= bl_get_data(bd
);
527 unsigned long long value
;
528 acpi_status rv
= AE_OK
;
530 rv
= acpi_evaluate_integer(asus
->handle
, METHOD_BRIGHTNESS_GET
,
532 if (ACPI_FAILURE(rv
))
533 pr_warn("Error reading brightness\n");
538 static int asus_set_brightness(struct backlight_device
*bd
, int value
)
540 struct asus_laptop
*asus
= bl_get_data(bd
);
542 if (write_acpi_int(asus
->handle
, METHOD_BRIGHTNESS_SET
, value
)) {
543 pr_warn("Error changing brightness\n");
549 static int update_bl_status(struct backlight_device
*bd
)
551 int value
= bd
->props
.brightness
;
553 return asus_set_brightness(bd
, value
);
556 static const struct backlight_ops asusbl_ops
= {
557 .get_brightness
= asus_read_brightness
,
558 .update_status
= update_bl_status
,
561 static int asus_backlight_notify(struct asus_laptop
*asus
)
563 struct backlight_device
*bd
= asus
->backlight_device
;
564 int old
= bd
->props
.brightness
;
566 backlight_force_update(bd
, BACKLIGHT_UPDATE_HOTKEY
);
571 static int asus_backlight_init(struct asus_laptop
*asus
)
573 struct backlight_device
*bd
;
574 struct backlight_properties props
;
576 if (acpi_check_handle(asus
->handle
, METHOD_BRIGHTNESS_GET
, NULL
) ||
577 acpi_check_handle(asus
->handle
, METHOD_BRIGHTNESS_SET
, NULL
))
580 memset(&props
, 0, sizeof(struct backlight_properties
));
581 props
.max_brightness
= 15;
582 props
.type
= BACKLIGHT_PLATFORM
;
584 bd
= backlight_device_register(ASUS_LAPTOP_FILE
,
585 &asus
->platform_device
->dev
, asus
,
586 &asusbl_ops
, &props
);
588 pr_err("Could not register asus backlight device\n");
589 asus
->backlight_device
= NULL
;
593 asus
->backlight_device
= bd
;
594 bd
->props
.brightness
= asus_read_brightness(bd
);
595 bd
->props
.power
= FB_BLANK_UNBLANK
;
596 backlight_update_status(bd
);
600 static void asus_backlight_exit(struct asus_laptop
*asus
)
602 if (asus
->backlight_device
)
603 backlight_device_unregister(asus
->backlight_device
);
604 asus
->backlight_device
= NULL
;
608 * Platform device handlers
612 * We write our info in page, we begin at offset off and cannot write more
613 * than count bytes. We set eof to 1 if we handle those 2 values. We return the
614 * number of bytes written in page
616 static ssize_t
show_infos(struct device
*dev
,
617 struct device_attribute
*attr
, char *page
)
619 struct asus_laptop
*asus
= dev_get_drvdata(dev
);
621 unsigned long long temp
;
622 char buf
[16]; /* enough for all info */
623 acpi_status rv
= AE_OK
;
626 * We use the easy way, we don't care of off and count,
627 * so we don't set eof to 1
630 len
+= sprintf(page
, ASUS_LAPTOP_NAME
" " ASUS_LAPTOP_VERSION
"\n");
631 len
+= sprintf(page
+ len
, "Model reference : %s\n", asus
->name
);
633 * The SFUN method probably allows the original driver to get the list
634 * of features supported by a given model. For now, 0x0100 or 0x0800
635 * bit signifies that the laptop is equipped with a Wi-Fi MiniPCI card.
636 * The significance of others is yet to be found.
638 rv
= acpi_evaluate_integer(asus
->handle
, "SFUN", NULL
, &temp
);
639 if (!ACPI_FAILURE(rv
))
640 len
+= sprintf(page
+ len
, "SFUN value : %#x\n",
643 * The HWRS method return informations about the hardware.
644 * 0x80 bit is for WLAN, 0x100 for Bluetooth.
645 * The significance of others is yet to be found.
646 * If we don't find the method, we assume the device are present.
648 rv
= acpi_evaluate_integer(asus
->handle
, "HRWS", NULL
, &temp
);
649 if (!ACPI_FAILURE(rv
))
650 len
+= sprintf(page
+ len
, "HRWS value : %#x\n",
653 * Another value for userspace: the ASYM method returns 0x02 for
654 * battery low and 0x04 for battery critical, its readings tend to be
655 * more accurate than those provided by _BST.
656 * Note: since not all the laptops provide this method, errors are
659 rv
= acpi_evaluate_integer(asus
->handle
, "ASYM", NULL
, &temp
);
660 if (!ACPI_FAILURE(rv
))
661 len
+= sprintf(page
+ len
, "ASYM value : %#x\n",
663 if (asus
->dsdt_info
) {
664 snprintf(buf
, 16, "%d", asus
->dsdt_info
->length
);
665 len
+= sprintf(page
+ len
, "DSDT length : %s\n", buf
);
666 snprintf(buf
, 16, "%d", asus
->dsdt_info
->checksum
);
667 len
+= sprintf(page
+ len
, "DSDT checksum : %s\n", buf
);
668 snprintf(buf
, 16, "%d", asus
->dsdt_info
->revision
);
669 len
+= sprintf(page
+ len
, "DSDT revision : %s\n", buf
);
670 snprintf(buf
, 7, "%s", asus
->dsdt_info
->oem_id
);
671 len
+= sprintf(page
+ len
, "OEM id : %s\n", buf
);
672 snprintf(buf
, 9, "%s", asus
->dsdt_info
->oem_table_id
);
673 len
+= sprintf(page
+ len
, "OEM table id : %s\n", buf
);
674 snprintf(buf
, 16, "%x", asus
->dsdt_info
->oem_revision
);
675 len
+= sprintf(page
+ len
, "OEM revision : 0x%s\n", buf
);
676 snprintf(buf
, 5, "%s", asus
->dsdt_info
->asl_compiler_id
);
677 len
+= sprintf(page
+ len
, "ASL comp vendor id : %s\n", buf
);
678 snprintf(buf
, 16, "%x", asus
->dsdt_info
->asl_compiler_revision
);
679 len
+= sprintf(page
+ len
, "ASL comp revision : 0x%s\n", buf
);
685 static int parse_arg(const char *buf
, unsigned long count
, int *val
)
691 if (sscanf(buf
, "%i", val
) != 1)
696 static ssize_t
sysfs_acpi_set(struct asus_laptop
*asus
,
697 const char *buf
, size_t count
,
703 rv
= parse_arg(buf
, count
, &value
);
707 if (write_acpi_int(asus
->handle
, method
, value
))
715 static ssize_t
show_ledd(struct device
*dev
,
716 struct device_attribute
*attr
, char *buf
)
718 struct asus_laptop
*asus
= dev_get_drvdata(dev
);
720 return sprintf(buf
, "0x%08x\n", asus
->ledd_status
);
723 static ssize_t
store_ledd(struct device
*dev
, struct device_attribute
*attr
,
724 const char *buf
, size_t count
)
726 struct asus_laptop
*asus
= dev_get_drvdata(dev
);
729 rv
= parse_arg(buf
, count
, &value
);
731 if (write_acpi_int(asus
->handle
, METHOD_LEDD
, value
)) {
732 pr_warn("LED display write failed\n");
735 asus
->ledd_status
= (u32
) value
;
743 static int asus_wireless_status(struct asus_laptop
*asus
, int mask
)
745 unsigned long long status
;
746 acpi_status rv
= AE_OK
;
748 if (!asus
->have_rsts
)
749 return (asus
->wireless_status
& mask
) ? 1 : 0;
751 rv
= acpi_evaluate_integer(asus
->handle
, METHOD_WL_STATUS
,
753 if (ACPI_FAILURE(rv
)) {
754 pr_warn("Error reading Wireless status\n");
757 return !!(status
& mask
);
763 static int asus_wlan_set(struct asus_laptop
*asus
, int status
)
765 if (write_acpi_int(asus
->handle
, METHOD_WLAN
, !!status
)) {
766 pr_warn("Error setting wlan status to %d\n", status
);
772 static ssize_t
show_wlan(struct device
*dev
,
773 struct device_attribute
*attr
, char *buf
)
775 struct asus_laptop
*asus
= dev_get_drvdata(dev
);
777 return sprintf(buf
, "%d\n", asus_wireless_status(asus
, WL_RSTS
));
780 static ssize_t
store_wlan(struct device
*dev
, struct device_attribute
*attr
,
781 const char *buf
, size_t count
)
783 struct asus_laptop
*asus
= dev_get_drvdata(dev
);
785 return sysfs_acpi_set(asus
, buf
, count
, METHOD_WLAN
);
791 static int asus_bluetooth_set(struct asus_laptop
*asus
, int status
)
793 if (write_acpi_int(asus
->handle
, METHOD_BLUETOOTH
, !!status
)) {
794 pr_warn("Error setting bluetooth status to %d\n", status
);
800 static ssize_t
show_bluetooth(struct device
*dev
,
801 struct device_attribute
*attr
, char *buf
)
803 struct asus_laptop
*asus
= dev_get_drvdata(dev
);
805 return sprintf(buf
, "%d\n", asus_wireless_status(asus
, BT_RSTS
));
808 static ssize_t
store_bluetooth(struct device
*dev
,
809 struct device_attribute
*attr
, const char *buf
,
812 struct asus_laptop
*asus
= dev_get_drvdata(dev
);
814 return sysfs_acpi_set(asus
, buf
, count
, METHOD_BLUETOOTH
);
820 static int asus_wimax_set(struct asus_laptop
*asus
, int status
)
822 if (write_acpi_int(asus
->handle
, METHOD_WIMAX
, !!status
)) {
823 pr_warn("Error setting wimax status to %d\n", status
);
829 static ssize_t
show_wimax(struct device
*dev
,
830 struct device_attribute
*attr
, char *buf
)
832 struct asus_laptop
*asus
= dev_get_drvdata(dev
);
834 return sprintf(buf
, "%d\n", asus_wireless_status(asus
, WM_RSTS
));
837 static ssize_t
store_wimax(struct device
*dev
,
838 struct device_attribute
*attr
, const char *buf
,
841 struct asus_laptop
*asus
= dev_get_drvdata(dev
);
843 return sysfs_acpi_set(asus
, buf
, count
, METHOD_WIMAX
);
849 static int asus_wwan_set(struct asus_laptop
*asus
, int status
)
851 if (write_acpi_int(asus
->handle
, METHOD_WWAN
, !!status
)) {
852 pr_warn("Error setting wwan status to %d\n", status
);
858 static ssize_t
show_wwan(struct device
*dev
,
859 struct device_attribute
*attr
, char *buf
)
861 struct asus_laptop
*asus
= dev_get_drvdata(dev
);
863 return sprintf(buf
, "%d\n", asus_wireless_status(asus
, WW_RSTS
));
866 static ssize_t
store_wwan(struct device
*dev
,
867 struct device_attribute
*attr
, const char *buf
,
870 struct asus_laptop
*asus
= dev_get_drvdata(dev
);
872 return sysfs_acpi_set(asus
, buf
, count
, METHOD_WWAN
);
878 static void asus_set_display(struct asus_laptop
*asus
, int value
)
880 /* no sanity check needed for now */
881 if (write_acpi_int(asus
->handle
, METHOD_SWITCH_DISPLAY
, value
))
882 pr_warn("Error setting display\n");
887 * Experimental support for display switching. As of now: 1 should activate
888 * the LCD output, 2 should do for CRT, 4 for TV-Out and 8 for DVI.
889 * Any combination (bitwise) of these will suffice. I never actually tested 4
890 * displays hooked up simultaneously, so be warned. See the acpi4asus README
893 static ssize_t
store_disp(struct device
*dev
, struct device_attribute
*attr
,
894 const char *buf
, size_t count
)
896 struct asus_laptop
*asus
= dev_get_drvdata(dev
);
899 rv
= parse_arg(buf
, count
, &value
);
901 asus_set_display(asus
, value
);
908 static void asus_als_switch(struct asus_laptop
*asus
, int value
)
910 if (write_acpi_int(asus
->handle
, METHOD_ALS_CONTROL
, value
))
911 pr_warn("Error setting light sensor switch\n");
912 asus
->light_switch
= value
;
915 static ssize_t
show_lssw(struct device
*dev
,
916 struct device_attribute
*attr
, char *buf
)
918 struct asus_laptop
*asus
= dev_get_drvdata(dev
);
920 return sprintf(buf
, "%d\n", asus
->light_switch
);
923 static ssize_t
store_lssw(struct device
*dev
, struct device_attribute
*attr
,
924 const char *buf
, size_t count
)
926 struct asus_laptop
*asus
= dev_get_drvdata(dev
);
929 rv
= parse_arg(buf
, count
, &value
);
931 asus_als_switch(asus
, value
? 1 : 0);
936 static void asus_als_level(struct asus_laptop
*asus
, int value
)
938 if (write_acpi_int(asus
->handle
, METHOD_ALS_LEVEL
, value
))
939 pr_warn("Error setting light sensor level\n");
940 asus
->light_level
= value
;
943 static ssize_t
show_lslvl(struct device
*dev
,
944 struct device_attribute
*attr
, char *buf
)
946 struct asus_laptop
*asus
= dev_get_drvdata(dev
);
948 return sprintf(buf
, "%d\n", asus
->light_level
);
951 static ssize_t
store_lslvl(struct device
*dev
, struct device_attribute
*attr
,
952 const char *buf
, size_t count
)
954 struct asus_laptop
*asus
= dev_get_drvdata(dev
);
957 rv
= parse_arg(buf
, count
, &value
);
959 value
= (0 < value
) ? ((15 < value
) ? 15 : value
) : 0;
960 /* 0 <= value <= 15 */
961 asus_als_level(asus
, value
);
970 static int asus_gps_status(struct asus_laptop
*asus
)
972 unsigned long long status
;
973 acpi_status rv
= AE_OK
;
975 rv
= acpi_evaluate_integer(asus
->handle
, METHOD_GPS_STATUS
,
977 if (ACPI_FAILURE(rv
)) {
978 pr_warn("Error reading GPS status\n");
984 static int asus_gps_switch(struct asus_laptop
*asus
, int status
)
986 const char *meth
= status
? METHOD_GPS_ON
: METHOD_GPS_OFF
;
988 if (write_acpi_int(asus
->handle
, meth
, 0x02))
993 static ssize_t
show_gps(struct device
*dev
,
994 struct device_attribute
*attr
, char *buf
)
996 struct asus_laptop
*asus
= dev_get_drvdata(dev
);
998 return sprintf(buf
, "%d\n", asus_gps_status(asus
));
1001 static ssize_t
store_gps(struct device
*dev
, struct device_attribute
*attr
,
1002 const char *buf
, size_t count
)
1004 struct asus_laptop
*asus
= dev_get_drvdata(dev
);
1008 rv
= parse_arg(buf
, count
, &value
);
1011 ret
= asus_gps_switch(asus
, !!value
);
1014 rfkill_set_sw_state(asus
->gps_rfkill
, !value
);
1021 static int asus_gps_rfkill_set(void *data
, bool blocked
)
1023 struct asus_laptop
*asus
= data
;
1025 return asus_gps_switch(asus
, !blocked
);
1028 static const struct rfkill_ops asus_gps_rfkill_ops
= {
1029 .set_block
= asus_gps_rfkill_set
,
1032 static void asus_rfkill_exit(struct asus_laptop
*asus
)
1034 if (asus
->gps_rfkill
) {
1035 rfkill_unregister(asus
->gps_rfkill
);
1036 rfkill_destroy(asus
->gps_rfkill
);
1037 asus
->gps_rfkill
= NULL
;
1041 static int asus_rfkill_init(struct asus_laptop
*asus
)
1045 if (acpi_check_handle(asus
->handle
, METHOD_GPS_ON
, NULL
) ||
1046 acpi_check_handle(asus
->handle
, METHOD_GPS_OFF
, NULL
) ||
1047 acpi_check_handle(asus
->handle
, METHOD_GPS_STATUS
, NULL
))
1050 asus
->gps_rfkill
= rfkill_alloc("asus-gps", &asus
->platform_device
->dev
,
1052 &asus_gps_rfkill_ops
, asus
);
1053 if (!asus
->gps_rfkill
)
1056 result
= rfkill_register(asus
->gps_rfkill
);
1058 rfkill_destroy(asus
->gps_rfkill
);
1059 asus
->gps_rfkill
= NULL
;
1066 * Input device (i.e. hotkeys)
1068 static void asus_input_notify(struct asus_laptop
*asus
, int event
)
1071 sparse_keymap_report_event(asus
->inputdev
, event
, 1, true);
1074 static int asus_input_init(struct asus_laptop
*asus
)
1076 struct input_dev
*input
;
1079 input
= input_allocate_device();
1081 pr_info("Unable to allocate input device\n");
1084 input
->name
= "Asus Laptop extra buttons";
1085 input
->phys
= ASUS_LAPTOP_FILE
"/input0";
1086 input
->id
.bustype
= BUS_HOST
;
1087 input
->dev
.parent
= &asus
->platform_device
->dev
;
1089 error
= sparse_keymap_setup(input
, asus_keymap
, NULL
);
1091 pr_err("Unable to setup input device keymap\n");
1094 error
= input_register_device(input
);
1096 pr_info("Unable to register input device\n");
1097 goto err_free_keymap
;
1100 asus
->inputdev
= input
;
1104 sparse_keymap_free(input
);
1106 input_free_device(input
);
1110 static void asus_input_exit(struct asus_laptop
*asus
)
1112 if (asus
->inputdev
) {
1113 sparse_keymap_free(asus
->inputdev
);
1114 input_unregister_device(asus
->inputdev
);
1116 asus
->inputdev
= NULL
;
1122 static void asus_acpi_notify(struct acpi_device
*device
, u32 event
)
1124 struct asus_laptop
*asus
= acpi_driver_data(device
);
1127 /* TODO Find a better way to handle events count. */
1128 count
= asus
->event_count
[event
% 128]++;
1129 acpi_bus_generate_proc_event(asus
->device
, event
, count
);
1130 acpi_bus_generate_netlink_event(asus
->device
->pnp
.device_class
,
1131 dev_name(&asus
->device
->dev
), event
,
1134 /* Brightness events are special */
1135 if (event
>= ATKD_BR_MIN
&& event
<= ATKD_BR_MAX
) {
1137 /* Ignore them completely if the acpi video driver is used */
1138 if (asus
->backlight_device
!= NULL
) {
1139 /* Update the backlight device. */
1140 asus_backlight_notify(asus
);
1144 asus_input_notify(asus
, event
);
1147 static DEVICE_ATTR(infos
, S_IRUGO
, show_infos
, NULL
);
1148 static DEVICE_ATTR(wlan
, S_IRUGO
| S_IWUSR
, show_wlan
, store_wlan
);
1149 static DEVICE_ATTR(bluetooth
, S_IRUGO
| S_IWUSR
,
1150 show_bluetooth
, store_bluetooth
);
1151 static DEVICE_ATTR(wimax
, S_IRUGO
| S_IWUSR
, show_wimax
, store_wimax
);
1152 static DEVICE_ATTR(wwan
, S_IRUGO
| S_IWUSR
, show_wwan
, store_wwan
);
1153 static DEVICE_ATTR(display
, S_IWUSR
, NULL
, store_disp
);
1154 static DEVICE_ATTR(ledd
, S_IRUGO
| S_IWUSR
, show_ledd
, store_ledd
);
1155 static DEVICE_ATTR(ls_level
, S_IRUGO
| S_IWUSR
, show_lslvl
, store_lslvl
);
1156 static DEVICE_ATTR(ls_switch
, S_IRUGO
| S_IWUSR
, show_lssw
, store_lssw
);
1157 static DEVICE_ATTR(gps
, S_IRUGO
| S_IWUSR
, show_gps
, store_gps
);
1159 static struct attribute
*asus_attributes
[] = {
1160 &dev_attr_infos
.attr
,
1161 &dev_attr_wlan
.attr
,
1162 &dev_attr_bluetooth
.attr
,
1163 &dev_attr_wimax
.attr
,
1164 &dev_attr_wwan
.attr
,
1165 &dev_attr_display
.attr
,
1166 &dev_attr_ledd
.attr
,
1167 &dev_attr_ls_level
.attr
,
1168 &dev_attr_ls_switch
.attr
,
1173 static mode_t
asus_sysfs_is_visible(struct kobject
*kobj
,
1174 struct attribute
*attr
,
1177 struct device
*dev
= container_of(kobj
, struct device
, kobj
);
1178 struct platform_device
*pdev
= to_platform_device(dev
);
1179 struct asus_laptop
*asus
= platform_get_drvdata(pdev
);
1180 acpi_handle handle
= asus
->handle
;
1183 if (attr
== &dev_attr_wlan
.attr
) {
1184 supported
= !acpi_check_handle(handle
, METHOD_WLAN
, NULL
);
1186 } else if (attr
== &dev_attr_bluetooth
.attr
) {
1187 supported
= !acpi_check_handle(handle
, METHOD_BLUETOOTH
, NULL
);
1189 } else if (attr
== &dev_attr_display
.attr
) {
1190 supported
= !acpi_check_handle(handle
, METHOD_SWITCH_DISPLAY
, NULL
);
1192 } else if (attr
== &dev_attr_wimax
.attr
) {
1194 !acpi_check_handle(asus
->handle
, METHOD_WIMAX
, NULL
);
1196 } else if (attr
== &dev_attr_wwan
.attr
) {
1197 supported
= !acpi_check_handle(asus
->handle
, METHOD_WWAN
, NULL
);
1199 } else if (attr
== &dev_attr_ledd
.attr
) {
1200 supported
= !acpi_check_handle(handle
, METHOD_LEDD
, NULL
);
1202 } else if (attr
== &dev_attr_ls_switch
.attr
||
1203 attr
== &dev_attr_ls_level
.attr
) {
1204 supported
= !acpi_check_handle(handle
, METHOD_ALS_CONTROL
, NULL
) &&
1205 !acpi_check_handle(handle
, METHOD_ALS_LEVEL
, NULL
);
1207 } else if (attr
== &dev_attr_gps
.attr
) {
1208 supported
= !acpi_check_handle(handle
, METHOD_GPS_ON
, NULL
) &&
1209 !acpi_check_handle(handle
, METHOD_GPS_OFF
, NULL
) &&
1210 !acpi_check_handle(handle
, METHOD_GPS_STATUS
, NULL
);
1215 return supported
? attr
->mode
: 0;
1219 static const struct attribute_group asus_attr_group
= {
1220 .is_visible
= asus_sysfs_is_visible
,
1221 .attrs
= asus_attributes
,
1224 static int asus_platform_init(struct asus_laptop
*asus
)
1228 asus
->platform_device
= platform_device_alloc(ASUS_LAPTOP_FILE
, -1);
1229 if (!asus
->platform_device
)
1231 platform_set_drvdata(asus
->platform_device
, asus
);
1233 result
= platform_device_add(asus
->platform_device
);
1235 goto fail_platform_device
;
1237 result
= sysfs_create_group(&asus
->platform_device
->dev
.kobj
,
1245 platform_device_del(asus
->platform_device
);
1246 fail_platform_device
:
1247 platform_device_put(asus
->platform_device
);
1251 static void asus_platform_exit(struct asus_laptop
*asus
)
1253 sysfs_remove_group(&asus
->platform_device
->dev
.kobj
, &asus_attr_group
);
1254 platform_device_unregister(asus
->platform_device
);
1257 static struct platform_driver platform_driver
= {
1259 .name
= ASUS_LAPTOP_FILE
,
1260 .owner
= THIS_MODULE
,
1265 * This function is used to initialize the context with right values. In this
1266 * method, we can make all the detection we want, and modify the asus_laptop
1269 static int asus_laptop_get_info(struct asus_laptop
*asus
)
1271 struct acpi_buffer buffer
= { ACPI_ALLOCATE_BUFFER
, NULL
};
1272 union acpi_object
*model
= NULL
;
1273 unsigned long long bsts_result
, hwrs_result
;
1274 char *string
= NULL
;
1278 * Get DSDT headers early enough to allow for differentiating between
1279 * models, but late enough to allow acpi_bus_register_driver() to fail
1280 * before doing anything ACPI-specific. Should we encounter a machine,
1281 * which needs special handling (i.e. its hotkey device has a different
1282 * HID), this bit will be moved.
1284 status
= acpi_get_table(ACPI_SIG_DSDT
, 1, &asus
->dsdt_info
);
1285 if (ACPI_FAILURE(status
))
1286 pr_warn("Couldn't get the DSDT table header\n");
1288 /* We have to write 0 on init this far for all ASUS models */
1289 if (write_acpi_int_ret(asus
->handle
, "INIT", 0, &buffer
)) {
1290 pr_err("Hotkey initialization failed\n");
1294 /* This needs to be called for some laptops to init properly */
1296 acpi_evaluate_integer(asus
->handle
, "BSTS", NULL
, &bsts_result
);
1297 if (ACPI_FAILURE(status
))
1298 pr_warn("Error calling BSTS\n");
1299 else if (bsts_result
)
1300 pr_notice("BSTS called, 0x%02x returned\n",
1301 (uint
) bsts_result
);
1304 if (write_acpi_int(asus
->handle
, "CWAP", wapf
))
1305 pr_err("Error calling CWAP(%d)\n", wapf
);
1307 * Try to match the object returned by INIT to the specific model.
1308 * Handle every possible object (or the lack of thereof) the DSDT
1309 * writers might throw at us. When in trouble, we pass NULL to
1310 * asus_model_match() and try something completely different.
1312 if (buffer
.pointer
) {
1313 model
= buffer
.pointer
;
1314 switch (model
->type
) {
1315 case ACPI_TYPE_STRING
:
1316 string
= model
->string
.pointer
;
1318 case ACPI_TYPE_BUFFER
:
1319 string
= model
->buffer
.pointer
;
1326 asus
->name
= kstrdup(string
, GFP_KERNEL
);
1328 kfree(buffer
.pointer
);
1333 pr_notice(" %s model detected\n", string
);
1336 * The HWRS method return informations about the hardware.
1337 * 0x80 bit is for WLAN, 0x100 for Bluetooth,
1338 * 0x40 for WWAN, 0x10 for WIMAX.
1339 * The significance of others is yet to be found.
1342 acpi_evaluate_integer(asus
->handle
, "HRWS", NULL
, &hwrs_result
);
1343 if (!ACPI_FAILURE(status
))
1344 pr_notice(" HRWS returned %x", (int)hwrs_result
);
1346 if (!acpi_check_handle(asus
->handle
, METHOD_WL_STATUS
, NULL
))
1347 asus
->have_rsts
= true;
1354 static int __devinit
asus_acpi_init(struct asus_laptop
*asus
)
1358 result
= acpi_bus_get_status(asus
->device
);
1361 if (!asus
->device
->status
.present
) {
1362 pr_err("Hotkey device not present, aborting\n");
1366 result
= asus_laptop_get_info(asus
);
1370 /* WLED and BLED are on by default */
1371 if (bluetooth_status
>= 0)
1372 asus_bluetooth_set(asus
, !!bluetooth_status
);
1374 if (wlan_status
>= 0)
1375 asus_wlan_set(asus
, !!wlan_status
);
1377 if (wimax_status
>= 0)
1378 asus_wimax_set(asus
, !!wimax_status
);
1380 if (wwan_status
>= 0)
1381 asus_wwan_set(asus
, !!wwan_status
);
1383 /* Keyboard Backlight is on by default */
1384 if (!acpi_check_handle(asus
->handle
, METHOD_KBD_LIGHT_SET
, NULL
))
1385 asus_kled_set(asus
, 1);
1387 /* LED display is off by default */
1388 asus
->ledd_status
= 0xFFF;
1390 /* Set initial values of light sensor and level */
1391 asus
->light_switch
= 0; /* Default to light sensor disabled */
1392 asus
->light_level
= 5; /* level 5 for sensor sensitivity */
1394 if (!acpi_check_handle(asus
->handle
, METHOD_ALS_CONTROL
, NULL
) &&
1395 !acpi_check_handle(asus
->handle
, METHOD_ALS_LEVEL
, NULL
)) {
1396 asus_als_switch(asus
, asus
->light_switch
);
1397 asus_als_level(asus
, asus
->light_level
);
1403 static void __devinit
asus_dmi_check(void)
1407 model
= dmi_get_system_info(DMI_PRODUCT_NAME
);
1411 /* On L1400B WLED control the sound card, don't mess with it ... */
1412 if (strncmp(model
, "L1400B", 6) == 0) {
1417 static bool asus_device_present
;
1419 static int __devinit
asus_acpi_add(struct acpi_device
*device
)
1421 struct asus_laptop
*asus
;
1424 pr_notice("Asus Laptop Support version %s\n",
1425 ASUS_LAPTOP_VERSION
);
1426 asus
= kzalloc(sizeof(struct asus_laptop
), GFP_KERNEL
);
1429 asus
->handle
= device
->handle
;
1430 strcpy(acpi_device_name(device
), ASUS_LAPTOP_DEVICE_NAME
);
1431 strcpy(acpi_device_class(device
), ASUS_LAPTOP_CLASS
);
1432 device
->driver_data
= asus
;
1433 asus
->device
= device
;
1437 result
= asus_acpi_init(asus
);
1442 * Register the platform device first. It is used as a parent for the
1443 * sub-devices below.
1445 result
= asus_platform_init(asus
);
1449 if (!acpi_video_backlight_support()) {
1450 result
= asus_backlight_init(asus
);
1452 goto fail_backlight
;
1454 pr_info("Backlight controlled by ACPI video driver\n");
1456 result
= asus_input_init(asus
);
1460 result
= asus_led_init(asus
);
1464 result
= asus_rfkill_init(asus
);
1468 asus_device_present
= true;
1472 asus_led_exit(asus
);
1474 asus_input_exit(asus
);
1476 asus_backlight_exit(asus
);
1478 asus_platform_exit(asus
);
1486 static int asus_acpi_remove(struct acpi_device
*device
, int type
)
1488 struct asus_laptop
*asus
= acpi_driver_data(device
);
1490 asus_backlight_exit(asus
);
1491 asus_rfkill_exit(asus
);
1492 asus_led_exit(asus
);
1493 asus_input_exit(asus
);
1494 asus_platform_exit(asus
);
1501 static const struct acpi_device_id asus_device_ids
[] = {
1506 MODULE_DEVICE_TABLE(acpi
, asus_device_ids
);
1508 static struct acpi_driver asus_acpi_driver
= {
1509 .name
= ASUS_LAPTOP_NAME
,
1510 .class = ASUS_LAPTOP_CLASS
,
1511 .owner
= THIS_MODULE
,
1512 .ids
= asus_device_ids
,
1513 .flags
= ACPI_DRIVER_ALL_NOTIFY_EVENTS
,
1515 .add
= asus_acpi_add
,
1516 .remove
= asus_acpi_remove
,
1517 .notify
= asus_acpi_notify
,
1521 static int __init
asus_laptop_init(void)
1525 result
= platform_driver_register(&platform_driver
);
1529 result
= acpi_bus_register_driver(&asus_acpi_driver
);
1531 goto fail_acpi_driver
;
1532 if (!asus_device_present
) {
1534 goto fail_no_device
;
1539 acpi_bus_unregister_driver(&asus_acpi_driver
);
1541 platform_driver_unregister(&platform_driver
);
1545 static void __exit
asus_laptop_exit(void)
1547 acpi_bus_unregister_driver(&asus_acpi_driver
);
1548 platform_driver_unregister(&platform_driver
);
1551 module_init(asus_laptop_init
);
1552 module_exit(asus_laptop_exit
);