Alex Hung | ecc83e5 | 2015-12-18 23:31:10 +0800 | [diff] [blame] | 1 | /* |
Alex Hung | bd5762a | 2017-02-14 15:20:34 +0800 | [diff] [blame] | 2 | * Intel HID event & 5 button array driver |
Alex Hung | ecc83e5 | 2015-12-18 23:31:10 +0800 | [diff] [blame] | 3 | * |
| 4 | * Copyright (C) 2015 Alex Hung <alex.hung@canonical.com> |
| 5 | * Copyright (C) 2015 Andrew Lutomirski <luto@kernel.org> |
| 6 | * |
| 7 | * This program is free software; you can redistribute it and/or modify |
| 8 | * it under the terms of the GNU General Public License as published by |
| 9 | * the Free Software Foundation; either version 2 of the License, or |
| 10 | * (at your option) any later version. |
| 11 | * |
| 12 | * This program is distributed in the hope that it will be useful, |
| 13 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 15 | * GNU General Public License for more details. |
| 16 | * |
| 17 | */ |
| 18 | |
| 19 | #include <linux/kernel.h> |
| 20 | #include <linux/module.h> |
| 21 | #include <linux/init.h> |
| 22 | #include <linux/input.h> |
| 23 | #include <linux/platform_device.h> |
| 24 | #include <linux/input/sparse-keymap.h> |
| 25 | #include <linux/acpi.h> |
Rafael J. Wysocki | ef88411 | 2017-06-08 02:16:13 +0200 | [diff] [blame] | 26 | #include <linux/suspend.h> |
Alex Hung | ecc83e5 | 2015-12-18 23:31:10 +0800 | [diff] [blame] | 27 | #include <acpi/acpi_bus.h> |
| 28 | |
| 29 | MODULE_LICENSE("GPL"); |
| 30 | MODULE_AUTHOR("Alex Hung"); |
| 31 | |
| 32 | static const struct acpi_device_id intel_hid_ids[] = { |
| 33 | {"INT33D5", 0}, |
| 34 | {"", 0}, |
| 35 | }; |
| 36 | |
| 37 | /* In theory, these are HID usages. */ |
| 38 | static const struct key_entry intel_hid_keymap[] = { |
| 39 | /* 1: LSuper (Page 0x07, usage 0xE3) -- unclear what to do */ |
| 40 | /* 2: Toggle SW_ROTATE_LOCK -- easy to implement if seen in wild */ |
| 41 | { KE_KEY, 3, { KEY_NUMLOCK } }, |
| 42 | { KE_KEY, 4, { KEY_HOME } }, |
| 43 | { KE_KEY, 5, { KEY_END } }, |
| 44 | { KE_KEY, 6, { KEY_PAGEUP } }, |
Alex Hung | 1c319e7 | 2016-01-27 21:35:00 +0800 | [diff] [blame] | 45 | { KE_KEY, 7, { KEY_PAGEDOWN } }, |
Alex Hung | ecc83e5 | 2015-12-18 23:31:10 +0800 | [diff] [blame] | 46 | { KE_KEY, 8, { KEY_RFKILL } }, |
| 47 | { KE_KEY, 9, { KEY_POWER } }, |
| 48 | { KE_KEY, 11, { KEY_SLEEP } }, |
| 49 | /* 13 has two different meanings in the spec -- ignore it. */ |
| 50 | { KE_KEY, 14, { KEY_STOPCD } }, |
| 51 | { KE_KEY, 15, { KEY_PLAYPAUSE } }, |
| 52 | { KE_KEY, 16, { KEY_MUTE } }, |
| 53 | { KE_KEY, 17, { KEY_VOLUMEUP } }, |
| 54 | { KE_KEY, 18, { KEY_VOLUMEDOWN } }, |
| 55 | { KE_KEY, 19, { KEY_BRIGHTNESSUP } }, |
| 56 | { KE_KEY, 20, { KEY_BRIGHTNESSDOWN } }, |
| 57 | /* 27: wake -- needs special handling */ |
| 58 | { KE_END }, |
| 59 | }; |
| 60 | |
Alex Hung | bd5762a | 2017-02-14 15:20:34 +0800 | [diff] [blame] | 61 | /* 5 button array notification value. */ |
| 62 | static const struct key_entry intel_array_keymap[] = { |
| 63 | { KE_KEY, 0xC2, { KEY_LEFTMETA } }, /* Press */ |
| 64 | { KE_IGNORE, 0xC3, { KEY_LEFTMETA } }, /* Release */ |
| 65 | { KE_KEY, 0xC4, { KEY_VOLUMEUP } }, /* Press */ |
| 66 | { KE_IGNORE, 0xC5, { KEY_VOLUMEUP } }, /* Release */ |
| 67 | { KE_KEY, 0xC6, { KEY_VOLUMEDOWN } }, /* Press */ |
| 68 | { KE_IGNORE, 0xC7, { KEY_VOLUMEDOWN } }, /* Release */ |
| 69 | { KE_SW, 0xC8, { .sw = { SW_ROTATE_LOCK, 1 } } }, /* Press */ |
| 70 | { KE_SW, 0xC9, { .sw = { SW_ROTATE_LOCK, 0 } } }, /* Release */ |
| 71 | { KE_KEY, 0xCE, { KEY_POWER } }, /* Press */ |
| 72 | { KE_IGNORE, 0xCF, { KEY_POWER } }, /* Release */ |
| 73 | { KE_END }, |
| 74 | }; |
| 75 | |
Alex Hung | ecc83e5 | 2015-12-18 23:31:10 +0800 | [diff] [blame] | 76 | struct intel_hid_priv { |
| 77 | struct input_dev *input_dev; |
Alex Hung | bd5762a | 2017-02-14 15:20:34 +0800 | [diff] [blame] | 78 | struct input_dev *array; |
Rafael J. Wysocki | ef88411 | 2017-06-08 02:16:13 +0200 | [diff] [blame] | 79 | bool wakeup_mode; |
Alex Hung | ecc83e5 | 2015-12-18 23:31:10 +0800 | [diff] [blame] | 80 | }; |
| 81 | |
Michał Kępień | 99a75e7 | 2017-02-24 11:33:07 +0100 | [diff] [blame] | 82 | static int intel_hid_set_enable(struct device *device, bool enable) |
Alex Hung | ecc83e5 | 2015-12-18 23:31:10 +0800 | [diff] [blame] | 83 | { |
Alex Hung | ecc83e5 | 2015-12-18 23:31:10 +0800 | [diff] [blame] | 84 | acpi_status status; |
| 85 | |
Michał Kępień | 93ed249 | 2017-02-24 11:33:06 +0100 | [diff] [blame] | 86 | status = acpi_execute_simple_method(ACPI_HANDLE(device), "HDSM", |
| 87 | enable); |
Axel Lin | 3526eca | 2016-09-19 09:33:51 +0800 | [diff] [blame] | 88 | if (ACPI_FAILURE(status)) { |
Alex Hung | ecc83e5 | 2015-12-18 23:31:10 +0800 | [diff] [blame] | 89 | dev_warn(device, "failed to %sable hotkeys\n", |
| 90 | enable ? "en" : "dis"); |
| 91 | return -EIO; |
| 92 | } |
| 93 | |
| 94 | return 0; |
| 95 | } |
| 96 | |
Alex Hung | bd5762a | 2017-02-14 15:20:34 +0800 | [diff] [blame] | 97 | static void intel_button_array_enable(struct device *device, bool enable) |
| 98 | { |
| 99 | struct intel_hid_priv *priv = dev_get_drvdata(device); |
| 100 | acpi_handle handle = ACPI_HANDLE(device); |
| 101 | unsigned long long button_cap; |
| 102 | acpi_status status; |
| 103 | |
| 104 | if (!priv->array) |
| 105 | return; |
| 106 | |
| 107 | /* Query supported platform features */ |
| 108 | status = acpi_evaluate_integer(handle, "BTNC", NULL, &button_cap); |
| 109 | if (ACPI_FAILURE(status)) { |
| 110 | dev_warn(device, "failed to get button capability\n"); |
| 111 | return; |
| 112 | } |
| 113 | |
| 114 | /* Enable|disable features - power button is always enabled */ |
| 115 | status = acpi_execute_simple_method(handle, "BTNE", |
| 116 | enable ? button_cap : 1); |
| 117 | if (ACPI_FAILURE(status)) |
| 118 | dev_warn(device, "failed to set button capability\n"); |
| 119 | } |
| 120 | |
Rafael J. Wysocki | ef88411 | 2017-06-08 02:16:13 +0200 | [diff] [blame] | 121 | static int intel_hid_pm_prepare(struct device *device) |
| 122 | { |
| 123 | struct intel_hid_priv *priv = dev_get_drvdata(device); |
| 124 | |
| 125 | priv->wakeup_mode = true; |
| 126 | return 0; |
| 127 | } |
| 128 | |
Alex Hung | ecc83e5 | 2015-12-18 23:31:10 +0800 | [diff] [blame] | 129 | static int intel_hid_pl_suspend_handler(struct device *device) |
| 130 | { |
Rafael J. Wysocki | ef88411 | 2017-06-08 02:16:13 +0200 | [diff] [blame] | 131 | if (pm_suspend_via_firmware()) { |
| 132 | intel_hid_set_enable(device, false); |
| 133 | intel_button_array_enable(device, false); |
| 134 | } |
Alex Hung | ecc83e5 | 2015-12-18 23:31:10 +0800 | [diff] [blame] | 135 | return 0; |
| 136 | } |
| 137 | |
| 138 | static int intel_hid_pl_resume_handler(struct device *device) |
| 139 | { |
Rafael J. Wysocki | ef88411 | 2017-06-08 02:16:13 +0200 | [diff] [blame] | 140 | struct intel_hid_priv *priv = dev_get_drvdata(device); |
Alex Hung | bd5762a | 2017-02-14 15:20:34 +0800 | [diff] [blame] | 141 | |
Rafael J. Wysocki | ef88411 | 2017-06-08 02:16:13 +0200 | [diff] [blame] | 142 | priv->wakeup_mode = false; |
| 143 | if (pm_resume_via_firmware()) { |
| 144 | intel_hid_set_enable(device, true); |
| 145 | intel_button_array_enable(device, true); |
| 146 | } |
Alex Hung | ecc83e5 | 2015-12-18 23:31:10 +0800 | [diff] [blame] | 147 | return 0; |
| 148 | } |
| 149 | |
| 150 | static const struct dev_pm_ops intel_hid_pl_pm_ops = { |
Rafael J. Wysocki | ef88411 | 2017-06-08 02:16:13 +0200 | [diff] [blame] | 151 | .prepare = intel_hid_pm_prepare, |
Alex Hung | 45aa56c | 2016-03-21 16:08:42 +0800 | [diff] [blame] | 152 | .freeze = intel_hid_pl_suspend_handler, |
Rafael J. Wysocki | b899830 | 2017-04-18 15:49:06 +0200 | [diff] [blame] | 153 | .thaw = intel_hid_pl_resume_handler, |
Alex Hung | 45aa56c | 2016-03-21 16:08:42 +0800 | [diff] [blame] | 154 | .restore = intel_hid_pl_resume_handler, |
Alex Hung | ecc83e5 | 2015-12-18 23:31:10 +0800 | [diff] [blame] | 155 | .suspend = intel_hid_pl_suspend_handler, |
| 156 | .resume = intel_hid_pl_resume_handler, |
| 157 | }; |
| 158 | |
| 159 | static int intel_hid_input_setup(struct platform_device *device) |
| 160 | { |
| 161 | struct intel_hid_priv *priv = dev_get_drvdata(&device->dev); |
| 162 | int ret; |
| 163 | |
Michał Kępień | 175cc9b | 2017-02-24 11:33:08 +0100 | [diff] [blame] | 164 | priv->input_dev = devm_input_allocate_device(&device->dev); |
Alex Hung | ecc83e5 | 2015-12-18 23:31:10 +0800 | [diff] [blame] | 165 | if (!priv->input_dev) |
| 166 | return -ENOMEM; |
| 167 | |
| 168 | ret = sparse_keymap_setup(priv->input_dev, intel_hid_keymap, NULL); |
| 169 | if (ret) |
Michał Kępień | 175cc9b | 2017-02-24 11:33:08 +0100 | [diff] [blame] | 170 | return ret; |
Alex Hung | ecc83e5 | 2015-12-18 23:31:10 +0800 | [diff] [blame] | 171 | |
Alex Hung | ecc83e5 | 2015-12-18 23:31:10 +0800 | [diff] [blame] | 172 | priv->input_dev->name = "Intel HID events"; |
| 173 | priv->input_dev->id.bustype = BUS_HOST; |
Alex Hung | ecc83e5 | 2015-12-18 23:31:10 +0800 | [diff] [blame] | 174 | |
Michał Kępień | 175cc9b | 2017-02-24 11:33:08 +0100 | [diff] [blame] | 175 | return input_register_device(priv->input_dev); |
Alex Hung | ecc83e5 | 2015-12-18 23:31:10 +0800 | [diff] [blame] | 176 | } |
| 177 | |
Alex Hung | bd5762a | 2017-02-14 15:20:34 +0800 | [diff] [blame] | 178 | static int intel_button_array_input_setup(struct platform_device *device) |
| 179 | { |
| 180 | struct intel_hid_priv *priv = dev_get_drvdata(&device->dev); |
| 181 | int ret; |
| 182 | |
| 183 | /* Setup input device for 5 button array */ |
| 184 | priv->array = devm_input_allocate_device(&device->dev); |
| 185 | if (!priv->array) |
| 186 | return -ENOMEM; |
| 187 | |
| 188 | ret = sparse_keymap_setup(priv->array, intel_array_keymap, NULL); |
| 189 | if (ret) |
| 190 | return ret; |
| 191 | |
Alex Hung | bd5762a | 2017-02-14 15:20:34 +0800 | [diff] [blame] | 192 | priv->array->name = "Intel HID 5 button array"; |
| 193 | priv->array->id.bustype = BUS_HOST; |
| 194 | |
| 195 | return input_register_device(priv->array); |
| 196 | } |
| 197 | |
Alex Hung | ecc83e5 | 2015-12-18 23:31:10 +0800 | [diff] [blame] | 198 | static void notify_handler(acpi_handle handle, u32 event, void *context) |
| 199 | { |
| 200 | struct platform_device *device = context; |
| 201 | struct intel_hid_priv *priv = dev_get_drvdata(&device->dev); |
| 202 | unsigned long long ev_index; |
| 203 | acpi_status status; |
| 204 | |
Rafael J. Wysocki | ef88411 | 2017-06-08 02:16:13 +0200 | [diff] [blame] | 205 | if (priv->wakeup_mode) { |
Rafael J. Wysocki | 635173a | 2017-07-28 02:06:36 +0200 | [diff] [blame] | 206 | /* |
| 207 | * Needed for wakeup from suspend-to-idle to work on some |
| 208 | * platforms that don't expose the 5-button array, but still |
| 209 | * send notifies with the power button event code to this |
| 210 | * device object on power button actions while suspended. |
| 211 | */ |
| 212 | if (event == 0xce) |
| 213 | goto wakeup; |
| 214 | |
Rafael J. Wysocki | ef88411 | 2017-06-08 02:16:13 +0200 | [diff] [blame] | 215 | /* Wake up on 5-button array events only. */ |
| 216 | if (event == 0xc0 || !priv->array) |
| 217 | return; |
| 218 | |
Rafael J. Wysocki | 635173a | 2017-07-28 02:06:36 +0200 | [diff] [blame] | 219 | if (!sparse_keymap_entry_from_scancode(priv->array, event)) { |
Rafael J. Wysocki | ef88411 | 2017-06-08 02:16:13 +0200 | [diff] [blame] | 220 | dev_info(&device->dev, "unknown event 0x%x\n", event); |
Rafael J. Wysocki | 635173a | 2017-07-28 02:06:36 +0200 | [diff] [blame] | 221 | return; |
| 222 | } |
Rafael J. Wysocki | ef88411 | 2017-06-08 02:16:13 +0200 | [diff] [blame] | 223 | |
Rafael J. Wysocki | 635173a | 2017-07-28 02:06:36 +0200 | [diff] [blame] | 224 | wakeup: |
| 225 | pm_wakeup_hard_event(&device->dev); |
Rafael J. Wysocki | ef88411 | 2017-06-08 02:16:13 +0200 | [diff] [blame] | 226 | return; |
| 227 | } |
| 228 | |
Jérôme de Bretagne | 821b853 | 2017-09-18 00:57:12 +0200 | [diff] [blame] | 229 | /* |
| 230 | * Needed for suspend to work on some platforms that don't expose |
| 231 | * the 5-button array, but still send notifies with power button |
| 232 | * event code to this device object on power button actions. |
| 233 | * |
| 234 | * Report the power button press; catch and ignore the button release. |
| 235 | */ |
| 236 | if (!priv->array) { |
| 237 | if (event == 0xce) { |
| 238 | input_report_key(priv->input_dev, KEY_POWER, 1); |
| 239 | input_sync(priv->input_dev); |
| 240 | return; |
| 241 | } |
| 242 | |
| 243 | if (event == 0xcf) |
| 244 | return; |
| 245 | } |
| 246 | |
Alex Hung | bd5762a | 2017-02-14 15:20:34 +0800 | [diff] [blame] | 247 | /* 0xC0 is for HID events, other values are for 5 button array */ |
Alex Hung | ecc83e5 | 2015-12-18 23:31:10 +0800 | [diff] [blame] | 248 | if (event != 0xc0) { |
Alex Hung | bd5762a | 2017-02-14 15:20:34 +0800 | [diff] [blame] | 249 | if (!priv->array || |
| 250 | !sparse_keymap_report_event(priv->array, event, 1, true)) |
Alex Hung | d496c87 | 2017-07-20 20:58:08 -0700 | [diff] [blame] | 251 | dev_dbg(&device->dev, "unknown event 0x%x\n", event); |
Alex Hung | ecc83e5 | 2015-12-18 23:31:10 +0800 | [diff] [blame] | 252 | return; |
| 253 | } |
| 254 | |
| 255 | status = acpi_evaluate_integer(handle, "HDEM", NULL, &ev_index); |
Axel Lin | 3526eca | 2016-09-19 09:33:51 +0800 | [diff] [blame] | 256 | if (ACPI_FAILURE(status)) { |
Alex Hung | ecc83e5 | 2015-12-18 23:31:10 +0800 | [diff] [blame] | 257 | dev_warn(&device->dev, "failed to get event index\n"); |
| 258 | return; |
| 259 | } |
| 260 | |
| 261 | if (!sparse_keymap_report_event(priv->input_dev, ev_index, 1, true)) |
Alex Hung | d496c87 | 2017-07-20 20:58:08 -0700 | [diff] [blame] | 262 | dev_dbg(&device->dev, "unknown event index 0x%llx\n", |
Alex Hung | ecc83e5 | 2015-12-18 23:31:10 +0800 | [diff] [blame] | 263 | ev_index); |
| 264 | } |
| 265 | |
| 266 | static int intel_hid_probe(struct platform_device *device) |
| 267 | { |
| 268 | acpi_handle handle = ACPI_HANDLE(&device->dev); |
Alex Hung | bd5762a | 2017-02-14 15:20:34 +0800 | [diff] [blame] | 269 | unsigned long long event_cap, mode; |
Alex Hung | ecc83e5 | 2015-12-18 23:31:10 +0800 | [diff] [blame] | 270 | struct intel_hid_priv *priv; |
Alex Hung | ecc83e5 | 2015-12-18 23:31:10 +0800 | [diff] [blame] | 271 | acpi_status status; |
| 272 | int err; |
| 273 | |
| 274 | status = acpi_evaluate_integer(handle, "HDMM", NULL, &mode); |
Axel Lin | 3526eca | 2016-09-19 09:33:51 +0800 | [diff] [blame] | 275 | if (ACPI_FAILURE(status)) { |
Alex Hung | ecc83e5 | 2015-12-18 23:31:10 +0800 | [diff] [blame] | 276 | dev_warn(&device->dev, "failed to read mode\n"); |
| 277 | return -ENODEV; |
| 278 | } |
| 279 | |
| 280 | if (mode != 0) { |
| 281 | /* |
| 282 | * This driver only implements "simple" mode. There appear |
| 283 | * to be no other modes, but we should be paranoid and check |
| 284 | * for compatibility. |
| 285 | */ |
| 286 | dev_info(&device->dev, "platform is not in simple mode\n"); |
| 287 | return -ENODEV; |
| 288 | } |
| 289 | |
Wolfram Sang | e8b69a5 | 2016-02-21 15:22:27 +0100 | [diff] [blame] | 290 | priv = devm_kzalloc(&device->dev, sizeof(*priv), GFP_KERNEL); |
Alex Hung | ecc83e5 | 2015-12-18 23:31:10 +0800 | [diff] [blame] | 291 | if (!priv) |
| 292 | return -ENOMEM; |
| 293 | dev_set_drvdata(&device->dev, priv); |
| 294 | |
| 295 | err = intel_hid_input_setup(device); |
| 296 | if (err) { |
| 297 | pr_err("Failed to setup Intel HID hotkeys\n"); |
| 298 | return err; |
| 299 | } |
| 300 | |
Alex Hung | bd5762a | 2017-02-14 15:20:34 +0800 | [diff] [blame] | 301 | /* Setup 5 button array */ |
| 302 | status = acpi_evaluate_integer(handle, "HEBC", NULL, &event_cap); |
| 303 | if (ACPI_SUCCESS(status) && (event_cap & 0x20000)) { |
| 304 | dev_info(&device->dev, "platform supports 5 button array\n"); |
| 305 | err = intel_button_array_input_setup(device); |
| 306 | if (err) |
| 307 | pr_err("Failed to setup Intel 5 button array hotkeys\n"); |
| 308 | } |
| 309 | |
Alex Hung | ecc83e5 | 2015-12-18 23:31:10 +0800 | [diff] [blame] | 310 | status = acpi_install_notify_handler(handle, |
| 311 | ACPI_DEVICE_NOTIFY, |
| 312 | notify_handler, |
| 313 | device); |
Michał Kępień | 175cc9b | 2017-02-24 11:33:08 +0100 | [diff] [blame] | 314 | if (ACPI_FAILURE(status)) |
| 315 | return -EBUSY; |
Alex Hung | ecc83e5 | 2015-12-18 23:31:10 +0800 | [diff] [blame] | 316 | |
Michał Kępień | 99a75e7 | 2017-02-24 11:33:07 +0100 | [diff] [blame] | 317 | err = intel_hid_set_enable(&device->dev, true); |
Alex Hung | ecc83e5 | 2015-12-18 23:31:10 +0800 | [diff] [blame] | 318 | if (err) |
| 319 | goto err_remove_notify; |
| 320 | |
Alex Hung | bd5762a | 2017-02-14 15:20:34 +0800 | [diff] [blame] | 321 | if (priv->array) { |
| 322 | intel_button_array_enable(&device->dev, true); |
| 323 | |
| 324 | /* Call button load method to enable HID power button */ |
| 325 | status = acpi_evaluate_object(handle, "BTNL", NULL, NULL); |
| 326 | if (ACPI_FAILURE(status)) |
| 327 | dev_warn(&device->dev, |
| 328 | "failed to enable HID power button\n"); |
| 329 | } |
| 330 | |
Rafael J. Wysocki | ef88411 | 2017-06-08 02:16:13 +0200 | [diff] [blame] | 331 | device_init_wakeup(&device->dev, true); |
Alex Hung | ecc83e5 | 2015-12-18 23:31:10 +0800 | [diff] [blame] | 332 | return 0; |
| 333 | |
| 334 | err_remove_notify: |
| 335 | acpi_remove_notify_handler(handle, ACPI_DEVICE_NOTIFY, notify_handler); |
| 336 | |
Alex Hung | ecc83e5 | 2015-12-18 23:31:10 +0800 | [diff] [blame] | 337 | return err; |
| 338 | } |
| 339 | |
| 340 | static int intel_hid_remove(struct platform_device *device) |
| 341 | { |
| 342 | acpi_handle handle = ACPI_HANDLE(&device->dev); |
| 343 | |
| 344 | acpi_remove_notify_handler(handle, ACPI_DEVICE_NOTIFY, notify_handler); |
Michał Kępień | 99a75e7 | 2017-02-24 11:33:07 +0100 | [diff] [blame] | 345 | intel_hid_set_enable(&device->dev, false); |
Alex Hung | bd5762a | 2017-02-14 15:20:34 +0800 | [diff] [blame] | 346 | intel_button_array_enable(&device->dev, false); |
Alex Hung | ecc83e5 | 2015-12-18 23:31:10 +0800 | [diff] [blame] | 347 | |
| 348 | /* |
| 349 | * Even if we failed to shut off the event stream, we can still |
| 350 | * safely detach from the device. |
| 351 | */ |
| 352 | return 0; |
| 353 | } |
| 354 | |
| 355 | static struct platform_driver intel_hid_pl_driver = { |
| 356 | .driver = { |
| 357 | .name = "intel-hid", |
| 358 | .acpi_match_table = intel_hid_ids, |
| 359 | .pm = &intel_hid_pl_pm_ops, |
| 360 | }, |
| 361 | .probe = intel_hid_probe, |
| 362 | .remove = intel_hid_remove, |
| 363 | }; |
| 364 | MODULE_DEVICE_TABLE(acpi, intel_hid_ids); |
| 365 | |
| 366 | /* |
| 367 | * Unfortunately, some laptops provide a _HID="INT33D5" device with |
| 368 | * _CID="PNP0C02". This causes the pnpacpi scan driver to claim the |
| 369 | * ACPI node, so no platform device will be created. The pnpacpi |
| 370 | * driver rejects this device in subsequent processing, so no physical |
| 371 | * node is created at all. |
| 372 | * |
| 373 | * As a workaround until the ACPI core figures out how to handle |
| 374 | * this corner case, manually ask the ACPI platform device code to |
| 375 | * claim the ACPI node. |
| 376 | */ |
| 377 | static acpi_status __init |
| 378 | check_acpi_dev(acpi_handle handle, u32 lvl, void *context, void **rv) |
| 379 | { |
| 380 | const struct acpi_device_id *ids = context; |
| 381 | struct acpi_device *dev; |
| 382 | |
| 383 | if (acpi_bus_get_device(handle, &dev) != 0) |
| 384 | return AE_OK; |
| 385 | |
| 386 | if (acpi_match_device_ids(dev, ids) == 0) |
Heikki Krogerus | 1571875 | 2016-11-03 16:21:26 +0200 | [diff] [blame] | 387 | if (acpi_create_platform_device(dev, NULL)) |
Alex Hung | ecc83e5 | 2015-12-18 23:31:10 +0800 | [diff] [blame] | 388 | dev_info(&dev->dev, |
| 389 | "intel-hid: created platform device\n"); |
| 390 | |
| 391 | return AE_OK; |
| 392 | } |
| 393 | |
| 394 | static int __init intel_hid_init(void) |
| 395 | { |
| 396 | acpi_walk_namespace(ACPI_TYPE_DEVICE, ACPI_ROOT_OBJECT, |
| 397 | ACPI_UINT32_MAX, check_acpi_dev, NULL, |
| 398 | (void *)intel_hid_ids, NULL); |
| 399 | |
| 400 | return platform_driver_register(&intel_hid_pl_driver); |
| 401 | } |
| 402 | module_init(intel_hid_init); |
| 403 | |
| 404 | static void __exit intel_hid_exit(void) |
| 405 | { |
| 406 | platform_driver_unregister(&intel_hid_pl_driver); |
| 407 | } |
| 408 | module_exit(intel_hid_exit); |