1 // SPDX-License-Identifier: GPL-2.0-or-later
3 * toshiba_wmi.c - Toshiba WMI Hotkey Driver
8 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
10 #include <linux/kernel.h>
11 #include <linux/module.h>
12 #include <linux/init.h>
13 #include <linux/types.h>
14 #include <linux/acpi.h>
15 #include <linux/input.h>
16 #include <linux/input/sparse-keymap.h>
17 #include <linux/dmi.h>
19 MODULE_AUTHOR("Azael Avalos");
20 MODULE_DESCRIPTION("Toshiba WMI Hotkey Driver");
21 MODULE_LICENSE("GPL");
23 #define WMI_EVENT_GUID "59142400-C6A3-40FA-BADB-8A2652834100"
25 MODULE_ALIAS("wmi:"WMI_EVENT_GUID);
27 static struct input_dev *toshiba_wmi_input_dev;
29 static const struct key_entry toshiba_wmi_keymap[] __initconst = {
30 /* TODO: Add keymap values once found... */
31 /*{ KE_KEY, 0x00, { KEY_ } },*/
35 static void toshiba_wmi_notify(u32 value, void *context)
37 struct acpi_buffer response = { ACPI_ALLOCATE_BUFFER, NULL };
38 union acpi_object *obj;
41 status = wmi_get_event_data(value, &response);
42 if (ACPI_FAILURE(status)) {
43 pr_err("Bad event status 0x%x\n", status);
47 obj = (union acpi_object *)response.pointer;
51 /* TODO: Add proper checks once we have data */
52 pr_debug("Unknown event received, obj type %x\n", obj->type);
54 kfree(response.pointer);
57 static const struct dmi_system_id toshiba_wmi_dmi_table[] __initconst = {
59 .ident = "Toshiba laptop",
61 DMI_MATCH(DMI_SYS_VENDOR, "TOSHIBA"),
67 static int __init toshiba_wmi_input_setup(void)
72 toshiba_wmi_input_dev = input_allocate_device();
73 if (!toshiba_wmi_input_dev)
76 toshiba_wmi_input_dev->name = "Toshiba WMI hotkeys";
77 toshiba_wmi_input_dev->phys = "wmi/input0";
78 toshiba_wmi_input_dev->id.bustype = BUS_HOST;
80 err = sparse_keymap_setup(toshiba_wmi_input_dev,
81 toshiba_wmi_keymap, NULL);
85 status = wmi_install_notify_handler(WMI_EVENT_GUID,
86 toshiba_wmi_notify, NULL);
87 if (ACPI_FAILURE(status)) {
92 err = input_register_device(toshiba_wmi_input_dev);
94 goto err_remove_notifier;
99 wmi_remove_notify_handler(WMI_EVENT_GUID);
101 input_free_device(toshiba_wmi_input_dev);
105 static void toshiba_wmi_input_destroy(void)
107 wmi_remove_notify_handler(WMI_EVENT_GUID);
108 input_unregister_device(toshiba_wmi_input_dev);
111 static int __init toshiba_wmi_init(void)
115 if (!wmi_has_guid(WMI_EVENT_GUID) ||
116 !dmi_check_system(toshiba_wmi_dmi_table))
119 ret = toshiba_wmi_input_setup();
121 pr_err("Failed to setup input device\n");
125 pr_info("Toshiba WMI Hotkey Driver\n");
130 static void __exit toshiba_wmi_exit(void)
132 if (wmi_has_guid(WMI_EVENT_GUID))
133 toshiba_wmi_input_destroy();
136 module_init(toshiba_wmi_init);
137 module_exit(toshiba_wmi_exit);