blob: 1bc4a7539ba93f9b9f9cbdd74244b90a67302435 [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>
Anssi Hannulac0b9c642011-02-20 20:07:26 +02005 * Copyright (C) 2010, 2011 Anssi Hannula <anssi.hannula@iki.fi>
Matthew Garrett62ec30d2008-07-25 01:45:39 -07006 *
7 * Portions based on wistron_btns.c:
8 * Copyright (C) 2005 Miloslav Trmac <mitr@volny.cz>
9 * Copyright (C) 2005 Bernhard Rosenkraenzer <bero@arklinux.org>
10 * Copyright (C) 2005 Dmitry Torokhov <dtor@mail.ru>
11 *
12 * This program is free software; you can redistribute it and/or modify
13 * it under the terms of the GNU General Public License as published by
14 * the Free Software Foundation; either version 2 of the License, or
15 * (at your option) any later version.
16 *
17 * This program is distributed in the hope that it will be useful,
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 * GNU General Public License for more details.
21 *
22 * You should have received a copy of the GNU General Public License
23 * along with this program; if not, write to the Free Software
24 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
25 */
26
27#include <linux/kernel.h>
28#include <linux/module.h>
29#include <linux/init.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090030#include <linux/slab.h>
Matthew Garrett62ec30d2008-07-25 01:45:39 -070031#include <linux/types.h>
32#include <linux/input.h>
Dmitry Torokhov4d291ed2010-08-04 22:30:13 -070033#include <linux/input/sparse-keymap.h>
Matthew Garrett62ec30d2008-07-25 01:45:39 -070034#include <linux/platform_device.h>
35#include <linux/acpi.h>
36#include <linux/rfkill.h>
37#include <linux/string.h>
38
39MODULE_AUTHOR("Matthew Garrett <mjg59@srcf.ucam.org>");
40MODULE_DESCRIPTION("HP laptop WMI hotkeys driver");
41MODULE_LICENSE("GPL");
42
43MODULE_ALIAS("wmi:95F24279-4D7B-4334-9387-ACCDC67EF61C");
44MODULE_ALIAS("wmi:5FB7F034-2C63-45e9-BE91-3D44E2C707E4");
45
46#define HPWMI_EVENT_GUID "95F24279-4D7B-4334-9387-ACCDC67EF61C"
47#define HPWMI_BIOS_GUID "5FB7F034-2C63-45e9-BE91-3D44E2C707E4"
48
49#define HPWMI_DISPLAY_QUERY 0x1
50#define HPWMI_HDDTEMP_QUERY 0x2
51#define HPWMI_ALS_QUERY 0x3
Matthew Garrett871043b2009-06-01 15:25:45 +010052#define HPWMI_HARDWARE_QUERY 0x4
Matthew Garrett62ec30d2008-07-25 01:45:39 -070053#define HPWMI_WIRELESS_QUERY 0x5
Matthew Garretta8823ae2008-09-02 14:36:03 -070054#define HPWMI_HOTKEY_QUERY 0xc
Anssi Hannulac0b9c642011-02-20 20:07:26 +020055#define HPWMI_WIRELESS2_QUERY 0x1b
Matthew Garrett62ec30d2008-07-25 01:45:39 -070056
Thomas Renningera2806c62010-05-21 16:18:11 +020057#define PREFIX "HP WMI: "
Thomas Renninger1bbdfd52010-05-21 16:18:13 +020058#define UNIMP "Unimplemented "
Thomas Renningera2806c62010-05-21 16:18:11 +020059
Alan Jenkinse5fbba82009-07-21 12:14:01 +010060enum hp_wmi_radio {
61 HPWMI_WIFI = 0,
62 HPWMI_BLUETOOTH = 1,
63 HPWMI_WWAN = 2,
64};
65
Thomas Renninger751ae802010-05-21 16:18:09 +020066enum hp_wmi_event_ids {
67 HPWMI_DOCK_EVENT = 1,
Thomas Renninger1bbdfd52010-05-21 16:18:13 +020068 HPWMI_PARK_HDD = 2,
69 HPWMI_SMART_ADAPTER = 3,
Thomas Renninger751ae802010-05-21 16:18:09 +020070 HPWMI_BEZEL_BUTTON = 4,
71 HPWMI_WIRELESS = 5,
Thomas Renninger1bbdfd52010-05-21 16:18:13 +020072 HPWMI_CPU_BATTERY_THROTTLE = 6,
73 HPWMI_LOCK_SWITCH = 7,
Thomas Renninger751ae802010-05-21 16:18:09 +020074};
75
Uwe Kleine-Königea796322010-02-04 20:56:52 +010076static int __devinit hp_wmi_bios_setup(struct platform_device *device);
Matthew Garrett62ec30d2008-07-25 01:45:39 -070077static int __exit hp_wmi_bios_remove(struct platform_device *device);
Frans Pop8dd2b422009-08-20 20:38:13 +020078static int hp_wmi_resume_handler(struct device *device);
Matthew Garrett62ec30d2008-07-25 01:45:39 -070079
80struct bios_args {
81 u32 signature;
82 u32 command;
83 u32 commandtype;
84 u32 datasize;
Matthew Garretta8ec1052010-08-23 15:52:34 -040085 u32 data;
Matthew Garrett62ec30d2008-07-25 01:45:39 -070086};
87
88struct bios_return {
89 u32 sigpass;
90 u32 return_code;
Matthew Garrett62ec30d2008-07-25 01:45:39 -070091};
92
Anssi Hannula9af0e0f2011-02-20 20:07:20 +020093enum hp_return_value {
94 HPWMI_RET_WRONG_SIGNATURE = 0x02,
95 HPWMI_RET_UNKNOWN_COMMAND = 0x03,
96 HPWMI_RET_UNKNOWN_CMDTYPE = 0x04,
97 HPWMI_RET_INVALID_PARAMETERS = 0x05,
98};
99
Anssi Hannulac0b9c642011-02-20 20:07:26 +0200100enum hp_wireless2_bits {
101 HPWMI_POWER_STATE = 0x01,
102 HPWMI_POWER_SOFT = 0x02,
103 HPWMI_POWER_BIOS = 0x04,
104 HPWMI_POWER_HARD = 0x08,
105};
106
107#define IS_HWBLOCKED(x) ((x & (HPWMI_POWER_BIOS | HPWMI_POWER_HARD)) \
108 != (HPWMI_POWER_BIOS | HPWMI_POWER_HARD))
109#define IS_SWBLOCKED(x) !(x & HPWMI_POWER_SOFT)
110
111struct bios_rfkill2_device_state {
112 u8 radio_type;
113 u8 bus_type;
114 u16 vendor_id;
115 u16 product_id;
116 u16 subsys_vendor_id;
117 u16 subsys_product_id;
118 u8 rfkill_id;
119 u8 power;
120 u8 unknown[4];
121};
122
123/* 7 devices fit into the 128 byte buffer */
124#define HPWMI_MAX_RFKILL2_DEVICES 7
125
126struct bios_rfkill2_state {
127 u8 unknown[7];
128 u8 count;
129 u8 pad[8];
130 struct bios_rfkill2_device_state device[HPWMI_MAX_RFKILL2_DEVICES];
131};
132
Dmitry Torokhov4d291ed2010-08-04 22:30:13 -0700133static const struct key_entry hp_wmi_keymap[] = {
134 { KE_KEY, 0x02, { KEY_BRIGHTNESSUP } },
135 { KE_KEY, 0x03, { KEY_BRIGHTNESSDOWN } },
136 { KE_KEY, 0x20e6, { KEY_PROG1 } },
137 { KE_KEY, 0x20e8, { KEY_MEDIA } },
138 { KE_KEY, 0x2142, { KEY_MEDIA } },
139 { KE_KEY, 0x213b, { KEY_INFO } },
140 { KE_KEY, 0x2169, { KEY_DIRECTION } },
141 { KE_KEY, 0x231b, { KEY_HELP } },
142 { KE_END, 0 }
Matthew Garrett62ec30d2008-07-25 01:45:39 -0700143};
144
145static struct input_dev *hp_wmi_input_dev;
146static struct platform_device *hp_wmi_platform_dev;
147
148static struct rfkill *wifi_rfkill;
149static struct rfkill *bluetooth_rfkill;
150static struct rfkill *wwan_rfkill;
151
Anssi Hannulac0b9c642011-02-20 20:07:26 +0200152struct rfkill2_device {
153 u8 id;
154 int num;
155 struct rfkill *rfkill;
156};
157
158static int rfkill2_count;
159static struct rfkill2_device rfkill2[HPWMI_MAX_RFKILL2_DEVICES];
160
Alexey Dobriyan47145212009-12-14 18:00:08 -0800161static const struct dev_pm_ops hp_wmi_pm_ops = {
Frans Pop8dd2b422009-08-20 20:38:13 +0200162 .resume = hp_wmi_resume_handler,
163 .restore = hp_wmi_resume_handler,
164};
165
Matthew Garrett62ec30d2008-07-25 01:45:39 -0700166static struct platform_driver hp_wmi_driver = {
167 .driver = {
Frans Pop8dd2b422009-08-20 20:38:13 +0200168 .name = "hp-wmi",
169 .owner = THIS_MODULE,
170 .pm = &hp_wmi_pm_ops,
Matthew Garrett62ec30d2008-07-25 01:45:39 -0700171 },
172 .probe = hp_wmi_bios_setup,
173 .remove = hp_wmi_bios_remove,
174};
175
Thomas Renninger6d96e002010-05-21 16:42:40 +0200176/*
177 * hp_wmi_perform_query
178 *
179 * query: The commandtype -> What should be queried
180 * write: The command -> 0 read, 1 write, 3 ODM specific
181 * buffer: Buffer used as input and/or output
Anssi Hannulac3021ea2011-02-20 20:07:22 +0200182 * insize: Size of input buffer
183 * outsize: Size of output buffer
Thomas Renninger6d96e002010-05-21 16:42:40 +0200184 *
185 * returns zero on success
186 * an HP WMI query specific error code (which is positive)
187 * -EINVAL if the query was not successful at all
188 * -EINVAL if the output buffer size exceeds buffersize
189 *
190 * Note: The buffersize must at least be the maximum of the input and output
191 * size. E.g. Battery info query (0x7) is defined to have 1 byte input
192 * and 128 byte output. The caller would do:
193 * buffer = kzalloc(128, GFP_KERNEL);
Anssi Hannulac3021ea2011-02-20 20:07:22 +0200194 * ret = hp_wmi_perform_query(0x7, 0, buffer, 1, 128)
Thomas Renninger6d96e002010-05-21 16:42:40 +0200195 */
Anssi Hannulac3021ea2011-02-20 20:07:22 +0200196static int hp_wmi_perform_query(int query, int write, void *buffer,
197 int insize, int outsize)
Matthew Garrett62ec30d2008-07-25 01:45:39 -0700198{
Anssi Hannulac3021ea2011-02-20 20:07:22 +0200199 struct bios_return *bios_return;
200 int actual_outsize;
Matthew Garrett62ec30d2008-07-25 01:45:39 -0700201 union acpi_object *obj;
202 struct bios_args args = {
203 .signature = 0x55434553,
204 .command = write ? 0x2 : 0x1,
205 .commandtype = query,
Anssi Hannulac3021ea2011-02-20 20:07:22 +0200206 .datasize = insize,
207 .data = 0,
Matthew Garrett62ec30d2008-07-25 01:45:39 -0700208 };
209 struct acpi_buffer input = { sizeof(struct bios_args), &args };
210 struct acpi_buffer output = { ACPI_ALLOCATE_BUFFER, NULL };
211
Anssi Hannulac3021ea2011-02-20 20:07:22 +0200212 if (WARN_ON(insize > sizeof(args.data)))
213 return -EINVAL;
214 memcpy(&args.data, buffer, insize);
215
Anssi Hannula25bb0672011-02-20 20:07:21 +0200216 wmi_evaluate_method(HPWMI_BIOS_GUID, 0, 0x3, &input, &output);
Matthew Garrett62ec30d2008-07-25 01:45:39 -0700217
218 obj = output.pointer;
219
Thomas Renninger44ef00e2009-12-18 15:29:23 +0100220 if (!obj)
Matthew Garrett62ec30d2008-07-25 01:45:39 -0700221 return -EINVAL;
Thomas Renninger44ef00e2009-12-18 15:29:23 +0100222 else if (obj->type != ACPI_TYPE_BUFFER) {
223 kfree(obj);
224 return -EINVAL;
225 }
Matthew Garrett62ec30d2008-07-25 01:45:39 -0700226
Anssi Hannulac3021ea2011-02-20 20:07:22 +0200227 bios_return = (struct bios_return *)obj->buffer.pointer;
Thomas Renninger6d96e002010-05-21 16:42:40 +0200228
Anssi Hannulac3021ea2011-02-20 20:07:22 +0200229 if (bios_return->return_code) {
230 if (bios_return->return_code != HPWMI_RET_UNKNOWN_CMDTYPE)
Anssi Hannula9af0e0f2011-02-20 20:07:20 +0200231 printk(KERN_WARNING PREFIX "query 0x%x returned "
232 "error 0x%x\n",
Anssi Hannulac3021ea2011-02-20 20:07:22 +0200233 query, bios_return->return_code);
Anssi Hannula9af0e0f2011-02-20 20:07:20 +0200234 kfree(obj);
Anssi Hannulac3021ea2011-02-20 20:07:22 +0200235 return bios_return->return_code;
Anssi Hannula9af0e0f2011-02-20 20:07:20 +0200236 }
237
Anssi Hannulac3021ea2011-02-20 20:07:22 +0200238 if (!outsize) {
239 /* ignore output data */
240 kfree(obj);
241 return 0;
242 }
Zeng Zhaoming53c96df2010-11-19 00:46:19 +0800243
Anssi Hannulac3021ea2011-02-20 20:07:22 +0200244 actual_outsize = min(outsize, (int)(obj->buffer.length - sizeof(*bios_return)));
245 memcpy(buffer, obj->buffer.pointer + sizeof(*bios_return), actual_outsize);
246 memset(buffer + actual_outsize, 0, outsize - actual_outsize);
Zeng Zhaoming53c96df2010-11-19 00:46:19 +0800247 kfree(obj);
Thomas Renninger6d96e002010-05-21 16:42:40 +0200248 return 0;
Matthew Garrett62ec30d2008-07-25 01:45:39 -0700249}
250
251static int hp_wmi_display_state(void)
252{
Matthew Garretta8ec1052010-08-23 15:52:34 -0400253 int state = 0;
254 int ret = hp_wmi_perform_query(HPWMI_DISPLAY_QUERY, 0, &state,
Anssi Hannulac3021ea2011-02-20 20:07:22 +0200255 sizeof(state), sizeof(state));
Thomas Renninger6d96e002010-05-21 16:42:40 +0200256 if (ret)
257 return -EINVAL;
258 return state;
Matthew Garrett62ec30d2008-07-25 01:45:39 -0700259}
260
261static int hp_wmi_hddtemp_state(void)
262{
Matthew Garretta8ec1052010-08-23 15:52:34 -0400263 int state = 0;
264 int ret = hp_wmi_perform_query(HPWMI_HDDTEMP_QUERY, 0, &state,
Anssi Hannulac3021ea2011-02-20 20:07:22 +0200265 sizeof(state), sizeof(state));
Thomas Renninger6d96e002010-05-21 16:42:40 +0200266 if (ret)
267 return -EINVAL;
268 return state;
Matthew Garrett62ec30d2008-07-25 01:45:39 -0700269}
270
271static int hp_wmi_als_state(void)
272{
Matthew Garretta8ec1052010-08-23 15:52:34 -0400273 int state = 0;
274 int ret = hp_wmi_perform_query(HPWMI_ALS_QUERY, 0, &state,
Anssi Hannulac3021ea2011-02-20 20:07:22 +0200275 sizeof(state), sizeof(state));
Thomas Renninger6d96e002010-05-21 16:42:40 +0200276 if (ret)
277 return -EINVAL;
278 return state;
Matthew Garrett62ec30d2008-07-25 01:45:39 -0700279}
280
281static int hp_wmi_dock_state(void)
282{
Matthew Garretta8ec1052010-08-23 15:52:34 -0400283 int state = 0;
284 int ret = hp_wmi_perform_query(HPWMI_HARDWARE_QUERY, 0, &state,
Anssi Hannulac3021ea2011-02-20 20:07:22 +0200285 sizeof(state), sizeof(state));
Matthew Garrett871043b2009-06-01 15:25:45 +0100286
Thomas Renninger6d96e002010-05-21 16:42:40 +0200287 if (ret)
288 return -EINVAL;
Matthew Garrett871043b2009-06-01 15:25:45 +0100289
Thomas Renninger6d96e002010-05-21 16:42:40 +0200290 return state & 0x1;
Matthew Garrett62ec30d2008-07-25 01:45:39 -0700291}
292
Matthew Garrett871043b2009-06-01 15:25:45 +0100293static int hp_wmi_tablet_state(void)
Matthew Garrett62ec30d2008-07-25 01:45:39 -0700294{
Matthew Garretta8ec1052010-08-23 15:52:34 -0400295 int state = 0;
296 int ret = hp_wmi_perform_query(HPWMI_HARDWARE_QUERY, 0, &state,
Anssi Hannulac3021ea2011-02-20 20:07:22 +0200297 sizeof(state), sizeof(state));
Thomas Renninger6d96e002010-05-21 16:42:40 +0200298 if (ret)
Matthew Garrett871043b2009-06-01 15:25:45 +0100299 return ret;
300
Thomas Renninger6d96e002010-05-21 16:42:40 +0200301 return (state & 0x4) ? 1 : 0;
Matthew Garrett62ec30d2008-07-25 01:45:39 -0700302}
303
Johannes Berg19d337d2009-06-02 13:01:37 +0200304static int hp_wmi_set_block(void *data, bool blocked)
Matthew Garrett62ec30d2008-07-25 01:45:39 -0700305{
Alan Jenkinse5fbba82009-07-21 12:14:01 +0100306 enum hp_wmi_radio r = (enum hp_wmi_radio) data;
307 int query = BIT(r + 8) | ((!blocked) << r);
Thomas Renninger6d96e002010-05-21 16:42:40 +0200308 int ret;
Johannes Berg19d337d2009-06-02 13:01:37 +0200309
Thomas Renninger6d96e002010-05-21 16:42:40 +0200310 ret = hp_wmi_perform_query(HPWMI_WIRELESS_QUERY, 1,
Anssi Hannulac3021ea2011-02-20 20:07:22 +0200311 &query, sizeof(query), 0);
Thomas Renninger6d96e002010-05-21 16:42:40 +0200312 if (ret)
313 return -EINVAL;
314 return 0;
Matthew Garrett62ec30d2008-07-25 01:45:39 -0700315}
316
Johannes Berg19d337d2009-06-02 13:01:37 +0200317static const struct rfkill_ops hp_wmi_rfkill_ops = {
318 .set_block = hp_wmi_set_block,
319};
Matthew Garrett62ec30d2008-07-25 01:45:39 -0700320
Alan Jenkinse5fbba82009-07-21 12:14:01 +0100321static bool hp_wmi_get_sw_state(enum hp_wmi_radio r)
Matthew Garrett62ec30d2008-07-25 01:45:39 -0700322{
Matthew Garretta8ec1052010-08-23 15:52:34 -0400323 int wireless = 0;
Thomas Renninger6d96e002010-05-21 16:42:40 +0200324 int mask;
325 hp_wmi_perform_query(HPWMI_WIRELESS_QUERY, 0,
Anssi Hannulac3021ea2011-02-20 20:07:22 +0200326 &wireless, sizeof(wireless),
327 sizeof(wireless));
Thomas Renninger6d96e002010-05-21 16:42:40 +0200328 /* TBD: Pass error */
329
330 mask = 0x200 << (r * 8);
Matthew Garrett62ec30d2008-07-25 01:45:39 -0700331
Alan Jenkinse5fbba82009-07-21 12:14:01 +0100332 if (wireless & mask)
Johannes Berg19d337d2009-06-02 13:01:37 +0200333 return false;
Matthew Garrett62ec30d2008-07-25 01:45:39 -0700334 else
Johannes Berg19d337d2009-06-02 13:01:37 +0200335 return true;
Matthew Garrett62ec30d2008-07-25 01:45:39 -0700336}
337
Alan Jenkinse5fbba82009-07-21 12:14:01 +0100338static bool hp_wmi_get_hw_state(enum hp_wmi_radio r)
Matthew Garrett62ec30d2008-07-25 01:45:39 -0700339{
Matthew Garretta8ec1052010-08-23 15:52:34 -0400340 int wireless = 0;
Thomas Renninger6d96e002010-05-21 16:42:40 +0200341 int mask;
342 hp_wmi_perform_query(HPWMI_WIRELESS_QUERY, 0,
Anssi Hannulac3021ea2011-02-20 20:07:22 +0200343 &wireless, sizeof(wireless),
344 sizeof(wireless));
Thomas Renninger6d96e002010-05-21 16:42:40 +0200345 /* TBD: Pass error */
346
347 mask = 0x800 << (r * 8);
Matthew Garrett62ec30d2008-07-25 01:45:39 -0700348
Alan Jenkinse5fbba82009-07-21 12:14:01 +0100349 if (wireless & mask)
Johannes Berg19d337d2009-06-02 13:01:37 +0200350 return false;
Matthew Garrett62ec30d2008-07-25 01:45:39 -0700351 else
Johannes Berg19d337d2009-06-02 13:01:37 +0200352 return true;
Matthew Garrett62ec30d2008-07-25 01:45:39 -0700353}
354
Anssi Hannulac0b9c642011-02-20 20:07:26 +0200355static int hp_wmi_rfkill2_set_block(void *data, bool blocked)
356{
357 int rfkill_id = (int)(long)data;
358 char buffer[4] = { 0x01, 0x00, rfkill_id, !blocked };
359
360 if (hp_wmi_perform_query(HPWMI_WIRELESS2_QUERY, 1,
361 buffer, sizeof(buffer), 0))
362 return -EINVAL;
363 return 0;
364}
365
366static const struct rfkill_ops hp_wmi_rfkill2_ops = {
367 .set_block = hp_wmi_rfkill2_set_block,
368};
369
370static int hp_wmi_rfkill2_refresh(void)
371{
372 int err, i;
373 struct bios_rfkill2_state state;
374
375 err = hp_wmi_perform_query(HPWMI_WIRELESS2_QUERY, 0, &state,
376 0, sizeof(state));
377 if (err)
378 return err;
379
380 for (i = 0; i < rfkill2_count; i++) {
381 int num = rfkill2[i].num;
382 struct bios_rfkill2_device_state *devstate;
383 devstate = &state.device[num];
384
385 if (num >= state.count ||
386 devstate->rfkill_id != rfkill2[i].id) {
387 printk(KERN_WARNING PREFIX "power configuration of "
388 "the wireless devices unexpectedly changed\n");
389 continue;
390 }
391
392 rfkill_set_states(rfkill2[i].rfkill,
393 IS_SWBLOCKED(devstate->power),
394 IS_HWBLOCKED(devstate->power));
395 }
396
397 return 0;
398}
399
Matthew Garrett62ec30d2008-07-25 01:45:39 -0700400static ssize_t show_display(struct device *dev, struct device_attribute *attr,
401 char *buf)
402{
403 int value = hp_wmi_display_state();
404 if (value < 0)
405 return -EINVAL;
406 return sprintf(buf, "%d\n", value);
407}
408
409static ssize_t show_hddtemp(struct device *dev, struct device_attribute *attr,
410 char *buf)
411{
412 int value = hp_wmi_hddtemp_state();
413 if (value < 0)
414 return -EINVAL;
415 return sprintf(buf, "%d\n", value);
416}
417
418static ssize_t show_als(struct device *dev, struct device_attribute *attr,
419 char *buf)
420{
421 int value = hp_wmi_als_state();
422 if (value < 0)
423 return -EINVAL;
424 return sprintf(buf, "%d\n", value);
425}
426
427static ssize_t show_dock(struct device *dev, struct device_attribute *attr,
428 char *buf)
429{
430 int value = hp_wmi_dock_state();
431 if (value < 0)
432 return -EINVAL;
433 return sprintf(buf, "%d\n", value);
434}
435
Matthew Garrett871043b2009-06-01 15:25:45 +0100436static ssize_t show_tablet(struct device *dev, struct device_attribute *attr,
437 char *buf)
438{
439 int value = hp_wmi_tablet_state();
440 if (value < 0)
441 return -EINVAL;
442 return sprintf(buf, "%d\n", value);
443}
444
Matthew Garrett62ec30d2008-07-25 01:45:39 -0700445static ssize_t set_als(struct device *dev, struct device_attribute *attr,
446 const char *buf, size_t count)
447{
448 u32 tmp = simple_strtoul(buf, NULL, 10);
Matthew Garretta8ec1052010-08-23 15:52:34 -0400449 int ret = hp_wmi_perform_query(HPWMI_ALS_QUERY, 1, &tmp,
Anssi Hannulac3021ea2011-02-20 20:07:22 +0200450 sizeof(tmp), sizeof(tmp));
Thomas Renninger6d96e002010-05-21 16:42:40 +0200451 if (ret)
452 return -EINVAL;
453
Matthew Garrett62ec30d2008-07-25 01:45:39 -0700454 return count;
455}
456
457static DEVICE_ATTR(display, S_IRUGO, show_display, NULL);
458static DEVICE_ATTR(hddtemp, S_IRUGO, show_hddtemp, NULL);
459static DEVICE_ATTR(als, S_IRUGO | S_IWUSR, show_als, set_als);
460static DEVICE_ATTR(dock, S_IRUGO, show_dock, NULL);
Matthew Garrett871043b2009-06-01 15:25:45 +0100461static DEVICE_ATTR(tablet, S_IRUGO, show_tablet, NULL);
Matthew Garrett62ec30d2008-07-25 01:45:39 -0700462
Adrian Bunk88429a12008-10-15 22:05:17 -0700463static void hp_wmi_notify(u32 value, void *context)
Matthew Garrett62ec30d2008-07-25 01:45:39 -0700464{
465 struct acpi_buffer response = { ACPI_ALLOCATE_BUFFER, NULL };
Matthew Garrett62ec30d2008-07-25 01:45:39 -0700466 union acpi_object *obj;
Thomas Renninger8dda6b02010-05-21 16:41:43 +0200467 u32 event_id, event_data;
Matthew Garretta8ec1052010-08-23 15:52:34 -0400468 int key_code = 0, ret;
Thomas Renninger8dda6b02010-05-21 16:41:43 +0200469 u32 *location;
Len Brownfda11e62009-12-26 23:02:24 -0500470 acpi_status status;
Matthew Garrett62ec30d2008-07-25 01:45:39 -0700471
Len Brownfda11e62009-12-26 23:02:24 -0500472 status = wmi_get_event_data(value, &response);
473 if (status != AE_OK) {
Thomas Renningera2806c62010-05-21 16:18:11 +0200474 printk(KERN_INFO PREFIX "bad event status 0x%x\n", status);
Len Brownfda11e62009-12-26 23:02:24 -0500475 return;
476 }
Matthew Garrett62ec30d2008-07-25 01:45:39 -0700477
478 obj = (union acpi_object *)response.pointer;
479
Thomas Renningerc4775062010-07-29 12:27:59 +0200480 if (!obj)
481 return;
482 if (obj->type != ACPI_TYPE_BUFFER) {
Thomas Renninger8dda6b02010-05-21 16:41:43 +0200483 printk(KERN_INFO "hp-wmi: Unknown response received %d\n",
484 obj->type);
Thomas Renninger44ef00e2009-12-18 15:29:23 +0100485 kfree(obj);
Alan Jenkinse5fbba82009-07-21 12:14:01 +0100486 return;
487 }
488
Thomas Renninger8dda6b02010-05-21 16:41:43 +0200489 /*
490 * Depending on ACPI version the concatenation of id and event data
491 * inside _WED function will result in a 8 or 16 byte buffer.
492 */
493 location = (u32 *)obj->buffer.pointer;
494 if (obj->buffer.length == 8) {
495 event_id = *location;
496 event_data = *(location + 1);
497 } else if (obj->buffer.length == 16) {
498 event_id = *location;
499 event_data = *(location + 2);
500 } else {
501 printk(KERN_INFO "hp-wmi: Unknown buffer length %d\n",
502 obj->buffer.length);
503 kfree(obj);
504 return;
505 }
Thomas Renninger44ef00e2009-12-18 15:29:23 +0100506 kfree(obj);
Thomas Renninger8dda6b02010-05-21 16:41:43 +0200507
508 switch (event_id) {
Thomas Renninger751ae802010-05-21 16:18:09 +0200509 case HPWMI_DOCK_EVENT:
Alan Jenkinse5fbba82009-07-21 12:14:01 +0100510 input_report_switch(hp_wmi_input_dev, SW_DOCK,
511 hp_wmi_dock_state());
512 input_report_switch(hp_wmi_input_dev, SW_TABLET_MODE,
513 hp_wmi_tablet_state());
514 input_sync(hp_wmi_input_dev);
Thomas Renninger751ae802010-05-21 16:18:09 +0200515 break;
Thomas Renninger1bbdfd52010-05-21 16:18:13 +0200516 case HPWMI_PARK_HDD:
517 break;
518 case HPWMI_SMART_ADAPTER:
519 break;
Thomas Renninger751ae802010-05-21 16:18:09 +0200520 case HPWMI_BEZEL_BUTTON:
Thomas Renninger6d96e002010-05-21 16:42:40 +0200521 ret = hp_wmi_perform_query(HPWMI_HOTKEY_QUERY, 0,
Matthew Garretta8ec1052010-08-23 15:52:34 -0400522 &key_code,
Anssi Hannulac3021ea2011-02-20 20:07:22 +0200523 sizeof(key_code),
Thomas Renninger6d96e002010-05-21 16:42:40 +0200524 sizeof(key_code));
525 if (ret)
526 break;
Dmitry Torokhov4d291ed2010-08-04 22:30:13 -0700527
528 if (!sparse_keymap_report_event(hp_wmi_input_dev,
529 key_code, 1, true))
Thomas Renningera2806c62010-05-21 16:18:11 +0200530 printk(KERN_INFO PREFIX "Unknown key code - 0x%x\n",
Thomas Renningerda9a79b2010-05-21 16:18:10 +0200531 key_code);
Thomas Renninger751ae802010-05-21 16:18:09 +0200532 break;
533 case HPWMI_WIRELESS:
Anssi Hannulac0b9c642011-02-20 20:07:26 +0200534 if (rfkill2_count) {
535 hp_wmi_rfkill2_refresh();
536 break;
537 }
538
Alan Jenkinse5fbba82009-07-21 12:14:01 +0100539 if (wifi_rfkill)
540 rfkill_set_states(wifi_rfkill,
541 hp_wmi_get_sw_state(HPWMI_WIFI),
542 hp_wmi_get_hw_state(HPWMI_WIFI));
543 if (bluetooth_rfkill)
544 rfkill_set_states(bluetooth_rfkill,
545 hp_wmi_get_sw_state(HPWMI_BLUETOOTH),
546 hp_wmi_get_hw_state(HPWMI_BLUETOOTH));
547 if (wwan_rfkill)
548 rfkill_set_states(wwan_rfkill,
549 hp_wmi_get_sw_state(HPWMI_WWAN),
550 hp_wmi_get_hw_state(HPWMI_WWAN));
Thomas Renninger751ae802010-05-21 16:18:09 +0200551 break;
Thomas Renninger1bbdfd52010-05-21 16:18:13 +0200552 case HPWMI_CPU_BATTERY_THROTTLE:
553 printk(KERN_INFO PREFIX UNIMP "CPU throttle because of 3 Cell"
554 " battery event detected\n");
555 break;
556 case HPWMI_LOCK_SWITCH:
557 break;
Thomas Renninger751ae802010-05-21 16:18:09 +0200558 default:
Thomas Renninger8dda6b02010-05-21 16:41:43 +0200559 printk(KERN_INFO PREFIX "Unknown event_id - %d - 0x%x\n",
560 event_id, event_data);
Thomas Renninger751ae802010-05-21 16:18:09 +0200561 break;
562 }
Matthew Garrett62ec30d2008-07-25 01:45:39 -0700563}
564
565static int __init hp_wmi_input_setup(void)
566{
Dmitry Torokhov4d291ed2010-08-04 22:30:13 -0700567 acpi_status status;
Matthew Garrett62ec30d2008-07-25 01:45:39 -0700568 int err;
569
570 hp_wmi_input_dev = input_allocate_device();
Axel Linbc285962010-07-20 15:19:51 -0700571 if (!hp_wmi_input_dev)
572 return -ENOMEM;
Matthew Garrett62ec30d2008-07-25 01:45:39 -0700573
574 hp_wmi_input_dev->name = "HP WMI hotkeys";
575 hp_wmi_input_dev->phys = "wmi/input0";
576 hp_wmi_input_dev->id.bustype = BUS_HOST;
Matthew Garrett62ec30d2008-07-25 01:45:39 -0700577
Dmitry Torokhov4d291ed2010-08-04 22:30:13 -0700578 __set_bit(EV_SW, hp_wmi_input_dev->evbit);
579 __set_bit(SW_DOCK, hp_wmi_input_dev->swbit);
580 __set_bit(SW_TABLET_MODE, hp_wmi_input_dev->swbit);
Matthew Garrett62ec30d2008-07-25 01:45:39 -0700581
Dmitry Torokhov4d291ed2010-08-04 22:30:13 -0700582 err = sparse_keymap_setup(hp_wmi_input_dev, hp_wmi_keymap, NULL);
583 if (err)
584 goto err_free_dev;
Matthew Garrett871043b2009-06-01 15:25:45 +0100585
586 /* Set initial hardware state */
587 input_report_switch(hp_wmi_input_dev, SW_DOCK, hp_wmi_dock_state());
588 input_report_switch(hp_wmi_input_dev, SW_TABLET_MODE,
589 hp_wmi_tablet_state());
590 input_sync(hp_wmi_input_dev);
591
Dmitry Torokhov4d291ed2010-08-04 22:30:13 -0700592 status = wmi_install_notify_handler(HPWMI_EVENT_GUID, hp_wmi_notify, NULL);
593 if (ACPI_FAILURE(status)) {
594 err = -EIO;
595 goto err_free_keymap;
Matthew Garrett62ec30d2008-07-25 01:45:39 -0700596 }
597
Dmitry Torokhov4d291ed2010-08-04 22:30:13 -0700598 err = input_register_device(hp_wmi_input_dev);
599 if (err)
600 goto err_uninstall_notifier;
601
Matthew Garrett62ec30d2008-07-25 01:45:39 -0700602 return 0;
Dmitry Torokhov4d291ed2010-08-04 22:30:13 -0700603
604 err_uninstall_notifier:
605 wmi_remove_notify_handler(HPWMI_EVENT_GUID);
606 err_free_keymap:
607 sparse_keymap_free(hp_wmi_input_dev);
608 err_free_dev:
609 input_free_device(hp_wmi_input_dev);
610 return err;
611}
612
613static void hp_wmi_input_destroy(void)
614{
615 wmi_remove_notify_handler(HPWMI_EVENT_GUID);
616 sparse_keymap_free(hp_wmi_input_dev);
617 input_unregister_device(hp_wmi_input_dev);
Matthew Garrett62ec30d2008-07-25 01:45:39 -0700618}
619
620static void cleanup_sysfs(struct platform_device *device)
621{
622 device_remove_file(&device->dev, &dev_attr_display);
623 device_remove_file(&device->dev, &dev_attr_hddtemp);
624 device_remove_file(&device->dev, &dev_attr_als);
625 device_remove_file(&device->dev, &dev_attr_dock);
Matthew Garrett871043b2009-06-01 15:25:45 +0100626 device_remove_file(&device->dev, &dev_attr_tablet);
Matthew Garrett62ec30d2008-07-25 01:45:39 -0700627}
628
Anssi Hannulaeceb7bd2011-02-20 20:07:23 +0200629static int __devinit hp_wmi_rfkill_setup(struct platform_device *device)
Matthew Garrett62ec30d2008-07-25 01:45:39 -0700630{
631 int err;
Matthew Garretta8ec1052010-08-23 15:52:34 -0400632 int wireless = 0;
Thomas Renninger6d96e002010-05-21 16:42:40 +0200633
Matthew Garretta8ec1052010-08-23 15:52:34 -0400634 err = hp_wmi_perform_query(HPWMI_WIRELESS_QUERY, 0, &wireless,
Anssi Hannulac3021ea2011-02-20 20:07:22 +0200635 sizeof(wireless), sizeof(wireless));
Thomas Renninger6d96e002010-05-21 16:42:40 +0200636 if (err)
637 return err;
Matthew Garrett62ec30d2008-07-25 01:45:39 -0700638
Matthew Garrett3f6e2f12008-09-02 14:36:00 -0700639 if (wireless & 0x1) {
Johannes Berg19d337d2009-06-02 13:01:37 +0200640 wifi_rfkill = rfkill_alloc("hp-wifi", &device->dev,
641 RFKILL_TYPE_WLAN,
642 &hp_wmi_rfkill_ops,
Alan Jenkinse5fbba82009-07-21 12:14:01 +0100643 (void *) HPWMI_WIFI);
644 rfkill_init_sw_state(wifi_rfkill,
645 hp_wmi_get_sw_state(HPWMI_WIFI));
646 rfkill_set_hw_state(wifi_rfkill,
647 hp_wmi_get_hw_state(HPWMI_WIFI));
Larry Fingerfe8e4e02009-01-09 16:40:54 -0800648 err = rfkill_register(wifi_rfkill);
649 if (err)
Johannes Berg19d337d2009-06-02 13:01:37 +0200650 goto register_wifi_error;
Matthew Garrett3f6e2f12008-09-02 14:36:00 -0700651 }
Matthew Garrett62ec30d2008-07-25 01:45:39 -0700652
Matthew Garrett3f6e2f12008-09-02 14:36:00 -0700653 if (wireless & 0x2) {
Johannes Berg19d337d2009-06-02 13:01:37 +0200654 bluetooth_rfkill = rfkill_alloc("hp-bluetooth", &device->dev,
655 RFKILL_TYPE_BLUETOOTH,
656 &hp_wmi_rfkill_ops,
Alan Jenkinse5fbba82009-07-21 12:14:01 +0100657 (void *) HPWMI_BLUETOOTH);
658 rfkill_init_sw_state(bluetooth_rfkill,
659 hp_wmi_get_sw_state(HPWMI_BLUETOOTH));
660 rfkill_set_hw_state(bluetooth_rfkill,
661 hp_wmi_get_hw_state(HPWMI_BLUETOOTH));
Larry Fingerfe8e4e02009-01-09 16:40:54 -0800662 err = rfkill_register(bluetooth_rfkill);
Frans Pop6989d562009-01-29 14:25:14 -0800663 if (err)
Larry Fingerfe8e4e02009-01-09 16:40:54 -0800664 goto register_bluetooth_error;
Matthew Garrett3f6e2f12008-09-02 14:36:00 -0700665 }
Matthew Garrett62ec30d2008-07-25 01:45:39 -0700666
Matthew Garrett3f6e2f12008-09-02 14:36:00 -0700667 if (wireless & 0x4) {
Johannes Berg19d337d2009-06-02 13:01:37 +0200668 wwan_rfkill = rfkill_alloc("hp-wwan", &device->dev,
669 RFKILL_TYPE_WWAN,
670 &hp_wmi_rfkill_ops,
Alan Jenkinse5fbba82009-07-21 12:14:01 +0100671 (void *) HPWMI_WWAN);
672 rfkill_init_sw_state(wwan_rfkill,
673 hp_wmi_get_sw_state(HPWMI_WWAN));
674 rfkill_set_hw_state(wwan_rfkill,
675 hp_wmi_get_hw_state(HPWMI_WWAN));
Larry Fingerfe8e4e02009-01-09 16:40:54 -0800676 err = rfkill_register(wwan_rfkill);
677 if (err)
678 goto register_wwan_err;
Matthew Garrett3f6e2f12008-09-02 14:36:00 -0700679 }
Matthew Garrett62ec30d2008-07-25 01:45:39 -0700680
681 return 0;
Larry Fingerfe8e4e02009-01-09 16:40:54 -0800682register_wwan_err:
Johannes Berg19d337d2009-06-02 13:01:37 +0200683 rfkill_destroy(wwan_rfkill);
Anssi Hannula6d97db52011-02-20 20:07:24 +0200684 wwan_rfkill = NULL;
Andrew Morton44f06062009-02-04 15:12:07 -0800685 if (bluetooth_rfkill)
686 rfkill_unregister(bluetooth_rfkill);
Larry Fingerfe8e4e02009-01-09 16:40:54 -0800687register_bluetooth_error:
Johannes Berg19d337d2009-06-02 13:01:37 +0200688 rfkill_destroy(bluetooth_rfkill);
Anssi Hannula6d97db52011-02-20 20:07:24 +0200689 bluetooth_rfkill = NULL;
Andrew Morton44f06062009-02-04 15:12:07 -0800690 if (wifi_rfkill)
691 rfkill_unregister(wifi_rfkill);
Johannes Berg19d337d2009-06-02 13:01:37 +0200692register_wifi_error:
693 rfkill_destroy(wifi_rfkill);
Anssi Hannula6d97db52011-02-20 20:07:24 +0200694 wifi_rfkill = NULL;
Anssi Hannulaeceb7bd2011-02-20 20:07:23 +0200695 return err;
696}
697
Anssi Hannulac0b9c642011-02-20 20:07:26 +0200698static int __devinit hp_wmi_rfkill2_setup(struct platform_device *device)
699{
700 int err, i;
701 struct bios_rfkill2_state state;
702 err = hp_wmi_perform_query(HPWMI_WIRELESS2_QUERY, 0, &state,
703 0, sizeof(state));
704 if (err)
705 return err;
706
707 if (state.count > HPWMI_MAX_RFKILL2_DEVICES) {
708 printk(KERN_WARNING PREFIX "unable to parse 0x1b query output\n");
709 return -EINVAL;
710 }
711
712 for (i = 0; i < state.count; i++) {
713 struct rfkill *rfkill;
714 enum rfkill_type type;
715 char *name;
716 switch (state.device[i].radio_type) {
717 case HPWMI_WIFI:
718 type = RFKILL_TYPE_WLAN;
719 name = "hp-wifi";
720 break;
721 case HPWMI_BLUETOOTH:
722 type = RFKILL_TYPE_BLUETOOTH;
723 name = "hp-bluetooth";
724 break;
725 case HPWMI_WWAN:
726 type = RFKILL_TYPE_WWAN;
727 name = "hp-wwan";
728 break;
729 default:
730 printk(KERN_WARNING PREFIX "unknown device type 0x%x\n",
731 state.device[i].radio_type);
732 continue;
733 }
734
735 if (!state.device[i].vendor_id) {
736 printk(KERN_WARNING PREFIX "zero device %d while %d "
737 "reported\n", i, state.count);
738 continue;
739 }
740
741 rfkill = rfkill_alloc(name, &device->dev, type,
742 &hp_wmi_rfkill2_ops, (void *)(long)i);
743 if (!rfkill) {
744 err = -ENOMEM;
745 goto fail;
746 }
747
748 rfkill2[rfkill2_count].id = state.device[i].rfkill_id;
749 rfkill2[rfkill2_count].num = i;
750 rfkill2[rfkill2_count].rfkill = rfkill;
751
752 rfkill_init_sw_state(rfkill,
753 IS_SWBLOCKED(state.device[i].power));
754 rfkill_set_hw_state(rfkill,
755 IS_HWBLOCKED(state.device[i].power));
756
757 if (!(state.device[i].power & HPWMI_POWER_BIOS))
758 printk(KERN_INFO PREFIX "device %s blocked by BIOS\n",
759 name);
760
761 err = rfkill_register(rfkill);
762 if (err) {
763 rfkill_destroy(rfkill);
764 goto fail;
765 }
766
767 rfkill2_count++;
768 }
769
770 return 0;
771fail:
772 for (; rfkill2_count > 0; rfkill2_count--) {
773 rfkill_unregister(rfkill2[rfkill2_count - 1].rfkill);
774 rfkill_destroy(rfkill2[rfkill2_count - 1].rfkill);
775 }
776 return err;
777}
778
Anssi Hannulaeceb7bd2011-02-20 20:07:23 +0200779static int __devinit hp_wmi_bios_setup(struct platform_device *device)
780{
781 int err;
782
Anssi Hannula6d97db52011-02-20 20:07:24 +0200783 /* clear detected rfkill devices */
784 wifi_rfkill = NULL;
785 bluetooth_rfkill = NULL;
786 wwan_rfkill = NULL;
Anssi Hannulac0b9c642011-02-20 20:07:26 +0200787 rfkill2_count = 0;
Anssi Hannula6d97db52011-02-20 20:07:24 +0200788
Anssi Hannulac0b9c642011-02-20 20:07:26 +0200789 if (hp_wmi_rfkill_setup(device))
790 hp_wmi_rfkill2_setup(device);
Anssi Hannulaeceb7bd2011-02-20 20:07:23 +0200791
792 err = device_create_file(&device->dev, &dev_attr_display);
793 if (err)
794 goto add_sysfs_error;
795 err = device_create_file(&device->dev, &dev_attr_hddtemp);
796 if (err)
797 goto add_sysfs_error;
798 err = device_create_file(&device->dev, &dev_attr_als);
799 if (err)
800 goto add_sysfs_error;
801 err = device_create_file(&device->dev, &dev_attr_dock);
802 if (err)
803 goto add_sysfs_error;
804 err = device_create_file(&device->dev, &dev_attr_tablet);
805 if (err)
806 goto add_sysfs_error;
807 return 0;
808
Matthew Garrett62ec30d2008-07-25 01:45:39 -0700809add_sysfs_error:
810 cleanup_sysfs(device);
811 return err;
812}
813
814static int __exit hp_wmi_bios_remove(struct platform_device *device)
815{
Anssi Hannulac0b9c642011-02-20 20:07:26 +0200816 int i;
Matthew Garrett62ec30d2008-07-25 01:45:39 -0700817 cleanup_sysfs(device);
818
Anssi Hannulac0b9c642011-02-20 20:07:26 +0200819 for (i = 0; i < rfkill2_count; i++) {
820 rfkill_unregister(rfkill2[i].rfkill);
821 rfkill_destroy(rfkill2[i].rfkill);
822 }
823
Johannes Berg19d337d2009-06-02 13:01:37 +0200824 if (wifi_rfkill) {
Matthew Garrett3f6e2f12008-09-02 14:36:00 -0700825 rfkill_unregister(wifi_rfkill);
Johannes Berg19d337d2009-06-02 13:01:37 +0200826 rfkill_destroy(wifi_rfkill);
827 }
828 if (bluetooth_rfkill) {
Matthew Garrett3f6e2f12008-09-02 14:36:00 -0700829 rfkill_unregister(bluetooth_rfkill);
Corentin Chary09729f02009-09-14 12:43:51 +0200830 rfkill_destroy(bluetooth_rfkill);
Johannes Berg19d337d2009-06-02 13:01:37 +0200831 }
832 if (wwan_rfkill) {
Matthew Garrett3f6e2f12008-09-02 14:36:00 -0700833 rfkill_unregister(wwan_rfkill);
Johannes Berg19d337d2009-06-02 13:01:37 +0200834 rfkill_destroy(wwan_rfkill);
835 }
Matthew Garrett62ec30d2008-07-25 01:45:39 -0700836
837 return 0;
838}
839
Frans Pop8dd2b422009-08-20 20:38:13 +0200840static int hp_wmi_resume_handler(struct device *device)
Frans Pop4c395bd2009-03-04 11:55:28 -0800841{
Frans Pop4c395bd2009-03-04 11:55:28 -0800842 /*
Matthew Garrett871043b2009-06-01 15:25:45 +0100843 * Hardware state may have changed while suspended, so trigger
844 * input events for the current state. As this is a switch,
Frans Pop4c395bd2009-03-04 11:55:28 -0800845 * the input layer will only actually pass it on if the state
846 * changed.
847 */
Frans Popdaed9532009-07-30 17:16:05 -0400848 if (hp_wmi_input_dev) {
849 input_report_switch(hp_wmi_input_dev, SW_DOCK,
850 hp_wmi_dock_state());
851 input_report_switch(hp_wmi_input_dev, SW_TABLET_MODE,
852 hp_wmi_tablet_state());
853 input_sync(hp_wmi_input_dev);
854 }
Frans Pop4c395bd2009-03-04 11:55:28 -0800855
Anssi Hannulac0b9c642011-02-20 20:07:26 +0200856 if (rfkill2_count)
857 hp_wmi_rfkill2_refresh();
858
Alan Jenkinse5fbba82009-07-21 12:14:01 +0100859 if (wifi_rfkill)
860 rfkill_set_states(wifi_rfkill,
861 hp_wmi_get_sw_state(HPWMI_WIFI),
862 hp_wmi_get_hw_state(HPWMI_WIFI));
863 if (bluetooth_rfkill)
864 rfkill_set_states(bluetooth_rfkill,
865 hp_wmi_get_sw_state(HPWMI_BLUETOOTH),
866 hp_wmi_get_hw_state(HPWMI_BLUETOOTH));
867 if (wwan_rfkill)
868 rfkill_set_states(wwan_rfkill,
869 hp_wmi_get_sw_state(HPWMI_WWAN),
870 hp_wmi_get_hw_state(HPWMI_WWAN));
871
Frans Pop4c395bd2009-03-04 11:55:28 -0800872 return 0;
873}
874
Matthew Garrett62ec30d2008-07-25 01:45:39 -0700875static int __init hp_wmi_init(void)
876{
877 int err;
Thomas Renningerb0966672010-07-20 15:19:29 -0700878 int event_capable = wmi_has_guid(HPWMI_EVENT_GUID);
879 int bios_capable = wmi_has_guid(HPWMI_BIOS_GUID);
Matthew Garrett62ec30d2008-07-25 01:45:39 -0700880
Thomas Renningerb0966672010-07-20 15:19:29 -0700881 if (event_capable) {
Axel Lindfec5c42010-06-10 16:06:40 +0800882 err = hp_wmi_input_setup();
Dmitry Torokhov4d291ed2010-08-04 22:30:13 -0700883 if (err)
Axel Lindfec5c42010-06-10 16:06:40 +0800884 return err;
Matthew Garrett62ec30d2008-07-25 01:45:39 -0700885 }
886
Thomas Renningerb0966672010-07-20 15:19:29 -0700887 if (bios_capable) {
Matthew Garrett62ec30d2008-07-25 01:45:39 -0700888 err = platform_driver_register(&hp_wmi_driver);
889 if (err)
Axel Lindfec5c42010-06-10 16:06:40 +0800890 goto err_driver_reg;
Matthew Garrett62ec30d2008-07-25 01:45:39 -0700891 hp_wmi_platform_dev = platform_device_alloc("hp-wmi", -1);
892 if (!hp_wmi_platform_dev) {
Axel Lindfec5c42010-06-10 16:06:40 +0800893 err = -ENOMEM;
894 goto err_device_alloc;
Matthew Garrett62ec30d2008-07-25 01:45:39 -0700895 }
Axel Lindfec5c42010-06-10 16:06:40 +0800896 err = platform_device_add(hp_wmi_platform_dev);
897 if (err)
898 goto err_device_add;
Matthew Garrett62ec30d2008-07-25 01:45:39 -0700899 }
900
Thomas Renningerb0966672010-07-20 15:19:29 -0700901 if (!bios_capable && !event_capable)
902 return -ENODEV;
903
Matthew Garrett62ec30d2008-07-25 01:45:39 -0700904 return 0;
Axel Lindfec5c42010-06-10 16:06:40 +0800905
906err_device_add:
907 platform_device_put(hp_wmi_platform_dev);
908err_device_alloc:
909 platform_driver_unregister(&hp_wmi_driver);
910err_driver_reg:
Dmitry Torokhov4d291ed2010-08-04 22:30:13 -0700911 if (event_capable)
912 hp_wmi_input_destroy();
Axel Lindfec5c42010-06-10 16:06:40 +0800913
914 return err;
Matthew Garrett62ec30d2008-07-25 01:45:39 -0700915}
916
917static void __exit hp_wmi_exit(void)
918{
Dmitry Torokhov4d291ed2010-08-04 22:30:13 -0700919 if (wmi_has_guid(HPWMI_EVENT_GUID))
920 hp_wmi_input_destroy();
921
Matthew Garrett62ec30d2008-07-25 01:45:39 -0700922 if (hp_wmi_platform_dev) {
Axel Lin97ba0af2010-06-03 15:18:03 +0800923 platform_device_unregister(hp_wmi_platform_dev);
Matthew Garrett62ec30d2008-07-25 01:45:39 -0700924 platform_driver_unregister(&hp_wmi_driver);
925 }
926}
927
928module_init(hp_wmi_init);
929module_exit(hp_wmi_exit);