diff options
Diffstat (limited to 'drivers/hid/hid-tivo.c')
-rw-r--r-- | drivers/hid/hid-tivo.c | 89 |
1 files changed, 89 insertions, 0 deletions
diff --git a/drivers/hid/hid-tivo.c b/drivers/hid/hid-tivo.c new file mode 100644 index 00000000000..3d43c06dfff --- /dev/null +++ b/drivers/hid/hid-tivo.c | |||
@@ -0,0 +1,89 @@ | |||
1 | /* | ||
2 | * HID driver for TiVo Slide Bluetooth remote | ||
3 | * | ||
4 | * Copyright (c) 2011 Jarod Wilson <jarod@redhat.com> | ||
5 | * based on the hid-topseed driver, which is in turn, based on hid-cherry... | ||
6 | */ | ||
7 | |||
8 | /* | ||
9 | * This program is free software; you can redistribute it and/or modify it | ||
10 | * under the terms of the GNU General Public License as published by the Free | ||
11 | * Software Foundation; either version 2 of the License, or (at your option) | ||
12 | * any later version. | ||
13 | */ | ||
14 | |||
15 | #include <linux/device.h> | ||
16 | #include <linux/hid.h> | ||
17 | #include <linux/module.h> | ||
18 | |||
19 | #include "hid-ids.h" | ||
20 | |||
21 | #define HID_UP_TIVOVENDOR 0xffff0000 | ||
22 | #define tivo_map_key_clear(c) hid_map_usage_clear(hi, usage, bit, max, \ | ||
23 | EV_KEY, (c)) | ||
24 | |||
25 | static int tivo_input_mapping(struct hid_device *hdev, struct hid_input *hi, | ||
26 | struct hid_field *field, struct hid_usage *usage, | ||
27 | unsigned long **bit, int *max) | ||
28 | { | ||
29 | switch (usage->hid & HID_USAGE_PAGE) { | ||
30 | case HID_UP_TIVOVENDOR: | ||
31 | switch (usage->hid & HID_USAGE) { | ||
32 | /* TiVo button */ | ||
33 | case 0x3d: tivo_map_key_clear(KEY_MEDIA); break; | ||
34 | /* Live TV */ | ||
35 | case 0x3e: tivo_map_key_clear(KEY_TV); break; | ||
36 | /* Red thumbs down */ | ||
37 | case 0x41: tivo_map_key_clear(KEY_KPMINUS); break; | ||
38 | /* Green thumbs up */ | ||
39 | case 0x42: tivo_map_key_clear(KEY_KPPLUS); break; | ||
40 | default: | ||
41 | return 0; | ||
42 | } | ||
43 | break; | ||
44 | case HID_UP_CONSUMER: | ||
45 | switch (usage->hid & HID_USAGE) { | ||
46 | /* Enter/Last (default mapping: KEY_LAST) */ | ||
47 | case 0x083: tivo_map_key_clear(KEY_ENTER); break; | ||
48 | /* Info (default mapping: KEY_PROPS) */ | ||
49 | case 0x209: tivo_map_key_clear(KEY_INFO); break; | ||
50 | default: | ||
51 | return 0; | ||
52 | } | ||
53 | break; | ||
54 | default: | ||
55 | return 0; | ||
56 | } | ||
57 | |||
58 | /* This means we found a matching mapping here, else, look in the | ||
59 | * standard hid mappings in hid-input.c */ | ||
60 | return 1; | ||
61 | } | ||
62 | |||
63 | static const struct hid_device_id tivo_devices[] = { | ||
64 | /* TiVo Slide Bluetooth remote, pairs with a Broadcom dongle */ | ||
65 | { HID_USB_DEVICE(USB_VENDOR_ID_TIVO, USB_DEVICE_ID_TIVO_SLIDE) }, | ||
66 | { } | ||
67 | }; | ||
68 | MODULE_DEVICE_TABLE(hid, tivo_devices); | ||
69 | |||
70 | static struct hid_driver tivo_driver = { | ||
71 | .name = "tivo_slide", | ||
72 | .id_table = tivo_devices, | ||
73 | .input_mapping = tivo_input_mapping, | ||
74 | }; | ||
75 | |||
76 | static int __init tivo_init(void) | ||
77 | { | ||
78 | return hid_register_driver(&tivo_driver); | ||
79 | } | ||
80 | |||
81 | static void __exit tivo_exit(void) | ||
82 | { | ||
83 | hid_unregister_driver(&tivo_driver); | ||
84 | } | ||
85 | |||
86 | module_init(tivo_init); | ||
87 | module_exit(tivo_exit); | ||
88 | MODULE_LICENSE("GPL"); | ||
89 | MODULE_AUTHOR("Jarod Wilson <jarod@redhat.com>"); | ||