blob: 7ed1e9983d3ef3b641ad0799581b7c9ba5643344 [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 } },
Corentin Charya935eae2012-10-03 11:26:26 +0200307 {KE_KEY, 0x33, { KEY_DISPLAYTOGGLE } }, /* LCD on */
308 {KE_KEY, 0x34, { KEY_DISPLAY_OFF } }, /* LCD off */
Corentin Chary66a71dd2010-01-25 22:50:11 +0100309 {KE_KEY, 0x40, { KEY_PREVIOUSSONG } },
310 {KE_KEY, 0x41, { KEY_NEXTSONG } },
Corentin Charya935eae2012-10-03 11:26:26 +0200311 {KE_KEY, 0x43, { KEY_STOPCD } }, /* Stop/Eject */
Corentin Chary66a71dd2010-01-25 22:50:11 +0100312 {KE_KEY, 0x45, { KEY_PLAYPAUSE } },
Corentin Charya935eae2012-10-03 11:26:26 +0200313 {KE_KEY, 0x4c, { KEY_MEDIA } }, /* WMP Key */
Corentin Chary66a71dd2010-01-25 22:50:11 +0100314 {KE_KEY, 0x50, { KEY_EMAIL } },
315 {KE_KEY, 0x51, { KEY_WWW } },
316 {KE_KEY, 0x55, { KEY_CALC } },
Corentin Chary982d3852012-10-03 11:26:25 +0200317 {KE_IGNORE, 0x57, }, /* Battery mode */
318 {KE_IGNORE, 0x58, }, /* AC mode */
Corentin Chary66a71dd2010-01-25 22:50:11 +0100319 {KE_KEY, 0x5C, { KEY_SCREENLOCK } }, /* Screenlock */
Corentin Charya935eae2012-10-03 11:26:26 +0200320 {KE_KEY, 0x5D, { KEY_WLAN } }, /* WLAN Toggle */
321 {KE_KEY, 0x5E, { KEY_WLAN } }, /* WLAN Enable */
322 {KE_KEY, 0x5F, { KEY_WLAN } }, /* WLAN Disable */
Corentin Chary66a71dd2010-01-25 22:50:11 +0100323 {KE_KEY, 0x60, { KEY_SWITCHVIDEOMODE } },
Corentin Charya935eae2012-10-03 11:26:26 +0200324 {KE_KEY, 0x61, { KEY_SWITCHVIDEOMODE } }, /* LCD Only */
325 {KE_KEY, 0x62, { KEY_SWITCHVIDEOMODE } }, /* CRT Only */
326 {KE_KEY, 0x63, { KEY_SWITCHVIDEOMODE } }, /* LCD + CRT */
327 {KE_KEY, 0x6B, { KEY_TOUCHPAD_TOGGLE } }, /* Lock Touchpad */
Corentin Charya2d5dd22011-12-15 08:27:38 +0100328 {KE_KEY, 0x6C, { KEY_SLEEP } }, /* Suspend */
329 {KE_KEY, 0x6D, { KEY_SLEEP } }, /* Hibernate */
Corentin Chary982d3852012-10-03 11:26:25 +0200330 {KE_IGNORE, 0x6E, }, /* Low Battery notification */
Corentin Charya935eae2012-10-03 11:26:26 +0200331 {KE_KEY, 0x7D, { KEY_BLUETOOTH } }, /* Bluetooth Enable */
332 {KE_KEY, 0x7E, { KEY_BLUETOOTH } }, /* Bluetooth Disable */
Corentin Chary66a71dd2010-01-25 22:50:11 +0100333 {KE_KEY, 0x82, { KEY_CAMERA } },
Corentin Charya935eae2012-10-03 11:26:26 +0200334 {KE_KEY, 0x88, { KEY_RFKILL } }, /* Radio Toggle Key */
335 {KE_KEY, 0x8A, { KEY_PROG1 } }, /* Color enhancement mode */
Corentin Chary66a71dd2010-01-25 22:50:11 +0100336 {KE_KEY, 0x95, { KEY_MEDIA } },
337 {KE_KEY, 0x99, { KEY_PHONE } },
Corentin Charya935eae2012-10-03 11:26:26 +0200338 {KE_KEY, 0xB5, { KEY_CALC } },
339 {KE_KEY, 0xC4, { KEY_KBDILLUMUP } },
340 {KE_KEY, 0xC5, { KEY_KBDILLUMDOWN } },
Corentin Chary034ce902009-01-20 16:17:43 +0100341 {KE_END, 0},
342};
343
Corentin Chary66a71dd2010-01-25 22:50:11 +0100344
Corentin Chary85091b72007-01-26 14:04:30 +0100345/*
346 * This function evaluates an ACPI method, given an int as parameter, the
347 * method is searched within the scope of the handle, can be NULL. The output
348 * of the method is written is output, which can also be NULL
349 *
Corentin CHARYf8d1c942008-01-16 16:56:42 +0100350 * returns 0 if write is successful, -1 else.
Corentin Chary85091b72007-01-26 14:04:30 +0100351 */
Corentin Charyd8c67322009-11-28 10:27:51 +0100352static int write_acpi_int_ret(acpi_handle handle, const char *method, int val,
353 struct acpi_buffer *output)
Corentin Chary85091b72007-01-26 14:04:30 +0100354{
Corentin Charybe966662009-08-29 10:28:29 +0200355 struct acpi_object_list params; /* list of input parameters (an int) */
356 union acpi_object in_obj; /* the only param we use */
Corentin Chary85091b72007-01-26 14:04:30 +0100357 acpi_status status;
358
Corentin CHARYf8d1c942008-01-16 16:56:42 +0100359 if (!handle)
Axel Lin9fb866f2010-07-20 15:19:47 -0700360 return -1;
Corentin CHARYf8d1c942008-01-16 16:56:42 +0100361
Corentin Chary85091b72007-01-26 14:04:30 +0100362 params.count = 1;
363 params.pointer = &in_obj;
364 in_obj.type = ACPI_TYPE_INTEGER;
365 in_obj.integer.value = val;
366
367 status = acpi_evaluate_object(handle, (char *)method, &params, output);
Corentin CHARYf8d1c942008-01-16 16:56:42 +0100368 if (status == AE_OK)
369 return 0;
370 else
371 return -1;
Corentin Chary85091b72007-01-26 14:04:30 +0100372}
373
Corentin Charyd8c67322009-11-28 10:27:51 +0100374static int write_acpi_int(acpi_handle handle, const char *method, int val)
375{
376 return write_acpi_int_ret(handle, method, val, NULL);
377}
378
Corentin Charyd99b5772010-01-22 21:20:57 +0100379static int acpi_check_handle(acpi_handle handle, const char *method,
380 acpi_handle *ret)
381{
382 acpi_status status;
383
384 if (method == NULL)
385 return -ENODEV;
386
387 if (ret)
388 status = acpi_get_handle(handle, (char *)method,
389 ret);
390 else {
391 acpi_handle dummy;
392
393 status = acpi_get_handle(handle, (char *)method,
394 &dummy);
395 }
396
397 if (status != AE_OK) {
398 if (ret)
Joe Perches5ad77dc2011-03-29 15:21:35 -0700399 pr_warn("Error finding %s\n", method);
Corentin Charyd99b5772010-01-22 21:20:57 +0100400 return -ENODEV;
401 }
402 return 0;
403}
404
Andy Ross8819de72011-10-14 11:13:35 +0200405static bool asus_check_pega_lucid(struct asus_laptop *asus)
406{
407 return !strcmp(asus->name, DEVICE_NAME_PEGA) &&
408 !acpi_check_handle(asus->handle, METHOD_PEGA_ENABLE, NULL) &&
409 !acpi_check_handle(asus->handle, METHOD_PEGA_DISABLE, NULL) &&
410 !acpi_check_handle(asus->handle, METHOD_PEGA_READ, NULL);
411}
412
Andy Ross33989ba2011-10-14 11:13:36 +0200413static int asus_pega_lucid_set(struct asus_laptop *asus, int unit, bool enable)
414{
415 char *method = enable ? METHOD_PEGA_ENABLE : METHOD_PEGA_DISABLE;
416 return write_acpi_int(asus->handle, method, unit);
417}
418
Andy Rossb23910c2011-10-14 11:13:38 +0200419static int pega_acc_axis(struct asus_laptop *asus, int curr, char *method)
420{
421 int i, delta;
422 unsigned long long val;
423 for (i = 0; i < PEGA_ACC_RETRIES; i++) {
424 acpi_evaluate_integer(asus->handle, method, NULL, &val);
425
426 /* The output is noisy. From reading the ASL
427 * dissassembly, timeout errors are returned with 1's
428 * in the high word, and the lack of locking around
429 * thei hi/lo byte reads means that a transition
430 * between (for example) -1 and 0 could be read as
431 * 0xff00 or 0x00ff. */
432 delta = abs(curr - (short)val);
433 if (delta < 128 && !(val & ~0xffff))
434 break;
435 }
436 return clamp_val((short)val, -PEGA_ACC_CLAMP, PEGA_ACC_CLAMP);
437}
438
439static void pega_accel_poll(struct input_polled_dev *ipd)
440{
441 struct device *parent = ipd->input->dev.parent;
442 struct asus_laptop *asus = dev_get_drvdata(parent);
443
444 /* In some cases, the very first call to poll causes a
445 * recursive fault under the polldev worker. This is
446 * apparently related to very early userspace access to the
447 * device, and perhaps a firmware bug. Fake the first report. */
448 if (!asus->pega_acc_live) {
449 asus->pega_acc_live = true;
450 input_report_abs(ipd->input, ABS_X, 0);
451 input_report_abs(ipd->input, ABS_Y, 0);
452 input_report_abs(ipd->input, ABS_Z, 0);
453 input_sync(ipd->input);
454 return;
455 }
456
457 asus->pega_acc_x = pega_acc_axis(asus, asus->pega_acc_x, METHOD_XLRX);
458 asus->pega_acc_y = pega_acc_axis(asus, asus->pega_acc_y, METHOD_XLRY);
459 asus->pega_acc_z = pega_acc_axis(asus, asus->pega_acc_z, METHOD_XLRZ);
460
461 /* Note transform, convert to "right/up/out" in the native
462 * landscape orientation (i.e. the vector is the direction of
463 * "real up" in the device's cartiesian coordinates). */
464 input_report_abs(ipd->input, ABS_X, -asus->pega_acc_x);
465 input_report_abs(ipd->input, ABS_Y, -asus->pega_acc_y);
466 input_report_abs(ipd->input, ABS_Z, asus->pega_acc_z);
467 input_sync(ipd->input);
468}
469
470static void pega_accel_exit(struct asus_laptop *asus)
471{
472 if (asus->pega_accel_poll) {
473 input_unregister_polled_device(asus->pega_accel_poll);
474 input_free_polled_device(asus->pega_accel_poll);
475 }
476 asus->pega_accel_poll = NULL;
477}
478
479static int pega_accel_init(struct asus_laptop *asus)
480{
481 int err;
482 struct input_polled_dev *ipd;
483
484 if (!asus->is_pega_lucid)
485 return -ENODEV;
486
487 if (acpi_check_handle(asus->handle, METHOD_XLRX, NULL) ||
488 acpi_check_handle(asus->handle, METHOD_XLRY, NULL) ||
489 acpi_check_handle(asus->handle, METHOD_XLRZ, NULL))
490 return -ENODEV;
491
492 ipd = input_allocate_polled_device();
493 if (!ipd)
494 return -ENOMEM;
495
496 ipd->poll = pega_accel_poll;
497 ipd->poll_interval = 125;
498 ipd->poll_interval_min = 50;
499 ipd->poll_interval_max = 2000;
500
501 ipd->input->name = PEGA_ACCEL_DESC;
502 ipd->input->phys = PEGA_ACCEL_NAME "/input0";
503 ipd->input->dev.parent = &asus->platform_device->dev;
504 ipd->input->id.bustype = BUS_HOST;
505
506 set_bit(EV_ABS, ipd->input->evbit);
507 input_set_abs_params(ipd->input, ABS_X,
508 -PEGA_ACC_CLAMP, PEGA_ACC_CLAMP, 0, 0);
509 input_set_abs_params(ipd->input, ABS_Y,
510 -PEGA_ACC_CLAMP, PEGA_ACC_CLAMP, 0, 0);
511 input_set_abs_params(ipd->input, ABS_Z,
512 -PEGA_ACC_CLAMP, PEGA_ACC_CLAMP, 0, 0);
513
514 err = input_register_polled_device(ipd);
515 if (err)
516 goto exit;
517
518 asus->pega_accel_poll = ipd;
519 return 0;
520
521exit:
522 input_free_polled_device(ipd);
523 return err;
524}
525
Corentin Chary17e78f62010-01-13 22:21:33 +0100526/* Generic LED function */
Corentin Charyaee0afb2010-01-26 21:01:34 +0100527static int asus_led_set(struct asus_laptop *asus, const char *method,
Corentin Chary17e78f62010-01-13 22:21:33 +0100528 int value)
Corentin Charybe18cda2007-01-26 14:04:35 +0100529{
Corentin Charyd99b5772010-01-22 21:20:57 +0100530 if (!strcmp(method, METHOD_MLED))
Corentin Chary17e78f62010-01-13 22:21:33 +0100531 value = !value;
Corentin Charyd99b5772010-01-22 21:20:57 +0100532 else if (!strcmp(method, METHOD_GLED))
Corentin Chary17e78f62010-01-13 22:21:33 +0100533 value = !value + 1;
534 else
535 value = !!value;
Corentin Charybe18cda2007-01-26 14:04:35 +0100536
Corentin Charye5593bf2010-01-17 17:20:11 +0100537 return write_acpi_int(asus->handle, method, value);
Corentin Charybe18cda2007-01-26 14:04:35 +0100538}
539
Corentin Charybe4ee822009-12-06 16:27:09 +0100540/*
541 * LEDs
542 */
Corentin Charybe18cda2007-01-26 14:04:35 +0100543/* /sys/class/led handlers */
Corentin Charyaee0afb2010-01-26 21:01:34 +0100544static void asus_led_cdev_set(struct led_classdev *led_cdev,
545 enum led_brightness value)
546{
547 struct asus_led *led = container_of(led_cdev, struct asus_led, led);
548 struct asus_laptop *asus = led->asus;
Corentin Charybe18cda2007-01-26 14:04:35 +0100549
Corentin Charyaee0afb2010-01-26 21:01:34 +0100550 led->wk = !!value;
551 queue_work(asus->led_workqueue, &led->work);
552}
553
554static void asus_led_cdev_update(struct work_struct *work)
555{
556 struct asus_led *led = container_of(work, struct asus_led, work);
557 struct asus_laptop *asus = led->asus;
558
559 asus_led_set(asus, led->method, led->wk);
560}
561
562static enum led_brightness asus_led_cdev_get(struct led_classdev *led_cdev)
563{
564 return led_cdev->brightness;
565}
Corentin Charybe18cda2007-01-26 14:04:35 +0100566
Corentin Charyb7d3fbc2009-08-28 12:56:50 +0000567/*
Corentin Charybe4ee822009-12-06 16:27:09 +0100568 * Keyboard backlight (also a LED)
Corentin Charyb7d3fbc2009-08-28 12:56:50 +0000569 */
Corentin Charyd99b5772010-01-22 21:20:57 +0100570static int asus_kled_lvl(struct asus_laptop *asus)
Corentin Charyb7d3fbc2009-08-28 12:56:50 +0000571{
572 unsigned long long kblv;
573 struct acpi_object_list params;
574 union acpi_object in_obj;
575 acpi_status rv;
576
577 params.count = 1;
578 params.pointer = &in_obj;
579 in_obj.type = ACPI_TYPE_INTEGER;
580 in_obj.integer.value = 2;
581
Corentin Charyd99b5772010-01-22 21:20:57 +0100582 rv = acpi_evaluate_integer(asus->handle, METHOD_KBD_LIGHT_GET,
583 &params, &kblv);
Corentin Charyb7d3fbc2009-08-28 12:56:50 +0000584 if (ACPI_FAILURE(rv)) {
Joe Perches5ad77dc2011-03-29 15:21:35 -0700585 pr_warn("Error reading kled level\n");
Corentin Chary4d441512010-01-13 22:26:24 +0100586 return -ENODEV;
Corentin Charyb7d3fbc2009-08-28 12:56:50 +0000587 }
588 return kblv;
589}
590
Corentin Chary4d441512010-01-13 22:26:24 +0100591static int asus_kled_set(struct asus_laptop *asus, int kblv)
Corentin Charyb7d3fbc2009-08-28 12:56:50 +0000592{
593 if (kblv > 0)
594 kblv = (1 << 7) | (kblv & 0x7F);
595 else
596 kblv = 0;
597
Corentin Charyd99b5772010-01-22 21:20:57 +0100598 if (write_acpi_int(asus->handle, METHOD_KBD_LIGHT_SET, kblv)) {
Joe Perches5ad77dc2011-03-29 15:21:35 -0700599 pr_warn("Keyboard LED display write failed\n");
Corentin Charyb7d3fbc2009-08-28 12:56:50 +0000600 return -EINVAL;
601 }
602 return 0;
603}
604
Corentin Charyaee0afb2010-01-26 21:01:34 +0100605static void asus_kled_cdev_set(struct led_classdev *led_cdev,
606 enum led_brightness value)
Corentin Charyb7d3fbc2009-08-28 12:56:50 +0000607{
Corentin Charyaee0afb2010-01-26 21:01:34 +0100608 struct asus_led *led = container_of(led_cdev, struct asus_led, led);
609 struct asus_laptop *asus = led->asus;
Corentin Chary9129d142009-12-01 22:39:41 +0100610
Corentin Chary060cbce2010-01-28 10:52:40 +0100611 led->wk = value;
Corentin Charyaee0afb2010-01-26 21:01:34 +0100612 queue_work(asus->led_workqueue, &led->work);
Corentin Charyb7d3fbc2009-08-28 12:56:50 +0000613}
614
Corentin Charyaee0afb2010-01-26 21:01:34 +0100615static void asus_kled_cdev_update(struct work_struct *work)
Corentin Charyb7d3fbc2009-08-28 12:56:50 +0000616{
Corentin Charyaee0afb2010-01-26 21:01:34 +0100617 struct asus_led *led = container_of(work, struct asus_led, work);
618 struct asus_laptop *asus = led->asus;
Corentin Chary9129d142009-12-01 22:39:41 +0100619
Corentin Charyaee0afb2010-01-26 21:01:34 +0100620 asus_kled_set(asus, led->wk);
Corentin Charyb7d3fbc2009-08-28 12:56:50 +0000621}
622
Corentin Charyaee0afb2010-01-26 21:01:34 +0100623static enum led_brightness asus_kled_cdev_get(struct led_classdev *led_cdev)
Corentin Charyb7d3fbc2009-08-28 12:56:50 +0000624{
Corentin Charyaee0afb2010-01-26 21:01:34 +0100625 struct asus_led *led = container_of(led_cdev, struct asus_led, led);
626 struct asus_laptop *asus = led->asus;
Corentin Charyd99b5772010-01-22 21:20:57 +0100627
628 return asus_kled_lvl(asus);
Corentin Charyb7d3fbc2009-08-28 12:56:50 +0000629}
630
Corentin Charybe4ee822009-12-06 16:27:09 +0100631static void asus_led_exit(struct asus_laptop *asus)
632{
Corentin Chary774b0672011-12-15 08:27:34 +0100633 if (!IS_ERR_OR_NULL(asus->wled.led.dev))
634 led_classdev_unregister(&asus->wled.led);
635 if (!IS_ERR_OR_NULL(asus->bled.led.dev))
636 led_classdev_unregister(&asus->bled.led);
Axel Lin8fcf71a2011-08-08 17:17:18 +0800637 if (!IS_ERR_OR_NULL(asus->mled.led.dev))
Corentin Charyaee0afb2010-01-26 21:01:34 +0100638 led_classdev_unregister(&asus->mled.led);
Axel Lin8fcf71a2011-08-08 17:17:18 +0800639 if (!IS_ERR_OR_NULL(asus->tled.led.dev))
Corentin Charyaee0afb2010-01-26 21:01:34 +0100640 led_classdev_unregister(&asus->tled.led);
Axel Lin8fcf71a2011-08-08 17:17:18 +0800641 if (!IS_ERR_OR_NULL(asus->pled.led.dev))
Corentin Charyaee0afb2010-01-26 21:01:34 +0100642 led_classdev_unregister(&asus->pled.led);
Axel Lin8fcf71a2011-08-08 17:17:18 +0800643 if (!IS_ERR_OR_NULL(asus->rled.led.dev))
Corentin Charyaee0afb2010-01-26 21:01:34 +0100644 led_classdev_unregister(&asus->rled.led);
Axel Lin8fcf71a2011-08-08 17:17:18 +0800645 if (!IS_ERR_OR_NULL(asus->gled.led.dev))
Corentin Charyaee0afb2010-01-26 21:01:34 +0100646 led_classdev_unregister(&asus->gled.led);
Axel Lin8fcf71a2011-08-08 17:17:18 +0800647 if (!IS_ERR_OR_NULL(asus->kled.led.dev))
Corentin Charyaee0afb2010-01-26 21:01:34 +0100648 led_classdev_unregister(&asus->kled.led);
649 if (asus->led_workqueue) {
650 destroy_workqueue(asus->led_workqueue);
651 asus->led_workqueue = NULL;
Corentin Charybe4ee822009-12-06 16:27:09 +0100652 }
653}
654
655/* Ugly macro, need to fix that later */
Corentin Charyaee0afb2010-01-26 21:01:34 +0100656static int asus_led_register(struct asus_laptop *asus,
657 struct asus_led *led,
658 const char *name, const char *method)
659{
660 struct led_classdev *led_cdev = &led->led;
661
662 if (!method || acpi_check_handle(asus->handle, method, NULL))
Corentin Chary060cbce2010-01-28 10:52:40 +0100663 return 0; /* Led not present */
Corentin Charyaee0afb2010-01-26 21:01:34 +0100664
665 led->asus = asus;
666 led->method = method;
667
668 INIT_WORK(&led->work, asus_led_cdev_update);
669 led_cdev->name = name;
670 led_cdev->brightness_set = asus_led_cdev_set;
671 led_cdev->brightness_get = asus_led_cdev_get;
672 led_cdev->max_brightness = 1;
673 return led_classdev_register(&asus->platform_device->dev, led_cdev);
674}
Corentin Charybe4ee822009-12-06 16:27:09 +0100675
676static int asus_led_init(struct asus_laptop *asus)
677{
Corentin Chary774b0672011-12-15 08:27:34 +0100678 int r = 0;
Corentin Charybe4ee822009-12-06 16:27:09 +0100679
680 /*
Corentin Chary8d38e422011-10-14 11:13:39 +0200681 * The Pegatron Lucid has no physical leds, but all methods are
682 * available in the DSDT...
683 */
684 if (asus->is_pega_lucid)
685 return 0;
686
687 /*
Corentin Charybe4ee822009-12-06 16:27:09 +0100688 * Functions that actually update the LED's are called from a
689 * workqueue. By doing this as separate work rather than when the LED
690 * subsystem asks, we avoid messing with the Asus ACPI stuff during a
691 * potentially bad time, such as a timer interrupt.
692 */
Corentin Charyaee0afb2010-01-26 21:01:34 +0100693 asus->led_workqueue = create_singlethread_workqueue("led_workqueue");
694 if (!asus->led_workqueue)
Corentin Charybe4ee822009-12-06 16:27:09 +0100695 return -ENOMEM;
696
Corentin Chary774b0672011-12-15 08:27:34 +0100697 if (asus->wled_type == TYPE_LED)
698 r = asus_led_register(asus, &asus->wled, "asus::wlan",
699 METHOD_WLAN);
700 if (r)
701 goto error;
702 if (asus->bled_type == TYPE_LED)
703 r = asus_led_register(asus, &asus->bled, "asus::bluetooth",
704 METHOD_BLUETOOTH);
705 if (r)
706 goto error;
Corentin Charyaee0afb2010-01-26 21:01:34 +0100707 r = asus_led_register(asus, &asus->mled, "asus::mail", METHOD_MLED);
708 if (r)
709 goto error;
710 r = asus_led_register(asus, &asus->tled, "asus::touchpad", METHOD_TLED);
711 if (r)
712 goto error;
713 r = asus_led_register(asus, &asus->rled, "asus::record", METHOD_RLED);
714 if (r)
715 goto error;
716 r = asus_led_register(asus, &asus->pled, "asus::phone", METHOD_PLED);
717 if (r)
718 goto error;
719 r = asus_led_register(asus, &asus->gled, "asus::gaming", METHOD_GLED);
720 if (r)
721 goto error;
Corentin Charyd99b5772010-01-22 21:20:57 +0100722 if (!acpi_check_handle(asus->handle, METHOD_KBD_LIGHT_SET, NULL) &&
Corentin Charyaee0afb2010-01-26 21:01:34 +0100723 !acpi_check_handle(asus->handle, METHOD_KBD_LIGHT_GET, NULL)) {
724 struct asus_led *led = &asus->kled;
725 struct led_classdev *cdev = &led->led;
726
727 led->asus = asus;
728
729 INIT_WORK(&led->work, asus_kled_cdev_update);
730 cdev->name = "asus::kbd_backlight";
731 cdev->brightness_set = asus_kled_cdev_set;
732 cdev->brightness_get = asus_kled_cdev_get;
733 cdev->max_brightness = 3;
734 r = led_classdev_register(&asus->platform_device->dev, cdev);
735 }
Corentin Charybe4ee822009-12-06 16:27:09 +0100736error:
Corentin Charyaee0afb2010-01-26 21:01:34 +0100737 if (r)
Corentin Charybe4ee822009-12-06 16:27:09 +0100738 asus_led_exit(asus);
Corentin Charyaee0afb2010-01-26 21:01:34 +0100739 return r;
Corentin Charybe4ee822009-12-06 16:27:09 +0100740}
741
742/*
743 * Backlight device
744 */
Corentin Chary4d441512010-01-13 22:26:24 +0100745static int asus_read_brightness(struct backlight_device *bd)
Corentin Chary6b7091e2007-01-26 14:04:45 +0100746{
Corentin Charyd99b5772010-01-22 21:20:57 +0100747 struct asus_laptop *asus = bl_get_data(bd);
Matthew Wilcox27663c52008-10-10 02:22:59 -0400748 unsigned long long value;
Corentin Chary9a816852007-03-11 10:25:38 +0100749 acpi_status rv = AE_OK;
Corentin Chary6b7091e2007-01-26 14:04:45 +0100750
Corentin Charyd99b5772010-01-22 21:20:57 +0100751 rv = acpi_evaluate_integer(asus->handle, METHOD_BRIGHTNESS_GET,
752 NULL, &value);
Corentin Chary9a816852007-03-11 10:25:38 +0100753 if (ACPI_FAILURE(rv))
Joe Perches5ad77dc2011-03-29 15:21:35 -0700754 pr_warn("Error reading brightness\n");
Corentin Chary6b7091e2007-01-26 14:04:45 +0100755
756 return value;
757}
758
Corentin Chary4d441512010-01-13 22:26:24 +0100759static int asus_set_brightness(struct backlight_device *bd, int value)
Corentin Chary6b7091e2007-01-26 14:04:45 +0100760{
Corentin Charyd99b5772010-01-22 21:20:57 +0100761 struct asus_laptop *asus = bl_get_data(bd);
762
763 if (write_acpi_int(asus->handle, METHOD_BRIGHTNESS_SET, value)) {
Joe Perches5ad77dc2011-03-29 15:21:35 -0700764 pr_warn("Error changing brightness\n");
Corentin Charye5b50f62009-11-28 10:19:55 +0100765 return -EIO;
Corentin Chary6b7091e2007-01-26 14:04:45 +0100766 }
Corentin Charye5b50f62009-11-28 10:19:55 +0100767 return 0;
Corentin Chary6b7091e2007-01-26 14:04:45 +0100768}
769
770static int update_bl_status(struct backlight_device *bd)
771{
Richard Purdie599a52d2007-02-10 23:07:48 +0000772 int value = bd->props.brightness;
Corentin Chary6b7091e2007-01-26 14:04:45 +0100773
Corentin Chary3b81cf92011-02-06 13:27:31 +0100774 return asus_set_brightness(bd, value);
Corentin Chary6b7091e2007-01-26 14:04:45 +0100775}
776
Lionel Debrouxacc24722010-11-16 14:14:02 +0100777static const struct backlight_ops asusbl_ops = {
Corentin Chary4d441512010-01-13 22:26:24 +0100778 .get_brightness = asus_read_brightness,
Corentin Charybe4ee822009-12-06 16:27:09 +0100779 .update_status = update_bl_status,
780};
781
Corentin Charya539df52010-01-25 22:53:21 +0100782static int asus_backlight_notify(struct asus_laptop *asus)
783{
784 struct backlight_device *bd = asus->backlight_device;
785 int old = bd->props.brightness;
786
787 backlight_force_update(bd, BACKLIGHT_UPDATE_HOTKEY);
788
789 return old;
790}
791
Corentin Charybe4ee822009-12-06 16:27:09 +0100792static int asus_backlight_init(struct asus_laptop *asus)
793{
794 struct backlight_device *bd;
Matthew Garretta19a6ee2010-02-17 16:39:44 -0500795 struct backlight_properties props;
Corentin Charybe4ee822009-12-06 16:27:09 +0100796
Corentin Chary71e687d2010-08-24 09:30:44 +0200797 if (acpi_check_handle(asus->handle, METHOD_BRIGHTNESS_GET, NULL) ||
Corentin Chary3b81cf92011-02-06 13:27:31 +0100798 acpi_check_handle(asus->handle, METHOD_BRIGHTNESS_SET, NULL))
Corentin Chary71e687d2010-08-24 09:30:44 +0200799 return 0;
Matthew Garretta19a6ee2010-02-17 16:39:44 -0500800
Corentin Chary71e687d2010-08-24 09:30:44 +0200801 memset(&props, 0, sizeof(struct backlight_properties));
802 props.max_brightness = 15;
Matthew Garrettbb7ca742011-03-22 16:30:21 -0700803 props.type = BACKLIGHT_PLATFORM;
Corentin Charybe4ee822009-12-06 16:27:09 +0100804
Corentin Chary71e687d2010-08-24 09:30:44 +0200805 bd = backlight_device_register(ASUS_LAPTOP_FILE,
806 &asus->platform_device->dev, asus,
807 &asusbl_ops, &props);
808 if (IS_ERR(bd)) {
809 pr_err("Could not register asus backlight device\n");
810 asus->backlight_device = NULL;
811 return PTR_ERR(bd);
Corentin Charybe4ee822009-12-06 16:27:09 +0100812 }
Corentin Chary71e687d2010-08-24 09:30:44 +0200813
814 asus->backlight_device = bd;
815 bd->props.brightness = asus_read_brightness(bd);
816 bd->props.power = FB_BLANK_UNBLANK;
817 backlight_update_status(bd);
Corentin Charybe4ee822009-12-06 16:27:09 +0100818 return 0;
819}
820
821static void asus_backlight_exit(struct asus_laptop *asus)
822{
823 if (asus->backlight_device)
824 backlight_device_unregister(asus->backlight_device);
Corentin Charya539df52010-01-25 22:53:21 +0100825 asus->backlight_device = NULL;
Corentin Charybe4ee822009-12-06 16:27:09 +0100826}
827
Corentin Chary85091b72007-01-26 14:04:30 +0100828/*
829 * Platform device handlers
830 */
831
832/*
833 * We write our info in page, we begin at offset off and cannot write more
834 * than count bytes. We set eof to 1 if we handle those 2 values. We return the
835 * number of bytes written in page
836 */
837static ssize_t show_infos(struct device *dev,
Len Brown8def05f2007-01-30 01:46:43 -0500838 struct device_attribute *attr, char *page)
Corentin Chary85091b72007-01-26 14:04:30 +0100839{
Corentin Chary9129d142009-12-01 22:39:41 +0100840 struct asus_laptop *asus = dev_get_drvdata(dev);
Corentin Chary85091b72007-01-26 14:04:30 +0100841 int len = 0;
Matthew Wilcox27663c52008-10-10 02:22:59 -0400842 unsigned long long temp;
Corentin Charybe966662009-08-29 10:28:29 +0200843 char buf[16]; /* enough for all info */
Corentin Chary9a816852007-03-11 10:25:38 +0100844 acpi_status rv = AE_OK;
845
Corentin Chary85091b72007-01-26 14:04:30 +0100846 /*
Corentin Chary060cbce2010-01-28 10:52:40 +0100847 * We use the easy way, we don't care of off and count,
848 * so we don't set eof to 1
Corentin Chary85091b72007-01-26 14:04:30 +0100849 */
850
Corentin Chary50a90c42009-11-30 21:55:12 +0100851 len += sprintf(page, ASUS_LAPTOP_NAME " " ASUS_LAPTOP_VERSION "\n");
852 len += sprintf(page + len, "Model reference : %s\n", asus->name);
Corentin Chary85091b72007-01-26 14:04:30 +0100853 /*
854 * The SFUN method probably allows the original driver to get the list
855 * of features supported by a given model. For now, 0x0100 or 0x0800
856 * bit signifies that the laptop is equipped with a Wi-Fi MiniPCI card.
857 * The significance of others is yet to be found.
858 */
Corentin Chary50a90c42009-11-30 21:55:12 +0100859 rv = acpi_evaluate_integer(asus->handle, "SFUN", NULL, &temp);
Corentin Chary9a816852007-03-11 10:25:38 +0100860 if (!ACPI_FAILURE(rv))
Corentin Chary1d4a3802009-08-28 12:56:46 +0000861 len += sprintf(page + len, "SFUN value : %#x\n",
862 (uint) temp);
863 /*
864 * The HWRS method return informations about the hardware.
865 * 0x80 bit is for WLAN, 0x100 for Bluetooth.
Ben Hutchingscb7da022012-11-29 09:12:37 +0100866 * 0x40 for WWAN, 0x10 for WIMAX.
Corentin Chary1d4a3802009-08-28 12:56:46 +0000867 * The significance of others is yet to be found.
Ben Hutchingscb7da022012-11-29 09:12:37 +0100868 * We don't currently use this for device detection, and it
869 * takes several seconds to run on some systems.
Corentin Chary1d4a3802009-08-28 12:56:46 +0000870 */
Corentin Chary8871e992012-08-20 23:01:51 +0200871 rv = acpi_evaluate_integer(asus->handle, "HWRS", NULL, &temp);
Corentin Chary1d4a3802009-08-28 12:56:46 +0000872 if (!ACPI_FAILURE(rv))
Corentin Chary8871e992012-08-20 23:01:51 +0200873 len += sprintf(page + len, "HWRS value : %#x\n",
Corentin Chary9a816852007-03-11 10:25:38 +0100874 (uint) temp);
Corentin Chary85091b72007-01-26 14:04:30 +0100875 /*
876 * Another value for userspace: the ASYM method returns 0x02 for
877 * battery low and 0x04 for battery critical, its readings tend to be
878 * more accurate than those provided by _BST.
879 * Note: since not all the laptops provide this method, errors are
880 * silently ignored.
881 */
Corentin Chary50a90c42009-11-30 21:55:12 +0100882 rv = acpi_evaluate_integer(asus->handle, "ASYM", NULL, &temp);
Corentin Chary9a816852007-03-11 10:25:38 +0100883 if (!ACPI_FAILURE(rv))
Corentin Chary1d4a3802009-08-28 12:56:46 +0000884 len += sprintf(page + len, "ASYM value : %#x\n",
Corentin Chary9a816852007-03-11 10:25:38 +0100885 (uint) temp);
Corentin Chary7c247642009-11-30 22:13:54 +0100886 if (asus->dsdt_info) {
887 snprintf(buf, 16, "%d", asus->dsdt_info->length);
Corentin Chary85091b72007-01-26 14:04:30 +0100888 len += sprintf(page + len, "DSDT length : %s\n", buf);
Corentin Chary7c247642009-11-30 22:13:54 +0100889 snprintf(buf, 16, "%d", asus->dsdt_info->checksum);
Corentin Chary85091b72007-01-26 14:04:30 +0100890 len += sprintf(page + len, "DSDT checksum : %s\n", buf);
Corentin Chary7c247642009-11-30 22:13:54 +0100891 snprintf(buf, 16, "%d", asus->dsdt_info->revision);
Corentin Chary85091b72007-01-26 14:04:30 +0100892 len += sprintf(page + len, "DSDT revision : %s\n", buf);
Corentin Chary7c247642009-11-30 22:13:54 +0100893 snprintf(buf, 7, "%s", asus->dsdt_info->oem_id);
Corentin Chary85091b72007-01-26 14:04:30 +0100894 len += sprintf(page + len, "OEM id : %s\n", buf);
Corentin Chary7c247642009-11-30 22:13:54 +0100895 snprintf(buf, 9, "%s", asus->dsdt_info->oem_table_id);
Corentin Chary85091b72007-01-26 14:04:30 +0100896 len += sprintf(page + len, "OEM table id : %s\n", buf);
Corentin Chary7c247642009-11-30 22:13:54 +0100897 snprintf(buf, 16, "%x", asus->dsdt_info->oem_revision);
Corentin Chary85091b72007-01-26 14:04:30 +0100898 len += sprintf(page + len, "OEM revision : 0x%s\n", buf);
Corentin Chary7c247642009-11-30 22:13:54 +0100899 snprintf(buf, 5, "%s", asus->dsdt_info->asl_compiler_id);
Corentin Chary85091b72007-01-26 14:04:30 +0100900 len += sprintf(page + len, "ASL comp vendor id : %s\n", buf);
Corentin Chary7c247642009-11-30 22:13:54 +0100901 snprintf(buf, 16, "%x", asus->dsdt_info->asl_compiler_revision);
Corentin Chary85091b72007-01-26 14:04:30 +0100902 len += sprintf(page + len, "ASL comp revision : 0x%s\n", buf);
903 }
904
905 return len;
906}
907
908static int parse_arg(const char *buf, unsigned long count, int *val)
909{
910 if (!count)
911 return 0;
912 if (count > 31)
913 return -EINVAL;
914 if (sscanf(buf, "%i", val) != 1)
915 return -EINVAL;
916 return count;
917}
918
Corentin Chary17e78f62010-01-13 22:21:33 +0100919static ssize_t sysfs_acpi_set(struct asus_laptop *asus,
920 const char *buf, size_t count,
Corentin Charyd99b5772010-01-22 21:20:57 +0100921 const char *method)
Corentin Chary4564de12007-01-26 14:04:40 +0100922{
923 int rv, value;
924 int out = 0;
925
926 rv = parse_arg(buf, count, &value);
927 if (rv > 0)
928 out = value ? 1 : 0;
929
Corentin Charyd99b5772010-01-22 21:20:57 +0100930 if (write_acpi_int(asus->handle, method, value))
Corentin Chary17e78f62010-01-13 22:21:33 +0100931 return -ENODEV;
Corentin Chary4564de12007-01-26 14:04:40 +0100932 return rv;
933}
934
935/*
Corentin Chary722ad972007-01-26 14:04:55 +0100936 * LEDD display
937 */
938static ssize_t show_ledd(struct device *dev,
939 struct device_attribute *attr, char *buf)
940{
Corentin Chary9129d142009-12-01 22:39:41 +0100941 struct asus_laptop *asus = dev_get_drvdata(dev);
942
Corentin Chary50a90c42009-11-30 21:55:12 +0100943 return sprintf(buf, "0x%08x\n", asus->ledd_status);
Corentin Chary722ad972007-01-26 14:04:55 +0100944}
945
946static ssize_t store_ledd(struct device *dev, struct device_attribute *attr,
947 const char *buf, size_t count)
948{
Corentin Chary9129d142009-12-01 22:39:41 +0100949 struct asus_laptop *asus = dev_get_drvdata(dev);
Corentin Chary722ad972007-01-26 14:04:55 +0100950 int rv, value;
951
952 rv = parse_arg(buf, count, &value);
953 if (rv > 0) {
Axel Lin6a984a02010-07-20 15:19:48 -0700954 if (write_acpi_int(asus->handle, METHOD_LEDD, value)) {
Joe Perches5ad77dc2011-03-29 15:21:35 -0700955 pr_warn("LED display write failed\n");
Axel Lin6a984a02010-07-20 15:19:48 -0700956 return -ENODEV;
957 }
958 asus->ledd_status = (u32) value;
Corentin Chary722ad972007-01-26 14:04:55 +0100959 }
960 return rv;
961}
962
963/*
Corentin Charyaa9df932010-01-13 21:49:10 +0100964 * Wireless
965 */
966static int asus_wireless_status(struct asus_laptop *asus, int mask)
967{
968 unsigned long long status;
969 acpi_status rv = AE_OK;
970
971 if (!asus->have_rsts)
972 return (asus->wireless_status & mask) ? 1 : 0;
973
Corentin Charyd99b5772010-01-22 21:20:57 +0100974 rv = acpi_evaluate_integer(asus->handle, METHOD_WL_STATUS,
975 NULL, &status);
Corentin Charyaa9df932010-01-13 21:49:10 +0100976 if (ACPI_FAILURE(rv)) {
Joe Perches5ad77dc2011-03-29 15:21:35 -0700977 pr_warn("Error reading Wireless status\n");
Corentin Charyaa9df932010-01-13 21:49:10 +0100978 return -EINVAL;
979 }
980 return !!(status & mask);
981}
982
983/*
Corentin Chary4564de12007-01-26 14:04:40 +0100984 * WLAN
985 */
Corentin Charye5593bf2010-01-17 17:20:11 +0100986static int asus_wlan_set(struct asus_laptop *asus, int status)
987{
988 if (write_acpi_int(asus->handle, METHOD_WLAN, !!status)) {
Joe Perches5ad77dc2011-03-29 15:21:35 -0700989 pr_warn("Error setting wlan status to %d\n", status);
Corentin Charye5593bf2010-01-17 17:20:11 +0100990 return -EIO;
991 }
992 return 0;
993}
994
Corentin Chary4564de12007-01-26 14:04:40 +0100995static ssize_t show_wlan(struct device *dev,
996 struct device_attribute *attr, char *buf)
997{
Corentin Chary9129d142009-12-01 22:39:41 +0100998 struct asus_laptop *asus = dev_get_drvdata(dev);
999
Corentin Chary17e78f62010-01-13 22:21:33 +01001000 return sprintf(buf, "%d\n", asus_wireless_status(asus, WL_RSTS));
Corentin Chary4564de12007-01-26 14:04:40 +01001001}
1002
1003static ssize_t store_wlan(struct device *dev, struct device_attribute *attr,
1004 const char *buf, size_t count)
1005{
Corentin Chary9129d142009-12-01 22:39:41 +01001006 struct asus_laptop *asus = dev_get_drvdata(dev);
1007
Corentin Charyd99b5772010-01-22 21:20:57 +01001008 return sysfs_acpi_set(asus, buf, count, METHOD_WLAN);
Corentin Chary4564de12007-01-26 14:04:40 +01001009}
1010
Corentin Chary774b0672011-12-15 08:27:34 +01001011/*e
Corentin Chary4564de12007-01-26 14:04:40 +01001012 * Bluetooth
1013 */
Corentin Charye5593bf2010-01-17 17:20:11 +01001014static int asus_bluetooth_set(struct asus_laptop *asus, int status)
1015{
1016 if (write_acpi_int(asus->handle, METHOD_BLUETOOTH, !!status)) {
Joe Perches5ad77dc2011-03-29 15:21:35 -07001017 pr_warn("Error setting bluetooth status to %d\n", status);
Corentin Charye5593bf2010-01-17 17:20:11 +01001018 return -EIO;
1019 }
1020 return 0;
1021}
1022
Corentin Chary4564de12007-01-26 14:04:40 +01001023static ssize_t show_bluetooth(struct device *dev,
1024 struct device_attribute *attr, char *buf)
1025{
Corentin Chary9129d142009-12-01 22:39:41 +01001026 struct asus_laptop *asus = dev_get_drvdata(dev);
1027
Corentin Chary17e78f62010-01-13 22:21:33 +01001028 return sprintf(buf, "%d\n", asus_wireless_status(asus, BT_RSTS));
Corentin Chary4564de12007-01-26 14:04:40 +01001029}
1030
Len Brown8def05f2007-01-30 01:46:43 -05001031static ssize_t store_bluetooth(struct device *dev,
1032 struct device_attribute *attr, const char *buf,
1033 size_t count)
Corentin Chary4564de12007-01-26 14:04:40 +01001034{
Corentin Chary9129d142009-12-01 22:39:41 +01001035 struct asus_laptop *asus = dev_get_drvdata(dev);
1036
Corentin Charyd99b5772010-01-22 21:20:57 +01001037 return sysfs_acpi_set(asus, buf, count, METHOD_BLUETOOTH);
Corentin Chary4564de12007-01-26 14:04:40 +01001038}
1039
Corentin Chary78127b42007-01-26 14:04:49 +01001040/*
Corentin Charyba1ff5b2010-11-14 17:40:12 +01001041 * Wimax
1042 */
1043static int asus_wimax_set(struct asus_laptop *asus, int status)
1044{
1045 if (write_acpi_int(asus->handle, METHOD_WIMAX, !!status)) {
Joe Perches5ad77dc2011-03-29 15:21:35 -07001046 pr_warn("Error setting wimax status to %d\n", status);
Corentin Charyba1ff5b2010-11-14 17:40:12 +01001047 return -EIO;
1048 }
1049 return 0;
1050}
1051
1052static ssize_t show_wimax(struct device *dev,
1053 struct device_attribute *attr, char *buf)
1054{
1055 struct asus_laptop *asus = dev_get_drvdata(dev);
1056
1057 return sprintf(buf, "%d\n", asus_wireless_status(asus, WM_RSTS));
1058}
1059
1060static ssize_t store_wimax(struct device *dev,
1061 struct device_attribute *attr, const char *buf,
1062 size_t count)
1063{
1064 struct asus_laptop *asus = dev_get_drvdata(dev);
1065
1066 return sysfs_acpi_set(asus, buf, count, METHOD_WIMAX);
1067}
1068
1069/*
1070 * Wwan
1071 */
1072static int asus_wwan_set(struct asus_laptop *asus, int status)
1073{
1074 if (write_acpi_int(asus->handle, METHOD_WWAN, !!status)) {
Joe Perches5ad77dc2011-03-29 15:21:35 -07001075 pr_warn("Error setting wwan status to %d\n", status);
Corentin Charyba1ff5b2010-11-14 17:40:12 +01001076 return -EIO;
1077 }
1078 return 0;
1079}
1080
1081static ssize_t show_wwan(struct device *dev,
1082 struct device_attribute *attr, char *buf)
1083{
1084 struct asus_laptop *asus = dev_get_drvdata(dev);
1085
1086 return sprintf(buf, "%d\n", asus_wireless_status(asus, WW_RSTS));
1087}
1088
1089static ssize_t store_wwan(struct device *dev,
1090 struct device_attribute *attr, const char *buf,
1091 size_t count)
1092{
1093 struct asus_laptop *asus = dev_get_drvdata(dev);
1094
1095 return sysfs_acpi_set(asus, buf, count, METHOD_WWAN);
1096}
1097
1098/*
Corentin Chary78127b42007-01-26 14:04:49 +01001099 * Display
1100 */
Corentin Chary4d441512010-01-13 22:26:24 +01001101static void asus_set_display(struct asus_laptop *asus, int value)
Corentin Chary78127b42007-01-26 14:04:49 +01001102{
1103 /* no sanity check needed for now */
Corentin Charyd99b5772010-01-22 21:20:57 +01001104 if (write_acpi_int(asus->handle, METHOD_SWITCH_DISPLAY, value))
Joe Perches5ad77dc2011-03-29 15:21:35 -07001105 pr_warn("Error setting display\n");
Corentin Chary78127b42007-01-26 14:04:49 +01001106 return;
1107}
1108
Corentin Chary78127b42007-01-26 14:04:49 +01001109/*
1110 * Experimental support for display switching. As of now: 1 should activate
1111 * the LCD output, 2 should do for CRT, 4 for TV-Out and 8 for DVI.
1112 * Any combination (bitwise) of these will suffice. I never actually tested 4
1113 * displays hooked up simultaneously, so be warned. See the acpi4asus README
1114 * for more info.
1115 */
1116static ssize_t store_disp(struct device *dev, struct device_attribute *attr,
1117 const char *buf, size_t count)
1118{
Corentin Chary9129d142009-12-01 22:39:41 +01001119 struct asus_laptop *asus = dev_get_drvdata(dev);
Corentin Chary78127b42007-01-26 14:04:49 +01001120 int rv, value;
1121
1122 rv = parse_arg(buf, count, &value);
1123 if (rv > 0)
Corentin Chary4d441512010-01-13 22:26:24 +01001124 asus_set_display(asus, value);
Corentin Chary78127b42007-01-26 14:04:49 +01001125 return rv;
1126}
1127
Corentin Chary8b857352007-01-26 14:04:58 +01001128/*
1129 * Light Sens
1130 */
Corentin Chary4d441512010-01-13 22:26:24 +01001131static void asus_als_switch(struct asus_laptop *asus, int value)
Corentin Chary8b857352007-01-26 14:04:58 +01001132{
Andy Ross33989ba2011-10-14 11:13:36 +02001133 int ret;
1134
1135 if (asus->is_pega_lucid) {
1136 ret = asus_pega_lucid_set(asus, PEGA_ALS, value);
1137 if (!ret)
1138 ret = asus_pega_lucid_set(asus, PEGA_ALS_POWER, value);
1139 } else {
1140 ret = write_acpi_int(asus->handle, METHOD_ALS_CONTROL, value);
1141 }
1142 if (ret)
1143 pr_warning("Error setting light sensor switch\n");
1144
Corentin Chary50a90c42009-11-30 21:55:12 +01001145 asus->light_switch = value;
Corentin Chary8b857352007-01-26 14:04:58 +01001146}
1147
1148static ssize_t show_lssw(struct device *dev,
1149 struct device_attribute *attr, char *buf)
1150{
Corentin Chary9129d142009-12-01 22:39:41 +01001151 struct asus_laptop *asus = dev_get_drvdata(dev);
1152
Corentin Chary50a90c42009-11-30 21:55:12 +01001153 return sprintf(buf, "%d\n", asus->light_switch);
Corentin Chary8b857352007-01-26 14:04:58 +01001154}
1155
1156static ssize_t store_lssw(struct device *dev, struct device_attribute *attr,
1157 const char *buf, size_t count)
1158{
Corentin Chary9129d142009-12-01 22:39:41 +01001159 struct asus_laptop *asus = dev_get_drvdata(dev);
Corentin Chary8b857352007-01-26 14:04:58 +01001160 int rv, value;
1161
1162 rv = parse_arg(buf, count, &value);
1163 if (rv > 0)
Corentin Chary4d441512010-01-13 22:26:24 +01001164 asus_als_switch(asus, value ? 1 : 0);
Corentin Chary8b857352007-01-26 14:04:58 +01001165
1166 return rv;
1167}
1168
Corentin Chary4d441512010-01-13 22:26:24 +01001169static void asus_als_level(struct asus_laptop *asus, int value)
Corentin Chary8b857352007-01-26 14:04:58 +01001170{
Corentin Charyd99b5772010-01-22 21:20:57 +01001171 if (write_acpi_int(asus->handle, METHOD_ALS_LEVEL, value))
Joe Perches5ad77dc2011-03-29 15:21:35 -07001172 pr_warn("Error setting light sensor level\n");
Corentin Chary50a90c42009-11-30 21:55:12 +01001173 asus->light_level = value;
Corentin Chary8b857352007-01-26 14:04:58 +01001174}
1175
1176static ssize_t show_lslvl(struct device *dev,
1177 struct device_attribute *attr, char *buf)
1178{
Corentin Chary9129d142009-12-01 22:39:41 +01001179 struct asus_laptop *asus = dev_get_drvdata(dev);
1180
Corentin Chary50a90c42009-11-30 21:55:12 +01001181 return sprintf(buf, "%d\n", asus->light_level);
Corentin Chary8b857352007-01-26 14:04:58 +01001182}
1183
1184static ssize_t store_lslvl(struct device *dev, struct device_attribute *attr,
1185 const char *buf, size_t count)
1186{
Corentin Chary9129d142009-12-01 22:39:41 +01001187 struct asus_laptop *asus = dev_get_drvdata(dev);
Corentin Chary8b857352007-01-26 14:04:58 +01001188 int rv, value;
1189
1190 rv = parse_arg(buf, count, &value);
1191 if (rv > 0) {
1192 value = (0 < value) ? ((15 < value) ? 15 : value) : 0;
1193 /* 0 <= value <= 15 */
Corentin Chary4d441512010-01-13 22:26:24 +01001194 asus_als_level(asus, value);
Corentin Chary8b857352007-01-26 14:04:58 +01001195 }
1196
1197 return rv;
1198}
1199
Andy Ross33989ba2011-10-14 11:13:36 +02001200static int pega_int_read(struct asus_laptop *asus, int arg, int *result)
1201{
1202 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
1203 int err = write_acpi_int_ret(asus->handle, METHOD_PEGA_READ, arg,
1204 &buffer);
1205 if (!err) {
1206 union acpi_object *obj = buffer.pointer;
1207 if (obj && obj->type == ACPI_TYPE_INTEGER)
1208 *result = obj->integer.value;
1209 else
1210 err = -EIO;
1211 }
1212 return err;
1213}
1214
1215static ssize_t show_lsvalue(struct device *dev,
1216 struct device_attribute *attr, char *buf)
1217{
1218 struct asus_laptop *asus = dev_get_drvdata(dev);
1219 int err, hi, lo;
1220
1221 err = pega_int_read(asus, PEGA_READ_ALS_H, &hi);
1222 if (!err)
1223 err = pega_int_read(asus, PEGA_READ_ALS_L, &lo);
1224 if (!err)
1225 return sprintf(buf, "%d\n", 10 * hi + lo);
1226 return err;
1227}
1228
Corentin Charye539c2f2007-05-06 14:47:06 +02001229/*
1230 * GPS
1231 */
Corentin Chary6358bf22010-01-13 21:55:44 +01001232static int asus_gps_status(struct asus_laptop *asus)
1233{
1234 unsigned long long status;
1235 acpi_status rv = AE_OK;
1236
Corentin Charyd99b5772010-01-22 21:20:57 +01001237 rv = acpi_evaluate_integer(asus->handle, METHOD_GPS_STATUS,
1238 NULL, &status);
Corentin Chary6358bf22010-01-13 21:55:44 +01001239 if (ACPI_FAILURE(rv)) {
Joe Perches5ad77dc2011-03-29 15:21:35 -07001240 pr_warn("Error reading GPS status\n");
Corentin Chary6358bf22010-01-13 21:55:44 +01001241 return -ENODEV;
1242 }
1243 return !!status;
1244}
1245
1246static int asus_gps_switch(struct asus_laptop *asus, int status)
1247{
Corentin Charyd99b5772010-01-22 21:20:57 +01001248 const char *meth = status ? METHOD_GPS_ON : METHOD_GPS_OFF;
Corentin Chary6358bf22010-01-13 21:55:44 +01001249
Corentin Charyd99b5772010-01-22 21:20:57 +01001250 if (write_acpi_int(asus->handle, meth, 0x02))
Corentin Chary6358bf22010-01-13 21:55:44 +01001251 return -ENODEV;
1252 return 0;
1253}
1254
Corentin Charye539c2f2007-05-06 14:47:06 +02001255static ssize_t show_gps(struct device *dev,
1256 struct device_attribute *attr, char *buf)
1257{
Corentin Chary9129d142009-12-01 22:39:41 +01001258 struct asus_laptop *asus = dev_get_drvdata(dev);
1259
Corentin Chary6358bf22010-01-13 21:55:44 +01001260 return sprintf(buf, "%d\n", asus_gps_status(asus));
Corentin Charye539c2f2007-05-06 14:47:06 +02001261}
1262
1263static ssize_t store_gps(struct device *dev, struct device_attribute *attr,
1264 const char *buf, size_t count)
1265{
Corentin Chary060cbce2010-01-28 10:52:40 +01001266 struct asus_laptop *asus = dev_get_drvdata(dev);
Corentin Chary6358bf22010-01-13 21:55:44 +01001267 int rv, value;
1268 int ret;
Corentin Chary9129d142009-12-01 22:39:41 +01001269
Corentin Chary6358bf22010-01-13 21:55:44 +01001270 rv = parse_arg(buf, count, &value);
1271 if (rv <= 0)
1272 return -EINVAL;
1273 ret = asus_gps_switch(asus, !!value);
1274 if (ret)
1275 return ret;
Corentin Chary40969c72011-12-15 08:27:33 +01001276 rfkill_set_sw_state(asus->gps.rfkill, !value);
Corentin Chary6358bf22010-01-13 21:55:44 +01001277 return rv;
Corentin Charye539c2f2007-05-06 14:47:06 +02001278}
1279
Corentin Chary034ce902009-01-20 16:17:43 +01001280/*
Corentin Chary18e13112010-01-25 23:29:24 +01001281 * rfkill
1282 */
1283static int asus_gps_rfkill_set(void *data, bool blocked)
1284{
Corentin Chary23f45c32010-08-24 09:30:46 +02001285 struct asus_laptop *asus = data;
Corentin Chary18e13112010-01-25 23:29:24 +01001286
Corentin Chary23f45c32010-08-24 09:30:46 +02001287 return asus_gps_switch(asus, !blocked);
Corentin Chary18e13112010-01-25 23:29:24 +01001288}
1289
1290static const struct rfkill_ops asus_gps_rfkill_ops = {
1291 .set_block = asus_gps_rfkill_set,
1292};
1293
Corentin Chary774b0672011-12-15 08:27:34 +01001294static int asus_rfkill_set(void *data, bool blocked)
1295{
1296 struct asus_rfkill *rfk = data;
1297 struct asus_laptop *asus = rfk->asus;
1298
1299 if (rfk->control_id == WL_RSTS)
1300 return asus_wlan_set(asus, !blocked);
1301 else if (rfk->control_id == BT_RSTS)
1302 return asus_bluetooth_set(asus, !blocked);
Corentin Chary3c8671f2011-12-15 08:27:35 +01001303 else if (rfk->control_id == WM_RSTS)
1304 return asus_wimax_set(asus, !blocked);
1305 else if (rfk->control_id == WW_RSTS)
1306 return asus_wwan_set(asus, !blocked);
Corentin Chary774b0672011-12-15 08:27:34 +01001307
1308 return -EINVAL;
1309}
1310
1311static const struct rfkill_ops asus_rfkill_ops = {
1312 .set_block = asus_rfkill_set,
1313};
1314
Corentin Chary40969c72011-12-15 08:27:33 +01001315static void asus_rfkill_terminate(struct asus_rfkill *rfk)
1316{
1317 if (!rfk->rfkill)
1318 return ;
1319
1320 rfkill_unregister(rfk->rfkill);
1321 rfkill_destroy(rfk->rfkill);
1322 rfk->rfkill = NULL;
1323}
1324
Corentin Chary18e13112010-01-25 23:29:24 +01001325static void asus_rfkill_exit(struct asus_laptop *asus)
1326{
Corentin Chary40969c72011-12-15 08:27:33 +01001327 asus_rfkill_terminate(&asus->wwan);
1328 asus_rfkill_terminate(&asus->bluetooth);
1329 asus_rfkill_terminate(&asus->wlan);
1330 asus_rfkill_terminate(&asus->gps);
Corentin Chary18e13112010-01-25 23:29:24 +01001331}
1332
Corentin Chary774b0672011-12-15 08:27:34 +01001333static int asus_rfkill_setup(struct asus_laptop *asus, struct asus_rfkill *rfk,
1334 const char *name, int control_id, int type,
1335 const struct rfkill_ops *ops)
Corentin Chary18e13112010-01-25 23:29:24 +01001336{
1337 int result;
1338
Corentin Chary774b0672011-12-15 08:27:34 +01001339 rfk->control_id = control_id;
1340 rfk->asus = asus;
1341 rfk->rfkill = rfkill_alloc(name, &asus->platform_device->dev,
1342 type, ops, rfk);
1343 if (!rfk->rfkill)
Corentin Chary18e13112010-01-25 23:29:24 +01001344 return -EINVAL;
1345
Corentin Chary774b0672011-12-15 08:27:34 +01001346 result = rfkill_register(rfk->rfkill);
Corentin Chary18e13112010-01-25 23:29:24 +01001347 if (result) {
Corentin Chary774b0672011-12-15 08:27:34 +01001348 rfkill_destroy(rfk->rfkill);
1349 rfk->rfkill = NULL;
Corentin Chary18e13112010-01-25 23:29:24 +01001350 }
1351
1352 return result;
1353}
1354
Corentin Chary774b0672011-12-15 08:27:34 +01001355static int asus_rfkill_init(struct asus_laptop *asus)
1356{
1357 int result = 0;
1358
Corentin Chary3c8671f2011-12-15 08:27:35 +01001359 if (asus->is_pega_lucid)
1360 return -ENODEV;
1361
Corentin Chary774b0672011-12-15 08:27:34 +01001362 if (!acpi_check_handle(asus->handle, METHOD_GPS_ON, NULL) &&
1363 !acpi_check_handle(asus->handle, METHOD_GPS_OFF, NULL) &&
1364 !acpi_check_handle(asus->handle, METHOD_GPS_STATUS, NULL))
1365 result = asus_rfkill_setup(asus, &asus->gps, "asus-gps",
1366 -1, RFKILL_TYPE_GPS,
1367 &asus_gps_rfkill_ops);
1368 if (result)
1369 goto exit;
1370
1371
Corentin Chary26594dd2011-12-15 08:27:36 +01001372 if (!acpi_check_handle(asus->handle, METHOD_WLAN, NULL) &&
1373 asus->wled_type == TYPE_RFKILL)
Corentin Chary774b0672011-12-15 08:27:34 +01001374 result = asus_rfkill_setup(asus, &asus->wlan, "asus-wlan",
1375 WL_RSTS, RFKILL_TYPE_WLAN,
1376 &asus_rfkill_ops);
1377 if (result)
1378 goto exit;
1379
Corentin Chary26594dd2011-12-15 08:27:36 +01001380 if (!acpi_check_handle(asus->handle, METHOD_BLUETOOTH, NULL) &&
1381 asus->bled_type == TYPE_RFKILL)
Corentin Chary774b0672011-12-15 08:27:34 +01001382 result = asus_rfkill_setup(asus, &asus->bluetooth,
1383 "asus-bluetooth", BT_RSTS,
1384 RFKILL_TYPE_BLUETOOTH,
1385 &asus_rfkill_ops);
1386 if (result)
1387 goto exit;
1388
Corentin Chary3c8671f2011-12-15 08:27:35 +01001389 if (!acpi_check_handle(asus->handle, METHOD_WWAN, NULL))
1390 result = asus_rfkill_setup(asus, &asus->wwan, "asus-wwan",
1391 WW_RSTS, RFKILL_TYPE_WWAN,
1392 &asus_rfkill_ops);
1393 if (result)
1394 goto exit;
1395
1396 if (!acpi_check_handle(asus->handle, METHOD_WIMAX, NULL))
1397 result = asus_rfkill_setup(asus, &asus->wimax, "asus-wimax",
1398 WM_RSTS, RFKILL_TYPE_WIMAX,
1399 &asus_rfkill_ops);
1400 if (result)
1401 goto exit;
1402
Corentin Chary774b0672011-12-15 08:27:34 +01001403exit:
1404 if (result)
1405 asus_rfkill_exit(asus);
1406
1407 return result;
1408}
1409
Anisse Astier14908392011-10-14 11:13:42 +02001410static int pega_rfkill_set(void *data, bool blocked)
1411{
Corentin Chary40969c72011-12-15 08:27:33 +01001412 struct asus_rfkill *rfk = data;
Anisse Astier14908392011-10-14 11:13:42 +02001413
Corentin Chary40969c72011-12-15 08:27:33 +01001414 int ret = asus_pega_lucid_set(rfk->asus, rfk->control_id, !blocked);
Anisse Astier14908392011-10-14 11:13:42 +02001415 return ret;
1416}
1417
1418static const struct rfkill_ops pega_rfkill_ops = {
1419 .set_block = pega_rfkill_set,
1420};
1421
Corentin Chary40969c72011-12-15 08:27:33 +01001422static int pega_rfkill_setup(struct asus_laptop *asus, struct asus_rfkill *rfk,
1423 const char *name, int controlid, int rfkill_type)
Anisse Astier14908392011-10-14 11:13:42 +02001424{
Corentin Chary774b0672011-12-15 08:27:34 +01001425 return asus_rfkill_setup(asus, rfk, name, controlid, rfkill_type,
1426 &pega_rfkill_ops);
Anisse Astier14908392011-10-14 11:13:42 +02001427}
1428
1429static int pega_rfkill_init(struct asus_laptop *asus)
1430{
1431 int ret = 0;
1432
1433 if(!asus->is_pega_lucid)
1434 return -ENODEV;
1435
Corentin Chary40969c72011-12-15 08:27:33 +01001436 ret = pega_rfkill_setup(asus, &asus->wlan, "pega-wlan",
1437 PEGA_WLAN, RFKILL_TYPE_WLAN);
Anisse Astier14908392011-10-14 11:13:42 +02001438 if(ret)
Corentin Chary40969c72011-12-15 08:27:33 +01001439 goto exit;
Anisse Astier14908392011-10-14 11:13:42 +02001440
Corentin Chary40969c72011-12-15 08:27:33 +01001441 ret = pega_rfkill_setup(asus, &asus->bluetooth, "pega-bt",
1442 PEGA_BLUETOOTH, RFKILL_TYPE_BLUETOOTH);
1443 if(ret)
1444 goto exit;
1445
1446 ret = pega_rfkill_setup(asus, &asus->wwan, "pega-wwan",
1447 PEGA_WWAN, RFKILL_TYPE_WWAN);
1448
1449exit:
1450 if (ret)
1451 asus_rfkill_exit(asus);
Anisse Astier14908392011-10-14 11:13:42 +02001452
1453 return ret;
1454}
1455
Corentin Chary18e13112010-01-25 23:29:24 +01001456/*
Corentin Charybe4ee822009-12-06 16:27:09 +01001457 * Input device (i.e. hotkeys)
Corentin Chary034ce902009-01-20 16:17:43 +01001458 */
Corentin Charybe4ee822009-12-06 16:27:09 +01001459static void asus_input_notify(struct asus_laptop *asus, int event)
1460{
Corentin Charye0ac9132011-12-15 08:27:31 +01001461 if (!asus->inputdev)
1462 return ;
1463 if (!sparse_keymap_report_event(asus->inputdev, event, 1, true))
1464 pr_info("Unknown key %x pressed\n", event);
Corentin Charybe4ee822009-12-06 16:27:09 +01001465}
1466
1467static int asus_input_init(struct asus_laptop *asus)
1468{
Corentin Chary66a71dd2010-01-25 22:50:11 +01001469 struct input_dev *input;
1470 int error;
Corentin Charybe4ee822009-12-06 16:27:09 +01001471
Corentin Chary66a71dd2010-01-25 22:50:11 +01001472 input = input_allocate_device();
1473 if (!input) {
Corentin Chary40969c72011-12-15 08:27:33 +01001474 pr_warn("Unable to allocate input device\n");
Axel Lin45036ae2010-07-05 15:29:00 +08001475 return -ENOMEM;
Corentin Charybe4ee822009-12-06 16:27:09 +01001476 }
Corentin Chary66a71dd2010-01-25 22:50:11 +01001477 input->name = "Asus Laptop extra buttons";
1478 input->phys = ASUS_LAPTOP_FILE "/input0";
1479 input->id.bustype = BUS_HOST;
1480 input->dev.parent = &asus->platform_device->dev;
Corentin Charybe4ee822009-12-06 16:27:09 +01001481
Corentin Chary66a71dd2010-01-25 22:50:11 +01001482 error = sparse_keymap_setup(input, asus_keymap, NULL);
1483 if (error) {
1484 pr_err("Unable to setup input device keymap\n");
Axel Lin45036ae2010-07-05 15:29:00 +08001485 goto err_free_dev;
Corentin Charybe4ee822009-12-06 16:27:09 +01001486 }
Corentin Chary66a71dd2010-01-25 22:50:11 +01001487 error = input_register_device(input);
1488 if (error) {
Corentin Chary40969c72011-12-15 08:27:33 +01001489 pr_warn("Unable to register input device\n");
Axel Lin45036ae2010-07-05 15:29:00 +08001490 goto err_free_keymap;
Corentin Charybe4ee822009-12-06 16:27:09 +01001491 }
Corentin Chary66a71dd2010-01-25 22:50:11 +01001492
1493 asus->inputdev = input;
1494 return 0;
1495
Axel Lin45036ae2010-07-05 15:29:00 +08001496err_free_keymap:
Corentin Chary66a71dd2010-01-25 22:50:11 +01001497 sparse_keymap_free(input);
Axel Lin45036ae2010-07-05 15:29:00 +08001498err_free_dev:
Corentin Chary66a71dd2010-01-25 22:50:11 +01001499 input_free_device(input);
1500 return error;
Corentin Charybe4ee822009-12-06 16:27:09 +01001501}
1502
1503static void asus_input_exit(struct asus_laptop *asus)
1504{
Corentin Chary66a71dd2010-01-25 22:50:11 +01001505 if (asus->inputdev) {
1506 sparse_keymap_free(asus->inputdev);
Corentin Charybe4ee822009-12-06 16:27:09 +01001507 input_unregister_device(asus->inputdev);
Corentin Chary66a71dd2010-01-25 22:50:11 +01001508 }
Corentin Chary71e687d2010-08-24 09:30:44 +02001509 asus->inputdev = NULL;
Corentin Charybe4ee822009-12-06 16:27:09 +01001510}
1511
1512/*
1513 * ACPI driver
1514 */
Corentin Chary600ad522009-11-30 21:42:42 +01001515static void asus_acpi_notify(struct acpi_device *device, u32 event)
Corentin Chary85091b72007-01-26 14:04:30 +01001516{
Corentin Chary9129d142009-12-01 22:39:41 +01001517 struct asus_laptop *asus = acpi_driver_data(device);
Corentin Chary6050c8d2009-02-15 19:30:19 +01001518 u16 count;
Corentin Chary034ce902009-01-20 16:17:43 +01001519
Corentin Chary619d8b12009-11-28 10:35:37 +01001520 /* TODO Find a better way to handle events count. */
Corentin Chary50a90c42009-11-30 21:55:12 +01001521 count = asus->event_count[event % 128]++;
1522 acpi_bus_generate_proc_event(asus->device, event, count);
1523 acpi_bus_generate_netlink_event(asus->device->pnp.device_class,
1524 dev_name(&asus->device->dev), event,
Corentin Chary6050c8d2009-02-15 19:30:19 +01001525 count);
Corentin Chary85091b72007-01-26 14:04:30 +01001526
Corentin Charya539df52010-01-25 22:53:21 +01001527 /* Brightness events are special */
1528 if (event >= ATKD_BR_MIN && event <= ATKD_BR_MAX) {
1529
1530 /* Ignore them completely if the acpi video driver is used */
1531 if (asus->backlight_device != NULL) {
1532 /* Update the backlight device. */
1533 asus_backlight_notify(asus);
1534 }
1535 return ;
1536 }
Anisse Astierb93f8282011-10-14 11:13:41 +02001537
1538 /* Accelerometer "coarse orientation change" event */
1539 if (asus->pega_accel_poll && event == 0xEA) {
1540 kobject_uevent(&asus->pega_accel_poll->input->dev.kobj,
1541 KOBJ_CHANGE);
1542 return ;
1543 }
1544
Corentin Charybe4ee822009-12-06 16:27:09 +01001545 asus_input_notify(asus, event);
Corentin Chary85091b72007-01-26 14:04:30 +01001546}
1547
Corentin Chary2a1fd642010-01-26 21:02:23 +01001548static DEVICE_ATTR(infos, S_IRUGO, show_infos, NULL);
1549static DEVICE_ATTR(wlan, S_IRUGO | S_IWUSR, show_wlan, store_wlan);
Dmitry Torokhovac9b1e52010-08-26 00:12:19 -07001550static DEVICE_ATTR(bluetooth, S_IRUGO | S_IWUSR,
1551 show_bluetooth, store_bluetooth);
Corentin Charyba1ff5b2010-11-14 17:40:12 +01001552static DEVICE_ATTR(wimax, S_IRUGO | S_IWUSR, show_wimax, store_wimax);
1553static DEVICE_ATTR(wwan, S_IRUGO | S_IWUSR, show_wwan, store_wwan);
Corentin Chary3b81cf92011-02-06 13:27:31 +01001554static DEVICE_ATTR(display, S_IWUSR, NULL, store_disp);
Corentin Chary2a1fd642010-01-26 21:02:23 +01001555static DEVICE_ATTR(ledd, S_IRUGO | S_IWUSR, show_ledd, store_ledd);
Andy Ross33989ba2011-10-14 11:13:36 +02001556static DEVICE_ATTR(ls_value, S_IRUGO, show_lsvalue, NULL);
Corentin Chary2a1fd642010-01-26 21:02:23 +01001557static DEVICE_ATTR(ls_level, S_IRUGO | S_IWUSR, show_lslvl, store_lslvl);
1558static DEVICE_ATTR(ls_switch, S_IRUGO | S_IWUSR, show_lssw, store_lssw);
1559static DEVICE_ATTR(gps, S_IRUGO | S_IWUSR, show_gps, store_gps);
1560
Dmitry Torokhovac9b1e52010-08-26 00:12:19 -07001561static struct attribute *asus_attributes[] = {
1562 &dev_attr_infos.attr,
1563 &dev_attr_wlan.attr,
1564 &dev_attr_bluetooth.attr,
Corentin Charyba1ff5b2010-11-14 17:40:12 +01001565 &dev_attr_wimax.attr,
1566 &dev_attr_wwan.attr,
Dmitry Torokhovac9b1e52010-08-26 00:12:19 -07001567 &dev_attr_display.attr,
1568 &dev_attr_ledd.attr,
Andy Ross33989ba2011-10-14 11:13:36 +02001569 &dev_attr_ls_value.attr,
Dmitry Torokhovac9b1e52010-08-26 00:12:19 -07001570 &dev_attr_ls_level.attr,
1571 &dev_attr_ls_switch.attr,
1572 &dev_attr_gps.attr,
1573 NULL
1574};
Corentin Chary2a1fd642010-01-26 21:02:23 +01001575
Al Viro587a1f12011-07-23 23:11:19 -04001576static umode_t asus_sysfs_is_visible(struct kobject *kobj,
Dmitry Torokhovac9b1e52010-08-26 00:12:19 -07001577 struct attribute *attr,
1578 int idx)
1579{
1580 struct device *dev = container_of(kobj, struct device, kobj);
1581 struct platform_device *pdev = to_platform_device(dev);
1582 struct asus_laptop *asus = platform_get_drvdata(pdev);
1583 acpi_handle handle = asus->handle;
1584 bool supported;
1585
Andy Ross33989ba2011-10-14 11:13:36 +02001586 if (asus->is_pega_lucid) {
1587 /* no ls_level interface on the Lucid */
1588 if (attr == &dev_attr_ls_switch.attr)
1589 supported = true;
1590 else if (attr == &dev_attr_ls_level.attr)
1591 supported = false;
1592 else
1593 goto normal;
1594
1595 return supported;
1596 }
1597
1598normal:
Dmitry Torokhovac9b1e52010-08-26 00:12:19 -07001599 if (attr == &dev_attr_wlan.attr) {
1600 supported = !acpi_check_handle(handle, METHOD_WLAN, NULL);
1601
1602 } else if (attr == &dev_attr_bluetooth.attr) {
1603 supported = !acpi_check_handle(handle, METHOD_BLUETOOTH, NULL);
1604
1605 } else if (attr == &dev_attr_display.attr) {
1606 supported = !acpi_check_handle(handle, METHOD_SWITCH_DISPLAY, NULL);
1607
Corentin Charyba1ff5b2010-11-14 17:40:12 +01001608 } else if (attr == &dev_attr_wimax.attr) {
1609 supported =
1610 !acpi_check_handle(asus->handle, METHOD_WIMAX, NULL);
1611
1612 } else if (attr == &dev_attr_wwan.attr) {
1613 supported = !acpi_check_handle(asus->handle, METHOD_WWAN, NULL);
1614
Dmitry Torokhovac9b1e52010-08-26 00:12:19 -07001615 } else if (attr == &dev_attr_ledd.attr) {
1616 supported = !acpi_check_handle(handle, METHOD_LEDD, NULL);
1617
1618 } else if (attr == &dev_attr_ls_switch.attr ||
1619 attr == &dev_attr_ls_level.attr) {
1620 supported = !acpi_check_handle(handle, METHOD_ALS_CONTROL, NULL) &&
Andy Ross33989ba2011-10-14 11:13:36 +02001621 !acpi_check_handle(handle, METHOD_ALS_LEVEL, NULL);
1622 } else if (attr == &dev_attr_ls_value.attr) {
1623 supported = asus->is_pega_lucid;
Dmitry Torokhovac9b1e52010-08-26 00:12:19 -07001624 } else if (attr == &dev_attr_gps.attr) {
1625 supported = !acpi_check_handle(handle, METHOD_GPS_ON, NULL) &&
1626 !acpi_check_handle(handle, METHOD_GPS_OFF, NULL) &&
1627 !acpi_check_handle(handle, METHOD_GPS_STATUS, NULL);
1628 } else {
1629 supported = true;
1630 }
1631
1632 return supported ? attr->mode : 0;
Corentin Chary2a1fd642010-01-26 21:02:23 +01001633}
1634
Corentin Chary2a1fd642010-01-26 21:02:23 +01001635
Dmitry Torokhovac9b1e52010-08-26 00:12:19 -07001636static const struct attribute_group asus_attr_group = {
1637 .is_visible = asus_sysfs_is_visible,
1638 .attrs = asus_attributes,
1639};
Corentin Chary85091b72007-01-26 14:04:30 +01001640
Corentin Chary9129d142009-12-01 22:39:41 +01001641static int asus_platform_init(struct asus_laptop *asus)
Corentin Chary600ad522009-11-30 21:42:42 +01001642{
Corentin Chary71e687d2010-08-24 09:30:44 +02001643 int result;
Corentin Chary600ad522009-11-30 21:42:42 +01001644
Corentin Chary50a90c42009-11-30 21:55:12 +01001645 asus->platform_device = platform_device_alloc(ASUS_LAPTOP_FILE, -1);
1646 if (!asus->platform_device)
Corentin Chary600ad522009-11-30 21:42:42 +01001647 return -ENOMEM;
Corentin Chary9129d142009-12-01 22:39:41 +01001648 platform_set_drvdata(asus->platform_device, asus);
Corentin Chary600ad522009-11-30 21:42:42 +01001649
Corentin Chary71e687d2010-08-24 09:30:44 +02001650 result = platform_device_add(asus->platform_device);
1651 if (result)
Corentin Chary600ad522009-11-30 21:42:42 +01001652 goto fail_platform_device;
1653
Dmitry Torokhovac9b1e52010-08-26 00:12:19 -07001654 result = sysfs_create_group(&asus->platform_device->dev.kobj,
1655 &asus_attr_group);
Corentin Chary71e687d2010-08-24 09:30:44 +02001656 if (result)
Corentin Chary600ad522009-11-30 21:42:42 +01001657 goto fail_sysfs;
Dmitry Torokhovac9b1e52010-08-26 00:12:19 -07001658
Corentin Chary600ad522009-11-30 21:42:42 +01001659 return 0;
1660
1661fail_sysfs:
Corentin Chary50a90c42009-11-30 21:55:12 +01001662 platform_device_del(asus->platform_device);
Corentin Chary600ad522009-11-30 21:42:42 +01001663fail_platform_device:
Corentin Chary50a90c42009-11-30 21:55:12 +01001664 platform_device_put(asus->platform_device);
Corentin Chary71e687d2010-08-24 09:30:44 +02001665 return result;
Corentin Chary600ad522009-11-30 21:42:42 +01001666}
1667
Corentin Chary9129d142009-12-01 22:39:41 +01001668static void asus_platform_exit(struct asus_laptop *asus)
Corentin Chary600ad522009-11-30 21:42:42 +01001669{
Dmitry Torokhovac9b1e52010-08-26 00:12:19 -07001670 sysfs_remove_group(&asus->platform_device->dev.kobj, &asus_attr_group);
Corentin Chary50a90c42009-11-30 21:55:12 +01001671 platform_device_unregister(asus->platform_device);
Corentin Chary600ad522009-11-30 21:42:42 +01001672}
1673
1674static struct platform_driver platform_driver = {
Len Brown8def05f2007-01-30 01:46:43 -05001675 .driver = {
Corentin Chary9129d142009-12-01 22:39:41 +01001676 .name = ASUS_LAPTOP_FILE,
1677 .owner = THIS_MODULE,
Andy Rossb23910c2011-10-14 11:13:38 +02001678 },
Corentin Chary85091b72007-01-26 14:04:30 +01001679};
1680
Corentin Chary85091b72007-01-26 14:04:30 +01001681/*
Corentin Chary50a90c42009-11-30 21:55:12 +01001682 * This function is used to initialize the context with right values. In this
1683 * method, we can make all the detection we want, and modify the asus_laptop
1684 * struct
Corentin Chary85091b72007-01-26 14:04:30 +01001685 */
Corentin Chary7c247642009-11-30 22:13:54 +01001686static int asus_laptop_get_info(struct asus_laptop *asus)
Corentin Chary85091b72007-01-26 14:04:30 +01001687{
1688 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
Corentin Chary85091b72007-01-26 14:04:30 +01001689 union acpi_object *model = NULL;
Ben Hutchingscb7da022012-11-29 09:12:37 +01001690 unsigned long long bsts_result;
Corentin Chary85091b72007-01-26 14:04:30 +01001691 char *string = NULL;
1692 acpi_status status;
1693
1694 /*
1695 * Get DSDT headers early enough to allow for differentiating between
1696 * models, but late enough to allow acpi_bus_register_driver() to fail
1697 * before doing anything ACPI-specific. Should we encounter a machine,
1698 * which needs special handling (i.e. its hotkey device has a different
Corentin Chary7c247642009-11-30 22:13:54 +01001699 * HID), this bit will be moved.
Corentin Chary85091b72007-01-26 14:04:30 +01001700 */
Corentin Chary7c247642009-11-30 22:13:54 +01001701 status = acpi_get_table(ACPI_SIG_DSDT, 1, &asus->dsdt_info);
Corentin Chary85091b72007-01-26 14:04:30 +01001702 if (ACPI_FAILURE(status))
Joe Perches5ad77dc2011-03-29 15:21:35 -07001703 pr_warn("Couldn't get the DSDT table header\n");
Corentin Chary85091b72007-01-26 14:04:30 +01001704
1705 /* We have to write 0 on init this far for all ASUS models */
Corentin Chary50a90c42009-11-30 21:55:12 +01001706 if (write_acpi_int_ret(asus->handle, "INIT", 0, &buffer)) {
Corentin Chary2fcc23d2009-06-19 14:52:03 +02001707 pr_err("Hotkey initialization failed\n");
Corentin Chary85091b72007-01-26 14:04:30 +01001708 return -ENODEV;
1709 }
1710
1711 /* This needs to be called for some laptops to init properly */
Corentin Chary9a816852007-03-11 10:25:38 +01001712 status =
Corentin Chary50a90c42009-11-30 21:55:12 +01001713 acpi_evaluate_integer(asus->handle, "BSTS", NULL, &bsts_result);
Corentin Chary9a816852007-03-11 10:25:38 +01001714 if (ACPI_FAILURE(status))
Joe Perches5ad77dc2011-03-29 15:21:35 -07001715 pr_warn("Error calling BSTS\n");
Corentin Chary85091b72007-01-26 14:04:30 +01001716 else if (bsts_result)
Corentin Chary2fcc23d2009-06-19 14:52:03 +02001717 pr_notice("BSTS called, 0x%02x returned\n",
Corentin Chary9a816852007-03-11 10:25:38 +01001718 (uint) bsts_result);
Corentin Chary85091b72007-01-26 14:04:30 +01001719
Corentin Chary185e5af2007-03-11 10:27:33 +01001720 /* This too ... */
Corentin Charye5593bf2010-01-17 17:20:11 +01001721 if (write_acpi_int(asus->handle, "CWAP", wapf))
1722 pr_err("Error calling CWAP(%d)\n", wapf);
Corentin Chary85091b72007-01-26 14:04:30 +01001723 /*
1724 * Try to match the object returned by INIT to the specific model.
1725 * Handle every possible object (or the lack of thereof) the DSDT
1726 * writers might throw at us. When in trouble, we pass NULL to
1727 * asus_model_match() and try something completely different.
1728 */
1729 if (buffer.pointer) {
1730 model = buffer.pointer;
1731 switch (model->type) {
1732 case ACPI_TYPE_STRING:
1733 string = model->string.pointer;
1734 break;
1735 case ACPI_TYPE_BUFFER:
1736 string = model->buffer.pointer;
1737 break;
1738 default:
1739 string = "";
1740 break;
1741 }
1742 }
Corentin Chary50a90c42009-11-30 21:55:12 +01001743 asus->name = kstrdup(string, GFP_KERNEL);
Axel Lind8eca112010-06-29 11:09:47 +08001744 if (!asus->name) {
1745 kfree(buffer.pointer);
Corentin Chary85091b72007-01-26 14:04:30 +01001746 return -ENOMEM;
Axel Lind8eca112010-06-29 11:09:47 +08001747 }
Corentin Chary85091b72007-01-26 14:04:30 +01001748
Matthew Garrett9f897482012-12-28 10:54:42 -05001749 if (string)
Corentin Chary2fcc23d2009-06-19 14:52:03 +02001750 pr_notice(" %s model detected\n", string);
Corentin Chary85091b72007-01-26 14:04:30 +01001751
Corentin Charyd99b5772010-01-22 21:20:57 +01001752 if (!acpi_check_handle(asus->handle, METHOD_WL_STATUS, NULL))
Corentin Charyaa9df932010-01-13 21:49:10 +01001753 asus->have_rsts = true;
Corentin Chary4564de12007-01-26 14:04:40 +01001754
Corentin Chary85091b72007-01-26 14:04:30 +01001755 kfree(model);
1756
1757 return AE_OK;
1758}
1759
Greg Kroah-Hartmanb859f152012-12-21 13:18:33 -08001760static int asus_acpi_init(struct asus_laptop *asus)
Corentin Chary600ad522009-11-30 21:42:42 +01001761{
1762 int result = 0;
1763
Corentin Chary50a90c42009-11-30 21:55:12 +01001764 result = acpi_bus_get_status(asus->device);
Corentin Chary600ad522009-11-30 21:42:42 +01001765 if (result)
1766 return result;
Corentin Chary50a90c42009-11-30 21:55:12 +01001767 if (!asus->device->status.present) {
Corentin Chary600ad522009-11-30 21:42:42 +01001768 pr_err("Hotkey device not present, aborting\n");
1769 return -ENODEV;
1770 }
1771
Corentin Chary7c247642009-11-30 22:13:54 +01001772 result = asus_laptop_get_info(asus);
Corentin Chary600ad522009-11-30 21:42:42 +01001773 if (result)
1774 return result;
1775
Corentin Chary774b0672011-12-15 08:27:34 +01001776 if (!strcmp(bled_type, "led"))
1777 asus->bled_type = TYPE_LED;
1778 else if (!strcmp(bled_type, "rfkill"))
1779 asus->bled_type = TYPE_RFKILL;
1780
1781 if (!strcmp(wled_type, "led"))
1782 asus->wled_type = TYPE_LED;
1783 else if (!strcmp(wled_type, "rfkill"))
1784 asus->wled_type = TYPE_RFKILL;
1785
Corentin Charybe4ee822009-12-06 16:27:09 +01001786 if (bluetooth_status >= 0)
Corentin Charye5593bf2010-01-17 17:20:11 +01001787 asus_bluetooth_set(asus, !!bluetooth_status);
1788
Corentin Charyd0930a22010-01-17 17:21:13 +01001789 if (wlan_status >= 0)
1790 asus_wlan_set(asus, !!wlan_status);
Corentin Chary600ad522009-11-30 21:42:42 +01001791
Corentin Charyba1ff5b2010-11-14 17:40:12 +01001792 if (wimax_status >= 0)
1793 asus_wimax_set(asus, !!wimax_status);
1794
1795 if (wwan_status >= 0)
1796 asus_wwan_set(asus, !!wwan_status);
1797
Corentin Chary600ad522009-11-30 21:42:42 +01001798 /* Keyboard Backlight is on by default */
Corentin Charyd99b5772010-01-22 21:20:57 +01001799 if (!acpi_check_handle(asus->handle, METHOD_KBD_LIGHT_SET, NULL))
Corentin Chary4d441512010-01-13 22:26:24 +01001800 asus_kled_set(asus, 1);
Corentin Chary600ad522009-11-30 21:42:42 +01001801
1802 /* LED display is off by default */
Corentin Chary50a90c42009-11-30 21:55:12 +01001803 asus->ledd_status = 0xFFF;
Corentin Chary600ad522009-11-30 21:42:42 +01001804
1805 /* Set initial values of light sensor and level */
Andy Rossabec04d2011-10-14 11:13:37 +02001806 asus->light_switch = !!als_status;
Corentin Charybe4ee822009-12-06 16:27:09 +01001807 asus->light_level = 5; /* level 5 for sensor sensitivity */
Corentin Chary600ad522009-11-30 21:42:42 +01001808
Andy Ross33989ba2011-10-14 11:13:36 +02001809 if (asus->is_pega_lucid) {
1810 asus_als_switch(asus, asus->light_switch);
1811 } else if (!acpi_check_handle(asus->handle, METHOD_ALS_CONTROL, NULL) &&
1812 !acpi_check_handle(asus->handle, METHOD_ALS_LEVEL, NULL)) {
Corentin Chary4d441512010-01-13 22:26:24 +01001813 asus_als_switch(asus, asus->light_switch);
Corentin Chary4d441512010-01-13 22:26:24 +01001814 asus_als_level(asus, asus->light_level);
Corentin Charyd99b5772010-01-22 21:20:57 +01001815 }
Corentin Chary600ad522009-11-30 21:42:42 +01001816
Corentin Chary600ad522009-11-30 21:42:42 +01001817 return result;
1818}
1819
Greg Kroah-Hartmanb859f152012-12-21 13:18:33 -08001820static void asus_dmi_check(void)
Corentin Charyaf96f872011-02-06 13:27:30 +01001821{
1822 const char *model;
1823
1824 model = dmi_get_system_info(DMI_PRODUCT_NAME);
1825 if (!model)
1826 return;
1827
1828 /* On L1400B WLED control the sound card, don't mess with it ... */
1829 if (strncmp(model, "L1400B", 6) == 0) {
1830 wlan_status = -1;
1831 }
1832}
1833
Corentin Chary71e687d2010-08-24 09:30:44 +02001834static bool asus_device_present;
1835
Greg Kroah-Hartmanb859f152012-12-21 13:18:33 -08001836static int asus_acpi_add(struct acpi_device *device)
Corentin Chary600ad522009-11-30 21:42:42 +01001837{
Corentin Chary9129d142009-12-01 22:39:41 +01001838 struct asus_laptop *asus;
Corentin Chary600ad522009-11-30 21:42:42 +01001839 int result;
1840
1841 pr_notice("Asus Laptop Support version %s\n",
1842 ASUS_LAPTOP_VERSION);
Corentin Chary50a90c42009-11-30 21:55:12 +01001843 asus = kzalloc(sizeof(struct asus_laptop), GFP_KERNEL);
1844 if (!asus)
Corentin Chary600ad522009-11-30 21:42:42 +01001845 return -ENOMEM;
Corentin Chary50a90c42009-11-30 21:55:12 +01001846 asus->handle = device->handle;
1847 strcpy(acpi_device_name(device), ASUS_LAPTOP_DEVICE_NAME);
1848 strcpy(acpi_device_class(device), ASUS_LAPTOP_CLASS);
1849 device->driver_data = asus;
1850 asus->device = device;
Corentin Chary600ad522009-11-30 21:42:42 +01001851
Corentin Charyaf96f872011-02-06 13:27:30 +01001852 asus_dmi_check();
1853
Corentin Chary9129d142009-12-01 22:39:41 +01001854 result = asus_acpi_init(asus);
Corentin Chary600ad522009-11-30 21:42:42 +01001855 if (result)
1856 goto fail_platform;
1857
1858 /*
Andy Ross8819de72011-10-14 11:13:35 +02001859 * Need platform type detection first, then the platform
1860 * device. It is used as a parent for the sub-devices below.
Corentin Chary600ad522009-11-30 21:42:42 +01001861 */
Andy Ross8819de72011-10-14 11:13:35 +02001862 asus->is_pega_lucid = asus_check_pega_lucid(asus);
Corentin Chary9129d142009-12-01 22:39:41 +01001863 result = asus_platform_init(asus);
Corentin Chary600ad522009-11-30 21:42:42 +01001864 if (result)
1865 goto fail_platform;
1866
1867 if (!acpi_video_backlight_support()) {
Corentin Chary9129d142009-12-01 22:39:41 +01001868 result = asus_backlight_init(asus);
Corentin Chary600ad522009-11-30 21:42:42 +01001869 if (result)
1870 goto fail_backlight;
1871 } else
1872 pr_info("Backlight controlled by ACPI video driver\n");
1873
Corentin Chary9129d142009-12-01 22:39:41 +01001874 result = asus_input_init(asus);
Corentin Chary600ad522009-11-30 21:42:42 +01001875 if (result)
1876 goto fail_input;
1877
Corentin Chary9129d142009-12-01 22:39:41 +01001878 result = asus_led_init(asus);
Corentin Chary600ad522009-11-30 21:42:42 +01001879 if (result)
1880 goto fail_led;
1881
Corentin Chary18e13112010-01-25 23:29:24 +01001882 result = asus_rfkill_init(asus);
Corentin Chary3c8671f2011-12-15 08:27:35 +01001883 if (result && result != -ENODEV)
Corentin Chary18e13112010-01-25 23:29:24 +01001884 goto fail_rfkill;
1885
Andy Rossb23910c2011-10-14 11:13:38 +02001886 result = pega_accel_init(asus);
1887 if (result && result != -ENODEV)
1888 goto fail_pega_accel;
1889
Anisse Astier14908392011-10-14 11:13:42 +02001890 result = pega_rfkill_init(asus);
1891 if (result && result != -ENODEV)
1892 goto fail_pega_rfkill;
1893
Corentin Chary600ad522009-11-30 21:42:42 +01001894 asus_device_present = true;
1895 return 0;
1896
Anisse Astier14908392011-10-14 11:13:42 +02001897fail_pega_rfkill:
1898 pega_accel_exit(asus);
Andy Rossb23910c2011-10-14 11:13:38 +02001899fail_pega_accel:
1900 asus_rfkill_exit(asus);
Corentin Chary18e13112010-01-25 23:29:24 +01001901fail_rfkill:
1902 asus_led_exit(asus);
Corentin Chary600ad522009-11-30 21:42:42 +01001903fail_led:
Corentin Chary9129d142009-12-01 22:39:41 +01001904 asus_input_exit(asus);
Corentin Chary600ad522009-11-30 21:42:42 +01001905fail_input:
Corentin Chary9129d142009-12-01 22:39:41 +01001906 asus_backlight_exit(asus);
Corentin Chary600ad522009-11-30 21:42:42 +01001907fail_backlight:
Corentin Chary9129d142009-12-01 22:39:41 +01001908 asus_platform_exit(asus);
Corentin Chary600ad522009-11-30 21:42:42 +01001909fail_platform:
Corentin Chary50a90c42009-11-30 21:55:12 +01001910 kfree(asus->name);
1911 kfree(asus);
Corentin Chary600ad522009-11-30 21:42:42 +01001912
1913 return result;
1914}
1915
Rafael J. Wysocki51fac832013-01-24 00:24:48 +01001916static int asus_acpi_remove(struct acpi_device *device)
Corentin Chary600ad522009-11-30 21:42:42 +01001917{
Corentin Chary9129d142009-12-01 22:39:41 +01001918 struct asus_laptop *asus = acpi_driver_data(device);
1919
1920 asus_backlight_exit(asus);
Corentin Chary18e13112010-01-25 23:29:24 +01001921 asus_rfkill_exit(asus);
Corentin Chary9129d142009-12-01 22:39:41 +01001922 asus_led_exit(asus);
1923 asus_input_exit(asus);
Andy Rossb23910c2011-10-14 11:13:38 +02001924 pega_accel_exit(asus);
Corentin Chary9129d142009-12-01 22:39:41 +01001925 asus_platform_exit(asus);
Corentin Chary600ad522009-11-30 21:42:42 +01001926
Corentin Chary50a90c42009-11-30 21:55:12 +01001927 kfree(asus->name);
1928 kfree(asus);
Corentin Chary600ad522009-11-30 21:42:42 +01001929 return 0;
1930}
1931
1932static const struct acpi_device_id asus_device_ids[] = {
1933 {"ATK0100", 0},
1934 {"ATK0101", 0},
1935 {"", 0},
1936};
1937MODULE_DEVICE_TABLE(acpi, asus_device_ids);
1938
1939static struct acpi_driver asus_acpi_driver = {
Corentin Chary50a90c42009-11-30 21:55:12 +01001940 .name = ASUS_LAPTOP_NAME,
1941 .class = ASUS_LAPTOP_CLASS,
Corentin Chary600ad522009-11-30 21:42:42 +01001942 .owner = THIS_MODULE,
1943 .ids = asus_device_ids,
1944 .flags = ACPI_DRIVER_ALL_NOTIFY_EVENTS,
1945 .ops = {
1946 .add = asus_acpi_add,
1947 .remove = asus_acpi_remove,
1948 .notify = asus_acpi_notify,
1949 },
1950};
1951
Corentin Chary85091b72007-01-26 14:04:30 +01001952static int __init asus_laptop_init(void)
1953{
1954 int result;
1955
Corentin Chary600ad522009-11-30 21:42:42 +01001956 result = platform_driver_register(&platform_driver);
Corentin Chary85091b72007-01-26 14:04:30 +01001957 if (result < 0)
1958 return result;
1959
Corentin Chary600ad522009-11-30 21:42:42 +01001960 result = acpi_bus_register_driver(&asus_acpi_driver);
1961 if (result < 0)
1962 goto fail_acpi_driver;
1963 if (!asus_device_present) {
1964 result = -ENODEV;
1965 goto fail_no_device;
Corentin Chary85091b72007-01-26 14:04:30 +01001966 }
Len Brown8def05f2007-01-30 01:46:43 -05001967 return 0;
Corentin Chary85091b72007-01-26 14:04:30 +01001968
Corentin Chary600ad522009-11-30 21:42:42 +01001969fail_no_device:
1970 acpi_bus_unregister_driver(&asus_acpi_driver);
1971fail_acpi_driver:
1972 platform_driver_unregister(&platform_driver);
Corentin Chary85091b72007-01-26 14:04:30 +01001973 return result;
1974}
1975
Corentin Chary600ad522009-11-30 21:42:42 +01001976static void __exit asus_laptop_exit(void)
1977{
1978 acpi_bus_unregister_driver(&asus_acpi_driver);
1979 platform_driver_unregister(&platform_driver);
1980}
1981
Corentin Chary85091b72007-01-26 14:04:30 +01001982module_init(asus_laptop_init);
1983module_exit(asus_laptop_exit);