blob: b756e07d41b4d9c551fe6234889d23d97a4ffcd8 [file] [log] [blame]
Corentin Chary85091b72007-01-26 14:04:30 +01001/*
2 * asus-laptop.c - Asus Laptop Support
3 *
4 *
5 * Copyright (C) 2002-2005 Julien Lerouge, 2003-2006 Karol Kozimor
Corentin Chary8ec555c2007-03-11 10:28:03 +01006 * Copyright (C) 2006-2007 Corentin Chary
Corentin Chary85091b72007-01-26 14:04:30 +01007 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21 *
22 *
23 * The development page for this driver is located at
24 * http://sourceforge.net/projects/acpi4asus/
25 *
26 * Credits:
27 * Pontus Fuchs - Helper functions, cleanup
28 * Johann Wiesner - Small compile fixes
29 * John Belmonte - ACPI code for Toshiba laptop was a good starting point.
30 * Eric Burghard - LED display support for W1N
31 * Josh Green - Light Sens support
32 * Thomas Tuttle - His first patch for led support was very helpfull
Corentin Charye539c2f2007-05-06 14:47:06 +020033 * Sam Lin - GPS support
Corentin Chary85091b72007-01-26 14:04:30 +010034 */
35
Corentin Chary2fcc23d2009-06-19 14:52:03 +020036#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
37
Corentin Chary85091b72007-01-26 14:04:30 +010038#include <linux/kernel.h>
39#include <linux/module.h>
40#include <linux/init.h>
41#include <linux/types.h>
42#include <linux/err.h>
43#include <linux/proc_fs.h>
Corentin Chary6b7091e2007-01-26 14:04:45 +010044#include <linux/backlight.h>
45#include <linux/fb.h>
Corentin Charybe18cda2007-01-26 14:04:35 +010046#include <linux/leds.h>
Corentin Chary85091b72007-01-26 14:04:30 +010047#include <linux/platform_device.h>
Corentin Chary060cbce2010-01-28 10:52:40 +010048#include <linux/uaccess.h>
Corentin Chary034ce902009-01-20 16:17:43 +010049#include <linux/input.h>
Corentin Chary66a71dd2010-01-25 22:50:11 +010050#include <linux/input/sparse-keymap.h>
Corentin Chary18e13112010-01-25 23:29:24 +010051#include <linux/rfkill.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090052#include <linux/slab.h>
Corentin Chary060cbce2010-01-28 10:52:40 +010053#include <acpi/acpi_drivers.h>
54#include <acpi/acpi_bus.h>
Corentin Chary85091b72007-01-26 14:04:30 +010055
Corentin Chary91687cc2009-11-28 10:32:34 +010056#define ASUS_LAPTOP_VERSION "0.42"
Corentin Chary85091b72007-01-26 14:04:30 +010057
Corentin Chary50a90c42009-11-30 21:55:12 +010058#define ASUS_LAPTOP_NAME "Asus Laptop Support"
59#define ASUS_LAPTOP_CLASS "hotkey"
60#define ASUS_LAPTOP_DEVICE_NAME "Hotkey"
61#define ASUS_LAPTOP_FILE KBUILD_MODNAME
62#define ASUS_LAPTOP_PREFIX "\\_SB.ATKD."
Corentin Chary85091b72007-01-26 14:04:30 +010063
Corentin Chary85091b72007-01-26 14:04:30 +010064MODULE_AUTHOR("Julien Lerouge, Karol Kozimor, Corentin Chary");
Corentin Chary50a90c42009-11-30 21:55:12 +010065MODULE_DESCRIPTION(ASUS_LAPTOP_NAME);
Corentin Chary85091b72007-01-26 14:04:30 +010066MODULE_LICENSE("GPL");
67
Corentin Charybe966662009-08-29 10:28:29 +020068/*
69 * WAPF defines the behavior of the Fn+Fx wlan key
Corentin Chary185e5af2007-03-11 10:27:33 +010070 * The significance of values is yet to be found, but
71 * most of the time:
72 * 0x0 will do nothing
73 * 0x1 will allow to control the device with Fn+Fx key.
74 * 0x4 will send an ACPI event (0x88) while pressing the Fn+Fx key
75 * 0x5 like 0x1 or 0x4
76 * So, if something doesn't work as you want, just try other values =)
77 */
78static uint wapf = 1;
Axel Linc26d85c2010-07-20 15:19:55 -070079module_param(wapf, uint, 0444);
Corentin Chary185e5af2007-03-11 10:27:33 +010080MODULE_PARM_DESC(wapf, "WAPF value");
81
Dan Carpenter668f4a02010-04-06 13:44:29 +030082static int wlan_status = 1;
83static int bluetooth_status = 1;
Corentin Chary0e875f42010-01-10 20:49:26 +010084
Axel Linc26d85c2010-07-20 15:19:55 -070085module_param(wlan_status, int, 0444);
Corentin Charyd0930a22010-01-17 17:21:13 +010086MODULE_PARM_DESC(wlan_status, "Set the wireless status on boot "
Corentin Chary0e875f42010-01-10 20:49:26 +010087 "(0 = disabled, 1 = enabled, -1 = don't do anything). "
88 "default is 1");
89
Axel Linc26d85c2010-07-20 15:19:55 -070090module_param(bluetooth_status, int, 0444);
Corentin Chary0e875f42010-01-10 20:49:26 +010091MODULE_PARM_DESC(bluetooth_status, "Set the wireless status on boot "
92 "(0 = disabled, 1 = enabled, -1 = don't do anything). "
93 "default is 1");
94
Corentin Charybe4ee822009-12-06 16:27:09 +010095/*
96 * Some events we use, same for all Asus
97 */
Corentin Chary060cbce2010-01-28 10:52:40 +010098#define ATKD_BR_UP 0x10 /* (event & ~ATKD_BR_UP) = brightness level */
99#define ATKD_BR_DOWN 0x20 /* (event & ~ATKD_BR_DOWN) = britghness level */
Corentin Charya539df52010-01-25 22:53:21 +0100100#define ATKD_BR_MIN ATKD_BR_UP
Corentin Chary060cbce2010-01-28 10:52:40 +0100101#define ATKD_BR_MAX (ATKD_BR_DOWN | 0xF) /* 0x2f */
Corentin Charybe4ee822009-12-06 16:27:09 +0100102#define ATKD_LCD_ON 0x33
103#define ATKD_LCD_OFF 0x34
104
105/*
106 * Known bits returned by \_SB.ATKD.HWRS
107 */
108#define WL_HWRS 0x80
109#define BT_HWRS 0x100
110
111/*
112 * Flags for hotk status
113 * WL_ON and BT_ON are also used for wireless_status()
114 */
Corentin Chary17e78f62010-01-13 22:21:33 +0100115#define WL_RSTS 0x01 /* internal Wifi */
116#define BT_RSTS 0x02 /* internal Bluetooth */
Corentin Charybe4ee822009-12-06 16:27:09 +0100117
Corentin Charybe18cda2007-01-26 14:04:35 +0100118/* LED */
Corentin Charyd99b5772010-01-22 21:20:57 +0100119#define METHOD_MLED "MLED"
120#define METHOD_TLED "TLED"
121#define METHOD_RLED "RLED" /* W1JC */
122#define METHOD_PLED "PLED" /* A7J */
123#define METHOD_GLED "GLED" /* G1, G2 (probably) */
Corentin Charybe18cda2007-01-26 14:04:35 +0100124
Corentin Chary722ad972007-01-26 14:04:55 +0100125/* LEDD */
Corentin Charyd99b5772010-01-22 21:20:57 +0100126#define METHOD_LEDD "SLCM"
Corentin Chary722ad972007-01-26 14:04:55 +0100127
Corentin Charybe966662009-08-29 10:28:29 +0200128/*
129 * Bluetooth and WLAN
Corentin Chary4564de12007-01-26 14:04:40 +0100130 * WLED and BLED are not handled like other XLED, because in some dsdt
131 * they also control the WLAN/Bluetooth device.
132 */
Corentin Charyd99b5772010-01-22 21:20:57 +0100133#define METHOD_WLAN "WLED"
134#define METHOD_BLUETOOTH "BLED"
135#define METHOD_WL_STATUS "RSTS"
Corentin Chary4564de12007-01-26 14:04:40 +0100136
Corentin Chary6b7091e2007-01-26 14:04:45 +0100137/* Brightness */
Corentin Charyd99b5772010-01-22 21:20:57 +0100138#define METHOD_BRIGHTNESS_SET "SPLV"
139#define METHOD_BRIGHTNESS_GET "GPLV"
Corentin Chary6b7091e2007-01-26 14:04:45 +0100140
141/* Backlight */
Corentin Chary060cbce2010-01-28 10:52:40 +0100142static acpi_handle lcd_switch_handle;
Corentin Chary16721512010-03-02 22:24:12 +0100143static char *lcd_switch_paths[] = {
Corentin Chary060cbce2010-01-28 10:52:40 +0100144 "\\_SB.PCI0.SBRG.EC0._Q10", /* All new models */
145 "\\_SB.PCI0.ISA.EC0._Q10", /* A1x */
146 "\\_SB.PCI0.PX40.ECD0._Q10", /* L3C */
147 "\\_SB.PCI0.PX40.EC0.Q10", /* M1A */
148 "\\_SB.PCI0.LPCB.EC0._Q10", /* P30 */
149 "\\_SB.PCI0.LPCB.EC0._Q0E", /* P30/P35 */
150 "\\_SB.PCI0.PX40.Q10", /* S1x */
151 "\\Q10"}; /* A2x, L2D, L3D, M2E */
Corentin Chary6b7091e2007-01-26 14:04:45 +0100152
Corentin Chary78127b42007-01-26 14:04:49 +0100153/* Display */
Corentin Charyd99b5772010-01-22 21:20:57 +0100154#define METHOD_SWITCH_DISPLAY "SDSP"
Corentin Chary060cbce2010-01-28 10:52:40 +0100155
156static acpi_handle display_get_handle;
Corentin Chary16721512010-03-02 22:24:12 +0100157static char *display_get_paths[] = {
Corentin Chary060cbce2010-01-28 10:52:40 +0100158 /* A6B, A6K A6R A7D F3JM L4R M6R A3G M6A M6V VX-1 V6J V6V W3Z */
159 "\\_SB.PCI0.P0P1.VGA.GETD",
160 /* A3E A4K, A4D A4L A6J A7J A8J Z71V M9V S5A M5A z33A W1Jc W2V G1 */
161 "\\_SB.PCI0.P0P2.VGA.GETD",
162 /* A6V A6Q */
163 "\\_SB.PCI0.P0P3.VGA.GETD",
164 /* A6T, A6M */
165 "\\_SB.PCI0.P0PA.VGA.GETD",
166 /* L3C */
167 "\\_SB.PCI0.PCI1.VGAC.NMAP",
168 /* Z96F */
169 "\\_SB.PCI0.VGA.GETD",
170 /* A2D */
171 "\\ACTD",
172 /* A4G Z71A W1N W5A W5F M2N M3N M5N M6N S1N S5N */
173 "\\ADVG",
174 /* P30 */
175 "\\DNXT",
176 /* A2H D1 L2D L3D L3H L2E L5D L5C M1A M2E L4L W3V */
177 "\\INFB",
178 /* A3F A6F A3N A3L M6N W3N W6A */
179 "\\SSTE"};
Corentin Chary78127b42007-01-26 14:04:49 +0100180
Corentin Charyd99b5772010-01-22 21:20:57 +0100181#define METHOD_ALS_CONTROL "ALSC" /* Z71A Z71V */
182#define METHOD_ALS_LEVEL "ALSL" /* Z71A Z71V */
Corentin Chary8b857352007-01-26 14:04:58 +0100183
Corentin Charye539c2f2007-05-06 14:47:06 +0200184/* GPS */
185/* R2H use different handle for GPS on/off */
Corentin Charyd99b5772010-01-22 21:20:57 +0100186#define METHOD_GPS_ON "SDON"
187#define METHOD_GPS_OFF "SDOF"
188#define METHOD_GPS_STATUS "GPST"
Corentin Charye539c2f2007-05-06 14:47:06 +0200189
Corentin Charyb7d3fbc2009-08-28 12:56:50 +0000190/* Keyboard light */
Corentin Charyd99b5772010-01-22 21:20:57 +0100191#define METHOD_KBD_LIGHT_SET "SLKB"
192#define METHOD_KBD_LIGHT_GET "GLKB"
Corentin Charyb7d3fbc2009-08-28 12:56:50 +0000193
Corentin Chary85091b72007-01-26 14:04:30 +0100194/*
Corentin Chary9129d142009-12-01 22:39:41 +0100195 * Define a specific led structure to keep the main structure clean
196 */
Corentin Charyaee0afb2010-01-26 21:01:34 +0100197struct asus_led {
198 int wk;
199 struct work_struct work;
200 struct led_classdev led;
201 struct asus_laptop *asus;
202 const char *method;
Corentin Chary9129d142009-12-01 22:39:41 +0100203};
204
205/*
Corentin Chary85091b72007-01-26 14:04:30 +0100206 * This is the main structure, we can use it to store anything interesting
207 * about the hotk device
208 */
Corentin Chary50a90c42009-11-30 21:55:12 +0100209struct asus_laptop {
Corentin Charybe966662009-08-29 10:28:29 +0200210 char *name; /* laptop name */
Corentin Chary600ad522009-11-30 21:42:42 +0100211
Corentin Chary7c247642009-11-30 22:13:54 +0100212 struct acpi_table_header *dsdt_info;
Corentin Chary600ad522009-11-30 21:42:42 +0100213 struct platform_device *platform_device;
Corentin Chary7c247642009-11-30 22:13:54 +0100214 struct acpi_device *device; /* the device we are in */
215 struct backlight_device *backlight_device;
Corentin Chary9129d142009-12-01 22:39:41 +0100216
Corentin Chary7c247642009-11-30 22:13:54 +0100217 struct input_dev *inputdev;
Corentin Chary9129d142009-12-01 22:39:41 +0100218 struct key_entry *keymap;
219
Corentin Charyaee0afb2010-01-26 21:01:34 +0100220 struct asus_led mled;
221 struct asus_led tled;
222 struct asus_led rled;
223 struct asus_led pled;
224 struct asus_led gled;
225 struct asus_led kled;
226 struct workqueue_struct *led_workqueue;
Corentin Chary7c247642009-11-30 22:13:54 +0100227
Corentin Charyaa9df932010-01-13 21:49:10 +0100228 int wireless_status;
229 bool have_rsts;
Corentin Chary3e68ae72010-01-13 22:10:39 +0100230 int lcd_state;
Corentin Charyaa9df932010-01-13 21:49:10 +0100231
Corentin Chary18e13112010-01-25 23:29:24 +0100232 struct rfkill *gps_rfkill;
233
Corentin Charybe966662009-08-29 10:28:29 +0200234 acpi_handle handle; /* the handle of the hotk device */
Corentin Charybe966662009-08-29 10:28:29 +0200235 u32 ledd_status; /* status of the LED display */
236 u8 light_level; /* light sensor level */
237 u8 light_switch; /* light sensor switch value */
238 u16 event_count[128]; /* count for each event TODO make this better */
Corentin Chary034ce902009-01-20 16:17:43 +0100239 u16 *keycode_map;
Corentin Chary85091b72007-01-26 14:04:30 +0100240};
241
Corentin Chary9129d142009-12-01 22:39:41 +0100242static const struct key_entry asus_keymap[] = {
Corentin Charya539df52010-01-25 22:53:21 +0100243 /* Lenovo SL Specific keycodes */
Corentin Chary66a71dd2010-01-25 22:50:11 +0100244 {KE_KEY, 0x02, { KEY_SCREENLOCK } },
245 {KE_KEY, 0x05, { KEY_WLAN } },
246 {KE_KEY, 0x08, { KEY_F13 } },
247 {KE_KEY, 0x17, { KEY_ZOOM } },
248 {KE_KEY, 0x1f, { KEY_BATTERY } },
Corentin Charya539df52010-01-25 22:53:21 +0100249 /* End of Lenovo SL Specific keycodes */
Corentin Chary66a71dd2010-01-25 22:50:11 +0100250 {KE_KEY, 0x30, { KEY_VOLUMEUP } },
251 {KE_KEY, 0x31, { KEY_VOLUMEDOWN } },
252 {KE_KEY, 0x32, { KEY_MUTE } },
253 {KE_KEY, 0x33, { KEY_SWITCHVIDEOMODE } },
254 {KE_KEY, 0x34, { KEY_SWITCHVIDEOMODE } },
255 {KE_KEY, 0x40, { KEY_PREVIOUSSONG } },
256 {KE_KEY, 0x41, { KEY_NEXTSONG } },
257 {KE_KEY, 0x43, { KEY_STOPCD } },
258 {KE_KEY, 0x45, { KEY_PLAYPAUSE } },
259 {KE_KEY, 0x4c, { KEY_MEDIA } },
260 {KE_KEY, 0x50, { KEY_EMAIL } },
261 {KE_KEY, 0x51, { KEY_WWW } },
262 {KE_KEY, 0x55, { KEY_CALC } },
263 {KE_KEY, 0x5C, { KEY_SCREENLOCK } }, /* Screenlock */
264 {KE_KEY, 0x5D, { KEY_WLAN } },
265 {KE_KEY, 0x5E, { KEY_WLAN } },
266 {KE_KEY, 0x5F, { KEY_WLAN } },
267 {KE_KEY, 0x60, { KEY_SWITCHVIDEOMODE } },
268 {KE_KEY, 0x61, { KEY_SWITCHVIDEOMODE } },
269 {KE_KEY, 0x62, { KEY_SWITCHVIDEOMODE } },
270 {KE_KEY, 0x63, { KEY_SWITCHVIDEOMODE } },
271 {KE_KEY, 0x6B, { KEY_F13 } }, /* Lock Touchpad */
Corentin Chary7f607d72010-01-17 17:37:19 +0100272 {KE_KEY, 0x7E, { KEY_BLUETOOTH } },
273 {KE_KEY, 0x7D, { KEY_BLUETOOTH } },
Corentin Chary66a71dd2010-01-25 22:50:11 +0100274 {KE_KEY, 0x82, { KEY_CAMERA } },
275 {KE_KEY, 0x88, { KEY_WLAN } },
276 {KE_KEY, 0x8A, { KEY_PROG1 } },
277 {KE_KEY, 0x95, { KEY_MEDIA } },
278 {KE_KEY, 0x99, { KEY_PHONE } },
279 {KE_KEY, 0xc4, { KEY_KBDILLUMUP } },
280 {KE_KEY, 0xc5, { KEY_KBDILLUMDOWN } },
Corentin Chary034ce902009-01-20 16:17:43 +0100281 {KE_END, 0},
282};
283
Corentin Chary66a71dd2010-01-25 22:50:11 +0100284
Corentin Chary85091b72007-01-26 14:04:30 +0100285/*
286 * This function evaluates an ACPI method, given an int as parameter, the
287 * method is searched within the scope of the handle, can be NULL. The output
288 * of the method is written is output, which can also be NULL
289 *
Corentin CHARYf8d1c942008-01-16 16:56:42 +0100290 * returns 0 if write is successful, -1 else.
Corentin Chary85091b72007-01-26 14:04:30 +0100291 */
Corentin Charyd8c67322009-11-28 10:27:51 +0100292static int write_acpi_int_ret(acpi_handle handle, const char *method, int val,
293 struct acpi_buffer *output)
Corentin Chary85091b72007-01-26 14:04:30 +0100294{
Corentin Charybe966662009-08-29 10:28:29 +0200295 struct acpi_object_list params; /* list of input parameters (an int) */
296 union acpi_object in_obj; /* the only param we use */
Corentin Chary85091b72007-01-26 14:04:30 +0100297 acpi_status status;
298
Corentin CHARYf8d1c942008-01-16 16:56:42 +0100299 if (!handle)
Axel Lin9fb866f2010-07-20 15:19:47 -0700300 return -1;
Corentin CHARYf8d1c942008-01-16 16:56:42 +0100301
Corentin Chary85091b72007-01-26 14:04:30 +0100302 params.count = 1;
303 params.pointer = &in_obj;
304 in_obj.type = ACPI_TYPE_INTEGER;
305 in_obj.integer.value = val;
306
307 status = acpi_evaluate_object(handle, (char *)method, &params, output);
Corentin CHARYf8d1c942008-01-16 16:56:42 +0100308 if (status == AE_OK)
309 return 0;
310 else
311 return -1;
Corentin Chary85091b72007-01-26 14:04:30 +0100312}
313
Corentin Charyd8c67322009-11-28 10:27:51 +0100314static int write_acpi_int(acpi_handle handle, const char *method, int val)
315{
316 return write_acpi_int_ret(handle, method, val, NULL);
317}
318
Corentin Charyd99b5772010-01-22 21:20:57 +0100319static int acpi_check_handle(acpi_handle handle, const char *method,
320 acpi_handle *ret)
321{
322 acpi_status status;
323
324 if (method == NULL)
325 return -ENODEV;
326
327 if (ret)
328 status = acpi_get_handle(handle, (char *)method,
329 ret);
330 else {
331 acpi_handle dummy;
332
333 status = acpi_get_handle(handle, (char *)method,
334 &dummy);
335 }
336
337 if (status != AE_OK) {
338 if (ret)
339 pr_warning("Error finding %s\n", method);
340 return -ENODEV;
341 }
342 return 0;
343}
344
Corentin Chary17e78f62010-01-13 22:21:33 +0100345/* Generic LED function */
Corentin Charyaee0afb2010-01-26 21:01:34 +0100346static int asus_led_set(struct asus_laptop *asus, const char *method,
Corentin Chary17e78f62010-01-13 22:21:33 +0100347 int value)
Corentin Charybe18cda2007-01-26 14:04:35 +0100348{
Corentin Charyd99b5772010-01-22 21:20:57 +0100349 if (!strcmp(method, METHOD_MLED))
Corentin Chary17e78f62010-01-13 22:21:33 +0100350 value = !value;
Corentin Charyd99b5772010-01-22 21:20:57 +0100351 else if (!strcmp(method, METHOD_GLED))
Corentin Chary17e78f62010-01-13 22:21:33 +0100352 value = !value + 1;
353 else
354 value = !!value;
Corentin Charybe18cda2007-01-26 14:04:35 +0100355
Corentin Charye5593bf2010-01-17 17:20:11 +0100356 return write_acpi_int(asus->handle, method, value);
Corentin Charybe18cda2007-01-26 14:04:35 +0100357}
358
Corentin Charybe4ee822009-12-06 16:27:09 +0100359/*
360 * LEDs
361 */
Corentin Charybe18cda2007-01-26 14:04:35 +0100362/* /sys/class/led handlers */
Corentin Charyaee0afb2010-01-26 21:01:34 +0100363static void asus_led_cdev_set(struct led_classdev *led_cdev,
364 enum led_brightness value)
365{
366 struct asus_led *led = container_of(led_cdev, struct asus_led, led);
367 struct asus_laptop *asus = led->asus;
Corentin Charybe18cda2007-01-26 14:04:35 +0100368
Corentin Charyaee0afb2010-01-26 21:01:34 +0100369 led->wk = !!value;
370 queue_work(asus->led_workqueue, &led->work);
371}
372
373static void asus_led_cdev_update(struct work_struct *work)
374{
375 struct asus_led *led = container_of(work, struct asus_led, work);
376 struct asus_laptop *asus = led->asus;
377
378 asus_led_set(asus, led->method, led->wk);
379}
380
381static enum led_brightness asus_led_cdev_get(struct led_classdev *led_cdev)
382{
383 return led_cdev->brightness;
384}
Corentin Charybe18cda2007-01-26 14:04:35 +0100385
Corentin Charyb7d3fbc2009-08-28 12:56:50 +0000386/*
Corentin Charybe4ee822009-12-06 16:27:09 +0100387 * Keyboard backlight (also a LED)
Corentin Charyb7d3fbc2009-08-28 12:56:50 +0000388 */
Corentin Charyd99b5772010-01-22 21:20:57 +0100389static int asus_kled_lvl(struct asus_laptop *asus)
Corentin Charyb7d3fbc2009-08-28 12:56:50 +0000390{
391 unsigned long long kblv;
392 struct acpi_object_list params;
393 union acpi_object in_obj;
394 acpi_status rv;
395
396 params.count = 1;
397 params.pointer = &in_obj;
398 in_obj.type = ACPI_TYPE_INTEGER;
399 in_obj.integer.value = 2;
400
Corentin Charyd99b5772010-01-22 21:20:57 +0100401 rv = acpi_evaluate_integer(asus->handle, METHOD_KBD_LIGHT_GET,
402 &params, &kblv);
Corentin Charyb7d3fbc2009-08-28 12:56:50 +0000403 if (ACPI_FAILURE(rv)) {
404 pr_warning("Error reading kled level\n");
Corentin Chary4d441512010-01-13 22:26:24 +0100405 return -ENODEV;
Corentin Charyb7d3fbc2009-08-28 12:56:50 +0000406 }
407 return kblv;
408}
409
Corentin Chary4d441512010-01-13 22:26:24 +0100410static int asus_kled_set(struct asus_laptop *asus, int kblv)
Corentin Charyb7d3fbc2009-08-28 12:56:50 +0000411{
412 if (kblv > 0)
413 kblv = (1 << 7) | (kblv & 0x7F);
414 else
415 kblv = 0;
416
Corentin Charyd99b5772010-01-22 21:20:57 +0100417 if (write_acpi_int(asus->handle, METHOD_KBD_LIGHT_SET, kblv)) {
Corentin Charyb7d3fbc2009-08-28 12:56:50 +0000418 pr_warning("Keyboard LED display write failed\n");
419 return -EINVAL;
420 }
421 return 0;
422}
423
Corentin Charyaee0afb2010-01-26 21:01:34 +0100424static void asus_kled_cdev_set(struct led_classdev *led_cdev,
425 enum led_brightness value)
Corentin Charyb7d3fbc2009-08-28 12:56:50 +0000426{
Corentin Charyaee0afb2010-01-26 21:01:34 +0100427 struct asus_led *led = container_of(led_cdev, struct asus_led, led);
428 struct asus_laptop *asus = led->asus;
Corentin Chary9129d142009-12-01 22:39:41 +0100429
Corentin Chary060cbce2010-01-28 10:52:40 +0100430 led->wk = value;
Corentin Charyaee0afb2010-01-26 21:01:34 +0100431 queue_work(asus->led_workqueue, &led->work);
Corentin Charyb7d3fbc2009-08-28 12:56:50 +0000432}
433
Corentin Charyaee0afb2010-01-26 21:01:34 +0100434static void asus_kled_cdev_update(struct work_struct *work)
Corentin Charyb7d3fbc2009-08-28 12:56:50 +0000435{
Corentin Charyaee0afb2010-01-26 21:01:34 +0100436 struct asus_led *led = container_of(work, struct asus_led, work);
437 struct asus_laptop *asus = led->asus;
Corentin Chary9129d142009-12-01 22:39:41 +0100438
Corentin Charyaee0afb2010-01-26 21:01:34 +0100439 asus_kled_set(asus, led->wk);
Corentin Charyb7d3fbc2009-08-28 12:56:50 +0000440}
441
Corentin Charyaee0afb2010-01-26 21:01:34 +0100442static enum led_brightness asus_kled_cdev_get(struct led_classdev *led_cdev)
Corentin Charyb7d3fbc2009-08-28 12:56:50 +0000443{
Corentin Charyaee0afb2010-01-26 21:01:34 +0100444 struct asus_led *led = container_of(led_cdev, struct asus_led, led);
445 struct asus_laptop *asus = led->asus;
Corentin Charyd99b5772010-01-22 21:20:57 +0100446
447 return asus_kled_lvl(asus);
Corentin Charyb7d3fbc2009-08-28 12:56:50 +0000448}
449
Corentin Charybe4ee822009-12-06 16:27:09 +0100450static void asus_led_exit(struct asus_laptop *asus)
451{
Corentin Charyaee0afb2010-01-26 21:01:34 +0100452 if (asus->mled.led.dev)
453 led_classdev_unregister(&asus->mled.led);
454 if (asus->tled.led.dev)
455 led_classdev_unregister(&asus->tled.led);
456 if (asus->pled.led.dev)
457 led_classdev_unregister(&asus->pled.led);
458 if (asus->rled.led.dev)
459 led_classdev_unregister(&asus->rled.led);
460 if (asus->gled.led.dev)
461 led_classdev_unregister(&asus->gled.led);
462 if (asus->kled.led.dev)
463 led_classdev_unregister(&asus->kled.led);
464 if (asus->led_workqueue) {
465 destroy_workqueue(asus->led_workqueue);
466 asus->led_workqueue = NULL;
Corentin Charybe4ee822009-12-06 16:27:09 +0100467 }
468}
469
470/* Ugly macro, need to fix that later */
Corentin Charyaee0afb2010-01-26 21:01:34 +0100471static int asus_led_register(struct asus_laptop *asus,
472 struct asus_led *led,
473 const char *name, const char *method)
474{
475 struct led_classdev *led_cdev = &led->led;
476
477 if (!method || acpi_check_handle(asus->handle, method, NULL))
Corentin Chary060cbce2010-01-28 10:52:40 +0100478 return 0; /* Led not present */
Corentin Charyaee0afb2010-01-26 21:01:34 +0100479
480 led->asus = asus;
481 led->method = method;
482
483 INIT_WORK(&led->work, asus_led_cdev_update);
484 led_cdev->name = name;
485 led_cdev->brightness_set = asus_led_cdev_set;
486 led_cdev->brightness_get = asus_led_cdev_get;
487 led_cdev->max_brightness = 1;
488 return led_classdev_register(&asus->platform_device->dev, led_cdev);
489}
Corentin Charybe4ee822009-12-06 16:27:09 +0100490
491static int asus_led_init(struct asus_laptop *asus)
492{
Corentin Charyaee0afb2010-01-26 21:01:34 +0100493 int r;
Corentin Charybe4ee822009-12-06 16:27:09 +0100494
495 /*
496 * Functions that actually update the LED's are called from a
497 * workqueue. By doing this as separate work rather than when the LED
498 * subsystem asks, we avoid messing with the Asus ACPI stuff during a
499 * potentially bad time, such as a timer interrupt.
500 */
Corentin Charyaee0afb2010-01-26 21:01:34 +0100501 asus->led_workqueue = create_singlethread_workqueue("led_workqueue");
502 if (!asus->led_workqueue)
Corentin Charybe4ee822009-12-06 16:27:09 +0100503 return -ENOMEM;
504
Corentin Charyaee0afb2010-01-26 21:01:34 +0100505 r = asus_led_register(asus, &asus->mled, "asus::mail", METHOD_MLED);
506 if (r)
507 goto error;
508 r = asus_led_register(asus, &asus->tled, "asus::touchpad", METHOD_TLED);
509 if (r)
510 goto error;
511 r = asus_led_register(asus, &asus->rled, "asus::record", METHOD_RLED);
512 if (r)
513 goto error;
514 r = asus_led_register(asus, &asus->pled, "asus::phone", METHOD_PLED);
515 if (r)
516 goto error;
517 r = asus_led_register(asus, &asus->gled, "asus::gaming", METHOD_GLED);
518 if (r)
519 goto error;
Corentin Charyd99b5772010-01-22 21:20:57 +0100520 if (!acpi_check_handle(asus->handle, METHOD_KBD_LIGHT_SET, NULL) &&
Corentin Charyaee0afb2010-01-26 21:01:34 +0100521 !acpi_check_handle(asus->handle, METHOD_KBD_LIGHT_GET, NULL)) {
522 struct asus_led *led = &asus->kled;
523 struct led_classdev *cdev = &led->led;
524
525 led->asus = asus;
526
527 INIT_WORK(&led->work, asus_kled_cdev_update);
528 cdev->name = "asus::kbd_backlight";
529 cdev->brightness_set = asus_kled_cdev_set;
530 cdev->brightness_get = asus_kled_cdev_get;
531 cdev->max_brightness = 3;
532 r = led_classdev_register(&asus->platform_device->dev, cdev);
533 }
Corentin Charybe4ee822009-12-06 16:27:09 +0100534error:
Corentin Charyaee0afb2010-01-26 21:01:34 +0100535 if (r)
Corentin Charybe4ee822009-12-06 16:27:09 +0100536 asus_led_exit(asus);
Corentin Charyaee0afb2010-01-26 21:01:34 +0100537 return r;
Corentin Charybe4ee822009-12-06 16:27:09 +0100538}
539
540/*
541 * Backlight device
542 */
Corentin Chary3e68ae72010-01-13 22:10:39 +0100543static int asus_lcd_status(struct asus_laptop *asus)
Corentin Chary6b7091e2007-01-26 14:04:45 +0100544{
Corentin Chary3e68ae72010-01-13 22:10:39 +0100545 return asus->lcd_state;
Corentin Chary6b7091e2007-01-26 14:04:45 +0100546}
547
Corentin Chary3e68ae72010-01-13 22:10:39 +0100548static int asus_lcd_set(struct asus_laptop *asus, int value)
Corentin Chary6b7091e2007-01-26 14:04:45 +0100549{
550 int lcd = 0;
551 acpi_status status = 0;
552
Corentin Chary3e68ae72010-01-13 22:10:39 +0100553 lcd = !!value;
Corentin Chary6b7091e2007-01-26 14:04:45 +0100554
Corentin Chary3e68ae72010-01-13 22:10:39 +0100555 if (lcd == asus_lcd_status(asus))
Corentin Chary6b7091e2007-01-26 14:04:45 +0100556 return 0;
557
Corentin Chary3e68ae72010-01-13 22:10:39 +0100558 if (!lcd_switch_handle)
559 return -ENODEV;
Corentin Chary6b7091e2007-01-26 14:04:45 +0100560
Corentin Chary3e68ae72010-01-13 22:10:39 +0100561 status = acpi_evaluate_object(lcd_switch_handle,
562 NULL, NULL, NULL);
563
564 if (ACPI_FAILURE(status)) {
565 pr_warning("Error switching LCD\n");
566 return -ENODEV;
Corentin Chary6b7091e2007-01-26 14:04:45 +0100567 }
568
Corentin Chary3e68ae72010-01-13 22:10:39 +0100569 asus->lcd_state = lcd;
Corentin Chary6b7091e2007-01-26 14:04:45 +0100570 return 0;
571}
572
Corentin Chary9129d142009-12-01 22:39:41 +0100573static void lcd_blank(struct asus_laptop *asus, int blank)
Corentin Chary6b7091e2007-01-26 14:04:45 +0100574{
Corentin Chary7c247642009-11-30 22:13:54 +0100575 struct backlight_device *bd = asus->backlight_device;
Corentin Chary6b7091e2007-01-26 14:04:45 +0100576
Corentin Chary3e68ae72010-01-13 22:10:39 +0100577 asus->lcd_state = (blank == FB_BLANK_UNBLANK);
578
Len Brown8def05f2007-01-30 01:46:43 -0500579 if (bd) {
Richard Purdie599a52d2007-02-10 23:07:48 +0000580 bd->props.power = blank;
Richard Purdie28ee0862007-02-08 22:25:09 +0000581 backlight_update_status(bd);
Corentin Chary6b7091e2007-01-26 14:04:45 +0100582 }
583}
584
Corentin Chary4d441512010-01-13 22:26:24 +0100585static int asus_read_brightness(struct backlight_device *bd)
Corentin Chary6b7091e2007-01-26 14:04:45 +0100586{
Corentin Charyd99b5772010-01-22 21:20:57 +0100587 struct asus_laptop *asus = bl_get_data(bd);
Matthew Wilcox27663c52008-10-10 02:22:59 -0400588 unsigned long long value;
Corentin Chary9a816852007-03-11 10:25:38 +0100589 acpi_status rv = AE_OK;
Corentin Chary6b7091e2007-01-26 14:04:45 +0100590
Corentin Charyd99b5772010-01-22 21:20:57 +0100591 rv = acpi_evaluate_integer(asus->handle, METHOD_BRIGHTNESS_GET,
592 NULL, &value);
Corentin Chary9a816852007-03-11 10:25:38 +0100593 if (ACPI_FAILURE(rv))
Corentin Chary2fcc23d2009-06-19 14:52:03 +0200594 pr_warning("Error reading brightness\n");
Corentin Chary6b7091e2007-01-26 14:04:45 +0100595
596 return value;
597}
598
Corentin Chary4d441512010-01-13 22:26:24 +0100599static int asus_set_brightness(struct backlight_device *bd, int value)
Corentin Chary6b7091e2007-01-26 14:04:45 +0100600{
Corentin Charyd99b5772010-01-22 21:20:57 +0100601 struct asus_laptop *asus = bl_get_data(bd);
602
603 if (write_acpi_int(asus->handle, METHOD_BRIGHTNESS_SET, value)) {
Corentin Chary2fcc23d2009-06-19 14:52:03 +0200604 pr_warning("Error changing brightness\n");
Corentin Charye5b50f62009-11-28 10:19:55 +0100605 return -EIO;
Corentin Chary6b7091e2007-01-26 14:04:45 +0100606 }
Corentin Charye5b50f62009-11-28 10:19:55 +0100607 return 0;
Corentin Chary6b7091e2007-01-26 14:04:45 +0100608}
609
610static int update_bl_status(struct backlight_device *bd)
611{
Corentin Chary9129d142009-12-01 22:39:41 +0100612 struct asus_laptop *asus = bl_get_data(bd);
Corentin Chary6b7091e2007-01-26 14:04:45 +0100613 int rv;
Richard Purdie599a52d2007-02-10 23:07:48 +0000614 int value = bd->props.brightness;
Corentin Chary6b7091e2007-01-26 14:04:45 +0100615
Corentin Chary4d441512010-01-13 22:26:24 +0100616 rv = asus_set_brightness(bd, value);
Len Brown8def05f2007-01-30 01:46:43 -0500617 if (rv)
Corentin Chary6b7091e2007-01-26 14:04:45 +0100618 return rv;
619
Richard Purdie599a52d2007-02-10 23:07:48 +0000620 value = (bd->props.power == FB_BLANK_UNBLANK) ? 1 : 0;
Corentin Chary3e68ae72010-01-13 22:10:39 +0100621 return asus_lcd_set(asus, value);
Corentin Chary6b7091e2007-01-26 14:04:45 +0100622}
623
Corentin Charybe4ee822009-12-06 16:27:09 +0100624static struct backlight_ops asusbl_ops = {
Corentin Chary4d441512010-01-13 22:26:24 +0100625 .get_brightness = asus_read_brightness,
Corentin Charybe4ee822009-12-06 16:27:09 +0100626 .update_status = update_bl_status,
627};
628
Corentin Charya539df52010-01-25 22:53:21 +0100629static int asus_backlight_notify(struct asus_laptop *asus)
630{
631 struct backlight_device *bd = asus->backlight_device;
632 int old = bd->props.brightness;
633
634 backlight_force_update(bd, BACKLIGHT_UPDATE_HOTKEY);
635
636 return old;
637}
638
Corentin Charybe4ee822009-12-06 16:27:09 +0100639static int asus_backlight_init(struct asus_laptop *asus)
640{
641 struct backlight_device *bd;
642 struct device *dev = &asus->platform_device->dev;
Matthew Garretta19a6ee2010-02-17 16:39:44 -0500643 struct backlight_properties props;
Corentin Charybe4ee822009-12-06 16:27:09 +0100644
Corentin Charyd99b5772010-01-22 21:20:57 +0100645 if (!acpi_check_handle(asus->handle, METHOD_BRIGHTNESS_GET, NULL) &&
646 !acpi_check_handle(asus->handle, METHOD_BRIGHTNESS_SET, NULL) &&
647 lcd_switch_handle) {
Matthew Garretta19a6ee2010-02-17 16:39:44 -0500648 memset(&props, 0, sizeof(struct backlight_properties));
649 props.max_brightness = 15;
650
Corentin Charybe4ee822009-12-06 16:27:09 +0100651 bd = backlight_device_register(ASUS_LAPTOP_FILE, dev,
Matthew Garretta19a6ee2010-02-17 16:39:44 -0500652 asus, &asusbl_ops, &props);
Corentin Charybe4ee822009-12-06 16:27:09 +0100653 if (IS_ERR(bd)) {
654 pr_err("Could not register asus backlight device\n");
655 asus->backlight_device = NULL;
656 return PTR_ERR(bd);
657 }
658
659 asus->backlight_device = bd;
660
Corentin Charybe4ee822009-12-06 16:27:09 +0100661 bd->props.power = FB_BLANK_UNBLANK;
Corentin Charyd99b5772010-01-22 21:20:57 +0100662 bd->props.brightness = asus_read_brightness(bd);
Corentin Charybe4ee822009-12-06 16:27:09 +0100663 backlight_update_status(bd);
664 }
665 return 0;
666}
667
668static void asus_backlight_exit(struct asus_laptop *asus)
669{
670 if (asus->backlight_device)
671 backlight_device_unregister(asus->backlight_device);
Corentin Charya539df52010-01-25 22:53:21 +0100672 asus->backlight_device = NULL;
Corentin Charybe4ee822009-12-06 16:27:09 +0100673}
674
Corentin Chary85091b72007-01-26 14:04:30 +0100675/*
676 * Platform device handlers
677 */
678
679/*
680 * We write our info in page, we begin at offset off and cannot write more
681 * than count bytes. We set eof to 1 if we handle those 2 values. We return the
682 * number of bytes written in page
683 */
684static ssize_t show_infos(struct device *dev,
Len Brown8def05f2007-01-30 01:46:43 -0500685 struct device_attribute *attr, char *page)
Corentin Chary85091b72007-01-26 14:04:30 +0100686{
Corentin Chary9129d142009-12-01 22:39:41 +0100687 struct asus_laptop *asus = dev_get_drvdata(dev);
Corentin Chary85091b72007-01-26 14:04:30 +0100688 int len = 0;
Matthew Wilcox27663c52008-10-10 02:22:59 -0400689 unsigned long long temp;
Corentin Charybe966662009-08-29 10:28:29 +0200690 char buf[16]; /* enough for all info */
Corentin Chary9a816852007-03-11 10:25:38 +0100691 acpi_status rv = AE_OK;
692
Corentin Chary85091b72007-01-26 14:04:30 +0100693 /*
Corentin Chary060cbce2010-01-28 10:52:40 +0100694 * We use the easy way, we don't care of off and count,
695 * so we don't set eof to 1
Corentin Chary85091b72007-01-26 14:04:30 +0100696 */
697
Corentin Chary50a90c42009-11-30 21:55:12 +0100698 len += sprintf(page, ASUS_LAPTOP_NAME " " ASUS_LAPTOP_VERSION "\n");
699 len += sprintf(page + len, "Model reference : %s\n", asus->name);
Corentin Chary85091b72007-01-26 14:04:30 +0100700 /*
701 * The SFUN method probably allows the original driver to get the list
702 * of features supported by a given model. For now, 0x0100 or 0x0800
703 * bit signifies that the laptop is equipped with a Wi-Fi MiniPCI card.
704 * The significance of others is yet to be found.
705 */
Corentin Chary50a90c42009-11-30 21:55:12 +0100706 rv = acpi_evaluate_integer(asus->handle, "SFUN", NULL, &temp);
Corentin Chary9a816852007-03-11 10:25:38 +0100707 if (!ACPI_FAILURE(rv))
Corentin Chary1d4a3802009-08-28 12:56:46 +0000708 len += sprintf(page + len, "SFUN value : %#x\n",
709 (uint) temp);
710 /*
711 * The HWRS method return informations about the hardware.
712 * 0x80 bit is for WLAN, 0x100 for Bluetooth.
713 * The significance of others is yet to be found.
714 * If we don't find the method, we assume the device are present.
715 */
Corentin Chary50a90c42009-11-30 21:55:12 +0100716 rv = acpi_evaluate_integer(asus->handle, "HRWS", NULL, &temp);
Corentin Chary1d4a3802009-08-28 12:56:46 +0000717 if (!ACPI_FAILURE(rv))
718 len += sprintf(page + len, "HRWS value : %#x\n",
Corentin Chary9a816852007-03-11 10:25:38 +0100719 (uint) temp);
Corentin Chary85091b72007-01-26 14:04:30 +0100720 /*
721 * Another value for userspace: the ASYM method returns 0x02 for
722 * battery low and 0x04 for battery critical, its readings tend to be
723 * more accurate than those provided by _BST.
724 * Note: since not all the laptops provide this method, errors are
725 * silently ignored.
726 */
Corentin Chary50a90c42009-11-30 21:55:12 +0100727 rv = acpi_evaluate_integer(asus->handle, "ASYM", NULL, &temp);
Corentin Chary9a816852007-03-11 10:25:38 +0100728 if (!ACPI_FAILURE(rv))
Corentin Chary1d4a3802009-08-28 12:56:46 +0000729 len += sprintf(page + len, "ASYM value : %#x\n",
Corentin Chary9a816852007-03-11 10:25:38 +0100730 (uint) temp);
Corentin Chary7c247642009-11-30 22:13:54 +0100731 if (asus->dsdt_info) {
732 snprintf(buf, 16, "%d", asus->dsdt_info->length);
Corentin Chary85091b72007-01-26 14:04:30 +0100733 len += sprintf(page + len, "DSDT length : %s\n", buf);
Corentin Chary7c247642009-11-30 22:13:54 +0100734 snprintf(buf, 16, "%d", asus->dsdt_info->checksum);
Corentin Chary85091b72007-01-26 14:04:30 +0100735 len += sprintf(page + len, "DSDT checksum : %s\n", buf);
Corentin Chary7c247642009-11-30 22:13:54 +0100736 snprintf(buf, 16, "%d", asus->dsdt_info->revision);
Corentin Chary85091b72007-01-26 14:04:30 +0100737 len += sprintf(page + len, "DSDT revision : %s\n", buf);
Corentin Chary7c247642009-11-30 22:13:54 +0100738 snprintf(buf, 7, "%s", asus->dsdt_info->oem_id);
Corentin Chary85091b72007-01-26 14:04:30 +0100739 len += sprintf(page + len, "OEM id : %s\n", buf);
Corentin Chary7c247642009-11-30 22:13:54 +0100740 snprintf(buf, 9, "%s", asus->dsdt_info->oem_table_id);
Corentin Chary85091b72007-01-26 14:04:30 +0100741 len += sprintf(page + len, "OEM table id : %s\n", buf);
Corentin Chary7c247642009-11-30 22:13:54 +0100742 snprintf(buf, 16, "%x", asus->dsdt_info->oem_revision);
Corentin Chary85091b72007-01-26 14:04:30 +0100743 len += sprintf(page + len, "OEM revision : 0x%s\n", buf);
Corentin Chary7c247642009-11-30 22:13:54 +0100744 snprintf(buf, 5, "%s", asus->dsdt_info->asl_compiler_id);
Corentin Chary85091b72007-01-26 14:04:30 +0100745 len += sprintf(page + len, "ASL comp vendor id : %s\n", buf);
Corentin Chary7c247642009-11-30 22:13:54 +0100746 snprintf(buf, 16, "%x", asus->dsdt_info->asl_compiler_revision);
Corentin Chary85091b72007-01-26 14:04:30 +0100747 len += sprintf(page + len, "ASL comp revision : 0x%s\n", buf);
748 }
749
750 return len;
751}
752
753static int parse_arg(const char *buf, unsigned long count, int *val)
754{
755 if (!count)
756 return 0;
757 if (count > 31)
758 return -EINVAL;
759 if (sscanf(buf, "%i", val) != 1)
760 return -EINVAL;
761 return count;
762}
763
Corentin Chary17e78f62010-01-13 22:21:33 +0100764static ssize_t sysfs_acpi_set(struct asus_laptop *asus,
765 const char *buf, size_t count,
Corentin Charyd99b5772010-01-22 21:20:57 +0100766 const char *method)
Corentin Chary4564de12007-01-26 14:04:40 +0100767{
768 int rv, value;
769 int out = 0;
770
771 rv = parse_arg(buf, count, &value);
772 if (rv > 0)
773 out = value ? 1 : 0;
774
Corentin Charyd99b5772010-01-22 21:20:57 +0100775 if (write_acpi_int(asus->handle, method, value))
Corentin Chary17e78f62010-01-13 22:21:33 +0100776 return -ENODEV;
Corentin Chary4564de12007-01-26 14:04:40 +0100777 return rv;
778}
779
780/*
Corentin Chary722ad972007-01-26 14:04:55 +0100781 * LEDD display
782 */
783static ssize_t show_ledd(struct device *dev,
784 struct device_attribute *attr, char *buf)
785{
Corentin Chary9129d142009-12-01 22:39:41 +0100786 struct asus_laptop *asus = dev_get_drvdata(dev);
787
Corentin Chary50a90c42009-11-30 21:55:12 +0100788 return sprintf(buf, "0x%08x\n", asus->ledd_status);
Corentin Chary722ad972007-01-26 14:04:55 +0100789}
790
791static ssize_t store_ledd(struct device *dev, struct device_attribute *attr,
792 const char *buf, size_t count)
793{
Corentin Chary9129d142009-12-01 22:39:41 +0100794 struct asus_laptop *asus = dev_get_drvdata(dev);
Corentin Chary722ad972007-01-26 14:04:55 +0100795 int rv, value;
796
797 rv = parse_arg(buf, count, &value);
798 if (rv > 0) {
Axel Lin6a984a02010-07-20 15:19:48 -0700799 if (write_acpi_int(asus->handle, METHOD_LEDD, value)) {
Corentin Chary2fcc23d2009-06-19 14:52:03 +0200800 pr_warning("LED display write failed\n");
Axel Lin6a984a02010-07-20 15:19:48 -0700801 return -ENODEV;
802 }
803 asus->ledd_status = (u32) value;
Corentin Chary722ad972007-01-26 14:04:55 +0100804 }
805 return rv;
806}
807
808/*
Corentin Charyaa9df932010-01-13 21:49:10 +0100809 * Wireless
810 */
811static int asus_wireless_status(struct asus_laptop *asus, int mask)
812{
813 unsigned long long status;
814 acpi_status rv = AE_OK;
815
816 if (!asus->have_rsts)
817 return (asus->wireless_status & mask) ? 1 : 0;
818
Corentin Charyd99b5772010-01-22 21:20:57 +0100819 rv = acpi_evaluate_integer(asus->handle, METHOD_WL_STATUS,
820 NULL, &status);
Corentin Charyaa9df932010-01-13 21:49:10 +0100821 if (ACPI_FAILURE(rv)) {
822 pr_warning("Error reading Wireless status\n");
823 return -EINVAL;
824 }
825 return !!(status & mask);
826}
827
828/*
Corentin Chary4564de12007-01-26 14:04:40 +0100829 * WLAN
830 */
Corentin Charye5593bf2010-01-17 17:20:11 +0100831static int asus_wlan_set(struct asus_laptop *asus, int status)
832{
833 if (write_acpi_int(asus->handle, METHOD_WLAN, !!status)) {
834 pr_warning("Error setting wlan status to %d", status);
835 return -EIO;
836 }
837 return 0;
838}
839
Corentin Chary4564de12007-01-26 14:04:40 +0100840static ssize_t show_wlan(struct device *dev,
841 struct device_attribute *attr, char *buf)
842{
Corentin Chary9129d142009-12-01 22:39:41 +0100843 struct asus_laptop *asus = dev_get_drvdata(dev);
844
Corentin Chary17e78f62010-01-13 22:21:33 +0100845 return sprintf(buf, "%d\n", asus_wireless_status(asus, WL_RSTS));
Corentin Chary4564de12007-01-26 14:04:40 +0100846}
847
848static ssize_t store_wlan(struct device *dev, struct device_attribute *attr,
849 const char *buf, size_t count)
850{
Corentin Chary9129d142009-12-01 22:39:41 +0100851 struct asus_laptop *asus = dev_get_drvdata(dev);
852
Corentin Charyd99b5772010-01-22 21:20:57 +0100853 return sysfs_acpi_set(asus, buf, count, METHOD_WLAN);
Corentin Chary4564de12007-01-26 14:04:40 +0100854}
855
856/*
857 * Bluetooth
858 */
Corentin Charye5593bf2010-01-17 17:20:11 +0100859static int asus_bluetooth_set(struct asus_laptop *asus, int status)
860{
861 if (write_acpi_int(asus->handle, METHOD_BLUETOOTH, !!status)) {
862 pr_warning("Error setting bluetooth status to %d", status);
863 return -EIO;
864 }
865 return 0;
866}
867
Corentin Chary4564de12007-01-26 14:04:40 +0100868static ssize_t show_bluetooth(struct device *dev,
869 struct device_attribute *attr, char *buf)
870{
Corentin Chary9129d142009-12-01 22:39:41 +0100871 struct asus_laptop *asus = dev_get_drvdata(dev);
872
Corentin Chary17e78f62010-01-13 22:21:33 +0100873 return sprintf(buf, "%d\n", asus_wireless_status(asus, BT_RSTS));
Corentin Chary4564de12007-01-26 14:04:40 +0100874}
875
Len Brown8def05f2007-01-30 01:46:43 -0500876static ssize_t store_bluetooth(struct device *dev,
877 struct device_attribute *attr, const char *buf,
878 size_t count)
Corentin Chary4564de12007-01-26 14:04:40 +0100879{
Corentin Chary9129d142009-12-01 22:39:41 +0100880 struct asus_laptop *asus = dev_get_drvdata(dev);
881
Corentin Charyd99b5772010-01-22 21:20:57 +0100882 return sysfs_acpi_set(asus, buf, count, METHOD_BLUETOOTH);
Corentin Chary4564de12007-01-26 14:04:40 +0100883}
884
Corentin Chary78127b42007-01-26 14:04:49 +0100885/*
886 * Display
887 */
Corentin Chary4d441512010-01-13 22:26:24 +0100888static void asus_set_display(struct asus_laptop *asus, int value)
Corentin Chary78127b42007-01-26 14:04:49 +0100889{
890 /* no sanity check needed for now */
Corentin Charyd99b5772010-01-22 21:20:57 +0100891 if (write_acpi_int(asus->handle, METHOD_SWITCH_DISPLAY, value))
Corentin Chary2fcc23d2009-06-19 14:52:03 +0200892 pr_warning("Error setting display\n");
Corentin Chary78127b42007-01-26 14:04:49 +0100893 return;
894}
895
Corentin Chary9129d142009-12-01 22:39:41 +0100896static int read_display(struct asus_laptop *asus)
Corentin Chary78127b42007-01-26 14:04:49 +0100897{
Matthew Wilcox27663c52008-10-10 02:22:59 -0400898 unsigned long long value = 0;
Corentin Chary9a816852007-03-11 10:25:38 +0100899 acpi_status rv = AE_OK;
Corentin Chary78127b42007-01-26 14:04:49 +0100900
Corentin Charybe966662009-08-29 10:28:29 +0200901 /*
902 * In most of the case, we know how to set the display, but sometime
903 * we can't read it
904 */
Len Brown8def05f2007-01-30 01:46:43 -0500905 if (display_get_handle) {
Corentin Chary9a816852007-03-11 10:25:38 +0100906 rv = acpi_evaluate_integer(display_get_handle, NULL,
907 NULL, &value);
908 if (ACPI_FAILURE(rv))
Corentin Chary2fcc23d2009-06-19 14:52:03 +0200909 pr_warning("Error reading display status\n");
Corentin Chary78127b42007-01-26 14:04:49 +0100910 }
911
Corentin Chary060cbce2010-01-28 10:52:40 +0100912 value &= 0x0F; /* needed for some models, shouldn't hurt others */
Corentin Chary78127b42007-01-26 14:04:49 +0100913
914 return value;
915}
Len Brown8def05f2007-01-30 01:46:43 -0500916
Corentin Chary78127b42007-01-26 14:04:49 +0100917/*
918 * Now, *this* one could be more user-friendly, but so far, no-one has
919 * complained. The significance of bits is the same as in store_disp()
920 */
921static ssize_t show_disp(struct device *dev,
922 struct device_attribute *attr, char *buf)
923{
Corentin Chary9129d142009-12-01 22:39:41 +0100924 struct asus_laptop *asus = dev_get_drvdata(dev);
925
Corentin Chary2a1fd642010-01-26 21:02:23 +0100926 if (!display_get_handle)
927 return -ENODEV;
Corentin Chary9129d142009-12-01 22:39:41 +0100928 return sprintf(buf, "%d\n", read_display(asus));
Corentin Chary78127b42007-01-26 14:04:49 +0100929}
930
931/*
932 * Experimental support for display switching. As of now: 1 should activate
933 * the LCD output, 2 should do for CRT, 4 for TV-Out and 8 for DVI.
934 * Any combination (bitwise) of these will suffice. I never actually tested 4
935 * displays hooked up simultaneously, so be warned. See the acpi4asus README
936 * for more info.
937 */
938static ssize_t store_disp(struct device *dev, struct device_attribute *attr,
939 const char *buf, size_t count)
940{
Corentin Chary9129d142009-12-01 22:39:41 +0100941 struct asus_laptop *asus = dev_get_drvdata(dev);
Corentin Chary78127b42007-01-26 14:04:49 +0100942 int rv, value;
943
944 rv = parse_arg(buf, count, &value);
945 if (rv > 0)
Corentin Chary4d441512010-01-13 22:26:24 +0100946 asus_set_display(asus, value);
Corentin Chary78127b42007-01-26 14:04:49 +0100947 return rv;
948}
949
Corentin Chary8b857352007-01-26 14:04:58 +0100950/*
951 * Light Sens
952 */
Corentin Chary4d441512010-01-13 22:26:24 +0100953static void asus_als_switch(struct asus_laptop *asus, int value)
Corentin Chary8b857352007-01-26 14:04:58 +0100954{
Corentin Charyd99b5772010-01-22 21:20:57 +0100955 if (write_acpi_int(asus->handle, METHOD_ALS_CONTROL, value))
Corentin Chary2fcc23d2009-06-19 14:52:03 +0200956 pr_warning("Error setting light sensor switch\n");
Corentin Chary50a90c42009-11-30 21:55:12 +0100957 asus->light_switch = value;
Corentin Chary8b857352007-01-26 14:04:58 +0100958}
959
960static ssize_t show_lssw(struct device *dev,
961 struct device_attribute *attr, char *buf)
962{
Corentin Chary9129d142009-12-01 22:39:41 +0100963 struct asus_laptop *asus = dev_get_drvdata(dev);
964
Corentin Chary50a90c42009-11-30 21:55:12 +0100965 return sprintf(buf, "%d\n", asus->light_switch);
Corentin Chary8b857352007-01-26 14:04:58 +0100966}
967
968static ssize_t store_lssw(struct device *dev, struct device_attribute *attr,
969 const char *buf, size_t count)
970{
Corentin Chary9129d142009-12-01 22:39:41 +0100971 struct asus_laptop *asus = dev_get_drvdata(dev);
Corentin Chary8b857352007-01-26 14:04:58 +0100972 int rv, value;
973
974 rv = parse_arg(buf, count, &value);
975 if (rv > 0)
Corentin Chary4d441512010-01-13 22:26:24 +0100976 asus_als_switch(asus, value ? 1 : 0);
Corentin Chary8b857352007-01-26 14:04:58 +0100977
978 return rv;
979}
980
Corentin Chary4d441512010-01-13 22:26:24 +0100981static void asus_als_level(struct asus_laptop *asus, int value)
Corentin Chary8b857352007-01-26 14:04:58 +0100982{
Corentin Charyd99b5772010-01-22 21:20:57 +0100983 if (write_acpi_int(asus->handle, METHOD_ALS_LEVEL, value))
Corentin Chary2fcc23d2009-06-19 14:52:03 +0200984 pr_warning("Error setting light sensor level\n");
Corentin Chary50a90c42009-11-30 21:55:12 +0100985 asus->light_level = value;
Corentin Chary8b857352007-01-26 14:04:58 +0100986}
987
988static ssize_t show_lslvl(struct device *dev,
989 struct device_attribute *attr, char *buf)
990{
Corentin Chary9129d142009-12-01 22:39:41 +0100991 struct asus_laptop *asus = dev_get_drvdata(dev);
992
Corentin Chary50a90c42009-11-30 21:55:12 +0100993 return sprintf(buf, "%d\n", asus->light_level);
Corentin Chary8b857352007-01-26 14:04:58 +0100994}
995
996static ssize_t store_lslvl(struct device *dev, struct device_attribute *attr,
997 const char *buf, size_t count)
998{
Corentin Chary9129d142009-12-01 22:39:41 +0100999 struct asus_laptop *asus = dev_get_drvdata(dev);
Corentin Chary8b857352007-01-26 14:04:58 +01001000 int rv, value;
1001
1002 rv = parse_arg(buf, count, &value);
1003 if (rv > 0) {
1004 value = (0 < value) ? ((15 < value) ? 15 : value) : 0;
1005 /* 0 <= value <= 15 */
Corentin Chary4d441512010-01-13 22:26:24 +01001006 asus_als_level(asus, value);
Corentin Chary8b857352007-01-26 14:04:58 +01001007 }
1008
1009 return rv;
1010}
1011
Corentin Charye539c2f2007-05-06 14:47:06 +02001012/*
1013 * GPS
1014 */
Corentin Chary6358bf22010-01-13 21:55:44 +01001015static int asus_gps_status(struct asus_laptop *asus)
1016{
1017 unsigned long long status;
1018 acpi_status rv = AE_OK;
1019
Corentin Charyd99b5772010-01-22 21:20:57 +01001020 rv = acpi_evaluate_integer(asus->handle, METHOD_GPS_STATUS,
1021 NULL, &status);
Corentin Chary6358bf22010-01-13 21:55:44 +01001022 if (ACPI_FAILURE(rv)) {
1023 pr_warning("Error reading GPS status\n");
1024 return -ENODEV;
1025 }
1026 return !!status;
1027}
1028
1029static int asus_gps_switch(struct asus_laptop *asus, int status)
1030{
Corentin Charyd99b5772010-01-22 21:20:57 +01001031 const char *meth = status ? METHOD_GPS_ON : METHOD_GPS_OFF;
Corentin Chary6358bf22010-01-13 21:55:44 +01001032
Corentin Charyd99b5772010-01-22 21:20:57 +01001033 if (write_acpi_int(asus->handle, meth, 0x02))
Corentin Chary6358bf22010-01-13 21:55:44 +01001034 return -ENODEV;
1035 return 0;
1036}
1037
Corentin Charye539c2f2007-05-06 14:47:06 +02001038static ssize_t show_gps(struct device *dev,
1039 struct device_attribute *attr, char *buf)
1040{
Corentin Chary9129d142009-12-01 22:39:41 +01001041 struct asus_laptop *asus = dev_get_drvdata(dev);
1042
Corentin Chary6358bf22010-01-13 21:55:44 +01001043 return sprintf(buf, "%d\n", asus_gps_status(asus));
Corentin Charye539c2f2007-05-06 14:47:06 +02001044}
1045
1046static ssize_t store_gps(struct device *dev, struct device_attribute *attr,
1047 const char *buf, size_t count)
1048{
Corentin Chary060cbce2010-01-28 10:52:40 +01001049 struct asus_laptop *asus = dev_get_drvdata(dev);
Corentin Chary6358bf22010-01-13 21:55:44 +01001050 int rv, value;
1051 int ret;
Corentin Chary9129d142009-12-01 22:39:41 +01001052
Corentin Chary6358bf22010-01-13 21:55:44 +01001053 rv = parse_arg(buf, count, &value);
1054 if (rv <= 0)
1055 return -EINVAL;
1056 ret = asus_gps_switch(asus, !!value);
1057 if (ret)
1058 return ret;
Corentin Chary18e13112010-01-25 23:29:24 +01001059 rfkill_set_sw_state(asus->gps_rfkill, !value);
Corentin Chary6358bf22010-01-13 21:55:44 +01001060 return rv;
Corentin Charye539c2f2007-05-06 14:47:06 +02001061}
1062
Corentin Chary034ce902009-01-20 16:17:43 +01001063/*
Corentin Chary18e13112010-01-25 23:29:24 +01001064 * rfkill
1065 */
1066static int asus_gps_rfkill_set(void *data, bool blocked)
1067{
1068 acpi_handle handle = data;
1069
1070 return asus_gps_switch(handle, !blocked);
1071}
1072
1073static const struct rfkill_ops asus_gps_rfkill_ops = {
1074 .set_block = asus_gps_rfkill_set,
1075};
1076
1077static void asus_rfkill_exit(struct asus_laptop *asus)
1078{
1079 if (asus->gps_rfkill) {
1080 rfkill_unregister(asus->gps_rfkill);
1081 rfkill_destroy(asus->gps_rfkill);
1082 asus->gps_rfkill = NULL;
1083 }
1084}
1085
1086static int asus_rfkill_init(struct asus_laptop *asus)
1087{
1088 int result;
1089
1090 if (acpi_check_handle(asus->handle, METHOD_GPS_ON, NULL) ||
1091 acpi_check_handle(asus->handle, METHOD_GPS_OFF, NULL) ||
1092 acpi_check_handle(asus->handle, METHOD_GPS_STATUS, NULL))
1093 return 0;
1094
1095 asus->gps_rfkill = rfkill_alloc("asus-gps", &asus->platform_device->dev,
1096 RFKILL_TYPE_GPS,
1097 &asus_gps_rfkill_ops, NULL);
1098 if (!asus->gps_rfkill)
1099 return -EINVAL;
1100
1101 result = rfkill_register(asus->gps_rfkill);
1102 if (result) {
1103 rfkill_destroy(asus->gps_rfkill);
1104 asus->gps_rfkill = NULL;
1105 }
1106
1107 return result;
1108}
1109
1110/*
Corentin Charybe4ee822009-12-06 16:27:09 +01001111 * Input device (i.e. hotkeys)
Corentin Chary034ce902009-01-20 16:17:43 +01001112 */
Corentin Charybe4ee822009-12-06 16:27:09 +01001113static void asus_input_notify(struct asus_laptop *asus, int event)
1114{
Corentin Chary66a71dd2010-01-25 22:50:11 +01001115 if (asus->inputdev)
1116 sparse_keymap_report_event(asus->inputdev, event, 1, true);
Corentin Charybe4ee822009-12-06 16:27:09 +01001117}
1118
1119static int asus_input_init(struct asus_laptop *asus)
1120{
Corentin Chary66a71dd2010-01-25 22:50:11 +01001121 struct input_dev *input;
1122 int error;
Corentin Charybe4ee822009-12-06 16:27:09 +01001123
Corentin Chary66a71dd2010-01-25 22:50:11 +01001124 input = input_allocate_device();
1125 if (!input) {
Corentin Charybe4ee822009-12-06 16:27:09 +01001126 pr_info("Unable to allocate input device\n");
Axel Lin45036ae2010-07-05 15:29:00 +08001127 return -ENOMEM;
Corentin Charybe4ee822009-12-06 16:27:09 +01001128 }
Corentin Chary66a71dd2010-01-25 22:50:11 +01001129 input->name = "Asus Laptop extra buttons";
1130 input->phys = ASUS_LAPTOP_FILE "/input0";
1131 input->id.bustype = BUS_HOST;
1132 input->dev.parent = &asus->platform_device->dev;
1133 input_set_drvdata(input, asus);
Corentin Charybe4ee822009-12-06 16:27:09 +01001134
Corentin Chary66a71dd2010-01-25 22:50:11 +01001135 error = sparse_keymap_setup(input, asus_keymap, NULL);
1136 if (error) {
1137 pr_err("Unable to setup input device keymap\n");
Axel Lin45036ae2010-07-05 15:29:00 +08001138 goto err_free_dev;
Corentin Charybe4ee822009-12-06 16:27:09 +01001139 }
Corentin Chary66a71dd2010-01-25 22:50:11 +01001140 error = input_register_device(input);
1141 if (error) {
Corentin Charybe4ee822009-12-06 16:27:09 +01001142 pr_info("Unable to register input device\n");
Axel Lin45036ae2010-07-05 15:29:00 +08001143 goto err_free_keymap;
Corentin Charybe4ee822009-12-06 16:27:09 +01001144 }
Corentin Chary66a71dd2010-01-25 22:50:11 +01001145
1146 asus->inputdev = input;
1147 return 0;
1148
Axel Lin45036ae2010-07-05 15:29:00 +08001149err_free_keymap:
Corentin Chary66a71dd2010-01-25 22:50:11 +01001150 sparse_keymap_free(input);
Axel Lin45036ae2010-07-05 15:29:00 +08001151err_free_dev:
Corentin Chary66a71dd2010-01-25 22:50:11 +01001152 input_free_device(input);
1153 return error;
Corentin Charybe4ee822009-12-06 16:27:09 +01001154}
1155
1156static void asus_input_exit(struct asus_laptop *asus)
1157{
Corentin Chary66a71dd2010-01-25 22:50:11 +01001158 if (asus->inputdev) {
1159 sparse_keymap_free(asus->inputdev);
Corentin Charybe4ee822009-12-06 16:27:09 +01001160 input_unregister_device(asus->inputdev);
Corentin Chary66a71dd2010-01-25 22:50:11 +01001161 }
Corentin Charybe4ee822009-12-06 16:27:09 +01001162}
1163
1164/*
1165 * ACPI driver
1166 */
Corentin Chary600ad522009-11-30 21:42:42 +01001167static void asus_acpi_notify(struct acpi_device *device, u32 event)
Corentin Chary85091b72007-01-26 14:04:30 +01001168{
Corentin Chary9129d142009-12-01 22:39:41 +01001169 struct asus_laptop *asus = acpi_driver_data(device);
Corentin Chary6050c8d2009-02-15 19:30:19 +01001170 u16 count;
Corentin Chary034ce902009-01-20 16:17:43 +01001171
Corentin Chary6b7091e2007-01-26 14:04:45 +01001172 /*
1173 * We need to tell the backlight device when the backlight power is
1174 * switched
1175 */
Corentin Chary3e68ae72010-01-13 22:10:39 +01001176 if (event == ATKD_LCD_ON)
Corentin Chary9129d142009-12-01 22:39:41 +01001177 lcd_blank(asus, FB_BLANK_UNBLANK);
Corentin Chary3e68ae72010-01-13 22:10:39 +01001178 else if (event == ATKD_LCD_OFF)
Corentin Chary9129d142009-12-01 22:39:41 +01001179 lcd_blank(asus, FB_BLANK_POWERDOWN);
Corentin Chary6b7091e2007-01-26 14:04:45 +01001180
Corentin Chary619d8b12009-11-28 10:35:37 +01001181 /* TODO Find a better way to handle events count. */
Corentin Chary50a90c42009-11-30 21:55:12 +01001182 count = asus->event_count[event % 128]++;
1183 acpi_bus_generate_proc_event(asus->device, event, count);
1184 acpi_bus_generate_netlink_event(asus->device->pnp.device_class,
1185 dev_name(&asus->device->dev), event,
Corentin Chary6050c8d2009-02-15 19:30:19 +01001186 count);
Corentin Chary85091b72007-01-26 14:04:30 +01001187
Corentin Charya539df52010-01-25 22:53:21 +01001188 /* Brightness events are special */
1189 if (event >= ATKD_BR_MIN && event <= ATKD_BR_MAX) {
1190
1191 /* Ignore them completely if the acpi video driver is used */
1192 if (asus->backlight_device != NULL) {
1193 /* Update the backlight device. */
1194 asus_backlight_notify(asus);
1195 }
1196 return ;
1197 }
Corentin Charybe4ee822009-12-06 16:27:09 +01001198 asus_input_notify(asus, event);
Corentin Chary85091b72007-01-26 14:04:30 +01001199}
1200
Corentin Chary2a1fd642010-01-26 21:02:23 +01001201static DEVICE_ATTR(infos, S_IRUGO, show_infos, NULL);
1202static DEVICE_ATTR(wlan, S_IRUGO | S_IWUSR, show_wlan, store_wlan);
1203static DEVICE_ATTR(bluetooth, S_IRUGO | S_IWUSR, show_bluetooth,
1204 store_bluetooth);
1205static DEVICE_ATTR(display, S_IRUGO | S_IWUSR, show_disp, store_disp);
1206static DEVICE_ATTR(ledd, S_IRUGO | S_IWUSR, show_ledd, store_ledd);
1207static DEVICE_ATTR(ls_level, S_IRUGO | S_IWUSR, show_lslvl, store_lslvl);
1208static DEVICE_ATTR(ls_switch, S_IRUGO | S_IWUSR, show_lssw, store_lssw);
1209static DEVICE_ATTR(gps, S_IRUGO | S_IWUSR, show_gps, store_gps);
1210
1211static void asus_sysfs_exit(struct asus_laptop *asus)
1212{
1213 struct platform_device *device = asus->platform_device;
1214
1215 device_remove_file(&device->dev, &dev_attr_infos);
1216 device_remove_file(&device->dev, &dev_attr_wlan);
1217 device_remove_file(&device->dev, &dev_attr_bluetooth);
1218 device_remove_file(&device->dev, &dev_attr_display);
1219 device_remove_file(&device->dev, &dev_attr_ledd);
1220 device_remove_file(&device->dev, &dev_attr_ls_switch);
1221 device_remove_file(&device->dev, &dev_attr_ls_level);
1222 device_remove_file(&device->dev, &dev_attr_gps);
1223}
1224
1225static int asus_sysfs_init(struct asus_laptop *asus)
1226{
1227 struct platform_device *device = asus->platform_device;
1228 int err;
1229
1230 err = device_create_file(&device->dev, &dev_attr_infos);
1231 if (err)
1232 return err;
1233
1234 if (!acpi_check_handle(asus->handle, METHOD_WLAN, NULL)) {
1235 err = device_create_file(&device->dev, &dev_attr_wlan);
1236 if (err)
1237 return err;
Corentin Chary85091b72007-01-26 14:04:30 +01001238 }
1239
Corentin Chary2a1fd642010-01-26 21:02:23 +01001240 if (!acpi_check_handle(asus->handle, METHOD_BLUETOOTH, NULL)) {
1241 err = device_create_file(&device->dev, &dev_attr_bluetooth);
1242 if (err)
1243 return err;
1244 }
Corentin Chary85091b72007-01-26 14:04:30 +01001245
Corentin Chary2a1fd642010-01-26 21:02:23 +01001246 if (!acpi_check_handle(asus->handle, METHOD_SWITCH_DISPLAY, NULL)) {
1247 err = device_create_file(&device->dev, &dev_attr_display);
1248 if (err)
1249 return err;
1250 }
Corentin Chary85091b72007-01-26 14:04:30 +01001251
Corentin Chary2a1fd642010-01-26 21:02:23 +01001252 if (!acpi_check_handle(asus->handle, METHOD_LEDD, NULL)) {
1253 err = device_create_file(&device->dev, &dev_attr_ledd);
1254 if (err)
1255 return err;
1256 }
Corentin Chary85091b72007-01-26 14:04:30 +01001257
Corentin Chary2a1fd642010-01-26 21:02:23 +01001258 if (!acpi_check_handle(asus->handle, METHOD_ALS_CONTROL, NULL) &&
1259 !acpi_check_handle(asus->handle, METHOD_ALS_LEVEL, NULL)) {
1260 err = device_create_file(&device->dev, &dev_attr_ls_switch);
1261 if (err)
1262 return err;
1263 err = device_create_file(&device->dev, &dev_attr_ls_level);
1264 if (err)
1265 return err;
1266 }
1267
1268 if (!acpi_check_handle(asus->handle, METHOD_GPS_ON, NULL) &&
1269 !acpi_check_handle(asus->handle, METHOD_GPS_OFF, NULL) &&
1270 !acpi_check_handle(asus->handle, METHOD_GPS_STATUS, NULL)) {
1271 err = device_create_file(&device->dev, &dev_attr_gps);
1272 if (err)
1273 return err;
1274 }
1275
1276 return err;
1277}
Corentin Chary85091b72007-01-26 14:04:30 +01001278
Corentin Chary9129d142009-12-01 22:39:41 +01001279static int asus_platform_init(struct asus_laptop *asus)
Corentin Chary600ad522009-11-30 21:42:42 +01001280{
Corentin Chary2a1fd642010-01-26 21:02:23 +01001281 int err;
Corentin Chary600ad522009-11-30 21:42:42 +01001282
Corentin Chary50a90c42009-11-30 21:55:12 +01001283 asus->platform_device = platform_device_alloc(ASUS_LAPTOP_FILE, -1);
1284 if (!asus->platform_device)
Corentin Chary600ad522009-11-30 21:42:42 +01001285 return -ENOMEM;
Corentin Chary9129d142009-12-01 22:39:41 +01001286 platform_set_drvdata(asus->platform_device, asus);
Corentin Chary600ad522009-11-30 21:42:42 +01001287
Corentin Chary2a1fd642010-01-26 21:02:23 +01001288 err = platform_device_add(asus->platform_device);
1289 if (err)
Corentin Chary600ad522009-11-30 21:42:42 +01001290 goto fail_platform_device;
1291
Corentin Chary2a1fd642010-01-26 21:02:23 +01001292 err = asus_sysfs_init(asus);
1293 if (err)
Corentin Chary600ad522009-11-30 21:42:42 +01001294 goto fail_sysfs;
1295 return 0;
1296
1297fail_sysfs:
Corentin Chary2a1fd642010-01-26 21:02:23 +01001298 asus_sysfs_exit(asus);
Corentin Chary50a90c42009-11-30 21:55:12 +01001299 platform_device_del(asus->platform_device);
Corentin Chary600ad522009-11-30 21:42:42 +01001300fail_platform_device:
Corentin Chary50a90c42009-11-30 21:55:12 +01001301 platform_device_put(asus->platform_device);
Corentin Chary2a1fd642010-01-26 21:02:23 +01001302 return err;
Corentin Chary600ad522009-11-30 21:42:42 +01001303}
1304
Corentin Chary9129d142009-12-01 22:39:41 +01001305static void asus_platform_exit(struct asus_laptop *asus)
Corentin Chary600ad522009-11-30 21:42:42 +01001306{
Corentin Chary2a1fd642010-01-26 21:02:23 +01001307 asus_sysfs_exit(asus);
Corentin Chary50a90c42009-11-30 21:55:12 +01001308 platform_device_unregister(asus->platform_device);
Corentin Chary600ad522009-11-30 21:42:42 +01001309}
1310
1311static struct platform_driver platform_driver = {
Len Brown8def05f2007-01-30 01:46:43 -05001312 .driver = {
Corentin Chary9129d142009-12-01 22:39:41 +01001313 .name = ASUS_LAPTOP_FILE,
1314 .owner = THIS_MODULE,
1315 }
Corentin Chary85091b72007-01-26 14:04:30 +01001316};
1317
Len Brown8def05f2007-01-30 01:46:43 -05001318static int asus_handle_init(char *name, acpi_handle * handle,
Corentin Chary85091b72007-01-26 14:04:30 +01001319 char **paths, int num_paths)
1320{
1321 int i;
1322 acpi_status status;
1323
1324 for (i = 0; i < num_paths; i++) {
1325 status = acpi_get_handle(NULL, paths[i], handle);
1326 if (ACPI_SUCCESS(status))
1327 return 0;
1328 }
1329
1330 *handle = NULL;
1331 return -ENODEV;
1332}
1333
1334#define ASUS_HANDLE_INIT(object) \
1335 asus_handle_init(#object, &object##_handle, object##_paths, \
1336 ARRAY_SIZE(object##_paths))
1337
Corentin Chary85091b72007-01-26 14:04:30 +01001338/*
Corentin Chary50a90c42009-11-30 21:55:12 +01001339 * This function is used to initialize the context with right values. In this
1340 * method, we can make all the detection we want, and modify the asus_laptop
1341 * struct
Corentin Chary85091b72007-01-26 14:04:30 +01001342 */
Corentin Chary7c247642009-11-30 22:13:54 +01001343static int asus_laptop_get_info(struct asus_laptop *asus)
Corentin Chary85091b72007-01-26 14:04:30 +01001344{
1345 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
Corentin Chary85091b72007-01-26 14:04:30 +01001346 union acpi_object *model = NULL;
Matthew Wilcox27663c52008-10-10 02:22:59 -04001347 unsigned long long bsts_result, hwrs_result;
Corentin Chary85091b72007-01-26 14:04:30 +01001348 char *string = NULL;
1349 acpi_status status;
1350
1351 /*
1352 * Get DSDT headers early enough to allow for differentiating between
1353 * models, but late enough to allow acpi_bus_register_driver() to fail
1354 * before doing anything ACPI-specific. Should we encounter a machine,
1355 * which needs special handling (i.e. its hotkey device has a different
Corentin Chary7c247642009-11-30 22:13:54 +01001356 * HID), this bit will be moved.
Corentin Chary85091b72007-01-26 14:04:30 +01001357 */
Corentin Chary7c247642009-11-30 22:13:54 +01001358 status = acpi_get_table(ACPI_SIG_DSDT, 1, &asus->dsdt_info);
Corentin Chary85091b72007-01-26 14:04:30 +01001359 if (ACPI_FAILURE(status))
Corentin Chary2fcc23d2009-06-19 14:52:03 +02001360 pr_warning("Couldn't get the DSDT table header\n");
Corentin Chary85091b72007-01-26 14:04:30 +01001361
1362 /* We have to write 0 on init this far for all ASUS models */
Corentin Chary50a90c42009-11-30 21:55:12 +01001363 if (write_acpi_int_ret(asus->handle, "INIT", 0, &buffer)) {
Corentin Chary2fcc23d2009-06-19 14:52:03 +02001364 pr_err("Hotkey initialization failed\n");
Corentin Chary85091b72007-01-26 14:04:30 +01001365 return -ENODEV;
1366 }
1367
1368 /* This needs to be called for some laptops to init properly */
Corentin Chary9a816852007-03-11 10:25:38 +01001369 status =
Corentin Chary50a90c42009-11-30 21:55:12 +01001370 acpi_evaluate_integer(asus->handle, "BSTS", NULL, &bsts_result);
Corentin Chary9a816852007-03-11 10:25:38 +01001371 if (ACPI_FAILURE(status))
Corentin Chary2fcc23d2009-06-19 14:52:03 +02001372 pr_warning("Error calling BSTS\n");
Corentin Chary85091b72007-01-26 14:04:30 +01001373 else if (bsts_result)
Corentin Chary2fcc23d2009-06-19 14:52:03 +02001374 pr_notice("BSTS called, 0x%02x returned\n",
Corentin Chary9a816852007-03-11 10:25:38 +01001375 (uint) bsts_result);
Corentin Chary85091b72007-01-26 14:04:30 +01001376
Corentin Chary185e5af2007-03-11 10:27:33 +01001377 /* This too ... */
Corentin Charye5593bf2010-01-17 17:20:11 +01001378 if (write_acpi_int(asus->handle, "CWAP", wapf))
1379 pr_err("Error calling CWAP(%d)\n", wapf);
Corentin Chary85091b72007-01-26 14:04:30 +01001380 /*
1381 * Try to match the object returned by INIT to the specific model.
1382 * Handle every possible object (or the lack of thereof) the DSDT
1383 * writers might throw at us. When in trouble, we pass NULL to
1384 * asus_model_match() and try something completely different.
1385 */
1386 if (buffer.pointer) {
1387 model = buffer.pointer;
1388 switch (model->type) {
1389 case ACPI_TYPE_STRING:
1390 string = model->string.pointer;
1391 break;
1392 case ACPI_TYPE_BUFFER:
1393 string = model->buffer.pointer;
1394 break;
1395 default:
1396 string = "";
1397 break;
1398 }
1399 }
Corentin Chary50a90c42009-11-30 21:55:12 +01001400 asus->name = kstrdup(string, GFP_KERNEL);
Axel Lind8eca112010-06-29 11:09:47 +08001401 if (!asus->name) {
1402 kfree(buffer.pointer);
Corentin Chary85091b72007-01-26 14:04:30 +01001403 return -ENOMEM;
Axel Lind8eca112010-06-29 11:09:47 +08001404 }
Corentin Chary85091b72007-01-26 14:04:30 +01001405
Len Brown8def05f2007-01-30 01:46:43 -05001406 if (*string)
Corentin Chary2fcc23d2009-06-19 14:52:03 +02001407 pr_notice(" %s model detected\n", string);
Corentin Chary85091b72007-01-26 14:04:30 +01001408
Corentin Chary4564de12007-01-26 14:04:40 +01001409 /*
1410 * The HWRS method return informations about the hardware.
1411 * 0x80 bit is for WLAN, 0x100 for Bluetooth.
1412 * The significance of others is yet to be found.
Corentin Chary4564de12007-01-26 14:04:40 +01001413 */
Corentin Chary9a816852007-03-11 10:25:38 +01001414 status =
Corentin Chary50a90c42009-11-30 21:55:12 +01001415 acpi_evaluate_integer(asus->handle, "HRWS", NULL, &hwrs_result);
Corentin Charyd99b5772010-01-22 21:20:57 +01001416 if (!ACPI_FAILURE(status))
1417 pr_notice(" HRWS returned %x", (int)hwrs_result);
Corentin Chary4564de12007-01-26 14:04:40 +01001418
Corentin Charyd99b5772010-01-22 21:20:57 +01001419 if (!acpi_check_handle(asus->handle, METHOD_WL_STATUS, NULL))
Corentin Charyaa9df932010-01-13 21:49:10 +01001420 asus->have_rsts = true;
Corentin Chary4564de12007-01-26 14:04:40 +01001421
Corentin Charyd99b5772010-01-22 21:20:57 +01001422 /* Scheduled for removal */
Corentin Chary6b7091e2007-01-26 14:04:45 +01001423 ASUS_HANDLE_INIT(lcd_switch);
Corentin Chary78127b42007-01-26 14:04:49 +01001424 ASUS_HANDLE_INIT(display_get);
1425
Corentin Chary85091b72007-01-26 14:04:30 +01001426 kfree(model);
1427
1428 return AE_OK;
1429}
1430
Corentin Chary600ad522009-11-30 21:42:42 +01001431static bool asus_device_present;
1432
Corentin Chary9129d142009-12-01 22:39:41 +01001433static int __devinit asus_acpi_init(struct asus_laptop *asus)
Corentin Chary600ad522009-11-30 21:42:42 +01001434{
1435 int result = 0;
1436
Corentin Chary50a90c42009-11-30 21:55:12 +01001437 result = acpi_bus_get_status(asus->device);
Corentin Chary600ad522009-11-30 21:42:42 +01001438 if (result)
1439 return result;
Corentin Chary50a90c42009-11-30 21:55:12 +01001440 if (!asus->device->status.present) {
Corentin Chary600ad522009-11-30 21:42:42 +01001441 pr_err("Hotkey device not present, aborting\n");
1442 return -ENODEV;
1443 }
1444
Corentin Chary7c247642009-11-30 22:13:54 +01001445 result = asus_laptop_get_info(asus);
Corentin Chary600ad522009-11-30 21:42:42 +01001446 if (result)
1447 return result;
1448
Corentin Chary600ad522009-11-30 21:42:42 +01001449 /* WLED and BLED are on by default */
Corentin Charybe4ee822009-12-06 16:27:09 +01001450 if (bluetooth_status >= 0)
Corentin Charye5593bf2010-01-17 17:20:11 +01001451 asus_bluetooth_set(asus, !!bluetooth_status);
1452
Corentin Charyd0930a22010-01-17 17:21:13 +01001453 if (wlan_status >= 0)
1454 asus_wlan_set(asus, !!wlan_status);
Corentin Chary600ad522009-11-30 21:42:42 +01001455
1456 /* Keyboard Backlight is on by default */
Corentin Charyd99b5772010-01-22 21:20:57 +01001457 if (!acpi_check_handle(asus->handle, METHOD_KBD_LIGHT_SET, NULL))
Corentin Chary4d441512010-01-13 22:26:24 +01001458 asus_kled_set(asus, 1);
Corentin Chary600ad522009-11-30 21:42:42 +01001459
1460 /* LED display is off by default */
Corentin Chary50a90c42009-11-30 21:55:12 +01001461 asus->ledd_status = 0xFFF;
Corentin Chary600ad522009-11-30 21:42:42 +01001462
1463 /* Set initial values of light sensor and level */
Corentin Charybe4ee822009-12-06 16:27:09 +01001464 asus->light_switch = 0; /* Default to light sensor disabled */
1465 asus->light_level = 5; /* level 5 for sensor sensitivity */
Corentin Chary600ad522009-11-30 21:42:42 +01001466
Corentin Charyd99b5772010-01-22 21:20:57 +01001467 if (!acpi_check_handle(asus->handle, METHOD_ALS_CONTROL, NULL) &&
1468 !acpi_check_handle(asus->handle, METHOD_ALS_LEVEL, NULL)) {
Corentin Chary4d441512010-01-13 22:26:24 +01001469 asus_als_switch(asus, asus->light_switch);
Corentin Chary4d441512010-01-13 22:26:24 +01001470 asus_als_level(asus, asus->light_level);
Corentin Charyd99b5772010-01-22 21:20:57 +01001471 }
Corentin Chary600ad522009-11-30 21:42:42 +01001472
Corentin Chary47ee0e92010-01-24 11:17:15 +01001473 asus->lcd_state = 1; /* LCD should be on when the module load */
Corentin Chary600ad522009-11-30 21:42:42 +01001474 return result;
1475}
1476
1477static int __devinit asus_acpi_add(struct acpi_device *device)
1478{
Corentin Chary9129d142009-12-01 22:39:41 +01001479 struct asus_laptop *asus;
Corentin Chary600ad522009-11-30 21:42:42 +01001480 int result;
1481
1482 pr_notice("Asus Laptop Support version %s\n",
1483 ASUS_LAPTOP_VERSION);
Corentin Chary50a90c42009-11-30 21:55:12 +01001484 asus = kzalloc(sizeof(struct asus_laptop), GFP_KERNEL);
1485 if (!asus)
Corentin Chary600ad522009-11-30 21:42:42 +01001486 return -ENOMEM;
Corentin Chary50a90c42009-11-30 21:55:12 +01001487 asus->handle = device->handle;
1488 strcpy(acpi_device_name(device), ASUS_LAPTOP_DEVICE_NAME);
1489 strcpy(acpi_device_class(device), ASUS_LAPTOP_CLASS);
1490 device->driver_data = asus;
1491 asus->device = device;
Corentin Chary600ad522009-11-30 21:42:42 +01001492
Corentin Chary9129d142009-12-01 22:39:41 +01001493 result = asus_acpi_init(asus);
Corentin Chary600ad522009-11-30 21:42:42 +01001494 if (result)
1495 goto fail_platform;
1496
1497 /*
1498 * Register the platform device first. It is used as a parent for the
1499 * sub-devices below.
1500 */
Corentin Chary9129d142009-12-01 22:39:41 +01001501 result = asus_platform_init(asus);
Corentin Chary600ad522009-11-30 21:42:42 +01001502 if (result)
1503 goto fail_platform;
1504
1505 if (!acpi_video_backlight_support()) {
Corentin Chary9129d142009-12-01 22:39:41 +01001506 result = asus_backlight_init(asus);
Corentin Chary600ad522009-11-30 21:42:42 +01001507 if (result)
1508 goto fail_backlight;
1509 } else
1510 pr_info("Backlight controlled by ACPI video driver\n");
1511
Corentin Chary9129d142009-12-01 22:39:41 +01001512 result = asus_input_init(asus);
Corentin Chary600ad522009-11-30 21:42:42 +01001513 if (result)
1514 goto fail_input;
1515
Corentin Chary9129d142009-12-01 22:39:41 +01001516 result = asus_led_init(asus);
Corentin Chary600ad522009-11-30 21:42:42 +01001517 if (result)
1518 goto fail_led;
1519
Corentin Chary18e13112010-01-25 23:29:24 +01001520 result = asus_rfkill_init(asus);
1521 if (result)
1522 goto fail_rfkill;
1523
Corentin Chary600ad522009-11-30 21:42:42 +01001524 asus_device_present = true;
1525 return 0;
1526
Corentin Chary18e13112010-01-25 23:29:24 +01001527fail_rfkill:
1528 asus_led_exit(asus);
Corentin Chary600ad522009-11-30 21:42:42 +01001529fail_led:
Corentin Chary9129d142009-12-01 22:39:41 +01001530 asus_input_exit(asus);
Corentin Chary600ad522009-11-30 21:42:42 +01001531fail_input:
Corentin Chary9129d142009-12-01 22:39:41 +01001532 asus_backlight_exit(asus);
Corentin Chary600ad522009-11-30 21:42:42 +01001533fail_backlight:
Corentin Chary9129d142009-12-01 22:39:41 +01001534 asus_platform_exit(asus);
Corentin Chary600ad522009-11-30 21:42:42 +01001535fail_platform:
Corentin Chary50a90c42009-11-30 21:55:12 +01001536 kfree(asus->name);
1537 kfree(asus);
Corentin Chary600ad522009-11-30 21:42:42 +01001538
1539 return result;
1540}
1541
1542static int asus_acpi_remove(struct acpi_device *device, int type)
1543{
Corentin Chary9129d142009-12-01 22:39:41 +01001544 struct asus_laptop *asus = acpi_driver_data(device);
1545
1546 asus_backlight_exit(asus);
Corentin Chary18e13112010-01-25 23:29:24 +01001547 asus_rfkill_exit(asus);
Corentin Chary9129d142009-12-01 22:39:41 +01001548 asus_led_exit(asus);
1549 asus_input_exit(asus);
1550 asus_platform_exit(asus);
Corentin Chary600ad522009-11-30 21:42:42 +01001551
Corentin Chary50a90c42009-11-30 21:55:12 +01001552 kfree(asus->name);
1553 kfree(asus);
Corentin Chary600ad522009-11-30 21:42:42 +01001554 return 0;
1555}
1556
1557static const struct acpi_device_id asus_device_ids[] = {
1558 {"ATK0100", 0},
1559 {"ATK0101", 0},
1560 {"", 0},
1561};
1562MODULE_DEVICE_TABLE(acpi, asus_device_ids);
1563
1564static struct acpi_driver asus_acpi_driver = {
Corentin Chary50a90c42009-11-30 21:55:12 +01001565 .name = ASUS_LAPTOP_NAME,
1566 .class = ASUS_LAPTOP_CLASS,
Corentin Chary600ad522009-11-30 21:42:42 +01001567 .owner = THIS_MODULE,
1568 .ids = asus_device_ids,
1569 .flags = ACPI_DRIVER_ALL_NOTIFY_EVENTS,
1570 .ops = {
1571 .add = asus_acpi_add,
1572 .remove = asus_acpi_remove,
1573 .notify = asus_acpi_notify,
1574 },
1575};
1576
Corentin Chary85091b72007-01-26 14:04:30 +01001577static int __init asus_laptop_init(void)
1578{
1579 int result;
1580
Corentin Chary600ad522009-11-30 21:42:42 +01001581 result = platform_driver_register(&platform_driver);
Corentin Chary85091b72007-01-26 14:04:30 +01001582 if (result < 0)
1583 return result;
1584
Corentin Chary600ad522009-11-30 21:42:42 +01001585 result = acpi_bus_register_driver(&asus_acpi_driver);
1586 if (result < 0)
1587 goto fail_acpi_driver;
1588 if (!asus_device_present) {
1589 result = -ENODEV;
1590 goto fail_no_device;
Corentin Chary85091b72007-01-26 14:04:30 +01001591 }
Len Brown8def05f2007-01-30 01:46:43 -05001592 return 0;
Corentin Chary85091b72007-01-26 14:04:30 +01001593
Corentin Chary600ad522009-11-30 21:42:42 +01001594fail_no_device:
1595 acpi_bus_unregister_driver(&asus_acpi_driver);
1596fail_acpi_driver:
1597 platform_driver_unregister(&platform_driver);
Corentin Chary85091b72007-01-26 14:04:30 +01001598 return result;
1599}
1600
Corentin Chary600ad522009-11-30 21:42:42 +01001601static void __exit asus_laptop_exit(void)
1602{
1603 acpi_bus_unregister_driver(&asus_acpi_driver);
1604 platform_driver_unregister(&platform_driver);
1605}
1606
Corentin Chary85091b72007-01-26 14:04:30 +01001607module_init(asus_laptop_init);
1608module_exit(asus_laptop_exit);