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
7 * Copyright (C) 2011 Wind River Systems
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
24 * The development page for this driver is located at
25 * http://sourceforge.net/projects/acpi4asus/
28 * Pontus Fuchs - Helper functions, cleanup
29 * Johann Wiesner - Small compile fixes
30 * John Belmonte - ACPI code for Toshiba laptop was a good starting point.
31 * Eric Burghard - LED display support for W1N
32 * Josh Green - Light Sens support
33 * Thomas Tuttle - His first patch for led support was very helpful
34 * Sam Lin - GPS support
37 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
39 #include <linux/kernel.h>
40 #include <linux/module.h>
41 #include <linux/init.h>
42 #include <linux/types.h>
43 #include <linux/err.h>
44 #include <linux/proc_fs.h>
45 #include <linux/backlight.h>
47 #include <linux/leds.h>
48 #include <linux/platform_device.h>
49 #include <linux/uaccess.h>
50 #include <linux/input.h>
51 #include <linux/input/sparse-keymap.h>
52 #include <linux/input-polldev.h>
53 #include <linux/rfkill.h>
54 #include <linux/slab.h>
55 #include <linux/dmi.h>
56 #include <linux/acpi.h>
58 #define ASUS_LAPTOP_VERSION "0.42"
60 #define ASUS_LAPTOP_NAME "Asus Laptop Support"
61 #define ASUS_LAPTOP_CLASS "hotkey"
62 #define ASUS_LAPTOP_DEVICE_NAME "Hotkey"
63 #define ASUS_LAPTOP_FILE KBUILD_MODNAME
64 #define ASUS_LAPTOP_PREFIX "\\_SB.ATKD."
66 MODULE_AUTHOR("Julien Lerouge, Karol Kozimor, Corentin Chary");
67 MODULE_DESCRIPTION(ASUS_LAPTOP_NAME
);
68 MODULE_LICENSE("GPL");
71 * WAPF defines the behavior of the Fn+Fx wlan key
72 * The significance of values is yet to be found, but
74 * Bit | Bluetooth | WLAN
75 * 0 | Hardware | Hardware
76 * 1 | Hardware | Software
77 * 4 | Software | Software
80 module_param(wapf
, uint
, 0444);
81 MODULE_PARM_DESC(wapf
, "WAPF value");
83 static char *wled_type
= "unknown";
84 static char *bled_type
= "unknown";
86 module_param(wled_type
, charp
, 0444);
87 MODULE_PARM_DESC(wled_type
, "Set the wled type on boot "
88 "(unknown, led or rfkill). "
89 "default is unknown");
91 module_param(bled_type
, charp
, 0444);
92 MODULE_PARM_DESC(bled_type
, "Set the bled type on boot "
93 "(unknown, led or rfkill). "
94 "default is unknown");
96 static int wlan_status
= 1;
97 static int bluetooth_status
= 1;
98 static int wimax_status
= -1;
99 static int wwan_status
= -1;
100 static int als_status
;
102 module_param(wlan_status
, int, 0444);
103 MODULE_PARM_DESC(wlan_status
, "Set the wireless status on boot "
104 "(0 = disabled, 1 = enabled, -1 = don't do anything). "
107 module_param(bluetooth_status
, int, 0444);
108 MODULE_PARM_DESC(bluetooth_status
, "Set the wireless status on boot "
109 "(0 = disabled, 1 = enabled, -1 = don't do anything). "
112 module_param(wimax_status
, int, 0444);
113 MODULE_PARM_DESC(wimax_status
, "Set the wireless status on boot "
114 "(0 = disabled, 1 = enabled, -1 = don't do anything). "
117 module_param(wwan_status
, int, 0444);
118 MODULE_PARM_DESC(wwan_status
, "Set the wireless status on boot "
119 "(0 = disabled, 1 = enabled, -1 = don't do anything). "
122 module_param(als_status
, int, 0444);
123 MODULE_PARM_DESC(als_status
, "Set the ALS status on boot "
124 "(0 = disabled, 1 = enabled). "
128 * Some events we use, same for all Asus
130 #define ATKD_BRNUP_MIN 0x10
131 #define ATKD_BRNUP_MAX 0x1f
132 #define ATKD_BRNDOWN_MIN 0x20
133 #define ATKD_BRNDOWN_MAX 0x2f
134 #define ATKD_BRNDOWN 0x20
135 #define ATKD_BRNUP 0x2f
136 #define ATKD_LCD_ON 0x33
137 #define ATKD_LCD_OFF 0x34
140 * Known bits returned by \_SB.ATKD.HWRS
143 #define BT_HWRS 0x100
146 * Flags for hotk status
147 * WL_ON and BT_ON are also used for wireless_status()
149 #define WL_RSTS 0x01 /* internal Wifi */
150 #define BT_RSTS 0x02 /* internal Bluetooth */
151 #define WM_RSTS 0x08 /* internal wimax */
152 #define WW_RSTS 0x20 /* internal wwan */
154 /* WLED and BLED type */
155 #define TYPE_UNKNOWN 0
157 #define TYPE_RFKILL 2
160 #define METHOD_MLED "MLED"
161 #define METHOD_TLED "TLED"
162 #define METHOD_RLED "RLED" /* W1JC */
163 #define METHOD_PLED "PLED" /* A7J */
164 #define METHOD_GLED "GLED" /* G1, G2 (probably) */
167 #define METHOD_LEDD "SLCM"
171 * WLED and BLED are not handled like other XLED, because in some dsdt
172 * they also control the WLAN/Bluetooth device.
174 #define METHOD_WLAN "WLED"
175 #define METHOD_BLUETOOTH "BLED"
178 #define METHOD_WWAN "GSMC"
179 #define METHOD_WIMAX "WMXC"
181 #define METHOD_WL_STATUS "RSTS"
184 #define METHOD_BRIGHTNESS_SET "SPLV"
185 #define METHOD_BRIGHTNESS_GET "GPLV"
188 #define METHOD_SWITCH_DISPLAY "SDSP"
190 #define METHOD_ALS_CONTROL "ALSC" /* Z71A Z71V */
191 #define METHOD_ALS_LEVEL "ALSL" /* Z71A Z71V */
194 /* R2H use different handle for GPS on/off */
195 #define METHOD_GPS_ON "SDON"
196 #define METHOD_GPS_OFF "SDOF"
197 #define METHOD_GPS_STATUS "GPST"
200 #define METHOD_KBD_LIGHT_SET "SLKB"
201 #define METHOD_KBD_LIGHT_GET "GLKB"
203 /* For Pegatron Lucid tablet */
204 #define DEVICE_NAME_PEGA "Lucid"
206 #define METHOD_PEGA_ENABLE "ENPR"
207 #define METHOD_PEGA_DISABLE "DAPR"
208 #define PEGA_WLAN 0x00
209 #define PEGA_BLUETOOTH 0x01
210 #define PEGA_WWAN 0x02
211 #define PEGA_ALS 0x04
212 #define PEGA_ALS_POWER 0x05
214 #define METHOD_PEGA_READ "RDLN"
215 #define PEGA_READ_ALS_H 0x02
216 #define PEGA_READ_ALS_L 0x03
218 #define PEGA_ACCEL_NAME "pega_accel"
219 #define PEGA_ACCEL_DESC "Pegatron Lucid Tablet Accelerometer"
220 #define METHOD_XLRX "XLRX"
221 #define METHOD_XLRY "XLRY"
222 #define METHOD_XLRZ "XLRZ"
223 #define PEGA_ACC_CLAMP 512 /* 1G accel is reported as ~256, so clamp to 2G */
224 #define PEGA_ACC_RETRIES 3
227 * Define a specific led structure to keep the main structure clean
231 struct work_struct work
;
232 struct led_classdev led
;
233 struct asus_laptop
*asus
;
238 * Same thing for rfkill
241 /* type of control. Maps to PEGA_* values or *_RSTS */
243 struct rfkill
*rfkill
;
244 struct asus_laptop
*asus
;
248 * This is the main structure, we can use it to store anything interesting
249 * about the hotk device
252 char *name
; /* laptop name */
254 struct acpi_table_header
*dsdt_info
;
255 struct platform_device
*platform_device
;
256 struct acpi_device
*device
; /* the device we are in */
257 struct backlight_device
*backlight_device
;
259 struct input_dev
*inputdev
;
260 struct key_entry
*keymap
;
261 struct input_polled_dev
*pega_accel_poll
;
263 struct asus_led wled
;
264 struct asus_led bled
;
265 struct asus_led mled
;
266 struct asus_led tled
;
267 struct asus_led rled
;
268 struct asus_led pled
;
269 struct asus_led gled
;
270 struct asus_led kled
;
271 struct workqueue_struct
*led_workqueue
;
283 struct asus_rfkill wlan
;
284 struct asus_rfkill bluetooth
;
285 struct asus_rfkill wwan
;
286 struct asus_rfkill wimax
;
287 struct asus_rfkill gps
;
289 acpi_handle handle
; /* the handle of the hotk device */
290 u32 ledd_status
; /* status of the LED display */
291 u8 light_level
; /* light sensor level */
292 u8 light_switch
; /* light sensor switch value */
293 u16 event_count
[128]; /* count for each event TODO make this better */
296 static const struct key_entry asus_keymap
[] = {
297 /* Lenovo SL Specific keycodes */
298 {KE_KEY
, 0x02, { KEY_SCREENLOCK
} },
299 {KE_KEY
, 0x05, { KEY_WLAN
} },
300 {KE_KEY
, 0x08, { KEY_F13
} },
301 {KE_KEY
, 0x09, { KEY_PROG2
} }, /* Dock */
302 {KE_KEY
, 0x17, { KEY_ZOOM
} },
303 {KE_KEY
, 0x1f, { KEY_BATTERY
} },
304 /* End of Lenovo SL Specific keycodes */
305 {KE_KEY
, ATKD_BRNDOWN
, { KEY_BRIGHTNESSDOWN
} },
306 {KE_KEY
, ATKD_BRNUP
, { KEY_BRIGHTNESSUP
} },
307 {KE_KEY
, 0x30, { KEY_VOLUMEUP
} },
308 {KE_KEY
, 0x31, { KEY_VOLUMEDOWN
} },
309 {KE_KEY
, 0x32, { KEY_MUTE
} },
310 {KE_KEY
, 0x33, { KEY_DISPLAYTOGGLE
} }, /* LCD on */
311 {KE_KEY
, 0x34, { KEY_DISPLAY_OFF
} }, /* LCD off */
312 {KE_KEY
, 0x40, { KEY_PREVIOUSSONG
} },
313 {KE_KEY
, 0x41, { KEY_NEXTSONG
} },
314 {KE_KEY
, 0x43, { KEY_STOPCD
} }, /* Stop/Eject */
315 {KE_KEY
, 0x45, { KEY_PLAYPAUSE
} },
316 {KE_KEY
, 0x4c, { KEY_MEDIA
} }, /* WMP Key */
317 {KE_KEY
, 0x50, { KEY_EMAIL
} },
318 {KE_KEY
, 0x51, { KEY_WWW
} },
319 {KE_KEY
, 0x55, { KEY_CALC
} },
320 {KE_IGNORE
, 0x57, }, /* Battery mode */
321 {KE_IGNORE
, 0x58, }, /* AC mode */
322 {KE_KEY
, 0x5C, { KEY_SCREENLOCK
} }, /* Screenlock */
323 {KE_KEY
, 0x5D, { KEY_WLAN
} }, /* WLAN Toggle */
324 {KE_KEY
, 0x5E, { KEY_WLAN
} }, /* WLAN Enable */
325 {KE_KEY
, 0x5F, { KEY_WLAN
} }, /* WLAN Disable */
326 {KE_KEY
, 0x60, { KEY_TOUCHPAD_ON
} },
327 {KE_KEY
, 0x61, { KEY_SWITCHVIDEOMODE
} }, /* SDSP LCD only */
328 {KE_KEY
, 0x62, { KEY_SWITCHVIDEOMODE
} }, /* SDSP CRT only */
329 {KE_KEY
, 0x63, { KEY_SWITCHVIDEOMODE
} }, /* SDSP LCD + CRT */
330 {KE_KEY
, 0x64, { KEY_SWITCHVIDEOMODE
} }, /* SDSP TV */
331 {KE_KEY
, 0x65, { KEY_SWITCHVIDEOMODE
} }, /* SDSP LCD + TV */
332 {KE_KEY
, 0x66, { KEY_SWITCHVIDEOMODE
} }, /* SDSP CRT + TV */
333 {KE_KEY
, 0x67, { KEY_SWITCHVIDEOMODE
} }, /* SDSP LCD + CRT + TV */
334 {KE_KEY
, 0x6B, { KEY_TOUCHPAD_TOGGLE
} }, /* Lock Touchpad */
335 {KE_KEY
, 0x6C, { KEY_SLEEP
} }, /* Suspend */
336 {KE_KEY
, 0x6D, { KEY_SLEEP
} }, /* Hibernate */
337 {KE_IGNORE
, 0x6E, }, /* Low Battery notification */
338 {KE_KEY
, 0x7D, { KEY_BLUETOOTH
} }, /* Bluetooth Enable */
339 {KE_KEY
, 0x7E, { KEY_BLUETOOTH
} }, /* Bluetooth Disable */
340 {KE_KEY
, 0x82, { KEY_CAMERA
} },
341 {KE_KEY
, 0x88, { KEY_RFKILL
} }, /* Radio Toggle Key */
342 {KE_KEY
, 0x8A, { KEY_PROG1
} }, /* Color enhancement mode */
343 {KE_KEY
, 0x8C, { KEY_SWITCHVIDEOMODE
} }, /* SDSP DVI only */
344 {KE_KEY
, 0x8D, { KEY_SWITCHVIDEOMODE
} }, /* SDSP LCD + DVI */
345 {KE_KEY
, 0x8E, { KEY_SWITCHVIDEOMODE
} }, /* SDSP CRT + DVI */
346 {KE_KEY
, 0x8F, { KEY_SWITCHVIDEOMODE
} }, /* SDSP TV + DVI */
347 {KE_KEY
, 0x90, { KEY_SWITCHVIDEOMODE
} }, /* SDSP LCD + CRT + DVI */
348 {KE_KEY
, 0x91, { KEY_SWITCHVIDEOMODE
} }, /* SDSP LCD + TV + DVI */
349 {KE_KEY
, 0x92, { KEY_SWITCHVIDEOMODE
} }, /* SDSP CRT + TV + DVI */
350 {KE_KEY
, 0x93, { KEY_SWITCHVIDEOMODE
} }, /* SDSP LCD + CRT + TV + DVI */
351 {KE_KEY
, 0x95, { KEY_MEDIA
} },
352 {KE_KEY
, 0x99, { KEY_PHONE
} },
353 {KE_KEY
, 0xA0, { KEY_SWITCHVIDEOMODE
} }, /* SDSP HDMI only */
354 {KE_KEY
, 0xA1, { KEY_SWITCHVIDEOMODE
} }, /* SDSP LCD + HDMI */
355 {KE_KEY
, 0xA2, { KEY_SWITCHVIDEOMODE
} }, /* SDSP CRT + HDMI */
356 {KE_KEY
, 0xA3, { KEY_SWITCHVIDEOMODE
} }, /* SDSP TV + HDMI */
357 {KE_KEY
, 0xA4, { KEY_SWITCHVIDEOMODE
} }, /* SDSP LCD + CRT + HDMI */
358 {KE_KEY
, 0xA5, { KEY_SWITCHVIDEOMODE
} }, /* SDSP LCD + TV + HDMI */
359 {KE_KEY
, 0xA6, { KEY_SWITCHVIDEOMODE
} }, /* SDSP CRT + TV + HDMI */
360 {KE_KEY
, 0xA7, { KEY_SWITCHVIDEOMODE
} }, /* SDSP LCD + CRT + TV + HDMI */
361 {KE_KEY
, 0xB5, { KEY_CALC
} },
362 {KE_KEY
, 0xC4, { KEY_KBDILLUMUP
} },
363 {KE_KEY
, 0xC5, { KEY_KBDILLUMDOWN
} },
369 * This function evaluates an ACPI method, given an int as parameter, the
370 * method is searched within the scope of the handle, can be NULL. The output
371 * of the method is written is output, which can also be NULL
373 * returns 0 if write is successful, -1 else.
375 static int write_acpi_int_ret(acpi_handle handle
, const char *method
, int val
,
376 struct acpi_buffer
*output
)
378 struct acpi_object_list params
; /* list of input parameters (an int) */
379 union acpi_object in_obj
; /* the only param we use */
386 params
.pointer
= &in_obj
;
387 in_obj
.type
= ACPI_TYPE_INTEGER
;
388 in_obj
.integer
.value
= val
;
390 status
= acpi_evaluate_object(handle
, (char *)method
, ¶ms
, output
);
397 static int write_acpi_int(acpi_handle handle
, const char *method
, int val
)
399 return write_acpi_int_ret(handle
, method
, val
, NULL
);
402 static int acpi_check_handle(acpi_handle handle
, const char *method
,
411 status
= acpi_get_handle(handle
, (char *)method
,
416 status
= acpi_get_handle(handle
, (char *)method
,
420 if (status
!= AE_OK
) {
422 pr_warn("Error finding %s\n", method
);
428 static bool asus_check_pega_lucid(struct asus_laptop
*asus
)
430 return !strcmp(asus
->name
, DEVICE_NAME_PEGA
) &&
431 !acpi_check_handle(asus
->handle
, METHOD_PEGA_ENABLE
, NULL
) &&
432 !acpi_check_handle(asus
->handle
, METHOD_PEGA_DISABLE
, NULL
) &&
433 !acpi_check_handle(asus
->handle
, METHOD_PEGA_READ
, NULL
);
436 static int asus_pega_lucid_set(struct asus_laptop
*asus
, int unit
, bool enable
)
438 char *method
= enable
? METHOD_PEGA_ENABLE
: METHOD_PEGA_DISABLE
;
439 return write_acpi_int(asus
->handle
, method
, unit
);
442 static int pega_acc_axis(struct asus_laptop
*asus
, int curr
, char *method
)
445 unsigned long long val
;
446 for (i
= 0; i
< PEGA_ACC_RETRIES
; i
++) {
447 acpi_evaluate_integer(asus
->handle
, method
, NULL
, &val
);
449 /* The output is noisy. From reading the ASL
450 * dissassembly, timeout errors are returned with 1's
451 * in the high word, and the lack of locking around
452 * thei hi/lo byte reads means that a transition
453 * between (for example) -1 and 0 could be read as
454 * 0xff00 or 0x00ff. */
455 delta
= abs(curr
- (short)val
);
456 if (delta
< 128 && !(val
& ~0xffff))
459 return clamp_val((short)val
, -PEGA_ACC_CLAMP
, PEGA_ACC_CLAMP
);
462 static void pega_accel_poll(struct input_polled_dev
*ipd
)
464 struct device
*parent
= ipd
->input
->dev
.parent
;
465 struct asus_laptop
*asus
= dev_get_drvdata(parent
);
467 /* In some cases, the very first call to poll causes a
468 * recursive fault under the polldev worker. This is
469 * apparently related to very early userspace access to the
470 * device, and perhaps a firmware bug. Fake the first report. */
471 if (!asus
->pega_acc_live
) {
472 asus
->pega_acc_live
= true;
473 input_report_abs(ipd
->input
, ABS_X
, 0);
474 input_report_abs(ipd
->input
, ABS_Y
, 0);
475 input_report_abs(ipd
->input
, ABS_Z
, 0);
476 input_sync(ipd
->input
);
480 asus
->pega_acc_x
= pega_acc_axis(asus
, asus
->pega_acc_x
, METHOD_XLRX
);
481 asus
->pega_acc_y
= pega_acc_axis(asus
, asus
->pega_acc_y
, METHOD_XLRY
);
482 asus
->pega_acc_z
= pega_acc_axis(asus
, asus
->pega_acc_z
, METHOD_XLRZ
);
484 /* Note transform, convert to "right/up/out" in the native
485 * landscape orientation (i.e. the vector is the direction of
486 * "real up" in the device's cartiesian coordinates). */
487 input_report_abs(ipd
->input
, ABS_X
, -asus
->pega_acc_x
);
488 input_report_abs(ipd
->input
, ABS_Y
, -asus
->pega_acc_y
);
489 input_report_abs(ipd
->input
, ABS_Z
, asus
->pega_acc_z
);
490 input_sync(ipd
->input
);
493 static void pega_accel_exit(struct asus_laptop
*asus
)
495 if (asus
->pega_accel_poll
) {
496 input_unregister_polled_device(asus
->pega_accel_poll
);
497 input_free_polled_device(asus
->pega_accel_poll
);
499 asus
->pega_accel_poll
= NULL
;
502 static int pega_accel_init(struct asus_laptop
*asus
)
505 struct input_polled_dev
*ipd
;
507 if (!asus
->is_pega_lucid
)
510 if (acpi_check_handle(asus
->handle
, METHOD_XLRX
, NULL
) ||
511 acpi_check_handle(asus
->handle
, METHOD_XLRY
, NULL
) ||
512 acpi_check_handle(asus
->handle
, METHOD_XLRZ
, NULL
))
515 ipd
= input_allocate_polled_device();
519 ipd
->poll
= pega_accel_poll
;
520 ipd
->poll_interval
= 125;
521 ipd
->poll_interval_min
= 50;
522 ipd
->poll_interval_max
= 2000;
524 ipd
->input
->name
= PEGA_ACCEL_DESC
;
525 ipd
->input
->phys
= PEGA_ACCEL_NAME
"/input0";
526 ipd
->input
->dev
.parent
= &asus
->platform_device
->dev
;
527 ipd
->input
->id
.bustype
= BUS_HOST
;
529 set_bit(EV_ABS
, ipd
->input
->evbit
);
530 input_set_abs_params(ipd
->input
, ABS_X
,
531 -PEGA_ACC_CLAMP
, PEGA_ACC_CLAMP
, 0, 0);
532 input_set_abs_params(ipd
->input
, ABS_Y
,
533 -PEGA_ACC_CLAMP
, PEGA_ACC_CLAMP
, 0, 0);
534 input_set_abs_params(ipd
->input
, ABS_Z
,
535 -PEGA_ACC_CLAMP
, PEGA_ACC_CLAMP
, 0, 0);
537 err
= input_register_polled_device(ipd
);
541 asus
->pega_accel_poll
= ipd
;
545 input_free_polled_device(ipd
);
549 /* Generic LED function */
550 static int asus_led_set(struct asus_laptop
*asus
, const char *method
,
553 if (!strcmp(method
, METHOD_MLED
))
555 else if (!strcmp(method
, METHOD_GLED
))
560 return write_acpi_int(asus
->handle
, method
, value
);
566 /* /sys/class/led handlers */
567 static void asus_led_cdev_set(struct led_classdev
*led_cdev
,
568 enum led_brightness value
)
570 struct asus_led
*led
= container_of(led_cdev
, struct asus_led
, led
);
571 struct asus_laptop
*asus
= led
->asus
;
574 queue_work(asus
->led_workqueue
, &led
->work
);
577 static void asus_led_cdev_update(struct work_struct
*work
)
579 struct asus_led
*led
= container_of(work
, struct asus_led
, work
);
580 struct asus_laptop
*asus
= led
->asus
;
582 asus_led_set(asus
, led
->method
, led
->wk
);
585 static enum led_brightness
asus_led_cdev_get(struct led_classdev
*led_cdev
)
587 return led_cdev
->brightness
;
591 * Keyboard backlight (also a LED)
593 static int asus_kled_lvl(struct asus_laptop
*asus
)
595 unsigned long long kblv
;
596 struct acpi_object_list params
;
597 union acpi_object in_obj
;
601 params
.pointer
= &in_obj
;
602 in_obj
.type
= ACPI_TYPE_INTEGER
;
603 in_obj
.integer
.value
= 2;
605 rv
= acpi_evaluate_integer(asus
->handle
, METHOD_KBD_LIGHT_GET
,
607 if (ACPI_FAILURE(rv
)) {
608 pr_warn("Error reading kled level\n");
614 static int asus_kled_set(struct asus_laptop
*asus
, int kblv
)
617 kblv
= (1 << 7) | (kblv
& 0x7F);
621 if (write_acpi_int(asus
->handle
, METHOD_KBD_LIGHT_SET
, kblv
)) {
622 pr_warn("Keyboard LED display write failed\n");
628 static void asus_kled_cdev_set(struct led_classdev
*led_cdev
,
629 enum led_brightness value
)
631 struct asus_led
*led
= container_of(led_cdev
, struct asus_led
, led
);
632 struct asus_laptop
*asus
= led
->asus
;
635 queue_work(asus
->led_workqueue
, &led
->work
);
638 static void asus_kled_cdev_update(struct work_struct
*work
)
640 struct asus_led
*led
= container_of(work
, struct asus_led
, work
);
641 struct asus_laptop
*asus
= led
->asus
;
643 asus_kled_set(asus
, led
->wk
);
646 static enum led_brightness
asus_kled_cdev_get(struct led_classdev
*led_cdev
)
648 struct asus_led
*led
= container_of(led_cdev
, struct asus_led
, led
);
649 struct asus_laptop
*asus
= led
->asus
;
651 return asus_kled_lvl(asus
);
654 static void asus_led_exit(struct asus_laptop
*asus
)
656 if (!IS_ERR_OR_NULL(asus
->wled
.led
.dev
))
657 led_classdev_unregister(&asus
->wled
.led
);
658 if (!IS_ERR_OR_NULL(asus
->bled
.led
.dev
))
659 led_classdev_unregister(&asus
->bled
.led
);
660 if (!IS_ERR_OR_NULL(asus
->mled
.led
.dev
))
661 led_classdev_unregister(&asus
->mled
.led
);
662 if (!IS_ERR_OR_NULL(asus
->tled
.led
.dev
))
663 led_classdev_unregister(&asus
->tled
.led
);
664 if (!IS_ERR_OR_NULL(asus
->pled
.led
.dev
))
665 led_classdev_unregister(&asus
->pled
.led
);
666 if (!IS_ERR_OR_NULL(asus
->rled
.led
.dev
))
667 led_classdev_unregister(&asus
->rled
.led
);
668 if (!IS_ERR_OR_NULL(asus
->gled
.led
.dev
))
669 led_classdev_unregister(&asus
->gled
.led
);
670 if (!IS_ERR_OR_NULL(asus
->kled
.led
.dev
))
671 led_classdev_unregister(&asus
->kled
.led
);
672 if (asus
->led_workqueue
) {
673 destroy_workqueue(asus
->led_workqueue
);
674 asus
->led_workqueue
= NULL
;
678 /* Ugly macro, need to fix that later */
679 static int asus_led_register(struct asus_laptop
*asus
,
680 struct asus_led
*led
,
681 const char *name
, const char *method
)
683 struct led_classdev
*led_cdev
= &led
->led
;
685 if (!method
|| acpi_check_handle(asus
->handle
, method
, NULL
))
686 return 0; /* Led not present */
689 led
->method
= method
;
691 INIT_WORK(&led
->work
, asus_led_cdev_update
);
692 led_cdev
->name
= name
;
693 led_cdev
->brightness_set
= asus_led_cdev_set
;
694 led_cdev
->brightness_get
= asus_led_cdev_get
;
695 led_cdev
->max_brightness
= 1;
696 return led_classdev_register(&asus
->platform_device
->dev
, led_cdev
);
699 static int asus_led_init(struct asus_laptop
*asus
)
704 * The Pegatron Lucid has no physical leds, but all methods are
705 * available in the DSDT...
707 if (asus
->is_pega_lucid
)
711 * Functions that actually update the LED's are called from a
712 * workqueue. By doing this as separate work rather than when the LED
713 * subsystem asks, we avoid messing with the Asus ACPI stuff during a
714 * potentially bad time, such as a timer interrupt.
716 asus
->led_workqueue
= create_singlethread_workqueue("led_workqueue");
717 if (!asus
->led_workqueue
)
720 if (asus
->wled_type
== TYPE_LED
)
721 r
= asus_led_register(asus
, &asus
->wled
, "asus::wlan",
725 if (asus
->bled_type
== TYPE_LED
)
726 r
= asus_led_register(asus
, &asus
->bled
, "asus::bluetooth",
730 r
= asus_led_register(asus
, &asus
->mled
, "asus::mail", METHOD_MLED
);
733 r
= asus_led_register(asus
, &asus
->tled
, "asus::touchpad", METHOD_TLED
);
736 r
= asus_led_register(asus
, &asus
->rled
, "asus::record", METHOD_RLED
);
739 r
= asus_led_register(asus
, &asus
->pled
, "asus::phone", METHOD_PLED
);
742 r
= asus_led_register(asus
, &asus
->gled
, "asus::gaming", METHOD_GLED
);
745 if (!acpi_check_handle(asus
->handle
, METHOD_KBD_LIGHT_SET
, NULL
) &&
746 !acpi_check_handle(asus
->handle
, METHOD_KBD_LIGHT_GET
, NULL
)) {
747 struct asus_led
*led
= &asus
->kled
;
748 struct led_classdev
*cdev
= &led
->led
;
752 INIT_WORK(&led
->work
, asus_kled_cdev_update
);
753 cdev
->name
= "asus::kbd_backlight";
754 cdev
->brightness_set
= asus_kled_cdev_set
;
755 cdev
->brightness_get
= asus_kled_cdev_get
;
756 cdev
->max_brightness
= 3;
757 r
= led_classdev_register(&asus
->platform_device
->dev
, cdev
);
768 static int asus_read_brightness(struct backlight_device
*bd
)
770 struct asus_laptop
*asus
= bl_get_data(bd
);
771 unsigned long long value
;
772 acpi_status rv
= AE_OK
;
774 rv
= acpi_evaluate_integer(asus
->handle
, METHOD_BRIGHTNESS_GET
,
776 if (ACPI_FAILURE(rv
))
777 pr_warn("Error reading brightness\n");
782 static int asus_set_brightness(struct backlight_device
*bd
, int value
)
784 struct asus_laptop
*asus
= bl_get_data(bd
);
786 if (write_acpi_int(asus
->handle
, METHOD_BRIGHTNESS_SET
, value
)) {
787 pr_warn("Error changing brightness\n");
793 static int update_bl_status(struct backlight_device
*bd
)
795 int value
= bd
->props
.brightness
;
797 return asus_set_brightness(bd
, value
);
800 static const struct backlight_ops asusbl_ops
= {
801 .get_brightness
= asus_read_brightness
,
802 .update_status
= update_bl_status
,
805 static int asus_backlight_notify(struct asus_laptop
*asus
)
807 struct backlight_device
*bd
= asus
->backlight_device
;
808 int old
= bd
->props
.brightness
;
810 backlight_force_update(bd
, BACKLIGHT_UPDATE_HOTKEY
);
815 static int asus_backlight_init(struct asus_laptop
*asus
)
817 struct backlight_device
*bd
;
818 struct backlight_properties props
;
820 if (acpi_check_handle(asus
->handle
, METHOD_BRIGHTNESS_GET
, NULL
) ||
821 acpi_check_handle(asus
->handle
, METHOD_BRIGHTNESS_SET
, NULL
))
824 memset(&props
, 0, sizeof(struct backlight_properties
));
825 props
.max_brightness
= 15;
826 props
.type
= BACKLIGHT_PLATFORM
;
828 bd
= backlight_device_register(ASUS_LAPTOP_FILE
,
829 &asus
->platform_device
->dev
, asus
,
830 &asusbl_ops
, &props
);
832 pr_err("Could not register asus backlight device\n");
833 asus
->backlight_device
= NULL
;
837 asus
->backlight_device
= bd
;
838 bd
->props
.brightness
= asus_read_brightness(bd
);
839 bd
->props
.power
= FB_BLANK_UNBLANK
;
840 backlight_update_status(bd
);
844 static void asus_backlight_exit(struct asus_laptop
*asus
)
846 backlight_device_unregister(asus
->backlight_device
);
847 asus
->backlight_device
= NULL
;
851 * Platform device handlers
855 * We write our info in page, we begin at offset off and cannot write more
856 * than count bytes. We set eof to 1 if we handle those 2 values. We return the
857 * number of bytes written in page
859 static ssize_t
infos_show(struct device
*dev
, struct device_attribute
*attr
,
862 struct asus_laptop
*asus
= dev_get_drvdata(dev
);
864 unsigned long long temp
;
865 char buf
[16]; /* enough for all info */
866 acpi_status rv
= AE_OK
;
869 * We use the easy way, we don't care of off and count,
870 * so we don't set eof to 1
873 len
+= sprintf(page
, ASUS_LAPTOP_NAME
" " ASUS_LAPTOP_VERSION
"\n");
874 len
+= sprintf(page
+ len
, "Model reference : %s\n", asus
->name
);
876 * The SFUN method probably allows the original driver to get the list
877 * of features supported by a given model. For now, 0x0100 or 0x0800
878 * bit signifies that the laptop is equipped with a Wi-Fi MiniPCI card.
879 * The significance of others is yet to be found.
881 rv
= acpi_evaluate_integer(asus
->handle
, "SFUN", NULL
, &temp
);
882 if (!ACPI_FAILURE(rv
))
883 len
+= sprintf(page
+ len
, "SFUN value : %#x\n",
886 * The HWRS method return informations about the hardware.
887 * 0x80 bit is for WLAN, 0x100 for Bluetooth.
888 * 0x40 for WWAN, 0x10 for WIMAX.
889 * The significance of others is yet to be found.
890 * We don't currently use this for device detection, and it
891 * takes several seconds to run on some systems.
893 rv
= acpi_evaluate_integer(asus
->handle
, "HWRS", NULL
, &temp
);
894 if (!ACPI_FAILURE(rv
))
895 len
+= sprintf(page
+ len
, "HWRS value : %#x\n",
898 * Another value for userspace: the ASYM method returns 0x02 for
899 * battery low and 0x04 for battery critical, its readings tend to be
900 * more accurate than those provided by _BST.
901 * Note: since not all the laptops provide this method, errors are
904 rv
= acpi_evaluate_integer(asus
->handle
, "ASYM", NULL
, &temp
);
905 if (!ACPI_FAILURE(rv
))
906 len
+= sprintf(page
+ len
, "ASYM value : %#x\n",
908 if (asus
->dsdt_info
) {
909 snprintf(buf
, 16, "%d", asus
->dsdt_info
->length
);
910 len
+= sprintf(page
+ len
, "DSDT length : %s\n", buf
);
911 snprintf(buf
, 16, "%d", asus
->dsdt_info
->checksum
);
912 len
+= sprintf(page
+ len
, "DSDT checksum : %s\n", buf
);
913 snprintf(buf
, 16, "%d", asus
->dsdt_info
->revision
);
914 len
+= sprintf(page
+ len
, "DSDT revision : %s\n", buf
);
915 snprintf(buf
, 7, "%s", asus
->dsdt_info
->oem_id
);
916 len
+= sprintf(page
+ len
, "OEM id : %s\n", buf
);
917 snprintf(buf
, 9, "%s", asus
->dsdt_info
->oem_table_id
);
918 len
+= sprintf(page
+ len
, "OEM table id : %s\n", buf
);
919 snprintf(buf
, 16, "%x", asus
->dsdt_info
->oem_revision
);
920 len
+= sprintf(page
+ len
, "OEM revision : 0x%s\n", buf
);
921 snprintf(buf
, 5, "%s", asus
->dsdt_info
->asl_compiler_id
);
922 len
+= sprintf(page
+ len
, "ASL comp vendor id : %s\n", buf
);
923 snprintf(buf
, 16, "%x", asus
->dsdt_info
->asl_compiler_revision
);
924 len
+= sprintf(page
+ len
, "ASL comp revision : 0x%s\n", buf
);
929 static DEVICE_ATTR_RO(infos
);
931 static int parse_arg(const char *buf
, unsigned long count
, int *val
)
937 if (sscanf(buf
, "%i", val
) != 1)
942 static ssize_t
sysfs_acpi_set(struct asus_laptop
*asus
,
943 const char *buf
, size_t count
,
949 rv
= parse_arg(buf
, count
, &value
);
953 if (write_acpi_int(asus
->handle
, method
, value
))
961 static ssize_t
ledd_show(struct device
*dev
, struct device_attribute
*attr
,
964 struct asus_laptop
*asus
= dev_get_drvdata(dev
);
966 return sprintf(buf
, "0x%08x\n", asus
->ledd_status
);
969 static ssize_t
ledd_store(struct device
*dev
, struct device_attribute
*attr
,
970 const char *buf
, size_t count
)
972 struct asus_laptop
*asus
= dev_get_drvdata(dev
);
975 rv
= parse_arg(buf
, count
, &value
);
977 if (write_acpi_int(asus
->handle
, METHOD_LEDD
, value
)) {
978 pr_warn("LED display write failed\n");
981 asus
->ledd_status
= (u32
) value
;
985 static DEVICE_ATTR_RW(ledd
);
990 static int asus_wireless_status(struct asus_laptop
*asus
, int mask
)
992 unsigned long long status
;
993 acpi_status rv
= AE_OK
;
995 if (!asus
->have_rsts
)
996 return (asus
->wireless_status
& mask
) ? 1 : 0;
998 rv
= acpi_evaluate_integer(asus
->handle
, METHOD_WL_STATUS
,
1000 if (ACPI_FAILURE(rv
)) {
1001 pr_warn("Error reading Wireless status\n");
1004 return !!(status
& mask
);
1010 static int asus_wlan_set(struct asus_laptop
*asus
, int status
)
1012 if (write_acpi_int(asus
->handle
, METHOD_WLAN
, !!status
)) {
1013 pr_warn("Error setting wlan status to %d\n", status
);
1019 static ssize_t
wlan_show(struct device
*dev
, struct device_attribute
*attr
,
1022 struct asus_laptop
*asus
= dev_get_drvdata(dev
);
1024 return sprintf(buf
, "%d\n", asus_wireless_status(asus
, WL_RSTS
));
1027 static ssize_t
wlan_store(struct device
*dev
, struct device_attribute
*attr
,
1028 const char *buf
, size_t count
)
1030 struct asus_laptop
*asus
= dev_get_drvdata(dev
);
1032 return sysfs_acpi_set(asus
, buf
, count
, METHOD_WLAN
);
1034 static DEVICE_ATTR_RW(wlan
);
1039 static int asus_bluetooth_set(struct asus_laptop
*asus
, int status
)
1041 if (write_acpi_int(asus
->handle
, METHOD_BLUETOOTH
, !!status
)) {
1042 pr_warn("Error setting bluetooth status to %d\n", status
);
1048 static ssize_t
bluetooth_show(struct device
*dev
, struct device_attribute
*attr
,
1051 struct asus_laptop
*asus
= dev_get_drvdata(dev
);
1053 return sprintf(buf
, "%d\n", asus_wireless_status(asus
, BT_RSTS
));
1056 static ssize_t
bluetooth_store(struct device
*dev
,
1057 struct device_attribute
*attr
, const char *buf
,
1060 struct asus_laptop
*asus
= dev_get_drvdata(dev
);
1062 return sysfs_acpi_set(asus
, buf
, count
, METHOD_BLUETOOTH
);
1064 static DEVICE_ATTR_RW(bluetooth
);
1069 static int asus_wimax_set(struct asus_laptop
*asus
, int status
)
1071 if (write_acpi_int(asus
->handle
, METHOD_WIMAX
, !!status
)) {
1072 pr_warn("Error setting wimax status to %d\n", status
);
1078 static ssize_t
wimax_show(struct device
*dev
, struct device_attribute
*attr
,
1081 struct asus_laptop
*asus
= dev_get_drvdata(dev
);
1083 return sprintf(buf
, "%d\n", asus_wireless_status(asus
, WM_RSTS
));
1086 static ssize_t
wimax_store(struct device
*dev
, struct device_attribute
*attr
,
1087 const char *buf
, size_t count
)
1089 struct asus_laptop
*asus
= dev_get_drvdata(dev
);
1091 return sysfs_acpi_set(asus
, buf
, count
, METHOD_WIMAX
);
1093 static DEVICE_ATTR_RW(wimax
);
1098 static int asus_wwan_set(struct asus_laptop
*asus
, int status
)
1100 if (write_acpi_int(asus
->handle
, METHOD_WWAN
, !!status
)) {
1101 pr_warn("Error setting wwan status to %d\n", status
);
1107 static ssize_t
wwan_show(struct device
*dev
, struct device_attribute
*attr
,
1110 struct asus_laptop
*asus
= dev_get_drvdata(dev
);
1112 return sprintf(buf
, "%d\n", asus_wireless_status(asus
, WW_RSTS
));
1115 static ssize_t
wwan_store(struct device
*dev
, struct device_attribute
*attr
,
1116 const char *buf
, size_t count
)
1118 struct asus_laptop
*asus
= dev_get_drvdata(dev
);
1120 return sysfs_acpi_set(asus
, buf
, count
, METHOD_WWAN
);
1122 static DEVICE_ATTR_RW(wwan
);
1127 static void asus_set_display(struct asus_laptop
*asus
, int value
)
1129 /* no sanity check needed for now */
1130 if (write_acpi_int(asus
->handle
, METHOD_SWITCH_DISPLAY
, value
))
1131 pr_warn("Error setting display\n");
1136 * Experimental support for display switching. As of now: 1 should activate
1137 * the LCD output, 2 should do for CRT, 4 for TV-Out and 8 for DVI.
1138 * Any combination (bitwise) of these will suffice. I never actually tested 4
1139 * displays hooked up simultaneously, so be warned. See the acpi4asus README
1142 static ssize_t
display_store(struct device
*dev
, struct device_attribute
*attr
,
1143 const char *buf
, size_t count
)
1145 struct asus_laptop
*asus
= dev_get_drvdata(dev
);
1148 rv
= parse_arg(buf
, count
, &value
);
1150 asus_set_display(asus
, value
);
1153 static DEVICE_ATTR_WO(display
);
1158 static void asus_als_switch(struct asus_laptop
*asus
, int value
)
1162 if (asus
->is_pega_lucid
) {
1163 ret
= asus_pega_lucid_set(asus
, PEGA_ALS
, value
);
1165 ret
= asus_pega_lucid_set(asus
, PEGA_ALS_POWER
, value
);
1167 ret
= write_acpi_int(asus
->handle
, METHOD_ALS_CONTROL
, value
);
1170 pr_warning("Error setting light sensor switch\n");
1172 asus
->light_switch
= value
;
1175 static ssize_t
ls_switch_show(struct device
*dev
, struct device_attribute
*attr
,
1178 struct asus_laptop
*asus
= dev_get_drvdata(dev
);
1180 return sprintf(buf
, "%d\n", asus
->light_switch
);
1183 static ssize_t
ls_switch_store(struct device
*dev
,
1184 struct device_attribute
*attr
, const char *buf
,
1187 struct asus_laptop
*asus
= dev_get_drvdata(dev
);
1190 rv
= parse_arg(buf
, count
, &value
);
1192 asus_als_switch(asus
, value
? 1 : 0);
1196 static DEVICE_ATTR_RW(ls_switch
);
1198 static void asus_als_level(struct asus_laptop
*asus
, int value
)
1200 if (write_acpi_int(asus
->handle
, METHOD_ALS_LEVEL
, value
))
1201 pr_warn("Error setting light sensor level\n");
1202 asus
->light_level
= value
;
1205 static ssize_t
ls_level_show(struct device
*dev
, struct device_attribute
*attr
,
1208 struct asus_laptop
*asus
= dev_get_drvdata(dev
);
1210 return sprintf(buf
, "%d\n", asus
->light_level
);
1213 static ssize_t
ls_level_store(struct device
*dev
, struct device_attribute
*attr
,
1214 const char *buf
, size_t count
)
1216 struct asus_laptop
*asus
= dev_get_drvdata(dev
);
1219 rv
= parse_arg(buf
, count
, &value
);
1221 value
= (0 < value
) ? ((15 < value
) ? 15 : value
) : 0;
1222 /* 0 <= value <= 15 */
1223 asus_als_level(asus
, value
);
1228 static DEVICE_ATTR_RW(ls_level
);
1230 static int pega_int_read(struct asus_laptop
*asus
, int arg
, int *result
)
1232 struct acpi_buffer buffer
= { ACPI_ALLOCATE_BUFFER
, NULL
};
1233 int err
= write_acpi_int_ret(asus
->handle
, METHOD_PEGA_READ
, arg
,
1236 union acpi_object
*obj
= buffer
.pointer
;
1237 if (obj
&& obj
->type
== ACPI_TYPE_INTEGER
)
1238 *result
= obj
->integer
.value
;
1245 static ssize_t
ls_value_show(struct device
*dev
, struct device_attribute
*attr
,
1248 struct asus_laptop
*asus
= dev_get_drvdata(dev
);
1251 err
= pega_int_read(asus
, PEGA_READ_ALS_H
, &hi
);
1253 err
= pega_int_read(asus
, PEGA_READ_ALS_L
, &lo
);
1255 return sprintf(buf
, "%d\n", 10 * hi
+ lo
);
1258 static DEVICE_ATTR_RO(ls_value
);
1263 static int asus_gps_status(struct asus_laptop
*asus
)
1265 unsigned long long status
;
1266 acpi_status rv
= AE_OK
;
1268 rv
= acpi_evaluate_integer(asus
->handle
, METHOD_GPS_STATUS
,
1270 if (ACPI_FAILURE(rv
)) {
1271 pr_warn("Error reading GPS status\n");
1277 static int asus_gps_switch(struct asus_laptop
*asus
, int status
)
1279 const char *meth
= status
? METHOD_GPS_ON
: METHOD_GPS_OFF
;
1281 if (write_acpi_int(asus
->handle
, meth
, 0x02))
1286 static ssize_t
gps_show(struct device
*dev
, struct device_attribute
*attr
,
1289 struct asus_laptop
*asus
= dev_get_drvdata(dev
);
1291 return sprintf(buf
, "%d\n", asus_gps_status(asus
));
1294 static ssize_t
gps_store(struct device
*dev
, struct device_attribute
*attr
,
1295 const char *buf
, size_t count
)
1297 struct asus_laptop
*asus
= dev_get_drvdata(dev
);
1301 rv
= parse_arg(buf
, count
, &value
);
1304 ret
= asus_gps_switch(asus
, !!value
);
1307 rfkill_set_sw_state(asus
->gps
.rfkill
, !value
);
1310 static DEVICE_ATTR_RW(gps
);
1315 static int asus_gps_rfkill_set(void *data
, bool blocked
)
1317 struct asus_laptop
*asus
= data
;
1319 return asus_gps_switch(asus
, !blocked
);
1322 static const struct rfkill_ops asus_gps_rfkill_ops
= {
1323 .set_block
= asus_gps_rfkill_set
,
1326 static int asus_rfkill_set(void *data
, bool blocked
)
1328 struct asus_rfkill
*rfk
= data
;
1329 struct asus_laptop
*asus
= rfk
->asus
;
1331 if (rfk
->control_id
== WL_RSTS
)
1332 return asus_wlan_set(asus
, !blocked
);
1333 else if (rfk
->control_id
== BT_RSTS
)
1334 return asus_bluetooth_set(asus
, !blocked
);
1335 else if (rfk
->control_id
== WM_RSTS
)
1336 return asus_wimax_set(asus
, !blocked
);
1337 else if (rfk
->control_id
== WW_RSTS
)
1338 return asus_wwan_set(asus
, !blocked
);
1343 static const struct rfkill_ops asus_rfkill_ops
= {
1344 .set_block
= asus_rfkill_set
,
1347 static void asus_rfkill_terminate(struct asus_rfkill
*rfk
)
1352 rfkill_unregister(rfk
->rfkill
);
1353 rfkill_destroy(rfk
->rfkill
);
1357 static void asus_rfkill_exit(struct asus_laptop
*asus
)
1359 asus_rfkill_terminate(&asus
->wwan
);
1360 asus_rfkill_terminate(&asus
->bluetooth
);
1361 asus_rfkill_terminate(&asus
->wlan
);
1362 asus_rfkill_terminate(&asus
->gps
);
1365 static int asus_rfkill_setup(struct asus_laptop
*asus
, struct asus_rfkill
*rfk
,
1366 const char *name
, int control_id
, int type
,
1367 const struct rfkill_ops
*ops
)
1371 rfk
->control_id
= control_id
;
1373 rfk
->rfkill
= rfkill_alloc(name
, &asus
->platform_device
->dev
,
1378 result
= rfkill_register(rfk
->rfkill
);
1380 rfkill_destroy(rfk
->rfkill
);
1387 static int asus_rfkill_init(struct asus_laptop
*asus
)
1391 if (asus
->is_pega_lucid
)
1394 if (!acpi_check_handle(asus
->handle
, METHOD_GPS_ON
, NULL
) &&
1395 !acpi_check_handle(asus
->handle
, METHOD_GPS_OFF
, NULL
) &&
1396 !acpi_check_handle(asus
->handle
, METHOD_GPS_STATUS
, NULL
))
1397 result
= asus_rfkill_setup(asus
, &asus
->gps
, "asus-gps",
1398 -1, RFKILL_TYPE_GPS
,
1399 &asus_gps_rfkill_ops
);
1404 if (!acpi_check_handle(asus
->handle
, METHOD_WLAN
, NULL
) &&
1405 asus
->wled_type
== TYPE_RFKILL
)
1406 result
= asus_rfkill_setup(asus
, &asus
->wlan
, "asus-wlan",
1407 WL_RSTS
, RFKILL_TYPE_WLAN
,
1412 if (!acpi_check_handle(asus
->handle
, METHOD_BLUETOOTH
, NULL
) &&
1413 asus
->bled_type
== TYPE_RFKILL
)
1414 result
= asus_rfkill_setup(asus
, &asus
->bluetooth
,
1415 "asus-bluetooth", BT_RSTS
,
1416 RFKILL_TYPE_BLUETOOTH
,
1421 if (!acpi_check_handle(asus
->handle
, METHOD_WWAN
, NULL
))
1422 result
= asus_rfkill_setup(asus
, &asus
->wwan
, "asus-wwan",
1423 WW_RSTS
, RFKILL_TYPE_WWAN
,
1428 if (!acpi_check_handle(asus
->handle
, METHOD_WIMAX
, NULL
))
1429 result
= asus_rfkill_setup(asus
, &asus
->wimax
, "asus-wimax",
1430 WM_RSTS
, RFKILL_TYPE_WIMAX
,
1437 asus_rfkill_exit(asus
);
1442 static int pega_rfkill_set(void *data
, bool blocked
)
1444 struct asus_rfkill
*rfk
= data
;
1446 int ret
= asus_pega_lucid_set(rfk
->asus
, rfk
->control_id
, !blocked
);
1450 static const struct rfkill_ops pega_rfkill_ops
= {
1451 .set_block
= pega_rfkill_set
,
1454 static int pega_rfkill_setup(struct asus_laptop
*asus
, struct asus_rfkill
*rfk
,
1455 const char *name
, int controlid
, int rfkill_type
)
1457 return asus_rfkill_setup(asus
, rfk
, name
, controlid
, rfkill_type
,
1461 static int pega_rfkill_init(struct asus_laptop
*asus
)
1465 if(!asus
->is_pega_lucid
)
1468 ret
= pega_rfkill_setup(asus
, &asus
->wlan
, "pega-wlan",
1469 PEGA_WLAN
, RFKILL_TYPE_WLAN
);
1473 ret
= pega_rfkill_setup(asus
, &asus
->bluetooth
, "pega-bt",
1474 PEGA_BLUETOOTH
, RFKILL_TYPE_BLUETOOTH
);
1478 ret
= pega_rfkill_setup(asus
, &asus
->wwan
, "pega-wwan",
1479 PEGA_WWAN
, RFKILL_TYPE_WWAN
);
1483 asus_rfkill_exit(asus
);
1489 * Input device (i.e. hotkeys)
1491 static void asus_input_notify(struct asus_laptop
*asus
, int event
)
1493 if (!asus
->inputdev
)
1495 if (!sparse_keymap_report_event(asus
->inputdev
, event
, 1, true))
1496 pr_info("Unknown key %x pressed\n", event
);
1499 static int asus_input_init(struct asus_laptop
*asus
)
1501 struct input_dev
*input
;
1504 input
= input_allocate_device();
1508 input
->name
= "Asus Laptop extra buttons";
1509 input
->phys
= ASUS_LAPTOP_FILE
"/input0";
1510 input
->id
.bustype
= BUS_HOST
;
1511 input
->dev
.parent
= &asus
->platform_device
->dev
;
1513 error
= sparse_keymap_setup(input
, asus_keymap
, NULL
);
1515 pr_err("Unable to setup input device keymap\n");
1518 error
= input_register_device(input
);
1520 pr_warn("Unable to register input device\n");
1521 goto err_free_keymap
;
1524 asus
->inputdev
= input
;
1528 sparse_keymap_free(input
);
1530 input_free_device(input
);
1534 static void asus_input_exit(struct asus_laptop
*asus
)
1536 if (asus
->inputdev
) {
1537 sparse_keymap_free(asus
->inputdev
);
1538 input_unregister_device(asus
->inputdev
);
1540 asus
->inputdev
= NULL
;
1546 static void asus_acpi_notify(struct acpi_device
*device
, u32 event
)
1548 struct asus_laptop
*asus
= acpi_driver_data(device
);
1551 /* TODO Find a better way to handle events count. */
1552 count
= asus
->event_count
[event
% 128]++;
1553 acpi_bus_generate_netlink_event(asus
->device
->pnp
.device_class
,
1554 dev_name(&asus
->device
->dev
), event
,
1557 if (event
>= ATKD_BRNUP_MIN
&& event
<= ATKD_BRNUP_MAX
)
1559 else if (event
>= ATKD_BRNDOWN_MIN
&&
1560 event
<= ATKD_BRNDOWN_MAX
)
1561 event
= ATKD_BRNDOWN
;
1563 /* Brightness events are special */
1564 if (event
== ATKD_BRNDOWN
|| event
== ATKD_BRNUP
) {
1565 if (asus
->backlight_device
!= NULL
) {
1566 /* Update the backlight device. */
1567 asus_backlight_notify(asus
);
1572 /* Accelerometer "coarse orientation change" event */
1573 if (asus
->pega_accel_poll
&& event
== 0xEA) {
1574 kobject_uevent(&asus
->pega_accel_poll
->input
->dev
.kobj
,
1579 asus_input_notify(asus
, event
);
1582 static struct attribute
*asus_attributes
[] = {
1583 &dev_attr_infos
.attr
,
1584 &dev_attr_wlan
.attr
,
1585 &dev_attr_bluetooth
.attr
,
1586 &dev_attr_wimax
.attr
,
1587 &dev_attr_wwan
.attr
,
1588 &dev_attr_display
.attr
,
1589 &dev_attr_ledd
.attr
,
1590 &dev_attr_ls_value
.attr
,
1591 &dev_attr_ls_level
.attr
,
1592 &dev_attr_ls_switch
.attr
,
1597 static umode_t
asus_sysfs_is_visible(struct kobject
*kobj
,
1598 struct attribute
*attr
,
1601 struct device
*dev
= container_of(kobj
, struct device
, kobj
);
1602 struct platform_device
*pdev
= to_platform_device(dev
);
1603 struct asus_laptop
*asus
= platform_get_drvdata(pdev
);
1604 acpi_handle handle
= asus
->handle
;
1607 if (asus
->is_pega_lucid
) {
1608 /* no ls_level interface on the Lucid */
1609 if (attr
== &dev_attr_ls_switch
.attr
)
1611 else if (attr
== &dev_attr_ls_level
.attr
)
1616 return supported
? attr
->mode
: 0;
1620 if (attr
== &dev_attr_wlan
.attr
) {
1621 supported
= !acpi_check_handle(handle
, METHOD_WLAN
, NULL
);
1623 } else if (attr
== &dev_attr_bluetooth
.attr
) {
1624 supported
= !acpi_check_handle(handle
, METHOD_BLUETOOTH
, NULL
);
1626 } else if (attr
== &dev_attr_display
.attr
) {
1627 supported
= !acpi_check_handle(handle
, METHOD_SWITCH_DISPLAY
, NULL
);
1629 } else if (attr
== &dev_attr_wimax
.attr
) {
1631 !acpi_check_handle(asus
->handle
, METHOD_WIMAX
, NULL
);
1633 } else if (attr
== &dev_attr_wwan
.attr
) {
1634 supported
= !acpi_check_handle(asus
->handle
, METHOD_WWAN
, NULL
);
1636 } else if (attr
== &dev_attr_ledd
.attr
) {
1637 supported
= !acpi_check_handle(handle
, METHOD_LEDD
, NULL
);
1639 } else if (attr
== &dev_attr_ls_switch
.attr
||
1640 attr
== &dev_attr_ls_level
.attr
) {
1641 supported
= !acpi_check_handle(handle
, METHOD_ALS_CONTROL
, NULL
) &&
1642 !acpi_check_handle(handle
, METHOD_ALS_LEVEL
, NULL
);
1643 } else if (attr
== &dev_attr_ls_value
.attr
) {
1644 supported
= asus
->is_pega_lucid
;
1645 } else if (attr
== &dev_attr_gps
.attr
) {
1646 supported
= !acpi_check_handle(handle
, METHOD_GPS_ON
, NULL
) &&
1647 !acpi_check_handle(handle
, METHOD_GPS_OFF
, NULL
) &&
1648 !acpi_check_handle(handle
, METHOD_GPS_STATUS
, NULL
);
1653 return supported
? attr
->mode
: 0;
1657 static const struct attribute_group asus_attr_group
= {
1658 .is_visible
= asus_sysfs_is_visible
,
1659 .attrs
= asus_attributes
,
1662 static int asus_platform_init(struct asus_laptop
*asus
)
1666 asus
->platform_device
= platform_device_alloc(ASUS_LAPTOP_FILE
, -1);
1667 if (!asus
->platform_device
)
1669 platform_set_drvdata(asus
->platform_device
, asus
);
1671 result
= platform_device_add(asus
->platform_device
);
1673 goto fail_platform_device
;
1675 result
= sysfs_create_group(&asus
->platform_device
->dev
.kobj
,
1683 platform_device_del(asus
->platform_device
);
1684 fail_platform_device
:
1685 platform_device_put(asus
->platform_device
);
1689 static void asus_platform_exit(struct asus_laptop
*asus
)
1691 sysfs_remove_group(&asus
->platform_device
->dev
.kobj
, &asus_attr_group
);
1692 platform_device_unregister(asus
->platform_device
);
1695 static struct platform_driver platform_driver
= {
1697 .name
= ASUS_LAPTOP_FILE
,
1702 * This function is used to initialize the context with right values. In this
1703 * method, we can make all the detection we want, and modify the asus_laptop
1706 static int asus_laptop_get_info(struct asus_laptop
*asus
)
1708 struct acpi_buffer buffer
= { ACPI_ALLOCATE_BUFFER
, NULL
};
1709 union acpi_object
*model
= NULL
;
1710 unsigned long long bsts_result
;
1711 char *string
= NULL
;
1715 * Get DSDT headers early enough to allow for differentiating between
1716 * models, but late enough to allow acpi_bus_register_driver() to fail
1717 * before doing anything ACPI-specific. Should we encounter a machine,
1718 * which needs special handling (i.e. its hotkey device has a different
1719 * HID), this bit will be moved.
1721 status
= acpi_get_table(ACPI_SIG_DSDT
, 1, &asus
->dsdt_info
);
1722 if (ACPI_FAILURE(status
))
1723 pr_warn("Couldn't get the DSDT table header\n");
1725 /* We have to write 0 on init this far for all ASUS models */
1726 if (write_acpi_int_ret(asus
->handle
, "INIT", 0, &buffer
)) {
1727 pr_err("Hotkey initialization failed\n");
1731 /* This needs to be called for some laptops to init properly */
1733 acpi_evaluate_integer(asus
->handle
, "BSTS", NULL
, &bsts_result
);
1734 if (ACPI_FAILURE(status
))
1735 pr_warn("Error calling BSTS\n");
1736 else if (bsts_result
)
1737 pr_notice("BSTS called, 0x%02x returned\n",
1738 (uint
) bsts_result
);
1741 if (write_acpi_int(asus
->handle
, "CWAP", wapf
))
1742 pr_err("Error calling CWAP(%d)\n", wapf
);
1744 * Try to match the object returned by INIT to the specific model.
1745 * Handle every possible object (or the lack of thereof) the DSDT
1746 * writers might throw at us. When in trouble, we pass NULL to
1747 * asus_model_match() and try something completely different.
1749 if (buffer
.pointer
) {
1750 model
= buffer
.pointer
;
1751 switch (model
->type
) {
1752 case ACPI_TYPE_STRING
:
1753 string
= model
->string
.pointer
;
1755 case ACPI_TYPE_BUFFER
:
1756 string
= model
->buffer
.pointer
;
1763 asus
->name
= kstrdup(string
, GFP_KERNEL
);
1765 kfree(buffer
.pointer
);
1770 pr_notice(" %s model detected\n", string
);
1772 if (!acpi_check_handle(asus
->handle
, METHOD_WL_STATUS
, NULL
))
1773 asus
->have_rsts
= true;
1780 static int asus_acpi_init(struct asus_laptop
*asus
)
1784 result
= acpi_bus_get_status(asus
->device
);
1787 if (!asus
->device
->status
.present
) {
1788 pr_err("Hotkey device not present, aborting\n");
1792 result
= asus_laptop_get_info(asus
);
1796 if (!strcmp(bled_type
, "led"))
1797 asus
->bled_type
= TYPE_LED
;
1798 else if (!strcmp(bled_type
, "rfkill"))
1799 asus
->bled_type
= TYPE_RFKILL
;
1801 if (!strcmp(wled_type
, "led"))
1802 asus
->wled_type
= TYPE_LED
;
1803 else if (!strcmp(wled_type
, "rfkill"))
1804 asus
->wled_type
= TYPE_RFKILL
;
1806 if (bluetooth_status
>= 0)
1807 asus_bluetooth_set(asus
, !!bluetooth_status
);
1809 if (wlan_status
>= 0)
1810 asus_wlan_set(asus
, !!wlan_status
);
1812 if (wimax_status
>= 0)
1813 asus_wimax_set(asus
, !!wimax_status
);
1815 if (wwan_status
>= 0)
1816 asus_wwan_set(asus
, !!wwan_status
);
1818 /* Keyboard Backlight is on by default */
1819 if (!acpi_check_handle(asus
->handle
, METHOD_KBD_LIGHT_SET
, NULL
))
1820 asus_kled_set(asus
, 1);
1822 /* LED display is off by default */
1823 asus
->ledd_status
= 0xFFF;
1825 /* Set initial values of light sensor and level */
1826 asus
->light_switch
= !!als_status
;
1827 asus
->light_level
= 5; /* level 5 for sensor sensitivity */
1829 if (asus
->is_pega_lucid
) {
1830 asus_als_switch(asus
, asus
->light_switch
);
1831 } else if (!acpi_check_handle(asus
->handle
, METHOD_ALS_CONTROL
, NULL
) &&
1832 !acpi_check_handle(asus
->handle
, METHOD_ALS_LEVEL
, NULL
)) {
1833 asus_als_switch(asus
, asus
->light_switch
);
1834 asus_als_level(asus
, asus
->light_level
);
1840 static void asus_dmi_check(void)
1844 model
= dmi_get_system_info(DMI_PRODUCT_NAME
);
1848 /* On L1400B WLED control the sound card, don't mess with it ... */
1849 if (strncmp(model
, "L1400B", 6) == 0) {
1854 static bool asus_device_present
;
1856 static int asus_acpi_add(struct acpi_device
*device
)
1858 struct asus_laptop
*asus
;
1861 pr_notice("Asus Laptop Support version %s\n",
1862 ASUS_LAPTOP_VERSION
);
1863 asus
= kzalloc(sizeof(struct asus_laptop
), GFP_KERNEL
);
1866 asus
->handle
= device
->handle
;
1867 strcpy(acpi_device_name(device
), ASUS_LAPTOP_DEVICE_NAME
);
1868 strcpy(acpi_device_class(device
), ASUS_LAPTOP_CLASS
);
1869 device
->driver_data
= asus
;
1870 asus
->device
= device
;
1874 result
= asus_acpi_init(asus
);
1879 * Need platform type detection first, then the platform
1880 * device. It is used as a parent for the sub-devices below.
1882 asus
->is_pega_lucid
= asus_check_pega_lucid(asus
);
1883 result
= asus_platform_init(asus
);
1887 if (!acpi_video_backlight_support()) {
1888 result
= asus_backlight_init(asus
);
1890 goto fail_backlight
;
1892 pr_info("Backlight controlled by ACPI video driver\n");
1894 result
= asus_input_init(asus
);
1898 result
= asus_led_init(asus
);
1902 result
= asus_rfkill_init(asus
);
1903 if (result
&& result
!= -ENODEV
)
1906 result
= pega_accel_init(asus
);
1907 if (result
&& result
!= -ENODEV
)
1908 goto fail_pega_accel
;
1910 result
= pega_rfkill_init(asus
);
1911 if (result
&& result
!= -ENODEV
)
1912 goto fail_pega_rfkill
;
1914 asus_device_present
= true;
1918 pega_accel_exit(asus
);
1920 asus_rfkill_exit(asus
);
1922 asus_led_exit(asus
);
1924 asus_input_exit(asus
);
1926 asus_backlight_exit(asus
);
1928 asus_platform_exit(asus
);
1935 static int asus_acpi_remove(struct acpi_device
*device
)
1937 struct asus_laptop
*asus
= acpi_driver_data(device
);
1939 asus_backlight_exit(asus
);
1940 asus_rfkill_exit(asus
);
1941 asus_led_exit(asus
);
1942 asus_input_exit(asus
);
1943 pega_accel_exit(asus
);
1944 asus_platform_exit(asus
);
1951 static const struct acpi_device_id asus_device_ids
[] = {
1956 MODULE_DEVICE_TABLE(acpi
, asus_device_ids
);
1958 static struct acpi_driver asus_acpi_driver
= {
1959 .name
= ASUS_LAPTOP_NAME
,
1960 .class = ASUS_LAPTOP_CLASS
,
1961 .owner
= THIS_MODULE
,
1962 .ids
= asus_device_ids
,
1963 .flags
= ACPI_DRIVER_ALL_NOTIFY_EVENTS
,
1965 .add
= asus_acpi_add
,
1966 .remove
= asus_acpi_remove
,
1967 .notify
= asus_acpi_notify
,
1971 static int __init
asus_laptop_init(void)
1975 result
= platform_driver_register(&platform_driver
);
1979 result
= acpi_bus_register_driver(&asus_acpi_driver
);
1981 goto fail_acpi_driver
;
1982 if (!asus_device_present
) {
1984 goto fail_no_device
;
1989 acpi_bus_unregister_driver(&asus_acpi_driver
);
1991 platform_driver_unregister(&platform_driver
);
1995 static void __exit
asus_laptop_exit(void)
1997 acpi_bus_unregister_driver(&asus_acpi_driver
);
1998 platform_driver_unregister(&platform_driver
);
2001 module_init(asus_laptop_init
);
2002 module_exit(asus_laptop_exit
);