diff options
author | Benjamin Tissoires <benjamin.tissoires@redhat.com> | 2013-04-17 12:15:15 -0400 |
---|---|---|
committer | Jiri Kosina <jkosina@suse.cz> | 2013-04-18 22:06:20 -0400 |
commit | 9a4a5574ce427c364d81746fc7fb82d86b5f1a7e (patch) | |
tree | 7ae94c441dc066b689447b6c7e39173c8f089112 /drivers/hid | |
parent | 014642cb0a08d1b12c6089c48c7ba6002a0f6811 (diff) |
HID: appleir: add support for Apple ir devices
This driver was originally written by James McKenzie, updated by
Greg Kroah-Hartman, further updated by Bastien Nocera, with suspend
support added.
I ported it to the HID subsystem, in order to simplify it a litle
and allow lirc to use it through hiddev.
More recent versions of the IR receiver are also supported through
a patch by Alex Karpenko. The patch also adds support for the 2nd
and 5th generation of the controller, and the menu key on newer
brushed metal remotes.
Tested-by: Fabien André <fabien.andre@gmail.com>
Signed-off-by: Benjamin Tissoires <benjamin.tissoires@redhat.com>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>
Diffstat (limited to 'drivers/hid')
-rw-r--r-- | drivers/hid/Kconfig | 11 | ||||
-rw-r--r-- | drivers/hid/Makefile | 1 | ||||
-rw-r--r-- | drivers/hid/hid-apple.c | 4 | ||||
-rw-r--r-- | drivers/hid/hid-appleir.c | 352 | ||||
-rw-r--r-- | drivers/hid/hid-core.c | 7 | ||||
-rw-r--r-- | drivers/hid/hid-ids.h | 5 |
6 files changed, 373 insertions, 7 deletions
diff --git a/drivers/hid/Kconfig b/drivers/hid/Kconfig index 5f07d85c4189..7f5e0aa5fe5a 100644 --- a/drivers/hid/Kconfig +++ b/drivers/hid/Kconfig | |||
@@ -122,6 +122,17 @@ config HID_APPLE | |||
122 | Say Y here if you want support for keyboards of Apple iBooks, PowerBooks, | 122 | Say Y here if you want support for keyboards of Apple iBooks, PowerBooks, |
123 | MacBooks, MacBook Pros and Apple Aluminum. | 123 | MacBooks, MacBook Pros and Apple Aluminum. |
124 | 124 | ||
125 | config HID_APPLEIR | ||
126 | tristate "Apple infrared receiver" | ||
127 | depends on (USB_HID) | ||
128 | ---help--- | ||
129 | Support for Apple infrared remote control. All the Apple computers from | ||
130 | 2005 onwards include such a port, except the unibody Macbook (2009), | ||
131 | and Mac Pros. This receiver is also used in the Apple TV set-top box | ||
132 | prior to the 2010 model. | ||
133 | |||
134 | Say Y here if you want support for Apple infrared remote control. | ||
135 | |||
125 | config HID_AUREAL | 136 | config HID_AUREAL |
126 | tristate "Aureal" | 137 | tristate "Aureal" |
127 | depends on USB_HID | 138 | depends on USB_HID |
diff --git a/drivers/hid/Makefile b/drivers/hid/Makefile index 72d1b0bc0a97..cec36715a457 100644 --- a/drivers/hid/Makefile +++ b/drivers/hid/Makefile | |||
@@ -39,6 +39,7 @@ endif | |||
39 | obj-$(CONFIG_HID_A4TECH) += hid-a4tech.o | 39 | obj-$(CONFIG_HID_A4TECH) += hid-a4tech.o |
40 | obj-$(CONFIG_HID_ACRUX) += hid-axff.o | 40 | obj-$(CONFIG_HID_ACRUX) += hid-axff.o |
41 | obj-$(CONFIG_HID_APPLE) += hid-apple.o | 41 | obj-$(CONFIG_HID_APPLE) += hid-apple.o |
42 | obj-$(CONFIG_HID_APPLEIR) += hid-appleir.o | ||
42 | obj-$(CONFIG_HID_AUREAL) += hid-aureal.o | 43 | obj-$(CONFIG_HID_AUREAL) += hid-aureal.o |
43 | obj-$(CONFIG_HID_BELKIN) += hid-belkin.o | 44 | obj-$(CONFIG_HID_BELKIN) += hid-belkin.o |
44 | obj-$(CONFIG_HID_CHERRY) += hid-cherry.o | 45 | obj-$(CONFIG_HID_CHERRY) += hid-cherry.o |
diff --git a/drivers/hid/hid-apple.c b/drivers/hid/hid-apple.c index 320a958d4139..5c5c57b6d59a 100644 --- a/drivers/hid/hid-apple.c +++ b/drivers/hid/hid-apple.c | |||
@@ -390,10 +390,6 @@ static void apple_remove(struct hid_device *hdev) | |||
390 | } | 390 | } |
391 | 391 | ||
392 | static const struct hid_device_id apple_devices[] = { | 392 | static const struct hid_device_id apple_devices[] = { |
393 | { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_ATV_IRCONTROL), | ||
394 | .driver_data = APPLE_HIDDEV | APPLE_IGNORE_HIDINPUT }, | ||
395 | { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_IRCONTROL4), | ||
396 | .driver_data = APPLE_HIDDEV | APPLE_IGNORE_HIDINPUT }, | ||
397 | { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_MIGHTYMOUSE), | 393 | { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_MIGHTYMOUSE), |
398 | .driver_data = APPLE_MIGHTYMOUSE | APPLE_INVERT_HWHEEL }, | 394 | .driver_data = APPLE_MIGHTYMOUSE | APPLE_INVERT_HWHEEL }, |
399 | 395 | ||
diff --git a/drivers/hid/hid-appleir.c b/drivers/hid/hid-appleir.c new file mode 100644 index 000000000000..a42e6a394c5e --- /dev/null +++ b/drivers/hid/hid-appleir.c | |||
@@ -0,0 +1,352 @@ | |||
1 | /* | ||
2 | * HID driver for the apple ir device | ||
3 | * | ||
4 | * Original driver written by James McKenzie | ||
5 | * Ported to recent 2.6 kernel versions by Greg Kroah-Hartman <gregkh@suse.de> | ||
6 | * Updated to support newer remotes by Bastien Nocera <hadess@hadess.net> | ||
7 | * Ported to HID subsystem by Benjamin Tissoires <benjamin.tissoires@gmail.com> | ||
8 | * | ||
9 | * Copyright (C) 2006 James McKenzie | ||
10 | * Copyright (C) 2008 Greg Kroah-Hartman <greg@kroah.com> | ||
11 | * Copyright (C) 2008 Novell Inc. | ||
12 | * Copyright (C) 2010, 2012 Bastien Nocera <hadess@hadess.net> | ||
13 | * Copyright (C) 2013 Benjamin Tissoires <benjamin.tissoires@gmail.com> | ||
14 | * Copyright (C) 2013 Red Hat Inc. All Rights Reserved | ||
15 | * | ||
16 | * This software is licensed under the terms of the GNU General Public | ||
17 | * License version 2, as published by the Free Software Foundation, and | ||
18 | * may be copied, distributed, and modified under those terms. | ||
19 | * | ||
20 | * This program is distributed in the hope that it will be useful, | ||
21 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
22 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
23 | * GNU General Public License for more details. | ||
24 | */ | ||
25 | |||
26 | #include <linux/device.h> | ||
27 | #include <linux/hid.h> | ||
28 | #include <linux/module.h> | ||
29 | #include "hid-ids.h" | ||
30 | |||
31 | MODULE_AUTHOR("James McKenzie"); | ||
32 | MODULE_AUTHOR("Benjamin Tissoires <benjamin.tissoires@redhat.com>"); | ||
33 | MODULE_DESCRIPTION("HID Apple IR remote controls"); | ||
34 | MODULE_LICENSE("GPL"); | ||
35 | |||
36 | #define KEY_MASK 0x0F | ||
37 | #define TWO_PACKETS_MASK 0x40 | ||
38 | |||
39 | /* | ||
40 | * James McKenzie has two devices both of which report the following | ||
41 | * 25 87 ee 83 0a + | ||
42 | * 25 87 ee 83 0c - | ||
43 | * 25 87 ee 83 09 << | ||
44 | * 25 87 ee 83 06 >> | ||
45 | * 25 87 ee 83 05 >" | ||
46 | * 25 87 ee 83 03 menu | ||
47 | * 26 00 00 00 00 for key repeat | ||
48 | */ | ||
49 | |||
50 | /* | ||
51 | * Thomas Glanzmann reports the following responses | ||
52 | * 25 87 ee ca 0b + | ||
53 | * 25 87 ee ca 0d - | ||
54 | * 25 87 ee ca 08 << | ||
55 | * 25 87 ee ca 07 >> | ||
56 | * 25 87 ee ca 04 >" | ||
57 | * 25 87 ee ca 02 menu | ||
58 | * 26 00 00 00 00 for key repeat | ||
59 | * | ||
60 | * He also observes the following event sometimes | ||
61 | * sent after a key is release, which I interpret | ||
62 | * as a flat battery message | ||
63 | * 25 87 e0 ca 06 flat battery | ||
64 | */ | ||
65 | |||
66 | /* | ||
67 | * Alexandre Karpenko reports the following responses for Device ID 0x8242 | ||
68 | * 25 87 ee 47 0b + | ||
69 | * 25 87 ee 47 0d - | ||
70 | * 25 87 ee 47 08 << | ||
71 | * 25 87 ee 47 07 >> | ||
72 | * 25 87 ee 47 04 >" | ||
73 | * 25 87 ee 47 02 menu | ||
74 | * 26 87 ee 47 ** for key repeat (** is the code of the key being held) | ||
75 | */ | ||
76 | |||
77 | /* | ||
78 | * Bastien Nocera's remote | ||
79 | * 25 87 ee 91 5f followed by | ||
80 | * 25 87 ee 91 05 gives you >" | ||
81 | * | ||
82 | * 25 87 ee 91 5c followed by | ||
83 | * 25 87 ee 91 05 gives you the middle button | ||
84 | */ | ||
85 | |||
86 | /* | ||
87 | * Fabien Andre's remote | ||
88 | * 25 87 ee a3 5e followed by | ||
89 | * 25 87 ee a3 04 gives you >" | ||
90 | * | ||
91 | * 25 87 ee a3 5d followed by | ||
92 | * 25 87 ee a3 04 gives you the middle button | ||
93 | */ | ||
94 | |||
95 | static const unsigned short appleir_key_table[] = { | ||
96 | KEY_RESERVED, | ||
97 | KEY_MENU, | ||
98 | KEY_PLAYPAUSE, | ||
99 | KEY_FORWARD, | ||
100 | KEY_BACK, | ||
101 | KEY_VOLUMEUP, | ||
102 | KEY_VOLUMEDOWN, | ||
103 | KEY_RESERVED, | ||
104 | KEY_RESERVED, | ||
105 | KEY_RESERVED, | ||
106 | KEY_RESERVED, | ||
107 | KEY_RESERVED, | ||
108 | KEY_RESERVED, | ||
109 | KEY_RESERVED, | ||
110 | KEY_ENTER, | ||
111 | KEY_PLAYPAUSE, | ||
112 | KEY_RESERVED, | ||
113 | }; | ||
114 | |||
115 | struct appleir { | ||
116 | struct input_dev *input_dev; | ||
117 | struct hid_device *hid; | ||
118 | unsigned short keymap[ARRAY_SIZE(appleir_key_table)]; | ||
119 | struct timer_list key_up_timer; /* timer for key up */ | ||
120 | spinlock_t lock; /* protects .current_key */ | ||
121 | int current_key; /* the currently pressed key */ | ||
122 | int prev_key_idx; /* key index in a 2 packets message */ | ||
123 | }; | ||
124 | |||
125 | static int get_key(int data) | ||
126 | { | ||
127 | /* | ||
128 | * The key is coded accross bits 2..9: | ||
129 | * | ||
130 | * 0x00 or 0x01 ( ) key: 0 -> KEY_RESERVED | ||
131 | * 0x02 or 0x03 ( menu ) key: 1 -> KEY_MENU | ||
132 | * 0x04 or 0x05 ( >" ) key: 2 -> KEY_PLAYPAUSE | ||
133 | * 0x06 or 0x07 ( >> ) key: 3 -> KEY_FORWARD | ||
134 | * 0x08 or 0x09 ( << ) key: 4 -> KEY_BACK | ||
135 | * 0x0a or 0x0b ( + ) key: 5 -> KEY_VOLUMEUP | ||
136 | * 0x0c or 0x0d ( - ) key: 6 -> KEY_VOLUMEDOWN | ||
137 | * 0x0e or 0x0f ( ) key: 7 -> KEY_RESERVED | ||
138 | * 0x50 or 0x51 ( ) key: 8 -> KEY_RESERVED | ||
139 | * 0x52 or 0x53 ( ) key: 9 -> KEY_RESERVED | ||
140 | * 0x54 or 0x55 ( ) key: 10 -> KEY_RESERVED | ||
141 | * 0x56 or 0x57 ( ) key: 11 -> KEY_RESERVED | ||
142 | * 0x58 or 0x59 ( ) key: 12 -> KEY_RESERVED | ||
143 | * 0x5a or 0x5b ( ) key: 13 -> KEY_RESERVED | ||
144 | * 0x5c or 0x5d ( middle ) key: 14 -> KEY_ENTER | ||
145 | * 0x5e or 0x5f ( >" ) key: 15 -> KEY_PLAYPAUSE | ||
146 | * | ||
147 | * Packets starting with 0x5 are part of a two-packets message, | ||
148 | * we notify the caller by sending a negative value. | ||
149 | */ | ||
150 | int key = (data >> 1) & KEY_MASK; | ||
151 | |||
152 | if ((data & TWO_PACKETS_MASK)) | ||
153 | /* Part of a 2 packets-command */ | ||
154 | key = -key; | ||
155 | |||
156 | return key; | ||
157 | } | ||
158 | |||
159 | static void key_up(struct hid_device *hid, struct appleir *appleir, int key) | ||
160 | { | ||
161 | input_report_key(appleir->input_dev, key, 0); | ||
162 | input_sync(appleir->input_dev); | ||
163 | } | ||
164 | |||
165 | static void key_down(struct hid_device *hid, struct appleir *appleir, int key) | ||
166 | { | ||
167 | input_report_key(appleir->input_dev, key, 1); | ||
168 | input_sync(appleir->input_dev); | ||
169 | } | ||
170 | |||
171 | static void battery_flat(struct appleir *appleir) | ||
172 | { | ||
173 | dev_err(&appleir->input_dev->dev, "possible flat battery?\n"); | ||
174 | } | ||
175 | |||
176 | static void key_up_tick(unsigned long data) | ||
177 | { | ||
178 | struct appleir *appleir = (struct appleir *)data; | ||
179 | struct hid_device *hid = appleir->hid; | ||
180 | unsigned long flags; | ||
181 | |||
182 | spin_lock_irqsave(&appleir->lock, flags); | ||
183 | if (appleir->current_key) { | ||
184 | key_up(hid, appleir, appleir->current_key); | ||
185 | appleir->current_key = 0; | ||
186 | } | ||
187 | spin_unlock_irqrestore(&appleir->lock, flags); | ||
188 | } | ||
189 | |||
190 | static int appleir_raw_event(struct hid_device *hid, struct hid_report *report, | ||
191 | u8 *data, int len) | ||
192 | { | ||
193 | struct appleir *appleir = hid_get_drvdata(hid); | ||
194 | static const u8 keydown[] = { 0x25, 0x87, 0xee }; | ||
195 | static const u8 keyrepeat[] = { 0x26, }; | ||
196 | static const u8 flatbattery[] = { 0x25, 0x87, 0xe0 }; | ||
197 | unsigned long flags; | ||
198 | |||
199 | if (len != 5) | ||
200 | goto out; | ||
201 | |||
202 | if (!memcmp(data, keydown, sizeof(keydown))) { | ||
203 | int index; | ||
204 | |||
205 | spin_lock_irqsave(&appleir->lock, flags); | ||
206 | /* | ||
207 | * If we already have a key down, take it up before marking | ||
208 | * this one down | ||
209 | */ | ||
210 | if (appleir->current_key) | ||
211 | key_up(hid, appleir, appleir->current_key); | ||
212 | |||
213 | /* Handle dual packet commands */ | ||
214 | if (appleir->prev_key_idx > 0) | ||
215 | index = appleir->prev_key_idx; | ||
216 | else | ||
217 | index = get_key(data[4]); | ||
218 | |||
219 | if (index >= 0) { | ||
220 | appleir->current_key = appleir->keymap[index]; | ||
221 | |||
222 | key_down(hid, appleir, appleir->current_key); | ||
223 | /* | ||
224 | * Remote doesn't do key up, either pull them up, in | ||
225 | * the test above, or here set a timer which pulls | ||
226 | * them up after 1/8 s | ||
227 | */ | ||
228 | mod_timer(&appleir->key_up_timer, jiffies + HZ / 8); | ||
229 | appleir->prev_key_idx = 0; | ||
230 | } else | ||
231 | /* Remember key for next packet */ | ||
232 | appleir->prev_key_idx = -index; | ||
233 | spin_unlock_irqrestore(&appleir->lock, flags); | ||
234 | goto out; | ||
235 | } | ||
236 | |||
237 | appleir->prev_key_idx = 0; | ||
238 | |||
239 | if (!memcmp(data, keyrepeat, sizeof(keyrepeat))) { | ||
240 | key_down(hid, appleir, appleir->current_key); | ||
241 | /* | ||
242 | * Remote doesn't do key up, either pull them up, in the test | ||
243 | * above, or here set a timer which pulls them up after 1/8 s | ||
244 | */ | ||
245 | mod_timer(&appleir->key_up_timer, jiffies + HZ / 8); | ||
246 | goto out; | ||
247 | } | ||
248 | |||
249 | if (!memcmp(data, flatbattery, sizeof(flatbattery))) { | ||
250 | battery_flat(appleir); | ||
251 | /* Fall through */ | ||
252 | } | ||
253 | |||
254 | out: | ||
255 | /* let hidraw and hiddev handle the report */ | ||
256 | return 0; | ||
257 | } | ||
258 | |||
259 | static void appleir_input_configured(struct hid_device *hid, | ||
260 | struct hid_input *hidinput) | ||
261 | { | ||
262 | struct input_dev *input_dev = hidinput->input; | ||
263 | struct appleir *appleir = hid_get_drvdata(hid); | ||
264 | int i; | ||
265 | |||
266 | appleir->input_dev = input_dev; | ||
267 | |||
268 | input_dev->keycode = appleir->keymap; | ||
269 | input_dev->keycodesize = sizeof(unsigned short); | ||
270 | input_dev->keycodemax = ARRAY_SIZE(appleir->keymap); | ||
271 | |||
272 | input_dev->evbit[0] = BIT(EV_KEY) | BIT(EV_REP); | ||
273 | |||
274 | memcpy(appleir->keymap, appleir_key_table, sizeof(appleir->keymap)); | ||
275 | for (i = 0; i < ARRAY_SIZE(appleir_key_table); i++) | ||
276 | set_bit(appleir->keymap[i], input_dev->keybit); | ||
277 | clear_bit(KEY_RESERVED, input_dev->keybit); | ||
278 | } | ||
279 | |||
280 | static int appleir_input_mapping(struct hid_device *hid, | ||
281 | struct hid_input *hi, struct hid_field *field, | ||
282 | struct hid_usage *usage, unsigned long **bit, int *max) | ||
283 | { | ||
284 | return -1; | ||
285 | } | ||
286 | |||
287 | static int appleir_probe(struct hid_device *hid, const struct hid_device_id *id) | ||
288 | { | ||
289 | int ret; | ||
290 | struct appleir *appleir; | ||
291 | |||
292 | appleir = kzalloc(sizeof(struct appleir), GFP_KERNEL); | ||
293 | if (!appleir) { | ||
294 | ret = -ENOMEM; | ||
295 | goto allocfail; | ||
296 | } | ||
297 | |||
298 | appleir->hid = hid; | ||
299 | |||
300 | spin_lock_init(&appleir->lock); | ||
301 | setup_timer(&appleir->key_up_timer, | ||
302 | key_up_tick, (unsigned long) appleir); | ||
303 | |||
304 | hid_set_drvdata(hid, appleir); | ||
305 | |||
306 | ret = hid_parse(hid); | ||
307 | if (ret) { | ||
308 | hid_err(hid, "parse failed\n"); | ||
309 | goto fail; | ||
310 | } | ||
311 | |||
312 | ret = hid_hw_start(hid, HID_CONNECT_DEFAULT | HID_CONNECT_HIDDEV_FORCE); | ||
313 | if (ret) { | ||
314 | hid_err(hid, "hw start failed\n"); | ||
315 | goto fail; | ||
316 | } | ||
317 | |||
318 | return 0; | ||
319 | fail: | ||
320 | kfree(appleir); | ||
321 | allocfail: | ||
322 | return ret; | ||
323 | } | ||
324 | |||
325 | static void appleir_remove(struct hid_device *hid) | ||
326 | { | ||
327 | struct appleir *appleir = hid_get_drvdata(hid); | ||
328 | hid_hw_stop(hid); | ||
329 | del_timer_sync(&appleir->key_up_timer); | ||
330 | kfree(appleir); | ||
331 | } | ||
332 | |||
333 | static const struct hid_device_id appleir_devices[] = { | ||
334 | { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_IRCONTROL) }, | ||
335 | { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_IRCONTROL2) }, | ||
336 | { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_IRCONTROL3) }, | ||
337 | { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_IRCONTROL4) }, | ||
338 | { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_IRCONTROL5) }, | ||
339 | { } | ||
340 | }; | ||
341 | MODULE_DEVICE_TABLE(hid, appleir_devices); | ||
342 | |||
343 | static struct hid_driver appleir_driver = { | ||
344 | .name = "appleir", | ||
345 | .id_table = appleir_devices, | ||
346 | .raw_event = appleir_raw_event, | ||
347 | .input_configured = appleir_input_configured, | ||
348 | .probe = appleir_probe, | ||
349 | .remove = appleir_remove, | ||
350 | .input_mapping = appleir_input_mapping, | ||
351 | }; | ||
352 | module_hid_driver(appleir_driver); | ||
diff --git a/drivers/hid/hid-core.c b/drivers/hid/hid-core.c index aa341d135867..bf434a0f813f 100644 --- a/drivers/hid/hid-core.c +++ b/drivers/hid/hid-core.c | |||
@@ -1502,8 +1502,6 @@ static const struct hid_device_id hid_have_special_driver[] = { | |||
1502 | { HID_USB_DEVICE(USB_VENDOR_ID_A4TECH, USB_DEVICE_ID_A4TECH_X5_005D) }, | 1502 | { HID_USB_DEVICE(USB_VENDOR_ID_A4TECH, USB_DEVICE_ID_A4TECH_X5_005D) }, |
1503 | { HID_USB_DEVICE(USB_VENDOR_ID_A4TECH, USB_DEVICE_ID_A4TECH_RP_649) }, | 1503 | { HID_USB_DEVICE(USB_VENDOR_ID_A4TECH, USB_DEVICE_ID_A4TECH_RP_649) }, |
1504 | { HID_USB_DEVICE(USB_VENDOR_ID_ACRUX, 0x0802) }, | 1504 | { HID_USB_DEVICE(USB_VENDOR_ID_ACRUX, 0x0802) }, |
1505 | { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_ATV_IRCONTROL) }, | ||
1506 | { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_IRCONTROL4) }, | ||
1507 | { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_MIGHTYMOUSE) }, | 1505 | { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_MIGHTYMOUSE) }, |
1508 | { HID_BLUETOOTH_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_MAGICMOUSE) }, | 1506 | { HID_BLUETOOTH_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_MAGICMOUSE) }, |
1509 | { HID_BLUETOOTH_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_MAGICTRACKPAD) }, | 1507 | { HID_BLUETOOTH_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_MAGICTRACKPAD) }, |
@@ -1527,6 +1525,11 @@ static const struct hid_device_id hid_have_special_driver[] = { | |||
1527 | { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_GEYSER4_HF_ANSI) }, | 1525 | { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_GEYSER4_HF_ANSI) }, |
1528 | { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_GEYSER4_HF_ISO) }, | 1526 | { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_GEYSER4_HF_ISO) }, |
1529 | { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_GEYSER4_HF_JIS) }, | 1527 | { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_GEYSER4_HF_JIS) }, |
1528 | { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_IRCONTROL) }, | ||
1529 | { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_IRCONTROL2) }, | ||
1530 | { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_IRCONTROL3) }, | ||
1531 | { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_IRCONTROL4) }, | ||
1532 | { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_IRCONTROL5) }, | ||
1530 | { HID_BLUETOOTH_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_ALU_WIRELESS_ANSI) }, | 1533 | { HID_BLUETOOTH_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_ALU_WIRELESS_ANSI) }, |
1531 | { HID_BLUETOOTH_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_ALU_WIRELESS_ISO) }, | 1534 | { HID_BLUETOOTH_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_ALU_WIRELESS_ISO) }, |
1532 | { HID_BLUETOOTH_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_ALU_WIRELESS_JIS) }, | 1535 | { HID_BLUETOOTH_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_ALU_WIRELESS_JIS) }, |
diff --git a/drivers/hid/hid-ids.h b/drivers/hid/hid-ids.h index 5309fd5eb0eb..68a73740ac99 100644 --- a/drivers/hid/hid-ids.h +++ b/drivers/hid/hid-ids.h | |||
@@ -137,8 +137,11 @@ | |||
137 | #define USB_DEVICE_ID_APPLE_ALU_WIRELESS_2011_ISO 0x0256 | 137 | #define USB_DEVICE_ID_APPLE_ALU_WIRELESS_2011_ISO 0x0256 |
138 | #define USB_DEVICE_ID_APPLE_FOUNTAIN_TP_ONLY 0x030a | 138 | #define USB_DEVICE_ID_APPLE_FOUNTAIN_TP_ONLY 0x030a |
139 | #define USB_DEVICE_ID_APPLE_GEYSER1_TP_ONLY 0x030b | 139 | #define USB_DEVICE_ID_APPLE_GEYSER1_TP_ONLY 0x030b |
140 | #define USB_DEVICE_ID_APPLE_ATV_IRCONTROL 0x8241 | 140 | #define USB_DEVICE_ID_APPLE_IRCONTROL 0x8240 |
141 | #define USB_DEVICE_ID_APPLE_IRCONTROL2 0x1440 | ||
142 | #define USB_DEVICE_ID_APPLE_IRCONTROL3 0x8241 | ||
141 | #define USB_DEVICE_ID_APPLE_IRCONTROL4 0x8242 | 143 | #define USB_DEVICE_ID_APPLE_IRCONTROL4 0x8242 |
144 | #define USB_DEVICE_ID_APPLE_IRCONTROL5 0x8243 | ||
142 | 145 | ||
143 | #define USB_VENDOR_ID_ASUS 0x0486 | 146 | #define USB_VENDOR_ID_ASUS 0x0486 |
144 | #define USB_DEVICE_ID_ASUS_T91MT 0x0185 | 147 | #define USB_DEVICE_ID_ASUS_T91MT 0x0185 |