blob: c1741142a4cb64c3cf1c705bbd1385c03d89778c [file] [log] [blame]
Matthew Garrett62ec30d2008-07-25 01:45:39 -07001/*
2 * HP WMI hotkeys
3 *
4 * Copyright (C) 2008 Red Hat <mjg@redhat.com>
5 *
6 * Portions based on wistron_btns.c:
7 * Copyright (C) 2005 Miloslav Trmac <mitr@volny.cz>
8 * Copyright (C) 2005 Bernhard Rosenkraenzer <bero@arklinux.org>
9 * Copyright (C) 2005 Dmitry Torokhov <dtor@mail.ru>
10 *
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License as published by
13 * the Free Software Foundation; either version 2 of the License, or
14 * (at your option) any later version.
15 *
16 * This program is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU General Public License for more details.
20 *
21 * You should have received a copy of the GNU General Public License
22 * along with this program; if not, write to the Free Software
23 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
24 */
25
26#include <linux/kernel.h>
27#include <linux/module.h>
28#include <linux/init.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090029#include <linux/slab.h>
Matthew Garrett62ec30d2008-07-25 01:45:39 -070030#include <linux/types.h>
31#include <linux/input.h>
Matthew Garrett62ec30d2008-07-25 01:45:39 -070032#include <linux/platform_device.h>
33#include <linux/acpi.h>
34#include <linux/rfkill.h>
35#include <linux/string.h>
36
37MODULE_AUTHOR("Matthew Garrett <mjg59@srcf.ucam.org>");
38MODULE_DESCRIPTION("HP laptop WMI hotkeys driver");
39MODULE_LICENSE("GPL");
40
41MODULE_ALIAS("wmi:95F24279-4D7B-4334-9387-ACCDC67EF61C");
42MODULE_ALIAS("wmi:5FB7F034-2C63-45e9-BE91-3D44E2C707E4");
43
44#define HPWMI_EVENT_GUID "95F24279-4D7B-4334-9387-ACCDC67EF61C"
45#define HPWMI_BIOS_GUID "5FB7F034-2C63-45e9-BE91-3D44E2C707E4"
46
47#define HPWMI_DISPLAY_QUERY 0x1
48#define HPWMI_HDDTEMP_QUERY 0x2
49#define HPWMI_ALS_QUERY 0x3
Matthew Garrett871043b2009-06-01 15:25:45 +010050#define HPWMI_HARDWARE_QUERY 0x4
Matthew Garrett62ec30d2008-07-25 01:45:39 -070051#define HPWMI_WIRELESS_QUERY 0x5
Matthew Garretta8823ae2008-09-02 14:36:03 -070052#define HPWMI_HOTKEY_QUERY 0xc
Matthew Garrett62ec30d2008-07-25 01:45:39 -070053
Thomas Renningera2806c62010-05-21 16:18:11 +020054#define PREFIX "HP WMI: "
Thomas Renninger1bbdfd52010-05-21 16:18:13 +020055#define UNIMP "Unimplemented "
Thomas Renningera2806c62010-05-21 16:18:11 +020056
Alan Jenkinse5fbba82009-07-21 12:14:01 +010057enum hp_wmi_radio {
58 HPWMI_WIFI = 0,
59 HPWMI_BLUETOOTH = 1,
60 HPWMI_WWAN = 2,
61};
62
Thomas Renninger751ae802010-05-21 16:18:09 +020063enum hp_wmi_event_ids {
64 HPWMI_DOCK_EVENT = 1,
Thomas Renninger1bbdfd52010-05-21 16:18:13 +020065 HPWMI_PARK_HDD = 2,
66 HPWMI_SMART_ADAPTER = 3,
Thomas Renninger751ae802010-05-21 16:18:09 +020067 HPWMI_BEZEL_BUTTON = 4,
68 HPWMI_WIRELESS = 5,
Thomas Renninger1bbdfd52010-05-21 16:18:13 +020069 HPWMI_CPU_BATTERY_THROTTLE = 6,
70 HPWMI_LOCK_SWITCH = 7,
Thomas Renninger751ae802010-05-21 16:18:09 +020071};
72
Uwe Kleine-Königea796322010-02-04 20:56:52 +010073static int __devinit hp_wmi_bios_setup(struct platform_device *device);
Matthew Garrett62ec30d2008-07-25 01:45:39 -070074static int __exit hp_wmi_bios_remove(struct platform_device *device);
Frans Pop8dd2b422009-08-20 20:38:13 +020075static int hp_wmi_resume_handler(struct device *device);
Matthew Garrett62ec30d2008-07-25 01:45:39 -070076
77struct bios_args {
78 u32 signature;
79 u32 command;
80 u32 commandtype;
81 u32 datasize;
Matthew Garretta8ec1052010-08-23 15:52:34 -040082 u32 data;
Matthew Garrett62ec30d2008-07-25 01:45:39 -070083};
84
85struct bios_return {
86 u32 sigpass;
87 u32 return_code;
Matthew Garretta8ec1052010-08-23 15:52:34 -040088 u32 value;
Matthew Garrett62ec30d2008-07-25 01:45:39 -070089};
90
91struct key_entry {
92 char type; /* See KE_* below */
Matthew Garretta8823ae2008-09-02 14:36:03 -070093 u16 code;
Matthew Garrett62ec30d2008-07-25 01:45:39 -070094 u16 keycode;
95};
96
Matthew Garrett871043b2009-06-01 15:25:45 +010097enum { KE_KEY, KE_END };
Matthew Garrett62ec30d2008-07-25 01:45:39 -070098
99static struct key_entry hp_wmi_keymap[] = {
Matthew Garrett62ec30d2008-07-25 01:45:39 -0700100 {KE_KEY, 0x02, KEY_BRIGHTNESSUP},
101 {KE_KEY, 0x03, KEY_BRIGHTNESSDOWN},
Matthew Garretta8823ae2008-09-02 14:36:03 -0700102 {KE_KEY, 0x20e6, KEY_PROG1},
Thomas Renningerf6b2ff02010-05-21 16:18:12 +0200103 {KE_KEY, 0x20e8, KEY_MEDIA},
Matthew Garretta8823ae2008-09-02 14:36:03 -0700104 {KE_KEY, 0x2142, KEY_MEDIA},
Eric Piel5c624842008-10-18 20:27:28 -0700105 {KE_KEY, 0x213b, KEY_INFO},
Matthew Garrettcaeacf52010-02-17 10:29:39 -0500106 {KE_KEY, 0x2169, KEY_DIRECTION},
Matthew Garretta8823ae2008-09-02 14:36:03 -0700107 {KE_KEY, 0x231b, KEY_HELP},
Matthew Garrett62ec30d2008-07-25 01:45:39 -0700108 {KE_END, 0}
109};
110
111static struct input_dev *hp_wmi_input_dev;
112static struct platform_device *hp_wmi_platform_dev;
113
114static struct rfkill *wifi_rfkill;
115static struct rfkill *bluetooth_rfkill;
116static struct rfkill *wwan_rfkill;
117
Alexey Dobriyan47145212009-12-14 18:00:08 -0800118static const struct dev_pm_ops hp_wmi_pm_ops = {
Frans Pop8dd2b422009-08-20 20:38:13 +0200119 .resume = hp_wmi_resume_handler,
120 .restore = hp_wmi_resume_handler,
121};
122
Matthew Garrett62ec30d2008-07-25 01:45:39 -0700123static struct platform_driver hp_wmi_driver = {
124 .driver = {
Frans Pop8dd2b422009-08-20 20:38:13 +0200125 .name = "hp-wmi",
126 .owner = THIS_MODULE,
127 .pm = &hp_wmi_pm_ops,
Matthew Garrett62ec30d2008-07-25 01:45:39 -0700128 },
129 .probe = hp_wmi_bios_setup,
130 .remove = hp_wmi_bios_remove,
131};
132
Thomas Renninger6d96e002010-05-21 16:42:40 +0200133/*
134 * hp_wmi_perform_query
135 *
136 * query: The commandtype -> What should be queried
137 * write: The command -> 0 read, 1 write, 3 ODM specific
138 * buffer: Buffer used as input and/or output
139 * buffersize: Size of buffer
140 *
141 * returns zero on success
142 * an HP WMI query specific error code (which is positive)
143 * -EINVAL if the query was not successful at all
144 * -EINVAL if the output buffer size exceeds buffersize
145 *
146 * Note: The buffersize must at least be the maximum of the input and output
147 * size. E.g. Battery info query (0x7) is defined to have 1 byte input
148 * and 128 byte output. The caller would do:
149 * buffer = kzalloc(128, GFP_KERNEL);
150 * ret = hp_wmi_perform_query(0x7, 0, buffer, 128)
151 */
Matthew Garretta8ec1052010-08-23 15:52:34 -0400152static int hp_wmi_perform_query(int query, int write, u32 *buffer,
Thomas Renninger6d96e002010-05-21 16:42:40 +0200153 int buffersize)
Matthew Garrett62ec30d2008-07-25 01:45:39 -0700154{
155 struct bios_return bios_return;
156 acpi_status status;
157 union acpi_object *obj;
158 struct bios_args args = {
159 .signature = 0x55434553,
160 .command = write ? 0x2 : 0x1,
161 .commandtype = query,
Thomas Renninger6d96e002010-05-21 16:42:40 +0200162 .datasize = buffersize,
Matthew Garretta8ec1052010-08-23 15:52:34 -0400163 .data = *buffer,
Matthew Garrett62ec30d2008-07-25 01:45:39 -0700164 };
165 struct acpi_buffer input = { sizeof(struct bios_args), &args };
166 struct acpi_buffer output = { ACPI_ALLOCATE_BUFFER, NULL };
167
168 status = wmi_evaluate_method(HPWMI_BIOS_GUID, 0, 0x3, &input, &output);
169
170 obj = output.pointer;
171
Thomas Renninger44ef00e2009-12-18 15:29:23 +0100172 if (!obj)
Matthew Garrett62ec30d2008-07-25 01:45:39 -0700173 return -EINVAL;
Thomas Renninger44ef00e2009-12-18 15:29:23 +0100174 else if (obj->type != ACPI_TYPE_BUFFER) {
175 kfree(obj);
176 return -EINVAL;
177 }
Matthew Garrett62ec30d2008-07-25 01:45:39 -0700178
179 bios_return = *((struct bios_return *)obj->buffer.pointer);
Thomas Renninger6d96e002010-05-21 16:42:40 +0200180
Matthew Garretta8ec1052010-08-23 15:52:34 -0400181 memcpy(buffer, &bios_return.value, sizeof(bios_return.value));
Thomas Renninger6d96e002010-05-21 16:42:40 +0200182 return 0;
Matthew Garrett62ec30d2008-07-25 01:45:39 -0700183}
184
185static int hp_wmi_display_state(void)
186{
Matthew Garretta8ec1052010-08-23 15:52:34 -0400187 int state = 0;
188 int ret = hp_wmi_perform_query(HPWMI_DISPLAY_QUERY, 0, &state,
Thomas Renninger6d96e002010-05-21 16:42:40 +0200189 sizeof(state));
190 if (ret)
191 return -EINVAL;
192 return state;
Matthew Garrett62ec30d2008-07-25 01:45:39 -0700193}
194
195static int hp_wmi_hddtemp_state(void)
196{
Matthew Garretta8ec1052010-08-23 15:52:34 -0400197 int state = 0;
198 int ret = hp_wmi_perform_query(HPWMI_HDDTEMP_QUERY, 0, &state,
Thomas Renninger6d96e002010-05-21 16:42:40 +0200199 sizeof(state));
200 if (ret)
201 return -EINVAL;
202 return state;
Matthew Garrett62ec30d2008-07-25 01:45:39 -0700203}
204
205static int hp_wmi_als_state(void)
206{
Matthew Garretta8ec1052010-08-23 15:52:34 -0400207 int state = 0;
208 int ret = hp_wmi_perform_query(HPWMI_ALS_QUERY, 0, &state,
Thomas Renninger6d96e002010-05-21 16:42:40 +0200209 sizeof(state));
210 if (ret)
211 return -EINVAL;
212 return state;
Matthew Garrett62ec30d2008-07-25 01:45:39 -0700213}
214
215static int hp_wmi_dock_state(void)
216{
Matthew Garretta8ec1052010-08-23 15:52:34 -0400217 int state = 0;
218 int ret = hp_wmi_perform_query(HPWMI_HARDWARE_QUERY, 0, &state,
Thomas Renninger6d96e002010-05-21 16:42:40 +0200219 sizeof(state));
Matthew Garrett871043b2009-06-01 15:25:45 +0100220
Thomas Renninger6d96e002010-05-21 16:42:40 +0200221 if (ret)
222 return -EINVAL;
Matthew Garrett871043b2009-06-01 15:25:45 +0100223
Thomas Renninger6d96e002010-05-21 16:42:40 +0200224 return state & 0x1;
Matthew Garrett62ec30d2008-07-25 01:45:39 -0700225}
226
Matthew Garrett871043b2009-06-01 15:25:45 +0100227static int hp_wmi_tablet_state(void)
Matthew Garrett62ec30d2008-07-25 01:45:39 -0700228{
Matthew Garretta8ec1052010-08-23 15:52:34 -0400229 int state = 0;
230 int ret = hp_wmi_perform_query(HPWMI_HARDWARE_QUERY, 0, &state,
Thomas Renninger6d96e002010-05-21 16:42:40 +0200231 sizeof(state));
232 if (ret)
Matthew Garrett871043b2009-06-01 15:25:45 +0100233 return ret;
234
Thomas Renninger6d96e002010-05-21 16:42:40 +0200235 return (state & 0x4) ? 1 : 0;
Matthew Garrett62ec30d2008-07-25 01:45:39 -0700236}
237
Johannes Berg19d337d2009-06-02 13:01:37 +0200238static int hp_wmi_set_block(void *data, bool blocked)
Matthew Garrett62ec30d2008-07-25 01:45:39 -0700239{
Alan Jenkinse5fbba82009-07-21 12:14:01 +0100240 enum hp_wmi_radio r = (enum hp_wmi_radio) data;
241 int query = BIT(r + 8) | ((!blocked) << r);
Thomas Renninger6d96e002010-05-21 16:42:40 +0200242 int ret;
Johannes Berg19d337d2009-06-02 13:01:37 +0200243
Thomas Renninger6d96e002010-05-21 16:42:40 +0200244 ret = hp_wmi_perform_query(HPWMI_WIRELESS_QUERY, 1,
Matthew Garretta8ec1052010-08-23 15:52:34 -0400245 &query, sizeof(query));
Thomas Renninger6d96e002010-05-21 16:42:40 +0200246 if (ret)
247 return -EINVAL;
248 return 0;
Matthew Garrett62ec30d2008-07-25 01:45:39 -0700249}
250
Johannes Berg19d337d2009-06-02 13:01:37 +0200251static const struct rfkill_ops hp_wmi_rfkill_ops = {
252 .set_block = hp_wmi_set_block,
253};
Matthew Garrett62ec30d2008-07-25 01:45:39 -0700254
Alan Jenkinse5fbba82009-07-21 12:14:01 +0100255static bool hp_wmi_get_sw_state(enum hp_wmi_radio r)
Matthew Garrett62ec30d2008-07-25 01:45:39 -0700256{
Matthew Garretta8ec1052010-08-23 15:52:34 -0400257 int wireless = 0;
Thomas Renninger6d96e002010-05-21 16:42:40 +0200258 int mask;
259 hp_wmi_perform_query(HPWMI_WIRELESS_QUERY, 0,
Matthew Garretta8ec1052010-08-23 15:52:34 -0400260 &wireless, sizeof(wireless));
Thomas Renninger6d96e002010-05-21 16:42:40 +0200261 /* TBD: Pass error */
262
263 mask = 0x200 << (r * 8);
Matthew Garrett62ec30d2008-07-25 01:45:39 -0700264
Alan Jenkinse5fbba82009-07-21 12:14:01 +0100265 if (wireless & mask)
Johannes Berg19d337d2009-06-02 13:01:37 +0200266 return false;
Matthew Garrett62ec30d2008-07-25 01:45:39 -0700267 else
Johannes Berg19d337d2009-06-02 13:01:37 +0200268 return true;
Matthew Garrett62ec30d2008-07-25 01:45:39 -0700269}
270
Alan Jenkinse5fbba82009-07-21 12:14:01 +0100271static bool hp_wmi_get_hw_state(enum hp_wmi_radio r)
Matthew Garrett62ec30d2008-07-25 01:45:39 -0700272{
Matthew Garretta8ec1052010-08-23 15:52:34 -0400273 int wireless = 0;
Thomas Renninger6d96e002010-05-21 16:42:40 +0200274 int mask;
275 hp_wmi_perform_query(HPWMI_WIRELESS_QUERY, 0,
Matthew Garretta8ec1052010-08-23 15:52:34 -0400276 &wireless, sizeof(wireless));
Thomas Renninger6d96e002010-05-21 16:42:40 +0200277 /* TBD: Pass error */
278
279 mask = 0x800 << (r * 8);
Matthew Garrett62ec30d2008-07-25 01:45:39 -0700280
Alan Jenkinse5fbba82009-07-21 12:14:01 +0100281 if (wireless & mask)
Johannes Berg19d337d2009-06-02 13:01:37 +0200282 return false;
Matthew Garrett62ec30d2008-07-25 01:45:39 -0700283 else
Johannes Berg19d337d2009-06-02 13:01:37 +0200284 return true;
Matthew Garrett62ec30d2008-07-25 01:45:39 -0700285}
286
287static ssize_t show_display(struct device *dev, struct device_attribute *attr,
288 char *buf)
289{
290 int value = hp_wmi_display_state();
291 if (value < 0)
292 return -EINVAL;
293 return sprintf(buf, "%d\n", value);
294}
295
296static ssize_t show_hddtemp(struct device *dev, struct device_attribute *attr,
297 char *buf)
298{
299 int value = hp_wmi_hddtemp_state();
300 if (value < 0)
301 return -EINVAL;
302 return sprintf(buf, "%d\n", value);
303}
304
305static ssize_t show_als(struct device *dev, struct device_attribute *attr,
306 char *buf)
307{
308 int value = hp_wmi_als_state();
309 if (value < 0)
310 return -EINVAL;
311 return sprintf(buf, "%d\n", value);
312}
313
314static ssize_t show_dock(struct device *dev, struct device_attribute *attr,
315 char *buf)
316{
317 int value = hp_wmi_dock_state();
318 if (value < 0)
319 return -EINVAL;
320 return sprintf(buf, "%d\n", value);
321}
322
Matthew Garrett871043b2009-06-01 15:25:45 +0100323static ssize_t show_tablet(struct device *dev, struct device_attribute *attr,
324 char *buf)
325{
326 int value = hp_wmi_tablet_state();
327 if (value < 0)
328 return -EINVAL;
329 return sprintf(buf, "%d\n", value);
330}
331
Matthew Garrett62ec30d2008-07-25 01:45:39 -0700332static ssize_t set_als(struct device *dev, struct device_attribute *attr,
333 const char *buf, size_t count)
334{
335 u32 tmp = simple_strtoul(buf, NULL, 10);
Matthew Garretta8ec1052010-08-23 15:52:34 -0400336 int ret = hp_wmi_perform_query(HPWMI_ALS_QUERY, 1, &tmp,
Thomas Renninger6d96e002010-05-21 16:42:40 +0200337 sizeof(tmp));
338 if (ret)
339 return -EINVAL;
340
Matthew Garrett62ec30d2008-07-25 01:45:39 -0700341 return count;
342}
343
344static DEVICE_ATTR(display, S_IRUGO, show_display, NULL);
345static DEVICE_ATTR(hddtemp, S_IRUGO, show_hddtemp, NULL);
346static DEVICE_ATTR(als, S_IRUGO | S_IWUSR, show_als, set_als);
347static DEVICE_ATTR(dock, S_IRUGO, show_dock, NULL);
Matthew Garrett871043b2009-06-01 15:25:45 +0100348static DEVICE_ATTR(tablet, S_IRUGO, show_tablet, NULL);
Matthew Garrett62ec30d2008-07-25 01:45:39 -0700349
Dmitry Torokhov58b93992010-03-08 22:37:10 -0800350static struct key_entry *hp_wmi_get_entry_by_scancode(unsigned int code)
Matthew Garrett62ec30d2008-07-25 01:45:39 -0700351{
352 struct key_entry *key;
353
354 for (key = hp_wmi_keymap; key->type != KE_END; key++)
355 if (code == key->code)
356 return key;
357
358 return NULL;
359}
360
Dmitry Torokhov58b93992010-03-08 22:37:10 -0800361static struct key_entry *hp_wmi_get_entry_by_keycode(unsigned int keycode)
Matthew Garrett62ec30d2008-07-25 01:45:39 -0700362{
363 struct key_entry *key;
364
365 for (key = hp_wmi_keymap; key->type != KE_END; key++)
366 if (key->type == KE_KEY && keycode == key->keycode)
367 return key;
368
369 return NULL;
370}
371
Dmitry Torokhov58b93992010-03-08 22:37:10 -0800372static int hp_wmi_getkeycode(struct input_dev *dev,
373 unsigned int scancode, unsigned int *keycode)
Matthew Garrett62ec30d2008-07-25 01:45:39 -0700374{
375 struct key_entry *key = hp_wmi_get_entry_by_scancode(scancode);
376
377 if (key && key->type == KE_KEY) {
378 *keycode = key->keycode;
379 return 0;
380 }
381
382 return -EINVAL;
383}
384
Dmitry Torokhov58b93992010-03-08 22:37:10 -0800385static int hp_wmi_setkeycode(struct input_dev *dev,
386 unsigned int scancode, unsigned int keycode)
Matthew Garrett62ec30d2008-07-25 01:45:39 -0700387{
388 struct key_entry *key;
Dmitry Torokhov58b93992010-03-08 22:37:10 -0800389 unsigned int old_keycode;
Matthew Garrett62ec30d2008-07-25 01:45:39 -0700390
391 key = hp_wmi_get_entry_by_scancode(scancode);
392 if (key && key->type == KE_KEY) {
393 old_keycode = key->keycode;
394 key->keycode = keycode;
395 set_bit(keycode, dev->keybit);
396 if (!hp_wmi_get_entry_by_keycode(old_keycode))
397 clear_bit(old_keycode, dev->keybit);
398 return 0;
399 }
400
401 return -EINVAL;
402}
403
Adrian Bunk88429a12008-10-15 22:05:17 -0700404static void hp_wmi_notify(u32 value, void *context)
Matthew Garrett62ec30d2008-07-25 01:45:39 -0700405{
406 struct acpi_buffer response = { ACPI_ALLOCATE_BUFFER, NULL };
407 static struct key_entry *key;
408 union acpi_object *obj;
Thomas Renninger8dda6b02010-05-21 16:41:43 +0200409 u32 event_id, event_data;
Matthew Garretta8ec1052010-08-23 15:52:34 -0400410 int key_code = 0, ret;
Thomas Renninger8dda6b02010-05-21 16:41:43 +0200411 u32 *location;
Len Brownfda11e62009-12-26 23:02:24 -0500412 acpi_status status;
Matthew Garrett62ec30d2008-07-25 01:45:39 -0700413
Len Brownfda11e62009-12-26 23:02:24 -0500414 status = wmi_get_event_data(value, &response);
415 if (status != AE_OK) {
Thomas Renningera2806c62010-05-21 16:18:11 +0200416 printk(KERN_INFO PREFIX "bad event status 0x%x\n", status);
Len Brownfda11e62009-12-26 23:02:24 -0500417 return;
418 }
Matthew Garrett62ec30d2008-07-25 01:45:39 -0700419
420 obj = (union acpi_object *)response.pointer;
421
Thomas Renningerc4775062010-07-29 12:27:59 +0200422 if (!obj)
423 return;
424 if (obj->type != ACPI_TYPE_BUFFER) {
Thomas Renninger8dda6b02010-05-21 16:41:43 +0200425 printk(KERN_INFO "hp-wmi: Unknown response received %d\n",
426 obj->type);
Thomas Renninger44ef00e2009-12-18 15:29:23 +0100427 kfree(obj);
Alan Jenkinse5fbba82009-07-21 12:14:01 +0100428 return;
429 }
430
Thomas Renninger8dda6b02010-05-21 16:41:43 +0200431 /*
432 * Depending on ACPI version the concatenation of id and event data
433 * inside _WED function will result in a 8 or 16 byte buffer.
434 */
435 location = (u32 *)obj->buffer.pointer;
436 if (obj->buffer.length == 8) {
437 event_id = *location;
438 event_data = *(location + 1);
439 } else if (obj->buffer.length == 16) {
440 event_id = *location;
441 event_data = *(location + 2);
442 } else {
443 printk(KERN_INFO "hp-wmi: Unknown buffer length %d\n",
444 obj->buffer.length);
445 kfree(obj);
446 return;
447 }
Thomas Renninger44ef00e2009-12-18 15:29:23 +0100448 kfree(obj);
Thomas Renninger8dda6b02010-05-21 16:41:43 +0200449
450 switch (event_id) {
Thomas Renninger751ae802010-05-21 16:18:09 +0200451 case HPWMI_DOCK_EVENT:
Alan Jenkinse5fbba82009-07-21 12:14:01 +0100452 input_report_switch(hp_wmi_input_dev, SW_DOCK,
453 hp_wmi_dock_state());
454 input_report_switch(hp_wmi_input_dev, SW_TABLET_MODE,
455 hp_wmi_tablet_state());
456 input_sync(hp_wmi_input_dev);
Thomas Renninger751ae802010-05-21 16:18:09 +0200457 break;
Thomas Renninger1bbdfd52010-05-21 16:18:13 +0200458 case HPWMI_PARK_HDD:
459 break;
460 case HPWMI_SMART_ADAPTER:
461 break;
Thomas Renninger751ae802010-05-21 16:18:09 +0200462 case HPWMI_BEZEL_BUTTON:
Thomas Renninger6d96e002010-05-21 16:42:40 +0200463 ret = hp_wmi_perform_query(HPWMI_HOTKEY_QUERY, 0,
Matthew Garretta8ec1052010-08-23 15:52:34 -0400464 &key_code,
Thomas Renninger6d96e002010-05-21 16:42:40 +0200465 sizeof(key_code));
466 if (ret)
467 break;
Thomas Renninger751ae802010-05-21 16:18:09 +0200468 key = hp_wmi_get_entry_by_scancode(key_code);
469 if (key) {
470 switch (key->type) {
471 case KE_KEY:
472 input_report_key(hp_wmi_input_dev,
473 key->keycode, 1);
474 input_sync(hp_wmi_input_dev);
475 input_report_key(hp_wmi_input_dev,
476 key->keycode, 0);
477 input_sync(hp_wmi_input_dev);
478 break;
479 }
Thomas Renningerda9a79b2010-05-21 16:18:10 +0200480 } else
Thomas Renningera2806c62010-05-21 16:18:11 +0200481 printk(KERN_INFO PREFIX "Unknown key code - 0x%x\n",
Thomas Renningerda9a79b2010-05-21 16:18:10 +0200482 key_code);
Thomas Renninger751ae802010-05-21 16:18:09 +0200483 break;
484 case HPWMI_WIRELESS:
Alan Jenkinse5fbba82009-07-21 12:14:01 +0100485 if (wifi_rfkill)
486 rfkill_set_states(wifi_rfkill,
487 hp_wmi_get_sw_state(HPWMI_WIFI),
488 hp_wmi_get_hw_state(HPWMI_WIFI));
489 if (bluetooth_rfkill)
490 rfkill_set_states(bluetooth_rfkill,
491 hp_wmi_get_sw_state(HPWMI_BLUETOOTH),
492 hp_wmi_get_hw_state(HPWMI_BLUETOOTH));
493 if (wwan_rfkill)
494 rfkill_set_states(wwan_rfkill,
495 hp_wmi_get_sw_state(HPWMI_WWAN),
496 hp_wmi_get_hw_state(HPWMI_WWAN));
Thomas Renninger751ae802010-05-21 16:18:09 +0200497 break;
Thomas Renninger1bbdfd52010-05-21 16:18:13 +0200498 case HPWMI_CPU_BATTERY_THROTTLE:
499 printk(KERN_INFO PREFIX UNIMP "CPU throttle because of 3 Cell"
500 " battery event detected\n");
501 break;
502 case HPWMI_LOCK_SWITCH:
503 break;
Thomas Renninger751ae802010-05-21 16:18:09 +0200504 default:
Thomas Renninger8dda6b02010-05-21 16:41:43 +0200505 printk(KERN_INFO PREFIX "Unknown event_id - %d - 0x%x\n",
506 event_id, event_data);
Thomas Renninger751ae802010-05-21 16:18:09 +0200507 break;
508 }
Matthew Garrett62ec30d2008-07-25 01:45:39 -0700509}
510
511static int __init hp_wmi_input_setup(void)
512{
513 struct key_entry *key;
514 int err;
515
516 hp_wmi_input_dev = input_allocate_device();
Axel Linbc285962010-07-20 15:19:51 -0700517 if (!hp_wmi_input_dev)
518 return -ENOMEM;
Matthew Garrett62ec30d2008-07-25 01:45:39 -0700519
520 hp_wmi_input_dev->name = "HP WMI hotkeys";
521 hp_wmi_input_dev->phys = "wmi/input0";
522 hp_wmi_input_dev->id.bustype = BUS_HOST;
523 hp_wmi_input_dev->getkeycode = hp_wmi_getkeycode;
524 hp_wmi_input_dev->setkeycode = hp_wmi_setkeycode;
525
526 for (key = hp_wmi_keymap; key->type != KE_END; key++) {
527 switch (key->type) {
528 case KE_KEY:
529 set_bit(EV_KEY, hp_wmi_input_dev->evbit);
530 set_bit(key->keycode, hp_wmi_input_dev->keybit);
531 break;
Matthew Garrett62ec30d2008-07-25 01:45:39 -0700532 }
533 }
534
Matthew Garrett871043b2009-06-01 15:25:45 +0100535 set_bit(EV_SW, hp_wmi_input_dev->evbit);
536 set_bit(SW_DOCK, hp_wmi_input_dev->swbit);
537 set_bit(SW_TABLET_MODE, hp_wmi_input_dev->swbit);
538
539 /* Set initial hardware state */
540 input_report_switch(hp_wmi_input_dev, SW_DOCK, hp_wmi_dock_state());
541 input_report_switch(hp_wmi_input_dev, SW_TABLET_MODE,
542 hp_wmi_tablet_state());
543 input_sync(hp_wmi_input_dev);
544
Matthew Garrett62ec30d2008-07-25 01:45:39 -0700545 err = input_register_device(hp_wmi_input_dev);
546
547 if (err) {
548 input_free_device(hp_wmi_input_dev);
549 return err;
550 }
551
552 return 0;
553}
554
555static void cleanup_sysfs(struct platform_device *device)
556{
557 device_remove_file(&device->dev, &dev_attr_display);
558 device_remove_file(&device->dev, &dev_attr_hddtemp);
559 device_remove_file(&device->dev, &dev_attr_als);
560 device_remove_file(&device->dev, &dev_attr_dock);
Matthew Garrett871043b2009-06-01 15:25:45 +0100561 device_remove_file(&device->dev, &dev_attr_tablet);
Matthew Garrett62ec30d2008-07-25 01:45:39 -0700562}
563
Uwe Kleine-Königea796322010-02-04 20:56:52 +0100564static int __devinit hp_wmi_bios_setup(struct platform_device *device)
Matthew Garrett62ec30d2008-07-25 01:45:39 -0700565{
566 int err;
Matthew Garretta8ec1052010-08-23 15:52:34 -0400567 int wireless = 0;
Thomas Renninger6d96e002010-05-21 16:42:40 +0200568
Matthew Garretta8ec1052010-08-23 15:52:34 -0400569 err = hp_wmi_perform_query(HPWMI_WIRELESS_QUERY, 0, &wireless,
Thomas Renninger6d96e002010-05-21 16:42:40 +0200570 sizeof(wireless));
571 if (err)
572 return err;
Matthew Garrett62ec30d2008-07-25 01:45:39 -0700573
574 err = device_create_file(&device->dev, &dev_attr_display);
575 if (err)
576 goto add_sysfs_error;
577 err = device_create_file(&device->dev, &dev_attr_hddtemp);
578 if (err)
579 goto add_sysfs_error;
580 err = device_create_file(&device->dev, &dev_attr_als);
581 if (err)
582 goto add_sysfs_error;
583 err = device_create_file(&device->dev, &dev_attr_dock);
584 if (err)
585 goto add_sysfs_error;
Matthew Garrett871043b2009-06-01 15:25:45 +0100586 err = device_create_file(&device->dev, &dev_attr_tablet);
587 if (err)
588 goto add_sysfs_error;
Matthew Garrett62ec30d2008-07-25 01:45:39 -0700589
Matthew Garrett3f6e2f12008-09-02 14:36:00 -0700590 if (wireless & 0x1) {
Johannes Berg19d337d2009-06-02 13:01:37 +0200591 wifi_rfkill = rfkill_alloc("hp-wifi", &device->dev,
592 RFKILL_TYPE_WLAN,
593 &hp_wmi_rfkill_ops,
Alan Jenkinse5fbba82009-07-21 12:14:01 +0100594 (void *) HPWMI_WIFI);
595 rfkill_init_sw_state(wifi_rfkill,
596 hp_wmi_get_sw_state(HPWMI_WIFI));
597 rfkill_set_hw_state(wifi_rfkill,
598 hp_wmi_get_hw_state(HPWMI_WIFI));
Larry Fingerfe8e4e02009-01-09 16:40:54 -0800599 err = rfkill_register(wifi_rfkill);
600 if (err)
Johannes Berg19d337d2009-06-02 13:01:37 +0200601 goto register_wifi_error;
Matthew Garrett3f6e2f12008-09-02 14:36:00 -0700602 }
Matthew Garrett62ec30d2008-07-25 01:45:39 -0700603
Matthew Garrett3f6e2f12008-09-02 14:36:00 -0700604 if (wireless & 0x2) {
Johannes Berg19d337d2009-06-02 13:01:37 +0200605 bluetooth_rfkill = rfkill_alloc("hp-bluetooth", &device->dev,
606 RFKILL_TYPE_BLUETOOTH,
607 &hp_wmi_rfkill_ops,
Alan Jenkinse5fbba82009-07-21 12:14:01 +0100608 (void *) HPWMI_BLUETOOTH);
609 rfkill_init_sw_state(bluetooth_rfkill,
610 hp_wmi_get_sw_state(HPWMI_BLUETOOTH));
611 rfkill_set_hw_state(bluetooth_rfkill,
612 hp_wmi_get_hw_state(HPWMI_BLUETOOTH));
Larry Fingerfe8e4e02009-01-09 16:40:54 -0800613 err = rfkill_register(bluetooth_rfkill);
Frans Pop6989d562009-01-29 14:25:14 -0800614 if (err)
Larry Fingerfe8e4e02009-01-09 16:40:54 -0800615 goto register_bluetooth_error;
Matthew Garrett3f6e2f12008-09-02 14:36:00 -0700616 }
Matthew Garrett62ec30d2008-07-25 01:45:39 -0700617
Matthew Garrett3f6e2f12008-09-02 14:36:00 -0700618 if (wireless & 0x4) {
Johannes Berg19d337d2009-06-02 13:01:37 +0200619 wwan_rfkill = rfkill_alloc("hp-wwan", &device->dev,
620 RFKILL_TYPE_WWAN,
621 &hp_wmi_rfkill_ops,
Alan Jenkinse5fbba82009-07-21 12:14:01 +0100622 (void *) HPWMI_WWAN);
623 rfkill_init_sw_state(wwan_rfkill,
624 hp_wmi_get_sw_state(HPWMI_WWAN));
625 rfkill_set_hw_state(wwan_rfkill,
626 hp_wmi_get_hw_state(HPWMI_WWAN));
Larry Fingerfe8e4e02009-01-09 16:40:54 -0800627 err = rfkill_register(wwan_rfkill);
628 if (err)
629 goto register_wwan_err;
Matthew Garrett3f6e2f12008-09-02 14:36:00 -0700630 }
Matthew Garrett62ec30d2008-07-25 01:45:39 -0700631
632 return 0;
Larry Fingerfe8e4e02009-01-09 16:40:54 -0800633register_wwan_err:
Johannes Berg19d337d2009-06-02 13:01:37 +0200634 rfkill_destroy(wwan_rfkill);
Andrew Morton44f06062009-02-04 15:12:07 -0800635 if (bluetooth_rfkill)
636 rfkill_unregister(bluetooth_rfkill);
Larry Fingerfe8e4e02009-01-09 16:40:54 -0800637register_bluetooth_error:
Johannes Berg19d337d2009-06-02 13:01:37 +0200638 rfkill_destroy(bluetooth_rfkill);
Andrew Morton44f06062009-02-04 15:12:07 -0800639 if (wifi_rfkill)
640 rfkill_unregister(wifi_rfkill);
Johannes Berg19d337d2009-06-02 13:01:37 +0200641register_wifi_error:
642 rfkill_destroy(wifi_rfkill);
Matthew Garrett62ec30d2008-07-25 01:45:39 -0700643add_sysfs_error:
644 cleanup_sysfs(device);
645 return err;
646}
647
648static int __exit hp_wmi_bios_remove(struct platform_device *device)
649{
650 cleanup_sysfs(device);
651
Johannes Berg19d337d2009-06-02 13:01:37 +0200652 if (wifi_rfkill) {
Matthew Garrett3f6e2f12008-09-02 14:36:00 -0700653 rfkill_unregister(wifi_rfkill);
Johannes Berg19d337d2009-06-02 13:01:37 +0200654 rfkill_destroy(wifi_rfkill);
655 }
656 if (bluetooth_rfkill) {
Matthew Garrett3f6e2f12008-09-02 14:36:00 -0700657 rfkill_unregister(bluetooth_rfkill);
Corentin Chary09729f02009-09-14 12:43:51 +0200658 rfkill_destroy(bluetooth_rfkill);
Johannes Berg19d337d2009-06-02 13:01:37 +0200659 }
660 if (wwan_rfkill) {
Matthew Garrett3f6e2f12008-09-02 14:36:00 -0700661 rfkill_unregister(wwan_rfkill);
Johannes Berg19d337d2009-06-02 13:01:37 +0200662 rfkill_destroy(wwan_rfkill);
663 }
Matthew Garrett62ec30d2008-07-25 01:45:39 -0700664
665 return 0;
666}
667
Frans Pop8dd2b422009-08-20 20:38:13 +0200668static int hp_wmi_resume_handler(struct device *device)
Frans Pop4c395bd2009-03-04 11:55:28 -0800669{
Frans Pop4c395bd2009-03-04 11:55:28 -0800670 /*
Matthew Garrett871043b2009-06-01 15:25:45 +0100671 * Hardware state may have changed while suspended, so trigger
672 * input events for the current state. As this is a switch,
Frans Pop4c395bd2009-03-04 11:55:28 -0800673 * the input layer will only actually pass it on if the state
674 * changed.
675 */
Frans Popdaed9532009-07-30 17:16:05 -0400676 if (hp_wmi_input_dev) {
677 input_report_switch(hp_wmi_input_dev, SW_DOCK,
678 hp_wmi_dock_state());
679 input_report_switch(hp_wmi_input_dev, SW_TABLET_MODE,
680 hp_wmi_tablet_state());
681 input_sync(hp_wmi_input_dev);
682 }
Frans Pop4c395bd2009-03-04 11:55:28 -0800683
Alan Jenkinse5fbba82009-07-21 12:14:01 +0100684 if (wifi_rfkill)
685 rfkill_set_states(wifi_rfkill,
686 hp_wmi_get_sw_state(HPWMI_WIFI),
687 hp_wmi_get_hw_state(HPWMI_WIFI));
688 if (bluetooth_rfkill)
689 rfkill_set_states(bluetooth_rfkill,
690 hp_wmi_get_sw_state(HPWMI_BLUETOOTH),
691 hp_wmi_get_hw_state(HPWMI_BLUETOOTH));
692 if (wwan_rfkill)
693 rfkill_set_states(wwan_rfkill,
694 hp_wmi_get_sw_state(HPWMI_WWAN),
695 hp_wmi_get_hw_state(HPWMI_WWAN));
696
Frans Pop4c395bd2009-03-04 11:55:28 -0800697 return 0;
698}
699
Matthew Garrett62ec30d2008-07-25 01:45:39 -0700700static int __init hp_wmi_init(void)
701{
702 int err;
Thomas Renningerb0966672010-07-20 15:19:29 -0700703 int event_capable = wmi_has_guid(HPWMI_EVENT_GUID);
704 int bios_capable = wmi_has_guid(HPWMI_BIOS_GUID);
Matthew Garrett62ec30d2008-07-25 01:45:39 -0700705
Thomas Renningerb0966672010-07-20 15:19:29 -0700706 if (event_capable) {
Matthew Garrett62ec30d2008-07-25 01:45:39 -0700707 err = wmi_install_notify_handler(HPWMI_EVENT_GUID,
708 hp_wmi_notify, NULL);
Axel Lindfec5c42010-06-10 16:06:40 +0800709 if (ACPI_FAILURE(err))
710 return -EINVAL;
711 err = hp_wmi_input_setup();
712 if (err) {
713 wmi_remove_notify_handler(HPWMI_EVENT_GUID);
714 return err;
715 }
Matthew Garrett62ec30d2008-07-25 01:45:39 -0700716 }
717
Thomas Renningerb0966672010-07-20 15:19:29 -0700718 if (bios_capable) {
Matthew Garrett62ec30d2008-07-25 01:45:39 -0700719 err = platform_driver_register(&hp_wmi_driver);
720 if (err)
Axel Lindfec5c42010-06-10 16:06:40 +0800721 goto err_driver_reg;
Matthew Garrett62ec30d2008-07-25 01:45:39 -0700722 hp_wmi_platform_dev = platform_device_alloc("hp-wmi", -1);
723 if (!hp_wmi_platform_dev) {
Axel Lindfec5c42010-06-10 16:06:40 +0800724 err = -ENOMEM;
725 goto err_device_alloc;
Matthew Garrett62ec30d2008-07-25 01:45:39 -0700726 }
Axel Lindfec5c42010-06-10 16:06:40 +0800727 err = platform_device_add(hp_wmi_platform_dev);
728 if (err)
729 goto err_device_add;
Matthew Garrett62ec30d2008-07-25 01:45:39 -0700730 }
731
Thomas Renningerb0966672010-07-20 15:19:29 -0700732 if (!bios_capable && !event_capable)
733 return -ENODEV;
734
Matthew Garrett62ec30d2008-07-25 01:45:39 -0700735 return 0;
Axel Lindfec5c42010-06-10 16:06:40 +0800736
737err_device_add:
738 platform_device_put(hp_wmi_platform_dev);
739err_device_alloc:
740 platform_driver_unregister(&hp_wmi_driver);
741err_driver_reg:
742 if (wmi_has_guid(HPWMI_EVENT_GUID)) {
743 input_unregister_device(hp_wmi_input_dev);
744 wmi_remove_notify_handler(HPWMI_EVENT_GUID);
745 }
746
747 return err;
Matthew Garrett62ec30d2008-07-25 01:45:39 -0700748}
749
750static void __exit hp_wmi_exit(void)
751{
752 if (wmi_has_guid(HPWMI_EVENT_GUID)) {
753 wmi_remove_notify_handler(HPWMI_EVENT_GUID);
754 input_unregister_device(hp_wmi_input_dev);
755 }
756 if (hp_wmi_platform_dev) {
Axel Lin97ba0af2010-06-03 15:18:03 +0800757 platform_device_unregister(hp_wmi_platform_dev);
Matthew Garrett62ec30d2008-07-25 01:45:39 -0700758 platform_driver_unregister(&hp_wmi_driver);
759 }
760}
761
762module_init(hp_wmi_init);
763module_exit(hp_wmi_exit);