blob: 96a0b75c52c9a6232c99b18e61751f3eb62e940a [file] [log] [blame]
Carlos Corbacho745a5d22008-02-05 02:17:10 +00001/*
2 * Acer WMI Laptop Extras
3 *
Carlos Corbacho4f0175d2009-04-04 09:33:39 +01004 * Copyright (C) 2007-2009 Carlos Corbacho <carlos@strangeworlds.co.uk>
Carlos Corbacho745a5d22008-02-05 02:17:10 +00005 *
6 * Based on acer_acpi:
7 * Copyright (C) 2005-2007 E.M. Smith
8 * Copyright (C) 2007-2008 Carlos Corbacho <cathectic@gmail.com>
9 *
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or
13 * (at your option) any later version.
14 *
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
19 *
20 * You should have received a copy of the GNU General Public License
21 * along with this program; if not, write to the Free Software
22 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
23 */
24
Lee, Chun-Yicae15702011-03-16 18:52:36 +080025#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
26
Carlos Corbacho745a5d22008-02-05 02:17:10 +000027#include <linux/kernel.h>
28#include <linux/module.h>
29#include <linux/init.h>
30#include <linux/types.h>
31#include <linux/dmi.h>
Carlos Corbachof2b585b2008-06-21 09:09:27 +010032#include <linux/fb.h>
Carlos Corbacho745a5d22008-02-05 02:17:10 +000033#include <linux/backlight.h>
34#include <linux/leds.h>
35#include <linux/platform_device.h>
36#include <linux/acpi.h>
37#include <linux/i8042.h>
Carlos Corbacho0606e1a2008-10-08 21:40:21 +010038#include <linux/rfkill.h>
39#include <linux/workqueue.h>
Carlos Corbacho81143522008-06-21 09:09:53 +010040#include <linux/debugfs.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090041#include <linux/slab.h>
Lee, Chun-Yi3fdca872010-12-07 10:29:20 +080042#include <linux/input.h>
43#include <linux/input/sparse-keymap.h>
Lee, Chun-Yi86924de2012-03-26 15:47:58 -040044#include <acpi/video.h>
Carlos Corbacho745a5d22008-02-05 02:17:10 +000045
46MODULE_AUTHOR("Carlos Corbacho");
47MODULE_DESCRIPTION("Acer Laptop WMI Extras Driver");
48MODULE_LICENSE("GPL");
49
Carlos Corbacho745a5d22008-02-05 02:17:10 +000050/*
Carlos Corbacho745a5d22008-02-05 02:17:10 +000051 * Magic Number
52 * Meaning is unknown - this number is required for writing to ACPI for AMW0
53 * (it's also used in acerhk when directly accessing the BIOS)
54 */
55#define ACER_AMW0_WRITE 0x9610
56
57/*
58 * Bit masks for the AMW0 interface
59 */
60#define ACER_AMW0_WIRELESS_MASK 0x35
61#define ACER_AMW0_BLUETOOTH_MASK 0x34
62#define ACER_AMW0_MAILLED_MASK 0x31
63
64/*
65 * Method IDs for WMID interface
66 */
67#define ACER_WMID_GET_WIRELESS_METHODID 1
68#define ACER_WMID_GET_BLUETOOTH_METHODID 2
69#define ACER_WMID_GET_BRIGHTNESS_METHODID 3
70#define ACER_WMID_SET_WIRELESS_METHODID 4
71#define ACER_WMID_SET_BLUETOOTH_METHODID 5
72#define ACER_WMID_SET_BRIGHTNESS_METHODID 6
73#define ACER_WMID_GET_THREEG_METHODID 10
74#define ACER_WMID_SET_THREEG_METHODID 11
75
76/*
77 * Acer ACPI method GUIDs
78 */
79#define AMW0_GUID1 "67C3371D-95A3-4C37-BB61-DD47B491DAAB"
Carlos Corbacho5753dd52008-06-21 09:09:48 +010080#define AMW0_GUID2 "431F16ED-0C2B-444C-B267-27DEB140CF9C"
Matthew Garrettbbb70602011-02-09 16:39:40 -050081#define WMID_GUID1 "6AF4F258-B401-42FD-BE91-3D4AC2D7C0D3"
Pali Rohár298f19b2011-03-11 12:36:43 -050082#define WMID_GUID2 "95764E09-FB56-4E83-B31A-37761F60994A"
Lee, Chun-Yib3c90922010-12-07 10:29:22 +080083#define WMID_GUID3 "61EF69EA-865C-4BC3-A502-A0DEBA0CB531"
Carlos Corbacho745a5d22008-02-05 02:17:10 +000084
Lee, Chun-Yi3fdca872010-12-07 10:29:20 +080085/*
86 * Acer ACPI event GUIDs
87 */
88#define ACERWMID_EVENT_GUID "676AA15E-6A47-4D9F-A2CC-1E6D18D14026"
89
Carlos Corbacho745a5d22008-02-05 02:17:10 +000090MODULE_ALIAS("wmi:67C3371D-95A3-4C37-BB61-DD47B491DAAB");
Lee, Chun-Yi08a07992011-04-06 17:40:06 +080091MODULE_ALIAS("wmi:6AF4F258-B401-42FD-BE91-3D4AC2D7C0D3");
Lee, Chun-Yi3fdca872010-12-07 10:29:20 +080092MODULE_ALIAS("wmi:676AA15E-6A47-4D9F-A2CC-1E6D18D14026");
93
94enum acer_wmi_event_ids {
95 WMID_HOTKEY_EVENT = 0x1,
Marek Vasut1eb3fe12012-06-01 19:11:22 +020096 WMID_ACCEL_EVENT = 0x5,
Lee, Chun-Yi3fdca872010-12-07 10:29:20 +080097};
98
Mathias Krause87e44842014-07-16 19:43:05 +020099static const struct key_entry acer_wmi_keymap[] __initconst = {
Lee, Chun-Yi3fdca872010-12-07 10:29:20 +0800100 {KE_KEY, 0x01, {KEY_WLAN} }, /* WiFi */
Melchior FRANZ8ae68de2011-05-24 10:35:55 +0200101 {KE_KEY, 0x03, {KEY_WLAN} }, /* WiFi */
Seth Forshee1a04d8f2011-06-21 12:00:32 -0500102 {KE_KEY, 0x04, {KEY_WLAN} }, /* WiFi */
Lee, Chun-Yi3fdca872010-12-07 10:29:20 +0800103 {KE_KEY, 0x12, {KEY_BLUETOOTH} }, /* BT */
104 {KE_KEY, 0x21, {KEY_PROG1} }, /* Backup */
105 {KE_KEY, 0x22, {KEY_PROG2} }, /* Arcade */
106 {KE_KEY, 0x23, {KEY_PROG3} }, /* P_Key */
107 {KE_KEY, 0x24, {KEY_PROG4} }, /* Social networking_Key */
Merlin Schumacher67e1d342012-01-24 04:35:35 +0800108 {KE_KEY, 0x29, {KEY_PROG3} }, /* P_Key for TM8372 */
Melchior FRANZ8ae68de2011-05-24 10:35:55 +0200109 {KE_IGNORE, 0x41, {KEY_MUTE} },
110 {KE_IGNORE, 0x42, {KEY_PREVIOUSSONG} },
Sergey Senozhatskyca1469f2012-03-12 13:07:13 +0300111 {KE_IGNORE, 0x4d, {KEY_PREVIOUSSONG} },
Melchior FRANZ8ae68de2011-05-24 10:35:55 +0200112 {KE_IGNORE, 0x43, {KEY_NEXTSONG} },
Sergey Senozhatskyca1469f2012-03-12 13:07:13 +0300113 {KE_IGNORE, 0x4e, {KEY_NEXTSONG} },
Melchior FRANZ8ae68de2011-05-24 10:35:55 +0200114 {KE_IGNORE, 0x44, {KEY_PLAYPAUSE} },
Sergey Senozhatskyca1469f2012-03-12 13:07:13 +0300115 {KE_IGNORE, 0x4f, {KEY_PLAYPAUSE} },
Melchior FRANZ8ae68de2011-05-24 10:35:55 +0200116 {KE_IGNORE, 0x45, {KEY_STOP} },
Sergey Senozhatskyca1469f2012-03-12 13:07:13 +0300117 {KE_IGNORE, 0x50, {KEY_STOP} },
Melchior FRANZ8ae68de2011-05-24 10:35:55 +0200118 {KE_IGNORE, 0x48, {KEY_VOLUMEUP} },
119 {KE_IGNORE, 0x49, {KEY_VOLUMEDOWN} },
Sergey Senozhatskyca1469f2012-03-12 13:07:13 +0300120 {KE_IGNORE, 0x4a, {KEY_VOLUMEDOWN} },
Melchior FRANZ8ae68de2011-05-24 10:35:55 +0200121 {KE_IGNORE, 0x61, {KEY_SWITCHVIDEOMODE} },
122 {KE_IGNORE, 0x62, {KEY_BRIGHTNESSUP} },
123 {KE_IGNORE, 0x63, {KEY_BRIGHTNESSDOWN} },
Lee, Chun-Yi3fdca872010-12-07 10:29:20 +0800124 {KE_KEY, 0x64, {KEY_SWITCHVIDEOMODE} }, /* Display Switch */
Melchior FRANZ8ae68de2011-05-24 10:35:55 +0200125 {KE_IGNORE, 0x81, {KEY_SLEEP} },
Lee, Chun-Yi8e2286c2012-12-14 16:14:27 +0800126 {KE_KEY, 0x82, {KEY_TOUCHPAD_TOGGLE} }, /* Touch Pad Toggle */
127 {KE_KEY, KEY_TOUCHPAD_ON, {KEY_TOUCHPAD_ON} },
128 {KE_KEY, KEY_TOUCHPAD_OFF, {KEY_TOUCHPAD_OFF} },
Melchior FRANZ8ae68de2011-05-24 10:35:55 +0200129 {KE_IGNORE, 0x83, {KEY_TOUCHPAD_TOGGLE} },
Sergey Senozhatsky68825ce2012-11-26 21:35:02 +0300130 {KE_KEY, 0x85, {KEY_TOUCHPAD_TOGGLE} },
Lee, Chun-Yi3fdca872010-12-07 10:29:20 +0800131 {KE_END, 0}
132};
133
134static struct input_dev *acer_wmi_input_dev;
Marek Vasut1eb3fe12012-06-01 19:11:22 +0200135static struct input_dev *acer_wmi_accel_dev;
Lee, Chun-Yi3fdca872010-12-07 10:29:20 +0800136
137struct event_return_value {
138 u8 function;
139 u8 key_num;
140 u16 device_state;
141 u32 reserved;
142} __attribute__((packed));
Carlos Corbacho745a5d22008-02-05 02:17:10 +0000143
Carlos Corbacho745a5d22008-02-05 02:17:10 +0000144/*
Lee, Chun-Yib3c90922010-12-07 10:29:22 +0800145 * GUID3 Get Device Status device flags
146 */
Lee, Chun-Yi6c3df882010-12-07 10:29:23 +0800147#define ACER_WMID3_GDS_WIRELESS (1<<0) /* WiFi */
Lee, Chun-Yib3c90922010-12-07 10:29:22 +0800148#define ACER_WMID3_GDS_THREEG (1<<6) /* 3G */
Lee, Chun-Yi6d88ff02011-05-22 07:33:54 +0800149#define ACER_WMID3_GDS_WIMAX (1<<7) /* WiMAX */
Lee, Chun-Yi6c3df882010-12-07 10:29:23 +0800150#define ACER_WMID3_GDS_BLUETOOTH (1<<11) /* BT */
Lee, Chun-Yi8e2286c2012-12-14 16:14:27 +0800151#define ACER_WMID3_GDS_TOUCHPAD (1<<1) /* Touchpad */
Lee, Chun-Yib3c90922010-12-07 10:29:22 +0800152
From: Lee, Chun-Yi59ccf2f2011-01-07 17:25:14 -0500153struct lm_input_params {
154 u8 function_num; /* Function Number */
155 u16 commun_devices; /* Communication type devices default status */
156 u16 devices; /* Other type devices default status */
157 u8 lm_status; /* Launch Manager Status */
158 u16 reserved;
159} __attribute__((packed));
160
161struct lm_return_value {
162 u8 error_code; /* Error Code */
163 u8 ec_return_value; /* EC Return Value */
164 u16 reserved;
165} __attribute__((packed));
166
Lee, Chun-Yi996d23b2012-03-19 17:37:33 +0800167struct wmid3_gds_set_input_param { /* Set Device Status input parameter */
168 u8 function_num; /* Function Number */
169 u8 hotkey_number; /* Hotkey Number */
170 u16 devices; /* Set Device */
171 u8 volume_value; /* Volume Value */
172} __attribute__((packed));
173
174struct wmid3_gds_get_input_param { /* Get Device Status input parameter */
Lee, Chun-Yib3c90922010-12-07 10:29:22 +0800175 u8 function_num; /* Function Number */
176 u8 hotkey_number; /* Hotkey Number */
177 u16 devices; /* Get Device */
178} __attribute__((packed));
179
180struct wmid3_gds_return_value { /* Get Device Status return value*/
181 u8 error_code; /* Error Code */
182 u8 ec_return_value; /* EC Return Value */
183 u16 devices; /* Current Device Status */
184 u32 reserved;
185} __attribute__((packed));
186
Lee, Chun-Yi6c3df882010-12-07 10:29:23 +0800187struct hotkey_function_type_aa {
188 u8 type;
189 u8 length;
190 u16 handle;
191 u16 commun_func_bitmap;
Lee, Chun-Yi34b6cfa2012-03-19 17:37:32 +0800192 u16 application_func_bitmap;
193 u16 media_func_bitmap;
194 u16 display_func_bitmap;
195 u16 others_func_bitmap;
196 u8 commun_fn_key_number;
Lee, Chun-Yi6c3df882010-12-07 10:29:23 +0800197} __attribute__((packed));
198
Lee, Chun-Yib3c90922010-12-07 10:29:22 +0800199/*
Carlos Corbacho745a5d22008-02-05 02:17:10 +0000200 * Interface capability flags
201 */
202#define ACER_CAP_MAILLED (1<<0)
203#define ACER_CAP_WIRELESS (1<<1)
204#define ACER_CAP_BLUETOOTH (1<<2)
205#define ACER_CAP_BRIGHTNESS (1<<3)
206#define ACER_CAP_THREEG (1<<4)
Marek Vasut1eb3fe12012-06-01 19:11:22 +0200207#define ACER_CAP_ACCEL (1<<5)
Carlos Corbacho745a5d22008-02-05 02:17:10 +0000208#define ACER_CAP_ANY (0xFFFFFFFF)
209
210/*
211 * Interface type flags
212 */
213enum interface_flags {
214 ACER_AMW0,
215 ACER_AMW0_V2,
216 ACER_WMID,
Lee, Chun-Yi72e71de2011-08-18 18:47:32 +0800217 ACER_WMID_v2,
Carlos Corbacho745a5d22008-02-05 02:17:10 +0000218};
219
220#define ACER_DEFAULT_WIRELESS 0
221#define ACER_DEFAULT_BLUETOOTH 0
222#define ACER_DEFAULT_MAILLED 0
223#define ACER_DEFAULT_THREEG 0
224
225static int max_brightness = 0xF;
226
Carlos Corbacho745a5d22008-02-05 02:17:10 +0000227static int mailled = -1;
228static int brightness = -1;
229static int threeg = -1;
230static int force_series;
From: Lee, Chun-Yi59ccf2f2011-01-07 17:25:14 -0500231static bool ec_raw_mode;
Lee, Chun-Yi6c3df882010-12-07 10:29:23 +0800232static bool has_type_aa;
Lee, Chun-Yi1d1fc8a2011-10-06 19:06:13 +0800233static u16 commun_func_bitmap;
Lee, Chun-Yi34b6cfa2012-03-19 17:37:32 +0800234static u8 commun_fn_key_number;
Carlos Corbacho745a5d22008-02-05 02:17:10 +0000235
236module_param(mailled, int, 0444);
Carlos Corbacho745a5d22008-02-05 02:17:10 +0000237module_param(brightness, int, 0444);
238module_param(threeg, int, 0444);
239module_param(force_series, int, 0444);
From: Lee, Chun-Yi59ccf2f2011-01-07 17:25:14 -0500240module_param(ec_raw_mode, bool, 0444);
Carlos Corbacho745a5d22008-02-05 02:17:10 +0000241MODULE_PARM_DESC(mailled, "Set initial state of Mail LED");
242MODULE_PARM_DESC(brightness, "Set initial LCD backlight brightness");
243MODULE_PARM_DESC(threeg, "Set initial state of 3G hardware");
244MODULE_PARM_DESC(force_series, "Force a different laptop series");
From: Lee, Chun-Yi59ccf2f2011-01-07 17:25:14 -0500245MODULE_PARM_DESC(ec_raw_mode, "Enable EC raw mode");
Carlos Corbacho745a5d22008-02-05 02:17:10 +0000246
247struct acer_data {
248 int mailled;
Carlos Corbacho745a5d22008-02-05 02:17:10 +0000249 int threeg;
250 int brightness;
251};
252
Carlos Corbacho81143522008-06-21 09:09:53 +0100253struct acer_debug {
254 struct dentry *root;
255 struct dentry *devices;
256 u32 wmid_devices;
257};
258
Carlos Corbacho0606e1a2008-10-08 21:40:21 +0100259static struct rfkill *wireless_rfkill;
260static struct rfkill *bluetooth_rfkill;
Lee, Chun-Yib3c90922010-12-07 10:29:22 +0800261static struct rfkill *threeg_rfkill;
Lee, Chun-Yi8215af02011-03-28 16:52:02 +0800262static bool rfkill_inited;
Carlos Corbacho0606e1a2008-10-08 21:40:21 +0100263
Carlos Corbacho745a5d22008-02-05 02:17:10 +0000264/* Each low-level interface must define at least some of the following */
265struct wmi_interface {
266 /* The WMI device type */
267 u32 type;
268
269 /* The capabilities this interface provides */
270 u32 capability;
271
272 /* Private data for the current interface */
273 struct acer_data data;
Carlos Corbacho81143522008-06-21 09:09:53 +0100274
275 /* debugfs entries associated with this interface */
276 struct acer_debug debug;
Carlos Corbacho745a5d22008-02-05 02:17:10 +0000277};
278
279/* The static interface pointer, points to the currently detected interface */
280static struct wmi_interface *interface;
281
282/*
283 * Embedded Controller quirks
284 * Some laptops require us to directly access the EC to either enable or query
285 * features that are not available through WMI.
286 */
287
288struct quirk_entry {
289 u8 wireless;
290 u8 mailled;
Carlos Corbacho9991d9f2008-06-21 09:09:22 +0100291 s8 brightness;
Carlos Corbacho745a5d22008-02-05 02:17:10 +0000292 u8 bluetooth;
293};
294
295static struct quirk_entry *quirks;
296
Mathias Krause76d51dd2014-07-16 19:43:04 +0200297static void __init set_quirks(void)
Carlos Corbacho745a5d22008-02-05 02:17:10 +0000298{
Arjan van de Ven83097ac2008-08-23 21:45:21 -0700299 if (!interface)
300 return;
301
Carlos Corbacho745a5d22008-02-05 02:17:10 +0000302 if (quirks->mailled)
303 interface->capability |= ACER_CAP_MAILLED;
304
305 if (quirks->brightness)
306 interface->capability |= ACER_CAP_BRIGHTNESS;
307}
308
Mathias Krause76d51dd2014-07-16 19:43:04 +0200309static int __init dmi_matched(const struct dmi_system_id *dmi)
Carlos Corbacho745a5d22008-02-05 02:17:10 +0000310{
311 quirks = dmi->driver_data;
Axel Lind53bf0f2010-06-30 13:32:16 +0800312 return 1;
Carlos Corbacho745a5d22008-02-05 02:17:10 +0000313}
314
315static struct quirk_entry quirk_unknown = {
316};
317
Carlos Corbacho9991d9f2008-06-21 09:09:22 +0100318static struct quirk_entry quirk_acer_aspire_1520 = {
319 .brightness = -1,
320};
321
Carlos Corbacho745a5d22008-02-05 02:17:10 +0000322static struct quirk_entry quirk_acer_travelmate_2490 = {
323 .mailled = 1,
324};
325
326/* This AMW0 laptop has no bluetooth */
327static struct quirk_entry quirk_medion_md_98300 = {
328 .wireless = 1,
329};
330
Carlos Corbacho6f061ab2008-06-21 09:09:38 +0100331static struct quirk_entry quirk_fujitsu_amilo_li_1718 = {
332 .wireless = 2,
333};
334
Lee, Chun-Yi15b956a2011-07-30 17:00:45 +0800335static struct quirk_entry quirk_lenovo_ideapad_s205 = {
336 .wireless = 3,
337};
338
Carlos Corbachoa74dd5f2009-04-04 09:33:29 +0100339/* The Aspire One has a dummy ACPI-WMI interface - disable it */
Mathias Krause76d51dd2014-07-16 19:43:04 +0200340static const struct dmi_system_id acer_blacklist[] __initconst = {
Carlos Corbachoa74dd5f2009-04-04 09:33:29 +0100341 {
342 .ident = "Acer Aspire One (SSD)",
343 .matches = {
344 DMI_MATCH(DMI_SYS_VENDOR, "Acer"),
345 DMI_MATCH(DMI_PRODUCT_NAME, "AOA110"),
346 },
347 },
348 {
349 .ident = "Acer Aspire One (HDD)",
350 .matches = {
351 DMI_MATCH(DMI_SYS_VENDOR, "Acer"),
352 DMI_MATCH(DMI_PRODUCT_NAME, "AOA150"),
353 },
354 },
355 {}
356};
357
Mathias Krause76d51dd2014-07-16 19:43:04 +0200358static const struct dmi_system_id acer_quirks[] __initconst = {
Carlos Corbacho745a5d22008-02-05 02:17:10 +0000359 {
360 .callback = dmi_matched,
Carlos Corbacho9991d9f2008-06-21 09:09:22 +0100361 .ident = "Acer Aspire 1360",
362 .matches = {
363 DMI_MATCH(DMI_SYS_VENDOR, "Acer"),
364 DMI_MATCH(DMI_PRODUCT_NAME, "Aspire 1360"),
365 },
366 .driver_data = &quirk_acer_aspire_1520,
367 },
368 {
369 .callback = dmi_matched,
370 .ident = "Acer Aspire 1520",
371 .matches = {
372 DMI_MATCH(DMI_SYS_VENDOR, "Acer"),
373 DMI_MATCH(DMI_PRODUCT_NAME, "Aspire 1520"),
374 },
375 .driver_data = &quirk_acer_aspire_1520,
376 },
377 {
378 .callback = dmi_matched,
Carlos Corbacho745a5d22008-02-05 02:17:10 +0000379 .ident = "Acer Aspire 3100",
380 .matches = {
381 DMI_MATCH(DMI_SYS_VENDOR, "Acer"),
382 DMI_MATCH(DMI_PRODUCT_NAME, "Aspire 3100"),
383 },
384 .driver_data = &quirk_acer_travelmate_2490,
385 },
386 {
387 .callback = dmi_matched,
Carlos Corbachoed9cfe92008-03-12 20:13:00 +0000388 .ident = "Acer Aspire 3610",
389 .matches = {
390 DMI_MATCH(DMI_SYS_VENDOR, "Acer"),
391 DMI_MATCH(DMI_PRODUCT_NAME, "Aspire 3610"),
392 },
393 .driver_data = &quirk_acer_travelmate_2490,
394 },
395 {
396 .callback = dmi_matched,
Carlos Corbacho745a5d22008-02-05 02:17:10 +0000397 .ident = "Acer Aspire 5100",
398 .matches = {
399 DMI_MATCH(DMI_SYS_VENDOR, "Acer"),
400 DMI_MATCH(DMI_PRODUCT_NAME, "Aspire 5100"),
401 },
402 .driver_data = &quirk_acer_travelmate_2490,
403 },
404 {
405 .callback = dmi_matched,
Carlos Corbachoed9cfe92008-03-12 20:13:00 +0000406 .ident = "Acer Aspire 5610",
407 .matches = {
408 DMI_MATCH(DMI_SYS_VENDOR, "Acer"),
409 DMI_MATCH(DMI_PRODUCT_NAME, "Aspire 5610"),
410 },
411 .driver_data = &quirk_acer_travelmate_2490,
412 },
413 {
414 .callback = dmi_matched,
Carlos Corbacho745a5d22008-02-05 02:17:10 +0000415 .ident = "Acer Aspire 5630",
416 .matches = {
417 DMI_MATCH(DMI_SYS_VENDOR, "Acer"),
418 DMI_MATCH(DMI_PRODUCT_NAME, "Aspire 5630"),
419 },
420 .driver_data = &quirk_acer_travelmate_2490,
421 },
422 {
423 .callback = dmi_matched,
424 .ident = "Acer Aspire 5650",
425 .matches = {
426 DMI_MATCH(DMI_SYS_VENDOR, "Acer"),
427 DMI_MATCH(DMI_PRODUCT_NAME, "Aspire 5650"),
428 },
429 .driver_data = &quirk_acer_travelmate_2490,
430 },
431 {
432 .callback = dmi_matched,
433 .ident = "Acer Aspire 5680",
434 .matches = {
435 DMI_MATCH(DMI_SYS_VENDOR, "Acer"),
436 DMI_MATCH(DMI_PRODUCT_NAME, "Aspire 5680"),
437 },
438 .driver_data = &quirk_acer_travelmate_2490,
439 },
440 {
441 .callback = dmi_matched,
442 .ident = "Acer Aspire 9110",
443 .matches = {
444 DMI_MATCH(DMI_SYS_VENDOR, "Acer"),
445 DMI_MATCH(DMI_PRODUCT_NAME, "Aspire 9110"),
446 },
447 .driver_data = &quirk_acer_travelmate_2490,
448 },
449 {
450 .callback = dmi_matched,
451 .ident = "Acer TravelMate 2490",
452 .matches = {
453 DMI_MATCH(DMI_SYS_VENDOR, "Acer"),
454 DMI_MATCH(DMI_PRODUCT_NAME, "TravelMate 2490"),
455 },
456 .driver_data = &quirk_acer_travelmate_2490,
457 },
458 {
459 .callback = dmi_matched,
Carlos Corbacho262ee352008-02-16 00:02:56 +0000460 .ident = "Acer TravelMate 4200",
461 .matches = {
462 DMI_MATCH(DMI_SYS_VENDOR, "Acer"),
463 DMI_MATCH(DMI_PRODUCT_NAME, "TravelMate 4200"),
464 },
465 .driver_data = &quirk_acer_travelmate_2490,
466 },
467 {
468 .callback = dmi_matched,
Carlos Corbacho6f061ab2008-06-21 09:09:38 +0100469 .ident = "Fujitsu Siemens Amilo Li 1718",
470 .matches = {
471 DMI_MATCH(DMI_SYS_VENDOR, "FUJITSU SIEMENS"),
472 DMI_MATCH(DMI_PRODUCT_NAME, "AMILO Li 1718"),
473 },
474 .driver_data = &quirk_fujitsu_amilo_li_1718,
475 },
476 {
477 .callback = dmi_matched,
Carlos Corbacho745a5d22008-02-05 02:17:10 +0000478 .ident = "Medion MD 98300",
479 .matches = {
480 DMI_MATCH(DMI_SYS_VENDOR, "MEDION"),
481 DMI_MATCH(DMI_PRODUCT_NAME, "WAM2030"),
482 },
483 .driver_data = &quirk_medion_md_98300,
484 },
Lee, Chun-Yi15b956a2011-07-30 17:00:45 +0800485 {
486 .callback = dmi_matched,
487 .ident = "Lenovo Ideapad S205",
488 .matches = {
489 DMI_MATCH(DMI_SYS_VENDOR, "LENOVO"),
490 DMI_MATCH(DMI_PRODUCT_NAME, "10382LG"),
491 },
492 .driver_data = &quirk_lenovo_ideapad_s205,
493 },
Seth Forsheebe3128b2011-10-06 15:01:55 -0500494 {
495 .callback = dmi_matched,
Lee, Chun-Yic08f2082012-03-20 11:32:49 +0800496 .ident = "Lenovo Ideapad S205 (Brazos)",
497 .matches = {
498 DMI_MATCH(DMI_SYS_VENDOR, "LENOVO"),
499 DMI_MATCH(DMI_PRODUCT_NAME, "Brazos"),
500 },
501 .driver_data = &quirk_lenovo_ideapad_s205,
502 },
503 {
504 .callback = dmi_matched,
Seth Forsheebe3128b2011-10-06 15:01:55 -0500505 .ident = "Lenovo 3000 N200",
506 .matches = {
507 DMI_MATCH(DMI_SYS_VENDOR, "LENOVO"),
508 DMI_MATCH(DMI_PRODUCT_NAME, "0687A31"),
509 },
510 .driver_data = &quirk_fujitsu_amilo_li_1718,
511 },
Lee, Chun-Yie6c33f12012-12-14 16:14:25 +0800512 {
513 .callback = dmi_matched,
514 .ident = "Lenovo Ideapad S205-10382JG",
515 .matches = {
516 DMI_MATCH(DMI_SYS_VENDOR, "LENOVO"),
517 DMI_MATCH(DMI_PRODUCT_NAME, "10382JG"),
518 },
519 .driver_data = &quirk_lenovo_ideapad_s205,
520 },
Lee, Chun-Yi5f3511d2012-12-14 16:14:28 +0800521 {
522 .callback = dmi_matched,
523 .ident = "Lenovo Ideapad S205-1038DPG",
524 .matches = {
525 DMI_MATCH(DMI_SYS_VENDOR, "LENOVO"),
526 DMI_MATCH(DMI_PRODUCT_NAME, "1038DPG"),
527 },
528 .driver_data = &quirk_lenovo_ideapad_s205,
529 },
Carlos Corbacho745a5d22008-02-05 02:17:10 +0000530 {}
531};
532
Mathias Krause76d51dd2014-07-16 19:43:04 +0200533static int __init
534video_set_backlight_video_vendor(const struct dmi_system_id *d)
Lee, Chun-Yi86924de2012-03-26 15:47:58 -0400535{
536 interface->capability &= ~ACER_CAP_BRIGHTNESS;
537 pr_info("Brightness must be controlled by generic video driver\n");
538 return 0;
539}
540
Mathias Krause76d51dd2014-07-16 19:43:04 +0200541static const struct dmi_system_id video_vendor_dmi_table[] __initconst = {
Lee, Chun-Yi86924de2012-03-26 15:47:58 -0400542 {
543 .callback = video_set_backlight_video_vendor,
544 .ident = "Acer TravelMate 4750",
545 .matches = {
546 DMI_MATCH(DMI_BOARD_VENDOR, "Acer"),
547 DMI_MATCH(DMI_PRODUCT_NAME, "TravelMate 4750"),
548 },
549 },
Lee, Chun-Yi050eff32012-05-21 23:19:51 +0800550 {
551 .callback = video_set_backlight_video_vendor,
552 .ident = "Acer Extensa 5235",
553 .matches = {
554 DMI_MATCH(DMI_BOARD_VENDOR, "Acer"),
555 DMI_MATCH(DMI_PRODUCT_NAME, "Extensa 5235"),
556 },
557 },
558 {
559 .callback = video_set_backlight_video_vendor,
560 .ident = "Acer TravelMate 5760",
561 .matches = {
562 DMI_MATCH(DMI_BOARD_VENDOR, "Acer"),
563 DMI_MATCH(DMI_PRODUCT_NAME, "TravelMate 5760"),
564 },
565 },
566 {
567 .callback = video_set_backlight_video_vendor,
568 .ident = "Acer Aspire 5750",
569 .matches = {
570 DMI_MATCH(DMI_BOARD_VENDOR, "Acer"),
571 DMI_MATCH(DMI_PRODUCT_NAME, "Aspire 5750"),
572 },
573 },
Hans de Goede9404cd952014-05-17 10:48:03 +0200574 {
575 .callback = video_set_backlight_video_vendor,
576 .ident = "Acer Aspire 5741",
577 .matches = {
578 DMI_MATCH(DMI_BOARD_VENDOR, "Acer"),
579 DMI_MATCH(DMI_PRODUCT_NAME, "Aspire 5741"),
580 },
581 },
Lee, Chun-Yi86924de2012-03-26 15:47:58 -0400582 {}
583};
584
Carlos Corbacho745a5d22008-02-05 02:17:10 +0000585/* Find which quirks are needed for a particular vendor/ model pair */
Mathias Krause76d51dd2014-07-16 19:43:04 +0200586static void __init find_quirks(void)
Carlos Corbacho745a5d22008-02-05 02:17:10 +0000587{
588 if (!force_series) {
589 dmi_check_system(acer_quirks);
590 } else if (force_series == 2490) {
591 quirks = &quirk_acer_travelmate_2490;
592 }
593
594 if (quirks == NULL)
595 quirks = &quirk_unknown;
596
597 set_quirks();
598}
599
600/*
601 * General interface convenience methods
602 */
603
604static bool has_cap(u32 cap)
605{
606 if ((interface->capability & cap) != 0)
607 return 1;
608
609 return 0;
610}
611
612/*
613 * AMW0 (V1) interface
614 */
615struct wmab_args {
616 u32 eax;
617 u32 ebx;
618 u32 ecx;
619 u32 edx;
620};
621
622struct wmab_ret {
623 u32 eax;
624 u32 ebx;
625 u32 ecx;
626 u32 edx;
627 u32 eex;
628};
629
630static acpi_status wmab_execute(struct wmab_args *regbuf,
631struct acpi_buffer *result)
632{
633 struct acpi_buffer input;
634 acpi_status status;
635 input.length = sizeof(struct wmab_args);
636 input.pointer = (u8 *)regbuf;
637
638 status = wmi_evaluate_method(AMW0_GUID1, 1, 1, &input, result);
639
640 return status;
641}
642
Lee, Chun-Yi38db1572012-01-09 14:26:44 +0800643static acpi_status AMW0_get_u32(u32 *value, u32 cap)
Carlos Corbacho745a5d22008-02-05 02:17:10 +0000644{
645 int err;
646 u8 result;
647
648 switch (cap) {
649 case ACER_CAP_MAILLED:
650 switch (quirks->mailled) {
651 default:
652 err = ec_read(0xA, &result);
653 if (err)
654 return AE_ERROR;
655 *value = (result >> 7) & 0x1;
656 return AE_OK;
657 }
658 break;
659 case ACER_CAP_WIRELESS:
660 switch (quirks->wireless) {
661 case 1:
662 err = ec_read(0x7B, &result);
663 if (err)
664 return AE_ERROR;
665 *value = result & 0x1;
666 return AE_OK;
Carlos Corbacho6f061ab2008-06-21 09:09:38 +0100667 case 2:
668 err = ec_read(0x71, &result);
669 if (err)
670 return AE_ERROR;
671 *value = result & 0x1;
672 return AE_OK;
Lee, Chun-Yi15b956a2011-07-30 17:00:45 +0800673 case 3:
674 err = ec_read(0x78, &result);
675 if (err)
676 return AE_ERROR;
677 *value = result & 0x1;
678 return AE_OK;
Carlos Corbacho745a5d22008-02-05 02:17:10 +0000679 default:
680 err = ec_read(0xA, &result);
681 if (err)
682 return AE_ERROR;
683 *value = (result >> 2) & 0x1;
684 return AE_OK;
685 }
686 break;
687 case ACER_CAP_BLUETOOTH:
688 switch (quirks->bluetooth) {
689 default:
690 err = ec_read(0xA, &result);
691 if (err)
692 return AE_ERROR;
693 *value = (result >> 4) & 0x1;
694 return AE_OK;
695 }
696 break;
697 case ACER_CAP_BRIGHTNESS:
698 switch (quirks->brightness) {
699 default:
700 err = ec_read(0x83, &result);
701 if (err)
702 return AE_ERROR;
703 *value = result;
704 return AE_OK;
705 }
706 break;
707 default:
Lin Ming08237972008-08-08 11:57:11 +0800708 return AE_ERROR;
Carlos Corbacho745a5d22008-02-05 02:17:10 +0000709 }
710 return AE_OK;
711}
712
Lee, Chun-Yi38db1572012-01-09 14:26:44 +0800713static acpi_status AMW0_set_u32(u32 value, u32 cap)
Carlos Corbacho745a5d22008-02-05 02:17:10 +0000714{
715 struct wmab_args args;
716
717 args.eax = ACER_AMW0_WRITE;
718 args.ebx = value ? (1<<8) : 0;
719 args.ecx = args.edx = 0;
720
721 switch (cap) {
722 case ACER_CAP_MAILLED:
723 if (value > 1)
724 return AE_BAD_PARAMETER;
725 args.ebx |= ACER_AMW0_MAILLED_MASK;
726 break;
727 case ACER_CAP_WIRELESS:
728 if (value > 1)
729 return AE_BAD_PARAMETER;
730 args.ebx |= ACER_AMW0_WIRELESS_MASK;
731 break;
732 case ACER_CAP_BLUETOOTH:
733 if (value > 1)
734 return AE_BAD_PARAMETER;
735 args.ebx |= ACER_AMW0_BLUETOOTH_MASK;
736 break;
737 case ACER_CAP_BRIGHTNESS:
738 if (value > max_brightness)
739 return AE_BAD_PARAMETER;
740 switch (quirks->brightness) {
Carlos Corbacho745a5d22008-02-05 02:17:10 +0000741 default:
Carlos Corbacho4609d022008-02-08 23:51:49 +0000742 return ec_write(0x83, value);
743 break;
Carlos Corbacho745a5d22008-02-05 02:17:10 +0000744 }
745 default:
Lin Ming08237972008-08-08 11:57:11 +0800746 return AE_ERROR;
Carlos Corbacho745a5d22008-02-05 02:17:10 +0000747 }
748
749 /* Actually do the set */
750 return wmab_execute(&args, NULL);
751}
752
Mathias Krause76d51dd2014-07-16 19:43:04 +0200753static acpi_status __init AMW0_find_mailled(void)
Carlos Corbacho745a5d22008-02-05 02:17:10 +0000754{
755 struct wmab_args args;
756 struct wmab_ret ret;
757 acpi_status status = AE_OK;
758 struct acpi_buffer out = { ACPI_ALLOCATE_BUFFER, NULL };
759 union acpi_object *obj;
760
761 args.eax = 0x86;
762 args.ebx = args.ecx = args.edx = 0;
763
764 status = wmab_execute(&args, &out);
765 if (ACPI_FAILURE(status))
766 return status;
767
768 obj = (union acpi_object *) out.pointer;
769 if (obj && obj->type == ACPI_TYPE_BUFFER &&
770 obj->buffer.length == sizeof(struct wmab_ret)) {
771 ret = *((struct wmab_ret *) obj->buffer.pointer);
772 } else {
Axel Lin7677fbd2010-07-20 15:19:53 -0700773 kfree(out.pointer);
Carlos Corbacho745a5d22008-02-05 02:17:10 +0000774 return AE_ERROR;
775 }
776
777 if (ret.eex & 0x1)
778 interface->capability |= ACER_CAP_MAILLED;
779
780 kfree(out.pointer);
781
782 return AE_OK;
783}
784
Mathias Krause76d51dd2014-07-16 19:43:04 +0200785static int AMW0_set_cap_acpi_check_device_found __initdata;
Ike Panhc461e7432012-02-03 16:46:39 +0800786
Mathias Krause76d51dd2014-07-16 19:43:04 +0200787static acpi_status __init AMW0_set_cap_acpi_check_device_cb(acpi_handle handle,
Ike Panhc461e7432012-02-03 16:46:39 +0800788 u32 level, void *context, void **retval)
789{
790 AMW0_set_cap_acpi_check_device_found = 1;
791 return AE_OK;
792}
793
Mathias Krause76d51dd2014-07-16 19:43:04 +0200794static const struct acpi_device_id norfkill_ids[] __initconst = {
Ike Panhc461e7432012-02-03 16:46:39 +0800795 { "VPC2004", 0},
796 { "IBM0068", 0},
797 { "LEN0068", 0},
Lee, Chun-Yi5719b812012-03-23 12:36:44 +0800798 { "SNY5001", 0}, /* sony-laptop in charge */
Ike Panhc461e7432012-02-03 16:46:39 +0800799 { "", 0},
800};
801
Mathias Krause76d51dd2014-07-16 19:43:04 +0200802static int __init AMW0_set_cap_acpi_check_device(void)
Ike Panhc461e7432012-02-03 16:46:39 +0800803{
804 const struct acpi_device_id *id;
805
806 for (id = norfkill_ids; id->id[0]; id++)
807 acpi_get_devices(id->id, AMW0_set_cap_acpi_check_device_cb,
808 NULL, NULL);
809 return AMW0_set_cap_acpi_check_device_found;
810}
811
Mathias Krause76d51dd2014-07-16 19:43:04 +0200812static acpi_status __init AMW0_set_capabilities(void)
Carlos Corbacho745a5d22008-02-05 02:17:10 +0000813{
814 struct wmab_args args;
815 struct wmab_ret ret;
Axel Lin7677fbd2010-07-20 15:19:53 -0700816 acpi_status status;
Carlos Corbacho745a5d22008-02-05 02:17:10 +0000817 struct acpi_buffer out = { ACPI_ALLOCATE_BUFFER, NULL };
818 union acpi_object *obj;
819
Carlos Corbacho5753dd52008-06-21 09:09:48 +0100820 /*
821 * On laptops with this strange GUID (non Acer), normal probing doesn't
822 * work.
823 */
824 if (wmi_has_guid(AMW0_GUID2)) {
Ike Panhc461e7432012-02-03 16:46:39 +0800825 if ((quirks != &quirk_unknown) ||
826 !AMW0_set_cap_acpi_check_device())
827 interface->capability |= ACER_CAP_WIRELESS;
Carlos Corbacho5753dd52008-06-21 09:09:48 +0100828 return AE_OK;
829 }
830
Carlos Corbacho745a5d22008-02-05 02:17:10 +0000831 args.eax = ACER_AMW0_WRITE;
832 args.ecx = args.edx = 0;
833
834 args.ebx = 0xa2 << 8;
835 args.ebx |= ACER_AMW0_WIRELESS_MASK;
836
837 status = wmab_execute(&args, &out);
838 if (ACPI_FAILURE(status))
839 return status;
840
Axel Lin7677fbd2010-07-20 15:19:53 -0700841 obj = out.pointer;
Carlos Corbacho745a5d22008-02-05 02:17:10 +0000842 if (obj && obj->type == ACPI_TYPE_BUFFER &&
843 obj->buffer.length == sizeof(struct wmab_ret)) {
844 ret = *((struct wmab_ret *) obj->buffer.pointer);
845 } else {
Axel Lin7677fbd2010-07-20 15:19:53 -0700846 status = AE_ERROR;
847 goto out;
Carlos Corbacho745a5d22008-02-05 02:17:10 +0000848 }
849
850 if (ret.eax & 0x1)
851 interface->capability |= ACER_CAP_WIRELESS;
852
853 args.ebx = 2 << 8;
854 args.ebx |= ACER_AMW0_BLUETOOTH_MASK;
855
Axel Lin7677fbd2010-07-20 15:19:53 -0700856 /*
857 * It's ok to use existing buffer for next wmab_execute call.
858 * But we need to kfree(out.pointer) if next wmab_execute fail.
859 */
Carlos Corbacho745a5d22008-02-05 02:17:10 +0000860 status = wmab_execute(&args, &out);
861 if (ACPI_FAILURE(status))
Axel Lin7677fbd2010-07-20 15:19:53 -0700862 goto out;
Carlos Corbacho745a5d22008-02-05 02:17:10 +0000863
864 obj = (union acpi_object *) out.pointer;
865 if (obj && obj->type == ACPI_TYPE_BUFFER
866 && obj->buffer.length == sizeof(struct wmab_ret)) {
867 ret = *((struct wmab_ret *) obj->buffer.pointer);
868 } else {
Axel Lin7677fbd2010-07-20 15:19:53 -0700869 status = AE_ERROR;
870 goto out;
Carlos Corbacho745a5d22008-02-05 02:17:10 +0000871 }
872
873 if (ret.eax & 0x1)
874 interface->capability |= ACER_CAP_BLUETOOTH;
875
Carlos Corbacho745a5d22008-02-05 02:17:10 +0000876 /*
877 * This appears to be safe to enable, since all Wistron based laptops
878 * appear to use the same EC register for brightness, even if they
879 * differ for wireless, etc
880 */
Carlos Corbacho9991d9f2008-06-21 09:09:22 +0100881 if (quirks->brightness >= 0)
882 interface->capability |= ACER_CAP_BRIGHTNESS;
Carlos Corbacho745a5d22008-02-05 02:17:10 +0000883
Axel Lin7677fbd2010-07-20 15:19:53 -0700884 status = AE_OK;
885out:
886 kfree(out.pointer);
887 return status;
Carlos Corbacho745a5d22008-02-05 02:17:10 +0000888}
889
890static struct wmi_interface AMW0_interface = {
891 .type = ACER_AMW0,
892};
893
894static struct wmi_interface AMW0_V2_interface = {
895 .type = ACER_AMW0_V2,
896};
897
898/*
899 * New interface (The WMID interface)
900 */
901static acpi_status
902WMI_execute_u32(u32 method_id, u32 in, u32 *out)
903{
904 struct acpi_buffer input = { (acpi_size) sizeof(u32), (void *)(&in) };
905 struct acpi_buffer result = { ACPI_ALLOCATE_BUFFER, NULL };
906 union acpi_object *obj;
Lee, Chun-Yif20aaba2012-12-14 16:14:26 +0800907 u32 tmp = 0;
Carlos Corbacho745a5d22008-02-05 02:17:10 +0000908 acpi_status status;
909
910 status = wmi_evaluate_method(WMID_GUID1, 1, method_id, &input, &result);
911
912 if (ACPI_FAILURE(status))
913 return status;
914
915 obj = (union acpi_object *) result.pointer;
Lee, Chun-Yif20aaba2012-12-14 16:14:26 +0800916 if (obj) {
917 if (obj->type == ACPI_TYPE_BUFFER &&
918 (obj->buffer.length == sizeof(u32) ||
919 obj->buffer.length == sizeof(u64))) {
920 tmp = *((u32 *) obj->buffer.pointer);
921 } else if (obj->type == ACPI_TYPE_INTEGER) {
922 tmp = (u32) obj->integer.value;
923 }
Carlos Corbacho745a5d22008-02-05 02:17:10 +0000924 }
925
926 if (out)
927 *out = tmp;
928
929 kfree(result.pointer);
930
931 return status;
932}
933
Lee, Chun-Yi38db1572012-01-09 14:26:44 +0800934static acpi_status WMID_get_u32(u32 *value, u32 cap)
Carlos Corbacho745a5d22008-02-05 02:17:10 +0000935{
936 acpi_status status;
937 u8 tmp;
938 u32 result, method_id = 0;
939
940 switch (cap) {
941 case ACER_CAP_WIRELESS:
942 method_id = ACER_WMID_GET_WIRELESS_METHODID;
943 break;
944 case ACER_CAP_BLUETOOTH:
945 method_id = ACER_WMID_GET_BLUETOOTH_METHODID;
946 break;
947 case ACER_CAP_BRIGHTNESS:
948 method_id = ACER_WMID_GET_BRIGHTNESS_METHODID;
949 break;
950 case ACER_CAP_THREEG:
951 method_id = ACER_WMID_GET_THREEG_METHODID;
952 break;
953 case ACER_CAP_MAILLED:
954 if (quirks->mailled == 1) {
955 ec_read(0x9f, &tmp);
956 *value = tmp & 0x1;
957 return 0;
958 }
959 default:
Lin Ming08237972008-08-08 11:57:11 +0800960 return AE_ERROR;
Carlos Corbacho745a5d22008-02-05 02:17:10 +0000961 }
962 status = WMI_execute_u32(method_id, 0, &result);
963
964 if (ACPI_SUCCESS(status))
965 *value = (u8)result;
966
967 return status;
968}
969
Lee, Chun-Yi38db1572012-01-09 14:26:44 +0800970static acpi_status WMID_set_u32(u32 value, u32 cap)
Carlos Corbacho745a5d22008-02-05 02:17:10 +0000971{
972 u32 method_id = 0;
973 char param;
974
975 switch (cap) {
976 case ACER_CAP_BRIGHTNESS:
977 if (value > max_brightness)
978 return AE_BAD_PARAMETER;
979 method_id = ACER_WMID_SET_BRIGHTNESS_METHODID;
980 break;
981 case ACER_CAP_WIRELESS:
982 if (value > 1)
983 return AE_BAD_PARAMETER;
984 method_id = ACER_WMID_SET_WIRELESS_METHODID;
985 break;
986 case ACER_CAP_BLUETOOTH:
987 if (value > 1)
988 return AE_BAD_PARAMETER;
989 method_id = ACER_WMID_SET_BLUETOOTH_METHODID;
990 break;
991 case ACER_CAP_THREEG:
992 if (value > 1)
993 return AE_BAD_PARAMETER;
994 method_id = ACER_WMID_SET_THREEG_METHODID;
995 break;
996 case ACER_CAP_MAILLED:
997 if (value > 1)
998 return AE_BAD_PARAMETER;
999 if (quirks->mailled == 1) {
1000 param = value ? 0x92 : 0x93;
Dmitry Torokhov181d6832009-09-16 01:06:43 -07001001 i8042_lock_chip();
Carlos Corbacho745a5d22008-02-05 02:17:10 +00001002 i8042_command(&param, 0x1059);
Dmitry Torokhov181d6832009-09-16 01:06:43 -07001003 i8042_unlock_chip();
Carlos Corbacho745a5d22008-02-05 02:17:10 +00001004 return 0;
1005 }
1006 break;
1007 default:
Lin Ming08237972008-08-08 11:57:11 +08001008 return AE_ERROR;
Carlos Corbacho745a5d22008-02-05 02:17:10 +00001009 }
1010 return WMI_execute_u32(method_id, (u32)value, NULL);
1011}
1012
Lee, Chun-Yi72e71de2011-08-18 18:47:32 +08001013static acpi_status wmid3_get_device_status(u32 *value, u16 device)
1014{
1015 struct wmid3_gds_return_value return_value;
1016 acpi_status status;
1017 union acpi_object *obj;
Lee, Chun-Yi996d23b2012-03-19 17:37:33 +08001018 struct wmid3_gds_get_input_param params = {
Lee, Chun-Yi72e71de2011-08-18 18:47:32 +08001019 .function_num = 0x1,
Lee, Chun-Yi34b6cfa2012-03-19 17:37:32 +08001020 .hotkey_number = commun_fn_key_number,
Lee, Chun-Yi72e71de2011-08-18 18:47:32 +08001021 .devices = device,
1022 };
1023 struct acpi_buffer input = {
Lee, Chun-Yi996d23b2012-03-19 17:37:33 +08001024 sizeof(struct wmid3_gds_get_input_param),
Lee, Chun-Yi72e71de2011-08-18 18:47:32 +08001025 &params
1026 };
1027 struct acpi_buffer output = { ACPI_ALLOCATE_BUFFER, NULL };
1028
1029 status = wmi_evaluate_method(WMID_GUID3, 0, 0x2, &input, &output);
1030 if (ACPI_FAILURE(status))
1031 return status;
1032
1033 obj = output.pointer;
1034
1035 if (!obj)
1036 return AE_ERROR;
1037 else if (obj->type != ACPI_TYPE_BUFFER) {
1038 kfree(obj);
1039 return AE_ERROR;
1040 }
1041 if (obj->buffer.length != 8) {
1042 pr_warn("Unknown buffer length %d\n", obj->buffer.length);
1043 kfree(obj);
1044 return AE_ERROR;
1045 }
1046
1047 return_value = *((struct wmid3_gds_return_value *)obj->buffer.pointer);
1048 kfree(obj);
1049
1050 if (return_value.error_code || return_value.ec_return_value)
1051 pr_warn("Get 0x%x Device Status failed: 0x%x - 0x%x\n",
1052 device,
1053 return_value.error_code,
1054 return_value.ec_return_value);
1055 else
1056 *value = !!(return_value.devices & device);
1057
1058 return status;
1059}
1060
1061static acpi_status wmid_v2_get_u32(u32 *value, u32 cap)
1062{
1063 u16 device;
1064
1065 switch (cap) {
1066 case ACER_CAP_WIRELESS:
1067 device = ACER_WMID3_GDS_WIRELESS;
1068 break;
1069 case ACER_CAP_BLUETOOTH:
1070 device = ACER_WMID3_GDS_BLUETOOTH;
1071 break;
1072 case ACER_CAP_THREEG:
1073 device = ACER_WMID3_GDS_THREEG;
1074 break;
1075 default:
1076 return AE_ERROR;
1077 }
1078 return wmid3_get_device_status(value, device);
1079}
1080
1081static acpi_status wmid3_set_device_status(u32 value, u16 device)
1082{
1083 struct wmid3_gds_return_value return_value;
1084 acpi_status status;
1085 union acpi_object *obj;
1086 u16 devices;
Lee, Chun-Yi996d23b2012-03-19 17:37:33 +08001087 struct wmid3_gds_get_input_param get_params = {
Lee, Chun-Yi72e71de2011-08-18 18:47:32 +08001088 .function_num = 0x1,
Lee, Chun-Yi34b6cfa2012-03-19 17:37:32 +08001089 .hotkey_number = commun_fn_key_number,
Lee, Chun-Yi1d1fc8a2011-10-06 19:06:13 +08001090 .devices = commun_func_bitmap,
Lee, Chun-Yi72e71de2011-08-18 18:47:32 +08001091 };
Lee, Chun-Yi996d23b2012-03-19 17:37:33 +08001092 struct acpi_buffer get_input = {
1093 sizeof(struct wmid3_gds_get_input_param),
1094 &get_params
1095 };
1096 struct wmid3_gds_set_input_param set_params = {
1097 .function_num = 0x2,
1098 .hotkey_number = commun_fn_key_number,
1099 .devices = commun_func_bitmap,
1100 };
1101 struct acpi_buffer set_input = {
1102 sizeof(struct wmid3_gds_set_input_param),
1103 &set_params
Lee, Chun-Yi72e71de2011-08-18 18:47:32 +08001104 };
1105 struct acpi_buffer output = { ACPI_ALLOCATE_BUFFER, NULL };
1106 struct acpi_buffer output2 = { ACPI_ALLOCATE_BUFFER, NULL };
1107
Lee, Chun-Yi996d23b2012-03-19 17:37:33 +08001108 status = wmi_evaluate_method(WMID_GUID3, 0, 0x2, &get_input, &output);
Lee, Chun-Yi72e71de2011-08-18 18:47:32 +08001109 if (ACPI_FAILURE(status))
1110 return status;
1111
1112 obj = output.pointer;
1113
1114 if (!obj)
1115 return AE_ERROR;
1116 else if (obj->type != ACPI_TYPE_BUFFER) {
1117 kfree(obj);
1118 return AE_ERROR;
1119 }
1120 if (obj->buffer.length != 8) {
Joe Perches6e71f382011-11-29 11:04:05 -08001121 pr_warn("Unknown buffer length %d\n", obj->buffer.length);
Lee, Chun-Yi72e71de2011-08-18 18:47:32 +08001122 kfree(obj);
1123 return AE_ERROR;
1124 }
1125
1126 return_value = *((struct wmid3_gds_return_value *)obj->buffer.pointer);
1127 kfree(obj);
1128
1129 if (return_value.error_code || return_value.ec_return_value) {
Joe Perches6e71f382011-11-29 11:04:05 -08001130 pr_warn("Get Current Device Status failed: 0x%x - 0x%x\n",
1131 return_value.error_code,
Lee, Chun-Yi72e71de2011-08-18 18:47:32 +08001132 return_value.ec_return_value);
1133 return status;
1134 }
1135
1136 devices = return_value.devices;
Lee, Chun-Yi996d23b2012-03-19 17:37:33 +08001137 set_params.devices = (value) ? (devices | device) : (devices & ~device);
Lee, Chun-Yi72e71de2011-08-18 18:47:32 +08001138
Lee, Chun-Yi996d23b2012-03-19 17:37:33 +08001139 status = wmi_evaluate_method(WMID_GUID3, 0, 0x1, &set_input, &output2);
Lee, Chun-Yi72e71de2011-08-18 18:47:32 +08001140 if (ACPI_FAILURE(status))
1141 return status;
1142
1143 obj = output2.pointer;
1144
1145 if (!obj)
1146 return AE_ERROR;
1147 else if (obj->type != ACPI_TYPE_BUFFER) {
1148 kfree(obj);
1149 return AE_ERROR;
1150 }
1151 if (obj->buffer.length != 4) {
Joe Perches6e71f382011-11-29 11:04:05 -08001152 pr_warn("Unknown buffer length %d\n", obj->buffer.length);
Lee, Chun-Yi72e71de2011-08-18 18:47:32 +08001153 kfree(obj);
1154 return AE_ERROR;
1155 }
1156
1157 return_value = *((struct wmid3_gds_return_value *)obj->buffer.pointer);
1158 kfree(obj);
1159
1160 if (return_value.error_code || return_value.ec_return_value)
Joe Perches6e71f382011-11-29 11:04:05 -08001161 pr_warn("Set Device Status failed: 0x%x - 0x%x\n",
1162 return_value.error_code,
Lee, Chun-Yi72e71de2011-08-18 18:47:32 +08001163 return_value.ec_return_value);
1164
1165 return status;
1166}
1167
1168static acpi_status wmid_v2_set_u32(u32 value, u32 cap)
1169{
1170 u16 device;
1171
1172 switch (cap) {
1173 case ACER_CAP_WIRELESS:
1174 device = ACER_WMID3_GDS_WIRELESS;
1175 break;
1176 case ACER_CAP_BLUETOOTH:
1177 device = ACER_WMID3_GDS_BLUETOOTH;
1178 break;
1179 case ACER_CAP_THREEG:
1180 device = ACER_WMID3_GDS_THREEG;
1181 break;
1182 default:
1183 return AE_ERROR;
1184 }
1185 return wmid3_set_device_status(value, device);
1186}
1187
Mathias Krause76d51dd2014-07-16 19:43:04 +02001188static void __init type_aa_dmi_decode(const struct dmi_header *header, void *d)
Lee, Chun-Yi6c3df882010-12-07 10:29:23 +08001189{
1190 struct hotkey_function_type_aa *type_aa;
1191
1192 /* We are looking for OEM-specific Type AAh */
1193 if (header->type != 0xAA)
1194 return;
1195
1196 has_type_aa = true;
1197 type_aa = (struct hotkey_function_type_aa *) header;
1198
Lee, Chun-Yicae15702011-03-16 18:52:36 +08001199 pr_info("Function bitmap for Communication Button: 0x%x\n",
Lee, Chun-Yi6c3df882010-12-07 10:29:23 +08001200 type_aa->commun_func_bitmap);
Lee, Chun-Yi1d1fc8a2011-10-06 19:06:13 +08001201 commun_func_bitmap = type_aa->commun_func_bitmap;
Lee, Chun-Yi6c3df882010-12-07 10:29:23 +08001202
1203 if (type_aa->commun_func_bitmap & ACER_WMID3_GDS_WIRELESS)
1204 interface->capability |= ACER_CAP_WIRELESS;
1205 if (type_aa->commun_func_bitmap & ACER_WMID3_GDS_THREEG)
1206 interface->capability |= ACER_CAP_THREEG;
1207 if (type_aa->commun_func_bitmap & ACER_WMID3_GDS_BLUETOOTH)
1208 interface->capability |= ACER_CAP_BLUETOOTH;
Lee, Chun-Yi34b6cfa2012-03-19 17:37:32 +08001209
1210 commun_fn_key_number = type_aa->commun_fn_key_number;
Lee, Chun-Yi6c3df882010-12-07 10:29:23 +08001211}
1212
Mathias Krause76d51dd2014-07-16 19:43:04 +02001213static acpi_status __init WMID_set_capabilities(void)
Carlos Corbacho745a5d22008-02-05 02:17:10 +00001214{
1215 struct acpi_buffer out = {ACPI_ALLOCATE_BUFFER, NULL};
1216 union acpi_object *obj;
1217 acpi_status status;
1218 u32 devices;
1219
1220 status = wmi_query_block(WMID_GUID2, 1, &out);
1221 if (ACPI_FAILURE(status))
1222 return status;
1223
1224 obj = (union acpi_object *) out.pointer;
Lee, Chun-Yif20aaba2012-12-14 16:14:26 +08001225 if (obj) {
1226 if (obj->type == ACPI_TYPE_BUFFER &&
1227 (obj->buffer.length == sizeof(u32) ||
1228 obj->buffer.length == sizeof(u64))) {
1229 devices = *((u32 *) obj->buffer.pointer);
1230 } else if (obj->type == ACPI_TYPE_INTEGER) {
1231 devices = (u32) obj->integer.value;
Lee, Chun-Yif24c96e2013-01-03 10:37:45 +08001232 } else {
1233 kfree(out.pointer);
1234 return AE_ERROR;
Lee, Chun-Yif20aaba2012-12-14 16:14:26 +08001235 }
Carlos Corbacho745a5d22008-02-05 02:17:10 +00001236 } else {
Axel Lin66904862010-07-20 15:19:52 -07001237 kfree(out.pointer);
Carlos Corbacho745a5d22008-02-05 02:17:10 +00001238 return AE_ERROR;
1239 }
1240
Lee, Chun-Yi1fbc01a2011-08-18 18:47:34 +08001241 pr_info("Function bitmap for Communication Device: 0x%x\n", devices);
1242 if (devices & 0x07)
1243 interface->capability |= ACER_CAP_WIRELESS;
Lee, Chun-Yi72e71de2011-08-18 18:47:32 +08001244 if (devices & 0x40)
1245 interface->capability |= ACER_CAP_THREEG;
1246 if (devices & 0x10)
1247 interface->capability |= ACER_CAP_BLUETOOTH;
Carlos Corbacho745a5d22008-02-05 02:17:10 +00001248
Carlos Corbacho745a5d22008-02-05 02:17:10 +00001249 if (!(devices & 0x20))
1250 max_brightness = 0x9;
1251
Axel Lin66904862010-07-20 15:19:52 -07001252 kfree(out.pointer);
Carlos Corbacho745a5d22008-02-05 02:17:10 +00001253 return status;
1254}
1255
1256static struct wmi_interface wmid_interface = {
1257 .type = ACER_WMID,
1258};
1259
Lee, Chun-Yi72e71de2011-08-18 18:47:32 +08001260static struct wmi_interface wmid_v2_interface = {
1261 .type = ACER_WMID_v2,
1262};
1263
Carlos Corbacho745a5d22008-02-05 02:17:10 +00001264/*
1265 * Generic Device (interface-independent)
1266 */
1267
1268static acpi_status get_u32(u32 *value, u32 cap)
1269{
Lin Ming08237972008-08-08 11:57:11 +08001270 acpi_status status = AE_ERROR;
Carlos Corbacho745a5d22008-02-05 02:17:10 +00001271
1272 switch (interface->type) {
1273 case ACER_AMW0:
Lee, Chun-Yi38db1572012-01-09 14:26:44 +08001274 status = AMW0_get_u32(value, cap);
Carlos Corbacho745a5d22008-02-05 02:17:10 +00001275 break;
1276 case ACER_AMW0_V2:
1277 if (cap == ACER_CAP_MAILLED) {
Lee, Chun-Yi38db1572012-01-09 14:26:44 +08001278 status = AMW0_get_u32(value, cap);
Carlos Corbacho745a5d22008-02-05 02:17:10 +00001279 break;
1280 }
1281 case ACER_WMID:
Lee, Chun-Yi38db1572012-01-09 14:26:44 +08001282 status = WMID_get_u32(value, cap);
Carlos Corbacho745a5d22008-02-05 02:17:10 +00001283 break;
Lee, Chun-Yi72e71de2011-08-18 18:47:32 +08001284 case ACER_WMID_v2:
1285 if (cap & (ACER_CAP_WIRELESS |
1286 ACER_CAP_BLUETOOTH |
1287 ACER_CAP_THREEG))
1288 status = wmid_v2_get_u32(value, cap);
1289 else if (wmi_has_guid(WMID_GUID2))
Lee, Chun-Yi38db1572012-01-09 14:26:44 +08001290 status = WMID_get_u32(value, cap);
Lee, Chun-Yi72e71de2011-08-18 18:47:32 +08001291 break;
Carlos Corbacho745a5d22008-02-05 02:17:10 +00001292 }
1293
1294 return status;
1295}
1296
1297static acpi_status set_u32(u32 value, u32 cap)
1298{
Carlos Corbacho5c742b42008-08-06 19:13:56 +01001299 acpi_status status;
1300
Carlos Corbacho745a5d22008-02-05 02:17:10 +00001301 if (interface->capability & cap) {
1302 switch (interface->type) {
1303 case ACER_AMW0:
Lee, Chun-Yi38db1572012-01-09 14:26:44 +08001304 return AMW0_set_u32(value, cap);
Carlos Corbacho745a5d22008-02-05 02:17:10 +00001305 case ACER_AMW0_V2:
Carlos Corbacho5c742b42008-08-06 19:13:56 +01001306 if (cap == ACER_CAP_MAILLED)
Lee, Chun-Yi38db1572012-01-09 14:26:44 +08001307 return AMW0_set_u32(value, cap);
Carlos Corbacho5c742b42008-08-06 19:13:56 +01001308
1309 /*
1310 * On some models, some WMID methods don't toggle
1311 * properly. For those cases, we want to run the AMW0
1312 * method afterwards to be certain we've really toggled
1313 * the device state.
1314 */
1315 if (cap == ACER_CAP_WIRELESS ||
1316 cap == ACER_CAP_BLUETOOTH) {
Lee, Chun-Yi38db1572012-01-09 14:26:44 +08001317 status = WMID_set_u32(value, cap);
Carlos Corbacho5c742b42008-08-06 19:13:56 +01001318 if (ACPI_FAILURE(status))
1319 return status;
1320
Lee, Chun-Yi38db1572012-01-09 14:26:44 +08001321 return AMW0_set_u32(value, cap);
Carlos Corbacho5c742b42008-08-06 19:13:56 +01001322 }
Carlos Corbacho745a5d22008-02-05 02:17:10 +00001323 case ACER_WMID:
Lee, Chun-Yi38db1572012-01-09 14:26:44 +08001324 return WMID_set_u32(value, cap);
Lee, Chun-Yi72e71de2011-08-18 18:47:32 +08001325 case ACER_WMID_v2:
1326 if (cap & (ACER_CAP_WIRELESS |
1327 ACER_CAP_BLUETOOTH |
1328 ACER_CAP_THREEG))
1329 return wmid_v2_set_u32(value, cap);
1330 else if (wmi_has_guid(WMID_GUID2))
Lee, Chun-Yi38db1572012-01-09 14:26:44 +08001331 return WMID_set_u32(value, cap);
Carlos Corbacho745a5d22008-02-05 02:17:10 +00001332 default:
1333 return AE_BAD_PARAMETER;
1334 }
1335 }
1336 return AE_BAD_PARAMETER;
1337}
1338
1339static void __init acer_commandline_init(void)
1340{
1341 /*
1342 * These will all fail silently if the value given is invalid, or the
1343 * capability isn't available on the given interface
1344 */
Lee, Chun-Yic2647b52011-04-15 18:42:47 +08001345 if (mailled >= 0)
1346 set_u32(mailled, ACER_CAP_MAILLED);
1347 if (!has_type_aa && threeg >= 0)
Lee, Chun-Yi6c3df882010-12-07 10:29:23 +08001348 set_u32(threeg, ACER_CAP_THREEG);
Lee, Chun-Yic2647b52011-04-15 18:42:47 +08001349 if (brightness >= 0)
1350 set_u32(brightness, ACER_CAP_BRIGHTNESS);
Carlos Corbacho745a5d22008-02-05 02:17:10 +00001351}
1352
1353/*
1354 * LED device (Mail LED only, no other LEDs known yet)
1355 */
1356static void mail_led_set(struct led_classdev *led_cdev,
1357enum led_brightness value)
1358{
1359 set_u32(value, ACER_CAP_MAILLED);
1360}
1361
1362static struct led_classdev mail_led = {
Carlos Corbacho343c0042008-02-24 13:34:18 +00001363 .name = "acer-wmi::mail",
Carlos Corbacho745a5d22008-02-05 02:17:10 +00001364 .brightness_set = mail_led_set,
1365};
1366
Greg Kroah-Hartmanb859f152012-12-21 13:18:33 -08001367static int acer_led_init(struct device *dev)
Carlos Corbacho745a5d22008-02-05 02:17:10 +00001368{
1369 return led_classdev_register(dev, &mail_led);
1370}
1371
1372static void acer_led_exit(void)
1373{
Pali Rohár9a0b74f2011-02-26 21:18:58 +01001374 set_u32(LED_OFF, ACER_CAP_MAILLED);
Carlos Corbacho745a5d22008-02-05 02:17:10 +00001375 led_classdev_unregister(&mail_led);
1376}
1377
1378/*
1379 * Backlight device
1380 */
1381static struct backlight_device *acer_backlight_device;
1382
1383static int read_brightness(struct backlight_device *bd)
1384{
1385 u32 value;
1386 get_u32(&value, ACER_CAP_BRIGHTNESS);
1387 return value;
1388}
1389
1390static int update_bl_status(struct backlight_device *bd)
1391{
Carlos Corbachof2b585b2008-06-21 09:09:27 +01001392 int intensity = bd->props.brightness;
1393
1394 if (bd->props.power != FB_BLANK_UNBLANK)
1395 intensity = 0;
1396 if (bd->props.fb_blank != FB_BLANK_UNBLANK)
1397 intensity = 0;
1398
1399 set_u32(intensity, ACER_CAP_BRIGHTNESS);
1400
Carlos Corbacho745a5d22008-02-05 02:17:10 +00001401 return 0;
1402}
1403
Lionel Debrouxacc24722010-11-16 14:14:02 +01001404static const struct backlight_ops acer_bl_ops = {
Carlos Corbacho745a5d22008-02-05 02:17:10 +00001405 .get_brightness = read_brightness,
1406 .update_status = update_bl_status,
1407};
1408
Greg Kroah-Hartmanb859f152012-12-21 13:18:33 -08001409static int acer_backlight_init(struct device *dev)
Carlos Corbacho745a5d22008-02-05 02:17:10 +00001410{
Matthew Garretta19a6ee2010-02-17 16:39:44 -05001411 struct backlight_properties props;
Carlos Corbacho745a5d22008-02-05 02:17:10 +00001412 struct backlight_device *bd;
1413
Matthew Garretta19a6ee2010-02-17 16:39:44 -05001414 memset(&props, 0, sizeof(struct backlight_properties));
Matthew Garrettbb7ca742011-03-22 16:30:21 -07001415 props.type = BACKLIGHT_PLATFORM;
Matthew Garretta19a6ee2010-02-17 16:39:44 -05001416 props.max_brightness = max_brightness;
1417 bd = backlight_device_register("acer-wmi", dev, NULL, &acer_bl_ops,
1418 &props);
Carlos Corbacho745a5d22008-02-05 02:17:10 +00001419 if (IS_ERR(bd)) {
Lee, Chun-Yicae15702011-03-16 18:52:36 +08001420 pr_err("Could not register Acer backlight device\n");
Carlos Corbacho745a5d22008-02-05 02:17:10 +00001421 acer_backlight_device = NULL;
1422 return PTR_ERR(bd);
1423 }
1424
1425 acer_backlight_device = bd;
1426
Carlos Corbachof2b585b2008-06-21 09:09:27 +01001427 bd->props.power = FB_BLANK_UNBLANK;
Carlos Corbacho6f6ef822009-12-26 19:24:31 +00001428 bd->props.brightness = read_brightness(bd);
Carlos Corbacho745a5d22008-02-05 02:17:10 +00001429 backlight_update_status(bd);
1430 return 0;
1431}
1432
Sam Ravnborg7560e382008-02-17 13:22:54 +01001433static void acer_backlight_exit(void)
Carlos Corbacho745a5d22008-02-05 02:17:10 +00001434{
1435 backlight_device_unregister(acer_backlight_device);
1436}
1437
1438/*
Marek Vasut1eb3fe12012-06-01 19:11:22 +02001439 * Accelerometer device
1440 */
1441static acpi_handle gsensor_handle;
1442
1443static int acer_gsensor_init(void)
1444{
1445 acpi_status status;
1446 struct acpi_buffer output;
1447 union acpi_object out_obj;
1448
1449 output.length = sizeof(out_obj);
1450 output.pointer = &out_obj;
1451 status = acpi_evaluate_object(gsensor_handle, "_INI", NULL, &output);
1452 if (ACPI_FAILURE(status))
1453 return -1;
1454
1455 return 0;
1456}
1457
1458static int acer_gsensor_open(struct input_dev *input)
1459{
1460 return acer_gsensor_init();
1461}
1462
1463static int acer_gsensor_event(void)
1464{
1465 acpi_status status;
1466 struct acpi_buffer output;
1467 union acpi_object out_obj[5];
1468
1469 if (!has_cap(ACER_CAP_ACCEL))
1470 return -1;
1471
1472 output.length = sizeof(out_obj);
1473 output.pointer = out_obj;
1474
1475 status = acpi_evaluate_object(gsensor_handle, "RDVL", NULL, &output);
1476 if (ACPI_FAILURE(status))
1477 return -1;
1478
1479 if (out_obj->package.count != 4)
1480 return -1;
1481
1482 input_report_abs(acer_wmi_accel_dev, ABS_X,
1483 (s16)out_obj->package.elements[0].integer.value);
1484 input_report_abs(acer_wmi_accel_dev, ABS_Y,
1485 (s16)out_obj->package.elements[1].integer.value);
1486 input_report_abs(acer_wmi_accel_dev, ABS_Z,
1487 (s16)out_obj->package.elements[2].integer.value);
1488 input_sync(acer_wmi_accel_dev);
1489 return 0;
1490}
1491
1492/*
Carlos Corbacho0606e1a2008-10-08 21:40:21 +01001493 * Rfkill devices
1494 */
Carlos Corbacho0606e1a2008-10-08 21:40:21 +01001495static void acer_rfkill_update(struct work_struct *ignored);
1496static DECLARE_DELAYED_WORK(acer_rfkill_work, acer_rfkill_update);
1497static void acer_rfkill_update(struct work_struct *ignored)
1498{
1499 u32 state;
1500 acpi_status status;
1501
Lee, Chun-Yi1709ada2011-08-18 18:47:33 +08001502 if (has_cap(ACER_CAP_WIRELESS)) {
1503 status = get_u32(&state, ACER_CAP_WIRELESS);
1504 if (ACPI_SUCCESS(status)) {
1505 if (quirks->wireless == 3)
1506 rfkill_set_hw_state(wireless_rfkill, !state);
1507 else
1508 rfkill_set_sw_state(wireless_rfkill, !state);
Lee, Chun-Yi15b956a2011-07-30 17:00:45 +08001509 }
1510 }
Carlos Corbacho0606e1a2008-10-08 21:40:21 +01001511
1512 if (has_cap(ACER_CAP_BLUETOOTH)) {
1513 status = get_u32(&state, ACER_CAP_BLUETOOTH);
1514 if (ACPI_SUCCESS(status))
Troy Mourea8784172009-06-17 11:51:56 +01001515 rfkill_set_sw_state(bluetooth_rfkill, !state);
Carlos Corbacho0606e1a2008-10-08 21:40:21 +01001516 }
1517
Lee, Chun-Yib3c90922010-12-07 10:29:22 +08001518 if (has_cap(ACER_CAP_THREEG) && wmi_has_guid(WMID_GUID3)) {
Lee, Chun-Yi72e71de2011-08-18 18:47:32 +08001519 status = get_u32(&state, ACER_WMID3_GDS_THREEG);
Lee, Chun-Yib3c90922010-12-07 10:29:22 +08001520 if (ACPI_SUCCESS(status))
1521 rfkill_set_sw_state(threeg_rfkill, !state);
1522 }
1523
Carlos Corbachoae3a1b42008-10-10 17:33:35 +01001524 schedule_delayed_work(&acer_rfkill_work, round_jiffies_relative(HZ));
Carlos Corbacho0606e1a2008-10-08 21:40:21 +01001525}
1526
Johannes Berg19d337d2009-06-02 13:01:37 +02001527static int acer_rfkill_set(void *data, bool blocked)
Carlos Corbacho0606e1a2008-10-08 21:40:21 +01001528{
1529 acpi_status status;
Johannes Berg19d337d2009-06-02 13:01:37 +02001530 u32 cap = (unsigned long)data;
Lee, Chun-Yi8215af02011-03-28 16:52:02 +08001531
1532 if (rfkill_inited) {
Lee, Chun-Yi72e71de2011-08-18 18:47:32 +08001533 status = set_u32(!blocked, cap);
Lee, Chun-Yi8215af02011-03-28 16:52:02 +08001534 if (ACPI_FAILURE(status))
1535 return -ENODEV;
1536 }
1537
Carlos Corbacho0606e1a2008-10-08 21:40:21 +01001538 return 0;
1539}
1540
Johannes Berg19d337d2009-06-02 13:01:37 +02001541static const struct rfkill_ops acer_rfkill_ops = {
1542 .set_block = acer_rfkill_set,
1543};
1544
1545static struct rfkill *acer_rfkill_register(struct device *dev,
1546 enum rfkill_type type,
1547 char *name, u32 cap)
Carlos Corbacho0606e1a2008-10-08 21:40:21 +01001548{
1549 int err;
Carlos Corbacho0606e1a2008-10-08 21:40:21 +01001550 struct rfkill *rfkill_dev;
Lee, Chun-Yi466449c2010-12-13 10:02:41 +08001551 u32 state;
1552 acpi_status status;
Carlos Corbacho0606e1a2008-10-08 21:40:21 +01001553
Johannes Berg19d337d2009-06-02 13:01:37 +02001554 rfkill_dev = rfkill_alloc(name, dev, type,
1555 &acer_rfkill_ops,
1556 (void *)(unsigned long)cap);
Carlos Corbacho0606e1a2008-10-08 21:40:21 +01001557 if (!rfkill_dev)
1558 return ERR_PTR(-ENOMEM);
Carlos Corbacho0606e1a2008-10-08 21:40:21 +01001559
Lee, Chun-Yi72e71de2011-08-18 18:47:32 +08001560 status = get_u32(&state, cap);
Lee, Chun-Yi466449c2010-12-13 10:02:41 +08001561
Carlos Corbacho0606e1a2008-10-08 21:40:21 +01001562 err = rfkill_register(rfkill_dev);
1563 if (err) {
Johannes Berg19d337d2009-06-02 13:01:37 +02001564 rfkill_destroy(rfkill_dev);
Carlos Corbacho0606e1a2008-10-08 21:40:21 +01001565 return ERR_PTR(err);
1566 }
Lee, Chun-Yi8215af02011-03-28 16:52:02 +08001567
1568 if (ACPI_SUCCESS(status))
1569 rfkill_set_sw_state(rfkill_dev, !state);
1570
Carlos Corbacho0606e1a2008-10-08 21:40:21 +01001571 return rfkill_dev;
1572}
1573
1574static int acer_rfkill_init(struct device *dev)
1575{
Lee, Chun-Yi1709ada2011-08-18 18:47:33 +08001576 int err;
1577
1578 if (has_cap(ACER_CAP_WIRELESS)) {
1579 wireless_rfkill = acer_rfkill_register(dev, RFKILL_TYPE_WLAN,
1580 "acer-wireless", ACER_CAP_WIRELESS);
1581 if (IS_ERR(wireless_rfkill)) {
1582 err = PTR_ERR(wireless_rfkill);
1583 goto error_wireless;
1584 }
1585 }
Carlos Corbacho0606e1a2008-10-08 21:40:21 +01001586
1587 if (has_cap(ACER_CAP_BLUETOOTH)) {
1588 bluetooth_rfkill = acer_rfkill_register(dev,
1589 RFKILL_TYPE_BLUETOOTH, "acer-bluetooth",
1590 ACER_CAP_BLUETOOTH);
1591 if (IS_ERR(bluetooth_rfkill)) {
Lee, Chun-Yi1709ada2011-08-18 18:47:33 +08001592 err = PTR_ERR(bluetooth_rfkill);
1593 goto error_bluetooth;
Carlos Corbacho0606e1a2008-10-08 21:40:21 +01001594 }
1595 }
1596
Lee, Chun-Yib3c90922010-12-07 10:29:22 +08001597 if (has_cap(ACER_CAP_THREEG)) {
1598 threeg_rfkill = acer_rfkill_register(dev,
1599 RFKILL_TYPE_WWAN, "acer-threeg",
1600 ACER_CAP_THREEG);
1601 if (IS_ERR(threeg_rfkill)) {
Lee, Chun-Yi1709ada2011-08-18 18:47:33 +08001602 err = PTR_ERR(threeg_rfkill);
1603 goto error_threeg;
Lee, Chun-Yib3c90922010-12-07 10:29:22 +08001604 }
1605 }
1606
Lee, Chun-Yi8215af02011-03-28 16:52:02 +08001607 rfkill_inited = true;
1608
Lee, Chun-Yi1709ada2011-08-18 18:47:33 +08001609 if ((ec_raw_mode || !wmi_has_guid(ACERWMID_EVENT_GUID)) &&
1610 has_cap(ACER_CAP_WIRELESS | ACER_CAP_BLUETOOTH | ACER_CAP_THREEG))
Lee, Chun-Yi70a9b902011-03-28 06:34:13 -04001611 schedule_delayed_work(&acer_rfkill_work,
1612 round_jiffies_relative(HZ));
Carlos Corbacho0606e1a2008-10-08 21:40:21 +01001613
1614 return 0;
Lee, Chun-Yi1709ada2011-08-18 18:47:33 +08001615
1616error_threeg:
1617 if (has_cap(ACER_CAP_BLUETOOTH)) {
1618 rfkill_unregister(bluetooth_rfkill);
1619 rfkill_destroy(bluetooth_rfkill);
1620 }
1621error_bluetooth:
1622 if (has_cap(ACER_CAP_WIRELESS)) {
1623 rfkill_unregister(wireless_rfkill);
1624 rfkill_destroy(wireless_rfkill);
1625 }
1626error_wireless:
1627 return err;
Carlos Corbacho0606e1a2008-10-08 21:40:21 +01001628}
1629
1630static void acer_rfkill_exit(void)
1631{
Lee, Chun-Yi1709ada2011-08-18 18:47:33 +08001632 if ((ec_raw_mode || !wmi_has_guid(ACERWMID_EVENT_GUID)) &&
1633 has_cap(ACER_CAP_WIRELESS | ACER_CAP_BLUETOOTH | ACER_CAP_THREEG))
Lee, Chun-Yi70a9b902011-03-28 06:34:13 -04001634 cancel_delayed_work_sync(&acer_rfkill_work);
Johannes Berg19d337d2009-06-02 13:01:37 +02001635
Lee, Chun-Yi1709ada2011-08-18 18:47:33 +08001636 if (has_cap(ACER_CAP_WIRELESS)) {
1637 rfkill_unregister(wireless_rfkill);
1638 rfkill_destroy(wireless_rfkill);
1639 }
Johannes Berg19d337d2009-06-02 13:01:37 +02001640
Carlos Corbacho0606e1a2008-10-08 21:40:21 +01001641 if (has_cap(ACER_CAP_BLUETOOTH)) {
Carlos Corbacho0606e1a2008-10-08 21:40:21 +01001642 rfkill_unregister(bluetooth_rfkill);
Johannes Berg19d337d2009-06-02 13:01:37 +02001643 rfkill_destroy(bluetooth_rfkill);
Carlos Corbacho0606e1a2008-10-08 21:40:21 +01001644 }
Lee, Chun-Yib3c90922010-12-07 10:29:22 +08001645
1646 if (has_cap(ACER_CAP_THREEG)) {
1647 rfkill_unregister(threeg_rfkill);
1648 rfkill_destroy(threeg_rfkill);
1649 }
Carlos Corbacho0606e1a2008-10-08 21:40:21 +01001650 return;
1651}
1652
1653/*
Carlos Corbacho7d9a06d2008-10-08 21:40:26 +01001654 * sysfs interface
Carlos Corbacho745a5d22008-02-05 02:17:10 +00001655 */
Carlos Corbacho7d9a06d2008-10-08 21:40:26 +01001656static ssize_t show_bool_threeg(struct device *dev,
1657 struct device_attribute *attr, char *buf)
1658{
Carlos Corbacho745a5d22008-02-05 02:17:10 +00001659 u32 result; \
Lee, Chun-Yib3c90922010-12-07 10:29:22 +08001660 acpi_status status;
Lee, Chun-Yi7b8aca62011-05-31 14:52:22 +08001661
Martin Kepplingerb58b9ff2014-07-26 17:46:06 +02001662 pr_info("This threeg sysfs will be removed in 2014 - used by: %s\n",
Joe Perches6e71f382011-11-29 11:04:05 -08001663 current->comm);
Lee, Chun-Yi72e71de2011-08-18 18:47:32 +08001664 status = get_u32(&result, ACER_CAP_THREEG);
Carlos Corbacho7d9a06d2008-10-08 21:40:26 +01001665 if (ACPI_SUCCESS(status))
1666 return sprintf(buf, "%u\n", result);
1667 return sprintf(buf, "Read error\n");
1668}
Carlos Corbacho745a5d22008-02-05 02:17:10 +00001669
Carlos Corbacho7d9a06d2008-10-08 21:40:26 +01001670static ssize_t set_bool_threeg(struct device *dev,
1671 struct device_attribute *attr, const char *buf, size_t count)
1672{
1673 u32 tmp = simple_strtoul(buf, NULL, 10);
1674 acpi_status status = set_u32(tmp, ACER_CAP_THREEG);
Martin Kepplingerb58b9ff2014-07-26 17:46:06 +02001675 pr_info("This threeg sysfs will be removed in 2014 - used by: %s\n",
Joe Perches6e71f382011-11-29 11:04:05 -08001676 current->comm);
Lee, Chun-Yi7b8aca62011-05-31 14:52:22 +08001677 if (ACPI_FAILURE(status))
1678 return -EINVAL;
Carlos Corbacho7d9a06d2008-10-08 21:40:26 +01001679 return count;
1680}
Vasiliy Kulikovb80b1682011-02-04 15:23:56 +03001681static DEVICE_ATTR(threeg, S_IRUGO | S_IWUSR, show_bool_threeg,
Carlos Corbacho7d9a06d2008-10-08 21:40:26 +01001682 set_bool_threeg);
Carlos Corbacho745a5d22008-02-05 02:17:10 +00001683
Carlos Corbacho745a5d22008-02-05 02:17:10 +00001684static ssize_t show_interface(struct device *dev, struct device_attribute *attr,
1685 char *buf)
1686{
Martin Kepplingerb58b9ff2014-07-26 17:46:06 +02001687 pr_info("This interface sysfs will be removed in 2014 - used by: %s\n",
Joe Perches6e71f382011-11-29 11:04:05 -08001688 current->comm);
Carlos Corbacho745a5d22008-02-05 02:17:10 +00001689 switch (interface->type) {
1690 case ACER_AMW0:
1691 return sprintf(buf, "AMW0\n");
1692 case ACER_AMW0_V2:
1693 return sprintf(buf, "AMW0 v2\n");
1694 case ACER_WMID:
1695 return sprintf(buf, "WMID\n");
Lee, Chun-Yi72e71de2011-08-18 18:47:32 +08001696 case ACER_WMID_v2:
1697 return sprintf(buf, "WMID v2\n");
Carlos Corbacho745a5d22008-02-05 02:17:10 +00001698 default:
1699 return sprintf(buf, "Error!\n");
1700 }
1701}
1702
Axel Lin370525d2010-06-30 10:20:23 +08001703static DEVICE_ATTR(interface, S_IRUGO, show_interface, NULL);
Carlos Corbacho745a5d22008-02-05 02:17:10 +00001704
Lee, Chun-Yi3fdca872010-12-07 10:29:20 +08001705static void acer_wmi_notify(u32 value, void *context)
1706{
1707 struct acpi_buffer response = { ACPI_ALLOCATE_BUFFER, NULL };
1708 union acpi_object *obj;
1709 struct event_return_value return_value;
1710 acpi_status status;
Seth Forshee92530662011-06-21 12:00:33 -05001711 u16 device_state;
1712 const struct key_entry *key;
Lee, Chun-Yi8e2286c2012-12-14 16:14:27 +08001713 u32 scancode;
Lee, Chun-Yi3fdca872010-12-07 10:29:20 +08001714
1715 status = wmi_get_event_data(value, &response);
1716 if (status != AE_OK) {
Joe Perches249c7202011-03-29 15:21:34 -07001717 pr_warn("bad event status 0x%x\n", status);
Lee, Chun-Yi3fdca872010-12-07 10:29:20 +08001718 return;
1719 }
1720
1721 obj = (union acpi_object *)response.pointer;
1722
1723 if (!obj)
1724 return;
1725 if (obj->type != ACPI_TYPE_BUFFER) {
Joe Perches249c7202011-03-29 15:21:34 -07001726 pr_warn("Unknown response received %d\n", obj->type);
Lee, Chun-Yi3fdca872010-12-07 10:29:20 +08001727 kfree(obj);
1728 return;
1729 }
1730 if (obj->buffer.length != 8) {
Joe Perches249c7202011-03-29 15:21:34 -07001731 pr_warn("Unknown buffer length %d\n", obj->buffer.length);
Lee, Chun-Yi3fdca872010-12-07 10:29:20 +08001732 kfree(obj);
1733 return;
1734 }
1735
1736 return_value = *((struct event_return_value *)obj->buffer.pointer);
1737 kfree(obj);
1738
1739 switch (return_value.function) {
1740 case WMID_HOTKEY_EVENT:
Seth Forshee92530662011-06-21 12:00:33 -05001741 device_state = return_value.device_state;
1742 pr_debug("device state: 0x%x\n", device_state);
1743
1744 key = sparse_keymap_entry_from_scancode(acer_wmi_input_dev,
1745 return_value.key_num);
1746 if (!key) {
Joe Perches249c7202011-03-29 15:21:34 -07001747 pr_warn("Unknown key number - 0x%x\n",
Lee, Chun-Yi3fdca872010-12-07 10:29:20 +08001748 return_value.key_num);
Seth Forshee92530662011-06-21 12:00:33 -05001749 } else {
Lee, Chun-Yi8e2286c2012-12-14 16:14:27 +08001750 scancode = return_value.key_num;
Seth Forshee92530662011-06-21 12:00:33 -05001751 switch (key->keycode) {
1752 case KEY_WLAN:
1753 case KEY_BLUETOOTH:
1754 if (has_cap(ACER_CAP_WIRELESS))
1755 rfkill_set_sw_state(wireless_rfkill,
1756 !(device_state & ACER_WMID3_GDS_WIRELESS));
1757 if (has_cap(ACER_CAP_THREEG))
1758 rfkill_set_sw_state(threeg_rfkill,
1759 !(device_state & ACER_WMID3_GDS_THREEG));
1760 if (has_cap(ACER_CAP_BLUETOOTH))
1761 rfkill_set_sw_state(bluetooth_rfkill,
1762 !(device_state & ACER_WMID3_GDS_BLUETOOTH));
1763 break;
Lee, Chun-Yi8e2286c2012-12-14 16:14:27 +08001764 case KEY_TOUCHPAD_TOGGLE:
1765 scancode = (device_state & ACER_WMID3_GDS_TOUCHPAD) ?
1766 KEY_TOUCHPAD_ON : KEY_TOUCHPAD_OFF;
Seth Forshee92530662011-06-21 12:00:33 -05001767 }
Lee, Chun-Yi8e2286c2012-12-14 16:14:27 +08001768 sparse_keymap_report_event(acer_wmi_input_dev, scancode, 1, true);
Seth Forshee92530662011-06-21 12:00:33 -05001769 }
Lee, Chun-Yi3fdca872010-12-07 10:29:20 +08001770 break;
Marek Vasut1eb3fe12012-06-01 19:11:22 +02001771 case WMID_ACCEL_EVENT:
1772 acer_gsensor_event();
1773 break;
Lee, Chun-Yi3fdca872010-12-07 10:29:20 +08001774 default:
Joe Perches249c7202011-03-29 15:21:34 -07001775 pr_warn("Unknown function number - %d - %d\n",
Lee, Chun-Yi3fdca872010-12-07 10:29:20 +08001776 return_value.function, return_value.key_num);
1777 break;
1778 }
1779}
1780
Mathias Krause76d51dd2014-07-16 19:43:04 +02001781static acpi_status __init
From: Lee, Chun-Yi59ccf2f2011-01-07 17:25:14 -05001782wmid3_set_lm_mode(struct lm_input_params *params,
1783 struct lm_return_value *return_value)
1784{
1785 acpi_status status;
1786 union acpi_object *obj;
1787
1788 struct acpi_buffer input = { sizeof(struct lm_input_params), params };
1789 struct acpi_buffer output = { ACPI_ALLOCATE_BUFFER, NULL };
1790
1791 status = wmi_evaluate_method(WMID_GUID3, 0, 0x1, &input, &output);
1792 if (ACPI_FAILURE(status))
1793 return status;
1794
1795 obj = output.pointer;
1796
1797 if (!obj)
1798 return AE_ERROR;
1799 else if (obj->type != ACPI_TYPE_BUFFER) {
1800 kfree(obj);
1801 return AE_ERROR;
1802 }
1803 if (obj->buffer.length != 4) {
Joe Perches249c7202011-03-29 15:21:34 -07001804 pr_warn("Unknown buffer length %d\n", obj->buffer.length);
From: Lee, Chun-Yi59ccf2f2011-01-07 17:25:14 -05001805 kfree(obj);
1806 return AE_ERROR;
1807 }
1808
1809 *return_value = *((struct lm_return_value *)obj->buffer.pointer);
1810 kfree(obj);
1811
1812 return status;
1813}
1814
Mathias Krause76d51dd2014-07-16 19:43:04 +02001815static int __init acer_wmi_enable_ec_raw(void)
From: Lee, Chun-Yi59ccf2f2011-01-07 17:25:14 -05001816{
1817 struct lm_return_value return_value;
1818 acpi_status status;
1819 struct lm_input_params params = {
1820 .function_num = 0x1,
1821 .commun_devices = 0xFFFF,
1822 .devices = 0xFFFF,
1823 .lm_status = 0x00, /* Launch Manager Deactive */
1824 };
1825
1826 status = wmid3_set_lm_mode(&params, &return_value);
1827
1828 if (return_value.error_code || return_value.ec_return_value)
Joe Perches249c7202011-03-29 15:21:34 -07001829 pr_warn("Enabling EC raw mode failed: 0x%x - 0x%x\n",
1830 return_value.error_code,
1831 return_value.ec_return_value);
From: Lee, Chun-Yi59ccf2f2011-01-07 17:25:14 -05001832 else
Joe Perches249c7202011-03-29 15:21:34 -07001833 pr_info("Enabled EC raw mode\n");
From: Lee, Chun-Yi59ccf2f2011-01-07 17:25:14 -05001834
1835 return status;
1836}
1837
Mathias Krause76d51dd2014-07-16 19:43:04 +02001838static int __init acer_wmi_enable_lm(void)
From: Lee, Chun-Yi59ccf2f2011-01-07 17:25:14 -05001839{
1840 struct lm_return_value return_value;
1841 acpi_status status;
1842 struct lm_input_params params = {
1843 .function_num = 0x1,
1844 .commun_devices = 0xFFFF,
1845 .devices = 0xFFFF,
1846 .lm_status = 0x01, /* Launch Manager Active */
1847 };
1848
1849 status = wmid3_set_lm_mode(&params, &return_value);
1850
1851 if (return_value.error_code || return_value.ec_return_value)
Joe Perches249c7202011-03-29 15:21:34 -07001852 pr_warn("Enabling Launch Manager failed: 0x%x - 0x%x\n",
1853 return_value.error_code,
1854 return_value.ec_return_value);
From: Lee, Chun-Yi59ccf2f2011-01-07 17:25:14 -05001855
1856 return status;
1857}
1858
Marek Vasut1eb3fe12012-06-01 19:11:22 +02001859static acpi_status __init acer_wmi_get_handle_cb(acpi_handle ah, u32 level,
1860 void *ctx, void **retval)
1861{
1862 *(acpi_handle *)retval = ah;
1863 return AE_OK;
1864}
1865
1866static int __init acer_wmi_get_handle(const char *name, const char *prop,
1867 acpi_handle *ah)
1868{
1869 acpi_status status;
1870 acpi_handle handle;
1871
1872 BUG_ON(!name || !ah);
1873
Marek Vasut24237c42012-07-05 01:30:09 +02001874 handle = NULL;
Marek Vasut1eb3fe12012-06-01 19:11:22 +02001875 status = acpi_get_devices(prop, acer_wmi_get_handle_cb,
1876 (void *)name, &handle);
1877
1878 if (ACPI_SUCCESS(status)) {
1879 *ah = handle;
1880 return 0;
1881 } else {
1882 return -ENODEV;
1883 }
1884}
1885
1886static int __init acer_wmi_accel_setup(void)
1887{
1888 int err;
1889
1890 err = acer_wmi_get_handle("SENR", "BST0001", &gsensor_handle);
1891 if (err)
1892 return err;
1893
1894 interface->capability |= ACER_CAP_ACCEL;
1895
1896 acer_wmi_accel_dev = input_allocate_device();
1897 if (!acer_wmi_accel_dev)
1898 return -ENOMEM;
1899
1900 acer_wmi_accel_dev->open = acer_gsensor_open;
1901
1902 acer_wmi_accel_dev->name = "Acer BMA150 accelerometer";
1903 acer_wmi_accel_dev->phys = "wmi/input1";
1904 acer_wmi_accel_dev->id.bustype = BUS_HOST;
1905 acer_wmi_accel_dev->evbit[0] = BIT_MASK(EV_ABS);
1906 input_set_abs_params(acer_wmi_accel_dev, ABS_X, -16384, 16384, 0, 0);
1907 input_set_abs_params(acer_wmi_accel_dev, ABS_Y, -16384, 16384, 0, 0);
1908 input_set_abs_params(acer_wmi_accel_dev, ABS_Z, -16384, 16384, 0, 0);
1909
1910 err = input_register_device(acer_wmi_accel_dev);
1911 if (err)
1912 goto err_free_dev;
1913
1914 return 0;
1915
1916err_free_dev:
1917 input_free_device(acer_wmi_accel_dev);
1918 return err;
1919}
1920
1921static void acer_wmi_accel_destroy(void)
1922{
1923 input_unregister_device(acer_wmi_accel_dev);
Marek Vasut1eb3fe12012-06-01 19:11:22 +02001924}
1925
Lee, Chun-Yi3fdca872010-12-07 10:29:20 +08001926static int __init acer_wmi_input_setup(void)
1927{
1928 acpi_status status;
1929 int err;
1930
1931 acer_wmi_input_dev = input_allocate_device();
1932 if (!acer_wmi_input_dev)
1933 return -ENOMEM;
1934
1935 acer_wmi_input_dev->name = "Acer WMI hotkeys";
1936 acer_wmi_input_dev->phys = "wmi/input0";
1937 acer_wmi_input_dev->id.bustype = BUS_HOST;
1938
1939 err = sparse_keymap_setup(acer_wmi_input_dev, acer_wmi_keymap, NULL);
1940 if (err)
1941 goto err_free_dev;
1942
1943 status = wmi_install_notify_handler(ACERWMID_EVENT_GUID,
1944 acer_wmi_notify, NULL);
1945 if (ACPI_FAILURE(status)) {
1946 err = -EIO;
1947 goto err_free_keymap;
1948 }
1949
1950 err = input_register_device(acer_wmi_input_dev);
1951 if (err)
1952 goto err_uninstall_notifier;
1953
1954 return 0;
1955
1956err_uninstall_notifier:
1957 wmi_remove_notify_handler(ACERWMID_EVENT_GUID);
1958err_free_keymap:
1959 sparse_keymap_free(acer_wmi_input_dev);
1960err_free_dev:
1961 input_free_device(acer_wmi_input_dev);
1962 return err;
1963}
1964
1965static void acer_wmi_input_destroy(void)
1966{
1967 wmi_remove_notify_handler(ACERWMID_EVENT_GUID);
1968 sparse_keymap_free(acer_wmi_input_dev);
1969 input_unregister_device(acer_wmi_input_dev);
1970}
1971
Carlos Corbacho745a5d22008-02-05 02:17:10 +00001972/*
Carlos Corbacho81143522008-06-21 09:09:53 +01001973 * debugfs functions
1974 */
1975static u32 get_wmid_devices(void)
1976{
1977 struct acpi_buffer out = {ACPI_ALLOCATE_BUFFER, NULL};
1978 union acpi_object *obj;
1979 acpi_status status;
Axel Lin66904862010-07-20 15:19:52 -07001980 u32 devices = 0;
Carlos Corbacho81143522008-06-21 09:09:53 +01001981
1982 status = wmi_query_block(WMID_GUID2, 1, &out);
1983 if (ACPI_FAILURE(status))
1984 return 0;
1985
1986 obj = (union acpi_object *) out.pointer;
Lee, Chun-Yif20aaba2012-12-14 16:14:26 +08001987 if (obj) {
1988 if (obj->type == ACPI_TYPE_BUFFER &&
1989 (obj->buffer.length == sizeof(u32) ||
1990 obj->buffer.length == sizeof(u64))) {
1991 devices = *((u32 *) obj->buffer.pointer);
1992 } else if (obj->type == ACPI_TYPE_INTEGER) {
1993 devices = (u32) obj->integer.value;
1994 }
Carlos Corbacho81143522008-06-21 09:09:53 +01001995 }
Axel Lin66904862010-07-20 15:19:52 -07001996
1997 kfree(out.pointer);
1998 return devices;
Carlos Corbacho81143522008-06-21 09:09:53 +01001999}
2000
2001/*
Carlos Corbacho745a5d22008-02-05 02:17:10 +00002002 * Platform device
2003 */
Greg Kroah-Hartmanb859f152012-12-21 13:18:33 -08002004static int acer_platform_probe(struct platform_device *device)
Carlos Corbacho745a5d22008-02-05 02:17:10 +00002005{
2006 int err;
2007
2008 if (has_cap(ACER_CAP_MAILLED)) {
2009 err = acer_led_init(&device->dev);
2010 if (err)
2011 goto error_mailled;
2012 }
2013
2014 if (has_cap(ACER_CAP_BRIGHTNESS)) {
2015 err = acer_backlight_init(&device->dev);
2016 if (err)
2017 goto error_brightness;
2018 }
2019
Carlos Corbacho0606e1a2008-10-08 21:40:21 +01002020 err = acer_rfkill_init(&device->dev);
Andy Whitcroft350e3292009-04-04 09:33:34 +01002021 if (err)
2022 goto error_rfkill;
Carlos Corbacho0606e1a2008-10-08 21:40:21 +01002023
2024 return err;
Carlos Corbacho745a5d22008-02-05 02:17:10 +00002025
Andy Whitcroft350e3292009-04-04 09:33:34 +01002026error_rfkill:
2027 if (has_cap(ACER_CAP_BRIGHTNESS))
2028 acer_backlight_exit();
Carlos Corbacho745a5d22008-02-05 02:17:10 +00002029error_brightness:
Andy Whitcroft350e3292009-04-04 09:33:34 +01002030 if (has_cap(ACER_CAP_MAILLED))
2031 acer_led_exit();
Carlos Corbacho745a5d22008-02-05 02:17:10 +00002032error_mailled:
2033 return err;
2034}
2035
2036static int acer_platform_remove(struct platform_device *device)
2037{
2038 if (has_cap(ACER_CAP_MAILLED))
2039 acer_led_exit();
2040 if (has_cap(ACER_CAP_BRIGHTNESS))
2041 acer_backlight_exit();
Carlos Corbacho0606e1a2008-10-08 21:40:21 +01002042
2043 acer_rfkill_exit();
Carlos Corbacho745a5d22008-02-05 02:17:10 +00002044 return 0;
2045}
2046
Mathias Krause80f65552014-07-16 19:43:06 +02002047#ifdef CONFIG_PM_SLEEP
Rafael J. Wysocki3c33be0b2012-06-27 23:19:35 +02002048static int acer_suspend(struct device *dev)
Carlos Corbacho745a5d22008-02-05 02:17:10 +00002049{
2050 u32 value;
2051 struct acer_data *data = &interface->data;
2052
2053 if (!data)
2054 return -ENOMEM;
2055
Carlos Corbacho745a5d22008-02-05 02:17:10 +00002056 if (has_cap(ACER_CAP_MAILLED)) {
2057 get_u32(&value, ACER_CAP_MAILLED);
Pali Rohár9a0b74f2011-02-26 21:18:58 +01002058 set_u32(LED_OFF, ACER_CAP_MAILLED);
Carlos Corbacho745a5d22008-02-05 02:17:10 +00002059 data->mailled = value;
2060 }
2061
2062 if (has_cap(ACER_CAP_BRIGHTNESS)) {
2063 get_u32(&value, ACER_CAP_BRIGHTNESS);
2064 data->brightness = value;
2065 }
2066
2067 return 0;
2068}
2069
Rafael J. Wysocki3c33be0b2012-06-27 23:19:35 +02002070static int acer_resume(struct device *dev)
Carlos Corbacho745a5d22008-02-05 02:17:10 +00002071{
2072 struct acer_data *data = &interface->data;
2073
2074 if (!data)
2075 return -ENOMEM;
2076
Carlos Corbacho745a5d22008-02-05 02:17:10 +00002077 if (has_cap(ACER_CAP_MAILLED))
2078 set_u32(data->mailled, ACER_CAP_MAILLED);
2079
2080 if (has_cap(ACER_CAP_BRIGHTNESS))
2081 set_u32(data->brightness, ACER_CAP_BRIGHTNESS);
2082
Marek Vasut1eb3fe12012-06-01 19:11:22 +02002083 if (has_cap(ACER_CAP_ACCEL))
2084 acer_gsensor_init();
2085
Carlos Corbacho745a5d22008-02-05 02:17:10 +00002086 return 0;
2087}
Mathias Krause80f65552014-07-16 19:43:06 +02002088#else
2089#define acer_suspend NULL
2090#define acer_resume NULL
2091#endif
Carlos Corbacho745a5d22008-02-05 02:17:10 +00002092
Rafael J. Wysocki3c33be0b2012-06-27 23:19:35 +02002093static SIMPLE_DEV_PM_OPS(acer_pm, acer_suspend, acer_resume);
2094
Pali Rohár9a0b74f2011-02-26 21:18:58 +01002095static void acer_platform_shutdown(struct platform_device *device)
2096{
2097 struct acer_data *data = &interface->data;
2098
2099 if (!data)
2100 return;
2101
2102 if (has_cap(ACER_CAP_MAILLED))
2103 set_u32(LED_OFF, ACER_CAP_MAILLED);
2104}
2105
Carlos Corbacho745a5d22008-02-05 02:17:10 +00002106static struct platform_driver acer_platform_driver = {
2107 .driver = {
2108 .name = "acer-wmi",
2109 .owner = THIS_MODULE,
Rafael J. Wysocki3c33be0b2012-06-27 23:19:35 +02002110 .pm = &acer_pm,
Carlos Corbacho745a5d22008-02-05 02:17:10 +00002111 },
2112 .probe = acer_platform_probe,
2113 .remove = acer_platform_remove,
Pali Rohár9a0b74f2011-02-26 21:18:58 +01002114 .shutdown = acer_platform_shutdown,
Carlos Corbacho745a5d22008-02-05 02:17:10 +00002115};
2116
2117static struct platform_device *acer_platform_device;
2118
2119static int remove_sysfs(struct platform_device *device)
2120{
Carlos Corbacho745a5d22008-02-05 02:17:10 +00002121 if (has_cap(ACER_CAP_THREEG))
2122 device_remove_file(&device->dev, &dev_attr_threeg);
2123
2124 device_remove_file(&device->dev, &dev_attr_interface);
2125
2126 return 0;
2127}
2128
Mathias Krause76d51dd2014-07-16 19:43:04 +02002129static int __init create_sysfs(void)
Carlos Corbacho745a5d22008-02-05 02:17:10 +00002130{
2131 int retval = -ENOMEM;
2132
Carlos Corbacho745a5d22008-02-05 02:17:10 +00002133 if (has_cap(ACER_CAP_THREEG)) {
2134 retval = device_create_file(&acer_platform_device->dev,
2135 &dev_attr_threeg);
2136 if (retval)
2137 goto error_sysfs;
2138 }
2139
2140 retval = device_create_file(&acer_platform_device->dev,
2141 &dev_attr_interface);
2142 if (retval)
2143 goto error_sysfs;
2144
2145 return 0;
2146
2147error_sysfs:
2148 remove_sysfs(acer_platform_device);
2149 return retval;
2150}
2151
Carlos Corbacho81143522008-06-21 09:09:53 +01002152static void remove_debugfs(void)
2153{
2154 debugfs_remove(interface->debug.devices);
2155 debugfs_remove(interface->debug.root);
2156}
2157
Mathias Krause76d51dd2014-07-16 19:43:04 +02002158static int __init create_debugfs(void)
Carlos Corbacho81143522008-06-21 09:09:53 +01002159{
2160 interface->debug.root = debugfs_create_dir("acer-wmi", NULL);
2161 if (!interface->debug.root) {
Lee, Chun-Yicae15702011-03-16 18:52:36 +08002162 pr_err("Failed to create debugfs directory");
Carlos Corbacho81143522008-06-21 09:09:53 +01002163 return -ENOMEM;
2164 }
2165
2166 interface->debug.devices = debugfs_create_u32("devices", S_IRUGO,
2167 interface->debug.root,
2168 &interface->debug.wmid_devices);
2169 if (!interface->debug.devices)
2170 goto error_debugfs;
2171
2172 return 0;
2173
2174error_debugfs:
Russ Dill39dbbb42008-09-02 14:35:40 -07002175 remove_debugfs();
Carlos Corbacho81143522008-06-21 09:09:53 +01002176 return -ENOMEM;
2177}
2178
Carlos Corbacho745a5d22008-02-05 02:17:10 +00002179static int __init acer_wmi_init(void)
2180{
2181 int err;
2182
Lee, Chun-Yicae15702011-03-16 18:52:36 +08002183 pr_info("Acer Laptop ACPI-WMI Extras\n");
Carlos Corbacho745a5d22008-02-05 02:17:10 +00002184
Carlos Corbachoa74dd5f2009-04-04 09:33:29 +01002185 if (dmi_check_system(acer_blacklist)) {
Lee, Chun-Yicae15702011-03-16 18:52:36 +08002186 pr_info("Blacklisted hardware detected - not loading\n");
Carlos Corbachoa74dd5f2009-04-04 09:33:29 +01002187 return -ENODEV;
2188 }
2189
Carlos Corbacho9991d9f2008-06-21 09:09:22 +01002190 find_quirks();
2191
Carlos Corbacho745a5d22008-02-05 02:17:10 +00002192 /*
2193 * Detect which ACPI-WMI interface we're using.
2194 */
2195 if (wmi_has_guid(AMW0_GUID1) && wmi_has_guid(WMID_GUID1))
2196 interface = &AMW0_V2_interface;
2197
2198 if (!wmi_has_guid(AMW0_GUID1) && wmi_has_guid(WMID_GUID1))
2199 interface = &wmid_interface;
2200
Lee, Chun-Yi72e71de2011-08-18 18:47:32 +08002201 if (wmi_has_guid(WMID_GUID3))
2202 interface = &wmid_v2_interface;
2203
2204 if (interface)
2205 dmi_walk(type_aa_dmi_decode, NULL);
2206
Carlos Corbacho745a5d22008-02-05 02:17:10 +00002207 if (wmi_has_guid(WMID_GUID2) && interface) {
Lee, Chun-Yi72e71de2011-08-18 18:47:32 +08002208 if (!has_type_aa && ACPI_FAILURE(WMID_set_capabilities())) {
Lee, Chun-Yicae15702011-03-16 18:52:36 +08002209 pr_err("Unable to detect available WMID devices\n");
Carlos Corbacho745a5d22008-02-05 02:17:10 +00002210 return -ENODEV;
2211 }
Lee, Chun-Yi72e71de2011-08-18 18:47:32 +08002212 /* WMID always provides brightness methods */
2213 interface->capability |= ACER_CAP_BRIGHTNESS;
2214 } else if (!wmi_has_guid(WMID_GUID2) && interface && !has_type_aa) {
Lee, Chun-Yicae15702011-03-16 18:52:36 +08002215 pr_err("No WMID device detection method found\n");
Carlos Corbacho745a5d22008-02-05 02:17:10 +00002216 return -ENODEV;
2217 }
2218
2219 if (wmi_has_guid(AMW0_GUID1) && !wmi_has_guid(WMID_GUID1)) {
2220 interface = &AMW0_interface;
2221
2222 if (ACPI_FAILURE(AMW0_set_capabilities())) {
Lee, Chun-Yicae15702011-03-16 18:52:36 +08002223 pr_err("Unable to detect available AMW0 devices\n");
Carlos Corbacho745a5d22008-02-05 02:17:10 +00002224 return -ENODEV;
2225 }
2226 }
2227
Carlos Corbacho9b963c42008-02-24 13:34:29 +00002228 if (wmi_has_guid(AMW0_GUID1))
2229 AMW0_find_mailled();
Carlos Corbacho745a5d22008-02-05 02:17:10 +00002230
Carlos Corbacho745a5d22008-02-05 02:17:10 +00002231 if (!interface) {
Lee, Chun-Yicae15702011-03-16 18:52:36 +08002232 pr_err("No or unsupported WMI interface, unable to load\n");
Carlos Corbacho745a5d22008-02-05 02:17:10 +00002233 return -ENODEV;
2234 }
2235
Arjan van de Ven83097ac2008-08-23 21:45:21 -07002236 set_quirks();
2237
Corentin Charya60b2172012-06-13 09:32:02 +02002238 if (dmi_check_system(video_vendor_dmi_table))
2239 acpi_video_dmi_promote_vendor();
Lee, Chun-Yi72e71de2011-08-18 18:47:32 +08002240 if (acpi_video_backlight_support()) {
Corentin Charya60b2172012-06-13 09:32:02 +02002241 interface->capability &= ~ACER_CAP_BRIGHTNESS;
2242 pr_info("Brightness must be controlled by acpi video driver\n");
2243 } else {
Corentin Charya60b2172012-06-13 09:32:02 +02002244 pr_info("Disabling ACPI video driver\n");
Hans de Goeded1337412014-05-17 10:48:02 +02002245 acpi_video_unregister_backlight();
Thomas Renningerfebf2d92008-08-01 17:37:56 +02002246 }
2247
From: Lee, Chun-Yi59ccf2f2011-01-07 17:25:14 -05002248 if (wmi_has_guid(WMID_GUID3)) {
2249 if (ec_raw_mode) {
2250 if (ACPI_FAILURE(acer_wmi_enable_ec_raw())) {
Lee, Chun-Yicae15702011-03-16 18:52:36 +08002251 pr_err("Cannot enable EC raw mode\n");
From: Lee, Chun-Yi59ccf2f2011-01-07 17:25:14 -05002252 return -ENODEV;
2253 }
2254 } else if (ACPI_FAILURE(acer_wmi_enable_lm())) {
Lee, Chun-Yicae15702011-03-16 18:52:36 +08002255 pr_err("Cannot enable Launch Manager mode\n");
From: Lee, Chun-Yi59ccf2f2011-01-07 17:25:14 -05002256 return -ENODEV;
2257 }
2258 } else if (ec_raw_mode) {
Lee, Chun-Yicae15702011-03-16 18:52:36 +08002259 pr_info("No WMID EC raw mode enable method\n");
From: Lee, Chun-Yi59ccf2f2011-01-07 17:25:14 -05002260 }
2261
Lee, Chun-Yi3fdca872010-12-07 10:29:20 +08002262 if (wmi_has_guid(ACERWMID_EVENT_GUID)) {
2263 err = acer_wmi_input_setup();
2264 if (err)
2265 return err;
2266 }
2267
Marek Vasut1eb3fe12012-06-01 19:11:22 +02002268 acer_wmi_accel_setup();
2269
Axel Lin1c796322010-06-22 16:17:38 +08002270 err = platform_driver_register(&acer_platform_driver);
2271 if (err) {
Joe Perches6e71f382011-11-29 11:04:05 -08002272 pr_err("Unable to register platform driver\n");
Carlos Corbacho745a5d22008-02-05 02:17:10 +00002273 goto error_platform_register;
2274 }
Axel Lin1c796322010-06-22 16:17:38 +08002275
Carlos Corbacho745a5d22008-02-05 02:17:10 +00002276 acer_platform_device = platform_device_alloc("acer-wmi", -1);
Axel Lin1c796322010-06-22 16:17:38 +08002277 if (!acer_platform_device) {
2278 err = -ENOMEM;
2279 goto error_device_alloc;
2280 }
2281
2282 err = platform_device_add(acer_platform_device);
2283 if (err)
2284 goto error_device_add;
Carlos Corbacho745a5d22008-02-05 02:17:10 +00002285
2286 err = create_sysfs();
2287 if (err)
Axel Lin1c796322010-06-22 16:17:38 +08002288 goto error_create_sys;
Carlos Corbacho745a5d22008-02-05 02:17:10 +00002289
Carlos Corbacho81143522008-06-21 09:09:53 +01002290 if (wmi_has_guid(WMID_GUID2)) {
2291 interface->debug.wmid_devices = get_wmid_devices();
2292 err = create_debugfs();
2293 if (err)
Axel Lin1c796322010-06-22 16:17:38 +08002294 goto error_create_debugfs;
Carlos Corbacho81143522008-06-21 09:09:53 +01002295 }
2296
Carlos Corbacho745a5d22008-02-05 02:17:10 +00002297 /* Override any initial settings with values from the commandline */
2298 acer_commandline_init();
2299
2300 return 0;
2301
Axel Lin1c796322010-06-22 16:17:38 +08002302error_create_debugfs:
2303 remove_sysfs(acer_platform_device);
2304error_create_sys:
2305 platform_device_del(acer_platform_device);
2306error_device_add:
2307 platform_device_put(acer_platform_device);
2308error_device_alloc:
2309 platform_driver_unregister(&acer_platform_driver);
Carlos Corbacho745a5d22008-02-05 02:17:10 +00002310error_platform_register:
Lee, Chun-Yi3fdca872010-12-07 10:29:20 +08002311 if (wmi_has_guid(ACERWMID_EVENT_GUID))
2312 acer_wmi_input_destroy();
Marek Vasut1eb3fe12012-06-01 19:11:22 +02002313 if (has_cap(ACER_CAP_ACCEL))
2314 acer_wmi_accel_destroy();
Lee, Chun-Yi3fdca872010-12-07 10:29:20 +08002315
Axel Lin1c796322010-06-22 16:17:38 +08002316 return err;
Carlos Corbacho745a5d22008-02-05 02:17:10 +00002317}
2318
2319static void __exit acer_wmi_exit(void)
2320{
Lee, Chun-Yi3fdca872010-12-07 10:29:20 +08002321 if (wmi_has_guid(ACERWMID_EVENT_GUID))
2322 acer_wmi_input_destroy();
2323
Marek Vasut1eb3fe12012-06-01 19:11:22 +02002324 if (has_cap(ACER_CAP_ACCEL))
2325 acer_wmi_accel_destroy();
2326
Carlos Corbacho745a5d22008-02-05 02:17:10 +00002327 remove_sysfs(acer_platform_device);
Russ Dill39dbbb42008-09-02 14:35:40 -07002328 remove_debugfs();
Axel Lin97ba0af2010-06-03 15:18:03 +08002329 platform_device_unregister(acer_platform_device);
Carlos Corbacho745a5d22008-02-05 02:17:10 +00002330 platform_driver_unregister(&acer_platform_driver);
2331
Lee, Chun-Yicae15702011-03-16 18:52:36 +08002332 pr_info("Acer Laptop WMI Extras unloaded\n");
Carlos Corbacho745a5d22008-02-05 02:17:10 +00002333 return;
2334}
2335
2336module_init(acer_wmi_init);
2337module_exit(acer_wmi_exit);