blob: 75e422b2753115f838e840a81760ed001fa1f41b [file] [log] [blame]
Thomas Renningerd12d8ba2009-12-10 14:18:13 +01001/*
2 * MSI WMI hotkeys
3 *
4 * Copyright (C) 2009 Novell <trenn@suse.de>
5 *
6 * Most stuff taken over from hp-wmi
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21 */
22
23
24
25#include <linux/kernel.h>
Thomas Renningerd12d8ba2009-12-10 14:18:13 +010026#include <linux/input.h>
Thomas Renningerd12d8ba2009-12-10 14:18:13 +010027#include <linux/acpi.h>
Thomas Renningerd12d8ba2009-12-10 14:18:13 +010028#include <linux/backlight.h>
29
30MODULE_AUTHOR("Thomas Renninger <trenn@suse.de>");
31MODULE_DESCRIPTION("MSI laptop WMI hotkeys driver");
32MODULE_LICENSE("GPL");
33
Thomas Renningerd12d8ba2009-12-10 14:18:13 +010034MODULE_ALIAS("wmi:551A1F84-FBDD-4125-91DB-3EA8F44F1D45");
35MODULE_ALIAS("wmi:B6F3EEF2-3D2F-49DC-9DE3-85BCE18C62F2");
36
37/* Temporary workaround until the WMI sysfs interface goes in
38 { "svn", DMI_SYS_VENDOR },
39 { "pn", DMI_PRODUCT_NAME },
40 { "pvr", DMI_PRODUCT_VERSION },
41 { "rvn", DMI_BOARD_VENDOR },
42 { "rn", DMI_BOARD_NAME },
43*/
44
45MODULE_ALIAS("dmi:*:svnMICRO-STARINTERNATIONAL*:pnMS-6638:*");
46
47#define DRV_NAME "msi-wmi"
48#define DRV_PFX DRV_NAME ": "
49
50#define MSIWMI_BIOS_GUID "551A1F84-FBDD-4125-91DB-3EA8F44F1D45"
51#define MSIWMI_EVENT_GUID "B6F3EEF2-3D2F-49DC-9DE3-85BCE18C62F2"
52
Anisse Astier822ddc02009-12-10 14:18:16 +010053#define dprintk(msg...) pr_debug(DRV_PFX msg)
Thomas Renningerd12d8ba2009-12-10 14:18:13 +010054
55struct key_entry {
56 char type; /* See KE_* below */
57 u16 code;
58 u16 keycode;
59 int instance;
60 ktime_t last_pressed;
61};
62
63/*
64 * KE_KEY the only used key type, but keep this, others might also
65 * show up in the future. Compare with hp-wmi.c
66 */
67enum { KE_KEY, KE_END };
68
69static struct key_entry msi_wmi_keymap[] = {
70 { KE_KEY, 0xd0, KEY_BRIGHTNESSUP, 0, {0, } },
71 { KE_KEY, 0xd1, KEY_BRIGHTNESSDOWN, 1, {0, } },
72 { KE_KEY, 0xd2, KEY_VOLUMEUP, 2, {0, } },
73 { KE_KEY, 0xd3, KEY_VOLUMEDOWN, 3, {0, } },
74 { KE_END, 0}
75};
76
77struct backlight_device *backlight;
78
79static int backlight_map[] = { 0x00, 0x33, 0x66, 0x99, 0xCC, 0xFF };
80
81static struct input_dev *msi_wmi_input_dev;
82
83static int msi_wmi_query_block(int instance, int *ret)
84{
85 acpi_status status;
86 union acpi_object *obj;
87
88 struct acpi_buffer output = { ACPI_ALLOCATE_BUFFER, NULL };
89
90 status = wmi_query_block(MSIWMI_BIOS_GUID, instance, &output);
91
92 obj = output.pointer;
93
94 if (!obj || obj->type != ACPI_TYPE_INTEGER) {
95 if (obj) {
96 printk(KERN_ERR DRV_PFX "query block returned object "
97 "type: %d - buffer length:%d\n", obj->type,
98 obj->type == ACPI_TYPE_BUFFER ?
99 obj->buffer.length : 0);
100 }
101 kfree(obj);
102 return -EINVAL;
103 }
104 *ret = obj->integer.value;
105 kfree(obj);
106 return 0;
107}
108
109static int msi_wmi_set_block(int instance, int value)
110{
111 acpi_status status;
112
113 struct acpi_buffer input = { sizeof(int), &value };
114
115 dprintk("Going to set block of instance: %d - value: %d\n",
116 instance, value);
117
118 status = wmi_set_block(MSIWMI_BIOS_GUID, instance, &input);
119
120 return ACPI_SUCCESS(status) ? 0 : 1;
121}
122
123static int bl_get(struct backlight_device *bd)
124{
125 int level, err, ret = 0;
126
127 /* Instance 1 is "get backlight", cmp with DSDT */
128 err = msi_wmi_query_block(1, &ret);
129 if (err)
130 printk(KERN_ERR DRV_PFX "Could not query backlight: %d\n", err);
131 dprintk("Get: Query block returned: %d\n", ret);
132 for (level = 0; level < ARRAY_SIZE(backlight_map); level++) {
133 if (backlight_map[level] == ret) {
134 dprintk("Current backlight level: 0x%X - index: %d\n",
135 backlight_map[level], level);
136 break;
137 }
138 }
139 if (level == ARRAY_SIZE(backlight_map)) {
140 printk(KERN_ERR DRV_PFX "get: Invalid brightness value: 0x%X\n",
141 ret);
142 return -EINVAL;
143 }
144 return level;
145}
146
147static int bl_set_status(struct backlight_device *bd)
148{
149 int bright = bd->props.brightness;
150 if (bright >= ARRAY_SIZE(backlight_map) || bright < 0)
151 return -EINVAL;
152
153 /* Instance 0 is "set backlight" */
154 return msi_wmi_set_block(0, backlight_map[bright]);
155}
156
157static struct backlight_ops msi_backlight_ops = {
158 .get_brightness = bl_get,
159 .update_status = bl_set_status,
160};
161
162static struct key_entry *msi_wmi_get_entry_by_scancode(int code)
163{
164 struct key_entry *key;
165
166 for (key = msi_wmi_keymap; key->type != KE_END; key++)
167 if (code == key->code)
168 return key;
169
170 return NULL;
171}
172
173static struct key_entry *msi_wmi_get_entry_by_keycode(int keycode)
174{
175 struct key_entry *key;
176
177 for (key = msi_wmi_keymap; key->type != KE_END; key++)
178 if (key->type == KE_KEY && keycode == key->keycode)
179 return key;
180
181 return NULL;
182}
183
184static int msi_wmi_getkeycode(struct input_dev *dev, int scancode, int *keycode)
185{
186 struct key_entry *key = msi_wmi_get_entry_by_scancode(scancode);
187
188 if (key && key->type == KE_KEY) {
189 *keycode = key->keycode;
190 return 0;
191 }
192
193 return -EINVAL;
194}
195
196static int msi_wmi_setkeycode(struct input_dev *dev, int scancode, int keycode)
197{
198 struct key_entry *key;
199 int old_keycode;
200
201 if (keycode < 0 || keycode > KEY_MAX)
202 return -EINVAL;
203
204 key = msi_wmi_get_entry_by_scancode(scancode);
205 if (key && key->type == KE_KEY) {
206 old_keycode = key->keycode;
207 key->keycode = keycode;
208 set_bit(keycode, dev->keybit);
209 if (!msi_wmi_get_entry_by_keycode(old_keycode))
210 clear_bit(old_keycode, dev->keybit);
211 return 0;
212 }
213
214 return -EINVAL;
215}
216
217static void msi_wmi_notify(u32 value, void *context)
218{
219 struct acpi_buffer response = { ACPI_ALLOCATE_BUFFER, NULL };
220 static struct key_entry *key;
221 union acpi_object *obj;
222 ktime_t cur;
223
224 wmi_get_event_data(value, &response);
225
226 obj = (union acpi_object *)response.pointer;
227
228 if (obj && obj->type == ACPI_TYPE_INTEGER) {
229 int eventcode = obj->integer.value;
230 dprintk("Eventcode: 0x%x\n", eventcode);
231 key = msi_wmi_get_entry_by_scancode(eventcode);
232 if (key) {
233 cur = ktime_get_real();
234 /* Ignore event if the same event happened in a 50 ms
235 timeframe -> Key press may result in 10-20 GPEs */
236 if (ktime_to_us(ktime_sub(cur, key->last_pressed))
237 < 1000 * 50) {
238 dprintk("Suppressed key event 0x%X - "
239 "Last press was %lld us ago\n",
240 key->code,
241 ktime_to_us(ktime_sub(cur,
242 key->last_pressed)));
243 return;
244 }
245 key->last_pressed = cur;
246
247 switch (key->type) {
248 case KE_KEY:
249 /* Brightness is served via acpi video driver */
250 if (!backlight &&
251 (key->keycode == KEY_BRIGHTNESSUP ||
252 key->keycode == KEY_BRIGHTNESSDOWN))
253 break;
254
255 dprintk("Send key: 0x%X - "
256 "Input layer keycode: %d\n", key->code,
257 key->keycode);
258 input_report_key(msi_wmi_input_dev,
259 key->keycode, 1);
260 input_sync(msi_wmi_input_dev);
261 input_report_key(msi_wmi_input_dev,
262 key->keycode, 0);
263 input_sync(msi_wmi_input_dev);
264 break;
265 }
266 } else
267 printk(KERN_INFO "Unknown key pressed - %x\n",
268 eventcode);
269 } else
270 printk(KERN_INFO DRV_PFX "Unknown event received\n");
271 kfree(response.pointer);
272}
273
274static int __init msi_wmi_input_setup(void)
275{
276 struct key_entry *key;
277 int err;
278
279 msi_wmi_input_dev = input_allocate_device();
Anisse Astier46b51eb2009-12-10 14:18:15 +0100280 if (!msi_wmi_input_dev)
281 return -ENOMEM;
Thomas Renningerd12d8ba2009-12-10 14:18:13 +0100282
283 msi_wmi_input_dev->name = "MSI WMI hotkeys";
284 msi_wmi_input_dev->phys = "wmi/input0";
285 msi_wmi_input_dev->id.bustype = BUS_HOST;
286 msi_wmi_input_dev->getkeycode = msi_wmi_getkeycode;
287 msi_wmi_input_dev->setkeycode = msi_wmi_setkeycode;
288
289 for (key = msi_wmi_keymap; key->type != KE_END; key++) {
290 switch (key->type) {
291 case KE_KEY:
292 set_bit(EV_KEY, msi_wmi_input_dev->evbit);
293 set_bit(key->keycode, msi_wmi_input_dev->keybit);
294 break;
295 }
296 }
297
298 err = input_register_device(msi_wmi_input_dev);
299
300 if (err) {
301 input_free_device(msi_wmi_input_dev);
302 return err;
303 }
304
305 return 0;
306}
307
308static int __init msi_wmi_init(void)
309{
310 int err;
311
Anisse Astier46b51eb2009-12-10 14:18:15 +0100312 if (!wmi_has_guid(MSIWMI_EVENT_GUID)) {
313 printk(KERN_ERR
314 "This machine doesn't have MSI-hotkeys through WMI\n");
315 return -ENODEV;
316 }
317 err = wmi_install_notify_handler(MSIWMI_EVENT_GUID,
318 msi_wmi_notify, NULL);
319 if (err)
320 return -EINVAL;
Thomas Renningerd12d8ba2009-12-10 14:18:13 +0100321
Anisse Astier46b51eb2009-12-10 14:18:15 +0100322 err = msi_wmi_input_setup();
323 if (err)
324 goto err_uninstall_notifier;
Thomas Renningerd12d8ba2009-12-10 14:18:13 +0100325
Anisse Astier46b51eb2009-12-10 14:18:15 +0100326 if (!acpi_video_backlight_support()) {
327 backlight = backlight_device_register(DRV_NAME,
328 NULL, NULL, &msi_backlight_ops);
329 if (IS_ERR(backlight))
330 goto err_free_input;
Thomas Renningerd12d8ba2009-12-10 14:18:13 +0100331
Anisse Astier46b51eb2009-12-10 14:18:15 +0100332 backlight->props.max_brightness = ARRAY_SIZE(backlight_map) - 1;
333 err = bl_get(NULL);
334 if (err < 0)
335 goto err_free_backlight;
336
337 backlight->props.brightness = err;
Thomas Renningerd12d8ba2009-12-10 14:18:13 +0100338 }
Anisse Astier822ddc02009-12-10 14:18:16 +0100339 dprintk("Event handler installed\n");
Anisse Astier46b51eb2009-12-10 14:18:15 +0100340
Thomas Renningerd12d8ba2009-12-10 14:18:13 +0100341 return 0;
Anisse Astier46b51eb2009-12-10 14:18:15 +0100342
343err_free_backlight:
344 backlight_device_unregister(backlight);
345err_free_input:
346 input_unregister_device(msi_wmi_input_dev);
347err_uninstall_notifier:
348 wmi_remove_notify_handler(MSIWMI_EVENT_GUID);
349 return err;
Thomas Renningerd12d8ba2009-12-10 14:18:13 +0100350}
351
352static void __exit msi_wmi_exit(void)
353{
354 if (wmi_has_guid(MSIWMI_EVENT_GUID)) {
355 wmi_remove_notify_handler(MSIWMI_EVENT_GUID);
356 input_unregister_device(msi_wmi_input_dev);
357 backlight_device_unregister(backlight);
358 }
359}
360
361module_init(msi_wmi_init);
362module_exit(msi_wmi_exit);