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