blob: 4b568df56643f846de78a3228582342fb3a89c67 [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);
Maxim Nikulin3f5449b2012-08-20 23:01:52 +020088MODULE_PARM_DESC(wled_type, "Set the wled type on boot "
Corentin Chary774b0672011-12-15 08:27:34 +010089 "(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 } },
Corentin Charya2d5dd22011-12-15 08:27:38 +0100300 {KE_KEY, 0x09, { KEY_PROG2 } }, /* Dock */
Corentin Chary66a71dd2010-01-25 22:50:11 +0100301 {KE_KEY, 0x17, { KEY_ZOOM } },
302 {KE_KEY, 0x1f, { KEY_BATTERY } },
Corentin Charya539df52010-01-25 22:53:21 +0100303 /* End of Lenovo SL Specific keycodes */
Corentin Chary66a71dd2010-01-25 22:50:11 +0100304 {KE_KEY, 0x30, { KEY_VOLUMEUP } },
305 {KE_KEY, 0x31, { KEY_VOLUMEDOWN } },
306 {KE_KEY, 0x32, { KEY_MUTE } },
307 {KE_KEY, 0x33, { KEY_SWITCHVIDEOMODE } },
308 {KE_KEY, 0x34, { KEY_SWITCHVIDEOMODE } },
309 {KE_KEY, 0x40, { KEY_PREVIOUSSONG } },
310 {KE_KEY, 0x41, { KEY_NEXTSONG } },
311 {KE_KEY, 0x43, { KEY_STOPCD } },
312 {KE_KEY, 0x45, { KEY_PLAYPAUSE } },
313 {KE_KEY, 0x4c, { KEY_MEDIA } },
314 {KE_KEY, 0x50, { KEY_EMAIL } },
315 {KE_KEY, 0x51, { KEY_WWW } },
316 {KE_KEY, 0x55, { KEY_CALC } },
317 {KE_KEY, 0x5C, { KEY_SCREENLOCK } }, /* Screenlock */
318 {KE_KEY, 0x5D, { KEY_WLAN } },
319 {KE_KEY, 0x5E, { KEY_WLAN } },
320 {KE_KEY, 0x5F, { KEY_WLAN } },
321 {KE_KEY, 0x60, { KEY_SWITCHVIDEOMODE } },
322 {KE_KEY, 0x61, { KEY_SWITCHVIDEOMODE } },
323 {KE_KEY, 0x62, { KEY_SWITCHVIDEOMODE } },
324 {KE_KEY, 0x63, { KEY_SWITCHVIDEOMODE } },
325 {KE_KEY, 0x6B, { KEY_F13 } }, /* Lock Touchpad */
Corentin Charya2d5dd22011-12-15 08:27:38 +0100326 {KE_KEY, 0x6C, { KEY_SLEEP } }, /* Suspend */
327 {KE_KEY, 0x6D, { KEY_SLEEP } }, /* Hibernate */
Corentin Chary7f607d72010-01-17 17:37:19 +0100328 {KE_KEY, 0x7E, { KEY_BLUETOOTH } },
329 {KE_KEY, 0x7D, { KEY_BLUETOOTH } },
Corentin Chary66a71dd2010-01-25 22:50:11 +0100330 {KE_KEY, 0x82, { KEY_CAMERA } },
331 {KE_KEY, 0x88, { KEY_WLAN } },
332 {KE_KEY, 0x8A, { KEY_PROG1 } },
333 {KE_KEY, 0x95, { KEY_MEDIA } },
334 {KE_KEY, 0x99, { KEY_PHONE } },
335 {KE_KEY, 0xc4, { KEY_KBDILLUMUP } },
336 {KE_KEY, 0xc5, { KEY_KBDILLUMDOWN } },
Corentin Charyb58baecd2010-08-24 09:30:45 +0200337 {KE_KEY, 0xb5, { KEY_CALC } },
Corentin Chary034ce902009-01-20 16:17:43 +0100338 {KE_END, 0},
339};
340
Corentin Chary66a71dd2010-01-25 22:50:11 +0100341
Corentin Chary85091b72007-01-26 14:04:30 +0100342/*
343 * This function evaluates an ACPI method, given an int as parameter, the
344 * method is searched within the scope of the handle, can be NULL. The output
345 * of the method is written is output, which can also be NULL
346 *
Corentin CHARYf8d1c942008-01-16 16:56:42 +0100347 * returns 0 if write is successful, -1 else.
Corentin Chary85091b72007-01-26 14:04:30 +0100348 */
Corentin Charyd8c67322009-11-28 10:27:51 +0100349static int write_acpi_int_ret(acpi_handle handle, const char *method, int val,
350 struct acpi_buffer *output)
Corentin Chary85091b72007-01-26 14:04:30 +0100351{
Corentin Charybe966662009-08-29 10:28:29 +0200352 struct acpi_object_list params; /* list of input parameters (an int) */
353 union acpi_object in_obj; /* the only param we use */
Corentin Chary85091b72007-01-26 14:04:30 +0100354 acpi_status status;
355
Corentin CHARYf8d1c942008-01-16 16:56:42 +0100356 if (!handle)
Axel Lin9fb866f2010-07-20 15:19:47 -0700357 return -1;
Corentin CHARYf8d1c942008-01-16 16:56:42 +0100358
Corentin Chary85091b72007-01-26 14:04:30 +0100359 params.count = 1;
360 params.pointer = &in_obj;
361 in_obj.type = ACPI_TYPE_INTEGER;
362 in_obj.integer.value = val;
363
364 status = acpi_evaluate_object(handle, (char *)method, &params, output);
Corentin CHARYf8d1c942008-01-16 16:56:42 +0100365 if (status == AE_OK)
366 return 0;
367 else
368 return -1;
Corentin Chary85091b72007-01-26 14:04:30 +0100369}
370
Corentin Charyd8c67322009-11-28 10:27:51 +0100371static int write_acpi_int(acpi_handle handle, const char *method, int val)
372{
373 return write_acpi_int_ret(handle, method, val, NULL);
374}
375
Corentin Charyd99b5772010-01-22 21:20:57 +0100376static int acpi_check_handle(acpi_handle handle, const char *method,
377 acpi_handle *ret)
378{
379 acpi_status status;
380
381 if (method == NULL)
382 return -ENODEV;
383
384 if (ret)
385 status = acpi_get_handle(handle, (char *)method,
386 ret);
387 else {
388 acpi_handle dummy;
389
390 status = acpi_get_handle(handle, (char *)method,
391 &dummy);
392 }
393
394 if (status != AE_OK) {
395 if (ret)
Joe Perches5ad77dc2011-03-29 15:21:35 -0700396 pr_warn("Error finding %s\n", method);
Corentin Charyd99b5772010-01-22 21:20:57 +0100397 return -ENODEV;
398 }
399 return 0;
400}
401
Andy Ross8819de72011-10-14 11:13:35 +0200402static bool asus_check_pega_lucid(struct asus_laptop *asus)
403{
404 return !strcmp(asus->name, DEVICE_NAME_PEGA) &&
405 !acpi_check_handle(asus->handle, METHOD_PEGA_ENABLE, NULL) &&
406 !acpi_check_handle(asus->handle, METHOD_PEGA_DISABLE, NULL) &&
407 !acpi_check_handle(asus->handle, METHOD_PEGA_READ, NULL);
408}
409
Andy Ross33989ba2011-10-14 11:13:36 +0200410static int asus_pega_lucid_set(struct asus_laptop *asus, int unit, bool enable)
411{
412 char *method = enable ? METHOD_PEGA_ENABLE : METHOD_PEGA_DISABLE;
413 return write_acpi_int(asus->handle, method, unit);
414}
415
Andy Rossb23910c2011-10-14 11:13:38 +0200416static int pega_acc_axis(struct asus_laptop *asus, int curr, char *method)
417{
418 int i, delta;
419 unsigned long long val;
420 for (i = 0; i < PEGA_ACC_RETRIES; i++) {
421 acpi_evaluate_integer(asus->handle, method, NULL, &val);
422
423 /* The output is noisy. From reading the ASL
424 * dissassembly, timeout errors are returned with 1's
425 * in the high word, and the lack of locking around
426 * thei hi/lo byte reads means that a transition
427 * between (for example) -1 and 0 could be read as
428 * 0xff00 or 0x00ff. */
429 delta = abs(curr - (short)val);
430 if (delta < 128 && !(val & ~0xffff))
431 break;
432 }
433 return clamp_val((short)val, -PEGA_ACC_CLAMP, PEGA_ACC_CLAMP);
434}
435
436static void pega_accel_poll(struct input_polled_dev *ipd)
437{
438 struct device *parent = ipd->input->dev.parent;
439 struct asus_laptop *asus = dev_get_drvdata(parent);
440
441 /* In some cases, the very first call to poll causes a
442 * recursive fault under the polldev worker. This is
443 * apparently related to very early userspace access to the
444 * device, and perhaps a firmware bug. Fake the first report. */
445 if (!asus->pega_acc_live) {
446 asus->pega_acc_live = true;
447 input_report_abs(ipd->input, ABS_X, 0);
448 input_report_abs(ipd->input, ABS_Y, 0);
449 input_report_abs(ipd->input, ABS_Z, 0);
450 input_sync(ipd->input);
451 return;
452 }
453
454 asus->pega_acc_x = pega_acc_axis(asus, asus->pega_acc_x, METHOD_XLRX);
455 asus->pega_acc_y = pega_acc_axis(asus, asus->pega_acc_y, METHOD_XLRY);
456 asus->pega_acc_z = pega_acc_axis(asus, asus->pega_acc_z, METHOD_XLRZ);
457
458 /* Note transform, convert to "right/up/out" in the native
459 * landscape orientation (i.e. the vector is the direction of
460 * "real up" in the device's cartiesian coordinates). */
461 input_report_abs(ipd->input, ABS_X, -asus->pega_acc_x);
462 input_report_abs(ipd->input, ABS_Y, -asus->pega_acc_y);
463 input_report_abs(ipd->input, ABS_Z, asus->pega_acc_z);
464 input_sync(ipd->input);
465}
466
467static void pega_accel_exit(struct asus_laptop *asus)
468{
469 if (asus->pega_accel_poll) {
470 input_unregister_polled_device(asus->pega_accel_poll);
471 input_free_polled_device(asus->pega_accel_poll);
472 }
473 asus->pega_accel_poll = NULL;
474}
475
476static int pega_accel_init(struct asus_laptop *asus)
477{
478 int err;
479 struct input_polled_dev *ipd;
480
481 if (!asus->is_pega_lucid)
482 return -ENODEV;
483
484 if (acpi_check_handle(asus->handle, METHOD_XLRX, NULL) ||
485 acpi_check_handle(asus->handle, METHOD_XLRY, NULL) ||
486 acpi_check_handle(asus->handle, METHOD_XLRZ, NULL))
487 return -ENODEV;
488
489 ipd = input_allocate_polled_device();
490 if (!ipd)
491 return -ENOMEM;
492
493 ipd->poll = pega_accel_poll;
494 ipd->poll_interval = 125;
495 ipd->poll_interval_min = 50;
496 ipd->poll_interval_max = 2000;
497
498 ipd->input->name = PEGA_ACCEL_DESC;
499 ipd->input->phys = PEGA_ACCEL_NAME "/input0";
500 ipd->input->dev.parent = &asus->platform_device->dev;
501 ipd->input->id.bustype = BUS_HOST;
502
503 set_bit(EV_ABS, ipd->input->evbit);
504 input_set_abs_params(ipd->input, ABS_X,
505 -PEGA_ACC_CLAMP, PEGA_ACC_CLAMP, 0, 0);
506 input_set_abs_params(ipd->input, ABS_Y,
507 -PEGA_ACC_CLAMP, PEGA_ACC_CLAMP, 0, 0);
508 input_set_abs_params(ipd->input, ABS_Z,
509 -PEGA_ACC_CLAMP, PEGA_ACC_CLAMP, 0, 0);
510
511 err = input_register_polled_device(ipd);
512 if (err)
513 goto exit;
514
515 asus->pega_accel_poll = ipd;
516 return 0;
517
518exit:
519 input_free_polled_device(ipd);
520 return err;
521}
522
Corentin Chary17e78f62010-01-13 22:21:33 +0100523/* Generic LED function */
Corentin Charyaee0afb2010-01-26 21:01:34 +0100524static int asus_led_set(struct asus_laptop *asus, const char *method,
Corentin Chary17e78f62010-01-13 22:21:33 +0100525 int value)
Corentin Charybe18cda2007-01-26 14:04:35 +0100526{
Corentin Charyd99b5772010-01-22 21:20:57 +0100527 if (!strcmp(method, METHOD_MLED))
Corentin Chary17e78f62010-01-13 22:21:33 +0100528 value = !value;
Corentin Charyd99b5772010-01-22 21:20:57 +0100529 else if (!strcmp(method, METHOD_GLED))
Corentin Chary17e78f62010-01-13 22:21:33 +0100530 value = !value + 1;
531 else
532 value = !!value;
Corentin Charybe18cda2007-01-26 14:04:35 +0100533
Corentin Charye5593bf2010-01-17 17:20:11 +0100534 return write_acpi_int(asus->handle, method, value);
Corentin Charybe18cda2007-01-26 14:04:35 +0100535}
536
Corentin Charybe4ee822009-12-06 16:27:09 +0100537/*
538 * LEDs
539 */
Corentin Charybe18cda2007-01-26 14:04:35 +0100540/* /sys/class/led handlers */
Corentin Charyaee0afb2010-01-26 21:01:34 +0100541static void asus_led_cdev_set(struct led_classdev *led_cdev,
542 enum led_brightness value)
543{
544 struct asus_led *led = container_of(led_cdev, struct asus_led, led);
545 struct asus_laptop *asus = led->asus;
Corentin Charybe18cda2007-01-26 14:04:35 +0100546
Corentin Charyaee0afb2010-01-26 21:01:34 +0100547 led->wk = !!value;
548 queue_work(asus->led_workqueue, &led->work);
549}
550
551static void asus_led_cdev_update(struct work_struct *work)
552{
553 struct asus_led *led = container_of(work, struct asus_led, work);
554 struct asus_laptop *asus = led->asus;
555
556 asus_led_set(asus, led->method, led->wk);
557}
558
559static enum led_brightness asus_led_cdev_get(struct led_classdev *led_cdev)
560{
561 return led_cdev->brightness;
562}
Corentin Charybe18cda2007-01-26 14:04:35 +0100563
Corentin Charyb7d3fbc2009-08-28 12:56:50 +0000564/*
Corentin Charybe4ee822009-12-06 16:27:09 +0100565 * Keyboard backlight (also a LED)
Corentin Charyb7d3fbc2009-08-28 12:56:50 +0000566 */
Corentin Charyd99b5772010-01-22 21:20:57 +0100567static int asus_kled_lvl(struct asus_laptop *asus)
Corentin Charyb7d3fbc2009-08-28 12:56:50 +0000568{
569 unsigned long long kblv;
570 struct acpi_object_list params;
571 union acpi_object in_obj;
572 acpi_status rv;
573
574 params.count = 1;
575 params.pointer = &in_obj;
576 in_obj.type = ACPI_TYPE_INTEGER;
577 in_obj.integer.value = 2;
578
Corentin Charyd99b5772010-01-22 21:20:57 +0100579 rv = acpi_evaluate_integer(asus->handle, METHOD_KBD_LIGHT_GET,
580 &params, &kblv);
Corentin Charyb7d3fbc2009-08-28 12:56:50 +0000581 if (ACPI_FAILURE(rv)) {
Joe Perches5ad77dc2011-03-29 15:21:35 -0700582 pr_warn("Error reading kled level\n");
Corentin Chary4d441512010-01-13 22:26:24 +0100583 return -ENODEV;
Corentin Charyb7d3fbc2009-08-28 12:56:50 +0000584 }
585 return kblv;
586}
587
Corentin Chary4d441512010-01-13 22:26:24 +0100588static int asus_kled_set(struct asus_laptop *asus, int kblv)
Corentin Charyb7d3fbc2009-08-28 12:56:50 +0000589{
590 if (kblv > 0)
591 kblv = (1 << 7) | (kblv & 0x7F);
592 else
593 kblv = 0;
594
Corentin Charyd99b5772010-01-22 21:20:57 +0100595 if (write_acpi_int(asus->handle, METHOD_KBD_LIGHT_SET, kblv)) {
Joe Perches5ad77dc2011-03-29 15:21:35 -0700596 pr_warn("Keyboard LED display write failed\n");
Corentin Charyb7d3fbc2009-08-28 12:56:50 +0000597 return -EINVAL;
598 }
599 return 0;
600}
601
Corentin Charyaee0afb2010-01-26 21:01:34 +0100602static void asus_kled_cdev_set(struct led_classdev *led_cdev,
603 enum led_brightness value)
Corentin Charyb7d3fbc2009-08-28 12:56:50 +0000604{
Corentin Charyaee0afb2010-01-26 21:01:34 +0100605 struct asus_led *led = container_of(led_cdev, struct asus_led, led);
606 struct asus_laptop *asus = led->asus;
Corentin Chary9129d142009-12-01 22:39:41 +0100607
Corentin Chary060cbce2010-01-28 10:52:40 +0100608 led->wk = value;
Corentin Charyaee0afb2010-01-26 21:01:34 +0100609 queue_work(asus->led_workqueue, &led->work);
Corentin Charyb7d3fbc2009-08-28 12:56:50 +0000610}
611
Corentin Charyaee0afb2010-01-26 21:01:34 +0100612static void asus_kled_cdev_update(struct work_struct *work)
Corentin Charyb7d3fbc2009-08-28 12:56:50 +0000613{
Corentin Charyaee0afb2010-01-26 21:01:34 +0100614 struct asus_led *led = container_of(work, struct asus_led, work);
615 struct asus_laptop *asus = led->asus;
Corentin Chary9129d142009-12-01 22:39:41 +0100616
Corentin Charyaee0afb2010-01-26 21:01:34 +0100617 asus_kled_set(asus, led->wk);
Corentin Charyb7d3fbc2009-08-28 12:56:50 +0000618}
619
Corentin Charyaee0afb2010-01-26 21:01:34 +0100620static enum led_brightness asus_kled_cdev_get(struct led_classdev *led_cdev)
Corentin Charyb7d3fbc2009-08-28 12:56:50 +0000621{
Corentin Charyaee0afb2010-01-26 21:01:34 +0100622 struct asus_led *led = container_of(led_cdev, struct asus_led, led);
623 struct asus_laptop *asus = led->asus;
Corentin Charyd99b5772010-01-22 21:20:57 +0100624
625 return asus_kled_lvl(asus);
Corentin Charyb7d3fbc2009-08-28 12:56:50 +0000626}
627
Corentin Charybe4ee822009-12-06 16:27:09 +0100628static void asus_led_exit(struct asus_laptop *asus)
629{
Corentin Chary774b0672011-12-15 08:27:34 +0100630 if (!IS_ERR_OR_NULL(asus->wled.led.dev))
631 led_classdev_unregister(&asus->wled.led);
632 if (!IS_ERR_OR_NULL(asus->bled.led.dev))
633 led_classdev_unregister(&asus->bled.led);
Axel Lin8fcf71a2011-08-08 17:17:18 +0800634 if (!IS_ERR_OR_NULL(asus->mled.led.dev))
Corentin Charyaee0afb2010-01-26 21:01:34 +0100635 led_classdev_unregister(&asus->mled.led);
Axel Lin8fcf71a2011-08-08 17:17:18 +0800636 if (!IS_ERR_OR_NULL(asus->tled.led.dev))
Corentin Charyaee0afb2010-01-26 21:01:34 +0100637 led_classdev_unregister(&asus->tled.led);
Axel Lin8fcf71a2011-08-08 17:17:18 +0800638 if (!IS_ERR_OR_NULL(asus->pled.led.dev))
Corentin Charyaee0afb2010-01-26 21:01:34 +0100639 led_classdev_unregister(&asus->pled.led);
Axel Lin8fcf71a2011-08-08 17:17:18 +0800640 if (!IS_ERR_OR_NULL(asus->rled.led.dev))
Corentin Charyaee0afb2010-01-26 21:01:34 +0100641 led_classdev_unregister(&asus->rled.led);
Axel Lin8fcf71a2011-08-08 17:17:18 +0800642 if (!IS_ERR_OR_NULL(asus->gled.led.dev))
Corentin Charyaee0afb2010-01-26 21:01:34 +0100643 led_classdev_unregister(&asus->gled.led);
Axel Lin8fcf71a2011-08-08 17:17:18 +0800644 if (!IS_ERR_OR_NULL(asus->kled.led.dev))
Corentin Charyaee0afb2010-01-26 21:01:34 +0100645 led_classdev_unregister(&asus->kled.led);
646 if (asus->led_workqueue) {
647 destroy_workqueue(asus->led_workqueue);
648 asus->led_workqueue = NULL;
Corentin Charybe4ee822009-12-06 16:27:09 +0100649 }
650}
651
652/* Ugly macro, need to fix that later */
Corentin Charyaee0afb2010-01-26 21:01:34 +0100653static int asus_led_register(struct asus_laptop *asus,
654 struct asus_led *led,
655 const char *name, const char *method)
656{
657 struct led_classdev *led_cdev = &led->led;
658
659 if (!method || acpi_check_handle(asus->handle, method, NULL))
Corentin Chary060cbce2010-01-28 10:52:40 +0100660 return 0; /* Led not present */
Corentin Charyaee0afb2010-01-26 21:01:34 +0100661
662 led->asus = asus;
663 led->method = method;
664
665 INIT_WORK(&led->work, asus_led_cdev_update);
666 led_cdev->name = name;
667 led_cdev->brightness_set = asus_led_cdev_set;
668 led_cdev->brightness_get = asus_led_cdev_get;
669 led_cdev->max_brightness = 1;
670 return led_classdev_register(&asus->platform_device->dev, led_cdev);
671}
Corentin Charybe4ee822009-12-06 16:27:09 +0100672
673static int asus_led_init(struct asus_laptop *asus)
674{
Corentin Chary774b0672011-12-15 08:27:34 +0100675 int r = 0;
Corentin Charybe4ee822009-12-06 16:27:09 +0100676
677 /*
Corentin Chary8d38e422011-10-14 11:13:39 +0200678 * The Pegatron Lucid has no physical leds, but all methods are
679 * available in the DSDT...
680 */
681 if (asus->is_pega_lucid)
682 return 0;
683
684 /*
Corentin Charybe4ee822009-12-06 16:27:09 +0100685 * Functions that actually update the LED's are called from a
686 * workqueue. By doing this as separate work rather than when the LED
687 * subsystem asks, we avoid messing with the Asus ACPI stuff during a
688 * potentially bad time, such as a timer interrupt.
689 */
Corentin Charyaee0afb2010-01-26 21:01:34 +0100690 asus->led_workqueue = create_singlethread_workqueue("led_workqueue");
691 if (!asus->led_workqueue)
Corentin Charybe4ee822009-12-06 16:27:09 +0100692 return -ENOMEM;
693
Corentin Chary774b0672011-12-15 08:27:34 +0100694 if (asus->wled_type == TYPE_LED)
695 r = asus_led_register(asus, &asus->wled, "asus::wlan",
696 METHOD_WLAN);
697 if (r)
698 goto error;
699 if (asus->bled_type == TYPE_LED)
700 r = asus_led_register(asus, &asus->bled, "asus::bluetooth",
701 METHOD_BLUETOOTH);
702 if (r)
703 goto error;
Corentin Charyaee0afb2010-01-26 21:01:34 +0100704 r = asus_led_register(asus, &asus->mled, "asus::mail", METHOD_MLED);
705 if (r)
706 goto error;
707 r = asus_led_register(asus, &asus->tled, "asus::touchpad", METHOD_TLED);
708 if (r)
709 goto error;
710 r = asus_led_register(asus, &asus->rled, "asus::record", METHOD_RLED);
711 if (r)
712 goto error;
713 r = asus_led_register(asus, &asus->pled, "asus::phone", METHOD_PLED);
714 if (r)
715 goto error;
716 r = asus_led_register(asus, &asus->gled, "asus::gaming", METHOD_GLED);
717 if (r)
718 goto error;
Corentin Charyd99b5772010-01-22 21:20:57 +0100719 if (!acpi_check_handle(asus->handle, METHOD_KBD_LIGHT_SET, NULL) &&
Corentin Charyaee0afb2010-01-26 21:01:34 +0100720 !acpi_check_handle(asus->handle, METHOD_KBD_LIGHT_GET, NULL)) {
721 struct asus_led *led = &asus->kled;
722 struct led_classdev *cdev = &led->led;
723
724 led->asus = asus;
725
726 INIT_WORK(&led->work, asus_kled_cdev_update);
727 cdev->name = "asus::kbd_backlight";
728 cdev->brightness_set = asus_kled_cdev_set;
729 cdev->brightness_get = asus_kled_cdev_get;
730 cdev->max_brightness = 3;
731 r = led_classdev_register(&asus->platform_device->dev, cdev);
732 }
Corentin Charybe4ee822009-12-06 16:27:09 +0100733error:
Corentin Charyaee0afb2010-01-26 21:01:34 +0100734 if (r)
Corentin Charybe4ee822009-12-06 16:27:09 +0100735 asus_led_exit(asus);
Corentin Charyaee0afb2010-01-26 21:01:34 +0100736 return r;
Corentin Charybe4ee822009-12-06 16:27:09 +0100737}
738
739/*
740 * Backlight device
741 */
Corentin Chary4d441512010-01-13 22:26:24 +0100742static int asus_read_brightness(struct backlight_device *bd)
Corentin Chary6b7091e2007-01-26 14:04:45 +0100743{
Corentin Charyd99b5772010-01-22 21:20:57 +0100744 struct asus_laptop *asus = bl_get_data(bd);
Matthew Wilcox27663c52008-10-10 02:22:59 -0400745 unsigned long long value;
Corentin Chary9a816852007-03-11 10:25:38 +0100746 acpi_status rv = AE_OK;
Corentin Chary6b7091e2007-01-26 14:04:45 +0100747
Corentin Charyd99b5772010-01-22 21:20:57 +0100748 rv = acpi_evaluate_integer(asus->handle, METHOD_BRIGHTNESS_GET,
749 NULL, &value);
Corentin Chary9a816852007-03-11 10:25:38 +0100750 if (ACPI_FAILURE(rv))
Joe Perches5ad77dc2011-03-29 15:21:35 -0700751 pr_warn("Error reading brightness\n");
Corentin Chary6b7091e2007-01-26 14:04:45 +0100752
753 return value;
754}
755
Corentin Chary4d441512010-01-13 22:26:24 +0100756static int asus_set_brightness(struct backlight_device *bd, int value)
Corentin Chary6b7091e2007-01-26 14:04:45 +0100757{
Corentin Charyd99b5772010-01-22 21:20:57 +0100758 struct asus_laptop *asus = bl_get_data(bd);
759
760 if (write_acpi_int(asus->handle, METHOD_BRIGHTNESS_SET, value)) {
Joe Perches5ad77dc2011-03-29 15:21:35 -0700761 pr_warn("Error changing brightness\n");
Corentin Charye5b50f62009-11-28 10:19:55 +0100762 return -EIO;
Corentin Chary6b7091e2007-01-26 14:04:45 +0100763 }
Corentin Charye5b50f62009-11-28 10:19:55 +0100764 return 0;
Corentin Chary6b7091e2007-01-26 14:04:45 +0100765}
766
767static int update_bl_status(struct backlight_device *bd)
768{
Richard Purdie599a52d2007-02-10 23:07:48 +0000769 int value = bd->props.brightness;
Corentin Chary6b7091e2007-01-26 14:04:45 +0100770
Corentin Chary3b81cf92011-02-06 13:27:31 +0100771 return asus_set_brightness(bd, value);
Corentin Chary6b7091e2007-01-26 14:04:45 +0100772}
773
Lionel Debrouxacc24722010-11-16 14:14:02 +0100774static const struct backlight_ops asusbl_ops = {
Corentin Chary4d441512010-01-13 22:26:24 +0100775 .get_brightness = asus_read_brightness,
Corentin Charybe4ee822009-12-06 16:27:09 +0100776 .update_status = update_bl_status,
777};
778
Corentin Charya539df52010-01-25 22:53:21 +0100779static int asus_backlight_notify(struct asus_laptop *asus)
780{
781 struct backlight_device *bd = asus->backlight_device;
782 int old = bd->props.brightness;
783
784 backlight_force_update(bd, BACKLIGHT_UPDATE_HOTKEY);
785
786 return old;
787}
788
Corentin Charybe4ee822009-12-06 16:27:09 +0100789static int asus_backlight_init(struct asus_laptop *asus)
790{
791 struct backlight_device *bd;
Matthew Garretta19a6ee2010-02-17 16:39:44 -0500792 struct backlight_properties props;
Corentin Charybe4ee822009-12-06 16:27:09 +0100793
Corentin Chary71e687d2010-08-24 09:30:44 +0200794 if (acpi_check_handle(asus->handle, METHOD_BRIGHTNESS_GET, NULL) ||
Corentin Chary3b81cf92011-02-06 13:27:31 +0100795 acpi_check_handle(asus->handle, METHOD_BRIGHTNESS_SET, NULL))
Corentin Chary71e687d2010-08-24 09:30:44 +0200796 return 0;
Matthew Garretta19a6ee2010-02-17 16:39:44 -0500797
Corentin Chary71e687d2010-08-24 09:30:44 +0200798 memset(&props, 0, sizeof(struct backlight_properties));
799 props.max_brightness = 15;
Matthew Garrettbb7ca742011-03-22 16:30:21 -0700800 props.type = BACKLIGHT_PLATFORM;
Corentin Charybe4ee822009-12-06 16:27:09 +0100801
Corentin Chary71e687d2010-08-24 09:30:44 +0200802 bd = backlight_device_register(ASUS_LAPTOP_FILE,
803 &asus->platform_device->dev, asus,
804 &asusbl_ops, &props);
805 if (IS_ERR(bd)) {
806 pr_err("Could not register asus backlight device\n");
807 asus->backlight_device = NULL;
808 return PTR_ERR(bd);
Corentin Charybe4ee822009-12-06 16:27:09 +0100809 }
Corentin Chary71e687d2010-08-24 09:30:44 +0200810
811 asus->backlight_device = bd;
812 bd->props.brightness = asus_read_brightness(bd);
813 bd->props.power = FB_BLANK_UNBLANK;
814 backlight_update_status(bd);
Corentin Charybe4ee822009-12-06 16:27:09 +0100815 return 0;
816}
817
818static void asus_backlight_exit(struct asus_laptop *asus)
819{
820 if (asus->backlight_device)
821 backlight_device_unregister(asus->backlight_device);
Corentin Charya539df52010-01-25 22:53:21 +0100822 asus->backlight_device = NULL;
Corentin Charybe4ee822009-12-06 16:27:09 +0100823}
824
Corentin Chary85091b72007-01-26 14:04:30 +0100825/*
826 * Platform device handlers
827 */
828
829/*
830 * We write our info in page, we begin at offset off and cannot write more
831 * than count bytes. We set eof to 1 if we handle those 2 values. We return the
832 * number of bytes written in page
833 */
834static ssize_t show_infos(struct device *dev,
Len Brown8def05f2007-01-30 01:46:43 -0500835 struct device_attribute *attr, char *page)
Corentin Chary85091b72007-01-26 14:04:30 +0100836{
Corentin Chary9129d142009-12-01 22:39:41 +0100837 struct asus_laptop *asus = dev_get_drvdata(dev);
Corentin Chary85091b72007-01-26 14:04:30 +0100838 int len = 0;
Matthew Wilcox27663c52008-10-10 02:22:59 -0400839 unsigned long long temp;
Corentin Charybe966662009-08-29 10:28:29 +0200840 char buf[16]; /* enough for all info */
Corentin Chary9a816852007-03-11 10:25:38 +0100841 acpi_status rv = AE_OK;
842
Corentin Chary85091b72007-01-26 14:04:30 +0100843 /*
Corentin Chary060cbce2010-01-28 10:52:40 +0100844 * We use the easy way, we don't care of off and count,
845 * so we don't set eof to 1
Corentin Chary85091b72007-01-26 14:04:30 +0100846 */
847
Corentin Chary50a90c42009-11-30 21:55:12 +0100848 len += sprintf(page, ASUS_LAPTOP_NAME " " ASUS_LAPTOP_VERSION "\n");
849 len += sprintf(page + len, "Model reference : %s\n", asus->name);
Corentin Chary85091b72007-01-26 14:04:30 +0100850 /*
851 * The SFUN method probably allows the original driver to get the list
852 * of features supported by a given model. For now, 0x0100 or 0x0800
853 * bit signifies that the laptop is equipped with a Wi-Fi MiniPCI card.
854 * The significance of others is yet to be found.
855 */
Corentin Chary50a90c42009-11-30 21:55:12 +0100856 rv = acpi_evaluate_integer(asus->handle, "SFUN", NULL, &temp);
Corentin Chary9a816852007-03-11 10:25:38 +0100857 if (!ACPI_FAILURE(rv))
Corentin Chary1d4a3802009-08-28 12:56:46 +0000858 len += sprintf(page + len, "SFUN value : %#x\n",
859 (uint) temp);
860 /*
861 * The HWRS method return informations about the hardware.
862 * 0x80 bit is for WLAN, 0x100 for Bluetooth.
863 * The significance of others is yet to be found.
864 * If we don't find the method, we assume the device are present.
865 */
Corentin Chary8871e992012-08-20 23:01:51 +0200866 rv = acpi_evaluate_integer(asus->handle, "HWRS", NULL, &temp);
Corentin Chary1d4a3802009-08-28 12:56:46 +0000867 if (!ACPI_FAILURE(rv))
Corentin Chary8871e992012-08-20 23:01:51 +0200868 len += sprintf(page + len, "HWRS value : %#x\n",
Corentin Chary9a816852007-03-11 10:25:38 +0100869 (uint) temp);
Corentin Chary85091b72007-01-26 14:04:30 +0100870 /*
871 * Another value for userspace: the ASYM method returns 0x02 for
872 * battery low and 0x04 for battery critical, its readings tend to be
873 * more accurate than those provided by _BST.
874 * Note: since not all the laptops provide this method, errors are
875 * silently ignored.
876 */
Corentin Chary50a90c42009-11-30 21:55:12 +0100877 rv = acpi_evaluate_integer(asus->handle, "ASYM", NULL, &temp);
Corentin Chary9a816852007-03-11 10:25:38 +0100878 if (!ACPI_FAILURE(rv))
Corentin Chary1d4a3802009-08-28 12:56:46 +0000879 len += sprintf(page + len, "ASYM value : %#x\n",
Corentin Chary9a816852007-03-11 10:25:38 +0100880 (uint) temp);
Corentin Chary7c247642009-11-30 22:13:54 +0100881 if (asus->dsdt_info) {
882 snprintf(buf, 16, "%d", asus->dsdt_info->length);
Corentin Chary85091b72007-01-26 14:04:30 +0100883 len += sprintf(page + len, "DSDT length : %s\n", buf);
Corentin Chary7c247642009-11-30 22:13:54 +0100884 snprintf(buf, 16, "%d", asus->dsdt_info->checksum);
Corentin Chary85091b72007-01-26 14:04:30 +0100885 len += sprintf(page + len, "DSDT checksum : %s\n", buf);
Corentin Chary7c247642009-11-30 22:13:54 +0100886 snprintf(buf, 16, "%d", asus->dsdt_info->revision);
Corentin Chary85091b72007-01-26 14:04:30 +0100887 len += sprintf(page + len, "DSDT revision : %s\n", buf);
Corentin Chary7c247642009-11-30 22:13:54 +0100888 snprintf(buf, 7, "%s", asus->dsdt_info->oem_id);
Corentin Chary85091b72007-01-26 14:04:30 +0100889 len += sprintf(page + len, "OEM id : %s\n", buf);
Corentin Chary7c247642009-11-30 22:13:54 +0100890 snprintf(buf, 9, "%s", asus->dsdt_info->oem_table_id);
Corentin Chary85091b72007-01-26 14:04:30 +0100891 len += sprintf(page + len, "OEM table id : %s\n", buf);
Corentin Chary7c247642009-11-30 22:13:54 +0100892 snprintf(buf, 16, "%x", asus->dsdt_info->oem_revision);
Corentin Chary85091b72007-01-26 14:04:30 +0100893 len += sprintf(page + len, "OEM revision : 0x%s\n", buf);
Corentin Chary7c247642009-11-30 22:13:54 +0100894 snprintf(buf, 5, "%s", asus->dsdt_info->asl_compiler_id);
Corentin Chary85091b72007-01-26 14:04:30 +0100895 len += sprintf(page + len, "ASL comp vendor id : %s\n", buf);
Corentin Chary7c247642009-11-30 22:13:54 +0100896 snprintf(buf, 16, "%x", asus->dsdt_info->asl_compiler_revision);
Corentin Chary85091b72007-01-26 14:04:30 +0100897 len += sprintf(page + len, "ASL comp revision : 0x%s\n", buf);
898 }
899
900 return len;
901}
902
903static int parse_arg(const char *buf, unsigned long count, int *val)
904{
905 if (!count)
906 return 0;
907 if (count > 31)
908 return -EINVAL;
909 if (sscanf(buf, "%i", val) != 1)
910 return -EINVAL;
911 return count;
912}
913
Corentin Chary17e78f62010-01-13 22:21:33 +0100914static ssize_t sysfs_acpi_set(struct asus_laptop *asus,
915 const char *buf, size_t count,
Corentin Charyd99b5772010-01-22 21:20:57 +0100916 const char *method)
Corentin Chary4564de12007-01-26 14:04:40 +0100917{
918 int rv, value;
919 int out = 0;
920
921 rv = parse_arg(buf, count, &value);
922 if (rv > 0)
923 out = value ? 1 : 0;
924
Corentin Charyd99b5772010-01-22 21:20:57 +0100925 if (write_acpi_int(asus->handle, method, value))
Corentin Chary17e78f62010-01-13 22:21:33 +0100926 return -ENODEV;
Corentin Chary4564de12007-01-26 14:04:40 +0100927 return rv;
928}
929
930/*
Corentin Chary722ad972007-01-26 14:04:55 +0100931 * LEDD display
932 */
933static ssize_t show_ledd(struct device *dev,
934 struct device_attribute *attr, char *buf)
935{
Corentin Chary9129d142009-12-01 22:39:41 +0100936 struct asus_laptop *asus = dev_get_drvdata(dev);
937
Corentin Chary50a90c42009-11-30 21:55:12 +0100938 return sprintf(buf, "0x%08x\n", asus->ledd_status);
Corentin Chary722ad972007-01-26 14:04:55 +0100939}
940
941static ssize_t store_ledd(struct device *dev, struct device_attribute *attr,
942 const char *buf, size_t count)
943{
Corentin Chary9129d142009-12-01 22:39:41 +0100944 struct asus_laptop *asus = dev_get_drvdata(dev);
Corentin Chary722ad972007-01-26 14:04:55 +0100945 int rv, value;
946
947 rv = parse_arg(buf, count, &value);
948 if (rv > 0) {
Axel Lin6a984a02010-07-20 15:19:48 -0700949 if (write_acpi_int(asus->handle, METHOD_LEDD, value)) {
Joe Perches5ad77dc2011-03-29 15:21:35 -0700950 pr_warn("LED display write failed\n");
Axel Lin6a984a02010-07-20 15:19:48 -0700951 return -ENODEV;
952 }
953 asus->ledd_status = (u32) value;
Corentin Chary722ad972007-01-26 14:04:55 +0100954 }
955 return rv;
956}
957
958/*
Corentin Charyaa9df932010-01-13 21:49:10 +0100959 * Wireless
960 */
961static int asus_wireless_status(struct asus_laptop *asus, int mask)
962{
963 unsigned long long status;
964 acpi_status rv = AE_OK;
965
966 if (!asus->have_rsts)
967 return (asus->wireless_status & mask) ? 1 : 0;
968
Corentin Charyd99b5772010-01-22 21:20:57 +0100969 rv = acpi_evaluate_integer(asus->handle, METHOD_WL_STATUS,
970 NULL, &status);
Corentin Charyaa9df932010-01-13 21:49:10 +0100971 if (ACPI_FAILURE(rv)) {
Joe Perches5ad77dc2011-03-29 15:21:35 -0700972 pr_warn("Error reading Wireless status\n");
Corentin Charyaa9df932010-01-13 21:49:10 +0100973 return -EINVAL;
974 }
975 return !!(status & mask);
976}
977
978/*
Corentin Chary4564de12007-01-26 14:04:40 +0100979 * WLAN
980 */
Corentin Charye5593bf2010-01-17 17:20:11 +0100981static int asus_wlan_set(struct asus_laptop *asus, int status)
982{
983 if (write_acpi_int(asus->handle, METHOD_WLAN, !!status)) {
Joe Perches5ad77dc2011-03-29 15:21:35 -0700984 pr_warn("Error setting wlan status to %d\n", status);
Corentin Charye5593bf2010-01-17 17:20:11 +0100985 return -EIO;
986 }
987 return 0;
988}
989
Corentin Chary4564de12007-01-26 14:04:40 +0100990static ssize_t show_wlan(struct device *dev,
991 struct device_attribute *attr, char *buf)
992{
Corentin Chary9129d142009-12-01 22:39:41 +0100993 struct asus_laptop *asus = dev_get_drvdata(dev);
994
Corentin Chary17e78f62010-01-13 22:21:33 +0100995 return sprintf(buf, "%d\n", asus_wireless_status(asus, WL_RSTS));
Corentin Chary4564de12007-01-26 14:04:40 +0100996}
997
998static ssize_t store_wlan(struct device *dev, struct device_attribute *attr,
999 const char *buf, size_t count)
1000{
Corentin Chary9129d142009-12-01 22:39:41 +01001001 struct asus_laptop *asus = dev_get_drvdata(dev);
1002
Corentin Charyd99b5772010-01-22 21:20:57 +01001003 return sysfs_acpi_set(asus, buf, count, METHOD_WLAN);
Corentin Chary4564de12007-01-26 14:04:40 +01001004}
1005
Corentin Chary774b0672011-12-15 08:27:34 +01001006/*e
Corentin Chary4564de12007-01-26 14:04:40 +01001007 * Bluetooth
1008 */
Corentin Charye5593bf2010-01-17 17:20:11 +01001009static int asus_bluetooth_set(struct asus_laptop *asus, int status)
1010{
1011 if (write_acpi_int(asus->handle, METHOD_BLUETOOTH, !!status)) {
Joe Perches5ad77dc2011-03-29 15:21:35 -07001012 pr_warn("Error setting bluetooth status to %d\n", status);
Corentin Charye5593bf2010-01-17 17:20:11 +01001013 return -EIO;
1014 }
1015 return 0;
1016}
1017
Corentin Chary4564de12007-01-26 14:04:40 +01001018static ssize_t show_bluetooth(struct device *dev,
1019 struct device_attribute *attr, char *buf)
1020{
Corentin Chary9129d142009-12-01 22:39:41 +01001021 struct asus_laptop *asus = dev_get_drvdata(dev);
1022
Corentin Chary17e78f62010-01-13 22:21:33 +01001023 return sprintf(buf, "%d\n", asus_wireless_status(asus, BT_RSTS));
Corentin Chary4564de12007-01-26 14:04:40 +01001024}
1025
Len Brown8def05f2007-01-30 01:46:43 -05001026static ssize_t store_bluetooth(struct device *dev,
1027 struct device_attribute *attr, const char *buf,
1028 size_t count)
Corentin Chary4564de12007-01-26 14:04:40 +01001029{
Corentin Chary9129d142009-12-01 22:39:41 +01001030 struct asus_laptop *asus = dev_get_drvdata(dev);
1031
Corentin Charyd99b5772010-01-22 21:20:57 +01001032 return sysfs_acpi_set(asus, buf, count, METHOD_BLUETOOTH);
Corentin Chary4564de12007-01-26 14:04:40 +01001033}
1034
Corentin Chary78127b42007-01-26 14:04:49 +01001035/*
Corentin Charyba1ff5b2010-11-14 17:40:12 +01001036 * Wimax
1037 */
1038static int asus_wimax_set(struct asus_laptop *asus, int status)
1039{
1040 if (write_acpi_int(asus->handle, METHOD_WIMAX, !!status)) {
Joe Perches5ad77dc2011-03-29 15:21:35 -07001041 pr_warn("Error setting wimax status to %d\n", status);
Corentin Charyba1ff5b2010-11-14 17:40:12 +01001042 return -EIO;
1043 }
1044 return 0;
1045}
1046
1047static ssize_t show_wimax(struct device *dev,
1048 struct device_attribute *attr, char *buf)
1049{
1050 struct asus_laptop *asus = dev_get_drvdata(dev);
1051
1052 return sprintf(buf, "%d\n", asus_wireless_status(asus, WM_RSTS));
1053}
1054
1055static ssize_t store_wimax(struct device *dev,
1056 struct device_attribute *attr, const char *buf,
1057 size_t count)
1058{
1059 struct asus_laptop *asus = dev_get_drvdata(dev);
1060
1061 return sysfs_acpi_set(asus, buf, count, METHOD_WIMAX);
1062}
1063
1064/*
1065 * Wwan
1066 */
1067static int asus_wwan_set(struct asus_laptop *asus, int status)
1068{
1069 if (write_acpi_int(asus->handle, METHOD_WWAN, !!status)) {
Joe Perches5ad77dc2011-03-29 15:21:35 -07001070 pr_warn("Error setting wwan status to %d\n", status);
Corentin Charyba1ff5b2010-11-14 17:40:12 +01001071 return -EIO;
1072 }
1073 return 0;
1074}
1075
1076static ssize_t show_wwan(struct device *dev,
1077 struct device_attribute *attr, char *buf)
1078{
1079 struct asus_laptop *asus = dev_get_drvdata(dev);
1080
1081 return sprintf(buf, "%d\n", asus_wireless_status(asus, WW_RSTS));
1082}
1083
1084static ssize_t store_wwan(struct device *dev,
1085 struct device_attribute *attr, const char *buf,
1086 size_t count)
1087{
1088 struct asus_laptop *asus = dev_get_drvdata(dev);
1089
1090 return sysfs_acpi_set(asus, buf, count, METHOD_WWAN);
1091}
1092
1093/*
Corentin Chary78127b42007-01-26 14:04:49 +01001094 * Display
1095 */
Corentin Chary4d441512010-01-13 22:26:24 +01001096static void asus_set_display(struct asus_laptop *asus, int value)
Corentin Chary78127b42007-01-26 14:04:49 +01001097{
1098 /* no sanity check needed for now */
Corentin Charyd99b5772010-01-22 21:20:57 +01001099 if (write_acpi_int(asus->handle, METHOD_SWITCH_DISPLAY, value))
Joe Perches5ad77dc2011-03-29 15:21:35 -07001100 pr_warn("Error setting display\n");
Corentin Chary78127b42007-01-26 14:04:49 +01001101 return;
1102}
1103
Corentin Chary78127b42007-01-26 14:04:49 +01001104/*
1105 * Experimental support for display switching. As of now: 1 should activate
1106 * the LCD output, 2 should do for CRT, 4 for TV-Out and 8 for DVI.
1107 * Any combination (bitwise) of these will suffice. I never actually tested 4
1108 * displays hooked up simultaneously, so be warned. See the acpi4asus README
1109 * for more info.
1110 */
1111static ssize_t store_disp(struct device *dev, struct device_attribute *attr,
1112 const char *buf, size_t count)
1113{
Corentin Chary9129d142009-12-01 22:39:41 +01001114 struct asus_laptop *asus = dev_get_drvdata(dev);
Corentin Chary78127b42007-01-26 14:04:49 +01001115 int rv, value;
1116
1117 rv = parse_arg(buf, count, &value);
1118 if (rv > 0)
Corentin Chary4d441512010-01-13 22:26:24 +01001119 asus_set_display(asus, value);
Corentin Chary78127b42007-01-26 14:04:49 +01001120 return rv;
1121}
1122
Corentin Chary8b857352007-01-26 14:04:58 +01001123/*
1124 * Light Sens
1125 */
Corentin Chary4d441512010-01-13 22:26:24 +01001126static void asus_als_switch(struct asus_laptop *asus, int value)
Corentin Chary8b857352007-01-26 14:04:58 +01001127{
Andy Ross33989ba2011-10-14 11:13:36 +02001128 int ret;
1129
1130 if (asus->is_pega_lucid) {
1131 ret = asus_pega_lucid_set(asus, PEGA_ALS, value);
1132 if (!ret)
1133 ret = asus_pega_lucid_set(asus, PEGA_ALS_POWER, value);
1134 } else {
1135 ret = write_acpi_int(asus->handle, METHOD_ALS_CONTROL, value);
1136 }
1137 if (ret)
1138 pr_warning("Error setting light sensor switch\n");
1139
Corentin Chary50a90c42009-11-30 21:55:12 +01001140 asus->light_switch = value;
Corentin Chary8b857352007-01-26 14:04:58 +01001141}
1142
1143static ssize_t show_lssw(struct device *dev,
1144 struct device_attribute *attr, char *buf)
1145{
Corentin Chary9129d142009-12-01 22:39:41 +01001146 struct asus_laptop *asus = dev_get_drvdata(dev);
1147
Corentin Chary50a90c42009-11-30 21:55:12 +01001148 return sprintf(buf, "%d\n", asus->light_switch);
Corentin Chary8b857352007-01-26 14:04:58 +01001149}
1150
1151static ssize_t store_lssw(struct device *dev, struct device_attribute *attr,
1152 const char *buf, size_t count)
1153{
Corentin Chary9129d142009-12-01 22:39:41 +01001154 struct asus_laptop *asus = dev_get_drvdata(dev);
Corentin Chary8b857352007-01-26 14:04:58 +01001155 int rv, value;
1156
1157 rv = parse_arg(buf, count, &value);
1158 if (rv > 0)
Corentin Chary4d441512010-01-13 22:26:24 +01001159 asus_als_switch(asus, value ? 1 : 0);
Corentin Chary8b857352007-01-26 14:04:58 +01001160
1161 return rv;
1162}
1163
Corentin Chary4d441512010-01-13 22:26:24 +01001164static void asus_als_level(struct asus_laptop *asus, int value)
Corentin Chary8b857352007-01-26 14:04:58 +01001165{
Corentin Charyd99b5772010-01-22 21:20:57 +01001166 if (write_acpi_int(asus->handle, METHOD_ALS_LEVEL, value))
Joe Perches5ad77dc2011-03-29 15:21:35 -07001167 pr_warn("Error setting light sensor level\n");
Corentin Chary50a90c42009-11-30 21:55:12 +01001168 asus->light_level = value;
Corentin Chary8b857352007-01-26 14:04:58 +01001169}
1170
1171static ssize_t show_lslvl(struct device *dev,
1172 struct device_attribute *attr, char *buf)
1173{
Corentin Chary9129d142009-12-01 22:39:41 +01001174 struct asus_laptop *asus = dev_get_drvdata(dev);
1175
Corentin Chary50a90c42009-11-30 21:55:12 +01001176 return sprintf(buf, "%d\n", asus->light_level);
Corentin Chary8b857352007-01-26 14:04:58 +01001177}
1178
1179static ssize_t store_lslvl(struct device *dev, struct device_attribute *attr,
1180 const char *buf, size_t count)
1181{
Corentin Chary9129d142009-12-01 22:39:41 +01001182 struct asus_laptop *asus = dev_get_drvdata(dev);
Corentin Chary8b857352007-01-26 14:04:58 +01001183 int rv, value;
1184
1185 rv = parse_arg(buf, count, &value);
1186 if (rv > 0) {
1187 value = (0 < value) ? ((15 < value) ? 15 : value) : 0;
1188 /* 0 <= value <= 15 */
Corentin Chary4d441512010-01-13 22:26:24 +01001189 asus_als_level(asus, value);
Corentin Chary8b857352007-01-26 14:04:58 +01001190 }
1191
1192 return rv;
1193}
1194
Andy Ross33989ba2011-10-14 11:13:36 +02001195static int pega_int_read(struct asus_laptop *asus, int arg, int *result)
1196{
1197 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
1198 int err = write_acpi_int_ret(asus->handle, METHOD_PEGA_READ, arg,
1199 &buffer);
1200 if (!err) {
1201 union acpi_object *obj = buffer.pointer;
1202 if (obj && obj->type == ACPI_TYPE_INTEGER)
1203 *result = obj->integer.value;
1204 else
1205 err = -EIO;
1206 }
1207 return err;
1208}
1209
1210static ssize_t show_lsvalue(struct device *dev,
1211 struct device_attribute *attr, char *buf)
1212{
1213 struct asus_laptop *asus = dev_get_drvdata(dev);
1214 int err, hi, lo;
1215
1216 err = pega_int_read(asus, PEGA_READ_ALS_H, &hi);
1217 if (!err)
1218 err = pega_int_read(asus, PEGA_READ_ALS_L, &lo);
1219 if (!err)
1220 return sprintf(buf, "%d\n", 10 * hi + lo);
1221 return err;
1222}
1223
Corentin Charye539c2f2007-05-06 14:47:06 +02001224/*
1225 * GPS
1226 */
Corentin Chary6358bf22010-01-13 21:55:44 +01001227static int asus_gps_status(struct asus_laptop *asus)
1228{
1229 unsigned long long status;
1230 acpi_status rv = AE_OK;
1231
Corentin Charyd99b5772010-01-22 21:20:57 +01001232 rv = acpi_evaluate_integer(asus->handle, METHOD_GPS_STATUS,
1233 NULL, &status);
Corentin Chary6358bf22010-01-13 21:55:44 +01001234 if (ACPI_FAILURE(rv)) {
Joe Perches5ad77dc2011-03-29 15:21:35 -07001235 pr_warn("Error reading GPS status\n");
Corentin Chary6358bf22010-01-13 21:55:44 +01001236 return -ENODEV;
1237 }
1238 return !!status;
1239}
1240
1241static int asus_gps_switch(struct asus_laptop *asus, int status)
1242{
Corentin Charyd99b5772010-01-22 21:20:57 +01001243 const char *meth = status ? METHOD_GPS_ON : METHOD_GPS_OFF;
Corentin Chary6358bf22010-01-13 21:55:44 +01001244
Corentin Charyd99b5772010-01-22 21:20:57 +01001245 if (write_acpi_int(asus->handle, meth, 0x02))
Corentin Chary6358bf22010-01-13 21:55:44 +01001246 return -ENODEV;
1247 return 0;
1248}
1249
Corentin Charye539c2f2007-05-06 14:47:06 +02001250static ssize_t show_gps(struct device *dev,
1251 struct device_attribute *attr, char *buf)
1252{
Corentin Chary9129d142009-12-01 22:39:41 +01001253 struct asus_laptop *asus = dev_get_drvdata(dev);
1254
Corentin Chary6358bf22010-01-13 21:55:44 +01001255 return sprintf(buf, "%d\n", asus_gps_status(asus));
Corentin Charye539c2f2007-05-06 14:47:06 +02001256}
1257
1258static ssize_t store_gps(struct device *dev, struct device_attribute *attr,
1259 const char *buf, size_t count)
1260{
Corentin Chary060cbce2010-01-28 10:52:40 +01001261 struct asus_laptop *asus = dev_get_drvdata(dev);
Corentin Chary6358bf22010-01-13 21:55:44 +01001262 int rv, value;
1263 int ret;
Corentin Chary9129d142009-12-01 22:39:41 +01001264
Corentin Chary6358bf22010-01-13 21:55:44 +01001265 rv = parse_arg(buf, count, &value);
1266 if (rv <= 0)
1267 return -EINVAL;
1268 ret = asus_gps_switch(asus, !!value);
1269 if (ret)
1270 return ret;
Corentin Chary40969c72011-12-15 08:27:33 +01001271 rfkill_set_sw_state(asus->gps.rfkill, !value);
Corentin Chary6358bf22010-01-13 21:55:44 +01001272 return rv;
Corentin Charye539c2f2007-05-06 14:47:06 +02001273}
1274
Corentin Chary034ce902009-01-20 16:17:43 +01001275/*
Corentin Chary18e13112010-01-25 23:29:24 +01001276 * rfkill
1277 */
1278static int asus_gps_rfkill_set(void *data, bool blocked)
1279{
Corentin Chary23f45c32010-08-24 09:30:46 +02001280 struct asus_laptop *asus = data;
Corentin Chary18e13112010-01-25 23:29:24 +01001281
Corentin Chary23f45c32010-08-24 09:30:46 +02001282 return asus_gps_switch(asus, !blocked);
Corentin Chary18e13112010-01-25 23:29:24 +01001283}
1284
1285static const struct rfkill_ops asus_gps_rfkill_ops = {
1286 .set_block = asus_gps_rfkill_set,
1287};
1288
Corentin Chary774b0672011-12-15 08:27:34 +01001289static int asus_rfkill_set(void *data, bool blocked)
1290{
1291 struct asus_rfkill *rfk = data;
1292 struct asus_laptop *asus = rfk->asus;
1293
1294 if (rfk->control_id == WL_RSTS)
1295 return asus_wlan_set(asus, !blocked);
1296 else if (rfk->control_id == BT_RSTS)
1297 return asus_bluetooth_set(asus, !blocked);
Corentin Chary3c8671f2011-12-15 08:27:35 +01001298 else if (rfk->control_id == WM_RSTS)
1299 return asus_wimax_set(asus, !blocked);
1300 else if (rfk->control_id == WW_RSTS)
1301 return asus_wwan_set(asus, !blocked);
Corentin Chary774b0672011-12-15 08:27:34 +01001302
1303 return -EINVAL;
1304}
1305
1306static const struct rfkill_ops asus_rfkill_ops = {
1307 .set_block = asus_rfkill_set,
1308};
1309
Corentin Chary40969c72011-12-15 08:27:33 +01001310static void asus_rfkill_terminate(struct asus_rfkill *rfk)
1311{
1312 if (!rfk->rfkill)
1313 return ;
1314
1315 rfkill_unregister(rfk->rfkill);
1316 rfkill_destroy(rfk->rfkill);
1317 rfk->rfkill = NULL;
1318}
1319
Corentin Chary18e13112010-01-25 23:29:24 +01001320static void asus_rfkill_exit(struct asus_laptop *asus)
1321{
Corentin Chary40969c72011-12-15 08:27:33 +01001322 asus_rfkill_terminate(&asus->wwan);
1323 asus_rfkill_terminate(&asus->bluetooth);
1324 asus_rfkill_terminate(&asus->wlan);
1325 asus_rfkill_terminate(&asus->gps);
Corentin Chary18e13112010-01-25 23:29:24 +01001326}
1327
Corentin Chary774b0672011-12-15 08:27:34 +01001328static int asus_rfkill_setup(struct asus_laptop *asus, struct asus_rfkill *rfk,
1329 const char *name, int control_id, int type,
1330 const struct rfkill_ops *ops)
Corentin Chary18e13112010-01-25 23:29:24 +01001331{
1332 int result;
1333
Corentin Chary774b0672011-12-15 08:27:34 +01001334 rfk->control_id = control_id;
1335 rfk->asus = asus;
1336 rfk->rfkill = rfkill_alloc(name, &asus->platform_device->dev,
1337 type, ops, rfk);
1338 if (!rfk->rfkill)
Corentin Chary18e13112010-01-25 23:29:24 +01001339 return -EINVAL;
1340
Corentin Chary774b0672011-12-15 08:27:34 +01001341 result = rfkill_register(rfk->rfkill);
Corentin Chary18e13112010-01-25 23:29:24 +01001342 if (result) {
Corentin Chary774b0672011-12-15 08:27:34 +01001343 rfkill_destroy(rfk->rfkill);
1344 rfk->rfkill = NULL;
Corentin Chary18e13112010-01-25 23:29:24 +01001345 }
1346
1347 return result;
1348}
1349
Corentin Chary774b0672011-12-15 08:27:34 +01001350static int asus_rfkill_init(struct asus_laptop *asus)
1351{
1352 int result = 0;
1353
Corentin Chary3c8671f2011-12-15 08:27:35 +01001354 if (asus->is_pega_lucid)
1355 return -ENODEV;
1356
Corentin Chary774b0672011-12-15 08:27:34 +01001357 if (!acpi_check_handle(asus->handle, METHOD_GPS_ON, NULL) &&
1358 !acpi_check_handle(asus->handle, METHOD_GPS_OFF, NULL) &&
1359 !acpi_check_handle(asus->handle, METHOD_GPS_STATUS, NULL))
1360 result = asus_rfkill_setup(asus, &asus->gps, "asus-gps",
1361 -1, RFKILL_TYPE_GPS,
1362 &asus_gps_rfkill_ops);
1363 if (result)
1364 goto exit;
1365
1366
Corentin Chary26594dd2011-12-15 08:27:36 +01001367 if (!acpi_check_handle(asus->handle, METHOD_WLAN, NULL) &&
1368 asus->wled_type == TYPE_RFKILL)
Corentin Chary774b0672011-12-15 08:27:34 +01001369 result = asus_rfkill_setup(asus, &asus->wlan, "asus-wlan",
1370 WL_RSTS, RFKILL_TYPE_WLAN,
1371 &asus_rfkill_ops);
1372 if (result)
1373 goto exit;
1374
Corentin Chary26594dd2011-12-15 08:27:36 +01001375 if (!acpi_check_handle(asus->handle, METHOD_BLUETOOTH, NULL) &&
1376 asus->bled_type == TYPE_RFKILL)
Corentin Chary774b0672011-12-15 08:27:34 +01001377 result = asus_rfkill_setup(asus, &asus->bluetooth,
1378 "asus-bluetooth", BT_RSTS,
1379 RFKILL_TYPE_BLUETOOTH,
1380 &asus_rfkill_ops);
1381 if (result)
1382 goto exit;
1383
Corentin Chary3c8671f2011-12-15 08:27:35 +01001384 if (!acpi_check_handle(asus->handle, METHOD_WWAN, NULL))
1385 result = asus_rfkill_setup(asus, &asus->wwan, "asus-wwan",
1386 WW_RSTS, RFKILL_TYPE_WWAN,
1387 &asus_rfkill_ops);
1388 if (result)
1389 goto exit;
1390
1391 if (!acpi_check_handle(asus->handle, METHOD_WIMAX, NULL))
1392 result = asus_rfkill_setup(asus, &asus->wimax, "asus-wimax",
1393 WM_RSTS, RFKILL_TYPE_WIMAX,
1394 &asus_rfkill_ops);
1395 if (result)
1396 goto exit;
1397
Corentin Chary774b0672011-12-15 08:27:34 +01001398exit:
1399 if (result)
1400 asus_rfkill_exit(asus);
1401
1402 return result;
1403}
1404
Anisse Astier14908392011-10-14 11:13:42 +02001405static int pega_rfkill_set(void *data, bool blocked)
1406{
Corentin Chary40969c72011-12-15 08:27:33 +01001407 struct asus_rfkill *rfk = data;
Anisse Astier14908392011-10-14 11:13:42 +02001408
Corentin Chary40969c72011-12-15 08:27:33 +01001409 int ret = asus_pega_lucid_set(rfk->asus, rfk->control_id, !blocked);
Anisse Astier14908392011-10-14 11:13:42 +02001410 return ret;
1411}
1412
1413static const struct rfkill_ops pega_rfkill_ops = {
1414 .set_block = pega_rfkill_set,
1415};
1416
Corentin Chary40969c72011-12-15 08:27:33 +01001417static int pega_rfkill_setup(struct asus_laptop *asus, struct asus_rfkill *rfk,
1418 const char *name, int controlid, int rfkill_type)
Anisse Astier14908392011-10-14 11:13:42 +02001419{
Corentin Chary774b0672011-12-15 08:27:34 +01001420 return asus_rfkill_setup(asus, rfk, name, controlid, rfkill_type,
1421 &pega_rfkill_ops);
Anisse Astier14908392011-10-14 11:13:42 +02001422}
1423
1424static int pega_rfkill_init(struct asus_laptop *asus)
1425{
1426 int ret = 0;
1427
1428 if(!asus->is_pega_lucid)
1429 return -ENODEV;
1430
Corentin Chary40969c72011-12-15 08:27:33 +01001431 ret = pega_rfkill_setup(asus, &asus->wlan, "pega-wlan",
1432 PEGA_WLAN, RFKILL_TYPE_WLAN);
Anisse Astier14908392011-10-14 11:13:42 +02001433 if(ret)
Corentin Chary40969c72011-12-15 08:27:33 +01001434 goto exit;
Anisse Astier14908392011-10-14 11:13:42 +02001435
Corentin Chary40969c72011-12-15 08:27:33 +01001436 ret = pega_rfkill_setup(asus, &asus->bluetooth, "pega-bt",
1437 PEGA_BLUETOOTH, RFKILL_TYPE_BLUETOOTH);
1438 if(ret)
1439 goto exit;
1440
1441 ret = pega_rfkill_setup(asus, &asus->wwan, "pega-wwan",
1442 PEGA_WWAN, RFKILL_TYPE_WWAN);
1443
1444exit:
1445 if (ret)
1446 asus_rfkill_exit(asus);
Anisse Astier14908392011-10-14 11:13:42 +02001447
1448 return ret;
1449}
1450
Corentin Chary18e13112010-01-25 23:29:24 +01001451/*
Corentin Charybe4ee822009-12-06 16:27:09 +01001452 * Input device (i.e. hotkeys)
Corentin Chary034ce902009-01-20 16:17:43 +01001453 */
Corentin Charybe4ee822009-12-06 16:27:09 +01001454static void asus_input_notify(struct asus_laptop *asus, int event)
1455{
Corentin Charye0ac9132011-12-15 08:27:31 +01001456 if (!asus->inputdev)
1457 return ;
1458 if (!sparse_keymap_report_event(asus->inputdev, event, 1, true))
1459 pr_info("Unknown key %x pressed\n", event);
Corentin Charybe4ee822009-12-06 16:27:09 +01001460}
1461
1462static int asus_input_init(struct asus_laptop *asus)
1463{
Corentin Chary66a71dd2010-01-25 22:50:11 +01001464 struct input_dev *input;
1465 int error;
Corentin Charybe4ee822009-12-06 16:27:09 +01001466
Corentin Chary66a71dd2010-01-25 22:50:11 +01001467 input = input_allocate_device();
1468 if (!input) {
Corentin Chary40969c72011-12-15 08:27:33 +01001469 pr_warn("Unable to allocate input device\n");
Axel Lin45036ae2010-07-05 15:29:00 +08001470 return -ENOMEM;
Corentin Charybe4ee822009-12-06 16:27:09 +01001471 }
Corentin Chary66a71dd2010-01-25 22:50:11 +01001472 input->name = "Asus Laptop extra buttons";
1473 input->phys = ASUS_LAPTOP_FILE "/input0";
1474 input->id.bustype = BUS_HOST;
1475 input->dev.parent = &asus->platform_device->dev;
Corentin Charybe4ee822009-12-06 16:27:09 +01001476
Corentin Chary66a71dd2010-01-25 22:50:11 +01001477 error = sparse_keymap_setup(input, asus_keymap, NULL);
1478 if (error) {
1479 pr_err("Unable to setup input device keymap\n");
Axel Lin45036ae2010-07-05 15:29:00 +08001480 goto err_free_dev;
Corentin Charybe4ee822009-12-06 16:27:09 +01001481 }
Corentin Chary66a71dd2010-01-25 22:50:11 +01001482 error = input_register_device(input);
1483 if (error) {
Corentin Chary40969c72011-12-15 08:27:33 +01001484 pr_warn("Unable to register input device\n");
Axel Lin45036ae2010-07-05 15:29:00 +08001485 goto err_free_keymap;
Corentin Charybe4ee822009-12-06 16:27:09 +01001486 }
Corentin Chary66a71dd2010-01-25 22:50:11 +01001487
1488 asus->inputdev = input;
1489 return 0;
1490
Axel Lin45036ae2010-07-05 15:29:00 +08001491err_free_keymap:
Corentin Chary66a71dd2010-01-25 22:50:11 +01001492 sparse_keymap_free(input);
Axel Lin45036ae2010-07-05 15:29:00 +08001493err_free_dev:
Corentin Chary66a71dd2010-01-25 22:50:11 +01001494 input_free_device(input);
1495 return error;
Corentin Charybe4ee822009-12-06 16:27:09 +01001496}
1497
1498static void asus_input_exit(struct asus_laptop *asus)
1499{
Corentin Chary66a71dd2010-01-25 22:50:11 +01001500 if (asus->inputdev) {
1501 sparse_keymap_free(asus->inputdev);
Corentin Charybe4ee822009-12-06 16:27:09 +01001502 input_unregister_device(asus->inputdev);
Corentin Chary66a71dd2010-01-25 22:50:11 +01001503 }
Corentin Chary71e687d2010-08-24 09:30:44 +02001504 asus->inputdev = NULL;
Corentin Charybe4ee822009-12-06 16:27:09 +01001505}
1506
1507/*
1508 * ACPI driver
1509 */
Corentin Chary600ad522009-11-30 21:42:42 +01001510static void asus_acpi_notify(struct acpi_device *device, u32 event)
Corentin Chary85091b72007-01-26 14:04:30 +01001511{
Corentin Chary9129d142009-12-01 22:39:41 +01001512 struct asus_laptop *asus = acpi_driver_data(device);
Corentin Chary6050c8d2009-02-15 19:30:19 +01001513 u16 count;
Corentin Chary034ce902009-01-20 16:17:43 +01001514
Corentin Chary619d8b12009-11-28 10:35:37 +01001515 /* TODO Find a better way to handle events count. */
Corentin Chary50a90c42009-11-30 21:55:12 +01001516 count = asus->event_count[event % 128]++;
1517 acpi_bus_generate_proc_event(asus->device, event, count);
1518 acpi_bus_generate_netlink_event(asus->device->pnp.device_class,
1519 dev_name(&asus->device->dev), event,
Corentin Chary6050c8d2009-02-15 19:30:19 +01001520 count);
Corentin Chary85091b72007-01-26 14:04:30 +01001521
Corentin Charya539df52010-01-25 22:53:21 +01001522 /* Brightness events are special */
1523 if (event >= ATKD_BR_MIN && event <= ATKD_BR_MAX) {
1524
1525 /* Ignore them completely if the acpi video driver is used */
1526 if (asus->backlight_device != NULL) {
1527 /* Update the backlight device. */
1528 asus_backlight_notify(asus);
1529 }
1530 return ;
1531 }
Anisse Astierb93f8282011-10-14 11:13:41 +02001532
1533 /* Accelerometer "coarse orientation change" event */
1534 if (asus->pega_accel_poll && event == 0xEA) {
1535 kobject_uevent(&asus->pega_accel_poll->input->dev.kobj,
1536 KOBJ_CHANGE);
1537 return ;
1538 }
1539
Corentin Charybe4ee822009-12-06 16:27:09 +01001540 asus_input_notify(asus, event);
Corentin Chary85091b72007-01-26 14:04:30 +01001541}
1542
Corentin Chary2a1fd642010-01-26 21:02:23 +01001543static DEVICE_ATTR(infos, S_IRUGO, show_infos, NULL);
1544static DEVICE_ATTR(wlan, S_IRUGO | S_IWUSR, show_wlan, store_wlan);
Dmitry Torokhovac9b1e52010-08-26 00:12:19 -07001545static DEVICE_ATTR(bluetooth, S_IRUGO | S_IWUSR,
1546 show_bluetooth, store_bluetooth);
Corentin Charyba1ff5b2010-11-14 17:40:12 +01001547static DEVICE_ATTR(wimax, S_IRUGO | S_IWUSR, show_wimax, store_wimax);
1548static DEVICE_ATTR(wwan, S_IRUGO | S_IWUSR, show_wwan, store_wwan);
Corentin Chary3b81cf92011-02-06 13:27:31 +01001549static DEVICE_ATTR(display, S_IWUSR, NULL, store_disp);
Corentin Chary2a1fd642010-01-26 21:02:23 +01001550static DEVICE_ATTR(ledd, S_IRUGO | S_IWUSR, show_ledd, store_ledd);
Andy Ross33989ba2011-10-14 11:13:36 +02001551static DEVICE_ATTR(ls_value, S_IRUGO, show_lsvalue, NULL);
Corentin Chary2a1fd642010-01-26 21:02:23 +01001552static DEVICE_ATTR(ls_level, S_IRUGO | S_IWUSR, show_lslvl, store_lslvl);
1553static DEVICE_ATTR(ls_switch, S_IRUGO | S_IWUSR, show_lssw, store_lssw);
1554static DEVICE_ATTR(gps, S_IRUGO | S_IWUSR, show_gps, store_gps);
1555
Dmitry Torokhovac9b1e52010-08-26 00:12:19 -07001556static struct attribute *asus_attributes[] = {
1557 &dev_attr_infos.attr,
1558 &dev_attr_wlan.attr,
1559 &dev_attr_bluetooth.attr,
Corentin Charyba1ff5b2010-11-14 17:40:12 +01001560 &dev_attr_wimax.attr,
1561 &dev_attr_wwan.attr,
Dmitry Torokhovac9b1e52010-08-26 00:12:19 -07001562 &dev_attr_display.attr,
1563 &dev_attr_ledd.attr,
Andy Ross33989ba2011-10-14 11:13:36 +02001564 &dev_attr_ls_value.attr,
Dmitry Torokhovac9b1e52010-08-26 00:12:19 -07001565 &dev_attr_ls_level.attr,
1566 &dev_attr_ls_switch.attr,
1567 &dev_attr_gps.attr,
1568 NULL
1569};
Corentin Chary2a1fd642010-01-26 21:02:23 +01001570
Al Viro587a1f12011-07-23 23:11:19 -04001571static umode_t asus_sysfs_is_visible(struct kobject *kobj,
Dmitry Torokhovac9b1e52010-08-26 00:12:19 -07001572 struct attribute *attr,
1573 int idx)
1574{
1575 struct device *dev = container_of(kobj, struct device, kobj);
1576 struct platform_device *pdev = to_platform_device(dev);
1577 struct asus_laptop *asus = platform_get_drvdata(pdev);
1578 acpi_handle handle = asus->handle;
1579 bool supported;
1580
Andy Ross33989ba2011-10-14 11:13:36 +02001581 if (asus->is_pega_lucid) {
1582 /* no ls_level interface on the Lucid */
1583 if (attr == &dev_attr_ls_switch.attr)
1584 supported = true;
1585 else if (attr == &dev_attr_ls_level.attr)
1586 supported = false;
1587 else
1588 goto normal;
1589
1590 return supported;
1591 }
1592
1593normal:
Dmitry Torokhovac9b1e52010-08-26 00:12:19 -07001594 if (attr == &dev_attr_wlan.attr) {
1595 supported = !acpi_check_handle(handle, METHOD_WLAN, NULL);
1596
1597 } else if (attr == &dev_attr_bluetooth.attr) {
1598 supported = !acpi_check_handle(handle, METHOD_BLUETOOTH, NULL);
1599
1600 } else if (attr == &dev_attr_display.attr) {
1601 supported = !acpi_check_handle(handle, METHOD_SWITCH_DISPLAY, NULL);
1602
Corentin Charyba1ff5b2010-11-14 17:40:12 +01001603 } else if (attr == &dev_attr_wimax.attr) {
1604 supported =
1605 !acpi_check_handle(asus->handle, METHOD_WIMAX, NULL);
1606
1607 } else if (attr == &dev_attr_wwan.attr) {
1608 supported = !acpi_check_handle(asus->handle, METHOD_WWAN, NULL);
1609
Dmitry Torokhovac9b1e52010-08-26 00:12:19 -07001610 } else if (attr == &dev_attr_ledd.attr) {
1611 supported = !acpi_check_handle(handle, METHOD_LEDD, NULL);
1612
1613 } else if (attr == &dev_attr_ls_switch.attr ||
1614 attr == &dev_attr_ls_level.attr) {
1615 supported = !acpi_check_handle(handle, METHOD_ALS_CONTROL, NULL) &&
Andy Ross33989ba2011-10-14 11:13:36 +02001616 !acpi_check_handle(handle, METHOD_ALS_LEVEL, NULL);
1617 } else if (attr == &dev_attr_ls_value.attr) {
1618 supported = asus->is_pega_lucid;
Dmitry Torokhovac9b1e52010-08-26 00:12:19 -07001619 } else if (attr == &dev_attr_gps.attr) {
1620 supported = !acpi_check_handle(handle, METHOD_GPS_ON, NULL) &&
1621 !acpi_check_handle(handle, METHOD_GPS_OFF, NULL) &&
1622 !acpi_check_handle(handle, METHOD_GPS_STATUS, NULL);
1623 } else {
1624 supported = true;
1625 }
1626
1627 return supported ? attr->mode : 0;
Corentin Chary2a1fd642010-01-26 21:02:23 +01001628}
1629
Corentin Chary2a1fd642010-01-26 21:02:23 +01001630
Dmitry Torokhovac9b1e52010-08-26 00:12:19 -07001631static const struct attribute_group asus_attr_group = {
1632 .is_visible = asus_sysfs_is_visible,
1633 .attrs = asus_attributes,
1634};
Corentin Chary85091b72007-01-26 14:04:30 +01001635
Corentin Chary9129d142009-12-01 22:39:41 +01001636static int asus_platform_init(struct asus_laptop *asus)
Corentin Chary600ad522009-11-30 21:42:42 +01001637{
Corentin Chary71e687d2010-08-24 09:30:44 +02001638 int result;
Corentin Chary600ad522009-11-30 21:42:42 +01001639
Corentin Chary50a90c42009-11-30 21:55:12 +01001640 asus->platform_device = platform_device_alloc(ASUS_LAPTOP_FILE, -1);
1641 if (!asus->platform_device)
Corentin Chary600ad522009-11-30 21:42:42 +01001642 return -ENOMEM;
Corentin Chary9129d142009-12-01 22:39:41 +01001643 platform_set_drvdata(asus->platform_device, asus);
Corentin Chary600ad522009-11-30 21:42:42 +01001644
Corentin Chary71e687d2010-08-24 09:30:44 +02001645 result = platform_device_add(asus->platform_device);
1646 if (result)
Corentin Chary600ad522009-11-30 21:42:42 +01001647 goto fail_platform_device;
1648
Dmitry Torokhovac9b1e52010-08-26 00:12:19 -07001649 result = sysfs_create_group(&asus->platform_device->dev.kobj,
1650 &asus_attr_group);
Corentin Chary71e687d2010-08-24 09:30:44 +02001651 if (result)
Corentin Chary600ad522009-11-30 21:42:42 +01001652 goto fail_sysfs;
Dmitry Torokhovac9b1e52010-08-26 00:12:19 -07001653
Corentin Chary600ad522009-11-30 21:42:42 +01001654 return 0;
1655
1656fail_sysfs:
Corentin Chary50a90c42009-11-30 21:55:12 +01001657 platform_device_del(asus->platform_device);
Corentin Chary600ad522009-11-30 21:42:42 +01001658fail_platform_device:
Corentin Chary50a90c42009-11-30 21:55:12 +01001659 platform_device_put(asus->platform_device);
Corentin Chary71e687d2010-08-24 09:30:44 +02001660 return result;
Corentin Chary600ad522009-11-30 21:42:42 +01001661}
1662
Corentin Chary9129d142009-12-01 22:39:41 +01001663static void asus_platform_exit(struct asus_laptop *asus)
Corentin Chary600ad522009-11-30 21:42:42 +01001664{
Dmitry Torokhovac9b1e52010-08-26 00:12:19 -07001665 sysfs_remove_group(&asus->platform_device->dev.kobj, &asus_attr_group);
Corentin Chary50a90c42009-11-30 21:55:12 +01001666 platform_device_unregister(asus->platform_device);
Corentin Chary600ad522009-11-30 21:42:42 +01001667}
1668
1669static struct platform_driver platform_driver = {
Len Brown8def05f2007-01-30 01:46:43 -05001670 .driver = {
Corentin Chary9129d142009-12-01 22:39:41 +01001671 .name = ASUS_LAPTOP_FILE,
1672 .owner = THIS_MODULE,
Andy Rossb23910c2011-10-14 11:13:38 +02001673 },
Corentin Chary85091b72007-01-26 14:04:30 +01001674};
1675
Corentin Chary85091b72007-01-26 14:04:30 +01001676/*
Corentin Chary50a90c42009-11-30 21:55:12 +01001677 * This function is used to initialize the context with right values. In this
1678 * method, we can make all the detection we want, and modify the asus_laptop
1679 * struct
Corentin Chary85091b72007-01-26 14:04:30 +01001680 */
Corentin Chary7c247642009-11-30 22:13:54 +01001681static int asus_laptop_get_info(struct asus_laptop *asus)
Corentin Chary85091b72007-01-26 14:04:30 +01001682{
1683 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
Corentin Chary85091b72007-01-26 14:04:30 +01001684 union acpi_object *model = NULL;
Matthew Wilcox27663c52008-10-10 02:22:59 -04001685 unsigned long long bsts_result, hwrs_result;
Corentin Chary85091b72007-01-26 14:04:30 +01001686 char *string = NULL;
1687 acpi_status status;
1688
1689 /*
1690 * Get DSDT headers early enough to allow for differentiating between
1691 * models, but late enough to allow acpi_bus_register_driver() to fail
1692 * before doing anything ACPI-specific. Should we encounter a machine,
1693 * which needs special handling (i.e. its hotkey device has a different
Corentin Chary7c247642009-11-30 22:13:54 +01001694 * HID), this bit will be moved.
Corentin Chary85091b72007-01-26 14:04:30 +01001695 */
Corentin Chary7c247642009-11-30 22:13:54 +01001696 status = acpi_get_table(ACPI_SIG_DSDT, 1, &asus->dsdt_info);
Corentin Chary85091b72007-01-26 14:04:30 +01001697 if (ACPI_FAILURE(status))
Joe Perches5ad77dc2011-03-29 15:21:35 -07001698 pr_warn("Couldn't get the DSDT table header\n");
Corentin Chary85091b72007-01-26 14:04:30 +01001699
1700 /* We have to write 0 on init this far for all ASUS models */
Corentin Chary50a90c42009-11-30 21:55:12 +01001701 if (write_acpi_int_ret(asus->handle, "INIT", 0, &buffer)) {
Corentin Chary2fcc23d2009-06-19 14:52:03 +02001702 pr_err("Hotkey initialization failed\n");
Corentin Chary85091b72007-01-26 14:04:30 +01001703 return -ENODEV;
1704 }
1705
1706 /* This needs to be called for some laptops to init properly */
Corentin Chary9a816852007-03-11 10:25:38 +01001707 status =
Corentin Chary50a90c42009-11-30 21:55:12 +01001708 acpi_evaluate_integer(asus->handle, "BSTS", NULL, &bsts_result);
Corentin Chary9a816852007-03-11 10:25:38 +01001709 if (ACPI_FAILURE(status))
Joe Perches5ad77dc2011-03-29 15:21:35 -07001710 pr_warn("Error calling BSTS\n");
Corentin Chary85091b72007-01-26 14:04:30 +01001711 else if (bsts_result)
Corentin Chary2fcc23d2009-06-19 14:52:03 +02001712 pr_notice("BSTS called, 0x%02x returned\n",
Corentin Chary9a816852007-03-11 10:25:38 +01001713 (uint) bsts_result);
Corentin Chary85091b72007-01-26 14:04:30 +01001714
Corentin Chary185e5af2007-03-11 10:27:33 +01001715 /* This too ... */
Corentin Charye5593bf2010-01-17 17:20:11 +01001716 if (write_acpi_int(asus->handle, "CWAP", wapf))
1717 pr_err("Error calling CWAP(%d)\n", wapf);
Corentin Chary85091b72007-01-26 14:04:30 +01001718 /*
1719 * Try to match the object returned by INIT to the specific model.
1720 * Handle every possible object (or the lack of thereof) the DSDT
1721 * writers might throw at us. When in trouble, we pass NULL to
1722 * asus_model_match() and try something completely different.
1723 */
1724 if (buffer.pointer) {
1725 model = buffer.pointer;
1726 switch (model->type) {
1727 case ACPI_TYPE_STRING:
1728 string = model->string.pointer;
1729 break;
1730 case ACPI_TYPE_BUFFER:
1731 string = model->buffer.pointer;
1732 break;
1733 default:
1734 string = "";
1735 break;
1736 }
1737 }
Corentin Chary50a90c42009-11-30 21:55:12 +01001738 asus->name = kstrdup(string, GFP_KERNEL);
Axel Lind8eca112010-06-29 11:09:47 +08001739 if (!asus->name) {
1740 kfree(buffer.pointer);
Corentin Chary85091b72007-01-26 14:04:30 +01001741 return -ENOMEM;
Axel Lind8eca112010-06-29 11:09:47 +08001742 }
Corentin Chary85091b72007-01-26 14:04:30 +01001743
Len Brown8def05f2007-01-30 01:46:43 -05001744 if (*string)
Corentin Chary2fcc23d2009-06-19 14:52:03 +02001745 pr_notice(" %s model detected\n", string);
Corentin Chary85091b72007-01-26 14:04:30 +01001746
Corentin Chary4564de12007-01-26 14:04:40 +01001747 /*
1748 * The HWRS method return informations about the hardware.
Corentin Charyba1ff5b2010-11-14 17:40:12 +01001749 * 0x80 bit is for WLAN, 0x100 for Bluetooth,
1750 * 0x40 for WWAN, 0x10 for WIMAX.
Corentin Chary4564de12007-01-26 14:04:40 +01001751 * The significance of others is yet to be found.
Corentin Chary4564de12007-01-26 14:04:40 +01001752 */
Corentin Chary9a816852007-03-11 10:25:38 +01001753 status =
Corentin Chary8871e992012-08-20 23:01:51 +02001754 acpi_evaluate_integer(asus->handle, "HWRS", NULL, &hwrs_result);
Corentin Charyd99b5772010-01-22 21:20:57 +01001755 if (!ACPI_FAILURE(status))
Corentin Chary8871e992012-08-20 23:01:51 +02001756 pr_notice(" HWRS returned %x", (int)hwrs_result);
Corentin Chary4564de12007-01-26 14:04:40 +01001757
Corentin Charyd99b5772010-01-22 21:20:57 +01001758 if (!acpi_check_handle(asus->handle, METHOD_WL_STATUS, NULL))
Corentin Charyaa9df932010-01-13 21:49:10 +01001759 asus->have_rsts = true;
Corentin Chary4564de12007-01-26 14:04:40 +01001760
Corentin Chary85091b72007-01-26 14:04:30 +01001761 kfree(model);
1762
1763 return AE_OK;
1764}
1765
Corentin Chary9129d142009-12-01 22:39:41 +01001766static int __devinit asus_acpi_init(struct asus_laptop *asus)
Corentin Chary600ad522009-11-30 21:42:42 +01001767{
1768 int result = 0;
1769
Corentin Chary50a90c42009-11-30 21:55:12 +01001770 result = acpi_bus_get_status(asus->device);
Corentin Chary600ad522009-11-30 21:42:42 +01001771 if (result)
1772 return result;
Corentin Chary50a90c42009-11-30 21:55:12 +01001773 if (!asus->device->status.present) {
Corentin Chary600ad522009-11-30 21:42:42 +01001774 pr_err("Hotkey device not present, aborting\n");
1775 return -ENODEV;
1776 }
1777
Corentin Chary7c247642009-11-30 22:13:54 +01001778 result = asus_laptop_get_info(asus);
Corentin Chary600ad522009-11-30 21:42:42 +01001779 if (result)
1780 return result;
1781
Corentin Chary774b0672011-12-15 08:27:34 +01001782 if (!strcmp(bled_type, "led"))
1783 asus->bled_type = TYPE_LED;
1784 else if (!strcmp(bled_type, "rfkill"))
1785 asus->bled_type = TYPE_RFKILL;
1786
1787 if (!strcmp(wled_type, "led"))
1788 asus->wled_type = TYPE_LED;
1789 else if (!strcmp(wled_type, "rfkill"))
1790 asus->wled_type = TYPE_RFKILL;
1791
Corentin Charybe4ee822009-12-06 16:27:09 +01001792 if (bluetooth_status >= 0)
Corentin Charye5593bf2010-01-17 17:20:11 +01001793 asus_bluetooth_set(asus, !!bluetooth_status);
1794
Corentin Charyd0930a22010-01-17 17:21:13 +01001795 if (wlan_status >= 0)
1796 asus_wlan_set(asus, !!wlan_status);
Corentin Chary600ad522009-11-30 21:42:42 +01001797
Corentin Charyba1ff5b2010-11-14 17:40:12 +01001798 if (wimax_status >= 0)
1799 asus_wimax_set(asus, !!wimax_status);
1800
1801 if (wwan_status >= 0)
1802 asus_wwan_set(asus, !!wwan_status);
1803
Corentin Chary600ad522009-11-30 21:42:42 +01001804 /* Keyboard Backlight is on by default */
Corentin Charyd99b5772010-01-22 21:20:57 +01001805 if (!acpi_check_handle(asus->handle, METHOD_KBD_LIGHT_SET, NULL))
Corentin Chary4d441512010-01-13 22:26:24 +01001806 asus_kled_set(asus, 1);
Corentin Chary600ad522009-11-30 21:42:42 +01001807
1808 /* LED display is off by default */
Corentin Chary50a90c42009-11-30 21:55:12 +01001809 asus->ledd_status = 0xFFF;
Corentin Chary600ad522009-11-30 21:42:42 +01001810
1811 /* Set initial values of light sensor and level */
Andy Rossabec04d2011-10-14 11:13:37 +02001812 asus->light_switch = !!als_status;
Corentin Charybe4ee822009-12-06 16:27:09 +01001813 asus->light_level = 5; /* level 5 for sensor sensitivity */
Corentin Chary600ad522009-11-30 21:42:42 +01001814
Andy Ross33989ba2011-10-14 11:13:36 +02001815 if (asus->is_pega_lucid) {
1816 asus_als_switch(asus, asus->light_switch);
1817 } else if (!acpi_check_handle(asus->handle, METHOD_ALS_CONTROL, NULL) &&
1818 !acpi_check_handle(asus->handle, METHOD_ALS_LEVEL, NULL)) {
Corentin Chary4d441512010-01-13 22:26:24 +01001819 asus_als_switch(asus, asus->light_switch);
Corentin Chary4d441512010-01-13 22:26:24 +01001820 asus_als_level(asus, asus->light_level);
Corentin Charyd99b5772010-01-22 21:20:57 +01001821 }
Corentin Chary600ad522009-11-30 21:42:42 +01001822
Corentin Chary600ad522009-11-30 21:42:42 +01001823 return result;
1824}
1825
Corentin Charyaf96f872011-02-06 13:27:30 +01001826static void __devinit asus_dmi_check(void)
1827{
1828 const char *model;
1829
1830 model = dmi_get_system_info(DMI_PRODUCT_NAME);
1831 if (!model)
1832 return;
1833
1834 /* On L1400B WLED control the sound card, don't mess with it ... */
1835 if (strncmp(model, "L1400B", 6) == 0) {
1836 wlan_status = -1;
1837 }
1838}
1839
Corentin Chary71e687d2010-08-24 09:30:44 +02001840static bool asus_device_present;
1841
Corentin Chary600ad522009-11-30 21:42:42 +01001842static int __devinit asus_acpi_add(struct acpi_device *device)
1843{
Corentin Chary9129d142009-12-01 22:39:41 +01001844 struct asus_laptop *asus;
Corentin Chary600ad522009-11-30 21:42:42 +01001845 int result;
1846
1847 pr_notice("Asus Laptop Support version %s\n",
1848 ASUS_LAPTOP_VERSION);
Corentin Chary50a90c42009-11-30 21:55:12 +01001849 asus = kzalloc(sizeof(struct asus_laptop), GFP_KERNEL);
1850 if (!asus)
Corentin Chary600ad522009-11-30 21:42:42 +01001851 return -ENOMEM;
Corentin Chary50a90c42009-11-30 21:55:12 +01001852 asus->handle = device->handle;
1853 strcpy(acpi_device_name(device), ASUS_LAPTOP_DEVICE_NAME);
1854 strcpy(acpi_device_class(device), ASUS_LAPTOP_CLASS);
1855 device->driver_data = asus;
1856 asus->device = device;
Corentin Chary600ad522009-11-30 21:42:42 +01001857
Corentin Charyaf96f872011-02-06 13:27:30 +01001858 asus_dmi_check();
1859
Corentin Chary9129d142009-12-01 22:39:41 +01001860 result = asus_acpi_init(asus);
Corentin Chary600ad522009-11-30 21:42:42 +01001861 if (result)
1862 goto fail_platform;
1863
1864 /*
Andy Ross8819de72011-10-14 11:13:35 +02001865 * Need platform type detection first, then the platform
1866 * device. It is used as a parent for the sub-devices below.
Corentin Chary600ad522009-11-30 21:42:42 +01001867 */
Andy Ross8819de72011-10-14 11:13:35 +02001868 asus->is_pega_lucid = asus_check_pega_lucid(asus);
Corentin Chary9129d142009-12-01 22:39:41 +01001869 result = asus_platform_init(asus);
Corentin Chary600ad522009-11-30 21:42:42 +01001870 if (result)
1871 goto fail_platform;
1872
1873 if (!acpi_video_backlight_support()) {
Corentin Chary9129d142009-12-01 22:39:41 +01001874 result = asus_backlight_init(asus);
Corentin Chary600ad522009-11-30 21:42:42 +01001875 if (result)
1876 goto fail_backlight;
1877 } else
1878 pr_info("Backlight controlled by ACPI video driver\n");
1879
Corentin Chary9129d142009-12-01 22:39:41 +01001880 result = asus_input_init(asus);
Corentin Chary600ad522009-11-30 21:42:42 +01001881 if (result)
1882 goto fail_input;
1883
Corentin Chary9129d142009-12-01 22:39:41 +01001884 result = asus_led_init(asus);
Corentin Chary600ad522009-11-30 21:42:42 +01001885 if (result)
1886 goto fail_led;
1887
Corentin Chary18e13112010-01-25 23:29:24 +01001888 result = asus_rfkill_init(asus);
Corentin Chary3c8671f2011-12-15 08:27:35 +01001889 if (result && result != -ENODEV)
Corentin Chary18e13112010-01-25 23:29:24 +01001890 goto fail_rfkill;
1891
Andy Rossb23910c2011-10-14 11:13:38 +02001892 result = pega_accel_init(asus);
1893 if (result && result != -ENODEV)
1894 goto fail_pega_accel;
1895
Anisse Astier14908392011-10-14 11:13:42 +02001896 result = pega_rfkill_init(asus);
1897 if (result && result != -ENODEV)
1898 goto fail_pega_rfkill;
1899
Corentin Chary600ad522009-11-30 21:42:42 +01001900 asus_device_present = true;
1901 return 0;
1902
Anisse Astier14908392011-10-14 11:13:42 +02001903fail_pega_rfkill:
1904 pega_accel_exit(asus);
Andy Rossb23910c2011-10-14 11:13:38 +02001905fail_pega_accel:
1906 asus_rfkill_exit(asus);
Corentin Chary18e13112010-01-25 23:29:24 +01001907fail_rfkill:
1908 asus_led_exit(asus);
Corentin Chary600ad522009-11-30 21:42:42 +01001909fail_led:
Corentin Chary9129d142009-12-01 22:39:41 +01001910 asus_input_exit(asus);
Corentin Chary600ad522009-11-30 21:42:42 +01001911fail_input:
Corentin Chary9129d142009-12-01 22:39:41 +01001912 asus_backlight_exit(asus);
Corentin Chary600ad522009-11-30 21:42:42 +01001913fail_backlight:
Corentin Chary9129d142009-12-01 22:39:41 +01001914 asus_platform_exit(asus);
Corentin Chary600ad522009-11-30 21:42:42 +01001915fail_platform:
Corentin Chary50a90c42009-11-30 21:55:12 +01001916 kfree(asus->name);
1917 kfree(asus);
Corentin Chary600ad522009-11-30 21:42:42 +01001918
1919 return result;
1920}
1921
1922static int asus_acpi_remove(struct acpi_device *device, int type)
1923{
Corentin Chary9129d142009-12-01 22:39:41 +01001924 struct asus_laptop *asus = acpi_driver_data(device);
1925
1926 asus_backlight_exit(asus);
Corentin Chary18e13112010-01-25 23:29:24 +01001927 asus_rfkill_exit(asus);
Corentin Chary9129d142009-12-01 22:39:41 +01001928 asus_led_exit(asus);
1929 asus_input_exit(asus);
Andy Rossb23910c2011-10-14 11:13:38 +02001930 pega_accel_exit(asus);
Corentin Chary9129d142009-12-01 22:39:41 +01001931 asus_platform_exit(asus);
Corentin Chary600ad522009-11-30 21:42:42 +01001932
Corentin Chary50a90c42009-11-30 21:55:12 +01001933 kfree(asus->name);
1934 kfree(asus);
Corentin Chary600ad522009-11-30 21:42:42 +01001935 return 0;
1936}
1937
1938static const struct acpi_device_id asus_device_ids[] = {
1939 {"ATK0100", 0},
1940 {"ATK0101", 0},
1941 {"", 0},
1942};
1943MODULE_DEVICE_TABLE(acpi, asus_device_ids);
1944
1945static struct acpi_driver asus_acpi_driver = {
Corentin Chary50a90c42009-11-30 21:55:12 +01001946 .name = ASUS_LAPTOP_NAME,
1947 .class = ASUS_LAPTOP_CLASS,
Corentin Chary600ad522009-11-30 21:42:42 +01001948 .owner = THIS_MODULE,
1949 .ids = asus_device_ids,
1950 .flags = ACPI_DRIVER_ALL_NOTIFY_EVENTS,
1951 .ops = {
1952 .add = asus_acpi_add,
1953 .remove = asus_acpi_remove,
1954 .notify = asus_acpi_notify,
1955 },
1956};
1957
Corentin Chary85091b72007-01-26 14:04:30 +01001958static int __init asus_laptop_init(void)
1959{
1960 int result;
1961
Corentin Chary600ad522009-11-30 21:42:42 +01001962 result = platform_driver_register(&platform_driver);
Corentin Chary85091b72007-01-26 14:04:30 +01001963 if (result < 0)
1964 return result;
1965
Corentin Chary600ad522009-11-30 21:42:42 +01001966 result = acpi_bus_register_driver(&asus_acpi_driver);
1967 if (result < 0)
1968 goto fail_acpi_driver;
1969 if (!asus_device_present) {
1970 result = -ENODEV;
1971 goto fail_no_device;
Corentin Chary85091b72007-01-26 14:04:30 +01001972 }
Len Brown8def05f2007-01-30 01:46:43 -05001973 return 0;
Corentin Chary85091b72007-01-26 14:04:30 +01001974
Corentin Chary600ad522009-11-30 21:42:42 +01001975fail_no_device:
1976 acpi_bus_unregister_driver(&asus_acpi_driver);
1977fail_acpi_driver:
1978 platform_driver_unregister(&platform_driver);
Corentin Chary85091b72007-01-26 14:04:30 +01001979 return result;
1980}
1981
Corentin Chary600ad522009-11-30 21:42:42 +01001982static void __exit asus_laptop_exit(void)
1983{
1984 acpi_bus_unregister_driver(&asus_acpi_driver);
1985 platform_driver_unregister(&platform_driver);
1986}
1987
Corentin Chary85091b72007-01-26 14:04:30 +01001988module_init(asus_laptop_init);
1989module_exit(asus_laptop_exit);