blob: 0e9c169b42f82a782b1166b2c05880ad4e1ad0da [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 Chary2740e1b2012-11-29 09:12:39 +0100131#define ATKD_BRNUP_MIN 0x10
132#define ATKD_BRNUP_MAX 0x1f
133#define ATKD_BRNDOWN_MIN 0x20
134#define ATKD_BRNDOWN_MAX 0x2f
135#define ATKD_BRNDOWN 0x20
136#define ATKD_BRNUP 0x2f
Corentin Charybe4ee822009-12-06 16:27:09 +0100137#define ATKD_LCD_ON 0x33
138#define ATKD_LCD_OFF 0x34
139
140/*
141 * Known bits returned by \_SB.ATKD.HWRS
142 */
143#define WL_HWRS 0x80
144#define BT_HWRS 0x100
145
146/*
147 * Flags for hotk status
148 * WL_ON and BT_ON are also used for wireless_status()
149 */
Corentin Chary17e78f62010-01-13 22:21:33 +0100150#define WL_RSTS 0x01 /* internal Wifi */
151#define BT_RSTS 0x02 /* internal Bluetooth */
Corentin Charyba1ff5b2010-11-14 17:40:12 +0100152#define WM_RSTS 0x08 /* internal wimax */
153#define WW_RSTS 0x20 /* internal wwan */
Corentin Charybe4ee822009-12-06 16:27:09 +0100154
Corentin Chary774b0672011-12-15 08:27:34 +0100155/* WLED and BLED type */
156#define TYPE_UNKNOWN 0
157#define TYPE_LED 1
158#define TYPE_RFKILL 2
159
Corentin Charybe18cda2007-01-26 14:04:35 +0100160/* LED */
Corentin Charyd99b5772010-01-22 21:20:57 +0100161#define METHOD_MLED "MLED"
162#define METHOD_TLED "TLED"
163#define METHOD_RLED "RLED" /* W1JC */
164#define METHOD_PLED "PLED" /* A7J */
165#define METHOD_GLED "GLED" /* G1, G2 (probably) */
Corentin Charybe18cda2007-01-26 14:04:35 +0100166
Corentin Chary722ad972007-01-26 14:04:55 +0100167/* LEDD */
Corentin Charyd99b5772010-01-22 21:20:57 +0100168#define METHOD_LEDD "SLCM"
Corentin Chary722ad972007-01-26 14:04:55 +0100169
Corentin Charybe966662009-08-29 10:28:29 +0200170/*
171 * Bluetooth and WLAN
Corentin Chary4564de12007-01-26 14:04:40 +0100172 * WLED and BLED are not handled like other XLED, because in some dsdt
173 * they also control the WLAN/Bluetooth device.
174 */
Corentin Charyd99b5772010-01-22 21:20:57 +0100175#define METHOD_WLAN "WLED"
176#define METHOD_BLUETOOTH "BLED"
Corentin Charyba1ff5b2010-11-14 17:40:12 +0100177
178/* WWAN and WIMAX */
179#define METHOD_WWAN "GSMC"
180#define METHOD_WIMAX "WMXC"
181
Corentin Charyd99b5772010-01-22 21:20:57 +0100182#define METHOD_WL_STATUS "RSTS"
Corentin Chary4564de12007-01-26 14:04:40 +0100183
Corentin Chary6b7091e2007-01-26 14:04:45 +0100184/* Brightness */
Corentin Charyd99b5772010-01-22 21:20:57 +0100185#define METHOD_BRIGHTNESS_SET "SPLV"
186#define METHOD_BRIGHTNESS_GET "GPLV"
Corentin Chary6b7091e2007-01-26 14:04:45 +0100187
Corentin Chary78127b42007-01-26 14:04:49 +0100188/* Display */
Corentin Charyd99b5772010-01-22 21:20:57 +0100189#define METHOD_SWITCH_DISPLAY "SDSP"
Corentin Chary060cbce2010-01-28 10:52:40 +0100190
Corentin Charyd99b5772010-01-22 21:20:57 +0100191#define METHOD_ALS_CONTROL "ALSC" /* Z71A Z71V */
192#define METHOD_ALS_LEVEL "ALSL" /* Z71A Z71V */
Corentin Chary8b857352007-01-26 14:04:58 +0100193
Corentin Charye539c2f2007-05-06 14:47:06 +0200194/* GPS */
195/* R2H use different handle for GPS on/off */
Corentin Charyd99b5772010-01-22 21:20:57 +0100196#define METHOD_GPS_ON "SDON"
197#define METHOD_GPS_OFF "SDOF"
198#define METHOD_GPS_STATUS "GPST"
Corentin Charye539c2f2007-05-06 14:47:06 +0200199
Corentin Charyb7d3fbc2009-08-28 12:56:50 +0000200/* Keyboard light */
Corentin Charyd99b5772010-01-22 21:20:57 +0100201#define METHOD_KBD_LIGHT_SET "SLKB"
202#define METHOD_KBD_LIGHT_GET "GLKB"
Corentin Charyb7d3fbc2009-08-28 12:56:50 +0000203
Andy Ross8819de72011-10-14 11:13:35 +0200204/* For Pegatron Lucid tablet */
205#define DEVICE_NAME_PEGA "Lucid"
Andy Ross33989ba2011-10-14 11:13:36 +0200206
Andy Ross8819de72011-10-14 11:13:35 +0200207#define METHOD_PEGA_ENABLE "ENPR"
208#define METHOD_PEGA_DISABLE "DAPR"
Anisse Astier14908392011-10-14 11:13:42 +0200209#define PEGA_WLAN 0x00
210#define PEGA_BLUETOOTH 0x01
211#define PEGA_WWAN 0x02
Andy Ross33989ba2011-10-14 11:13:36 +0200212#define PEGA_ALS 0x04
213#define PEGA_ALS_POWER 0x05
214
Andy Ross8819de72011-10-14 11:13:35 +0200215#define METHOD_PEGA_READ "RDLN"
Andy Ross33989ba2011-10-14 11:13:36 +0200216#define PEGA_READ_ALS_H 0x02
217#define PEGA_READ_ALS_L 0x03
Andy Ross8819de72011-10-14 11:13:35 +0200218
Andy Rossb23910c2011-10-14 11:13:38 +0200219#define PEGA_ACCEL_NAME "pega_accel"
220#define PEGA_ACCEL_DESC "Pegatron Lucid Tablet Accelerometer"
221#define METHOD_XLRX "XLRX"
222#define METHOD_XLRY "XLRY"
223#define METHOD_XLRZ "XLRZ"
224#define PEGA_ACC_CLAMP 512 /* 1G accel is reported as ~256, so clamp to 2G */
225#define PEGA_ACC_RETRIES 3
226
Corentin Chary85091b72007-01-26 14:04:30 +0100227/*
Corentin Chary9129d142009-12-01 22:39:41 +0100228 * Define a specific led structure to keep the main structure clean
229 */
Corentin Charyaee0afb2010-01-26 21:01:34 +0100230struct asus_led {
231 int wk;
232 struct work_struct work;
233 struct led_classdev led;
234 struct asus_laptop *asus;
235 const char *method;
Corentin Chary9129d142009-12-01 22:39:41 +0100236};
237
238/*
Anisse Astier14908392011-10-14 11:13:42 +0200239 * Same thing for rfkill
240 */
Corentin Chary40969c72011-12-15 08:27:33 +0100241struct asus_rfkill {
Corentin Chary774b0672011-12-15 08:27:34 +0100242 /* type of control. Maps to PEGA_* values or *_RSTS */
243 int control_id;
Anisse Astier14908392011-10-14 11:13:42 +0200244 struct rfkill *rfkill;
245 struct asus_laptop *asus;
246};
247
248/*
Corentin Chary85091b72007-01-26 14:04:30 +0100249 * This is the main structure, we can use it to store anything interesting
250 * about the hotk device
251 */
Corentin Chary50a90c42009-11-30 21:55:12 +0100252struct asus_laptop {
Corentin Charybe966662009-08-29 10:28:29 +0200253 char *name; /* laptop name */
Corentin Chary600ad522009-11-30 21:42:42 +0100254
Corentin Chary7c247642009-11-30 22:13:54 +0100255 struct acpi_table_header *dsdt_info;
Corentin Chary600ad522009-11-30 21:42:42 +0100256 struct platform_device *platform_device;
Corentin Chary7c247642009-11-30 22:13:54 +0100257 struct acpi_device *device; /* the device we are in */
258 struct backlight_device *backlight_device;
Corentin Chary9129d142009-12-01 22:39:41 +0100259
Corentin Chary7c247642009-11-30 22:13:54 +0100260 struct input_dev *inputdev;
Corentin Chary9129d142009-12-01 22:39:41 +0100261 struct key_entry *keymap;
Andy Rossb23910c2011-10-14 11:13:38 +0200262 struct input_polled_dev *pega_accel_poll;
Corentin Chary9129d142009-12-01 22:39:41 +0100263
Corentin Chary774b0672011-12-15 08:27:34 +0100264 struct asus_led wled;
265 struct asus_led bled;
Corentin Charyaee0afb2010-01-26 21:01:34 +0100266 struct asus_led mled;
267 struct asus_led tled;
268 struct asus_led rled;
269 struct asus_led pled;
270 struct asus_led gled;
271 struct asus_led kled;
272 struct workqueue_struct *led_workqueue;
Corentin Chary7c247642009-11-30 22:13:54 +0100273
Corentin Chary774b0672011-12-15 08:27:34 +0100274 int wled_type;
275 int bled_type;
Corentin Charyaa9df932010-01-13 21:49:10 +0100276 int wireless_status;
277 bool have_rsts;
Andy Ross8819de72011-10-14 11:13:35 +0200278 bool is_pega_lucid;
Andy Rossb23910c2011-10-14 11:13:38 +0200279 bool pega_acc_live;
280 int pega_acc_x;
281 int pega_acc_y;
282 int pega_acc_z;
Corentin Charyaa9df932010-01-13 21:49:10 +0100283
Corentin Chary40969c72011-12-15 08:27:33 +0100284 struct asus_rfkill wlan;
285 struct asus_rfkill bluetooth;
286 struct asus_rfkill wwan;
Corentin Chary3c8671f2011-12-15 08:27:35 +0100287 struct asus_rfkill wimax;
Corentin Chary40969c72011-12-15 08:27:33 +0100288 struct asus_rfkill gps;
Anisse Astier14908392011-10-14 11:13:42 +0200289
Corentin Charybe966662009-08-29 10:28:29 +0200290 acpi_handle handle; /* the handle of the hotk device */
Corentin Charybe966662009-08-29 10:28:29 +0200291 u32 ledd_status; /* status of the LED display */
292 u8 light_level; /* light sensor level */
293 u8 light_switch; /* light sensor switch value */
294 u16 event_count[128]; /* count for each event TODO make this better */
Corentin Chary85091b72007-01-26 14:04:30 +0100295};
296
Corentin Chary9129d142009-12-01 22:39:41 +0100297static const struct key_entry asus_keymap[] = {
Corentin Charya539df52010-01-25 22:53:21 +0100298 /* Lenovo SL Specific keycodes */
Corentin Chary66a71dd2010-01-25 22:50:11 +0100299 {KE_KEY, 0x02, { KEY_SCREENLOCK } },
300 {KE_KEY, 0x05, { KEY_WLAN } },
301 {KE_KEY, 0x08, { KEY_F13 } },
Corentin Charya2d5dd22011-12-15 08:27:38 +0100302 {KE_KEY, 0x09, { KEY_PROG2 } }, /* Dock */
Corentin Chary66a71dd2010-01-25 22:50:11 +0100303 {KE_KEY, 0x17, { KEY_ZOOM } },
304 {KE_KEY, 0x1f, { KEY_BATTERY } },
Corentin Charya539df52010-01-25 22:53:21 +0100305 /* End of Lenovo SL Specific keycodes */
Corentin Chary2740e1b2012-11-29 09:12:39 +0100306 {KE_KEY, ATKD_BRNDOWN, { KEY_BRIGHTNESSDOWN } },
307 {KE_KEY, ATKD_BRNUP, { KEY_BRIGHTNESSUP } },
Corentin Chary66a71dd2010-01-25 22:50:11 +0100308 {KE_KEY, 0x30, { KEY_VOLUMEUP } },
309 {KE_KEY, 0x31, { KEY_VOLUMEDOWN } },
310 {KE_KEY, 0x32, { KEY_MUTE } },
Corentin Charya935eae2012-10-03 11:26:26 +0200311 {KE_KEY, 0x33, { KEY_DISPLAYTOGGLE } }, /* LCD on */
312 {KE_KEY, 0x34, { KEY_DISPLAY_OFF } }, /* LCD off */
Corentin Chary66a71dd2010-01-25 22:50:11 +0100313 {KE_KEY, 0x40, { KEY_PREVIOUSSONG } },
314 {KE_KEY, 0x41, { KEY_NEXTSONG } },
Corentin Charya935eae2012-10-03 11:26:26 +0200315 {KE_KEY, 0x43, { KEY_STOPCD } }, /* Stop/Eject */
Corentin Chary66a71dd2010-01-25 22:50:11 +0100316 {KE_KEY, 0x45, { KEY_PLAYPAUSE } },
Corentin Charya935eae2012-10-03 11:26:26 +0200317 {KE_KEY, 0x4c, { KEY_MEDIA } }, /* WMP Key */
Corentin Chary66a71dd2010-01-25 22:50:11 +0100318 {KE_KEY, 0x50, { KEY_EMAIL } },
319 {KE_KEY, 0x51, { KEY_WWW } },
320 {KE_KEY, 0x55, { KEY_CALC } },
Corentin Chary982d3852012-10-03 11:26:25 +0200321 {KE_IGNORE, 0x57, }, /* Battery mode */
322 {KE_IGNORE, 0x58, }, /* AC mode */
Corentin Chary66a71dd2010-01-25 22:50:11 +0100323 {KE_KEY, 0x5C, { KEY_SCREENLOCK } }, /* Screenlock */
Corentin Charya935eae2012-10-03 11:26:26 +0200324 {KE_KEY, 0x5D, { KEY_WLAN } }, /* WLAN Toggle */
325 {KE_KEY, 0x5E, { KEY_WLAN } }, /* WLAN Enable */
326 {KE_KEY, 0x5F, { KEY_WLAN } }, /* WLAN Disable */
AceLan Kao19d3ab12012-10-03 11:26:27 +0200327 {KE_KEY, 0x60, { KEY_TOUCHPAD_ON } },
AceLan Kao3da4cd22012-10-03 11:26:28 +0200328 {KE_KEY, 0x61, { KEY_SWITCHVIDEOMODE } }, /* SDSP LCD only */
329 {KE_KEY, 0x62, { KEY_SWITCHVIDEOMODE } }, /* SDSP CRT only */
330 {KE_KEY, 0x63, { KEY_SWITCHVIDEOMODE } }, /* SDSP LCD + CRT */
331 {KE_KEY, 0x64, { KEY_SWITCHVIDEOMODE } }, /* SDSP TV */
332 {KE_KEY, 0x65, { KEY_SWITCHVIDEOMODE } }, /* SDSP LCD + TV */
333 {KE_KEY, 0x66, { KEY_SWITCHVIDEOMODE } }, /* SDSP CRT + TV */
334 {KE_KEY, 0x67, { KEY_SWITCHVIDEOMODE } }, /* SDSP LCD + CRT + TV */
Corentin Charya935eae2012-10-03 11:26:26 +0200335 {KE_KEY, 0x6B, { KEY_TOUCHPAD_TOGGLE } }, /* Lock Touchpad */
Corentin Charya2d5dd22011-12-15 08:27:38 +0100336 {KE_KEY, 0x6C, { KEY_SLEEP } }, /* Suspend */
337 {KE_KEY, 0x6D, { KEY_SLEEP } }, /* Hibernate */
Corentin Chary982d3852012-10-03 11:26:25 +0200338 {KE_IGNORE, 0x6E, }, /* Low Battery notification */
Corentin Charya935eae2012-10-03 11:26:26 +0200339 {KE_KEY, 0x7D, { KEY_BLUETOOTH } }, /* Bluetooth Enable */
340 {KE_KEY, 0x7E, { KEY_BLUETOOTH } }, /* Bluetooth Disable */
Corentin Chary66a71dd2010-01-25 22:50:11 +0100341 {KE_KEY, 0x82, { KEY_CAMERA } },
Corentin Charya935eae2012-10-03 11:26:26 +0200342 {KE_KEY, 0x88, { KEY_RFKILL } }, /* Radio Toggle Key */
343 {KE_KEY, 0x8A, { KEY_PROG1 } }, /* Color enhancement mode */
AceLan Kao3da4cd22012-10-03 11:26:28 +0200344 {KE_KEY, 0x8C, { KEY_SWITCHVIDEOMODE } }, /* SDSP DVI only */
345 {KE_KEY, 0x8D, { KEY_SWITCHVIDEOMODE } }, /* SDSP LCD + DVI */
346 {KE_KEY, 0x8E, { KEY_SWITCHVIDEOMODE } }, /* SDSP CRT + DVI */
347 {KE_KEY, 0x8F, { KEY_SWITCHVIDEOMODE } }, /* SDSP TV + DVI */
348 {KE_KEY, 0x90, { KEY_SWITCHVIDEOMODE } }, /* SDSP LCD + CRT + DVI */
349 {KE_KEY, 0x91, { KEY_SWITCHVIDEOMODE } }, /* SDSP LCD + TV + DVI */
350 {KE_KEY, 0x92, { KEY_SWITCHVIDEOMODE } }, /* SDSP CRT + TV + DVI */
351 {KE_KEY, 0x93, { KEY_SWITCHVIDEOMODE } }, /* SDSP LCD + CRT + TV + DVI */
Corentin Chary66a71dd2010-01-25 22:50:11 +0100352 {KE_KEY, 0x95, { KEY_MEDIA } },
353 {KE_KEY, 0x99, { KEY_PHONE } },
AceLan Kao3da4cd22012-10-03 11:26:28 +0200354 {KE_KEY, 0xA0, { KEY_SWITCHVIDEOMODE } }, /* SDSP HDMI only */
355 {KE_KEY, 0xA1, { KEY_SWITCHVIDEOMODE } }, /* SDSP LCD + HDMI */
356 {KE_KEY, 0xA2, { KEY_SWITCHVIDEOMODE } }, /* SDSP CRT + HDMI */
357 {KE_KEY, 0xA3, { KEY_SWITCHVIDEOMODE } }, /* SDSP TV + HDMI */
358 {KE_KEY, 0xA4, { KEY_SWITCHVIDEOMODE } }, /* SDSP LCD + CRT + HDMI */
359 {KE_KEY, 0xA5, { KEY_SWITCHVIDEOMODE } }, /* SDSP LCD + TV + HDMI */
360 {KE_KEY, 0xA6, { KEY_SWITCHVIDEOMODE } }, /* SDSP CRT + TV + HDMI */
361 {KE_KEY, 0xA7, { KEY_SWITCHVIDEOMODE } }, /* SDSP LCD + CRT + TV + HDMI */
Corentin Charya935eae2012-10-03 11:26:26 +0200362 {KE_KEY, 0xB5, { KEY_CALC } },
363 {KE_KEY, 0xC4, { KEY_KBDILLUMUP } },
364 {KE_KEY, 0xC5, { KEY_KBDILLUMDOWN } },
Corentin Chary034ce902009-01-20 16:17:43 +0100365 {KE_END, 0},
366};
367
Corentin Chary66a71dd2010-01-25 22:50:11 +0100368
Corentin Chary85091b72007-01-26 14:04:30 +0100369/*
370 * This function evaluates an ACPI method, given an int as parameter, the
371 * method is searched within the scope of the handle, can be NULL. The output
372 * of the method is written is output, which can also be NULL
373 *
Corentin CHARYf8d1c942008-01-16 16:56:42 +0100374 * returns 0 if write is successful, -1 else.
Corentin Chary85091b72007-01-26 14:04:30 +0100375 */
Corentin Charyd8c67322009-11-28 10:27:51 +0100376static int write_acpi_int_ret(acpi_handle handle, const char *method, int val,
377 struct acpi_buffer *output)
Corentin Chary85091b72007-01-26 14:04:30 +0100378{
Corentin Charybe966662009-08-29 10:28:29 +0200379 struct acpi_object_list params; /* list of input parameters (an int) */
380 union acpi_object in_obj; /* the only param we use */
Corentin Chary85091b72007-01-26 14:04:30 +0100381 acpi_status status;
382
Corentin CHARYf8d1c942008-01-16 16:56:42 +0100383 if (!handle)
Axel Lin9fb866f2010-07-20 15:19:47 -0700384 return -1;
Corentin CHARYf8d1c942008-01-16 16:56:42 +0100385
Corentin Chary85091b72007-01-26 14:04:30 +0100386 params.count = 1;
387 params.pointer = &in_obj;
388 in_obj.type = ACPI_TYPE_INTEGER;
389 in_obj.integer.value = val;
390
391 status = acpi_evaluate_object(handle, (char *)method, &params, output);
Corentin CHARYf8d1c942008-01-16 16:56:42 +0100392 if (status == AE_OK)
393 return 0;
394 else
395 return -1;
Corentin Chary85091b72007-01-26 14:04:30 +0100396}
397
Corentin Charyd8c67322009-11-28 10:27:51 +0100398static int write_acpi_int(acpi_handle handle, const char *method, int val)
399{
400 return write_acpi_int_ret(handle, method, val, NULL);
401}
402
Corentin Charyd99b5772010-01-22 21:20:57 +0100403static int acpi_check_handle(acpi_handle handle, const char *method,
404 acpi_handle *ret)
405{
406 acpi_status status;
407
408 if (method == NULL)
409 return -ENODEV;
410
411 if (ret)
412 status = acpi_get_handle(handle, (char *)method,
413 ret);
414 else {
415 acpi_handle dummy;
416
417 status = acpi_get_handle(handle, (char *)method,
418 &dummy);
419 }
420
421 if (status != AE_OK) {
422 if (ret)
Joe Perches5ad77dc2011-03-29 15:21:35 -0700423 pr_warn("Error finding %s\n", method);
Corentin Charyd99b5772010-01-22 21:20:57 +0100424 return -ENODEV;
425 }
426 return 0;
427}
428
Andy Ross8819de72011-10-14 11:13:35 +0200429static bool asus_check_pega_lucid(struct asus_laptop *asus)
430{
431 return !strcmp(asus->name, DEVICE_NAME_PEGA) &&
432 !acpi_check_handle(asus->handle, METHOD_PEGA_ENABLE, NULL) &&
433 !acpi_check_handle(asus->handle, METHOD_PEGA_DISABLE, NULL) &&
434 !acpi_check_handle(asus->handle, METHOD_PEGA_READ, NULL);
435}
436
Andy Ross33989ba2011-10-14 11:13:36 +0200437static int asus_pega_lucid_set(struct asus_laptop *asus, int unit, bool enable)
438{
439 char *method = enable ? METHOD_PEGA_ENABLE : METHOD_PEGA_DISABLE;
440 return write_acpi_int(asus->handle, method, unit);
441}
442
Andy Rossb23910c2011-10-14 11:13:38 +0200443static int pega_acc_axis(struct asus_laptop *asus, int curr, char *method)
444{
445 int i, delta;
446 unsigned long long val;
447 for (i = 0; i < PEGA_ACC_RETRIES; i++) {
448 acpi_evaluate_integer(asus->handle, method, NULL, &val);
449
450 /* The output is noisy. From reading the ASL
451 * dissassembly, timeout errors are returned with 1's
452 * in the high word, and the lack of locking around
453 * thei hi/lo byte reads means that a transition
454 * between (for example) -1 and 0 could be read as
455 * 0xff00 or 0x00ff. */
456 delta = abs(curr - (short)val);
457 if (delta < 128 && !(val & ~0xffff))
458 break;
459 }
460 return clamp_val((short)val, -PEGA_ACC_CLAMP, PEGA_ACC_CLAMP);
461}
462
463static void pega_accel_poll(struct input_polled_dev *ipd)
464{
465 struct device *parent = ipd->input->dev.parent;
466 struct asus_laptop *asus = dev_get_drvdata(parent);
467
468 /* In some cases, the very first call to poll causes a
469 * recursive fault under the polldev worker. This is
470 * apparently related to very early userspace access to the
471 * device, and perhaps a firmware bug. Fake the first report. */
472 if (!asus->pega_acc_live) {
473 asus->pega_acc_live = true;
474 input_report_abs(ipd->input, ABS_X, 0);
475 input_report_abs(ipd->input, ABS_Y, 0);
476 input_report_abs(ipd->input, ABS_Z, 0);
477 input_sync(ipd->input);
478 return;
479 }
480
481 asus->pega_acc_x = pega_acc_axis(asus, asus->pega_acc_x, METHOD_XLRX);
482 asus->pega_acc_y = pega_acc_axis(asus, asus->pega_acc_y, METHOD_XLRY);
483 asus->pega_acc_z = pega_acc_axis(asus, asus->pega_acc_z, METHOD_XLRZ);
484
485 /* Note transform, convert to "right/up/out" in the native
486 * landscape orientation (i.e. the vector is the direction of
487 * "real up" in the device's cartiesian coordinates). */
488 input_report_abs(ipd->input, ABS_X, -asus->pega_acc_x);
489 input_report_abs(ipd->input, ABS_Y, -asus->pega_acc_y);
490 input_report_abs(ipd->input, ABS_Z, asus->pega_acc_z);
491 input_sync(ipd->input);
492}
493
494static void pega_accel_exit(struct asus_laptop *asus)
495{
496 if (asus->pega_accel_poll) {
497 input_unregister_polled_device(asus->pega_accel_poll);
498 input_free_polled_device(asus->pega_accel_poll);
499 }
500 asus->pega_accel_poll = NULL;
501}
502
503static int pega_accel_init(struct asus_laptop *asus)
504{
505 int err;
506 struct input_polled_dev *ipd;
507
508 if (!asus->is_pega_lucid)
509 return -ENODEV;
510
511 if (acpi_check_handle(asus->handle, METHOD_XLRX, NULL) ||
512 acpi_check_handle(asus->handle, METHOD_XLRY, NULL) ||
513 acpi_check_handle(asus->handle, METHOD_XLRZ, NULL))
514 return -ENODEV;
515
516 ipd = input_allocate_polled_device();
517 if (!ipd)
518 return -ENOMEM;
519
520 ipd->poll = pega_accel_poll;
521 ipd->poll_interval = 125;
522 ipd->poll_interval_min = 50;
523 ipd->poll_interval_max = 2000;
524
525 ipd->input->name = PEGA_ACCEL_DESC;
526 ipd->input->phys = PEGA_ACCEL_NAME "/input0";
527 ipd->input->dev.parent = &asus->platform_device->dev;
528 ipd->input->id.bustype = BUS_HOST;
529
530 set_bit(EV_ABS, ipd->input->evbit);
531 input_set_abs_params(ipd->input, ABS_X,
532 -PEGA_ACC_CLAMP, PEGA_ACC_CLAMP, 0, 0);
533 input_set_abs_params(ipd->input, ABS_Y,
534 -PEGA_ACC_CLAMP, PEGA_ACC_CLAMP, 0, 0);
535 input_set_abs_params(ipd->input, ABS_Z,
536 -PEGA_ACC_CLAMP, PEGA_ACC_CLAMP, 0, 0);
537
538 err = input_register_polled_device(ipd);
539 if (err)
540 goto exit;
541
542 asus->pega_accel_poll = ipd;
543 return 0;
544
545exit:
546 input_free_polled_device(ipd);
547 return err;
548}
549
Corentin Chary17e78f62010-01-13 22:21:33 +0100550/* Generic LED function */
Corentin Charyaee0afb2010-01-26 21:01:34 +0100551static int asus_led_set(struct asus_laptop *asus, const char *method,
Corentin Chary17e78f62010-01-13 22:21:33 +0100552 int value)
Corentin Charybe18cda2007-01-26 14:04:35 +0100553{
Corentin Charyd99b5772010-01-22 21:20:57 +0100554 if (!strcmp(method, METHOD_MLED))
Corentin Chary17e78f62010-01-13 22:21:33 +0100555 value = !value;
Corentin Charyd99b5772010-01-22 21:20:57 +0100556 else if (!strcmp(method, METHOD_GLED))
Corentin Chary17e78f62010-01-13 22:21:33 +0100557 value = !value + 1;
558 else
559 value = !!value;
Corentin Charybe18cda2007-01-26 14:04:35 +0100560
Corentin Charye5593bf2010-01-17 17:20:11 +0100561 return write_acpi_int(asus->handle, method, value);
Corentin Charybe18cda2007-01-26 14:04:35 +0100562}
563
Corentin Charybe4ee822009-12-06 16:27:09 +0100564/*
565 * LEDs
566 */
Corentin Charybe18cda2007-01-26 14:04:35 +0100567/* /sys/class/led handlers */
Corentin Charyaee0afb2010-01-26 21:01:34 +0100568static void asus_led_cdev_set(struct led_classdev *led_cdev,
569 enum led_brightness value)
570{
571 struct asus_led *led = container_of(led_cdev, struct asus_led, led);
572 struct asus_laptop *asus = led->asus;
Corentin Charybe18cda2007-01-26 14:04:35 +0100573
Corentin Charyaee0afb2010-01-26 21:01:34 +0100574 led->wk = !!value;
575 queue_work(asus->led_workqueue, &led->work);
576}
577
578static void asus_led_cdev_update(struct work_struct *work)
579{
580 struct asus_led *led = container_of(work, struct asus_led, work);
581 struct asus_laptop *asus = led->asus;
582
583 asus_led_set(asus, led->method, led->wk);
584}
585
586static enum led_brightness asus_led_cdev_get(struct led_classdev *led_cdev)
587{
588 return led_cdev->brightness;
589}
Corentin Charybe18cda2007-01-26 14:04:35 +0100590
Corentin Charyb7d3fbc2009-08-28 12:56:50 +0000591/*
Corentin Charybe4ee822009-12-06 16:27:09 +0100592 * Keyboard backlight (also a LED)
Corentin Charyb7d3fbc2009-08-28 12:56:50 +0000593 */
Corentin Charyd99b5772010-01-22 21:20:57 +0100594static int asus_kled_lvl(struct asus_laptop *asus)
Corentin Charyb7d3fbc2009-08-28 12:56:50 +0000595{
596 unsigned long long kblv;
597 struct acpi_object_list params;
598 union acpi_object in_obj;
599 acpi_status rv;
600
601 params.count = 1;
602 params.pointer = &in_obj;
603 in_obj.type = ACPI_TYPE_INTEGER;
604 in_obj.integer.value = 2;
605
Corentin Charyd99b5772010-01-22 21:20:57 +0100606 rv = acpi_evaluate_integer(asus->handle, METHOD_KBD_LIGHT_GET,
607 &params, &kblv);
Corentin Charyb7d3fbc2009-08-28 12:56:50 +0000608 if (ACPI_FAILURE(rv)) {
Joe Perches5ad77dc2011-03-29 15:21:35 -0700609 pr_warn("Error reading kled level\n");
Corentin Chary4d441512010-01-13 22:26:24 +0100610 return -ENODEV;
Corentin Charyb7d3fbc2009-08-28 12:56:50 +0000611 }
612 return kblv;
613}
614
Corentin Chary4d441512010-01-13 22:26:24 +0100615static int asus_kled_set(struct asus_laptop *asus, int kblv)
Corentin Charyb7d3fbc2009-08-28 12:56:50 +0000616{
617 if (kblv > 0)
618 kblv = (1 << 7) | (kblv & 0x7F);
619 else
620 kblv = 0;
621
Corentin Charyd99b5772010-01-22 21:20:57 +0100622 if (write_acpi_int(asus->handle, METHOD_KBD_LIGHT_SET, kblv)) {
Joe Perches5ad77dc2011-03-29 15:21:35 -0700623 pr_warn("Keyboard LED display write failed\n");
Corentin Charyb7d3fbc2009-08-28 12:56:50 +0000624 return -EINVAL;
625 }
626 return 0;
627}
628
Corentin Charyaee0afb2010-01-26 21:01:34 +0100629static void asus_kled_cdev_set(struct led_classdev *led_cdev,
630 enum led_brightness value)
Corentin Charyb7d3fbc2009-08-28 12:56:50 +0000631{
Corentin Charyaee0afb2010-01-26 21:01:34 +0100632 struct asus_led *led = container_of(led_cdev, struct asus_led, led);
633 struct asus_laptop *asus = led->asus;
Corentin Chary9129d142009-12-01 22:39:41 +0100634
Corentin Chary060cbce2010-01-28 10:52:40 +0100635 led->wk = value;
Corentin Charyaee0afb2010-01-26 21:01:34 +0100636 queue_work(asus->led_workqueue, &led->work);
Corentin Charyb7d3fbc2009-08-28 12:56:50 +0000637}
638
Corentin Charyaee0afb2010-01-26 21:01:34 +0100639static void asus_kled_cdev_update(struct work_struct *work)
Corentin Charyb7d3fbc2009-08-28 12:56:50 +0000640{
Corentin Charyaee0afb2010-01-26 21:01:34 +0100641 struct asus_led *led = container_of(work, struct asus_led, work);
642 struct asus_laptop *asus = led->asus;
Corentin Chary9129d142009-12-01 22:39:41 +0100643
Corentin Charyaee0afb2010-01-26 21:01:34 +0100644 asus_kled_set(asus, led->wk);
Corentin Charyb7d3fbc2009-08-28 12:56:50 +0000645}
646
Corentin Charyaee0afb2010-01-26 21:01:34 +0100647static enum led_brightness asus_kled_cdev_get(struct led_classdev *led_cdev)
Corentin Charyb7d3fbc2009-08-28 12:56:50 +0000648{
Corentin Charyaee0afb2010-01-26 21:01:34 +0100649 struct asus_led *led = container_of(led_cdev, struct asus_led, led);
650 struct asus_laptop *asus = led->asus;
Corentin Charyd99b5772010-01-22 21:20:57 +0100651
652 return asus_kled_lvl(asus);
Corentin Charyb7d3fbc2009-08-28 12:56:50 +0000653}
654
Corentin Charybe4ee822009-12-06 16:27:09 +0100655static void asus_led_exit(struct asus_laptop *asus)
656{
Corentin Chary774b0672011-12-15 08:27:34 +0100657 if (!IS_ERR_OR_NULL(asus->wled.led.dev))
658 led_classdev_unregister(&asus->wled.led);
659 if (!IS_ERR_OR_NULL(asus->bled.led.dev))
660 led_classdev_unregister(&asus->bled.led);
Axel Lin8fcf71a2011-08-08 17:17:18 +0800661 if (!IS_ERR_OR_NULL(asus->mled.led.dev))
Corentin Charyaee0afb2010-01-26 21:01:34 +0100662 led_classdev_unregister(&asus->mled.led);
Axel Lin8fcf71a2011-08-08 17:17:18 +0800663 if (!IS_ERR_OR_NULL(asus->tled.led.dev))
Corentin Charyaee0afb2010-01-26 21:01:34 +0100664 led_classdev_unregister(&asus->tled.led);
Axel Lin8fcf71a2011-08-08 17:17:18 +0800665 if (!IS_ERR_OR_NULL(asus->pled.led.dev))
Corentin Charyaee0afb2010-01-26 21:01:34 +0100666 led_classdev_unregister(&asus->pled.led);
Axel Lin8fcf71a2011-08-08 17:17:18 +0800667 if (!IS_ERR_OR_NULL(asus->rled.led.dev))
Corentin Charyaee0afb2010-01-26 21:01:34 +0100668 led_classdev_unregister(&asus->rled.led);
Axel Lin8fcf71a2011-08-08 17:17:18 +0800669 if (!IS_ERR_OR_NULL(asus->gled.led.dev))
Corentin Charyaee0afb2010-01-26 21:01:34 +0100670 led_classdev_unregister(&asus->gled.led);
Axel Lin8fcf71a2011-08-08 17:17:18 +0800671 if (!IS_ERR_OR_NULL(asus->kled.led.dev))
Corentin Charyaee0afb2010-01-26 21:01:34 +0100672 led_classdev_unregister(&asus->kled.led);
673 if (asus->led_workqueue) {
674 destroy_workqueue(asus->led_workqueue);
675 asus->led_workqueue = NULL;
Corentin Charybe4ee822009-12-06 16:27:09 +0100676 }
677}
678
679/* Ugly macro, need to fix that later */
Corentin Charyaee0afb2010-01-26 21:01:34 +0100680static int asus_led_register(struct asus_laptop *asus,
681 struct asus_led *led,
682 const char *name, const char *method)
683{
684 struct led_classdev *led_cdev = &led->led;
685
686 if (!method || acpi_check_handle(asus->handle, method, NULL))
Corentin Chary060cbce2010-01-28 10:52:40 +0100687 return 0; /* Led not present */
Corentin Charyaee0afb2010-01-26 21:01:34 +0100688
689 led->asus = asus;
690 led->method = method;
691
692 INIT_WORK(&led->work, asus_led_cdev_update);
693 led_cdev->name = name;
694 led_cdev->brightness_set = asus_led_cdev_set;
695 led_cdev->brightness_get = asus_led_cdev_get;
696 led_cdev->max_brightness = 1;
697 return led_classdev_register(&asus->platform_device->dev, led_cdev);
698}
Corentin Charybe4ee822009-12-06 16:27:09 +0100699
700static int asus_led_init(struct asus_laptop *asus)
701{
Corentin Chary774b0672011-12-15 08:27:34 +0100702 int r = 0;
Corentin Charybe4ee822009-12-06 16:27:09 +0100703
704 /*
Corentin Chary8d38e422011-10-14 11:13:39 +0200705 * The Pegatron Lucid has no physical leds, but all methods are
706 * available in the DSDT...
707 */
708 if (asus->is_pega_lucid)
709 return 0;
710
711 /*
Corentin Charybe4ee822009-12-06 16:27:09 +0100712 * Functions that actually update the LED's are called from a
713 * workqueue. By doing this as separate work rather than when the LED
714 * subsystem asks, we avoid messing with the Asus ACPI stuff during a
715 * potentially bad time, such as a timer interrupt.
716 */
Corentin Charyaee0afb2010-01-26 21:01:34 +0100717 asus->led_workqueue = create_singlethread_workqueue("led_workqueue");
718 if (!asus->led_workqueue)
Corentin Charybe4ee822009-12-06 16:27:09 +0100719 return -ENOMEM;
720
Corentin Chary774b0672011-12-15 08:27:34 +0100721 if (asus->wled_type == TYPE_LED)
722 r = asus_led_register(asus, &asus->wled, "asus::wlan",
723 METHOD_WLAN);
724 if (r)
725 goto error;
726 if (asus->bled_type == TYPE_LED)
727 r = asus_led_register(asus, &asus->bled, "asus::bluetooth",
728 METHOD_BLUETOOTH);
729 if (r)
730 goto error;
Corentin Charyaee0afb2010-01-26 21:01:34 +0100731 r = asus_led_register(asus, &asus->mled, "asus::mail", METHOD_MLED);
732 if (r)
733 goto error;
734 r = asus_led_register(asus, &asus->tled, "asus::touchpad", METHOD_TLED);
735 if (r)
736 goto error;
737 r = asus_led_register(asus, &asus->rled, "asus::record", METHOD_RLED);
738 if (r)
739 goto error;
740 r = asus_led_register(asus, &asus->pled, "asus::phone", METHOD_PLED);
741 if (r)
742 goto error;
743 r = asus_led_register(asus, &asus->gled, "asus::gaming", METHOD_GLED);
744 if (r)
745 goto error;
Corentin Charyd99b5772010-01-22 21:20:57 +0100746 if (!acpi_check_handle(asus->handle, METHOD_KBD_LIGHT_SET, NULL) &&
Corentin Charyaee0afb2010-01-26 21:01:34 +0100747 !acpi_check_handle(asus->handle, METHOD_KBD_LIGHT_GET, NULL)) {
748 struct asus_led *led = &asus->kled;
749 struct led_classdev *cdev = &led->led;
750
751 led->asus = asus;
752
753 INIT_WORK(&led->work, asus_kled_cdev_update);
754 cdev->name = "asus::kbd_backlight";
755 cdev->brightness_set = asus_kled_cdev_set;
756 cdev->brightness_get = asus_kled_cdev_get;
757 cdev->max_brightness = 3;
758 r = led_classdev_register(&asus->platform_device->dev, cdev);
759 }
Corentin Charybe4ee822009-12-06 16:27:09 +0100760error:
Corentin Charyaee0afb2010-01-26 21:01:34 +0100761 if (r)
Corentin Charybe4ee822009-12-06 16:27:09 +0100762 asus_led_exit(asus);
Corentin Charyaee0afb2010-01-26 21:01:34 +0100763 return r;
Corentin Charybe4ee822009-12-06 16:27:09 +0100764}
765
766/*
767 * Backlight device
768 */
Corentin Chary4d441512010-01-13 22:26:24 +0100769static int asus_read_brightness(struct backlight_device *bd)
Corentin Chary6b7091e2007-01-26 14:04:45 +0100770{
Corentin Charyd99b5772010-01-22 21:20:57 +0100771 struct asus_laptop *asus = bl_get_data(bd);
Matthew Wilcox27663c52008-10-10 02:22:59 -0400772 unsigned long long value;
Corentin Chary9a816852007-03-11 10:25:38 +0100773 acpi_status rv = AE_OK;
Corentin Chary6b7091e2007-01-26 14:04:45 +0100774
Corentin Charyd99b5772010-01-22 21:20:57 +0100775 rv = acpi_evaluate_integer(asus->handle, METHOD_BRIGHTNESS_GET,
776 NULL, &value);
Corentin Chary9a816852007-03-11 10:25:38 +0100777 if (ACPI_FAILURE(rv))
Joe Perches5ad77dc2011-03-29 15:21:35 -0700778 pr_warn("Error reading brightness\n");
Corentin Chary6b7091e2007-01-26 14:04:45 +0100779
780 return value;
781}
782
Corentin Chary4d441512010-01-13 22:26:24 +0100783static int asus_set_brightness(struct backlight_device *bd, int value)
Corentin Chary6b7091e2007-01-26 14:04:45 +0100784{
Corentin Charyd99b5772010-01-22 21:20:57 +0100785 struct asus_laptop *asus = bl_get_data(bd);
786
787 if (write_acpi_int(asus->handle, METHOD_BRIGHTNESS_SET, value)) {
Joe Perches5ad77dc2011-03-29 15:21:35 -0700788 pr_warn("Error changing brightness\n");
Corentin Charye5b50f62009-11-28 10:19:55 +0100789 return -EIO;
Corentin Chary6b7091e2007-01-26 14:04:45 +0100790 }
Corentin Charye5b50f62009-11-28 10:19:55 +0100791 return 0;
Corentin Chary6b7091e2007-01-26 14:04:45 +0100792}
793
794static int update_bl_status(struct backlight_device *bd)
795{
Richard Purdie599a52d2007-02-10 23:07:48 +0000796 int value = bd->props.brightness;
Corentin Chary6b7091e2007-01-26 14:04:45 +0100797
Corentin Chary3b81cf92011-02-06 13:27:31 +0100798 return asus_set_brightness(bd, value);
Corentin Chary6b7091e2007-01-26 14:04:45 +0100799}
800
Lionel Debrouxacc24722010-11-16 14:14:02 +0100801static const struct backlight_ops asusbl_ops = {
Corentin Chary4d441512010-01-13 22:26:24 +0100802 .get_brightness = asus_read_brightness,
Corentin Charybe4ee822009-12-06 16:27:09 +0100803 .update_status = update_bl_status,
804};
805
Corentin Charya539df52010-01-25 22:53:21 +0100806static int asus_backlight_notify(struct asus_laptop *asus)
807{
808 struct backlight_device *bd = asus->backlight_device;
809 int old = bd->props.brightness;
810
811 backlight_force_update(bd, BACKLIGHT_UPDATE_HOTKEY);
812
813 return old;
814}
815
Corentin Charybe4ee822009-12-06 16:27:09 +0100816static int asus_backlight_init(struct asus_laptop *asus)
817{
818 struct backlight_device *bd;
Matthew Garretta19a6ee2010-02-17 16:39:44 -0500819 struct backlight_properties props;
Corentin Charybe4ee822009-12-06 16:27:09 +0100820
Corentin Chary71e687d2010-08-24 09:30:44 +0200821 if (acpi_check_handle(asus->handle, METHOD_BRIGHTNESS_GET, NULL) ||
Corentin Chary3b81cf92011-02-06 13:27:31 +0100822 acpi_check_handle(asus->handle, METHOD_BRIGHTNESS_SET, NULL))
Corentin Chary71e687d2010-08-24 09:30:44 +0200823 return 0;
Matthew Garretta19a6ee2010-02-17 16:39:44 -0500824
Corentin Chary71e687d2010-08-24 09:30:44 +0200825 memset(&props, 0, sizeof(struct backlight_properties));
826 props.max_brightness = 15;
Matthew Garrettbb7ca742011-03-22 16:30:21 -0700827 props.type = BACKLIGHT_PLATFORM;
Corentin Charybe4ee822009-12-06 16:27:09 +0100828
Corentin Chary71e687d2010-08-24 09:30:44 +0200829 bd = backlight_device_register(ASUS_LAPTOP_FILE,
830 &asus->platform_device->dev, asus,
831 &asusbl_ops, &props);
832 if (IS_ERR(bd)) {
833 pr_err("Could not register asus backlight device\n");
834 asus->backlight_device = NULL;
835 return PTR_ERR(bd);
Corentin Charybe4ee822009-12-06 16:27:09 +0100836 }
Corentin Chary71e687d2010-08-24 09:30:44 +0200837
838 asus->backlight_device = bd;
839 bd->props.brightness = asus_read_brightness(bd);
840 bd->props.power = FB_BLANK_UNBLANK;
841 backlight_update_status(bd);
Corentin Charybe4ee822009-12-06 16:27:09 +0100842 return 0;
843}
844
845static void asus_backlight_exit(struct asus_laptop *asus)
846{
847 if (asus->backlight_device)
848 backlight_device_unregister(asus->backlight_device);
Corentin Charya539df52010-01-25 22:53:21 +0100849 asus->backlight_device = NULL;
Corentin Charybe4ee822009-12-06 16:27:09 +0100850}
851
Corentin Chary85091b72007-01-26 14:04:30 +0100852/*
853 * Platform device handlers
854 */
855
856/*
857 * We write our info in page, we begin at offset off and cannot write more
858 * than count bytes. We set eof to 1 if we handle those 2 values. We return the
859 * number of bytes written in page
860 */
861static ssize_t show_infos(struct device *dev,
Len Brown8def05f2007-01-30 01:46:43 -0500862 struct device_attribute *attr, char *page)
Corentin Chary85091b72007-01-26 14:04:30 +0100863{
Corentin Chary9129d142009-12-01 22:39:41 +0100864 struct asus_laptop *asus = dev_get_drvdata(dev);
Corentin Chary85091b72007-01-26 14:04:30 +0100865 int len = 0;
Matthew Wilcox27663c52008-10-10 02:22:59 -0400866 unsigned long long temp;
Corentin Charybe966662009-08-29 10:28:29 +0200867 char buf[16]; /* enough for all info */
Corentin Chary9a816852007-03-11 10:25:38 +0100868 acpi_status rv = AE_OK;
869
Corentin Chary85091b72007-01-26 14:04:30 +0100870 /*
Corentin Chary060cbce2010-01-28 10:52:40 +0100871 * We use the easy way, we don't care of off and count,
872 * so we don't set eof to 1
Corentin Chary85091b72007-01-26 14:04:30 +0100873 */
874
Corentin Chary50a90c42009-11-30 21:55:12 +0100875 len += sprintf(page, ASUS_LAPTOP_NAME " " ASUS_LAPTOP_VERSION "\n");
876 len += sprintf(page + len, "Model reference : %s\n", asus->name);
Corentin Chary85091b72007-01-26 14:04:30 +0100877 /*
878 * The SFUN method probably allows the original driver to get the list
879 * of features supported by a given model. For now, 0x0100 or 0x0800
880 * bit signifies that the laptop is equipped with a Wi-Fi MiniPCI card.
881 * The significance of others is yet to be found.
882 */
Corentin Chary50a90c42009-11-30 21:55:12 +0100883 rv = acpi_evaluate_integer(asus->handle, "SFUN", NULL, &temp);
Corentin Chary9a816852007-03-11 10:25:38 +0100884 if (!ACPI_FAILURE(rv))
Corentin Chary1d4a3802009-08-28 12:56:46 +0000885 len += sprintf(page + len, "SFUN value : %#x\n",
886 (uint) temp);
887 /*
888 * The HWRS method return informations about the hardware.
889 * 0x80 bit is for WLAN, 0x100 for Bluetooth.
Ben Hutchingscb7da022012-11-29 09:12:37 +0100890 * 0x40 for WWAN, 0x10 for WIMAX.
Corentin Chary1d4a3802009-08-28 12:56:46 +0000891 * The significance of others is yet to be found.
Ben Hutchingscb7da022012-11-29 09:12:37 +0100892 * We don't currently use this for device detection, and it
893 * takes several seconds to run on some systems.
Corentin Chary1d4a3802009-08-28 12:56:46 +0000894 */
Corentin Chary8871e992012-08-20 23:01:51 +0200895 rv = acpi_evaluate_integer(asus->handle, "HWRS", NULL, &temp);
Corentin Chary1d4a3802009-08-28 12:56:46 +0000896 if (!ACPI_FAILURE(rv))
Corentin Chary8871e992012-08-20 23:01:51 +0200897 len += sprintf(page + len, "HWRS value : %#x\n",
Corentin Chary9a816852007-03-11 10:25:38 +0100898 (uint) temp);
Corentin Chary85091b72007-01-26 14:04:30 +0100899 /*
900 * Another value for userspace: the ASYM method returns 0x02 for
901 * battery low and 0x04 for battery critical, its readings tend to be
902 * more accurate than those provided by _BST.
903 * Note: since not all the laptops provide this method, errors are
904 * silently ignored.
905 */
Corentin Chary50a90c42009-11-30 21:55:12 +0100906 rv = acpi_evaluate_integer(asus->handle, "ASYM", NULL, &temp);
Corentin Chary9a816852007-03-11 10:25:38 +0100907 if (!ACPI_FAILURE(rv))
Corentin Chary1d4a3802009-08-28 12:56:46 +0000908 len += sprintf(page + len, "ASYM value : %#x\n",
Corentin Chary9a816852007-03-11 10:25:38 +0100909 (uint) temp);
Corentin Chary7c247642009-11-30 22:13:54 +0100910 if (asus->dsdt_info) {
911 snprintf(buf, 16, "%d", asus->dsdt_info->length);
Corentin Chary85091b72007-01-26 14:04:30 +0100912 len += sprintf(page + len, "DSDT length : %s\n", buf);
Corentin Chary7c247642009-11-30 22:13:54 +0100913 snprintf(buf, 16, "%d", asus->dsdt_info->checksum);
Corentin Chary85091b72007-01-26 14:04:30 +0100914 len += sprintf(page + len, "DSDT checksum : %s\n", buf);
Corentin Chary7c247642009-11-30 22:13:54 +0100915 snprintf(buf, 16, "%d", asus->dsdt_info->revision);
Corentin Chary85091b72007-01-26 14:04:30 +0100916 len += sprintf(page + len, "DSDT revision : %s\n", buf);
Corentin Chary7c247642009-11-30 22:13:54 +0100917 snprintf(buf, 7, "%s", asus->dsdt_info->oem_id);
Corentin Chary85091b72007-01-26 14:04:30 +0100918 len += sprintf(page + len, "OEM id : %s\n", buf);
Corentin Chary7c247642009-11-30 22:13:54 +0100919 snprintf(buf, 9, "%s", asus->dsdt_info->oem_table_id);
Corentin Chary85091b72007-01-26 14:04:30 +0100920 len += sprintf(page + len, "OEM table id : %s\n", buf);
Corentin Chary7c247642009-11-30 22:13:54 +0100921 snprintf(buf, 16, "%x", asus->dsdt_info->oem_revision);
Corentin Chary85091b72007-01-26 14:04:30 +0100922 len += sprintf(page + len, "OEM revision : 0x%s\n", buf);
Corentin Chary7c247642009-11-30 22:13:54 +0100923 snprintf(buf, 5, "%s", asus->dsdt_info->asl_compiler_id);
Corentin Chary85091b72007-01-26 14:04:30 +0100924 len += sprintf(page + len, "ASL comp vendor id : %s\n", buf);
Corentin Chary7c247642009-11-30 22:13:54 +0100925 snprintf(buf, 16, "%x", asus->dsdt_info->asl_compiler_revision);
Corentin Chary85091b72007-01-26 14:04:30 +0100926 len += sprintf(page + len, "ASL comp revision : 0x%s\n", buf);
927 }
928
929 return len;
930}
931
932static int parse_arg(const char *buf, unsigned long count, int *val)
933{
934 if (!count)
935 return 0;
936 if (count > 31)
937 return -EINVAL;
938 if (sscanf(buf, "%i", val) != 1)
939 return -EINVAL;
940 return count;
941}
942
Corentin Chary17e78f62010-01-13 22:21:33 +0100943static ssize_t sysfs_acpi_set(struct asus_laptop *asus,
944 const char *buf, size_t count,
Corentin Charyd99b5772010-01-22 21:20:57 +0100945 const char *method)
Corentin Chary4564de12007-01-26 14:04:40 +0100946{
947 int rv, value;
948 int out = 0;
949
950 rv = parse_arg(buf, count, &value);
951 if (rv > 0)
952 out = value ? 1 : 0;
953
Corentin Charyd99b5772010-01-22 21:20:57 +0100954 if (write_acpi_int(asus->handle, method, value))
Corentin Chary17e78f62010-01-13 22:21:33 +0100955 return -ENODEV;
Corentin Chary4564de12007-01-26 14:04:40 +0100956 return rv;
957}
958
959/*
Corentin Chary722ad972007-01-26 14:04:55 +0100960 * LEDD display
961 */
962static ssize_t show_ledd(struct device *dev,
963 struct device_attribute *attr, char *buf)
964{
Corentin Chary9129d142009-12-01 22:39:41 +0100965 struct asus_laptop *asus = dev_get_drvdata(dev);
966
Corentin Chary50a90c42009-11-30 21:55:12 +0100967 return sprintf(buf, "0x%08x\n", asus->ledd_status);
Corentin Chary722ad972007-01-26 14:04:55 +0100968}
969
970static ssize_t store_ledd(struct device *dev, struct device_attribute *attr,
971 const char *buf, size_t count)
972{
Corentin Chary9129d142009-12-01 22:39:41 +0100973 struct asus_laptop *asus = dev_get_drvdata(dev);
Corentin Chary722ad972007-01-26 14:04:55 +0100974 int rv, value;
975
976 rv = parse_arg(buf, count, &value);
977 if (rv > 0) {
Axel Lin6a984a02010-07-20 15:19:48 -0700978 if (write_acpi_int(asus->handle, METHOD_LEDD, value)) {
Joe Perches5ad77dc2011-03-29 15:21:35 -0700979 pr_warn("LED display write failed\n");
Axel Lin6a984a02010-07-20 15:19:48 -0700980 return -ENODEV;
981 }
982 asus->ledd_status = (u32) value;
Corentin Chary722ad972007-01-26 14:04:55 +0100983 }
984 return rv;
985}
986
987/*
Corentin Charyaa9df932010-01-13 21:49:10 +0100988 * Wireless
989 */
990static int asus_wireless_status(struct asus_laptop *asus, int mask)
991{
992 unsigned long long status;
993 acpi_status rv = AE_OK;
994
995 if (!asus->have_rsts)
996 return (asus->wireless_status & mask) ? 1 : 0;
997
Corentin Charyd99b5772010-01-22 21:20:57 +0100998 rv = acpi_evaluate_integer(asus->handle, METHOD_WL_STATUS,
999 NULL, &status);
Corentin Charyaa9df932010-01-13 21:49:10 +01001000 if (ACPI_FAILURE(rv)) {
Joe Perches5ad77dc2011-03-29 15:21:35 -07001001 pr_warn("Error reading Wireless status\n");
Corentin Charyaa9df932010-01-13 21:49:10 +01001002 return -EINVAL;
1003 }
1004 return !!(status & mask);
1005}
1006
1007/*
Corentin Chary4564de12007-01-26 14:04:40 +01001008 * WLAN
1009 */
Corentin Charye5593bf2010-01-17 17:20:11 +01001010static int asus_wlan_set(struct asus_laptop *asus, int status)
1011{
1012 if (write_acpi_int(asus->handle, METHOD_WLAN, !!status)) {
Joe Perches5ad77dc2011-03-29 15:21:35 -07001013 pr_warn("Error setting wlan status to %d\n", status);
Corentin Charye5593bf2010-01-17 17:20:11 +01001014 return -EIO;
1015 }
1016 return 0;
1017}
1018
Corentin Chary4564de12007-01-26 14:04:40 +01001019static ssize_t show_wlan(struct device *dev,
1020 struct device_attribute *attr, char *buf)
1021{
Corentin Chary9129d142009-12-01 22:39:41 +01001022 struct asus_laptop *asus = dev_get_drvdata(dev);
1023
Corentin Chary17e78f62010-01-13 22:21:33 +01001024 return sprintf(buf, "%d\n", asus_wireless_status(asus, WL_RSTS));
Corentin Chary4564de12007-01-26 14:04:40 +01001025}
1026
1027static ssize_t store_wlan(struct device *dev, struct device_attribute *attr,
1028 const char *buf, size_t count)
1029{
Corentin Chary9129d142009-12-01 22:39:41 +01001030 struct asus_laptop *asus = dev_get_drvdata(dev);
1031
Corentin Charyd99b5772010-01-22 21:20:57 +01001032 return sysfs_acpi_set(asus, buf, count, METHOD_WLAN);
Corentin Chary4564de12007-01-26 14:04:40 +01001033}
1034
Corentin Chary774b0672011-12-15 08:27:34 +01001035/*e
Corentin Chary4564de12007-01-26 14:04:40 +01001036 * Bluetooth
1037 */
Corentin Charye5593bf2010-01-17 17:20:11 +01001038static int asus_bluetooth_set(struct asus_laptop *asus, int status)
1039{
1040 if (write_acpi_int(asus->handle, METHOD_BLUETOOTH, !!status)) {
Joe Perches5ad77dc2011-03-29 15:21:35 -07001041 pr_warn("Error setting bluetooth status to %d\n", status);
Corentin Charye5593bf2010-01-17 17:20:11 +01001042 return -EIO;
1043 }
1044 return 0;
1045}
1046
Corentin Chary4564de12007-01-26 14:04:40 +01001047static ssize_t show_bluetooth(struct device *dev,
1048 struct device_attribute *attr, char *buf)
1049{
Corentin Chary9129d142009-12-01 22:39:41 +01001050 struct asus_laptop *asus = dev_get_drvdata(dev);
1051
Corentin Chary17e78f62010-01-13 22:21:33 +01001052 return sprintf(buf, "%d\n", asus_wireless_status(asus, BT_RSTS));
Corentin Chary4564de12007-01-26 14:04:40 +01001053}
1054
Len Brown8def05f2007-01-30 01:46:43 -05001055static ssize_t store_bluetooth(struct device *dev,
1056 struct device_attribute *attr, const char *buf,
1057 size_t count)
Corentin Chary4564de12007-01-26 14:04:40 +01001058{
Corentin Chary9129d142009-12-01 22:39:41 +01001059 struct asus_laptop *asus = dev_get_drvdata(dev);
1060
Corentin Charyd99b5772010-01-22 21:20:57 +01001061 return sysfs_acpi_set(asus, buf, count, METHOD_BLUETOOTH);
Corentin Chary4564de12007-01-26 14:04:40 +01001062}
1063
Corentin Chary78127b42007-01-26 14:04:49 +01001064/*
Corentin Charyba1ff5b2010-11-14 17:40:12 +01001065 * Wimax
1066 */
1067static int asus_wimax_set(struct asus_laptop *asus, int status)
1068{
1069 if (write_acpi_int(asus->handle, METHOD_WIMAX, !!status)) {
Joe Perches5ad77dc2011-03-29 15:21:35 -07001070 pr_warn("Error setting wimax status to %d\n", status);
Corentin Charyba1ff5b2010-11-14 17:40:12 +01001071 return -EIO;
1072 }
1073 return 0;
1074}
1075
1076static ssize_t show_wimax(struct device *dev,
1077 struct device_attribute *attr, char *buf)
1078{
1079 struct asus_laptop *asus = dev_get_drvdata(dev);
1080
1081 return sprintf(buf, "%d\n", asus_wireless_status(asus, WM_RSTS));
1082}
1083
1084static ssize_t store_wimax(struct device *dev,
1085 struct device_attribute *attr, const char *buf,
1086 size_t count)
1087{
1088 struct asus_laptop *asus = dev_get_drvdata(dev);
1089
1090 return sysfs_acpi_set(asus, buf, count, METHOD_WIMAX);
1091}
1092
1093/*
1094 * Wwan
1095 */
1096static int asus_wwan_set(struct asus_laptop *asus, int status)
1097{
1098 if (write_acpi_int(asus->handle, METHOD_WWAN, !!status)) {
Joe Perches5ad77dc2011-03-29 15:21:35 -07001099 pr_warn("Error setting wwan status to %d\n", status);
Corentin Charyba1ff5b2010-11-14 17:40:12 +01001100 return -EIO;
1101 }
1102 return 0;
1103}
1104
1105static ssize_t show_wwan(struct device *dev,
1106 struct device_attribute *attr, char *buf)
1107{
1108 struct asus_laptop *asus = dev_get_drvdata(dev);
1109
1110 return sprintf(buf, "%d\n", asus_wireless_status(asus, WW_RSTS));
1111}
1112
1113static ssize_t store_wwan(struct device *dev,
1114 struct device_attribute *attr, const char *buf,
1115 size_t count)
1116{
1117 struct asus_laptop *asus = dev_get_drvdata(dev);
1118
1119 return sysfs_acpi_set(asus, buf, count, METHOD_WWAN);
1120}
1121
1122/*
Corentin Chary78127b42007-01-26 14:04:49 +01001123 * Display
1124 */
Corentin Chary4d441512010-01-13 22:26:24 +01001125static void asus_set_display(struct asus_laptop *asus, int value)
Corentin Chary78127b42007-01-26 14:04:49 +01001126{
1127 /* no sanity check needed for now */
Corentin Charyd99b5772010-01-22 21:20:57 +01001128 if (write_acpi_int(asus->handle, METHOD_SWITCH_DISPLAY, value))
Joe Perches5ad77dc2011-03-29 15:21:35 -07001129 pr_warn("Error setting display\n");
Corentin Chary78127b42007-01-26 14:04:49 +01001130 return;
1131}
1132
Corentin Chary78127b42007-01-26 14:04:49 +01001133/*
1134 * Experimental support for display switching. As of now: 1 should activate
1135 * the LCD output, 2 should do for CRT, 4 for TV-Out and 8 for DVI.
1136 * Any combination (bitwise) of these will suffice. I never actually tested 4
1137 * displays hooked up simultaneously, so be warned. See the acpi4asus README
1138 * for more info.
1139 */
1140static ssize_t store_disp(struct device *dev, struct device_attribute *attr,
1141 const char *buf, size_t count)
1142{
Corentin Chary9129d142009-12-01 22:39:41 +01001143 struct asus_laptop *asus = dev_get_drvdata(dev);
Corentin Chary78127b42007-01-26 14:04:49 +01001144 int rv, value;
1145
1146 rv = parse_arg(buf, count, &value);
1147 if (rv > 0)
Corentin Chary4d441512010-01-13 22:26:24 +01001148 asus_set_display(asus, value);
Corentin Chary78127b42007-01-26 14:04:49 +01001149 return rv;
1150}
1151
Corentin Chary8b857352007-01-26 14:04:58 +01001152/*
1153 * Light Sens
1154 */
Corentin Chary4d441512010-01-13 22:26:24 +01001155static void asus_als_switch(struct asus_laptop *asus, int value)
Corentin Chary8b857352007-01-26 14:04:58 +01001156{
Andy Ross33989ba2011-10-14 11:13:36 +02001157 int ret;
1158
1159 if (asus->is_pega_lucid) {
1160 ret = asus_pega_lucid_set(asus, PEGA_ALS, value);
1161 if (!ret)
1162 ret = asus_pega_lucid_set(asus, PEGA_ALS_POWER, value);
1163 } else {
1164 ret = write_acpi_int(asus->handle, METHOD_ALS_CONTROL, value);
1165 }
1166 if (ret)
1167 pr_warning("Error setting light sensor switch\n");
1168
Corentin Chary50a90c42009-11-30 21:55:12 +01001169 asus->light_switch = value;
Corentin Chary8b857352007-01-26 14:04:58 +01001170}
1171
1172static ssize_t show_lssw(struct device *dev,
1173 struct device_attribute *attr, char *buf)
1174{
Corentin Chary9129d142009-12-01 22:39:41 +01001175 struct asus_laptop *asus = dev_get_drvdata(dev);
1176
Corentin Chary50a90c42009-11-30 21:55:12 +01001177 return sprintf(buf, "%d\n", asus->light_switch);
Corentin Chary8b857352007-01-26 14:04:58 +01001178}
1179
1180static ssize_t store_lssw(struct device *dev, struct device_attribute *attr,
1181 const char *buf, size_t count)
1182{
Corentin Chary9129d142009-12-01 22:39:41 +01001183 struct asus_laptop *asus = dev_get_drvdata(dev);
Corentin Chary8b857352007-01-26 14:04:58 +01001184 int rv, value;
1185
1186 rv = parse_arg(buf, count, &value);
1187 if (rv > 0)
Corentin Chary4d441512010-01-13 22:26:24 +01001188 asus_als_switch(asus, value ? 1 : 0);
Corentin Chary8b857352007-01-26 14:04:58 +01001189
1190 return rv;
1191}
1192
Corentin Chary4d441512010-01-13 22:26:24 +01001193static void asus_als_level(struct asus_laptop *asus, int value)
Corentin Chary8b857352007-01-26 14:04:58 +01001194{
Corentin Charyd99b5772010-01-22 21:20:57 +01001195 if (write_acpi_int(asus->handle, METHOD_ALS_LEVEL, value))
Joe Perches5ad77dc2011-03-29 15:21:35 -07001196 pr_warn("Error setting light sensor level\n");
Corentin Chary50a90c42009-11-30 21:55:12 +01001197 asus->light_level = value;
Corentin Chary8b857352007-01-26 14:04:58 +01001198}
1199
1200static ssize_t show_lslvl(struct device *dev,
1201 struct device_attribute *attr, char *buf)
1202{
Corentin Chary9129d142009-12-01 22:39:41 +01001203 struct asus_laptop *asus = dev_get_drvdata(dev);
1204
Corentin Chary50a90c42009-11-30 21:55:12 +01001205 return sprintf(buf, "%d\n", asus->light_level);
Corentin Chary8b857352007-01-26 14:04:58 +01001206}
1207
1208static ssize_t store_lslvl(struct device *dev, struct device_attribute *attr,
1209 const char *buf, size_t count)
1210{
Corentin Chary9129d142009-12-01 22:39:41 +01001211 struct asus_laptop *asus = dev_get_drvdata(dev);
Corentin Chary8b857352007-01-26 14:04:58 +01001212 int rv, value;
1213
1214 rv = parse_arg(buf, count, &value);
1215 if (rv > 0) {
1216 value = (0 < value) ? ((15 < value) ? 15 : value) : 0;
1217 /* 0 <= value <= 15 */
Corentin Chary4d441512010-01-13 22:26:24 +01001218 asus_als_level(asus, value);
Corentin Chary8b857352007-01-26 14:04:58 +01001219 }
1220
1221 return rv;
1222}
1223
Andy Ross33989ba2011-10-14 11:13:36 +02001224static int pega_int_read(struct asus_laptop *asus, int arg, int *result)
1225{
1226 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
1227 int err = write_acpi_int_ret(asus->handle, METHOD_PEGA_READ, arg,
1228 &buffer);
1229 if (!err) {
1230 union acpi_object *obj = buffer.pointer;
1231 if (obj && obj->type == ACPI_TYPE_INTEGER)
1232 *result = obj->integer.value;
1233 else
1234 err = -EIO;
1235 }
1236 return err;
1237}
1238
1239static ssize_t show_lsvalue(struct device *dev,
1240 struct device_attribute *attr, char *buf)
1241{
1242 struct asus_laptop *asus = dev_get_drvdata(dev);
1243 int err, hi, lo;
1244
1245 err = pega_int_read(asus, PEGA_READ_ALS_H, &hi);
1246 if (!err)
1247 err = pega_int_read(asus, PEGA_READ_ALS_L, &lo);
1248 if (!err)
1249 return sprintf(buf, "%d\n", 10 * hi + lo);
1250 return err;
1251}
1252
Corentin Charye539c2f2007-05-06 14:47:06 +02001253/*
1254 * GPS
1255 */
Corentin Chary6358bf22010-01-13 21:55:44 +01001256static int asus_gps_status(struct asus_laptop *asus)
1257{
1258 unsigned long long status;
1259 acpi_status rv = AE_OK;
1260
Corentin Charyd99b5772010-01-22 21:20:57 +01001261 rv = acpi_evaluate_integer(asus->handle, METHOD_GPS_STATUS,
1262 NULL, &status);
Corentin Chary6358bf22010-01-13 21:55:44 +01001263 if (ACPI_FAILURE(rv)) {
Joe Perches5ad77dc2011-03-29 15:21:35 -07001264 pr_warn("Error reading GPS status\n");
Corentin Chary6358bf22010-01-13 21:55:44 +01001265 return -ENODEV;
1266 }
1267 return !!status;
1268}
1269
1270static int asus_gps_switch(struct asus_laptop *asus, int status)
1271{
Corentin Charyd99b5772010-01-22 21:20:57 +01001272 const char *meth = status ? METHOD_GPS_ON : METHOD_GPS_OFF;
Corentin Chary6358bf22010-01-13 21:55:44 +01001273
Corentin Charyd99b5772010-01-22 21:20:57 +01001274 if (write_acpi_int(asus->handle, meth, 0x02))
Corentin Chary6358bf22010-01-13 21:55:44 +01001275 return -ENODEV;
1276 return 0;
1277}
1278
Corentin Charye539c2f2007-05-06 14:47:06 +02001279static ssize_t show_gps(struct device *dev,
1280 struct device_attribute *attr, char *buf)
1281{
Corentin Chary9129d142009-12-01 22:39:41 +01001282 struct asus_laptop *asus = dev_get_drvdata(dev);
1283
Corentin Chary6358bf22010-01-13 21:55:44 +01001284 return sprintf(buf, "%d\n", asus_gps_status(asus));
Corentin Charye539c2f2007-05-06 14:47:06 +02001285}
1286
1287static ssize_t store_gps(struct device *dev, struct device_attribute *attr,
1288 const char *buf, size_t count)
1289{
Corentin Chary060cbce2010-01-28 10:52:40 +01001290 struct asus_laptop *asus = dev_get_drvdata(dev);
Corentin Chary6358bf22010-01-13 21:55:44 +01001291 int rv, value;
1292 int ret;
Corentin Chary9129d142009-12-01 22:39:41 +01001293
Corentin Chary6358bf22010-01-13 21:55:44 +01001294 rv = parse_arg(buf, count, &value);
1295 if (rv <= 0)
1296 return -EINVAL;
1297 ret = asus_gps_switch(asus, !!value);
1298 if (ret)
1299 return ret;
Corentin Chary40969c72011-12-15 08:27:33 +01001300 rfkill_set_sw_state(asus->gps.rfkill, !value);
Corentin Chary6358bf22010-01-13 21:55:44 +01001301 return rv;
Corentin Charye539c2f2007-05-06 14:47:06 +02001302}
1303
Corentin Chary034ce902009-01-20 16:17:43 +01001304/*
Corentin Chary18e13112010-01-25 23:29:24 +01001305 * rfkill
1306 */
1307static int asus_gps_rfkill_set(void *data, bool blocked)
1308{
Corentin Chary23f45c32010-08-24 09:30:46 +02001309 struct asus_laptop *asus = data;
Corentin Chary18e13112010-01-25 23:29:24 +01001310
Corentin Chary23f45c32010-08-24 09:30:46 +02001311 return asus_gps_switch(asus, !blocked);
Corentin Chary18e13112010-01-25 23:29:24 +01001312}
1313
1314static const struct rfkill_ops asus_gps_rfkill_ops = {
1315 .set_block = asus_gps_rfkill_set,
1316};
1317
Corentin Chary774b0672011-12-15 08:27:34 +01001318static int asus_rfkill_set(void *data, bool blocked)
1319{
1320 struct asus_rfkill *rfk = data;
1321 struct asus_laptop *asus = rfk->asus;
1322
1323 if (rfk->control_id == WL_RSTS)
1324 return asus_wlan_set(asus, !blocked);
1325 else if (rfk->control_id == BT_RSTS)
1326 return asus_bluetooth_set(asus, !blocked);
Corentin Chary3c8671f2011-12-15 08:27:35 +01001327 else if (rfk->control_id == WM_RSTS)
1328 return asus_wimax_set(asus, !blocked);
1329 else if (rfk->control_id == WW_RSTS)
1330 return asus_wwan_set(asus, !blocked);
Corentin Chary774b0672011-12-15 08:27:34 +01001331
1332 return -EINVAL;
1333}
1334
1335static const struct rfkill_ops asus_rfkill_ops = {
1336 .set_block = asus_rfkill_set,
1337};
1338
Corentin Chary40969c72011-12-15 08:27:33 +01001339static void asus_rfkill_terminate(struct asus_rfkill *rfk)
1340{
1341 if (!rfk->rfkill)
1342 return ;
1343
1344 rfkill_unregister(rfk->rfkill);
1345 rfkill_destroy(rfk->rfkill);
1346 rfk->rfkill = NULL;
1347}
1348
Corentin Chary18e13112010-01-25 23:29:24 +01001349static void asus_rfkill_exit(struct asus_laptop *asus)
1350{
Corentin Chary40969c72011-12-15 08:27:33 +01001351 asus_rfkill_terminate(&asus->wwan);
1352 asus_rfkill_terminate(&asus->bluetooth);
1353 asus_rfkill_terminate(&asus->wlan);
1354 asus_rfkill_terminate(&asus->gps);
Corentin Chary18e13112010-01-25 23:29:24 +01001355}
1356
Corentin Chary774b0672011-12-15 08:27:34 +01001357static int asus_rfkill_setup(struct asus_laptop *asus, struct asus_rfkill *rfk,
1358 const char *name, int control_id, int type,
1359 const struct rfkill_ops *ops)
Corentin Chary18e13112010-01-25 23:29:24 +01001360{
1361 int result;
1362
Corentin Chary774b0672011-12-15 08:27:34 +01001363 rfk->control_id = control_id;
1364 rfk->asus = asus;
1365 rfk->rfkill = rfkill_alloc(name, &asus->platform_device->dev,
1366 type, ops, rfk);
1367 if (!rfk->rfkill)
Corentin Chary18e13112010-01-25 23:29:24 +01001368 return -EINVAL;
1369
Corentin Chary774b0672011-12-15 08:27:34 +01001370 result = rfkill_register(rfk->rfkill);
Corentin Chary18e13112010-01-25 23:29:24 +01001371 if (result) {
Corentin Chary774b0672011-12-15 08:27:34 +01001372 rfkill_destroy(rfk->rfkill);
1373 rfk->rfkill = NULL;
Corentin Chary18e13112010-01-25 23:29:24 +01001374 }
1375
1376 return result;
1377}
1378
Corentin Chary774b0672011-12-15 08:27:34 +01001379static int asus_rfkill_init(struct asus_laptop *asus)
1380{
1381 int result = 0;
1382
Corentin Chary3c8671f2011-12-15 08:27:35 +01001383 if (asus->is_pega_lucid)
1384 return -ENODEV;
1385
Corentin Chary774b0672011-12-15 08:27:34 +01001386 if (!acpi_check_handle(asus->handle, METHOD_GPS_ON, NULL) &&
1387 !acpi_check_handle(asus->handle, METHOD_GPS_OFF, NULL) &&
1388 !acpi_check_handle(asus->handle, METHOD_GPS_STATUS, NULL))
1389 result = asus_rfkill_setup(asus, &asus->gps, "asus-gps",
1390 -1, RFKILL_TYPE_GPS,
1391 &asus_gps_rfkill_ops);
1392 if (result)
1393 goto exit;
1394
1395
Corentin Chary26594dd2011-12-15 08:27:36 +01001396 if (!acpi_check_handle(asus->handle, METHOD_WLAN, NULL) &&
1397 asus->wled_type == TYPE_RFKILL)
Corentin Chary774b0672011-12-15 08:27:34 +01001398 result = asus_rfkill_setup(asus, &asus->wlan, "asus-wlan",
1399 WL_RSTS, RFKILL_TYPE_WLAN,
1400 &asus_rfkill_ops);
1401 if (result)
1402 goto exit;
1403
Corentin Chary26594dd2011-12-15 08:27:36 +01001404 if (!acpi_check_handle(asus->handle, METHOD_BLUETOOTH, NULL) &&
1405 asus->bled_type == TYPE_RFKILL)
Corentin Chary774b0672011-12-15 08:27:34 +01001406 result = asus_rfkill_setup(asus, &asus->bluetooth,
1407 "asus-bluetooth", BT_RSTS,
1408 RFKILL_TYPE_BLUETOOTH,
1409 &asus_rfkill_ops);
1410 if (result)
1411 goto exit;
1412
Corentin Chary3c8671f2011-12-15 08:27:35 +01001413 if (!acpi_check_handle(asus->handle, METHOD_WWAN, NULL))
1414 result = asus_rfkill_setup(asus, &asus->wwan, "asus-wwan",
1415 WW_RSTS, RFKILL_TYPE_WWAN,
1416 &asus_rfkill_ops);
1417 if (result)
1418 goto exit;
1419
1420 if (!acpi_check_handle(asus->handle, METHOD_WIMAX, NULL))
1421 result = asus_rfkill_setup(asus, &asus->wimax, "asus-wimax",
1422 WM_RSTS, RFKILL_TYPE_WIMAX,
1423 &asus_rfkill_ops);
1424 if (result)
1425 goto exit;
1426
Corentin Chary774b0672011-12-15 08:27:34 +01001427exit:
1428 if (result)
1429 asus_rfkill_exit(asus);
1430
1431 return result;
1432}
1433
Anisse Astier14908392011-10-14 11:13:42 +02001434static int pega_rfkill_set(void *data, bool blocked)
1435{
Corentin Chary40969c72011-12-15 08:27:33 +01001436 struct asus_rfkill *rfk = data;
Anisse Astier14908392011-10-14 11:13:42 +02001437
Corentin Chary40969c72011-12-15 08:27:33 +01001438 int ret = asus_pega_lucid_set(rfk->asus, rfk->control_id, !blocked);
Anisse Astier14908392011-10-14 11:13:42 +02001439 return ret;
1440}
1441
1442static const struct rfkill_ops pega_rfkill_ops = {
1443 .set_block = pega_rfkill_set,
1444};
1445
Corentin Chary40969c72011-12-15 08:27:33 +01001446static int pega_rfkill_setup(struct asus_laptop *asus, struct asus_rfkill *rfk,
1447 const char *name, int controlid, int rfkill_type)
Anisse Astier14908392011-10-14 11:13:42 +02001448{
Corentin Chary774b0672011-12-15 08:27:34 +01001449 return asus_rfkill_setup(asus, rfk, name, controlid, rfkill_type,
1450 &pega_rfkill_ops);
Anisse Astier14908392011-10-14 11:13:42 +02001451}
1452
1453static int pega_rfkill_init(struct asus_laptop *asus)
1454{
1455 int ret = 0;
1456
1457 if(!asus->is_pega_lucid)
1458 return -ENODEV;
1459
Corentin Chary40969c72011-12-15 08:27:33 +01001460 ret = pega_rfkill_setup(asus, &asus->wlan, "pega-wlan",
1461 PEGA_WLAN, RFKILL_TYPE_WLAN);
Anisse Astier14908392011-10-14 11:13:42 +02001462 if(ret)
Corentin Chary40969c72011-12-15 08:27:33 +01001463 goto exit;
Anisse Astier14908392011-10-14 11:13:42 +02001464
Corentin Chary40969c72011-12-15 08:27:33 +01001465 ret = pega_rfkill_setup(asus, &asus->bluetooth, "pega-bt",
1466 PEGA_BLUETOOTH, RFKILL_TYPE_BLUETOOTH);
1467 if(ret)
1468 goto exit;
1469
1470 ret = pega_rfkill_setup(asus, &asus->wwan, "pega-wwan",
1471 PEGA_WWAN, RFKILL_TYPE_WWAN);
1472
1473exit:
1474 if (ret)
1475 asus_rfkill_exit(asus);
Anisse Astier14908392011-10-14 11:13:42 +02001476
1477 return ret;
1478}
1479
Corentin Chary18e13112010-01-25 23:29:24 +01001480/*
Corentin Charybe4ee822009-12-06 16:27:09 +01001481 * Input device (i.e. hotkeys)
Corentin Chary034ce902009-01-20 16:17:43 +01001482 */
Corentin Charybe4ee822009-12-06 16:27:09 +01001483static void asus_input_notify(struct asus_laptop *asus, int event)
1484{
Corentin Charye0ac9132011-12-15 08:27:31 +01001485 if (!asus->inputdev)
1486 return ;
1487 if (!sparse_keymap_report_event(asus->inputdev, event, 1, true))
1488 pr_info("Unknown key %x pressed\n", event);
Corentin Charybe4ee822009-12-06 16:27:09 +01001489}
1490
1491static int asus_input_init(struct asus_laptop *asus)
1492{
Corentin Chary66a71dd2010-01-25 22:50:11 +01001493 struct input_dev *input;
1494 int error;
Corentin Charybe4ee822009-12-06 16:27:09 +01001495
Corentin Chary66a71dd2010-01-25 22:50:11 +01001496 input = input_allocate_device();
1497 if (!input) {
Corentin Chary40969c72011-12-15 08:27:33 +01001498 pr_warn("Unable to allocate input device\n");
Axel Lin45036ae2010-07-05 15:29:00 +08001499 return -ENOMEM;
Corentin Charybe4ee822009-12-06 16:27:09 +01001500 }
Corentin Chary66a71dd2010-01-25 22:50:11 +01001501 input->name = "Asus Laptop extra buttons";
1502 input->phys = ASUS_LAPTOP_FILE "/input0";
1503 input->id.bustype = BUS_HOST;
1504 input->dev.parent = &asus->platform_device->dev;
Corentin Charybe4ee822009-12-06 16:27:09 +01001505
Corentin Chary66a71dd2010-01-25 22:50:11 +01001506 error = sparse_keymap_setup(input, asus_keymap, NULL);
1507 if (error) {
1508 pr_err("Unable to setup input device keymap\n");
Axel Lin45036ae2010-07-05 15:29:00 +08001509 goto err_free_dev;
Corentin Charybe4ee822009-12-06 16:27:09 +01001510 }
Corentin Chary66a71dd2010-01-25 22:50:11 +01001511 error = input_register_device(input);
1512 if (error) {
Corentin Chary40969c72011-12-15 08:27:33 +01001513 pr_warn("Unable to register input device\n");
Axel Lin45036ae2010-07-05 15:29:00 +08001514 goto err_free_keymap;
Corentin Charybe4ee822009-12-06 16:27:09 +01001515 }
Corentin Chary66a71dd2010-01-25 22:50:11 +01001516
1517 asus->inputdev = input;
1518 return 0;
1519
Axel Lin45036ae2010-07-05 15:29:00 +08001520err_free_keymap:
Corentin Chary66a71dd2010-01-25 22:50:11 +01001521 sparse_keymap_free(input);
Axel Lin45036ae2010-07-05 15:29:00 +08001522err_free_dev:
Corentin Chary66a71dd2010-01-25 22:50:11 +01001523 input_free_device(input);
1524 return error;
Corentin Charybe4ee822009-12-06 16:27:09 +01001525}
1526
1527static void asus_input_exit(struct asus_laptop *asus)
1528{
Corentin Chary66a71dd2010-01-25 22:50:11 +01001529 if (asus->inputdev) {
1530 sparse_keymap_free(asus->inputdev);
Corentin Charybe4ee822009-12-06 16:27:09 +01001531 input_unregister_device(asus->inputdev);
Corentin Chary66a71dd2010-01-25 22:50:11 +01001532 }
Corentin Chary71e687d2010-08-24 09:30:44 +02001533 asus->inputdev = NULL;
Corentin Charybe4ee822009-12-06 16:27:09 +01001534}
1535
1536/*
1537 * ACPI driver
1538 */
Corentin Chary600ad522009-11-30 21:42:42 +01001539static void asus_acpi_notify(struct acpi_device *device, u32 event)
Corentin Chary85091b72007-01-26 14:04:30 +01001540{
Corentin Chary9129d142009-12-01 22:39:41 +01001541 struct asus_laptop *asus = acpi_driver_data(device);
Corentin Chary6050c8d2009-02-15 19:30:19 +01001542 u16 count;
Corentin Chary034ce902009-01-20 16:17:43 +01001543
Corentin Chary619d8b12009-11-28 10:35:37 +01001544 /* TODO Find a better way to handle events count. */
Corentin Chary50a90c42009-11-30 21:55:12 +01001545 count = asus->event_count[event % 128]++;
Corentin Chary50a90c42009-11-30 21:55:12 +01001546 acpi_bus_generate_netlink_event(asus->device->pnp.device_class,
1547 dev_name(&asus->device->dev), event,
Corentin Chary6050c8d2009-02-15 19:30:19 +01001548 count);
Corentin Chary85091b72007-01-26 14:04:30 +01001549
Corentin Chary2740e1b2012-11-29 09:12:39 +01001550 if (event >= ATKD_BRNUP_MIN && event <= ATKD_BRNUP_MAX)
1551 event = ATKD_BRNUP;
1552 else if (event >= ATKD_BRNDOWN_MIN &&
1553 event <= ATKD_BRNDOWN_MAX)
1554 event = ATKD_BRNDOWN;
Corentin Charya539df52010-01-25 22:53:21 +01001555
Corentin Chary2740e1b2012-11-29 09:12:39 +01001556 /* Brightness events are special */
1557 if (event == ATKD_BRNDOWN || event == ATKD_BRNUP) {
Corentin Charya539df52010-01-25 22:53:21 +01001558 if (asus->backlight_device != NULL) {
1559 /* Update the backlight device. */
1560 asus_backlight_notify(asus);
Corentin Chary2740e1b2012-11-29 09:12:39 +01001561 return ;
Corentin Charya539df52010-01-25 22:53:21 +01001562 }
Corentin Charya539df52010-01-25 22:53:21 +01001563 }
Anisse Astierb93f8282011-10-14 11:13:41 +02001564
1565 /* Accelerometer "coarse orientation change" event */
1566 if (asus->pega_accel_poll && event == 0xEA) {
1567 kobject_uevent(&asus->pega_accel_poll->input->dev.kobj,
1568 KOBJ_CHANGE);
1569 return ;
1570 }
1571
Corentin Charybe4ee822009-12-06 16:27:09 +01001572 asus_input_notify(asus, event);
Corentin Chary85091b72007-01-26 14:04:30 +01001573}
1574
Corentin Chary2a1fd642010-01-26 21:02:23 +01001575static DEVICE_ATTR(infos, S_IRUGO, show_infos, NULL);
1576static DEVICE_ATTR(wlan, S_IRUGO | S_IWUSR, show_wlan, store_wlan);
Dmitry Torokhovac9b1e52010-08-26 00:12:19 -07001577static DEVICE_ATTR(bluetooth, S_IRUGO | S_IWUSR,
1578 show_bluetooth, store_bluetooth);
Corentin Charyba1ff5b2010-11-14 17:40:12 +01001579static DEVICE_ATTR(wimax, S_IRUGO | S_IWUSR, show_wimax, store_wimax);
1580static DEVICE_ATTR(wwan, S_IRUGO | S_IWUSR, show_wwan, store_wwan);
Corentin Chary3b81cf92011-02-06 13:27:31 +01001581static DEVICE_ATTR(display, S_IWUSR, NULL, store_disp);
Corentin Chary2a1fd642010-01-26 21:02:23 +01001582static DEVICE_ATTR(ledd, S_IRUGO | S_IWUSR, show_ledd, store_ledd);
Andy Ross33989ba2011-10-14 11:13:36 +02001583static DEVICE_ATTR(ls_value, S_IRUGO, show_lsvalue, NULL);
Corentin Chary2a1fd642010-01-26 21:02:23 +01001584static DEVICE_ATTR(ls_level, S_IRUGO | S_IWUSR, show_lslvl, store_lslvl);
1585static DEVICE_ATTR(ls_switch, S_IRUGO | S_IWUSR, show_lssw, store_lssw);
1586static DEVICE_ATTR(gps, S_IRUGO | S_IWUSR, show_gps, store_gps);
1587
Dmitry Torokhovac9b1e52010-08-26 00:12:19 -07001588static struct attribute *asus_attributes[] = {
1589 &dev_attr_infos.attr,
1590 &dev_attr_wlan.attr,
1591 &dev_attr_bluetooth.attr,
Corentin Charyba1ff5b2010-11-14 17:40:12 +01001592 &dev_attr_wimax.attr,
1593 &dev_attr_wwan.attr,
Dmitry Torokhovac9b1e52010-08-26 00:12:19 -07001594 &dev_attr_display.attr,
1595 &dev_attr_ledd.attr,
Andy Ross33989ba2011-10-14 11:13:36 +02001596 &dev_attr_ls_value.attr,
Dmitry Torokhovac9b1e52010-08-26 00:12:19 -07001597 &dev_attr_ls_level.attr,
1598 &dev_attr_ls_switch.attr,
1599 &dev_attr_gps.attr,
1600 NULL
1601};
Corentin Chary2a1fd642010-01-26 21:02:23 +01001602
Al Viro587a1f12011-07-23 23:11:19 -04001603static umode_t asus_sysfs_is_visible(struct kobject *kobj,
Dmitry Torokhovac9b1e52010-08-26 00:12:19 -07001604 struct attribute *attr,
1605 int idx)
1606{
1607 struct device *dev = container_of(kobj, struct device, kobj);
1608 struct platform_device *pdev = to_platform_device(dev);
1609 struct asus_laptop *asus = platform_get_drvdata(pdev);
1610 acpi_handle handle = asus->handle;
1611 bool supported;
1612
Andy Ross33989ba2011-10-14 11:13:36 +02001613 if (asus->is_pega_lucid) {
1614 /* no ls_level interface on the Lucid */
1615 if (attr == &dev_attr_ls_switch.attr)
1616 supported = true;
1617 else if (attr == &dev_attr_ls_level.attr)
1618 supported = false;
1619 else
1620 goto normal;
1621
1622 return supported;
1623 }
1624
1625normal:
Dmitry Torokhovac9b1e52010-08-26 00:12:19 -07001626 if (attr == &dev_attr_wlan.attr) {
1627 supported = !acpi_check_handle(handle, METHOD_WLAN, NULL);
1628
1629 } else if (attr == &dev_attr_bluetooth.attr) {
1630 supported = !acpi_check_handle(handle, METHOD_BLUETOOTH, NULL);
1631
1632 } else if (attr == &dev_attr_display.attr) {
1633 supported = !acpi_check_handle(handle, METHOD_SWITCH_DISPLAY, NULL);
1634
Corentin Charyba1ff5b2010-11-14 17:40:12 +01001635 } else if (attr == &dev_attr_wimax.attr) {
1636 supported =
1637 !acpi_check_handle(asus->handle, METHOD_WIMAX, NULL);
1638
1639 } else if (attr == &dev_attr_wwan.attr) {
1640 supported = !acpi_check_handle(asus->handle, METHOD_WWAN, NULL);
1641
Dmitry Torokhovac9b1e52010-08-26 00:12:19 -07001642 } else if (attr == &dev_attr_ledd.attr) {
1643 supported = !acpi_check_handle(handle, METHOD_LEDD, NULL);
1644
1645 } else if (attr == &dev_attr_ls_switch.attr ||
1646 attr == &dev_attr_ls_level.attr) {
1647 supported = !acpi_check_handle(handle, METHOD_ALS_CONTROL, NULL) &&
Andy Ross33989ba2011-10-14 11:13:36 +02001648 !acpi_check_handle(handle, METHOD_ALS_LEVEL, NULL);
1649 } else if (attr == &dev_attr_ls_value.attr) {
1650 supported = asus->is_pega_lucid;
Dmitry Torokhovac9b1e52010-08-26 00:12:19 -07001651 } else if (attr == &dev_attr_gps.attr) {
1652 supported = !acpi_check_handle(handle, METHOD_GPS_ON, NULL) &&
1653 !acpi_check_handle(handle, METHOD_GPS_OFF, NULL) &&
1654 !acpi_check_handle(handle, METHOD_GPS_STATUS, NULL);
1655 } else {
1656 supported = true;
1657 }
1658
1659 return supported ? attr->mode : 0;
Corentin Chary2a1fd642010-01-26 21:02:23 +01001660}
1661
Corentin Chary2a1fd642010-01-26 21:02:23 +01001662
Dmitry Torokhovac9b1e52010-08-26 00:12:19 -07001663static const struct attribute_group asus_attr_group = {
1664 .is_visible = asus_sysfs_is_visible,
1665 .attrs = asus_attributes,
1666};
Corentin Chary85091b72007-01-26 14:04:30 +01001667
Corentin Chary9129d142009-12-01 22:39:41 +01001668static int asus_platform_init(struct asus_laptop *asus)
Corentin Chary600ad522009-11-30 21:42:42 +01001669{
Corentin Chary71e687d2010-08-24 09:30:44 +02001670 int result;
Corentin Chary600ad522009-11-30 21:42:42 +01001671
Corentin Chary50a90c42009-11-30 21:55:12 +01001672 asus->platform_device = platform_device_alloc(ASUS_LAPTOP_FILE, -1);
1673 if (!asus->platform_device)
Corentin Chary600ad522009-11-30 21:42:42 +01001674 return -ENOMEM;
Corentin Chary9129d142009-12-01 22:39:41 +01001675 platform_set_drvdata(asus->platform_device, asus);
Corentin Chary600ad522009-11-30 21:42:42 +01001676
Corentin Chary71e687d2010-08-24 09:30:44 +02001677 result = platform_device_add(asus->platform_device);
1678 if (result)
Corentin Chary600ad522009-11-30 21:42:42 +01001679 goto fail_platform_device;
1680
Dmitry Torokhovac9b1e52010-08-26 00:12:19 -07001681 result = sysfs_create_group(&asus->platform_device->dev.kobj,
1682 &asus_attr_group);
Corentin Chary71e687d2010-08-24 09:30:44 +02001683 if (result)
Corentin Chary600ad522009-11-30 21:42:42 +01001684 goto fail_sysfs;
Dmitry Torokhovac9b1e52010-08-26 00:12:19 -07001685
Corentin Chary600ad522009-11-30 21:42:42 +01001686 return 0;
1687
1688fail_sysfs:
Corentin Chary50a90c42009-11-30 21:55:12 +01001689 platform_device_del(asus->platform_device);
Corentin Chary600ad522009-11-30 21:42:42 +01001690fail_platform_device:
Corentin Chary50a90c42009-11-30 21:55:12 +01001691 platform_device_put(asus->platform_device);
Corentin Chary71e687d2010-08-24 09:30:44 +02001692 return result;
Corentin Chary600ad522009-11-30 21:42:42 +01001693}
1694
Corentin Chary9129d142009-12-01 22:39:41 +01001695static void asus_platform_exit(struct asus_laptop *asus)
Corentin Chary600ad522009-11-30 21:42:42 +01001696{
Dmitry Torokhovac9b1e52010-08-26 00:12:19 -07001697 sysfs_remove_group(&asus->platform_device->dev.kobj, &asus_attr_group);
Corentin Chary50a90c42009-11-30 21:55:12 +01001698 platform_device_unregister(asus->platform_device);
Corentin Chary600ad522009-11-30 21:42:42 +01001699}
1700
1701static struct platform_driver platform_driver = {
Len Brown8def05f2007-01-30 01:46:43 -05001702 .driver = {
Corentin Chary9129d142009-12-01 22:39:41 +01001703 .name = ASUS_LAPTOP_FILE,
1704 .owner = THIS_MODULE,
Andy Rossb23910c2011-10-14 11:13:38 +02001705 },
Corentin Chary85091b72007-01-26 14:04:30 +01001706};
1707
Corentin Chary85091b72007-01-26 14:04:30 +01001708/*
Corentin Chary50a90c42009-11-30 21:55:12 +01001709 * This function is used to initialize the context with right values. In this
1710 * method, we can make all the detection we want, and modify the asus_laptop
1711 * struct
Corentin Chary85091b72007-01-26 14:04:30 +01001712 */
Corentin Chary7c247642009-11-30 22:13:54 +01001713static int asus_laptop_get_info(struct asus_laptop *asus)
Corentin Chary85091b72007-01-26 14:04:30 +01001714{
1715 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
Corentin Chary85091b72007-01-26 14:04:30 +01001716 union acpi_object *model = NULL;
Ben Hutchingscb7da022012-11-29 09:12:37 +01001717 unsigned long long bsts_result;
Corentin Chary85091b72007-01-26 14:04:30 +01001718 char *string = NULL;
1719 acpi_status status;
1720
1721 /*
1722 * Get DSDT headers early enough to allow for differentiating between
1723 * models, but late enough to allow acpi_bus_register_driver() to fail
1724 * before doing anything ACPI-specific. Should we encounter a machine,
1725 * which needs special handling (i.e. its hotkey device has a different
Corentin Chary7c247642009-11-30 22:13:54 +01001726 * HID), this bit will be moved.
Corentin Chary85091b72007-01-26 14:04:30 +01001727 */
Corentin Chary7c247642009-11-30 22:13:54 +01001728 status = acpi_get_table(ACPI_SIG_DSDT, 1, &asus->dsdt_info);
Corentin Chary85091b72007-01-26 14:04:30 +01001729 if (ACPI_FAILURE(status))
Joe Perches5ad77dc2011-03-29 15:21:35 -07001730 pr_warn("Couldn't get the DSDT table header\n");
Corentin Chary85091b72007-01-26 14:04:30 +01001731
1732 /* We have to write 0 on init this far for all ASUS models */
Corentin Chary50a90c42009-11-30 21:55:12 +01001733 if (write_acpi_int_ret(asus->handle, "INIT", 0, &buffer)) {
Corentin Chary2fcc23d2009-06-19 14:52:03 +02001734 pr_err("Hotkey initialization failed\n");
Corentin Chary85091b72007-01-26 14:04:30 +01001735 return -ENODEV;
1736 }
1737
1738 /* This needs to be called for some laptops to init properly */
Corentin Chary9a816852007-03-11 10:25:38 +01001739 status =
Corentin Chary50a90c42009-11-30 21:55:12 +01001740 acpi_evaluate_integer(asus->handle, "BSTS", NULL, &bsts_result);
Corentin Chary9a816852007-03-11 10:25:38 +01001741 if (ACPI_FAILURE(status))
Joe Perches5ad77dc2011-03-29 15:21:35 -07001742 pr_warn("Error calling BSTS\n");
Corentin Chary85091b72007-01-26 14:04:30 +01001743 else if (bsts_result)
Corentin Chary2fcc23d2009-06-19 14:52:03 +02001744 pr_notice("BSTS called, 0x%02x returned\n",
Corentin Chary9a816852007-03-11 10:25:38 +01001745 (uint) bsts_result);
Corentin Chary85091b72007-01-26 14:04:30 +01001746
Corentin Chary185e5af2007-03-11 10:27:33 +01001747 /* This too ... */
Corentin Charye5593bf2010-01-17 17:20:11 +01001748 if (write_acpi_int(asus->handle, "CWAP", wapf))
1749 pr_err("Error calling CWAP(%d)\n", wapf);
Corentin Chary85091b72007-01-26 14:04:30 +01001750 /*
1751 * Try to match the object returned by INIT to the specific model.
1752 * Handle every possible object (or the lack of thereof) the DSDT
1753 * writers might throw at us. When in trouble, we pass NULL to
1754 * asus_model_match() and try something completely different.
1755 */
1756 if (buffer.pointer) {
1757 model = buffer.pointer;
1758 switch (model->type) {
1759 case ACPI_TYPE_STRING:
1760 string = model->string.pointer;
1761 break;
1762 case ACPI_TYPE_BUFFER:
1763 string = model->buffer.pointer;
1764 break;
1765 default:
1766 string = "";
1767 break;
1768 }
1769 }
Corentin Chary50a90c42009-11-30 21:55:12 +01001770 asus->name = kstrdup(string, GFP_KERNEL);
Axel Lind8eca112010-06-29 11:09:47 +08001771 if (!asus->name) {
1772 kfree(buffer.pointer);
Corentin Chary85091b72007-01-26 14:04:30 +01001773 return -ENOMEM;
Axel Lind8eca112010-06-29 11:09:47 +08001774 }
Corentin Chary85091b72007-01-26 14:04:30 +01001775
Matthew Garrett9f897482012-12-28 10:54:42 -05001776 if (string)
Corentin Chary2fcc23d2009-06-19 14:52:03 +02001777 pr_notice(" %s model detected\n", string);
Corentin Chary85091b72007-01-26 14:04:30 +01001778
Corentin Charyd99b5772010-01-22 21:20:57 +01001779 if (!acpi_check_handle(asus->handle, METHOD_WL_STATUS, NULL))
Corentin Charyaa9df932010-01-13 21:49:10 +01001780 asus->have_rsts = true;
Corentin Chary4564de12007-01-26 14:04:40 +01001781
Corentin Chary85091b72007-01-26 14:04:30 +01001782 kfree(model);
1783
1784 return AE_OK;
1785}
1786
Greg Kroah-Hartmanb859f152012-12-21 13:18:33 -08001787static int asus_acpi_init(struct asus_laptop *asus)
Corentin Chary600ad522009-11-30 21:42:42 +01001788{
1789 int result = 0;
1790
Corentin Chary50a90c42009-11-30 21:55:12 +01001791 result = acpi_bus_get_status(asus->device);
Corentin Chary600ad522009-11-30 21:42:42 +01001792 if (result)
1793 return result;
Corentin Chary50a90c42009-11-30 21:55:12 +01001794 if (!asus->device->status.present) {
Corentin Chary600ad522009-11-30 21:42:42 +01001795 pr_err("Hotkey device not present, aborting\n");
1796 return -ENODEV;
1797 }
1798
Corentin Chary7c247642009-11-30 22:13:54 +01001799 result = asus_laptop_get_info(asus);
Corentin Chary600ad522009-11-30 21:42:42 +01001800 if (result)
1801 return result;
1802
Corentin Chary774b0672011-12-15 08:27:34 +01001803 if (!strcmp(bled_type, "led"))
1804 asus->bled_type = TYPE_LED;
1805 else if (!strcmp(bled_type, "rfkill"))
1806 asus->bled_type = TYPE_RFKILL;
1807
1808 if (!strcmp(wled_type, "led"))
1809 asus->wled_type = TYPE_LED;
1810 else if (!strcmp(wled_type, "rfkill"))
1811 asus->wled_type = TYPE_RFKILL;
1812
Corentin Charybe4ee822009-12-06 16:27:09 +01001813 if (bluetooth_status >= 0)
Corentin Charye5593bf2010-01-17 17:20:11 +01001814 asus_bluetooth_set(asus, !!bluetooth_status);
1815
Corentin Charyd0930a22010-01-17 17:21:13 +01001816 if (wlan_status >= 0)
1817 asus_wlan_set(asus, !!wlan_status);
Corentin Chary600ad522009-11-30 21:42:42 +01001818
Corentin Charyba1ff5b2010-11-14 17:40:12 +01001819 if (wimax_status >= 0)
1820 asus_wimax_set(asus, !!wimax_status);
1821
1822 if (wwan_status >= 0)
1823 asus_wwan_set(asus, !!wwan_status);
1824
Corentin Chary600ad522009-11-30 21:42:42 +01001825 /* Keyboard Backlight is on by default */
Corentin Charyd99b5772010-01-22 21:20:57 +01001826 if (!acpi_check_handle(asus->handle, METHOD_KBD_LIGHT_SET, NULL))
Corentin Chary4d441512010-01-13 22:26:24 +01001827 asus_kled_set(asus, 1);
Corentin Chary600ad522009-11-30 21:42:42 +01001828
1829 /* LED display is off by default */
Corentin Chary50a90c42009-11-30 21:55:12 +01001830 asus->ledd_status = 0xFFF;
Corentin Chary600ad522009-11-30 21:42:42 +01001831
1832 /* Set initial values of light sensor and level */
Andy Rossabec04d2011-10-14 11:13:37 +02001833 asus->light_switch = !!als_status;
Corentin Charybe4ee822009-12-06 16:27:09 +01001834 asus->light_level = 5; /* level 5 for sensor sensitivity */
Corentin Chary600ad522009-11-30 21:42:42 +01001835
Andy Ross33989ba2011-10-14 11:13:36 +02001836 if (asus->is_pega_lucid) {
1837 asus_als_switch(asus, asus->light_switch);
1838 } else if (!acpi_check_handle(asus->handle, METHOD_ALS_CONTROL, NULL) &&
1839 !acpi_check_handle(asus->handle, METHOD_ALS_LEVEL, NULL)) {
Corentin Chary4d441512010-01-13 22:26:24 +01001840 asus_als_switch(asus, asus->light_switch);
Corentin Chary4d441512010-01-13 22:26:24 +01001841 asus_als_level(asus, asus->light_level);
Corentin Charyd99b5772010-01-22 21:20:57 +01001842 }
Corentin Chary600ad522009-11-30 21:42:42 +01001843
Corentin Chary600ad522009-11-30 21:42:42 +01001844 return result;
1845}
1846
Greg Kroah-Hartmanb859f152012-12-21 13:18:33 -08001847static void asus_dmi_check(void)
Corentin Charyaf96f872011-02-06 13:27:30 +01001848{
1849 const char *model;
1850
1851 model = dmi_get_system_info(DMI_PRODUCT_NAME);
1852 if (!model)
1853 return;
1854
1855 /* On L1400B WLED control the sound card, don't mess with it ... */
1856 if (strncmp(model, "L1400B", 6) == 0) {
1857 wlan_status = -1;
1858 }
1859}
1860
Corentin Chary71e687d2010-08-24 09:30:44 +02001861static bool asus_device_present;
1862
Greg Kroah-Hartmanb859f152012-12-21 13:18:33 -08001863static int asus_acpi_add(struct acpi_device *device)
Corentin Chary600ad522009-11-30 21:42:42 +01001864{
Corentin Chary9129d142009-12-01 22:39:41 +01001865 struct asus_laptop *asus;
Corentin Chary600ad522009-11-30 21:42:42 +01001866 int result;
1867
1868 pr_notice("Asus Laptop Support version %s\n",
1869 ASUS_LAPTOP_VERSION);
Corentin Chary50a90c42009-11-30 21:55:12 +01001870 asus = kzalloc(sizeof(struct asus_laptop), GFP_KERNEL);
1871 if (!asus)
Corentin Chary600ad522009-11-30 21:42:42 +01001872 return -ENOMEM;
Corentin Chary50a90c42009-11-30 21:55:12 +01001873 asus->handle = device->handle;
1874 strcpy(acpi_device_name(device), ASUS_LAPTOP_DEVICE_NAME);
1875 strcpy(acpi_device_class(device), ASUS_LAPTOP_CLASS);
1876 device->driver_data = asus;
1877 asus->device = device;
Corentin Chary600ad522009-11-30 21:42:42 +01001878
Corentin Charyaf96f872011-02-06 13:27:30 +01001879 asus_dmi_check();
1880
Corentin Chary9129d142009-12-01 22:39:41 +01001881 result = asus_acpi_init(asus);
Corentin Chary600ad522009-11-30 21:42:42 +01001882 if (result)
1883 goto fail_platform;
1884
1885 /*
Andy Ross8819de72011-10-14 11:13:35 +02001886 * Need platform type detection first, then the platform
1887 * device. It is used as a parent for the sub-devices below.
Corentin Chary600ad522009-11-30 21:42:42 +01001888 */
Andy Ross8819de72011-10-14 11:13:35 +02001889 asus->is_pega_lucid = asus_check_pega_lucid(asus);
Corentin Chary9129d142009-12-01 22:39:41 +01001890 result = asus_platform_init(asus);
Corentin Chary600ad522009-11-30 21:42:42 +01001891 if (result)
1892 goto fail_platform;
1893
1894 if (!acpi_video_backlight_support()) {
Corentin Chary9129d142009-12-01 22:39:41 +01001895 result = asus_backlight_init(asus);
Corentin Chary600ad522009-11-30 21:42:42 +01001896 if (result)
1897 goto fail_backlight;
1898 } else
1899 pr_info("Backlight controlled by ACPI video driver\n");
1900
Corentin Chary9129d142009-12-01 22:39:41 +01001901 result = asus_input_init(asus);
Corentin Chary600ad522009-11-30 21:42:42 +01001902 if (result)
1903 goto fail_input;
1904
Corentin Chary9129d142009-12-01 22:39:41 +01001905 result = asus_led_init(asus);
Corentin Chary600ad522009-11-30 21:42:42 +01001906 if (result)
1907 goto fail_led;
1908
Corentin Chary18e13112010-01-25 23:29:24 +01001909 result = asus_rfkill_init(asus);
Corentin Chary3c8671f2011-12-15 08:27:35 +01001910 if (result && result != -ENODEV)
Corentin Chary18e13112010-01-25 23:29:24 +01001911 goto fail_rfkill;
1912
Andy Rossb23910c2011-10-14 11:13:38 +02001913 result = pega_accel_init(asus);
1914 if (result && result != -ENODEV)
1915 goto fail_pega_accel;
1916
Anisse Astier14908392011-10-14 11:13:42 +02001917 result = pega_rfkill_init(asus);
1918 if (result && result != -ENODEV)
1919 goto fail_pega_rfkill;
1920
Corentin Chary600ad522009-11-30 21:42:42 +01001921 asus_device_present = true;
1922 return 0;
1923
Anisse Astier14908392011-10-14 11:13:42 +02001924fail_pega_rfkill:
1925 pega_accel_exit(asus);
Andy Rossb23910c2011-10-14 11:13:38 +02001926fail_pega_accel:
1927 asus_rfkill_exit(asus);
Corentin Chary18e13112010-01-25 23:29:24 +01001928fail_rfkill:
1929 asus_led_exit(asus);
Corentin Chary600ad522009-11-30 21:42:42 +01001930fail_led:
Corentin Chary9129d142009-12-01 22:39:41 +01001931 asus_input_exit(asus);
Corentin Chary600ad522009-11-30 21:42:42 +01001932fail_input:
Corentin Chary9129d142009-12-01 22:39:41 +01001933 asus_backlight_exit(asus);
Corentin Chary600ad522009-11-30 21:42:42 +01001934fail_backlight:
Corentin Chary9129d142009-12-01 22:39:41 +01001935 asus_platform_exit(asus);
Corentin Chary600ad522009-11-30 21:42:42 +01001936fail_platform:
Corentin Chary50a90c42009-11-30 21:55:12 +01001937 kfree(asus);
Corentin Chary600ad522009-11-30 21:42:42 +01001938
1939 return result;
1940}
1941
Rafael J. Wysocki51fac832013-01-24 00:24:48 +01001942static int asus_acpi_remove(struct acpi_device *device)
Corentin Chary600ad522009-11-30 21:42:42 +01001943{
Corentin Chary9129d142009-12-01 22:39:41 +01001944 struct asus_laptop *asus = acpi_driver_data(device);
1945
1946 asus_backlight_exit(asus);
Corentin Chary18e13112010-01-25 23:29:24 +01001947 asus_rfkill_exit(asus);
Corentin Chary9129d142009-12-01 22:39:41 +01001948 asus_led_exit(asus);
1949 asus_input_exit(asus);
Andy Rossb23910c2011-10-14 11:13:38 +02001950 pega_accel_exit(asus);
Corentin Chary9129d142009-12-01 22:39:41 +01001951 asus_platform_exit(asus);
Corentin Chary600ad522009-11-30 21:42:42 +01001952
Corentin Chary50a90c42009-11-30 21:55:12 +01001953 kfree(asus->name);
1954 kfree(asus);
Corentin Chary600ad522009-11-30 21:42:42 +01001955 return 0;
1956}
1957
1958static const struct acpi_device_id asus_device_ids[] = {
1959 {"ATK0100", 0},
1960 {"ATK0101", 0},
1961 {"", 0},
1962};
1963MODULE_DEVICE_TABLE(acpi, asus_device_ids);
1964
1965static struct acpi_driver asus_acpi_driver = {
Corentin Chary50a90c42009-11-30 21:55:12 +01001966 .name = ASUS_LAPTOP_NAME,
1967 .class = ASUS_LAPTOP_CLASS,
Corentin Chary600ad522009-11-30 21:42:42 +01001968 .owner = THIS_MODULE,
1969 .ids = asus_device_ids,
1970 .flags = ACPI_DRIVER_ALL_NOTIFY_EVENTS,
1971 .ops = {
1972 .add = asus_acpi_add,
1973 .remove = asus_acpi_remove,
1974 .notify = asus_acpi_notify,
1975 },
1976};
1977
Corentin Chary85091b72007-01-26 14:04:30 +01001978static int __init asus_laptop_init(void)
1979{
1980 int result;
1981
Corentin Chary600ad522009-11-30 21:42:42 +01001982 result = platform_driver_register(&platform_driver);
Corentin Chary85091b72007-01-26 14:04:30 +01001983 if (result < 0)
1984 return result;
1985
Corentin Chary600ad522009-11-30 21:42:42 +01001986 result = acpi_bus_register_driver(&asus_acpi_driver);
1987 if (result < 0)
1988 goto fail_acpi_driver;
1989 if (!asus_device_present) {
1990 result = -ENODEV;
1991 goto fail_no_device;
Corentin Chary85091b72007-01-26 14:04:30 +01001992 }
Len Brown8def05f2007-01-30 01:46:43 -05001993 return 0;
Corentin Chary85091b72007-01-26 14:04:30 +01001994
Corentin Chary600ad522009-11-30 21:42:42 +01001995fail_no_device:
1996 acpi_bus_unregister_driver(&asus_acpi_driver);
1997fail_acpi_driver:
1998 platform_driver_unregister(&platform_driver);
Corentin Chary85091b72007-01-26 14:04:30 +01001999 return result;
2000}
2001
Corentin Chary600ad522009-11-30 21:42:42 +01002002static void __exit asus_laptop_exit(void)
2003{
2004 acpi_bus_unregister_driver(&asus_acpi_driver);
2005 platform_driver_unregister(&platform_driver);
2006}
2007
Corentin Chary85091b72007-01-26 14:04:30 +01002008module_init(asus_laptop_init);
2009module_exit(asus_laptop_exit);