2 * hp-wireless button for Windows 8
4 * Copyright (C) 2014 Alex Hung <alex.hung@canonical.com>
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License along
17 * with this program; if not, write to the Free Software Foundation, Inc.,
18 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
21 #include <linux/kernel.h>
22 #include <linux/module.h>
23 #include <linux/init.h>
24 #include <linux/input.h>
25 #include <linux/platform_device.h>
26 #include <linux/acpi.h>
27 #include <acpi/acpi_bus.h>
29 MODULE_LICENSE("GPL");
30 MODULE_AUTHOR("Alex Hung");
31 MODULE_ALIAS("acpi*:HPQ6001:*");
33 static struct input_dev *hpwl_input_dev;
35 static const struct acpi_device_id hpwl_ids[] = {
40 static int hp_wireless_input_setup(void)
44 hpwl_input_dev = input_allocate_device();
48 hpwl_input_dev->name = "HP Wireless hotkeys";
49 hpwl_input_dev->phys = "hpq6001/input0";
50 hpwl_input_dev->id.bustype = BUS_HOST;
51 hpwl_input_dev->evbit[0] = BIT(EV_KEY);
52 set_bit(KEY_RFKILL, hpwl_input_dev->keybit);
54 err = input_register_device(hpwl_input_dev);
61 input_free_device(hpwl_input_dev);
65 static void hp_wireless_input_destroy(void)
67 input_unregister_device(hpwl_input_dev);
70 static void hpwl_notify(struct acpi_device *acpi_dev, u32 event)
73 pr_info("Received unknown event (0x%x)\n", event);
77 input_report_key(hpwl_input_dev, KEY_RFKILL, 1);
78 input_sync(hpwl_input_dev);
79 input_report_key(hpwl_input_dev, KEY_RFKILL, 0);
80 input_sync(hpwl_input_dev);
83 static int hpwl_add(struct acpi_device *device)
87 err = hp_wireless_input_setup();
89 pr_err("Failed to setup hp wireless hotkeys\n");
94 static int hpwl_remove(struct acpi_device *device)
96 hp_wireless_input_destroy();
100 static struct acpi_driver hpwl_driver = {
101 .name = "hp-wireless",
102 .owner = THIS_MODULE,
106 .remove = hpwl_remove,
107 .notify = hpwl_notify,
111 static int __init hpwl_init(void)
115 pr_info("Initializing HPQ6001 module\n");
116 err = acpi_bus_register_driver(&hpwl_driver);
118 pr_err("Unable to register HP wireless control driver.\n");
123 static void __exit hpwl_exit(void)
125 pr_info("Exiting HPQ6001 module\n");
126 acpi_bus_unregister_driver(&hpwl_driver);
129 module_init(hpwl_init);
130 module_exit(hpwl_exit);