intel-hid.c 9.8 KB

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