blob: 6e142c3b5e9746e1efb53d841d21bb0636f3d9c4 [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
Joe Perchesb5a42232011-03-29 15:21:41 -070027#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
28
Matthew Garrett62ec30d2008-07-25 01:45:39 -070029#include <linux/kernel.h>
30#include <linux/module.h>
31#include <linux/init.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090032#include <linux/slab.h>
Matthew Garrett62ec30d2008-07-25 01:45:39 -070033#include <linux/types.h>
34#include <linux/input.h>
Dmitry Torokhov4d291ed2010-08-04 22:30:13 -070035#include <linux/input/sparse-keymap.h>
Matthew Garrett62ec30d2008-07-25 01:45:39 -070036#include <linux/platform_device.h>
37#include <linux/acpi.h>
38#include <linux/rfkill.h>
39#include <linux/string.h>
40
41MODULE_AUTHOR("Matthew Garrett <mjg59@srcf.ucam.org>");
42MODULE_DESCRIPTION("HP laptop WMI hotkeys driver");
43MODULE_LICENSE("GPL");
44
45MODULE_ALIAS("wmi:95F24279-4D7B-4334-9387-ACCDC67EF61C");
46MODULE_ALIAS("wmi:5FB7F034-2C63-45e9-BE91-3D44E2C707E4");
47
48#define HPWMI_EVENT_GUID "95F24279-4D7B-4334-9387-ACCDC67EF61C"
49#define HPWMI_BIOS_GUID "5FB7F034-2C63-45e9-BE91-3D44E2C707E4"
50
51#define HPWMI_DISPLAY_QUERY 0x1
52#define HPWMI_HDDTEMP_QUERY 0x2
53#define HPWMI_ALS_QUERY 0x3
Matthew Garrett871043b2009-06-01 15:25:45 +010054#define HPWMI_HARDWARE_QUERY 0x4
Matthew Garrett62ec30d2008-07-25 01:45:39 -070055#define HPWMI_WIRELESS_QUERY 0x5
Matthew Garrettb253c9d2013-07-08 11:44:40 -040056#define HPWMI_BIOS_QUERY 0x9
Matthew Garretta8823ae2008-09-02 14:36:03 -070057#define HPWMI_HOTKEY_QUERY 0xc
Anssi Hannulac0b9c642011-02-20 20:07:26 +020058#define HPWMI_WIRELESS2_QUERY 0x1b
Matthew Garrett62ec30d2008-07-25 01:45:39 -070059
Alan Jenkinse5fbba82009-07-21 12:14:01 +010060enum hp_wmi_radio {
61 HPWMI_WIFI = 0,
62 HPWMI_BLUETOOTH = 1,
63 HPWMI_WWAN = 2,
Trepák Vilmos4fca7ce2012-10-11 12:51:00 +020064 HPWMI_GPS = 3,
Alan Jenkinse5fbba82009-07-21 12:14:01 +010065};
66
Thomas Renninger751ae802010-05-21 16:18:09 +020067enum hp_wmi_event_ids {
68 HPWMI_DOCK_EVENT = 1,
Thomas Renninger1bbdfd52010-05-21 16:18:13 +020069 HPWMI_PARK_HDD = 2,
70 HPWMI_SMART_ADAPTER = 3,
Thomas Renninger751ae802010-05-21 16:18:09 +020071 HPWMI_BEZEL_BUTTON = 4,
72 HPWMI_WIRELESS = 5,
Thomas Renninger1bbdfd52010-05-21 16:18:13 +020073 HPWMI_CPU_BATTERY_THROTTLE = 6,
74 HPWMI_LOCK_SWITCH = 7,
Alex Hungd9e290a2013-03-15 17:18:22 +080075 HPWMI_LID_SWITCH = 8,
76 HPWMI_SCREEN_ROTATION = 9,
77 HPWMI_COOLSENSE_SYSTEM_MOBILE = 0x0A,
78 HPWMI_COOLSENSE_SYSTEM_HOT = 0x0B,
79 HPWMI_PROXIMITY_SENSOR = 0x0C,
80 HPWMI_BACKLIT_KB_BRIGHTNESS = 0x0D,
81 HPWMI_PEAKSHIFT_PERIOD = 0x0F,
82 HPWMI_BATTERY_CHARGE_PERIOD = 0x10,
Thomas Renninger751ae802010-05-21 16:18:09 +020083};
84
Matthew Garrett62ec30d2008-07-25 01:45:39 -070085struct bios_args {
86 u32 signature;
87 u32 command;
88 u32 commandtype;
89 u32 datasize;
Matthew Garretta8ec1052010-08-23 15:52:34 -040090 u32 data;
Matthew Garrett62ec30d2008-07-25 01:45:39 -070091};
92
93struct bios_return {
94 u32 sigpass;
95 u32 return_code;
Matthew Garrett62ec30d2008-07-25 01:45:39 -070096};
97
Anssi Hannula9af0e0f2011-02-20 20:07:20 +020098enum hp_return_value {
99 HPWMI_RET_WRONG_SIGNATURE = 0x02,
100 HPWMI_RET_UNKNOWN_COMMAND = 0x03,
101 HPWMI_RET_UNKNOWN_CMDTYPE = 0x04,
102 HPWMI_RET_INVALID_PARAMETERS = 0x05,
103};
104
Anssi Hannulac0b9c642011-02-20 20:07:26 +0200105enum hp_wireless2_bits {
106 HPWMI_POWER_STATE = 0x01,
107 HPWMI_POWER_SOFT = 0x02,
108 HPWMI_POWER_BIOS = 0x04,
109 HPWMI_POWER_HARD = 0x08,
110};
111
112#define IS_HWBLOCKED(x) ((x & (HPWMI_POWER_BIOS | HPWMI_POWER_HARD)) \
113 != (HPWMI_POWER_BIOS | HPWMI_POWER_HARD))
114#define IS_SWBLOCKED(x) !(x & HPWMI_POWER_SOFT)
115
116struct bios_rfkill2_device_state {
117 u8 radio_type;
118 u8 bus_type;
119 u16 vendor_id;
120 u16 product_id;
121 u16 subsys_vendor_id;
122 u16 subsys_product_id;
123 u8 rfkill_id;
124 u8 power;
125 u8 unknown[4];
126};
127
128/* 7 devices fit into the 128 byte buffer */
129#define HPWMI_MAX_RFKILL2_DEVICES 7
130
131struct bios_rfkill2_state {
132 u8 unknown[7];
133 u8 count;
134 u8 pad[8];
135 struct bios_rfkill2_device_state device[HPWMI_MAX_RFKILL2_DEVICES];
136};
137
Dmitry Torokhov4d291ed2010-08-04 22:30:13 -0700138static const struct key_entry hp_wmi_keymap[] = {
139 { KE_KEY, 0x02, { KEY_BRIGHTNESSUP } },
140 { KE_KEY, 0x03, { KEY_BRIGHTNESSDOWN } },
141 { KE_KEY, 0x20e6, { KEY_PROG1 } },
142 { KE_KEY, 0x20e8, { KEY_MEDIA } },
143 { KE_KEY, 0x2142, { KEY_MEDIA } },
144 { KE_KEY, 0x213b, { KEY_INFO } },
145 { KE_KEY, 0x2169, { KEY_DIRECTION } },
146 { KE_KEY, 0x231b, { KEY_HELP } },
147 { KE_END, 0 }
Matthew Garrett62ec30d2008-07-25 01:45:39 -0700148};
149
150static struct input_dev *hp_wmi_input_dev;
151static struct platform_device *hp_wmi_platform_dev;
152
153static struct rfkill *wifi_rfkill;
154static struct rfkill *bluetooth_rfkill;
155static struct rfkill *wwan_rfkill;
Trepák Vilmos4fca7ce2012-10-11 12:51:00 +0200156static struct rfkill *gps_rfkill;
Matthew Garrett62ec30d2008-07-25 01:45:39 -0700157
Anssi Hannulac0b9c642011-02-20 20:07:26 +0200158struct rfkill2_device {
159 u8 id;
160 int num;
161 struct rfkill *rfkill;
162};
163
164static int rfkill2_count;
165static struct rfkill2_device rfkill2[HPWMI_MAX_RFKILL2_DEVICES];
166
Thomas Renninger6d96e002010-05-21 16:42:40 +0200167/*
168 * hp_wmi_perform_query
169 *
170 * query: The commandtype -> What should be queried
171 * write: The command -> 0 read, 1 write, 3 ODM specific
172 * buffer: Buffer used as input and/or output
Anssi Hannulac3021ea2011-02-20 20:07:22 +0200173 * insize: Size of input buffer
174 * outsize: Size of output buffer
Thomas Renninger6d96e002010-05-21 16:42:40 +0200175 *
176 * returns zero on success
177 * an HP WMI query specific error code (which is positive)
178 * -EINVAL if the query was not successful at all
179 * -EINVAL if the output buffer size exceeds buffersize
180 *
181 * Note: The buffersize must at least be the maximum of the input and output
182 * size. E.g. Battery info query (0x7) is defined to have 1 byte input
183 * and 128 byte output. The caller would do:
184 * buffer = kzalloc(128, GFP_KERNEL);
Anssi Hannulac3021ea2011-02-20 20:07:22 +0200185 * ret = hp_wmi_perform_query(0x7, 0, buffer, 1, 128)
Thomas Renninger6d96e002010-05-21 16:42:40 +0200186 */
Anssi Hannulac3021ea2011-02-20 20:07:22 +0200187static int hp_wmi_perform_query(int query, int write, void *buffer,
188 int insize, int outsize)
Matthew Garrett62ec30d2008-07-25 01:45:39 -0700189{
Anssi Hannulac3021ea2011-02-20 20:07:22 +0200190 struct bios_return *bios_return;
191 int actual_outsize;
Matthew Garrett62ec30d2008-07-25 01:45:39 -0700192 union acpi_object *obj;
193 struct bios_args args = {
194 .signature = 0x55434553,
195 .command = write ? 0x2 : 0x1,
196 .commandtype = query,
Anssi Hannulac3021ea2011-02-20 20:07:22 +0200197 .datasize = insize,
198 .data = 0,
Matthew Garrett62ec30d2008-07-25 01:45:39 -0700199 };
200 struct acpi_buffer input = { sizeof(struct bios_args), &args };
201 struct acpi_buffer output = { ACPI_ALLOCATE_BUFFER, NULL };
Eric Dumazet04018462011-07-11 12:22:21 +0200202 u32 rc;
Matthew Garrett62ec30d2008-07-25 01:45:39 -0700203
Anssi Hannulac3021ea2011-02-20 20:07:22 +0200204 if (WARN_ON(insize > sizeof(args.data)))
205 return -EINVAL;
206 memcpy(&args.data, buffer, insize);
207
Anssi Hannula25bb0672011-02-20 20:07:21 +0200208 wmi_evaluate_method(HPWMI_BIOS_GUID, 0, 0x3, &input, &output);
Matthew Garrett62ec30d2008-07-25 01:45:39 -0700209
210 obj = output.pointer;
211
Thomas Renninger44ef00e2009-12-18 15:29:23 +0100212 if (!obj)
Matthew Garrett62ec30d2008-07-25 01:45:39 -0700213 return -EINVAL;
Thomas Renninger44ef00e2009-12-18 15:29:23 +0100214 else if (obj->type != ACPI_TYPE_BUFFER) {
215 kfree(obj);
216 return -EINVAL;
217 }
Matthew Garrett62ec30d2008-07-25 01:45:39 -0700218
Anssi Hannulac3021ea2011-02-20 20:07:22 +0200219 bios_return = (struct bios_return *)obj->buffer.pointer;
Eric Dumazet04018462011-07-11 12:22:21 +0200220 rc = bios_return->return_code;
Thomas Renninger6d96e002010-05-21 16:42:40 +0200221
Eric Dumazet04018462011-07-11 12:22:21 +0200222 if (rc) {
223 if (rc != HPWMI_RET_UNKNOWN_CMDTYPE)
224 pr_warn("query 0x%x returned error 0x%x\n", query, rc);
Anssi Hannula9af0e0f2011-02-20 20:07:20 +0200225 kfree(obj);
Eric Dumazet04018462011-07-11 12:22:21 +0200226 return rc;
Anssi Hannula9af0e0f2011-02-20 20:07:20 +0200227 }
228
Anssi Hannulac3021ea2011-02-20 20:07:22 +0200229 if (!outsize) {
230 /* ignore output data */
231 kfree(obj);
232 return 0;
233 }
Zeng Zhaoming53c96df2010-11-19 00:46:19 +0800234
Anssi Hannulac3021ea2011-02-20 20:07:22 +0200235 actual_outsize = min(outsize, (int)(obj->buffer.length - sizeof(*bios_return)));
236 memcpy(buffer, obj->buffer.pointer + sizeof(*bios_return), actual_outsize);
237 memset(buffer + actual_outsize, 0, outsize - actual_outsize);
Zeng Zhaoming53c96df2010-11-19 00:46:19 +0800238 kfree(obj);
Thomas Renninger6d96e002010-05-21 16:42:40 +0200239 return 0;
Matthew Garrett62ec30d2008-07-25 01:45:39 -0700240}
241
242static int hp_wmi_display_state(void)
243{
Matthew Garretta8ec1052010-08-23 15:52:34 -0400244 int state = 0;
245 int ret = hp_wmi_perform_query(HPWMI_DISPLAY_QUERY, 0, &state,
Anssi Hannulac3021ea2011-02-20 20:07:22 +0200246 sizeof(state), sizeof(state));
Thomas Renninger6d96e002010-05-21 16:42:40 +0200247 if (ret)
248 return -EINVAL;
249 return state;
Matthew Garrett62ec30d2008-07-25 01:45:39 -0700250}
251
252static int hp_wmi_hddtemp_state(void)
253{
Matthew Garretta8ec1052010-08-23 15:52:34 -0400254 int state = 0;
255 int ret = hp_wmi_perform_query(HPWMI_HDDTEMP_QUERY, 0, &state,
Anssi Hannulac3021ea2011-02-20 20:07:22 +0200256 sizeof(state), sizeof(state));
Thomas Renninger6d96e002010-05-21 16:42:40 +0200257 if (ret)
258 return -EINVAL;
259 return state;
Matthew Garrett62ec30d2008-07-25 01:45:39 -0700260}
261
262static int hp_wmi_als_state(void)
263{
Matthew Garretta8ec1052010-08-23 15:52:34 -0400264 int state = 0;
265 int ret = hp_wmi_perform_query(HPWMI_ALS_QUERY, 0, &state,
Anssi Hannulac3021ea2011-02-20 20:07:22 +0200266 sizeof(state), sizeof(state));
Thomas Renninger6d96e002010-05-21 16:42:40 +0200267 if (ret)
268 return -EINVAL;
269 return state;
Matthew Garrett62ec30d2008-07-25 01:45:39 -0700270}
271
272static int hp_wmi_dock_state(void)
273{
Matthew Garretta8ec1052010-08-23 15:52:34 -0400274 int state = 0;
275 int ret = hp_wmi_perform_query(HPWMI_HARDWARE_QUERY, 0, &state,
Anssi Hannulac3021ea2011-02-20 20:07:22 +0200276 sizeof(state), sizeof(state));
Matthew Garrett871043b2009-06-01 15:25:45 +0100277
Thomas Renninger6d96e002010-05-21 16:42:40 +0200278 if (ret)
279 return -EINVAL;
Matthew Garrett871043b2009-06-01 15:25:45 +0100280
Thomas Renninger6d96e002010-05-21 16:42:40 +0200281 return state & 0x1;
Matthew Garrett62ec30d2008-07-25 01:45:39 -0700282}
283
Matthew Garrett871043b2009-06-01 15:25:45 +0100284static int hp_wmi_tablet_state(void)
Matthew Garrett62ec30d2008-07-25 01:45:39 -0700285{
Matthew Garretta8ec1052010-08-23 15:52:34 -0400286 int state = 0;
287 int ret = hp_wmi_perform_query(HPWMI_HARDWARE_QUERY, 0, &state,
Anssi Hannulac3021ea2011-02-20 20:07:22 +0200288 sizeof(state), sizeof(state));
Thomas Renninger6d96e002010-05-21 16:42:40 +0200289 if (ret)
Matthew Garrett871043b2009-06-01 15:25:45 +0100290 return ret;
291
Thomas Renninger6d96e002010-05-21 16:42:40 +0200292 return (state & 0x4) ? 1 : 0;
Matthew Garrett62ec30d2008-07-25 01:45:39 -0700293}
294
Matthew Garrettb253c9d2013-07-08 11:44:40 -0400295static int hp_wmi_enable_hotkeys(void)
296{
297 int ret;
298 int query = 0x6e;
299
300 ret = hp_wmi_perform_query(HPWMI_BIOS_QUERY, 1, &query, sizeof(query),
301 0);
302
303 if (ret)
304 return -EINVAL;
305 return 0;
306}
307
Johannes Berg19d337d2009-06-02 13:01:37 +0200308static int hp_wmi_set_block(void *data, bool blocked)
Matthew Garrett62ec30d2008-07-25 01:45:39 -0700309{
Alan Jenkinse5fbba82009-07-21 12:14:01 +0100310 enum hp_wmi_radio r = (enum hp_wmi_radio) data;
311 int query = BIT(r + 8) | ((!blocked) << r);
Thomas Renninger6d96e002010-05-21 16:42:40 +0200312 int ret;
Johannes Berg19d337d2009-06-02 13:01:37 +0200313
Thomas Renninger6d96e002010-05-21 16:42:40 +0200314 ret = hp_wmi_perform_query(HPWMI_WIRELESS_QUERY, 1,
Anssi Hannulac3021ea2011-02-20 20:07:22 +0200315 &query, sizeof(query), 0);
Thomas Renninger6d96e002010-05-21 16:42:40 +0200316 if (ret)
317 return -EINVAL;
318 return 0;
Matthew Garrett62ec30d2008-07-25 01:45:39 -0700319}
320
Johannes Berg19d337d2009-06-02 13:01:37 +0200321static const struct rfkill_ops hp_wmi_rfkill_ops = {
322 .set_block = hp_wmi_set_block,
323};
Matthew Garrett62ec30d2008-07-25 01:45:39 -0700324
Alan Jenkinse5fbba82009-07-21 12:14:01 +0100325static bool hp_wmi_get_sw_state(enum hp_wmi_radio r)
Matthew Garrett62ec30d2008-07-25 01:45:39 -0700326{
Matthew Garretta8ec1052010-08-23 15:52:34 -0400327 int wireless = 0;
Thomas Renninger6d96e002010-05-21 16:42:40 +0200328 int mask;
329 hp_wmi_perform_query(HPWMI_WIRELESS_QUERY, 0,
Anssi Hannulac3021ea2011-02-20 20:07:22 +0200330 &wireless, sizeof(wireless),
331 sizeof(wireless));
Thomas Renninger6d96e002010-05-21 16:42:40 +0200332 /* TBD: Pass error */
333
334 mask = 0x200 << (r * 8);
Matthew Garrett62ec30d2008-07-25 01:45:39 -0700335
Alan Jenkinse5fbba82009-07-21 12:14:01 +0100336 if (wireless & mask)
Johannes Berg19d337d2009-06-02 13:01:37 +0200337 return false;
Matthew Garrett62ec30d2008-07-25 01:45:39 -0700338 else
Johannes Berg19d337d2009-06-02 13:01:37 +0200339 return true;
Matthew Garrett62ec30d2008-07-25 01:45:39 -0700340}
341
Alan Jenkinse5fbba82009-07-21 12:14:01 +0100342static bool hp_wmi_get_hw_state(enum hp_wmi_radio r)
Matthew Garrett62ec30d2008-07-25 01:45:39 -0700343{
Matthew Garretta8ec1052010-08-23 15:52:34 -0400344 int wireless = 0;
Thomas Renninger6d96e002010-05-21 16:42:40 +0200345 int mask;
346 hp_wmi_perform_query(HPWMI_WIRELESS_QUERY, 0,
Anssi Hannulac3021ea2011-02-20 20:07:22 +0200347 &wireless, sizeof(wireless),
348 sizeof(wireless));
Thomas Renninger6d96e002010-05-21 16:42:40 +0200349 /* TBD: Pass error */
350
351 mask = 0x800 << (r * 8);
Matthew Garrett62ec30d2008-07-25 01:45:39 -0700352
Alan Jenkinse5fbba82009-07-21 12:14:01 +0100353 if (wireless & mask)
Johannes Berg19d337d2009-06-02 13:01:37 +0200354 return false;
Matthew Garrett62ec30d2008-07-25 01:45:39 -0700355 else
Johannes Berg19d337d2009-06-02 13:01:37 +0200356 return true;
Matthew Garrett62ec30d2008-07-25 01:45:39 -0700357}
358
Anssi Hannulac0b9c642011-02-20 20:07:26 +0200359static int hp_wmi_rfkill2_set_block(void *data, bool blocked)
360{
361 int rfkill_id = (int)(long)data;
362 char buffer[4] = { 0x01, 0x00, rfkill_id, !blocked };
363
364 if (hp_wmi_perform_query(HPWMI_WIRELESS2_QUERY, 1,
365 buffer, sizeof(buffer), 0))
366 return -EINVAL;
367 return 0;
368}
369
370static const struct rfkill_ops hp_wmi_rfkill2_ops = {
371 .set_block = hp_wmi_rfkill2_set_block,
372};
373
374static int hp_wmi_rfkill2_refresh(void)
375{
376 int err, i;
377 struct bios_rfkill2_state state;
378
379 err = hp_wmi_perform_query(HPWMI_WIRELESS2_QUERY, 0, &state,
380 0, sizeof(state));
381 if (err)
382 return err;
383
384 for (i = 0; i < rfkill2_count; i++) {
385 int num = rfkill2[i].num;
386 struct bios_rfkill2_device_state *devstate;
387 devstate = &state.device[num];
388
389 if (num >= state.count ||
390 devstate->rfkill_id != rfkill2[i].id) {
Joe Perchesb5a42232011-03-29 15:21:41 -0700391 pr_warn("power configuration of the wireless devices unexpectedly changed\n");
Anssi Hannulac0b9c642011-02-20 20:07:26 +0200392 continue;
393 }
394
395 rfkill_set_states(rfkill2[i].rfkill,
396 IS_SWBLOCKED(devstate->power),
397 IS_HWBLOCKED(devstate->power));
398 }
399
400 return 0;
401}
402
Matthew Garrett62ec30d2008-07-25 01:45:39 -0700403static ssize_t show_display(struct device *dev, struct device_attribute *attr,
404 char *buf)
405{
406 int value = hp_wmi_display_state();
407 if (value < 0)
408 return -EINVAL;
409 return sprintf(buf, "%d\n", value);
410}
411
412static ssize_t show_hddtemp(struct device *dev, struct device_attribute *attr,
413 char *buf)
414{
415 int value = hp_wmi_hddtemp_state();
416 if (value < 0)
417 return -EINVAL;
418 return sprintf(buf, "%d\n", value);
419}
420
421static ssize_t show_als(struct device *dev, struct device_attribute *attr,
422 char *buf)
423{
424 int value = hp_wmi_als_state();
425 if (value < 0)
426 return -EINVAL;
427 return sprintf(buf, "%d\n", value);
428}
429
430static ssize_t show_dock(struct device *dev, struct device_attribute *attr,
431 char *buf)
432{
433 int value = hp_wmi_dock_state();
434 if (value < 0)
435 return -EINVAL;
436 return sprintf(buf, "%d\n", value);
437}
438
Matthew Garrett871043b2009-06-01 15:25:45 +0100439static ssize_t show_tablet(struct device *dev, struct device_attribute *attr,
440 char *buf)
441{
442 int value = hp_wmi_tablet_state();
443 if (value < 0)
444 return -EINVAL;
445 return sprintf(buf, "%d\n", value);
446}
447
Matthew Garrett62ec30d2008-07-25 01:45:39 -0700448static ssize_t set_als(struct device *dev, struct device_attribute *attr,
449 const char *buf, size_t count)
450{
451 u32 tmp = simple_strtoul(buf, NULL, 10);
Matthew Garretta8ec1052010-08-23 15:52:34 -0400452 int ret = hp_wmi_perform_query(HPWMI_ALS_QUERY, 1, &tmp,
Anssi Hannulac3021ea2011-02-20 20:07:22 +0200453 sizeof(tmp), sizeof(tmp));
Thomas Renninger6d96e002010-05-21 16:42:40 +0200454 if (ret)
455 return -EINVAL;
456
Matthew Garrett62ec30d2008-07-25 01:45:39 -0700457 return count;
458}
459
460static DEVICE_ATTR(display, S_IRUGO, show_display, NULL);
461static DEVICE_ATTR(hddtemp, S_IRUGO, show_hddtemp, NULL);
462static DEVICE_ATTR(als, S_IRUGO | S_IWUSR, show_als, set_als);
463static DEVICE_ATTR(dock, S_IRUGO, show_dock, NULL);
Matthew Garrett871043b2009-06-01 15:25:45 +0100464static DEVICE_ATTR(tablet, S_IRUGO, show_tablet, NULL);
Matthew Garrett62ec30d2008-07-25 01:45:39 -0700465
Adrian Bunk88429a12008-10-15 22:05:17 -0700466static void hp_wmi_notify(u32 value, void *context)
Matthew Garrett62ec30d2008-07-25 01:45:39 -0700467{
468 struct acpi_buffer response = { ACPI_ALLOCATE_BUFFER, NULL };
Matthew Garrett62ec30d2008-07-25 01:45:39 -0700469 union acpi_object *obj;
Thomas Renninger8dda6b02010-05-21 16:41:43 +0200470 u32 event_id, event_data;
Matthew Garretta8ec1052010-08-23 15:52:34 -0400471 int key_code = 0, ret;
Thomas Renninger8dda6b02010-05-21 16:41:43 +0200472 u32 *location;
Len Brownfda11e62009-12-26 23:02:24 -0500473 acpi_status status;
Matthew Garrett62ec30d2008-07-25 01:45:39 -0700474
Len Brownfda11e62009-12-26 23:02:24 -0500475 status = wmi_get_event_data(value, &response);
476 if (status != AE_OK) {
Joe Perchesb5a42232011-03-29 15:21:41 -0700477 pr_info("bad event status 0x%x\n", status);
Len Brownfda11e62009-12-26 23:02:24 -0500478 return;
479 }
Matthew Garrett62ec30d2008-07-25 01:45:39 -0700480
481 obj = (union acpi_object *)response.pointer;
482
Thomas Renningerc4775062010-07-29 12:27:59 +0200483 if (!obj)
484 return;
485 if (obj->type != ACPI_TYPE_BUFFER) {
Joe Perchesb5a42232011-03-29 15:21:41 -0700486 pr_info("Unknown response received %d\n", obj->type);
Thomas Renninger44ef00e2009-12-18 15:29:23 +0100487 kfree(obj);
Alan Jenkinse5fbba82009-07-21 12:14:01 +0100488 return;
489 }
490
Thomas Renninger8dda6b02010-05-21 16:41:43 +0200491 /*
492 * Depending on ACPI version the concatenation of id and event data
493 * inside _WED function will result in a 8 or 16 byte buffer.
494 */
495 location = (u32 *)obj->buffer.pointer;
496 if (obj->buffer.length == 8) {
497 event_id = *location;
498 event_data = *(location + 1);
499 } else if (obj->buffer.length == 16) {
500 event_id = *location;
501 event_data = *(location + 2);
502 } else {
Joe Perchesb5a42232011-03-29 15:21:41 -0700503 pr_info("Unknown buffer length %d\n", obj->buffer.length);
Thomas Renninger8dda6b02010-05-21 16:41:43 +0200504 kfree(obj);
505 return;
506 }
Thomas Renninger44ef00e2009-12-18 15:29:23 +0100507 kfree(obj);
Thomas Renninger8dda6b02010-05-21 16:41:43 +0200508
509 switch (event_id) {
Thomas Renninger751ae802010-05-21 16:18:09 +0200510 case HPWMI_DOCK_EVENT:
Alan Jenkinse5fbba82009-07-21 12:14:01 +0100511 input_report_switch(hp_wmi_input_dev, SW_DOCK,
512 hp_wmi_dock_state());
513 input_report_switch(hp_wmi_input_dev, SW_TABLET_MODE,
514 hp_wmi_tablet_state());
515 input_sync(hp_wmi_input_dev);
Thomas Renninger751ae802010-05-21 16:18:09 +0200516 break;
Thomas Renninger1bbdfd52010-05-21 16:18:13 +0200517 case HPWMI_PARK_HDD:
518 break;
519 case HPWMI_SMART_ADAPTER:
520 break;
Thomas Renninger751ae802010-05-21 16:18:09 +0200521 case HPWMI_BEZEL_BUTTON:
Thomas Renninger6d96e002010-05-21 16:42:40 +0200522 ret = hp_wmi_perform_query(HPWMI_HOTKEY_QUERY, 0,
Matthew Garretta8ec1052010-08-23 15:52:34 -0400523 &key_code,
Anssi Hannulac3021ea2011-02-20 20:07:22 +0200524 sizeof(key_code),
Thomas Renninger6d96e002010-05-21 16:42:40 +0200525 sizeof(key_code));
526 if (ret)
527 break;
Dmitry Torokhov4d291ed2010-08-04 22:30:13 -0700528
529 if (!sparse_keymap_report_event(hp_wmi_input_dev,
530 key_code, 1, true))
Joe Perchesb5a42232011-03-29 15:21:41 -0700531 pr_info("Unknown key code - 0x%x\n", 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));
Trepák Vilmos4fca7ce2012-10-11 12:51:00 +0200551 if (gps_rfkill)
552 rfkill_set_states(gps_rfkill,
553 hp_wmi_get_sw_state(HPWMI_GPS),
554 hp_wmi_get_hw_state(HPWMI_GPS));
Thomas Renninger751ae802010-05-21 16:18:09 +0200555 break;
Thomas Renninger1bbdfd52010-05-21 16:18:13 +0200556 case HPWMI_CPU_BATTERY_THROTTLE:
Joe Perchesb5a42232011-03-29 15:21:41 -0700557 pr_info("Unimplemented CPU throttle because of 3 Cell battery event detected\n");
Thomas Renninger1bbdfd52010-05-21 16:18:13 +0200558 break;
559 case HPWMI_LOCK_SWITCH:
560 break;
Alex Hungd9e290a2013-03-15 17:18:22 +0800561 case HPWMI_LID_SWITCH:
562 break;
563 case HPWMI_SCREEN_ROTATION:
564 break;
565 case HPWMI_COOLSENSE_SYSTEM_MOBILE:
566 break;
567 case HPWMI_COOLSENSE_SYSTEM_HOT:
568 break;
569 case HPWMI_PROXIMITY_SENSOR:
570 break;
571 case HPWMI_BACKLIT_KB_BRIGHTNESS:
572 break;
573 case HPWMI_PEAKSHIFT_PERIOD:
574 break;
575 case HPWMI_BATTERY_CHARGE_PERIOD:
576 break;
Thomas Renninger751ae802010-05-21 16:18:09 +0200577 default:
Joe Perchesb5a42232011-03-29 15:21:41 -0700578 pr_info("Unknown event_id - %d - 0x%x\n", event_id, event_data);
Thomas Renninger751ae802010-05-21 16:18:09 +0200579 break;
580 }
Matthew Garrett62ec30d2008-07-25 01:45:39 -0700581}
582
583static int __init hp_wmi_input_setup(void)
584{
Dmitry Torokhov4d291ed2010-08-04 22:30:13 -0700585 acpi_status status;
Matthew Garrett62ec30d2008-07-25 01:45:39 -0700586 int err;
587
588 hp_wmi_input_dev = input_allocate_device();
Axel Linbc285962010-07-20 15:19:51 -0700589 if (!hp_wmi_input_dev)
590 return -ENOMEM;
Matthew Garrett62ec30d2008-07-25 01:45:39 -0700591
592 hp_wmi_input_dev->name = "HP WMI hotkeys";
593 hp_wmi_input_dev->phys = "wmi/input0";
594 hp_wmi_input_dev->id.bustype = BUS_HOST;
Matthew Garrett62ec30d2008-07-25 01:45:39 -0700595
Dmitry Torokhov4d291ed2010-08-04 22:30:13 -0700596 __set_bit(EV_SW, hp_wmi_input_dev->evbit);
597 __set_bit(SW_DOCK, hp_wmi_input_dev->swbit);
598 __set_bit(SW_TABLET_MODE, hp_wmi_input_dev->swbit);
Matthew Garrett62ec30d2008-07-25 01:45:39 -0700599
Dmitry Torokhov4d291ed2010-08-04 22:30:13 -0700600 err = sparse_keymap_setup(hp_wmi_input_dev, hp_wmi_keymap, NULL);
601 if (err)
602 goto err_free_dev;
Matthew Garrett871043b2009-06-01 15:25:45 +0100603
604 /* Set initial hardware state */
605 input_report_switch(hp_wmi_input_dev, SW_DOCK, hp_wmi_dock_state());
606 input_report_switch(hp_wmi_input_dev, SW_TABLET_MODE,
607 hp_wmi_tablet_state());
608 input_sync(hp_wmi_input_dev);
609
Dmitry Torokhov4d291ed2010-08-04 22:30:13 -0700610 status = wmi_install_notify_handler(HPWMI_EVENT_GUID, hp_wmi_notify, NULL);
611 if (ACPI_FAILURE(status)) {
612 err = -EIO;
613 goto err_free_keymap;
Matthew Garrett62ec30d2008-07-25 01:45:39 -0700614 }
615
Dmitry Torokhov4d291ed2010-08-04 22:30:13 -0700616 err = input_register_device(hp_wmi_input_dev);
617 if (err)
618 goto err_uninstall_notifier;
619
Matthew Garrett62ec30d2008-07-25 01:45:39 -0700620 return 0;
Dmitry Torokhov4d291ed2010-08-04 22:30:13 -0700621
622 err_uninstall_notifier:
623 wmi_remove_notify_handler(HPWMI_EVENT_GUID);
624 err_free_keymap:
625 sparse_keymap_free(hp_wmi_input_dev);
626 err_free_dev:
627 input_free_device(hp_wmi_input_dev);
628 return err;
629}
630
631static void hp_wmi_input_destroy(void)
632{
633 wmi_remove_notify_handler(HPWMI_EVENT_GUID);
634 sparse_keymap_free(hp_wmi_input_dev);
635 input_unregister_device(hp_wmi_input_dev);
Matthew Garrett62ec30d2008-07-25 01:45:39 -0700636}
637
638static void cleanup_sysfs(struct platform_device *device)
639{
640 device_remove_file(&device->dev, &dev_attr_display);
641 device_remove_file(&device->dev, &dev_attr_hddtemp);
642 device_remove_file(&device->dev, &dev_attr_als);
643 device_remove_file(&device->dev, &dev_attr_dock);
Matthew Garrett871043b2009-06-01 15:25:45 +0100644 device_remove_file(&device->dev, &dev_attr_tablet);
Matthew Garrett62ec30d2008-07-25 01:45:39 -0700645}
646
Greg Kroah-Hartmanb859f152012-12-21 13:18:33 -0800647static int hp_wmi_rfkill_setup(struct platform_device *device)
Matthew Garrett62ec30d2008-07-25 01:45:39 -0700648{
649 int err;
Matthew Garretta8ec1052010-08-23 15:52:34 -0400650 int wireless = 0;
Thomas Renninger6d96e002010-05-21 16:42:40 +0200651
Matthew Garretta8ec1052010-08-23 15:52:34 -0400652 err = hp_wmi_perform_query(HPWMI_WIRELESS_QUERY, 0, &wireless,
Anssi Hannulac3021ea2011-02-20 20:07:22 +0200653 sizeof(wireless), sizeof(wireless));
Thomas Renninger6d96e002010-05-21 16:42:40 +0200654 if (err)
655 return err;
Matthew Garrett62ec30d2008-07-25 01:45:39 -0700656
Matthew Garrett3f6e2f12008-09-02 14:36:00 -0700657 if (wireless & 0x1) {
Johannes Berg19d337d2009-06-02 13:01:37 +0200658 wifi_rfkill = rfkill_alloc("hp-wifi", &device->dev,
659 RFKILL_TYPE_WLAN,
660 &hp_wmi_rfkill_ops,
Alan Jenkinse5fbba82009-07-21 12:14:01 +0100661 (void *) HPWMI_WIFI);
Dan Carpenterdd258c02012-05-17 09:48:12 +0300662 if (!wifi_rfkill)
663 return -ENOMEM;
Alan Jenkinse5fbba82009-07-21 12:14:01 +0100664 rfkill_init_sw_state(wifi_rfkill,
665 hp_wmi_get_sw_state(HPWMI_WIFI));
666 rfkill_set_hw_state(wifi_rfkill,
667 hp_wmi_get_hw_state(HPWMI_WIFI));
Larry Fingerfe8e4e02009-01-09 16:40:54 -0800668 err = rfkill_register(wifi_rfkill);
669 if (err)
Johannes Berg19d337d2009-06-02 13:01:37 +0200670 goto register_wifi_error;
Matthew Garrett3f6e2f12008-09-02 14:36:00 -0700671 }
Matthew Garrett62ec30d2008-07-25 01:45:39 -0700672
Matthew Garrett3f6e2f12008-09-02 14:36:00 -0700673 if (wireless & 0x2) {
Johannes Berg19d337d2009-06-02 13:01:37 +0200674 bluetooth_rfkill = rfkill_alloc("hp-bluetooth", &device->dev,
675 RFKILL_TYPE_BLUETOOTH,
676 &hp_wmi_rfkill_ops,
Alan Jenkinse5fbba82009-07-21 12:14:01 +0100677 (void *) HPWMI_BLUETOOTH);
Dan Carpenterdd258c02012-05-17 09:48:12 +0300678 if (!bluetooth_rfkill) {
679 err = -ENOMEM;
680 goto register_wifi_error;
681 }
Alan Jenkinse5fbba82009-07-21 12:14:01 +0100682 rfkill_init_sw_state(bluetooth_rfkill,
683 hp_wmi_get_sw_state(HPWMI_BLUETOOTH));
684 rfkill_set_hw_state(bluetooth_rfkill,
685 hp_wmi_get_hw_state(HPWMI_BLUETOOTH));
Larry Fingerfe8e4e02009-01-09 16:40:54 -0800686 err = rfkill_register(bluetooth_rfkill);
Frans Pop6989d562009-01-29 14:25:14 -0800687 if (err)
Larry Fingerfe8e4e02009-01-09 16:40:54 -0800688 goto register_bluetooth_error;
Matthew Garrett3f6e2f12008-09-02 14:36:00 -0700689 }
Matthew Garrett62ec30d2008-07-25 01:45:39 -0700690
Matthew Garrett3f6e2f12008-09-02 14:36:00 -0700691 if (wireless & 0x4) {
Johannes Berg19d337d2009-06-02 13:01:37 +0200692 wwan_rfkill = rfkill_alloc("hp-wwan", &device->dev,
693 RFKILL_TYPE_WWAN,
694 &hp_wmi_rfkill_ops,
Alan Jenkinse5fbba82009-07-21 12:14:01 +0100695 (void *) HPWMI_WWAN);
Dan Carpenterdd258c02012-05-17 09:48:12 +0300696 if (!wwan_rfkill) {
697 err = -ENOMEM;
Trepák Vilmos4fca7ce2012-10-11 12:51:00 +0200698 goto register_gps_error;
Dan Carpenterdd258c02012-05-17 09:48:12 +0300699 }
Alan Jenkinse5fbba82009-07-21 12:14:01 +0100700 rfkill_init_sw_state(wwan_rfkill,
701 hp_wmi_get_sw_state(HPWMI_WWAN));
702 rfkill_set_hw_state(wwan_rfkill,
703 hp_wmi_get_hw_state(HPWMI_WWAN));
Larry Fingerfe8e4e02009-01-09 16:40:54 -0800704 err = rfkill_register(wwan_rfkill);
705 if (err)
706 goto register_wwan_err;
Matthew Garrett3f6e2f12008-09-02 14:36:00 -0700707 }
Matthew Garrett62ec30d2008-07-25 01:45:39 -0700708
Trepák Vilmos4fca7ce2012-10-11 12:51:00 +0200709 if (wireless & 0x8) {
710 gps_rfkill = rfkill_alloc("hp-gps", &device->dev,
711 RFKILL_TYPE_GPS,
712 &hp_wmi_rfkill_ops,
713 (void *) HPWMI_GPS);
714 if (!gps_rfkill) {
715 err = -ENOMEM;
716 goto register_bluetooth_error;
717 }
718 rfkill_init_sw_state(gps_rfkill,
719 hp_wmi_get_sw_state(HPWMI_GPS));
lan,Tianyuaf1d4862013-05-28 02:25:33 +0000720 rfkill_set_hw_state(gps_rfkill,
Trepák Vilmos4fca7ce2012-10-11 12:51:00 +0200721 hp_wmi_get_hw_state(HPWMI_GPS));
722 err = rfkill_register(gps_rfkill);
723 if (err)
724 goto register_gps_error;
725 }
726
Matthew Garrett62ec30d2008-07-25 01:45:39 -0700727 return 0;
Larry Fingerfe8e4e02009-01-09 16:40:54 -0800728register_wwan_err:
Johannes Berg19d337d2009-06-02 13:01:37 +0200729 rfkill_destroy(wwan_rfkill);
Anssi Hannula6d97db52011-02-20 20:07:24 +0200730 wwan_rfkill = NULL;
Trepák Vilmos4fca7ce2012-10-11 12:51:00 +0200731 if (gps_rfkill)
732 rfkill_unregister(gps_rfkill);
733register_gps_error:
734 rfkill_destroy(gps_rfkill);
735 gps_rfkill = NULL;
Andrew Morton44f06062009-02-04 15:12:07 -0800736 if (bluetooth_rfkill)
737 rfkill_unregister(bluetooth_rfkill);
Larry Fingerfe8e4e02009-01-09 16:40:54 -0800738register_bluetooth_error:
Johannes Berg19d337d2009-06-02 13:01:37 +0200739 rfkill_destroy(bluetooth_rfkill);
Anssi Hannula6d97db52011-02-20 20:07:24 +0200740 bluetooth_rfkill = NULL;
Andrew Morton44f06062009-02-04 15:12:07 -0800741 if (wifi_rfkill)
742 rfkill_unregister(wifi_rfkill);
Johannes Berg19d337d2009-06-02 13:01:37 +0200743register_wifi_error:
744 rfkill_destroy(wifi_rfkill);
Anssi Hannula6d97db52011-02-20 20:07:24 +0200745 wifi_rfkill = NULL;
Anssi Hannulaeceb7bd2011-02-20 20:07:23 +0200746 return err;
747}
748
Greg Kroah-Hartmanb859f152012-12-21 13:18:33 -0800749static int hp_wmi_rfkill2_setup(struct platform_device *device)
Anssi Hannulac0b9c642011-02-20 20:07:26 +0200750{
751 int err, i;
752 struct bios_rfkill2_state state;
753 err = hp_wmi_perform_query(HPWMI_WIRELESS2_QUERY, 0, &state,
754 0, sizeof(state));
755 if (err)
756 return err;
757
758 if (state.count > HPWMI_MAX_RFKILL2_DEVICES) {
Joe Perchesb5a42232011-03-29 15:21:41 -0700759 pr_warn("unable to parse 0x1b query output\n");
Anssi Hannulac0b9c642011-02-20 20:07:26 +0200760 return -EINVAL;
761 }
762
763 for (i = 0; i < state.count; i++) {
764 struct rfkill *rfkill;
765 enum rfkill_type type;
766 char *name;
767 switch (state.device[i].radio_type) {
768 case HPWMI_WIFI:
769 type = RFKILL_TYPE_WLAN;
770 name = "hp-wifi";
771 break;
772 case HPWMI_BLUETOOTH:
773 type = RFKILL_TYPE_BLUETOOTH;
774 name = "hp-bluetooth";
775 break;
776 case HPWMI_WWAN:
777 type = RFKILL_TYPE_WWAN;
778 name = "hp-wwan";
779 break;
Trepák Vilmos4fca7ce2012-10-11 12:51:00 +0200780 case HPWMI_GPS:
781 type = RFKILL_TYPE_GPS;
782 name = "hp-gps";
783 break;
Anssi Hannulac0b9c642011-02-20 20:07:26 +0200784 default:
Joe Perchesb5a42232011-03-29 15:21:41 -0700785 pr_warn("unknown device type 0x%x\n",
786 state.device[i].radio_type);
Anssi Hannulac0b9c642011-02-20 20:07:26 +0200787 continue;
788 }
789
790 if (!state.device[i].vendor_id) {
Joe Perchesb5a42232011-03-29 15:21:41 -0700791 pr_warn("zero device %d while %d reported\n",
792 i, state.count);
Anssi Hannulac0b9c642011-02-20 20:07:26 +0200793 continue;
794 }
795
796 rfkill = rfkill_alloc(name, &device->dev, type,
797 &hp_wmi_rfkill2_ops, (void *)(long)i);
798 if (!rfkill) {
799 err = -ENOMEM;
800 goto fail;
801 }
802
803 rfkill2[rfkill2_count].id = state.device[i].rfkill_id;
804 rfkill2[rfkill2_count].num = i;
805 rfkill2[rfkill2_count].rfkill = rfkill;
806
807 rfkill_init_sw_state(rfkill,
808 IS_SWBLOCKED(state.device[i].power));
809 rfkill_set_hw_state(rfkill,
810 IS_HWBLOCKED(state.device[i].power));
811
812 if (!(state.device[i].power & HPWMI_POWER_BIOS))
Joe Perchesb5a42232011-03-29 15:21:41 -0700813 pr_info("device %s blocked by BIOS\n", name);
Anssi Hannulac0b9c642011-02-20 20:07:26 +0200814
815 err = rfkill_register(rfkill);
816 if (err) {
817 rfkill_destroy(rfkill);
818 goto fail;
819 }
820
821 rfkill2_count++;
822 }
823
824 return 0;
825fail:
826 for (; rfkill2_count > 0; rfkill2_count--) {
827 rfkill_unregister(rfkill2[rfkill2_count - 1].rfkill);
828 rfkill_destroy(rfkill2[rfkill2_count - 1].rfkill);
829 }
830 return err;
831}
832
Dmitry Torokhovc165b802013-02-20 00:44:34 -0800833static int __init hp_wmi_bios_setup(struct platform_device *device)
Anssi Hannulaeceb7bd2011-02-20 20:07:23 +0200834{
835 int err;
836
Anssi Hannula6d97db52011-02-20 20:07:24 +0200837 /* clear detected rfkill devices */
838 wifi_rfkill = NULL;
839 bluetooth_rfkill = NULL;
840 wwan_rfkill = NULL;
Trepák Vilmos4fca7ce2012-10-11 12:51:00 +0200841 gps_rfkill = NULL;
Anssi Hannulac0b9c642011-02-20 20:07:26 +0200842 rfkill2_count = 0;
Anssi Hannula6d97db52011-02-20 20:07:24 +0200843
Anssi Hannulac0b9c642011-02-20 20:07:26 +0200844 if (hp_wmi_rfkill_setup(device))
845 hp_wmi_rfkill2_setup(device);
Anssi Hannulaeceb7bd2011-02-20 20:07:23 +0200846
847 err = device_create_file(&device->dev, &dev_attr_display);
848 if (err)
849 goto add_sysfs_error;
850 err = device_create_file(&device->dev, &dev_attr_hddtemp);
851 if (err)
852 goto add_sysfs_error;
853 err = device_create_file(&device->dev, &dev_attr_als);
854 if (err)
855 goto add_sysfs_error;
856 err = device_create_file(&device->dev, &dev_attr_dock);
857 if (err)
858 goto add_sysfs_error;
859 err = device_create_file(&device->dev, &dev_attr_tablet);
860 if (err)
861 goto add_sysfs_error;
862 return 0;
863
Matthew Garrett62ec30d2008-07-25 01:45:39 -0700864add_sysfs_error:
865 cleanup_sysfs(device);
866 return err;
867}
868
869static int __exit hp_wmi_bios_remove(struct platform_device *device)
870{
Anssi Hannulac0b9c642011-02-20 20:07:26 +0200871 int i;
Matthew Garrett62ec30d2008-07-25 01:45:39 -0700872 cleanup_sysfs(device);
873
Anssi Hannulac0b9c642011-02-20 20:07:26 +0200874 for (i = 0; i < rfkill2_count; i++) {
875 rfkill_unregister(rfkill2[i].rfkill);
876 rfkill_destroy(rfkill2[i].rfkill);
877 }
878
Johannes Berg19d337d2009-06-02 13:01:37 +0200879 if (wifi_rfkill) {
Matthew Garrett3f6e2f12008-09-02 14:36:00 -0700880 rfkill_unregister(wifi_rfkill);
Johannes Berg19d337d2009-06-02 13:01:37 +0200881 rfkill_destroy(wifi_rfkill);
882 }
883 if (bluetooth_rfkill) {
Matthew Garrett3f6e2f12008-09-02 14:36:00 -0700884 rfkill_unregister(bluetooth_rfkill);
Corentin Chary09729f02009-09-14 12:43:51 +0200885 rfkill_destroy(bluetooth_rfkill);
Johannes Berg19d337d2009-06-02 13:01:37 +0200886 }
887 if (wwan_rfkill) {
Matthew Garrett3f6e2f12008-09-02 14:36:00 -0700888 rfkill_unregister(wwan_rfkill);
Johannes Berg19d337d2009-06-02 13:01:37 +0200889 rfkill_destroy(wwan_rfkill);
890 }
Trepák Vilmos4fca7ce2012-10-11 12:51:00 +0200891 if (gps_rfkill) {
892 rfkill_unregister(gps_rfkill);
893 rfkill_destroy(gps_rfkill);
894 }
Matthew Garrett62ec30d2008-07-25 01:45:39 -0700895
896 return 0;
897}
898
Frans Pop8dd2b422009-08-20 20:38:13 +0200899static int hp_wmi_resume_handler(struct device *device)
Frans Pop4c395bd2009-03-04 11:55:28 -0800900{
Frans Pop4c395bd2009-03-04 11:55:28 -0800901 /*
Matthew Garrett871043b2009-06-01 15:25:45 +0100902 * Hardware state may have changed while suspended, so trigger
903 * input events for the current state. As this is a switch,
Frans Pop4c395bd2009-03-04 11:55:28 -0800904 * the input layer will only actually pass it on if the state
905 * changed.
906 */
Frans Popdaed9532009-07-30 17:16:05 -0400907 if (hp_wmi_input_dev) {
908 input_report_switch(hp_wmi_input_dev, SW_DOCK,
909 hp_wmi_dock_state());
910 input_report_switch(hp_wmi_input_dev, SW_TABLET_MODE,
911 hp_wmi_tablet_state());
912 input_sync(hp_wmi_input_dev);
913 }
Frans Pop4c395bd2009-03-04 11:55:28 -0800914
Anssi Hannulac0b9c642011-02-20 20:07:26 +0200915 if (rfkill2_count)
916 hp_wmi_rfkill2_refresh();
917
Alan Jenkinse5fbba82009-07-21 12:14:01 +0100918 if (wifi_rfkill)
919 rfkill_set_states(wifi_rfkill,
920 hp_wmi_get_sw_state(HPWMI_WIFI),
921 hp_wmi_get_hw_state(HPWMI_WIFI));
922 if (bluetooth_rfkill)
923 rfkill_set_states(bluetooth_rfkill,
924 hp_wmi_get_sw_state(HPWMI_BLUETOOTH),
925 hp_wmi_get_hw_state(HPWMI_BLUETOOTH));
926 if (wwan_rfkill)
927 rfkill_set_states(wwan_rfkill,
928 hp_wmi_get_sw_state(HPWMI_WWAN),
929 hp_wmi_get_hw_state(HPWMI_WWAN));
Trepák Vilmos4fca7ce2012-10-11 12:51:00 +0200930 if (gps_rfkill)
931 rfkill_set_states(gps_rfkill,
932 hp_wmi_get_sw_state(HPWMI_GPS),
933 hp_wmi_get_hw_state(HPWMI_GPS));
Alan Jenkinse5fbba82009-07-21 12:14:01 +0100934
Frans Pop4c395bd2009-03-04 11:55:28 -0800935 return 0;
936}
937
Dmitry Torokhovc165b802013-02-20 00:44:34 -0800938static const struct dev_pm_ops hp_wmi_pm_ops = {
939 .resume = hp_wmi_resume_handler,
940 .restore = hp_wmi_resume_handler,
941};
942
943static struct platform_driver hp_wmi_driver = {
944 .driver = {
945 .name = "hp-wmi",
946 .owner = THIS_MODULE,
947 .pm = &hp_wmi_pm_ops,
948 },
949 .remove = __exit_p(hp_wmi_bios_remove),
950};
951
Matthew Garrett62ec30d2008-07-25 01:45:39 -0700952static int __init hp_wmi_init(void)
953{
954 int err;
Thomas Renningerb0966672010-07-20 15:19:29 -0700955 int event_capable = wmi_has_guid(HPWMI_EVENT_GUID);
956 int bios_capable = wmi_has_guid(HPWMI_BIOS_GUID);
Matthew Garrett62ec30d2008-07-25 01:45:39 -0700957
Dmitry Torokhovc165b802013-02-20 00:44:34 -0800958 if (!bios_capable && !event_capable)
959 return -ENODEV;
960
Thomas Renningerb0966672010-07-20 15:19:29 -0700961 if (event_capable) {
Axel Lindfec5c42010-06-10 16:06:40 +0800962 err = hp_wmi_input_setup();
Dmitry Torokhov4d291ed2010-08-04 22:30:13 -0700963 if (err)
Axel Lindfec5c42010-06-10 16:06:40 +0800964 return err;
Matthew Garrettb253c9d2013-07-08 11:44:40 -0400965
966 hp_wmi_enable_hotkeys();
Matthew Garrett62ec30d2008-07-25 01:45:39 -0700967 }
968
Thomas Renningerb0966672010-07-20 15:19:29 -0700969 if (bios_capable) {
Dmitry Torokhovc165b802013-02-20 00:44:34 -0800970 hp_wmi_platform_dev =
971 platform_device_register_simple("hp-wmi", -1, NULL, 0);
972 if (IS_ERR(hp_wmi_platform_dev)) {
973 err = PTR_ERR(hp_wmi_platform_dev);
974 goto err_destroy_input;
Matthew Garrett62ec30d2008-07-25 01:45:39 -0700975 }
Matthew Garrett62ec30d2008-07-25 01:45:39 -0700976
Dmitry Torokhovc165b802013-02-20 00:44:34 -0800977 err = platform_driver_probe(&hp_wmi_driver, hp_wmi_bios_setup);
978 if (err)
979 goto err_unregister_device;
980 }
Thomas Renningerb0966672010-07-20 15:19:29 -0700981
Matthew Garrett62ec30d2008-07-25 01:45:39 -0700982 return 0;
Axel Lindfec5c42010-06-10 16:06:40 +0800983
Dmitry Torokhovc165b802013-02-20 00:44:34 -0800984err_unregister_device:
985 platform_device_unregister(hp_wmi_platform_dev);
986err_destroy_input:
Dmitry Torokhov4d291ed2010-08-04 22:30:13 -0700987 if (event_capable)
988 hp_wmi_input_destroy();
Axel Lindfec5c42010-06-10 16:06:40 +0800989
990 return err;
Matthew Garrett62ec30d2008-07-25 01:45:39 -0700991}
Dmitry Torokhovc165b802013-02-20 00:44:34 -0800992module_init(hp_wmi_init);
Matthew Garrett62ec30d2008-07-25 01:45:39 -0700993
994static void __exit hp_wmi_exit(void)
995{
Dmitry Torokhov4d291ed2010-08-04 22:30:13 -0700996 if (wmi_has_guid(HPWMI_EVENT_GUID))
997 hp_wmi_input_destroy();
998
Matthew Garrett62ec30d2008-07-25 01:45:39 -0700999 if (hp_wmi_platform_dev) {
Axel Lin97ba0af2010-06-03 15:18:03 +08001000 platform_device_unregister(hp_wmi_platform_dev);
Matthew Garrett62ec30d2008-07-25 01:45:39 -07001001 platform_driver_unregister(&hp_wmi_driver);
1002 }
1003}
Matthew Garrett62ec30d2008-07-25 01:45:39 -07001004module_exit(hp_wmi_exit);