intel-hid.c 7.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289
  1. /*
  2. * Intel HID event driver for Windows 8
  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, 4, { KEY_PAGEDOWN } },
  41. { KE_KEY, 4, { KEY_HOME } },
  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. struct intel_hid_priv {
  57. struct input_dev *input_dev;
  58. };
  59. static int intel_hid_set_enable(struct device *device, int enable)
  60. {
  61. union acpi_object arg0 = { ACPI_TYPE_INTEGER };
  62. struct acpi_object_list args = { 1, &arg0 };
  63. acpi_status status;
  64. arg0.integer.value = enable;
  65. status = acpi_evaluate_object(ACPI_HANDLE(device), "HDSM", &args, NULL);
  66. if (!ACPI_SUCCESS(status)) {
  67. dev_warn(device, "failed to %sable hotkeys\n",
  68. enable ? "en" : "dis");
  69. return -EIO;
  70. }
  71. return 0;
  72. }
  73. static int intel_hid_pl_suspend_handler(struct device *device)
  74. {
  75. intel_hid_set_enable(device, 0);
  76. return 0;
  77. }
  78. static int intel_hid_pl_resume_handler(struct device *device)
  79. {
  80. intel_hid_set_enable(device, 1);
  81. return 0;
  82. }
  83. static const struct dev_pm_ops intel_hid_pl_pm_ops = {
  84. .suspend = intel_hid_pl_suspend_handler,
  85. .resume = intel_hid_pl_resume_handler,
  86. };
  87. static int intel_hid_input_setup(struct platform_device *device)
  88. {
  89. struct intel_hid_priv *priv = dev_get_drvdata(&device->dev);
  90. int ret;
  91. priv->input_dev = input_allocate_device();
  92. if (!priv->input_dev)
  93. return -ENOMEM;
  94. ret = sparse_keymap_setup(priv->input_dev, intel_hid_keymap, NULL);
  95. if (ret)
  96. goto err_free_device;
  97. priv->input_dev->dev.parent = &device->dev;
  98. priv->input_dev->name = "Intel HID events";
  99. priv->input_dev->id.bustype = BUS_HOST;
  100. set_bit(KEY_RFKILL, priv->input_dev->keybit);
  101. ret = input_register_device(priv->input_dev);
  102. if (ret)
  103. goto err_free_device;
  104. return 0;
  105. err_free_device:
  106. input_free_device(priv->input_dev);
  107. return ret;
  108. }
  109. static void intel_hid_input_destroy(struct platform_device *device)
  110. {
  111. struct intel_hid_priv *priv = dev_get_drvdata(&device->dev);
  112. input_unregister_device(priv->input_dev);
  113. }
  114. static void notify_handler(acpi_handle handle, u32 event, void *context)
  115. {
  116. struct platform_device *device = context;
  117. struct intel_hid_priv *priv = dev_get_drvdata(&device->dev);
  118. unsigned long long ev_index;
  119. acpi_status status;
  120. /* The platform spec only defines one event code: 0xC0. */
  121. if (event != 0xc0) {
  122. dev_warn(&device->dev, "received unknown event (0x%x)\n",
  123. event);
  124. return;
  125. }
  126. status = acpi_evaluate_integer(handle, "HDEM", NULL, &ev_index);
  127. if (!ACPI_SUCCESS(status)) {
  128. dev_warn(&device->dev, "failed to get event index\n");
  129. return;
  130. }
  131. if (!sparse_keymap_report_event(priv->input_dev, ev_index, 1, true))
  132. dev_info(&device->dev, "unknown event index 0x%llx\n",
  133. ev_index);
  134. }
  135. static int intel_hid_probe(struct platform_device *device)
  136. {
  137. acpi_handle handle = ACPI_HANDLE(&device->dev);
  138. struct intel_hid_priv *priv;
  139. unsigned long long mode;
  140. acpi_status status;
  141. int err;
  142. status = acpi_evaluate_integer(handle, "HDMM", NULL, &mode);
  143. if (!ACPI_SUCCESS(status)) {
  144. dev_warn(&device->dev, "failed to read mode\n");
  145. return -ENODEV;
  146. }
  147. if (mode != 0) {
  148. /*
  149. * This driver only implements "simple" mode. There appear
  150. * to be no other modes, but we should be paranoid and check
  151. * for compatibility.
  152. */
  153. dev_info(&device->dev, "platform is not in simple mode\n");
  154. return -ENODEV;
  155. }
  156. priv = devm_kzalloc(&device->dev,
  157. sizeof(struct intel_hid_priv *), GFP_KERNEL);
  158. if (!priv)
  159. return -ENOMEM;
  160. dev_set_drvdata(&device->dev, priv);
  161. err = intel_hid_input_setup(device);
  162. if (err) {
  163. pr_err("Failed to setup Intel HID hotkeys\n");
  164. return err;
  165. }
  166. status = acpi_install_notify_handler(handle,
  167. ACPI_DEVICE_NOTIFY,
  168. notify_handler,
  169. device);
  170. if (ACPI_FAILURE(status)) {
  171. err = -EBUSY;
  172. goto err_remove_input;
  173. }
  174. err = intel_hid_set_enable(&device->dev, 1);
  175. if (err)
  176. goto err_remove_notify;
  177. return 0;
  178. err_remove_notify:
  179. acpi_remove_notify_handler(handle, ACPI_DEVICE_NOTIFY, notify_handler);
  180. err_remove_input:
  181. intel_hid_input_destroy(device);
  182. return err;
  183. }
  184. static int intel_hid_remove(struct platform_device *device)
  185. {
  186. acpi_handle handle = ACPI_HANDLE(&device->dev);
  187. acpi_remove_notify_handler(handle, ACPI_DEVICE_NOTIFY, notify_handler);
  188. intel_hid_input_destroy(device);
  189. intel_hid_set_enable(&device->dev, 0);
  190. acpi_remove_notify_handler(handle, ACPI_DEVICE_NOTIFY, notify_handler);
  191. /*
  192. * Even if we failed to shut off the event stream, we can still
  193. * safely detach from the device.
  194. */
  195. return 0;
  196. }
  197. static struct platform_driver intel_hid_pl_driver = {
  198. .driver = {
  199. .name = "intel-hid",
  200. .acpi_match_table = intel_hid_ids,
  201. .pm = &intel_hid_pl_pm_ops,
  202. },
  203. .probe = intel_hid_probe,
  204. .remove = intel_hid_remove,
  205. };
  206. MODULE_DEVICE_TABLE(acpi, intel_hid_ids);
  207. /*
  208. * Unfortunately, some laptops provide a _HID="INT33D5" device with
  209. * _CID="PNP0C02". This causes the pnpacpi scan driver to claim the
  210. * ACPI node, so no platform device will be created. The pnpacpi
  211. * driver rejects this device in subsequent processing, so no physical
  212. * node is created at all.
  213. *
  214. * As a workaround until the ACPI core figures out how to handle
  215. * this corner case, manually ask the ACPI platform device code to
  216. * claim the ACPI node.
  217. */
  218. static acpi_status __init
  219. check_acpi_dev(acpi_handle handle, u32 lvl, void *context, void **rv)
  220. {
  221. const struct acpi_device_id *ids = context;
  222. struct acpi_device *dev;
  223. if (acpi_bus_get_device(handle, &dev) != 0)
  224. return AE_OK;
  225. if (acpi_match_device_ids(dev, ids) == 0)
  226. if (acpi_create_platform_device(dev))
  227. dev_info(&dev->dev,
  228. "intel-hid: created platform device\n");
  229. return AE_OK;
  230. }
  231. static int __init intel_hid_init(void)
  232. {
  233. acpi_walk_namespace(ACPI_TYPE_DEVICE, ACPI_ROOT_OBJECT,
  234. ACPI_UINT32_MAX, check_acpi_dev, NULL,
  235. (void *)intel_hid_ids, NULL);
  236. return platform_driver_register(&intel_hid_pl_driver);
  237. }
  238. module_init(intel_hid_init);
  239. static void __exit intel_hid_exit(void)
  240. {
  241. platform_driver_unregister(&intel_hid_pl_driver);
  242. }
  243. module_exit(intel_hid_exit);