intel-hid.c 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390
  1. /*
  2. * Intel HID event & 5 button array driver
  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. #include <linux/kernel.h>
  19. #include <linux/module.h>
  20. #include <linux/init.h>
  21. #include <linux/input.h>
  22. #include <linux/platform_device.h>
  23. #include <linux/input/sparse-keymap.h>
  24. #include <linux/acpi.h>
  25. #include <linux/suspend.h>
  26. #include <acpi/acpi_bus.h>
  27. MODULE_LICENSE("GPL");
  28. MODULE_AUTHOR("Alex Hung");
  29. static const struct acpi_device_id intel_hid_ids[] = {
  30. {"INT33D5", 0},
  31. {"", 0},
  32. };
  33. /* In theory, these are HID usages. */
  34. static const struct key_entry intel_hid_keymap[] = {
  35. /* 1: LSuper (Page 0x07, usage 0xE3) -- unclear what to do */
  36. /* 2: Toggle SW_ROTATE_LOCK -- easy to implement if seen in wild */
  37. { KE_KEY, 3, { KEY_NUMLOCK } },
  38. { KE_KEY, 4, { KEY_HOME } },
  39. { KE_KEY, 5, { KEY_END } },
  40. { KE_KEY, 6, { KEY_PAGEUP } },
  41. { KE_KEY, 7, { KEY_PAGEDOWN } },
  42. { KE_KEY, 8, { KEY_RFKILL } },
  43. { KE_KEY, 9, { KEY_POWER } },
  44. { KE_KEY, 11, { KEY_SLEEP } },
  45. /* 13 has two different meanings in the spec -- ignore it. */
  46. { KE_KEY, 14, { KEY_STOPCD } },
  47. { KE_KEY, 15, { KEY_PLAYPAUSE } },
  48. { KE_KEY, 16, { KEY_MUTE } },
  49. { KE_KEY, 17, { KEY_VOLUMEUP } },
  50. { KE_KEY, 18, { KEY_VOLUMEDOWN } },
  51. { KE_KEY, 19, { KEY_BRIGHTNESSUP } },
  52. { KE_KEY, 20, { KEY_BRIGHTNESSDOWN } },
  53. /* 27: wake -- needs special handling */
  54. { KE_END },
  55. };
  56. /* 5 button array notification value. */
  57. static const struct key_entry intel_array_keymap[] = {
  58. { KE_KEY, 0xC2, { KEY_LEFTMETA } }, /* Press */
  59. { KE_IGNORE, 0xC3, { KEY_LEFTMETA } }, /* Release */
  60. { KE_KEY, 0xC4, { KEY_VOLUMEUP } }, /* Press */
  61. { KE_IGNORE, 0xC5, { KEY_VOLUMEUP } }, /* Release */
  62. { KE_KEY, 0xC6, { KEY_VOLUMEDOWN } }, /* Press */
  63. { KE_IGNORE, 0xC7, { KEY_VOLUMEDOWN } }, /* Release */
  64. { KE_SW, 0xC8, { .sw = { SW_ROTATE_LOCK, 1 } } }, /* Press */
  65. { KE_SW, 0xC9, { .sw = { SW_ROTATE_LOCK, 0 } } }, /* Release */
  66. { KE_KEY, 0xCE, { KEY_POWER } }, /* Press */
  67. { KE_IGNORE, 0xCF, { KEY_POWER } }, /* Release */
  68. { KE_END },
  69. };
  70. struct intel_hid_priv {
  71. struct input_dev *input_dev;
  72. struct input_dev *array;
  73. bool wakeup_mode;
  74. };
  75. static int intel_hid_set_enable(struct device *device, bool enable)
  76. {
  77. acpi_status status;
  78. status = acpi_execute_simple_method(ACPI_HANDLE(device), "HDSM",
  79. enable);
  80. if (ACPI_FAILURE(status)) {
  81. dev_warn(device, "failed to %sable hotkeys\n",
  82. enable ? "en" : "dis");
  83. return -EIO;
  84. }
  85. return 0;
  86. }
  87. static void intel_button_array_enable(struct device *device, bool enable)
  88. {
  89. struct intel_hid_priv *priv = dev_get_drvdata(device);
  90. acpi_handle handle = ACPI_HANDLE(device);
  91. unsigned long long button_cap;
  92. acpi_status status;
  93. if (!priv->array)
  94. return;
  95. /* Query supported platform features */
  96. status = acpi_evaluate_integer(handle, "BTNC", NULL, &button_cap);
  97. if (ACPI_FAILURE(status)) {
  98. dev_warn(device, "failed to get button capability\n");
  99. return;
  100. }
  101. /* Enable|disable features - power button is always enabled */
  102. status = acpi_execute_simple_method(handle, "BTNE",
  103. enable ? button_cap : 1);
  104. if (ACPI_FAILURE(status))
  105. dev_warn(device, "failed to set button capability\n");
  106. }
  107. static int intel_hid_pm_prepare(struct device *device)
  108. {
  109. struct intel_hid_priv *priv = dev_get_drvdata(device);
  110. priv->wakeup_mode = true;
  111. return 0;
  112. }
  113. static int intel_hid_pl_suspend_handler(struct device *device)
  114. {
  115. if (pm_suspend_via_firmware()) {
  116. intel_hid_set_enable(device, false);
  117. intel_button_array_enable(device, false);
  118. }
  119. return 0;
  120. }
  121. static int intel_hid_pl_resume_handler(struct device *device)
  122. {
  123. struct intel_hid_priv *priv = dev_get_drvdata(device);
  124. priv->wakeup_mode = false;
  125. if (pm_resume_via_firmware()) {
  126. intel_hid_set_enable(device, true);
  127. intel_button_array_enable(device, true);
  128. }
  129. return 0;
  130. }
  131. static const struct dev_pm_ops intel_hid_pl_pm_ops = {
  132. .prepare = intel_hid_pm_prepare,
  133. .freeze = intel_hid_pl_suspend_handler,
  134. .thaw = intel_hid_pl_resume_handler,
  135. .restore = intel_hid_pl_resume_handler,
  136. .suspend = intel_hid_pl_suspend_handler,
  137. .resume = intel_hid_pl_resume_handler,
  138. };
  139. static int intel_hid_input_setup(struct platform_device *device)
  140. {
  141. struct intel_hid_priv *priv = dev_get_drvdata(&device->dev);
  142. int ret;
  143. priv->input_dev = devm_input_allocate_device(&device->dev);
  144. if (!priv->input_dev)
  145. return -ENOMEM;
  146. ret = sparse_keymap_setup(priv->input_dev, intel_hid_keymap, NULL);
  147. if (ret)
  148. return ret;
  149. priv->input_dev->name = "Intel HID events";
  150. priv->input_dev->id.bustype = BUS_HOST;
  151. return input_register_device(priv->input_dev);
  152. }
  153. static int intel_button_array_input_setup(struct platform_device *device)
  154. {
  155. struct intel_hid_priv *priv = dev_get_drvdata(&device->dev);
  156. int ret;
  157. /* Setup input device for 5 button array */
  158. priv->array = devm_input_allocate_device(&device->dev);
  159. if (!priv->array)
  160. return -ENOMEM;
  161. ret = sparse_keymap_setup(priv->array, intel_array_keymap, NULL);
  162. if (ret)
  163. return ret;
  164. priv->array->name = "Intel HID 5 button array";
  165. priv->array->id.bustype = BUS_HOST;
  166. return input_register_device(priv->array);
  167. }
  168. static void notify_handler(acpi_handle handle, u32 event, void *context)
  169. {
  170. struct platform_device *device = context;
  171. struct intel_hid_priv *priv = dev_get_drvdata(&device->dev);
  172. unsigned long long ev_index;
  173. acpi_status status;
  174. if (priv->wakeup_mode) {
  175. /*
  176. * Needed for wakeup from suspend-to-idle to work on some
  177. * platforms that don't expose the 5-button array, but still
  178. * send notifies with the power button event code to this
  179. * device object on power button actions while suspended.
  180. */
  181. if (event == 0xce)
  182. goto wakeup;
  183. /* Wake up on 5-button array events only. */
  184. if (event == 0xc0 || !priv->array)
  185. return;
  186. if (!sparse_keymap_entry_from_scancode(priv->array, event)) {
  187. dev_info(&device->dev, "unknown event 0x%x\n", event);
  188. return;
  189. }
  190. wakeup:
  191. pm_wakeup_hard_event(&device->dev);
  192. return;
  193. }
  194. /* 0xC0 is for HID events, other values are for 5 button array */
  195. if (event != 0xc0) {
  196. if (!priv->array ||
  197. !sparse_keymap_report_event(priv->array, event, 1, true))
  198. dev_dbg(&device->dev, "unknown event 0x%x\n", event);
  199. return;
  200. }
  201. status = acpi_evaluate_integer(handle, "HDEM", NULL, &ev_index);
  202. if (ACPI_FAILURE(status)) {
  203. dev_warn(&device->dev, "failed to get event index\n");
  204. return;
  205. }
  206. if (!sparse_keymap_report_event(priv->input_dev, ev_index, 1, true))
  207. dev_dbg(&device->dev, "unknown event index 0x%llx\n",
  208. ev_index);
  209. }
  210. static int intel_hid_probe(struct platform_device *device)
  211. {
  212. acpi_handle handle = ACPI_HANDLE(&device->dev);
  213. unsigned long long event_cap, mode;
  214. struct intel_hid_priv *priv;
  215. acpi_status status;
  216. int err;
  217. status = acpi_evaluate_integer(handle, "HDMM", NULL, &mode);
  218. if (ACPI_FAILURE(status)) {
  219. dev_warn(&device->dev, "failed to read mode\n");
  220. return -ENODEV;
  221. }
  222. if (mode != 0) {
  223. /*
  224. * This driver only implements "simple" mode. There appear
  225. * to be no other modes, but we should be paranoid and check
  226. * for compatibility.
  227. */
  228. dev_info(&device->dev, "platform is not in simple mode\n");
  229. return -ENODEV;
  230. }
  231. priv = devm_kzalloc(&device->dev, sizeof(*priv), GFP_KERNEL);
  232. if (!priv)
  233. return -ENOMEM;
  234. dev_set_drvdata(&device->dev, priv);
  235. err = intel_hid_input_setup(device);
  236. if (err) {
  237. pr_err("Failed to setup Intel HID hotkeys\n");
  238. return err;
  239. }
  240. /* Setup 5 button array */
  241. status = acpi_evaluate_integer(handle, "HEBC", NULL, &event_cap);
  242. if (ACPI_SUCCESS(status) && (event_cap & 0x20000)) {
  243. dev_info(&device->dev, "platform supports 5 button array\n");
  244. err = intel_button_array_input_setup(device);
  245. if (err)
  246. pr_err("Failed to setup Intel 5 button array hotkeys\n");
  247. }
  248. status = acpi_install_notify_handler(handle,
  249. ACPI_DEVICE_NOTIFY,
  250. notify_handler,
  251. device);
  252. if (ACPI_FAILURE(status))
  253. return -EBUSY;
  254. err = intel_hid_set_enable(&device->dev, true);
  255. if (err)
  256. goto err_remove_notify;
  257. if (priv->array) {
  258. intel_button_array_enable(&device->dev, true);
  259. /* Call button load method to enable HID power button */
  260. status = acpi_evaluate_object(handle, "BTNL", NULL, NULL);
  261. if (ACPI_FAILURE(status))
  262. dev_warn(&device->dev,
  263. "failed to enable HID power button\n");
  264. }
  265. device_init_wakeup(&device->dev, true);
  266. return 0;
  267. err_remove_notify:
  268. acpi_remove_notify_handler(handle, ACPI_DEVICE_NOTIFY, notify_handler);
  269. return err;
  270. }
  271. static int intel_hid_remove(struct platform_device *device)
  272. {
  273. acpi_handle handle = ACPI_HANDLE(&device->dev);
  274. acpi_remove_notify_handler(handle, ACPI_DEVICE_NOTIFY, notify_handler);
  275. intel_hid_set_enable(&device->dev, false);
  276. intel_button_array_enable(&device->dev, false);
  277. /*
  278. * Even if we failed to shut off the event stream, we can still
  279. * safely detach from the device.
  280. */
  281. return 0;
  282. }
  283. static struct platform_driver intel_hid_pl_driver = {
  284. .driver = {
  285. .name = "intel-hid",
  286. .acpi_match_table = intel_hid_ids,
  287. .pm = &intel_hid_pl_pm_ops,
  288. },
  289. .probe = intel_hid_probe,
  290. .remove = intel_hid_remove,
  291. };
  292. MODULE_DEVICE_TABLE(acpi, intel_hid_ids);
  293. /*
  294. * Unfortunately, some laptops provide a _HID="INT33D5" device with
  295. * _CID="PNP0C02". This causes the pnpacpi scan driver to claim the
  296. * ACPI node, so no platform device will be created. The pnpacpi
  297. * driver rejects this device in subsequent processing, so no physical
  298. * node is created at all.
  299. *
  300. * As a workaround until the ACPI core figures out how to handle
  301. * this corner case, manually ask the ACPI platform device code to
  302. * claim the ACPI node.
  303. */
  304. static acpi_status __init
  305. check_acpi_dev(acpi_handle handle, u32 lvl, void *context, void **rv)
  306. {
  307. const struct acpi_device_id *ids = context;
  308. struct acpi_device *dev;
  309. if (acpi_bus_get_device(handle, &dev) != 0)
  310. return AE_OK;
  311. if (acpi_match_device_ids(dev, ids) == 0)
  312. if (acpi_create_platform_device(dev, NULL))
  313. dev_info(&dev->dev,
  314. "intel-hid: created platform device\n");
  315. return AE_OK;
  316. }
  317. static int __init intel_hid_init(void)
  318. {
  319. acpi_walk_namespace(ACPI_TYPE_DEVICE, ACPI_ROOT_OBJECT,
  320. ACPI_UINT32_MAX, check_acpi_dev, NULL,
  321. (void *)intel_hid_ids, NULL);
  322. return platform_driver_register(&intel_hid_pl_driver);
  323. }
  324. module_init(intel_hid_init);
  325. static void __exit intel_hid_exit(void)
  326. {
  327. platform_driver_unregister(&intel_hid_pl_driver);
  328. }
  329. module_exit(intel_hid_exit);