intel-hid.c 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595
  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/acpi.h>
  19. #include <linux/dmi.h>
  20. #include <linux/input.h>
  21. #include <linux/input/sparse-keymap.h>
  22. #include <linux/kernel.h>
  23. #include <linux/module.h>
  24. #include <linux/platform_device.h>
  25. #include <linux/suspend.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_KEY, 0xC8, { KEY_ROTATE_LOCK_TOGGLE } }, /* Press */
  64. { KE_IGNORE, 0xC9, { KEY_ROTATE_LOCK_TOGGLE } }, /* Release */
  65. { KE_KEY, 0xCE, { KEY_POWER } }, /* Press */
  66. { KE_IGNORE, 0xCF, { KEY_POWER } }, /* Release */
  67. { KE_END },
  68. };
  69. static const struct dmi_system_id button_array_table[] = {
  70. {
  71. .ident = "Wacom MobileStudio Pro 13",
  72. .matches = {
  73. DMI_MATCH(DMI_SYS_VENDOR, "Wacom Co.,Ltd"),
  74. DMI_MATCH(DMI_PRODUCT_NAME, "Wacom MobileStudio Pro 13"),
  75. },
  76. },
  77. {
  78. .ident = "Wacom MobileStudio Pro 16",
  79. .matches = {
  80. DMI_MATCH(DMI_SYS_VENDOR, "Wacom Co.,Ltd"),
  81. DMI_MATCH(DMI_PRODUCT_NAME, "Wacom MobileStudio Pro 16"),
  82. },
  83. },
  84. {
  85. .ident = "HP Spectre x2 (2015)",
  86. .matches = {
  87. DMI_MATCH(DMI_SYS_VENDOR, "HP"),
  88. DMI_MATCH(DMI_PRODUCT_NAME, "HP Spectre x2 Detachable"),
  89. },
  90. },
  91. {
  92. .ident = "Lenovo ThinkPad X1 Tablet Gen 2",
  93. .matches = {
  94. DMI_MATCH(DMI_SYS_VENDOR, "LENOVO"),
  95. DMI_MATCH(DMI_PRODUCT_FAMILY, "ThinkPad X1 Tablet Gen 2"),
  96. },
  97. },
  98. { }
  99. };
  100. struct intel_hid_priv {
  101. struct input_dev *input_dev;
  102. struct input_dev *array;
  103. bool wakeup_mode;
  104. };
  105. #define HID_EVENT_FILTER_UUID "eeec56b3-4442-408f-a792-4edd4d758054"
  106. enum intel_hid_dsm_fn_codes {
  107. INTEL_HID_DSM_FN_INVALID,
  108. INTEL_HID_DSM_BTNL_FN,
  109. INTEL_HID_DSM_HDMM_FN,
  110. INTEL_HID_DSM_HDSM_FN,
  111. INTEL_HID_DSM_HDEM_FN,
  112. INTEL_HID_DSM_BTNS_FN,
  113. INTEL_HID_DSM_BTNE_FN,
  114. INTEL_HID_DSM_HEBC_V1_FN,
  115. INTEL_HID_DSM_VGBS_FN,
  116. INTEL_HID_DSM_HEBC_V2_FN,
  117. INTEL_HID_DSM_FN_MAX
  118. };
  119. static const char *intel_hid_dsm_fn_to_method[INTEL_HID_DSM_FN_MAX] = {
  120. NULL,
  121. "BTNL",
  122. "HDMM",
  123. "HDSM",
  124. "HDEM",
  125. "BTNS",
  126. "BTNE",
  127. "HEBC",
  128. "VGBS",
  129. "HEBC"
  130. };
  131. static unsigned long long intel_hid_dsm_fn_mask;
  132. static guid_t intel_dsm_guid;
  133. static bool intel_hid_execute_method(acpi_handle handle,
  134. enum intel_hid_dsm_fn_codes fn_index,
  135. unsigned long long arg)
  136. {
  137. union acpi_object *obj, argv4, req;
  138. acpi_status status;
  139. char *method_name;
  140. if (fn_index <= INTEL_HID_DSM_FN_INVALID ||
  141. fn_index >= INTEL_HID_DSM_FN_MAX)
  142. return false;
  143. method_name = (char *)intel_hid_dsm_fn_to_method[fn_index];
  144. if (!(intel_hid_dsm_fn_mask & fn_index))
  145. goto skip_dsm_exec;
  146. /* All methods expects a package with one integer element */
  147. req.type = ACPI_TYPE_INTEGER;
  148. req.integer.value = arg;
  149. argv4.type = ACPI_TYPE_PACKAGE;
  150. argv4.package.count = 1;
  151. argv4.package.elements = &req;
  152. obj = acpi_evaluate_dsm(handle, &intel_dsm_guid, 1, fn_index, &argv4);
  153. if (obj) {
  154. acpi_handle_debug(handle, "Exec DSM Fn code: %d[%s] success\n",
  155. fn_index, method_name);
  156. ACPI_FREE(obj);
  157. return true;
  158. }
  159. skip_dsm_exec:
  160. status = acpi_execute_simple_method(handle, method_name, arg);
  161. if (ACPI_SUCCESS(status))
  162. return true;
  163. return false;
  164. }
  165. static bool intel_hid_evaluate_method(acpi_handle handle,
  166. enum intel_hid_dsm_fn_codes fn_index,
  167. unsigned long long *result)
  168. {
  169. union acpi_object *obj;
  170. acpi_status status;
  171. char *method_name;
  172. if (fn_index <= INTEL_HID_DSM_FN_INVALID ||
  173. fn_index >= INTEL_HID_DSM_FN_MAX)
  174. return false;
  175. method_name = (char *)intel_hid_dsm_fn_to_method[fn_index];
  176. if (!(intel_hid_dsm_fn_mask & fn_index))
  177. goto skip_dsm_eval;
  178. obj = acpi_evaluate_dsm_typed(handle, &intel_dsm_guid,
  179. 1, fn_index,
  180. NULL, ACPI_TYPE_INTEGER);
  181. if (obj) {
  182. *result = obj->integer.value;
  183. acpi_handle_debug(handle,
  184. "Eval DSM Fn code: %d[%s] results: 0x%llx\n",
  185. fn_index, method_name, *result);
  186. ACPI_FREE(obj);
  187. return true;
  188. }
  189. skip_dsm_eval:
  190. status = acpi_evaluate_integer(handle, method_name, NULL, result);
  191. if (ACPI_SUCCESS(status))
  192. return true;
  193. return false;
  194. }
  195. static void intel_hid_init_dsm(acpi_handle handle)
  196. {
  197. union acpi_object *obj;
  198. guid_parse(HID_EVENT_FILTER_UUID, &intel_dsm_guid);
  199. obj = acpi_evaluate_dsm_typed(handle, &intel_dsm_guid, 1, 0, NULL,
  200. ACPI_TYPE_BUFFER);
  201. if (obj) {
  202. intel_hid_dsm_fn_mask = *obj->buffer.pointer;
  203. ACPI_FREE(obj);
  204. }
  205. acpi_handle_debug(handle, "intel_hid_dsm_fn_mask = %llx\n",
  206. intel_hid_dsm_fn_mask);
  207. }
  208. static int intel_hid_set_enable(struct device *device, bool enable)
  209. {
  210. acpi_handle handle = ACPI_HANDLE(device);
  211. /* Enable|disable features - power button is always enabled */
  212. if (!intel_hid_execute_method(handle, INTEL_HID_DSM_HDSM_FN,
  213. enable)) {
  214. dev_warn(device, "failed to %sable hotkeys\n",
  215. enable ? "en" : "dis");
  216. return -EIO;
  217. }
  218. return 0;
  219. }
  220. static void intel_button_array_enable(struct device *device, bool enable)
  221. {
  222. struct intel_hid_priv *priv = dev_get_drvdata(device);
  223. acpi_handle handle = ACPI_HANDLE(device);
  224. unsigned long long button_cap;
  225. acpi_status status;
  226. if (!priv->array)
  227. return;
  228. /* Query supported platform features */
  229. status = acpi_evaluate_integer(handle, "BTNC", NULL, &button_cap);
  230. if (ACPI_FAILURE(status)) {
  231. dev_warn(device, "failed to get button capability\n");
  232. return;
  233. }
  234. /* Enable|disable features - power button is always enabled */
  235. if (!intel_hid_execute_method(handle, INTEL_HID_DSM_BTNE_FN,
  236. enable ? button_cap : 1))
  237. dev_warn(device, "failed to set button capability\n");
  238. }
  239. static int intel_hid_pm_prepare(struct device *device)
  240. {
  241. struct intel_hid_priv *priv = dev_get_drvdata(device);
  242. priv->wakeup_mode = true;
  243. return 0;
  244. }
  245. static int intel_hid_pl_suspend_handler(struct device *device)
  246. {
  247. if (pm_suspend_via_firmware()) {
  248. intel_hid_set_enable(device, false);
  249. intel_button_array_enable(device, false);
  250. }
  251. return 0;
  252. }
  253. static int intel_hid_pl_resume_handler(struct device *device)
  254. {
  255. struct intel_hid_priv *priv = dev_get_drvdata(device);
  256. priv->wakeup_mode = false;
  257. if (pm_resume_via_firmware()) {
  258. intel_hid_set_enable(device, true);
  259. intel_button_array_enable(device, true);
  260. }
  261. return 0;
  262. }
  263. static const struct dev_pm_ops intel_hid_pl_pm_ops = {
  264. .prepare = intel_hid_pm_prepare,
  265. .freeze = intel_hid_pl_suspend_handler,
  266. .thaw = intel_hid_pl_resume_handler,
  267. .restore = intel_hid_pl_resume_handler,
  268. .suspend = intel_hid_pl_suspend_handler,
  269. .resume = intel_hid_pl_resume_handler,
  270. };
  271. static int intel_hid_input_setup(struct platform_device *device)
  272. {
  273. struct intel_hid_priv *priv = dev_get_drvdata(&device->dev);
  274. int ret;
  275. priv->input_dev = devm_input_allocate_device(&device->dev);
  276. if (!priv->input_dev)
  277. return -ENOMEM;
  278. ret = sparse_keymap_setup(priv->input_dev, intel_hid_keymap, NULL);
  279. if (ret)
  280. return ret;
  281. priv->input_dev->name = "Intel HID events";
  282. priv->input_dev->id.bustype = BUS_HOST;
  283. return input_register_device(priv->input_dev);
  284. }
  285. static int intel_button_array_input_setup(struct platform_device *device)
  286. {
  287. struct intel_hid_priv *priv = dev_get_drvdata(&device->dev);
  288. int ret;
  289. /* Setup input device for 5 button array */
  290. priv->array = devm_input_allocate_device(&device->dev);
  291. if (!priv->array)
  292. return -ENOMEM;
  293. ret = sparse_keymap_setup(priv->array, intel_array_keymap, NULL);
  294. if (ret)
  295. return ret;
  296. priv->array->name = "Intel HID 5 button array";
  297. priv->array->id.bustype = BUS_HOST;
  298. return input_register_device(priv->array);
  299. }
  300. static void notify_handler(acpi_handle handle, u32 event, void *context)
  301. {
  302. struct platform_device *device = context;
  303. struct intel_hid_priv *priv = dev_get_drvdata(&device->dev);
  304. unsigned long long ev_index;
  305. if (priv->wakeup_mode) {
  306. /*
  307. * Needed for wakeup from suspend-to-idle to work on some
  308. * platforms that don't expose the 5-button array, but still
  309. * send notifies with the power button event code to this
  310. * device object on power button actions while suspended.
  311. */
  312. if (event == 0xce)
  313. goto wakeup;
  314. /* Wake up on 5-button array events only. */
  315. if (event == 0xc0 || !priv->array)
  316. return;
  317. if (!sparse_keymap_entry_from_scancode(priv->array, event)) {
  318. dev_info(&device->dev, "unknown event 0x%x\n", event);
  319. return;
  320. }
  321. wakeup:
  322. pm_wakeup_hard_event(&device->dev);
  323. return;
  324. }
  325. /*
  326. * Needed for suspend to work on some platforms that don't expose
  327. * the 5-button array, but still send notifies with power button
  328. * event code to this device object on power button actions.
  329. *
  330. * Report the power button press and release.
  331. */
  332. if (!priv->array) {
  333. if (event == 0xce) {
  334. input_report_key(priv->input_dev, KEY_POWER, 1);
  335. input_sync(priv->input_dev);
  336. return;
  337. }
  338. if (event == 0xcf) {
  339. input_report_key(priv->input_dev, KEY_POWER, 0);
  340. input_sync(priv->input_dev);
  341. return;
  342. }
  343. }
  344. /* 0xC0 is for HID events, other values are for 5 button array */
  345. if (event != 0xc0) {
  346. if (!priv->array ||
  347. !sparse_keymap_report_event(priv->array, event, 1, true))
  348. dev_dbg(&device->dev, "unknown event 0x%x\n", event);
  349. return;
  350. }
  351. if (!intel_hid_evaluate_method(handle, INTEL_HID_DSM_HDEM_FN,
  352. &ev_index)) {
  353. dev_warn(&device->dev, "failed to get event index\n");
  354. return;
  355. }
  356. if (!sparse_keymap_report_event(priv->input_dev, ev_index, 1, true))
  357. dev_dbg(&device->dev, "unknown event index 0x%llx\n",
  358. ev_index);
  359. }
  360. static bool button_array_present(struct platform_device *device)
  361. {
  362. acpi_handle handle = ACPI_HANDLE(&device->dev);
  363. unsigned long long event_cap;
  364. if (intel_hid_evaluate_method(handle, INTEL_HID_DSM_HEBC_V2_FN,
  365. &event_cap)) {
  366. /* Check presence of 5 button array or v2 power button */
  367. if (event_cap & 0x60000)
  368. return true;
  369. }
  370. if (intel_hid_evaluate_method(handle, INTEL_HID_DSM_HEBC_V1_FN,
  371. &event_cap)) {
  372. if (event_cap & 0x20000)
  373. return true;
  374. }
  375. if (dmi_check_system(button_array_table))
  376. return true;
  377. return false;
  378. }
  379. static int intel_hid_probe(struct platform_device *device)
  380. {
  381. acpi_handle handle = ACPI_HANDLE(&device->dev);
  382. unsigned long long mode;
  383. struct intel_hid_priv *priv;
  384. acpi_status status;
  385. int err;
  386. intel_hid_init_dsm(handle);
  387. if (!intel_hid_evaluate_method(handle, INTEL_HID_DSM_HDMM_FN, &mode)) {
  388. dev_warn(&device->dev, "failed to read mode\n");
  389. return -ENODEV;
  390. }
  391. if (mode != 0) {
  392. /*
  393. * This driver only implements "simple" mode. There appear
  394. * to be no other modes, but we should be paranoid and check
  395. * for compatibility.
  396. */
  397. dev_info(&device->dev, "platform is not in simple mode\n");
  398. return -ENODEV;
  399. }
  400. priv = devm_kzalloc(&device->dev, sizeof(*priv), GFP_KERNEL);
  401. if (!priv)
  402. return -ENOMEM;
  403. dev_set_drvdata(&device->dev, priv);
  404. err = intel_hid_input_setup(device);
  405. if (err) {
  406. pr_err("Failed to setup Intel HID hotkeys\n");
  407. return err;
  408. }
  409. /* Setup 5 button array */
  410. if (button_array_present(device)) {
  411. dev_info(&device->dev, "platform supports 5 button array\n");
  412. err = intel_button_array_input_setup(device);
  413. if (err)
  414. pr_err("Failed to setup Intel 5 button array hotkeys\n");
  415. }
  416. status = acpi_install_notify_handler(handle,
  417. ACPI_DEVICE_NOTIFY,
  418. notify_handler,
  419. device);
  420. if (ACPI_FAILURE(status))
  421. return -EBUSY;
  422. err = intel_hid_set_enable(&device->dev, true);
  423. if (err)
  424. goto err_remove_notify;
  425. if (priv->array) {
  426. unsigned long long dummy;
  427. intel_button_array_enable(&device->dev, true);
  428. /* Call button load method to enable HID power button */
  429. if (!intel_hid_evaluate_method(handle, INTEL_HID_DSM_BTNL_FN,
  430. &dummy)) {
  431. dev_warn(&device->dev,
  432. "failed to enable HID power button\n");
  433. }
  434. }
  435. device_init_wakeup(&device->dev, true);
  436. return 0;
  437. err_remove_notify:
  438. acpi_remove_notify_handler(handle, ACPI_DEVICE_NOTIFY, notify_handler);
  439. return err;
  440. }
  441. static int intel_hid_remove(struct platform_device *device)
  442. {
  443. acpi_handle handle = ACPI_HANDLE(&device->dev);
  444. device_init_wakeup(&device->dev, false);
  445. acpi_remove_notify_handler(handle, ACPI_DEVICE_NOTIFY, notify_handler);
  446. intel_hid_set_enable(&device->dev, false);
  447. intel_button_array_enable(&device->dev, false);
  448. /*
  449. * Even if we failed to shut off the event stream, we can still
  450. * safely detach from the device.
  451. */
  452. return 0;
  453. }
  454. static struct platform_driver intel_hid_pl_driver = {
  455. .driver = {
  456. .name = "intel-hid",
  457. .acpi_match_table = intel_hid_ids,
  458. .pm = &intel_hid_pl_pm_ops,
  459. },
  460. .probe = intel_hid_probe,
  461. .remove = intel_hid_remove,
  462. };
  463. MODULE_DEVICE_TABLE(acpi, intel_hid_ids);
  464. /*
  465. * Unfortunately, some laptops provide a _HID="INT33D5" device with
  466. * _CID="PNP0C02". This causes the pnpacpi scan driver to claim the
  467. * ACPI node, so no platform device will be created. The pnpacpi
  468. * driver rejects this device in subsequent processing, so no physical
  469. * node is created at all.
  470. *
  471. * As a workaround until the ACPI core figures out how to handle
  472. * this corner case, manually ask the ACPI platform device code to
  473. * claim the ACPI node.
  474. */
  475. static acpi_status __init
  476. check_acpi_dev(acpi_handle handle, u32 lvl, void *context, void **rv)
  477. {
  478. const struct acpi_device_id *ids = context;
  479. struct acpi_device *dev;
  480. if (acpi_bus_get_device(handle, &dev) != 0)
  481. return AE_OK;
  482. if (acpi_match_device_ids(dev, ids) == 0)
  483. if (!IS_ERR_OR_NULL(acpi_create_platform_device(dev, NULL)))
  484. dev_info(&dev->dev,
  485. "intel-hid: created platform device\n");
  486. return AE_OK;
  487. }
  488. static int __init intel_hid_init(void)
  489. {
  490. acpi_walk_namespace(ACPI_TYPE_DEVICE, ACPI_ROOT_OBJECT,
  491. ACPI_UINT32_MAX, check_acpi_dev, NULL,
  492. (void *)intel_hid_ids, NULL);
  493. return platform_driver_register(&intel_hid_pl_driver);
  494. }
  495. module_init(intel_hid_init);
  496. static void __exit intel_hid_exit(void)
  497. {
  498. platform_driver_unregister(&intel_hid_pl_driver);
  499. }
  500. module_exit(intel_hid_exit);