]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - drivers/platform/x86/asus-laptop.c
asus-laptop: add all video switch keys
[mirror_ubuntu-bionic-kernel.git] / drivers / platform / x86 / asus-laptop.c
CommitLineData
85091b71
CC
1/*
2 * asus-laptop.c - Asus Laptop Support
3 *
4 *
5 * Copyright (C) 2002-2005 Julien Lerouge, 2003-2006 Karol Kozimor
8ec555c2 6 * Copyright (C) 2006-2007 Corentin Chary
8819de7f 7 * Copyright (C) 2011 Wind River Systems
85091b71
CC
8 *
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.
13 *
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.
18 *
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
22 *
23 *
24 * The development page for this driver is located at
25 * http://sourceforge.net/projects/acpi4asus/
26 *
27 * Credits:
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
c8440336 33 * Thomas Tuttle - His first patch for led support was very helpful
e539c2f6 34 * Sam Lin - GPS support
85091b71
CC
35 */
36
2fcc23da
CC
37#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
38
85091b71
CC
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>
6b7091e7
CC
45#include <linux/backlight.h>
46#include <linux/fb.h>
be18cdab 47#include <linux/leds.h>
85091b71 48#include <linux/platform_device.h>
060cbce6 49#include <linux/uaccess.h>
034ce90a 50#include <linux/input.h>
66a71dd1 51#include <linux/input/sparse-keymap.h>
8819de7f 52#include <linux/input-polldev.h>
18e1311e 53#include <linux/rfkill.h>
5a0e3ad6 54#include <linux/slab.h>
af96f877 55#include <linux/dmi.h>
060cbce6
CC
56#include <acpi/acpi_drivers.h>
57#include <acpi/acpi_bus.h>
85091b71 58
91687cc8 59#define ASUS_LAPTOP_VERSION "0.42"
85091b71 60
50a90c4d
CC
61#define ASUS_LAPTOP_NAME "Asus Laptop Support"
62#define ASUS_LAPTOP_CLASS "hotkey"
63#define ASUS_LAPTOP_DEVICE_NAME "Hotkey"
64#define ASUS_LAPTOP_FILE KBUILD_MODNAME
65#define ASUS_LAPTOP_PREFIX "\\_SB.ATKD."
85091b71 66
85091b71 67MODULE_AUTHOR("Julien Lerouge, Karol Kozimor, Corentin Chary");
50a90c4d 68MODULE_DESCRIPTION(ASUS_LAPTOP_NAME);
85091b71
CC
69MODULE_LICENSE("GPL");
70
be966660
CC
71/*
72 * WAPF defines the behavior of the Fn+Fx wlan key
185e5af9
CC
73 * The significance of values is yet to be found, but
74 * most of the time:
fddbfed5
CC
75 * Bit | Bluetooth | WLAN
76 * 0 | Hardware | Hardware
77 * 1 | Hardware | Software
78 * 4 | Software | Software
185e5af9
CC
79 */
80static uint wapf = 1;
c26d85cb 81module_param(wapf, uint, 0444);
185e5af9
CC
82MODULE_PARM_DESC(wapf, "WAPF value");
83
774b0678
CC
84static char *wled_type = "unknown";
85static char *bled_type = "unknown";
86
87module_param(wled_type, charp, 0444);
3f5449bf 88MODULE_PARM_DESC(wled_type, "Set the wled type on boot "
774b0678
CC
89 "(unknown, led or rfkill). "
90 "default is unknown");
91
92module_param(bled_type, charp, 0444);
93MODULE_PARM_DESC(bled_type, "Set the bled type on boot "
94 "(unknown, led or rfkill). "
95 "default is unknown");
96
668f4a03
DC
97static int wlan_status = 1;
98static int bluetooth_status = 1;
ba1ff5be
CC
99static int wimax_status = -1;
100static int wwan_status = -1;
abec04db 101static int als_status;
0e875f49 102
c26d85cb 103module_param(wlan_status, int, 0444);
d0930a2d 104MODULE_PARM_DESC(wlan_status, "Set the wireless status on boot "
0e875f49 105 "(0 = disabled, 1 = enabled, -1 = don't do anything). "
16cbf933 106 "default is -1");
0e875f49 107
c26d85cb 108module_param(bluetooth_status, int, 0444);
0e875f49
CC
109MODULE_PARM_DESC(bluetooth_status, "Set the wireless status on boot "
110 "(0 = disabled, 1 = enabled, -1 = don't do anything). "
16cbf933 111 "default is -1");
0e875f49 112
ba1ff5be
CC
113module_param(wimax_status, int, 0444);
114MODULE_PARM_DESC(wimax_status, "Set the wireless status on boot "
115 "(0 = disabled, 1 = enabled, -1 = don't do anything). "
16cbf933 116 "default is -1");
ba1ff5be
CC
117
118module_param(wwan_status, int, 0444);
119MODULE_PARM_DESC(wwan_status, "Set the wireless status on boot "
120 "(0 = disabled, 1 = enabled, -1 = don't do anything). "
16cbf933 121 "default is -1");
ba1ff5be 122
abec04db
AR
123module_param(als_status, int, 0444);
124MODULE_PARM_DESC(als_status, "Set the ALS status on boot "
125 "(0 = disabled, 1 = enabled). "
126 "default is 0");
127
be4ee82d
CC
128/*
129 * Some events we use, same for all Asus
130 */
060cbce6
CC
131#define ATKD_BR_UP 0x10 /* (event & ~ATKD_BR_UP) = brightness level */
132#define ATKD_BR_DOWN 0x20 /* (event & ~ATKD_BR_DOWN) = britghness level */
a539df5e 133#define ATKD_BR_MIN ATKD_BR_UP
060cbce6 134#define ATKD_BR_MAX (ATKD_BR_DOWN | 0xF) /* 0x2f */
be4ee82d
CC
135#define ATKD_LCD_ON 0x33
136#define ATKD_LCD_OFF 0x34
137
138/*
139 * Known bits returned by \_SB.ATKD.HWRS
140 */
141#define WL_HWRS 0x80
142#define BT_HWRS 0x100
143
144/*
145 * Flags for hotk status
146 * WL_ON and BT_ON are also used for wireless_status()
147 */
17e78f62
CC
148#define WL_RSTS 0x01 /* internal Wifi */
149#define BT_RSTS 0x02 /* internal Bluetooth */
ba1ff5be
CC
150#define WM_RSTS 0x08 /* internal wimax */
151#define WW_RSTS 0x20 /* internal wwan */
be4ee82d 152
774b0678
CC
153/* WLED and BLED type */
154#define TYPE_UNKNOWN 0
155#define TYPE_LED 1
156#define TYPE_RFKILL 2
157
be18cdab 158/* LED */
d99b577c
CC
159#define METHOD_MLED "MLED"
160#define METHOD_TLED "TLED"
161#define METHOD_RLED "RLED" /* W1JC */
162#define METHOD_PLED "PLED" /* A7J */
163#define METHOD_GLED "GLED" /* G1, G2 (probably) */
be18cdab 164
722ad971 165/* LEDD */
d99b577c 166#define METHOD_LEDD "SLCM"
722ad971 167
be966660
CC
168/*
169 * Bluetooth and WLAN
4564de17
CC
170 * WLED and BLED are not handled like other XLED, because in some dsdt
171 * they also control the WLAN/Bluetooth device.
172 */
d99b577c
CC
173#define METHOD_WLAN "WLED"
174#define METHOD_BLUETOOTH "BLED"
ba1ff5be
CC
175
176/* WWAN and WIMAX */
177#define METHOD_WWAN "GSMC"
178#define METHOD_WIMAX "WMXC"
179
d99b577c 180#define METHOD_WL_STATUS "RSTS"
4564de17 181
6b7091e7 182/* Brightness */
d99b577c
CC
183#define METHOD_BRIGHTNESS_SET "SPLV"
184#define METHOD_BRIGHTNESS_GET "GPLV"
6b7091e7 185
78127b4a 186/* Display */
d99b577c 187#define METHOD_SWITCH_DISPLAY "SDSP"
060cbce6 188
d99b577c
CC
189#define METHOD_ALS_CONTROL "ALSC" /* Z71A Z71V */
190#define METHOD_ALS_LEVEL "ALSL" /* Z71A Z71V */
8b857353 191
e539c2f6
CC
192/* GPS */
193/* R2H use different handle for GPS on/off */
d99b577c
CC
194#define METHOD_GPS_ON "SDON"
195#define METHOD_GPS_OFF "SDOF"
196#define METHOD_GPS_STATUS "GPST"
e539c2f6 197
b7d3fbc2 198/* Keyboard light */
d99b577c
CC
199#define METHOD_KBD_LIGHT_SET "SLKB"
200#define METHOD_KBD_LIGHT_GET "GLKB"
b7d3fbc2 201
8819de7f
AR
202/* For Pegatron Lucid tablet */
203#define DEVICE_NAME_PEGA "Lucid"
33989ba6 204
8819de7f
AR
205#define METHOD_PEGA_ENABLE "ENPR"
206#define METHOD_PEGA_DISABLE "DAPR"
14908399
AA
207#define PEGA_WLAN 0x00
208#define PEGA_BLUETOOTH 0x01
209#define PEGA_WWAN 0x02
33989ba6
AR
210#define PEGA_ALS 0x04
211#define PEGA_ALS_POWER 0x05
212
8819de7f 213#define METHOD_PEGA_READ "RDLN"
33989ba6
AR
214#define PEGA_READ_ALS_H 0x02
215#define PEGA_READ_ALS_L 0x03
8819de7f 216
b23910c2
AR
217#define PEGA_ACCEL_NAME "pega_accel"
218#define PEGA_ACCEL_DESC "Pegatron Lucid Tablet Accelerometer"
219#define METHOD_XLRX "XLRX"
220#define METHOD_XLRY "XLRY"
221#define METHOD_XLRZ "XLRZ"
222#define PEGA_ACC_CLAMP 512 /* 1G accel is reported as ~256, so clamp to 2G */
223#define PEGA_ACC_RETRIES 3
224
9129d14d
CC
225/*
226 * Define a specific led structure to keep the main structure clean
227 */
aee0afb8
CC
228struct asus_led {
229 int wk;
230 struct work_struct work;
231 struct led_classdev led;
232 struct asus_laptop *asus;
233 const char *method;
9129d14d
CC
234};
235
14908399
AA
236/*
237 * Same thing for rfkill
238 */
40969c7d 239struct asus_rfkill {
774b0678
CC
240 /* type of control. Maps to PEGA_* values or *_RSTS */
241 int control_id;
14908399
AA
242 struct rfkill *rfkill;
243 struct asus_laptop *asus;
244};
245
85091b71
CC
246/*
247 * This is the main structure, we can use it to store anything interesting
248 * about the hotk device
249 */
50a90c4d 250struct asus_laptop {
be966660 251 char *name; /* laptop name */
600ad520 252
7c247645 253 struct acpi_table_header *dsdt_info;
600ad520 254 struct platform_device *platform_device;
7c247645
CC
255 struct acpi_device *device; /* the device we are in */
256 struct backlight_device *backlight_device;
9129d14d 257
7c247645 258 struct input_dev *inputdev;
9129d14d 259 struct key_entry *keymap;
b23910c2 260 struct input_polled_dev *pega_accel_poll;
9129d14d 261
774b0678
CC
262 struct asus_led wled;
263 struct asus_led bled;
aee0afb8
CC
264 struct asus_led mled;
265 struct asus_led tled;
266 struct asus_led rled;
267 struct asus_led pled;
268 struct asus_led gled;
269 struct asus_led kled;
270 struct workqueue_struct *led_workqueue;
7c247645 271
774b0678
CC
272 int wled_type;
273 int bled_type;
aa9df930
CC
274 int wireless_status;
275 bool have_rsts;
8819de7f 276 bool is_pega_lucid;
b23910c2
AR
277 bool pega_acc_live;
278 int pega_acc_x;
279 int pega_acc_y;
280 int pega_acc_z;
aa9df930 281
40969c7d
CC
282 struct asus_rfkill wlan;
283 struct asus_rfkill bluetooth;
284 struct asus_rfkill wwan;
3c8671ff 285 struct asus_rfkill wimax;
40969c7d 286 struct asus_rfkill gps;
14908399 287
be966660 288 acpi_handle handle; /* the handle of the hotk device */
be966660
CC
289 u32 ledd_status; /* status of the LED display */
290 u8 light_level; /* light sensor level */
291 u8 light_switch; /* light sensor switch value */
292 u16 event_count[128]; /* count for each event TODO make this better */
85091b71
CC
293};
294
9129d14d 295static const struct key_entry asus_keymap[] = {
a539df5e 296 /* Lenovo SL Specific keycodes */
66a71dd1
CC
297 {KE_KEY, 0x02, { KEY_SCREENLOCK } },
298 {KE_KEY, 0x05, { KEY_WLAN } },
299 {KE_KEY, 0x08, { KEY_F13 } },
a2d5dd24 300 {KE_KEY, 0x09, { KEY_PROG2 } }, /* Dock */
66a71dd1
CC
301 {KE_KEY, 0x17, { KEY_ZOOM } },
302 {KE_KEY, 0x1f, { KEY_BATTERY } },
a539df5e 303 /* End of Lenovo SL Specific keycodes */
66a71dd1
CC
304 {KE_KEY, 0x30, { KEY_VOLUMEUP } },
305 {KE_KEY, 0x31, { KEY_VOLUMEDOWN } },
306 {KE_KEY, 0x32, { KEY_MUTE } },
a935eaec
CC
307 {KE_KEY, 0x33, { KEY_DISPLAYTOGGLE } }, /* LCD on */
308 {KE_KEY, 0x34, { KEY_DISPLAY_OFF } }, /* LCD off */
66a71dd1
CC
309 {KE_KEY, 0x40, { KEY_PREVIOUSSONG } },
310 {KE_KEY, 0x41, { KEY_NEXTSONG } },
a935eaec 311 {KE_KEY, 0x43, { KEY_STOPCD } }, /* Stop/Eject */
66a71dd1 312 {KE_KEY, 0x45, { KEY_PLAYPAUSE } },
a935eaec 313 {KE_KEY, 0x4c, { KEY_MEDIA } }, /* WMP Key */
66a71dd1
CC
314 {KE_KEY, 0x50, { KEY_EMAIL } },
315 {KE_KEY, 0x51, { KEY_WWW } },
316 {KE_KEY, 0x55, { KEY_CALC } },
982d385a
CC
317 {KE_IGNORE, 0x57, }, /* Battery mode */
318 {KE_IGNORE, 0x58, }, /* AC mode */
66a71dd1 319 {KE_KEY, 0x5C, { KEY_SCREENLOCK } }, /* Screenlock */
a935eaec
CC
320 {KE_KEY, 0x5D, { KEY_WLAN } }, /* WLAN Toggle */
321 {KE_KEY, 0x5E, { KEY_WLAN } }, /* WLAN Enable */
322 {KE_KEY, 0x5F, { KEY_WLAN } }, /* WLAN Disable */
19d3ab12 323 {KE_KEY, 0x60, { KEY_TOUCHPAD_ON } },
3da4cd20
AK
324 {KE_KEY, 0x61, { KEY_SWITCHVIDEOMODE } }, /* SDSP LCD only */
325 {KE_KEY, 0x62, { KEY_SWITCHVIDEOMODE } }, /* SDSP CRT only */
326 {KE_KEY, 0x63, { KEY_SWITCHVIDEOMODE } }, /* SDSP LCD + CRT */
327 {KE_KEY, 0x64, { KEY_SWITCHVIDEOMODE } }, /* SDSP TV */
328 {KE_KEY, 0x65, { KEY_SWITCHVIDEOMODE } }, /* SDSP LCD + TV */
329 {KE_KEY, 0x66, { KEY_SWITCHVIDEOMODE } }, /* SDSP CRT + TV */
330 {KE_KEY, 0x67, { KEY_SWITCHVIDEOMODE } }, /* SDSP LCD + CRT + TV */
a935eaec 331 {KE_KEY, 0x6B, { KEY_TOUCHPAD_TOGGLE } }, /* Lock Touchpad */
a2d5dd24
CC
332 {KE_KEY, 0x6C, { KEY_SLEEP } }, /* Suspend */
333 {KE_KEY, 0x6D, { KEY_SLEEP } }, /* Hibernate */
982d385a 334 {KE_IGNORE, 0x6E, }, /* Low Battery notification */
a935eaec
CC
335 {KE_KEY, 0x7D, { KEY_BLUETOOTH } }, /* Bluetooth Enable */
336 {KE_KEY, 0x7E, { KEY_BLUETOOTH } }, /* Bluetooth Disable */
66a71dd1 337 {KE_KEY, 0x82, { KEY_CAMERA } },
a935eaec
CC
338 {KE_KEY, 0x88, { KEY_RFKILL } }, /* Radio Toggle Key */
339 {KE_KEY, 0x8A, { KEY_PROG1 } }, /* Color enhancement mode */
3da4cd20
AK
340 {KE_KEY, 0x8C, { KEY_SWITCHVIDEOMODE } }, /* SDSP DVI only */
341 {KE_KEY, 0x8D, { KEY_SWITCHVIDEOMODE } }, /* SDSP LCD + DVI */
342 {KE_KEY, 0x8E, { KEY_SWITCHVIDEOMODE } }, /* SDSP CRT + DVI */
343 {KE_KEY, 0x8F, { KEY_SWITCHVIDEOMODE } }, /* SDSP TV + DVI */
344 {KE_KEY, 0x90, { KEY_SWITCHVIDEOMODE } }, /* SDSP LCD + CRT + DVI */
345 {KE_KEY, 0x91, { KEY_SWITCHVIDEOMODE } }, /* SDSP LCD + TV + DVI */
346 {KE_KEY, 0x92, { KEY_SWITCHVIDEOMODE } }, /* SDSP CRT + TV + DVI */
347 {KE_KEY, 0x93, { KEY_SWITCHVIDEOMODE } }, /* SDSP LCD + CRT + TV + DVI */
66a71dd1
CC
348 {KE_KEY, 0x95, { KEY_MEDIA } },
349 {KE_KEY, 0x99, { KEY_PHONE } },
3da4cd20
AK
350 {KE_KEY, 0xA0, { KEY_SWITCHVIDEOMODE } }, /* SDSP HDMI only */
351 {KE_KEY, 0xA1, { KEY_SWITCHVIDEOMODE } }, /* SDSP LCD + HDMI */
352 {KE_KEY, 0xA2, { KEY_SWITCHVIDEOMODE } }, /* SDSP CRT + HDMI */
353 {KE_KEY, 0xA3, { KEY_SWITCHVIDEOMODE } }, /* SDSP TV + HDMI */
354 {KE_KEY, 0xA4, { KEY_SWITCHVIDEOMODE } }, /* SDSP LCD + CRT + HDMI */
355 {KE_KEY, 0xA5, { KEY_SWITCHVIDEOMODE } }, /* SDSP LCD + TV + HDMI */
356 {KE_KEY, 0xA6, { KEY_SWITCHVIDEOMODE } }, /* SDSP CRT + TV + HDMI */
357 {KE_KEY, 0xA7, { KEY_SWITCHVIDEOMODE } }, /* SDSP LCD + CRT + TV + HDMI */
a935eaec
CC
358 {KE_KEY, 0xB5, { KEY_CALC } },
359 {KE_KEY, 0xC4, { KEY_KBDILLUMUP } },
360 {KE_KEY, 0xC5, { KEY_KBDILLUMDOWN } },
034ce90a
CC
361 {KE_END, 0},
362};
363
66a71dd1 364
85091b71
CC
365/*
366 * This function evaluates an ACPI method, given an int as parameter, the
367 * method is searched within the scope of the handle, can be NULL. The output
368 * of the method is written is output, which can also be NULL
369 *
f8d1c94b 370 * returns 0 if write is successful, -1 else.
85091b71 371 */
d8c67323
CC
372static int write_acpi_int_ret(acpi_handle handle, const char *method, int val,
373 struct acpi_buffer *output)
85091b71 374{
be966660
CC
375 struct acpi_object_list params; /* list of input parameters (an int) */
376 union acpi_object in_obj; /* the only param we use */
85091b71
CC
377 acpi_status status;
378
f8d1c94b 379 if (!handle)
9fb866f3 380 return -1;
f8d1c94b 381
85091b71
CC
382 params.count = 1;
383 params.pointer = &in_obj;
384 in_obj.type = ACPI_TYPE_INTEGER;
385 in_obj.integer.value = val;
386
387 status = acpi_evaluate_object(handle, (char *)method, &params, output);
f8d1c94b
CC
388 if (status == AE_OK)
389 return 0;
390 else
391 return -1;
85091b71
CC
392}
393
d8c67323
CC
394static int write_acpi_int(acpi_handle handle, const char *method, int val)
395{
396 return write_acpi_int_ret(handle, method, val, NULL);
397}
398
d99b577c
CC
399static int acpi_check_handle(acpi_handle handle, const char *method,
400 acpi_handle *ret)
401{
402 acpi_status status;
403
404 if (method == NULL)
405 return -ENODEV;
406
407 if (ret)
408 status = acpi_get_handle(handle, (char *)method,
409 ret);
410 else {
411 acpi_handle dummy;
412
413 status = acpi_get_handle(handle, (char *)method,
414 &dummy);
415 }
416
417 if (status != AE_OK) {
418 if (ret)
5ad77dcf 419 pr_warn("Error finding %s\n", method);
d99b577c
CC
420 return -ENODEV;
421 }
422 return 0;
423}
424
8819de7f
AR
425static bool asus_check_pega_lucid(struct asus_laptop *asus)
426{
427 return !strcmp(asus->name, DEVICE_NAME_PEGA) &&
428 !acpi_check_handle(asus->handle, METHOD_PEGA_ENABLE, NULL) &&
429 !acpi_check_handle(asus->handle, METHOD_PEGA_DISABLE, NULL) &&
430 !acpi_check_handle(asus->handle, METHOD_PEGA_READ, NULL);
431}
432
33989ba6
AR
433static int asus_pega_lucid_set(struct asus_laptop *asus, int unit, bool enable)
434{
435 char *method = enable ? METHOD_PEGA_ENABLE : METHOD_PEGA_DISABLE;
436 return write_acpi_int(asus->handle, method, unit);
437}
438
b23910c2
AR
439static int pega_acc_axis(struct asus_laptop *asus, int curr, char *method)
440{
441 int i, delta;
442 unsigned long long val;
443 for (i = 0; i < PEGA_ACC_RETRIES; i++) {
444 acpi_evaluate_integer(asus->handle, method, NULL, &val);
445
446 /* The output is noisy. From reading the ASL
447 * dissassembly, timeout errors are returned with 1's
448 * in the high word, and the lack of locking around
449 * thei hi/lo byte reads means that a transition
450 * between (for example) -1 and 0 could be read as
451 * 0xff00 or 0x00ff. */
452 delta = abs(curr - (short)val);
453 if (delta < 128 && !(val & ~0xffff))
454 break;
455 }
456 return clamp_val((short)val, -PEGA_ACC_CLAMP, PEGA_ACC_CLAMP);
457}
458
459static void pega_accel_poll(struct input_polled_dev *ipd)
460{
461 struct device *parent = ipd->input->dev.parent;
462 struct asus_laptop *asus = dev_get_drvdata(parent);
463
464 /* In some cases, the very first call to poll causes a
465 * recursive fault under the polldev worker. This is
466 * apparently related to very early userspace access to the
467 * device, and perhaps a firmware bug. Fake the first report. */
468 if (!asus->pega_acc_live) {
469 asus->pega_acc_live = true;
470 input_report_abs(ipd->input, ABS_X, 0);
471 input_report_abs(ipd->input, ABS_Y, 0);
472 input_report_abs(ipd->input, ABS_Z, 0);
473 input_sync(ipd->input);
474 return;
475 }
476
477 asus->pega_acc_x = pega_acc_axis(asus, asus->pega_acc_x, METHOD_XLRX);
478 asus->pega_acc_y = pega_acc_axis(asus, asus->pega_acc_y, METHOD_XLRY);
479 asus->pega_acc_z = pega_acc_axis(asus, asus->pega_acc_z, METHOD_XLRZ);
480
481 /* Note transform, convert to "right/up/out" in the native
482 * landscape orientation (i.e. the vector is the direction of
483 * "real up" in the device's cartiesian coordinates). */
484 input_report_abs(ipd->input, ABS_X, -asus->pega_acc_x);
485 input_report_abs(ipd->input, ABS_Y, -asus->pega_acc_y);
486 input_report_abs(ipd->input, ABS_Z, asus->pega_acc_z);
487 input_sync(ipd->input);
488}
489
490static void pega_accel_exit(struct asus_laptop *asus)
491{
492 if (asus->pega_accel_poll) {
493 input_unregister_polled_device(asus->pega_accel_poll);
494 input_free_polled_device(asus->pega_accel_poll);
495 }
496 asus->pega_accel_poll = NULL;
497}
498
499static int pega_accel_init(struct asus_laptop *asus)
500{
501 int err;
502 struct input_polled_dev *ipd;
503
504 if (!asus->is_pega_lucid)
505 return -ENODEV;
506
507 if (acpi_check_handle(asus->handle, METHOD_XLRX, NULL) ||
508 acpi_check_handle(asus->handle, METHOD_XLRY, NULL) ||
509 acpi_check_handle(asus->handle, METHOD_XLRZ, NULL))
510 return -ENODEV;
511
512 ipd = input_allocate_polled_device();
513 if (!ipd)
514 return -ENOMEM;
515
516 ipd->poll = pega_accel_poll;
517 ipd->poll_interval = 125;
518 ipd->poll_interval_min = 50;
519 ipd->poll_interval_max = 2000;
520
521 ipd->input->name = PEGA_ACCEL_DESC;
522 ipd->input->phys = PEGA_ACCEL_NAME "/input0";
523 ipd->input->dev.parent = &asus->platform_device->dev;
524 ipd->input->id.bustype = BUS_HOST;
525
526 set_bit(EV_ABS, ipd->input->evbit);
527 input_set_abs_params(ipd->input, ABS_X,
528 -PEGA_ACC_CLAMP, PEGA_ACC_CLAMP, 0, 0);
529 input_set_abs_params(ipd->input, ABS_Y,
530 -PEGA_ACC_CLAMP, PEGA_ACC_CLAMP, 0, 0);
531 input_set_abs_params(ipd->input, ABS_Z,
532 -PEGA_ACC_CLAMP, PEGA_ACC_CLAMP, 0, 0);
533
534 err = input_register_polled_device(ipd);
535 if (err)
536 goto exit;
537
538 asus->pega_accel_poll = ipd;
539 return 0;
540
541exit:
542 input_free_polled_device(ipd);
543 return err;
544}
545
17e78f62 546/* Generic LED function */
aee0afb8 547static int asus_led_set(struct asus_laptop *asus, const char *method,
17e78f62 548 int value)
be18cdab 549{
d99b577c 550 if (!strcmp(method, METHOD_MLED))
17e78f62 551 value = !value;
d99b577c 552 else if (!strcmp(method, METHOD_GLED))
17e78f62
CC
553 value = !value + 1;
554 else
555 value = !!value;
be18cdab 556
e5593bf1 557 return write_acpi_int(asus->handle, method, value);
be18cdab
CC
558}
559
be4ee82d
CC
560/*
561 * LEDs
562 */
be18cdab 563/* /sys/class/led handlers */
aee0afb8
CC
564static void asus_led_cdev_set(struct led_classdev *led_cdev,
565 enum led_brightness value)
566{
567 struct asus_led *led = container_of(led_cdev, struct asus_led, led);
568 struct asus_laptop *asus = led->asus;
569
570 led->wk = !!value;
571 queue_work(asus->led_workqueue, &led->work);
572}
be18cdab 573
aee0afb8
CC
574static void asus_led_cdev_update(struct work_struct *work)
575{
576 struct asus_led *led = container_of(work, struct asus_led, work);
577 struct asus_laptop *asus = led->asus;
578
579 asus_led_set(asus, led->method, led->wk);
580}
581
582static enum led_brightness asus_led_cdev_get(struct led_classdev *led_cdev)
583{
584 return led_cdev->brightness;
585}
be18cdab 586
b7d3fbc2 587/*
be4ee82d 588 * Keyboard backlight (also a LED)
b7d3fbc2 589 */
d99b577c 590static int asus_kled_lvl(struct asus_laptop *asus)
b7d3fbc2
CC
591{
592 unsigned long long kblv;
593 struct acpi_object_list params;
594 union acpi_object in_obj;
595 acpi_status rv;
596
597 params.count = 1;
598 params.pointer = &in_obj;
599 in_obj.type = ACPI_TYPE_INTEGER;
600 in_obj.integer.value = 2;
601
d99b577c
CC
602 rv = acpi_evaluate_integer(asus->handle, METHOD_KBD_LIGHT_GET,
603 &params, &kblv);
b7d3fbc2 604 if (ACPI_FAILURE(rv)) {
5ad77dcf 605 pr_warn("Error reading kled level\n");
4d441513 606 return -ENODEV;
b7d3fbc2
CC
607 }
608 return kblv;
609}
610
4d441513 611static int asus_kled_set(struct asus_laptop *asus, int kblv)
b7d3fbc2
CC
612{
613 if (kblv > 0)
614 kblv = (1 << 7) | (kblv & 0x7F);
615 else
616 kblv = 0;
617
d99b577c 618 if (write_acpi_int(asus->handle, METHOD_KBD_LIGHT_SET, kblv)) {
5ad77dcf 619 pr_warn("Keyboard LED display write failed\n");
b7d3fbc2
CC
620 return -EINVAL;
621 }
622 return 0;
623}
624
aee0afb8
CC
625static void asus_kled_cdev_set(struct led_classdev *led_cdev,
626 enum led_brightness value)
b7d3fbc2 627{
aee0afb8
CC
628 struct asus_led *led = container_of(led_cdev, struct asus_led, led);
629 struct asus_laptop *asus = led->asus;
9129d14d 630
060cbce6 631 led->wk = value;
aee0afb8 632 queue_work(asus->led_workqueue, &led->work);
b7d3fbc2
CC
633}
634
aee0afb8 635static void asus_kled_cdev_update(struct work_struct *work)
b7d3fbc2 636{
aee0afb8
CC
637 struct asus_led *led = container_of(work, struct asus_led, work);
638 struct asus_laptop *asus = led->asus;
9129d14d 639
aee0afb8 640 asus_kled_set(asus, led->wk);
b7d3fbc2
CC
641}
642
aee0afb8 643static enum led_brightness asus_kled_cdev_get(struct led_classdev *led_cdev)
b7d3fbc2 644{
aee0afb8
CC
645 struct asus_led *led = container_of(led_cdev, struct asus_led, led);
646 struct asus_laptop *asus = led->asus;
d99b577c
CC
647
648 return asus_kled_lvl(asus);
b7d3fbc2
CC
649}
650
be4ee82d
CC
651static void asus_led_exit(struct asus_laptop *asus)
652{
774b0678
CC
653 if (!IS_ERR_OR_NULL(asus->wled.led.dev))
654 led_classdev_unregister(&asus->wled.led);
655 if (!IS_ERR_OR_NULL(asus->bled.led.dev))
656 led_classdev_unregister(&asus->bled.led);
8fcf71aa 657 if (!IS_ERR_OR_NULL(asus->mled.led.dev))
aee0afb8 658 led_classdev_unregister(&asus->mled.led);
8fcf71aa 659 if (!IS_ERR_OR_NULL(asus->tled.led.dev))
aee0afb8 660 led_classdev_unregister(&asus->tled.led);
8fcf71aa 661 if (!IS_ERR_OR_NULL(asus->pled.led.dev))
aee0afb8 662 led_classdev_unregister(&asus->pled.led);
8fcf71aa 663 if (!IS_ERR_OR_NULL(asus->rled.led.dev))
aee0afb8 664 led_classdev_unregister(&asus->rled.led);
8fcf71aa 665 if (!IS_ERR_OR_NULL(asus->gled.led.dev))
aee0afb8 666 led_classdev_unregister(&asus->gled.led);
8fcf71aa 667 if (!IS_ERR_OR_NULL(asus->kled.led.dev))
aee0afb8
CC
668 led_classdev_unregister(&asus->kled.led);
669 if (asus->led_workqueue) {
670 destroy_workqueue(asus->led_workqueue);
671 asus->led_workqueue = NULL;
be4ee82d
CC
672 }
673}
674
675/* Ugly macro, need to fix that later */
aee0afb8
CC
676static int asus_led_register(struct asus_laptop *asus,
677 struct asus_led *led,
678 const char *name, const char *method)
679{
680 struct led_classdev *led_cdev = &led->led;
681
682 if (!method || acpi_check_handle(asus->handle, method, NULL))
060cbce6 683 return 0; /* Led not present */
aee0afb8
CC
684
685 led->asus = asus;
686 led->method = method;
687
688 INIT_WORK(&led->work, asus_led_cdev_update);
689 led_cdev->name = name;
690 led_cdev->brightness_set = asus_led_cdev_set;
691 led_cdev->brightness_get = asus_led_cdev_get;
692 led_cdev->max_brightness = 1;
693 return led_classdev_register(&asus->platform_device->dev, led_cdev);
694}
be4ee82d
CC
695
696static int asus_led_init(struct asus_laptop *asus)
697{
774b0678 698 int r = 0;
be4ee82d 699
8d38e42c
CC
700 /*
701 * The Pegatron Lucid has no physical leds, but all methods are
702 * available in the DSDT...
703 */
704 if (asus->is_pega_lucid)
705 return 0;
706
be4ee82d
CC
707 /*
708 * Functions that actually update the LED's are called from a
709 * workqueue. By doing this as separate work rather than when the LED
710 * subsystem asks, we avoid messing with the Asus ACPI stuff during a
711 * potentially bad time, such as a timer interrupt.
712 */
aee0afb8
CC
713 asus->led_workqueue = create_singlethread_workqueue("led_workqueue");
714 if (!asus->led_workqueue)
be4ee82d
CC
715 return -ENOMEM;
716
774b0678
CC
717 if (asus->wled_type == TYPE_LED)
718 r = asus_led_register(asus, &asus->wled, "asus::wlan",
719 METHOD_WLAN);
720 if (r)
721 goto error;
722 if (asus->bled_type == TYPE_LED)
723 r = asus_led_register(asus, &asus->bled, "asus::bluetooth",
724 METHOD_BLUETOOTH);
725 if (r)
726 goto error;
aee0afb8
CC
727 r = asus_led_register(asus, &asus->mled, "asus::mail", METHOD_MLED);
728 if (r)
729 goto error;
730 r = asus_led_register(asus, &asus->tled, "asus::touchpad", METHOD_TLED);
731 if (r)
732 goto error;
733 r = asus_led_register(asus, &asus->rled, "asus::record", METHOD_RLED);
734 if (r)
735 goto error;
736 r = asus_led_register(asus, &asus->pled, "asus::phone", METHOD_PLED);
737 if (r)
738 goto error;
739 r = asus_led_register(asus, &asus->gled, "asus::gaming", METHOD_GLED);
740 if (r)
741 goto error;
d99b577c 742 if (!acpi_check_handle(asus->handle, METHOD_KBD_LIGHT_SET, NULL) &&
aee0afb8
CC
743 !acpi_check_handle(asus->handle, METHOD_KBD_LIGHT_GET, NULL)) {
744 struct asus_led *led = &asus->kled;
745 struct led_classdev *cdev = &led->led;
746
747 led->asus = asus;
748
749 INIT_WORK(&led->work, asus_kled_cdev_update);
750 cdev->name = "asus::kbd_backlight";
751 cdev->brightness_set = asus_kled_cdev_set;
752 cdev->brightness_get = asus_kled_cdev_get;
753 cdev->max_brightness = 3;
754 r = led_classdev_register(&asus->platform_device->dev, cdev);
755 }
be4ee82d 756error:
aee0afb8 757 if (r)
be4ee82d 758 asus_led_exit(asus);
aee0afb8 759 return r;
be4ee82d
CC
760}
761
762/*
763 * Backlight device
764 */
4d441513 765static int asus_read_brightness(struct backlight_device *bd)
6b7091e7 766{
d99b577c 767 struct asus_laptop *asus = bl_get_data(bd);
27663c58 768 unsigned long long value;
9a816850 769 acpi_status rv = AE_OK;
6b7091e7 770
d99b577c
CC
771 rv = acpi_evaluate_integer(asus->handle, METHOD_BRIGHTNESS_GET,
772 NULL, &value);
9a816850 773 if (ACPI_FAILURE(rv))
5ad77dcf 774 pr_warn("Error reading brightness\n");
6b7091e7
CC
775
776 return value;
777}
778
4d441513 779static int asus_set_brightness(struct backlight_device *bd, int value)
6b7091e7 780{
d99b577c
CC
781 struct asus_laptop *asus = bl_get_data(bd);
782
783 if (write_acpi_int(asus->handle, METHOD_BRIGHTNESS_SET, value)) {
5ad77dcf 784 pr_warn("Error changing brightness\n");
e5b50f6a 785 return -EIO;
6b7091e7 786 }
e5b50f6a 787 return 0;
6b7091e7
CC
788}
789
790static int update_bl_status(struct backlight_device *bd)
791{
599a52d1 792 int value = bd->props.brightness;
6b7091e7 793
3b81cf9d 794 return asus_set_brightness(bd, value);
6b7091e7
CC
795}
796
acc2472e 797static const struct backlight_ops asusbl_ops = {
4d441513 798 .get_brightness = asus_read_brightness,
be4ee82d
CC
799 .update_status = update_bl_status,
800};
801
a539df5e
CC
802static int asus_backlight_notify(struct asus_laptop *asus)
803{
804 struct backlight_device *bd = asus->backlight_device;
805 int old = bd->props.brightness;
806
807 backlight_force_update(bd, BACKLIGHT_UPDATE_HOTKEY);
808
809 return old;
810}
811
be4ee82d
CC
812static int asus_backlight_init(struct asus_laptop *asus)
813{
814 struct backlight_device *bd;
a19a6ee6 815 struct backlight_properties props;
be4ee82d 816
71e687dc 817 if (acpi_check_handle(asus->handle, METHOD_BRIGHTNESS_GET, NULL) ||
3b81cf9d 818 acpi_check_handle(asus->handle, METHOD_BRIGHTNESS_SET, NULL))
71e687dc 819 return 0;
be4ee82d 820
71e687dc
CC
821 memset(&props, 0, sizeof(struct backlight_properties));
822 props.max_brightness = 15;
bb7ca747 823 props.type = BACKLIGHT_PLATFORM;
be4ee82d 824
71e687dc
CC
825 bd = backlight_device_register(ASUS_LAPTOP_FILE,
826 &asus->platform_device->dev, asus,
827 &asusbl_ops, &props);
828 if (IS_ERR(bd)) {
829 pr_err("Could not register asus backlight device\n");
830 asus->backlight_device = NULL;
831 return PTR_ERR(bd);
be4ee82d 832 }
71e687dc
CC
833
834 asus->backlight_device = bd;
835 bd->props.brightness = asus_read_brightness(bd);
836 bd->props.power = FB_BLANK_UNBLANK;
837 backlight_update_status(bd);
be4ee82d
CC
838 return 0;
839}
840
841static void asus_backlight_exit(struct asus_laptop *asus)
842{
843 if (asus->backlight_device)
844 backlight_device_unregister(asus->backlight_device);
a539df5e 845 asus->backlight_device = NULL;
be4ee82d
CC
846}
847
85091b71
CC
848/*
849 * Platform device handlers
850 */
851
852/*
853 * We write our info in page, we begin at offset off and cannot write more
854 * than count bytes. We set eof to 1 if we handle those 2 values. We return the
855 * number of bytes written in page
856 */
857static ssize_t show_infos(struct device *dev,
8def05fa 858 struct device_attribute *attr, char *page)
85091b71 859{
9129d14d 860 struct asus_laptop *asus = dev_get_drvdata(dev);
85091b71 861 int len = 0;
27663c58 862 unsigned long long temp;
be966660 863 char buf[16]; /* enough for all info */
9a816850
CC
864 acpi_status rv = AE_OK;
865
85091b71 866 /*
060cbce6
CC
867 * We use the easy way, we don't care of off and count,
868 * so we don't set eof to 1
85091b71
CC
869 */
870
50a90c4d
CC
871 len += sprintf(page, ASUS_LAPTOP_NAME " " ASUS_LAPTOP_VERSION "\n");
872 len += sprintf(page + len, "Model reference : %s\n", asus->name);
85091b71
CC
873 /*
874 * The SFUN method probably allows the original driver to get the list
875 * of features supported by a given model. For now, 0x0100 or 0x0800
876 * bit signifies that the laptop is equipped with a Wi-Fi MiniPCI card.
877 * The significance of others is yet to be found.
878 */
50a90c4d 879 rv = acpi_evaluate_integer(asus->handle, "SFUN", NULL, &temp);
9a816850 880 if (!ACPI_FAILURE(rv))
1d4a3800
CC
881 len += sprintf(page + len, "SFUN value : %#x\n",
882 (uint) temp);
883 /*
884 * The HWRS method return informations about the hardware.
885 * 0x80 bit is for WLAN, 0x100 for Bluetooth.
cb7da022 886 * 0x40 for WWAN, 0x10 for WIMAX.
1d4a3800 887 * The significance of others is yet to be found.
cb7da022
BH
888 * We don't currently use this for device detection, and it
889 * takes several seconds to run on some systems.
1d4a3800 890 */
8871e99f 891 rv = acpi_evaluate_integer(asus->handle, "HWRS", NULL, &temp);
1d4a3800 892 if (!ACPI_FAILURE(rv))
8871e99f 893 len += sprintf(page + len, "HWRS value : %#x\n",
9a816850 894 (uint) temp);
85091b71
CC
895 /*
896 * Another value for userspace: the ASYM method returns 0x02 for
897 * battery low and 0x04 for battery critical, its readings tend to be
898 * more accurate than those provided by _BST.
899 * Note: since not all the laptops provide this method, errors are
900 * silently ignored.
901 */
50a90c4d 902 rv = acpi_evaluate_integer(asus->handle, "ASYM", NULL, &temp);
9a816850 903 if (!ACPI_FAILURE(rv))
1d4a3800 904 len += sprintf(page + len, "ASYM value : %#x\n",
9a816850 905 (uint) temp);
7c247645
CC
906 if (asus->dsdt_info) {
907 snprintf(buf, 16, "%d", asus->dsdt_info->length);
85091b71 908 len += sprintf(page + len, "DSDT length : %s\n", buf);
7c247645 909 snprintf(buf, 16, "%d", asus->dsdt_info->checksum);
85091b71 910 len += sprintf(page + len, "DSDT checksum : %s\n", buf);
7c247645 911 snprintf(buf, 16, "%d", asus->dsdt_info->revision);
85091b71 912 len += sprintf(page + len, "DSDT revision : %s\n", buf);
7c247645 913 snprintf(buf, 7, "%s", asus->dsdt_info->oem_id);
85091b71 914 len += sprintf(page + len, "OEM id : %s\n", buf);
7c247645 915 snprintf(buf, 9, "%s", asus->dsdt_info->oem_table_id);
85091b71 916 len += sprintf(page + len, "OEM table id : %s\n", buf);
7c247645 917 snprintf(buf, 16, "%x", asus->dsdt_info->oem_revision);
85091b71 918 len += sprintf(page + len, "OEM revision : 0x%s\n", buf);
7c247645 919 snprintf(buf, 5, "%s", asus->dsdt_info->asl_compiler_id);
85091b71 920 len += sprintf(page + len, "ASL comp vendor id : %s\n", buf);
7c247645 921 snprintf(buf, 16, "%x", asus->dsdt_info->asl_compiler_revision);
85091b71
CC
922 len += sprintf(page + len, "ASL comp revision : 0x%s\n", buf);
923 }
924
925 return len;
926}
927
928static int parse_arg(const char *buf, unsigned long count, int *val)
929{
930 if (!count)
931 return 0;
932 if (count > 31)
933 return -EINVAL;
934 if (sscanf(buf, "%i", val) != 1)
935 return -EINVAL;
936 return count;
937}
938
17e78f62
CC
939static ssize_t sysfs_acpi_set(struct asus_laptop *asus,
940 const char *buf, size_t count,
d99b577c 941 const char *method)
4564de17
CC
942{
943 int rv, value;
944 int out = 0;
945
946 rv = parse_arg(buf, count, &value);
947 if (rv > 0)
948 out = value ? 1 : 0;
949
d99b577c 950 if (write_acpi_int(asus->handle, method, value))
17e78f62 951 return -ENODEV;
4564de17
CC
952 return rv;
953}
954
722ad971
CC
955/*
956 * LEDD display
957 */
958static ssize_t show_ledd(struct device *dev,
959 struct device_attribute *attr, char *buf)
960{
9129d14d
CC
961 struct asus_laptop *asus = dev_get_drvdata(dev);
962
50a90c4d 963 return sprintf(buf, "0x%08x\n", asus->ledd_status);
722ad971
CC
964}
965
966static ssize_t store_ledd(struct device *dev, struct device_attribute *attr,
967 const char *buf, size_t count)
968{
9129d14d 969 struct asus_laptop *asus = dev_get_drvdata(dev);
722ad971
CC
970 int rv, value;
971
972 rv = parse_arg(buf, count, &value);
973 if (rv > 0) {
6a984a06 974 if (write_acpi_int(asus->handle, METHOD_LEDD, value)) {
5ad77dcf 975 pr_warn("LED display write failed\n");
6a984a06
AL
976 return -ENODEV;
977 }
978 asus->ledd_status = (u32) value;
722ad971
CC
979 }
980 return rv;
981}
982
aa9df930
CC
983/*
984 * Wireless
985 */
986static int asus_wireless_status(struct asus_laptop *asus, int mask)
987{
988 unsigned long long status;
989 acpi_status rv = AE_OK;
990
991 if (!asus->have_rsts)
992 return (asus->wireless_status & mask) ? 1 : 0;
993
d99b577c
CC
994 rv = acpi_evaluate_integer(asus->handle, METHOD_WL_STATUS,
995 NULL, &status);
aa9df930 996 if (ACPI_FAILURE(rv)) {
5ad77dcf 997 pr_warn("Error reading Wireless status\n");
aa9df930
CC
998 return -EINVAL;
999 }
1000 return !!(status & mask);
1001}
1002
4564de17
CC
1003/*
1004 * WLAN
1005 */
e5593bf1
CC
1006static int asus_wlan_set(struct asus_laptop *asus, int status)
1007{
1008 if (write_acpi_int(asus->handle, METHOD_WLAN, !!status)) {
5ad77dcf 1009 pr_warn("Error setting wlan status to %d\n", status);
e5593bf1
CC
1010 return -EIO;
1011 }
1012 return 0;
1013}
1014
4564de17
CC
1015static ssize_t show_wlan(struct device *dev,
1016 struct device_attribute *attr, char *buf)
1017{
9129d14d
CC
1018 struct asus_laptop *asus = dev_get_drvdata(dev);
1019
17e78f62 1020 return sprintf(buf, "%d\n", asus_wireless_status(asus, WL_RSTS));
4564de17
CC
1021}
1022
1023static ssize_t store_wlan(struct device *dev, struct device_attribute *attr,
1024 const char *buf, size_t count)
1025{
9129d14d
CC
1026 struct asus_laptop *asus = dev_get_drvdata(dev);
1027
d99b577c 1028 return sysfs_acpi_set(asus, buf, count, METHOD_WLAN);
4564de17
CC
1029}
1030
774b0678 1031/*e
4564de17
CC
1032 * Bluetooth
1033 */
e5593bf1
CC
1034static int asus_bluetooth_set(struct asus_laptop *asus, int status)
1035{
1036 if (write_acpi_int(asus->handle, METHOD_BLUETOOTH, !!status)) {
5ad77dcf 1037 pr_warn("Error setting bluetooth status to %d\n", status);
e5593bf1
CC
1038 return -EIO;
1039 }
1040 return 0;
1041}
1042
4564de17
CC
1043static ssize_t show_bluetooth(struct device *dev,
1044 struct device_attribute *attr, char *buf)
1045{
9129d14d
CC
1046 struct asus_laptop *asus = dev_get_drvdata(dev);
1047
17e78f62 1048 return sprintf(buf, "%d\n", asus_wireless_status(asus, BT_RSTS));
4564de17
CC
1049}
1050
8def05fa
LB
1051static ssize_t store_bluetooth(struct device *dev,
1052 struct device_attribute *attr, const char *buf,
1053 size_t count)
4564de17 1054{
9129d14d
CC
1055 struct asus_laptop *asus = dev_get_drvdata(dev);
1056
d99b577c 1057 return sysfs_acpi_set(asus, buf, count, METHOD_BLUETOOTH);
4564de17
CC
1058}
1059
ba1ff5be
CC
1060/*
1061 * Wimax
1062 */
1063static int asus_wimax_set(struct asus_laptop *asus, int status)
1064{
1065 if (write_acpi_int(asus->handle, METHOD_WIMAX, !!status)) {
5ad77dcf 1066 pr_warn("Error setting wimax status to %d\n", status);
ba1ff5be
CC
1067 return -EIO;
1068 }
1069 return 0;
1070}
1071
1072static ssize_t show_wimax(struct device *dev,
1073 struct device_attribute *attr, char *buf)
1074{
1075 struct asus_laptop *asus = dev_get_drvdata(dev);
1076
1077 return sprintf(buf, "%d\n", asus_wireless_status(asus, WM_RSTS));
1078}
1079
1080static ssize_t store_wimax(struct device *dev,
1081 struct device_attribute *attr, const char *buf,
1082 size_t count)
1083{
1084 struct asus_laptop *asus = dev_get_drvdata(dev);
1085
1086 return sysfs_acpi_set(asus, buf, count, METHOD_WIMAX);
1087}
1088
1089/*
1090 * Wwan
1091 */
1092static int asus_wwan_set(struct asus_laptop *asus, int status)
1093{
1094 if (write_acpi_int(asus->handle, METHOD_WWAN, !!status)) {
5ad77dcf 1095 pr_warn("Error setting wwan status to %d\n", status);
ba1ff5be
CC
1096 return -EIO;
1097 }
1098 return 0;
1099}
1100
1101static ssize_t show_wwan(struct device *dev,
1102 struct device_attribute *attr, char *buf)
1103{
1104 struct asus_laptop *asus = dev_get_drvdata(dev);
1105
1106 return sprintf(buf, "%d\n", asus_wireless_status(asus, WW_RSTS));
1107}
1108
1109static ssize_t store_wwan(struct device *dev,
1110 struct device_attribute *attr, const char *buf,
1111 size_t count)
1112{
1113 struct asus_laptop *asus = dev_get_drvdata(dev);
1114
1115 return sysfs_acpi_set(asus, buf, count, METHOD_WWAN);
1116}
1117
78127b4a
CC
1118/*
1119 * Display
1120 */
4d441513 1121static void asus_set_display(struct asus_laptop *asus, int value)
78127b4a
CC
1122{
1123 /* no sanity check needed for now */
d99b577c 1124 if (write_acpi_int(asus->handle, METHOD_SWITCH_DISPLAY, value))
5ad77dcf 1125 pr_warn("Error setting display\n");
78127b4a
CC
1126 return;
1127}
1128
78127b4a
CC
1129/*
1130 * Experimental support for display switching. As of now: 1 should activate
1131 * the LCD output, 2 should do for CRT, 4 for TV-Out and 8 for DVI.
1132 * Any combination (bitwise) of these will suffice. I never actually tested 4
1133 * displays hooked up simultaneously, so be warned. See the acpi4asus README
1134 * for more info.
1135 */
1136static ssize_t store_disp(struct device *dev, struct device_attribute *attr,
1137 const char *buf, size_t count)
1138{
9129d14d 1139 struct asus_laptop *asus = dev_get_drvdata(dev);
78127b4a
CC
1140 int rv, value;
1141
1142 rv = parse_arg(buf, count, &value);
1143 if (rv > 0)
4d441513 1144 asus_set_display(asus, value);
78127b4a
CC
1145 return rv;
1146}
1147
8b857353
CC
1148/*
1149 * Light Sens
1150 */
4d441513 1151static void asus_als_switch(struct asus_laptop *asus, int value)
8b857353 1152{
33989ba6
AR
1153 int ret;
1154
1155 if (asus->is_pega_lucid) {
1156 ret = asus_pega_lucid_set(asus, PEGA_ALS, value);
1157 if (!ret)
1158 ret = asus_pega_lucid_set(asus, PEGA_ALS_POWER, value);
1159 } else {
1160 ret = write_acpi_int(asus->handle, METHOD_ALS_CONTROL, value);
1161 }
1162 if (ret)
1163 pr_warning("Error setting light sensor switch\n");
1164
50a90c4d 1165 asus->light_switch = value;
8b857353
CC
1166}
1167
1168static ssize_t show_lssw(struct device *dev,
1169 struct device_attribute *attr, char *buf)
1170{
9129d14d
CC
1171 struct asus_laptop *asus = dev_get_drvdata(dev);
1172
50a90c4d 1173 return sprintf(buf, "%d\n", asus->light_switch);
8b857353
CC
1174}
1175
1176static ssize_t store_lssw(struct device *dev, struct device_attribute *attr,
1177 const char *buf, size_t count)
1178{
9129d14d 1179 struct asus_laptop *asus = dev_get_drvdata(dev);
8b857353
CC
1180 int rv, value;
1181
1182 rv = parse_arg(buf, count, &value);
1183 if (rv > 0)
4d441513 1184 asus_als_switch(asus, value ? 1 : 0);
8b857353
CC
1185
1186 return rv;
1187}
1188
4d441513 1189static void asus_als_level(struct asus_laptop *asus, int value)
8b857353 1190{
d99b577c 1191 if (write_acpi_int(asus->handle, METHOD_ALS_LEVEL, value))
5ad77dcf 1192 pr_warn("Error setting light sensor level\n");
50a90c4d 1193 asus->light_level = value;
8b857353
CC
1194}
1195
1196static ssize_t show_lslvl(struct device *dev,
1197 struct device_attribute *attr, char *buf)
1198{
9129d14d
CC
1199 struct asus_laptop *asus = dev_get_drvdata(dev);
1200
50a90c4d 1201 return sprintf(buf, "%d\n", asus->light_level);
8b857353
CC
1202}
1203
1204static ssize_t store_lslvl(struct device *dev, struct device_attribute *attr,
1205 const char *buf, size_t count)
1206{
9129d14d 1207 struct asus_laptop *asus = dev_get_drvdata(dev);
8b857353
CC
1208 int rv, value;
1209
1210 rv = parse_arg(buf, count, &value);
1211 if (rv > 0) {
1212 value = (0 < value) ? ((15 < value) ? 15 : value) : 0;
1213 /* 0 <= value <= 15 */
4d441513 1214 asus_als_level(asus, value);
8b857353
CC
1215 }
1216
1217 return rv;
1218}
1219
33989ba6
AR
1220static int pega_int_read(struct asus_laptop *asus, int arg, int *result)
1221{
1222 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
1223 int err = write_acpi_int_ret(asus->handle, METHOD_PEGA_READ, arg,
1224 &buffer);
1225 if (!err) {
1226 union acpi_object *obj = buffer.pointer;
1227 if (obj && obj->type == ACPI_TYPE_INTEGER)
1228 *result = obj->integer.value;
1229 else
1230 err = -EIO;
1231 }
1232 return err;
1233}
1234
1235static ssize_t show_lsvalue(struct device *dev,
1236 struct device_attribute *attr, char *buf)
1237{
1238 struct asus_laptop *asus = dev_get_drvdata(dev);
1239 int err, hi, lo;
1240
1241 err = pega_int_read(asus, PEGA_READ_ALS_H, &hi);
1242 if (!err)
1243 err = pega_int_read(asus, PEGA_READ_ALS_L, &lo);
1244 if (!err)
1245 return sprintf(buf, "%d\n", 10 * hi + lo);
1246 return err;
1247}
1248
e539c2f6
CC
1249/*
1250 * GPS
1251 */
6358bf2c
CC
1252static int asus_gps_status(struct asus_laptop *asus)
1253{
1254 unsigned long long status;
1255 acpi_status rv = AE_OK;
1256
d99b577c
CC
1257 rv = acpi_evaluate_integer(asus->handle, METHOD_GPS_STATUS,
1258 NULL, &status);
6358bf2c 1259 if (ACPI_FAILURE(rv)) {
5ad77dcf 1260 pr_warn("Error reading GPS status\n");
6358bf2c
CC
1261 return -ENODEV;
1262 }
1263 return !!status;
1264}
1265
1266static int asus_gps_switch(struct asus_laptop *asus, int status)
1267{
d99b577c 1268 const char *meth = status ? METHOD_GPS_ON : METHOD_GPS_OFF;
6358bf2c 1269
d99b577c 1270 if (write_acpi_int(asus->handle, meth, 0x02))
6358bf2c
CC
1271 return -ENODEV;
1272 return 0;
1273}
1274
e539c2f6
CC
1275static ssize_t show_gps(struct device *dev,
1276 struct device_attribute *attr, char *buf)
1277{
9129d14d
CC
1278 struct asus_laptop *asus = dev_get_drvdata(dev);
1279
6358bf2c 1280 return sprintf(buf, "%d\n", asus_gps_status(asus));
e539c2f6
CC
1281}
1282
1283static ssize_t store_gps(struct device *dev, struct device_attribute *attr,
1284 const char *buf, size_t count)
1285{
060cbce6 1286 struct asus_laptop *asus = dev_get_drvdata(dev);
6358bf2c
CC
1287 int rv, value;
1288 int ret;
9129d14d 1289
6358bf2c
CC
1290 rv = parse_arg(buf, count, &value);
1291 if (rv <= 0)
1292 return -EINVAL;
1293 ret = asus_gps_switch(asus, !!value);
1294 if (ret)
1295 return ret;
40969c7d 1296 rfkill_set_sw_state(asus->gps.rfkill, !value);
6358bf2c 1297 return rv;
e539c2f6
CC
1298}
1299
18e1311e
CC
1300/*
1301 * rfkill
1302 */
1303static int asus_gps_rfkill_set(void *data, bool blocked)
1304{
23f45c3a 1305 struct asus_laptop *asus = data;
18e1311e 1306
23f45c3a 1307 return asus_gps_switch(asus, !blocked);
18e1311e
CC
1308}
1309
1310static const struct rfkill_ops asus_gps_rfkill_ops = {
1311 .set_block = asus_gps_rfkill_set,
1312};
1313
774b0678
CC
1314static int asus_rfkill_set(void *data, bool blocked)
1315{
1316 struct asus_rfkill *rfk = data;
1317 struct asus_laptop *asus = rfk->asus;
1318
1319 if (rfk->control_id == WL_RSTS)
1320 return asus_wlan_set(asus, !blocked);
1321 else if (rfk->control_id == BT_RSTS)
1322 return asus_bluetooth_set(asus, !blocked);
3c8671ff
CC
1323 else if (rfk->control_id == WM_RSTS)
1324 return asus_wimax_set(asus, !blocked);
1325 else if (rfk->control_id == WW_RSTS)
1326 return asus_wwan_set(asus, !blocked);
774b0678
CC
1327
1328 return -EINVAL;
1329}
1330
1331static const struct rfkill_ops asus_rfkill_ops = {
1332 .set_block = asus_rfkill_set,
1333};
1334
40969c7d
CC
1335static void asus_rfkill_terminate(struct asus_rfkill *rfk)
1336{
1337 if (!rfk->rfkill)
1338 return ;
1339
1340 rfkill_unregister(rfk->rfkill);
1341 rfkill_destroy(rfk->rfkill);
1342 rfk->rfkill = NULL;
1343}
1344
18e1311e
CC
1345static void asus_rfkill_exit(struct asus_laptop *asus)
1346{
40969c7d
CC
1347 asus_rfkill_terminate(&asus->wwan);
1348 asus_rfkill_terminate(&asus->bluetooth);
1349 asus_rfkill_terminate(&asus->wlan);
1350 asus_rfkill_terminate(&asus->gps);
18e1311e
CC
1351}
1352
774b0678
CC
1353static int asus_rfkill_setup(struct asus_laptop *asus, struct asus_rfkill *rfk,
1354 const char *name, int control_id, int type,
1355 const struct rfkill_ops *ops)
18e1311e
CC
1356{
1357 int result;
1358
774b0678
CC
1359 rfk->control_id = control_id;
1360 rfk->asus = asus;
1361 rfk->rfkill = rfkill_alloc(name, &asus->platform_device->dev,
1362 type, ops, rfk);
1363 if (!rfk->rfkill)
18e1311e
CC
1364 return -EINVAL;
1365
774b0678 1366 result = rfkill_register(rfk->rfkill);
18e1311e 1367 if (result) {
774b0678
CC
1368 rfkill_destroy(rfk->rfkill);
1369 rfk->rfkill = NULL;
18e1311e
CC
1370 }
1371
1372 return result;
1373}
1374
774b0678
CC
1375static int asus_rfkill_init(struct asus_laptop *asus)
1376{
1377 int result = 0;
1378
3c8671ff
CC
1379 if (asus->is_pega_lucid)
1380 return -ENODEV;
1381
774b0678
CC
1382 if (!acpi_check_handle(asus->handle, METHOD_GPS_ON, NULL) &&
1383 !acpi_check_handle(asus->handle, METHOD_GPS_OFF, NULL) &&
1384 !acpi_check_handle(asus->handle, METHOD_GPS_STATUS, NULL))
1385 result = asus_rfkill_setup(asus, &asus->gps, "asus-gps",
1386 -1, RFKILL_TYPE_GPS,
1387 &asus_gps_rfkill_ops);
1388 if (result)
1389 goto exit;
1390
1391
26594dd4
CC
1392 if (!acpi_check_handle(asus->handle, METHOD_WLAN, NULL) &&
1393 asus->wled_type == TYPE_RFKILL)
774b0678
CC
1394 result = asus_rfkill_setup(asus, &asus->wlan, "asus-wlan",
1395 WL_RSTS, RFKILL_TYPE_WLAN,
1396 &asus_rfkill_ops);
1397 if (result)
1398 goto exit;
1399
26594dd4
CC
1400 if (!acpi_check_handle(asus->handle, METHOD_BLUETOOTH, NULL) &&
1401 asus->bled_type == TYPE_RFKILL)
774b0678
CC
1402 result = asus_rfkill_setup(asus, &asus->bluetooth,
1403 "asus-bluetooth", BT_RSTS,
1404 RFKILL_TYPE_BLUETOOTH,
1405 &asus_rfkill_ops);
1406 if (result)
1407 goto exit;
1408
3c8671ff
CC
1409 if (!acpi_check_handle(asus->handle, METHOD_WWAN, NULL))
1410 result = asus_rfkill_setup(asus, &asus->wwan, "asus-wwan",
1411 WW_RSTS, RFKILL_TYPE_WWAN,
1412 &asus_rfkill_ops);
1413 if (result)
1414 goto exit;
1415
1416 if (!acpi_check_handle(asus->handle, METHOD_WIMAX, NULL))
1417 result = asus_rfkill_setup(asus, &asus->wimax, "asus-wimax",
1418 WM_RSTS, RFKILL_TYPE_WIMAX,
1419 &asus_rfkill_ops);
1420 if (result)
1421 goto exit;
1422
774b0678
CC
1423exit:
1424 if (result)
1425 asus_rfkill_exit(asus);
1426
1427 return result;
1428}
1429
14908399
AA
1430static int pega_rfkill_set(void *data, bool blocked)
1431{
40969c7d 1432 struct asus_rfkill *rfk = data;
14908399 1433
40969c7d 1434 int ret = asus_pega_lucid_set(rfk->asus, rfk->control_id, !blocked);
14908399
AA
1435 return ret;
1436}
1437
1438static const struct rfkill_ops pega_rfkill_ops = {
1439 .set_block = pega_rfkill_set,
1440};
1441
40969c7d
CC
1442static int pega_rfkill_setup(struct asus_laptop *asus, struct asus_rfkill *rfk,
1443 const char *name, int controlid, int rfkill_type)
14908399 1444{
774b0678
CC
1445 return asus_rfkill_setup(asus, rfk, name, controlid, rfkill_type,
1446 &pega_rfkill_ops);
14908399
AA
1447}
1448
1449static int pega_rfkill_init(struct asus_laptop *asus)
1450{
1451 int ret = 0;
1452
1453 if(!asus->is_pega_lucid)
1454 return -ENODEV;
1455
40969c7d
CC
1456 ret = pega_rfkill_setup(asus, &asus->wlan, "pega-wlan",
1457 PEGA_WLAN, RFKILL_TYPE_WLAN);
14908399 1458 if(ret)
40969c7d
CC
1459 goto exit;
1460
1461 ret = pega_rfkill_setup(asus, &asus->bluetooth, "pega-bt",
1462 PEGA_BLUETOOTH, RFKILL_TYPE_BLUETOOTH);
14908399 1463 if(ret)
40969c7d 1464 goto exit;
14908399 1465
40969c7d
CC
1466 ret = pega_rfkill_setup(asus, &asus->wwan, "pega-wwan",
1467 PEGA_WWAN, RFKILL_TYPE_WWAN);
1468
1469exit:
1470 if (ret)
1471 asus_rfkill_exit(asus);
14908399
AA
1472
1473 return ret;
1474}
1475
034ce90a 1476/*
be4ee82d 1477 * Input device (i.e. hotkeys)
034ce90a 1478 */
be4ee82d
CC
1479static void asus_input_notify(struct asus_laptop *asus, int event)
1480{
e0ac9133
CC
1481 if (!asus->inputdev)
1482 return ;
1483 if (!sparse_keymap_report_event(asus->inputdev, event, 1, true))
1484 pr_info("Unknown key %x pressed\n", event);
be4ee82d
CC
1485}
1486
1487static int asus_input_init(struct asus_laptop *asus)
1488{
66a71dd1
CC
1489 struct input_dev *input;
1490 int error;
be4ee82d 1491
66a71dd1
CC
1492 input = input_allocate_device();
1493 if (!input) {
40969c7d 1494 pr_warn("Unable to allocate input device\n");
45036ae1 1495 return -ENOMEM;
be4ee82d 1496 }
66a71dd1
CC
1497 input->name = "Asus Laptop extra buttons";
1498 input->phys = ASUS_LAPTOP_FILE "/input0";
1499 input->id.bustype = BUS_HOST;
1500 input->dev.parent = &asus->platform_device->dev;
66a71dd1
CC
1501
1502 error = sparse_keymap_setup(input, asus_keymap, NULL);
1503 if (error) {
1504 pr_err("Unable to setup input device keymap\n");
45036ae1 1505 goto err_free_dev;
be4ee82d 1506 }
66a71dd1
CC
1507 error = input_register_device(input);
1508 if (error) {
40969c7d 1509 pr_warn("Unable to register input device\n");
45036ae1 1510 goto err_free_keymap;
be4ee82d 1511 }
66a71dd1
CC
1512
1513 asus->inputdev = input;
1514 return 0;
1515
45036ae1 1516err_free_keymap:
66a71dd1 1517 sparse_keymap_free(input);
45036ae1 1518err_free_dev:
66a71dd1
CC
1519 input_free_device(input);
1520 return error;
be4ee82d
CC
1521}
1522
1523static void asus_input_exit(struct asus_laptop *asus)
1524{
66a71dd1
CC
1525 if (asus->inputdev) {
1526 sparse_keymap_free(asus->inputdev);
be4ee82d 1527 input_unregister_device(asus->inputdev);
66a71dd1 1528 }
71e687dc 1529 asus->inputdev = NULL;
be4ee82d
CC
1530}
1531
1532/*
1533 * ACPI driver
1534 */
600ad520 1535static void asus_acpi_notify(struct acpi_device *device, u32 event)
85091b71 1536{
9129d14d 1537 struct asus_laptop *asus = acpi_driver_data(device);
6050c8dd 1538 u16 count;
034ce90a 1539
619d8b11 1540 /* TODO Find a better way to handle events count. */
50a90c4d
CC
1541 count = asus->event_count[event % 128]++;
1542 acpi_bus_generate_proc_event(asus->device, event, count);
1543 acpi_bus_generate_netlink_event(asus->device->pnp.device_class,
1544 dev_name(&asus->device->dev), event,
6050c8dd 1545 count);
85091b71 1546
a539df5e
CC
1547 /* Brightness events are special */
1548 if (event >= ATKD_BR_MIN && event <= ATKD_BR_MAX) {
1549
1550 /* Ignore them completely if the acpi video driver is used */
1551 if (asus->backlight_device != NULL) {
1552 /* Update the backlight device. */
1553 asus_backlight_notify(asus);
1554 }
1555 return ;
1556 }
b93f8281
AA
1557
1558 /* Accelerometer "coarse orientation change" event */
1559 if (asus->pega_accel_poll && event == 0xEA) {
1560 kobject_uevent(&asus->pega_accel_poll->input->dev.kobj,
1561 KOBJ_CHANGE);
1562 return ;
1563 }
1564
be4ee82d 1565 asus_input_notify(asus, event);
85091b71
CC
1566}
1567
2a1fd64c
CC
1568static DEVICE_ATTR(infos, S_IRUGO, show_infos, NULL);
1569static DEVICE_ATTR(wlan, S_IRUGO | S_IWUSR, show_wlan, store_wlan);
ac9b1e5b
DT
1570static DEVICE_ATTR(bluetooth, S_IRUGO | S_IWUSR,
1571 show_bluetooth, store_bluetooth);
ba1ff5be
CC
1572static DEVICE_ATTR(wimax, S_IRUGO | S_IWUSR, show_wimax, store_wimax);
1573static DEVICE_ATTR(wwan, S_IRUGO | S_IWUSR, show_wwan, store_wwan);
3b81cf9d 1574static DEVICE_ATTR(display, S_IWUSR, NULL, store_disp);
2a1fd64c 1575static DEVICE_ATTR(ledd, S_IRUGO | S_IWUSR, show_ledd, store_ledd);
33989ba6 1576static DEVICE_ATTR(ls_value, S_IRUGO, show_lsvalue, NULL);
2a1fd64c
CC
1577static DEVICE_ATTR(ls_level, S_IRUGO | S_IWUSR, show_lslvl, store_lslvl);
1578static DEVICE_ATTR(ls_switch, S_IRUGO | S_IWUSR, show_lssw, store_lssw);
1579static DEVICE_ATTR(gps, S_IRUGO | S_IWUSR, show_gps, store_gps);
1580
ac9b1e5b
DT
1581static struct attribute *asus_attributes[] = {
1582 &dev_attr_infos.attr,
1583 &dev_attr_wlan.attr,
1584 &dev_attr_bluetooth.attr,
ba1ff5be
CC
1585 &dev_attr_wimax.attr,
1586 &dev_attr_wwan.attr,
ac9b1e5b
DT
1587 &dev_attr_display.attr,
1588 &dev_attr_ledd.attr,
33989ba6 1589 &dev_attr_ls_value.attr,
ac9b1e5b
DT
1590 &dev_attr_ls_level.attr,
1591 &dev_attr_ls_switch.attr,
1592 &dev_attr_gps.attr,
1593 NULL
1594};
2a1fd64c 1595
587a1f16 1596static umode_t asus_sysfs_is_visible(struct kobject *kobj,
ac9b1e5b
DT
1597 struct attribute *attr,
1598 int idx)
2a1fd64c 1599{
ac9b1e5b
DT
1600 struct device *dev = container_of(kobj, struct device, kobj);
1601 struct platform_device *pdev = to_platform_device(dev);
1602 struct asus_laptop *asus = platform_get_drvdata(pdev);
1603 acpi_handle handle = asus->handle;
1604 bool supported;
1605
33989ba6
AR
1606 if (asus->is_pega_lucid) {
1607 /* no ls_level interface on the Lucid */
1608 if (attr == &dev_attr_ls_switch.attr)
1609 supported = true;
1610 else if (attr == &dev_attr_ls_level.attr)
1611 supported = false;
1612 else
1613 goto normal;
1614
1615 return supported;
1616 }
1617
1618normal:
ac9b1e5b
DT
1619 if (attr == &dev_attr_wlan.attr) {
1620 supported = !acpi_check_handle(handle, METHOD_WLAN, NULL);
1621
1622 } else if (attr == &dev_attr_bluetooth.attr) {
1623 supported = !acpi_check_handle(handle, METHOD_BLUETOOTH, NULL);
1624
1625 } else if (attr == &dev_attr_display.attr) {
1626 supported = !acpi_check_handle(handle, METHOD_SWITCH_DISPLAY, NULL);
1627
ba1ff5be
CC
1628 } else if (attr == &dev_attr_wimax.attr) {
1629 supported =
1630 !acpi_check_handle(asus->handle, METHOD_WIMAX, NULL);
1631
1632 } else if (attr == &dev_attr_wwan.attr) {
1633 supported = !acpi_check_handle(asus->handle, METHOD_WWAN, NULL);
1634
ac9b1e5b
DT
1635 } else if (attr == &dev_attr_ledd.attr) {
1636 supported = !acpi_check_handle(handle, METHOD_LEDD, NULL);
1637
1638 } else if (attr == &dev_attr_ls_switch.attr ||
1639 attr == &dev_attr_ls_level.attr) {
1640 supported = !acpi_check_handle(handle, METHOD_ALS_CONTROL, NULL) &&
33989ba6
AR
1641 !acpi_check_handle(handle, METHOD_ALS_LEVEL, NULL);
1642 } else if (attr == &dev_attr_ls_value.attr) {
1643 supported = asus->is_pega_lucid;
ac9b1e5b
DT
1644 } else if (attr == &dev_attr_gps.attr) {
1645 supported = !acpi_check_handle(handle, METHOD_GPS_ON, NULL) &&
1646 !acpi_check_handle(handle, METHOD_GPS_OFF, NULL) &&
1647 !acpi_check_handle(handle, METHOD_GPS_STATUS, NULL);
1648 } else {
1649 supported = true;
2a1fd64c
CC
1650 }
1651
ac9b1e5b
DT
1652 return supported ? attr->mode : 0;
1653}
2a1fd64c 1654
2a1fd64c 1655
ac9b1e5b
DT
1656static const struct attribute_group asus_attr_group = {
1657 .is_visible = asus_sysfs_is_visible,
1658 .attrs = asus_attributes,
1659};
85091b71 1660
9129d14d 1661static int asus_platform_init(struct asus_laptop *asus)
600ad520 1662{
71e687dc 1663 int result;
600ad520 1664
50a90c4d
CC
1665 asus->platform_device = platform_device_alloc(ASUS_LAPTOP_FILE, -1);
1666 if (!asus->platform_device)
600ad520 1667 return -ENOMEM;
9129d14d 1668 platform_set_drvdata(asus->platform_device, asus);
600ad520 1669
71e687dc
CC
1670 result = platform_device_add(asus->platform_device);
1671 if (result)
600ad520
CC
1672 goto fail_platform_device;
1673
ac9b1e5b
DT
1674 result = sysfs_create_group(&asus->platform_device->dev.kobj,
1675 &asus_attr_group);
71e687dc 1676 if (result)
600ad520 1677 goto fail_sysfs;
ac9b1e5b 1678
600ad520
CC
1679 return 0;
1680
1681fail_sysfs:
50a90c4d 1682 platform_device_del(asus->platform_device);
600ad520 1683fail_platform_device:
50a90c4d 1684 platform_device_put(asus->platform_device);
71e687dc 1685 return result;
600ad520
CC
1686}
1687
9129d14d 1688static void asus_platform_exit(struct asus_laptop *asus)
600ad520 1689{
ac9b1e5b 1690 sysfs_remove_group(&asus->platform_device->dev.kobj, &asus_attr_group);
50a90c4d 1691 platform_device_unregister(asus->platform_device);
600ad520
CC
1692}
1693
1694static struct platform_driver platform_driver = {
8def05fa 1695 .driver = {
9129d14d
CC
1696 .name = ASUS_LAPTOP_FILE,
1697 .owner = THIS_MODULE,
b23910c2 1698 },
85091b71
CC
1699};
1700
85091b71 1701/*
50a90c4d
CC
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
1704 * struct
85091b71 1705 */
7c247645 1706static int asus_laptop_get_info(struct asus_laptop *asus)
85091b71
CC
1707{
1708 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
85091b71 1709 union acpi_object *model = NULL;
cb7da022 1710 unsigned long long bsts_result;
85091b71
CC
1711 char *string = NULL;
1712 acpi_status status;
1713
1714 /*
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
7c247645 1719 * HID), this bit will be moved.
85091b71 1720 */
7c247645 1721 status = acpi_get_table(ACPI_SIG_DSDT, 1, &asus->dsdt_info);
85091b71 1722 if (ACPI_FAILURE(status))
5ad77dcf 1723 pr_warn("Couldn't get the DSDT table header\n");
85091b71
CC
1724
1725 /* We have to write 0 on init this far for all ASUS models */
50a90c4d 1726 if (write_acpi_int_ret(asus->handle, "INIT", 0, &buffer)) {
2fcc23da 1727 pr_err("Hotkey initialization failed\n");
85091b71
CC
1728 return -ENODEV;
1729 }
1730
1731 /* This needs to be called for some laptops to init properly */
9a816850 1732 status =
50a90c4d 1733 acpi_evaluate_integer(asus->handle, "BSTS", NULL, &bsts_result);
9a816850 1734 if (ACPI_FAILURE(status))
5ad77dcf 1735 pr_warn("Error calling BSTS\n");
85091b71 1736 else if (bsts_result)
2fcc23da 1737 pr_notice("BSTS called, 0x%02x returned\n",
9a816850 1738 (uint) bsts_result);
85091b71 1739
185e5af9 1740 /* This too ... */
e5593bf1
CC
1741 if (write_acpi_int(asus->handle, "CWAP", wapf))
1742 pr_err("Error calling CWAP(%d)\n", wapf);
85091b71
CC
1743 /*
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.
1748 */
1749 if (buffer.pointer) {
1750 model = buffer.pointer;
1751 switch (model->type) {
1752 case ACPI_TYPE_STRING:
1753 string = model->string.pointer;
1754 break;
1755 case ACPI_TYPE_BUFFER:
1756 string = model->buffer.pointer;
1757 break;
1758 default:
1759 string = "";
1760 break;
1761 }
1762 }
50a90c4d 1763 asus->name = kstrdup(string, GFP_KERNEL);
d8eca110
AL
1764 if (!asus->name) {
1765 kfree(buffer.pointer);
85091b71 1766 return -ENOMEM;
d8eca110 1767 }
85091b71 1768
9f897484 1769 if (string)
2fcc23da 1770 pr_notice(" %s model detected\n", string);
85091b71 1771
d99b577c 1772 if (!acpi_check_handle(asus->handle, METHOD_WL_STATUS, NULL))
aa9df930 1773 asus->have_rsts = true;
4564de17 1774
85091b71
CC
1775 kfree(model);
1776
1777 return AE_OK;
1778}
1779
b859f159 1780static int asus_acpi_init(struct asus_laptop *asus)
85091b71 1781{
600ad520 1782 int result = 0;
85091b71 1783
50a90c4d 1784 result = acpi_bus_get_status(asus->device);
600ad520 1785 if (result)
85091b71 1786 return result;
50a90c4d 1787 if (!asus->device->status.present) {
600ad520 1788 pr_err("Hotkey device not present, aborting\n");
85091b71
CC
1789 return -ENODEV;
1790 }
1791
7c247645 1792 result = asus_laptop_get_info(asus);
034ce90a 1793 if (result)
600ad520 1794 return result;
034ce90a 1795
774b0678
CC
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;
1800
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;
1805
be4ee82d 1806 if (bluetooth_status >= 0)
e5593bf1
CC
1807 asus_bluetooth_set(asus, !!bluetooth_status);
1808
d0930a2d
CC
1809 if (wlan_status >= 0)
1810 asus_wlan_set(asus, !!wlan_status);
85091b71 1811
ba1ff5be
CC
1812 if (wimax_status >= 0)
1813 asus_wimax_set(asus, !!wimax_status);
1814
1815 if (wwan_status >= 0)
1816 asus_wwan_set(asus, !!wwan_status);
1817
600ad520 1818 /* Keyboard Backlight is on by default */
d99b577c 1819 if (!acpi_check_handle(asus->handle, METHOD_KBD_LIGHT_SET, NULL))
4d441513 1820 asus_kled_set(asus, 1);
600ad520
CC
1821
1822 /* LED display is off by default */
50a90c4d 1823 asus->ledd_status = 0xFFF;
600ad520
CC
1824
1825 /* Set initial values of light sensor and level */
abec04db 1826 asus->light_switch = !!als_status;
be4ee82d 1827 asus->light_level = 5; /* level 5 for sensor sensitivity */
600ad520 1828
33989ba6
AR
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)) {
4d441513 1833 asus_als_switch(asus, asus->light_switch);
4d441513 1834 asus_als_level(asus, asus->light_level);
d99b577c 1835 }
600ad520 1836
600ad520
CC
1837 return result;
1838}
1839
b859f159 1840static void asus_dmi_check(void)
af96f877
CC
1841{
1842 const char *model;
1843
1844 model = dmi_get_system_info(DMI_PRODUCT_NAME);
1845 if (!model)
1846 return;
1847
1848 /* On L1400B WLED control the sound card, don't mess with it ... */
1849 if (strncmp(model, "L1400B", 6) == 0) {
1850 wlan_status = -1;
1851 }
1852}
1853
71e687dc
CC
1854static bool asus_device_present;
1855
b859f159 1856static int asus_acpi_add(struct acpi_device *device)
600ad520 1857{
9129d14d 1858 struct asus_laptop *asus;
600ad520
CC
1859 int result;
1860
1861 pr_notice("Asus Laptop Support version %s\n",
1862 ASUS_LAPTOP_VERSION);
50a90c4d
CC
1863 asus = kzalloc(sizeof(struct asus_laptop), GFP_KERNEL);
1864 if (!asus)
600ad520 1865 return -ENOMEM;
50a90c4d
CC
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;
600ad520 1871
af96f877
CC
1872 asus_dmi_check();
1873
9129d14d 1874 result = asus_acpi_init(asus);
8def05fa 1875 if (result)
600ad520 1876 goto fail_platform;
85091b71 1877
600ad520 1878 /*
8819de7f
AR
1879 * Need platform type detection first, then the platform
1880 * device. It is used as a parent for the sub-devices below.
600ad520 1881 */
8819de7f 1882 asus->is_pega_lucid = asus_check_pega_lucid(asus);
9129d14d 1883 result = asus_platform_init(asus);
116bf2e0 1884 if (result)
600ad520 1885 goto fail_platform;
116bf2e0
CC
1886
1887 if (!acpi_video_backlight_support()) {
9129d14d 1888 result = asus_backlight_init(asus);
116bf2e0
CC
1889 if (result)
1890 goto fail_backlight;
1891 } else
600ad520 1892 pr_info("Backlight controlled by ACPI video driver\n");
116bf2e0 1893
9129d14d 1894 result = asus_input_init(asus);
600ad520
CC
1895 if (result)
1896 goto fail_input;
1897
9129d14d 1898 result = asus_led_init(asus);
600ad520
CC
1899 if (result)
1900 goto fail_led;
1901
18e1311e 1902 result = asus_rfkill_init(asus);
3c8671ff 1903 if (result && result != -ENODEV)
18e1311e
CC
1904 goto fail_rfkill;
1905
b23910c2
AR
1906 result = pega_accel_init(asus);
1907 if (result && result != -ENODEV)
1908 goto fail_pega_accel;
1909
14908399
AA
1910 result = pega_rfkill_init(asus);
1911 if (result && result != -ENODEV)
1912 goto fail_pega_rfkill;
1913
600ad520 1914 asus_device_present = true;
8def05fa 1915 return 0;
85091b71 1916
14908399
AA
1917fail_pega_rfkill:
1918 pega_accel_exit(asus);
b23910c2
AR
1919fail_pega_accel:
1920 asus_rfkill_exit(asus);
18e1311e
CC
1921fail_rfkill:
1922 asus_led_exit(asus);
600ad520 1923fail_led:
9129d14d 1924 asus_input_exit(asus);
600ad520 1925fail_input:
9129d14d 1926 asus_backlight_exit(asus);
116bf2e0 1927fail_backlight:
9129d14d 1928 asus_platform_exit(asus);
600ad520 1929fail_platform:
50a90c4d
CC
1930 kfree(asus->name);
1931 kfree(asus);
116bf2e0 1932
600ad520
CC
1933 return result;
1934}
116bf2e0 1935
51fac838 1936static int asus_acpi_remove(struct acpi_device *device)
600ad520 1937{
9129d14d
CC
1938 struct asus_laptop *asus = acpi_driver_data(device);
1939
1940 asus_backlight_exit(asus);
18e1311e 1941 asus_rfkill_exit(asus);
9129d14d
CC
1942 asus_led_exit(asus);
1943 asus_input_exit(asus);
b23910c2 1944 pega_accel_exit(asus);
9129d14d 1945 asus_platform_exit(asus);
600ad520 1946
50a90c4d
CC
1947 kfree(asus->name);
1948 kfree(asus);
600ad520
CC
1949 return 0;
1950}
1951
1952static const struct acpi_device_id asus_device_ids[] = {
1953 {"ATK0100", 0},
1954 {"ATK0101", 0},
1955 {"", 0},
1956};
1957MODULE_DEVICE_TABLE(acpi, asus_device_ids);
85091b71 1958
600ad520 1959static struct acpi_driver asus_acpi_driver = {
50a90c4d
CC
1960 .name = ASUS_LAPTOP_NAME,
1961 .class = ASUS_LAPTOP_CLASS,
600ad520
CC
1962 .owner = THIS_MODULE,
1963 .ids = asus_device_ids,
1964 .flags = ACPI_DRIVER_ALL_NOTIFY_EVENTS,
1965 .ops = {
1966 .add = asus_acpi_add,
1967 .remove = asus_acpi_remove,
1968 .notify = asus_acpi_notify,
1969 },
1970};
85091b71 1971
600ad520
CC
1972static int __init asus_laptop_init(void)
1973{
1974 int result;
85091b71 1975
600ad520
CC
1976 result = platform_driver_register(&platform_driver);
1977 if (result < 0)
1978 return result;
034ce90a 1979
600ad520
CC
1980 result = acpi_bus_register_driver(&asus_acpi_driver);
1981 if (result < 0)
1982 goto fail_acpi_driver;
1983 if (!asus_device_present) {
1984 result = -ENODEV;
1985 goto fail_no_device;
1986 }
1987 return 0;
85091b71 1988
600ad520
CC
1989fail_no_device:
1990 acpi_bus_unregister_driver(&asus_acpi_driver);
1991fail_acpi_driver:
1992 platform_driver_unregister(&platform_driver);
85091b71
CC
1993 return result;
1994}
1995
600ad520
CC
1996static void __exit asus_laptop_exit(void)
1997{
1998 acpi_bus_unregister_driver(&asus_acpi_driver);
1999 platform_driver_unregister(&platform_driver);
2000}
2001
85091b71
CC
2002module_init(asus_laptop_init);
2003module_exit(asus_laptop_exit);