blob: 28551f5a2e0772ffc766f5df860a8cad55f75eeb [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>
Lv Zheng8b484632013-12-03 08:49:16 +080056#include <linux/acpi.h>
Hans de Goede8b9e6b72015-06-16 16:27:57 +020057#include <acpi/video.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 */
Łukasz Stelmach97ade762015-07-29 21:31:23 +0200335 {KE_KEY, 0x6A, { KEY_TOUCHPAD_TOGGLE } }, /* Lock Touchpad Fn + F9 */
Corentin Charya935eae2012-10-03 11:26:26 +0200336 {KE_KEY, 0x6B, { KEY_TOUCHPAD_TOGGLE } }, /* Lock Touchpad */
Corentin Charya2d5dd22011-12-15 08:27:38 +0100337 {KE_KEY, 0x6C, { KEY_SLEEP } }, /* Suspend */
338 {KE_KEY, 0x6D, { KEY_SLEEP } }, /* Hibernate */
Corentin Chary982d3852012-10-03 11:26:25 +0200339 {KE_IGNORE, 0x6E, }, /* Low Battery notification */
Corentin Charya935eae2012-10-03 11:26:26 +0200340 {KE_KEY, 0x7D, { KEY_BLUETOOTH } }, /* Bluetooth Enable */
341 {KE_KEY, 0x7E, { KEY_BLUETOOTH } }, /* Bluetooth Disable */
Corentin Chary66a71dd2010-01-25 22:50:11 +0100342 {KE_KEY, 0x82, { KEY_CAMERA } },
Corentin Charya935eae2012-10-03 11:26:26 +0200343 {KE_KEY, 0x88, { KEY_RFKILL } }, /* Radio Toggle Key */
344 {KE_KEY, 0x8A, { KEY_PROG1 } }, /* Color enhancement mode */
AceLan Kao3da4cd22012-10-03 11:26:28 +0200345 {KE_KEY, 0x8C, { KEY_SWITCHVIDEOMODE } }, /* SDSP DVI only */
346 {KE_KEY, 0x8D, { KEY_SWITCHVIDEOMODE } }, /* SDSP LCD + DVI */
347 {KE_KEY, 0x8E, { KEY_SWITCHVIDEOMODE } }, /* SDSP CRT + DVI */
348 {KE_KEY, 0x8F, { KEY_SWITCHVIDEOMODE } }, /* SDSP TV + DVI */
349 {KE_KEY, 0x90, { KEY_SWITCHVIDEOMODE } }, /* SDSP LCD + CRT + DVI */
350 {KE_KEY, 0x91, { KEY_SWITCHVIDEOMODE } }, /* SDSP LCD + TV + DVI */
351 {KE_KEY, 0x92, { KEY_SWITCHVIDEOMODE } }, /* SDSP CRT + TV + DVI */
352 {KE_KEY, 0x93, { KEY_SWITCHVIDEOMODE } }, /* SDSP LCD + CRT + TV + DVI */
Corentin Chary66a71dd2010-01-25 22:50:11 +0100353 {KE_KEY, 0x95, { KEY_MEDIA } },
354 {KE_KEY, 0x99, { KEY_PHONE } },
AceLan Kao3da4cd22012-10-03 11:26:28 +0200355 {KE_KEY, 0xA0, { KEY_SWITCHVIDEOMODE } }, /* SDSP HDMI only */
356 {KE_KEY, 0xA1, { KEY_SWITCHVIDEOMODE } }, /* SDSP LCD + HDMI */
357 {KE_KEY, 0xA2, { KEY_SWITCHVIDEOMODE } }, /* SDSP CRT + HDMI */
358 {KE_KEY, 0xA3, { KEY_SWITCHVIDEOMODE } }, /* SDSP TV + HDMI */
359 {KE_KEY, 0xA4, { KEY_SWITCHVIDEOMODE } }, /* SDSP LCD + CRT + HDMI */
360 {KE_KEY, 0xA5, { KEY_SWITCHVIDEOMODE } }, /* SDSP LCD + TV + HDMI */
361 {KE_KEY, 0xA6, { KEY_SWITCHVIDEOMODE } }, /* SDSP CRT + TV + HDMI */
362 {KE_KEY, 0xA7, { KEY_SWITCHVIDEOMODE } }, /* SDSP LCD + CRT + TV + HDMI */
Corentin Charya935eae2012-10-03 11:26:26 +0200363 {KE_KEY, 0xB5, { KEY_CALC } },
364 {KE_KEY, 0xC4, { KEY_KBDILLUMUP } },
365 {KE_KEY, 0xC5, { KEY_KBDILLUMDOWN } },
Corentin Chary034ce902009-01-20 16:17:43 +0100366 {KE_END, 0},
367};
368
Corentin Chary66a71dd2010-01-25 22:50:11 +0100369
Corentin Chary85091b72007-01-26 14:04:30 +0100370/*
371 * This function evaluates an ACPI method, given an int as parameter, the
372 * method is searched within the scope of the handle, can be NULL. The output
373 * of the method is written is output, which can also be NULL
374 *
Corentin CHARYf8d1c942008-01-16 16:56:42 +0100375 * returns 0 if write is successful, -1 else.
Corentin Chary85091b72007-01-26 14:04:30 +0100376 */
Corentin Charyd8c67322009-11-28 10:27:51 +0100377static int write_acpi_int_ret(acpi_handle handle, const char *method, int val,
378 struct acpi_buffer *output)
Corentin Chary85091b72007-01-26 14:04:30 +0100379{
Corentin Charybe966662009-08-29 10:28:29 +0200380 struct acpi_object_list params; /* list of input parameters (an int) */
381 union acpi_object in_obj; /* the only param we use */
Corentin Chary85091b72007-01-26 14:04:30 +0100382 acpi_status status;
383
Corentin CHARYf8d1c942008-01-16 16:56:42 +0100384 if (!handle)
Axel Lin9fb866f2010-07-20 15:19:47 -0700385 return -1;
Corentin CHARYf8d1c942008-01-16 16:56:42 +0100386
Corentin Chary85091b72007-01-26 14:04:30 +0100387 params.count = 1;
388 params.pointer = &in_obj;
389 in_obj.type = ACPI_TYPE_INTEGER;
390 in_obj.integer.value = val;
391
392 status = acpi_evaluate_object(handle, (char *)method, &params, output);
Corentin CHARYf8d1c942008-01-16 16:56:42 +0100393 if (status == AE_OK)
394 return 0;
395 else
396 return -1;
Corentin Chary85091b72007-01-26 14:04:30 +0100397}
398
Corentin Charyd8c67322009-11-28 10:27:51 +0100399static int write_acpi_int(acpi_handle handle, const char *method, int val)
400{
401 return write_acpi_int_ret(handle, method, val, NULL);
402}
403
Corentin Charyd99b5772010-01-22 21:20:57 +0100404static int acpi_check_handle(acpi_handle handle, const char *method,
405 acpi_handle *ret)
406{
407 acpi_status status;
408
409 if (method == NULL)
410 return -ENODEV;
411
412 if (ret)
413 status = acpi_get_handle(handle, (char *)method,
414 ret);
415 else {
416 acpi_handle dummy;
417
418 status = acpi_get_handle(handle, (char *)method,
419 &dummy);
420 }
421
422 if (status != AE_OK) {
423 if (ret)
Joe Perches5ad77dc2011-03-29 15:21:35 -0700424 pr_warn("Error finding %s\n", method);
Corentin Charyd99b5772010-01-22 21:20:57 +0100425 return -ENODEV;
426 }
427 return 0;
428}
429
Andy Ross8819de72011-10-14 11:13:35 +0200430static bool asus_check_pega_lucid(struct asus_laptop *asus)
431{
432 return !strcmp(asus->name, DEVICE_NAME_PEGA) &&
433 !acpi_check_handle(asus->handle, METHOD_PEGA_ENABLE, NULL) &&
434 !acpi_check_handle(asus->handle, METHOD_PEGA_DISABLE, NULL) &&
435 !acpi_check_handle(asus->handle, METHOD_PEGA_READ, NULL);
436}
437
Andy Ross33989ba2011-10-14 11:13:36 +0200438static int asus_pega_lucid_set(struct asus_laptop *asus, int unit, bool enable)
439{
440 char *method = enable ? METHOD_PEGA_ENABLE : METHOD_PEGA_DISABLE;
441 return write_acpi_int(asus->handle, method, unit);
442}
443
Andy Rossb23910c2011-10-14 11:13:38 +0200444static int pega_acc_axis(struct asus_laptop *asus, int curr, char *method)
445{
446 int i, delta;
447 unsigned long long val;
448 for (i = 0; i < PEGA_ACC_RETRIES; i++) {
449 acpi_evaluate_integer(asus->handle, method, NULL, &val);
450
451 /* The output is noisy. From reading the ASL
452 * dissassembly, timeout errors are returned with 1's
453 * in the high word, and the lack of locking around
454 * thei hi/lo byte reads means that a transition
455 * between (for example) -1 and 0 could be read as
456 * 0xff00 or 0x00ff. */
457 delta = abs(curr - (short)val);
458 if (delta < 128 && !(val & ~0xffff))
459 break;
460 }
461 return clamp_val((short)val, -PEGA_ACC_CLAMP, PEGA_ACC_CLAMP);
462}
463
464static void pega_accel_poll(struct input_polled_dev *ipd)
465{
466 struct device *parent = ipd->input->dev.parent;
467 struct asus_laptop *asus = dev_get_drvdata(parent);
468
469 /* In some cases, the very first call to poll causes a
470 * recursive fault under the polldev worker. This is
471 * apparently related to very early userspace access to the
472 * device, and perhaps a firmware bug. Fake the first report. */
473 if (!asus->pega_acc_live) {
474 asus->pega_acc_live = true;
475 input_report_abs(ipd->input, ABS_X, 0);
476 input_report_abs(ipd->input, ABS_Y, 0);
477 input_report_abs(ipd->input, ABS_Z, 0);
478 input_sync(ipd->input);
479 return;
480 }
481
482 asus->pega_acc_x = pega_acc_axis(asus, asus->pega_acc_x, METHOD_XLRX);
483 asus->pega_acc_y = pega_acc_axis(asus, asus->pega_acc_y, METHOD_XLRY);
484 asus->pega_acc_z = pega_acc_axis(asus, asus->pega_acc_z, METHOD_XLRZ);
485
486 /* Note transform, convert to "right/up/out" in the native
487 * landscape orientation (i.e. the vector is the direction of
488 * "real up" in the device's cartiesian coordinates). */
489 input_report_abs(ipd->input, ABS_X, -asus->pega_acc_x);
490 input_report_abs(ipd->input, ABS_Y, -asus->pega_acc_y);
491 input_report_abs(ipd->input, ABS_Z, asus->pega_acc_z);
492 input_sync(ipd->input);
493}
494
495static void pega_accel_exit(struct asus_laptop *asus)
496{
497 if (asus->pega_accel_poll) {
498 input_unregister_polled_device(asus->pega_accel_poll);
499 input_free_polled_device(asus->pega_accel_poll);
500 }
501 asus->pega_accel_poll = NULL;
502}
503
504static int pega_accel_init(struct asus_laptop *asus)
505{
506 int err;
507 struct input_polled_dev *ipd;
508
509 if (!asus->is_pega_lucid)
510 return -ENODEV;
511
512 if (acpi_check_handle(asus->handle, METHOD_XLRX, NULL) ||
513 acpi_check_handle(asus->handle, METHOD_XLRY, NULL) ||
514 acpi_check_handle(asus->handle, METHOD_XLRZ, NULL))
515 return -ENODEV;
516
517 ipd = input_allocate_polled_device();
518 if (!ipd)
519 return -ENOMEM;
520
521 ipd->poll = pega_accel_poll;
522 ipd->poll_interval = 125;
523 ipd->poll_interval_min = 50;
524 ipd->poll_interval_max = 2000;
525
526 ipd->input->name = PEGA_ACCEL_DESC;
527 ipd->input->phys = PEGA_ACCEL_NAME "/input0";
528 ipd->input->dev.parent = &asus->platform_device->dev;
529 ipd->input->id.bustype = BUS_HOST;
530
531 set_bit(EV_ABS, ipd->input->evbit);
532 input_set_abs_params(ipd->input, ABS_X,
533 -PEGA_ACC_CLAMP, PEGA_ACC_CLAMP, 0, 0);
534 input_set_abs_params(ipd->input, ABS_Y,
535 -PEGA_ACC_CLAMP, PEGA_ACC_CLAMP, 0, 0);
536 input_set_abs_params(ipd->input, ABS_Z,
537 -PEGA_ACC_CLAMP, PEGA_ACC_CLAMP, 0, 0);
538
539 err = input_register_polled_device(ipd);
540 if (err)
541 goto exit;
542
543 asus->pega_accel_poll = ipd;
544 return 0;
545
546exit:
547 input_free_polled_device(ipd);
548 return err;
549}
550
Corentin Chary17e78f62010-01-13 22:21:33 +0100551/* Generic LED function */
Corentin Charyaee0afb2010-01-26 21:01:34 +0100552static int asus_led_set(struct asus_laptop *asus, const char *method,
Corentin Chary17e78f62010-01-13 22:21:33 +0100553 int value)
Corentin Charybe18cda2007-01-26 14:04:35 +0100554{
Corentin Charyd99b5772010-01-22 21:20:57 +0100555 if (!strcmp(method, METHOD_MLED))
Corentin Chary17e78f62010-01-13 22:21:33 +0100556 value = !value;
Corentin Charyd99b5772010-01-22 21:20:57 +0100557 else if (!strcmp(method, METHOD_GLED))
Corentin Chary17e78f62010-01-13 22:21:33 +0100558 value = !value + 1;
559 else
560 value = !!value;
Corentin Charybe18cda2007-01-26 14:04:35 +0100561
Corentin Charye5593bf2010-01-17 17:20:11 +0100562 return write_acpi_int(asus->handle, method, value);
Corentin Charybe18cda2007-01-26 14:04:35 +0100563}
564
Corentin Charybe4ee822009-12-06 16:27:09 +0100565/*
566 * LEDs
567 */
Corentin Charybe18cda2007-01-26 14:04:35 +0100568/* /sys/class/led handlers */
Corentin Charyaee0afb2010-01-26 21:01:34 +0100569static void asus_led_cdev_set(struct led_classdev *led_cdev,
570 enum led_brightness value)
571{
572 struct asus_led *led = container_of(led_cdev, struct asus_led, led);
573 struct asus_laptop *asus = led->asus;
Corentin Charybe18cda2007-01-26 14:04:35 +0100574
Corentin Charyaee0afb2010-01-26 21:01:34 +0100575 led->wk = !!value;
576 queue_work(asus->led_workqueue, &led->work);
577}
578
579static void asus_led_cdev_update(struct work_struct *work)
580{
581 struct asus_led *led = container_of(work, struct asus_led, work);
582 struct asus_laptop *asus = led->asus;
583
584 asus_led_set(asus, led->method, led->wk);
585}
586
587static enum led_brightness asus_led_cdev_get(struct led_classdev *led_cdev)
588{
589 return led_cdev->brightness;
590}
Corentin Charybe18cda2007-01-26 14:04:35 +0100591
Corentin Charyb7d3fbc2009-08-28 12:56:50 +0000592/*
Corentin Charybe4ee822009-12-06 16:27:09 +0100593 * Keyboard backlight (also a LED)
Corentin Charyb7d3fbc2009-08-28 12:56:50 +0000594 */
Corentin Charyd99b5772010-01-22 21:20:57 +0100595static int asus_kled_lvl(struct asus_laptop *asus)
Corentin Charyb7d3fbc2009-08-28 12:56:50 +0000596{
597 unsigned long long kblv;
598 struct acpi_object_list params;
599 union acpi_object in_obj;
600 acpi_status rv;
601
602 params.count = 1;
603 params.pointer = &in_obj;
604 in_obj.type = ACPI_TYPE_INTEGER;
605 in_obj.integer.value = 2;
606
Corentin Charyd99b5772010-01-22 21:20:57 +0100607 rv = acpi_evaluate_integer(asus->handle, METHOD_KBD_LIGHT_GET,
608 &params, &kblv);
Corentin Charyb7d3fbc2009-08-28 12:56:50 +0000609 if (ACPI_FAILURE(rv)) {
Joe Perches5ad77dc2011-03-29 15:21:35 -0700610 pr_warn("Error reading kled level\n");
Corentin Chary4d441512010-01-13 22:26:24 +0100611 return -ENODEV;
Corentin Charyb7d3fbc2009-08-28 12:56:50 +0000612 }
613 return kblv;
614}
615
Corentin Chary4d441512010-01-13 22:26:24 +0100616static int asus_kled_set(struct asus_laptop *asus, int kblv)
Corentin Charyb7d3fbc2009-08-28 12:56:50 +0000617{
618 if (kblv > 0)
619 kblv = (1 << 7) | (kblv & 0x7F);
620 else
621 kblv = 0;
622
Corentin Charyd99b5772010-01-22 21:20:57 +0100623 if (write_acpi_int(asus->handle, METHOD_KBD_LIGHT_SET, kblv)) {
Joe Perches5ad77dc2011-03-29 15:21:35 -0700624 pr_warn("Keyboard LED display write failed\n");
Corentin Charyb7d3fbc2009-08-28 12:56:50 +0000625 return -EINVAL;
626 }
627 return 0;
628}
629
Corentin Charyaee0afb2010-01-26 21:01:34 +0100630static void asus_kled_cdev_set(struct led_classdev *led_cdev,
631 enum led_brightness value)
Corentin Charyb7d3fbc2009-08-28 12:56:50 +0000632{
Corentin Charyaee0afb2010-01-26 21:01:34 +0100633 struct asus_led *led = container_of(led_cdev, struct asus_led, led);
634 struct asus_laptop *asus = led->asus;
Corentin Chary9129d142009-12-01 22:39:41 +0100635
Corentin Chary060cbce2010-01-28 10:52:40 +0100636 led->wk = value;
Corentin Charyaee0afb2010-01-26 21:01:34 +0100637 queue_work(asus->led_workqueue, &led->work);
Corentin Charyb7d3fbc2009-08-28 12:56:50 +0000638}
639
Corentin Charyaee0afb2010-01-26 21:01:34 +0100640static void asus_kled_cdev_update(struct work_struct *work)
Corentin Charyb7d3fbc2009-08-28 12:56:50 +0000641{
Corentin Charyaee0afb2010-01-26 21:01:34 +0100642 struct asus_led *led = container_of(work, struct asus_led, work);
643 struct asus_laptop *asus = led->asus;
Corentin Chary9129d142009-12-01 22:39:41 +0100644
Corentin Charyaee0afb2010-01-26 21:01:34 +0100645 asus_kled_set(asus, led->wk);
Corentin Charyb7d3fbc2009-08-28 12:56:50 +0000646}
647
Corentin Charyaee0afb2010-01-26 21:01:34 +0100648static enum led_brightness asus_kled_cdev_get(struct led_classdev *led_cdev)
Corentin Charyb7d3fbc2009-08-28 12:56:50 +0000649{
Corentin Charyaee0afb2010-01-26 21:01:34 +0100650 struct asus_led *led = container_of(led_cdev, struct asus_led, led);
651 struct asus_laptop *asus = led->asus;
Corentin Charyd99b5772010-01-22 21:20:57 +0100652
653 return asus_kled_lvl(asus);
Corentin Charyb7d3fbc2009-08-28 12:56:50 +0000654}
655
Corentin Charybe4ee822009-12-06 16:27:09 +0100656static void asus_led_exit(struct asus_laptop *asus)
657{
Corentin Chary774b0672011-12-15 08:27:34 +0100658 if (!IS_ERR_OR_NULL(asus->wled.led.dev))
659 led_classdev_unregister(&asus->wled.led);
660 if (!IS_ERR_OR_NULL(asus->bled.led.dev))
661 led_classdev_unregister(&asus->bled.led);
Axel Lin8fcf71a2011-08-08 17:17:18 +0800662 if (!IS_ERR_OR_NULL(asus->mled.led.dev))
Corentin Charyaee0afb2010-01-26 21:01:34 +0100663 led_classdev_unregister(&asus->mled.led);
Axel Lin8fcf71a2011-08-08 17:17:18 +0800664 if (!IS_ERR_OR_NULL(asus->tled.led.dev))
Corentin Charyaee0afb2010-01-26 21:01:34 +0100665 led_classdev_unregister(&asus->tled.led);
Axel Lin8fcf71a2011-08-08 17:17:18 +0800666 if (!IS_ERR_OR_NULL(asus->pled.led.dev))
Corentin Charyaee0afb2010-01-26 21:01:34 +0100667 led_classdev_unregister(&asus->pled.led);
Axel Lin8fcf71a2011-08-08 17:17:18 +0800668 if (!IS_ERR_OR_NULL(asus->rled.led.dev))
Corentin Charyaee0afb2010-01-26 21:01:34 +0100669 led_classdev_unregister(&asus->rled.led);
Axel Lin8fcf71a2011-08-08 17:17:18 +0800670 if (!IS_ERR_OR_NULL(asus->gled.led.dev))
Corentin Charyaee0afb2010-01-26 21:01:34 +0100671 led_classdev_unregister(&asus->gled.led);
Axel Lin8fcf71a2011-08-08 17:17:18 +0800672 if (!IS_ERR_OR_NULL(asus->kled.led.dev))
Corentin Charyaee0afb2010-01-26 21:01:34 +0100673 led_classdev_unregister(&asus->kled.led);
674 if (asus->led_workqueue) {
675 destroy_workqueue(asus->led_workqueue);
676 asus->led_workqueue = NULL;
Corentin Charybe4ee822009-12-06 16:27:09 +0100677 }
678}
679
680/* Ugly macro, need to fix that later */
Corentin Charyaee0afb2010-01-26 21:01:34 +0100681static int asus_led_register(struct asus_laptop *asus,
682 struct asus_led *led,
683 const char *name, const char *method)
684{
685 struct led_classdev *led_cdev = &led->led;
686
687 if (!method || acpi_check_handle(asus->handle, method, NULL))
Corentin Chary060cbce2010-01-28 10:52:40 +0100688 return 0; /* Led not present */
Corentin Charyaee0afb2010-01-26 21:01:34 +0100689
690 led->asus = asus;
691 led->method = method;
692
693 INIT_WORK(&led->work, asus_led_cdev_update);
694 led_cdev->name = name;
695 led_cdev->brightness_set = asus_led_cdev_set;
696 led_cdev->brightness_get = asus_led_cdev_get;
697 led_cdev->max_brightness = 1;
698 return led_classdev_register(&asus->platform_device->dev, led_cdev);
699}
Corentin Charybe4ee822009-12-06 16:27:09 +0100700
701static int asus_led_init(struct asus_laptop *asus)
702{
Corentin Chary774b0672011-12-15 08:27:34 +0100703 int r = 0;
Corentin Charybe4ee822009-12-06 16:27:09 +0100704
705 /*
Corentin Chary8d38e422011-10-14 11:13:39 +0200706 * The Pegatron Lucid has no physical leds, but all methods are
707 * available in the DSDT...
708 */
709 if (asus->is_pega_lucid)
710 return 0;
711
712 /*
Corentin Charybe4ee822009-12-06 16:27:09 +0100713 * Functions that actually update the LED's are called from a
714 * workqueue. By doing this as separate work rather than when the LED
715 * subsystem asks, we avoid messing with the Asus ACPI stuff during a
716 * potentially bad time, such as a timer interrupt.
717 */
Corentin Charyaee0afb2010-01-26 21:01:34 +0100718 asus->led_workqueue = create_singlethread_workqueue("led_workqueue");
719 if (!asus->led_workqueue)
Corentin Charybe4ee822009-12-06 16:27:09 +0100720 return -ENOMEM;
721
Corentin Chary774b0672011-12-15 08:27:34 +0100722 if (asus->wled_type == TYPE_LED)
723 r = asus_led_register(asus, &asus->wled, "asus::wlan",
724 METHOD_WLAN);
725 if (r)
726 goto error;
727 if (asus->bled_type == TYPE_LED)
728 r = asus_led_register(asus, &asus->bled, "asus::bluetooth",
729 METHOD_BLUETOOTH);
730 if (r)
731 goto error;
Corentin Charyaee0afb2010-01-26 21:01:34 +0100732 r = asus_led_register(asus, &asus->mled, "asus::mail", METHOD_MLED);
733 if (r)
734 goto error;
735 r = asus_led_register(asus, &asus->tled, "asus::touchpad", METHOD_TLED);
736 if (r)
737 goto error;
738 r = asus_led_register(asus, &asus->rled, "asus::record", METHOD_RLED);
739 if (r)
740 goto error;
741 r = asus_led_register(asus, &asus->pled, "asus::phone", METHOD_PLED);
742 if (r)
743 goto error;
744 r = asus_led_register(asus, &asus->gled, "asus::gaming", METHOD_GLED);
745 if (r)
746 goto error;
Corentin Charyd99b5772010-01-22 21:20:57 +0100747 if (!acpi_check_handle(asus->handle, METHOD_KBD_LIGHT_SET, NULL) &&
Corentin Charyaee0afb2010-01-26 21:01:34 +0100748 !acpi_check_handle(asus->handle, METHOD_KBD_LIGHT_GET, NULL)) {
749 struct asus_led *led = &asus->kled;
750 struct led_classdev *cdev = &led->led;
751
752 led->asus = asus;
753
754 INIT_WORK(&led->work, asus_kled_cdev_update);
755 cdev->name = "asus::kbd_backlight";
756 cdev->brightness_set = asus_kled_cdev_set;
757 cdev->brightness_get = asus_kled_cdev_get;
758 cdev->max_brightness = 3;
759 r = led_classdev_register(&asus->platform_device->dev, cdev);
760 }
Corentin Charybe4ee822009-12-06 16:27:09 +0100761error:
Corentin Charyaee0afb2010-01-26 21:01:34 +0100762 if (r)
Corentin Charybe4ee822009-12-06 16:27:09 +0100763 asus_led_exit(asus);
Corentin Charyaee0afb2010-01-26 21:01:34 +0100764 return r;
Corentin Charybe4ee822009-12-06 16:27:09 +0100765}
766
767/*
768 * Backlight device
769 */
Corentin Chary4d441512010-01-13 22:26:24 +0100770static int asus_read_brightness(struct backlight_device *bd)
Corentin Chary6b7091e2007-01-26 14:04:45 +0100771{
Corentin Charyd99b5772010-01-22 21:20:57 +0100772 struct asus_laptop *asus = bl_get_data(bd);
Matthew Wilcox27663c52008-10-10 02:22:59 -0400773 unsigned long long value;
Giedrius Statkevičius2ce6d992016-04-16 03:01:56 +0300774 acpi_status rv;
Corentin Chary6b7091e2007-01-26 14:04:45 +0100775
Corentin Charyd99b5772010-01-22 21:20:57 +0100776 rv = acpi_evaluate_integer(asus->handle, METHOD_BRIGHTNESS_GET,
777 NULL, &value);
Giedrius Statkevičius198b6182016-04-16 03:27:12 +0300778 if (ACPI_FAILURE(rv)) {
Joe Perches5ad77dc2011-03-29 15:21:35 -0700779 pr_warn("Error reading brightness\n");
Giedrius Statkevičius198b6182016-04-16 03:27:12 +0300780 return 0;
781 }
Corentin Chary6b7091e2007-01-26 14:04:45 +0100782
783 return value;
784}
785
Corentin Chary4d441512010-01-13 22:26:24 +0100786static int asus_set_brightness(struct backlight_device *bd, int value)
Corentin Chary6b7091e2007-01-26 14:04:45 +0100787{
Corentin Charyd99b5772010-01-22 21:20:57 +0100788 struct asus_laptop *asus = bl_get_data(bd);
789
790 if (write_acpi_int(asus->handle, METHOD_BRIGHTNESS_SET, value)) {
Joe Perches5ad77dc2011-03-29 15:21:35 -0700791 pr_warn("Error changing brightness\n");
Corentin Charye5b50f62009-11-28 10:19:55 +0100792 return -EIO;
Corentin Chary6b7091e2007-01-26 14:04:45 +0100793 }
Corentin Charye5b50f62009-11-28 10:19:55 +0100794 return 0;
Corentin Chary6b7091e2007-01-26 14:04:45 +0100795}
796
797static int update_bl_status(struct backlight_device *bd)
798{
Richard Purdie599a52d2007-02-10 23:07:48 +0000799 int value = bd->props.brightness;
Corentin Chary6b7091e2007-01-26 14:04:45 +0100800
Corentin Chary3b81cf92011-02-06 13:27:31 +0100801 return asus_set_brightness(bd, value);
Corentin Chary6b7091e2007-01-26 14:04:45 +0100802}
803
Lionel Debrouxacc24722010-11-16 14:14:02 +0100804static const struct backlight_ops asusbl_ops = {
Corentin Chary4d441512010-01-13 22:26:24 +0100805 .get_brightness = asus_read_brightness,
Corentin Charybe4ee822009-12-06 16:27:09 +0100806 .update_status = update_bl_status,
807};
808
Corentin Charya539df52010-01-25 22:53:21 +0100809static int asus_backlight_notify(struct asus_laptop *asus)
810{
811 struct backlight_device *bd = asus->backlight_device;
812 int old = bd->props.brightness;
813
814 backlight_force_update(bd, BACKLIGHT_UPDATE_HOTKEY);
815
816 return old;
817}
818
Corentin Charybe4ee822009-12-06 16:27:09 +0100819static int asus_backlight_init(struct asus_laptop *asus)
820{
821 struct backlight_device *bd;
Matthew Garretta19a6ee2010-02-17 16:39:44 -0500822 struct backlight_properties props;
Corentin Charybe4ee822009-12-06 16:27:09 +0100823
Corentin Chary71e687d2010-08-24 09:30:44 +0200824 if (acpi_check_handle(asus->handle, METHOD_BRIGHTNESS_GET, NULL) ||
Corentin Chary3b81cf92011-02-06 13:27:31 +0100825 acpi_check_handle(asus->handle, METHOD_BRIGHTNESS_SET, NULL))
Corentin Chary71e687d2010-08-24 09:30:44 +0200826 return 0;
Matthew Garretta19a6ee2010-02-17 16:39:44 -0500827
Corentin Chary71e687d2010-08-24 09:30:44 +0200828 memset(&props, 0, sizeof(struct backlight_properties));
829 props.max_brightness = 15;
Matthew Garrettbb7ca742011-03-22 16:30:21 -0700830 props.type = BACKLIGHT_PLATFORM;
Corentin Charybe4ee822009-12-06 16:27:09 +0100831
Corentin Chary71e687d2010-08-24 09:30:44 +0200832 bd = backlight_device_register(ASUS_LAPTOP_FILE,
833 &asus->platform_device->dev, asus,
834 &asusbl_ops, &props);
835 if (IS_ERR(bd)) {
836 pr_err("Could not register asus backlight device\n");
837 asus->backlight_device = NULL;
838 return PTR_ERR(bd);
Corentin Charybe4ee822009-12-06 16:27:09 +0100839 }
Corentin Chary71e687d2010-08-24 09:30:44 +0200840
841 asus->backlight_device = bd;
842 bd->props.brightness = asus_read_brightness(bd);
843 bd->props.power = FB_BLANK_UNBLANK;
844 backlight_update_status(bd);
Corentin Charybe4ee822009-12-06 16:27:09 +0100845 return 0;
846}
847
848static void asus_backlight_exit(struct asus_laptop *asus)
849{
Markus Elfring00981812014-11-24 20:30:29 +0100850 backlight_device_unregister(asus->backlight_device);
Corentin Charya539df52010-01-25 22:53:21 +0100851 asus->backlight_device = NULL;
Corentin Charybe4ee822009-12-06 16:27:09 +0100852}
853
Corentin Chary85091b72007-01-26 14:04:30 +0100854/*
855 * Platform device handlers
856 */
857
858/*
859 * We write our info in page, we begin at offset off and cannot write more
860 * than count bytes. We set eof to 1 if we handle those 2 values. We return the
861 * number of bytes written in page
862 */
Vivien Dideloted52ccb2015-01-23 09:01:10 -0500863static ssize_t infos_show(struct device *dev, struct device_attribute *attr,
864 char *page)
Corentin Chary85091b72007-01-26 14:04:30 +0100865{
Corentin Chary9129d142009-12-01 22:39:41 +0100866 struct asus_laptop *asus = dev_get_drvdata(dev);
Corentin Chary85091b72007-01-26 14:04:30 +0100867 int len = 0;
Matthew Wilcox27663c52008-10-10 02:22:59 -0400868 unsigned long long temp;
Corentin Charybe966662009-08-29 10:28:29 +0200869 char buf[16]; /* enough for all info */
Giedrius Statkevičius2ce6d992016-04-16 03:01:56 +0300870 acpi_status rv;
Corentin Chary9a816852007-03-11 10:25:38 +0100871
Corentin Chary85091b72007-01-26 14:04:30 +0100872 /*
Corentin Chary060cbce2010-01-28 10:52:40 +0100873 * We use the easy way, we don't care of off and count,
874 * so we don't set eof to 1
Corentin Chary85091b72007-01-26 14:04:30 +0100875 */
876
Corentin Chary50a90c42009-11-30 21:55:12 +0100877 len += sprintf(page, ASUS_LAPTOP_NAME " " ASUS_LAPTOP_VERSION "\n");
878 len += sprintf(page + len, "Model reference : %s\n", asus->name);
Corentin Chary85091b72007-01-26 14:04:30 +0100879 /*
880 * The SFUN method probably allows the original driver to get the list
881 * of features supported by a given model. For now, 0x0100 or 0x0800
882 * bit signifies that the laptop is equipped with a Wi-Fi MiniPCI card.
883 * The significance of others is yet to be found.
884 */
Corentin Chary50a90c42009-11-30 21:55:12 +0100885 rv = acpi_evaluate_integer(asus->handle, "SFUN", NULL, &temp);
Corentin Chary9a816852007-03-11 10:25:38 +0100886 if (!ACPI_FAILURE(rv))
Corentin Chary1d4a3802009-08-28 12:56:46 +0000887 len += sprintf(page + len, "SFUN value : %#x\n",
888 (uint) temp);
889 /*
890 * The HWRS method return informations about the hardware.
891 * 0x80 bit is for WLAN, 0x100 for Bluetooth.
Ben Hutchingscb7da022012-11-29 09:12:37 +0100892 * 0x40 for WWAN, 0x10 for WIMAX.
Corentin Chary1d4a3802009-08-28 12:56:46 +0000893 * The significance of others is yet to be found.
Ben Hutchingscb7da022012-11-29 09:12:37 +0100894 * We don't currently use this for device detection, and it
895 * takes several seconds to run on some systems.
Corentin Chary1d4a3802009-08-28 12:56:46 +0000896 */
Corentin Chary8871e992012-08-20 23:01:51 +0200897 rv = acpi_evaluate_integer(asus->handle, "HWRS", NULL, &temp);
Corentin Chary1d4a3802009-08-28 12:56:46 +0000898 if (!ACPI_FAILURE(rv))
Corentin Chary8871e992012-08-20 23:01:51 +0200899 len += sprintf(page + len, "HWRS value : %#x\n",
Corentin Chary9a816852007-03-11 10:25:38 +0100900 (uint) temp);
Corentin Chary85091b72007-01-26 14:04:30 +0100901 /*
902 * Another value for userspace: the ASYM method returns 0x02 for
903 * battery low and 0x04 for battery critical, its readings tend to be
904 * more accurate than those provided by _BST.
905 * Note: since not all the laptops provide this method, errors are
906 * silently ignored.
907 */
Corentin Chary50a90c42009-11-30 21:55:12 +0100908 rv = acpi_evaluate_integer(asus->handle, "ASYM", NULL, &temp);
Corentin Chary9a816852007-03-11 10:25:38 +0100909 if (!ACPI_FAILURE(rv))
Corentin Chary1d4a3802009-08-28 12:56:46 +0000910 len += sprintf(page + len, "ASYM value : %#x\n",
Corentin Chary9a816852007-03-11 10:25:38 +0100911 (uint) temp);
Corentin Chary7c247642009-11-30 22:13:54 +0100912 if (asus->dsdt_info) {
913 snprintf(buf, 16, "%d", asus->dsdt_info->length);
Corentin Chary85091b72007-01-26 14:04:30 +0100914 len += sprintf(page + len, "DSDT length : %s\n", buf);
Corentin Chary7c247642009-11-30 22:13:54 +0100915 snprintf(buf, 16, "%d", asus->dsdt_info->checksum);
Corentin Chary85091b72007-01-26 14:04:30 +0100916 len += sprintf(page + len, "DSDT checksum : %s\n", buf);
Corentin Chary7c247642009-11-30 22:13:54 +0100917 snprintf(buf, 16, "%d", asus->dsdt_info->revision);
Corentin Chary85091b72007-01-26 14:04:30 +0100918 len += sprintf(page + len, "DSDT revision : %s\n", buf);
Corentin Chary7c247642009-11-30 22:13:54 +0100919 snprintf(buf, 7, "%s", asus->dsdt_info->oem_id);
Corentin Chary85091b72007-01-26 14:04:30 +0100920 len += sprintf(page + len, "OEM id : %s\n", buf);
Corentin Chary7c247642009-11-30 22:13:54 +0100921 snprintf(buf, 9, "%s", asus->dsdt_info->oem_table_id);
Corentin Chary85091b72007-01-26 14:04:30 +0100922 len += sprintf(page + len, "OEM table id : %s\n", buf);
Corentin Chary7c247642009-11-30 22:13:54 +0100923 snprintf(buf, 16, "%x", asus->dsdt_info->oem_revision);
Corentin Chary85091b72007-01-26 14:04:30 +0100924 len += sprintf(page + len, "OEM revision : 0x%s\n", buf);
Corentin Chary7c247642009-11-30 22:13:54 +0100925 snprintf(buf, 5, "%s", asus->dsdt_info->asl_compiler_id);
Corentin Chary85091b72007-01-26 14:04:30 +0100926 len += sprintf(page + len, "ASL comp vendor id : %s\n", buf);
Corentin Chary7c247642009-11-30 22:13:54 +0100927 snprintf(buf, 16, "%x", asus->dsdt_info->asl_compiler_revision);
Corentin Chary85091b72007-01-26 14:04:30 +0100928 len += sprintf(page + len, "ASL comp revision : 0x%s\n", buf);
929 }
930
931 return len;
932}
Vivien Dideloted52ccb2015-01-23 09:01:10 -0500933static DEVICE_ATTR_RO(infos);
Corentin Chary85091b72007-01-26 14:04:30 +0100934
Corentin Chary17e78f62010-01-13 22:21:33 +0100935static ssize_t sysfs_acpi_set(struct asus_laptop *asus,
936 const char *buf, size_t count,
Corentin Charyd99b5772010-01-22 21:20:57 +0100937 const char *method)
Corentin Chary4564de12007-01-26 14:04:40 +0100938{
939 int rv, value;
Corentin Chary4564de12007-01-26 14:04:40 +0100940
Giedrius Statkevičius6f7e3572016-08-05 23:57:10 +0300941 rv = kstrtoint(buf, 0, &value);
942 if (rv < 0)
Giedrius Statkevičius19d46ee2016-04-16 03:01:57 +0300943 return rv;
Corentin Chary4564de12007-01-26 14:04:40 +0100944
Corentin Charyd99b5772010-01-22 21:20:57 +0100945 if (write_acpi_int(asus->handle, method, value))
Corentin Chary17e78f62010-01-13 22:21:33 +0100946 return -ENODEV;
Giedrius Statkevičius6f7e3572016-08-05 23:57:10 +0300947 return count;
Corentin Chary4564de12007-01-26 14:04:40 +0100948}
949
950/*
Corentin Chary722ad972007-01-26 14:04:55 +0100951 * LEDD display
952 */
Vivien Dideloted52ccb2015-01-23 09:01:10 -0500953static ssize_t ledd_show(struct device *dev, struct device_attribute *attr,
954 char *buf)
Corentin Chary722ad972007-01-26 14:04:55 +0100955{
Corentin Chary9129d142009-12-01 22:39:41 +0100956 struct asus_laptop *asus = dev_get_drvdata(dev);
957
Corentin Chary50a90c42009-11-30 21:55:12 +0100958 return sprintf(buf, "0x%08x\n", asus->ledd_status);
Corentin Chary722ad972007-01-26 14:04:55 +0100959}
960
Vivien Dideloted52ccb2015-01-23 09:01:10 -0500961static ssize_t ledd_store(struct device *dev, struct device_attribute *attr,
Corentin Chary722ad972007-01-26 14:04:55 +0100962 const char *buf, size_t count)
963{
Corentin Chary9129d142009-12-01 22:39:41 +0100964 struct asus_laptop *asus = dev_get_drvdata(dev);
Corentin Chary722ad972007-01-26 14:04:55 +0100965 int rv, value;
966
Giedrius Statkevičius6f7e3572016-08-05 23:57:10 +0300967 rv = kstrtoint(buf, 0, &value);
968 if (rv < 0)
969 return rv;
970
971 if (write_acpi_int(asus->handle, METHOD_LEDD, value)) {
972 pr_warn("LED display write failed\n");
973 return -ENODEV;
Corentin Chary722ad972007-01-26 14:04:55 +0100974 }
Giedrius Statkevičius6f7e3572016-08-05 23:57:10 +0300975
976 asus->ledd_status = (u32) value;
977 return count;
Corentin Chary722ad972007-01-26 14:04:55 +0100978}
Vivien Dideloted52ccb2015-01-23 09:01:10 -0500979static DEVICE_ATTR_RW(ledd);
Corentin Chary722ad972007-01-26 14:04:55 +0100980
981/*
Corentin Charyaa9df932010-01-13 21:49:10 +0100982 * Wireless
983 */
984static int asus_wireless_status(struct asus_laptop *asus, int mask)
985{
986 unsigned long long status;
987 acpi_status rv = AE_OK;
988
989 if (!asus->have_rsts)
990 return (asus->wireless_status & mask) ? 1 : 0;
991
Corentin Charyd99b5772010-01-22 21:20:57 +0100992 rv = acpi_evaluate_integer(asus->handle, METHOD_WL_STATUS,
993 NULL, &status);
Corentin Charyaa9df932010-01-13 21:49:10 +0100994 if (ACPI_FAILURE(rv)) {
Joe Perches5ad77dc2011-03-29 15:21:35 -0700995 pr_warn("Error reading Wireless status\n");
Corentin Charyaa9df932010-01-13 21:49:10 +0100996 return -EINVAL;
997 }
998 return !!(status & mask);
999}
1000
1001/*
Corentin Chary4564de12007-01-26 14:04:40 +01001002 * WLAN
1003 */
Corentin Charye5593bf2010-01-17 17:20:11 +01001004static int asus_wlan_set(struct asus_laptop *asus, int status)
1005{
1006 if (write_acpi_int(asus->handle, METHOD_WLAN, !!status)) {
Joe Perches5ad77dc2011-03-29 15:21:35 -07001007 pr_warn("Error setting wlan status to %d\n", status);
Corentin Charye5593bf2010-01-17 17:20:11 +01001008 return -EIO;
1009 }
1010 return 0;
1011}
1012
Vivien Dideloted52ccb2015-01-23 09:01:10 -05001013static ssize_t wlan_show(struct device *dev, struct device_attribute *attr,
1014 char *buf)
Corentin Chary4564de12007-01-26 14:04:40 +01001015{
Corentin Chary9129d142009-12-01 22:39:41 +01001016 struct asus_laptop *asus = dev_get_drvdata(dev);
1017
Corentin Chary17e78f62010-01-13 22:21:33 +01001018 return sprintf(buf, "%d\n", asus_wireless_status(asus, WL_RSTS));
Corentin Chary4564de12007-01-26 14:04:40 +01001019}
1020
Vivien Dideloted52ccb2015-01-23 09:01:10 -05001021static ssize_t wlan_store(struct device *dev, struct device_attribute *attr,
Corentin Chary4564de12007-01-26 14:04:40 +01001022 const char *buf, size_t count)
1023{
Corentin Chary9129d142009-12-01 22:39:41 +01001024 struct asus_laptop *asus = dev_get_drvdata(dev);
1025
Corentin Charyd99b5772010-01-22 21:20:57 +01001026 return sysfs_acpi_set(asus, buf, count, METHOD_WLAN);
Corentin Chary4564de12007-01-26 14:04:40 +01001027}
Vivien Dideloted52ccb2015-01-23 09:01:10 -05001028static DEVICE_ATTR_RW(wlan);
Corentin Chary4564de12007-01-26 14:04:40 +01001029
Corentin Chary774b0672011-12-15 08:27:34 +01001030/*e
Corentin Chary4564de12007-01-26 14:04:40 +01001031 * Bluetooth
1032 */
Corentin Charye5593bf2010-01-17 17:20:11 +01001033static int asus_bluetooth_set(struct asus_laptop *asus, int status)
1034{
1035 if (write_acpi_int(asus->handle, METHOD_BLUETOOTH, !!status)) {
Joe Perches5ad77dc2011-03-29 15:21:35 -07001036 pr_warn("Error setting bluetooth status to %d\n", status);
Corentin Charye5593bf2010-01-17 17:20:11 +01001037 return -EIO;
1038 }
1039 return 0;
1040}
1041
Vivien Dideloted52ccb2015-01-23 09:01:10 -05001042static ssize_t bluetooth_show(struct device *dev, struct device_attribute *attr,
1043 char *buf)
Corentin Chary4564de12007-01-26 14:04:40 +01001044{
Corentin Chary9129d142009-12-01 22:39:41 +01001045 struct asus_laptop *asus = dev_get_drvdata(dev);
1046
Corentin Chary17e78f62010-01-13 22:21:33 +01001047 return sprintf(buf, "%d\n", asus_wireless_status(asus, BT_RSTS));
Corentin Chary4564de12007-01-26 14:04:40 +01001048}
1049
Vivien Dideloted52ccb2015-01-23 09:01:10 -05001050static ssize_t bluetooth_store(struct device *dev,
Len Brown8def05f2007-01-30 01:46:43 -05001051 struct device_attribute *attr, const char *buf,
1052 size_t count)
Corentin Chary4564de12007-01-26 14:04:40 +01001053{
Corentin Chary9129d142009-12-01 22:39:41 +01001054 struct asus_laptop *asus = dev_get_drvdata(dev);
1055
Corentin Charyd99b5772010-01-22 21:20:57 +01001056 return sysfs_acpi_set(asus, buf, count, METHOD_BLUETOOTH);
Corentin Chary4564de12007-01-26 14:04:40 +01001057}
Vivien Dideloted52ccb2015-01-23 09:01:10 -05001058static DEVICE_ATTR_RW(bluetooth);
Corentin Chary4564de12007-01-26 14:04:40 +01001059
Corentin Chary78127b42007-01-26 14:04:49 +01001060/*
Corentin Charyba1ff5b2010-11-14 17:40:12 +01001061 * Wimax
1062 */
1063static int asus_wimax_set(struct asus_laptop *asus, int status)
1064{
1065 if (write_acpi_int(asus->handle, METHOD_WIMAX, !!status)) {
Joe Perches5ad77dc2011-03-29 15:21:35 -07001066 pr_warn("Error setting wimax status to %d\n", status);
Corentin Charyba1ff5b2010-11-14 17:40:12 +01001067 return -EIO;
1068 }
1069 return 0;
1070}
1071
Vivien Dideloted52ccb2015-01-23 09:01:10 -05001072static ssize_t wimax_show(struct device *dev, struct device_attribute *attr,
1073 char *buf)
Corentin Charyba1ff5b2010-11-14 17:40:12 +01001074{
1075 struct asus_laptop *asus = dev_get_drvdata(dev);
1076
1077 return sprintf(buf, "%d\n", asus_wireless_status(asus, WM_RSTS));
1078}
1079
Vivien Dideloted52ccb2015-01-23 09:01:10 -05001080static ssize_t wimax_store(struct device *dev, struct device_attribute *attr,
1081 const char *buf, size_t count)
Corentin Charyba1ff5b2010-11-14 17:40:12 +01001082{
1083 struct asus_laptop *asus = dev_get_drvdata(dev);
1084
1085 return sysfs_acpi_set(asus, buf, count, METHOD_WIMAX);
1086}
Vivien Dideloted52ccb2015-01-23 09:01:10 -05001087static DEVICE_ATTR_RW(wimax);
Corentin Charyba1ff5b2010-11-14 17:40:12 +01001088
1089/*
1090 * Wwan
1091 */
1092static int asus_wwan_set(struct asus_laptop *asus, int status)
1093{
1094 if (write_acpi_int(asus->handle, METHOD_WWAN, !!status)) {
Joe Perches5ad77dc2011-03-29 15:21:35 -07001095 pr_warn("Error setting wwan status to %d\n", status);
Corentin Charyba1ff5b2010-11-14 17:40:12 +01001096 return -EIO;
1097 }
1098 return 0;
1099}
1100
Vivien Dideloted52ccb2015-01-23 09:01:10 -05001101static ssize_t wwan_show(struct device *dev, struct device_attribute *attr,
1102 char *buf)
Corentin Charyba1ff5b2010-11-14 17:40:12 +01001103{
1104 struct asus_laptop *asus = dev_get_drvdata(dev);
1105
1106 return sprintf(buf, "%d\n", asus_wireless_status(asus, WW_RSTS));
1107}
1108
Vivien Dideloted52ccb2015-01-23 09:01:10 -05001109static ssize_t wwan_store(struct device *dev, struct device_attribute *attr,
1110 const char *buf, size_t count)
Corentin Charyba1ff5b2010-11-14 17:40:12 +01001111{
1112 struct asus_laptop *asus = dev_get_drvdata(dev);
1113
1114 return sysfs_acpi_set(asus, buf, count, METHOD_WWAN);
1115}
Vivien Dideloted52ccb2015-01-23 09:01:10 -05001116static DEVICE_ATTR_RW(wwan);
Corentin Charyba1ff5b2010-11-14 17:40:12 +01001117
1118/*
Corentin Chary78127b42007-01-26 14:04:49 +01001119 * Display
1120 */
Corentin Chary4d441512010-01-13 22:26:24 +01001121static void asus_set_display(struct asus_laptop *asus, int value)
Corentin Chary78127b42007-01-26 14:04:49 +01001122{
1123 /* no sanity check needed for now */
Corentin Charyd99b5772010-01-22 21:20:57 +01001124 if (write_acpi_int(asus->handle, METHOD_SWITCH_DISPLAY, value))
Joe Perches5ad77dc2011-03-29 15:21:35 -07001125 pr_warn("Error setting display\n");
Corentin Chary78127b42007-01-26 14:04:49 +01001126 return;
1127}
1128
Corentin Chary78127b42007-01-26 14:04:49 +01001129/*
1130 * Experimental support for display switching. As of now: 1 should activate
1131 * the LCD output, 2 should do for CRT, 4 for TV-Out and 8 for DVI.
1132 * Any combination (bitwise) of these will suffice. I never actually tested 4
1133 * displays hooked up simultaneously, so be warned. See the acpi4asus README
1134 * for more info.
1135 */
Vivien Dideloted52ccb2015-01-23 09:01:10 -05001136static ssize_t display_store(struct device *dev, struct device_attribute *attr,
1137 const char *buf, size_t count)
Corentin Chary78127b42007-01-26 14:04:49 +01001138{
Corentin Chary9129d142009-12-01 22:39:41 +01001139 struct asus_laptop *asus = dev_get_drvdata(dev);
Corentin Chary78127b42007-01-26 14:04:49 +01001140 int rv, value;
1141
Giedrius Statkevičius6f7e3572016-08-05 23:57:10 +03001142 rv = kstrtoint(buf, 0, &value);
1143 if (rv < 0)
1144 return rv;
1145
1146 asus_set_display(asus, value);
1147 return count;
Corentin Chary78127b42007-01-26 14:04:49 +01001148}
Vivien Dideloted52ccb2015-01-23 09:01:10 -05001149static DEVICE_ATTR_WO(display);
Corentin Chary78127b42007-01-26 14:04:49 +01001150
Corentin Chary8b857352007-01-26 14:04:58 +01001151/*
1152 * Light Sens
1153 */
Corentin Chary4d441512010-01-13 22:26:24 +01001154static void asus_als_switch(struct asus_laptop *asus, int value)
Corentin Chary8b857352007-01-26 14:04:58 +01001155{
Andy Ross33989ba2011-10-14 11:13:36 +02001156 int ret;
1157
1158 if (asus->is_pega_lucid) {
1159 ret = asus_pega_lucid_set(asus, PEGA_ALS, value);
1160 if (!ret)
1161 ret = asus_pega_lucid_set(asus, PEGA_ALS_POWER, value);
1162 } else {
1163 ret = write_acpi_int(asus->handle, METHOD_ALS_CONTROL, value);
1164 }
1165 if (ret)
1166 pr_warning("Error setting light sensor switch\n");
1167
Corentin Chary50a90c42009-11-30 21:55:12 +01001168 asus->light_switch = value;
Corentin Chary8b857352007-01-26 14:04:58 +01001169}
1170
Vivien Dideloted52ccb2015-01-23 09:01:10 -05001171static ssize_t ls_switch_show(struct device *dev, struct device_attribute *attr,
1172 char *buf)
Corentin Chary8b857352007-01-26 14:04:58 +01001173{
Corentin Chary9129d142009-12-01 22:39:41 +01001174 struct asus_laptop *asus = dev_get_drvdata(dev);
1175
Corentin Chary50a90c42009-11-30 21:55:12 +01001176 return sprintf(buf, "%d\n", asus->light_switch);
Corentin Chary8b857352007-01-26 14:04:58 +01001177}
1178
Vivien Dideloted52ccb2015-01-23 09:01:10 -05001179static ssize_t ls_switch_store(struct device *dev,
1180 struct device_attribute *attr, const char *buf,
1181 size_t count)
Corentin Chary8b857352007-01-26 14:04:58 +01001182{
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
Giedrius Statkevičius6f7e3572016-08-05 23:57:10 +03001186 rv = kstrtoint(buf, 0, &value);
1187 if (rv < 0)
1188 return rv;
Corentin Chary8b857352007-01-26 14:04:58 +01001189
Giedrius Statkevičius6f7e3572016-08-05 23:57:10 +03001190 asus_als_switch(asus, value ? 1 : 0);
1191 return count;
Corentin Chary8b857352007-01-26 14:04:58 +01001192}
Vivien Dideloted52ccb2015-01-23 09:01:10 -05001193static DEVICE_ATTR_RW(ls_switch);
Corentin Chary8b857352007-01-26 14:04:58 +01001194
Corentin Chary4d441512010-01-13 22:26:24 +01001195static void asus_als_level(struct asus_laptop *asus, int value)
Corentin Chary8b857352007-01-26 14:04:58 +01001196{
Corentin Charyd99b5772010-01-22 21:20:57 +01001197 if (write_acpi_int(asus->handle, METHOD_ALS_LEVEL, value))
Joe Perches5ad77dc2011-03-29 15:21:35 -07001198 pr_warn("Error setting light sensor level\n");
Corentin Chary50a90c42009-11-30 21:55:12 +01001199 asus->light_level = value;
Corentin Chary8b857352007-01-26 14:04:58 +01001200}
1201
Vivien Dideloted52ccb2015-01-23 09:01:10 -05001202static ssize_t ls_level_show(struct device *dev, struct device_attribute *attr,
1203 char *buf)
Corentin Chary8b857352007-01-26 14:04:58 +01001204{
Corentin Chary9129d142009-12-01 22:39:41 +01001205 struct asus_laptop *asus = dev_get_drvdata(dev);
1206
Corentin Chary50a90c42009-11-30 21:55:12 +01001207 return sprintf(buf, "%d\n", asus->light_level);
Corentin Chary8b857352007-01-26 14:04:58 +01001208}
1209
Vivien Dideloted52ccb2015-01-23 09:01:10 -05001210static ssize_t ls_level_store(struct device *dev, struct device_attribute *attr,
1211 const char *buf, size_t count)
Corentin Chary8b857352007-01-26 14:04:58 +01001212{
Corentin Chary9129d142009-12-01 22:39:41 +01001213 struct asus_laptop *asus = dev_get_drvdata(dev);
Corentin Chary8b857352007-01-26 14:04:58 +01001214 int rv, value;
1215
Giedrius Statkevičius6f7e3572016-08-05 23:57:10 +03001216 rv = kstrtoint(buf, 0, &value);
1217 if (rv < 0)
1218 return rv;
Corentin Chary8b857352007-01-26 14:04:58 +01001219
Giedrius Statkevičius6f7e3572016-08-05 23:57:10 +03001220 value = (0 < value) ? ((15 < value) ? 15 : value) : 0;
1221 /* 0 <= value <= 15 */
1222 asus_als_level(asus, value);
1223
1224 return count;
Corentin Chary8b857352007-01-26 14:04:58 +01001225}
Vivien Dideloted52ccb2015-01-23 09:01:10 -05001226static DEVICE_ATTR_RW(ls_level);
Corentin Chary8b857352007-01-26 14:04:58 +01001227
Andy Ross33989ba2011-10-14 11:13:36 +02001228static int pega_int_read(struct asus_laptop *asus, int arg, int *result)
1229{
1230 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
1231 int err = write_acpi_int_ret(asus->handle, METHOD_PEGA_READ, arg,
1232 &buffer);
1233 if (!err) {
1234 union acpi_object *obj = buffer.pointer;
1235 if (obj && obj->type == ACPI_TYPE_INTEGER)
1236 *result = obj->integer.value;
1237 else
1238 err = -EIO;
1239 }
1240 return err;
1241}
1242
Vivien Dideloted52ccb2015-01-23 09:01:10 -05001243static ssize_t ls_value_show(struct device *dev, struct device_attribute *attr,
1244 char *buf)
Andy Ross33989ba2011-10-14 11:13:36 +02001245{
1246 struct asus_laptop *asus = dev_get_drvdata(dev);
1247 int err, hi, lo;
1248
1249 err = pega_int_read(asus, PEGA_READ_ALS_H, &hi);
1250 if (!err)
1251 err = pega_int_read(asus, PEGA_READ_ALS_L, &lo);
1252 if (!err)
1253 return sprintf(buf, "%d\n", 10 * hi + lo);
1254 return err;
1255}
Vivien Dideloted52ccb2015-01-23 09:01:10 -05001256static DEVICE_ATTR_RO(ls_value);
Andy Ross33989ba2011-10-14 11:13:36 +02001257
Corentin Charye539c2f2007-05-06 14:47:06 +02001258/*
1259 * GPS
1260 */
Corentin Chary6358bf22010-01-13 21:55:44 +01001261static int asus_gps_status(struct asus_laptop *asus)
1262{
1263 unsigned long long status;
Giedrius Statkevičius2ce6d992016-04-16 03:01:56 +03001264 acpi_status rv;
Corentin Chary6358bf22010-01-13 21:55:44 +01001265
Corentin Charyd99b5772010-01-22 21:20:57 +01001266 rv = acpi_evaluate_integer(asus->handle, METHOD_GPS_STATUS,
1267 NULL, &status);
Corentin Chary6358bf22010-01-13 21:55:44 +01001268 if (ACPI_FAILURE(rv)) {
Joe Perches5ad77dc2011-03-29 15:21:35 -07001269 pr_warn("Error reading GPS status\n");
Corentin Chary6358bf22010-01-13 21:55:44 +01001270 return -ENODEV;
1271 }
1272 return !!status;
1273}
1274
1275static int asus_gps_switch(struct asus_laptop *asus, int status)
1276{
Corentin Charyd99b5772010-01-22 21:20:57 +01001277 const char *meth = status ? METHOD_GPS_ON : METHOD_GPS_OFF;
Corentin Chary6358bf22010-01-13 21:55:44 +01001278
Corentin Charyd99b5772010-01-22 21:20:57 +01001279 if (write_acpi_int(asus->handle, meth, 0x02))
Corentin Chary6358bf22010-01-13 21:55:44 +01001280 return -ENODEV;
1281 return 0;
1282}
1283
Vivien Dideloted52ccb2015-01-23 09:01:10 -05001284static ssize_t gps_show(struct device *dev, struct device_attribute *attr,
1285 char *buf)
Corentin Charye539c2f2007-05-06 14:47:06 +02001286{
Corentin Chary9129d142009-12-01 22:39:41 +01001287 struct asus_laptop *asus = dev_get_drvdata(dev);
1288
Corentin Chary6358bf22010-01-13 21:55:44 +01001289 return sprintf(buf, "%d\n", asus_gps_status(asus));
Corentin Charye539c2f2007-05-06 14:47:06 +02001290}
1291
Vivien Dideloted52ccb2015-01-23 09:01:10 -05001292static ssize_t gps_store(struct device *dev, struct device_attribute *attr,
Corentin Charye539c2f2007-05-06 14:47:06 +02001293 const char *buf, size_t count)
1294{
Corentin Chary060cbce2010-01-28 10:52:40 +01001295 struct asus_laptop *asus = dev_get_drvdata(dev);
Corentin Chary6358bf22010-01-13 21:55:44 +01001296 int rv, value;
1297 int ret;
Corentin Chary9129d142009-12-01 22:39:41 +01001298
Giedrius Statkevičius6f7e3572016-08-05 23:57:10 +03001299 rv = kstrtoint(buf, 0, &value);
1300 if (rv < 0)
1301 return rv;
Corentin Chary6358bf22010-01-13 21:55:44 +01001302 ret = asus_gps_switch(asus, !!value);
1303 if (ret)
1304 return ret;
Corentin Chary40969c72011-12-15 08:27:33 +01001305 rfkill_set_sw_state(asus->gps.rfkill, !value);
Giedrius Statkevičius6f7e3572016-08-05 23:57:10 +03001306 return count;
Corentin Charye539c2f2007-05-06 14:47:06 +02001307}
Vivien Dideloted52ccb2015-01-23 09:01:10 -05001308static DEVICE_ATTR_RW(gps);
Corentin Charye539c2f2007-05-06 14:47:06 +02001309
Corentin Chary034ce902009-01-20 16:17:43 +01001310/*
Corentin Chary18e13112010-01-25 23:29:24 +01001311 * rfkill
1312 */
1313static int asus_gps_rfkill_set(void *data, bool blocked)
1314{
Corentin Chary23f45c32010-08-24 09:30:46 +02001315 struct asus_laptop *asus = data;
Corentin Chary18e13112010-01-25 23:29:24 +01001316
Corentin Chary23f45c32010-08-24 09:30:46 +02001317 return asus_gps_switch(asus, !blocked);
Corentin Chary18e13112010-01-25 23:29:24 +01001318}
1319
1320static const struct rfkill_ops asus_gps_rfkill_ops = {
1321 .set_block = asus_gps_rfkill_set,
1322};
1323
Corentin Chary774b0672011-12-15 08:27:34 +01001324static int asus_rfkill_set(void *data, bool blocked)
1325{
1326 struct asus_rfkill *rfk = data;
1327 struct asus_laptop *asus = rfk->asus;
1328
1329 if (rfk->control_id == WL_RSTS)
1330 return asus_wlan_set(asus, !blocked);
1331 else if (rfk->control_id == BT_RSTS)
1332 return asus_bluetooth_set(asus, !blocked);
Corentin Chary3c8671f2011-12-15 08:27:35 +01001333 else if (rfk->control_id == WM_RSTS)
1334 return asus_wimax_set(asus, !blocked);
1335 else if (rfk->control_id == WW_RSTS)
1336 return asus_wwan_set(asus, !blocked);
Corentin Chary774b0672011-12-15 08:27:34 +01001337
1338 return -EINVAL;
1339}
1340
1341static const struct rfkill_ops asus_rfkill_ops = {
1342 .set_block = asus_rfkill_set,
1343};
1344
Corentin Chary40969c72011-12-15 08:27:33 +01001345static void asus_rfkill_terminate(struct asus_rfkill *rfk)
1346{
1347 if (!rfk->rfkill)
1348 return ;
1349
1350 rfkill_unregister(rfk->rfkill);
1351 rfkill_destroy(rfk->rfkill);
1352 rfk->rfkill = NULL;
1353}
1354
Corentin Chary18e13112010-01-25 23:29:24 +01001355static void asus_rfkill_exit(struct asus_laptop *asus)
1356{
Corentin Chary40969c72011-12-15 08:27:33 +01001357 asus_rfkill_terminate(&asus->wwan);
1358 asus_rfkill_terminate(&asus->bluetooth);
1359 asus_rfkill_terminate(&asus->wlan);
1360 asus_rfkill_terminate(&asus->gps);
Corentin Chary18e13112010-01-25 23:29:24 +01001361}
1362
Corentin Chary774b0672011-12-15 08:27:34 +01001363static int asus_rfkill_setup(struct asus_laptop *asus, struct asus_rfkill *rfk,
1364 const char *name, int control_id, int type,
1365 const struct rfkill_ops *ops)
Corentin Chary18e13112010-01-25 23:29:24 +01001366{
1367 int result;
1368
Corentin Chary774b0672011-12-15 08:27:34 +01001369 rfk->control_id = control_id;
1370 rfk->asus = asus;
1371 rfk->rfkill = rfkill_alloc(name, &asus->platform_device->dev,
1372 type, ops, rfk);
1373 if (!rfk->rfkill)
Corentin Chary18e13112010-01-25 23:29:24 +01001374 return -EINVAL;
1375
Corentin Chary774b0672011-12-15 08:27:34 +01001376 result = rfkill_register(rfk->rfkill);
Corentin Chary18e13112010-01-25 23:29:24 +01001377 if (result) {
Corentin Chary774b0672011-12-15 08:27:34 +01001378 rfkill_destroy(rfk->rfkill);
1379 rfk->rfkill = NULL;
Corentin Chary18e13112010-01-25 23:29:24 +01001380 }
1381
1382 return result;
1383}
1384
Corentin Chary774b0672011-12-15 08:27:34 +01001385static int asus_rfkill_init(struct asus_laptop *asus)
1386{
1387 int result = 0;
1388
Corentin Chary3c8671f2011-12-15 08:27:35 +01001389 if (asus->is_pega_lucid)
1390 return -ENODEV;
1391
Corentin Chary774b0672011-12-15 08:27:34 +01001392 if (!acpi_check_handle(asus->handle, METHOD_GPS_ON, NULL) &&
1393 !acpi_check_handle(asus->handle, METHOD_GPS_OFF, NULL) &&
1394 !acpi_check_handle(asus->handle, METHOD_GPS_STATUS, NULL))
1395 result = asus_rfkill_setup(asus, &asus->gps, "asus-gps",
1396 -1, RFKILL_TYPE_GPS,
1397 &asus_gps_rfkill_ops);
1398 if (result)
1399 goto exit;
1400
1401
Corentin Chary26594dd2011-12-15 08:27:36 +01001402 if (!acpi_check_handle(asus->handle, METHOD_WLAN, NULL) &&
1403 asus->wled_type == TYPE_RFKILL)
Corentin Chary774b0672011-12-15 08:27:34 +01001404 result = asus_rfkill_setup(asus, &asus->wlan, "asus-wlan",
1405 WL_RSTS, RFKILL_TYPE_WLAN,
1406 &asus_rfkill_ops);
1407 if (result)
1408 goto exit;
1409
Corentin Chary26594dd2011-12-15 08:27:36 +01001410 if (!acpi_check_handle(asus->handle, METHOD_BLUETOOTH, NULL) &&
1411 asus->bled_type == TYPE_RFKILL)
Corentin Chary774b0672011-12-15 08:27:34 +01001412 result = asus_rfkill_setup(asus, &asus->bluetooth,
1413 "asus-bluetooth", BT_RSTS,
1414 RFKILL_TYPE_BLUETOOTH,
1415 &asus_rfkill_ops);
1416 if (result)
1417 goto exit;
1418
Corentin Chary3c8671f2011-12-15 08:27:35 +01001419 if (!acpi_check_handle(asus->handle, METHOD_WWAN, NULL))
1420 result = asus_rfkill_setup(asus, &asus->wwan, "asus-wwan",
1421 WW_RSTS, RFKILL_TYPE_WWAN,
1422 &asus_rfkill_ops);
1423 if (result)
1424 goto exit;
1425
1426 if (!acpi_check_handle(asus->handle, METHOD_WIMAX, NULL))
1427 result = asus_rfkill_setup(asus, &asus->wimax, "asus-wimax",
1428 WM_RSTS, RFKILL_TYPE_WIMAX,
1429 &asus_rfkill_ops);
1430 if (result)
1431 goto exit;
1432
Corentin Chary774b0672011-12-15 08:27:34 +01001433exit:
1434 if (result)
1435 asus_rfkill_exit(asus);
1436
1437 return result;
1438}
1439
Anisse Astier14908392011-10-14 11:13:42 +02001440static int pega_rfkill_set(void *data, bool blocked)
1441{
Corentin Chary40969c72011-12-15 08:27:33 +01001442 struct asus_rfkill *rfk = data;
Anisse Astier14908392011-10-14 11:13:42 +02001443
Corentin Chary40969c72011-12-15 08:27:33 +01001444 int ret = asus_pega_lucid_set(rfk->asus, rfk->control_id, !blocked);
Anisse Astier14908392011-10-14 11:13:42 +02001445 return ret;
1446}
1447
1448static const struct rfkill_ops pega_rfkill_ops = {
1449 .set_block = pega_rfkill_set,
1450};
1451
Corentin Chary40969c72011-12-15 08:27:33 +01001452static int pega_rfkill_setup(struct asus_laptop *asus, struct asus_rfkill *rfk,
1453 const char *name, int controlid, int rfkill_type)
Anisse Astier14908392011-10-14 11:13:42 +02001454{
Corentin Chary774b0672011-12-15 08:27:34 +01001455 return asus_rfkill_setup(asus, rfk, name, controlid, rfkill_type,
1456 &pega_rfkill_ops);
Anisse Astier14908392011-10-14 11:13:42 +02001457}
1458
1459static int pega_rfkill_init(struct asus_laptop *asus)
1460{
1461 int ret = 0;
1462
1463 if(!asus->is_pega_lucid)
1464 return -ENODEV;
1465
Corentin Chary40969c72011-12-15 08:27:33 +01001466 ret = pega_rfkill_setup(asus, &asus->wlan, "pega-wlan",
1467 PEGA_WLAN, RFKILL_TYPE_WLAN);
Anisse Astier14908392011-10-14 11:13:42 +02001468 if(ret)
Corentin Chary40969c72011-12-15 08:27:33 +01001469 goto exit;
Anisse Astier14908392011-10-14 11:13:42 +02001470
Corentin Chary40969c72011-12-15 08:27:33 +01001471 ret = pega_rfkill_setup(asus, &asus->bluetooth, "pega-bt",
1472 PEGA_BLUETOOTH, RFKILL_TYPE_BLUETOOTH);
1473 if(ret)
1474 goto exit;
1475
1476 ret = pega_rfkill_setup(asus, &asus->wwan, "pega-wwan",
1477 PEGA_WWAN, RFKILL_TYPE_WWAN);
1478
1479exit:
1480 if (ret)
1481 asus_rfkill_exit(asus);
Anisse Astier14908392011-10-14 11:13:42 +02001482
1483 return ret;
1484}
1485
Corentin Chary18e13112010-01-25 23:29:24 +01001486/*
Corentin Charybe4ee822009-12-06 16:27:09 +01001487 * Input device (i.e. hotkeys)
Corentin Chary034ce902009-01-20 16:17:43 +01001488 */
Corentin Charybe4ee822009-12-06 16:27:09 +01001489static void asus_input_notify(struct asus_laptop *asus, int event)
1490{
Corentin Charye0ac9132011-12-15 08:27:31 +01001491 if (!asus->inputdev)
1492 return ;
1493 if (!sparse_keymap_report_event(asus->inputdev, event, 1, true))
1494 pr_info("Unknown key %x pressed\n", event);
Corentin Charybe4ee822009-12-06 16:27:09 +01001495}
1496
1497static int asus_input_init(struct asus_laptop *asus)
1498{
Corentin Chary66a71dd2010-01-25 22:50:11 +01001499 struct input_dev *input;
1500 int error;
Corentin Charybe4ee822009-12-06 16:27:09 +01001501
Corentin Chary66a71dd2010-01-25 22:50:11 +01001502 input = input_allocate_device();
Joe Perchesb222cca2013-10-23 12:14:52 -07001503 if (!input)
Axel Lin45036ae2010-07-05 15:29:00 +08001504 return -ENOMEM;
Joe Perchesb222cca2013-10-23 12:14:52 -07001505
Corentin Chary66a71dd2010-01-25 22:50:11 +01001506 input->name = "Asus Laptop extra buttons";
1507 input->phys = ASUS_LAPTOP_FILE "/input0";
1508 input->id.bustype = BUS_HOST;
1509 input->dev.parent = &asus->platform_device->dev;
Corentin Charybe4ee822009-12-06 16:27:09 +01001510
Corentin Chary66a71dd2010-01-25 22:50:11 +01001511 error = sparse_keymap_setup(input, asus_keymap, NULL);
1512 if (error) {
1513 pr_err("Unable to setup input device keymap\n");
Axel Lin45036ae2010-07-05 15:29:00 +08001514 goto err_free_dev;
Corentin Charybe4ee822009-12-06 16:27:09 +01001515 }
Corentin Chary66a71dd2010-01-25 22:50:11 +01001516 error = input_register_device(input);
1517 if (error) {
Corentin Chary40969c72011-12-15 08:27:33 +01001518 pr_warn("Unable to register input device\n");
Axel Lin45036ae2010-07-05 15:29:00 +08001519 goto err_free_keymap;
Corentin Charybe4ee822009-12-06 16:27:09 +01001520 }
Corentin Chary66a71dd2010-01-25 22:50:11 +01001521
1522 asus->inputdev = input;
1523 return 0;
1524
Axel Lin45036ae2010-07-05 15:29:00 +08001525err_free_keymap:
Corentin Chary66a71dd2010-01-25 22:50:11 +01001526 sparse_keymap_free(input);
Axel Lin45036ae2010-07-05 15:29:00 +08001527err_free_dev:
Corentin Chary66a71dd2010-01-25 22:50:11 +01001528 input_free_device(input);
1529 return error;
Corentin Charybe4ee822009-12-06 16:27:09 +01001530}
1531
1532static void asus_input_exit(struct asus_laptop *asus)
1533{
Corentin Chary66a71dd2010-01-25 22:50:11 +01001534 if (asus->inputdev) {
1535 sparse_keymap_free(asus->inputdev);
Corentin Charybe4ee822009-12-06 16:27:09 +01001536 input_unregister_device(asus->inputdev);
Corentin Chary66a71dd2010-01-25 22:50:11 +01001537 }
Corentin Chary71e687d2010-08-24 09:30:44 +02001538 asus->inputdev = NULL;
Corentin Charybe4ee822009-12-06 16:27:09 +01001539}
1540
1541/*
1542 * ACPI driver
1543 */
Corentin Chary600ad522009-11-30 21:42:42 +01001544static void asus_acpi_notify(struct acpi_device *device, u32 event)
Corentin Chary85091b72007-01-26 14:04:30 +01001545{
Corentin Chary9129d142009-12-01 22:39:41 +01001546 struct asus_laptop *asus = acpi_driver_data(device);
Corentin Chary6050c8d2009-02-15 19:30:19 +01001547 u16 count;
Corentin Chary034ce902009-01-20 16:17:43 +01001548
Corentin Chary619d8b12009-11-28 10:35:37 +01001549 /* TODO Find a better way to handle events count. */
Corentin Chary50a90c42009-11-30 21:55:12 +01001550 count = asus->event_count[event % 128]++;
Corentin Chary50a90c42009-11-30 21:55:12 +01001551 acpi_bus_generate_netlink_event(asus->device->pnp.device_class,
1552 dev_name(&asus->device->dev), event,
Corentin Chary6050c8d2009-02-15 19:30:19 +01001553 count);
Corentin Chary85091b72007-01-26 14:04:30 +01001554
Corentin Chary2740e1b2012-11-29 09:12:39 +01001555 if (event >= ATKD_BRNUP_MIN && event <= ATKD_BRNUP_MAX)
1556 event = ATKD_BRNUP;
1557 else if (event >= ATKD_BRNDOWN_MIN &&
1558 event <= ATKD_BRNDOWN_MAX)
1559 event = ATKD_BRNDOWN;
Corentin Charya539df52010-01-25 22:53:21 +01001560
Corentin Chary2740e1b2012-11-29 09:12:39 +01001561 /* Brightness events are special */
1562 if (event == ATKD_BRNDOWN || event == ATKD_BRNUP) {
Corentin Charya539df52010-01-25 22:53:21 +01001563 if (asus->backlight_device != NULL) {
1564 /* Update the backlight device. */
1565 asus_backlight_notify(asus);
Corentin Chary2740e1b2012-11-29 09:12:39 +01001566 return ;
Corentin Charya539df52010-01-25 22:53:21 +01001567 }
Corentin Charya539df52010-01-25 22:53:21 +01001568 }
Anisse Astierb93f8282011-10-14 11:13:41 +02001569
1570 /* Accelerometer "coarse orientation change" event */
1571 if (asus->pega_accel_poll && event == 0xEA) {
1572 kobject_uevent(&asus->pega_accel_poll->input->dev.kobj,
1573 KOBJ_CHANGE);
1574 return ;
1575 }
1576
Corentin Charybe4ee822009-12-06 16:27:09 +01001577 asus_input_notify(asus, event);
Corentin Chary85091b72007-01-26 14:04:30 +01001578}
1579
Dmitry Torokhovac9b1e52010-08-26 00:12:19 -07001580static struct attribute *asus_attributes[] = {
1581 &dev_attr_infos.attr,
1582 &dev_attr_wlan.attr,
1583 &dev_attr_bluetooth.attr,
Corentin Charyba1ff5b2010-11-14 17:40:12 +01001584 &dev_attr_wimax.attr,
1585 &dev_attr_wwan.attr,
Dmitry Torokhovac9b1e52010-08-26 00:12:19 -07001586 &dev_attr_display.attr,
1587 &dev_attr_ledd.attr,
Andy Ross33989ba2011-10-14 11:13:36 +02001588 &dev_attr_ls_value.attr,
Dmitry Torokhovac9b1e52010-08-26 00:12:19 -07001589 &dev_attr_ls_level.attr,
1590 &dev_attr_ls_switch.attr,
1591 &dev_attr_gps.attr,
1592 NULL
1593};
Corentin Chary2a1fd642010-01-26 21:02:23 +01001594
Al Viro587a1f12011-07-23 23:11:19 -04001595static umode_t asus_sysfs_is_visible(struct kobject *kobj,
Dmitry Torokhovac9b1e52010-08-26 00:12:19 -07001596 struct attribute *attr,
1597 int idx)
1598{
1599 struct device *dev = container_of(kobj, struct device, kobj);
1600 struct platform_device *pdev = to_platform_device(dev);
1601 struct asus_laptop *asus = platform_get_drvdata(pdev);
1602 acpi_handle handle = asus->handle;
1603 bool supported;
1604
Andy Ross33989ba2011-10-14 11:13:36 +02001605 if (asus->is_pega_lucid) {
1606 /* no ls_level interface on the Lucid */
1607 if (attr == &dev_attr_ls_switch.attr)
1608 supported = true;
1609 else if (attr == &dev_attr_ls_level.attr)
1610 supported = false;
1611 else
1612 goto normal;
1613
Vivien Didelot03070e72015-01-18 18:25:24 -05001614 return supported ? attr->mode : 0;
Andy Ross33989ba2011-10-14 11:13:36 +02001615 }
1616
1617normal:
Dmitry Torokhovac9b1e52010-08-26 00:12:19 -07001618 if (attr == &dev_attr_wlan.attr) {
1619 supported = !acpi_check_handle(handle, METHOD_WLAN, NULL);
1620
1621 } else if (attr == &dev_attr_bluetooth.attr) {
1622 supported = !acpi_check_handle(handle, METHOD_BLUETOOTH, NULL);
1623
1624 } else if (attr == &dev_attr_display.attr) {
1625 supported = !acpi_check_handle(handle, METHOD_SWITCH_DISPLAY, NULL);
1626
Corentin Charyba1ff5b2010-11-14 17:40:12 +01001627 } else if (attr == &dev_attr_wimax.attr) {
1628 supported =
1629 !acpi_check_handle(asus->handle, METHOD_WIMAX, NULL);
1630
1631 } else if (attr == &dev_attr_wwan.attr) {
1632 supported = !acpi_check_handle(asus->handle, METHOD_WWAN, NULL);
1633
Dmitry Torokhovac9b1e52010-08-26 00:12:19 -07001634 } else if (attr == &dev_attr_ledd.attr) {
1635 supported = !acpi_check_handle(handle, METHOD_LEDD, NULL);
1636
1637 } else if (attr == &dev_attr_ls_switch.attr ||
1638 attr == &dev_attr_ls_level.attr) {
1639 supported = !acpi_check_handle(handle, METHOD_ALS_CONTROL, NULL) &&
Andy Ross33989ba2011-10-14 11:13:36 +02001640 !acpi_check_handle(handle, METHOD_ALS_LEVEL, NULL);
1641 } else if (attr == &dev_attr_ls_value.attr) {
1642 supported = asus->is_pega_lucid;
Dmitry Torokhovac9b1e52010-08-26 00:12:19 -07001643 } else if (attr == &dev_attr_gps.attr) {
1644 supported = !acpi_check_handle(handle, METHOD_GPS_ON, NULL) &&
1645 !acpi_check_handle(handle, METHOD_GPS_OFF, NULL) &&
1646 !acpi_check_handle(handle, METHOD_GPS_STATUS, NULL);
1647 } else {
1648 supported = true;
1649 }
1650
1651 return supported ? attr->mode : 0;
Corentin Chary2a1fd642010-01-26 21:02:23 +01001652}
1653
Corentin Chary2a1fd642010-01-26 21:02:23 +01001654
Dmitry Torokhovac9b1e52010-08-26 00:12:19 -07001655static const struct attribute_group asus_attr_group = {
1656 .is_visible = asus_sysfs_is_visible,
1657 .attrs = asus_attributes,
1658};
Corentin Chary85091b72007-01-26 14:04:30 +01001659
Corentin Chary9129d142009-12-01 22:39:41 +01001660static int asus_platform_init(struct asus_laptop *asus)
Corentin Chary600ad522009-11-30 21:42:42 +01001661{
Corentin Chary71e687d2010-08-24 09:30:44 +02001662 int result;
Corentin Chary600ad522009-11-30 21:42:42 +01001663
Corentin Chary50a90c42009-11-30 21:55:12 +01001664 asus->platform_device = platform_device_alloc(ASUS_LAPTOP_FILE, -1);
1665 if (!asus->platform_device)
Corentin Chary600ad522009-11-30 21:42:42 +01001666 return -ENOMEM;
Corentin Chary9129d142009-12-01 22:39:41 +01001667 platform_set_drvdata(asus->platform_device, asus);
Corentin Chary600ad522009-11-30 21:42:42 +01001668
Corentin Chary71e687d2010-08-24 09:30:44 +02001669 result = platform_device_add(asus->platform_device);
1670 if (result)
Corentin Chary600ad522009-11-30 21:42:42 +01001671 goto fail_platform_device;
1672
Dmitry Torokhovac9b1e52010-08-26 00:12:19 -07001673 result = sysfs_create_group(&asus->platform_device->dev.kobj,
1674 &asus_attr_group);
Corentin Chary71e687d2010-08-24 09:30:44 +02001675 if (result)
Corentin Chary600ad522009-11-30 21:42:42 +01001676 goto fail_sysfs;
Dmitry Torokhovac9b1e52010-08-26 00:12:19 -07001677
Corentin Chary600ad522009-11-30 21:42:42 +01001678 return 0;
1679
1680fail_sysfs:
Corentin Chary50a90c42009-11-30 21:55:12 +01001681 platform_device_del(asus->platform_device);
Corentin Chary600ad522009-11-30 21:42:42 +01001682fail_platform_device:
Corentin Chary50a90c42009-11-30 21:55:12 +01001683 platform_device_put(asus->platform_device);
Corentin Chary71e687d2010-08-24 09:30:44 +02001684 return result;
Corentin Chary600ad522009-11-30 21:42:42 +01001685}
1686
Corentin Chary9129d142009-12-01 22:39:41 +01001687static void asus_platform_exit(struct asus_laptop *asus)
Corentin Chary600ad522009-11-30 21:42:42 +01001688{
Dmitry Torokhovac9b1e52010-08-26 00:12:19 -07001689 sysfs_remove_group(&asus->platform_device->dev.kobj, &asus_attr_group);
Corentin Chary50a90c42009-11-30 21:55:12 +01001690 platform_device_unregister(asus->platform_device);
Corentin Chary600ad522009-11-30 21:42:42 +01001691}
1692
1693static struct platform_driver platform_driver = {
Len Brown8def05f2007-01-30 01:46:43 -05001694 .driver = {
Corentin Chary9129d142009-12-01 22:39:41 +01001695 .name = ASUS_LAPTOP_FILE,
Andy Rossb23910c2011-10-14 11:13:38 +02001696 },
Corentin Chary85091b72007-01-26 14:04:30 +01001697};
1698
Corentin Chary85091b72007-01-26 14:04:30 +01001699/*
Corentin Chary50a90c42009-11-30 21:55:12 +01001700 * This function is used to initialize the context with right values. In this
1701 * method, we can make all the detection we want, and modify the asus_laptop
1702 * struct
Corentin Chary85091b72007-01-26 14:04:30 +01001703 */
Corentin Chary7c247642009-11-30 22:13:54 +01001704static int asus_laptop_get_info(struct asus_laptop *asus)
Corentin Chary85091b72007-01-26 14:04:30 +01001705{
1706 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
Corentin Chary85091b72007-01-26 14:04:30 +01001707 union acpi_object *model = NULL;
Ben Hutchingscb7da022012-11-29 09:12:37 +01001708 unsigned long long bsts_result;
Corentin Chary85091b72007-01-26 14:04:30 +01001709 char *string = NULL;
1710 acpi_status status;
1711
1712 /*
1713 * Get DSDT headers early enough to allow for differentiating between
1714 * models, but late enough to allow acpi_bus_register_driver() to fail
1715 * before doing anything ACPI-specific. Should we encounter a machine,
1716 * which needs special handling (i.e. its hotkey device has a different
Corentin Chary7c247642009-11-30 22:13:54 +01001717 * HID), this bit will be moved.
Corentin Chary85091b72007-01-26 14:04:30 +01001718 */
Corentin Chary7c247642009-11-30 22:13:54 +01001719 status = acpi_get_table(ACPI_SIG_DSDT, 1, &asus->dsdt_info);
Corentin Chary85091b72007-01-26 14:04:30 +01001720 if (ACPI_FAILURE(status))
Joe Perches5ad77dc2011-03-29 15:21:35 -07001721 pr_warn("Couldn't get the DSDT table header\n");
Corentin Chary85091b72007-01-26 14:04:30 +01001722
1723 /* We have to write 0 on init this far for all ASUS models */
Corentin Chary50a90c42009-11-30 21:55:12 +01001724 if (write_acpi_int_ret(asus->handle, "INIT", 0, &buffer)) {
Corentin Chary2fcc23d2009-06-19 14:52:03 +02001725 pr_err("Hotkey initialization failed\n");
Corentin Chary85091b72007-01-26 14:04:30 +01001726 return -ENODEV;
1727 }
1728
1729 /* This needs to be called for some laptops to init properly */
Corentin Chary9a816852007-03-11 10:25:38 +01001730 status =
Corentin Chary50a90c42009-11-30 21:55:12 +01001731 acpi_evaluate_integer(asus->handle, "BSTS", NULL, &bsts_result);
Corentin Chary9a816852007-03-11 10:25:38 +01001732 if (ACPI_FAILURE(status))
Joe Perches5ad77dc2011-03-29 15:21:35 -07001733 pr_warn("Error calling BSTS\n");
Corentin Chary85091b72007-01-26 14:04:30 +01001734 else if (bsts_result)
Corentin Chary2fcc23d2009-06-19 14:52:03 +02001735 pr_notice("BSTS called, 0x%02x returned\n",
Corentin Chary9a816852007-03-11 10:25:38 +01001736 (uint) bsts_result);
Corentin Chary85091b72007-01-26 14:04:30 +01001737
Corentin Chary185e5af2007-03-11 10:27:33 +01001738 /* This too ... */
Corentin Charye5593bf2010-01-17 17:20:11 +01001739 if (write_acpi_int(asus->handle, "CWAP", wapf))
1740 pr_err("Error calling CWAP(%d)\n", wapf);
Corentin Chary85091b72007-01-26 14:04:30 +01001741 /*
1742 * Try to match the object returned by INIT to the specific model.
1743 * Handle every possible object (or the lack of thereof) the DSDT
1744 * writers might throw at us. When in trouble, we pass NULL to
1745 * asus_model_match() and try something completely different.
1746 */
1747 if (buffer.pointer) {
1748 model = buffer.pointer;
1749 switch (model->type) {
1750 case ACPI_TYPE_STRING:
1751 string = model->string.pointer;
1752 break;
1753 case ACPI_TYPE_BUFFER:
1754 string = model->buffer.pointer;
1755 break;
1756 default:
1757 string = "";
1758 break;
1759 }
1760 }
Corentin Chary50a90c42009-11-30 21:55:12 +01001761 asus->name = kstrdup(string, GFP_KERNEL);
Axel Lind8eca112010-06-29 11:09:47 +08001762 if (!asus->name) {
1763 kfree(buffer.pointer);
Corentin Chary85091b72007-01-26 14:04:30 +01001764 return -ENOMEM;
Axel Lind8eca112010-06-29 11:09:47 +08001765 }
Corentin Chary85091b72007-01-26 14:04:30 +01001766
Matthew Garrett9f897482012-12-28 10:54:42 -05001767 if (string)
Corentin Chary2fcc23d2009-06-19 14:52:03 +02001768 pr_notice(" %s model detected\n", string);
Corentin Chary85091b72007-01-26 14:04:30 +01001769
Corentin Charyd99b5772010-01-22 21:20:57 +01001770 if (!acpi_check_handle(asus->handle, METHOD_WL_STATUS, NULL))
Corentin Charyaa9df932010-01-13 21:49:10 +01001771 asus->have_rsts = true;
Corentin Chary4564de12007-01-26 14:04:40 +01001772
Corentin Chary85091b72007-01-26 14:04:30 +01001773 kfree(model);
1774
1775 return AE_OK;
1776}
1777
Greg Kroah-Hartmanb859f152012-12-21 13:18:33 -08001778static int asus_acpi_init(struct asus_laptop *asus)
Corentin Chary600ad522009-11-30 21:42:42 +01001779{
1780 int result = 0;
1781
Corentin Chary50a90c42009-11-30 21:55:12 +01001782 result = acpi_bus_get_status(asus->device);
Corentin Chary600ad522009-11-30 21:42:42 +01001783 if (result)
1784 return result;
Corentin Chary50a90c42009-11-30 21:55:12 +01001785 if (!asus->device->status.present) {
Corentin Chary600ad522009-11-30 21:42:42 +01001786 pr_err("Hotkey device not present, aborting\n");
1787 return -ENODEV;
1788 }
1789
Corentin Chary7c247642009-11-30 22:13:54 +01001790 result = asus_laptop_get_info(asus);
Corentin Chary600ad522009-11-30 21:42:42 +01001791 if (result)
1792 return result;
1793
Corentin Chary774b0672011-12-15 08:27:34 +01001794 if (!strcmp(bled_type, "led"))
1795 asus->bled_type = TYPE_LED;
1796 else if (!strcmp(bled_type, "rfkill"))
1797 asus->bled_type = TYPE_RFKILL;
1798
1799 if (!strcmp(wled_type, "led"))
1800 asus->wled_type = TYPE_LED;
1801 else if (!strcmp(wled_type, "rfkill"))
1802 asus->wled_type = TYPE_RFKILL;
1803
Corentin Charybe4ee822009-12-06 16:27:09 +01001804 if (bluetooth_status >= 0)
Corentin Charye5593bf2010-01-17 17:20:11 +01001805 asus_bluetooth_set(asus, !!bluetooth_status);
1806
Corentin Charyd0930a22010-01-17 17:21:13 +01001807 if (wlan_status >= 0)
1808 asus_wlan_set(asus, !!wlan_status);
Corentin Chary600ad522009-11-30 21:42:42 +01001809
Corentin Charyba1ff5b2010-11-14 17:40:12 +01001810 if (wimax_status >= 0)
1811 asus_wimax_set(asus, !!wimax_status);
1812
1813 if (wwan_status >= 0)
1814 asus_wwan_set(asus, !!wwan_status);
1815
Corentin Chary600ad522009-11-30 21:42:42 +01001816 /* Keyboard Backlight is on by default */
Corentin Charyd99b5772010-01-22 21:20:57 +01001817 if (!acpi_check_handle(asus->handle, METHOD_KBD_LIGHT_SET, NULL))
Corentin Chary4d441512010-01-13 22:26:24 +01001818 asus_kled_set(asus, 1);
Corentin Chary600ad522009-11-30 21:42:42 +01001819
1820 /* LED display is off by default */
Corentin Chary50a90c42009-11-30 21:55:12 +01001821 asus->ledd_status = 0xFFF;
Corentin Chary600ad522009-11-30 21:42:42 +01001822
1823 /* Set initial values of light sensor and level */
Andy Rossabec04d2011-10-14 11:13:37 +02001824 asus->light_switch = !!als_status;
Corentin Charybe4ee822009-12-06 16:27:09 +01001825 asus->light_level = 5; /* level 5 for sensor sensitivity */
Corentin Chary600ad522009-11-30 21:42:42 +01001826
Andy Ross33989ba2011-10-14 11:13:36 +02001827 if (asus->is_pega_lucid) {
1828 asus_als_switch(asus, asus->light_switch);
1829 } else if (!acpi_check_handle(asus->handle, METHOD_ALS_CONTROL, NULL) &&
1830 !acpi_check_handle(asus->handle, METHOD_ALS_LEVEL, NULL)) {
Corentin Chary4d441512010-01-13 22:26:24 +01001831 asus_als_switch(asus, asus->light_switch);
Corentin Chary4d441512010-01-13 22:26:24 +01001832 asus_als_level(asus, asus->light_level);
Corentin Charyd99b5772010-01-22 21:20:57 +01001833 }
Corentin Chary600ad522009-11-30 21:42:42 +01001834
Corentin Chary600ad522009-11-30 21:42:42 +01001835 return result;
1836}
1837
Greg Kroah-Hartmanb859f152012-12-21 13:18:33 -08001838static void asus_dmi_check(void)
Corentin Charyaf96f872011-02-06 13:27:30 +01001839{
1840 const char *model;
1841
1842 model = dmi_get_system_info(DMI_PRODUCT_NAME);
1843 if (!model)
1844 return;
1845
1846 /* On L1400B WLED control the sound card, don't mess with it ... */
1847 if (strncmp(model, "L1400B", 6) == 0) {
1848 wlan_status = -1;
1849 }
1850}
1851
Corentin Chary71e687d2010-08-24 09:30:44 +02001852static bool asus_device_present;
1853
Greg Kroah-Hartmanb859f152012-12-21 13:18:33 -08001854static int asus_acpi_add(struct acpi_device *device)
Corentin Chary600ad522009-11-30 21:42:42 +01001855{
Corentin Chary9129d142009-12-01 22:39:41 +01001856 struct asus_laptop *asus;
Corentin Chary600ad522009-11-30 21:42:42 +01001857 int result;
1858
1859 pr_notice("Asus Laptop Support version %s\n",
1860 ASUS_LAPTOP_VERSION);
Corentin Chary50a90c42009-11-30 21:55:12 +01001861 asus = kzalloc(sizeof(struct asus_laptop), GFP_KERNEL);
1862 if (!asus)
Corentin Chary600ad522009-11-30 21:42:42 +01001863 return -ENOMEM;
Corentin Chary50a90c42009-11-30 21:55:12 +01001864 asus->handle = device->handle;
1865 strcpy(acpi_device_name(device), ASUS_LAPTOP_DEVICE_NAME);
1866 strcpy(acpi_device_class(device), ASUS_LAPTOP_CLASS);
1867 device->driver_data = asus;
1868 asus->device = device;
Corentin Chary600ad522009-11-30 21:42:42 +01001869
Corentin Charyaf96f872011-02-06 13:27:30 +01001870 asus_dmi_check();
1871
Corentin Chary9129d142009-12-01 22:39:41 +01001872 result = asus_acpi_init(asus);
Corentin Chary600ad522009-11-30 21:42:42 +01001873 if (result)
1874 goto fail_platform;
1875
1876 /*
Andy Ross8819de72011-10-14 11:13:35 +02001877 * Need platform type detection first, then the platform
1878 * device. It is used as a parent for the sub-devices below.
Corentin Chary600ad522009-11-30 21:42:42 +01001879 */
Andy Ross8819de72011-10-14 11:13:35 +02001880 asus->is_pega_lucid = asus_check_pega_lucid(asus);
Corentin Chary9129d142009-12-01 22:39:41 +01001881 result = asus_platform_init(asus);
Corentin Chary600ad522009-11-30 21:42:42 +01001882 if (result)
1883 goto fail_platform;
1884
Hans de Goede8b9e6b72015-06-16 16:27:57 +02001885 if (acpi_video_get_backlight_type() == acpi_backlight_vendor) {
Corentin Chary9129d142009-12-01 22:39:41 +01001886 result = asus_backlight_init(asus);
Corentin Chary600ad522009-11-30 21:42:42 +01001887 if (result)
1888 goto fail_backlight;
Hans de Goede8b9e6b72015-06-16 16:27:57 +02001889 }
Corentin Chary600ad522009-11-30 21:42:42 +01001890
Corentin Chary9129d142009-12-01 22:39:41 +01001891 result = asus_input_init(asus);
Corentin Chary600ad522009-11-30 21:42:42 +01001892 if (result)
1893 goto fail_input;
1894
Corentin Chary9129d142009-12-01 22:39:41 +01001895 result = asus_led_init(asus);
Corentin Chary600ad522009-11-30 21:42:42 +01001896 if (result)
1897 goto fail_led;
1898
Corentin Chary18e13112010-01-25 23:29:24 +01001899 result = asus_rfkill_init(asus);
Corentin Chary3c8671f2011-12-15 08:27:35 +01001900 if (result && result != -ENODEV)
Corentin Chary18e13112010-01-25 23:29:24 +01001901 goto fail_rfkill;
1902
Andy Rossb23910c2011-10-14 11:13:38 +02001903 result = pega_accel_init(asus);
1904 if (result && result != -ENODEV)
1905 goto fail_pega_accel;
1906
Anisse Astier14908392011-10-14 11:13:42 +02001907 result = pega_rfkill_init(asus);
1908 if (result && result != -ENODEV)
1909 goto fail_pega_rfkill;
1910
Corentin Chary600ad522009-11-30 21:42:42 +01001911 asus_device_present = true;
1912 return 0;
1913
Anisse Astier14908392011-10-14 11:13:42 +02001914fail_pega_rfkill:
1915 pega_accel_exit(asus);
Andy Rossb23910c2011-10-14 11:13:38 +02001916fail_pega_accel:
1917 asus_rfkill_exit(asus);
Corentin Chary18e13112010-01-25 23:29:24 +01001918fail_rfkill:
1919 asus_led_exit(asus);
Corentin Chary600ad522009-11-30 21:42:42 +01001920fail_led:
Corentin Chary9129d142009-12-01 22:39:41 +01001921 asus_input_exit(asus);
Corentin Chary600ad522009-11-30 21:42:42 +01001922fail_input:
Corentin Chary9129d142009-12-01 22:39:41 +01001923 asus_backlight_exit(asus);
Corentin Chary600ad522009-11-30 21:42:42 +01001924fail_backlight:
Corentin Chary9129d142009-12-01 22:39:41 +01001925 asus_platform_exit(asus);
Corentin Chary600ad522009-11-30 21:42:42 +01001926fail_platform:
Corentin Chary50a90c42009-11-30 21:55:12 +01001927 kfree(asus);
Corentin Chary600ad522009-11-30 21:42:42 +01001928
1929 return result;
1930}
1931
Rafael J. Wysocki51fac832013-01-24 00:24:48 +01001932static int asus_acpi_remove(struct acpi_device *device)
Corentin Chary600ad522009-11-30 21:42:42 +01001933{
Corentin Chary9129d142009-12-01 22:39:41 +01001934 struct asus_laptop *asus = acpi_driver_data(device);
1935
1936 asus_backlight_exit(asus);
Corentin Chary18e13112010-01-25 23:29:24 +01001937 asus_rfkill_exit(asus);
Corentin Chary9129d142009-12-01 22:39:41 +01001938 asus_led_exit(asus);
1939 asus_input_exit(asus);
Andy Rossb23910c2011-10-14 11:13:38 +02001940 pega_accel_exit(asus);
Corentin Chary9129d142009-12-01 22:39:41 +01001941 asus_platform_exit(asus);
Corentin Chary600ad522009-11-30 21:42:42 +01001942
Corentin Chary50a90c42009-11-30 21:55:12 +01001943 kfree(asus->name);
1944 kfree(asus);
Corentin Chary600ad522009-11-30 21:42:42 +01001945 return 0;
1946}
1947
1948static const struct acpi_device_id asus_device_ids[] = {
1949 {"ATK0100", 0},
1950 {"ATK0101", 0},
1951 {"", 0},
1952};
1953MODULE_DEVICE_TABLE(acpi, asus_device_ids);
1954
1955static struct acpi_driver asus_acpi_driver = {
Corentin Chary50a90c42009-11-30 21:55:12 +01001956 .name = ASUS_LAPTOP_NAME,
1957 .class = ASUS_LAPTOP_CLASS,
Corentin Chary600ad522009-11-30 21:42:42 +01001958 .owner = THIS_MODULE,
1959 .ids = asus_device_ids,
1960 .flags = ACPI_DRIVER_ALL_NOTIFY_EVENTS,
1961 .ops = {
1962 .add = asus_acpi_add,
1963 .remove = asus_acpi_remove,
1964 .notify = asus_acpi_notify,
1965 },
1966};
1967
Corentin Chary85091b72007-01-26 14:04:30 +01001968static int __init asus_laptop_init(void)
1969{
1970 int result;
1971
Corentin Chary600ad522009-11-30 21:42:42 +01001972 result = platform_driver_register(&platform_driver);
Corentin Chary85091b72007-01-26 14:04:30 +01001973 if (result < 0)
1974 return result;
1975
Corentin Chary600ad522009-11-30 21:42:42 +01001976 result = acpi_bus_register_driver(&asus_acpi_driver);
1977 if (result < 0)
1978 goto fail_acpi_driver;
1979 if (!asus_device_present) {
1980 result = -ENODEV;
1981 goto fail_no_device;
Corentin Chary85091b72007-01-26 14:04:30 +01001982 }
Len Brown8def05f2007-01-30 01:46:43 -05001983 return 0;
Corentin Chary85091b72007-01-26 14:04:30 +01001984
Corentin Chary600ad522009-11-30 21:42:42 +01001985fail_no_device:
1986 acpi_bus_unregister_driver(&asus_acpi_driver);
1987fail_acpi_driver:
1988 platform_driver_unregister(&platform_driver);
Corentin Chary85091b72007-01-26 14:04:30 +01001989 return result;
1990}
1991
Corentin Chary600ad522009-11-30 21:42:42 +01001992static void __exit asus_laptop_exit(void)
1993{
1994 acpi_bus_unregister_driver(&asus_acpi_driver);
1995 platform_driver_unregister(&platform_driver);
1996}
1997
Corentin Chary85091b72007-01-26 14:04:30 +01001998module_init(asus_laptop_init);
1999module_exit(asus_laptop_exit);