blob: fa6d7ec68b269670b4de8ca24cb97b3d55160acc [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
Lucas De Marchic8440332011-03-17 17:18:22 -030032 * Thomas Tuttle - His first patch for led support was very helpful
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 Charyaf96f872011-02-06 13:27:30 +010053#include <linux/dmi.h>
Corentin Chary060cbce2010-01-28 10:52:40 +010054#include <acpi/acpi_drivers.h>
55#include <acpi/acpi_bus.h>
Corentin Chary85091b72007-01-26 14:04:30 +010056
Corentin Chary91687cc2009-11-28 10:32:34 +010057#define ASUS_LAPTOP_VERSION "0.42"
Corentin Chary85091b72007-01-26 14:04:30 +010058
Corentin Chary50a90c42009-11-30 21:55:12 +010059#define ASUS_LAPTOP_NAME "Asus Laptop Support"
60#define ASUS_LAPTOP_CLASS "hotkey"
61#define ASUS_LAPTOP_DEVICE_NAME "Hotkey"
62#define ASUS_LAPTOP_FILE KBUILD_MODNAME
63#define ASUS_LAPTOP_PREFIX "\\_SB.ATKD."
Corentin Chary85091b72007-01-26 14:04:30 +010064
Corentin Chary85091b72007-01-26 14:04:30 +010065MODULE_AUTHOR("Julien Lerouge, Karol Kozimor, Corentin Chary");
Corentin Chary50a90c42009-11-30 21:55:12 +010066MODULE_DESCRIPTION(ASUS_LAPTOP_NAME);
Corentin Chary85091b72007-01-26 14:04:30 +010067MODULE_LICENSE("GPL");
68
Corentin Charybe966662009-08-29 10:28:29 +020069/*
70 * WAPF defines the behavior of the Fn+Fx wlan key
Corentin Chary185e5af2007-03-11 10:27:33 +010071 * The significance of values is yet to be found, but
72 * most of the time:
Corentin Charyfddbfed2011-07-01 11:34:39 +020073 * Bit | Bluetooth | WLAN
74 * 0 | Hardware | Hardware
75 * 1 | Hardware | Software
76 * 4 | Software | Software
Corentin Chary185e5af2007-03-11 10:27:33 +010077 */
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 Charyba1ff5b2010-11-14 17:40:12 +010084static int wimax_status = -1;
85static int wwan_status = -1;
Corentin Chary0e875f42010-01-10 20:49:26 +010086
Axel Linc26d85c2010-07-20 15:19:55 -070087module_param(wlan_status, int, 0444);
Corentin Charyd0930a22010-01-17 17:21:13 +010088MODULE_PARM_DESC(wlan_status, "Set the wireless status on boot "
Corentin Chary0e875f42010-01-10 20:49:26 +010089 "(0 = disabled, 1 = enabled, -1 = don't do anything). "
90 "default is 1");
91
Axel Linc26d85c2010-07-20 15:19:55 -070092module_param(bluetooth_status, int, 0444);
Corentin Chary0e875f42010-01-10 20:49:26 +010093MODULE_PARM_DESC(bluetooth_status, "Set the wireless status on boot "
94 "(0 = disabled, 1 = enabled, -1 = don't do anything). "
95 "default is 1");
96
Corentin Charyba1ff5b2010-11-14 17:40:12 +010097module_param(wimax_status, int, 0444);
98MODULE_PARM_DESC(wimax_status, "Set the wireless status on boot "
99 "(0 = disabled, 1 = enabled, -1 = don't do anything). "
100 "default is 1");
101
102module_param(wwan_status, int, 0444);
103MODULE_PARM_DESC(wwan_status, "Set the wireless status on boot "
104 "(0 = disabled, 1 = enabled, -1 = don't do anything). "
105 "default is 1");
106
Corentin Charybe4ee822009-12-06 16:27:09 +0100107/*
108 * Some events we use, same for all Asus
109 */
Corentin Chary060cbce2010-01-28 10:52:40 +0100110#define ATKD_BR_UP 0x10 /* (event & ~ATKD_BR_UP) = brightness level */
111#define ATKD_BR_DOWN 0x20 /* (event & ~ATKD_BR_DOWN) = britghness level */
Corentin Charya539df52010-01-25 22:53:21 +0100112#define ATKD_BR_MIN ATKD_BR_UP
Corentin Chary060cbce2010-01-28 10:52:40 +0100113#define ATKD_BR_MAX (ATKD_BR_DOWN | 0xF) /* 0x2f */
Corentin Charybe4ee822009-12-06 16:27:09 +0100114#define ATKD_LCD_ON 0x33
115#define ATKD_LCD_OFF 0x34
116
117/*
118 * Known bits returned by \_SB.ATKD.HWRS
119 */
120#define WL_HWRS 0x80
121#define BT_HWRS 0x100
122
123/*
124 * Flags for hotk status
125 * WL_ON and BT_ON are also used for wireless_status()
126 */
Corentin Chary17e78f62010-01-13 22:21:33 +0100127#define WL_RSTS 0x01 /* internal Wifi */
128#define BT_RSTS 0x02 /* internal Bluetooth */
Corentin Charyba1ff5b2010-11-14 17:40:12 +0100129#define WM_RSTS 0x08 /* internal wimax */
130#define WW_RSTS 0x20 /* internal wwan */
Corentin Charybe4ee822009-12-06 16:27:09 +0100131
Corentin Charybe18cda2007-01-26 14:04:35 +0100132/* LED */
Corentin Charyd99b5772010-01-22 21:20:57 +0100133#define METHOD_MLED "MLED"
134#define METHOD_TLED "TLED"
135#define METHOD_RLED "RLED" /* W1JC */
136#define METHOD_PLED "PLED" /* A7J */
137#define METHOD_GLED "GLED" /* G1, G2 (probably) */
Corentin Charybe18cda2007-01-26 14:04:35 +0100138
Corentin Chary722ad972007-01-26 14:04:55 +0100139/* LEDD */
Corentin Charyd99b5772010-01-22 21:20:57 +0100140#define METHOD_LEDD "SLCM"
Corentin Chary722ad972007-01-26 14:04:55 +0100141
Corentin Charybe966662009-08-29 10:28:29 +0200142/*
143 * Bluetooth and WLAN
Corentin Chary4564de12007-01-26 14:04:40 +0100144 * WLED and BLED are not handled like other XLED, because in some dsdt
145 * they also control the WLAN/Bluetooth device.
146 */
Corentin Charyd99b5772010-01-22 21:20:57 +0100147#define METHOD_WLAN "WLED"
148#define METHOD_BLUETOOTH "BLED"
Corentin Charyba1ff5b2010-11-14 17:40:12 +0100149
150/* WWAN and WIMAX */
151#define METHOD_WWAN "GSMC"
152#define METHOD_WIMAX "WMXC"
153
Corentin Charyd99b5772010-01-22 21:20:57 +0100154#define METHOD_WL_STATUS "RSTS"
Corentin Chary4564de12007-01-26 14:04:40 +0100155
Corentin Chary6b7091e2007-01-26 14:04:45 +0100156/* Brightness */
Corentin Charyd99b5772010-01-22 21:20:57 +0100157#define METHOD_BRIGHTNESS_SET "SPLV"
158#define METHOD_BRIGHTNESS_GET "GPLV"
Corentin Chary6b7091e2007-01-26 14:04:45 +0100159
Corentin Chary78127b42007-01-26 14:04:49 +0100160/* Display */
Corentin Charyd99b5772010-01-22 21:20:57 +0100161#define METHOD_SWITCH_DISPLAY "SDSP"
Corentin Chary060cbce2010-01-28 10:52:40 +0100162
Corentin Charyd99b5772010-01-22 21:20:57 +0100163#define METHOD_ALS_CONTROL "ALSC" /* Z71A Z71V */
164#define METHOD_ALS_LEVEL "ALSL" /* Z71A Z71V */
Corentin Chary8b857352007-01-26 14:04:58 +0100165
Corentin Charye539c2f2007-05-06 14:47:06 +0200166/* GPS */
167/* R2H use different handle for GPS on/off */
Corentin Charyd99b5772010-01-22 21:20:57 +0100168#define METHOD_GPS_ON "SDON"
169#define METHOD_GPS_OFF "SDOF"
170#define METHOD_GPS_STATUS "GPST"
Corentin Charye539c2f2007-05-06 14:47:06 +0200171
Corentin Charyb7d3fbc2009-08-28 12:56:50 +0000172/* Keyboard light */
Corentin Charyd99b5772010-01-22 21:20:57 +0100173#define METHOD_KBD_LIGHT_SET "SLKB"
174#define METHOD_KBD_LIGHT_GET "GLKB"
Corentin Charyb7d3fbc2009-08-28 12:56:50 +0000175
Corentin Chary85091b72007-01-26 14:04:30 +0100176/*
Corentin Chary9129d142009-12-01 22:39:41 +0100177 * Define a specific led structure to keep the main structure clean
178 */
Corentin Charyaee0afb2010-01-26 21:01:34 +0100179struct asus_led {
180 int wk;
181 struct work_struct work;
182 struct led_classdev led;
183 struct asus_laptop *asus;
184 const char *method;
Corentin Chary9129d142009-12-01 22:39:41 +0100185};
186
187/*
Corentin Chary85091b72007-01-26 14:04:30 +0100188 * This is the main structure, we can use it to store anything interesting
189 * about the hotk device
190 */
Corentin Chary50a90c42009-11-30 21:55:12 +0100191struct asus_laptop {
Corentin Charybe966662009-08-29 10:28:29 +0200192 char *name; /* laptop name */
Corentin Chary600ad522009-11-30 21:42:42 +0100193
Corentin Chary7c247642009-11-30 22:13:54 +0100194 struct acpi_table_header *dsdt_info;
Corentin Chary600ad522009-11-30 21:42:42 +0100195 struct platform_device *platform_device;
Corentin Chary7c247642009-11-30 22:13:54 +0100196 struct acpi_device *device; /* the device we are in */
197 struct backlight_device *backlight_device;
Corentin Chary9129d142009-12-01 22:39:41 +0100198
Corentin Chary7c247642009-11-30 22:13:54 +0100199 struct input_dev *inputdev;
Corentin Chary9129d142009-12-01 22:39:41 +0100200 struct key_entry *keymap;
201
Corentin Charyaee0afb2010-01-26 21:01:34 +0100202 struct asus_led mled;
203 struct asus_led tled;
204 struct asus_led rled;
205 struct asus_led pled;
206 struct asus_led gled;
207 struct asus_led kled;
208 struct workqueue_struct *led_workqueue;
Corentin Chary7c247642009-11-30 22:13:54 +0100209
Corentin Charyaa9df932010-01-13 21:49:10 +0100210 int wireless_status;
211 bool have_rsts;
212
Corentin Chary18e13112010-01-25 23:29:24 +0100213 struct rfkill *gps_rfkill;
214
Corentin Charybe966662009-08-29 10:28:29 +0200215 acpi_handle handle; /* the handle of the hotk device */
Corentin Charybe966662009-08-29 10:28:29 +0200216 u32 ledd_status; /* status of the LED display */
217 u8 light_level; /* light sensor level */
218 u8 light_switch; /* light sensor switch value */
219 u16 event_count[128]; /* count for each event TODO make this better */
Corentin Chary85091b72007-01-26 14:04:30 +0100220};
221
Corentin Chary9129d142009-12-01 22:39:41 +0100222static const struct key_entry asus_keymap[] = {
Corentin Charya539df52010-01-25 22:53:21 +0100223 /* Lenovo SL Specific keycodes */
Corentin Chary66a71dd2010-01-25 22:50:11 +0100224 {KE_KEY, 0x02, { KEY_SCREENLOCK } },
225 {KE_KEY, 0x05, { KEY_WLAN } },
226 {KE_KEY, 0x08, { KEY_F13 } },
227 {KE_KEY, 0x17, { KEY_ZOOM } },
228 {KE_KEY, 0x1f, { KEY_BATTERY } },
Corentin Charya539df52010-01-25 22:53:21 +0100229 /* End of Lenovo SL Specific keycodes */
Corentin Chary66a71dd2010-01-25 22:50:11 +0100230 {KE_KEY, 0x30, { KEY_VOLUMEUP } },
231 {KE_KEY, 0x31, { KEY_VOLUMEDOWN } },
232 {KE_KEY, 0x32, { KEY_MUTE } },
233 {KE_KEY, 0x33, { KEY_SWITCHVIDEOMODE } },
234 {KE_KEY, 0x34, { KEY_SWITCHVIDEOMODE } },
235 {KE_KEY, 0x40, { KEY_PREVIOUSSONG } },
236 {KE_KEY, 0x41, { KEY_NEXTSONG } },
237 {KE_KEY, 0x43, { KEY_STOPCD } },
238 {KE_KEY, 0x45, { KEY_PLAYPAUSE } },
239 {KE_KEY, 0x4c, { KEY_MEDIA } },
240 {KE_KEY, 0x50, { KEY_EMAIL } },
241 {KE_KEY, 0x51, { KEY_WWW } },
242 {KE_KEY, 0x55, { KEY_CALC } },
243 {KE_KEY, 0x5C, { KEY_SCREENLOCK } }, /* Screenlock */
244 {KE_KEY, 0x5D, { KEY_WLAN } },
245 {KE_KEY, 0x5E, { KEY_WLAN } },
246 {KE_KEY, 0x5F, { KEY_WLAN } },
247 {KE_KEY, 0x60, { KEY_SWITCHVIDEOMODE } },
248 {KE_KEY, 0x61, { KEY_SWITCHVIDEOMODE } },
249 {KE_KEY, 0x62, { KEY_SWITCHVIDEOMODE } },
250 {KE_KEY, 0x63, { KEY_SWITCHVIDEOMODE } },
251 {KE_KEY, 0x6B, { KEY_F13 } }, /* Lock Touchpad */
Corentin Chary7f607d72010-01-17 17:37:19 +0100252 {KE_KEY, 0x7E, { KEY_BLUETOOTH } },
253 {KE_KEY, 0x7D, { KEY_BLUETOOTH } },
Corentin Chary66a71dd2010-01-25 22:50:11 +0100254 {KE_KEY, 0x82, { KEY_CAMERA } },
255 {KE_KEY, 0x88, { KEY_WLAN } },
256 {KE_KEY, 0x8A, { KEY_PROG1 } },
257 {KE_KEY, 0x95, { KEY_MEDIA } },
258 {KE_KEY, 0x99, { KEY_PHONE } },
259 {KE_KEY, 0xc4, { KEY_KBDILLUMUP } },
260 {KE_KEY, 0xc5, { KEY_KBDILLUMDOWN } },
Corentin Charyb58baecd2010-08-24 09:30:45 +0200261 {KE_KEY, 0xb5, { KEY_CALC } },
Corentin Chary034ce902009-01-20 16:17:43 +0100262 {KE_END, 0},
263};
264
Corentin Chary66a71dd2010-01-25 22:50:11 +0100265
Corentin Chary85091b72007-01-26 14:04:30 +0100266/*
267 * This function evaluates an ACPI method, given an int as parameter, the
268 * method is searched within the scope of the handle, can be NULL. The output
269 * of the method is written is output, which can also be NULL
270 *
Corentin CHARYf8d1c942008-01-16 16:56:42 +0100271 * returns 0 if write is successful, -1 else.
Corentin Chary85091b72007-01-26 14:04:30 +0100272 */
Corentin Charyd8c67322009-11-28 10:27:51 +0100273static int write_acpi_int_ret(acpi_handle handle, const char *method, int val,
274 struct acpi_buffer *output)
Corentin Chary85091b72007-01-26 14:04:30 +0100275{
Corentin Charybe966662009-08-29 10:28:29 +0200276 struct acpi_object_list params; /* list of input parameters (an int) */
277 union acpi_object in_obj; /* the only param we use */
Corentin Chary85091b72007-01-26 14:04:30 +0100278 acpi_status status;
279
Corentin CHARYf8d1c942008-01-16 16:56:42 +0100280 if (!handle)
Axel Lin9fb866f2010-07-20 15:19:47 -0700281 return -1;
Corentin CHARYf8d1c942008-01-16 16:56:42 +0100282
Corentin Chary85091b72007-01-26 14:04:30 +0100283 params.count = 1;
284 params.pointer = &in_obj;
285 in_obj.type = ACPI_TYPE_INTEGER;
286 in_obj.integer.value = val;
287
288 status = acpi_evaluate_object(handle, (char *)method, &params, output);
Corentin CHARYf8d1c942008-01-16 16:56:42 +0100289 if (status == AE_OK)
290 return 0;
291 else
292 return -1;
Corentin Chary85091b72007-01-26 14:04:30 +0100293}
294
Corentin Charyd8c67322009-11-28 10:27:51 +0100295static int write_acpi_int(acpi_handle handle, const char *method, int val)
296{
297 return write_acpi_int_ret(handle, method, val, NULL);
298}
299
Corentin Charyd99b5772010-01-22 21:20:57 +0100300static int acpi_check_handle(acpi_handle handle, const char *method,
301 acpi_handle *ret)
302{
303 acpi_status status;
304
305 if (method == NULL)
306 return -ENODEV;
307
308 if (ret)
309 status = acpi_get_handle(handle, (char *)method,
310 ret);
311 else {
312 acpi_handle dummy;
313
314 status = acpi_get_handle(handle, (char *)method,
315 &dummy);
316 }
317
318 if (status != AE_OK) {
319 if (ret)
Joe Perches5ad77dc2011-03-29 15:21:35 -0700320 pr_warn("Error finding %s\n", method);
Corentin Charyd99b5772010-01-22 21:20:57 +0100321 return -ENODEV;
322 }
323 return 0;
324}
325
Corentin Chary17e78f62010-01-13 22:21:33 +0100326/* Generic LED function */
Corentin Charyaee0afb2010-01-26 21:01:34 +0100327static int asus_led_set(struct asus_laptop *asus, const char *method,
Corentin Chary17e78f62010-01-13 22:21:33 +0100328 int value)
Corentin Charybe18cda2007-01-26 14:04:35 +0100329{
Corentin Charyd99b5772010-01-22 21:20:57 +0100330 if (!strcmp(method, METHOD_MLED))
Corentin Chary17e78f62010-01-13 22:21:33 +0100331 value = !value;
Corentin Charyd99b5772010-01-22 21:20:57 +0100332 else if (!strcmp(method, METHOD_GLED))
Corentin Chary17e78f62010-01-13 22:21:33 +0100333 value = !value + 1;
334 else
335 value = !!value;
Corentin Charybe18cda2007-01-26 14:04:35 +0100336
Corentin Charye5593bf2010-01-17 17:20:11 +0100337 return write_acpi_int(asus->handle, method, value);
Corentin Charybe18cda2007-01-26 14:04:35 +0100338}
339
Corentin Charybe4ee822009-12-06 16:27:09 +0100340/*
341 * LEDs
342 */
Corentin Charybe18cda2007-01-26 14:04:35 +0100343/* /sys/class/led handlers */
Corentin Charyaee0afb2010-01-26 21:01:34 +0100344static void asus_led_cdev_set(struct led_classdev *led_cdev,
345 enum led_brightness value)
346{
347 struct asus_led *led = container_of(led_cdev, struct asus_led, led);
348 struct asus_laptop *asus = led->asus;
Corentin Charybe18cda2007-01-26 14:04:35 +0100349
Corentin Charyaee0afb2010-01-26 21:01:34 +0100350 led->wk = !!value;
351 queue_work(asus->led_workqueue, &led->work);
352}
353
354static void asus_led_cdev_update(struct work_struct *work)
355{
356 struct asus_led *led = container_of(work, struct asus_led, work);
357 struct asus_laptop *asus = led->asus;
358
359 asus_led_set(asus, led->method, led->wk);
360}
361
362static enum led_brightness asus_led_cdev_get(struct led_classdev *led_cdev)
363{
364 return led_cdev->brightness;
365}
Corentin Charybe18cda2007-01-26 14:04:35 +0100366
Corentin Charyb7d3fbc2009-08-28 12:56:50 +0000367/*
Corentin Charybe4ee822009-12-06 16:27:09 +0100368 * Keyboard backlight (also a LED)
Corentin Charyb7d3fbc2009-08-28 12:56:50 +0000369 */
Corentin Charyd99b5772010-01-22 21:20:57 +0100370static int asus_kled_lvl(struct asus_laptop *asus)
Corentin Charyb7d3fbc2009-08-28 12:56:50 +0000371{
372 unsigned long long kblv;
373 struct acpi_object_list params;
374 union acpi_object in_obj;
375 acpi_status rv;
376
377 params.count = 1;
378 params.pointer = &in_obj;
379 in_obj.type = ACPI_TYPE_INTEGER;
380 in_obj.integer.value = 2;
381
Corentin Charyd99b5772010-01-22 21:20:57 +0100382 rv = acpi_evaluate_integer(asus->handle, METHOD_KBD_LIGHT_GET,
383 &params, &kblv);
Corentin Charyb7d3fbc2009-08-28 12:56:50 +0000384 if (ACPI_FAILURE(rv)) {
Joe Perches5ad77dc2011-03-29 15:21:35 -0700385 pr_warn("Error reading kled level\n");
Corentin Chary4d441512010-01-13 22:26:24 +0100386 return -ENODEV;
Corentin Charyb7d3fbc2009-08-28 12:56:50 +0000387 }
388 return kblv;
389}
390
Corentin Chary4d441512010-01-13 22:26:24 +0100391static int asus_kled_set(struct asus_laptop *asus, int kblv)
Corentin Charyb7d3fbc2009-08-28 12:56:50 +0000392{
393 if (kblv > 0)
394 kblv = (1 << 7) | (kblv & 0x7F);
395 else
396 kblv = 0;
397
Corentin Charyd99b5772010-01-22 21:20:57 +0100398 if (write_acpi_int(asus->handle, METHOD_KBD_LIGHT_SET, kblv)) {
Joe Perches5ad77dc2011-03-29 15:21:35 -0700399 pr_warn("Keyboard LED display write failed\n");
Corentin Charyb7d3fbc2009-08-28 12:56:50 +0000400 return -EINVAL;
401 }
402 return 0;
403}
404
Corentin Charyaee0afb2010-01-26 21:01:34 +0100405static void asus_kled_cdev_set(struct led_classdev *led_cdev,
406 enum led_brightness value)
Corentin Charyb7d3fbc2009-08-28 12:56:50 +0000407{
Corentin Charyaee0afb2010-01-26 21:01:34 +0100408 struct asus_led *led = container_of(led_cdev, struct asus_led, led);
409 struct asus_laptop *asus = led->asus;
Corentin Chary9129d142009-12-01 22:39:41 +0100410
Corentin Chary060cbce2010-01-28 10:52:40 +0100411 led->wk = value;
Corentin Charyaee0afb2010-01-26 21:01:34 +0100412 queue_work(asus->led_workqueue, &led->work);
Corentin Charyb7d3fbc2009-08-28 12:56:50 +0000413}
414
Corentin Charyaee0afb2010-01-26 21:01:34 +0100415static void asus_kled_cdev_update(struct work_struct *work)
Corentin Charyb7d3fbc2009-08-28 12:56:50 +0000416{
Corentin Charyaee0afb2010-01-26 21:01:34 +0100417 struct asus_led *led = container_of(work, struct asus_led, work);
418 struct asus_laptop *asus = led->asus;
Corentin Chary9129d142009-12-01 22:39:41 +0100419
Corentin Charyaee0afb2010-01-26 21:01:34 +0100420 asus_kled_set(asus, led->wk);
Corentin Charyb7d3fbc2009-08-28 12:56:50 +0000421}
422
Corentin Charyaee0afb2010-01-26 21:01:34 +0100423static enum led_brightness asus_kled_cdev_get(struct led_classdev *led_cdev)
Corentin Charyb7d3fbc2009-08-28 12:56:50 +0000424{
Corentin Charyaee0afb2010-01-26 21:01:34 +0100425 struct asus_led *led = container_of(led_cdev, struct asus_led, led);
426 struct asus_laptop *asus = led->asus;
Corentin Charyd99b5772010-01-22 21:20:57 +0100427
428 return asus_kled_lvl(asus);
Corentin Charyb7d3fbc2009-08-28 12:56:50 +0000429}
430
Corentin Charybe4ee822009-12-06 16:27:09 +0100431static void asus_led_exit(struct asus_laptop *asus)
432{
Corentin Charyaee0afb2010-01-26 21:01:34 +0100433 if (asus->mled.led.dev)
434 led_classdev_unregister(&asus->mled.led);
435 if (asus->tled.led.dev)
436 led_classdev_unregister(&asus->tled.led);
437 if (asus->pled.led.dev)
438 led_classdev_unregister(&asus->pled.led);
439 if (asus->rled.led.dev)
440 led_classdev_unregister(&asus->rled.led);
441 if (asus->gled.led.dev)
442 led_classdev_unregister(&asus->gled.led);
443 if (asus->kled.led.dev)
444 led_classdev_unregister(&asus->kled.led);
445 if (asus->led_workqueue) {
446 destroy_workqueue(asus->led_workqueue);
447 asus->led_workqueue = NULL;
Corentin Charybe4ee822009-12-06 16:27:09 +0100448 }
449}
450
451/* Ugly macro, need to fix that later */
Corentin Charyaee0afb2010-01-26 21:01:34 +0100452static int asus_led_register(struct asus_laptop *asus,
453 struct asus_led *led,
454 const char *name, const char *method)
455{
456 struct led_classdev *led_cdev = &led->led;
457
458 if (!method || acpi_check_handle(asus->handle, method, NULL))
Corentin Chary060cbce2010-01-28 10:52:40 +0100459 return 0; /* Led not present */
Corentin Charyaee0afb2010-01-26 21:01:34 +0100460
461 led->asus = asus;
462 led->method = method;
463
464 INIT_WORK(&led->work, asus_led_cdev_update);
465 led_cdev->name = name;
466 led_cdev->brightness_set = asus_led_cdev_set;
467 led_cdev->brightness_get = asus_led_cdev_get;
468 led_cdev->max_brightness = 1;
469 return led_classdev_register(&asus->platform_device->dev, led_cdev);
470}
Corentin Charybe4ee822009-12-06 16:27:09 +0100471
472static int asus_led_init(struct asus_laptop *asus)
473{
Corentin Charyaee0afb2010-01-26 21:01:34 +0100474 int r;
Corentin Charybe4ee822009-12-06 16:27:09 +0100475
476 /*
477 * Functions that actually update the LED's are called from a
478 * workqueue. By doing this as separate work rather than when the LED
479 * subsystem asks, we avoid messing with the Asus ACPI stuff during a
480 * potentially bad time, such as a timer interrupt.
481 */
Corentin Charyaee0afb2010-01-26 21:01:34 +0100482 asus->led_workqueue = create_singlethread_workqueue("led_workqueue");
483 if (!asus->led_workqueue)
Corentin Charybe4ee822009-12-06 16:27:09 +0100484 return -ENOMEM;
485
Corentin Charyaee0afb2010-01-26 21:01:34 +0100486 r = asus_led_register(asus, &asus->mled, "asus::mail", METHOD_MLED);
487 if (r)
488 goto error;
489 r = asus_led_register(asus, &asus->tled, "asus::touchpad", METHOD_TLED);
490 if (r)
491 goto error;
492 r = asus_led_register(asus, &asus->rled, "asus::record", METHOD_RLED);
493 if (r)
494 goto error;
495 r = asus_led_register(asus, &asus->pled, "asus::phone", METHOD_PLED);
496 if (r)
497 goto error;
498 r = asus_led_register(asus, &asus->gled, "asus::gaming", METHOD_GLED);
499 if (r)
500 goto error;
Corentin Charyd99b5772010-01-22 21:20:57 +0100501 if (!acpi_check_handle(asus->handle, METHOD_KBD_LIGHT_SET, NULL) &&
Corentin Charyaee0afb2010-01-26 21:01:34 +0100502 !acpi_check_handle(asus->handle, METHOD_KBD_LIGHT_GET, NULL)) {
503 struct asus_led *led = &asus->kled;
504 struct led_classdev *cdev = &led->led;
505
506 led->asus = asus;
507
508 INIT_WORK(&led->work, asus_kled_cdev_update);
509 cdev->name = "asus::kbd_backlight";
510 cdev->brightness_set = asus_kled_cdev_set;
511 cdev->brightness_get = asus_kled_cdev_get;
512 cdev->max_brightness = 3;
513 r = led_classdev_register(&asus->platform_device->dev, cdev);
514 }
Corentin Charybe4ee822009-12-06 16:27:09 +0100515error:
Corentin Charyaee0afb2010-01-26 21:01:34 +0100516 if (r)
Corentin Charybe4ee822009-12-06 16:27:09 +0100517 asus_led_exit(asus);
Corentin Charyaee0afb2010-01-26 21:01:34 +0100518 return r;
Corentin Charybe4ee822009-12-06 16:27:09 +0100519}
520
521/*
522 * Backlight device
523 */
Corentin Chary4d441512010-01-13 22:26:24 +0100524static int asus_read_brightness(struct backlight_device *bd)
Corentin Chary6b7091e2007-01-26 14:04:45 +0100525{
Corentin Charyd99b5772010-01-22 21:20:57 +0100526 struct asus_laptop *asus = bl_get_data(bd);
Matthew Wilcox27663c52008-10-10 02:22:59 -0400527 unsigned long long value;
Corentin Chary9a816852007-03-11 10:25:38 +0100528 acpi_status rv = AE_OK;
Corentin Chary6b7091e2007-01-26 14:04:45 +0100529
Corentin Charyd99b5772010-01-22 21:20:57 +0100530 rv = acpi_evaluate_integer(asus->handle, METHOD_BRIGHTNESS_GET,
531 NULL, &value);
Corentin Chary9a816852007-03-11 10:25:38 +0100532 if (ACPI_FAILURE(rv))
Joe Perches5ad77dc2011-03-29 15:21:35 -0700533 pr_warn("Error reading brightness\n");
Corentin Chary6b7091e2007-01-26 14:04:45 +0100534
535 return value;
536}
537
Corentin Chary4d441512010-01-13 22:26:24 +0100538static int asus_set_brightness(struct backlight_device *bd, int value)
Corentin Chary6b7091e2007-01-26 14:04:45 +0100539{
Corentin Charyd99b5772010-01-22 21:20:57 +0100540 struct asus_laptop *asus = bl_get_data(bd);
541
542 if (write_acpi_int(asus->handle, METHOD_BRIGHTNESS_SET, value)) {
Joe Perches5ad77dc2011-03-29 15:21:35 -0700543 pr_warn("Error changing brightness\n");
Corentin Charye5b50f62009-11-28 10:19:55 +0100544 return -EIO;
Corentin Chary6b7091e2007-01-26 14:04:45 +0100545 }
Corentin Charye5b50f62009-11-28 10:19:55 +0100546 return 0;
Corentin Chary6b7091e2007-01-26 14:04:45 +0100547}
548
549static int update_bl_status(struct backlight_device *bd)
550{
Richard Purdie599a52d2007-02-10 23:07:48 +0000551 int value = bd->props.brightness;
Corentin Chary6b7091e2007-01-26 14:04:45 +0100552
Corentin Chary3b81cf92011-02-06 13:27:31 +0100553 return asus_set_brightness(bd, value);
Corentin Chary6b7091e2007-01-26 14:04:45 +0100554}
555
Lionel Debrouxacc24722010-11-16 14:14:02 +0100556static const struct backlight_ops asusbl_ops = {
Corentin Chary4d441512010-01-13 22:26:24 +0100557 .get_brightness = asus_read_brightness,
Corentin Charybe4ee822009-12-06 16:27:09 +0100558 .update_status = update_bl_status,
559};
560
Corentin Charya539df52010-01-25 22:53:21 +0100561static int asus_backlight_notify(struct asus_laptop *asus)
562{
563 struct backlight_device *bd = asus->backlight_device;
564 int old = bd->props.brightness;
565
566 backlight_force_update(bd, BACKLIGHT_UPDATE_HOTKEY);
567
568 return old;
569}
570
Corentin Charybe4ee822009-12-06 16:27:09 +0100571static int asus_backlight_init(struct asus_laptop *asus)
572{
573 struct backlight_device *bd;
Matthew Garretta19a6ee2010-02-17 16:39:44 -0500574 struct backlight_properties props;
Corentin Charybe4ee822009-12-06 16:27:09 +0100575
Corentin Chary71e687d2010-08-24 09:30:44 +0200576 if (acpi_check_handle(asus->handle, METHOD_BRIGHTNESS_GET, NULL) ||
Corentin Chary3b81cf92011-02-06 13:27:31 +0100577 acpi_check_handle(asus->handle, METHOD_BRIGHTNESS_SET, NULL))
Corentin Chary71e687d2010-08-24 09:30:44 +0200578 return 0;
Matthew Garretta19a6ee2010-02-17 16:39:44 -0500579
Corentin Chary71e687d2010-08-24 09:30:44 +0200580 memset(&props, 0, sizeof(struct backlight_properties));
581 props.max_brightness = 15;
Matthew Garrettbb7ca742011-03-22 16:30:21 -0700582 props.type = BACKLIGHT_PLATFORM;
Corentin Charybe4ee822009-12-06 16:27:09 +0100583
Corentin Chary71e687d2010-08-24 09:30:44 +0200584 bd = backlight_device_register(ASUS_LAPTOP_FILE,
585 &asus->platform_device->dev, asus,
586 &asusbl_ops, &props);
587 if (IS_ERR(bd)) {
588 pr_err("Could not register asus backlight device\n");
589 asus->backlight_device = NULL;
590 return PTR_ERR(bd);
Corentin Charybe4ee822009-12-06 16:27:09 +0100591 }
Corentin Chary71e687d2010-08-24 09:30:44 +0200592
593 asus->backlight_device = bd;
594 bd->props.brightness = asus_read_brightness(bd);
595 bd->props.power = FB_BLANK_UNBLANK;
596 backlight_update_status(bd);
Corentin Charybe4ee822009-12-06 16:27:09 +0100597 return 0;
598}
599
600static void asus_backlight_exit(struct asus_laptop *asus)
601{
602 if (asus->backlight_device)
603 backlight_device_unregister(asus->backlight_device);
Corentin Charya539df52010-01-25 22:53:21 +0100604 asus->backlight_device = NULL;
Corentin Charybe4ee822009-12-06 16:27:09 +0100605}
606
Corentin Chary85091b72007-01-26 14:04:30 +0100607/*
608 * Platform device handlers
609 */
610
611/*
612 * We write our info in page, we begin at offset off and cannot write more
613 * than count bytes. We set eof to 1 if we handle those 2 values. We return the
614 * number of bytes written in page
615 */
616static ssize_t show_infos(struct device *dev,
Len Brown8def05f2007-01-30 01:46:43 -0500617 struct device_attribute *attr, char *page)
Corentin Chary85091b72007-01-26 14:04:30 +0100618{
Corentin Chary9129d142009-12-01 22:39:41 +0100619 struct asus_laptop *asus = dev_get_drvdata(dev);
Corentin Chary85091b72007-01-26 14:04:30 +0100620 int len = 0;
Matthew Wilcox27663c52008-10-10 02:22:59 -0400621 unsigned long long temp;
Corentin Charybe966662009-08-29 10:28:29 +0200622 char buf[16]; /* enough for all info */
Corentin Chary9a816852007-03-11 10:25:38 +0100623 acpi_status rv = AE_OK;
624
Corentin Chary85091b72007-01-26 14:04:30 +0100625 /*
Corentin Chary060cbce2010-01-28 10:52:40 +0100626 * We use the easy way, we don't care of off and count,
627 * so we don't set eof to 1
Corentin Chary85091b72007-01-26 14:04:30 +0100628 */
629
Corentin Chary50a90c42009-11-30 21:55:12 +0100630 len += sprintf(page, ASUS_LAPTOP_NAME " " ASUS_LAPTOP_VERSION "\n");
631 len += sprintf(page + len, "Model reference : %s\n", asus->name);
Corentin Chary85091b72007-01-26 14:04:30 +0100632 /*
633 * The SFUN method probably allows the original driver to get the list
634 * of features supported by a given model. For now, 0x0100 or 0x0800
635 * bit signifies that the laptop is equipped with a Wi-Fi MiniPCI card.
636 * The significance of others is yet to be found.
637 */
Corentin Chary50a90c42009-11-30 21:55:12 +0100638 rv = acpi_evaluate_integer(asus->handle, "SFUN", NULL, &temp);
Corentin Chary9a816852007-03-11 10:25:38 +0100639 if (!ACPI_FAILURE(rv))
Corentin Chary1d4a3802009-08-28 12:56:46 +0000640 len += sprintf(page + len, "SFUN value : %#x\n",
641 (uint) temp);
642 /*
643 * The HWRS method return informations about the hardware.
644 * 0x80 bit is for WLAN, 0x100 for Bluetooth.
645 * The significance of others is yet to be found.
646 * If we don't find the method, we assume the device are present.
647 */
Corentin Chary50a90c42009-11-30 21:55:12 +0100648 rv = acpi_evaluate_integer(asus->handle, "HRWS", NULL, &temp);
Corentin Chary1d4a3802009-08-28 12:56:46 +0000649 if (!ACPI_FAILURE(rv))
650 len += sprintf(page + len, "HRWS value : %#x\n",
Corentin Chary9a816852007-03-11 10:25:38 +0100651 (uint) temp);
Corentin Chary85091b72007-01-26 14:04:30 +0100652 /*
653 * Another value for userspace: the ASYM method returns 0x02 for
654 * battery low and 0x04 for battery critical, its readings tend to be
655 * more accurate than those provided by _BST.
656 * Note: since not all the laptops provide this method, errors are
657 * silently ignored.
658 */
Corentin Chary50a90c42009-11-30 21:55:12 +0100659 rv = acpi_evaluate_integer(asus->handle, "ASYM", NULL, &temp);
Corentin Chary9a816852007-03-11 10:25:38 +0100660 if (!ACPI_FAILURE(rv))
Corentin Chary1d4a3802009-08-28 12:56:46 +0000661 len += sprintf(page + len, "ASYM value : %#x\n",
Corentin Chary9a816852007-03-11 10:25:38 +0100662 (uint) temp);
Corentin Chary7c247642009-11-30 22:13:54 +0100663 if (asus->dsdt_info) {
664 snprintf(buf, 16, "%d", asus->dsdt_info->length);
Corentin Chary85091b72007-01-26 14:04:30 +0100665 len += sprintf(page + len, "DSDT length : %s\n", buf);
Corentin Chary7c247642009-11-30 22:13:54 +0100666 snprintf(buf, 16, "%d", asus->dsdt_info->checksum);
Corentin Chary85091b72007-01-26 14:04:30 +0100667 len += sprintf(page + len, "DSDT checksum : %s\n", buf);
Corentin Chary7c247642009-11-30 22:13:54 +0100668 snprintf(buf, 16, "%d", asus->dsdt_info->revision);
Corentin Chary85091b72007-01-26 14:04:30 +0100669 len += sprintf(page + len, "DSDT revision : %s\n", buf);
Corentin Chary7c247642009-11-30 22:13:54 +0100670 snprintf(buf, 7, "%s", asus->dsdt_info->oem_id);
Corentin Chary85091b72007-01-26 14:04:30 +0100671 len += sprintf(page + len, "OEM id : %s\n", buf);
Corentin Chary7c247642009-11-30 22:13:54 +0100672 snprintf(buf, 9, "%s", asus->dsdt_info->oem_table_id);
Corentin Chary85091b72007-01-26 14:04:30 +0100673 len += sprintf(page + len, "OEM table id : %s\n", buf);
Corentin Chary7c247642009-11-30 22:13:54 +0100674 snprintf(buf, 16, "%x", asus->dsdt_info->oem_revision);
Corentin Chary85091b72007-01-26 14:04:30 +0100675 len += sprintf(page + len, "OEM revision : 0x%s\n", buf);
Corentin Chary7c247642009-11-30 22:13:54 +0100676 snprintf(buf, 5, "%s", asus->dsdt_info->asl_compiler_id);
Corentin Chary85091b72007-01-26 14:04:30 +0100677 len += sprintf(page + len, "ASL comp vendor id : %s\n", buf);
Corentin Chary7c247642009-11-30 22:13:54 +0100678 snprintf(buf, 16, "%x", asus->dsdt_info->asl_compiler_revision);
Corentin Chary85091b72007-01-26 14:04:30 +0100679 len += sprintf(page + len, "ASL comp revision : 0x%s\n", buf);
680 }
681
682 return len;
683}
684
685static int parse_arg(const char *buf, unsigned long count, int *val)
686{
687 if (!count)
688 return 0;
689 if (count > 31)
690 return -EINVAL;
691 if (sscanf(buf, "%i", val) != 1)
692 return -EINVAL;
693 return count;
694}
695
Corentin Chary17e78f62010-01-13 22:21:33 +0100696static ssize_t sysfs_acpi_set(struct asus_laptop *asus,
697 const char *buf, size_t count,
Corentin Charyd99b5772010-01-22 21:20:57 +0100698 const char *method)
Corentin Chary4564de12007-01-26 14:04:40 +0100699{
700 int rv, value;
701 int out = 0;
702
703 rv = parse_arg(buf, count, &value);
704 if (rv > 0)
705 out = value ? 1 : 0;
706
Corentin Charyd99b5772010-01-22 21:20:57 +0100707 if (write_acpi_int(asus->handle, method, value))
Corentin Chary17e78f62010-01-13 22:21:33 +0100708 return -ENODEV;
Corentin Chary4564de12007-01-26 14:04:40 +0100709 return rv;
710}
711
712/*
Corentin Chary722ad972007-01-26 14:04:55 +0100713 * LEDD display
714 */
715static ssize_t show_ledd(struct device *dev,
716 struct device_attribute *attr, char *buf)
717{
Corentin Chary9129d142009-12-01 22:39:41 +0100718 struct asus_laptop *asus = dev_get_drvdata(dev);
719
Corentin Chary50a90c42009-11-30 21:55:12 +0100720 return sprintf(buf, "0x%08x\n", asus->ledd_status);
Corentin Chary722ad972007-01-26 14:04:55 +0100721}
722
723static ssize_t store_ledd(struct device *dev, struct device_attribute *attr,
724 const char *buf, size_t count)
725{
Corentin Chary9129d142009-12-01 22:39:41 +0100726 struct asus_laptop *asus = dev_get_drvdata(dev);
Corentin Chary722ad972007-01-26 14:04:55 +0100727 int rv, value;
728
729 rv = parse_arg(buf, count, &value);
730 if (rv > 0) {
Axel Lin6a984a02010-07-20 15:19:48 -0700731 if (write_acpi_int(asus->handle, METHOD_LEDD, value)) {
Joe Perches5ad77dc2011-03-29 15:21:35 -0700732 pr_warn("LED display write failed\n");
Axel Lin6a984a02010-07-20 15:19:48 -0700733 return -ENODEV;
734 }
735 asus->ledd_status = (u32) value;
Corentin Chary722ad972007-01-26 14:04:55 +0100736 }
737 return rv;
738}
739
740/*
Corentin Charyaa9df932010-01-13 21:49:10 +0100741 * Wireless
742 */
743static int asus_wireless_status(struct asus_laptop *asus, int mask)
744{
745 unsigned long long status;
746 acpi_status rv = AE_OK;
747
748 if (!asus->have_rsts)
749 return (asus->wireless_status & mask) ? 1 : 0;
750
Corentin Charyd99b5772010-01-22 21:20:57 +0100751 rv = acpi_evaluate_integer(asus->handle, METHOD_WL_STATUS,
752 NULL, &status);
Corentin Charyaa9df932010-01-13 21:49:10 +0100753 if (ACPI_FAILURE(rv)) {
Joe Perches5ad77dc2011-03-29 15:21:35 -0700754 pr_warn("Error reading Wireless status\n");
Corentin Charyaa9df932010-01-13 21:49:10 +0100755 return -EINVAL;
756 }
757 return !!(status & mask);
758}
759
760/*
Corentin Chary4564de12007-01-26 14:04:40 +0100761 * WLAN
762 */
Corentin Charye5593bf2010-01-17 17:20:11 +0100763static int asus_wlan_set(struct asus_laptop *asus, int status)
764{
765 if (write_acpi_int(asus->handle, METHOD_WLAN, !!status)) {
Joe Perches5ad77dc2011-03-29 15:21:35 -0700766 pr_warn("Error setting wlan status to %d\n", status);
Corentin Charye5593bf2010-01-17 17:20:11 +0100767 return -EIO;
768 }
769 return 0;
770}
771
Corentin Chary4564de12007-01-26 14:04:40 +0100772static ssize_t show_wlan(struct device *dev,
773 struct device_attribute *attr, char *buf)
774{
Corentin Chary9129d142009-12-01 22:39:41 +0100775 struct asus_laptop *asus = dev_get_drvdata(dev);
776
Corentin Chary17e78f62010-01-13 22:21:33 +0100777 return sprintf(buf, "%d\n", asus_wireless_status(asus, WL_RSTS));
Corentin Chary4564de12007-01-26 14:04:40 +0100778}
779
780static ssize_t store_wlan(struct device *dev, struct device_attribute *attr,
781 const char *buf, size_t count)
782{
Corentin Chary9129d142009-12-01 22:39:41 +0100783 struct asus_laptop *asus = dev_get_drvdata(dev);
784
Corentin Charyd99b5772010-01-22 21:20:57 +0100785 return sysfs_acpi_set(asus, buf, count, METHOD_WLAN);
Corentin Chary4564de12007-01-26 14:04:40 +0100786}
787
788/*
789 * Bluetooth
790 */
Corentin Charye5593bf2010-01-17 17:20:11 +0100791static int asus_bluetooth_set(struct asus_laptop *asus, int status)
792{
793 if (write_acpi_int(asus->handle, METHOD_BLUETOOTH, !!status)) {
Joe Perches5ad77dc2011-03-29 15:21:35 -0700794 pr_warn("Error setting bluetooth status to %d\n", status);
Corentin Charye5593bf2010-01-17 17:20:11 +0100795 return -EIO;
796 }
797 return 0;
798}
799
Corentin Chary4564de12007-01-26 14:04:40 +0100800static ssize_t show_bluetooth(struct device *dev,
801 struct device_attribute *attr, char *buf)
802{
Corentin Chary9129d142009-12-01 22:39:41 +0100803 struct asus_laptop *asus = dev_get_drvdata(dev);
804
Corentin Chary17e78f62010-01-13 22:21:33 +0100805 return sprintf(buf, "%d\n", asus_wireless_status(asus, BT_RSTS));
Corentin Chary4564de12007-01-26 14:04:40 +0100806}
807
Len Brown8def05f2007-01-30 01:46:43 -0500808static ssize_t store_bluetooth(struct device *dev,
809 struct device_attribute *attr, const char *buf,
810 size_t count)
Corentin Chary4564de12007-01-26 14:04:40 +0100811{
Corentin Chary9129d142009-12-01 22:39:41 +0100812 struct asus_laptop *asus = dev_get_drvdata(dev);
813
Corentin Charyd99b5772010-01-22 21:20:57 +0100814 return sysfs_acpi_set(asus, buf, count, METHOD_BLUETOOTH);
Corentin Chary4564de12007-01-26 14:04:40 +0100815}
816
Corentin Chary78127b42007-01-26 14:04:49 +0100817/*
Corentin Charyba1ff5b2010-11-14 17:40:12 +0100818 * Wimax
819 */
820static int asus_wimax_set(struct asus_laptop *asus, int status)
821{
822 if (write_acpi_int(asus->handle, METHOD_WIMAX, !!status)) {
Joe Perches5ad77dc2011-03-29 15:21:35 -0700823 pr_warn("Error setting wimax status to %d\n", status);
Corentin Charyba1ff5b2010-11-14 17:40:12 +0100824 return -EIO;
825 }
826 return 0;
827}
828
829static ssize_t show_wimax(struct device *dev,
830 struct device_attribute *attr, char *buf)
831{
832 struct asus_laptop *asus = dev_get_drvdata(dev);
833
834 return sprintf(buf, "%d\n", asus_wireless_status(asus, WM_RSTS));
835}
836
837static ssize_t store_wimax(struct device *dev,
838 struct device_attribute *attr, const char *buf,
839 size_t count)
840{
841 struct asus_laptop *asus = dev_get_drvdata(dev);
842
843 return sysfs_acpi_set(asus, buf, count, METHOD_WIMAX);
844}
845
846/*
847 * Wwan
848 */
849static int asus_wwan_set(struct asus_laptop *asus, int status)
850{
851 if (write_acpi_int(asus->handle, METHOD_WWAN, !!status)) {
Joe Perches5ad77dc2011-03-29 15:21:35 -0700852 pr_warn("Error setting wwan status to %d\n", status);
Corentin Charyba1ff5b2010-11-14 17:40:12 +0100853 return -EIO;
854 }
855 return 0;
856}
857
858static ssize_t show_wwan(struct device *dev,
859 struct device_attribute *attr, char *buf)
860{
861 struct asus_laptop *asus = dev_get_drvdata(dev);
862
863 return sprintf(buf, "%d\n", asus_wireless_status(asus, WW_RSTS));
864}
865
866static ssize_t store_wwan(struct device *dev,
867 struct device_attribute *attr, const char *buf,
868 size_t count)
869{
870 struct asus_laptop *asus = dev_get_drvdata(dev);
871
872 return sysfs_acpi_set(asus, buf, count, METHOD_WWAN);
873}
874
875/*
Corentin Chary78127b42007-01-26 14:04:49 +0100876 * Display
877 */
Corentin Chary4d441512010-01-13 22:26:24 +0100878static void asus_set_display(struct asus_laptop *asus, int value)
Corentin Chary78127b42007-01-26 14:04:49 +0100879{
880 /* no sanity check needed for now */
Corentin Charyd99b5772010-01-22 21:20:57 +0100881 if (write_acpi_int(asus->handle, METHOD_SWITCH_DISPLAY, value))
Joe Perches5ad77dc2011-03-29 15:21:35 -0700882 pr_warn("Error setting display\n");
Corentin Chary78127b42007-01-26 14:04:49 +0100883 return;
884}
885
Corentin Chary78127b42007-01-26 14:04:49 +0100886/*
887 * Experimental support for display switching. As of now: 1 should activate
888 * the LCD output, 2 should do for CRT, 4 for TV-Out and 8 for DVI.
889 * Any combination (bitwise) of these will suffice. I never actually tested 4
890 * displays hooked up simultaneously, so be warned. See the acpi4asus README
891 * for more info.
892 */
893static ssize_t store_disp(struct device *dev, struct device_attribute *attr,
894 const char *buf, size_t count)
895{
Corentin Chary9129d142009-12-01 22:39:41 +0100896 struct asus_laptop *asus = dev_get_drvdata(dev);
Corentin Chary78127b42007-01-26 14:04:49 +0100897 int rv, value;
898
899 rv = parse_arg(buf, count, &value);
900 if (rv > 0)
Corentin Chary4d441512010-01-13 22:26:24 +0100901 asus_set_display(asus, value);
Corentin Chary78127b42007-01-26 14:04:49 +0100902 return rv;
903}
904
Corentin Chary8b857352007-01-26 14:04:58 +0100905/*
906 * Light Sens
907 */
Corentin Chary4d441512010-01-13 22:26:24 +0100908static void asus_als_switch(struct asus_laptop *asus, int value)
Corentin Chary8b857352007-01-26 14:04:58 +0100909{
Corentin Charyd99b5772010-01-22 21:20:57 +0100910 if (write_acpi_int(asus->handle, METHOD_ALS_CONTROL, value))
Joe Perches5ad77dc2011-03-29 15:21:35 -0700911 pr_warn("Error setting light sensor switch\n");
Corentin Chary50a90c42009-11-30 21:55:12 +0100912 asus->light_switch = value;
Corentin Chary8b857352007-01-26 14:04:58 +0100913}
914
915static ssize_t show_lssw(struct device *dev,
916 struct device_attribute *attr, char *buf)
917{
Corentin Chary9129d142009-12-01 22:39:41 +0100918 struct asus_laptop *asus = dev_get_drvdata(dev);
919
Corentin Chary50a90c42009-11-30 21:55:12 +0100920 return sprintf(buf, "%d\n", asus->light_switch);
Corentin Chary8b857352007-01-26 14:04:58 +0100921}
922
923static ssize_t store_lssw(struct device *dev, struct device_attribute *attr,
924 const char *buf, size_t count)
925{
Corentin Chary9129d142009-12-01 22:39:41 +0100926 struct asus_laptop *asus = dev_get_drvdata(dev);
Corentin Chary8b857352007-01-26 14:04:58 +0100927 int rv, value;
928
929 rv = parse_arg(buf, count, &value);
930 if (rv > 0)
Corentin Chary4d441512010-01-13 22:26:24 +0100931 asus_als_switch(asus, value ? 1 : 0);
Corentin Chary8b857352007-01-26 14:04:58 +0100932
933 return rv;
934}
935
Corentin Chary4d441512010-01-13 22:26:24 +0100936static void asus_als_level(struct asus_laptop *asus, int value)
Corentin Chary8b857352007-01-26 14:04:58 +0100937{
Corentin Charyd99b5772010-01-22 21:20:57 +0100938 if (write_acpi_int(asus->handle, METHOD_ALS_LEVEL, value))
Joe Perches5ad77dc2011-03-29 15:21:35 -0700939 pr_warn("Error setting light sensor level\n");
Corentin Chary50a90c42009-11-30 21:55:12 +0100940 asus->light_level = value;
Corentin Chary8b857352007-01-26 14:04:58 +0100941}
942
943static ssize_t show_lslvl(struct device *dev,
944 struct device_attribute *attr, char *buf)
945{
Corentin Chary9129d142009-12-01 22:39:41 +0100946 struct asus_laptop *asus = dev_get_drvdata(dev);
947
Corentin Chary50a90c42009-11-30 21:55:12 +0100948 return sprintf(buf, "%d\n", asus->light_level);
Corentin Chary8b857352007-01-26 14:04:58 +0100949}
950
951static ssize_t store_lslvl(struct device *dev, struct device_attribute *attr,
952 const char *buf, size_t count)
953{
Corentin Chary9129d142009-12-01 22:39:41 +0100954 struct asus_laptop *asus = dev_get_drvdata(dev);
Corentin Chary8b857352007-01-26 14:04:58 +0100955 int rv, value;
956
957 rv = parse_arg(buf, count, &value);
958 if (rv > 0) {
959 value = (0 < value) ? ((15 < value) ? 15 : value) : 0;
960 /* 0 <= value <= 15 */
Corentin Chary4d441512010-01-13 22:26:24 +0100961 asus_als_level(asus, value);
Corentin Chary8b857352007-01-26 14:04:58 +0100962 }
963
964 return rv;
965}
966
Corentin Charye539c2f2007-05-06 14:47:06 +0200967/*
968 * GPS
969 */
Corentin Chary6358bf22010-01-13 21:55:44 +0100970static int asus_gps_status(struct asus_laptop *asus)
971{
972 unsigned long long status;
973 acpi_status rv = AE_OK;
974
Corentin Charyd99b5772010-01-22 21:20:57 +0100975 rv = acpi_evaluate_integer(asus->handle, METHOD_GPS_STATUS,
976 NULL, &status);
Corentin Chary6358bf22010-01-13 21:55:44 +0100977 if (ACPI_FAILURE(rv)) {
Joe Perches5ad77dc2011-03-29 15:21:35 -0700978 pr_warn("Error reading GPS status\n");
Corentin Chary6358bf22010-01-13 21:55:44 +0100979 return -ENODEV;
980 }
981 return !!status;
982}
983
984static int asus_gps_switch(struct asus_laptop *asus, int status)
985{
Corentin Charyd99b5772010-01-22 21:20:57 +0100986 const char *meth = status ? METHOD_GPS_ON : METHOD_GPS_OFF;
Corentin Chary6358bf22010-01-13 21:55:44 +0100987
Corentin Charyd99b5772010-01-22 21:20:57 +0100988 if (write_acpi_int(asus->handle, meth, 0x02))
Corentin Chary6358bf22010-01-13 21:55:44 +0100989 return -ENODEV;
990 return 0;
991}
992
Corentin Charye539c2f2007-05-06 14:47:06 +0200993static ssize_t show_gps(struct device *dev,
994 struct device_attribute *attr, char *buf)
995{
Corentin Chary9129d142009-12-01 22:39:41 +0100996 struct asus_laptop *asus = dev_get_drvdata(dev);
997
Corentin Chary6358bf22010-01-13 21:55:44 +0100998 return sprintf(buf, "%d\n", asus_gps_status(asus));
Corentin Charye539c2f2007-05-06 14:47:06 +0200999}
1000
1001static ssize_t store_gps(struct device *dev, struct device_attribute *attr,
1002 const char *buf, size_t count)
1003{
Corentin Chary060cbce2010-01-28 10:52:40 +01001004 struct asus_laptop *asus = dev_get_drvdata(dev);
Corentin Chary6358bf22010-01-13 21:55:44 +01001005 int rv, value;
1006 int ret;
Corentin Chary9129d142009-12-01 22:39:41 +01001007
Corentin Chary6358bf22010-01-13 21:55:44 +01001008 rv = parse_arg(buf, count, &value);
1009 if (rv <= 0)
1010 return -EINVAL;
1011 ret = asus_gps_switch(asus, !!value);
1012 if (ret)
1013 return ret;
Corentin Chary18e13112010-01-25 23:29:24 +01001014 rfkill_set_sw_state(asus->gps_rfkill, !value);
Corentin Chary6358bf22010-01-13 21:55:44 +01001015 return rv;
Corentin Charye539c2f2007-05-06 14:47:06 +02001016}
1017
Corentin Chary034ce902009-01-20 16:17:43 +01001018/*
Corentin Chary18e13112010-01-25 23:29:24 +01001019 * rfkill
1020 */
1021static int asus_gps_rfkill_set(void *data, bool blocked)
1022{
Corentin Chary23f45c32010-08-24 09:30:46 +02001023 struct asus_laptop *asus = data;
Corentin Chary18e13112010-01-25 23:29:24 +01001024
Corentin Chary23f45c32010-08-24 09:30:46 +02001025 return asus_gps_switch(asus, !blocked);
Corentin Chary18e13112010-01-25 23:29:24 +01001026}
1027
1028static const struct rfkill_ops asus_gps_rfkill_ops = {
1029 .set_block = asus_gps_rfkill_set,
1030};
1031
1032static void asus_rfkill_exit(struct asus_laptop *asus)
1033{
1034 if (asus->gps_rfkill) {
1035 rfkill_unregister(asus->gps_rfkill);
1036 rfkill_destroy(asus->gps_rfkill);
1037 asus->gps_rfkill = NULL;
1038 }
1039}
1040
1041static int asus_rfkill_init(struct asus_laptop *asus)
1042{
1043 int result;
1044
1045 if (acpi_check_handle(asus->handle, METHOD_GPS_ON, NULL) ||
1046 acpi_check_handle(asus->handle, METHOD_GPS_OFF, NULL) ||
1047 acpi_check_handle(asus->handle, METHOD_GPS_STATUS, NULL))
1048 return 0;
1049
1050 asus->gps_rfkill = rfkill_alloc("asus-gps", &asus->platform_device->dev,
1051 RFKILL_TYPE_GPS,
Corentin Chary23f45c32010-08-24 09:30:46 +02001052 &asus_gps_rfkill_ops, asus);
Corentin Chary18e13112010-01-25 23:29:24 +01001053 if (!asus->gps_rfkill)
1054 return -EINVAL;
1055
1056 result = rfkill_register(asus->gps_rfkill);
1057 if (result) {
1058 rfkill_destroy(asus->gps_rfkill);
1059 asus->gps_rfkill = NULL;
1060 }
1061
1062 return result;
1063}
1064
1065/*
Corentin Charybe4ee822009-12-06 16:27:09 +01001066 * Input device (i.e. hotkeys)
Corentin Chary034ce902009-01-20 16:17:43 +01001067 */
Corentin Charybe4ee822009-12-06 16:27:09 +01001068static void asus_input_notify(struct asus_laptop *asus, int event)
1069{
Corentin Chary66a71dd2010-01-25 22:50:11 +01001070 if (asus->inputdev)
1071 sparse_keymap_report_event(asus->inputdev, event, 1, true);
Corentin Charybe4ee822009-12-06 16:27:09 +01001072}
1073
1074static int asus_input_init(struct asus_laptop *asus)
1075{
Corentin Chary66a71dd2010-01-25 22:50:11 +01001076 struct input_dev *input;
1077 int error;
Corentin Charybe4ee822009-12-06 16:27:09 +01001078
Corentin Chary66a71dd2010-01-25 22:50:11 +01001079 input = input_allocate_device();
1080 if (!input) {
Corentin Charybe4ee822009-12-06 16:27:09 +01001081 pr_info("Unable to allocate input device\n");
Axel Lin45036ae2010-07-05 15:29:00 +08001082 return -ENOMEM;
Corentin Charybe4ee822009-12-06 16:27:09 +01001083 }
Corentin Chary66a71dd2010-01-25 22:50:11 +01001084 input->name = "Asus Laptop extra buttons";
1085 input->phys = ASUS_LAPTOP_FILE "/input0";
1086 input->id.bustype = BUS_HOST;
1087 input->dev.parent = &asus->platform_device->dev;
Corentin Charybe4ee822009-12-06 16:27:09 +01001088
Corentin Chary66a71dd2010-01-25 22:50:11 +01001089 error = sparse_keymap_setup(input, asus_keymap, NULL);
1090 if (error) {
1091 pr_err("Unable to setup input device keymap\n");
Axel Lin45036ae2010-07-05 15:29:00 +08001092 goto err_free_dev;
Corentin Charybe4ee822009-12-06 16:27:09 +01001093 }
Corentin Chary66a71dd2010-01-25 22:50:11 +01001094 error = input_register_device(input);
1095 if (error) {
Corentin Charybe4ee822009-12-06 16:27:09 +01001096 pr_info("Unable to register input device\n");
Axel Lin45036ae2010-07-05 15:29:00 +08001097 goto err_free_keymap;
Corentin Charybe4ee822009-12-06 16:27:09 +01001098 }
Corentin Chary66a71dd2010-01-25 22:50:11 +01001099
1100 asus->inputdev = input;
1101 return 0;
1102
Axel Lin45036ae2010-07-05 15:29:00 +08001103err_free_keymap:
Corentin Chary66a71dd2010-01-25 22:50:11 +01001104 sparse_keymap_free(input);
Axel Lin45036ae2010-07-05 15:29:00 +08001105err_free_dev:
Corentin Chary66a71dd2010-01-25 22:50:11 +01001106 input_free_device(input);
1107 return error;
Corentin Charybe4ee822009-12-06 16:27:09 +01001108}
1109
1110static void asus_input_exit(struct asus_laptop *asus)
1111{
Corentin Chary66a71dd2010-01-25 22:50:11 +01001112 if (asus->inputdev) {
1113 sparse_keymap_free(asus->inputdev);
Corentin Charybe4ee822009-12-06 16:27:09 +01001114 input_unregister_device(asus->inputdev);
Corentin Chary66a71dd2010-01-25 22:50:11 +01001115 }
Corentin Chary71e687d2010-08-24 09:30:44 +02001116 asus->inputdev = NULL;
Corentin Charybe4ee822009-12-06 16:27:09 +01001117}
1118
1119/*
1120 * ACPI driver
1121 */
Corentin Chary600ad522009-11-30 21:42:42 +01001122static void asus_acpi_notify(struct acpi_device *device, u32 event)
Corentin Chary85091b72007-01-26 14:04:30 +01001123{
Corentin Chary9129d142009-12-01 22:39:41 +01001124 struct asus_laptop *asus = acpi_driver_data(device);
Corentin Chary6050c8d2009-02-15 19:30:19 +01001125 u16 count;
Corentin Chary034ce902009-01-20 16:17:43 +01001126
Corentin Chary619d8b12009-11-28 10:35:37 +01001127 /* TODO Find a better way to handle events count. */
Corentin Chary50a90c42009-11-30 21:55:12 +01001128 count = asus->event_count[event % 128]++;
1129 acpi_bus_generate_proc_event(asus->device, event, count);
1130 acpi_bus_generate_netlink_event(asus->device->pnp.device_class,
1131 dev_name(&asus->device->dev), event,
Corentin Chary6050c8d2009-02-15 19:30:19 +01001132 count);
Corentin Chary85091b72007-01-26 14:04:30 +01001133
Corentin Charya539df52010-01-25 22:53:21 +01001134 /* Brightness events are special */
1135 if (event >= ATKD_BR_MIN && event <= ATKD_BR_MAX) {
1136
1137 /* Ignore them completely if the acpi video driver is used */
1138 if (asus->backlight_device != NULL) {
1139 /* Update the backlight device. */
1140 asus_backlight_notify(asus);
1141 }
1142 return ;
1143 }
Corentin Charybe4ee822009-12-06 16:27:09 +01001144 asus_input_notify(asus, event);
Corentin Chary85091b72007-01-26 14:04:30 +01001145}
1146
Corentin Chary2a1fd642010-01-26 21:02:23 +01001147static DEVICE_ATTR(infos, S_IRUGO, show_infos, NULL);
1148static DEVICE_ATTR(wlan, S_IRUGO | S_IWUSR, show_wlan, store_wlan);
Dmitry Torokhovac9b1e52010-08-26 00:12:19 -07001149static DEVICE_ATTR(bluetooth, S_IRUGO | S_IWUSR,
1150 show_bluetooth, store_bluetooth);
Corentin Charyba1ff5b2010-11-14 17:40:12 +01001151static DEVICE_ATTR(wimax, S_IRUGO | S_IWUSR, show_wimax, store_wimax);
1152static DEVICE_ATTR(wwan, S_IRUGO | S_IWUSR, show_wwan, store_wwan);
Corentin Chary3b81cf92011-02-06 13:27:31 +01001153static DEVICE_ATTR(display, S_IWUSR, NULL, store_disp);
Corentin Chary2a1fd642010-01-26 21:02:23 +01001154static DEVICE_ATTR(ledd, S_IRUGO | S_IWUSR, show_ledd, store_ledd);
1155static DEVICE_ATTR(ls_level, S_IRUGO | S_IWUSR, show_lslvl, store_lslvl);
1156static DEVICE_ATTR(ls_switch, S_IRUGO | S_IWUSR, show_lssw, store_lssw);
1157static DEVICE_ATTR(gps, S_IRUGO | S_IWUSR, show_gps, store_gps);
1158
Dmitry Torokhovac9b1e52010-08-26 00:12:19 -07001159static struct attribute *asus_attributes[] = {
1160 &dev_attr_infos.attr,
1161 &dev_attr_wlan.attr,
1162 &dev_attr_bluetooth.attr,
Corentin Charyba1ff5b2010-11-14 17:40:12 +01001163 &dev_attr_wimax.attr,
1164 &dev_attr_wwan.attr,
Dmitry Torokhovac9b1e52010-08-26 00:12:19 -07001165 &dev_attr_display.attr,
1166 &dev_attr_ledd.attr,
1167 &dev_attr_ls_level.attr,
1168 &dev_attr_ls_switch.attr,
1169 &dev_attr_gps.attr,
1170 NULL
1171};
Corentin Chary2a1fd642010-01-26 21:02:23 +01001172
Dmitry Torokhovac9b1e52010-08-26 00:12:19 -07001173static mode_t asus_sysfs_is_visible(struct kobject *kobj,
1174 struct attribute *attr,
1175 int idx)
1176{
1177 struct device *dev = container_of(kobj, struct device, kobj);
1178 struct platform_device *pdev = to_platform_device(dev);
1179 struct asus_laptop *asus = platform_get_drvdata(pdev);
1180 acpi_handle handle = asus->handle;
1181 bool supported;
1182
1183 if (attr == &dev_attr_wlan.attr) {
1184 supported = !acpi_check_handle(handle, METHOD_WLAN, NULL);
1185
1186 } else if (attr == &dev_attr_bluetooth.attr) {
1187 supported = !acpi_check_handle(handle, METHOD_BLUETOOTH, NULL);
1188
1189 } else if (attr == &dev_attr_display.attr) {
1190 supported = !acpi_check_handle(handle, METHOD_SWITCH_DISPLAY, NULL);
1191
Corentin Charyba1ff5b2010-11-14 17:40:12 +01001192 } else if (attr == &dev_attr_wimax.attr) {
1193 supported =
1194 !acpi_check_handle(asus->handle, METHOD_WIMAX, NULL);
1195
1196 } else if (attr == &dev_attr_wwan.attr) {
1197 supported = !acpi_check_handle(asus->handle, METHOD_WWAN, NULL);
1198
Dmitry Torokhovac9b1e52010-08-26 00:12:19 -07001199 } else if (attr == &dev_attr_ledd.attr) {
1200 supported = !acpi_check_handle(handle, METHOD_LEDD, NULL);
1201
1202 } else if (attr == &dev_attr_ls_switch.attr ||
1203 attr == &dev_attr_ls_level.attr) {
1204 supported = !acpi_check_handle(handle, METHOD_ALS_CONTROL, NULL) &&
1205 !acpi_check_handle(handle, METHOD_ALS_LEVEL, NULL);
1206
1207 } else if (attr == &dev_attr_gps.attr) {
1208 supported = !acpi_check_handle(handle, METHOD_GPS_ON, NULL) &&
1209 !acpi_check_handle(handle, METHOD_GPS_OFF, NULL) &&
1210 !acpi_check_handle(handle, METHOD_GPS_STATUS, NULL);
1211 } else {
1212 supported = true;
1213 }
1214
1215 return supported ? attr->mode : 0;
Corentin Chary2a1fd642010-01-26 21:02:23 +01001216}
1217
Corentin Chary2a1fd642010-01-26 21:02:23 +01001218
Dmitry Torokhovac9b1e52010-08-26 00:12:19 -07001219static const struct attribute_group asus_attr_group = {
1220 .is_visible = asus_sysfs_is_visible,
1221 .attrs = asus_attributes,
1222};
Corentin Chary85091b72007-01-26 14:04:30 +01001223
Corentin Chary9129d142009-12-01 22:39:41 +01001224static int asus_platform_init(struct asus_laptop *asus)
Corentin Chary600ad522009-11-30 21:42:42 +01001225{
Corentin Chary71e687d2010-08-24 09:30:44 +02001226 int result;
Corentin Chary600ad522009-11-30 21:42:42 +01001227
Corentin Chary50a90c42009-11-30 21:55:12 +01001228 asus->platform_device = platform_device_alloc(ASUS_LAPTOP_FILE, -1);
1229 if (!asus->platform_device)
Corentin Chary600ad522009-11-30 21:42:42 +01001230 return -ENOMEM;
Corentin Chary9129d142009-12-01 22:39:41 +01001231 platform_set_drvdata(asus->platform_device, asus);
Corentin Chary600ad522009-11-30 21:42:42 +01001232
Corentin Chary71e687d2010-08-24 09:30:44 +02001233 result = platform_device_add(asus->platform_device);
1234 if (result)
Corentin Chary600ad522009-11-30 21:42:42 +01001235 goto fail_platform_device;
1236
Dmitry Torokhovac9b1e52010-08-26 00:12:19 -07001237 result = sysfs_create_group(&asus->platform_device->dev.kobj,
1238 &asus_attr_group);
Corentin Chary71e687d2010-08-24 09:30:44 +02001239 if (result)
Corentin Chary600ad522009-11-30 21:42:42 +01001240 goto fail_sysfs;
Dmitry Torokhovac9b1e52010-08-26 00:12:19 -07001241
Corentin Chary600ad522009-11-30 21:42:42 +01001242 return 0;
1243
1244fail_sysfs:
Corentin Chary50a90c42009-11-30 21:55:12 +01001245 platform_device_del(asus->platform_device);
Corentin Chary600ad522009-11-30 21:42:42 +01001246fail_platform_device:
Corentin Chary50a90c42009-11-30 21:55:12 +01001247 platform_device_put(asus->platform_device);
Corentin Chary71e687d2010-08-24 09:30:44 +02001248 return result;
Corentin Chary600ad522009-11-30 21:42:42 +01001249}
1250
Corentin Chary9129d142009-12-01 22:39:41 +01001251static void asus_platform_exit(struct asus_laptop *asus)
Corentin Chary600ad522009-11-30 21:42:42 +01001252{
Dmitry Torokhovac9b1e52010-08-26 00:12:19 -07001253 sysfs_remove_group(&asus->platform_device->dev.kobj, &asus_attr_group);
Corentin Chary50a90c42009-11-30 21:55:12 +01001254 platform_device_unregister(asus->platform_device);
Corentin Chary600ad522009-11-30 21:42:42 +01001255}
1256
1257static struct platform_driver platform_driver = {
Len Brown8def05f2007-01-30 01:46:43 -05001258 .driver = {
Corentin Chary9129d142009-12-01 22:39:41 +01001259 .name = ASUS_LAPTOP_FILE,
1260 .owner = THIS_MODULE,
1261 }
Corentin Chary85091b72007-01-26 14:04:30 +01001262};
1263
Corentin Chary85091b72007-01-26 14:04:30 +01001264/*
Corentin Chary50a90c42009-11-30 21:55:12 +01001265 * This function is used to initialize the context with right values. In this
1266 * method, we can make all the detection we want, and modify the asus_laptop
1267 * struct
Corentin Chary85091b72007-01-26 14:04:30 +01001268 */
Corentin Chary7c247642009-11-30 22:13:54 +01001269static int asus_laptop_get_info(struct asus_laptop *asus)
Corentin Chary85091b72007-01-26 14:04:30 +01001270{
1271 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
Corentin Chary85091b72007-01-26 14:04:30 +01001272 union acpi_object *model = NULL;
Matthew Wilcox27663c52008-10-10 02:22:59 -04001273 unsigned long long bsts_result, hwrs_result;
Corentin Chary85091b72007-01-26 14:04:30 +01001274 char *string = NULL;
1275 acpi_status status;
1276
1277 /*
1278 * Get DSDT headers early enough to allow for differentiating between
1279 * models, but late enough to allow acpi_bus_register_driver() to fail
1280 * before doing anything ACPI-specific. Should we encounter a machine,
1281 * which needs special handling (i.e. its hotkey device has a different
Corentin Chary7c247642009-11-30 22:13:54 +01001282 * HID), this bit will be moved.
Corentin Chary85091b72007-01-26 14:04:30 +01001283 */
Corentin Chary7c247642009-11-30 22:13:54 +01001284 status = acpi_get_table(ACPI_SIG_DSDT, 1, &asus->dsdt_info);
Corentin Chary85091b72007-01-26 14:04:30 +01001285 if (ACPI_FAILURE(status))
Joe Perches5ad77dc2011-03-29 15:21:35 -07001286 pr_warn("Couldn't get the DSDT table header\n");
Corentin Chary85091b72007-01-26 14:04:30 +01001287
1288 /* We have to write 0 on init this far for all ASUS models */
Corentin Chary50a90c42009-11-30 21:55:12 +01001289 if (write_acpi_int_ret(asus->handle, "INIT", 0, &buffer)) {
Corentin Chary2fcc23d2009-06-19 14:52:03 +02001290 pr_err("Hotkey initialization failed\n");
Corentin Chary85091b72007-01-26 14:04:30 +01001291 return -ENODEV;
1292 }
1293
1294 /* This needs to be called for some laptops to init properly */
Corentin Chary9a816852007-03-11 10:25:38 +01001295 status =
Corentin Chary50a90c42009-11-30 21:55:12 +01001296 acpi_evaluate_integer(asus->handle, "BSTS", NULL, &bsts_result);
Corentin Chary9a816852007-03-11 10:25:38 +01001297 if (ACPI_FAILURE(status))
Joe Perches5ad77dc2011-03-29 15:21:35 -07001298 pr_warn("Error calling BSTS\n");
Corentin Chary85091b72007-01-26 14:04:30 +01001299 else if (bsts_result)
Corentin Chary2fcc23d2009-06-19 14:52:03 +02001300 pr_notice("BSTS called, 0x%02x returned\n",
Corentin Chary9a816852007-03-11 10:25:38 +01001301 (uint) bsts_result);
Corentin Chary85091b72007-01-26 14:04:30 +01001302
Corentin Chary185e5af2007-03-11 10:27:33 +01001303 /* This too ... */
Corentin Charye5593bf2010-01-17 17:20:11 +01001304 if (write_acpi_int(asus->handle, "CWAP", wapf))
1305 pr_err("Error calling CWAP(%d)\n", wapf);
Corentin Chary85091b72007-01-26 14:04:30 +01001306 /*
1307 * Try to match the object returned by INIT to the specific model.
1308 * Handle every possible object (or the lack of thereof) the DSDT
1309 * writers might throw at us. When in trouble, we pass NULL to
1310 * asus_model_match() and try something completely different.
1311 */
1312 if (buffer.pointer) {
1313 model = buffer.pointer;
1314 switch (model->type) {
1315 case ACPI_TYPE_STRING:
1316 string = model->string.pointer;
1317 break;
1318 case ACPI_TYPE_BUFFER:
1319 string = model->buffer.pointer;
1320 break;
1321 default:
1322 string = "";
1323 break;
1324 }
1325 }
Corentin Chary50a90c42009-11-30 21:55:12 +01001326 asus->name = kstrdup(string, GFP_KERNEL);
Axel Lind8eca112010-06-29 11:09:47 +08001327 if (!asus->name) {
1328 kfree(buffer.pointer);
Corentin Chary85091b72007-01-26 14:04:30 +01001329 return -ENOMEM;
Axel Lind8eca112010-06-29 11:09:47 +08001330 }
Corentin Chary85091b72007-01-26 14:04:30 +01001331
Len Brown8def05f2007-01-30 01:46:43 -05001332 if (*string)
Corentin Chary2fcc23d2009-06-19 14:52:03 +02001333 pr_notice(" %s model detected\n", string);
Corentin Chary85091b72007-01-26 14:04:30 +01001334
Corentin Chary4564de12007-01-26 14:04:40 +01001335 /*
1336 * The HWRS method return informations about the hardware.
Corentin Charyba1ff5b2010-11-14 17:40:12 +01001337 * 0x80 bit is for WLAN, 0x100 for Bluetooth,
1338 * 0x40 for WWAN, 0x10 for WIMAX.
Corentin Chary4564de12007-01-26 14:04:40 +01001339 * The significance of others is yet to be found.
Corentin Chary4564de12007-01-26 14:04:40 +01001340 */
Corentin Chary9a816852007-03-11 10:25:38 +01001341 status =
Corentin Chary50a90c42009-11-30 21:55:12 +01001342 acpi_evaluate_integer(asus->handle, "HRWS", NULL, &hwrs_result);
Corentin Charyd99b5772010-01-22 21:20:57 +01001343 if (!ACPI_FAILURE(status))
1344 pr_notice(" HRWS returned %x", (int)hwrs_result);
Corentin Chary4564de12007-01-26 14:04:40 +01001345
Corentin Charyd99b5772010-01-22 21:20:57 +01001346 if (!acpi_check_handle(asus->handle, METHOD_WL_STATUS, NULL))
Corentin Charyaa9df932010-01-13 21:49:10 +01001347 asus->have_rsts = true;
Corentin Chary4564de12007-01-26 14:04:40 +01001348
Corentin Chary85091b72007-01-26 14:04:30 +01001349 kfree(model);
1350
1351 return AE_OK;
1352}
1353
Corentin Chary9129d142009-12-01 22:39:41 +01001354static int __devinit asus_acpi_init(struct asus_laptop *asus)
Corentin Chary600ad522009-11-30 21:42:42 +01001355{
1356 int result = 0;
1357
Corentin Chary50a90c42009-11-30 21:55:12 +01001358 result = acpi_bus_get_status(asus->device);
Corentin Chary600ad522009-11-30 21:42:42 +01001359 if (result)
1360 return result;
Corentin Chary50a90c42009-11-30 21:55:12 +01001361 if (!asus->device->status.present) {
Corentin Chary600ad522009-11-30 21:42:42 +01001362 pr_err("Hotkey device not present, aborting\n");
1363 return -ENODEV;
1364 }
1365
Corentin Chary7c247642009-11-30 22:13:54 +01001366 result = asus_laptop_get_info(asus);
Corentin Chary600ad522009-11-30 21:42:42 +01001367 if (result)
1368 return result;
1369
Corentin Chary600ad522009-11-30 21:42:42 +01001370 /* WLED and BLED are on by default */
Corentin Charybe4ee822009-12-06 16:27:09 +01001371 if (bluetooth_status >= 0)
Corentin Charye5593bf2010-01-17 17:20:11 +01001372 asus_bluetooth_set(asus, !!bluetooth_status);
1373
Corentin Charyd0930a22010-01-17 17:21:13 +01001374 if (wlan_status >= 0)
1375 asus_wlan_set(asus, !!wlan_status);
Corentin Chary600ad522009-11-30 21:42:42 +01001376
Corentin Charyba1ff5b2010-11-14 17:40:12 +01001377 if (wimax_status >= 0)
1378 asus_wimax_set(asus, !!wimax_status);
1379
1380 if (wwan_status >= 0)
1381 asus_wwan_set(asus, !!wwan_status);
1382
Corentin Chary600ad522009-11-30 21:42:42 +01001383 /* Keyboard Backlight is on by default */
Corentin Charyd99b5772010-01-22 21:20:57 +01001384 if (!acpi_check_handle(asus->handle, METHOD_KBD_LIGHT_SET, NULL))
Corentin Chary4d441512010-01-13 22:26:24 +01001385 asus_kled_set(asus, 1);
Corentin Chary600ad522009-11-30 21:42:42 +01001386
1387 /* LED display is off by default */
Corentin Chary50a90c42009-11-30 21:55:12 +01001388 asus->ledd_status = 0xFFF;
Corentin Chary600ad522009-11-30 21:42:42 +01001389
1390 /* Set initial values of light sensor and level */
Corentin Charybe4ee822009-12-06 16:27:09 +01001391 asus->light_switch = 0; /* Default to light sensor disabled */
1392 asus->light_level = 5; /* level 5 for sensor sensitivity */
Corentin Chary600ad522009-11-30 21:42:42 +01001393
Corentin Charyd99b5772010-01-22 21:20:57 +01001394 if (!acpi_check_handle(asus->handle, METHOD_ALS_CONTROL, NULL) &&
1395 !acpi_check_handle(asus->handle, METHOD_ALS_LEVEL, NULL)) {
Corentin Chary4d441512010-01-13 22:26:24 +01001396 asus_als_switch(asus, asus->light_switch);
Corentin Chary4d441512010-01-13 22:26:24 +01001397 asus_als_level(asus, asus->light_level);
Corentin Charyd99b5772010-01-22 21:20:57 +01001398 }
Corentin Chary600ad522009-11-30 21:42:42 +01001399
Corentin Chary600ad522009-11-30 21:42:42 +01001400 return result;
1401}
1402
Corentin Charyaf96f872011-02-06 13:27:30 +01001403static void __devinit asus_dmi_check(void)
1404{
1405 const char *model;
1406
1407 model = dmi_get_system_info(DMI_PRODUCT_NAME);
1408 if (!model)
1409 return;
1410
1411 /* On L1400B WLED control the sound card, don't mess with it ... */
1412 if (strncmp(model, "L1400B", 6) == 0) {
1413 wlan_status = -1;
1414 }
1415}
1416
Corentin Chary71e687d2010-08-24 09:30:44 +02001417static bool asus_device_present;
1418
Corentin Chary600ad522009-11-30 21:42:42 +01001419static int __devinit asus_acpi_add(struct acpi_device *device)
1420{
Corentin Chary9129d142009-12-01 22:39:41 +01001421 struct asus_laptop *asus;
Corentin Chary600ad522009-11-30 21:42:42 +01001422 int result;
1423
1424 pr_notice("Asus Laptop Support version %s\n",
1425 ASUS_LAPTOP_VERSION);
Corentin Chary50a90c42009-11-30 21:55:12 +01001426 asus = kzalloc(sizeof(struct asus_laptop), GFP_KERNEL);
1427 if (!asus)
Corentin Chary600ad522009-11-30 21:42:42 +01001428 return -ENOMEM;
Corentin Chary50a90c42009-11-30 21:55:12 +01001429 asus->handle = device->handle;
1430 strcpy(acpi_device_name(device), ASUS_LAPTOP_DEVICE_NAME);
1431 strcpy(acpi_device_class(device), ASUS_LAPTOP_CLASS);
1432 device->driver_data = asus;
1433 asus->device = device;
Corentin Chary600ad522009-11-30 21:42:42 +01001434
Corentin Charyaf96f872011-02-06 13:27:30 +01001435 asus_dmi_check();
1436
Corentin Chary9129d142009-12-01 22:39:41 +01001437 result = asus_acpi_init(asus);
Corentin Chary600ad522009-11-30 21:42:42 +01001438 if (result)
1439 goto fail_platform;
1440
1441 /*
1442 * Register the platform device first. It is used as a parent for the
1443 * sub-devices below.
1444 */
Corentin Chary9129d142009-12-01 22:39:41 +01001445 result = asus_platform_init(asus);
Corentin Chary600ad522009-11-30 21:42:42 +01001446 if (result)
1447 goto fail_platform;
1448
1449 if (!acpi_video_backlight_support()) {
Corentin Chary9129d142009-12-01 22:39:41 +01001450 result = asus_backlight_init(asus);
Corentin Chary600ad522009-11-30 21:42:42 +01001451 if (result)
1452 goto fail_backlight;
1453 } else
1454 pr_info("Backlight controlled by ACPI video driver\n");
1455
Corentin Chary9129d142009-12-01 22:39:41 +01001456 result = asus_input_init(asus);
Corentin Chary600ad522009-11-30 21:42:42 +01001457 if (result)
1458 goto fail_input;
1459
Corentin Chary9129d142009-12-01 22:39:41 +01001460 result = asus_led_init(asus);
Corentin Chary600ad522009-11-30 21:42:42 +01001461 if (result)
1462 goto fail_led;
1463
Corentin Chary18e13112010-01-25 23:29:24 +01001464 result = asus_rfkill_init(asus);
1465 if (result)
1466 goto fail_rfkill;
1467
Corentin Chary600ad522009-11-30 21:42:42 +01001468 asus_device_present = true;
1469 return 0;
1470
Corentin Chary18e13112010-01-25 23:29:24 +01001471fail_rfkill:
1472 asus_led_exit(asus);
Corentin Chary600ad522009-11-30 21:42:42 +01001473fail_led:
Corentin Chary9129d142009-12-01 22:39:41 +01001474 asus_input_exit(asus);
Corentin Chary600ad522009-11-30 21:42:42 +01001475fail_input:
Corentin Chary9129d142009-12-01 22:39:41 +01001476 asus_backlight_exit(asus);
Corentin Chary600ad522009-11-30 21:42:42 +01001477fail_backlight:
Corentin Chary9129d142009-12-01 22:39:41 +01001478 asus_platform_exit(asus);
Corentin Chary600ad522009-11-30 21:42:42 +01001479fail_platform:
Corentin Chary50a90c42009-11-30 21:55:12 +01001480 kfree(asus->name);
1481 kfree(asus);
Corentin Chary600ad522009-11-30 21:42:42 +01001482
1483 return result;
1484}
1485
1486static int asus_acpi_remove(struct acpi_device *device, int type)
1487{
Corentin Chary9129d142009-12-01 22:39:41 +01001488 struct asus_laptop *asus = acpi_driver_data(device);
1489
1490 asus_backlight_exit(asus);
Corentin Chary18e13112010-01-25 23:29:24 +01001491 asus_rfkill_exit(asus);
Corentin Chary9129d142009-12-01 22:39:41 +01001492 asus_led_exit(asus);
1493 asus_input_exit(asus);
1494 asus_platform_exit(asus);
Corentin Chary600ad522009-11-30 21:42:42 +01001495
Corentin Chary50a90c42009-11-30 21:55:12 +01001496 kfree(asus->name);
1497 kfree(asus);
Corentin Chary600ad522009-11-30 21:42:42 +01001498 return 0;
1499}
1500
1501static const struct acpi_device_id asus_device_ids[] = {
1502 {"ATK0100", 0},
1503 {"ATK0101", 0},
1504 {"", 0},
1505};
1506MODULE_DEVICE_TABLE(acpi, asus_device_ids);
1507
1508static struct acpi_driver asus_acpi_driver = {
Corentin Chary50a90c42009-11-30 21:55:12 +01001509 .name = ASUS_LAPTOP_NAME,
1510 .class = ASUS_LAPTOP_CLASS,
Corentin Chary600ad522009-11-30 21:42:42 +01001511 .owner = THIS_MODULE,
1512 .ids = asus_device_ids,
1513 .flags = ACPI_DRIVER_ALL_NOTIFY_EVENTS,
1514 .ops = {
1515 .add = asus_acpi_add,
1516 .remove = asus_acpi_remove,
1517 .notify = asus_acpi_notify,
1518 },
1519};
1520
Corentin Chary85091b72007-01-26 14:04:30 +01001521static int __init asus_laptop_init(void)
1522{
1523 int result;
1524
Corentin Chary600ad522009-11-30 21:42:42 +01001525 result = platform_driver_register(&platform_driver);
Corentin Chary85091b72007-01-26 14:04:30 +01001526 if (result < 0)
1527 return result;
1528
Corentin Chary600ad522009-11-30 21:42:42 +01001529 result = acpi_bus_register_driver(&asus_acpi_driver);
1530 if (result < 0)
1531 goto fail_acpi_driver;
1532 if (!asus_device_present) {
1533 result = -ENODEV;
1534 goto fail_no_device;
Corentin Chary85091b72007-01-26 14:04:30 +01001535 }
Len Brown8def05f2007-01-30 01:46:43 -05001536 return 0;
Corentin Chary85091b72007-01-26 14:04:30 +01001537
Corentin Chary600ad522009-11-30 21:42:42 +01001538fail_no_device:
1539 acpi_bus_unregister_driver(&asus_acpi_driver);
1540fail_acpi_driver:
1541 platform_driver_unregister(&platform_driver);
Corentin Chary85091b72007-01-26 14:04:30 +01001542 return result;
1543}
1544
Corentin Chary600ad522009-11-30 21:42:42 +01001545static void __exit asus_laptop_exit(void)
1546{
1547 acpi_bus_unregister_driver(&asus_acpi_driver);
1548 platform_driver_unregister(&platform_driver);
1549}
1550
Corentin Chary85091b72007-01-26 14:04:30 +01001551module_init(asus_laptop_init);
1552module_exit(asus_laptop_exit);