ocfs2: Make the left masklogs compat.
[taoma-kernel.git] / drivers / platform / x86 / asus-laptop.c
blobf3aa6a7fdab60c71448b85bb6eeb68a3f8c1cc7f
1 /*
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/
26 * Credits:
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 helpfull
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>
45 #include <linux/fb.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 <acpi/acpi_drivers.h>
54 #include <acpi/acpi_bus.h>
56 #define ASUS_LAPTOP_VERSION "0.42"
58 #define ASUS_LAPTOP_NAME "Asus Laptop Support"
59 #define ASUS_LAPTOP_CLASS "hotkey"
60 #define ASUS_LAPTOP_DEVICE_NAME "Hotkey"
61 #define ASUS_LAPTOP_FILE KBUILD_MODNAME
62 #define ASUS_LAPTOP_PREFIX "\\_SB.ATKD."
64 MODULE_AUTHOR("Julien Lerouge, Karol Kozimor, Corentin Chary");
65 MODULE_DESCRIPTION(ASUS_LAPTOP_NAME);
66 MODULE_LICENSE("GPL");
69 * WAPF defines the behavior of the Fn+Fx wlan key
70 * The significance of values is yet to be found, but
71 * most of the time:
72 * 0x0 will do nothing
73 * 0x1 will allow to control the device with Fn+Fx key.
74 * 0x4 will send an ACPI event (0x88) while pressing the Fn+Fx key
75 * 0x5 like 0x1 or 0x4
76 * So, if something doesn't work as you want, just try other values =)
78 static uint wapf = 1;
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). "
90 "default is 1");
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). "
95 "default is 1");
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). "
100 "default is 1");
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). "
105 "default is 1");
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
120 #define WL_HWRS 0x80
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 */
132 /* LED */
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) */
139 /* LEDD */
140 #define METHOD_LEDD "SLCM"
143 * Bluetooth and WLAN
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"
150 /* WWAN and WIMAX */
151 #define METHOD_WWAN "GSMC"
152 #define METHOD_WIMAX "WMXC"
154 #define METHOD_WL_STATUS "RSTS"
156 /* Brightness */
157 #define METHOD_BRIGHTNESS_SET "SPLV"
158 #define METHOD_BRIGHTNESS_GET "GPLV"
160 /* Backlight */
161 static acpi_handle lcd_switch_handle;
162 static char *lcd_switch_paths[] = {
163 "\\_SB.PCI0.SBRG.EC0._Q10", /* All new models */
164 "\\_SB.PCI0.ISA.EC0._Q10", /* A1x */
165 "\\_SB.PCI0.PX40.ECD0._Q10", /* L3C */
166 "\\_SB.PCI0.PX40.EC0.Q10", /* M1A */
167 "\\_SB.PCI0.LPCB.EC0._Q10", /* P30 */
168 "\\_SB.PCI0.LPCB.EC0._Q0E", /* P30/P35 */
169 "\\_SB.PCI0.PX40.Q10", /* S1x */
170 "\\Q10"}; /* A2x, L2D, L3D, M2E */
172 /* Display */
173 #define METHOD_SWITCH_DISPLAY "SDSP"
175 static acpi_handle display_get_handle;
176 static char *display_get_paths[] = {
177 /* A6B, A6K A6R A7D F3JM L4R M6R A3G M6A M6V VX-1 V6J V6V W3Z */
178 "\\_SB.PCI0.P0P1.VGA.GETD",
179 /* A3E A4K, A4D A4L A6J A7J A8J Z71V M9V S5A M5A z33A W1Jc W2V G1 */
180 "\\_SB.PCI0.P0P2.VGA.GETD",
181 /* A6V A6Q */
182 "\\_SB.PCI0.P0P3.VGA.GETD",
183 /* A6T, A6M */
184 "\\_SB.PCI0.P0PA.VGA.GETD",
185 /* L3C */
186 "\\_SB.PCI0.PCI1.VGAC.NMAP",
187 /* Z96F */
188 "\\_SB.PCI0.VGA.GETD",
189 /* A2D */
190 "\\ACTD",
191 /* A4G Z71A W1N W5A W5F M2N M3N M5N M6N S1N S5N */
192 "\\ADVG",
193 /* P30 */
194 "\\DNXT",
195 /* A2H D1 L2D L3D L3H L2E L5D L5C M1A M2E L4L W3V */
196 "\\INFB",
197 /* A3F A6F A3N A3L M6N W3N W6A */
198 "\\SSTE"};
200 #define METHOD_ALS_CONTROL "ALSC" /* Z71A Z71V */
201 #define METHOD_ALS_LEVEL "ALSL" /* Z71A Z71V */
203 /* GPS */
204 /* R2H use different handle for GPS on/off */
205 #define METHOD_GPS_ON "SDON"
206 #define METHOD_GPS_OFF "SDOF"
207 #define METHOD_GPS_STATUS "GPST"
209 /* Keyboard light */
210 #define METHOD_KBD_LIGHT_SET "SLKB"
211 #define METHOD_KBD_LIGHT_GET "GLKB"
214 * Define a specific led structure to keep the main structure clean
216 struct asus_led {
217 int wk;
218 struct work_struct work;
219 struct led_classdev led;
220 struct asus_laptop *asus;
221 const char *method;
225 * This is the main structure, we can use it to store anything interesting
226 * about the hotk device
228 struct asus_laptop {
229 char *name; /* laptop name */
231 struct acpi_table_header *dsdt_info;
232 struct platform_device *platform_device;
233 struct acpi_device *device; /* the device we are in */
234 struct backlight_device *backlight_device;
236 struct input_dev *inputdev;
237 struct key_entry *keymap;
239 struct asus_led mled;
240 struct asus_led tled;
241 struct asus_led rled;
242 struct asus_led pled;
243 struct asus_led gled;
244 struct asus_led kled;
245 struct workqueue_struct *led_workqueue;
247 int wireless_status;
248 bool have_rsts;
249 int lcd_state;
251 struct rfkill *gps_rfkill;
253 acpi_handle handle; /* the handle of the hotk device */
254 u32 ledd_status; /* status of the LED display */
255 u8 light_level; /* light sensor level */
256 u8 light_switch; /* light sensor switch value */
257 u16 event_count[128]; /* count for each event TODO make this better */
260 static const struct key_entry asus_keymap[] = {
261 /* Lenovo SL Specific keycodes */
262 {KE_KEY, 0x02, { KEY_SCREENLOCK } },
263 {KE_KEY, 0x05, { KEY_WLAN } },
264 {KE_KEY, 0x08, { KEY_F13 } },
265 {KE_KEY, 0x17, { KEY_ZOOM } },
266 {KE_KEY, 0x1f, { KEY_BATTERY } },
267 /* End of Lenovo SL Specific keycodes */
268 {KE_KEY, 0x30, { KEY_VOLUMEUP } },
269 {KE_KEY, 0x31, { KEY_VOLUMEDOWN } },
270 {KE_KEY, 0x32, { KEY_MUTE } },
271 {KE_KEY, 0x33, { KEY_SWITCHVIDEOMODE } },
272 {KE_KEY, 0x34, { KEY_SWITCHVIDEOMODE } },
273 {KE_KEY, 0x40, { KEY_PREVIOUSSONG } },
274 {KE_KEY, 0x41, { KEY_NEXTSONG } },
275 {KE_KEY, 0x43, { KEY_STOPCD } },
276 {KE_KEY, 0x45, { KEY_PLAYPAUSE } },
277 {KE_KEY, 0x4c, { KEY_MEDIA } },
278 {KE_KEY, 0x50, { KEY_EMAIL } },
279 {KE_KEY, 0x51, { KEY_WWW } },
280 {KE_KEY, 0x55, { KEY_CALC } },
281 {KE_KEY, 0x5C, { KEY_SCREENLOCK } }, /* Screenlock */
282 {KE_KEY, 0x5D, { KEY_WLAN } },
283 {KE_KEY, 0x5E, { KEY_WLAN } },
284 {KE_KEY, 0x5F, { KEY_WLAN } },
285 {KE_KEY, 0x60, { KEY_SWITCHVIDEOMODE } },
286 {KE_KEY, 0x61, { KEY_SWITCHVIDEOMODE } },
287 {KE_KEY, 0x62, { KEY_SWITCHVIDEOMODE } },
288 {KE_KEY, 0x63, { KEY_SWITCHVIDEOMODE } },
289 {KE_KEY, 0x6B, { KEY_F13 } }, /* Lock Touchpad */
290 {KE_KEY, 0x7E, { KEY_BLUETOOTH } },
291 {KE_KEY, 0x7D, { KEY_BLUETOOTH } },
292 {KE_KEY, 0x82, { KEY_CAMERA } },
293 {KE_KEY, 0x88, { KEY_WLAN } },
294 {KE_KEY, 0x8A, { KEY_PROG1 } },
295 {KE_KEY, 0x95, { KEY_MEDIA } },
296 {KE_KEY, 0x99, { KEY_PHONE } },
297 {KE_KEY, 0xc4, { KEY_KBDILLUMUP } },
298 {KE_KEY, 0xc5, { KEY_KBDILLUMDOWN } },
299 {KE_KEY, 0xb5, { KEY_CALC } },
300 {KE_END, 0},
305 * This function evaluates an ACPI method, given an int as parameter, the
306 * method is searched within the scope of the handle, can be NULL. The output
307 * of the method is written is output, which can also be NULL
309 * returns 0 if write is successful, -1 else.
311 static int write_acpi_int_ret(acpi_handle handle, const char *method, int val,
312 struct acpi_buffer *output)
314 struct acpi_object_list params; /* list of input parameters (an int) */
315 union acpi_object in_obj; /* the only param we use */
316 acpi_status status;
318 if (!handle)
319 return -1;
321 params.count = 1;
322 params.pointer = &in_obj;
323 in_obj.type = ACPI_TYPE_INTEGER;
324 in_obj.integer.value = val;
326 status = acpi_evaluate_object(handle, (char *)method, &params, output);
327 if (status == AE_OK)
328 return 0;
329 else
330 return -1;
333 static int write_acpi_int(acpi_handle handle, const char *method, int val)
335 return write_acpi_int_ret(handle, method, val, NULL);
338 static int acpi_check_handle(acpi_handle handle, const char *method,
339 acpi_handle *ret)
341 acpi_status status;
343 if (method == NULL)
344 return -ENODEV;
346 if (ret)
347 status = acpi_get_handle(handle, (char *)method,
348 ret);
349 else {
350 acpi_handle dummy;
352 status = acpi_get_handle(handle, (char *)method,
353 &dummy);
356 if (status != AE_OK) {
357 if (ret)
358 pr_warning("Error finding %s\n", method);
359 return -ENODEV;
361 return 0;
364 /* Generic LED function */
365 static int asus_led_set(struct asus_laptop *asus, const char *method,
366 int value)
368 if (!strcmp(method, METHOD_MLED))
369 value = !value;
370 else if (!strcmp(method, METHOD_GLED))
371 value = !value + 1;
372 else
373 value = !!value;
375 return write_acpi_int(asus->handle, method, value);
379 * LEDs
381 /* /sys/class/led handlers */
382 static void asus_led_cdev_set(struct led_classdev *led_cdev,
383 enum led_brightness value)
385 struct asus_led *led = container_of(led_cdev, struct asus_led, led);
386 struct asus_laptop *asus = led->asus;
388 led->wk = !!value;
389 queue_work(asus->led_workqueue, &led->work);
392 static void asus_led_cdev_update(struct work_struct *work)
394 struct asus_led *led = container_of(work, struct asus_led, work);
395 struct asus_laptop *asus = led->asus;
397 asus_led_set(asus, led->method, led->wk);
400 static enum led_brightness asus_led_cdev_get(struct led_classdev *led_cdev)
402 return led_cdev->brightness;
406 * Keyboard backlight (also a LED)
408 static int asus_kled_lvl(struct asus_laptop *asus)
410 unsigned long long kblv;
411 struct acpi_object_list params;
412 union acpi_object in_obj;
413 acpi_status rv;
415 params.count = 1;
416 params.pointer = &in_obj;
417 in_obj.type = ACPI_TYPE_INTEGER;
418 in_obj.integer.value = 2;
420 rv = acpi_evaluate_integer(asus->handle, METHOD_KBD_LIGHT_GET,
421 &params, &kblv);
422 if (ACPI_FAILURE(rv)) {
423 pr_warning("Error reading kled level\n");
424 return -ENODEV;
426 return kblv;
429 static int asus_kled_set(struct asus_laptop *asus, int kblv)
431 if (kblv > 0)
432 kblv = (1 << 7) | (kblv & 0x7F);
433 else
434 kblv = 0;
436 if (write_acpi_int(asus->handle, METHOD_KBD_LIGHT_SET, kblv)) {
437 pr_warning("Keyboard LED display write failed\n");
438 return -EINVAL;
440 return 0;
443 static void asus_kled_cdev_set(struct led_classdev *led_cdev,
444 enum led_brightness value)
446 struct asus_led *led = container_of(led_cdev, struct asus_led, led);
447 struct asus_laptop *asus = led->asus;
449 led->wk = value;
450 queue_work(asus->led_workqueue, &led->work);
453 static void asus_kled_cdev_update(struct work_struct *work)
455 struct asus_led *led = container_of(work, struct asus_led, work);
456 struct asus_laptop *asus = led->asus;
458 asus_kled_set(asus, led->wk);
461 static enum led_brightness asus_kled_cdev_get(struct led_classdev *led_cdev)
463 struct asus_led *led = container_of(led_cdev, struct asus_led, led);
464 struct asus_laptop *asus = led->asus;
466 return asus_kled_lvl(asus);
469 static void asus_led_exit(struct asus_laptop *asus)
471 if (asus->mled.led.dev)
472 led_classdev_unregister(&asus->mled.led);
473 if (asus->tled.led.dev)
474 led_classdev_unregister(&asus->tled.led);
475 if (asus->pled.led.dev)
476 led_classdev_unregister(&asus->pled.led);
477 if (asus->rled.led.dev)
478 led_classdev_unregister(&asus->rled.led);
479 if (asus->gled.led.dev)
480 led_classdev_unregister(&asus->gled.led);
481 if (asus->kled.led.dev)
482 led_classdev_unregister(&asus->kled.led);
483 if (asus->led_workqueue) {
484 destroy_workqueue(asus->led_workqueue);
485 asus->led_workqueue = NULL;
489 /* Ugly macro, need to fix that later */
490 static int asus_led_register(struct asus_laptop *asus,
491 struct asus_led *led,
492 const char *name, const char *method)
494 struct led_classdev *led_cdev = &led->led;
496 if (!method || acpi_check_handle(asus->handle, method, NULL))
497 return 0; /* Led not present */
499 led->asus = asus;
500 led->method = method;
502 INIT_WORK(&led->work, asus_led_cdev_update);
503 led_cdev->name = name;
504 led_cdev->brightness_set = asus_led_cdev_set;
505 led_cdev->brightness_get = asus_led_cdev_get;
506 led_cdev->max_brightness = 1;
507 return led_classdev_register(&asus->platform_device->dev, led_cdev);
510 static int asus_led_init(struct asus_laptop *asus)
512 int r;
515 * Functions that actually update the LED's are called from a
516 * workqueue. By doing this as separate work rather than when the LED
517 * subsystem asks, we avoid messing with the Asus ACPI stuff during a
518 * potentially bad time, such as a timer interrupt.
520 asus->led_workqueue = create_singlethread_workqueue("led_workqueue");
521 if (!asus->led_workqueue)
522 return -ENOMEM;
524 r = asus_led_register(asus, &asus->mled, "asus::mail", METHOD_MLED);
525 if (r)
526 goto error;
527 r = asus_led_register(asus, &asus->tled, "asus::touchpad", METHOD_TLED);
528 if (r)
529 goto error;
530 r = asus_led_register(asus, &asus->rled, "asus::record", METHOD_RLED);
531 if (r)
532 goto error;
533 r = asus_led_register(asus, &asus->pled, "asus::phone", METHOD_PLED);
534 if (r)
535 goto error;
536 r = asus_led_register(asus, &asus->gled, "asus::gaming", METHOD_GLED);
537 if (r)
538 goto error;
539 if (!acpi_check_handle(asus->handle, METHOD_KBD_LIGHT_SET, NULL) &&
540 !acpi_check_handle(asus->handle, METHOD_KBD_LIGHT_GET, NULL)) {
541 struct asus_led *led = &asus->kled;
542 struct led_classdev *cdev = &led->led;
544 led->asus = asus;
546 INIT_WORK(&led->work, asus_kled_cdev_update);
547 cdev->name = "asus::kbd_backlight";
548 cdev->brightness_set = asus_kled_cdev_set;
549 cdev->brightness_get = asus_kled_cdev_get;
550 cdev->max_brightness = 3;
551 r = led_classdev_register(&asus->platform_device->dev, cdev);
553 error:
554 if (r)
555 asus_led_exit(asus);
556 return r;
560 * Backlight device
562 static int asus_lcd_status(struct asus_laptop *asus)
564 return asus->lcd_state;
567 static int asus_lcd_set(struct asus_laptop *asus, int value)
569 int lcd = 0;
570 acpi_status status = 0;
572 lcd = !!value;
574 if (lcd == asus_lcd_status(asus))
575 return 0;
577 if (!lcd_switch_handle)
578 return -ENODEV;
580 status = acpi_evaluate_object(lcd_switch_handle,
581 NULL, NULL, NULL);
583 if (ACPI_FAILURE(status)) {
584 pr_warning("Error switching LCD\n");
585 return -ENODEV;
588 asus->lcd_state = lcd;
589 return 0;
592 static void lcd_blank(struct asus_laptop *asus, int blank)
594 struct backlight_device *bd = asus->backlight_device;
596 asus->lcd_state = (blank == FB_BLANK_UNBLANK);
598 if (bd) {
599 bd->props.power = blank;
600 backlight_update_status(bd);
604 static int asus_read_brightness(struct backlight_device *bd)
606 struct asus_laptop *asus = bl_get_data(bd);
607 unsigned long long value;
608 acpi_status rv = AE_OK;
610 rv = acpi_evaluate_integer(asus->handle, METHOD_BRIGHTNESS_GET,
611 NULL, &value);
612 if (ACPI_FAILURE(rv))
613 pr_warning("Error reading brightness\n");
615 return value;
618 static int asus_set_brightness(struct backlight_device *bd, int value)
620 struct asus_laptop *asus = bl_get_data(bd);
622 if (write_acpi_int(asus->handle, METHOD_BRIGHTNESS_SET, value)) {
623 pr_warning("Error changing brightness\n");
624 return -EIO;
626 return 0;
629 static int update_bl_status(struct backlight_device *bd)
631 struct asus_laptop *asus = bl_get_data(bd);
632 int rv;
633 int value = bd->props.brightness;
635 rv = asus_set_brightness(bd, value);
636 if (rv)
637 return rv;
639 value = (bd->props.power == FB_BLANK_UNBLANK) ? 1 : 0;
640 return asus_lcd_set(asus, value);
643 static const struct backlight_ops asusbl_ops = {
644 .get_brightness = asus_read_brightness,
645 .update_status = update_bl_status,
648 static int asus_backlight_notify(struct asus_laptop *asus)
650 struct backlight_device *bd = asus->backlight_device;
651 int old = bd->props.brightness;
653 backlight_force_update(bd, BACKLIGHT_UPDATE_HOTKEY);
655 return old;
658 static int asus_backlight_init(struct asus_laptop *asus)
660 struct backlight_device *bd;
661 struct backlight_properties props;
663 if (acpi_check_handle(asus->handle, METHOD_BRIGHTNESS_GET, NULL) ||
664 acpi_check_handle(asus->handle, METHOD_BRIGHTNESS_SET, NULL) ||
665 !lcd_switch_handle)
666 return 0;
668 memset(&props, 0, sizeof(struct backlight_properties));
669 props.max_brightness = 15;
671 bd = backlight_device_register(ASUS_LAPTOP_FILE,
672 &asus->platform_device->dev, asus,
673 &asusbl_ops, &props);
674 if (IS_ERR(bd)) {
675 pr_err("Could not register asus backlight device\n");
676 asus->backlight_device = NULL;
677 return PTR_ERR(bd);
680 asus->backlight_device = bd;
681 bd->props.brightness = asus_read_brightness(bd);
682 bd->props.power = FB_BLANK_UNBLANK;
683 backlight_update_status(bd);
684 return 0;
687 static void asus_backlight_exit(struct asus_laptop *asus)
689 if (asus->backlight_device)
690 backlight_device_unregister(asus->backlight_device);
691 asus->backlight_device = NULL;
695 * Platform device handlers
699 * We write our info in page, we begin at offset off and cannot write more
700 * than count bytes. We set eof to 1 if we handle those 2 values. We return the
701 * number of bytes written in page
703 static ssize_t show_infos(struct device *dev,
704 struct device_attribute *attr, char *page)
706 struct asus_laptop *asus = dev_get_drvdata(dev);
707 int len = 0;
708 unsigned long long temp;
709 char buf[16]; /* enough for all info */
710 acpi_status rv = AE_OK;
713 * We use the easy way, we don't care of off and count,
714 * so we don't set eof to 1
717 len += sprintf(page, ASUS_LAPTOP_NAME " " ASUS_LAPTOP_VERSION "\n");
718 len += sprintf(page + len, "Model reference : %s\n", asus->name);
720 * The SFUN method probably allows the original driver to get the list
721 * of features supported by a given model. For now, 0x0100 or 0x0800
722 * bit signifies that the laptop is equipped with a Wi-Fi MiniPCI card.
723 * The significance of others is yet to be found.
725 rv = acpi_evaluate_integer(asus->handle, "SFUN", NULL, &temp);
726 if (!ACPI_FAILURE(rv))
727 len += sprintf(page + len, "SFUN value : %#x\n",
728 (uint) temp);
730 * The HWRS method return informations about the hardware.
731 * 0x80 bit is for WLAN, 0x100 for Bluetooth.
732 * The significance of others is yet to be found.
733 * If we don't find the method, we assume the device are present.
735 rv = acpi_evaluate_integer(asus->handle, "HRWS", NULL, &temp);
736 if (!ACPI_FAILURE(rv))
737 len += sprintf(page + len, "HRWS value : %#x\n",
738 (uint) temp);
740 * Another value for userspace: the ASYM method returns 0x02 for
741 * battery low and 0x04 for battery critical, its readings tend to be
742 * more accurate than those provided by _BST.
743 * Note: since not all the laptops provide this method, errors are
744 * silently ignored.
746 rv = acpi_evaluate_integer(asus->handle, "ASYM", NULL, &temp);
747 if (!ACPI_FAILURE(rv))
748 len += sprintf(page + len, "ASYM value : %#x\n",
749 (uint) temp);
750 if (asus->dsdt_info) {
751 snprintf(buf, 16, "%d", asus->dsdt_info->length);
752 len += sprintf(page + len, "DSDT length : %s\n", buf);
753 snprintf(buf, 16, "%d", asus->dsdt_info->checksum);
754 len += sprintf(page + len, "DSDT checksum : %s\n", buf);
755 snprintf(buf, 16, "%d", asus->dsdt_info->revision);
756 len += sprintf(page + len, "DSDT revision : %s\n", buf);
757 snprintf(buf, 7, "%s", asus->dsdt_info->oem_id);
758 len += sprintf(page + len, "OEM id : %s\n", buf);
759 snprintf(buf, 9, "%s", asus->dsdt_info->oem_table_id);
760 len += sprintf(page + len, "OEM table id : %s\n", buf);
761 snprintf(buf, 16, "%x", asus->dsdt_info->oem_revision);
762 len += sprintf(page + len, "OEM revision : 0x%s\n", buf);
763 snprintf(buf, 5, "%s", asus->dsdt_info->asl_compiler_id);
764 len += sprintf(page + len, "ASL comp vendor id : %s\n", buf);
765 snprintf(buf, 16, "%x", asus->dsdt_info->asl_compiler_revision);
766 len += sprintf(page + len, "ASL comp revision : 0x%s\n", buf);
769 return len;
772 static int parse_arg(const char *buf, unsigned long count, int *val)
774 if (!count)
775 return 0;
776 if (count > 31)
777 return -EINVAL;
778 if (sscanf(buf, "%i", val) != 1)
779 return -EINVAL;
780 return count;
783 static ssize_t sysfs_acpi_set(struct asus_laptop *asus,
784 const char *buf, size_t count,
785 const char *method)
787 int rv, value;
788 int out = 0;
790 rv = parse_arg(buf, count, &value);
791 if (rv > 0)
792 out = value ? 1 : 0;
794 if (write_acpi_int(asus->handle, method, value))
795 return -ENODEV;
796 return rv;
800 * LEDD display
802 static ssize_t show_ledd(struct device *dev,
803 struct device_attribute *attr, char *buf)
805 struct asus_laptop *asus = dev_get_drvdata(dev);
807 return sprintf(buf, "0x%08x\n", asus->ledd_status);
810 static ssize_t store_ledd(struct device *dev, struct device_attribute *attr,
811 const char *buf, size_t count)
813 struct asus_laptop *asus = dev_get_drvdata(dev);
814 int rv, value;
816 rv = parse_arg(buf, count, &value);
817 if (rv > 0) {
818 if (write_acpi_int(asus->handle, METHOD_LEDD, value)) {
819 pr_warning("LED display write failed\n");
820 return -ENODEV;
822 asus->ledd_status = (u32) value;
824 return rv;
828 * Wireless
830 static int asus_wireless_status(struct asus_laptop *asus, int mask)
832 unsigned long long status;
833 acpi_status rv = AE_OK;
835 if (!asus->have_rsts)
836 return (asus->wireless_status & mask) ? 1 : 0;
838 rv = acpi_evaluate_integer(asus->handle, METHOD_WL_STATUS,
839 NULL, &status);
840 if (ACPI_FAILURE(rv)) {
841 pr_warning("Error reading Wireless status\n");
842 return -EINVAL;
844 return !!(status & mask);
848 * WLAN
850 static int asus_wlan_set(struct asus_laptop *asus, int status)
852 if (write_acpi_int(asus->handle, METHOD_WLAN, !!status)) {
853 pr_warning("Error setting wlan status to %d", status);
854 return -EIO;
856 return 0;
859 static ssize_t show_wlan(struct device *dev,
860 struct device_attribute *attr, char *buf)
862 struct asus_laptop *asus = dev_get_drvdata(dev);
864 return sprintf(buf, "%d\n", asus_wireless_status(asus, WL_RSTS));
867 static ssize_t store_wlan(struct device *dev, struct device_attribute *attr,
868 const char *buf, size_t count)
870 struct asus_laptop *asus = dev_get_drvdata(dev);
872 return sysfs_acpi_set(asus, buf, count, METHOD_WLAN);
876 * Bluetooth
878 static int asus_bluetooth_set(struct asus_laptop *asus, int status)
880 if (write_acpi_int(asus->handle, METHOD_BLUETOOTH, !!status)) {
881 pr_warning("Error setting bluetooth status to %d", status);
882 return -EIO;
884 return 0;
887 static ssize_t show_bluetooth(struct device *dev,
888 struct device_attribute *attr, char *buf)
890 struct asus_laptop *asus = dev_get_drvdata(dev);
892 return sprintf(buf, "%d\n", asus_wireless_status(asus, BT_RSTS));
895 static ssize_t store_bluetooth(struct device *dev,
896 struct device_attribute *attr, const char *buf,
897 size_t count)
899 struct asus_laptop *asus = dev_get_drvdata(dev);
901 return sysfs_acpi_set(asus, buf, count, METHOD_BLUETOOTH);
905 * Wimax
907 static int asus_wimax_set(struct asus_laptop *asus, int status)
909 if (write_acpi_int(asus->handle, METHOD_WIMAX, !!status)) {
910 pr_warning("Error setting wimax status to %d", status);
911 return -EIO;
913 return 0;
916 static ssize_t show_wimax(struct device *dev,
917 struct device_attribute *attr, char *buf)
919 struct asus_laptop *asus = dev_get_drvdata(dev);
921 return sprintf(buf, "%d\n", asus_wireless_status(asus, WM_RSTS));
924 static ssize_t store_wimax(struct device *dev,
925 struct device_attribute *attr, const char *buf,
926 size_t count)
928 struct asus_laptop *asus = dev_get_drvdata(dev);
930 return sysfs_acpi_set(asus, buf, count, METHOD_WIMAX);
934 * Wwan
936 static int asus_wwan_set(struct asus_laptop *asus, int status)
938 if (write_acpi_int(asus->handle, METHOD_WWAN, !!status)) {
939 pr_warning("Error setting wwan status to %d", status);
940 return -EIO;
942 return 0;
945 static ssize_t show_wwan(struct device *dev,
946 struct device_attribute *attr, char *buf)
948 struct asus_laptop *asus = dev_get_drvdata(dev);
950 return sprintf(buf, "%d\n", asus_wireless_status(asus, WW_RSTS));
953 static ssize_t store_wwan(struct device *dev,
954 struct device_attribute *attr, const char *buf,
955 size_t count)
957 struct asus_laptop *asus = dev_get_drvdata(dev);
959 return sysfs_acpi_set(asus, buf, count, METHOD_WWAN);
963 * Display
965 static void asus_set_display(struct asus_laptop *asus, int value)
967 /* no sanity check needed for now */
968 if (write_acpi_int(asus->handle, METHOD_SWITCH_DISPLAY, value))
969 pr_warning("Error setting display\n");
970 return;
973 static int read_display(struct asus_laptop *asus)
975 unsigned long long value = 0;
976 acpi_status rv = AE_OK;
979 * In most of the case, we know how to set the display, but sometime
980 * we can't read it
982 if (display_get_handle) {
983 rv = acpi_evaluate_integer(display_get_handle, NULL,
984 NULL, &value);
985 if (ACPI_FAILURE(rv))
986 pr_warning("Error reading display status\n");
989 value &= 0x0F; /* needed for some models, shouldn't hurt others */
991 return value;
995 * Now, *this* one could be more user-friendly, but so far, no-one has
996 * complained. The significance of bits is the same as in store_disp()
998 static ssize_t show_disp(struct device *dev,
999 struct device_attribute *attr, char *buf)
1001 struct asus_laptop *asus = dev_get_drvdata(dev);
1003 if (!display_get_handle)
1004 return -ENODEV;
1005 return sprintf(buf, "%d\n", read_display(asus));
1009 * Experimental support for display switching. As of now: 1 should activate
1010 * the LCD output, 2 should do for CRT, 4 for TV-Out and 8 for DVI.
1011 * Any combination (bitwise) of these will suffice. I never actually tested 4
1012 * displays hooked up simultaneously, so be warned. See the acpi4asus README
1013 * for more info.
1015 static ssize_t store_disp(struct device *dev, struct device_attribute *attr,
1016 const char *buf, size_t count)
1018 struct asus_laptop *asus = dev_get_drvdata(dev);
1019 int rv, value;
1021 rv = parse_arg(buf, count, &value);
1022 if (rv > 0)
1023 asus_set_display(asus, value);
1024 return rv;
1028 * Light Sens
1030 static void asus_als_switch(struct asus_laptop *asus, int value)
1032 if (write_acpi_int(asus->handle, METHOD_ALS_CONTROL, value))
1033 pr_warning("Error setting light sensor switch\n");
1034 asus->light_switch = value;
1037 static ssize_t show_lssw(struct device *dev,
1038 struct device_attribute *attr, char *buf)
1040 struct asus_laptop *asus = dev_get_drvdata(dev);
1042 return sprintf(buf, "%d\n", asus->light_switch);
1045 static ssize_t store_lssw(struct device *dev, struct device_attribute *attr,
1046 const char *buf, size_t count)
1048 struct asus_laptop *asus = dev_get_drvdata(dev);
1049 int rv, value;
1051 rv = parse_arg(buf, count, &value);
1052 if (rv > 0)
1053 asus_als_switch(asus, value ? 1 : 0);
1055 return rv;
1058 static void asus_als_level(struct asus_laptop *asus, int value)
1060 if (write_acpi_int(asus->handle, METHOD_ALS_LEVEL, value))
1061 pr_warning("Error setting light sensor level\n");
1062 asus->light_level = value;
1065 static ssize_t show_lslvl(struct device *dev,
1066 struct device_attribute *attr, char *buf)
1068 struct asus_laptop *asus = dev_get_drvdata(dev);
1070 return sprintf(buf, "%d\n", asus->light_level);
1073 static ssize_t store_lslvl(struct device *dev, struct device_attribute *attr,
1074 const char *buf, size_t count)
1076 struct asus_laptop *asus = dev_get_drvdata(dev);
1077 int rv, value;
1079 rv = parse_arg(buf, count, &value);
1080 if (rv > 0) {
1081 value = (0 < value) ? ((15 < value) ? 15 : value) : 0;
1082 /* 0 <= value <= 15 */
1083 asus_als_level(asus, value);
1086 return rv;
1090 * GPS
1092 static int asus_gps_status(struct asus_laptop *asus)
1094 unsigned long long status;
1095 acpi_status rv = AE_OK;
1097 rv = acpi_evaluate_integer(asus->handle, METHOD_GPS_STATUS,
1098 NULL, &status);
1099 if (ACPI_FAILURE(rv)) {
1100 pr_warning("Error reading GPS status\n");
1101 return -ENODEV;
1103 return !!status;
1106 static int asus_gps_switch(struct asus_laptop *asus, int status)
1108 const char *meth = status ? METHOD_GPS_ON : METHOD_GPS_OFF;
1110 if (write_acpi_int(asus->handle, meth, 0x02))
1111 return -ENODEV;
1112 return 0;
1115 static ssize_t show_gps(struct device *dev,
1116 struct device_attribute *attr, char *buf)
1118 struct asus_laptop *asus = dev_get_drvdata(dev);
1120 return sprintf(buf, "%d\n", asus_gps_status(asus));
1123 static ssize_t store_gps(struct device *dev, struct device_attribute *attr,
1124 const char *buf, size_t count)
1126 struct asus_laptop *asus = dev_get_drvdata(dev);
1127 int rv, value;
1128 int ret;
1130 rv = parse_arg(buf, count, &value);
1131 if (rv <= 0)
1132 return -EINVAL;
1133 ret = asus_gps_switch(asus, !!value);
1134 if (ret)
1135 return ret;
1136 rfkill_set_sw_state(asus->gps_rfkill, !value);
1137 return rv;
1141 * rfkill
1143 static int asus_gps_rfkill_set(void *data, bool blocked)
1145 struct asus_laptop *asus = data;
1147 return asus_gps_switch(asus, !blocked);
1150 static const struct rfkill_ops asus_gps_rfkill_ops = {
1151 .set_block = asus_gps_rfkill_set,
1154 static void asus_rfkill_exit(struct asus_laptop *asus)
1156 if (asus->gps_rfkill) {
1157 rfkill_unregister(asus->gps_rfkill);
1158 rfkill_destroy(asus->gps_rfkill);
1159 asus->gps_rfkill = NULL;
1163 static int asus_rfkill_init(struct asus_laptop *asus)
1165 int result;
1167 if (acpi_check_handle(asus->handle, METHOD_GPS_ON, NULL) ||
1168 acpi_check_handle(asus->handle, METHOD_GPS_OFF, NULL) ||
1169 acpi_check_handle(asus->handle, METHOD_GPS_STATUS, NULL))
1170 return 0;
1172 asus->gps_rfkill = rfkill_alloc("asus-gps", &asus->platform_device->dev,
1173 RFKILL_TYPE_GPS,
1174 &asus_gps_rfkill_ops, asus);
1175 if (!asus->gps_rfkill)
1176 return -EINVAL;
1178 result = rfkill_register(asus->gps_rfkill);
1179 if (result) {
1180 rfkill_destroy(asus->gps_rfkill);
1181 asus->gps_rfkill = NULL;
1184 return result;
1188 * Input device (i.e. hotkeys)
1190 static void asus_input_notify(struct asus_laptop *asus, int event)
1192 if (asus->inputdev)
1193 sparse_keymap_report_event(asus->inputdev, event, 1, true);
1196 static int asus_input_init(struct asus_laptop *asus)
1198 struct input_dev *input;
1199 int error;
1201 input = input_allocate_device();
1202 if (!input) {
1203 pr_info("Unable to allocate input device\n");
1204 return -ENOMEM;
1206 input->name = "Asus Laptop extra buttons";
1207 input->phys = ASUS_LAPTOP_FILE "/input0";
1208 input->id.bustype = BUS_HOST;
1209 input->dev.parent = &asus->platform_device->dev;
1211 error = sparse_keymap_setup(input, asus_keymap, NULL);
1212 if (error) {
1213 pr_err("Unable to setup input device keymap\n");
1214 goto err_free_dev;
1216 error = input_register_device(input);
1217 if (error) {
1218 pr_info("Unable to register input device\n");
1219 goto err_free_keymap;
1222 asus->inputdev = input;
1223 return 0;
1225 err_free_keymap:
1226 sparse_keymap_free(input);
1227 err_free_dev:
1228 input_free_device(input);
1229 return error;
1232 static void asus_input_exit(struct asus_laptop *asus)
1234 if (asus->inputdev) {
1235 sparse_keymap_free(asus->inputdev);
1236 input_unregister_device(asus->inputdev);
1238 asus->inputdev = NULL;
1242 * ACPI driver
1244 static void asus_acpi_notify(struct acpi_device *device, u32 event)
1246 struct asus_laptop *asus = acpi_driver_data(device);
1247 u16 count;
1250 * We need to tell the backlight device when the backlight power is
1251 * switched
1253 if (event == ATKD_LCD_ON)
1254 lcd_blank(asus, FB_BLANK_UNBLANK);
1255 else if (event == ATKD_LCD_OFF)
1256 lcd_blank(asus, FB_BLANK_POWERDOWN);
1258 /* TODO Find a better way to handle events count. */
1259 count = asus->event_count[event % 128]++;
1260 acpi_bus_generate_proc_event(asus->device, event, count);
1261 acpi_bus_generate_netlink_event(asus->device->pnp.device_class,
1262 dev_name(&asus->device->dev), event,
1263 count);
1265 /* Brightness events are special */
1266 if (event >= ATKD_BR_MIN && event <= ATKD_BR_MAX) {
1268 /* Ignore them completely if the acpi video driver is used */
1269 if (asus->backlight_device != NULL) {
1270 /* Update the backlight device. */
1271 asus_backlight_notify(asus);
1273 return ;
1275 asus_input_notify(asus, event);
1278 static DEVICE_ATTR(infos, S_IRUGO, show_infos, NULL);
1279 static DEVICE_ATTR(wlan, S_IRUGO | S_IWUSR, show_wlan, store_wlan);
1280 static DEVICE_ATTR(bluetooth, S_IRUGO | S_IWUSR,
1281 show_bluetooth, store_bluetooth);
1282 static DEVICE_ATTR(wimax, S_IRUGO | S_IWUSR, show_wimax, store_wimax);
1283 static DEVICE_ATTR(wwan, S_IRUGO | S_IWUSR, show_wwan, store_wwan);
1284 static DEVICE_ATTR(display, S_IRUGO | S_IWUSR, show_disp, store_disp);
1285 static DEVICE_ATTR(ledd, S_IRUGO | S_IWUSR, show_ledd, store_ledd);
1286 static DEVICE_ATTR(ls_level, S_IRUGO | S_IWUSR, show_lslvl, store_lslvl);
1287 static DEVICE_ATTR(ls_switch, S_IRUGO | S_IWUSR, show_lssw, store_lssw);
1288 static DEVICE_ATTR(gps, S_IRUGO | S_IWUSR, show_gps, store_gps);
1290 static struct attribute *asus_attributes[] = {
1291 &dev_attr_infos.attr,
1292 &dev_attr_wlan.attr,
1293 &dev_attr_bluetooth.attr,
1294 &dev_attr_wimax.attr,
1295 &dev_attr_wwan.attr,
1296 &dev_attr_display.attr,
1297 &dev_attr_ledd.attr,
1298 &dev_attr_ls_level.attr,
1299 &dev_attr_ls_switch.attr,
1300 &dev_attr_gps.attr,
1301 NULL
1304 static mode_t asus_sysfs_is_visible(struct kobject *kobj,
1305 struct attribute *attr,
1306 int idx)
1308 struct device *dev = container_of(kobj, struct device, kobj);
1309 struct platform_device *pdev = to_platform_device(dev);
1310 struct asus_laptop *asus = platform_get_drvdata(pdev);
1311 acpi_handle handle = asus->handle;
1312 bool supported;
1314 if (attr == &dev_attr_wlan.attr) {
1315 supported = !acpi_check_handle(handle, METHOD_WLAN, NULL);
1317 } else if (attr == &dev_attr_bluetooth.attr) {
1318 supported = !acpi_check_handle(handle, METHOD_BLUETOOTH, NULL);
1320 } else if (attr == &dev_attr_display.attr) {
1321 supported = !acpi_check_handle(handle, METHOD_SWITCH_DISPLAY, NULL);
1323 } else if (attr == &dev_attr_wimax.attr) {
1324 supported =
1325 !acpi_check_handle(asus->handle, METHOD_WIMAX, NULL);
1327 } else if (attr == &dev_attr_wwan.attr) {
1328 supported = !acpi_check_handle(asus->handle, METHOD_WWAN, NULL);
1330 } else if (attr == &dev_attr_ledd.attr) {
1331 supported = !acpi_check_handle(handle, METHOD_LEDD, NULL);
1333 } else if (attr == &dev_attr_ls_switch.attr ||
1334 attr == &dev_attr_ls_level.attr) {
1335 supported = !acpi_check_handle(handle, METHOD_ALS_CONTROL, NULL) &&
1336 !acpi_check_handle(handle, METHOD_ALS_LEVEL, NULL);
1338 } else if (attr == &dev_attr_gps.attr) {
1339 supported = !acpi_check_handle(handle, METHOD_GPS_ON, NULL) &&
1340 !acpi_check_handle(handle, METHOD_GPS_OFF, NULL) &&
1341 !acpi_check_handle(handle, METHOD_GPS_STATUS, NULL);
1342 } else {
1343 supported = true;
1346 return supported ? attr->mode : 0;
1350 static const struct attribute_group asus_attr_group = {
1351 .is_visible = asus_sysfs_is_visible,
1352 .attrs = asus_attributes,
1355 static int asus_platform_init(struct asus_laptop *asus)
1357 int result;
1359 asus->platform_device = platform_device_alloc(ASUS_LAPTOP_FILE, -1);
1360 if (!asus->platform_device)
1361 return -ENOMEM;
1362 platform_set_drvdata(asus->platform_device, asus);
1364 result = platform_device_add(asus->platform_device);
1365 if (result)
1366 goto fail_platform_device;
1368 result = sysfs_create_group(&asus->platform_device->dev.kobj,
1369 &asus_attr_group);
1370 if (result)
1371 goto fail_sysfs;
1373 return 0;
1375 fail_sysfs:
1376 platform_device_del(asus->platform_device);
1377 fail_platform_device:
1378 platform_device_put(asus->platform_device);
1379 return result;
1382 static void asus_platform_exit(struct asus_laptop *asus)
1384 sysfs_remove_group(&asus->platform_device->dev.kobj, &asus_attr_group);
1385 platform_device_unregister(asus->platform_device);
1388 static struct platform_driver platform_driver = {
1389 .driver = {
1390 .name = ASUS_LAPTOP_FILE,
1391 .owner = THIS_MODULE,
1395 static int asus_handle_init(char *name, acpi_handle * handle,
1396 char **paths, int num_paths)
1398 int i;
1399 acpi_status status;
1401 for (i = 0; i < num_paths; i++) {
1402 status = acpi_get_handle(NULL, paths[i], handle);
1403 if (ACPI_SUCCESS(status))
1404 return 0;
1407 *handle = NULL;
1408 return -ENODEV;
1411 #define ASUS_HANDLE_INIT(object) \
1412 asus_handle_init(#object, &object##_handle, object##_paths, \
1413 ARRAY_SIZE(object##_paths))
1416 * This function is used to initialize the context with right values. In this
1417 * method, we can make all the detection we want, and modify the asus_laptop
1418 * struct
1420 static int asus_laptop_get_info(struct asus_laptop *asus)
1422 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
1423 union acpi_object *model = NULL;
1424 unsigned long long bsts_result, hwrs_result;
1425 char *string = NULL;
1426 acpi_status status;
1429 * Get DSDT headers early enough to allow for differentiating between
1430 * models, but late enough to allow acpi_bus_register_driver() to fail
1431 * before doing anything ACPI-specific. Should we encounter a machine,
1432 * which needs special handling (i.e. its hotkey device has a different
1433 * HID), this bit will be moved.
1435 status = acpi_get_table(ACPI_SIG_DSDT, 1, &asus->dsdt_info);
1436 if (ACPI_FAILURE(status))
1437 pr_warning("Couldn't get the DSDT table header\n");
1439 /* We have to write 0 on init this far for all ASUS models */
1440 if (write_acpi_int_ret(asus->handle, "INIT", 0, &buffer)) {
1441 pr_err("Hotkey initialization failed\n");
1442 return -ENODEV;
1445 /* This needs to be called for some laptops to init properly */
1446 status =
1447 acpi_evaluate_integer(asus->handle, "BSTS", NULL, &bsts_result);
1448 if (ACPI_FAILURE(status))
1449 pr_warning("Error calling BSTS\n");
1450 else if (bsts_result)
1451 pr_notice("BSTS called, 0x%02x returned\n",
1452 (uint) bsts_result);
1454 /* This too ... */
1455 if (write_acpi_int(asus->handle, "CWAP", wapf))
1456 pr_err("Error calling CWAP(%d)\n", wapf);
1458 * Try to match the object returned by INIT to the specific model.
1459 * Handle every possible object (or the lack of thereof) the DSDT
1460 * writers might throw at us. When in trouble, we pass NULL to
1461 * asus_model_match() and try something completely different.
1463 if (buffer.pointer) {
1464 model = buffer.pointer;
1465 switch (model->type) {
1466 case ACPI_TYPE_STRING:
1467 string = model->string.pointer;
1468 break;
1469 case ACPI_TYPE_BUFFER:
1470 string = model->buffer.pointer;
1471 break;
1472 default:
1473 string = "";
1474 break;
1477 asus->name = kstrdup(string, GFP_KERNEL);
1478 if (!asus->name) {
1479 kfree(buffer.pointer);
1480 return -ENOMEM;
1483 if (*string)
1484 pr_notice(" %s model detected\n", string);
1487 * The HWRS method return informations about the hardware.
1488 * 0x80 bit is for WLAN, 0x100 for Bluetooth,
1489 * 0x40 for WWAN, 0x10 for WIMAX.
1490 * The significance of others is yet to be found.
1492 status =
1493 acpi_evaluate_integer(asus->handle, "HRWS", NULL, &hwrs_result);
1494 if (!ACPI_FAILURE(status))
1495 pr_notice(" HRWS returned %x", (int)hwrs_result);
1497 if (!acpi_check_handle(asus->handle, METHOD_WL_STATUS, NULL))
1498 asus->have_rsts = true;
1500 /* Scheduled for removal */
1501 ASUS_HANDLE_INIT(lcd_switch);
1502 ASUS_HANDLE_INIT(display_get);
1504 kfree(model);
1506 return AE_OK;
1509 static int __devinit asus_acpi_init(struct asus_laptop *asus)
1511 int result = 0;
1513 result = acpi_bus_get_status(asus->device);
1514 if (result)
1515 return result;
1516 if (!asus->device->status.present) {
1517 pr_err("Hotkey device not present, aborting\n");
1518 return -ENODEV;
1521 result = asus_laptop_get_info(asus);
1522 if (result)
1523 return result;
1525 /* WLED and BLED are on by default */
1526 if (bluetooth_status >= 0)
1527 asus_bluetooth_set(asus, !!bluetooth_status);
1529 if (wlan_status >= 0)
1530 asus_wlan_set(asus, !!wlan_status);
1532 if (wimax_status >= 0)
1533 asus_wimax_set(asus, !!wimax_status);
1535 if (wwan_status >= 0)
1536 asus_wwan_set(asus, !!wwan_status);
1538 /* Keyboard Backlight is on by default */
1539 if (!acpi_check_handle(asus->handle, METHOD_KBD_LIGHT_SET, NULL))
1540 asus_kled_set(asus, 1);
1542 /* LED display is off by default */
1543 asus->ledd_status = 0xFFF;
1545 /* Set initial values of light sensor and level */
1546 asus->light_switch = 0; /* Default to light sensor disabled */
1547 asus->light_level = 5; /* level 5 for sensor sensitivity */
1549 if (!acpi_check_handle(asus->handle, METHOD_ALS_CONTROL, NULL) &&
1550 !acpi_check_handle(asus->handle, METHOD_ALS_LEVEL, NULL)) {
1551 asus_als_switch(asus, asus->light_switch);
1552 asus_als_level(asus, asus->light_level);
1555 asus->lcd_state = 1; /* LCD should be on when the module load */
1556 return result;
1559 static bool asus_device_present;
1561 static int __devinit asus_acpi_add(struct acpi_device *device)
1563 struct asus_laptop *asus;
1564 int result;
1566 pr_notice("Asus Laptop Support version %s\n",
1567 ASUS_LAPTOP_VERSION);
1568 asus = kzalloc(sizeof(struct asus_laptop), GFP_KERNEL);
1569 if (!asus)
1570 return -ENOMEM;
1571 asus->handle = device->handle;
1572 strcpy(acpi_device_name(device), ASUS_LAPTOP_DEVICE_NAME);
1573 strcpy(acpi_device_class(device), ASUS_LAPTOP_CLASS);
1574 device->driver_data = asus;
1575 asus->device = device;
1577 result = asus_acpi_init(asus);
1578 if (result)
1579 goto fail_platform;
1582 * Register the platform device first. It is used as a parent for the
1583 * sub-devices below.
1585 result = asus_platform_init(asus);
1586 if (result)
1587 goto fail_platform;
1589 if (!acpi_video_backlight_support()) {
1590 result = asus_backlight_init(asus);
1591 if (result)
1592 goto fail_backlight;
1593 } else
1594 pr_info("Backlight controlled by ACPI video driver\n");
1596 result = asus_input_init(asus);
1597 if (result)
1598 goto fail_input;
1600 result = asus_led_init(asus);
1601 if (result)
1602 goto fail_led;
1604 result = asus_rfkill_init(asus);
1605 if (result)
1606 goto fail_rfkill;
1608 asus_device_present = true;
1609 return 0;
1611 fail_rfkill:
1612 asus_led_exit(asus);
1613 fail_led:
1614 asus_input_exit(asus);
1615 fail_input:
1616 asus_backlight_exit(asus);
1617 fail_backlight:
1618 asus_platform_exit(asus);
1619 fail_platform:
1620 kfree(asus->name);
1621 kfree(asus);
1623 return result;
1626 static int asus_acpi_remove(struct acpi_device *device, int type)
1628 struct asus_laptop *asus = acpi_driver_data(device);
1630 asus_backlight_exit(asus);
1631 asus_rfkill_exit(asus);
1632 asus_led_exit(asus);
1633 asus_input_exit(asus);
1634 asus_platform_exit(asus);
1636 kfree(asus->name);
1637 kfree(asus);
1638 return 0;
1641 static const struct acpi_device_id asus_device_ids[] = {
1642 {"ATK0100", 0},
1643 {"ATK0101", 0},
1644 {"", 0},
1646 MODULE_DEVICE_TABLE(acpi, asus_device_ids);
1648 static struct acpi_driver asus_acpi_driver = {
1649 .name = ASUS_LAPTOP_NAME,
1650 .class = ASUS_LAPTOP_CLASS,
1651 .owner = THIS_MODULE,
1652 .ids = asus_device_ids,
1653 .flags = ACPI_DRIVER_ALL_NOTIFY_EVENTS,
1654 .ops = {
1655 .add = asus_acpi_add,
1656 .remove = asus_acpi_remove,
1657 .notify = asus_acpi_notify,
1661 static int __init asus_laptop_init(void)
1663 int result;
1665 result = platform_driver_register(&platform_driver);
1666 if (result < 0)
1667 return result;
1669 result = acpi_bus_register_driver(&asus_acpi_driver);
1670 if (result < 0)
1671 goto fail_acpi_driver;
1672 if (!asus_device_present) {
1673 result = -ENODEV;
1674 goto fail_no_device;
1676 return 0;
1678 fail_no_device:
1679 acpi_bus_unregister_driver(&asus_acpi_driver);
1680 fail_acpi_driver:
1681 platform_driver_unregister(&platform_driver);
1682 return result;
1685 static void __exit asus_laptop_exit(void)
1687 acpi_bus_unregister_driver(&asus_acpi_driver);
1688 platform_driver_unregister(&platform_driver);
1691 module_init(asus_laptop_init);
1692 module_exit(asus_laptop_exit);