2 * PEAQ 2-in-1 WMI hotkey driver
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License version 2 as
7 * published by the Free Software Foundation.
10 #include <linux/acpi.h>
11 #include <linux/input-polldev.h>
12 #include <linux/kernel.h>
13 #include <linux/module.h>
15 #define PEAQ_DOLBY_BUTTON_GUID "ABBC0F6F-8EA1-11D1-00A0-C90629100000"
16 #define PEAQ_DOLBY_BUTTON_METHOD_ID 5
17 #define PEAQ_POLL_INTERVAL_MS 250
18 #define PEAQ_POLL_IGNORE_MS 500
19 #define PEAQ_POLL_MAX_MS 1000
21 MODULE_ALIAS("wmi:"PEAQ_DOLBY_BUTTON_GUID);
23 static unsigned int peaq_ignore_events_counter;
24 static struct input_polled_dev *peaq_poll_dev;
27 * The Dolby button (yes really a Dolby button) causes an ACPI variable to get
28 * set on both press and release. The WMI method checks and clears that flag.
29 * So for a press + release we will get back One from the WMI method either once
30 * (if polling after the release) or twice (polling between press and release).
31 * We ignore events for 0.5s after the first event to avoid reporting 2 presses.
33 static void peaq_wmi_poll(struct input_polled_dev *dev)
35 union acpi_object obj;
39 struct acpi_buffer input = { sizeof(dummy), &dummy };
40 struct acpi_buffer output = { sizeof(obj), &obj };
42 status = wmi_evaluate_method(PEAQ_DOLBY_BUTTON_GUID, 1,
43 PEAQ_DOLBY_BUTTON_METHOD_ID,
45 if (ACPI_FAILURE(status))
48 if (obj.type != ACPI_TYPE_INTEGER) {
49 dev_err(&peaq_poll_dev->input->dev,
50 "Error WMBC did not return an integer\n");
54 if (peaq_ignore_events_counter && --peaq_ignore_events_counter >= 0)
57 if (obj.integer.value) {
58 input_event(peaq_poll_dev->input, EV_KEY, KEY_SOUND, 1);
59 input_sync(peaq_poll_dev->input);
60 input_event(peaq_poll_dev->input, EV_KEY, KEY_SOUND, 0);
61 input_sync(peaq_poll_dev->input);
62 peaq_ignore_events_counter = max(1u,
63 PEAQ_POLL_IGNORE_MS / peaq_poll_dev->poll_interval);
67 static int __init peaq_wmi_init(void)
69 if (!wmi_has_guid(PEAQ_DOLBY_BUTTON_GUID))
72 peaq_poll_dev = input_allocate_polled_device();
76 peaq_poll_dev->poll = peaq_wmi_poll;
77 peaq_poll_dev->poll_interval = PEAQ_POLL_INTERVAL_MS;
78 peaq_poll_dev->poll_interval_max = PEAQ_POLL_MAX_MS;
79 peaq_poll_dev->input->name = "PEAQ WMI hotkeys";
80 peaq_poll_dev->input->phys = "wmi/input0";
81 peaq_poll_dev->input->id.bustype = BUS_HOST;
82 input_set_capability(peaq_poll_dev->input, EV_KEY, KEY_SOUND);
84 return input_register_polled_device(peaq_poll_dev);
87 static void __exit peaq_wmi_exit(void)
89 if (!wmi_has_guid(PEAQ_DOLBY_BUTTON_GUID))
92 input_unregister_polled_device(peaq_poll_dev);
95 module_init(peaq_wmi_init);
96 module_exit(peaq_wmi_exit);
98 MODULE_DESCRIPTION("PEAQ 2-in-1 WMI hotkey driver");
100 MODULE_LICENSE("GPL");