blob: c1125b36d177e65b50502dd9f90e611bc9fa42c2 [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
Andy Ross8819de72011-10-14 11:13:35 +02007 * Copyright (C) 2011 Wind River Systems
Corentin Chary85091b72007-01-26 14:04:30 +01008 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
22 *
23 *
24 * The development page for this driver is located at
25 * http://sourceforge.net/projects/acpi4asus/
26 *
27 * Credits:
28 * Pontus Fuchs - Helper functions, cleanup
29 * Johann Wiesner - Small compile fixes
30 * John Belmonte - ACPI code for Toshiba laptop was a good starting point.
31 * Eric Burghard - LED display support for W1N
32 * Josh Green - Light Sens support
Lucas De Marchic8440332011-03-17 17:18:22 -030033 * Thomas Tuttle - His first patch for led support was very helpful
Corentin Charye539c2f2007-05-06 14:47:06 +020034 * Sam Lin - GPS support
Corentin Chary85091b72007-01-26 14:04:30 +010035 */
36
Corentin Chary2fcc23d2009-06-19 14:52:03 +020037#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
38
Corentin Chary85091b72007-01-26 14:04:30 +010039#include <linux/kernel.h>
40#include <linux/module.h>
41#include <linux/init.h>
42#include <linux/types.h>
43#include <linux/err.h>
44#include <linux/proc_fs.h>
Corentin Chary6b7091e2007-01-26 14:04:45 +010045#include <linux/backlight.h>
46#include <linux/fb.h>
Corentin Charybe18cda2007-01-26 14:04:35 +010047#include <linux/leds.h>
Corentin Chary85091b72007-01-26 14:04:30 +010048#include <linux/platform_device.h>
Corentin Chary060cbce2010-01-28 10:52:40 +010049#include <linux/uaccess.h>
Corentin Chary034ce902009-01-20 16:17:43 +010050#include <linux/input.h>
Corentin Chary66a71dd2010-01-25 22:50:11 +010051#include <linux/input/sparse-keymap.h>
Andy Ross8819de72011-10-14 11:13:35 +020052#include <linux/input-polldev.h>
Corentin Chary18e13112010-01-25 23:29:24 +010053#include <linux/rfkill.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090054#include <linux/slab.h>
Corentin Charyaf96f872011-02-06 13:27:30 +010055#include <linux/dmi.h>
Corentin Chary060cbce2010-01-28 10:52:40 +010056#include <acpi/acpi_drivers.h>
57#include <acpi/acpi_bus.h>
Corentin Chary85091b72007-01-26 14:04:30 +010058
Corentin Chary91687cc2009-11-28 10:32:34 +010059#define ASUS_LAPTOP_VERSION "0.42"
Corentin Chary85091b72007-01-26 14:04:30 +010060
Corentin Chary50a90c42009-11-30 21:55:12 +010061#define ASUS_LAPTOP_NAME "Asus Laptop Support"
62#define ASUS_LAPTOP_CLASS "hotkey"
63#define ASUS_LAPTOP_DEVICE_NAME "Hotkey"
64#define ASUS_LAPTOP_FILE KBUILD_MODNAME
65#define ASUS_LAPTOP_PREFIX "\\_SB.ATKD."
Corentin Chary85091b72007-01-26 14:04:30 +010066
Corentin Chary85091b72007-01-26 14:04:30 +010067MODULE_AUTHOR("Julien Lerouge, Karol Kozimor, Corentin Chary");
Corentin Chary50a90c42009-11-30 21:55:12 +010068MODULE_DESCRIPTION(ASUS_LAPTOP_NAME);
Corentin Chary85091b72007-01-26 14:04:30 +010069MODULE_LICENSE("GPL");
70
Corentin Charybe966662009-08-29 10:28:29 +020071/*
72 * WAPF defines the behavior of the Fn+Fx wlan key
Corentin Chary185e5af2007-03-11 10:27:33 +010073 * The significance of values is yet to be found, but
74 * most of the time:
Corentin Charyfddbfed2011-07-01 11:34:39 +020075 * Bit | Bluetooth | WLAN
76 * 0 | Hardware | Hardware
77 * 1 | Hardware | Software
78 * 4 | Software | Software
Corentin Chary185e5af2007-03-11 10:27:33 +010079 */
80static uint wapf = 1;
Axel Linc26d85c2010-07-20 15:19:55 -070081module_param(wapf, uint, 0444);
Corentin Chary185e5af2007-03-11 10:27:33 +010082MODULE_PARM_DESC(wapf, "WAPF value");
83
Corentin Chary774b0672011-12-15 08:27:34 +010084static char *wled_type = "unknown";
85static char *bled_type = "unknown";
86
87module_param(wled_type, charp, 0444);
88MODULE_PARM_DESC(wlan_status, "Set the wled type on boot "
89 "(unknown, led or rfkill). "
90 "default is unknown");
91
92module_param(bled_type, charp, 0444);
93MODULE_PARM_DESC(bled_type, "Set the bled type on boot "
94 "(unknown, led or rfkill). "
95 "default is unknown");
96
Dan Carpenter668f4a02010-04-06 13:44:29 +030097static int wlan_status = 1;
98static int bluetooth_status = 1;
Corentin Charyba1ff5b2010-11-14 17:40:12 +010099static int wimax_status = -1;
100static int wwan_status = -1;
Andy Rossabec04d2011-10-14 11:13:37 +0200101static int als_status;
Corentin Chary0e875f42010-01-10 20:49:26 +0100102
Axel Linc26d85c2010-07-20 15:19:55 -0700103module_param(wlan_status, int, 0444);
Corentin Charyd0930a22010-01-17 17:21:13 +0100104MODULE_PARM_DESC(wlan_status, "Set the wireless status on boot "
Corentin Chary0e875f42010-01-10 20:49:26 +0100105 "(0 = disabled, 1 = enabled, -1 = don't do anything). "
Corentin Chary16cbf932011-10-14 11:13:40 +0200106 "default is -1");
Corentin Chary0e875f42010-01-10 20:49:26 +0100107
Axel Linc26d85c2010-07-20 15:19:55 -0700108module_param(bluetooth_status, int, 0444);
Corentin Chary0e875f42010-01-10 20:49:26 +0100109MODULE_PARM_DESC(bluetooth_status, "Set the wireless status on boot "
110 "(0 = disabled, 1 = enabled, -1 = don't do anything). "
Corentin Chary16cbf932011-10-14 11:13:40 +0200111 "default is -1");
Corentin Chary0e875f42010-01-10 20:49:26 +0100112
Corentin Charyba1ff5b2010-11-14 17:40:12 +0100113module_param(wimax_status, int, 0444);
114MODULE_PARM_DESC(wimax_status, "Set the wireless status on boot "
115 "(0 = disabled, 1 = enabled, -1 = don't do anything). "
Corentin Chary16cbf932011-10-14 11:13:40 +0200116 "default is -1");
Corentin Charyba1ff5b2010-11-14 17:40:12 +0100117
118module_param(wwan_status, int, 0444);
119MODULE_PARM_DESC(wwan_status, "Set the wireless status on boot "
120 "(0 = disabled, 1 = enabled, -1 = don't do anything). "
Corentin Chary16cbf932011-10-14 11:13:40 +0200121 "default is -1");
Corentin Charyba1ff5b2010-11-14 17:40:12 +0100122
Andy Rossabec04d2011-10-14 11:13:37 +0200123module_param(als_status, int, 0444);
124MODULE_PARM_DESC(als_status, "Set the ALS status on boot "
125 "(0 = disabled, 1 = enabled). "
126 "default is 0");
127
Corentin Charybe4ee822009-12-06 16:27:09 +0100128/*
129 * Some events we use, same for all Asus
130 */
Corentin Chary060cbce2010-01-28 10:52:40 +0100131#define ATKD_BR_UP 0x10 /* (event & ~ATKD_BR_UP) = brightness level */
132#define ATKD_BR_DOWN 0x20 /* (event & ~ATKD_BR_DOWN) = britghness level */
Corentin Charya539df52010-01-25 22:53:21 +0100133#define ATKD_BR_MIN ATKD_BR_UP
Corentin Chary060cbce2010-01-28 10:52:40 +0100134#define ATKD_BR_MAX (ATKD_BR_DOWN | 0xF) /* 0x2f */
Corentin Charybe4ee822009-12-06 16:27:09 +0100135#define ATKD_LCD_ON 0x33
136#define ATKD_LCD_OFF 0x34
137
138/*
139 * Known bits returned by \_SB.ATKD.HWRS
140 */
141#define WL_HWRS 0x80
142#define BT_HWRS 0x100
143
144/*
145 * Flags for hotk status
146 * WL_ON and BT_ON are also used for wireless_status()
147 */
Corentin Chary17e78f62010-01-13 22:21:33 +0100148#define WL_RSTS 0x01 /* internal Wifi */
149#define BT_RSTS 0x02 /* internal Bluetooth */
Corentin Charyba1ff5b2010-11-14 17:40:12 +0100150#define WM_RSTS 0x08 /* internal wimax */
151#define WW_RSTS 0x20 /* internal wwan */
Corentin Charybe4ee822009-12-06 16:27:09 +0100152
Corentin Chary774b0672011-12-15 08:27:34 +0100153/* WLED and BLED type */
154#define TYPE_UNKNOWN 0
155#define TYPE_LED 1
156#define TYPE_RFKILL 2
157
Corentin Charybe18cda2007-01-26 14:04:35 +0100158/* LED */
Corentin Charyd99b5772010-01-22 21:20:57 +0100159#define METHOD_MLED "MLED"
160#define METHOD_TLED "TLED"
161#define METHOD_RLED "RLED" /* W1JC */
162#define METHOD_PLED "PLED" /* A7J */
163#define METHOD_GLED "GLED" /* G1, G2 (probably) */
Corentin Charybe18cda2007-01-26 14:04:35 +0100164
Corentin Chary722ad972007-01-26 14:04:55 +0100165/* LEDD */
Corentin Charyd99b5772010-01-22 21:20:57 +0100166#define METHOD_LEDD "SLCM"
Corentin Chary722ad972007-01-26 14:04:55 +0100167
Corentin Charybe966662009-08-29 10:28:29 +0200168/*
169 * Bluetooth and WLAN
Corentin Chary4564de12007-01-26 14:04:40 +0100170 * WLED and BLED are not handled like other XLED, because in some dsdt
171 * they also control the WLAN/Bluetooth device.
172 */
Corentin Charyd99b5772010-01-22 21:20:57 +0100173#define METHOD_WLAN "WLED"
174#define METHOD_BLUETOOTH "BLED"
Corentin Charyba1ff5b2010-11-14 17:40:12 +0100175
176/* WWAN and WIMAX */
177#define METHOD_WWAN "GSMC"
178#define METHOD_WIMAX "WMXC"
179
Corentin Charyd99b5772010-01-22 21:20:57 +0100180#define METHOD_WL_STATUS "RSTS"
Corentin Chary4564de12007-01-26 14:04:40 +0100181
Corentin Chary6b7091e2007-01-26 14:04:45 +0100182/* Brightness */
Corentin Charyd99b5772010-01-22 21:20:57 +0100183#define METHOD_BRIGHTNESS_SET "SPLV"
184#define METHOD_BRIGHTNESS_GET "GPLV"
Corentin Chary6b7091e2007-01-26 14:04:45 +0100185
Corentin Chary78127b42007-01-26 14:04:49 +0100186/* Display */
Corentin Charyd99b5772010-01-22 21:20:57 +0100187#define METHOD_SWITCH_DISPLAY "SDSP"
Corentin Chary060cbce2010-01-28 10:52:40 +0100188
Corentin Charyd99b5772010-01-22 21:20:57 +0100189#define METHOD_ALS_CONTROL "ALSC" /* Z71A Z71V */
190#define METHOD_ALS_LEVEL "ALSL" /* Z71A Z71V */
Corentin Chary8b857352007-01-26 14:04:58 +0100191
Corentin Charye539c2f2007-05-06 14:47:06 +0200192/* GPS */
193/* R2H use different handle for GPS on/off */
Corentin Charyd99b5772010-01-22 21:20:57 +0100194#define METHOD_GPS_ON "SDON"
195#define METHOD_GPS_OFF "SDOF"
196#define METHOD_GPS_STATUS "GPST"
Corentin Charye539c2f2007-05-06 14:47:06 +0200197
Corentin Charyb7d3fbc2009-08-28 12:56:50 +0000198/* Keyboard light */
Corentin Charyd99b5772010-01-22 21:20:57 +0100199#define METHOD_KBD_LIGHT_SET "SLKB"
200#define METHOD_KBD_LIGHT_GET "GLKB"
Corentin Charyb7d3fbc2009-08-28 12:56:50 +0000201
Andy Ross8819de72011-10-14 11:13:35 +0200202/* For Pegatron Lucid tablet */
203#define DEVICE_NAME_PEGA "Lucid"
Andy Ross33989ba2011-10-14 11:13:36 +0200204
Andy Ross8819de72011-10-14 11:13:35 +0200205#define METHOD_PEGA_ENABLE "ENPR"
206#define METHOD_PEGA_DISABLE "DAPR"
Anisse Astier14908392011-10-14 11:13:42 +0200207#define PEGA_WLAN 0x00
208#define PEGA_BLUETOOTH 0x01
209#define PEGA_WWAN 0x02
Andy Ross33989ba2011-10-14 11:13:36 +0200210#define PEGA_ALS 0x04
211#define PEGA_ALS_POWER 0x05
212
Andy Ross8819de72011-10-14 11:13:35 +0200213#define METHOD_PEGA_READ "RDLN"
Andy Ross33989ba2011-10-14 11:13:36 +0200214#define PEGA_READ_ALS_H 0x02
215#define PEGA_READ_ALS_L 0x03
Andy Ross8819de72011-10-14 11:13:35 +0200216
Andy Rossb23910c2011-10-14 11:13:38 +0200217#define PEGA_ACCEL_NAME "pega_accel"
218#define PEGA_ACCEL_DESC "Pegatron Lucid Tablet Accelerometer"
219#define METHOD_XLRX "XLRX"
220#define METHOD_XLRY "XLRY"
221#define METHOD_XLRZ "XLRZ"
222#define PEGA_ACC_CLAMP 512 /* 1G accel is reported as ~256, so clamp to 2G */
223#define PEGA_ACC_RETRIES 3
224
Corentin Chary85091b72007-01-26 14:04:30 +0100225/*
Corentin Chary9129d142009-12-01 22:39:41 +0100226 * Define a specific led structure to keep the main structure clean
227 */
Corentin Charyaee0afb2010-01-26 21:01:34 +0100228struct asus_led {
229 int wk;
230 struct work_struct work;
231 struct led_classdev led;
232 struct asus_laptop *asus;
233 const char *method;
Corentin Chary9129d142009-12-01 22:39:41 +0100234};
235
236/*
Anisse Astier14908392011-10-14 11:13:42 +0200237 * Same thing for rfkill
238 */
Corentin Chary40969c72011-12-15 08:27:33 +0100239struct asus_rfkill {
Corentin Chary774b0672011-12-15 08:27:34 +0100240 /* type of control. Maps to PEGA_* values or *_RSTS */
241 int control_id;
Anisse Astier14908392011-10-14 11:13:42 +0200242 struct rfkill *rfkill;
243 struct asus_laptop *asus;
244};
245
246/*
Corentin Chary85091b72007-01-26 14:04:30 +0100247 * This is the main structure, we can use it to store anything interesting
248 * about the hotk device
249 */
Corentin Chary50a90c42009-11-30 21:55:12 +0100250struct asus_laptop {
Corentin Charybe966662009-08-29 10:28:29 +0200251 char *name; /* laptop name */
Corentin Chary600ad522009-11-30 21:42:42 +0100252
Corentin Chary7c247642009-11-30 22:13:54 +0100253 struct acpi_table_header *dsdt_info;
Corentin Chary600ad522009-11-30 21:42:42 +0100254 struct platform_device *platform_device;
Corentin Chary7c247642009-11-30 22:13:54 +0100255 struct acpi_device *device; /* the device we are in */
256 struct backlight_device *backlight_device;
Corentin Chary9129d142009-12-01 22:39:41 +0100257
Corentin Chary7c247642009-11-30 22:13:54 +0100258 struct input_dev *inputdev;
Corentin Chary9129d142009-12-01 22:39:41 +0100259 struct key_entry *keymap;
Andy Rossb23910c2011-10-14 11:13:38 +0200260 struct input_polled_dev *pega_accel_poll;
Corentin Chary9129d142009-12-01 22:39:41 +0100261
Corentin Chary774b0672011-12-15 08:27:34 +0100262 struct asus_led wled;
263 struct asus_led bled;
Corentin Charyaee0afb2010-01-26 21:01:34 +0100264 struct asus_led mled;
265 struct asus_led tled;
266 struct asus_led rled;
267 struct asus_led pled;
268 struct asus_led gled;
269 struct asus_led kled;
270 struct workqueue_struct *led_workqueue;
Corentin Chary7c247642009-11-30 22:13:54 +0100271
Corentin Chary774b0672011-12-15 08:27:34 +0100272 int wled_type;
273 int bled_type;
Corentin Charyaa9df932010-01-13 21:49:10 +0100274 int wireless_status;
275 bool have_rsts;
Andy Ross8819de72011-10-14 11:13:35 +0200276 bool is_pega_lucid;
Andy Rossb23910c2011-10-14 11:13:38 +0200277 bool pega_acc_live;
278 int pega_acc_x;
279 int pega_acc_y;
280 int pega_acc_z;
Corentin Charyaa9df932010-01-13 21:49:10 +0100281
Corentin Chary40969c72011-12-15 08:27:33 +0100282 struct asus_rfkill wlan;
283 struct asus_rfkill bluetooth;
284 struct asus_rfkill wwan;
Corentin Chary3c8671f2011-12-15 08:27:35 +0100285 struct asus_rfkill wimax;
Corentin Chary40969c72011-12-15 08:27:33 +0100286 struct asus_rfkill gps;
Anisse Astier14908392011-10-14 11:13:42 +0200287
Corentin Charybe966662009-08-29 10:28:29 +0200288 acpi_handle handle; /* the handle of the hotk device */
Corentin Charybe966662009-08-29 10:28:29 +0200289 u32 ledd_status; /* status of the LED display */
290 u8 light_level; /* light sensor level */
291 u8 light_switch; /* light sensor switch value */
292 u16 event_count[128]; /* count for each event TODO make this better */
Corentin Chary85091b72007-01-26 14:04:30 +0100293};
294
Corentin Chary9129d142009-12-01 22:39:41 +0100295static const struct key_entry asus_keymap[] = {
Corentin Charya539df52010-01-25 22:53:21 +0100296 /* Lenovo SL Specific keycodes */
Corentin Chary66a71dd2010-01-25 22:50:11 +0100297 {KE_KEY, 0x02, { KEY_SCREENLOCK } },
298 {KE_KEY, 0x05, { KEY_WLAN } },
299 {KE_KEY, 0x08, { KEY_F13 } },
300 {KE_KEY, 0x17, { KEY_ZOOM } },
301 {KE_KEY, 0x1f, { KEY_BATTERY } },
Corentin Charya539df52010-01-25 22:53:21 +0100302 /* End of Lenovo SL Specific keycodes */
Corentin Chary66a71dd2010-01-25 22:50:11 +0100303 {KE_KEY, 0x30, { KEY_VOLUMEUP } },
304 {KE_KEY, 0x31, { KEY_VOLUMEDOWN } },
305 {KE_KEY, 0x32, { KEY_MUTE } },
306 {KE_KEY, 0x33, { KEY_SWITCHVIDEOMODE } },
307 {KE_KEY, 0x34, { KEY_SWITCHVIDEOMODE } },
308 {KE_KEY, 0x40, { KEY_PREVIOUSSONG } },
309 {KE_KEY, 0x41, { KEY_NEXTSONG } },
310 {KE_KEY, 0x43, { KEY_STOPCD } },
311 {KE_KEY, 0x45, { KEY_PLAYPAUSE } },
312 {KE_KEY, 0x4c, { KEY_MEDIA } },
313 {KE_KEY, 0x50, { KEY_EMAIL } },
314 {KE_KEY, 0x51, { KEY_WWW } },
315 {KE_KEY, 0x55, { KEY_CALC } },
316 {KE_KEY, 0x5C, { KEY_SCREENLOCK } }, /* Screenlock */
317 {KE_KEY, 0x5D, { KEY_WLAN } },
318 {KE_KEY, 0x5E, { KEY_WLAN } },
319 {KE_KEY, 0x5F, { KEY_WLAN } },
320 {KE_KEY, 0x60, { KEY_SWITCHVIDEOMODE } },
321 {KE_KEY, 0x61, { KEY_SWITCHVIDEOMODE } },
322 {KE_KEY, 0x62, { KEY_SWITCHVIDEOMODE } },
323 {KE_KEY, 0x63, { KEY_SWITCHVIDEOMODE } },
324 {KE_KEY, 0x6B, { KEY_F13 } }, /* Lock Touchpad */
Corentin Chary7f607d72010-01-17 17:37:19 +0100325 {KE_KEY, 0x7E, { KEY_BLUETOOTH } },
326 {KE_KEY, 0x7D, { KEY_BLUETOOTH } },
Corentin Chary66a71dd2010-01-25 22:50:11 +0100327 {KE_KEY, 0x82, { KEY_CAMERA } },
328 {KE_KEY, 0x88, { KEY_WLAN } },
329 {KE_KEY, 0x8A, { KEY_PROG1 } },
330 {KE_KEY, 0x95, { KEY_MEDIA } },
331 {KE_KEY, 0x99, { KEY_PHONE } },
332 {KE_KEY, 0xc4, { KEY_KBDILLUMUP } },
333 {KE_KEY, 0xc5, { KEY_KBDILLUMDOWN } },
Corentin Charyb58baecd2010-08-24 09:30:45 +0200334 {KE_KEY, 0xb5, { KEY_CALC } },
Corentin Chary034ce902009-01-20 16:17:43 +0100335 {KE_END, 0},
336};
337
Corentin Chary66a71dd2010-01-25 22:50:11 +0100338
Corentin Chary85091b72007-01-26 14:04:30 +0100339/*
340 * This function evaluates an ACPI method, given an int as parameter, the
341 * method is searched within the scope of the handle, can be NULL. The output
342 * of the method is written is output, which can also be NULL
343 *
Corentin CHARYf8d1c942008-01-16 16:56:42 +0100344 * returns 0 if write is successful, -1 else.
Corentin Chary85091b72007-01-26 14:04:30 +0100345 */
Corentin Charyd8c67322009-11-28 10:27:51 +0100346static int write_acpi_int_ret(acpi_handle handle, const char *method, int val,
347 struct acpi_buffer *output)
Corentin Chary85091b72007-01-26 14:04:30 +0100348{
Corentin Charybe966662009-08-29 10:28:29 +0200349 struct acpi_object_list params; /* list of input parameters (an int) */
350 union acpi_object in_obj; /* the only param we use */
Corentin Chary85091b72007-01-26 14:04:30 +0100351 acpi_status status;
352
Corentin CHARYf8d1c942008-01-16 16:56:42 +0100353 if (!handle)
Axel Lin9fb866f2010-07-20 15:19:47 -0700354 return -1;
Corentin CHARYf8d1c942008-01-16 16:56:42 +0100355
Corentin Chary85091b72007-01-26 14:04:30 +0100356 params.count = 1;
357 params.pointer = &in_obj;
358 in_obj.type = ACPI_TYPE_INTEGER;
359 in_obj.integer.value = val;
360
361 status = acpi_evaluate_object(handle, (char *)method, &params, output);
Corentin CHARYf8d1c942008-01-16 16:56:42 +0100362 if (status == AE_OK)
363 return 0;
364 else
365 return -1;
Corentin Chary85091b72007-01-26 14:04:30 +0100366}
367
Corentin Charyd8c67322009-11-28 10:27:51 +0100368static int write_acpi_int(acpi_handle handle, const char *method, int val)
369{
370 return write_acpi_int_ret(handle, method, val, NULL);
371}
372
Corentin Charyd99b5772010-01-22 21:20:57 +0100373static int acpi_check_handle(acpi_handle handle, const char *method,
374 acpi_handle *ret)
375{
376 acpi_status status;
377
378 if (method == NULL)
379 return -ENODEV;
380
381 if (ret)
382 status = acpi_get_handle(handle, (char *)method,
383 ret);
384 else {
385 acpi_handle dummy;
386
387 status = acpi_get_handle(handle, (char *)method,
388 &dummy);
389 }
390
391 if (status != AE_OK) {
392 if (ret)
Joe Perches5ad77dc2011-03-29 15:21:35 -0700393 pr_warn("Error finding %s\n", method);
Corentin Charyd99b5772010-01-22 21:20:57 +0100394 return -ENODEV;
395 }
396 return 0;
397}
398
Andy Ross8819de72011-10-14 11:13:35 +0200399static bool asus_check_pega_lucid(struct asus_laptop *asus)
400{
401 return !strcmp(asus->name, DEVICE_NAME_PEGA) &&
402 !acpi_check_handle(asus->handle, METHOD_PEGA_ENABLE, NULL) &&
403 !acpi_check_handle(asus->handle, METHOD_PEGA_DISABLE, NULL) &&
404 !acpi_check_handle(asus->handle, METHOD_PEGA_READ, NULL);
405}
406
Andy Ross33989ba2011-10-14 11:13:36 +0200407static int asus_pega_lucid_set(struct asus_laptop *asus, int unit, bool enable)
408{
409 char *method = enable ? METHOD_PEGA_ENABLE : METHOD_PEGA_DISABLE;
410 return write_acpi_int(asus->handle, method, unit);
411}
412
Andy Rossb23910c2011-10-14 11:13:38 +0200413static int pega_acc_axis(struct asus_laptop *asus, int curr, char *method)
414{
415 int i, delta;
416 unsigned long long val;
417 for (i = 0; i < PEGA_ACC_RETRIES; i++) {
418 acpi_evaluate_integer(asus->handle, method, NULL, &val);
419
420 /* The output is noisy. From reading the ASL
421 * dissassembly, timeout errors are returned with 1's
422 * in the high word, and the lack of locking around
423 * thei hi/lo byte reads means that a transition
424 * between (for example) -1 and 0 could be read as
425 * 0xff00 or 0x00ff. */
426 delta = abs(curr - (short)val);
427 if (delta < 128 && !(val & ~0xffff))
428 break;
429 }
430 return clamp_val((short)val, -PEGA_ACC_CLAMP, PEGA_ACC_CLAMP);
431}
432
433static void pega_accel_poll(struct input_polled_dev *ipd)
434{
435 struct device *parent = ipd->input->dev.parent;
436 struct asus_laptop *asus = dev_get_drvdata(parent);
437
438 /* In some cases, the very first call to poll causes a
439 * recursive fault under the polldev worker. This is
440 * apparently related to very early userspace access to the
441 * device, and perhaps a firmware bug. Fake the first report. */
442 if (!asus->pega_acc_live) {
443 asus->pega_acc_live = true;
444 input_report_abs(ipd->input, ABS_X, 0);
445 input_report_abs(ipd->input, ABS_Y, 0);
446 input_report_abs(ipd->input, ABS_Z, 0);
447 input_sync(ipd->input);
448 return;
449 }
450
451 asus->pega_acc_x = pega_acc_axis(asus, asus->pega_acc_x, METHOD_XLRX);
452 asus->pega_acc_y = pega_acc_axis(asus, asus->pega_acc_y, METHOD_XLRY);
453 asus->pega_acc_z = pega_acc_axis(asus, asus->pega_acc_z, METHOD_XLRZ);
454
455 /* Note transform, convert to "right/up/out" in the native
456 * landscape orientation (i.e. the vector is the direction of
457 * "real up" in the device's cartiesian coordinates). */
458 input_report_abs(ipd->input, ABS_X, -asus->pega_acc_x);
459 input_report_abs(ipd->input, ABS_Y, -asus->pega_acc_y);
460 input_report_abs(ipd->input, ABS_Z, asus->pega_acc_z);
461 input_sync(ipd->input);
462}
463
464static void pega_accel_exit(struct asus_laptop *asus)
465{
466 if (asus->pega_accel_poll) {
467 input_unregister_polled_device(asus->pega_accel_poll);
468 input_free_polled_device(asus->pega_accel_poll);
469 }
470 asus->pega_accel_poll = NULL;
471}
472
473static int pega_accel_init(struct asus_laptop *asus)
474{
475 int err;
476 struct input_polled_dev *ipd;
477
478 if (!asus->is_pega_lucid)
479 return -ENODEV;
480
481 if (acpi_check_handle(asus->handle, METHOD_XLRX, NULL) ||
482 acpi_check_handle(asus->handle, METHOD_XLRY, NULL) ||
483 acpi_check_handle(asus->handle, METHOD_XLRZ, NULL))
484 return -ENODEV;
485
486 ipd = input_allocate_polled_device();
487 if (!ipd)
488 return -ENOMEM;
489
490 ipd->poll = pega_accel_poll;
491 ipd->poll_interval = 125;
492 ipd->poll_interval_min = 50;
493 ipd->poll_interval_max = 2000;
494
495 ipd->input->name = PEGA_ACCEL_DESC;
496 ipd->input->phys = PEGA_ACCEL_NAME "/input0";
497 ipd->input->dev.parent = &asus->platform_device->dev;
498 ipd->input->id.bustype = BUS_HOST;
499
500 set_bit(EV_ABS, ipd->input->evbit);
501 input_set_abs_params(ipd->input, ABS_X,
502 -PEGA_ACC_CLAMP, PEGA_ACC_CLAMP, 0, 0);
503 input_set_abs_params(ipd->input, ABS_Y,
504 -PEGA_ACC_CLAMP, PEGA_ACC_CLAMP, 0, 0);
505 input_set_abs_params(ipd->input, ABS_Z,
506 -PEGA_ACC_CLAMP, PEGA_ACC_CLAMP, 0, 0);
507
508 err = input_register_polled_device(ipd);
509 if (err)
510 goto exit;
511
512 asus->pega_accel_poll = ipd;
513 return 0;
514
515exit:
516 input_free_polled_device(ipd);
517 return err;
518}
519
Corentin Chary17e78f62010-01-13 22:21:33 +0100520/* Generic LED function */
Corentin Charyaee0afb2010-01-26 21:01:34 +0100521static int asus_led_set(struct asus_laptop *asus, const char *method,
Corentin Chary17e78f62010-01-13 22:21:33 +0100522 int value)
Corentin Charybe18cda2007-01-26 14:04:35 +0100523{
Corentin Charyd99b5772010-01-22 21:20:57 +0100524 if (!strcmp(method, METHOD_MLED))
Corentin Chary17e78f62010-01-13 22:21:33 +0100525 value = !value;
Corentin Charyd99b5772010-01-22 21:20:57 +0100526 else if (!strcmp(method, METHOD_GLED))
Corentin Chary17e78f62010-01-13 22:21:33 +0100527 value = !value + 1;
528 else
529 value = !!value;
Corentin Charybe18cda2007-01-26 14:04:35 +0100530
Corentin Charye5593bf2010-01-17 17:20:11 +0100531 return write_acpi_int(asus->handle, method, value);
Corentin Charybe18cda2007-01-26 14:04:35 +0100532}
533
Corentin Charybe4ee822009-12-06 16:27:09 +0100534/*
535 * LEDs
536 */
Corentin Charybe18cda2007-01-26 14:04:35 +0100537/* /sys/class/led handlers */
Corentin Charyaee0afb2010-01-26 21:01:34 +0100538static void asus_led_cdev_set(struct led_classdev *led_cdev,
539 enum led_brightness value)
540{
541 struct asus_led *led = container_of(led_cdev, struct asus_led, led);
542 struct asus_laptop *asus = led->asus;
Corentin Charybe18cda2007-01-26 14:04:35 +0100543
Corentin Charyaee0afb2010-01-26 21:01:34 +0100544 led->wk = !!value;
545 queue_work(asus->led_workqueue, &led->work);
546}
547
548static void asus_led_cdev_update(struct work_struct *work)
549{
550 struct asus_led *led = container_of(work, struct asus_led, work);
551 struct asus_laptop *asus = led->asus;
552
553 asus_led_set(asus, led->method, led->wk);
554}
555
556static enum led_brightness asus_led_cdev_get(struct led_classdev *led_cdev)
557{
558 return led_cdev->brightness;
559}
Corentin Charybe18cda2007-01-26 14:04:35 +0100560
Corentin Charyb7d3fbc2009-08-28 12:56:50 +0000561/*
Corentin Charybe4ee822009-12-06 16:27:09 +0100562 * Keyboard backlight (also a LED)
Corentin Charyb7d3fbc2009-08-28 12:56:50 +0000563 */
Corentin Charyd99b5772010-01-22 21:20:57 +0100564static int asus_kled_lvl(struct asus_laptop *asus)
Corentin Charyb7d3fbc2009-08-28 12:56:50 +0000565{
566 unsigned long long kblv;
567 struct acpi_object_list params;
568 union acpi_object in_obj;
569 acpi_status rv;
570
571 params.count = 1;
572 params.pointer = &in_obj;
573 in_obj.type = ACPI_TYPE_INTEGER;
574 in_obj.integer.value = 2;
575
Corentin Charyd99b5772010-01-22 21:20:57 +0100576 rv = acpi_evaluate_integer(asus->handle, METHOD_KBD_LIGHT_GET,
577 &params, &kblv);
Corentin Charyb7d3fbc2009-08-28 12:56:50 +0000578 if (ACPI_FAILURE(rv)) {
Joe Perches5ad77dc2011-03-29 15:21:35 -0700579 pr_warn("Error reading kled level\n");
Corentin Chary4d441512010-01-13 22:26:24 +0100580 return -ENODEV;
Corentin Charyb7d3fbc2009-08-28 12:56:50 +0000581 }
582 return kblv;
583}
584
Corentin Chary4d441512010-01-13 22:26:24 +0100585static int asus_kled_set(struct asus_laptop *asus, int kblv)
Corentin Charyb7d3fbc2009-08-28 12:56:50 +0000586{
587 if (kblv > 0)
588 kblv = (1 << 7) | (kblv & 0x7F);
589 else
590 kblv = 0;
591
Corentin Charyd99b5772010-01-22 21:20:57 +0100592 if (write_acpi_int(asus->handle, METHOD_KBD_LIGHT_SET, kblv)) {
Joe Perches5ad77dc2011-03-29 15:21:35 -0700593 pr_warn("Keyboard LED display write failed\n");
Corentin Charyb7d3fbc2009-08-28 12:56:50 +0000594 return -EINVAL;
595 }
596 return 0;
597}
598
Corentin Charyaee0afb2010-01-26 21:01:34 +0100599static void asus_kled_cdev_set(struct led_classdev *led_cdev,
600 enum led_brightness value)
Corentin Charyb7d3fbc2009-08-28 12:56:50 +0000601{
Corentin Charyaee0afb2010-01-26 21:01:34 +0100602 struct asus_led *led = container_of(led_cdev, struct asus_led, led);
603 struct asus_laptop *asus = led->asus;
Corentin Chary9129d142009-12-01 22:39:41 +0100604
Corentin Chary060cbce2010-01-28 10:52:40 +0100605 led->wk = value;
Corentin Charyaee0afb2010-01-26 21:01:34 +0100606 queue_work(asus->led_workqueue, &led->work);
Corentin Charyb7d3fbc2009-08-28 12:56:50 +0000607}
608
Corentin Charyaee0afb2010-01-26 21:01:34 +0100609static void asus_kled_cdev_update(struct work_struct *work)
Corentin Charyb7d3fbc2009-08-28 12:56:50 +0000610{
Corentin Charyaee0afb2010-01-26 21:01:34 +0100611 struct asus_led *led = container_of(work, struct asus_led, work);
612 struct asus_laptop *asus = led->asus;
Corentin Chary9129d142009-12-01 22:39:41 +0100613
Corentin Charyaee0afb2010-01-26 21:01:34 +0100614 asus_kled_set(asus, led->wk);
Corentin Charyb7d3fbc2009-08-28 12:56:50 +0000615}
616
Corentin Charyaee0afb2010-01-26 21:01:34 +0100617static enum led_brightness asus_kled_cdev_get(struct led_classdev *led_cdev)
Corentin Charyb7d3fbc2009-08-28 12:56:50 +0000618{
Corentin Charyaee0afb2010-01-26 21:01:34 +0100619 struct asus_led *led = container_of(led_cdev, struct asus_led, led);
620 struct asus_laptop *asus = led->asus;
Corentin Charyd99b5772010-01-22 21:20:57 +0100621
622 return asus_kled_lvl(asus);
Corentin Charyb7d3fbc2009-08-28 12:56:50 +0000623}
624
Corentin Charybe4ee822009-12-06 16:27:09 +0100625static void asus_led_exit(struct asus_laptop *asus)
626{
Corentin Chary774b0672011-12-15 08:27:34 +0100627 if (!IS_ERR_OR_NULL(asus->wled.led.dev))
628 led_classdev_unregister(&asus->wled.led);
629 if (!IS_ERR_OR_NULL(asus->bled.led.dev))
630 led_classdev_unregister(&asus->bled.led);
Axel Lin8fcf71a2011-08-08 17:17:18 +0800631 if (!IS_ERR_OR_NULL(asus->mled.led.dev))
Corentin Charyaee0afb2010-01-26 21:01:34 +0100632 led_classdev_unregister(&asus->mled.led);
Axel Lin8fcf71a2011-08-08 17:17:18 +0800633 if (!IS_ERR_OR_NULL(asus->tled.led.dev))
Corentin Charyaee0afb2010-01-26 21:01:34 +0100634 led_classdev_unregister(&asus->tled.led);
Axel Lin8fcf71a2011-08-08 17:17:18 +0800635 if (!IS_ERR_OR_NULL(asus->pled.led.dev))
Corentin Charyaee0afb2010-01-26 21:01:34 +0100636 led_classdev_unregister(&asus->pled.led);
Axel Lin8fcf71a2011-08-08 17:17:18 +0800637 if (!IS_ERR_OR_NULL(asus->rled.led.dev))
Corentin Charyaee0afb2010-01-26 21:01:34 +0100638 led_classdev_unregister(&asus->rled.led);
Axel Lin8fcf71a2011-08-08 17:17:18 +0800639 if (!IS_ERR_OR_NULL(asus->gled.led.dev))
Corentin Charyaee0afb2010-01-26 21:01:34 +0100640 led_classdev_unregister(&asus->gled.led);
Axel Lin8fcf71a2011-08-08 17:17:18 +0800641 if (!IS_ERR_OR_NULL(asus->kled.led.dev))
Corentin Charyaee0afb2010-01-26 21:01:34 +0100642 led_classdev_unregister(&asus->kled.led);
643 if (asus->led_workqueue) {
644 destroy_workqueue(asus->led_workqueue);
645 asus->led_workqueue = NULL;
Corentin Charybe4ee822009-12-06 16:27:09 +0100646 }
647}
648
649/* Ugly macro, need to fix that later */
Corentin Charyaee0afb2010-01-26 21:01:34 +0100650static int asus_led_register(struct asus_laptop *asus,
651 struct asus_led *led,
652 const char *name, const char *method)
653{
654 struct led_classdev *led_cdev = &led->led;
655
656 if (!method || acpi_check_handle(asus->handle, method, NULL))
Corentin Chary060cbce2010-01-28 10:52:40 +0100657 return 0; /* Led not present */
Corentin Charyaee0afb2010-01-26 21:01:34 +0100658
659 led->asus = asus;
660 led->method = method;
661
662 INIT_WORK(&led->work, asus_led_cdev_update);
663 led_cdev->name = name;
664 led_cdev->brightness_set = asus_led_cdev_set;
665 led_cdev->brightness_get = asus_led_cdev_get;
666 led_cdev->max_brightness = 1;
667 return led_classdev_register(&asus->platform_device->dev, led_cdev);
668}
Corentin Charybe4ee822009-12-06 16:27:09 +0100669
670static int asus_led_init(struct asus_laptop *asus)
671{
Corentin Chary774b0672011-12-15 08:27:34 +0100672 int r = 0;
Corentin Charybe4ee822009-12-06 16:27:09 +0100673
674 /*
Corentin Chary8d38e422011-10-14 11:13:39 +0200675 * The Pegatron Lucid has no physical leds, but all methods are
676 * available in the DSDT...
677 */
678 if (asus->is_pega_lucid)
679 return 0;
680
681 /*
Corentin Charybe4ee822009-12-06 16:27:09 +0100682 * Functions that actually update the LED's are called from a
683 * workqueue. By doing this as separate work rather than when the LED
684 * subsystem asks, we avoid messing with the Asus ACPI stuff during a
685 * potentially bad time, such as a timer interrupt.
686 */
Corentin Charyaee0afb2010-01-26 21:01:34 +0100687 asus->led_workqueue = create_singlethread_workqueue("led_workqueue");
688 if (!asus->led_workqueue)
Corentin Charybe4ee822009-12-06 16:27:09 +0100689 return -ENOMEM;
690
Corentin Chary774b0672011-12-15 08:27:34 +0100691 if (asus->wled_type == TYPE_LED)
692 r = asus_led_register(asus, &asus->wled, "asus::wlan",
693 METHOD_WLAN);
694 if (r)
695 goto error;
696 if (asus->bled_type == TYPE_LED)
697 r = asus_led_register(asus, &asus->bled, "asus::bluetooth",
698 METHOD_BLUETOOTH);
699 if (r)
700 goto error;
Corentin Charyaee0afb2010-01-26 21:01:34 +0100701 r = asus_led_register(asus, &asus->mled, "asus::mail", METHOD_MLED);
702 if (r)
703 goto error;
704 r = asus_led_register(asus, &asus->tled, "asus::touchpad", METHOD_TLED);
705 if (r)
706 goto error;
707 r = asus_led_register(asus, &asus->rled, "asus::record", METHOD_RLED);
708 if (r)
709 goto error;
710 r = asus_led_register(asus, &asus->pled, "asus::phone", METHOD_PLED);
711 if (r)
712 goto error;
713 r = asus_led_register(asus, &asus->gled, "asus::gaming", METHOD_GLED);
714 if (r)
715 goto error;
Corentin Charyd99b5772010-01-22 21:20:57 +0100716 if (!acpi_check_handle(asus->handle, METHOD_KBD_LIGHT_SET, NULL) &&
Corentin Charyaee0afb2010-01-26 21:01:34 +0100717 !acpi_check_handle(asus->handle, METHOD_KBD_LIGHT_GET, NULL)) {
718 struct asus_led *led = &asus->kled;
719 struct led_classdev *cdev = &led->led;
720
721 led->asus = asus;
722
723 INIT_WORK(&led->work, asus_kled_cdev_update);
724 cdev->name = "asus::kbd_backlight";
725 cdev->brightness_set = asus_kled_cdev_set;
726 cdev->brightness_get = asus_kled_cdev_get;
727 cdev->max_brightness = 3;
728 r = led_classdev_register(&asus->platform_device->dev, cdev);
729 }
Corentin Charybe4ee822009-12-06 16:27:09 +0100730error:
Corentin Charyaee0afb2010-01-26 21:01:34 +0100731 if (r)
Corentin Charybe4ee822009-12-06 16:27:09 +0100732 asus_led_exit(asus);
Corentin Charyaee0afb2010-01-26 21:01:34 +0100733 return r;
Corentin Charybe4ee822009-12-06 16:27:09 +0100734}
735
736/*
737 * Backlight device
738 */
Corentin Chary4d441512010-01-13 22:26:24 +0100739static int asus_read_brightness(struct backlight_device *bd)
Corentin Chary6b7091e2007-01-26 14:04:45 +0100740{
Corentin Charyd99b5772010-01-22 21:20:57 +0100741 struct asus_laptop *asus = bl_get_data(bd);
Matthew Wilcox27663c52008-10-10 02:22:59 -0400742 unsigned long long value;
Corentin Chary9a816852007-03-11 10:25:38 +0100743 acpi_status rv = AE_OK;
Corentin Chary6b7091e2007-01-26 14:04:45 +0100744
Corentin Charyd99b5772010-01-22 21:20:57 +0100745 rv = acpi_evaluate_integer(asus->handle, METHOD_BRIGHTNESS_GET,
746 NULL, &value);
Corentin Chary9a816852007-03-11 10:25:38 +0100747 if (ACPI_FAILURE(rv))
Joe Perches5ad77dc2011-03-29 15:21:35 -0700748 pr_warn("Error reading brightness\n");
Corentin Chary6b7091e2007-01-26 14:04:45 +0100749
750 return value;
751}
752
Corentin Chary4d441512010-01-13 22:26:24 +0100753static int asus_set_brightness(struct backlight_device *bd, int value)
Corentin Chary6b7091e2007-01-26 14:04:45 +0100754{
Corentin Charyd99b5772010-01-22 21:20:57 +0100755 struct asus_laptop *asus = bl_get_data(bd);
756
757 if (write_acpi_int(asus->handle, METHOD_BRIGHTNESS_SET, value)) {
Joe Perches5ad77dc2011-03-29 15:21:35 -0700758 pr_warn("Error changing brightness\n");
Corentin Charye5b50f62009-11-28 10:19:55 +0100759 return -EIO;
Corentin Chary6b7091e2007-01-26 14:04:45 +0100760 }
Corentin Charye5b50f62009-11-28 10:19:55 +0100761 return 0;
Corentin Chary6b7091e2007-01-26 14:04:45 +0100762}
763
764static int update_bl_status(struct backlight_device *bd)
765{
Richard Purdie599a52d2007-02-10 23:07:48 +0000766 int value = bd->props.brightness;
Corentin Chary6b7091e2007-01-26 14:04:45 +0100767
Corentin Chary3b81cf92011-02-06 13:27:31 +0100768 return asus_set_brightness(bd, value);
Corentin Chary6b7091e2007-01-26 14:04:45 +0100769}
770
Lionel Debrouxacc24722010-11-16 14:14:02 +0100771static const struct backlight_ops asusbl_ops = {
Corentin Chary4d441512010-01-13 22:26:24 +0100772 .get_brightness = asus_read_brightness,
Corentin Charybe4ee822009-12-06 16:27:09 +0100773 .update_status = update_bl_status,
774};
775
Corentin Charya539df52010-01-25 22:53:21 +0100776static int asus_backlight_notify(struct asus_laptop *asus)
777{
778 struct backlight_device *bd = asus->backlight_device;
779 int old = bd->props.brightness;
780
781 backlight_force_update(bd, BACKLIGHT_UPDATE_HOTKEY);
782
783 return old;
784}
785
Corentin Charybe4ee822009-12-06 16:27:09 +0100786static int asus_backlight_init(struct asus_laptop *asus)
787{
788 struct backlight_device *bd;
Matthew Garretta19a6ee2010-02-17 16:39:44 -0500789 struct backlight_properties props;
Corentin Charybe4ee822009-12-06 16:27:09 +0100790
Corentin Chary71e687d2010-08-24 09:30:44 +0200791 if (acpi_check_handle(asus->handle, METHOD_BRIGHTNESS_GET, NULL) ||
Corentin Chary3b81cf92011-02-06 13:27:31 +0100792 acpi_check_handle(asus->handle, METHOD_BRIGHTNESS_SET, NULL))
Corentin Chary71e687d2010-08-24 09:30:44 +0200793 return 0;
Matthew Garretta19a6ee2010-02-17 16:39:44 -0500794
Corentin Chary71e687d2010-08-24 09:30:44 +0200795 memset(&props, 0, sizeof(struct backlight_properties));
796 props.max_brightness = 15;
Matthew Garrettbb7ca742011-03-22 16:30:21 -0700797 props.type = BACKLIGHT_PLATFORM;
Corentin Charybe4ee822009-12-06 16:27:09 +0100798
Corentin Chary71e687d2010-08-24 09:30:44 +0200799 bd = backlight_device_register(ASUS_LAPTOP_FILE,
800 &asus->platform_device->dev, asus,
801 &asusbl_ops, &props);
802 if (IS_ERR(bd)) {
803 pr_err("Could not register asus backlight device\n");
804 asus->backlight_device = NULL;
805 return PTR_ERR(bd);
Corentin Charybe4ee822009-12-06 16:27:09 +0100806 }
Corentin Chary71e687d2010-08-24 09:30:44 +0200807
808 asus->backlight_device = bd;
809 bd->props.brightness = asus_read_brightness(bd);
810 bd->props.power = FB_BLANK_UNBLANK;
811 backlight_update_status(bd);
Corentin Charybe4ee822009-12-06 16:27:09 +0100812 return 0;
813}
814
815static void asus_backlight_exit(struct asus_laptop *asus)
816{
817 if (asus->backlight_device)
818 backlight_device_unregister(asus->backlight_device);
Corentin Charya539df52010-01-25 22:53:21 +0100819 asus->backlight_device = NULL;
Corentin Charybe4ee822009-12-06 16:27:09 +0100820}
821
Corentin Chary85091b72007-01-26 14:04:30 +0100822/*
823 * Platform device handlers
824 */
825
826/*
827 * We write our info in page, we begin at offset off and cannot write more
828 * than count bytes. We set eof to 1 if we handle those 2 values. We return the
829 * number of bytes written in page
830 */
831static ssize_t show_infos(struct device *dev,
Len Brown8def05f2007-01-30 01:46:43 -0500832 struct device_attribute *attr, char *page)
Corentin Chary85091b72007-01-26 14:04:30 +0100833{
Corentin Chary9129d142009-12-01 22:39:41 +0100834 struct asus_laptop *asus = dev_get_drvdata(dev);
Corentin Chary85091b72007-01-26 14:04:30 +0100835 int len = 0;
Matthew Wilcox27663c52008-10-10 02:22:59 -0400836 unsigned long long temp;
Corentin Charybe966662009-08-29 10:28:29 +0200837 char buf[16]; /* enough for all info */
Corentin Chary9a816852007-03-11 10:25:38 +0100838 acpi_status rv = AE_OK;
839
Corentin Chary85091b72007-01-26 14:04:30 +0100840 /*
Corentin Chary060cbce2010-01-28 10:52:40 +0100841 * We use the easy way, we don't care of off and count,
842 * so we don't set eof to 1
Corentin Chary85091b72007-01-26 14:04:30 +0100843 */
844
Corentin Chary50a90c42009-11-30 21:55:12 +0100845 len += sprintf(page, ASUS_LAPTOP_NAME " " ASUS_LAPTOP_VERSION "\n");
846 len += sprintf(page + len, "Model reference : %s\n", asus->name);
Corentin Chary85091b72007-01-26 14:04:30 +0100847 /*
848 * The SFUN method probably allows the original driver to get the list
849 * of features supported by a given model. For now, 0x0100 or 0x0800
850 * bit signifies that the laptop is equipped with a Wi-Fi MiniPCI card.
851 * The significance of others is yet to be found.
852 */
Corentin Chary50a90c42009-11-30 21:55:12 +0100853 rv = acpi_evaluate_integer(asus->handle, "SFUN", NULL, &temp);
Corentin Chary9a816852007-03-11 10:25:38 +0100854 if (!ACPI_FAILURE(rv))
Corentin Chary1d4a3802009-08-28 12:56:46 +0000855 len += sprintf(page + len, "SFUN value : %#x\n",
856 (uint) temp);
857 /*
858 * The HWRS method return informations about the hardware.
859 * 0x80 bit is for WLAN, 0x100 for Bluetooth.
860 * The significance of others is yet to be found.
861 * If we don't find the method, we assume the device are present.
862 */
Corentin Chary50a90c42009-11-30 21:55:12 +0100863 rv = acpi_evaluate_integer(asus->handle, "HRWS", NULL, &temp);
Corentin Chary1d4a3802009-08-28 12:56:46 +0000864 if (!ACPI_FAILURE(rv))
865 len += sprintf(page + len, "HRWS value : %#x\n",
Corentin Chary9a816852007-03-11 10:25:38 +0100866 (uint) temp);
Corentin Chary85091b72007-01-26 14:04:30 +0100867 /*
868 * Another value for userspace: the ASYM method returns 0x02 for
869 * battery low and 0x04 for battery critical, its readings tend to be
870 * more accurate than those provided by _BST.
871 * Note: since not all the laptops provide this method, errors are
872 * silently ignored.
873 */
Corentin Chary50a90c42009-11-30 21:55:12 +0100874 rv = acpi_evaluate_integer(asus->handle, "ASYM", NULL, &temp);
Corentin Chary9a816852007-03-11 10:25:38 +0100875 if (!ACPI_FAILURE(rv))
Corentin Chary1d4a3802009-08-28 12:56:46 +0000876 len += sprintf(page + len, "ASYM value : %#x\n",
Corentin Chary9a816852007-03-11 10:25:38 +0100877 (uint) temp);
Corentin Chary7c247642009-11-30 22:13:54 +0100878 if (asus->dsdt_info) {
879 snprintf(buf, 16, "%d", asus->dsdt_info->length);
Corentin Chary85091b72007-01-26 14:04:30 +0100880 len += sprintf(page + len, "DSDT length : %s\n", buf);
Corentin Chary7c247642009-11-30 22:13:54 +0100881 snprintf(buf, 16, "%d", asus->dsdt_info->checksum);
Corentin Chary85091b72007-01-26 14:04:30 +0100882 len += sprintf(page + len, "DSDT checksum : %s\n", buf);
Corentin Chary7c247642009-11-30 22:13:54 +0100883 snprintf(buf, 16, "%d", asus->dsdt_info->revision);
Corentin Chary85091b72007-01-26 14:04:30 +0100884 len += sprintf(page + len, "DSDT revision : %s\n", buf);
Corentin Chary7c247642009-11-30 22:13:54 +0100885 snprintf(buf, 7, "%s", asus->dsdt_info->oem_id);
Corentin Chary85091b72007-01-26 14:04:30 +0100886 len += sprintf(page + len, "OEM id : %s\n", buf);
Corentin Chary7c247642009-11-30 22:13:54 +0100887 snprintf(buf, 9, "%s", asus->dsdt_info->oem_table_id);
Corentin Chary85091b72007-01-26 14:04:30 +0100888 len += sprintf(page + len, "OEM table id : %s\n", buf);
Corentin Chary7c247642009-11-30 22:13:54 +0100889 snprintf(buf, 16, "%x", asus->dsdt_info->oem_revision);
Corentin Chary85091b72007-01-26 14:04:30 +0100890 len += sprintf(page + len, "OEM revision : 0x%s\n", buf);
Corentin Chary7c247642009-11-30 22:13:54 +0100891 snprintf(buf, 5, "%s", asus->dsdt_info->asl_compiler_id);
Corentin Chary85091b72007-01-26 14:04:30 +0100892 len += sprintf(page + len, "ASL comp vendor id : %s\n", buf);
Corentin Chary7c247642009-11-30 22:13:54 +0100893 snprintf(buf, 16, "%x", asus->dsdt_info->asl_compiler_revision);
Corentin Chary85091b72007-01-26 14:04:30 +0100894 len += sprintf(page + len, "ASL comp revision : 0x%s\n", buf);
895 }
896
897 return len;
898}
899
900static int parse_arg(const char *buf, unsigned long count, int *val)
901{
902 if (!count)
903 return 0;
904 if (count > 31)
905 return -EINVAL;
906 if (sscanf(buf, "%i", val) != 1)
907 return -EINVAL;
908 return count;
909}
910
Corentin Chary17e78f62010-01-13 22:21:33 +0100911static ssize_t sysfs_acpi_set(struct asus_laptop *asus,
912 const char *buf, size_t count,
Corentin Charyd99b5772010-01-22 21:20:57 +0100913 const char *method)
Corentin Chary4564de12007-01-26 14:04:40 +0100914{
915 int rv, value;
916 int out = 0;
917
918 rv = parse_arg(buf, count, &value);
919 if (rv > 0)
920 out = value ? 1 : 0;
921
Corentin Charyd99b5772010-01-22 21:20:57 +0100922 if (write_acpi_int(asus->handle, method, value))
Corentin Chary17e78f62010-01-13 22:21:33 +0100923 return -ENODEV;
Corentin Chary4564de12007-01-26 14:04:40 +0100924 return rv;
925}
926
927/*
Corentin Chary722ad972007-01-26 14:04:55 +0100928 * LEDD display
929 */
930static ssize_t show_ledd(struct device *dev,
931 struct device_attribute *attr, char *buf)
932{
Corentin Chary9129d142009-12-01 22:39:41 +0100933 struct asus_laptop *asus = dev_get_drvdata(dev);
934
Corentin Chary50a90c42009-11-30 21:55:12 +0100935 return sprintf(buf, "0x%08x\n", asus->ledd_status);
Corentin Chary722ad972007-01-26 14:04:55 +0100936}
937
938static ssize_t store_ledd(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 Chary722ad972007-01-26 14:04:55 +0100942 int rv, value;
943
944 rv = parse_arg(buf, count, &value);
945 if (rv > 0) {
Axel Lin6a984a02010-07-20 15:19:48 -0700946 if (write_acpi_int(asus->handle, METHOD_LEDD, value)) {
Joe Perches5ad77dc2011-03-29 15:21:35 -0700947 pr_warn("LED display write failed\n");
Axel Lin6a984a02010-07-20 15:19:48 -0700948 return -ENODEV;
949 }
950 asus->ledd_status = (u32) value;
Corentin Chary722ad972007-01-26 14:04:55 +0100951 }
952 return rv;
953}
954
955/*
Corentin Charyaa9df932010-01-13 21:49:10 +0100956 * Wireless
957 */
958static int asus_wireless_status(struct asus_laptop *asus, int mask)
959{
960 unsigned long long status;
961 acpi_status rv = AE_OK;
962
963 if (!asus->have_rsts)
964 return (asus->wireless_status & mask) ? 1 : 0;
965
Corentin Charyd99b5772010-01-22 21:20:57 +0100966 rv = acpi_evaluate_integer(asus->handle, METHOD_WL_STATUS,
967 NULL, &status);
Corentin Charyaa9df932010-01-13 21:49:10 +0100968 if (ACPI_FAILURE(rv)) {
Joe Perches5ad77dc2011-03-29 15:21:35 -0700969 pr_warn("Error reading Wireless status\n");
Corentin Charyaa9df932010-01-13 21:49:10 +0100970 return -EINVAL;
971 }
972 return !!(status & mask);
973}
974
975/*
Corentin Chary4564de12007-01-26 14:04:40 +0100976 * WLAN
977 */
Corentin Charye5593bf2010-01-17 17:20:11 +0100978static int asus_wlan_set(struct asus_laptop *asus, int status)
979{
980 if (write_acpi_int(asus->handle, METHOD_WLAN, !!status)) {
Joe Perches5ad77dc2011-03-29 15:21:35 -0700981 pr_warn("Error setting wlan status to %d\n", status);
Corentin Charye5593bf2010-01-17 17:20:11 +0100982 return -EIO;
983 }
984 return 0;
985}
986
Corentin Chary4564de12007-01-26 14:04:40 +0100987static ssize_t show_wlan(struct device *dev,
988 struct device_attribute *attr, char *buf)
989{
Corentin Chary9129d142009-12-01 22:39:41 +0100990 struct asus_laptop *asus = dev_get_drvdata(dev);
991
Corentin Chary17e78f62010-01-13 22:21:33 +0100992 return sprintf(buf, "%d\n", asus_wireless_status(asus, WL_RSTS));
Corentin Chary4564de12007-01-26 14:04:40 +0100993}
994
995static ssize_t store_wlan(struct device *dev, struct device_attribute *attr,
996 const char *buf, size_t count)
997{
Corentin Chary9129d142009-12-01 22:39:41 +0100998 struct asus_laptop *asus = dev_get_drvdata(dev);
999
Corentin Charyd99b5772010-01-22 21:20:57 +01001000 return sysfs_acpi_set(asus, buf, count, METHOD_WLAN);
Corentin Chary4564de12007-01-26 14:04:40 +01001001}
1002
Corentin Chary774b0672011-12-15 08:27:34 +01001003/*e
Corentin Chary4564de12007-01-26 14:04:40 +01001004 * Bluetooth
1005 */
Corentin Charye5593bf2010-01-17 17:20:11 +01001006static int asus_bluetooth_set(struct asus_laptop *asus, int status)
1007{
1008 if (write_acpi_int(asus->handle, METHOD_BLUETOOTH, !!status)) {
Joe Perches5ad77dc2011-03-29 15:21:35 -07001009 pr_warn("Error setting bluetooth status to %d\n", status);
Corentin Charye5593bf2010-01-17 17:20:11 +01001010 return -EIO;
1011 }
1012 return 0;
1013}
1014
Corentin Chary4564de12007-01-26 14:04:40 +01001015static ssize_t show_bluetooth(struct device *dev,
1016 struct device_attribute *attr, char *buf)
1017{
Corentin Chary9129d142009-12-01 22:39:41 +01001018 struct asus_laptop *asus = dev_get_drvdata(dev);
1019
Corentin Chary17e78f62010-01-13 22:21:33 +01001020 return sprintf(buf, "%d\n", asus_wireless_status(asus, BT_RSTS));
Corentin Chary4564de12007-01-26 14:04:40 +01001021}
1022
Len Brown8def05f2007-01-30 01:46:43 -05001023static ssize_t store_bluetooth(struct device *dev,
1024 struct device_attribute *attr, const char *buf,
1025 size_t count)
Corentin Chary4564de12007-01-26 14:04:40 +01001026{
Corentin Chary9129d142009-12-01 22:39:41 +01001027 struct asus_laptop *asus = dev_get_drvdata(dev);
1028
Corentin Charyd99b5772010-01-22 21:20:57 +01001029 return sysfs_acpi_set(asus, buf, count, METHOD_BLUETOOTH);
Corentin Chary4564de12007-01-26 14:04:40 +01001030}
1031
Corentin Chary78127b42007-01-26 14:04:49 +01001032/*
Corentin Charyba1ff5b2010-11-14 17:40:12 +01001033 * Wimax
1034 */
1035static int asus_wimax_set(struct asus_laptop *asus, int status)
1036{
1037 if (write_acpi_int(asus->handle, METHOD_WIMAX, !!status)) {
Joe Perches5ad77dc2011-03-29 15:21:35 -07001038 pr_warn("Error setting wimax status to %d\n", status);
Corentin Charyba1ff5b2010-11-14 17:40:12 +01001039 return -EIO;
1040 }
1041 return 0;
1042}
1043
1044static ssize_t show_wimax(struct device *dev,
1045 struct device_attribute *attr, char *buf)
1046{
1047 struct asus_laptop *asus = dev_get_drvdata(dev);
1048
1049 return sprintf(buf, "%d\n", asus_wireless_status(asus, WM_RSTS));
1050}
1051
1052static ssize_t store_wimax(struct device *dev,
1053 struct device_attribute *attr, const char *buf,
1054 size_t count)
1055{
1056 struct asus_laptop *asus = dev_get_drvdata(dev);
1057
1058 return sysfs_acpi_set(asus, buf, count, METHOD_WIMAX);
1059}
1060
1061/*
1062 * Wwan
1063 */
1064static int asus_wwan_set(struct asus_laptop *asus, int status)
1065{
1066 if (write_acpi_int(asus->handle, METHOD_WWAN, !!status)) {
Joe Perches5ad77dc2011-03-29 15:21:35 -07001067 pr_warn("Error setting wwan status to %d\n", status);
Corentin Charyba1ff5b2010-11-14 17:40:12 +01001068 return -EIO;
1069 }
1070 return 0;
1071}
1072
1073static ssize_t show_wwan(struct device *dev,
1074 struct device_attribute *attr, char *buf)
1075{
1076 struct asus_laptop *asus = dev_get_drvdata(dev);
1077
1078 return sprintf(buf, "%d\n", asus_wireless_status(asus, WW_RSTS));
1079}
1080
1081static ssize_t store_wwan(struct device *dev,
1082 struct device_attribute *attr, const char *buf,
1083 size_t count)
1084{
1085 struct asus_laptop *asus = dev_get_drvdata(dev);
1086
1087 return sysfs_acpi_set(asus, buf, count, METHOD_WWAN);
1088}
1089
1090/*
Corentin Chary78127b42007-01-26 14:04:49 +01001091 * Display
1092 */
Corentin Chary4d441512010-01-13 22:26:24 +01001093static void asus_set_display(struct asus_laptop *asus, int value)
Corentin Chary78127b42007-01-26 14:04:49 +01001094{
1095 /* no sanity check needed for now */
Corentin Charyd99b5772010-01-22 21:20:57 +01001096 if (write_acpi_int(asus->handle, METHOD_SWITCH_DISPLAY, value))
Joe Perches5ad77dc2011-03-29 15:21:35 -07001097 pr_warn("Error setting display\n");
Corentin Chary78127b42007-01-26 14:04:49 +01001098 return;
1099}
1100
Corentin Chary78127b42007-01-26 14:04:49 +01001101/*
1102 * Experimental support for display switching. As of now: 1 should activate
1103 * the LCD output, 2 should do for CRT, 4 for TV-Out and 8 for DVI.
1104 * Any combination (bitwise) of these will suffice. I never actually tested 4
1105 * displays hooked up simultaneously, so be warned. See the acpi4asus README
1106 * for more info.
1107 */
1108static ssize_t store_disp(struct device *dev, struct device_attribute *attr,
1109 const char *buf, size_t count)
1110{
Corentin Chary9129d142009-12-01 22:39:41 +01001111 struct asus_laptop *asus = dev_get_drvdata(dev);
Corentin Chary78127b42007-01-26 14:04:49 +01001112 int rv, value;
1113
1114 rv = parse_arg(buf, count, &value);
1115 if (rv > 0)
Corentin Chary4d441512010-01-13 22:26:24 +01001116 asus_set_display(asus, value);
Corentin Chary78127b42007-01-26 14:04:49 +01001117 return rv;
1118}
1119
Corentin Chary8b857352007-01-26 14:04:58 +01001120/*
1121 * Light Sens
1122 */
Corentin Chary4d441512010-01-13 22:26:24 +01001123static void asus_als_switch(struct asus_laptop *asus, int value)
Corentin Chary8b857352007-01-26 14:04:58 +01001124{
Andy Ross33989ba2011-10-14 11:13:36 +02001125 int ret;
1126
1127 if (asus->is_pega_lucid) {
1128 ret = asus_pega_lucid_set(asus, PEGA_ALS, value);
1129 if (!ret)
1130 ret = asus_pega_lucid_set(asus, PEGA_ALS_POWER, value);
1131 } else {
1132 ret = write_acpi_int(asus->handle, METHOD_ALS_CONTROL, value);
1133 }
1134 if (ret)
1135 pr_warning("Error setting light sensor switch\n");
1136
Corentin Chary50a90c42009-11-30 21:55:12 +01001137 asus->light_switch = value;
Corentin Chary8b857352007-01-26 14:04:58 +01001138}
1139
1140static ssize_t show_lssw(struct device *dev,
1141 struct device_attribute *attr, char *buf)
1142{
Corentin Chary9129d142009-12-01 22:39:41 +01001143 struct asus_laptop *asus = dev_get_drvdata(dev);
1144
Corentin Chary50a90c42009-11-30 21:55:12 +01001145 return sprintf(buf, "%d\n", asus->light_switch);
Corentin Chary8b857352007-01-26 14:04:58 +01001146}
1147
1148static ssize_t store_lssw(struct device *dev, struct device_attribute *attr,
1149 const char *buf, size_t count)
1150{
Corentin Chary9129d142009-12-01 22:39:41 +01001151 struct asus_laptop *asus = dev_get_drvdata(dev);
Corentin Chary8b857352007-01-26 14:04:58 +01001152 int rv, value;
1153
1154 rv = parse_arg(buf, count, &value);
1155 if (rv > 0)
Corentin Chary4d441512010-01-13 22:26:24 +01001156 asus_als_switch(asus, value ? 1 : 0);
Corentin Chary8b857352007-01-26 14:04:58 +01001157
1158 return rv;
1159}
1160
Corentin Chary4d441512010-01-13 22:26:24 +01001161static void asus_als_level(struct asus_laptop *asus, int value)
Corentin Chary8b857352007-01-26 14:04:58 +01001162{
Corentin Charyd99b5772010-01-22 21:20:57 +01001163 if (write_acpi_int(asus->handle, METHOD_ALS_LEVEL, value))
Joe Perches5ad77dc2011-03-29 15:21:35 -07001164 pr_warn("Error setting light sensor level\n");
Corentin Chary50a90c42009-11-30 21:55:12 +01001165 asus->light_level = value;
Corentin Chary8b857352007-01-26 14:04:58 +01001166}
1167
1168static ssize_t show_lslvl(struct device *dev,
1169 struct device_attribute *attr, char *buf)
1170{
Corentin Chary9129d142009-12-01 22:39:41 +01001171 struct asus_laptop *asus = dev_get_drvdata(dev);
1172
Corentin Chary50a90c42009-11-30 21:55:12 +01001173 return sprintf(buf, "%d\n", asus->light_level);
Corentin Chary8b857352007-01-26 14:04:58 +01001174}
1175
1176static ssize_t store_lslvl(struct device *dev, struct device_attribute *attr,
1177 const char *buf, size_t count)
1178{
Corentin Chary9129d142009-12-01 22:39:41 +01001179 struct asus_laptop *asus = dev_get_drvdata(dev);
Corentin Chary8b857352007-01-26 14:04:58 +01001180 int rv, value;
1181
1182 rv = parse_arg(buf, count, &value);
1183 if (rv > 0) {
1184 value = (0 < value) ? ((15 < value) ? 15 : value) : 0;
1185 /* 0 <= value <= 15 */
Corentin Chary4d441512010-01-13 22:26:24 +01001186 asus_als_level(asus, value);
Corentin Chary8b857352007-01-26 14:04:58 +01001187 }
1188
1189 return rv;
1190}
1191
Andy Ross33989ba2011-10-14 11:13:36 +02001192static int pega_int_read(struct asus_laptop *asus, int arg, int *result)
1193{
1194 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
1195 int err = write_acpi_int_ret(asus->handle, METHOD_PEGA_READ, arg,
1196 &buffer);
1197 if (!err) {
1198 union acpi_object *obj = buffer.pointer;
1199 if (obj && obj->type == ACPI_TYPE_INTEGER)
1200 *result = obj->integer.value;
1201 else
1202 err = -EIO;
1203 }
1204 return err;
1205}
1206
1207static ssize_t show_lsvalue(struct device *dev,
1208 struct device_attribute *attr, char *buf)
1209{
1210 struct asus_laptop *asus = dev_get_drvdata(dev);
1211 int err, hi, lo;
1212
1213 err = pega_int_read(asus, PEGA_READ_ALS_H, &hi);
1214 if (!err)
1215 err = pega_int_read(asus, PEGA_READ_ALS_L, &lo);
1216 if (!err)
1217 return sprintf(buf, "%d\n", 10 * hi + lo);
1218 return err;
1219}
1220
Corentin Charye539c2f2007-05-06 14:47:06 +02001221/*
1222 * GPS
1223 */
Corentin Chary6358bf22010-01-13 21:55:44 +01001224static int asus_gps_status(struct asus_laptop *asus)
1225{
1226 unsigned long long status;
1227 acpi_status rv = AE_OK;
1228
Corentin Charyd99b5772010-01-22 21:20:57 +01001229 rv = acpi_evaluate_integer(asus->handle, METHOD_GPS_STATUS,
1230 NULL, &status);
Corentin Chary6358bf22010-01-13 21:55:44 +01001231 if (ACPI_FAILURE(rv)) {
Joe Perches5ad77dc2011-03-29 15:21:35 -07001232 pr_warn("Error reading GPS status\n");
Corentin Chary6358bf22010-01-13 21:55:44 +01001233 return -ENODEV;
1234 }
1235 return !!status;
1236}
1237
1238static int asus_gps_switch(struct asus_laptop *asus, int status)
1239{
Corentin Charyd99b5772010-01-22 21:20:57 +01001240 const char *meth = status ? METHOD_GPS_ON : METHOD_GPS_OFF;
Corentin Chary6358bf22010-01-13 21:55:44 +01001241
Corentin Charyd99b5772010-01-22 21:20:57 +01001242 if (write_acpi_int(asus->handle, meth, 0x02))
Corentin Chary6358bf22010-01-13 21:55:44 +01001243 return -ENODEV;
1244 return 0;
1245}
1246
Corentin Charye539c2f2007-05-06 14:47:06 +02001247static ssize_t show_gps(struct device *dev,
1248 struct device_attribute *attr, char *buf)
1249{
Corentin Chary9129d142009-12-01 22:39:41 +01001250 struct asus_laptop *asus = dev_get_drvdata(dev);
1251
Corentin Chary6358bf22010-01-13 21:55:44 +01001252 return sprintf(buf, "%d\n", asus_gps_status(asus));
Corentin Charye539c2f2007-05-06 14:47:06 +02001253}
1254
1255static ssize_t store_gps(struct device *dev, struct device_attribute *attr,
1256 const char *buf, size_t count)
1257{
Corentin Chary060cbce2010-01-28 10:52:40 +01001258 struct asus_laptop *asus = dev_get_drvdata(dev);
Corentin Chary6358bf22010-01-13 21:55:44 +01001259 int rv, value;
1260 int ret;
Corentin Chary9129d142009-12-01 22:39:41 +01001261
Corentin Chary6358bf22010-01-13 21:55:44 +01001262 rv = parse_arg(buf, count, &value);
1263 if (rv <= 0)
1264 return -EINVAL;
1265 ret = asus_gps_switch(asus, !!value);
1266 if (ret)
1267 return ret;
Corentin Chary40969c72011-12-15 08:27:33 +01001268 rfkill_set_sw_state(asus->gps.rfkill, !value);
Corentin Chary6358bf22010-01-13 21:55:44 +01001269 return rv;
Corentin Charye539c2f2007-05-06 14:47:06 +02001270}
1271
Corentin Chary034ce902009-01-20 16:17:43 +01001272/*
Corentin Chary18e13112010-01-25 23:29:24 +01001273 * rfkill
1274 */
1275static int asus_gps_rfkill_set(void *data, bool blocked)
1276{
Corentin Chary23f45c32010-08-24 09:30:46 +02001277 struct asus_laptop *asus = data;
Corentin Chary18e13112010-01-25 23:29:24 +01001278
Corentin Chary23f45c32010-08-24 09:30:46 +02001279 return asus_gps_switch(asus, !blocked);
Corentin Chary18e13112010-01-25 23:29:24 +01001280}
1281
1282static const struct rfkill_ops asus_gps_rfkill_ops = {
1283 .set_block = asus_gps_rfkill_set,
1284};
1285
Corentin Chary774b0672011-12-15 08:27:34 +01001286static int asus_rfkill_set(void *data, bool blocked)
1287{
1288 struct asus_rfkill *rfk = data;
1289 struct asus_laptop *asus = rfk->asus;
1290
1291 if (rfk->control_id == WL_RSTS)
1292 return asus_wlan_set(asus, !blocked);
1293 else if (rfk->control_id == BT_RSTS)
1294 return asus_bluetooth_set(asus, !blocked);
Corentin Chary3c8671f2011-12-15 08:27:35 +01001295 else if (rfk->control_id == WM_RSTS)
1296 return asus_wimax_set(asus, !blocked);
1297 else if (rfk->control_id == WW_RSTS)
1298 return asus_wwan_set(asus, !blocked);
Corentin Chary774b0672011-12-15 08:27:34 +01001299
1300 return -EINVAL;
1301}
1302
1303static const struct rfkill_ops asus_rfkill_ops = {
1304 .set_block = asus_rfkill_set,
1305};
1306
Corentin Chary40969c72011-12-15 08:27:33 +01001307static void asus_rfkill_terminate(struct asus_rfkill *rfk)
1308{
1309 if (!rfk->rfkill)
1310 return ;
1311
1312 rfkill_unregister(rfk->rfkill);
1313 rfkill_destroy(rfk->rfkill);
1314 rfk->rfkill = NULL;
1315}
1316
Corentin Chary18e13112010-01-25 23:29:24 +01001317static void asus_rfkill_exit(struct asus_laptop *asus)
1318{
Corentin Chary40969c72011-12-15 08:27:33 +01001319 asus_rfkill_terminate(&asus->wwan);
1320 asus_rfkill_terminate(&asus->bluetooth);
1321 asus_rfkill_terminate(&asus->wlan);
1322 asus_rfkill_terminate(&asus->gps);
Corentin Chary18e13112010-01-25 23:29:24 +01001323}
1324
Corentin Chary774b0672011-12-15 08:27:34 +01001325static int asus_rfkill_setup(struct asus_laptop *asus, struct asus_rfkill *rfk,
1326 const char *name, int control_id, int type,
1327 const struct rfkill_ops *ops)
Corentin Chary18e13112010-01-25 23:29:24 +01001328{
1329 int result;
1330
Corentin Chary774b0672011-12-15 08:27:34 +01001331 rfk->control_id = control_id;
1332 rfk->asus = asus;
1333 rfk->rfkill = rfkill_alloc(name, &asus->platform_device->dev,
1334 type, ops, rfk);
1335 if (!rfk->rfkill)
Corentin Chary18e13112010-01-25 23:29:24 +01001336 return -EINVAL;
1337
Corentin Chary774b0672011-12-15 08:27:34 +01001338 result = rfkill_register(rfk->rfkill);
Corentin Chary18e13112010-01-25 23:29:24 +01001339 if (result) {
Corentin Chary774b0672011-12-15 08:27:34 +01001340 rfkill_destroy(rfk->rfkill);
1341 rfk->rfkill = NULL;
Corentin Chary18e13112010-01-25 23:29:24 +01001342 }
1343
1344 return result;
1345}
1346
Corentin Chary774b0672011-12-15 08:27:34 +01001347static int asus_rfkill_init(struct asus_laptop *asus)
1348{
1349 int result = 0;
1350
Corentin Chary3c8671f2011-12-15 08:27:35 +01001351 if (asus->is_pega_lucid)
1352 return -ENODEV;
1353
Corentin Chary774b0672011-12-15 08:27:34 +01001354 if (!acpi_check_handle(asus->handle, METHOD_GPS_ON, NULL) &&
1355 !acpi_check_handle(asus->handle, METHOD_GPS_OFF, NULL) &&
1356 !acpi_check_handle(asus->handle, METHOD_GPS_STATUS, NULL))
1357 result = asus_rfkill_setup(asus, &asus->gps, "asus-gps",
1358 -1, RFKILL_TYPE_GPS,
1359 &asus_gps_rfkill_ops);
1360 if (result)
1361 goto exit;
1362
1363
Corentin Chary26594dd2011-12-15 08:27:36 +01001364 if (!acpi_check_handle(asus->handle, METHOD_WLAN, NULL) &&
1365 asus->wled_type == TYPE_RFKILL)
Corentin Chary774b0672011-12-15 08:27:34 +01001366 result = asus_rfkill_setup(asus, &asus->wlan, "asus-wlan",
1367 WL_RSTS, RFKILL_TYPE_WLAN,
1368 &asus_rfkill_ops);
1369 if (result)
1370 goto exit;
1371
Corentin Chary26594dd2011-12-15 08:27:36 +01001372 if (!acpi_check_handle(asus->handle, METHOD_BLUETOOTH, NULL) &&
1373 asus->bled_type == TYPE_RFKILL)
Corentin Chary774b0672011-12-15 08:27:34 +01001374 result = asus_rfkill_setup(asus, &asus->bluetooth,
1375 "asus-bluetooth", BT_RSTS,
1376 RFKILL_TYPE_BLUETOOTH,
1377 &asus_rfkill_ops);
1378 if (result)
1379 goto exit;
1380
Corentin Chary3c8671f2011-12-15 08:27:35 +01001381 if (!acpi_check_handle(asus->handle, METHOD_WWAN, NULL))
1382 result = asus_rfkill_setup(asus, &asus->wwan, "asus-wwan",
1383 WW_RSTS, RFKILL_TYPE_WWAN,
1384 &asus_rfkill_ops);
1385 if (result)
1386 goto exit;
1387
1388 if (!acpi_check_handle(asus->handle, METHOD_WIMAX, NULL))
1389 result = asus_rfkill_setup(asus, &asus->wimax, "asus-wimax",
1390 WM_RSTS, RFKILL_TYPE_WIMAX,
1391 &asus_rfkill_ops);
1392 if (result)
1393 goto exit;
1394
Corentin Chary774b0672011-12-15 08:27:34 +01001395exit:
1396 if (result)
1397 asus_rfkill_exit(asus);
1398
1399 return result;
1400}
1401
Anisse Astier14908392011-10-14 11:13:42 +02001402static int pega_rfkill_set(void *data, bool blocked)
1403{
Corentin Chary40969c72011-12-15 08:27:33 +01001404 struct asus_rfkill *rfk = data;
Anisse Astier14908392011-10-14 11:13:42 +02001405
Corentin Chary40969c72011-12-15 08:27:33 +01001406 int ret = asus_pega_lucid_set(rfk->asus, rfk->control_id, !blocked);
Anisse Astier14908392011-10-14 11:13:42 +02001407 return ret;
1408}
1409
1410static const struct rfkill_ops pega_rfkill_ops = {
1411 .set_block = pega_rfkill_set,
1412};
1413
Corentin Chary40969c72011-12-15 08:27:33 +01001414static int pega_rfkill_setup(struct asus_laptop *asus, struct asus_rfkill *rfk,
1415 const char *name, int controlid, int rfkill_type)
Anisse Astier14908392011-10-14 11:13:42 +02001416{
Corentin Chary774b0672011-12-15 08:27:34 +01001417 return asus_rfkill_setup(asus, rfk, name, controlid, rfkill_type,
1418 &pega_rfkill_ops);
Anisse Astier14908392011-10-14 11:13:42 +02001419}
1420
1421static int pega_rfkill_init(struct asus_laptop *asus)
1422{
1423 int ret = 0;
1424
1425 if(!asus->is_pega_lucid)
1426 return -ENODEV;
1427
Corentin Chary40969c72011-12-15 08:27:33 +01001428 ret = pega_rfkill_setup(asus, &asus->wlan, "pega-wlan",
1429 PEGA_WLAN, RFKILL_TYPE_WLAN);
Anisse Astier14908392011-10-14 11:13:42 +02001430 if(ret)
Corentin Chary40969c72011-12-15 08:27:33 +01001431 goto exit;
Anisse Astier14908392011-10-14 11:13:42 +02001432
Corentin Chary40969c72011-12-15 08:27:33 +01001433 ret = pega_rfkill_setup(asus, &asus->bluetooth, "pega-bt",
1434 PEGA_BLUETOOTH, RFKILL_TYPE_BLUETOOTH);
1435 if(ret)
1436 goto exit;
1437
1438 ret = pega_rfkill_setup(asus, &asus->wwan, "pega-wwan",
1439 PEGA_WWAN, RFKILL_TYPE_WWAN);
1440
1441exit:
1442 if (ret)
1443 asus_rfkill_exit(asus);
Anisse Astier14908392011-10-14 11:13:42 +02001444
1445 return ret;
1446}
1447
Corentin Chary18e13112010-01-25 23:29:24 +01001448/*
Corentin Charybe4ee822009-12-06 16:27:09 +01001449 * Input device (i.e. hotkeys)
Corentin Chary034ce902009-01-20 16:17:43 +01001450 */
Corentin Charybe4ee822009-12-06 16:27:09 +01001451static void asus_input_notify(struct asus_laptop *asus, int event)
1452{
Corentin Charye0ac9132011-12-15 08:27:31 +01001453 if (!asus->inputdev)
1454 return ;
1455 if (!sparse_keymap_report_event(asus->inputdev, event, 1, true))
1456 pr_info("Unknown key %x pressed\n", event);
Corentin Charybe4ee822009-12-06 16:27:09 +01001457}
1458
1459static int asus_input_init(struct asus_laptop *asus)
1460{
Corentin Chary66a71dd2010-01-25 22:50:11 +01001461 struct input_dev *input;
1462 int error;
Corentin Charybe4ee822009-12-06 16:27:09 +01001463
Corentin Chary66a71dd2010-01-25 22:50:11 +01001464 input = input_allocate_device();
1465 if (!input) {
Corentin Chary40969c72011-12-15 08:27:33 +01001466 pr_warn("Unable to allocate input device\n");
Axel Lin45036ae2010-07-05 15:29:00 +08001467 return -ENOMEM;
Corentin Charybe4ee822009-12-06 16:27:09 +01001468 }
Corentin Chary66a71dd2010-01-25 22:50:11 +01001469 input->name = "Asus Laptop extra buttons";
1470 input->phys = ASUS_LAPTOP_FILE "/input0";
1471 input->id.bustype = BUS_HOST;
1472 input->dev.parent = &asus->platform_device->dev;
Corentin Charybe4ee822009-12-06 16:27:09 +01001473
Corentin Chary66a71dd2010-01-25 22:50:11 +01001474 error = sparse_keymap_setup(input, asus_keymap, NULL);
1475 if (error) {
1476 pr_err("Unable to setup input device keymap\n");
Axel Lin45036ae2010-07-05 15:29:00 +08001477 goto err_free_dev;
Corentin Charybe4ee822009-12-06 16:27:09 +01001478 }
Corentin Chary66a71dd2010-01-25 22:50:11 +01001479 error = input_register_device(input);
1480 if (error) {
Corentin Chary40969c72011-12-15 08:27:33 +01001481 pr_warn("Unable to register input device\n");
Axel Lin45036ae2010-07-05 15:29:00 +08001482 goto err_free_keymap;
Corentin Charybe4ee822009-12-06 16:27:09 +01001483 }
Corentin Chary66a71dd2010-01-25 22:50:11 +01001484
1485 asus->inputdev = input;
1486 return 0;
1487
Axel Lin45036ae2010-07-05 15:29:00 +08001488err_free_keymap:
Corentin Chary66a71dd2010-01-25 22:50:11 +01001489 sparse_keymap_free(input);
Axel Lin45036ae2010-07-05 15:29:00 +08001490err_free_dev:
Corentin Chary66a71dd2010-01-25 22:50:11 +01001491 input_free_device(input);
1492 return error;
Corentin Charybe4ee822009-12-06 16:27:09 +01001493}
1494
1495static void asus_input_exit(struct asus_laptop *asus)
1496{
Corentin Chary66a71dd2010-01-25 22:50:11 +01001497 if (asus->inputdev) {
1498 sparse_keymap_free(asus->inputdev);
Corentin Charybe4ee822009-12-06 16:27:09 +01001499 input_unregister_device(asus->inputdev);
Corentin Chary66a71dd2010-01-25 22:50:11 +01001500 }
Corentin Chary71e687d2010-08-24 09:30:44 +02001501 asus->inputdev = NULL;
Corentin Charybe4ee822009-12-06 16:27:09 +01001502}
1503
1504/*
1505 * ACPI driver
1506 */
Corentin Chary600ad522009-11-30 21:42:42 +01001507static void asus_acpi_notify(struct acpi_device *device, u32 event)
Corentin Chary85091b72007-01-26 14:04:30 +01001508{
Corentin Chary9129d142009-12-01 22:39:41 +01001509 struct asus_laptop *asus = acpi_driver_data(device);
Corentin Chary6050c8d2009-02-15 19:30:19 +01001510 u16 count;
Corentin Chary034ce902009-01-20 16:17:43 +01001511
Corentin Chary619d8b12009-11-28 10:35:37 +01001512 /* TODO Find a better way to handle events count. */
Corentin Chary50a90c42009-11-30 21:55:12 +01001513 count = asus->event_count[event % 128]++;
1514 acpi_bus_generate_proc_event(asus->device, event, count);
1515 acpi_bus_generate_netlink_event(asus->device->pnp.device_class,
1516 dev_name(&asus->device->dev), event,
Corentin Chary6050c8d2009-02-15 19:30:19 +01001517 count);
Corentin Chary85091b72007-01-26 14:04:30 +01001518
Corentin Charya539df52010-01-25 22:53:21 +01001519 /* Brightness events are special */
1520 if (event >= ATKD_BR_MIN && event <= ATKD_BR_MAX) {
1521
1522 /* Ignore them completely if the acpi video driver is used */
1523 if (asus->backlight_device != NULL) {
1524 /* Update the backlight device. */
1525 asus_backlight_notify(asus);
1526 }
1527 return ;
1528 }
Anisse Astierb93f8282011-10-14 11:13:41 +02001529
1530 /* Accelerometer "coarse orientation change" event */
1531 if (asus->pega_accel_poll && event == 0xEA) {
1532 kobject_uevent(&asus->pega_accel_poll->input->dev.kobj,
1533 KOBJ_CHANGE);
1534 return ;
1535 }
1536
Corentin Charybe4ee822009-12-06 16:27:09 +01001537 asus_input_notify(asus, event);
Corentin Chary85091b72007-01-26 14:04:30 +01001538}
1539
Corentin Chary2a1fd642010-01-26 21:02:23 +01001540static DEVICE_ATTR(infos, S_IRUGO, show_infos, NULL);
1541static DEVICE_ATTR(wlan, S_IRUGO | S_IWUSR, show_wlan, store_wlan);
Dmitry Torokhovac9b1e52010-08-26 00:12:19 -07001542static DEVICE_ATTR(bluetooth, S_IRUGO | S_IWUSR,
1543 show_bluetooth, store_bluetooth);
Corentin Charyba1ff5b2010-11-14 17:40:12 +01001544static DEVICE_ATTR(wimax, S_IRUGO | S_IWUSR, show_wimax, store_wimax);
1545static DEVICE_ATTR(wwan, S_IRUGO | S_IWUSR, show_wwan, store_wwan);
Corentin Chary3b81cf92011-02-06 13:27:31 +01001546static DEVICE_ATTR(display, S_IWUSR, NULL, store_disp);
Corentin Chary2a1fd642010-01-26 21:02:23 +01001547static DEVICE_ATTR(ledd, S_IRUGO | S_IWUSR, show_ledd, store_ledd);
Andy Ross33989ba2011-10-14 11:13:36 +02001548static DEVICE_ATTR(ls_value, S_IRUGO, show_lsvalue, NULL);
Corentin Chary2a1fd642010-01-26 21:02:23 +01001549static DEVICE_ATTR(ls_level, S_IRUGO | S_IWUSR, show_lslvl, store_lslvl);
1550static DEVICE_ATTR(ls_switch, S_IRUGO | S_IWUSR, show_lssw, store_lssw);
1551static DEVICE_ATTR(gps, S_IRUGO | S_IWUSR, show_gps, store_gps);
1552
Dmitry Torokhovac9b1e52010-08-26 00:12:19 -07001553static struct attribute *asus_attributes[] = {
1554 &dev_attr_infos.attr,
1555 &dev_attr_wlan.attr,
1556 &dev_attr_bluetooth.attr,
Corentin Charyba1ff5b2010-11-14 17:40:12 +01001557 &dev_attr_wimax.attr,
1558 &dev_attr_wwan.attr,
Dmitry Torokhovac9b1e52010-08-26 00:12:19 -07001559 &dev_attr_display.attr,
1560 &dev_attr_ledd.attr,
Andy Ross33989ba2011-10-14 11:13:36 +02001561 &dev_attr_ls_value.attr,
Dmitry Torokhovac9b1e52010-08-26 00:12:19 -07001562 &dev_attr_ls_level.attr,
1563 &dev_attr_ls_switch.attr,
1564 &dev_attr_gps.attr,
1565 NULL
1566};
Corentin Chary2a1fd642010-01-26 21:02:23 +01001567
Al Viro587a1f12011-07-23 23:11:19 -04001568static umode_t asus_sysfs_is_visible(struct kobject *kobj,
Dmitry Torokhovac9b1e52010-08-26 00:12:19 -07001569 struct attribute *attr,
1570 int idx)
1571{
1572 struct device *dev = container_of(kobj, struct device, kobj);
1573 struct platform_device *pdev = to_platform_device(dev);
1574 struct asus_laptop *asus = platform_get_drvdata(pdev);
1575 acpi_handle handle = asus->handle;
1576 bool supported;
1577
Andy Ross33989ba2011-10-14 11:13:36 +02001578 if (asus->is_pega_lucid) {
1579 /* no ls_level interface on the Lucid */
1580 if (attr == &dev_attr_ls_switch.attr)
1581 supported = true;
1582 else if (attr == &dev_attr_ls_level.attr)
1583 supported = false;
1584 else
1585 goto normal;
1586
1587 return supported;
1588 }
1589
1590normal:
Dmitry Torokhovac9b1e52010-08-26 00:12:19 -07001591 if (attr == &dev_attr_wlan.attr) {
1592 supported = !acpi_check_handle(handle, METHOD_WLAN, NULL);
1593
1594 } else if (attr == &dev_attr_bluetooth.attr) {
1595 supported = !acpi_check_handle(handle, METHOD_BLUETOOTH, NULL);
1596
1597 } else if (attr == &dev_attr_display.attr) {
1598 supported = !acpi_check_handle(handle, METHOD_SWITCH_DISPLAY, NULL);
1599
Corentin Charyba1ff5b2010-11-14 17:40:12 +01001600 } else if (attr == &dev_attr_wimax.attr) {
1601 supported =
1602 !acpi_check_handle(asus->handle, METHOD_WIMAX, NULL);
1603
1604 } else if (attr == &dev_attr_wwan.attr) {
1605 supported = !acpi_check_handle(asus->handle, METHOD_WWAN, NULL);
1606
Dmitry Torokhovac9b1e52010-08-26 00:12:19 -07001607 } else if (attr == &dev_attr_ledd.attr) {
1608 supported = !acpi_check_handle(handle, METHOD_LEDD, NULL);
1609
1610 } else if (attr == &dev_attr_ls_switch.attr ||
1611 attr == &dev_attr_ls_level.attr) {
1612 supported = !acpi_check_handle(handle, METHOD_ALS_CONTROL, NULL) &&
Andy Ross33989ba2011-10-14 11:13:36 +02001613 !acpi_check_handle(handle, METHOD_ALS_LEVEL, NULL);
1614 } else if (attr == &dev_attr_ls_value.attr) {
1615 supported = asus->is_pega_lucid;
Dmitry Torokhovac9b1e52010-08-26 00:12:19 -07001616 } else if (attr == &dev_attr_gps.attr) {
1617 supported = !acpi_check_handle(handle, METHOD_GPS_ON, NULL) &&
1618 !acpi_check_handle(handle, METHOD_GPS_OFF, NULL) &&
1619 !acpi_check_handle(handle, METHOD_GPS_STATUS, NULL);
1620 } else {
1621 supported = true;
1622 }
1623
1624 return supported ? attr->mode : 0;
Corentin Chary2a1fd642010-01-26 21:02:23 +01001625}
1626
Corentin Chary2a1fd642010-01-26 21:02:23 +01001627
Dmitry Torokhovac9b1e52010-08-26 00:12:19 -07001628static const struct attribute_group asus_attr_group = {
1629 .is_visible = asus_sysfs_is_visible,
1630 .attrs = asus_attributes,
1631};
Corentin Chary85091b72007-01-26 14:04:30 +01001632
Corentin Chary9129d142009-12-01 22:39:41 +01001633static int asus_platform_init(struct asus_laptop *asus)
Corentin Chary600ad522009-11-30 21:42:42 +01001634{
Corentin Chary71e687d2010-08-24 09:30:44 +02001635 int result;
Corentin Chary600ad522009-11-30 21:42:42 +01001636
Corentin Chary50a90c42009-11-30 21:55:12 +01001637 asus->platform_device = platform_device_alloc(ASUS_LAPTOP_FILE, -1);
1638 if (!asus->platform_device)
Corentin Chary600ad522009-11-30 21:42:42 +01001639 return -ENOMEM;
Corentin Chary9129d142009-12-01 22:39:41 +01001640 platform_set_drvdata(asus->platform_device, asus);
Corentin Chary600ad522009-11-30 21:42:42 +01001641
Corentin Chary71e687d2010-08-24 09:30:44 +02001642 result = platform_device_add(asus->platform_device);
1643 if (result)
Corentin Chary600ad522009-11-30 21:42:42 +01001644 goto fail_platform_device;
1645
Dmitry Torokhovac9b1e52010-08-26 00:12:19 -07001646 result = sysfs_create_group(&asus->platform_device->dev.kobj,
1647 &asus_attr_group);
Corentin Chary71e687d2010-08-24 09:30:44 +02001648 if (result)
Corentin Chary600ad522009-11-30 21:42:42 +01001649 goto fail_sysfs;
Dmitry Torokhovac9b1e52010-08-26 00:12:19 -07001650
Corentin Chary600ad522009-11-30 21:42:42 +01001651 return 0;
1652
1653fail_sysfs:
Corentin Chary50a90c42009-11-30 21:55:12 +01001654 platform_device_del(asus->platform_device);
Corentin Chary600ad522009-11-30 21:42:42 +01001655fail_platform_device:
Corentin Chary50a90c42009-11-30 21:55:12 +01001656 platform_device_put(asus->platform_device);
Corentin Chary71e687d2010-08-24 09:30:44 +02001657 return result;
Corentin Chary600ad522009-11-30 21:42:42 +01001658}
1659
Corentin Chary9129d142009-12-01 22:39:41 +01001660static void asus_platform_exit(struct asus_laptop *asus)
Corentin Chary600ad522009-11-30 21:42:42 +01001661{
Dmitry Torokhovac9b1e52010-08-26 00:12:19 -07001662 sysfs_remove_group(&asus->platform_device->dev.kobj, &asus_attr_group);
Corentin Chary50a90c42009-11-30 21:55:12 +01001663 platform_device_unregister(asus->platform_device);
Corentin Chary600ad522009-11-30 21:42:42 +01001664}
1665
1666static struct platform_driver platform_driver = {
Len Brown8def05f2007-01-30 01:46:43 -05001667 .driver = {
Corentin Chary9129d142009-12-01 22:39:41 +01001668 .name = ASUS_LAPTOP_FILE,
1669 .owner = THIS_MODULE,
Andy Rossb23910c2011-10-14 11:13:38 +02001670 },
Corentin Chary85091b72007-01-26 14:04:30 +01001671};
1672
Corentin Chary85091b72007-01-26 14:04:30 +01001673/*
Corentin Chary50a90c42009-11-30 21:55:12 +01001674 * This function is used to initialize the context with right values. In this
1675 * method, we can make all the detection we want, and modify the asus_laptop
1676 * struct
Corentin Chary85091b72007-01-26 14:04:30 +01001677 */
Corentin Chary7c247642009-11-30 22:13:54 +01001678static int asus_laptop_get_info(struct asus_laptop *asus)
Corentin Chary85091b72007-01-26 14:04:30 +01001679{
1680 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
Corentin Chary85091b72007-01-26 14:04:30 +01001681 union acpi_object *model = NULL;
Matthew Wilcox27663c52008-10-10 02:22:59 -04001682 unsigned long long bsts_result, hwrs_result;
Corentin Chary85091b72007-01-26 14:04:30 +01001683 char *string = NULL;
1684 acpi_status status;
1685
1686 /*
1687 * Get DSDT headers early enough to allow for differentiating between
1688 * models, but late enough to allow acpi_bus_register_driver() to fail
1689 * before doing anything ACPI-specific. Should we encounter a machine,
1690 * which needs special handling (i.e. its hotkey device has a different
Corentin Chary7c247642009-11-30 22:13:54 +01001691 * HID), this bit will be moved.
Corentin Chary85091b72007-01-26 14:04:30 +01001692 */
Corentin Chary7c247642009-11-30 22:13:54 +01001693 status = acpi_get_table(ACPI_SIG_DSDT, 1, &asus->dsdt_info);
Corentin Chary85091b72007-01-26 14:04:30 +01001694 if (ACPI_FAILURE(status))
Joe Perches5ad77dc2011-03-29 15:21:35 -07001695 pr_warn("Couldn't get the DSDT table header\n");
Corentin Chary85091b72007-01-26 14:04:30 +01001696
1697 /* We have to write 0 on init this far for all ASUS models */
Corentin Chary50a90c42009-11-30 21:55:12 +01001698 if (write_acpi_int_ret(asus->handle, "INIT", 0, &buffer)) {
Corentin Chary2fcc23d2009-06-19 14:52:03 +02001699 pr_err("Hotkey initialization failed\n");
Corentin Chary85091b72007-01-26 14:04:30 +01001700 return -ENODEV;
1701 }
1702
1703 /* This needs to be called for some laptops to init properly */
Corentin Chary9a816852007-03-11 10:25:38 +01001704 status =
Corentin Chary50a90c42009-11-30 21:55:12 +01001705 acpi_evaluate_integer(asus->handle, "BSTS", NULL, &bsts_result);
Corentin Chary9a816852007-03-11 10:25:38 +01001706 if (ACPI_FAILURE(status))
Joe Perches5ad77dc2011-03-29 15:21:35 -07001707 pr_warn("Error calling BSTS\n");
Corentin Chary85091b72007-01-26 14:04:30 +01001708 else if (bsts_result)
Corentin Chary2fcc23d2009-06-19 14:52:03 +02001709 pr_notice("BSTS called, 0x%02x returned\n",
Corentin Chary9a816852007-03-11 10:25:38 +01001710 (uint) bsts_result);
Corentin Chary85091b72007-01-26 14:04:30 +01001711
Corentin Chary185e5af2007-03-11 10:27:33 +01001712 /* This too ... */
Corentin Charye5593bf2010-01-17 17:20:11 +01001713 if (write_acpi_int(asus->handle, "CWAP", wapf))
1714 pr_err("Error calling CWAP(%d)\n", wapf);
Corentin Chary85091b72007-01-26 14:04:30 +01001715 /*
1716 * Try to match the object returned by INIT to the specific model.
1717 * Handle every possible object (or the lack of thereof) the DSDT
1718 * writers might throw at us. When in trouble, we pass NULL to
1719 * asus_model_match() and try something completely different.
1720 */
1721 if (buffer.pointer) {
1722 model = buffer.pointer;
1723 switch (model->type) {
1724 case ACPI_TYPE_STRING:
1725 string = model->string.pointer;
1726 break;
1727 case ACPI_TYPE_BUFFER:
1728 string = model->buffer.pointer;
1729 break;
1730 default:
1731 string = "";
1732 break;
1733 }
1734 }
Corentin Chary50a90c42009-11-30 21:55:12 +01001735 asus->name = kstrdup(string, GFP_KERNEL);
Axel Lind8eca112010-06-29 11:09:47 +08001736 if (!asus->name) {
1737 kfree(buffer.pointer);
Corentin Chary85091b72007-01-26 14:04:30 +01001738 return -ENOMEM;
Axel Lind8eca112010-06-29 11:09:47 +08001739 }
Corentin Chary85091b72007-01-26 14:04:30 +01001740
Len Brown8def05f2007-01-30 01:46:43 -05001741 if (*string)
Corentin Chary2fcc23d2009-06-19 14:52:03 +02001742 pr_notice(" %s model detected\n", string);
Corentin Chary85091b72007-01-26 14:04:30 +01001743
Corentin Chary4564de12007-01-26 14:04:40 +01001744 /*
1745 * The HWRS method return informations about the hardware.
Corentin Charyba1ff5b2010-11-14 17:40:12 +01001746 * 0x80 bit is for WLAN, 0x100 for Bluetooth,
1747 * 0x40 for WWAN, 0x10 for WIMAX.
Corentin Chary4564de12007-01-26 14:04:40 +01001748 * The significance of others is yet to be found.
Corentin Chary4564de12007-01-26 14:04:40 +01001749 */
Corentin Chary9a816852007-03-11 10:25:38 +01001750 status =
Corentin Chary50a90c42009-11-30 21:55:12 +01001751 acpi_evaluate_integer(asus->handle, "HRWS", NULL, &hwrs_result);
Corentin Charyd99b5772010-01-22 21:20:57 +01001752 if (!ACPI_FAILURE(status))
1753 pr_notice(" HRWS returned %x", (int)hwrs_result);
Corentin Chary4564de12007-01-26 14:04:40 +01001754
Corentin Charyd99b5772010-01-22 21:20:57 +01001755 if (!acpi_check_handle(asus->handle, METHOD_WL_STATUS, NULL))
Corentin Charyaa9df932010-01-13 21:49:10 +01001756 asus->have_rsts = true;
Corentin Chary4564de12007-01-26 14:04:40 +01001757
Corentin Chary85091b72007-01-26 14:04:30 +01001758 kfree(model);
1759
1760 return AE_OK;
1761}
1762
Corentin Chary9129d142009-12-01 22:39:41 +01001763static int __devinit asus_acpi_init(struct asus_laptop *asus)
Corentin Chary600ad522009-11-30 21:42:42 +01001764{
1765 int result = 0;
1766
Corentin Chary50a90c42009-11-30 21:55:12 +01001767 result = acpi_bus_get_status(asus->device);
Corentin Chary600ad522009-11-30 21:42:42 +01001768 if (result)
1769 return result;
Corentin Chary50a90c42009-11-30 21:55:12 +01001770 if (!asus->device->status.present) {
Corentin Chary600ad522009-11-30 21:42:42 +01001771 pr_err("Hotkey device not present, aborting\n");
1772 return -ENODEV;
1773 }
1774
Corentin Chary7c247642009-11-30 22:13:54 +01001775 result = asus_laptop_get_info(asus);
Corentin Chary600ad522009-11-30 21:42:42 +01001776 if (result)
1777 return result;
1778
Corentin Chary774b0672011-12-15 08:27:34 +01001779 if (!strcmp(bled_type, "led"))
1780 asus->bled_type = TYPE_LED;
1781 else if (!strcmp(bled_type, "rfkill"))
1782 asus->bled_type = TYPE_RFKILL;
1783
1784 if (!strcmp(wled_type, "led"))
1785 asus->wled_type = TYPE_LED;
1786 else if (!strcmp(wled_type, "rfkill"))
1787 asus->wled_type = TYPE_RFKILL;
1788
Corentin Charybe4ee822009-12-06 16:27:09 +01001789 if (bluetooth_status >= 0)
Corentin Charye5593bf2010-01-17 17:20:11 +01001790 asus_bluetooth_set(asus, !!bluetooth_status);
1791
Corentin Charyd0930a22010-01-17 17:21:13 +01001792 if (wlan_status >= 0)
1793 asus_wlan_set(asus, !!wlan_status);
Corentin Chary600ad522009-11-30 21:42:42 +01001794
Corentin Charyba1ff5b2010-11-14 17:40:12 +01001795 if (wimax_status >= 0)
1796 asus_wimax_set(asus, !!wimax_status);
1797
1798 if (wwan_status >= 0)
1799 asus_wwan_set(asus, !!wwan_status);
1800
Corentin Chary600ad522009-11-30 21:42:42 +01001801 /* Keyboard Backlight is on by default */
Corentin Charyd99b5772010-01-22 21:20:57 +01001802 if (!acpi_check_handle(asus->handle, METHOD_KBD_LIGHT_SET, NULL))
Corentin Chary4d441512010-01-13 22:26:24 +01001803 asus_kled_set(asus, 1);
Corentin Chary600ad522009-11-30 21:42:42 +01001804
1805 /* LED display is off by default */
Corentin Chary50a90c42009-11-30 21:55:12 +01001806 asus->ledd_status = 0xFFF;
Corentin Chary600ad522009-11-30 21:42:42 +01001807
1808 /* Set initial values of light sensor and level */
Andy Rossabec04d2011-10-14 11:13:37 +02001809 asus->light_switch = !!als_status;
Corentin Charybe4ee822009-12-06 16:27:09 +01001810 asus->light_level = 5; /* level 5 for sensor sensitivity */
Corentin Chary600ad522009-11-30 21:42:42 +01001811
Andy Ross33989ba2011-10-14 11:13:36 +02001812 if (asus->is_pega_lucid) {
1813 asus_als_switch(asus, asus->light_switch);
1814 } else if (!acpi_check_handle(asus->handle, METHOD_ALS_CONTROL, NULL) &&
1815 !acpi_check_handle(asus->handle, METHOD_ALS_LEVEL, NULL)) {
Corentin Chary4d441512010-01-13 22:26:24 +01001816 asus_als_switch(asus, asus->light_switch);
Corentin Chary4d441512010-01-13 22:26:24 +01001817 asus_als_level(asus, asus->light_level);
Corentin Charyd99b5772010-01-22 21:20:57 +01001818 }
Corentin Chary600ad522009-11-30 21:42:42 +01001819
Corentin Chary600ad522009-11-30 21:42:42 +01001820 return result;
1821}
1822
Corentin Charyaf96f872011-02-06 13:27:30 +01001823static void __devinit asus_dmi_check(void)
1824{
1825 const char *model;
1826
1827 model = dmi_get_system_info(DMI_PRODUCT_NAME);
1828 if (!model)
1829 return;
1830
1831 /* On L1400B WLED control the sound card, don't mess with it ... */
1832 if (strncmp(model, "L1400B", 6) == 0) {
1833 wlan_status = -1;
1834 }
1835}
1836
Corentin Chary71e687d2010-08-24 09:30:44 +02001837static bool asus_device_present;
1838
Corentin Chary600ad522009-11-30 21:42:42 +01001839static int __devinit asus_acpi_add(struct acpi_device *device)
1840{
Corentin Chary9129d142009-12-01 22:39:41 +01001841 struct asus_laptop *asus;
Corentin Chary600ad522009-11-30 21:42:42 +01001842 int result;
1843
1844 pr_notice("Asus Laptop Support version %s\n",
1845 ASUS_LAPTOP_VERSION);
Corentin Chary50a90c42009-11-30 21:55:12 +01001846 asus = kzalloc(sizeof(struct asus_laptop), GFP_KERNEL);
1847 if (!asus)
Corentin Chary600ad522009-11-30 21:42:42 +01001848 return -ENOMEM;
Corentin Chary50a90c42009-11-30 21:55:12 +01001849 asus->handle = device->handle;
1850 strcpy(acpi_device_name(device), ASUS_LAPTOP_DEVICE_NAME);
1851 strcpy(acpi_device_class(device), ASUS_LAPTOP_CLASS);
1852 device->driver_data = asus;
1853 asus->device = device;
Corentin Chary600ad522009-11-30 21:42:42 +01001854
Corentin Charyaf96f872011-02-06 13:27:30 +01001855 asus_dmi_check();
1856
Corentin Chary9129d142009-12-01 22:39:41 +01001857 result = asus_acpi_init(asus);
Corentin Chary600ad522009-11-30 21:42:42 +01001858 if (result)
1859 goto fail_platform;
1860
1861 /*
Andy Ross8819de72011-10-14 11:13:35 +02001862 * Need platform type detection first, then the platform
1863 * device. It is used as a parent for the sub-devices below.
Corentin Chary600ad522009-11-30 21:42:42 +01001864 */
Andy Ross8819de72011-10-14 11:13:35 +02001865 asus->is_pega_lucid = asus_check_pega_lucid(asus);
Corentin Chary9129d142009-12-01 22:39:41 +01001866 result = asus_platform_init(asus);
Corentin Chary600ad522009-11-30 21:42:42 +01001867 if (result)
1868 goto fail_platform;
1869
1870 if (!acpi_video_backlight_support()) {
Corentin Chary9129d142009-12-01 22:39:41 +01001871 result = asus_backlight_init(asus);
Corentin Chary600ad522009-11-30 21:42:42 +01001872 if (result)
1873 goto fail_backlight;
1874 } else
1875 pr_info("Backlight controlled by ACPI video driver\n");
1876
Corentin Chary9129d142009-12-01 22:39:41 +01001877 result = asus_input_init(asus);
Corentin Chary600ad522009-11-30 21:42:42 +01001878 if (result)
1879 goto fail_input;
1880
Corentin Chary9129d142009-12-01 22:39:41 +01001881 result = asus_led_init(asus);
Corentin Chary600ad522009-11-30 21:42:42 +01001882 if (result)
1883 goto fail_led;
1884
Corentin Chary18e13112010-01-25 23:29:24 +01001885 result = asus_rfkill_init(asus);
Corentin Chary3c8671f2011-12-15 08:27:35 +01001886 if (result && result != -ENODEV)
Corentin Chary18e13112010-01-25 23:29:24 +01001887 goto fail_rfkill;
1888
Andy Rossb23910c2011-10-14 11:13:38 +02001889 result = pega_accel_init(asus);
1890 if (result && result != -ENODEV)
1891 goto fail_pega_accel;
1892
Anisse Astier14908392011-10-14 11:13:42 +02001893 result = pega_rfkill_init(asus);
1894 if (result && result != -ENODEV)
1895 goto fail_pega_rfkill;
1896
Corentin Chary600ad522009-11-30 21:42:42 +01001897 asus_device_present = true;
1898 return 0;
1899
Anisse Astier14908392011-10-14 11:13:42 +02001900fail_pega_rfkill:
1901 pega_accel_exit(asus);
Andy Rossb23910c2011-10-14 11:13:38 +02001902fail_pega_accel:
1903 asus_rfkill_exit(asus);
Corentin Chary18e13112010-01-25 23:29:24 +01001904fail_rfkill:
1905 asus_led_exit(asus);
Corentin Chary600ad522009-11-30 21:42:42 +01001906fail_led:
Corentin Chary9129d142009-12-01 22:39:41 +01001907 asus_input_exit(asus);
Corentin Chary600ad522009-11-30 21:42:42 +01001908fail_input:
Corentin Chary9129d142009-12-01 22:39:41 +01001909 asus_backlight_exit(asus);
Corentin Chary600ad522009-11-30 21:42:42 +01001910fail_backlight:
Corentin Chary9129d142009-12-01 22:39:41 +01001911 asus_platform_exit(asus);
Corentin Chary600ad522009-11-30 21:42:42 +01001912fail_platform:
Corentin Chary50a90c42009-11-30 21:55:12 +01001913 kfree(asus->name);
1914 kfree(asus);
Corentin Chary600ad522009-11-30 21:42:42 +01001915
1916 return result;
1917}
1918
1919static int asus_acpi_remove(struct acpi_device *device, int type)
1920{
Corentin Chary9129d142009-12-01 22:39:41 +01001921 struct asus_laptop *asus = acpi_driver_data(device);
1922
1923 asus_backlight_exit(asus);
Corentin Chary18e13112010-01-25 23:29:24 +01001924 asus_rfkill_exit(asus);
Corentin Chary9129d142009-12-01 22:39:41 +01001925 asus_led_exit(asus);
1926 asus_input_exit(asus);
Andy Rossb23910c2011-10-14 11:13:38 +02001927 pega_accel_exit(asus);
Corentin Chary9129d142009-12-01 22:39:41 +01001928 asus_platform_exit(asus);
Corentin Chary600ad522009-11-30 21:42:42 +01001929
Corentin Chary50a90c42009-11-30 21:55:12 +01001930 kfree(asus->name);
1931 kfree(asus);
Corentin Chary600ad522009-11-30 21:42:42 +01001932 return 0;
1933}
1934
1935static const struct acpi_device_id asus_device_ids[] = {
1936 {"ATK0100", 0},
1937 {"ATK0101", 0},
1938 {"", 0},
1939};
1940MODULE_DEVICE_TABLE(acpi, asus_device_ids);
1941
1942static struct acpi_driver asus_acpi_driver = {
Corentin Chary50a90c42009-11-30 21:55:12 +01001943 .name = ASUS_LAPTOP_NAME,
1944 .class = ASUS_LAPTOP_CLASS,
Corentin Chary600ad522009-11-30 21:42:42 +01001945 .owner = THIS_MODULE,
1946 .ids = asus_device_ids,
1947 .flags = ACPI_DRIVER_ALL_NOTIFY_EVENTS,
1948 .ops = {
1949 .add = asus_acpi_add,
1950 .remove = asus_acpi_remove,
1951 .notify = asus_acpi_notify,
1952 },
1953};
1954
Corentin Chary85091b72007-01-26 14:04:30 +01001955static int __init asus_laptop_init(void)
1956{
1957 int result;
1958
Corentin Chary600ad522009-11-30 21:42:42 +01001959 result = platform_driver_register(&platform_driver);
Corentin Chary85091b72007-01-26 14:04:30 +01001960 if (result < 0)
1961 return result;
1962
Corentin Chary600ad522009-11-30 21:42:42 +01001963 result = acpi_bus_register_driver(&asus_acpi_driver);
1964 if (result < 0)
1965 goto fail_acpi_driver;
1966 if (!asus_device_present) {
1967 result = -ENODEV;
1968 goto fail_no_device;
Corentin Chary85091b72007-01-26 14:04:30 +01001969 }
Len Brown8def05f2007-01-30 01:46:43 -05001970 return 0;
Corentin Chary85091b72007-01-26 14:04:30 +01001971
Corentin Chary600ad522009-11-30 21:42:42 +01001972fail_no_device:
1973 acpi_bus_unregister_driver(&asus_acpi_driver);
1974fail_acpi_driver:
1975 platform_driver_unregister(&platform_driver);
Corentin Chary85091b72007-01-26 14:04:30 +01001976 return result;
1977}
1978
Corentin Chary600ad522009-11-30 21:42:42 +01001979static void __exit asus_laptop_exit(void)
1980{
1981 acpi_bus_unregister_driver(&asus_acpi_driver);
1982 platform_driver_unregister(&platform_driver);
1983}
1984
Corentin Chary85091b72007-01-26 14:04:30 +01001985module_init(asus_laptop_init);
1986module_exit(asus_laptop_exit);