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> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 29 | #include <linux/slab.h> |
Matthew Garrett | 62ec30d | 2008-07-25 01:45:39 -0700 | [diff] [blame] | 30 | #include <linux/types.h> |
| 31 | #include <linux/input.h> |
Dmitry Torokhov | 4d291ed | 2010-08-04 22:30:13 -0700 | [diff] [blame] | 32 | #include <linux/input/sparse-keymap.h> |
Matthew Garrett | 62ec30d | 2008-07-25 01:45:39 -0700 | [diff] [blame] | 33 | #include <linux/platform_device.h> |
| 34 | #include <linux/acpi.h> |
| 35 | #include <linux/rfkill.h> |
| 36 | #include <linux/string.h> |
| 37 | |
| 38 | MODULE_AUTHOR("Matthew Garrett <mjg59@srcf.ucam.org>"); |
| 39 | MODULE_DESCRIPTION("HP laptop WMI hotkeys driver"); |
| 40 | MODULE_LICENSE("GPL"); |
| 41 | |
| 42 | MODULE_ALIAS("wmi:95F24279-4D7B-4334-9387-ACCDC67EF61C"); |
| 43 | MODULE_ALIAS("wmi:5FB7F034-2C63-45e9-BE91-3D44E2C707E4"); |
| 44 | |
| 45 | #define HPWMI_EVENT_GUID "95F24279-4D7B-4334-9387-ACCDC67EF61C" |
| 46 | #define HPWMI_BIOS_GUID "5FB7F034-2C63-45e9-BE91-3D44E2C707E4" |
| 47 | |
| 48 | #define HPWMI_DISPLAY_QUERY 0x1 |
| 49 | #define HPWMI_HDDTEMP_QUERY 0x2 |
| 50 | #define HPWMI_ALS_QUERY 0x3 |
Matthew Garrett | 871043b | 2009-06-01 15:25:45 +0100 | [diff] [blame] | 51 | #define HPWMI_HARDWARE_QUERY 0x4 |
Matthew Garrett | 62ec30d | 2008-07-25 01:45:39 -0700 | [diff] [blame] | 52 | #define HPWMI_WIRELESS_QUERY 0x5 |
Matthew Garrett | a8823ae | 2008-09-02 14:36:03 -0700 | [diff] [blame] | 53 | #define HPWMI_HOTKEY_QUERY 0xc |
Matthew Garrett | 62ec30d | 2008-07-25 01:45:39 -0700 | [diff] [blame] | 54 | |
Thomas Renninger | a2806c6 | 2010-05-21 16:18:11 +0200 | [diff] [blame] | 55 | #define PREFIX "HP WMI: " |
Thomas Renninger | 1bbdfd5 | 2010-05-21 16:18:13 +0200 | [diff] [blame] | 56 | #define UNIMP "Unimplemented " |
Thomas Renninger | a2806c6 | 2010-05-21 16:18:11 +0200 | [diff] [blame] | 57 | |
Alan Jenkins | e5fbba8 | 2009-07-21 12:14:01 +0100 | [diff] [blame] | 58 | enum hp_wmi_radio { |
| 59 | HPWMI_WIFI = 0, |
| 60 | HPWMI_BLUETOOTH = 1, |
| 61 | HPWMI_WWAN = 2, |
| 62 | }; |
| 63 | |
Thomas Renninger | 751ae80 | 2010-05-21 16:18:09 +0200 | [diff] [blame] | 64 | enum hp_wmi_event_ids { |
| 65 | HPWMI_DOCK_EVENT = 1, |
Thomas Renninger | 1bbdfd5 | 2010-05-21 16:18:13 +0200 | [diff] [blame] | 66 | HPWMI_PARK_HDD = 2, |
| 67 | HPWMI_SMART_ADAPTER = 3, |
Thomas Renninger | 751ae80 | 2010-05-21 16:18:09 +0200 | [diff] [blame] | 68 | HPWMI_BEZEL_BUTTON = 4, |
| 69 | HPWMI_WIRELESS = 5, |
Thomas Renninger | 1bbdfd5 | 2010-05-21 16:18:13 +0200 | [diff] [blame] | 70 | HPWMI_CPU_BATTERY_THROTTLE = 6, |
| 71 | HPWMI_LOCK_SWITCH = 7, |
Thomas Renninger | 751ae80 | 2010-05-21 16:18:09 +0200 | [diff] [blame] | 72 | }; |
| 73 | |
Uwe Kleine-König | ea79632 | 2010-02-04 20:56:52 +0100 | [diff] [blame] | 74 | static int __devinit hp_wmi_bios_setup(struct platform_device *device); |
Matthew Garrett | 62ec30d | 2008-07-25 01:45:39 -0700 | [diff] [blame] | 75 | static int __exit hp_wmi_bios_remove(struct platform_device *device); |
Frans Pop | 8dd2b42 | 2009-08-20 20:38:13 +0200 | [diff] [blame] | 76 | static int hp_wmi_resume_handler(struct device *device); |
Matthew Garrett | 62ec30d | 2008-07-25 01:45:39 -0700 | [diff] [blame] | 77 | |
| 78 | struct bios_args { |
| 79 | u32 signature; |
| 80 | u32 command; |
| 81 | u32 commandtype; |
| 82 | u32 datasize; |
Matthew Garrett | a8ec105 | 2010-08-23 15:52:34 -0400 | [diff] [blame] | 83 | u32 data; |
Matthew Garrett | 62ec30d | 2008-07-25 01:45:39 -0700 | [diff] [blame] | 84 | }; |
| 85 | |
| 86 | struct bios_return { |
| 87 | u32 sigpass; |
| 88 | u32 return_code; |
Matthew Garrett | a8ec105 | 2010-08-23 15:52:34 -0400 | [diff] [blame] | 89 | u32 value; |
Matthew Garrett | 62ec30d | 2008-07-25 01:45:39 -0700 | [diff] [blame] | 90 | }; |
| 91 | |
Anssi Hannula | 9af0e0f | 2011-02-20 20:07:20 +0200 | [diff] [blame] | 92 | enum hp_return_value { |
| 93 | HPWMI_RET_WRONG_SIGNATURE = 0x02, |
| 94 | HPWMI_RET_UNKNOWN_COMMAND = 0x03, |
| 95 | HPWMI_RET_UNKNOWN_CMDTYPE = 0x04, |
| 96 | HPWMI_RET_INVALID_PARAMETERS = 0x05, |
| 97 | }; |
| 98 | |
Dmitry Torokhov | 4d291ed | 2010-08-04 22:30:13 -0700 | [diff] [blame] | 99 | static const struct key_entry hp_wmi_keymap[] = { |
| 100 | { KE_KEY, 0x02, { KEY_BRIGHTNESSUP } }, |
| 101 | { KE_KEY, 0x03, { KEY_BRIGHTNESSDOWN } }, |
| 102 | { KE_KEY, 0x20e6, { KEY_PROG1 } }, |
| 103 | { KE_KEY, 0x20e8, { KEY_MEDIA } }, |
| 104 | { KE_KEY, 0x2142, { KEY_MEDIA } }, |
| 105 | { KE_KEY, 0x213b, { KEY_INFO } }, |
| 106 | { KE_KEY, 0x2169, { KEY_DIRECTION } }, |
| 107 | { KE_KEY, 0x231b, { KEY_HELP } }, |
| 108 | { KE_END, 0 } |
Matthew Garrett | 62ec30d | 2008-07-25 01:45:39 -0700 | [diff] [blame] | 109 | }; |
| 110 | |
| 111 | static struct input_dev *hp_wmi_input_dev; |
| 112 | static struct platform_device *hp_wmi_platform_dev; |
| 113 | |
| 114 | static struct rfkill *wifi_rfkill; |
| 115 | static struct rfkill *bluetooth_rfkill; |
| 116 | static struct rfkill *wwan_rfkill; |
| 117 | |
Alexey Dobriyan | 4714521 | 2009-12-14 18:00:08 -0800 | [diff] [blame] | 118 | static const struct dev_pm_ops hp_wmi_pm_ops = { |
Frans Pop | 8dd2b42 | 2009-08-20 20:38:13 +0200 | [diff] [blame] | 119 | .resume = hp_wmi_resume_handler, |
| 120 | .restore = hp_wmi_resume_handler, |
| 121 | }; |
| 122 | |
Matthew Garrett | 62ec30d | 2008-07-25 01:45:39 -0700 | [diff] [blame] | 123 | static struct platform_driver hp_wmi_driver = { |
| 124 | .driver = { |
Frans Pop | 8dd2b42 | 2009-08-20 20:38:13 +0200 | [diff] [blame] | 125 | .name = "hp-wmi", |
| 126 | .owner = THIS_MODULE, |
| 127 | .pm = &hp_wmi_pm_ops, |
Matthew Garrett | 62ec30d | 2008-07-25 01:45:39 -0700 | [diff] [blame] | 128 | }, |
| 129 | .probe = hp_wmi_bios_setup, |
| 130 | .remove = hp_wmi_bios_remove, |
| 131 | }; |
| 132 | |
Thomas Renninger | 6d96e00 | 2010-05-21 16:42:40 +0200 | [diff] [blame] | 133 | /* |
| 134 | * hp_wmi_perform_query |
| 135 | * |
| 136 | * query: The commandtype -> What should be queried |
| 137 | * write: The command -> 0 read, 1 write, 3 ODM specific |
| 138 | * buffer: Buffer used as input and/or output |
| 139 | * buffersize: Size of buffer |
| 140 | * |
| 141 | * returns zero on success |
| 142 | * an HP WMI query specific error code (which is positive) |
| 143 | * -EINVAL if the query was not successful at all |
| 144 | * -EINVAL if the output buffer size exceeds buffersize |
| 145 | * |
| 146 | * Note: The buffersize must at least be the maximum of the input and output |
| 147 | * size. E.g. Battery info query (0x7) is defined to have 1 byte input |
| 148 | * and 128 byte output. The caller would do: |
| 149 | * buffer = kzalloc(128, GFP_KERNEL); |
| 150 | * ret = hp_wmi_perform_query(0x7, 0, buffer, 128) |
| 151 | */ |
Matthew Garrett | a8ec105 | 2010-08-23 15:52:34 -0400 | [diff] [blame] | 152 | static int hp_wmi_perform_query(int query, int write, u32 *buffer, |
Thomas Renninger | 6d96e00 | 2010-05-21 16:42:40 +0200 | [diff] [blame] | 153 | int buffersize) |
Matthew Garrett | 62ec30d | 2008-07-25 01:45:39 -0700 | [diff] [blame] | 154 | { |
| 155 | struct bios_return bios_return; |
Matthew Garrett | 62ec30d | 2008-07-25 01:45:39 -0700 | [diff] [blame] | 156 | union acpi_object *obj; |
| 157 | struct bios_args args = { |
| 158 | .signature = 0x55434553, |
| 159 | .command = write ? 0x2 : 0x1, |
| 160 | .commandtype = query, |
Thomas Renninger | 6d96e00 | 2010-05-21 16:42:40 +0200 | [diff] [blame] | 161 | .datasize = buffersize, |
Matthew Garrett | a8ec105 | 2010-08-23 15:52:34 -0400 | [diff] [blame] | 162 | .data = *buffer, |
Matthew Garrett | 62ec30d | 2008-07-25 01:45:39 -0700 | [diff] [blame] | 163 | }; |
| 164 | struct acpi_buffer input = { sizeof(struct bios_args), &args }; |
| 165 | struct acpi_buffer output = { ACPI_ALLOCATE_BUFFER, NULL }; |
| 166 | |
Anssi Hannula | 25bb067 | 2011-02-20 20:07:21 +0200 | [diff] [blame^] | 167 | wmi_evaluate_method(HPWMI_BIOS_GUID, 0, 0x3, &input, &output); |
Matthew Garrett | 62ec30d | 2008-07-25 01:45:39 -0700 | [diff] [blame] | 168 | |
| 169 | obj = output.pointer; |
| 170 | |
Thomas Renninger | 44ef00e | 2009-12-18 15:29:23 +0100 | [diff] [blame] | 171 | if (!obj) |
Matthew Garrett | 62ec30d | 2008-07-25 01:45:39 -0700 | [diff] [blame] | 172 | return -EINVAL; |
Thomas Renninger | 44ef00e | 2009-12-18 15:29:23 +0100 | [diff] [blame] | 173 | else if (obj->type != ACPI_TYPE_BUFFER) { |
| 174 | kfree(obj); |
| 175 | return -EINVAL; |
| 176 | } |
Matthew Garrett | 62ec30d | 2008-07-25 01:45:39 -0700 | [diff] [blame] | 177 | |
| 178 | bios_return = *((struct bios_return *)obj->buffer.pointer); |
Thomas Renninger | 6d96e00 | 2010-05-21 16:42:40 +0200 | [diff] [blame] | 179 | |
Anssi Hannula | 9af0e0f | 2011-02-20 20:07:20 +0200 | [diff] [blame] | 180 | if (bios_return.return_code) { |
| 181 | if (bios_return.return_code != HPWMI_RET_UNKNOWN_CMDTYPE) |
| 182 | printk(KERN_WARNING PREFIX "query 0x%x returned " |
| 183 | "error 0x%x\n", |
| 184 | query, bios_return.return_code); |
| 185 | kfree(obj); |
| 186 | return bios_return.return_code; |
| 187 | } |
| 188 | |
Matthew Garrett | a8ec105 | 2010-08-23 15:52:34 -0400 | [diff] [blame] | 189 | memcpy(buffer, &bios_return.value, sizeof(bios_return.value)); |
Zeng Zhaoming | 53c96df | 2010-11-19 00:46:19 +0800 | [diff] [blame] | 190 | |
| 191 | kfree(obj); |
Thomas Renninger | 6d96e00 | 2010-05-21 16:42:40 +0200 | [diff] [blame] | 192 | return 0; |
Matthew Garrett | 62ec30d | 2008-07-25 01:45:39 -0700 | [diff] [blame] | 193 | } |
| 194 | |
| 195 | static int hp_wmi_display_state(void) |
| 196 | { |
Matthew Garrett | a8ec105 | 2010-08-23 15:52:34 -0400 | [diff] [blame] | 197 | int state = 0; |
| 198 | int ret = hp_wmi_perform_query(HPWMI_DISPLAY_QUERY, 0, &state, |
Thomas Renninger | 6d96e00 | 2010-05-21 16:42:40 +0200 | [diff] [blame] | 199 | sizeof(state)); |
| 200 | if (ret) |
| 201 | return -EINVAL; |
| 202 | return state; |
Matthew Garrett | 62ec30d | 2008-07-25 01:45:39 -0700 | [diff] [blame] | 203 | } |
| 204 | |
| 205 | static int hp_wmi_hddtemp_state(void) |
| 206 | { |
Matthew Garrett | a8ec105 | 2010-08-23 15:52:34 -0400 | [diff] [blame] | 207 | int state = 0; |
| 208 | int ret = hp_wmi_perform_query(HPWMI_HDDTEMP_QUERY, 0, &state, |
Thomas Renninger | 6d96e00 | 2010-05-21 16:42:40 +0200 | [diff] [blame] | 209 | sizeof(state)); |
| 210 | if (ret) |
| 211 | return -EINVAL; |
| 212 | return state; |
Matthew Garrett | 62ec30d | 2008-07-25 01:45:39 -0700 | [diff] [blame] | 213 | } |
| 214 | |
| 215 | static int hp_wmi_als_state(void) |
| 216 | { |
Matthew Garrett | a8ec105 | 2010-08-23 15:52:34 -0400 | [diff] [blame] | 217 | int state = 0; |
| 218 | int ret = hp_wmi_perform_query(HPWMI_ALS_QUERY, 0, &state, |
Thomas Renninger | 6d96e00 | 2010-05-21 16:42:40 +0200 | [diff] [blame] | 219 | sizeof(state)); |
| 220 | if (ret) |
| 221 | return -EINVAL; |
| 222 | return state; |
Matthew Garrett | 62ec30d | 2008-07-25 01:45:39 -0700 | [diff] [blame] | 223 | } |
| 224 | |
| 225 | static int hp_wmi_dock_state(void) |
| 226 | { |
Matthew Garrett | a8ec105 | 2010-08-23 15:52:34 -0400 | [diff] [blame] | 227 | int state = 0; |
| 228 | int ret = hp_wmi_perform_query(HPWMI_HARDWARE_QUERY, 0, &state, |
Thomas Renninger | 6d96e00 | 2010-05-21 16:42:40 +0200 | [diff] [blame] | 229 | sizeof(state)); |
Matthew Garrett | 871043b | 2009-06-01 15:25:45 +0100 | [diff] [blame] | 230 | |
Thomas Renninger | 6d96e00 | 2010-05-21 16:42:40 +0200 | [diff] [blame] | 231 | if (ret) |
| 232 | return -EINVAL; |
Matthew Garrett | 871043b | 2009-06-01 15:25:45 +0100 | [diff] [blame] | 233 | |
Thomas Renninger | 6d96e00 | 2010-05-21 16:42:40 +0200 | [diff] [blame] | 234 | return state & 0x1; |
Matthew Garrett | 62ec30d | 2008-07-25 01:45:39 -0700 | [diff] [blame] | 235 | } |
| 236 | |
Matthew Garrett | 871043b | 2009-06-01 15:25:45 +0100 | [diff] [blame] | 237 | static int hp_wmi_tablet_state(void) |
Matthew Garrett | 62ec30d | 2008-07-25 01:45:39 -0700 | [diff] [blame] | 238 | { |
Matthew Garrett | a8ec105 | 2010-08-23 15:52:34 -0400 | [diff] [blame] | 239 | int state = 0; |
| 240 | int ret = hp_wmi_perform_query(HPWMI_HARDWARE_QUERY, 0, &state, |
Thomas Renninger | 6d96e00 | 2010-05-21 16:42:40 +0200 | [diff] [blame] | 241 | sizeof(state)); |
| 242 | if (ret) |
Matthew Garrett | 871043b | 2009-06-01 15:25:45 +0100 | [diff] [blame] | 243 | return ret; |
| 244 | |
Thomas Renninger | 6d96e00 | 2010-05-21 16:42:40 +0200 | [diff] [blame] | 245 | return (state & 0x4) ? 1 : 0; |
Matthew Garrett | 62ec30d | 2008-07-25 01:45:39 -0700 | [diff] [blame] | 246 | } |
| 247 | |
Johannes Berg | 19d337d | 2009-06-02 13:01:37 +0200 | [diff] [blame] | 248 | static int hp_wmi_set_block(void *data, bool blocked) |
Matthew Garrett | 62ec30d | 2008-07-25 01:45:39 -0700 | [diff] [blame] | 249 | { |
Alan Jenkins | e5fbba8 | 2009-07-21 12:14:01 +0100 | [diff] [blame] | 250 | enum hp_wmi_radio r = (enum hp_wmi_radio) data; |
| 251 | int query = BIT(r + 8) | ((!blocked) << r); |
Thomas Renninger | 6d96e00 | 2010-05-21 16:42:40 +0200 | [diff] [blame] | 252 | int ret; |
Johannes Berg | 19d337d | 2009-06-02 13:01:37 +0200 | [diff] [blame] | 253 | |
Thomas Renninger | 6d96e00 | 2010-05-21 16:42:40 +0200 | [diff] [blame] | 254 | ret = hp_wmi_perform_query(HPWMI_WIRELESS_QUERY, 1, |
Matthew Garrett | a8ec105 | 2010-08-23 15:52:34 -0400 | [diff] [blame] | 255 | &query, sizeof(query)); |
Thomas Renninger | 6d96e00 | 2010-05-21 16:42:40 +0200 | [diff] [blame] | 256 | if (ret) |
| 257 | return -EINVAL; |
| 258 | return 0; |
Matthew Garrett | 62ec30d | 2008-07-25 01:45:39 -0700 | [diff] [blame] | 259 | } |
| 260 | |
Johannes Berg | 19d337d | 2009-06-02 13:01:37 +0200 | [diff] [blame] | 261 | static const struct rfkill_ops hp_wmi_rfkill_ops = { |
| 262 | .set_block = hp_wmi_set_block, |
| 263 | }; |
Matthew Garrett | 62ec30d | 2008-07-25 01:45:39 -0700 | [diff] [blame] | 264 | |
Alan Jenkins | e5fbba8 | 2009-07-21 12:14:01 +0100 | [diff] [blame] | 265 | static bool hp_wmi_get_sw_state(enum hp_wmi_radio r) |
Matthew Garrett | 62ec30d | 2008-07-25 01:45:39 -0700 | [diff] [blame] | 266 | { |
Matthew Garrett | a8ec105 | 2010-08-23 15:52:34 -0400 | [diff] [blame] | 267 | int wireless = 0; |
Thomas Renninger | 6d96e00 | 2010-05-21 16:42:40 +0200 | [diff] [blame] | 268 | int mask; |
| 269 | hp_wmi_perform_query(HPWMI_WIRELESS_QUERY, 0, |
Matthew Garrett | a8ec105 | 2010-08-23 15:52:34 -0400 | [diff] [blame] | 270 | &wireless, sizeof(wireless)); |
Thomas Renninger | 6d96e00 | 2010-05-21 16:42:40 +0200 | [diff] [blame] | 271 | /* TBD: Pass error */ |
| 272 | |
| 273 | mask = 0x200 << (r * 8); |
Matthew Garrett | 62ec30d | 2008-07-25 01:45:39 -0700 | [diff] [blame] | 274 | |
Alan Jenkins | e5fbba8 | 2009-07-21 12:14:01 +0100 | [diff] [blame] | 275 | if (wireless & mask) |
Johannes Berg | 19d337d | 2009-06-02 13:01:37 +0200 | [diff] [blame] | 276 | return false; |
Matthew Garrett | 62ec30d | 2008-07-25 01:45:39 -0700 | [diff] [blame] | 277 | else |
Johannes Berg | 19d337d | 2009-06-02 13:01:37 +0200 | [diff] [blame] | 278 | return true; |
Matthew Garrett | 62ec30d | 2008-07-25 01:45:39 -0700 | [diff] [blame] | 279 | } |
| 280 | |
Alan Jenkins | e5fbba8 | 2009-07-21 12:14:01 +0100 | [diff] [blame] | 281 | static bool hp_wmi_get_hw_state(enum hp_wmi_radio r) |
Matthew Garrett | 62ec30d | 2008-07-25 01:45:39 -0700 | [diff] [blame] | 282 | { |
Matthew Garrett | a8ec105 | 2010-08-23 15:52:34 -0400 | [diff] [blame] | 283 | int wireless = 0; |
Thomas Renninger | 6d96e00 | 2010-05-21 16:42:40 +0200 | [diff] [blame] | 284 | int mask; |
| 285 | hp_wmi_perform_query(HPWMI_WIRELESS_QUERY, 0, |
Matthew Garrett | a8ec105 | 2010-08-23 15:52:34 -0400 | [diff] [blame] | 286 | &wireless, sizeof(wireless)); |
Thomas Renninger | 6d96e00 | 2010-05-21 16:42:40 +0200 | [diff] [blame] | 287 | /* TBD: Pass error */ |
| 288 | |
| 289 | mask = 0x800 << (r * 8); |
Matthew Garrett | 62ec30d | 2008-07-25 01:45:39 -0700 | [diff] [blame] | 290 | |
Alan Jenkins | e5fbba8 | 2009-07-21 12:14:01 +0100 | [diff] [blame] | 291 | if (wireless & mask) |
Johannes Berg | 19d337d | 2009-06-02 13:01:37 +0200 | [diff] [blame] | 292 | return false; |
Matthew Garrett | 62ec30d | 2008-07-25 01:45:39 -0700 | [diff] [blame] | 293 | else |
Johannes Berg | 19d337d | 2009-06-02 13:01:37 +0200 | [diff] [blame] | 294 | return true; |
Matthew Garrett | 62ec30d | 2008-07-25 01:45:39 -0700 | [diff] [blame] | 295 | } |
| 296 | |
| 297 | static ssize_t show_display(struct device *dev, struct device_attribute *attr, |
| 298 | char *buf) |
| 299 | { |
| 300 | int value = hp_wmi_display_state(); |
| 301 | if (value < 0) |
| 302 | return -EINVAL; |
| 303 | return sprintf(buf, "%d\n", value); |
| 304 | } |
| 305 | |
| 306 | static ssize_t show_hddtemp(struct device *dev, struct device_attribute *attr, |
| 307 | char *buf) |
| 308 | { |
| 309 | int value = hp_wmi_hddtemp_state(); |
| 310 | if (value < 0) |
| 311 | return -EINVAL; |
| 312 | return sprintf(buf, "%d\n", value); |
| 313 | } |
| 314 | |
| 315 | static ssize_t show_als(struct device *dev, struct device_attribute *attr, |
| 316 | char *buf) |
| 317 | { |
| 318 | int value = hp_wmi_als_state(); |
| 319 | if (value < 0) |
| 320 | return -EINVAL; |
| 321 | return sprintf(buf, "%d\n", value); |
| 322 | } |
| 323 | |
| 324 | static ssize_t show_dock(struct device *dev, struct device_attribute *attr, |
| 325 | char *buf) |
| 326 | { |
| 327 | int value = hp_wmi_dock_state(); |
| 328 | if (value < 0) |
| 329 | return -EINVAL; |
| 330 | return sprintf(buf, "%d\n", value); |
| 331 | } |
| 332 | |
Matthew Garrett | 871043b | 2009-06-01 15:25:45 +0100 | [diff] [blame] | 333 | static ssize_t show_tablet(struct device *dev, struct device_attribute *attr, |
| 334 | char *buf) |
| 335 | { |
| 336 | int value = hp_wmi_tablet_state(); |
| 337 | if (value < 0) |
| 338 | return -EINVAL; |
| 339 | return sprintf(buf, "%d\n", value); |
| 340 | } |
| 341 | |
Matthew Garrett | 62ec30d | 2008-07-25 01:45:39 -0700 | [diff] [blame] | 342 | static ssize_t set_als(struct device *dev, struct device_attribute *attr, |
| 343 | const char *buf, size_t count) |
| 344 | { |
| 345 | u32 tmp = simple_strtoul(buf, NULL, 10); |
Matthew Garrett | a8ec105 | 2010-08-23 15:52:34 -0400 | [diff] [blame] | 346 | int ret = hp_wmi_perform_query(HPWMI_ALS_QUERY, 1, &tmp, |
Thomas Renninger | 6d96e00 | 2010-05-21 16:42:40 +0200 | [diff] [blame] | 347 | sizeof(tmp)); |
| 348 | if (ret) |
| 349 | return -EINVAL; |
| 350 | |
Matthew Garrett | 62ec30d | 2008-07-25 01:45:39 -0700 | [diff] [blame] | 351 | return count; |
| 352 | } |
| 353 | |
| 354 | static DEVICE_ATTR(display, S_IRUGO, show_display, NULL); |
| 355 | static DEVICE_ATTR(hddtemp, S_IRUGO, show_hddtemp, NULL); |
| 356 | static DEVICE_ATTR(als, S_IRUGO | S_IWUSR, show_als, set_als); |
| 357 | static DEVICE_ATTR(dock, S_IRUGO, show_dock, NULL); |
Matthew Garrett | 871043b | 2009-06-01 15:25:45 +0100 | [diff] [blame] | 358 | static DEVICE_ATTR(tablet, S_IRUGO, show_tablet, NULL); |
Matthew Garrett | 62ec30d | 2008-07-25 01:45:39 -0700 | [diff] [blame] | 359 | |
Adrian Bunk | 88429a1 | 2008-10-15 22:05:17 -0700 | [diff] [blame] | 360 | static void hp_wmi_notify(u32 value, void *context) |
Matthew Garrett | 62ec30d | 2008-07-25 01:45:39 -0700 | [diff] [blame] | 361 | { |
| 362 | struct acpi_buffer response = { ACPI_ALLOCATE_BUFFER, NULL }; |
Matthew Garrett | 62ec30d | 2008-07-25 01:45:39 -0700 | [diff] [blame] | 363 | union acpi_object *obj; |
Thomas Renninger | 8dda6b0 | 2010-05-21 16:41:43 +0200 | [diff] [blame] | 364 | u32 event_id, event_data; |
Matthew Garrett | a8ec105 | 2010-08-23 15:52:34 -0400 | [diff] [blame] | 365 | int key_code = 0, ret; |
Thomas Renninger | 8dda6b0 | 2010-05-21 16:41:43 +0200 | [diff] [blame] | 366 | u32 *location; |
Len Brown | fda11e6 | 2009-12-26 23:02:24 -0500 | [diff] [blame] | 367 | acpi_status status; |
Matthew Garrett | 62ec30d | 2008-07-25 01:45:39 -0700 | [diff] [blame] | 368 | |
Len Brown | fda11e6 | 2009-12-26 23:02:24 -0500 | [diff] [blame] | 369 | status = wmi_get_event_data(value, &response); |
| 370 | if (status != AE_OK) { |
Thomas Renninger | a2806c6 | 2010-05-21 16:18:11 +0200 | [diff] [blame] | 371 | printk(KERN_INFO PREFIX "bad event status 0x%x\n", status); |
Len Brown | fda11e6 | 2009-12-26 23:02:24 -0500 | [diff] [blame] | 372 | return; |
| 373 | } |
Matthew Garrett | 62ec30d | 2008-07-25 01:45:39 -0700 | [diff] [blame] | 374 | |
| 375 | obj = (union acpi_object *)response.pointer; |
| 376 | |
Thomas Renninger | c477506 | 2010-07-29 12:27:59 +0200 | [diff] [blame] | 377 | if (!obj) |
| 378 | return; |
| 379 | if (obj->type != ACPI_TYPE_BUFFER) { |
Thomas Renninger | 8dda6b0 | 2010-05-21 16:41:43 +0200 | [diff] [blame] | 380 | printk(KERN_INFO "hp-wmi: Unknown response received %d\n", |
| 381 | obj->type); |
Thomas Renninger | 44ef00e | 2009-12-18 15:29:23 +0100 | [diff] [blame] | 382 | kfree(obj); |
Alan Jenkins | e5fbba8 | 2009-07-21 12:14:01 +0100 | [diff] [blame] | 383 | return; |
| 384 | } |
| 385 | |
Thomas Renninger | 8dda6b0 | 2010-05-21 16:41:43 +0200 | [diff] [blame] | 386 | /* |
| 387 | * Depending on ACPI version the concatenation of id and event data |
| 388 | * inside _WED function will result in a 8 or 16 byte buffer. |
| 389 | */ |
| 390 | location = (u32 *)obj->buffer.pointer; |
| 391 | if (obj->buffer.length == 8) { |
| 392 | event_id = *location; |
| 393 | event_data = *(location + 1); |
| 394 | } else if (obj->buffer.length == 16) { |
| 395 | event_id = *location; |
| 396 | event_data = *(location + 2); |
| 397 | } else { |
| 398 | printk(KERN_INFO "hp-wmi: Unknown buffer length %d\n", |
| 399 | obj->buffer.length); |
| 400 | kfree(obj); |
| 401 | return; |
| 402 | } |
Thomas Renninger | 44ef00e | 2009-12-18 15:29:23 +0100 | [diff] [blame] | 403 | kfree(obj); |
Thomas Renninger | 8dda6b0 | 2010-05-21 16:41:43 +0200 | [diff] [blame] | 404 | |
| 405 | switch (event_id) { |
Thomas Renninger | 751ae80 | 2010-05-21 16:18:09 +0200 | [diff] [blame] | 406 | case HPWMI_DOCK_EVENT: |
Alan Jenkins | e5fbba8 | 2009-07-21 12:14:01 +0100 | [diff] [blame] | 407 | input_report_switch(hp_wmi_input_dev, SW_DOCK, |
| 408 | hp_wmi_dock_state()); |
| 409 | input_report_switch(hp_wmi_input_dev, SW_TABLET_MODE, |
| 410 | hp_wmi_tablet_state()); |
| 411 | input_sync(hp_wmi_input_dev); |
Thomas Renninger | 751ae80 | 2010-05-21 16:18:09 +0200 | [diff] [blame] | 412 | break; |
Thomas Renninger | 1bbdfd5 | 2010-05-21 16:18:13 +0200 | [diff] [blame] | 413 | case HPWMI_PARK_HDD: |
| 414 | break; |
| 415 | case HPWMI_SMART_ADAPTER: |
| 416 | break; |
Thomas Renninger | 751ae80 | 2010-05-21 16:18:09 +0200 | [diff] [blame] | 417 | case HPWMI_BEZEL_BUTTON: |
Thomas Renninger | 6d96e00 | 2010-05-21 16:42:40 +0200 | [diff] [blame] | 418 | ret = hp_wmi_perform_query(HPWMI_HOTKEY_QUERY, 0, |
Matthew Garrett | a8ec105 | 2010-08-23 15:52:34 -0400 | [diff] [blame] | 419 | &key_code, |
Thomas Renninger | 6d96e00 | 2010-05-21 16:42:40 +0200 | [diff] [blame] | 420 | sizeof(key_code)); |
| 421 | if (ret) |
| 422 | break; |
Dmitry Torokhov | 4d291ed | 2010-08-04 22:30:13 -0700 | [diff] [blame] | 423 | |
| 424 | if (!sparse_keymap_report_event(hp_wmi_input_dev, |
| 425 | key_code, 1, true)) |
Thomas Renninger | a2806c6 | 2010-05-21 16:18:11 +0200 | [diff] [blame] | 426 | printk(KERN_INFO PREFIX "Unknown key code - 0x%x\n", |
Thomas Renninger | da9a79b | 2010-05-21 16:18:10 +0200 | [diff] [blame] | 427 | key_code); |
Thomas Renninger | 751ae80 | 2010-05-21 16:18:09 +0200 | [diff] [blame] | 428 | break; |
| 429 | case HPWMI_WIRELESS: |
Alan Jenkins | e5fbba8 | 2009-07-21 12:14:01 +0100 | [diff] [blame] | 430 | if (wifi_rfkill) |
| 431 | rfkill_set_states(wifi_rfkill, |
| 432 | hp_wmi_get_sw_state(HPWMI_WIFI), |
| 433 | hp_wmi_get_hw_state(HPWMI_WIFI)); |
| 434 | if (bluetooth_rfkill) |
| 435 | rfkill_set_states(bluetooth_rfkill, |
| 436 | hp_wmi_get_sw_state(HPWMI_BLUETOOTH), |
| 437 | hp_wmi_get_hw_state(HPWMI_BLUETOOTH)); |
| 438 | if (wwan_rfkill) |
| 439 | rfkill_set_states(wwan_rfkill, |
| 440 | hp_wmi_get_sw_state(HPWMI_WWAN), |
| 441 | hp_wmi_get_hw_state(HPWMI_WWAN)); |
Thomas Renninger | 751ae80 | 2010-05-21 16:18:09 +0200 | [diff] [blame] | 442 | break; |
Thomas Renninger | 1bbdfd5 | 2010-05-21 16:18:13 +0200 | [diff] [blame] | 443 | case HPWMI_CPU_BATTERY_THROTTLE: |
| 444 | printk(KERN_INFO PREFIX UNIMP "CPU throttle because of 3 Cell" |
| 445 | " battery event detected\n"); |
| 446 | break; |
| 447 | case HPWMI_LOCK_SWITCH: |
| 448 | break; |
Thomas Renninger | 751ae80 | 2010-05-21 16:18:09 +0200 | [diff] [blame] | 449 | default: |
Thomas Renninger | 8dda6b0 | 2010-05-21 16:41:43 +0200 | [diff] [blame] | 450 | printk(KERN_INFO PREFIX "Unknown event_id - %d - 0x%x\n", |
| 451 | event_id, event_data); |
Thomas Renninger | 751ae80 | 2010-05-21 16:18:09 +0200 | [diff] [blame] | 452 | break; |
| 453 | } |
Matthew Garrett | 62ec30d | 2008-07-25 01:45:39 -0700 | [diff] [blame] | 454 | } |
| 455 | |
| 456 | static int __init hp_wmi_input_setup(void) |
| 457 | { |
Dmitry Torokhov | 4d291ed | 2010-08-04 22:30:13 -0700 | [diff] [blame] | 458 | acpi_status status; |
Matthew Garrett | 62ec30d | 2008-07-25 01:45:39 -0700 | [diff] [blame] | 459 | int err; |
| 460 | |
| 461 | hp_wmi_input_dev = input_allocate_device(); |
Axel Lin | bc28596 | 2010-07-20 15:19:51 -0700 | [diff] [blame] | 462 | if (!hp_wmi_input_dev) |
| 463 | return -ENOMEM; |
Matthew Garrett | 62ec30d | 2008-07-25 01:45:39 -0700 | [diff] [blame] | 464 | |
| 465 | hp_wmi_input_dev->name = "HP WMI hotkeys"; |
| 466 | hp_wmi_input_dev->phys = "wmi/input0"; |
| 467 | hp_wmi_input_dev->id.bustype = BUS_HOST; |
Matthew Garrett | 62ec30d | 2008-07-25 01:45:39 -0700 | [diff] [blame] | 468 | |
Dmitry Torokhov | 4d291ed | 2010-08-04 22:30:13 -0700 | [diff] [blame] | 469 | __set_bit(EV_SW, hp_wmi_input_dev->evbit); |
| 470 | __set_bit(SW_DOCK, hp_wmi_input_dev->swbit); |
| 471 | __set_bit(SW_TABLET_MODE, hp_wmi_input_dev->swbit); |
Matthew Garrett | 62ec30d | 2008-07-25 01:45:39 -0700 | [diff] [blame] | 472 | |
Dmitry Torokhov | 4d291ed | 2010-08-04 22:30:13 -0700 | [diff] [blame] | 473 | err = sparse_keymap_setup(hp_wmi_input_dev, hp_wmi_keymap, NULL); |
| 474 | if (err) |
| 475 | goto err_free_dev; |
Matthew Garrett | 871043b | 2009-06-01 15:25:45 +0100 | [diff] [blame] | 476 | |
| 477 | /* Set initial hardware state */ |
| 478 | input_report_switch(hp_wmi_input_dev, SW_DOCK, hp_wmi_dock_state()); |
| 479 | input_report_switch(hp_wmi_input_dev, SW_TABLET_MODE, |
| 480 | hp_wmi_tablet_state()); |
| 481 | input_sync(hp_wmi_input_dev); |
| 482 | |
Dmitry Torokhov | 4d291ed | 2010-08-04 22:30:13 -0700 | [diff] [blame] | 483 | status = wmi_install_notify_handler(HPWMI_EVENT_GUID, hp_wmi_notify, NULL); |
| 484 | if (ACPI_FAILURE(status)) { |
| 485 | err = -EIO; |
| 486 | goto err_free_keymap; |
Matthew Garrett | 62ec30d | 2008-07-25 01:45:39 -0700 | [diff] [blame] | 487 | } |
| 488 | |
Dmitry Torokhov | 4d291ed | 2010-08-04 22:30:13 -0700 | [diff] [blame] | 489 | err = input_register_device(hp_wmi_input_dev); |
| 490 | if (err) |
| 491 | goto err_uninstall_notifier; |
| 492 | |
Matthew Garrett | 62ec30d | 2008-07-25 01:45:39 -0700 | [diff] [blame] | 493 | return 0; |
Dmitry Torokhov | 4d291ed | 2010-08-04 22:30:13 -0700 | [diff] [blame] | 494 | |
| 495 | err_uninstall_notifier: |
| 496 | wmi_remove_notify_handler(HPWMI_EVENT_GUID); |
| 497 | err_free_keymap: |
| 498 | sparse_keymap_free(hp_wmi_input_dev); |
| 499 | err_free_dev: |
| 500 | input_free_device(hp_wmi_input_dev); |
| 501 | return err; |
| 502 | } |
| 503 | |
| 504 | static void hp_wmi_input_destroy(void) |
| 505 | { |
| 506 | wmi_remove_notify_handler(HPWMI_EVENT_GUID); |
| 507 | sparse_keymap_free(hp_wmi_input_dev); |
| 508 | input_unregister_device(hp_wmi_input_dev); |
Matthew Garrett | 62ec30d | 2008-07-25 01:45:39 -0700 | [diff] [blame] | 509 | } |
| 510 | |
| 511 | static void cleanup_sysfs(struct platform_device *device) |
| 512 | { |
| 513 | device_remove_file(&device->dev, &dev_attr_display); |
| 514 | device_remove_file(&device->dev, &dev_attr_hddtemp); |
| 515 | device_remove_file(&device->dev, &dev_attr_als); |
| 516 | device_remove_file(&device->dev, &dev_attr_dock); |
Matthew Garrett | 871043b | 2009-06-01 15:25:45 +0100 | [diff] [blame] | 517 | device_remove_file(&device->dev, &dev_attr_tablet); |
Matthew Garrett | 62ec30d | 2008-07-25 01:45:39 -0700 | [diff] [blame] | 518 | } |
| 519 | |
Uwe Kleine-König | ea79632 | 2010-02-04 20:56:52 +0100 | [diff] [blame] | 520 | static int __devinit hp_wmi_bios_setup(struct platform_device *device) |
Matthew Garrett | 62ec30d | 2008-07-25 01:45:39 -0700 | [diff] [blame] | 521 | { |
| 522 | int err; |
Matthew Garrett | a8ec105 | 2010-08-23 15:52:34 -0400 | [diff] [blame] | 523 | int wireless = 0; |
Thomas Renninger | 6d96e00 | 2010-05-21 16:42:40 +0200 | [diff] [blame] | 524 | |
Matthew Garrett | a8ec105 | 2010-08-23 15:52:34 -0400 | [diff] [blame] | 525 | err = hp_wmi_perform_query(HPWMI_WIRELESS_QUERY, 0, &wireless, |
Thomas Renninger | 6d96e00 | 2010-05-21 16:42:40 +0200 | [diff] [blame] | 526 | sizeof(wireless)); |
| 527 | if (err) |
| 528 | return err; |
Matthew Garrett | 62ec30d | 2008-07-25 01:45:39 -0700 | [diff] [blame] | 529 | |
| 530 | err = device_create_file(&device->dev, &dev_attr_display); |
| 531 | if (err) |
| 532 | goto add_sysfs_error; |
| 533 | err = device_create_file(&device->dev, &dev_attr_hddtemp); |
| 534 | if (err) |
| 535 | goto add_sysfs_error; |
| 536 | err = device_create_file(&device->dev, &dev_attr_als); |
| 537 | if (err) |
| 538 | goto add_sysfs_error; |
| 539 | err = device_create_file(&device->dev, &dev_attr_dock); |
| 540 | if (err) |
| 541 | goto add_sysfs_error; |
Matthew Garrett | 871043b | 2009-06-01 15:25:45 +0100 | [diff] [blame] | 542 | err = device_create_file(&device->dev, &dev_attr_tablet); |
| 543 | if (err) |
| 544 | goto add_sysfs_error; |
Matthew Garrett | 62ec30d | 2008-07-25 01:45:39 -0700 | [diff] [blame] | 545 | |
Matthew Garrett | 3f6e2f1 | 2008-09-02 14:36:00 -0700 | [diff] [blame] | 546 | if (wireless & 0x1) { |
Johannes Berg | 19d337d | 2009-06-02 13:01:37 +0200 | [diff] [blame] | 547 | wifi_rfkill = rfkill_alloc("hp-wifi", &device->dev, |
| 548 | RFKILL_TYPE_WLAN, |
| 549 | &hp_wmi_rfkill_ops, |
Alan Jenkins | e5fbba8 | 2009-07-21 12:14:01 +0100 | [diff] [blame] | 550 | (void *) HPWMI_WIFI); |
| 551 | rfkill_init_sw_state(wifi_rfkill, |
| 552 | hp_wmi_get_sw_state(HPWMI_WIFI)); |
| 553 | rfkill_set_hw_state(wifi_rfkill, |
| 554 | hp_wmi_get_hw_state(HPWMI_WIFI)); |
Larry Finger | fe8e4e0 | 2009-01-09 16:40:54 -0800 | [diff] [blame] | 555 | err = rfkill_register(wifi_rfkill); |
| 556 | if (err) |
Johannes Berg | 19d337d | 2009-06-02 13:01:37 +0200 | [diff] [blame] | 557 | goto register_wifi_error; |
Matthew Garrett | 3f6e2f1 | 2008-09-02 14:36:00 -0700 | [diff] [blame] | 558 | } |
Matthew Garrett | 62ec30d | 2008-07-25 01:45:39 -0700 | [diff] [blame] | 559 | |
Matthew Garrett | 3f6e2f1 | 2008-09-02 14:36:00 -0700 | [diff] [blame] | 560 | if (wireless & 0x2) { |
Johannes Berg | 19d337d | 2009-06-02 13:01:37 +0200 | [diff] [blame] | 561 | bluetooth_rfkill = rfkill_alloc("hp-bluetooth", &device->dev, |
| 562 | RFKILL_TYPE_BLUETOOTH, |
| 563 | &hp_wmi_rfkill_ops, |
Alan Jenkins | e5fbba8 | 2009-07-21 12:14:01 +0100 | [diff] [blame] | 564 | (void *) HPWMI_BLUETOOTH); |
| 565 | rfkill_init_sw_state(bluetooth_rfkill, |
| 566 | hp_wmi_get_sw_state(HPWMI_BLUETOOTH)); |
| 567 | rfkill_set_hw_state(bluetooth_rfkill, |
| 568 | hp_wmi_get_hw_state(HPWMI_BLUETOOTH)); |
Larry Finger | fe8e4e0 | 2009-01-09 16:40:54 -0800 | [diff] [blame] | 569 | err = rfkill_register(bluetooth_rfkill); |
Frans Pop | 6989d56 | 2009-01-29 14:25:14 -0800 | [diff] [blame] | 570 | if (err) |
Larry Finger | fe8e4e0 | 2009-01-09 16:40:54 -0800 | [diff] [blame] | 571 | goto register_bluetooth_error; |
Matthew Garrett | 3f6e2f1 | 2008-09-02 14:36:00 -0700 | [diff] [blame] | 572 | } |
Matthew Garrett | 62ec30d | 2008-07-25 01:45:39 -0700 | [diff] [blame] | 573 | |
Matthew Garrett | 3f6e2f1 | 2008-09-02 14:36:00 -0700 | [diff] [blame] | 574 | if (wireless & 0x4) { |
Johannes Berg | 19d337d | 2009-06-02 13:01:37 +0200 | [diff] [blame] | 575 | wwan_rfkill = rfkill_alloc("hp-wwan", &device->dev, |
| 576 | RFKILL_TYPE_WWAN, |
| 577 | &hp_wmi_rfkill_ops, |
Alan Jenkins | e5fbba8 | 2009-07-21 12:14:01 +0100 | [diff] [blame] | 578 | (void *) HPWMI_WWAN); |
| 579 | rfkill_init_sw_state(wwan_rfkill, |
| 580 | hp_wmi_get_sw_state(HPWMI_WWAN)); |
| 581 | rfkill_set_hw_state(wwan_rfkill, |
| 582 | hp_wmi_get_hw_state(HPWMI_WWAN)); |
Larry Finger | fe8e4e0 | 2009-01-09 16:40:54 -0800 | [diff] [blame] | 583 | err = rfkill_register(wwan_rfkill); |
| 584 | if (err) |
| 585 | goto register_wwan_err; |
Matthew Garrett | 3f6e2f1 | 2008-09-02 14:36:00 -0700 | [diff] [blame] | 586 | } |
Matthew Garrett | 62ec30d | 2008-07-25 01:45:39 -0700 | [diff] [blame] | 587 | |
| 588 | return 0; |
Larry Finger | fe8e4e0 | 2009-01-09 16:40:54 -0800 | [diff] [blame] | 589 | register_wwan_err: |
Johannes Berg | 19d337d | 2009-06-02 13:01:37 +0200 | [diff] [blame] | 590 | rfkill_destroy(wwan_rfkill); |
Andrew Morton | 44f0606 | 2009-02-04 15:12:07 -0800 | [diff] [blame] | 591 | if (bluetooth_rfkill) |
| 592 | rfkill_unregister(bluetooth_rfkill); |
Larry Finger | fe8e4e0 | 2009-01-09 16:40:54 -0800 | [diff] [blame] | 593 | register_bluetooth_error: |
Johannes Berg | 19d337d | 2009-06-02 13:01:37 +0200 | [diff] [blame] | 594 | rfkill_destroy(bluetooth_rfkill); |
Andrew Morton | 44f0606 | 2009-02-04 15:12:07 -0800 | [diff] [blame] | 595 | if (wifi_rfkill) |
| 596 | rfkill_unregister(wifi_rfkill); |
Johannes Berg | 19d337d | 2009-06-02 13:01:37 +0200 | [diff] [blame] | 597 | register_wifi_error: |
| 598 | rfkill_destroy(wifi_rfkill); |
Matthew Garrett | 62ec30d | 2008-07-25 01:45:39 -0700 | [diff] [blame] | 599 | add_sysfs_error: |
| 600 | cleanup_sysfs(device); |
| 601 | return err; |
| 602 | } |
| 603 | |
| 604 | static int __exit hp_wmi_bios_remove(struct platform_device *device) |
| 605 | { |
| 606 | cleanup_sysfs(device); |
| 607 | |
Johannes Berg | 19d337d | 2009-06-02 13:01:37 +0200 | [diff] [blame] | 608 | if (wifi_rfkill) { |
Matthew Garrett | 3f6e2f1 | 2008-09-02 14:36:00 -0700 | [diff] [blame] | 609 | rfkill_unregister(wifi_rfkill); |
Johannes Berg | 19d337d | 2009-06-02 13:01:37 +0200 | [diff] [blame] | 610 | rfkill_destroy(wifi_rfkill); |
| 611 | } |
| 612 | if (bluetooth_rfkill) { |
Matthew Garrett | 3f6e2f1 | 2008-09-02 14:36:00 -0700 | [diff] [blame] | 613 | rfkill_unregister(bluetooth_rfkill); |
Corentin Chary | 09729f0 | 2009-09-14 12:43:51 +0200 | [diff] [blame] | 614 | rfkill_destroy(bluetooth_rfkill); |
Johannes Berg | 19d337d | 2009-06-02 13:01:37 +0200 | [diff] [blame] | 615 | } |
| 616 | if (wwan_rfkill) { |
Matthew Garrett | 3f6e2f1 | 2008-09-02 14:36:00 -0700 | [diff] [blame] | 617 | rfkill_unregister(wwan_rfkill); |
Johannes Berg | 19d337d | 2009-06-02 13:01:37 +0200 | [diff] [blame] | 618 | rfkill_destroy(wwan_rfkill); |
| 619 | } |
Matthew Garrett | 62ec30d | 2008-07-25 01:45:39 -0700 | [diff] [blame] | 620 | |
| 621 | return 0; |
| 622 | } |
| 623 | |
Frans Pop | 8dd2b42 | 2009-08-20 20:38:13 +0200 | [diff] [blame] | 624 | static int hp_wmi_resume_handler(struct device *device) |
Frans Pop | 4c395bd | 2009-03-04 11:55:28 -0800 | [diff] [blame] | 625 | { |
Frans Pop | 4c395bd | 2009-03-04 11:55:28 -0800 | [diff] [blame] | 626 | /* |
Matthew Garrett | 871043b | 2009-06-01 15:25:45 +0100 | [diff] [blame] | 627 | * Hardware state may have changed while suspended, so trigger |
| 628 | * input events for the current state. As this is a switch, |
Frans Pop | 4c395bd | 2009-03-04 11:55:28 -0800 | [diff] [blame] | 629 | * the input layer will only actually pass it on if the state |
| 630 | * changed. |
| 631 | */ |
Frans Pop | daed953 | 2009-07-30 17:16:05 -0400 | [diff] [blame] | 632 | if (hp_wmi_input_dev) { |
| 633 | input_report_switch(hp_wmi_input_dev, SW_DOCK, |
| 634 | hp_wmi_dock_state()); |
| 635 | input_report_switch(hp_wmi_input_dev, SW_TABLET_MODE, |
| 636 | hp_wmi_tablet_state()); |
| 637 | input_sync(hp_wmi_input_dev); |
| 638 | } |
Frans Pop | 4c395bd | 2009-03-04 11:55:28 -0800 | [diff] [blame] | 639 | |
Alan Jenkins | e5fbba8 | 2009-07-21 12:14:01 +0100 | [diff] [blame] | 640 | if (wifi_rfkill) |
| 641 | rfkill_set_states(wifi_rfkill, |
| 642 | hp_wmi_get_sw_state(HPWMI_WIFI), |
| 643 | hp_wmi_get_hw_state(HPWMI_WIFI)); |
| 644 | if (bluetooth_rfkill) |
| 645 | rfkill_set_states(bluetooth_rfkill, |
| 646 | hp_wmi_get_sw_state(HPWMI_BLUETOOTH), |
| 647 | hp_wmi_get_hw_state(HPWMI_BLUETOOTH)); |
| 648 | if (wwan_rfkill) |
| 649 | rfkill_set_states(wwan_rfkill, |
| 650 | hp_wmi_get_sw_state(HPWMI_WWAN), |
| 651 | hp_wmi_get_hw_state(HPWMI_WWAN)); |
| 652 | |
Frans Pop | 4c395bd | 2009-03-04 11:55:28 -0800 | [diff] [blame] | 653 | return 0; |
| 654 | } |
| 655 | |
Matthew Garrett | 62ec30d | 2008-07-25 01:45:39 -0700 | [diff] [blame] | 656 | static int __init hp_wmi_init(void) |
| 657 | { |
| 658 | int err; |
Thomas Renninger | b096667 | 2010-07-20 15:19:29 -0700 | [diff] [blame] | 659 | int event_capable = wmi_has_guid(HPWMI_EVENT_GUID); |
| 660 | int bios_capable = wmi_has_guid(HPWMI_BIOS_GUID); |
Matthew Garrett | 62ec30d | 2008-07-25 01:45:39 -0700 | [diff] [blame] | 661 | |
Thomas Renninger | b096667 | 2010-07-20 15:19:29 -0700 | [diff] [blame] | 662 | if (event_capable) { |
Axel Lin | dfec5c4 | 2010-06-10 16:06:40 +0800 | [diff] [blame] | 663 | err = hp_wmi_input_setup(); |
Dmitry Torokhov | 4d291ed | 2010-08-04 22:30:13 -0700 | [diff] [blame] | 664 | if (err) |
Axel Lin | dfec5c4 | 2010-06-10 16:06:40 +0800 | [diff] [blame] | 665 | return err; |
Matthew Garrett | 62ec30d | 2008-07-25 01:45:39 -0700 | [diff] [blame] | 666 | } |
| 667 | |
Thomas Renninger | b096667 | 2010-07-20 15:19:29 -0700 | [diff] [blame] | 668 | if (bios_capable) { |
Matthew Garrett | 62ec30d | 2008-07-25 01:45:39 -0700 | [diff] [blame] | 669 | err = platform_driver_register(&hp_wmi_driver); |
| 670 | if (err) |
Axel Lin | dfec5c4 | 2010-06-10 16:06:40 +0800 | [diff] [blame] | 671 | goto err_driver_reg; |
Matthew Garrett | 62ec30d | 2008-07-25 01:45:39 -0700 | [diff] [blame] | 672 | hp_wmi_platform_dev = platform_device_alloc("hp-wmi", -1); |
| 673 | if (!hp_wmi_platform_dev) { |
Axel Lin | dfec5c4 | 2010-06-10 16:06:40 +0800 | [diff] [blame] | 674 | err = -ENOMEM; |
| 675 | goto err_device_alloc; |
Matthew Garrett | 62ec30d | 2008-07-25 01:45:39 -0700 | [diff] [blame] | 676 | } |
Axel Lin | dfec5c4 | 2010-06-10 16:06:40 +0800 | [diff] [blame] | 677 | err = platform_device_add(hp_wmi_platform_dev); |
| 678 | if (err) |
| 679 | goto err_device_add; |
Matthew Garrett | 62ec30d | 2008-07-25 01:45:39 -0700 | [diff] [blame] | 680 | } |
| 681 | |
Thomas Renninger | b096667 | 2010-07-20 15:19:29 -0700 | [diff] [blame] | 682 | if (!bios_capable && !event_capable) |
| 683 | return -ENODEV; |
| 684 | |
Matthew Garrett | 62ec30d | 2008-07-25 01:45:39 -0700 | [diff] [blame] | 685 | return 0; |
Axel Lin | dfec5c4 | 2010-06-10 16:06:40 +0800 | [diff] [blame] | 686 | |
| 687 | err_device_add: |
| 688 | platform_device_put(hp_wmi_platform_dev); |
| 689 | err_device_alloc: |
| 690 | platform_driver_unregister(&hp_wmi_driver); |
| 691 | err_driver_reg: |
Dmitry Torokhov | 4d291ed | 2010-08-04 22:30:13 -0700 | [diff] [blame] | 692 | if (event_capable) |
| 693 | hp_wmi_input_destroy(); |
Axel Lin | dfec5c4 | 2010-06-10 16:06:40 +0800 | [diff] [blame] | 694 | |
| 695 | return err; |
Matthew Garrett | 62ec30d | 2008-07-25 01:45:39 -0700 | [diff] [blame] | 696 | } |
| 697 | |
| 698 | static void __exit hp_wmi_exit(void) |
| 699 | { |
Dmitry Torokhov | 4d291ed | 2010-08-04 22:30:13 -0700 | [diff] [blame] | 700 | if (wmi_has_guid(HPWMI_EVENT_GUID)) |
| 701 | hp_wmi_input_destroy(); |
| 702 | |
Matthew Garrett | 62ec30d | 2008-07-25 01:45:39 -0700 | [diff] [blame] | 703 | if (hp_wmi_platform_dev) { |
Axel Lin | 97ba0af | 2010-06-03 15:18:03 +0800 | [diff] [blame] | 704 | platform_device_unregister(hp_wmi_platform_dev); |
Matthew Garrett | 62ec30d | 2008-07-25 01:45:39 -0700 | [diff] [blame] | 705 | platform_driver_unregister(&hp_wmi_driver); |
| 706 | } |
| 707 | } |
| 708 | |
| 709 | module_init(hp_wmi_init); |
| 710 | module_exit(hp_wmi_exit); |