blob: 05647f1a427e075dcb862ea94f97c53ea01ab876 [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>
Corentin Chary85091b72007-01-26 14:04:30 +010057
Corentin Chary91687cc2009-11-28 10:32:34 +010058#define ASUS_LAPTOP_VERSION "0.42"
Corentin Chary85091b72007-01-26 14:04:30 +010059
Corentin Chary50a90c42009-11-30 21:55:12 +010060#define ASUS_LAPTOP_NAME "Asus Laptop Support"
61#define ASUS_LAPTOP_CLASS "hotkey"
62#define ASUS_LAPTOP_DEVICE_NAME "Hotkey"
63#define ASUS_LAPTOP_FILE KBUILD_MODNAME
64#define ASUS_LAPTOP_PREFIX "\\_SB.ATKD."
Corentin Chary85091b72007-01-26 14:04:30 +010065
Corentin Chary85091b72007-01-26 14:04:30 +010066MODULE_AUTHOR("Julien Lerouge, Karol Kozimor, Corentin Chary");
Corentin Chary50a90c42009-11-30 21:55:12 +010067MODULE_DESCRIPTION(ASUS_LAPTOP_NAME);
Corentin Chary85091b72007-01-26 14:04:30 +010068MODULE_LICENSE("GPL");
69
Corentin Charybe966662009-08-29 10:28:29 +020070/*
71 * WAPF defines the behavior of the Fn+Fx wlan key
Corentin Chary185e5af2007-03-11 10:27:33 +010072 * The significance of values is yet to be found, but
73 * most of the time:
Corentin Charyfddbfed2011-07-01 11:34:39 +020074 * Bit | Bluetooth | WLAN
75 * 0 | Hardware | Hardware
76 * 1 | Hardware | Software
77 * 4 | Software | Software
Corentin Chary185e5af2007-03-11 10:27:33 +010078 */
79static uint wapf = 1;
Axel Linc26d85c2010-07-20 15:19:55 -070080module_param(wapf, uint, 0444);
Corentin Chary185e5af2007-03-11 10:27:33 +010081MODULE_PARM_DESC(wapf, "WAPF value");
82
Corentin Chary774b0672011-12-15 08:27:34 +010083static char *wled_type = "unknown";
84static char *bled_type = "unknown";
85
86module_param(wled_type, charp, 0444);
Maxim Nikulin3f5449b2012-08-20 23:01:52 +020087MODULE_PARM_DESC(wled_type, "Set the wled type on boot "
Corentin Chary774b0672011-12-15 08:27:34 +010088 "(unknown, led or rfkill). "
89 "default is unknown");
90
91module_param(bled_type, charp, 0444);
92MODULE_PARM_DESC(bled_type, "Set the bled type on boot "
93 "(unknown, led or rfkill). "
94 "default is unknown");
95
Dan Carpenter668f4a02010-04-06 13:44:29 +030096static int wlan_status = 1;
97static int bluetooth_status = 1;
Corentin Charyba1ff5b2010-11-14 17:40:12 +010098static int wimax_status = -1;
99static int wwan_status = -1;
Andy Rossabec04d2011-10-14 11:13:37 +0200100static int als_status;
Corentin Chary0e875f42010-01-10 20:49:26 +0100101
Axel Linc26d85c2010-07-20 15:19:55 -0700102module_param(wlan_status, int, 0444);
Corentin Charyd0930a22010-01-17 17:21:13 +0100103MODULE_PARM_DESC(wlan_status, "Set the wireless status on boot "
Corentin Chary0e875f42010-01-10 20:49:26 +0100104 "(0 = disabled, 1 = enabled, -1 = don't do anything). "
Corentin Chary16cbf932011-10-14 11:13:40 +0200105 "default is -1");
Corentin Chary0e875f42010-01-10 20:49:26 +0100106
Axel Linc26d85c2010-07-20 15:19:55 -0700107module_param(bluetooth_status, int, 0444);
Corentin Chary0e875f42010-01-10 20:49:26 +0100108MODULE_PARM_DESC(bluetooth_status, "Set the wireless status on boot "
109 "(0 = disabled, 1 = enabled, -1 = don't do anything). "
Corentin Chary16cbf932011-10-14 11:13:40 +0200110 "default is -1");
Corentin Chary0e875f42010-01-10 20:49:26 +0100111
Corentin Charyba1ff5b2010-11-14 17:40:12 +0100112module_param(wimax_status, int, 0444);
113MODULE_PARM_DESC(wimax_status, "Set the wireless status on boot "
114 "(0 = disabled, 1 = enabled, -1 = don't do anything). "
Corentin Chary16cbf932011-10-14 11:13:40 +0200115 "default is -1");
Corentin Charyba1ff5b2010-11-14 17:40:12 +0100116
117module_param(wwan_status, int, 0444);
118MODULE_PARM_DESC(wwan_status, "Set the wireless status on boot "
119 "(0 = disabled, 1 = enabled, -1 = don't do anything). "
Corentin Chary16cbf932011-10-14 11:13:40 +0200120 "default is -1");
Corentin Charyba1ff5b2010-11-14 17:40:12 +0100121
Andy Rossabec04d2011-10-14 11:13:37 +0200122module_param(als_status, int, 0444);
123MODULE_PARM_DESC(als_status, "Set the ALS status on boot "
124 "(0 = disabled, 1 = enabled). "
125 "default is 0");
126
Corentin Charybe4ee822009-12-06 16:27:09 +0100127/*
128 * Some events we use, same for all Asus
129 */
Corentin Chary2740e1b2012-11-29 09:12:39 +0100130#define ATKD_BRNUP_MIN 0x10
131#define ATKD_BRNUP_MAX 0x1f
132#define ATKD_BRNDOWN_MIN 0x20
133#define ATKD_BRNDOWN_MAX 0x2f
134#define ATKD_BRNDOWN 0x20
135#define ATKD_BRNUP 0x2f
Corentin Charybe4ee822009-12-06 16:27:09 +0100136#define ATKD_LCD_ON 0x33
137#define ATKD_LCD_OFF 0x34
138
139/*
140 * Known bits returned by \_SB.ATKD.HWRS
141 */
142#define WL_HWRS 0x80
143#define BT_HWRS 0x100
144
145/*
146 * Flags for hotk status
147 * WL_ON and BT_ON are also used for wireless_status()
148 */
Corentin Chary17e78f62010-01-13 22:21:33 +0100149#define WL_RSTS 0x01 /* internal Wifi */
150#define BT_RSTS 0x02 /* internal Bluetooth */
Corentin Charyba1ff5b2010-11-14 17:40:12 +0100151#define WM_RSTS 0x08 /* internal wimax */
152#define WW_RSTS 0x20 /* internal wwan */
Corentin Charybe4ee822009-12-06 16:27:09 +0100153
Corentin Chary774b0672011-12-15 08:27:34 +0100154/* WLED and BLED type */
155#define TYPE_UNKNOWN 0
156#define TYPE_LED 1
157#define TYPE_RFKILL 2
158
Corentin Charybe18cda2007-01-26 14:04:35 +0100159/* LED */
Corentin Charyd99b5772010-01-22 21:20:57 +0100160#define METHOD_MLED "MLED"
161#define METHOD_TLED "TLED"
162#define METHOD_RLED "RLED" /* W1JC */
163#define METHOD_PLED "PLED" /* A7J */
164#define METHOD_GLED "GLED" /* G1, G2 (probably) */
Corentin Charybe18cda2007-01-26 14:04:35 +0100165
Corentin Chary722ad972007-01-26 14:04:55 +0100166/* LEDD */
Corentin Charyd99b5772010-01-22 21:20:57 +0100167#define METHOD_LEDD "SLCM"
Corentin Chary722ad972007-01-26 14:04:55 +0100168
Corentin Charybe966662009-08-29 10:28:29 +0200169/*
170 * Bluetooth and WLAN
Corentin Chary4564de12007-01-26 14:04:40 +0100171 * WLED and BLED are not handled like other XLED, because in some dsdt
172 * they also control the WLAN/Bluetooth device.
173 */
Corentin Charyd99b5772010-01-22 21:20:57 +0100174#define METHOD_WLAN "WLED"
175#define METHOD_BLUETOOTH "BLED"
Corentin Charyba1ff5b2010-11-14 17:40:12 +0100176
177/* WWAN and WIMAX */
178#define METHOD_WWAN "GSMC"
179#define METHOD_WIMAX "WMXC"
180
Corentin Charyd99b5772010-01-22 21:20:57 +0100181#define METHOD_WL_STATUS "RSTS"
Corentin Chary4564de12007-01-26 14:04:40 +0100182
Corentin Chary6b7091e2007-01-26 14:04:45 +0100183/* Brightness */
Corentin Charyd99b5772010-01-22 21:20:57 +0100184#define METHOD_BRIGHTNESS_SET "SPLV"
185#define METHOD_BRIGHTNESS_GET "GPLV"
Corentin Chary6b7091e2007-01-26 14:04:45 +0100186
Corentin Chary78127b42007-01-26 14:04:49 +0100187/* Display */
Corentin Charyd99b5772010-01-22 21:20:57 +0100188#define METHOD_SWITCH_DISPLAY "SDSP"
Corentin Chary060cbce2010-01-28 10:52:40 +0100189
Corentin Charyd99b5772010-01-22 21:20:57 +0100190#define METHOD_ALS_CONTROL "ALSC" /* Z71A Z71V */
191#define METHOD_ALS_LEVEL "ALSL" /* Z71A Z71V */
Corentin Chary8b857352007-01-26 14:04:58 +0100192
Corentin Charye539c2f2007-05-06 14:47:06 +0200193/* GPS */
194/* R2H use different handle for GPS on/off */
Corentin Charyd99b5772010-01-22 21:20:57 +0100195#define METHOD_GPS_ON "SDON"
196#define METHOD_GPS_OFF "SDOF"
197#define METHOD_GPS_STATUS "GPST"
Corentin Charye539c2f2007-05-06 14:47:06 +0200198
Corentin Charyb7d3fbc2009-08-28 12:56:50 +0000199/* Keyboard light */
Corentin Charyd99b5772010-01-22 21:20:57 +0100200#define METHOD_KBD_LIGHT_SET "SLKB"
201#define METHOD_KBD_LIGHT_GET "GLKB"
Corentin Charyb7d3fbc2009-08-28 12:56:50 +0000202
Andy Ross8819de72011-10-14 11:13:35 +0200203/* For Pegatron Lucid tablet */
204#define DEVICE_NAME_PEGA "Lucid"
Andy Ross33989ba2011-10-14 11:13:36 +0200205
Andy Ross8819de72011-10-14 11:13:35 +0200206#define METHOD_PEGA_ENABLE "ENPR"
207#define METHOD_PEGA_DISABLE "DAPR"
Anisse Astier14908392011-10-14 11:13:42 +0200208#define PEGA_WLAN 0x00
209#define PEGA_BLUETOOTH 0x01
210#define PEGA_WWAN 0x02
Andy Ross33989ba2011-10-14 11:13:36 +0200211#define PEGA_ALS 0x04
212#define PEGA_ALS_POWER 0x05
213
Andy Ross8819de72011-10-14 11:13:35 +0200214#define METHOD_PEGA_READ "RDLN"
Andy Ross33989ba2011-10-14 11:13:36 +0200215#define PEGA_READ_ALS_H 0x02
216#define PEGA_READ_ALS_L 0x03
Andy Ross8819de72011-10-14 11:13:35 +0200217
Andy Rossb23910c2011-10-14 11:13:38 +0200218#define PEGA_ACCEL_NAME "pega_accel"
219#define PEGA_ACCEL_DESC "Pegatron Lucid Tablet Accelerometer"
220#define METHOD_XLRX "XLRX"
221#define METHOD_XLRY "XLRY"
222#define METHOD_XLRZ "XLRZ"
223#define PEGA_ACC_CLAMP 512 /* 1G accel is reported as ~256, so clamp to 2G */
224#define PEGA_ACC_RETRIES 3
225
Corentin Chary85091b72007-01-26 14:04:30 +0100226/*
Corentin Chary9129d142009-12-01 22:39:41 +0100227 * Define a specific led structure to keep the main structure clean
228 */
Corentin Charyaee0afb2010-01-26 21:01:34 +0100229struct asus_led {
230 int wk;
231 struct work_struct work;
232 struct led_classdev led;
233 struct asus_laptop *asus;
234 const char *method;
Corentin Chary9129d142009-12-01 22:39:41 +0100235};
236
237/*
Anisse Astier14908392011-10-14 11:13:42 +0200238 * Same thing for rfkill
239 */
Corentin Chary40969c72011-12-15 08:27:33 +0100240struct asus_rfkill {
Corentin Chary774b0672011-12-15 08:27:34 +0100241 /* type of control. Maps to PEGA_* values or *_RSTS */
242 int control_id;
Anisse Astier14908392011-10-14 11:13:42 +0200243 struct rfkill *rfkill;
244 struct asus_laptop *asus;
245};
246
247/*
Corentin Chary85091b72007-01-26 14:04:30 +0100248 * This is the main structure, we can use it to store anything interesting
249 * about the hotk device
250 */
Corentin Chary50a90c42009-11-30 21:55:12 +0100251struct asus_laptop {
Corentin Charybe966662009-08-29 10:28:29 +0200252 char *name; /* laptop name */
Corentin Chary600ad522009-11-30 21:42:42 +0100253
Corentin Chary7c247642009-11-30 22:13:54 +0100254 struct acpi_table_header *dsdt_info;
Corentin Chary600ad522009-11-30 21:42:42 +0100255 struct platform_device *platform_device;
Corentin Chary7c247642009-11-30 22:13:54 +0100256 struct acpi_device *device; /* the device we are in */
257 struct backlight_device *backlight_device;
Corentin Chary9129d142009-12-01 22:39:41 +0100258
Corentin Chary7c247642009-11-30 22:13:54 +0100259 struct input_dev *inputdev;
Corentin Chary9129d142009-12-01 22:39:41 +0100260 struct key_entry *keymap;
Andy Rossb23910c2011-10-14 11:13:38 +0200261 struct input_polled_dev *pega_accel_poll;
Corentin Chary9129d142009-12-01 22:39:41 +0100262
Corentin Chary774b0672011-12-15 08:27:34 +0100263 struct asus_led wled;
264 struct asus_led bled;
Corentin Charyaee0afb2010-01-26 21:01:34 +0100265 struct asus_led mled;
266 struct asus_led tled;
267 struct asus_led rled;
268 struct asus_led pled;
269 struct asus_led gled;
270 struct asus_led kled;
271 struct workqueue_struct *led_workqueue;
Corentin Chary7c247642009-11-30 22:13:54 +0100272
Corentin Chary774b0672011-12-15 08:27:34 +0100273 int wled_type;
274 int bled_type;
Corentin Charyaa9df932010-01-13 21:49:10 +0100275 int wireless_status;
276 bool have_rsts;
Andy Ross8819de72011-10-14 11:13:35 +0200277 bool is_pega_lucid;
Andy Rossb23910c2011-10-14 11:13:38 +0200278 bool pega_acc_live;
279 int pega_acc_x;
280 int pega_acc_y;
281 int pega_acc_z;
Corentin Charyaa9df932010-01-13 21:49:10 +0100282
Corentin Chary40969c72011-12-15 08:27:33 +0100283 struct asus_rfkill wlan;
284 struct asus_rfkill bluetooth;
285 struct asus_rfkill wwan;
Corentin Chary3c8671f2011-12-15 08:27:35 +0100286 struct asus_rfkill wimax;
Corentin Chary40969c72011-12-15 08:27:33 +0100287 struct asus_rfkill gps;
Anisse Astier14908392011-10-14 11:13:42 +0200288
Corentin Charybe966662009-08-29 10:28:29 +0200289 acpi_handle handle; /* the handle of the hotk device */
Corentin Charybe966662009-08-29 10:28:29 +0200290 u32 ledd_status; /* status of the LED display */
291 u8 light_level; /* light sensor level */
292 u8 light_switch; /* light sensor switch value */
293 u16 event_count[128]; /* count for each event TODO make this better */
Corentin Chary85091b72007-01-26 14:04:30 +0100294};
295
Corentin Chary9129d142009-12-01 22:39:41 +0100296static const struct key_entry asus_keymap[] = {
Corentin Charya539df52010-01-25 22:53:21 +0100297 /* Lenovo SL Specific keycodes */
Corentin Chary66a71dd2010-01-25 22:50:11 +0100298 {KE_KEY, 0x02, { KEY_SCREENLOCK } },
299 {KE_KEY, 0x05, { KEY_WLAN } },
300 {KE_KEY, 0x08, { KEY_F13 } },
Corentin Charya2d5dd22011-12-15 08:27:38 +0100301 {KE_KEY, 0x09, { KEY_PROG2 } }, /* Dock */
Corentin Chary66a71dd2010-01-25 22:50:11 +0100302 {KE_KEY, 0x17, { KEY_ZOOM } },
303 {KE_KEY, 0x1f, { KEY_BATTERY } },
Corentin Charya539df52010-01-25 22:53:21 +0100304 /* End of Lenovo SL Specific keycodes */
Corentin Chary2740e1b2012-11-29 09:12:39 +0100305 {KE_KEY, ATKD_BRNDOWN, { KEY_BRIGHTNESSDOWN } },
306 {KE_KEY, ATKD_BRNUP, { KEY_BRIGHTNESSUP } },
Corentin Chary66a71dd2010-01-25 22:50:11 +0100307 {KE_KEY, 0x30, { KEY_VOLUMEUP } },
308 {KE_KEY, 0x31, { KEY_VOLUMEDOWN } },
309 {KE_KEY, 0x32, { KEY_MUTE } },
Corentin Charya935eae2012-10-03 11:26:26 +0200310 {KE_KEY, 0x33, { KEY_DISPLAYTOGGLE } }, /* LCD on */
311 {KE_KEY, 0x34, { KEY_DISPLAY_OFF } }, /* LCD off */
Corentin Chary66a71dd2010-01-25 22:50:11 +0100312 {KE_KEY, 0x40, { KEY_PREVIOUSSONG } },
313 {KE_KEY, 0x41, { KEY_NEXTSONG } },
Corentin Charya935eae2012-10-03 11:26:26 +0200314 {KE_KEY, 0x43, { KEY_STOPCD } }, /* Stop/Eject */
Corentin Chary66a71dd2010-01-25 22:50:11 +0100315 {KE_KEY, 0x45, { KEY_PLAYPAUSE } },
Corentin Charya935eae2012-10-03 11:26:26 +0200316 {KE_KEY, 0x4c, { KEY_MEDIA } }, /* WMP Key */
Corentin Chary66a71dd2010-01-25 22:50:11 +0100317 {KE_KEY, 0x50, { KEY_EMAIL } },
318 {KE_KEY, 0x51, { KEY_WWW } },
319 {KE_KEY, 0x55, { KEY_CALC } },
Corentin Chary982d3852012-10-03 11:26:25 +0200320 {KE_IGNORE, 0x57, }, /* Battery mode */
321 {KE_IGNORE, 0x58, }, /* AC mode */
Corentin Chary66a71dd2010-01-25 22:50:11 +0100322 {KE_KEY, 0x5C, { KEY_SCREENLOCK } }, /* Screenlock */
Corentin Charya935eae2012-10-03 11:26:26 +0200323 {KE_KEY, 0x5D, { KEY_WLAN } }, /* WLAN Toggle */
324 {KE_KEY, 0x5E, { KEY_WLAN } }, /* WLAN Enable */
325 {KE_KEY, 0x5F, { KEY_WLAN } }, /* WLAN Disable */
AceLan Kao19d3ab12012-10-03 11:26:27 +0200326 {KE_KEY, 0x60, { KEY_TOUCHPAD_ON } },
AceLan Kao3da4cd22012-10-03 11:26:28 +0200327 {KE_KEY, 0x61, { KEY_SWITCHVIDEOMODE } }, /* SDSP LCD only */
328 {KE_KEY, 0x62, { KEY_SWITCHVIDEOMODE } }, /* SDSP CRT only */
329 {KE_KEY, 0x63, { KEY_SWITCHVIDEOMODE } }, /* SDSP LCD + CRT */
330 {KE_KEY, 0x64, { KEY_SWITCHVIDEOMODE } }, /* SDSP TV */
331 {KE_KEY, 0x65, { KEY_SWITCHVIDEOMODE } }, /* SDSP LCD + TV */
332 {KE_KEY, 0x66, { KEY_SWITCHVIDEOMODE } }, /* SDSP CRT + TV */
333 {KE_KEY, 0x67, { KEY_SWITCHVIDEOMODE } }, /* SDSP LCD + CRT + TV */
Corentin Charya935eae2012-10-03 11:26:26 +0200334 {KE_KEY, 0x6B, { KEY_TOUCHPAD_TOGGLE } }, /* Lock Touchpad */
Corentin Charya2d5dd22011-12-15 08:27:38 +0100335 {KE_KEY, 0x6C, { KEY_SLEEP } }, /* Suspend */
336 {KE_KEY, 0x6D, { KEY_SLEEP } }, /* Hibernate */
Corentin Chary982d3852012-10-03 11:26:25 +0200337 {KE_IGNORE, 0x6E, }, /* Low Battery notification */
Corentin Charya935eae2012-10-03 11:26:26 +0200338 {KE_KEY, 0x7D, { KEY_BLUETOOTH } }, /* Bluetooth Enable */
339 {KE_KEY, 0x7E, { KEY_BLUETOOTH } }, /* Bluetooth Disable */
Corentin Chary66a71dd2010-01-25 22:50:11 +0100340 {KE_KEY, 0x82, { KEY_CAMERA } },
Corentin Charya935eae2012-10-03 11:26:26 +0200341 {KE_KEY, 0x88, { KEY_RFKILL } }, /* Radio Toggle Key */
342 {KE_KEY, 0x8A, { KEY_PROG1 } }, /* Color enhancement mode */
AceLan Kao3da4cd22012-10-03 11:26:28 +0200343 {KE_KEY, 0x8C, { KEY_SWITCHVIDEOMODE } }, /* SDSP DVI only */
344 {KE_KEY, 0x8D, { KEY_SWITCHVIDEOMODE } }, /* SDSP LCD + DVI */
345 {KE_KEY, 0x8E, { KEY_SWITCHVIDEOMODE } }, /* SDSP CRT + DVI */
346 {KE_KEY, 0x8F, { KEY_SWITCHVIDEOMODE } }, /* SDSP TV + DVI */
347 {KE_KEY, 0x90, { KEY_SWITCHVIDEOMODE } }, /* SDSP LCD + CRT + DVI */
348 {KE_KEY, 0x91, { KEY_SWITCHVIDEOMODE } }, /* SDSP LCD + TV + DVI */
349 {KE_KEY, 0x92, { KEY_SWITCHVIDEOMODE } }, /* SDSP CRT + TV + DVI */
350 {KE_KEY, 0x93, { KEY_SWITCHVIDEOMODE } }, /* SDSP LCD + CRT + TV + DVI */
Corentin Chary66a71dd2010-01-25 22:50:11 +0100351 {KE_KEY, 0x95, { KEY_MEDIA } },
352 {KE_KEY, 0x99, { KEY_PHONE } },
AceLan Kao3da4cd22012-10-03 11:26:28 +0200353 {KE_KEY, 0xA0, { KEY_SWITCHVIDEOMODE } }, /* SDSP HDMI only */
354 {KE_KEY, 0xA1, { KEY_SWITCHVIDEOMODE } }, /* SDSP LCD + HDMI */
355 {KE_KEY, 0xA2, { KEY_SWITCHVIDEOMODE } }, /* SDSP CRT + HDMI */
356 {KE_KEY, 0xA3, { KEY_SWITCHVIDEOMODE } }, /* SDSP TV + HDMI */
357 {KE_KEY, 0xA4, { KEY_SWITCHVIDEOMODE } }, /* SDSP LCD + CRT + HDMI */
358 {KE_KEY, 0xA5, { KEY_SWITCHVIDEOMODE } }, /* SDSP LCD + TV + HDMI */
359 {KE_KEY, 0xA6, { KEY_SWITCHVIDEOMODE } }, /* SDSP CRT + TV + HDMI */
360 {KE_KEY, 0xA7, { KEY_SWITCHVIDEOMODE } }, /* SDSP LCD + CRT + TV + HDMI */
Corentin Charya935eae2012-10-03 11:26:26 +0200361 {KE_KEY, 0xB5, { KEY_CALC } },
362 {KE_KEY, 0xC4, { KEY_KBDILLUMUP } },
363 {KE_KEY, 0xC5, { KEY_KBDILLUMDOWN } },
Corentin Chary034ce902009-01-20 16:17:43 +0100364 {KE_END, 0},
365};
366
Corentin Chary66a71dd2010-01-25 22:50:11 +0100367
Corentin Chary85091b72007-01-26 14:04:30 +0100368/*
369 * This function evaluates an ACPI method, given an int as parameter, the
370 * method is searched within the scope of the handle, can be NULL. The output
371 * of the method is written is output, which can also be NULL
372 *
Corentin CHARYf8d1c942008-01-16 16:56:42 +0100373 * returns 0 if write is successful, -1 else.
Corentin Chary85091b72007-01-26 14:04:30 +0100374 */
Corentin Charyd8c67322009-11-28 10:27:51 +0100375static int write_acpi_int_ret(acpi_handle handle, const char *method, int val,
376 struct acpi_buffer *output)
Corentin Chary85091b72007-01-26 14:04:30 +0100377{
Corentin Charybe966662009-08-29 10:28:29 +0200378 struct acpi_object_list params; /* list of input parameters (an int) */
379 union acpi_object in_obj; /* the only param we use */
Corentin Chary85091b72007-01-26 14:04:30 +0100380 acpi_status status;
381
Corentin CHARYf8d1c942008-01-16 16:56:42 +0100382 if (!handle)
Axel Lin9fb866f2010-07-20 15:19:47 -0700383 return -1;
Corentin CHARYf8d1c942008-01-16 16:56:42 +0100384
Corentin Chary85091b72007-01-26 14:04:30 +0100385 params.count = 1;
386 params.pointer = &in_obj;
387 in_obj.type = ACPI_TYPE_INTEGER;
388 in_obj.integer.value = val;
389
390 status = acpi_evaluate_object(handle, (char *)method, &params, output);
Corentin CHARYf8d1c942008-01-16 16:56:42 +0100391 if (status == AE_OK)
392 return 0;
393 else
394 return -1;
Corentin Chary85091b72007-01-26 14:04:30 +0100395}
396
Corentin Charyd8c67322009-11-28 10:27:51 +0100397static int write_acpi_int(acpi_handle handle, const char *method, int val)
398{
399 return write_acpi_int_ret(handle, method, val, NULL);
400}
401
Corentin Charyd99b5772010-01-22 21:20:57 +0100402static int acpi_check_handle(acpi_handle handle, const char *method,
403 acpi_handle *ret)
404{
405 acpi_status status;
406
407 if (method == NULL)
408 return -ENODEV;
409
410 if (ret)
411 status = acpi_get_handle(handle, (char *)method,
412 ret);
413 else {
414 acpi_handle dummy;
415
416 status = acpi_get_handle(handle, (char *)method,
417 &dummy);
418 }
419
420 if (status != AE_OK) {
421 if (ret)
Joe Perches5ad77dc2011-03-29 15:21:35 -0700422 pr_warn("Error finding %s\n", method);
Corentin Charyd99b5772010-01-22 21:20:57 +0100423 return -ENODEV;
424 }
425 return 0;
426}
427
Andy Ross8819de72011-10-14 11:13:35 +0200428static bool asus_check_pega_lucid(struct asus_laptop *asus)
429{
430 return !strcmp(asus->name, DEVICE_NAME_PEGA) &&
431 !acpi_check_handle(asus->handle, METHOD_PEGA_ENABLE, NULL) &&
432 !acpi_check_handle(asus->handle, METHOD_PEGA_DISABLE, NULL) &&
433 !acpi_check_handle(asus->handle, METHOD_PEGA_READ, NULL);
434}
435
Andy Ross33989ba2011-10-14 11:13:36 +0200436static int asus_pega_lucid_set(struct asus_laptop *asus, int unit, bool enable)
437{
438 char *method = enable ? METHOD_PEGA_ENABLE : METHOD_PEGA_DISABLE;
439 return write_acpi_int(asus->handle, method, unit);
440}
441
Andy Rossb23910c2011-10-14 11:13:38 +0200442static int pega_acc_axis(struct asus_laptop *asus, int curr, char *method)
443{
444 int i, delta;
445 unsigned long long val;
446 for (i = 0; i < PEGA_ACC_RETRIES; i++) {
447 acpi_evaluate_integer(asus->handle, method, NULL, &val);
448
449 /* The output is noisy. From reading the ASL
450 * dissassembly, timeout errors are returned with 1's
451 * in the high word, and the lack of locking around
452 * thei hi/lo byte reads means that a transition
453 * between (for example) -1 and 0 could be read as
454 * 0xff00 or 0x00ff. */
455 delta = abs(curr - (short)val);
456 if (delta < 128 && !(val & ~0xffff))
457 break;
458 }
459 return clamp_val((short)val, -PEGA_ACC_CLAMP, PEGA_ACC_CLAMP);
460}
461
462static void pega_accel_poll(struct input_polled_dev *ipd)
463{
464 struct device *parent = ipd->input->dev.parent;
465 struct asus_laptop *asus = dev_get_drvdata(parent);
466
467 /* In some cases, the very first call to poll causes a
468 * recursive fault under the polldev worker. This is
469 * apparently related to very early userspace access to the
470 * device, and perhaps a firmware bug. Fake the first report. */
471 if (!asus->pega_acc_live) {
472 asus->pega_acc_live = true;
473 input_report_abs(ipd->input, ABS_X, 0);
474 input_report_abs(ipd->input, ABS_Y, 0);
475 input_report_abs(ipd->input, ABS_Z, 0);
476 input_sync(ipd->input);
477 return;
478 }
479
480 asus->pega_acc_x = pega_acc_axis(asus, asus->pega_acc_x, METHOD_XLRX);
481 asus->pega_acc_y = pega_acc_axis(asus, asus->pega_acc_y, METHOD_XLRY);
482 asus->pega_acc_z = pega_acc_axis(asus, asus->pega_acc_z, METHOD_XLRZ);
483
484 /* Note transform, convert to "right/up/out" in the native
485 * landscape orientation (i.e. the vector is the direction of
486 * "real up" in the device's cartiesian coordinates). */
487 input_report_abs(ipd->input, ABS_X, -asus->pega_acc_x);
488 input_report_abs(ipd->input, ABS_Y, -asus->pega_acc_y);
489 input_report_abs(ipd->input, ABS_Z, asus->pega_acc_z);
490 input_sync(ipd->input);
491}
492
493static void pega_accel_exit(struct asus_laptop *asus)
494{
495 if (asus->pega_accel_poll) {
496 input_unregister_polled_device(asus->pega_accel_poll);
497 input_free_polled_device(asus->pega_accel_poll);
498 }
499 asus->pega_accel_poll = NULL;
500}
501
502static int pega_accel_init(struct asus_laptop *asus)
503{
504 int err;
505 struct input_polled_dev *ipd;
506
507 if (!asus->is_pega_lucid)
508 return -ENODEV;
509
510 if (acpi_check_handle(asus->handle, METHOD_XLRX, NULL) ||
511 acpi_check_handle(asus->handle, METHOD_XLRY, NULL) ||
512 acpi_check_handle(asus->handle, METHOD_XLRZ, NULL))
513 return -ENODEV;
514
515 ipd = input_allocate_polled_device();
516 if (!ipd)
517 return -ENOMEM;
518
519 ipd->poll = pega_accel_poll;
520 ipd->poll_interval = 125;
521 ipd->poll_interval_min = 50;
522 ipd->poll_interval_max = 2000;
523
524 ipd->input->name = PEGA_ACCEL_DESC;
525 ipd->input->phys = PEGA_ACCEL_NAME "/input0";
526 ipd->input->dev.parent = &asus->platform_device->dev;
527 ipd->input->id.bustype = BUS_HOST;
528
529 set_bit(EV_ABS, ipd->input->evbit);
530 input_set_abs_params(ipd->input, ABS_X,
531 -PEGA_ACC_CLAMP, PEGA_ACC_CLAMP, 0, 0);
532 input_set_abs_params(ipd->input, ABS_Y,
533 -PEGA_ACC_CLAMP, PEGA_ACC_CLAMP, 0, 0);
534 input_set_abs_params(ipd->input, ABS_Z,
535 -PEGA_ACC_CLAMP, PEGA_ACC_CLAMP, 0, 0);
536
537 err = input_register_polled_device(ipd);
538 if (err)
539 goto exit;
540
541 asus->pega_accel_poll = ipd;
542 return 0;
543
544exit:
545 input_free_polled_device(ipd);
546 return err;
547}
548
Corentin Chary17e78f62010-01-13 22:21:33 +0100549/* Generic LED function */
Corentin Charyaee0afb2010-01-26 21:01:34 +0100550static int asus_led_set(struct asus_laptop *asus, const char *method,
Corentin Chary17e78f62010-01-13 22:21:33 +0100551 int value)
Corentin Charybe18cda2007-01-26 14:04:35 +0100552{
Corentin Charyd99b5772010-01-22 21:20:57 +0100553 if (!strcmp(method, METHOD_MLED))
Corentin Chary17e78f62010-01-13 22:21:33 +0100554 value = !value;
Corentin Charyd99b5772010-01-22 21:20:57 +0100555 else if (!strcmp(method, METHOD_GLED))
Corentin Chary17e78f62010-01-13 22:21:33 +0100556 value = !value + 1;
557 else
558 value = !!value;
Corentin Charybe18cda2007-01-26 14:04:35 +0100559
Corentin Charye5593bf2010-01-17 17:20:11 +0100560 return write_acpi_int(asus->handle, method, value);
Corentin Charybe18cda2007-01-26 14:04:35 +0100561}
562
Corentin Charybe4ee822009-12-06 16:27:09 +0100563/*
564 * LEDs
565 */
Corentin Charybe18cda2007-01-26 14:04:35 +0100566/* /sys/class/led handlers */
Corentin Charyaee0afb2010-01-26 21:01:34 +0100567static void asus_led_cdev_set(struct led_classdev *led_cdev,
568 enum led_brightness value)
569{
570 struct asus_led *led = container_of(led_cdev, struct asus_led, led);
571 struct asus_laptop *asus = led->asus;
Corentin Charybe18cda2007-01-26 14:04:35 +0100572
Corentin Charyaee0afb2010-01-26 21:01:34 +0100573 led->wk = !!value;
574 queue_work(asus->led_workqueue, &led->work);
575}
576
577static void asus_led_cdev_update(struct work_struct *work)
578{
579 struct asus_led *led = container_of(work, struct asus_led, work);
580 struct asus_laptop *asus = led->asus;
581
582 asus_led_set(asus, led->method, led->wk);
583}
584
585static enum led_brightness asus_led_cdev_get(struct led_classdev *led_cdev)
586{
587 return led_cdev->brightness;
588}
Corentin Charybe18cda2007-01-26 14:04:35 +0100589
Corentin Charyb7d3fbc2009-08-28 12:56:50 +0000590/*
Corentin Charybe4ee822009-12-06 16:27:09 +0100591 * Keyboard backlight (also a LED)
Corentin Charyb7d3fbc2009-08-28 12:56:50 +0000592 */
Corentin Charyd99b5772010-01-22 21:20:57 +0100593static int asus_kled_lvl(struct asus_laptop *asus)
Corentin Charyb7d3fbc2009-08-28 12:56:50 +0000594{
595 unsigned long long kblv;
596 struct acpi_object_list params;
597 union acpi_object in_obj;
598 acpi_status rv;
599
600 params.count = 1;
601 params.pointer = &in_obj;
602 in_obj.type = ACPI_TYPE_INTEGER;
603 in_obj.integer.value = 2;
604
Corentin Charyd99b5772010-01-22 21:20:57 +0100605 rv = acpi_evaluate_integer(asus->handle, METHOD_KBD_LIGHT_GET,
606 &params, &kblv);
Corentin Charyb7d3fbc2009-08-28 12:56:50 +0000607 if (ACPI_FAILURE(rv)) {
Joe Perches5ad77dc2011-03-29 15:21:35 -0700608 pr_warn("Error reading kled level\n");
Corentin Chary4d441512010-01-13 22:26:24 +0100609 return -ENODEV;
Corentin Charyb7d3fbc2009-08-28 12:56:50 +0000610 }
611 return kblv;
612}
613
Corentin Chary4d441512010-01-13 22:26:24 +0100614static int asus_kled_set(struct asus_laptop *asus, int kblv)
Corentin Charyb7d3fbc2009-08-28 12:56:50 +0000615{
616 if (kblv > 0)
617 kblv = (1 << 7) | (kblv & 0x7F);
618 else
619 kblv = 0;
620
Corentin Charyd99b5772010-01-22 21:20:57 +0100621 if (write_acpi_int(asus->handle, METHOD_KBD_LIGHT_SET, kblv)) {
Joe Perches5ad77dc2011-03-29 15:21:35 -0700622 pr_warn("Keyboard LED display write failed\n");
Corentin Charyb7d3fbc2009-08-28 12:56:50 +0000623 return -EINVAL;
624 }
625 return 0;
626}
627
Corentin Charyaee0afb2010-01-26 21:01:34 +0100628static void asus_kled_cdev_set(struct led_classdev *led_cdev,
629 enum led_brightness value)
Corentin Charyb7d3fbc2009-08-28 12:56:50 +0000630{
Corentin Charyaee0afb2010-01-26 21:01:34 +0100631 struct asus_led *led = container_of(led_cdev, struct asus_led, led);
632 struct asus_laptop *asus = led->asus;
Corentin Chary9129d142009-12-01 22:39:41 +0100633
Corentin Chary060cbce2010-01-28 10:52:40 +0100634 led->wk = value;
Corentin Charyaee0afb2010-01-26 21:01:34 +0100635 queue_work(asus->led_workqueue, &led->work);
Corentin Charyb7d3fbc2009-08-28 12:56:50 +0000636}
637
Corentin Charyaee0afb2010-01-26 21:01:34 +0100638static void asus_kled_cdev_update(struct work_struct *work)
Corentin Charyb7d3fbc2009-08-28 12:56:50 +0000639{
Corentin Charyaee0afb2010-01-26 21:01:34 +0100640 struct asus_led *led = container_of(work, struct asus_led, work);
641 struct asus_laptop *asus = led->asus;
Corentin Chary9129d142009-12-01 22:39:41 +0100642
Corentin Charyaee0afb2010-01-26 21:01:34 +0100643 asus_kled_set(asus, led->wk);
Corentin Charyb7d3fbc2009-08-28 12:56:50 +0000644}
645
Corentin Charyaee0afb2010-01-26 21:01:34 +0100646static enum led_brightness asus_kled_cdev_get(struct led_classdev *led_cdev)
Corentin Charyb7d3fbc2009-08-28 12:56:50 +0000647{
Corentin Charyaee0afb2010-01-26 21:01:34 +0100648 struct asus_led *led = container_of(led_cdev, struct asus_led, led);
649 struct asus_laptop *asus = led->asus;
Corentin Charyd99b5772010-01-22 21:20:57 +0100650
651 return asus_kled_lvl(asus);
Corentin Charyb7d3fbc2009-08-28 12:56:50 +0000652}
653
Corentin Charybe4ee822009-12-06 16:27:09 +0100654static void asus_led_exit(struct asus_laptop *asus)
655{
Corentin Chary774b0672011-12-15 08:27:34 +0100656 if (!IS_ERR_OR_NULL(asus->wled.led.dev))
657 led_classdev_unregister(&asus->wled.led);
658 if (!IS_ERR_OR_NULL(asus->bled.led.dev))
659 led_classdev_unregister(&asus->bled.led);
Axel Lin8fcf71a2011-08-08 17:17:18 +0800660 if (!IS_ERR_OR_NULL(asus->mled.led.dev))
Corentin Charyaee0afb2010-01-26 21:01:34 +0100661 led_classdev_unregister(&asus->mled.led);
Axel Lin8fcf71a2011-08-08 17:17:18 +0800662 if (!IS_ERR_OR_NULL(asus->tled.led.dev))
Corentin Charyaee0afb2010-01-26 21:01:34 +0100663 led_classdev_unregister(&asus->tled.led);
Axel Lin8fcf71a2011-08-08 17:17:18 +0800664 if (!IS_ERR_OR_NULL(asus->pled.led.dev))
Corentin Charyaee0afb2010-01-26 21:01:34 +0100665 led_classdev_unregister(&asus->pled.led);
Axel Lin8fcf71a2011-08-08 17:17:18 +0800666 if (!IS_ERR_OR_NULL(asus->rled.led.dev))
Corentin Charyaee0afb2010-01-26 21:01:34 +0100667 led_classdev_unregister(&asus->rled.led);
Axel Lin8fcf71a2011-08-08 17:17:18 +0800668 if (!IS_ERR_OR_NULL(asus->gled.led.dev))
Corentin Charyaee0afb2010-01-26 21:01:34 +0100669 led_classdev_unregister(&asus->gled.led);
Axel Lin8fcf71a2011-08-08 17:17:18 +0800670 if (!IS_ERR_OR_NULL(asus->kled.led.dev))
Corentin Charyaee0afb2010-01-26 21:01:34 +0100671 led_classdev_unregister(&asus->kled.led);
672 if (asus->led_workqueue) {
673 destroy_workqueue(asus->led_workqueue);
674 asus->led_workqueue = NULL;
Corentin Charybe4ee822009-12-06 16:27:09 +0100675 }
676}
677
678/* Ugly macro, need to fix that later */
Corentin Charyaee0afb2010-01-26 21:01:34 +0100679static int asus_led_register(struct asus_laptop *asus,
680 struct asus_led *led,
681 const char *name, const char *method)
682{
683 struct led_classdev *led_cdev = &led->led;
684
685 if (!method || acpi_check_handle(asus->handle, method, NULL))
Corentin Chary060cbce2010-01-28 10:52:40 +0100686 return 0; /* Led not present */
Corentin Charyaee0afb2010-01-26 21:01:34 +0100687
688 led->asus = asus;
689 led->method = method;
690
691 INIT_WORK(&led->work, asus_led_cdev_update);
692 led_cdev->name = name;
693 led_cdev->brightness_set = asus_led_cdev_set;
694 led_cdev->brightness_get = asus_led_cdev_get;
695 led_cdev->max_brightness = 1;
696 return led_classdev_register(&asus->platform_device->dev, led_cdev);
697}
Corentin Charybe4ee822009-12-06 16:27:09 +0100698
699static int asus_led_init(struct asus_laptop *asus)
700{
Corentin Chary774b0672011-12-15 08:27:34 +0100701 int r = 0;
Corentin Charybe4ee822009-12-06 16:27:09 +0100702
703 /*
Corentin Chary8d38e422011-10-14 11:13:39 +0200704 * The Pegatron Lucid has no physical leds, but all methods are
705 * available in the DSDT...
706 */
707 if (asus->is_pega_lucid)
708 return 0;
709
710 /*
Corentin Charybe4ee822009-12-06 16:27:09 +0100711 * Functions that actually update the LED's are called from a
712 * workqueue. By doing this as separate work rather than when the LED
713 * subsystem asks, we avoid messing with the Asus ACPI stuff during a
714 * potentially bad time, such as a timer interrupt.
715 */
Corentin Charyaee0afb2010-01-26 21:01:34 +0100716 asus->led_workqueue = create_singlethread_workqueue("led_workqueue");
717 if (!asus->led_workqueue)
Corentin Charybe4ee822009-12-06 16:27:09 +0100718 return -ENOMEM;
719
Corentin Chary774b0672011-12-15 08:27:34 +0100720 if (asus->wled_type == TYPE_LED)
721 r = asus_led_register(asus, &asus->wled, "asus::wlan",
722 METHOD_WLAN);
723 if (r)
724 goto error;
725 if (asus->bled_type == TYPE_LED)
726 r = asus_led_register(asus, &asus->bled, "asus::bluetooth",
727 METHOD_BLUETOOTH);
728 if (r)
729 goto error;
Corentin Charyaee0afb2010-01-26 21:01:34 +0100730 r = asus_led_register(asus, &asus->mled, "asus::mail", METHOD_MLED);
731 if (r)
732 goto error;
733 r = asus_led_register(asus, &asus->tled, "asus::touchpad", METHOD_TLED);
734 if (r)
735 goto error;
736 r = asus_led_register(asus, &asus->rled, "asus::record", METHOD_RLED);
737 if (r)
738 goto error;
739 r = asus_led_register(asus, &asus->pled, "asus::phone", METHOD_PLED);
740 if (r)
741 goto error;
742 r = asus_led_register(asus, &asus->gled, "asus::gaming", METHOD_GLED);
743 if (r)
744 goto error;
Corentin Charyd99b5772010-01-22 21:20:57 +0100745 if (!acpi_check_handle(asus->handle, METHOD_KBD_LIGHT_SET, NULL) &&
Corentin Charyaee0afb2010-01-26 21:01:34 +0100746 !acpi_check_handle(asus->handle, METHOD_KBD_LIGHT_GET, NULL)) {
747 struct asus_led *led = &asus->kled;
748 struct led_classdev *cdev = &led->led;
749
750 led->asus = asus;
751
752 INIT_WORK(&led->work, asus_kled_cdev_update);
753 cdev->name = "asus::kbd_backlight";
754 cdev->brightness_set = asus_kled_cdev_set;
755 cdev->brightness_get = asus_kled_cdev_get;
756 cdev->max_brightness = 3;
757 r = led_classdev_register(&asus->platform_device->dev, cdev);
758 }
Corentin Charybe4ee822009-12-06 16:27:09 +0100759error:
Corentin Charyaee0afb2010-01-26 21:01:34 +0100760 if (r)
Corentin Charybe4ee822009-12-06 16:27:09 +0100761 asus_led_exit(asus);
Corentin Charyaee0afb2010-01-26 21:01:34 +0100762 return r;
Corentin Charybe4ee822009-12-06 16:27:09 +0100763}
764
765/*
766 * Backlight device
767 */
Corentin Chary4d441512010-01-13 22:26:24 +0100768static int asus_read_brightness(struct backlight_device *bd)
Corentin Chary6b7091e2007-01-26 14:04:45 +0100769{
Corentin Charyd99b5772010-01-22 21:20:57 +0100770 struct asus_laptop *asus = bl_get_data(bd);
Matthew Wilcox27663c52008-10-10 02:22:59 -0400771 unsigned long long value;
Corentin Chary9a816852007-03-11 10:25:38 +0100772 acpi_status rv = AE_OK;
Corentin Chary6b7091e2007-01-26 14:04:45 +0100773
Corentin Charyd99b5772010-01-22 21:20:57 +0100774 rv = acpi_evaluate_integer(asus->handle, METHOD_BRIGHTNESS_GET,
775 NULL, &value);
Corentin Chary9a816852007-03-11 10:25:38 +0100776 if (ACPI_FAILURE(rv))
Joe Perches5ad77dc2011-03-29 15:21:35 -0700777 pr_warn("Error reading brightness\n");
Corentin Chary6b7091e2007-01-26 14:04:45 +0100778
779 return value;
780}
781
Corentin Chary4d441512010-01-13 22:26:24 +0100782static int asus_set_brightness(struct backlight_device *bd, int value)
Corentin Chary6b7091e2007-01-26 14:04:45 +0100783{
Corentin Charyd99b5772010-01-22 21:20:57 +0100784 struct asus_laptop *asus = bl_get_data(bd);
785
786 if (write_acpi_int(asus->handle, METHOD_BRIGHTNESS_SET, value)) {
Joe Perches5ad77dc2011-03-29 15:21:35 -0700787 pr_warn("Error changing brightness\n");
Corentin Charye5b50f62009-11-28 10:19:55 +0100788 return -EIO;
Corentin Chary6b7091e2007-01-26 14:04:45 +0100789 }
Corentin Charye5b50f62009-11-28 10:19:55 +0100790 return 0;
Corentin Chary6b7091e2007-01-26 14:04:45 +0100791}
792
793static int update_bl_status(struct backlight_device *bd)
794{
Richard Purdie599a52d2007-02-10 23:07:48 +0000795 int value = bd->props.brightness;
Corentin Chary6b7091e2007-01-26 14:04:45 +0100796
Corentin Chary3b81cf92011-02-06 13:27:31 +0100797 return asus_set_brightness(bd, value);
Corentin Chary6b7091e2007-01-26 14:04:45 +0100798}
799
Lionel Debrouxacc24722010-11-16 14:14:02 +0100800static const struct backlight_ops asusbl_ops = {
Corentin Chary4d441512010-01-13 22:26:24 +0100801 .get_brightness = asus_read_brightness,
Corentin Charybe4ee822009-12-06 16:27:09 +0100802 .update_status = update_bl_status,
803};
804
Corentin Charya539df52010-01-25 22:53:21 +0100805static int asus_backlight_notify(struct asus_laptop *asus)
806{
807 struct backlight_device *bd = asus->backlight_device;
808 int old = bd->props.brightness;
809
810 backlight_force_update(bd, BACKLIGHT_UPDATE_HOTKEY);
811
812 return old;
813}
814
Corentin Charybe4ee822009-12-06 16:27:09 +0100815static int asus_backlight_init(struct asus_laptop *asus)
816{
817 struct backlight_device *bd;
Matthew Garretta19a6ee2010-02-17 16:39:44 -0500818 struct backlight_properties props;
Corentin Charybe4ee822009-12-06 16:27:09 +0100819
Corentin Chary71e687d2010-08-24 09:30:44 +0200820 if (acpi_check_handle(asus->handle, METHOD_BRIGHTNESS_GET, NULL) ||
Corentin Chary3b81cf92011-02-06 13:27:31 +0100821 acpi_check_handle(asus->handle, METHOD_BRIGHTNESS_SET, NULL))
Corentin Chary71e687d2010-08-24 09:30:44 +0200822 return 0;
Matthew Garretta19a6ee2010-02-17 16:39:44 -0500823
Corentin Chary71e687d2010-08-24 09:30:44 +0200824 memset(&props, 0, sizeof(struct backlight_properties));
825 props.max_brightness = 15;
Matthew Garrettbb7ca742011-03-22 16:30:21 -0700826 props.type = BACKLIGHT_PLATFORM;
Corentin Charybe4ee822009-12-06 16:27:09 +0100827
Corentin Chary71e687d2010-08-24 09:30:44 +0200828 bd = backlight_device_register(ASUS_LAPTOP_FILE,
829 &asus->platform_device->dev, asus,
830 &asusbl_ops, &props);
831 if (IS_ERR(bd)) {
832 pr_err("Could not register asus backlight device\n");
833 asus->backlight_device = NULL;
834 return PTR_ERR(bd);
Corentin Charybe4ee822009-12-06 16:27:09 +0100835 }
Corentin Chary71e687d2010-08-24 09:30:44 +0200836
837 asus->backlight_device = bd;
838 bd->props.brightness = asus_read_brightness(bd);
839 bd->props.power = FB_BLANK_UNBLANK;
840 backlight_update_status(bd);
Corentin Charybe4ee822009-12-06 16:27:09 +0100841 return 0;
842}
843
844static void asus_backlight_exit(struct asus_laptop *asus)
845{
846 if (asus->backlight_device)
847 backlight_device_unregister(asus->backlight_device);
Corentin Charya539df52010-01-25 22:53:21 +0100848 asus->backlight_device = NULL;
Corentin Charybe4ee822009-12-06 16:27:09 +0100849}
850
Corentin Chary85091b72007-01-26 14:04:30 +0100851/*
852 * Platform device handlers
853 */
854
855/*
856 * We write our info in page, we begin at offset off and cannot write more
857 * than count bytes. We set eof to 1 if we handle those 2 values. We return the
858 * number of bytes written in page
859 */
860static ssize_t show_infos(struct device *dev,
Len Brown8def05f2007-01-30 01:46:43 -0500861 struct device_attribute *attr, char *page)
Corentin Chary85091b72007-01-26 14:04:30 +0100862{
Corentin Chary9129d142009-12-01 22:39:41 +0100863 struct asus_laptop *asus = dev_get_drvdata(dev);
Corentin Chary85091b72007-01-26 14:04:30 +0100864 int len = 0;
Matthew Wilcox27663c52008-10-10 02:22:59 -0400865 unsigned long long temp;
Corentin Charybe966662009-08-29 10:28:29 +0200866 char buf[16]; /* enough for all info */
Corentin Chary9a816852007-03-11 10:25:38 +0100867 acpi_status rv = AE_OK;
868
Corentin Chary85091b72007-01-26 14:04:30 +0100869 /*
Corentin Chary060cbce2010-01-28 10:52:40 +0100870 * We use the easy way, we don't care of off and count,
871 * so we don't set eof to 1
Corentin Chary85091b72007-01-26 14:04:30 +0100872 */
873
Corentin Chary50a90c42009-11-30 21:55:12 +0100874 len += sprintf(page, ASUS_LAPTOP_NAME " " ASUS_LAPTOP_VERSION "\n");
875 len += sprintf(page + len, "Model reference : %s\n", asus->name);
Corentin Chary85091b72007-01-26 14:04:30 +0100876 /*
877 * The SFUN method probably allows the original driver to get the list
878 * of features supported by a given model. For now, 0x0100 or 0x0800
879 * bit signifies that the laptop is equipped with a Wi-Fi MiniPCI card.
880 * The significance of others is yet to be found.
881 */
Corentin Chary50a90c42009-11-30 21:55:12 +0100882 rv = acpi_evaluate_integer(asus->handle, "SFUN", NULL, &temp);
Corentin Chary9a816852007-03-11 10:25:38 +0100883 if (!ACPI_FAILURE(rv))
Corentin Chary1d4a3802009-08-28 12:56:46 +0000884 len += sprintf(page + len, "SFUN value : %#x\n",
885 (uint) temp);
886 /*
887 * The HWRS method return informations about the hardware.
888 * 0x80 bit is for WLAN, 0x100 for Bluetooth.
Ben Hutchingscb7da022012-11-29 09:12:37 +0100889 * 0x40 for WWAN, 0x10 for WIMAX.
Corentin Chary1d4a3802009-08-28 12:56:46 +0000890 * The significance of others is yet to be found.
Ben Hutchingscb7da022012-11-29 09:12:37 +0100891 * We don't currently use this for device detection, and it
892 * takes several seconds to run on some systems.
Corentin Chary1d4a3802009-08-28 12:56:46 +0000893 */
Corentin Chary8871e992012-08-20 23:01:51 +0200894 rv = acpi_evaluate_integer(asus->handle, "HWRS", NULL, &temp);
Corentin Chary1d4a3802009-08-28 12:56:46 +0000895 if (!ACPI_FAILURE(rv))
Corentin Chary8871e992012-08-20 23:01:51 +0200896 len += sprintf(page + len, "HWRS value : %#x\n",
Corentin Chary9a816852007-03-11 10:25:38 +0100897 (uint) temp);
Corentin Chary85091b72007-01-26 14:04:30 +0100898 /*
899 * Another value for userspace: the ASYM method returns 0x02 for
900 * battery low and 0x04 for battery critical, its readings tend to be
901 * more accurate than those provided by _BST.
902 * Note: since not all the laptops provide this method, errors are
903 * silently ignored.
904 */
Corentin Chary50a90c42009-11-30 21:55:12 +0100905 rv = acpi_evaluate_integer(asus->handle, "ASYM", NULL, &temp);
Corentin Chary9a816852007-03-11 10:25:38 +0100906 if (!ACPI_FAILURE(rv))
Corentin Chary1d4a3802009-08-28 12:56:46 +0000907 len += sprintf(page + len, "ASYM value : %#x\n",
Corentin Chary9a816852007-03-11 10:25:38 +0100908 (uint) temp);
Corentin Chary7c247642009-11-30 22:13:54 +0100909 if (asus->dsdt_info) {
910 snprintf(buf, 16, "%d", asus->dsdt_info->length);
Corentin Chary85091b72007-01-26 14:04:30 +0100911 len += sprintf(page + len, "DSDT length : %s\n", buf);
Corentin Chary7c247642009-11-30 22:13:54 +0100912 snprintf(buf, 16, "%d", asus->dsdt_info->checksum);
Corentin Chary85091b72007-01-26 14:04:30 +0100913 len += sprintf(page + len, "DSDT checksum : %s\n", buf);
Corentin Chary7c247642009-11-30 22:13:54 +0100914 snprintf(buf, 16, "%d", asus->dsdt_info->revision);
Corentin Chary85091b72007-01-26 14:04:30 +0100915 len += sprintf(page + len, "DSDT revision : %s\n", buf);
Corentin Chary7c247642009-11-30 22:13:54 +0100916 snprintf(buf, 7, "%s", asus->dsdt_info->oem_id);
Corentin Chary85091b72007-01-26 14:04:30 +0100917 len += sprintf(page + len, "OEM id : %s\n", buf);
Corentin Chary7c247642009-11-30 22:13:54 +0100918 snprintf(buf, 9, "%s", asus->dsdt_info->oem_table_id);
Corentin Chary85091b72007-01-26 14:04:30 +0100919 len += sprintf(page + len, "OEM table id : %s\n", buf);
Corentin Chary7c247642009-11-30 22:13:54 +0100920 snprintf(buf, 16, "%x", asus->dsdt_info->oem_revision);
Corentin Chary85091b72007-01-26 14:04:30 +0100921 len += sprintf(page + len, "OEM revision : 0x%s\n", buf);
Corentin Chary7c247642009-11-30 22:13:54 +0100922 snprintf(buf, 5, "%s", asus->dsdt_info->asl_compiler_id);
Corentin Chary85091b72007-01-26 14:04:30 +0100923 len += sprintf(page + len, "ASL comp vendor id : %s\n", buf);
Corentin Chary7c247642009-11-30 22:13:54 +0100924 snprintf(buf, 16, "%x", asus->dsdt_info->asl_compiler_revision);
Corentin Chary85091b72007-01-26 14:04:30 +0100925 len += sprintf(page + len, "ASL comp revision : 0x%s\n", buf);
926 }
927
928 return len;
929}
930
931static int parse_arg(const char *buf, unsigned long count, int *val)
932{
933 if (!count)
934 return 0;
935 if (count > 31)
936 return -EINVAL;
937 if (sscanf(buf, "%i", val) != 1)
938 return -EINVAL;
939 return count;
940}
941
Corentin Chary17e78f62010-01-13 22:21:33 +0100942static ssize_t sysfs_acpi_set(struct asus_laptop *asus,
943 const char *buf, size_t count,
Corentin Charyd99b5772010-01-22 21:20:57 +0100944 const char *method)
Corentin Chary4564de12007-01-26 14:04:40 +0100945{
946 int rv, value;
947 int out = 0;
948
949 rv = parse_arg(buf, count, &value);
950 if (rv > 0)
951 out = value ? 1 : 0;
952
Corentin Charyd99b5772010-01-22 21:20:57 +0100953 if (write_acpi_int(asus->handle, method, value))
Corentin Chary17e78f62010-01-13 22:21:33 +0100954 return -ENODEV;
Corentin Chary4564de12007-01-26 14:04:40 +0100955 return rv;
956}
957
958/*
Corentin Chary722ad972007-01-26 14:04:55 +0100959 * LEDD display
960 */
961static ssize_t show_ledd(struct device *dev,
962 struct device_attribute *attr, char *buf)
963{
Corentin Chary9129d142009-12-01 22:39:41 +0100964 struct asus_laptop *asus = dev_get_drvdata(dev);
965
Corentin Chary50a90c42009-11-30 21:55:12 +0100966 return sprintf(buf, "0x%08x\n", asus->ledd_status);
Corentin Chary722ad972007-01-26 14:04:55 +0100967}
968
969static ssize_t store_ledd(struct device *dev, struct device_attribute *attr,
970 const char *buf, size_t count)
971{
Corentin Chary9129d142009-12-01 22:39:41 +0100972 struct asus_laptop *asus = dev_get_drvdata(dev);
Corentin Chary722ad972007-01-26 14:04:55 +0100973 int rv, value;
974
975 rv = parse_arg(buf, count, &value);
976 if (rv > 0) {
Axel Lin6a984a02010-07-20 15:19:48 -0700977 if (write_acpi_int(asus->handle, METHOD_LEDD, value)) {
Joe Perches5ad77dc2011-03-29 15:21:35 -0700978 pr_warn("LED display write failed\n");
Axel Lin6a984a02010-07-20 15:19:48 -0700979 return -ENODEV;
980 }
981 asus->ledd_status = (u32) value;
Corentin Chary722ad972007-01-26 14:04:55 +0100982 }
983 return rv;
984}
985
986/*
Corentin Charyaa9df932010-01-13 21:49:10 +0100987 * Wireless
988 */
989static int asus_wireless_status(struct asus_laptop *asus, int mask)
990{
991 unsigned long long status;
992 acpi_status rv = AE_OK;
993
994 if (!asus->have_rsts)
995 return (asus->wireless_status & mask) ? 1 : 0;
996
Corentin Charyd99b5772010-01-22 21:20:57 +0100997 rv = acpi_evaluate_integer(asus->handle, METHOD_WL_STATUS,
998 NULL, &status);
Corentin Charyaa9df932010-01-13 21:49:10 +0100999 if (ACPI_FAILURE(rv)) {
Joe Perches5ad77dc2011-03-29 15:21:35 -07001000 pr_warn("Error reading Wireless status\n");
Corentin Charyaa9df932010-01-13 21:49:10 +01001001 return -EINVAL;
1002 }
1003 return !!(status & mask);
1004}
1005
1006/*
Corentin Chary4564de12007-01-26 14:04:40 +01001007 * WLAN
1008 */
Corentin Charye5593bf2010-01-17 17:20:11 +01001009static int asus_wlan_set(struct asus_laptop *asus, int status)
1010{
1011 if (write_acpi_int(asus->handle, METHOD_WLAN, !!status)) {
Joe Perches5ad77dc2011-03-29 15:21:35 -07001012 pr_warn("Error setting wlan status to %d\n", status);
Corentin Charye5593bf2010-01-17 17:20:11 +01001013 return -EIO;
1014 }
1015 return 0;
1016}
1017
Corentin Chary4564de12007-01-26 14:04:40 +01001018static ssize_t show_wlan(struct device *dev,
1019 struct device_attribute *attr, char *buf)
1020{
Corentin Chary9129d142009-12-01 22:39:41 +01001021 struct asus_laptop *asus = dev_get_drvdata(dev);
1022
Corentin Chary17e78f62010-01-13 22:21:33 +01001023 return sprintf(buf, "%d\n", asus_wireless_status(asus, WL_RSTS));
Corentin Chary4564de12007-01-26 14:04:40 +01001024}
1025
1026static ssize_t store_wlan(struct device *dev, struct device_attribute *attr,
1027 const char *buf, size_t count)
1028{
Corentin Chary9129d142009-12-01 22:39:41 +01001029 struct asus_laptop *asus = dev_get_drvdata(dev);
1030
Corentin Charyd99b5772010-01-22 21:20:57 +01001031 return sysfs_acpi_set(asus, buf, count, METHOD_WLAN);
Corentin Chary4564de12007-01-26 14:04:40 +01001032}
1033
Corentin Chary774b0672011-12-15 08:27:34 +01001034/*e
Corentin Chary4564de12007-01-26 14:04:40 +01001035 * Bluetooth
1036 */
Corentin Charye5593bf2010-01-17 17:20:11 +01001037static int asus_bluetooth_set(struct asus_laptop *asus, int status)
1038{
1039 if (write_acpi_int(asus->handle, METHOD_BLUETOOTH, !!status)) {
Joe Perches5ad77dc2011-03-29 15:21:35 -07001040 pr_warn("Error setting bluetooth status to %d\n", status);
Corentin Charye5593bf2010-01-17 17:20:11 +01001041 return -EIO;
1042 }
1043 return 0;
1044}
1045
Corentin Chary4564de12007-01-26 14:04:40 +01001046static ssize_t show_bluetooth(struct device *dev,
1047 struct device_attribute *attr, char *buf)
1048{
Corentin Chary9129d142009-12-01 22:39:41 +01001049 struct asus_laptop *asus = dev_get_drvdata(dev);
1050
Corentin Chary17e78f62010-01-13 22:21:33 +01001051 return sprintf(buf, "%d\n", asus_wireless_status(asus, BT_RSTS));
Corentin Chary4564de12007-01-26 14:04:40 +01001052}
1053
Len Brown8def05f2007-01-30 01:46:43 -05001054static ssize_t store_bluetooth(struct device *dev,
1055 struct device_attribute *attr, const char *buf,
1056 size_t count)
Corentin Chary4564de12007-01-26 14:04:40 +01001057{
Corentin Chary9129d142009-12-01 22:39:41 +01001058 struct asus_laptop *asus = dev_get_drvdata(dev);
1059
Corentin Charyd99b5772010-01-22 21:20:57 +01001060 return sysfs_acpi_set(asus, buf, count, METHOD_BLUETOOTH);
Corentin Chary4564de12007-01-26 14:04:40 +01001061}
1062
Corentin Chary78127b42007-01-26 14:04:49 +01001063/*
Corentin Charyba1ff5b2010-11-14 17:40:12 +01001064 * Wimax
1065 */
1066static int asus_wimax_set(struct asus_laptop *asus, int status)
1067{
1068 if (write_acpi_int(asus->handle, METHOD_WIMAX, !!status)) {
Joe Perches5ad77dc2011-03-29 15:21:35 -07001069 pr_warn("Error setting wimax status to %d\n", status);
Corentin Charyba1ff5b2010-11-14 17:40:12 +01001070 return -EIO;
1071 }
1072 return 0;
1073}
1074
1075static ssize_t show_wimax(struct device *dev,
1076 struct device_attribute *attr, char *buf)
1077{
1078 struct asus_laptop *asus = dev_get_drvdata(dev);
1079
1080 return sprintf(buf, "%d\n", asus_wireless_status(asus, WM_RSTS));
1081}
1082
1083static ssize_t store_wimax(struct device *dev,
1084 struct device_attribute *attr, const char *buf,
1085 size_t count)
1086{
1087 struct asus_laptop *asus = dev_get_drvdata(dev);
1088
1089 return sysfs_acpi_set(asus, buf, count, METHOD_WIMAX);
1090}
1091
1092/*
1093 * Wwan
1094 */
1095static int asus_wwan_set(struct asus_laptop *asus, int status)
1096{
1097 if (write_acpi_int(asus->handle, METHOD_WWAN, !!status)) {
Joe Perches5ad77dc2011-03-29 15:21:35 -07001098 pr_warn("Error setting wwan status to %d\n", status);
Corentin Charyba1ff5b2010-11-14 17:40:12 +01001099 return -EIO;
1100 }
1101 return 0;
1102}
1103
1104static ssize_t show_wwan(struct device *dev,
1105 struct device_attribute *attr, char *buf)
1106{
1107 struct asus_laptop *asus = dev_get_drvdata(dev);
1108
1109 return sprintf(buf, "%d\n", asus_wireless_status(asus, WW_RSTS));
1110}
1111
1112static ssize_t store_wwan(struct device *dev,
1113 struct device_attribute *attr, const char *buf,
1114 size_t count)
1115{
1116 struct asus_laptop *asus = dev_get_drvdata(dev);
1117
1118 return sysfs_acpi_set(asus, buf, count, METHOD_WWAN);
1119}
1120
1121/*
Corentin Chary78127b42007-01-26 14:04:49 +01001122 * Display
1123 */
Corentin Chary4d441512010-01-13 22:26:24 +01001124static void asus_set_display(struct asus_laptop *asus, int value)
Corentin Chary78127b42007-01-26 14:04:49 +01001125{
1126 /* no sanity check needed for now */
Corentin Charyd99b5772010-01-22 21:20:57 +01001127 if (write_acpi_int(asus->handle, METHOD_SWITCH_DISPLAY, value))
Joe Perches5ad77dc2011-03-29 15:21:35 -07001128 pr_warn("Error setting display\n");
Corentin Chary78127b42007-01-26 14:04:49 +01001129 return;
1130}
1131
Corentin Chary78127b42007-01-26 14:04:49 +01001132/*
1133 * Experimental support for display switching. As of now: 1 should activate
1134 * the LCD output, 2 should do for CRT, 4 for TV-Out and 8 for DVI.
1135 * Any combination (bitwise) of these will suffice. I never actually tested 4
1136 * displays hooked up simultaneously, so be warned. See the acpi4asus README
1137 * for more info.
1138 */
1139static ssize_t store_disp(struct device *dev, struct device_attribute *attr,
1140 const char *buf, size_t count)
1141{
Corentin Chary9129d142009-12-01 22:39:41 +01001142 struct asus_laptop *asus = dev_get_drvdata(dev);
Corentin Chary78127b42007-01-26 14:04:49 +01001143 int rv, value;
1144
1145 rv = parse_arg(buf, count, &value);
1146 if (rv > 0)
Corentin Chary4d441512010-01-13 22:26:24 +01001147 asus_set_display(asus, value);
Corentin Chary78127b42007-01-26 14:04:49 +01001148 return rv;
1149}
1150
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
1171static ssize_t show_lssw(struct device *dev,
1172 struct device_attribute *attr, char *buf)
1173{
Corentin Chary9129d142009-12-01 22:39:41 +01001174 struct asus_laptop *asus = dev_get_drvdata(dev);
1175
Corentin Chary50a90c42009-11-30 21:55:12 +01001176 return sprintf(buf, "%d\n", asus->light_switch);
Corentin Chary8b857352007-01-26 14:04:58 +01001177}
1178
1179static ssize_t store_lssw(struct device *dev, struct device_attribute *attr,
1180 const char *buf, size_t count)
1181{
Corentin Chary9129d142009-12-01 22:39:41 +01001182 struct asus_laptop *asus = dev_get_drvdata(dev);
Corentin Chary8b857352007-01-26 14:04:58 +01001183 int rv, value;
1184
1185 rv = parse_arg(buf, count, &value);
1186 if (rv > 0)
Corentin Chary4d441512010-01-13 22:26:24 +01001187 asus_als_switch(asus, value ? 1 : 0);
Corentin Chary8b857352007-01-26 14:04:58 +01001188
1189 return rv;
1190}
1191
Corentin Chary4d441512010-01-13 22:26:24 +01001192static void asus_als_level(struct asus_laptop *asus, int value)
Corentin Chary8b857352007-01-26 14:04:58 +01001193{
Corentin Charyd99b5772010-01-22 21:20:57 +01001194 if (write_acpi_int(asus->handle, METHOD_ALS_LEVEL, value))
Joe Perches5ad77dc2011-03-29 15:21:35 -07001195 pr_warn("Error setting light sensor level\n");
Corentin Chary50a90c42009-11-30 21:55:12 +01001196 asus->light_level = value;
Corentin Chary8b857352007-01-26 14:04:58 +01001197}
1198
1199static ssize_t show_lslvl(struct device *dev,
1200 struct device_attribute *attr, char *buf)
1201{
Corentin Chary9129d142009-12-01 22:39:41 +01001202 struct asus_laptop *asus = dev_get_drvdata(dev);
1203
Corentin Chary50a90c42009-11-30 21:55:12 +01001204 return sprintf(buf, "%d\n", asus->light_level);
Corentin Chary8b857352007-01-26 14:04:58 +01001205}
1206
1207static ssize_t store_lslvl(struct device *dev, struct device_attribute *attr,
1208 const char *buf, size_t count)
1209{
Corentin Chary9129d142009-12-01 22:39:41 +01001210 struct asus_laptop *asus = dev_get_drvdata(dev);
Corentin Chary8b857352007-01-26 14:04:58 +01001211 int rv, value;
1212
1213 rv = parse_arg(buf, count, &value);
1214 if (rv > 0) {
1215 value = (0 < value) ? ((15 < value) ? 15 : value) : 0;
1216 /* 0 <= value <= 15 */
Corentin Chary4d441512010-01-13 22:26:24 +01001217 asus_als_level(asus, value);
Corentin Chary8b857352007-01-26 14:04:58 +01001218 }
1219
1220 return rv;
1221}
1222
Andy Ross33989ba2011-10-14 11:13:36 +02001223static int pega_int_read(struct asus_laptop *asus, int arg, int *result)
1224{
1225 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
1226 int err = write_acpi_int_ret(asus->handle, METHOD_PEGA_READ, arg,
1227 &buffer);
1228 if (!err) {
1229 union acpi_object *obj = buffer.pointer;
1230 if (obj && obj->type == ACPI_TYPE_INTEGER)
1231 *result = obj->integer.value;
1232 else
1233 err = -EIO;
1234 }
1235 return err;
1236}
1237
1238static ssize_t show_lsvalue(struct device *dev,
1239 struct device_attribute *attr, char *buf)
1240{
1241 struct asus_laptop *asus = dev_get_drvdata(dev);
1242 int err, hi, lo;
1243
1244 err = pega_int_read(asus, PEGA_READ_ALS_H, &hi);
1245 if (!err)
1246 err = pega_int_read(asus, PEGA_READ_ALS_L, &lo);
1247 if (!err)
1248 return sprintf(buf, "%d\n", 10 * hi + lo);
1249 return err;
1250}
1251
Corentin Charye539c2f2007-05-06 14:47:06 +02001252/*
1253 * GPS
1254 */
Corentin Chary6358bf22010-01-13 21:55:44 +01001255static int asus_gps_status(struct asus_laptop *asus)
1256{
1257 unsigned long long status;
1258 acpi_status rv = AE_OK;
1259
Corentin Charyd99b5772010-01-22 21:20:57 +01001260 rv = acpi_evaluate_integer(asus->handle, METHOD_GPS_STATUS,
1261 NULL, &status);
Corentin Chary6358bf22010-01-13 21:55:44 +01001262 if (ACPI_FAILURE(rv)) {
Joe Perches5ad77dc2011-03-29 15:21:35 -07001263 pr_warn("Error reading GPS status\n");
Corentin Chary6358bf22010-01-13 21:55:44 +01001264 return -ENODEV;
1265 }
1266 return !!status;
1267}
1268
1269static int asus_gps_switch(struct asus_laptop *asus, int status)
1270{
Corentin Charyd99b5772010-01-22 21:20:57 +01001271 const char *meth = status ? METHOD_GPS_ON : METHOD_GPS_OFF;
Corentin Chary6358bf22010-01-13 21:55:44 +01001272
Corentin Charyd99b5772010-01-22 21:20:57 +01001273 if (write_acpi_int(asus->handle, meth, 0x02))
Corentin Chary6358bf22010-01-13 21:55:44 +01001274 return -ENODEV;
1275 return 0;
1276}
1277
Corentin Charye539c2f2007-05-06 14:47:06 +02001278static ssize_t show_gps(struct device *dev,
1279 struct device_attribute *attr, char *buf)
1280{
Corentin Chary9129d142009-12-01 22:39:41 +01001281 struct asus_laptop *asus = dev_get_drvdata(dev);
1282
Corentin Chary6358bf22010-01-13 21:55:44 +01001283 return sprintf(buf, "%d\n", asus_gps_status(asus));
Corentin Charye539c2f2007-05-06 14:47:06 +02001284}
1285
1286static ssize_t store_gps(struct device *dev, struct device_attribute *attr,
1287 const char *buf, size_t count)
1288{
Corentin Chary060cbce2010-01-28 10:52:40 +01001289 struct asus_laptop *asus = dev_get_drvdata(dev);
Corentin Chary6358bf22010-01-13 21:55:44 +01001290 int rv, value;
1291 int ret;
Corentin Chary9129d142009-12-01 22:39:41 +01001292
Corentin Chary6358bf22010-01-13 21:55:44 +01001293 rv = parse_arg(buf, count, &value);
1294 if (rv <= 0)
1295 return -EINVAL;
1296 ret = asus_gps_switch(asus, !!value);
1297 if (ret)
1298 return ret;
Corentin Chary40969c72011-12-15 08:27:33 +01001299 rfkill_set_sw_state(asus->gps.rfkill, !value);
Corentin Chary6358bf22010-01-13 21:55:44 +01001300 return rv;
Corentin Charye539c2f2007-05-06 14:47:06 +02001301}
1302
Corentin Chary034ce902009-01-20 16:17:43 +01001303/*
Corentin Chary18e13112010-01-25 23:29:24 +01001304 * rfkill
1305 */
1306static int asus_gps_rfkill_set(void *data, bool blocked)
1307{
Corentin Chary23f45c32010-08-24 09:30:46 +02001308 struct asus_laptop *asus = data;
Corentin Chary18e13112010-01-25 23:29:24 +01001309
Corentin Chary23f45c32010-08-24 09:30:46 +02001310 return asus_gps_switch(asus, !blocked);
Corentin Chary18e13112010-01-25 23:29:24 +01001311}
1312
1313static const struct rfkill_ops asus_gps_rfkill_ops = {
1314 .set_block = asus_gps_rfkill_set,
1315};
1316
Corentin Chary774b0672011-12-15 08:27:34 +01001317static int asus_rfkill_set(void *data, bool blocked)
1318{
1319 struct asus_rfkill *rfk = data;
1320 struct asus_laptop *asus = rfk->asus;
1321
1322 if (rfk->control_id == WL_RSTS)
1323 return asus_wlan_set(asus, !blocked);
1324 else if (rfk->control_id == BT_RSTS)
1325 return asus_bluetooth_set(asus, !blocked);
Corentin Chary3c8671f2011-12-15 08:27:35 +01001326 else if (rfk->control_id == WM_RSTS)
1327 return asus_wimax_set(asus, !blocked);
1328 else if (rfk->control_id == WW_RSTS)
1329 return asus_wwan_set(asus, !blocked);
Corentin Chary774b0672011-12-15 08:27:34 +01001330
1331 return -EINVAL;
1332}
1333
1334static const struct rfkill_ops asus_rfkill_ops = {
1335 .set_block = asus_rfkill_set,
1336};
1337
Corentin Chary40969c72011-12-15 08:27:33 +01001338static void asus_rfkill_terminate(struct asus_rfkill *rfk)
1339{
1340 if (!rfk->rfkill)
1341 return ;
1342
1343 rfkill_unregister(rfk->rfkill);
1344 rfkill_destroy(rfk->rfkill);
1345 rfk->rfkill = NULL;
1346}
1347
Corentin Chary18e13112010-01-25 23:29:24 +01001348static void asus_rfkill_exit(struct asus_laptop *asus)
1349{
Corentin Chary40969c72011-12-15 08:27:33 +01001350 asus_rfkill_terminate(&asus->wwan);
1351 asus_rfkill_terminate(&asus->bluetooth);
1352 asus_rfkill_terminate(&asus->wlan);
1353 asus_rfkill_terminate(&asus->gps);
Corentin Chary18e13112010-01-25 23:29:24 +01001354}
1355
Corentin Chary774b0672011-12-15 08:27:34 +01001356static int asus_rfkill_setup(struct asus_laptop *asus, struct asus_rfkill *rfk,
1357 const char *name, int control_id, int type,
1358 const struct rfkill_ops *ops)
Corentin Chary18e13112010-01-25 23:29:24 +01001359{
1360 int result;
1361
Corentin Chary774b0672011-12-15 08:27:34 +01001362 rfk->control_id = control_id;
1363 rfk->asus = asus;
1364 rfk->rfkill = rfkill_alloc(name, &asus->platform_device->dev,
1365 type, ops, rfk);
1366 if (!rfk->rfkill)
Corentin Chary18e13112010-01-25 23:29:24 +01001367 return -EINVAL;
1368
Corentin Chary774b0672011-12-15 08:27:34 +01001369 result = rfkill_register(rfk->rfkill);
Corentin Chary18e13112010-01-25 23:29:24 +01001370 if (result) {
Corentin Chary774b0672011-12-15 08:27:34 +01001371 rfkill_destroy(rfk->rfkill);
1372 rfk->rfkill = NULL;
Corentin Chary18e13112010-01-25 23:29:24 +01001373 }
1374
1375 return result;
1376}
1377
Corentin Chary774b0672011-12-15 08:27:34 +01001378static int asus_rfkill_init(struct asus_laptop *asus)
1379{
1380 int result = 0;
1381
Corentin Chary3c8671f2011-12-15 08:27:35 +01001382 if (asus->is_pega_lucid)
1383 return -ENODEV;
1384
Corentin Chary774b0672011-12-15 08:27:34 +01001385 if (!acpi_check_handle(asus->handle, METHOD_GPS_ON, NULL) &&
1386 !acpi_check_handle(asus->handle, METHOD_GPS_OFF, NULL) &&
1387 !acpi_check_handle(asus->handle, METHOD_GPS_STATUS, NULL))
1388 result = asus_rfkill_setup(asus, &asus->gps, "asus-gps",
1389 -1, RFKILL_TYPE_GPS,
1390 &asus_gps_rfkill_ops);
1391 if (result)
1392 goto exit;
1393
1394
Corentin Chary26594dd2011-12-15 08:27:36 +01001395 if (!acpi_check_handle(asus->handle, METHOD_WLAN, NULL) &&
1396 asus->wled_type == TYPE_RFKILL)
Corentin Chary774b0672011-12-15 08:27:34 +01001397 result = asus_rfkill_setup(asus, &asus->wlan, "asus-wlan",
1398 WL_RSTS, RFKILL_TYPE_WLAN,
1399 &asus_rfkill_ops);
1400 if (result)
1401 goto exit;
1402
Corentin Chary26594dd2011-12-15 08:27:36 +01001403 if (!acpi_check_handle(asus->handle, METHOD_BLUETOOTH, NULL) &&
1404 asus->bled_type == TYPE_RFKILL)
Corentin Chary774b0672011-12-15 08:27:34 +01001405 result = asus_rfkill_setup(asus, &asus->bluetooth,
1406 "asus-bluetooth", BT_RSTS,
1407 RFKILL_TYPE_BLUETOOTH,
1408 &asus_rfkill_ops);
1409 if (result)
1410 goto exit;
1411
Corentin Chary3c8671f2011-12-15 08:27:35 +01001412 if (!acpi_check_handle(asus->handle, METHOD_WWAN, NULL))
1413 result = asus_rfkill_setup(asus, &asus->wwan, "asus-wwan",
1414 WW_RSTS, RFKILL_TYPE_WWAN,
1415 &asus_rfkill_ops);
1416 if (result)
1417 goto exit;
1418
1419 if (!acpi_check_handle(asus->handle, METHOD_WIMAX, NULL))
1420 result = asus_rfkill_setup(asus, &asus->wimax, "asus-wimax",
1421 WM_RSTS, RFKILL_TYPE_WIMAX,
1422 &asus_rfkill_ops);
1423 if (result)
1424 goto exit;
1425
Corentin Chary774b0672011-12-15 08:27:34 +01001426exit:
1427 if (result)
1428 asus_rfkill_exit(asus);
1429
1430 return result;
1431}
1432
Anisse Astier14908392011-10-14 11:13:42 +02001433static int pega_rfkill_set(void *data, bool blocked)
1434{
Corentin Chary40969c72011-12-15 08:27:33 +01001435 struct asus_rfkill *rfk = data;
Anisse Astier14908392011-10-14 11:13:42 +02001436
Corentin Chary40969c72011-12-15 08:27:33 +01001437 int ret = asus_pega_lucid_set(rfk->asus, rfk->control_id, !blocked);
Anisse Astier14908392011-10-14 11:13:42 +02001438 return ret;
1439}
1440
1441static const struct rfkill_ops pega_rfkill_ops = {
1442 .set_block = pega_rfkill_set,
1443};
1444
Corentin Chary40969c72011-12-15 08:27:33 +01001445static int pega_rfkill_setup(struct asus_laptop *asus, struct asus_rfkill *rfk,
1446 const char *name, int controlid, int rfkill_type)
Anisse Astier14908392011-10-14 11:13:42 +02001447{
Corentin Chary774b0672011-12-15 08:27:34 +01001448 return asus_rfkill_setup(asus, rfk, name, controlid, rfkill_type,
1449 &pega_rfkill_ops);
Anisse Astier14908392011-10-14 11:13:42 +02001450}
1451
1452static int pega_rfkill_init(struct asus_laptop *asus)
1453{
1454 int ret = 0;
1455
1456 if(!asus->is_pega_lucid)
1457 return -ENODEV;
1458
Corentin Chary40969c72011-12-15 08:27:33 +01001459 ret = pega_rfkill_setup(asus, &asus->wlan, "pega-wlan",
1460 PEGA_WLAN, RFKILL_TYPE_WLAN);
Anisse Astier14908392011-10-14 11:13:42 +02001461 if(ret)
Corentin Chary40969c72011-12-15 08:27:33 +01001462 goto exit;
Anisse Astier14908392011-10-14 11:13:42 +02001463
Corentin Chary40969c72011-12-15 08:27:33 +01001464 ret = pega_rfkill_setup(asus, &asus->bluetooth, "pega-bt",
1465 PEGA_BLUETOOTH, RFKILL_TYPE_BLUETOOTH);
1466 if(ret)
1467 goto exit;
1468
1469 ret = pega_rfkill_setup(asus, &asus->wwan, "pega-wwan",
1470 PEGA_WWAN, RFKILL_TYPE_WWAN);
1471
1472exit:
1473 if (ret)
1474 asus_rfkill_exit(asus);
Anisse Astier14908392011-10-14 11:13:42 +02001475
1476 return ret;
1477}
1478
Corentin Chary18e13112010-01-25 23:29:24 +01001479/*
Corentin Charybe4ee822009-12-06 16:27:09 +01001480 * Input device (i.e. hotkeys)
Corentin Chary034ce902009-01-20 16:17:43 +01001481 */
Corentin Charybe4ee822009-12-06 16:27:09 +01001482static void asus_input_notify(struct asus_laptop *asus, int event)
1483{
Corentin Charye0ac9132011-12-15 08:27:31 +01001484 if (!asus->inputdev)
1485 return ;
1486 if (!sparse_keymap_report_event(asus->inputdev, event, 1, true))
1487 pr_info("Unknown key %x pressed\n", event);
Corentin Charybe4ee822009-12-06 16:27:09 +01001488}
1489
1490static int asus_input_init(struct asus_laptop *asus)
1491{
Corentin Chary66a71dd2010-01-25 22:50:11 +01001492 struct input_dev *input;
1493 int error;
Corentin Charybe4ee822009-12-06 16:27:09 +01001494
Corentin Chary66a71dd2010-01-25 22:50:11 +01001495 input = input_allocate_device();
Joe Perchesb222cca2013-10-23 12:14:52 -07001496 if (!input)
Axel Lin45036ae2010-07-05 15:29:00 +08001497 return -ENOMEM;
Joe Perchesb222cca2013-10-23 12:14:52 -07001498
Corentin Chary66a71dd2010-01-25 22:50:11 +01001499 input->name = "Asus Laptop extra buttons";
1500 input->phys = ASUS_LAPTOP_FILE "/input0";
1501 input->id.bustype = BUS_HOST;
1502 input->dev.parent = &asus->platform_device->dev;
Corentin Charybe4ee822009-12-06 16:27:09 +01001503
Corentin Chary66a71dd2010-01-25 22:50:11 +01001504 error = sparse_keymap_setup(input, asus_keymap, NULL);
1505 if (error) {
1506 pr_err("Unable to setup input device keymap\n");
Axel Lin45036ae2010-07-05 15:29:00 +08001507 goto err_free_dev;
Corentin Charybe4ee822009-12-06 16:27:09 +01001508 }
Corentin Chary66a71dd2010-01-25 22:50:11 +01001509 error = input_register_device(input);
1510 if (error) {
Corentin Chary40969c72011-12-15 08:27:33 +01001511 pr_warn("Unable to register input device\n");
Axel Lin45036ae2010-07-05 15:29:00 +08001512 goto err_free_keymap;
Corentin Charybe4ee822009-12-06 16:27:09 +01001513 }
Corentin Chary66a71dd2010-01-25 22:50:11 +01001514
1515 asus->inputdev = input;
1516 return 0;
1517
Axel Lin45036ae2010-07-05 15:29:00 +08001518err_free_keymap:
Corentin Chary66a71dd2010-01-25 22:50:11 +01001519 sparse_keymap_free(input);
Axel Lin45036ae2010-07-05 15:29:00 +08001520err_free_dev:
Corentin Chary66a71dd2010-01-25 22:50:11 +01001521 input_free_device(input);
1522 return error;
Corentin Charybe4ee822009-12-06 16:27:09 +01001523}
1524
1525static void asus_input_exit(struct asus_laptop *asus)
1526{
Corentin Chary66a71dd2010-01-25 22:50:11 +01001527 if (asus->inputdev) {
1528 sparse_keymap_free(asus->inputdev);
Corentin Charybe4ee822009-12-06 16:27:09 +01001529 input_unregister_device(asus->inputdev);
Corentin Chary66a71dd2010-01-25 22:50:11 +01001530 }
Corentin Chary71e687d2010-08-24 09:30:44 +02001531 asus->inputdev = NULL;
Corentin Charybe4ee822009-12-06 16:27:09 +01001532}
1533
1534/*
1535 * ACPI driver
1536 */
Corentin Chary600ad522009-11-30 21:42:42 +01001537static void asus_acpi_notify(struct acpi_device *device, u32 event)
Corentin Chary85091b72007-01-26 14:04:30 +01001538{
Corentin Chary9129d142009-12-01 22:39:41 +01001539 struct asus_laptop *asus = acpi_driver_data(device);
Corentin Chary6050c8d2009-02-15 19:30:19 +01001540 u16 count;
Corentin Chary034ce902009-01-20 16:17:43 +01001541
Corentin Chary619d8b12009-11-28 10:35:37 +01001542 /* TODO Find a better way to handle events count. */
Corentin Chary50a90c42009-11-30 21:55:12 +01001543 count = asus->event_count[event % 128]++;
Corentin Chary50a90c42009-11-30 21:55:12 +01001544 acpi_bus_generate_netlink_event(asus->device->pnp.device_class,
1545 dev_name(&asus->device->dev), event,
Corentin Chary6050c8d2009-02-15 19:30:19 +01001546 count);
Corentin Chary85091b72007-01-26 14:04:30 +01001547
Corentin Chary2740e1b2012-11-29 09:12:39 +01001548 if (event >= ATKD_BRNUP_MIN && event <= ATKD_BRNUP_MAX)
1549 event = ATKD_BRNUP;
1550 else if (event >= ATKD_BRNDOWN_MIN &&
1551 event <= ATKD_BRNDOWN_MAX)
1552 event = ATKD_BRNDOWN;
Corentin Charya539df52010-01-25 22:53:21 +01001553
Corentin Chary2740e1b2012-11-29 09:12:39 +01001554 /* Brightness events are special */
1555 if (event == ATKD_BRNDOWN || event == ATKD_BRNUP) {
Corentin Charya539df52010-01-25 22:53:21 +01001556 if (asus->backlight_device != NULL) {
1557 /* Update the backlight device. */
1558 asus_backlight_notify(asus);
Corentin Chary2740e1b2012-11-29 09:12:39 +01001559 return ;
Corentin Charya539df52010-01-25 22:53:21 +01001560 }
Corentin Charya539df52010-01-25 22:53:21 +01001561 }
Anisse Astierb93f8282011-10-14 11:13:41 +02001562
1563 /* Accelerometer "coarse orientation change" event */
1564 if (asus->pega_accel_poll && event == 0xEA) {
1565 kobject_uevent(&asus->pega_accel_poll->input->dev.kobj,
1566 KOBJ_CHANGE);
1567 return ;
1568 }
1569
Corentin Charybe4ee822009-12-06 16:27:09 +01001570 asus_input_notify(asus, event);
Corentin Chary85091b72007-01-26 14:04:30 +01001571}
1572
Corentin Chary2a1fd642010-01-26 21:02:23 +01001573static DEVICE_ATTR(infos, S_IRUGO, show_infos, NULL);
1574static DEVICE_ATTR(wlan, S_IRUGO | S_IWUSR, show_wlan, store_wlan);
Dmitry Torokhovac9b1e52010-08-26 00:12:19 -07001575static DEVICE_ATTR(bluetooth, S_IRUGO | S_IWUSR,
1576 show_bluetooth, store_bluetooth);
Corentin Charyba1ff5b2010-11-14 17:40:12 +01001577static DEVICE_ATTR(wimax, S_IRUGO | S_IWUSR, show_wimax, store_wimax);
1578static DEVICE_ATTR(wwan, S_IRUGO | S_IWUSR, show_wwan, store_wwan);
Corentin Chary3b81cf92011-02-06 13:27:31 +01001579static DEVICE_ATTR(display, S_IWUSR, NULL, store_disp);
Corentin Chary2a1fd642010-01-26 21:02:23 +01001580static DEVICE_ATTR(ledd, S_IRUGO | S_IWUSR, show_ledd, store_ledd);
Andy Ross33989ba2011-10-14 11:13:36 +02001581static DEVICE_ATTR(ls_value, S_IRUGO, show_lsvalue, NULL);
Corentin Chary2a1fd642010-01-26 21:02:23 +01001582static DEVICE_ATTR(ls_level, S_IRUGO | S_IWUSR, show_lslvl, store_lslvl);
1583static DEVICE_ATTR(ls_switch, S_IRUGO | S_IWUSR, show_lssw, store_lssw);
1584static DEVICE_ATTR(gps, S_IRUGO | S_IWUSR, show_gps, store_gps);
1585
Dmitry Torokhovac9b1e52010-08-26 00:12:19 -07001586static struct attribute *asus_attributes[] = {
1587 &dev_attr_infos.attr,
1588 &dev_attr_wlan.attr,
1589 &dev_attr_bluetooth.attr,
Corentin Charyba1ff5b2010-11-14 17:40:12 +01001590 &dev_attr_wimax.attr,
1591 &dev_attr_wwan.attr,
Dmitry Torokhovac9b1e52010-08-26 00:12:19 -07001592 &dev_attr_display.attr,
1593 &dev_attr_ledd.attr,
Andy Ross33989ba2011-10-14 11:13:36 +02001594 &dev_attr_ls_value.attr,
Dmitry Torokhovac9b1e52010-08-26 00:12:19 -07001595 &dev_attr_ls_level.attr,
1596 &dev_attr_ls_switch.attr,
1597 &dev_attr_gps.attr,
1598 NULL
1599};
Corentin Chary2a1fd642010-01-26 21:02:23 +01001600
Al Viro587a1f12011-07-23 23:11:19 -04001601static umode_t asus_sysfs_is_visible(struct kobject *kobj,
Dmitry Torokhovac9b1e52010-08-26 00:12:19 -07001602 struct attribute *attr,
1603 int idx)
1604{
1605 struct device *dev = container_of(kobj, struct device, kobj);
1606 struct platform_device *pdev = to_platform_device(dev);
1607 struct asus_laptop *asus = platform_get_drvdata(pdev);
1608 acpi_handle handle = asus->handle;
1609 bool supported;
1610
Andy Ross33989ba2011-10-14 11:13:36 +02001611 if (asus->is_pega_lucid) {
1612 /* no ls_level interface on the Lucid */
1613 if (attr == &dev_attr_ls_switch.attr)
1614 supported = true;
1615 else if (attr == &dev_attr_ls_level.attr)
1616 supported = false;
1617 else
1618 goto normal;
1619
1620 return supported;
1621 }
1622
1623normal:
Dmitry Torokhovac9b1e52010-08-26 00:12:19 -07001624 if (attr == &dev_attr_wlan.attr) {
1625 supported = !acpi_check_handle(handle, METHOD_WLAN, NULL);
1626
1627 } else if (attr == &dev_attr_bluetooth.attr) {
1628 supported = !acpi_check_handle(handle, METHOD_BLUETOOTH, NULL);
1629
1630 } else if (attr == &dev_attr_display.attr) {
1631 supported = !acpi_check_handle(handle, METHOD_SWITCH_DISPLAY, NULL);
1632
Corentin Charyba1ff5b2010-11-14 17:40:12 +01001633 } else if (attr == &dev_attr_wimax.attr) {
1634 supported =
1635 !acpi_check_handle(asus->handle, METHOD_WIMAX, NULL);
1636
1637 } else if (attr == &dev_attr_wwan.attr) {
1638 supported = !acpi_check_handle(asus->handle, METHOD_WWAN, NULL);
1639
Dmitry Torokhovac9b1e52010-08-26 00:12:19 -07001640 } else if (attr == &dev_attr_ledd.attr) {
1641 supported = !acpi_check_handle(handle, METHOD_LEDD, NULL);
1642
1643 } else if (attr == &dev_attr_ls_switch.attr ||
1644 attr == &dev_attr_ls_level.attr) {
1645 supported = !acpi_check_handle(handle, METHOD_ALS_CONTROL, NULL) &&
Andy Ross33989ba2011-10-14 11:13:36 +02001646 !acpi_check_handle(handle, METHOD_ALS_LEVEL, NULL);
1647 } else if (attr == &dev_attr_ls_value.attr) {
1648 supported = asus->is_pega_lucid;
Dmitry Torokhovac9b1e52010-08-26 00:12:19 -07001649 } else if (attr == &dev_attr_gps.attr) {
1650 supported = !acpi_check_handle(handle, METHOD_GPS_ON, NULL) &&
1651 !acpi_check_handle(handle, METHOD_GPS_OFF, NULL) &&
1652 !acpi_check_handle(handle, METHOD_GPS_STATUS, NULL);
1653 } else {
1654 supported = true;
1655 }
1656
1657 return supported ? attr->mode : 0;
Corentin Chary2a1fd642010-01-26 21:02:23 +01001658}
1659
Corentin Chary2a1fd642010-01-26 21:02:23 +01001660
Dmitry Torokhovac9b1e52010-08-26 00:12:19 -07001661static const struct attribute_group asus_attr_group = {
1662 .is_visible = asus_sysfs_is_visible,
1663 .attrs = asus_attributes,
1664};
Corentin Chary85091b72007-01-26 14:04:30 +01001665
Corentin Chary9129d142009-12-01 22:39:41 +01001666static int asus_platform_init(struct asus_laptop *asus)
Corentin Chary600ad522009-11-30 21:42:42 +01001667{
Corentin Chary71e687d2010-08-24 09:30:44 +02001668 int result;
Corentin Chary600ad522009-11-30 21:42:42 +01001669
Corentin Chary50a90c42009-11-30 21:55:12 +01001670 asus->platform_device = platform_device_alloc(ASUS_LAPTOP_FILE, -1);
1671 if (!asus->platform_device)
Corentin Chary600ad522009-11-30 21:42:42 +01001672 return -ENOMEM;
Corentin Chary9129d142009-12-01 22:39:41 +01001673 platform_set_drvdata(asus->platform_device, asus);
Corentin Chary600ad522009-11-30 21:42:42 +01001674
Corentin Chary71e687d2010-08-24 09:30:44 +02001675 result = platform_device_add(asus->platform_device);
1676 if (result)
Corentin Chary600ad522009-11-30 21:42:42 +01001677 goto fail_platform_device;
1678
Dmitry Torokhovac9b1e52010-08-26 00:12:19 -07001679 result = sysfs_create_group(&asus->platform_device->dev.kobj,
1680 &asus_attr_group);
Corentin Chary71e687d2010-08-24 09:30:44 +02001681 if (result)
Corentin Chary600ad522009-11-30 21:42:42 +01001682 goto fail_sysfs;
Dmitry Torokhovac9b1e52010-08-26 00:12:19 -07001683
Corentin Chary600ad522009-11-30 21:42:42 +01001684 return 0;
1685
1686fail_sysfs:
Corentin Chary50a90c42009-11-30 21:55:12 +01001687 platform_device_del(asus->platform_device);
Corentin Chary600ad522009-11-30 21:42:42 +01001688fail_platform_device:
Corentin Chary50a90c42009-11-30 21:55:12 +01001689 platform_device_put(asus->platform_device);
Corentin Chary71e687d2010-08-24 09:30:44 +02001690 return result;
Corentin Chary600ad522009-11-30 21:42:42 +01001691}
1692
Corentin Chary9129d142009-12-01 22:39:41 +01001693static void asus_platform_exit(struct asus_laptop *asus)
Corentin Chary600ad522009-11-30 21:42:42 +01001694{
Dmitry Torokhovac9b1e52010-08-26 00:12:19 -07001695 sysfs_remove_group(&asus->platform_device->dev.kobj, &asus_attr_group);
Corentin Chary50a90c42009-11-30 21:55:12 +01001696 platform_device_unregister(asus->platform_device);
Corentin Chary600ad522009-11-30 21:42:42 +01001697}
1698
1699static struct platform_driver platform_driver = {
Len Brown8def05f2007-01-30 01:46:43 -05001700 .driver = {
Corentin Chary9129d142009-12-01 22:39:41 +01001701 .name = ASUS_LAPTOP_FILE,
Andy Rossb23910c2011-10-14 11:13:38 +02001702 },
Corentin Chary85091b72007-01-26 14:04:30 +01001703};
1704
Corentin Chary85091b72007-01-26 14:04:30 +01001705/*
Corentin Chary50a90c42009-11-30 21:55:12 +01001706 * This function is used to initialize the context with right values. In this
1707 * method, we can make all the detection we want, and modify the asus_laptop
1708 * struct
Corentin Chary85091b72007-01-26 14:04:30 +01001709 */
Corentin Chary7c247642009-11-30 22:13:54 +01001710static int asus_laptop_get_info(struct asus_laptop *asus)
Corentin Chary85091b72007-01-26 14:04:30 +01001711{
1712 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
Corentin Chary85091b72007-01-26 14:04:30 +01001713 union acpi_object *model = NULL;
Ben Hutchingscb7da022012-11-29 09:12:37 +01001714 unsigned long long bsts_result;
Corentin Chary85091b72007-01-26 14:04:30 +01001715 char *string = NULL;
1716 acpi_status status;
1717
1718 /*
1719 * Get DSDT headers early enough to allow for differentiating between
1720 * models, but late enough to allow acpi_bus_register_driver() to fail
1721 * before doing anything ACPI-specific. Should we encounter a machine,
1722 * which needs special handling (i.e. its hotkey device has a different
Corentin Chary7c247642009-11-30 22:13:54 +01001723 * HID), this bit will be moved.
Corentin Chary85091b72007-01-26 14:04:30 +01001724 */
Corentin Chary7c247642009-11-30 22:13:54 +01001725 status = acpi_get_table(ACPI_SIG_DSDT, 1, &asus->dsdt_info);
Corentin Chary85091b72007-01-26 14:04:30 +01001726 if (ACPI_FAILURE(status))
Joe Perches5ad77dc2011-03-29 15:21:35 -07001727 pr_warn("Couldn't get the DSDT table header\n");
Corentin Chary85091b72007-01-26 14:04:30 +01001728
1729 /* We have to write 0 on init this far for all ASUS models */
Corentin Chary50a90c42009-11-30 21:55:12 +01001730 if (write_acpi_int_ret(asus->handle, "INIT", 0, &buffer)) {
Corentin Chary2fcc23d2009-06-19 14:52:03 +02001731 pr_err("Hotkey initialization failed\n");
Corentin Chary85091b72007-01-26 14:04:30 +01001732 return -ENODEV;
1733 }
1734
1735 /* This needs to be called for some laptops to init properly */
Corentin Chary9a816852007-03-11 10:25:38 +01001736 status =
Corentin Chary50a90c42009-11-30 21:55:12 +01001737 acpi_evaluate_integer(asus->handle, "BSTS", NULL, &bsts_result);
Corentin Chary9a816852007-03-11 10:25:38 +01001738 if (ACPI_FAILURE(status))
Joe Perches5ad77dc2011-03-29 15:21:35 -07001739 pr_warn("Error calling BSTS\n");
Corentin Chary85091b72007-01-26 14:04:30 +01001740 else if (bsts_result)
Corentin Chary2fcc23d2009-06-19 14:52:03 +02001741 pr_notice("BSTS called, 0x%02x returned\n",
Corentin Chary9a816852007-03-11 10:25:38 +01001742 (uint) bsts_result);
Corentin Chary85091b72007-01-26 14:04:30 +01001743
Corentin Chary185e5af2007-03-11 10:27:33 +01001744 /* This too ... */
Corentin Charye5593bf2010-01-17 17:20:11 +01001745 if (write_acpi_int(asus->handle, "CWAP", wapf))
1746 pr_err("Error calling CWAP(%d)\n", wapf);
Corentin Chary85091b72007-01-26 14:04:30 +01001747 /*
1748 * Try to match the object returned by INIT to the specific model.
1749 * Handle every possible object (or the lack of thereof) the DSDT
1750 * writers might throw at us. When in trouble, we pass NULL to
1751 * asus_model_match() and try something completely different.
1752 */
1753 if (buffer.pointer) {
1754 model = buffer.pointer;
1755 switch (model->type) {
1756 case ACPI_TYPE_STRING:
1757 string = model->string.pointer;
1758 break;
1759 case ACPI_TYPE_BUFFER:
1760 string = model->buffer.pointer;
1761 break;
1762 default:
1763 string = "";
1764 break;
1765 }
1766 }
Corentin Chary50a90c42009-11-30 21:55:12 +01001767 asus->name = kstrdup(string, GFP_KERNEL);
Axel Lind8eca112010-06-29 11:09:47 +08001768 if (!asus->name) {
1769 kfree(buffer.pointer);
Corentin Chary85091b72007-01-26 14:04:30 +01001770 return -ENOMEM;
Axel Lind8eca112010-06-29 11:09:47 +08001771 }
Corentin Chary85091b72007-01-26 14:04:30 +01001772
Matthew Garrett9f897482012-12-28 10:54:42 -05001773 if (string)
Corentin Chary2fcc23d2009-06-19 14:52:03 +02001774 pr_notice(" %s model detected\n", string);
Corentin Chary85091b72007-01-26 14:04:30 +01001775
Corentin Charyd99b5772010-01-22 21:20:57 +01001776 if (!acpi_check_handle(asus->handle, METHOD_WL_STATUS, NULL))
Corentin Charyaa9df932010-01-13 21:49:10 +01001777 asus->have_rsts = true;
Corentin Chary4564de12007-01-26 14:04:40 +01001778
Corentin Chary85091b72007-01-26 14:04:30 +01001779 kfree(model);
1780
1781 return AE_OK;
1782}
1783
Greg Kroah-Hartmanb859f152012-12-21 13:18:33 -08001784static int asus_acpi_init(struct asus_laptop *asus)
Corentin Chary600ad522009-11-30 21:42:42 +01001785{
1786 int result = 0;
1787
Corentin Chary50a90c42009-11-30 21:55:12 +01001788 result = acpi_bus_get_status(asus->device);
Corentin Chary600ad522009-11-30 21:42:42 +01001789 if (result)
1790 return result;
Corentin Chary50a90c42009-11-30 21:55:12 +01001791 if (!asus->device->status.present) {
Corentin Chary600ad522009-11-30 21:42:42 +01001792 pr_err("Hotkey device not present, aborting\n");
1793 return -ENODEV;
1794 }
1795
Corentin Chary7c247642009-11-30 22:13:54 +01001796 result = asus_laptop_get_info(asus);
Corentin Chary600ad522009-11-30 21:42:42 +01001797 if (result)
1798 return result;
1799
Corentin Chary774b0672011-12-15 08:27:34 +01001800 if (!strcmp(bled_type, "led"))
1801 asus->bled_type = TYPE_LED;
1802 else if (!strcmp(bled_type, "rfkill"))
1803 asus->bled_type = TYPE_RFKILL;
1804
1805 if (!strcmp(wled_type, "led"))
1806 asus->wled_type = TYPE_LED;
1807 else if (!strcmp(wled_type, "rfkill"))
1808 asus->wled_type = TYPE_RFKILL;
1809
Corentin Charybe4ee822009-12-06 16:27:09 +01001810 if (bluetooth_status >= 0)
Corentin Charye5593bf2010-01-17 17:20:11 +01001811 asus_bluetooth_set(asus, !!bluetooth_status);
1812
Corentin Charyd0930a22010-01-17 17:21:13 +01001813 if (wlan_status >= 0)
1814 asus_wlan_set(asus, !!wlan_status);
Corentin Chary600ad522009-11-30 21:42:42 +01001815
Corentin Charyba1ff5b2010-11-14 17:40:12 +01001816 if (wimax_status >= 0)
1817 asus_wimax_set(asus, !!wimax_status);
1818
1819 if (wwan_status >= 0)
1820 asus_wwan_set(asus, !!wwan_status);
1821
Corentin Chary600ad522009-11-30 21:42:42 +01001822 /* Keyboard Backlight is on by default */
Corentin Charyd99b5772010-01-22 21:20:57 +01001823 if (!acpi_check_handle(asus->handle, METHOD_KBD_LIGHT_SET, NULL))
Corentin Chary4d441512010-01-13 22:26:24 +01001824 asus_kled_set(asus, 1);
Corentin Chary600ad522009-11-30 21:42:42 +01001825
1826 /* LED display is off by default */
Corentin Chary50a90c42009-11-30 21:55:12 +01001827 asus->ledd_status = 0xFFF;
Corentin Chary600ad522009-11-30 21:42:42 +01001828
1829 /* Set initial values of light sensor and level */
Andy Rossabec04d2011-10-14 11:13:37 +02001830 asus->light_switch = !!als_status;
Corentin Charybe4ee822009-12-06 16:27:09 +01001831 asus->light_level = 5; /* level 5 for sensor sensitivity */
Corentin Chary600ad522009-11-30 21:42:42 +01001832
Andy Ross33989ba2011-10-14 11:13:36 +02001833 if (asus->is_pega_lucid) {
1834 asus_als_switch(asus, asus->light_switch);
1835 } else if (!acpi_check_handle(asus->handle, METHOD_ALS_CONTROL, NULL) &&
1836 !acpi_check_handle(asus->handle, METHOD_ALS_LEVEL, NULL)) {
Corentin Chary4d441512010-01-13 22:26:24 +01001837 asus_als_switch(asus, asus->light_switch);
Corentin Chary4d441512010-01-13 22:26:24 +01001838 asus_als_level(asus, asus->light_level);
Corentin Charyd99b5772010-01-22 21:20:57 +01001839 }
Corentin Chary600ad522009-11-30 21:42:42 +01001840
Corentin Chary600ad522009-11-30 21:42:42 +01001841 return result;
1842}
1843
Greg Kroah-Hartmanb859f152012-12-21 13:18:33 -08001844static void asus_dmi_check(void)
Corentin Charyaf96f872011-02-06 13:27:30 +01001845{
1846 const char *model;
1847
1848 model = dmi_get_system_info(DMI_PRODUCT_NAME);
1849 if (!model)
1850 return;
1851
1852 /* On L1400B WLED control the sound card, don't mess with it ... */
1853 if (strncmp(model, "L1400B", 6) == 0) {
1854 wlan_status = -1;
1855 }
1856}
1857
Corentin Chary71e687d2010-08-24 09:30:44 +02001858static bool asus_device_present;
1859
Greg Kroah-Hartmanb859f152012-12-21 13:18:33 -08001860static int asus_acpi_add(struct acpi_device *device)
Corentin Chary600ad522009-11-30 21:42:42 +01001861{
Corentin Chary9129d142009-12-01 22:39:41 +01001862 struct asus_laptop *asus;
Corentin Chary600ad522009-11-30 21:42:42 +01001863 int result;
1864
1865 pr_notice("Asus Laptop Support version %s\n",
1866 ASUS_LAPTOP_VERSION);
Corentin Chary50a90c42009-11-30 21:55:12 +01001867 asus = kzalloc(sizeof(struct asus_laptop), GFP_KERNEL);
1868 if (!asus)
Corentin Chary600ad522009-11-30 21:42:42 +01001869 return -ENOMEM;
Corentin Chary50a90c42009-11-30 21:55:12 +01001870 asus->handle = device->handle;
1871 strcpy(acpi_device_name(device), ASUS_LAPTOP_DEVICE_NAME);
1872 strcpy(acpi_device_class(device), ASUS_LAPTOP_CLASS);
1873 device->driver_data = asus;
1874 asus->device = device;
Corentin Chary600ad522009-11-30 21:42:42 +01001875
Corentin Charyaf96f872011-02-06 13:27:30 +01001876 asus_dmi_check();
1877
Corentin Chary9129d142009-12-01 22:39:41 +01001878 result = asus_acpi_init(asus);
Corentin Chary600ad522009-11-30 21:42:42 +01001879 if (result)
1880 goto fail_platform;
1881
1882 /*
Andy Ross8819de72011-10-14 11:13:35 +02001883 * Need platform type detection first, then the platform
1884 * device. It is used as a parent for the sub-devices below.
Corentin Chary600ad522009-11-30 21:42:42 +01001885 */
Andy Ross8819de72011-10-14 11:13:35 +02001886 asus->is_pega_lucid = asus_check_pega_lucid(asus);
Corentin Chary9129d142009-12-01 22:39:41 +01001887 result = asus_platform_init(asus);
Corentin Chary600ad522009-11-30 21:42:42 +01001888 if (result)
1889 goto fail_platform;
1890
1891 if (!acpi_video_backlight_support()) {
Corentin Chary9129d142009-12-01 22:39:41 +01001892 result = asus_backlight_init(asus);
Corentin Chary600ad522009-11-30 21:42:42 +01001893 if (result)
1894 goto fail_backlight;
1895 } else
1896 pr_info("Backlight controlled by ACPI video driver\n");
1897
Corentin Chary9129d142009-12-01 22:39:41 +01001898 result = asus_input_init(asus);
Corentin Chary600ad522009-11-30 21:42:42 +01001899 if (result)
1900 goto fail_input;
1901
Corentin Chary9129d142009-12-01 22:39:41 +01001902 result = asus_led_init(asus);
Corentin Chary600ad522009-11-30 21:42:42 +01001903 if (result)
1904 goto fail_led;
1905
Corentin Chary18e13112010-01-25 23:29:24 +01001906 result = asus_rfkill_init(asus);
Corentin Chary3c8671f2011-12-15 08:27:35 +01001907 if (result && result != -ENODEV)
Corentin Chary18e13112010-01-25 23:29:24 +01001908 goto fail_rfkill;
1909
Andy Rossb23910c2011-10-14 11:13:38 +02001910 result = pega_accel_init(asus);
1911 if (result && result != -ENODEV)
1912 goto fail_pega_accel;
1913
Anisse Astier14908392011-10-14 11:13:42 +02001914 result = pega_rfkill_init(asus);
1915 if (result && result != -ENODEV)
1916 goto fail_pega_rfkill;
1917
Corentin Chary600ad522009-11-30 21:42:42 +01001918 asus_device_present = true;
1919 return 0;
1920
Anisse Astier14908392011-10-14 11:13:42 +02001921fail_pega_rfkill:
1922 pega_accel_exit(asus);
Andy Rossb23910c2011-10-14 11:13:38 +02001923fail_pega_accel:
1924 asus_rfkill_exit(asus);
Corentin Chary18e13112010-01-25 23:29:24 +01001925fail_rfkill:
1926 asus_led_exit(asus);
Corentin Chary600ad522009-11-30 21:42:42 +01001927fail_led:
Corentin Chary9129d142009-12-01 22:39:41 +01001928 asus_input_exit(asus);
Corentin Chary600ad522009-11-30 21:42:42 +01001929fail_input:
Corentin Chary9129d142009-12-01 22:39:41 +01001930 asus_backlight_exit(asus);
Corentin Chary600ad522009-11-30 21:42:42 +01001931fail_backlight:
Corentin Chary9129d142009-12-01 22:39:41 +01001932 asus_platform_exit(asus);
Corentin Chary600ad522009-11-30 21:42:42 +01001933fail_platform:
Corentin Chary50a90c42009-11-30 21:55:12 +01001934 kfree(asus);
Corentin Chary600ad522009-11-30 21:42:42 +01001935
1936 return result;
1937}
1938
Rafael J. Wysocki51fac832013-01-24 00:24:48 +01001939static int asus_acpi_remove(struct acpi_device *device)
Corentin Chary600ad522009-11-30 21:42:42 +01001940{
Corentin Chary9129d142009-12-01 22:39:41 +01001941 struct asus_laptop *asus = acpi_driver_data(device);
1942
1943 asus_backlight_exit(asus);
Corentin Chary18e13112010-01-25 23:29:24 +01001944 asus_rfkill_exit(asus);
Corentin Chary9129d142009-12-01 22:39:41 +01001945 asus_led_exit(asus);
1946 asus_input_exit(asus);
Andy Rossb23910c2011-10-14 11:13:38 +02001947 pega_accel_exit(asus);
Corentin Chary9129d142009-12-01 22:39:41 +01001948 asus_platform_exit(asus);
Corentin Chary600ad522009-11-30 21:42:42 +01001949
Corentin Chary50a90c42009-11-30 21:55:12 +01001950 kfree(asus->name);
1951 kfree(asus);
Corentin Chary600ad522009-11-30 21:42:42 +01001952 return 0;
1953}
1954
1955static const struct acpi_device_id asus_device_ids[] = {
1956 {"ATK0100", 0},
1957 {"ATK0101", 0},
1958 {"", 0},
1959};
1960MODULE_DEVICE_TABLE(acpi, asus_device_ids);
1961
1962static struct acpi_driver asus_acpi_driver = {
Corentin Chary50a90c42009-11-30 21:55:12 +01001963 .name = ASUS_LAPTOP_NAME,
1964 .class = ASUS_LAPTOP_CLASS,
Corentin Chary600ad522009-11-30 21:42:42 +01001965 .owner = THIS_MODULE,
1966 .ids = asus_device_ids,
1967 .flags = ACPI_DRIVER_ALL_NOTIFY_EVENTS,
1968 .ops = {
1969 .add = asus_acpi_add,
1970 .remove = asus_acpi_remove,
1971 .notify = asus_acpi_notify,
1972 },
1973};
1974
Corentin Chary85091b72007-01-26 14:04:30 +01001975static int __init asus_laptop_init(void)
1976{
1977 int result;
1978
Corentin Chary600ad522009-11-30 21:42:42 +01001979 result = platform_driver_register(&platform_driver);
Corentin Chary85091b72007-01-26 14:04:30 +01001980 if (result < 0)
1981 return result;
1982
Corentin Chary600ad522009-11-30 21:42:42 +01001983 result = acpi_bus_register_driver(&asus_acpi_driver);
1984 if (result < 0)
1985 goto fail_acpi_driver;
1986 if (!asus_device_present) {
1987 result = -ENODEV;
1988 goto fail_no_device;
Corentin Chary85091b72007-01-26 14:04:30 +01001989 }
Len Brown8def05f2007-01-30 01:46:43 -05001990 return 0;
Corentin Chary85091b72007-01-26 14:04:30 +01001991
Corentin Chary600ad522009-11-30 21:42:42 +01001992fail_no_device:
1993 acpi_bus_unregister_driver(&asus_acpi_driver);
1994fail_acpi_driver:
1995 platform_driver_unregister(&platform_driver);
Corentin Chary85091b72007-01-26 14:04:30 +01001996 return result;
1997}
1998
Corentin Chary600ad522009-11-30 21:42:42 +01001999static void __exit asus_laptop_exit(void)
2000{
2001 acpi_bus_unregister_driver(&asus_acpi_driver);
2002 platform_driver_unregister(&platform_driver);
2003}
2004
Corentin Chary85091b72007-01-26 14:04:30 +01002005module_init(asus_laptop_init);
2006module_exit(asus_laptop_exit);