drivers/iio/adc/at91_adc.c: use clk_prepare_enable and clk_disable_unprepare
[linux-2.6/btrfs-unstable.git] / drivers / platform / x86 / dell-wmi-aio.c
blob3f945457f71c218116e7f8eb9d4a7400fcdc8b62
1 /*
2 * WMI hotkeys support for Dell All-In-One series
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
21 #include <linux/kernel.h>
22 #include <linux/module.h>
23 #include <linux/init.h>
24 #include <linux/types.h>
25 #include <linux/input.h>
26 #include <linux/input/sparse-keymap.h>
27 #include <acpi/acpi_drivers.h>
28 #include <linux/acpi.h>
29 #include <linux/string.h>
31 MODULE_DESCRIPTION("WMI hotkeys driver for Dell All-In-One series");
32 MODULE_LICENSE("GPL");
34 #define EVENT_GUID1 "284A0E6B-380E-472A-921F-E52786257FB4"
35 #define EVENT_GUID2 "02314822-307C-4F66-BF0E-48AEAEB26CC8"
37 static const char *dell_wmi_aio_guids[] = {
38 EVENT_GUID1,
39 EVENT_GUID2,
40 NULL
43 MODULE_ALIAS("wmi:"EVENT_GUID1);
44 MODULE_ALIAS("wmi:"EVENT_GUID2);
46 static const struct key_entry dell_wmi_aio_keymap[] = {
47 { KE_KEY, 0xc0, { KEY_VOLUMEUP } },
48 { KE_KEY, 0xc1, { KEY_VOLUMEDOWN } },
49 { KE_END, 0 }
52 static struct input_dev *dell_wmi_aio_input_dev;
54 static void dell_wmi_aio_notify(u32 value, void *context)
56 struct acpi_buffer response = { ACPI_ALLOCATE_BUFFER, NULL };
57 union acpi_object *obj;
58 acpi_status status;
60 status = wmi_get_event_data(value, &response);
61 if (status != AE_OK) {
62 pr_info("bad event status 0x%x\n", status);
63 return;
66 obj = (union acpi_object *)response.pointer;
67 if (obj) {
68 unsigned int scancode;
70 switch (obj->type) {
71 case ACPI_TYPE_INTEGER:
72 /* Most All-In-One correctly return integer scancode */
73 scancode = obj->integer.value;
74 sparse_keymap_report_event(dell_wmi_aio_input_dev,
75 scancode, 1, true);
76 break;
77 case ACPI_TYPE_BUFFER:
78 /* Broken machines return the scancode in a buffer */
79 if (obj->buffer.pointer && obj->buffer.length > 0) {
80 scancode = obj->buffer.pointer[0];
81 sparse_keymap_report_event(
82 dell_wmi_aio_input_dev,
83 scancode, 1, true);
85 break;
88 kfree(obj);
91 static int __init dell_wmi_aio_input_setup(void)
93 int err;
95 dell_wmi_aio_input_dev = input_allocate_device();
97 if (!dell_wmi_aio_input_dev)
98 return -ENOMEM;
100 dell_wmi_aio_input_dev->name = "Dell AIO WMI hotkeys";
101 dell_wmi_aio_input_dev->phys = "wmi/input0";
102 dell_wmi_aio_input_dev->id.bustype = BUS_HOST;
104 err = sparse_keymap_setup(dell_wmi_aio_input_dev,
105 dell_wmi_aio_keymap, NULL);
106 if (err) {
107 pr_err("Unable to setup input device keymap\n");
108 goto err_free_dev;
110 err = input_register_device(dell_wmi_aio_input_dev);
111 if (err) {
112 pr_info("Unable to register input device\n");
113 goto err_free_keymap;
115 return 0;
117 err_free_keymap:
118 sparse_keymap_free(dell_wmi_aio_input_dev);
119 err_free_dev:
120 input_free_device(dell_wmi_aio_input_dev);
121 return err;
124 static const char *dell_wmi_aio_find(void)
126 int i;
128 for (i = 0; dell_wmi_aio_guids[i] != NULL; i++)
129 if (wmi_has_guid(dell_wmi_aio_guids[i]))
130 return dell_wmi_aio_guids[i];
132 return NULL;
135 static int __init dell_wmi_aio_init(void)
137 int err;
138 const char *guid;
140 guid = dell_wmi_aio_find();
141 if (!guid) {
142 pr_warn("No known WMI GUID found\n");
143 return -ENXIO;
146 err = dell_wmi_aio_input_setup();
147 if (err)
148 return err;
150 err = wmi_install_notify_handler(guid, dell_wmi_aio_notify, NULL);
151 if (err) {
152 pr_err("Unable to register notify handler - %d\n", err);
153 sparse_keymap_free(dell_wmi_aio_input_dev);
154 input_unregister_device(dell_wmi_aio_input_dev);
155 return err;
158 return 0;
161 static void __exit dell_wmi_aio_exit(void)
163 const char *guid;
165 guid = dell_wmi_aio_find();
166 wmi_remove_notify_handler(guid);
167 sparse_keymap_free(dell_wmi_aio_input_dev);
168 input_unregister_device(dell_wmi_aio_input_dev);
171 module_init(dell_wmi_aio_init);
172 module_exit(dell_wmi_aio_exit);