aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/platform/x86/eeepc-wmi.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/platform/x86/eeepc-wmi.c')
-rw-r--r--drivers/platform/x86/eeepc-wmi.c405
1 files changed, 81 insertions, 324 deletions
diff --git a/drivers/platform/x86/eeepc-wmi.c b/drivers/platform/x86/eeepc-wmi.c
index 9dc50fbf3d0b..4aa867a9b88b 100644
--- a/drivers/platform/x86/eeepc-wmi.c
+++ b/drivers/platform/x86/eeepc-wmi.c
@@ -2,6 +2,7 @@
2 * Eee PC WMI hotkey driver 2 * Eee PC WMI hotkey driver
3 * 3 *
4 * Copyright(C) 2010 Intel Corporation. 4 * Copyright(C) 2010 Intel Corporation.
5 * Copyright(C) 2010-2011 Corentin Chary <corentin.chary@gmail.com>
5 * 6 *
6 * Portions based on wistron_btns.c: 7 * Portions based on wistron_btns.c:
7 * Copyright (C) 2005 Miloslav Trmac <mitr@volny.cz> 8 * Copyright (C) 2005 Miloslav Trmac <mitr@volny.cz>
@@ -28,385 +29,141 @@
28#include <linux/kernel.h> 29#include <linux/kernel.h>
29#include <linux/module.h> 30#include <linux/module.h>
30#include <linux/init.h> 31#include <linux/init.h>
31#include <linux/types.h>
32#include <linux/slab.h>
33#include <linux/input.h> 32#include <linux/input.h>
34#include <linux/input/sparse-keymap.h> 33#include <linux/input/sparse-keymap.h>
35#include <linux/fb.h> 34#include <linux/dmi.h>
36#include <linux/backlight.h>
37#include <linux/platform_device.h>
38#include <acpi/acpi_bus.h> 35#include <acpi/acpi_bus.h>
39#include <acpi/acpi_drivers.h> 36
37#include "asus-wmi.h"
40 38
41#define EEEPC_WMI_FILE "eeepc-wmi" 39#define EEEPC_WMI_FILE "eeepc-wmi"
42 40
43MODULE_AUTHOR("Yong Wang <yong.y.wang@intel.com>"); 41MODULE_AUTHOR("Corentin Chary <corentincj@iksaif.net>");
44MODULE_DESCRIPTION("Eee PC WMI Hotkey Driver"); 42MODULE_DESCRIPTION("Eee PC WMI Hotkey Driver");
45MODULE_LICENSE("GPL"); 43MODULE_LICENSE("GPL");
46 44
45#define EEEPC_ACPI_HID "ASUS010" /* old _HID used in eeepc-laptop */
46
47#define EEEPC_WMI_EVENT_GUID "ABBC0F72-8EA1-11D1-00A0-C90629100000" 47#define EEEPC_WMI_EVENT_GUID "ABBC0F72-8EA1-11D1-00A0-C90629100000"
48#define EEEPC_WMI_MGMT_GUID "97845ED0-4E6D-11DE-8A39-0800200C9A66"
49 48
50MODULE_ALIAS("wmi:"EEEPC_WMI_EVENT_GUID); 49MODULE_ALIAS("wmi:"EEEPC_WMI_EVENT_GUID);
51MODULE_ALIAS("wmi:"EEEPC_WMI_MGMT_GUID);
52 50
53#define NOTIFY_BRNUP_MIN 0x11 51static bool hotplug_wireless;
54#define NOTIFY_BRNUP_MAX 0x1f
55#define NOTIFY_BRNDOWN_MIN 0x20
56#define NOTIFY_BRNDOWN_MAX 0x2e
57 52
58#define EEEPC_WMI_METHODID_DEVS 0x53564544 53module_param(hotplug_wireless, bool, 0444);
59#define EEEPC_WMI_METHODID_DSTS 0x53544344 54MODULE_PARM_DESC(hotplug_wireless,
60 55 "Enable hotplug for wireless device. "
61#define EEEPC_WMI_DEVID_BACKLIGHT 0x00050012 56 "If your laptop needs that, please report to "
57 "acpi4asus-user@lists.sourceforge.net.");
62 58
63static const struct key_entry eeepc_wmi_keymap[] = { 59static const struct key_entry eeepc_wmi_keymap[] = {
64 /* Sleep already handled via generic ACPI code */ 60 /* Sleep already handled via generic ACPI code */
65 { KE_KEY, 0x5d, { KEY_WLAN } },
66 { KE_KEY, 0x32, { KEY_MUTE } },
67 { KE_KEY, 0x31, { KEY_VOLUMEDOWN } },
68 { KE_KEY, 0x30, { KEY_VOLUMEUP } }, 61 { KE_KEY, 0x30, { KEY_VOLUMEUP } },
69 { KE_IGNORE, NOTIFY_BRNDOWN_MIN, { KEY_BRIGHTNESSDOWN } }, 62 { KE_KEY, 0x31, { KEY_VOLUMEDOWN } },
70 { KE_IGNORE, NOTIFY_BRNUP_MIN, { KEY_BRIGHTNESSUP } }, 63 { KE_KEY, 0x32, { KEY_MUTE } },
64 { KE_KEY, 0x5c, { KEY_F15 } }, /* Power Gear key */
65 { KE_KEY, 0x5d, { KEY_WLAN } },
66 { KE_KEY, 0x6b, { KEY_TOUCHPAD_TOGGLE } }, /* Toggle Touchpad */
67 { KE_KEY, 0x82, { KEY_CAMERA } },
68 { KE_KEY, 0x83, { KEY_CAMERA_ZOOMIN } },
69 { KE_KEY, 0x88, { KEY_WLAN } },
70 { KE_KEY, 0xbd, { KEY_CAMERA } },
71 { KE_KEY, 0xcc, { KEY_SWITCHVIDEOMODE } }, 71 { KE_KEY, 0xcc, { KEY_SWITCHVIDEOMODE } },
72 { KE_KEY, 0xe0, { KEY_PROG1 } }, /* Task Manager */
73 { KE_KEY, 0xe1, { KEY_F14 } }, /* Change Resolution */
74 { KE_KEY, 0xe8, { KEY_SCREENLOCK } },
75 { KE_KEY, 0xe9, { KEY_BRIGHTNESS_ZERO } },
76 { KE_KEY, 0xeb, { KEY_CAMERA_ZOOMOUT } },
77 { KE_KEY, 0xec, { KEY_CAMERA_UP } },
78 { KE_KEY, 0xed, { KEY_CAMERA_DOWN } },
79 { KE_KEY, 0xee, { KEY_CAMERA_LEFT } },
80 { KE_KEY, 0xef, { KEY_CAMERA_RIGHT } },
72 { KE_END, 0}, 81 { KE_END, 0},
73}; 82};
74 83
75struct bios_args { 84static acpi_status eeepc_wmi_parse_device(acpi_handle handle, u32 level,
76 u32 dev_id; 85 void *context, void **retval)
77 u32 ctrl_param;
78};
79
80struct eeepc_wmi {
81 struct input_dev *inputdev;
82 struct backlight_device *backlight_device;
83};
84
85static struct platform_device *platform_device;
86
87static int eeepc_wmi_input_init(struct eeepc_wmi *eeepc)
88{ 86{
89 int err; 87 pr_warn("Found legacy ATKD device (%s)\n", EEEPC_ACPI_HID);
90 88 *(bool *)context = true;
91 eeepc->inputdev = input_allocate_device(); 89 return AE_CTRL_TERMINATE;
92 if (!eeepc->inputdev)
93 return -ENOMEM;
94
95 eeepc->inputdev->name = "Eee PC WMI hotkeys";
96 eeepc->inputdev->phys = EEEPC_WMI_FILE "/input0";
97 eeepc->inputdev->id.bustype = BUS_HOST;
98 eeepc->inputdev->dev.parent = &platform_device->dev;
99
100 err = sparse_keymap_setup(eeepc->inputdev, eeepc_wmi_keymap, NULL);
101 if (err)
102 goto err_free_dev;
103
104 err = input_register_device(eeepc->inputdev);
105 if (err)
106 goto err_free_keymap;
107
108 return 0;
109
110err_free_keymap:
111 sparse_keymap_free(eeepc->inputdev);
112err_free_dev:
113 input_free_device(eeepc->inputdev);
114 return err;
115} 90}
116 91
117static void eeepc_wmi_input_exit(struct eeepc_wmi *eeepc) 92static int eeepc_wmi_check_atkd(void)
118{ 93{
119 if (eeepc->inputdev) {
120 sparse_keymap_free(eeepc->inputdev);
121 input_unregister_device(eeepc->inputdev);
122 }
123
124 eeepc->inputdev = NULL;
125}
126
127static acpi_status eeepc_wmi_get_devstate(u32 dev_id, u32 *ctrl_param)
128{
129 struct acpi_buffer input = { (acpi_size)sizeof(u32), &dev_id };
130 struct acpi_buffer output = { ACPI_ALLOCATE_BUFFER, NULL };
131 union acpi_object *obj;
132 acpi_status status; 94 acpi_status status;
133 u32 tmp; 95 bool found = false;
134
135 status = wmi_evaluate_method(EEEPC_WMI_MGMT_GUID,
136 1, EEEPC_WMI_METHODID_DSTS, &input, &output);
137 96
138 if (ACPI_FAILURE(status)) 97 status = acpi_get_devices(EEEPC_ACPI_HID, eeepc_wmi_parse_device,
139 return status; 98 &found, NULL);
140 99
141 obj = (union acpi_object *)output.pointer; 100 if (ACPI_FAILURE(status) || !found)
142 if (obj && obj->type == ACPI_TYPE_INTEGER)
143 tmp = (u32)obj->integer.value;
144 else
145 tmp = 0;
146
147 if (ctrl_param)
148 *ctrl_param = tmp;
149
150 kfree(obj);
151
152 return status;
153
154}
155
156static acpi_status eeepc_wmi_set_devstate(u32 dev_id, u32 ctrl_param)
157{
158 struct bios_args args = {
159 .dev_id = dev_id,
160 .ctrl_param = ctrl_param,
161 };
162 struct acpi_buffer input = { (acpi_size)sizeof(args), &args };
163 acpi_status status;
164
165 status = wmi_evaluate_method(EEEPC_WMI_MGMT_GUID,
166 1, EEEPC_WMI_METHODID_DEVS, &input, NULL);
167
168 return status;
169}
170
171static int read_brightness(struct backlight_device *bd)
172{
173 static u32 ctrl_param;
174 acpi_status status;
175
176 status = eeepc_wmi_get_devstate(EEEPC_WMI_DEVID_BACKLIGHT, &ctrl_param);
177
178 if (ACPI_FAILURE(status))
179 return -1;
180 else
181 return ctrl_param & 0xFF;
182}
183
184static int update_bl_status(struct backlight_device *bd)
185{
186
187 static u32 ctrl_param;
188 acpi_status status;
189
190 ctrl_param = bd->props.brightness;
191
192 status = eeepc_wmi_set_devstate(EEEPC_WMI_DEVID_BACKLIGHT, ctrl_param);
193
194 if (ACPI_FAILURE(status))
195 return -1;
196 else
197 return 0; 101 return 0;
102 return -1;
198} 103}
199 104
200static const struct backlight_ops eeepc_wmi_bl_ops = { 105static int eeepc_wmi_probe(struct platform_device *pdev)
201 .get_brightness = read_brightness,
202 .update_status = update_bl_status,
203};
204
205static int eeepc_wmi_backlight_notify(struct eeepc_wmi *eeepc, int code)
206{ 106{
207 struct backlight_device *bd = eeepc->backlight_device; 107 if (eeepc_wmi_check_atkd()) {
208 int old = bd->props.brightness; 108 pr_warn("WMI device present, but legacy ATKD device is also "
209 int new = old; 109 "present and enabled\n");
210 110 pr_warn("You probably booted with acpi_osi=\"Linux\" or "
211 if (code >= NOTIFY_BRNUP_MIN && code <= NOTIFY_BRNUP_MAX) 111 "acpi_osi=\"!Windows 2009\"\n");
212 new = code - NOTIFY_BRNUP_MIN + 1; 112 pr_warn("Can't load eeepc-wmi, use default acpi_osi "
213 else if (code >= NOTIFY_BRNDOWN_MIN && code <= NOTIFY_BRNDOWN_MAX) 113 "(preferred) or eeepc-laptop\n");
214 new = code - NOTIFY_BRNDOWN_MIN; 114 return -EBUSY;
215
216 bd->props.brightness = new;
217 backlight_update_status(bd);
218 backlight_force_update(bd, BACKLIGHT_UPDATE_HOTKEY);
219
220 return old;
221}
222
223static int eeepc_wmi_backlight_init(struct eeepc_wmi *eeepc)
224{
225 struct backlight_device *bd;
226 struct backlight_properties props;
227
228 memset(&props, 0, sizeof(struct backlight_properties));
229 props.max_brightness = 15;
230 bd = backlight_device_register(EEEPC_WMI_FILE,
231 &platform_device->dev, eeepc,
232 &eeepc_wmi_bl_ops, &props);
233 if (IS_ERR(bd)) {
234 pr_err("Could not register backlight device\n");
235 return PTR_ERR(bd);
236 } 115 }
237
238 eeepc->backlight_device = bd;
239
240 bd->props.brightness = read_brightness(bd);
241 bd->props.power = FB_BLANK_UNBLANK;
242 backlight_update_status(bd);
243
244 return 0; 116 return 0;
245} 117}
246 118
247static void eeepc_wmi_backlight_exit(struct eeepc_wmi *eeepc) 119static void eeepc_dmi_check(struct asus_wmi_driver *driver)
248{
249 if (eeepc->backlight_device)
250 backlight_device_unregister(eeepc->backlight_device);
251
252 eeepc->backlight_device = NULL;
253}
254
255static void eeepc_wmi_notify(u32 value, void *context)
256{ 120{
257 struct eeepc_wmi *eeepc = context; 121 const char *model;
258 struct acpi_buffer response = { ACPI_ALLOCATE_BUFFER, NULL };
259 union acpi_object *obj;
260 acpi_status status;
261 int code;
262 int orig_code;
263 122
264 status = wmi_get_event_data(value, &response); 123 model = dmi_get_system_info(DMI_PRODUCT_NAME);
265 if (status != AE_OK) { 124 if (!model)
266 pr_err("bad event status 0x%x\n", status);
267 return; 125 return;
268 }
269
270 obj = (union acpi_object *)response.pointer;
271
272 if (obj && obj->type == ACPI_TYPE_INTEGER) {
273 code = obj->integer.value;
274 orig_code = code;
275
276 if (code >= NOTIFY_BRNUP_MIN && code <= NOTIFY_BRNUP_MAX)
277 code = NOTIFY_BRNUP_MIN;
278 else if (code >= NOTIFY_BRNDOWN_MIN &&
279 code <= NOTIFY_BRNDOWN_MAX)
280 code = NOTIFY_BRNDOWN_MIN;
281
282 if (code == NOTIFY_BRNUP_MIN || code == NOTIFY_BRNDOWN_MIN) {
283 if (!acpi_video_backlight_support())
284 eeepc_wmi_backlight_notify(eeepc, orig_code);
285 }
286
287 if (!sparse_keymap_report_event(eeepc->inputdev,
288 code, 1, true))
289 pr_info("Unknown key %x pressed\n", code);
290 }
291
292 kfree(obj);
293}
294
295static int __devinit eeepc_wmi_platform_probe(struct platform_device *device)
296{
297 struct eeepc_wmi *eeepc;
298 int err;
299 acpi_status status;
300
301 eeepc = platform_get_drvdata(device);
302
303 err = eeepc_wmi_input_init(eeepc);
304 if (err)
305 goto error_input;
306
307 if (!acpi_video_backlight_support()) {
308 err = eeepc_wmi_backlight_init(eeepc);
309 if (err)
310 goto error_backlight;
311 } else
312 pr_info("Backlight controlled by ACPI video driver\n");
313 126
314 status = wmi_install_notify_handler(EEEPC_WMI_EVENT_GUID, 127 /*
315 eeepc_wmi_notify, eeepc); 128 * Whitelist for wlan hotplug
316 if (ACPI_FAILURE(status)) { 129 *
317 pr_err("Unable to register notify handler - %d\n", 130 * Asus 1000H needs the current hotplug code to handle
318 status); 131 * Fn+F2 correctly. We may add other Asus here later, but
319 err = -ENODEV; 132 * it seems that most of the laptops supported by asus-wmi
320 goto error_wmi; 133 * don't need to be on this list
134 */
135 if (strcmp(model, "1000H") == 0) {
136 driver->hotplug_wireless = true;
137 pr_info("wlan hotplug enabled\n");
321 } 138 }
322
323 return 0;
324
325error_wmi:
326 eeepc_wmi_backlight_exit(eeepc);
327error_backlight:
328 eeepc_wmi_input_exit(eeepc);
329error_input:
330 return err;
331} 139}
332 140
333static int __devexit eeepc_wmi_platform_remove(struct platform_device *device) 141static void eeepc_wmi_quirks(struct asus_wmi_driver *driver)
334{ 142{
335 struct eeepc_wmi *eeepc; 143 driver->hotplug_wireless = hotplug_wireless;
336 144 eeepc_dmi_check(driver);
337 eeepc = platform_get_drvdata(device);
338 wmi_remove_notify_handler(EEEPC_WMI_EVENT_GUID);
339 eeepc_wmi_backlight_exit(eeepc);
340 eeepc_wmi_input_exit(eeepc);
341
342 return 0;
343} 145}
344 146
345static struct platform_driver platform_driver = { 147static struct asus_wmi_driver asus_wmi_driver = {
346 .driver = { 148 .name = EEEPC_WMI_FILE,
347 .name = EEEPC_WMI_FILE, 149 .owner = THIS_MODULE,
348 .owner = THIS_MODULE, 150 .event_guid = EEEPC_WMI_EVENT_GUID,
349 }, 151 .keymap = eeepc_wmi_keymap,
350 .probe = eeepc_wmi_platform_probe, 152 .input_name = "Eee PC WMI hotkeys",
351 .remove = __devexit_p(eeepc_wmi_platform_remove), 153 .input_phys = EEEPC_WMI_FILE "/input0",
154 .probe = eeepc_wmi_probe,
155 .quirks = eeepc_wmi_quirks,
352}; 156};
353 157
158
354static int __init eeepc_wmi_init(void) 159static int __init eeepc_wmi_init(void)
355{ 160{
356 struct eeepc_wmi *eeepc; 161 return asus_wmi_register_driver(&asus_wmi_driver);
357 int err;
358
359 if (!wmi_has_guid(EEEPC_WMI_EVENT_GUID) ||
360 !wmi_has_guid(EEEPC_WMI_MGMT_GUID)) {
361 pr_warning("No known WMI GUID found\n");
362 return -ENODEV;
363 }
364
365 eeepc = kzalloc(sizeof(struct eeepc_wmi), GFP_KERNEL);
366 if (!eeepc)
367 return -ENOMEM;
368
369 platform_device = platform_device_alloc(EEEPC_WMI_FILE, -1);
370 if (!platform_device) {
371 pr_warning("Unable to allocate platform device\n");
372 err = -ENOMEM;
373 goto fail_platform;
374 }
375
376 err = platform_device_add(platform_device);
377 if (err) {
378 pr_warning("Unable to add platform device\n");
379 goto put_dev;
380 }
381
382 platform_set_drvdata(platform_device, eeepc);
383
384 err = platform_driver_register(&platform_driver);
385 if (err) {
386 pr_warning("Unable to register platform driver\n");
387 goto del_dev;
388 }
389
390 return 0;
391
392del_dev:
393 platform_device_del(platform_device);
394put_dev:
395 platform_device_put(platform_device);
396fail_platform:
397 kfree(eeepc);
398
399 return err;
400} 162}
401 163
402static void __exit eeepc_wmi_exit(void) 164static void __exit eeepc_wmi_exit(void)
403{ 165{
404 struct eeepc_wmi *eeepc; 166 asus_wmi_unregister_driver(&asus_wmi_driver);
405
406 eeepc = platform_get_drvdata(platform_device);
407 platform_driver_unregister(&platform_driver);
408 platform_device_unregister(platform_device);
409 kfree(eeepc);
410} 167}
411 168
412module_init(eeepc_wmi_init); 169module_init(eeepc_wmi_init);