| Matthew Garrett | 62ec30d | 2008-07-25 01:45:39 -0700 | [diff] [blame] | 1 | /* | 
 | 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> | 
 | 29 | #include <linux/types.h> | 
 | 30 | #include <linux/input.h> | 
 | 31 | #include <acpi/acpi_drivers.h> | 
 | 32 | #include <linux/platform_device.h> | 
 | 33 | #include <linux/acpi.h> | 
 | 34 | #include <linux/rfkill.h> | 
 | 35 | #include <linux/string.h> | 
 | 36 |  | 
 | 37 | MODULE_AUTHOR("Matthew Garrett <mjg59@srcf.ucam.org>"); | 
 | 38 | MODULE_DESCRIPTION("HP laptop WMI hotkeys driver"); | 
 | 39 | MODULE_LICENSE("GPL"); | 
 | 40 |  | 
 | 41 | MODULE_ALIAS("wmi:95F24279-4D7B-4334-9387-ACCDC67EF61C"); | 
 | 42 | MODULE_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 Garrett | 871043b | 2009-06-01 15:25:45 +0100 | [diff] [blame] | 50 | #define HPWMI_HARDWARE_QUERY 0x4 | 
| Matthew Garrett | 62ec30d | 2008-07-25 01:45:39 -0700 | [diff] [blame] | 51 | #define HPWMI_WIRELESS_QUERY 0x5 | 
| Matthew Garrett | a8823ae | 2008-09-02 14:36:03 -0700 | [diff] [blame] | 52 | #define HPWMI_HOTKEY_QUERY 0xc | 
| Matthew Garrett | 62ec30d | 2008-07-25 01:45:39 -0700 | [diff] [blame] | 53 |  | 
 | 54 | static int __init hp_wmi_bios_setup(struct platform_device *device); | 
 | 55 | static int __exit hp_wmi_bios_remove(struct platform_device *device); | 
| Frans Pop | 4c395bd | 2009-03-04 11:55:28 -0800 | [diff] [blame] | 56 | static int hp_wmi_resume_handler(struct platform_device *device); | 
| Matthew Garrett | 62ec30d | 2008-07-25 01:45:39 -0700 | [diff] [blame] | 57 |  | 
 | 58 | struct bios_args { | 
 | 59 | 	u32 signature; | 
 | 60 | 	u32 command; | 
 | 61 | 	u32 commandtype; | 
 | 62 | 	u32 datasize; | 
 | 63 | 	u32 data; | 
 | 64 | }; | 
 | 65 |  | 
 | 66 | struct bios_return { | 
 | 67 | 	u32 sigpass; | 
 | 68 | 	u32 return_code; | 
 | 69 | 	u32 value; | 
 | 70 | }; | 
 | 71 |  | 
 | 72 | struct key_entry { | 
 | 73 | 	char type;		/* See KE_* below */ | 
| Matthew Garrett | a8823ae | 2008-09-02 14:36:03 -0700 | [diff] [blame] | 74 | 	u16 code; | 
| Matthew Garrett | 62ec30d | 2008-07-25 01:45:39 -0700 | [diff] [blame] | 75 | 	u16 keycode; | 
 | 76 | }; | 
 | 77 |  | 
| Matthew Garrett | 871043b | 2009-06-01 15:25:45 +0100 | [diff] [blame] | 78 | enum { KE_KEY, KE_END }; | 
| Matthew Garrett | 62ec30d | 2008-07-25 01:45:39 -0700 | [diff] [blame] | 79 |  | 
 | 80 | static struct key_entry hp_wmi_keymap[] = { | 
| Matthew Garrett | 62ec30d | 2008-07-25 01:45:39 -0700 | [diff] [blame] | 81 | 	{KE_KEY, 0x02, KEY_BRIGHTNESSUP}, | 
 | 82 | 	{KE_KEY, 0x03, KEY_BRIGHTNESSDOWN}, | 
| Matthew Garrett | a8823ae | 2008-09-02 14:36:03 -0700 | [diff] [blame] | 83 | 	{KE_KEY, 0x20e6, KEY_PROG1}, | 
 | 84 | 	{KE_KEY, 0x2142, KEY_MEDIA}, | 
| Eric Piel | 5c62484 | 2008-10-18 20:27:28 -0700 | [diff] [blame] | 85 | 	{KE_KEY, 0x213b, KEY_INFO}, | 
| Matthew Garrett | a8823ae | 2008-09-02 14:36:03 -0700 | [diff] [blame] | 86 | 	{KE_KEY, 0x231b, KEY_HELP}, | 
| Matthew Garrett | 62ec30d | 2008-07-25 01:45:39 -0700 | [diff] [blame] | 87 | 	{KE_END, 0} | 
 | 88 | }; | 
 | 89 |  | 
 | 90 | static struct input_dev *hp_wmi_input_dev; | 
 | 91 | static struct platform_device *hp_wmi_platform_dev; | 
 | 92 |  | 
 | 93 | static struct rfkill *wifi_rfkill; | 
 | 94 | static struct rfkill *bluetooth_rfkill; | 
 | 95 | static struct rfkill *wwan_rfkill; | 
 | 96 |  | 
 | 97 | static struct platform_driver hp_wmi_driver = { | 
 | 98 | 	.driver = { | 
 | 99 | 		   .name = "hp-wmi", | 
 | 100 | 		   .owner = THIS_MODULE, | 
 | 101 | 	}, | 
 | 102 | 	.probe = hp_wmi_bios_setup, | 
 | 103 | 	.remove = hp_wmi_bios_remove, | 
| Frans Pop | 4c395bd | 2009-03-04 11:55:28 -0800 | [diff] [blame] | 104 | 	.resume = hp_wmi_resume_handler, | 
| Matthew Garrett | 62ec30d | 2008-07-25 01:45:39 -0700 | [diff] [blame] | 105 | }; | 
 | 106 |  | 
 | 107 | static int hp_wmi_perform_query(int query, int write, int value) | 
 | 108 | { | 
 | 109 | 	struct bios_return bios_return; | 
 | 110 | 	acpi_status status; | 
 | 111 | 	union acpi_object *obj; | 
 | 112 | 	struct bios_args args = { | 
 | 113 | 		.signature = 0x55434553, | 
 | 114 | 		.command = write ? 0x2 : 0x1, | 
 | 115 | 		.commandtype = query, | 
 | 116 | 		.datasize = write ? 0x4 : 0, | 
 | 117 | 		.data = value, | 
 | 118 | 	}; | 
 | 119 | 	struct acpi_buffer input = { sizeof(struct bios_args), &args }; | 
 | 120 | 	struct acpi_buffer output = { ACPI_ALLOCATE_BUFFER, NULL }; | 
 | 121 |  | 
 | 122 | 	status = wmi_evaluate_method(HPWMI_BIOS_GUID, 0, 0x3, &input, &output); | 
 | 123 |  | 
 | 124 | 	obj = output.pointer; | 
 | 125 |  | 
 | 126 | 	if (!obj || obj->type != ACPI_TYPE_BUFFER) | 
 | 127 | 		return -EINVAL; | 
 | 128 |  | 
 | 129 | 	bios_return = *((struct bios_return *)obj->buffer.pointer); | 
 | 130 | 	if (bios_return.return_code > 0) | 
 | 131 | 		return bios_return.return_code * -1; | 
 | 132 | 	else | 
 | 133 | 		return bios_return.value; | 
 | 134 | } | 
 | 135 |  | 
 | 136 | static int hp_wmi_display_state(void) | 
 | 137 | { | 
 | 138 | 	return hp_wmi_perform_query(HPWMI_DISPLAY_QUERY, 0, 0); | 
 | 139 | } | 
 | 140 |  | 
 | 141 | static int hp_wmi_hddtemp_state(void) | 
 | 142 | { | 
 | 143 | 	return hp_wmi_perform_query(HPWMI_HDDTEMP_QUERY, 0, 0); | 
 | 144 | } | 
 | 145 |  | 
 | 146 | static int hp_wmi_als_state(void) | 
 | 147 | { | 
 | 148 | 	return hp_wmi_perform_query(HPWMI_ALS_QUERY, 0, 0); | 
 | 149 | } | 
 | 150 |  | 
 | 151 | static int hp_wmi_dock_state(void) | 
 | 152 | { | 
| Matthew Garrett | 871043b | 2009-06-01 15:25:45 +0100 | [diff] [blame] | 153 | 	int ret = hp_wmi_perform_query(HPWMI_HARDWARE_QUERY, 0, 0); | 
 | 154 |  | 
 | 155 | 	if (ret < 0) | 
 | 156 | 		return ret; | 
 | 157 |  | 
 | 158 | 	return ret & 0x1; | 
| Matthew Garrett | 62ec30d | 2008-07-25 01:45:39 -0700 | [diff] [blame] | 159 | } | 
 | 160 |  | 
| Matthew Garrett | 871043b | 2009-06-01 15:25:45 +0100 | [diff] [blame] | 161 | static int hp_wmi_tablet_state(void) | 
| Matthew Garrett | 62ec30d | 2008-07-25 01:45:39 -0700 | [diff] [blame] | 162 | { | 
| Matthew Garrett | 871043b | 2009-06-01 15:25:45 +0100 | [diff] [blame] | 163 | 	int ret = hp_wmi_perform_query(HPWMI_HARDWARE_QUERY, 0, 0); | 
 | 164 |  | 
 | 165 | 	if (ret < 0) | 
 | 166 | 		return ret; | 
 | 167 |  | 
 | 168 | 	return (ret & 0x4) ? 1 : 0; | 
| Matthew Garrett | 62ec30d | 2008-07-25 01:45:39 -0700 | [diff] [blame] | 169 | } | 
 | 170 |  | 
| Johannes Berg | 19d337d | 2009-06-02 13:01:37 +0200 | [diff] [blame] | 171 | static int hp_wmi_set_block(void *data, bool blocked) | 
| Matthew Garrett | 62ec30d | 2008-07-25 01:45:39 -0700 | [diff] [blame] | 172 | { | 
| Johannes Berg | 19d337d | 2009-06-02 13:01:37 +0200 | [diff] [blame] | 173 | 	unsigned long b = (unsigned long) data; | 
| Johannes Berg | 76d8b64 | 2009-06-29 10:53:53 +0200 | [diff] [blame] | 174 | 	int query = BIT(b + 8) | ((!blocked) << b); | 
| Johannes Berg | 19d337d | 2009-06-02 13:01:37 +0200 | [diff] [blame] | 175 |  | 
 | 176 | 	return hp_wmi_perform_query(HPWMI_WIRELESS_QUERY, 1, query); | 
| Matthew Garrett | 62ec30d | 2008-07-25 01:45:39 -0700 | [diff] [blame] | 177 | } | 
 | 178 |  | 
| Johannes Berg | 19d337d | 2009-06-02 13:01:37 +0200 | [diff] [blame] | 179 | static const struct rfkill_ops hp_wmi_rfkill_ops = { | 
 | 180 | 	.set_block = hp_wmi_set_block, | 
 | 181 | }; | 
| Matthew Garrett | 62ec30d | 2008-07-25 01:45:39 -0700 | [diff] [blame] | 182 |  | 
| Johannes Berg | 19d337d | 2009-06-02 13:01:37 +0200 | [diff] [blame] | 183 | static bool hp_wmi_wifi_state(void) | 
| Matthew Garrett | 62ec30d | 2008-07-25 01:45:39 -0700 | [diff] [blame] | 184 | { | 
 | 185 | 	int wireless = hp_wmi_perform_query(HPWMI_WIRELESS_QUERY, 0, 0); | 
 | 186 |  | 
 | 187 | 	if (wireless & 0x100) | 
| Johannes Berg | 19d337d | 2009-06-02 13:01:37 +0200 | [diff] [blame] | 188 | 		return false; | 
| Matthew Garrett | 62ec30d | 2008-07-25 01:45:39 -0700 | [diff] [blame] | 189 | 	else | 
| Johannes Berg | 19d337d | 2009-06-02 13:01:37 +0200 | [diff] [blame] | 190 | 		return true; | 
| Matthew Garrett | 62ec30d | 2008-07-25 01:45:39 -0700 | [diff] [blame] | 191 | } | 
 | 192 |  | 
| Johannes Berg | 19d337d | 2009-06-02 13:01:37 +0200 | [diff] [blame] | 193 | static bool hp_wmi_bluetooth_state(void) | 
| Matthew Garrett | 62ec30d | 2008-07-25 01:45:39 -0700 | [diff] [blame] | 194 | { | 
 | 195 | 	int wireless = hp_wmi_perform_query(HPWMI_WIRELESS_QUERY, 0, 0); | 
 | 196 |  | 
 | 197 | 	if (wireless & 0x10000) | 
| Johannes Berg | 19d337d | 2009-06-02 13:01:37 +0200 | [diff] [blame] | 198 | 		return false; | 
| Matthew Garrett | 62ec30d | 2008-07-25 01:45:39 -0700 | [diff] [blame] | 199 | 	else | 
| Johannes Berg | 19d337d | 2009-06-02 13:01:37 +0200 | [diff] [blame] | 200 | 		return true; | 
| Matthew Garrett | 62ec30d | 2008-07-25 01:45:39 -0700 | [diff] [blame] | 201 | } | 
 | 202 |  | 
| Johannes Berg | 19d337d | 2009-06-02 13:01:37 +0200 | [diff] [blame] | 203 | static bool hp_wmi_wwan_state(void) | 
| Matthew Garrett | 62ec30d | 2008-07-25 01:45:39 -0700 | [diff] [blame] | 204 | { | 
 | 205 | 	int wireless = hp_wmi_perform_query(HPWMI_WIRELESS_QUERY, 0, 0); | 
 | 206 |  | 
 | 207 | 	if (wireless & 0x1000000) | 
| Johannes Berg | 19d337d | 2009-06-02 13:01:37 +0200 | [diff] [blame] | 208 | 		return false; | 
| Matthew Garrett | 62ec30d | 2008-07-25 01:45:39 -0700 | [diff] [blame] | 209 | 	else | 
| Johannes Berg | 19d337d | 2009-06-02 13:01:37 +0200 | [diff] [blame] | 210 | 		return true; | 
| Matthew Garrett | 62ec30d | 2008-07-25 01:45:39 -0700 | [diff] [blame] | 211 | } | 
 | 212 |  | 
 | 213 | static ssize_t show_display(struct device *dev, struct device_attribute *attr, | 
 | 214 | 			    char *buf) | 
 | 215 | { | 
 | 216 | 	int value = hp_wmi_display_state(); | 
 | 217 | 	if (value < 0) | 
 | 218 | 		return -EINVAL; | 
 | 219 | 	return sprintf(buf, "%d\n", value); | 
 | 220 | } | 
 | 221 |  | 
 | 222 | static ssize_t show_hddtemp(struct device *dev, struct device_attribute *attr, | 
 | 223 | 			    char *buf) | 
 | 224 | { | 
 | 225 | 	int value = hp_wmi_hddtemp_state(); | 
 | 226 | 	if (value < 0) | 
 | 227 | 		return -EINVAL; | 
 | 228 | 	return sprintf(buf, "%d\n", value); | 
 | 229 | } | 
 | 230 |  | 
 | 231 | static ssize_t show_als(struct device *dev, struct device_attribute *attr, | 
 | 232 | 			char *buf) | 
 | 233 | { | 
 | 234 | 	int value = hp_wmi_als_state(); | 
 | 235 | 	if (value < 0) | 
 | 236 | 		return -EINVAL; | 
 | 237 | 	return sprintf(buf, "%d\n", value); | 
 | 238 | } | 
 | 239 |  | 
 | 240 | static ssize_t show_dock(struct device *dev, struct device_attribute *attr, | 
 | 241 | 			 char *buf) | 
 | 242 | { | 
 | 243 | 	int value = hp_wmi_dock_state(); | 
 | 244 | 	if (value < 0) | 
 | 245 | 		return -EINVAL; | 
 | 246 | 	return sprintf(buf, "%d\n", value); | 
 | 247 | } | 
 | 248 |  | 
| Matthew Garrett | 871043b | 2009-06-01 15:25:45 +0100 | [diff] [blame] | 249 | static ssize_t show_tablet(struct device *dev, struct device_attribute *attr, | 
 | 250 | 			 char *buf) | 
 | 251 | { | 
 | 252 | 	int value = hp_wmi_tablet_state(); | 
 | 253 | 	if (value < 0) | 
 | 254 | 		return -EINVAL; | 
 | 255 | 	return sprintf(buf, "%d\n", value); | 
 | 256 | } | 
 | 257 |  | 
| Matthew Garrett | 62ec30d | 2008-07-25 01:45:39 -0700 | [diff] [blame] | 258 | static ssize_t set_als(struct device *dev, struct device_attribute *attr, | 
 | 259 | 		       const char *buf, size_t count) | 
 | 260 | { | 
 | 261 | 	u32 tmp = simple_strtoul(buf, NULL, 10); | 
 | 262 | 	hp_wmi_perform_query(HPWMI_ALS_QUERY, 1, tmp); | 
 | 263 | 	return count; | 
 | 264 | } | 
 | 265 |  | 
 | 266 | static DEVICE_ATTR(display, S_IRUGO, show_display, NULL); | 
 | 267 | static DEVICE_ATTR(hddtemp, S_IRUGO, show_hddtemp, NULL); | 
 | 268 | static DEVICE_ATTR(als, S_IRUGO | S_IWUSR, show_als, set_als); | 
 | 269 | static DEVICE_ATTR(dock, S_IRUGO, show_dock, NULL); | 
| Matthew Garrett | 871043b | 2009-06-01 15:25:45 +0100 | [diff] [blame] | 270 | static DEVICE_ATTR(tablet, S_IRUGO, show_tablet, NULL); | 
| Matthew Garrett | 62ec30d | 2008-07-25 01:45:39 -0700 | [diff] [blame] | 271 |  | 
 | 272 | static struct key_entry *hp_wmi_get_entry_by_scancode(int code) | 
 | 273 | { | 
 | 274 | 	struct key_entry *key; | 
 | 275 |  | 
 | 276 | 	for (key = hp_wmi_keymap; key->type != KE_END; key++) | 
 | 277 | 		if (code == key->code) | 
 | 278 | 			return key; | 
 | 279 |  | 
 | 280 | 	return NULL; | 
 | 281 | } | 
 | 282 |  | 
 | 283 | static struct key_entry *hp_wmi_get_entry_by_keycode(int keycode) | 
 | 284 | { | 
 | 285 | 	struct key_entry *key; | 
 | 286 |  | 
 | 287 | 	for (key = hp_wmi_keymap; key->type != KE_END; key++) | 
 | 288 | 		if (key->type == KE_KEY && keycode == key->keycode) | 
 | 289 | 			return key; | 
 | 290 |  | 
 | 291 | 	return NULL; | 
 | 292 | } | 
 | 293 |  | 
 | 294 | static int hp_wmi_getkeycode(struct input_dev *dev, int scancode, int *keycode) | 
 | 295 | { | 
 | 296 | 	struct key_entry *key = hp_wmi_get_entry_by_scancode(scancode); | 
 | 297 |  | 
 | 298 | 	if (key && key->type == KE_KEY) { | 
 | 299 | 		*keycode = key->keycode; | 
 | 300 | 		return 0; | 
 | 301 | 	} | 
 | 302 |  | 
 | 303 | 	return -EINVAL; | 
 | 304 | } | 
 | 305 |  | 
 | 306 | static int hp_wmi_setkeycode(struct input_dev *dev, int scancode, int keycode) | 
 | 307 | { | 
 | 308 | 	struct key_entry *key; | 
 | 309 | 	int old_keycode; | 
 | 310 |  | 
 | 311 | 	if (keycode < 0 || keycode > KEY_MAX) | 
 | 312 | 		return -EINVAL; | 
 | 313 |  | 
 | 314 | 	key = hp_wmi_get_entry_by_scancode(scancode); | 
 | 315 | 	if (key && key->type == KE_KEY) { | 
 | 316 | 		old_keycode = key->keycode; | 
 | 317 | 		key->keycode = keycode; | 
 | 318 | 		set_bit(keycode, dev->keybit); | 
 | 319 | 		if (!hp_wmi_get_entry_by_keycode(old_keycode)) | 
 | 320 | 			clear_bit(old_keycode, dev->keybit); | 
 | 321 | 		return 0; | 
 | 322 | 	} | 
 | 323 |  | 
 | 324 | 	return -EINVAL; | 
 | 325 | } | 
 | 326 |  | 
| Adrian Bunk | 88429a1 | 2008-10-15 22:05:17 -0700 | [diff] [blame] | 327 | static void hp_wmi_notify(u32 value, void *context) | 
| Matthew Garrett | 62ec30d | 2008-07-25 01:45:39 -0700 | [diff] [blame] | 328 | { | 
 | 329 | 	struct acpi_buffer response = { ACPI_ALLOCATE_BUFFER, NULL }; | 
 | 330 | 	static struct key_entry *key; | 
 | 331 | 	union acpi_object *obj; | 
 | 332 |  | 
 | 333 | 	wmi_get_event_data(value, &response); | 
 | 334 |  | 
 | 335 | 	obj = (union acpi_object *)response.pointer; | 
 | 336 |  | 
 | 337 | 	if (obj && obj->type == ACPI_TYPE_BUFFER && obj->buffer.length == 8) { | 
 | 338 | 		int eventcode = *((u8 *) obj->buffer.pointer); | 
| Matthew Garrett | a8823ae | 2008-09-02 14:36:03 -0700 | [diff] [blame] | 339 | 		if (eventcode == 0x4) | 
 | 340 | 			eventcode = hp_wmi_perform_query(HPWMI_HOTKEY_QUERY, 0, | 
 | 341 | 							 0); | 
| Matthew Garrett | 62ec30d | 2008-07-25 01:45:39 -0700 | [diff] [blame] | 342 | 		key = hp_wmi_get_entry_by_scancode(eventcode); | 
 | 343 | 		if (key) { | 
 | 344 | 			switch (key->type) { | 
 | 345 | 			case KE_KEY: | 
 | 346 | 				input_report_key(hp_wmi_input_dev, | 
 | 347 | 						 key->keycode, 1); | 
 | 348 | 				input_sync(hp_wmi_input_dev); | 
 | 349 | 				input_report_key(hp_wmi_input_dev, | 
 | 350 | 						 key->keycode, 0); | 
 | 351 | 				input_sync(hp_wmi_input_dev); | 
 | 352 | 				break; | 
| Matthew Garrett | 62ec30d | 2008-07-25 01:45:39 -0700 | [diff] [blame] | 353 | 			} | 
| Matthew Garrett | 871043b | 2009-06-01 15:25:45 +0100 | [diff] [blame] | 354 | 		} else if (eventcode == 0x1) { | 
 | 355 | 			input_report_switch(hp_wmi_input_dev, SW_DOCK, | 
 | 356 | 					    hp_wmi_dock_state()); | 
 | 357 | 			input_report_switch(hp_wmi_input_dev, SW_TABLET_MODE, | 
 | 358 | 					    hp_wmi_tablet_state()); | 
 | 359 | 			input_sync(hp_wmi_input_dev); | 
| Matthew Garrett | 62ec30d | 2008-07-25 01:45:39 -0700 | [diff] [blame] | 360 | 		} else if (eventcode == 0x5) { | 
 | 361 | 			if (wifi_rfkill) | 
| Johannes Berg | 19d337d | 2009-06-02 13:01:37 +0200 | [diff] [blame] | 362 | 				rfkill_set_sw_state(wifi_rfkill, | 
 | 363 | 						    hp_wmi_wifi_state()); | 
| Matthew Garrett | 62ec30d | 2008-07-25 01:45:39 -0700 | [diff] [blame] | 364 | 			if (bluetooth_rfkill) | 
| Johannes Berg | 19d337d | 2009-06-02 13:01:37 +0200 | [diff] [blame] | 365 | 				rfkill_set_sw_state(bluetooth_rfkill, | 
 | 366 | 						    hp_wmi_bluetooth_state()); | 
| Matthew Garrett | 62ec30d | 2008-07-25 01:45:39 -0700 | [diff] [blame] | 367 | 			if (wwan_rfkill) | 
| Johannes Berg | 19d337d | 2009-06-02 13:01:37 +0200 | [diff] [blame] | 368 | 				rfkill_set_sw_state(wwan_rfkill, | 
 | 369 | 						    hp_wmi_wwan_state()); | 
| Matthew Garrett | 62ec30d | 2008-07-25 01:45:39 -0700 | [diff] [blame] | 370 | 		} else | 
 | 371 | 			printk(KERN_INFO "HP WMI: Unknown key pressed - %x\n", | 
 | 372 | 			       eventcode); | 
 | 373 | 	} else | 
 | 374 | 		printk(KERN_INFO "HP WMI: Unknown response received\n"); | 
 | 375 | } | 
 | 376 |  | 
 | 377 | static int __init hp_wmi_input_setup(void) | 
 | 378 | { | 
 | 379 | 	struct key_entry *key; | 
 | 380 | 	int err; | 
 | 381 |  | 
 | 382 | 	hp_wmi_input_dev = input_allocate_device(); | 
 | 383 |  | 
 | 384 | 	hp_wmi_input_dev->name = "HP WMI hotkeys"; | 
 | 385 | 	hp_wmi_input_dev->phys = "wmi/input0"; | 
 | 386 | 	hp_wmi_input_dev->id.bustype = BUS_HOST; | 
 | 387 | 	hp_wmi_input_dev->getkeycode = hp_wmi_getkeycode; | 
 | 388 | 	hp_wmi_input_dev->setkeycode = hp_wmi_setkeycode; | 
 | 389 |  | 
 | 390 | 	for (key = hp_wmi_keymap; key->type != KE_END; key++) { | 
 | 391 | 		switch (key->type) { | 
 | 392 | 		case KE_KEY: | 
 | 393 | 			set_bit(EV_KEY, hp_wmi_input_dev->evbit); | 
 | 394 | 			set_bit(key->keycode, hp_wmi_input_dev->keybit); | 
 | 395 | 			break; | 
| Matthew Garrett | 62ec30d | 2008-07-25 01:45:39 -0700 | [diff] [blame] | 396 | 		} | 
 | 397 | 	} | 
 | 398 |  | 
| Matthew Garrett | 871043b | 2009-06-01 15:25:45 +0100 | [diff] [blame] | 399 | 	set_bit(EV_SW, hp_wmi_input_dev->evbit); | 
 | 400 | 	set_bit(SW_DOCK, hp_wmi_input_dev->swbit); | 
 | 401 | 	set_bit(SW_TABLET_MODE, hp_wmi_input_dev->swbit); | 
 | 402 |  | 
 | 403 | 	/* Set initial hardware state */ | 
 | 404 | 	input_report_switch(hp_wmi_input_dev, SW_DOCK, hp_wmi_dock_state()); | 
 | 405 | 	input_report_switch(hp_wmi_input_dev, SW_TABLET_MODE, | 
 | 406 | 			    hp_wmi_tablet_state()); | 
 | 407 | 	input_sync(hp_wmi_input_dev); | 
 | 408 |  | 
| Matthew Garrett | 62ec30d | 2008-07-25 01:45:39 -0700 | [diff] [blame] | 409 | 	err = input_register_device(hp_wmi_input_dev); | 
 | 410 |  | 
 | 411 | 	if (err) { | 
 | 412 | 		input_free_device(hp_wmi_input_dev); | 
 | 413 | 		return err; | 
 | 414 | 	} | 
 | 415 |  | 
 | 416 | 	return 0; | 
 | 417 | } | 
 | 418 |  | 
 | 419 | static void cleanup_sysfs(struct platform_device *device) | 
 | 420 | { | 
 | 421 | 	device_remove_file(&device->dev, &dev_attr_display); | 
 | 422 | 	device_remove_file(&device->dev, &dev_attr_hddtemp); | 
 | 423 | 	device_remove_file(&device->dev, &dev_attr_als); | 
 | 424 | 	device_remove_file(&device->dev, &dev_attr_dock); | 
| Matthew Garrett | 871043b | 2009-06-01 15:25:45 +0100 | [diff] [blame] | 425 | 	device_remove_file(&device->dev, &dev_attr_tablet); | 
| Matthew Garrett | 62ec30d | 2008-07-25 01:45:39 -0700 | [diff] [blame] | 426 | } | 
 | 427 |  | 
 | 428 | static int __init hp_wmi_bios_setup(struct platform_device *device) | 
 | 429 | { | 
 | 430 | 	int err; | 
| Matthew Garrett | 3f6e2f1 | 2008-09-02 14:36:00 -0700 | [diff] [blame] | 431 | 	int wireless = hp_wmi_perform_query(HPWMI_WIRELESS_QUERY, 0, 0); | 
| Matthew Garrett | 62ec30d | 2008-07-25 01:45:39 -0700 | [diff] [blame] | 432 |  | 
 | 433 | 	err = device_create_file(&device->dev, &dev_attr_display); | 
 | 434 | 	if (err) | 
 | 435 | 		goto add_sysfs_error; | 
 | 436 | 	err = device_create_file(&device->dev, &dev_attr_hddtemp); | 
 | 437 | 	if (err) | 
 | 438 | 		goto add_sysfs_error; | 
 | 439 | 	err = device_create_file(&device->dev, &dev_attr_als); | 
 | 440 | 	if (err) | 
 | 441 | 		goto add_sysfs_error; | 
 | 442 | 	err = device_create_file(&device->dev, &dev_attr_dock); | 
 | 443 | 	if (err) | 
 | 444 | 		goto add_sysfs_error; | 
| Matthew Garrett | 871043b | 2009-06-01 15:25:45 +0100 | [diff] [blame] | 445 | 	err = device_create_file(&device->dev, &dev_attr_tablet); | 
 | 446 | 	if (err) | 
 | 447 | 		goto add_sysfs_error; | 
| Matthew Garrett | 62ec30d | 2008-07-25 01:45:39 -0700 | [diff] [blame] | 448 |  | 
| Matthew Garrett | 3f6e2f1 | 2008-09-02 14:36:00 -0700 | [diff] [blame] | 449 | 	if (wireless & 0x1) { | 
| Johannes Berg | 19d337d | 2009-06-02 13:01:37 +0200 | [diff] [blame] | 450 | 		wifi_rfkill = rfkill_alloc("hp-wifi", &device->dev, | 
 | 451 | 					   RFKILL_TYPE_WLAN, | 
 | 452 | 					   &hp_wmi_rfkill_ops, | 
 | 453 | 					   (void *) 0); | 
| Larry Finger | fe8e4e0 | 2009-01-09 16:40:54 -0800 | [diff] [blame] | 454 | 		err = rfkill_register(wifi_rfkill); | 
 | 455 | 		if (err) | 
| Johannes Berg | 19d337d | 2009-06-02 13:01:37 +0200 | [diff] [blame] | 456 | 			goto register_wifi_error; | 
| Matthew Garrett | 3f6e2f1 | 2008-09-02 14:36:00 -0700 | [diff] [blame] | 457 | 	} | 
| Matthew Garrett | 62ec30d | 2008-07-25 01:45:39 -0700 | [diff] [blame] | 458 |  | 
| Matthew Garrett | 3f6e2f1 | 2008-09-02 14:36:00 -0700 | [diff] [blame] | 459 | 	if (wireless & 0x2) { | 
| Johannes Berg | 19d337d | 2009-06-02 13:01:37 +0200 | [diff] [blame] | 460 | 		bluetooth_rfkill = rfkill_alloc("hp-bluetooth", &device->dev, | 
 | 461 | 						RFKILL_TYPE_BLUETOOTH, | 
 | 462 | 						&hp_wmi_rfkill_ops, | 
 | 463 | 						(void *) 1); | 
| Larry Finger | fe8e4e0 | 2009-01-09 16:40:54 -0800 | [diff] [blame] | 464 | 		err = rfkill_register(bluetooth_rfkill); | 
| Frans Pop | 6989d56 | 2009-01-29 14:25:14 -0800 | [diff] [blame] | 465 | 		if (err) | 
| Larry Finger | fe8e4e0 | 2009-01-09 16:40:54 -0800 | [diff] [blame] | 466 | 			goto register_bluetooth_error; | 
| Matthew Garrett | 3f6e2f1 | 2008-09-02 14:36:00 -0700 | [diff] [blame] | 467 | 	} | 
| Matthew Garrett | 62ec30d | 2008-07-25 01:45:39 -0700 | [diff] [blame] | 468 |  | 
| Matthew Garrett | 3f6e2f1 | 2008-09-02 14:36:00 -0700 | [diff] [blame] | 469 | 	if (wireless & 0x4) { | 
| Johannes Berg | 19d337d | 2009-06-02 13:01:37 +0200 | [diff] [blame] | 470 | 		wwan_rfkill = rfkill_alloc("hp-wwan", &device->dev, | 
 | 471 | 					   RFKILL_TYPE_WWAN, | 
 | 472 | 					   &hp_wmi_rfkill_ops, | 
 | 473 | 					   (void *) 2); | 
| Larry Finger | fe8e4e0 | 2009-01-09 16:40:54 -0800 | [diff] [blame] | 474 | 		err = rfkill_register(wwan_rfkill); | 
 | 475 | 		if (err) | 
 | 476 | 			goto register_wwan_err; | 
| Matthew Garrett | 3f6e2f1 | 2008-09-02 14:36:00 -0700 | [diff] [blame] | 477 | 	} | 
| Matthew Garrett | 62ec30d | 2008-07-25 01:45:39 -0700 | [diff] [blame] | 478 |  | 
 | 479 | 	return 0; | 
| Larry Finger | fe8e4e0 | 2009-01-09 16:40:54 -0800 | [diff] [blame] | 480 | register_wwan_err: | 
| Johannes Berg | 19d337d | 2009-06-02 13:01:37 +0200 | [diff] [blame] | 481 | 	rfkill_destroy(wwan_rfkill); | 
| Andrew Morton | 44f0606 | 2009-02-04 15:12:07 -0800 | [diff] [blame] | 482 | 	if (bluetooth_rfkill) | 
 | 483 | 		rfkill_unregister(bluetooth_rfkill); | 
| Larry Finger | fe8e4e0 | 2009-01-09 16:40:54 -0800 | [diff] [blame] | 484 | register_bluetooth_error: | 
| Johannes Berg | 19d337d | 2009-06-02 13:01:37 +0200 | [diff] [blame] | 485 | 	rfkill_destroy(bluetooth_rfkill); | 
| Andrew Morton | 44f0606 | 2009-02-04 15:12:07 -0800 | [diff] [blame] | 486 | 	if (wifi_rfkill) | 
 | 487 | 		rfkill_unregister(wifi_rfkill); | 
| Johannes Berg | 19d337d | 2009-06-02 13:01:37 +0200 | [diff] [blame] | 488 | register_wifi_error: | 
 | 489 | 	rfkill_destroy(wifi_rfkill); | 
| Matthew Garrett | 62ec30d | 2008-07-25 01:45:39 -0700 | [diff] [blame] | 490 | add_sysfs_error: | 
 | 491 | 	cleanup_sysfs(device); | 
 | 492 | 	return err; | 
 | 493 | } | 
 | 494 |  | 
 | 495 | static int __exit hp_wmi_bios_remove(struct platform_device *device) | 
 | 496 | { | 
 | 497 | 	cleanup_sysfs(device); | 
 | 498 |  | 
| Johannes Berg | 19d337d | 2009-06-02 13:01:37 +0200 | [diff] [blame] | 499 | 	if (wifi_rfkill) { | 
| Matthew Garrett | 3f6e2f1 | 2008-09-02 14:36:00 -0700 | [diff] [blame] | 500 | 		rfkill_unregister(wifi_rfkill); | 
| Johannes Berg | 19d337d | 2009-06-02 13:01:37 +0200 | [diff] [blame] | 501 | 		rfkill_destroy(wifi_rfkill); | 
 | 502 | 	} | 
 | 503 | 	if (bluetooth_rfkill) { | 
| Matthew Garrett | 3f6e2f1 | 2008-09-02 14:36:00 -0700 | [diff] [blame] | 504 | 		rfkill_unregister(bluetooth_rfkill); | 
| Johannes Berg | 19d337d | 2009-06-02 13:01:37 +0200 | [diff] [blame] | 505 | 		rfkill_destroy(wifi_rfkill); | 
 | 506 | 	} | 
 | 507 | 	if (wwan_rfkill) { | 
| Matthew Garrett | 3f6e2f1 | 2008-09-02 14:36:00 -0700 | [diff] [blame] | 508 | 		rfkill_unregister(wwan_rfkill); | 
| Johannes Berg | 19d337d | 2009-06-02 13:01:37 +0200 | [diff] [blame] | 509 | 		rfkill_destroy(wwan_rfkill); | 
 | 510 | 	} | 
| Matthew Garrett | 62ec30d | 2008-07-25 01:45:39 -0700 | [diff] [blame] | 511 |  | 
 | 512 | 	return 0; | 
 | 513 | } | 
 | 514 |  | 
| Frans Pop | 4c395bd | 2009-03-04 11:55:28 -0800 | [diff] [blame] | 515 | static int hp_wmi_resume_handler(struct platform_device *device) | 
 | 516 | { | 
| Frans Pop | 4c395bd | 2009-03-04 11:55:28 -0800 | [diff] [blame] | 517 | 	/* | 
| Matthew Garrett | 871043b | 2009-06-01 15:25:45 +0100 | [diff] [blame] | 518 | 	 * Hardware state may have changed while suspended, so trigger | 
 | 519 | 	 * input events for the current state. As this is a switch, | 
| Frans Pop | 4c395bd | 2009-03-04 11:55:28 -0800 | [diff] [blame] | 520 | 	 * the input layer will only actually pass it on if the state | 
 | 521 | 	 * changed. | 
 | 522 | 	 */ | 
| Frans Pop | daed953 | 2009-07-30 17:16:05 -0400 | [diff] [blame] | 523 | 	if (hp_wmi_input_dev) { | 
 | 524 | 		input_report_switch(hp_wmi_input_dev, SW_DOCK, | 
 | 525 | 				    hp_wmi_dock_state()); | 
 | 526 | 		input_report_switch(hp_wmi_input_dev, SW_TABLET_MODE, | 
 | 527 | 				    hp_wmi_tablet_state()); | 
 | 528 | 		input_sync(hp_wmi_input_dev); | 
 | 529 | 	} | 
| Frans Pop | 4c395bd | 2009-03-04 11:55:28 -0800 | [diff] [blame] | 530 |  | 
 | 531 | 	return 0; | 
 | 532 | } | 
 | 533 |  | 
| Matthew Garrett | 62ec30d | 2008-07-25 01:45:39 -0700 | [diff] [blame] | 534 | static int __init hp_wmi_init(void) | 
 | 535 | { | 
 | 536 | 	int err; | 
 | 537 |  | 
 | 538 | 	if (wmi_has_guid(HPWMI_EVENT_GUID)) { | 
 | 539 | 		err = wmi_install_notify_handler(HPWMI_EVENT_GUID, | 
 | 540 | 						 hp_wmi_notify, NULL); | 
 | 541 | 		if (!err) | 
 | 542 | 			hp_wmi_input_setup(); | 
 | 543 | 	} | 
 | 544 |  | 
 | 545 | 	if (wmi_has_guid(HPWMI_BIOS_GUID)) { | 
 | 546 | 		err = platform_driver_register(&hp_wmi_driver); | 
 | 547 | 		if (err) | 
 | 548 | 			return 0; | 
 | 549 | 		hp_wmi_platform_dev = platform_device_alloc("hp-wmi", -1); | 
 | 550 | 		if (!hp_wmi_platform_dev) { | 
 | 551 | 			platform_driver_unregister(&hp_wmi_driver); | 
 | 552 | 			return 0; | 
 | 553 | 		} | 
 | 554 | 		platform_device_add(hp_wmi_platform_dev); | 
 | 555 | 	} | 
 | 556 |  | 
 | 557 | 	return 0; | 
 | 558 | } | 
 | 559 |  | 
 | 560 | static void __exit hp_wmi_exit(void) | 
 | 561 | { | 
 | 562 | 	if (wmi_has_guid(HPWMI_EVENT_GUID)) { | 
 | 563 | 		wmi_remove_notify_handler(HPWMI_EVENT_GUID); | 
 | 564 | 		input_unregister_device(hp_wmi_input_dev); | 
 | 565 | 	} | 
 | 566 | 	if (hp_wmi_platform_dev) { | 
 | 567 | 		platform_device_del(hp_wmi_platform_dev); | 
 | 568 | 		platform_driver_unregister(&hp_wmi_driver); | 
 | 569 | 	} | 
 | 570 | } | 
 | 571 |  | 
 | 572 | module_init(hp_wmi_init); | 
 | 573 | module_exit(hp_wmi_exit); |