[PATCH] s/;;/;/g
[deliverable/linux.git] / drivers / usb / input / hid-core.c
CommitLineData
1da177e4
LT
1/*
2 * USB HID support for Linux
3 *
4 * Copyright (c) 1999 Andreas Gal
bf0964dc
MH
5 * Copyright (c) 2000-2005 Vojtech Pavlik <vojtech@suse.cz>
6 * Copyright (c) 2005 Michael Haboustak <mike-@cinci.rr.com> for Concept2, Inc
1da177e4
LT
7 */
8
9/*
10 * This program is free software; you can redistribute it and/or modify it
11 * under the terms of the GNU General Public License as published by the Free
12 * Software Foundation; either version 2 of the License, or (at your option)
13 * any later version.
14 */
15
16#include <linux/module.h>
17#include <linux/slab.h>
18#include <linux/init.h>
19#include <linux/kernel.h>
20#include <linux/sched.h>
21#include <linux/list.h>
22#include <linux/mm.h>
23#include <linux/smp_lock.h>
24#include <linux/spinlock.h>
25#include <asm/unaligned.h>
26#include <asm/byteorder.h>
27#include <linux/input.h>
28#include <linux/wait.h>
29
30#undef DEBUG
31#undef DEBUG_DATA
32
33#include <linux/usb.h>
34
35#include "hid.h"
36#include <linux/hiddev.h>
37
38/*
39 * Version Information
40 */
41
bf0964dc 42#define DRIVER_VERSION "v2.6"
1da177e4
LT
43#define DRIVER_AUTHOR "Andreas Gal, Vojtech Pavlik"
44#define DRIVER_DESC "USB HID core driver"
45#define DRIVER_LICENSE "GPL"
46
47static char *hid_types[] = {"Device", "Pointer", "Mouse", "Device", "Joystick",
48 "Gamepad", "Keyboard", "Keypad", "Multi-Axis Controller"};
49/*
50 * Module parameters.
51 */
52
53static unsigned int hid_mousepoll_interval;
54module_param_named(mousepoll, hid_mousepoll_interval, uint, 0644);
55MODULE_PARM_DESC(mousepoll, "Polling interval of mice");
56
57/*
58 * Register a new report for a device.
59 */
60
61static struct hid_report *hid_register_report(struct hid_device *device, unsigned type, unsigned id)
62{
63 struct hid_report_enum *report_enum = device->report_enum + type;
64 struct hid_report *report;
65
66 if (report_enum->report_id_hash[id])
67 return report_enum->report_id_hash[id];
68
bbdb7daf 69 if (!(report = kzalloc(sizeof(struct hid_report), GFP_KERNEL)))
1da177e4 70 return NULL;
1da177e4
LT
71
72 if (id != 0)
73 report_enum->numbered = 1;
74
75 report->id = id;
76 report->type = type;
77 report->size = 0;
78 report->device = device;
79 report_enum->report_id_hash[id] = report;
80
81 list_add_tail(&report->list, &report_enum->report_list);
82
83 return report;
84}
85
86/*
87 * Register a new field for this report.
88 */
89
90static struct hid_field *hid_register_field(struct hid_report *report, unsigned usages, unsigned values)
91{
92 struct hid_field *field;
93
94 if (report->maxfield == HID_MAX_FIELDS) {
95 dbg("too many fields in report");
96 return NULL;
97 }
98
bbdb7daf 99 if (!(field = kzalloc(sizeof(struct hid_field) + usages * sizeof(struct hid_usage)
1da177e4
LT
100 + values * sizeof(unsigned), GFP_KERNEL))) return NULL;
101
1da177e4
LT
102 field->index = report->maxfield++;
103 report->field[field->index] = field;
104 field->usage = (struct hid_usage *)(field + 1);
105 field->value = (unsigned *)(field->usage + usages);
106 field->report = report;
107
108 return field;
109}
110
111/*
112 * Open a collection. The type/usage is pushed on the stack.
113 */
114
115static int open_collection(struct hid_parser *parser, unsigned type)
116{
117 struct hid_collection *collection;
118 unsigned usage;
119
120 usage = parser->local.usage[0];
121
122 if (parser->collection_stack_ptr == HID_COLLECTION_STACK_SIZE) {
123 dbg("collection stack overflow");
124 return -1;
125 }
126
127 if (parser->device->maxcollection == parser->device->collection_size) {
128 collection = kmalloc(sizeof(struct hid_collection) *
129 parser->device->collection_size * 2, GFP_KERNEL);
130 if (collection == NULL) {
131 dbg("failed to reallocate collection array");
132 return -1;
133 }
134 memcpy(collection, parser->device->collection,
135 sizeof(struct hid_collection) *
136 parser->device->collection_size);
137 memset(collection + parser->device->collection_size, 0,
138 sizeof(struct hid_collection) *
139 parser->device->collection_size);
140 kfree(parser->device->collection);
141 parser->device->collection = collection;
142 parser->device->collection_size *= 2;
143 }
144
145 parser->collection_stack[parser->collection_stack_ptr++] =
146 parser->device->maxcollection;
147
148 collection = parser->device->collection +
149 parser->device->maxcollection++;
150 collection->type = type;
151 collection->usage = usage;
152 collection->level = parser->collection_stack_ptr - 1;
153
154 if (type == HID_COLLECTION_APPLICATION)
155 parser->device->maxapplication++;
156
157 return 0;
158}
159
160/*
161 * Close a collection.
162 */
163
164static int close_collection(struct hid_parser *parser)
165{
166 if (!parser->collection_stack_ptr) {
167 dbg("collection stack underflow");
168 return -1;
169 }
170 parser->collection_stack_ptr--;
171 return 0;
172}
173
174/*
175 * Climb up the stack, search for the specified collection type
176 * and return the usage.
177 */
178
179static unsigned hid_lookup_collection(struct hid_parser *parser, unsigned type)
180{
181 int n;
182 for (n = parser->collection_stack_ptr - 1; n >= 0; n--)
183 if (parser->device->collection[parser->collection_stack[n]].type == type)
184 return parser->device->collection[parser->collection_stack[n]].usage;
185 return 0; /* we know nothing about this usage type */
186}
187
188/*
189 * Add a usage to the temporary parser table.
190 */
191
192static int hid_add_usage(struct hid_parser *parser, unsigned usage)
193{
194 if (parser->local.usage_index >= HID_MAX_USAGES) {
195 dbg("usage index exceeded");
196 return -1;
197 }
198 parser->local.usage[parser->local.usage_index] = usage;
199 parser->local.collection_index[parser->local.usage_index] =
200 parser->collection_stack_ptr ?
201 parser->collection_stack[parser->collection_stack_ptr - 1] : 0;
202 parser->local.usage_index++;
203 return 0;
204}
205
206/*
207 * Register a new field for this report.
208 */
209
210static int hid_add_field(struct hid_parser *parser, unsigned report_type, unsigned flags)
211{
212 struct hid_report *report;
213 struct hid_field *field;
214 int usages;
215 unsigned offset;
216 int i;
217
218 if (!(report = hid_register_report(parser->device, report_type, parser->global.report_id))) {
219 dbg("hid_register_report failed");
220 return -1;
221 }
222
223 if (parser->global.logical_maximum < parser->global.logical_minimum) {
224 dbg("logical range invalid %d %d", parser->global.logical_minimum, parser->global.logical_maximum);
225 return -1;
226 }
227
228 offset = report->size;
229 report->size += parser->global.report_size * parser->global.report_count;
230
231 if (!parser->local.usage_index) /* Ignore padding fields */
05f091ab 232 return 0;
1da177e4
LT
233
234 usages = max_t(int, parser->local.usage_index, parser->global.report_count);
235
236 if ((field = hid_register_field(report, usages, parser->global.report_count)) == NULL)
237 return 0;
238
239 field->physical = hid_lookup_collection(parser, HID_COLLECTION_PHYSICAL);
240 field->logical = hid_lookup_collection(parser, HID_COLLECTION_LOGICAL);
241 field->application = hid_lookup_collection(parser, HID_COLLECTION_APPLICATION);
242
243 for (i = 0; i < usages; i++) {
244 int j = i;
245 /* Duplicate the last usage we parsed if we have excess values */
246 if (i >= parser->local.usage_index)
247 j = parser->local.usage_index - 1;
248 field->usage[i].hid = parser->local.usage[j];
249 field->usage[i].collection_index =
250 parser->local.collection_index[j];
251 }
252
253 field->maxusage = usages;
254 field->flags = flags;
255 field->report_offset = offset;
256 field->report_type = report_type;
257 field->report_size = parser->global.report_size;
258 field->report_count = parser->global.report_count;
259 field->logical_minimum = parser->global.logical_minimum;
260 field->logical_maximum = parser->global.logical_maximum;
261 field->physical_minimum = parser->global.physical_minimum;
262 field->physical_maximum = parser->global.physical_maximum;
263 field->unit_exponent = parser->global.unit_exponent;
264 field->unit = parser->global.unit;
265
266 return 0;
267}
268
269/*
270 * Read data value from item.
271 */
272
273static __inline__ __u32 item_udata(struct hid_item *item)
274{
275 switch (item->size) {
276 case 1: return item->data.u8;
277 case 2: return item->data.u16;
278 case 4: return item->data.u32;
279 }
280 return 0;
281}
282
283static __inline__ __s32 item_sdata(struct hid_item *item)
284{
285 switch (item->size) {
286 case 1: return item->data.s8;
287 case 2: return item->data.s16;
288 case 4: return item->data.s32;
289 }
290 return 0;
291}
292
293/*
294 * Process a global item.
295 */
296
297static int hid_parser_global(struct hid_parser *parser, struct hid_item *item)
298{
299 switch (item->tag) {
300
301 case HID_GLOBAL_ITEM_TAG_PUSH:
302
303 if (parser->global_stack_ptr == HID_GLOBAL_STACK_SIZE) {
304 dbg("global enviroment stack overflow");
305 return -1;
306 }
307
308 memcpy(parser->global_stack + parser->global_stack_ptr++,
309 &parser->global, sizeof(struct hid_global));
310 return 0;
311
312 case HID_GLOBAL_ITEM_TAG_POP:
313
314 if (!parser->global_stack_ptr) {
315 dbg("global enviroment stack underflow");
316 return -1;
317 }
318
319 memcpy(&parser->global, parser->global_stack + --parser->global_stack_ptr,
320 sizeof(struct hid_global));
321 return 0;
322
323 case HID_GLOBAL_ITEM_TAG_USAGE_PAGE:
324 parser->global.usage_page = item_udata(item);
325 return 0;
326
327 case HID_GLOBAL_ITEM_TAG_LOGICAL_MINIMUM:
328 parser->global.logical_minimum = item_sdata(item);
329 return 0;
330
331 case HID_GLOBAL_ITEM_TAG_LOGICAL_MAXIMUM:
332 if (parser->global.logical_minimum < 0)
333 parser->global.logical_maximum = item_sdata(item);
334 else
335 parser->global.logical_maximum = item_udata(item);
336 return 0;
337
338 case HID_GLOBAL_ITEM_TAG_PHYSICAL_MINIMUM:
339 parser->global.physical_minimum = item_sdata(item);
340 return 0;
341
342 case HID_GLOBAL_ITEM_TAG_PHYSICAL_MAXIMUM:
343 if (parser->global.physical_minimum < 0)
344 parser->global.physical_maximum = item_sdata(item);
345 else
346 parser->global.physical_maximum = item_udata(item);
347 return 0;
348
349 case HID_GLOBAL_ITEM_TAG_UNIT_EXPONENT:
350 parser->global.unit_exponent = item_sdata(item);
351 return 0;
352
353 case HID_GLOBAL_ITEM_TAG_UNIT:
354 parser->global.unit = item_udata(item);
355 return 0;
356
357 case HID_GLOBAL_ITEM_TAG_REPORT_SIZE:
358 if ((parser->global.report_size = item_udata(item)) > 32) {
359 dbg("invalid report_size %d", parser->global.report_size);
360 return -1;
361 }
362 return 0;
363
364 case HID_GLOBAL_ITEM_TAG_REPORT_COUNT:
365 if ((parser->global.report_count = item_udata(item)) > HID_MAX_USAGES) {
366 dbg("invalid report_count %d", parser->global.report_count);
367 return -1;
368 }
369 return 0;
370
371 case HID_GLOBAL_ITEM_TAG_REPORT_ID:
372 if ((parser->global.report_id = item_udata(item)) == 0) {
373 dbg("report_id 0 is invalid");
374 return -1;
375 }
376 return 0;
377
378 default:
379 dbg("unknown global tag 0x%x", item->tag);
380 return -1;
381 }
382}
383
384/*
385 * Process a local item.
386 */
387
388static int hid_parser_local(struct hid_parser *parser, struct hid_item *item)
389{
390 __u32 data;
391 unsigned n;
392
393 if (item->size == 0) {
394 dbg("item data expected for local item");
395 return -1;
396 }
397
398 data = item_udata(item);
399
400 switch (item->tag) {
401
402 case HID_LOCAL_ITEM_TAG_DELIMITER:
403
404 if (data) {
405 /*
406 * We treat items before the first delimiter
407 * as global to all usage sets (branch 0).
408 * In the moment we process only these global
409 * items and the first delimiter set.
410 */
411 if (parser->local.delimiter_depth != 0) {
412 dbg("nested delimiters");
413 return -1;
414 }
415 parser->local.delimiter_depth++;
416 parser->local.delimiter_branch++;
417 } else {
418 if (parser->local.delimiter_depth < 1) {
419 dbg("bogus close delimiter");
420 return -1;
421 }
422 parser->local.delimiter_depth--;
423 }
424 return 1;
425
426 case HID_LOCAL_ITEM_TAG_USAGE:
427
428 if (parser->local.delimiter_branch > 1) {
429 dbg("alternative usage ignored");
430 return 0;
431 }
432
433 if (item->size <= 2)
434 data = (parser->global.usage_page << 16) + data;
435
436 return hid_add_usage(parser, data);
437
438 case HID_LOCAL_ITEM_TAG_USAGE_MINIMUM:
439
440 if (parser->local.delimiter_branch > 1) {
441 dbg("alternative usage ignored");
442 return 0;
443 }
444
445 if (item->size <= 2)
446 data = (parser->global.usage_page << 16) + data;
447
448 parser->local.usage_minimum = data;
449 return 0;
450
451 case HID_LOCAL_ITEM_TAG_USAGE_MAXIMUM:
452
453 if (parser->local.delimiter_branch > 1) {
454 dbg("alternative usage ignored");
455 return 0;
456 }
457
458 if (item->size <= 2)
459 data = (parser->global.usage_page << 16) + data;
460
461 for (n = parser->local.usage_minimum; n <= data; n++)
462 if (hid_add_usage(parser, n)) {
463 dbg("hid_add_usage failed\n");
464 return -1;
465 }
466 return 0;
467
468 default:
469
470 dbg("unknown local item tag 0x%x", item->tag);
471 return 0;
472 }
473 return 0;
474}
475
476/*
477 * Process a main item.
478 */
479
480static int hid_parser_main(struct hid_parser *parser, struct hid_item *item)
481{
482 __u32 data;
483 int ret;
484
485 data = item_udata(item);
486
487 switch (item->tag) {
488 case HID_MAIN_ITEM_TAG_BEGIN_COLLECTION:
489 ret = open_collection(parser, data & 0xff);
490 break;
491 case HID_MAIN_ITEM_TAG_END_COLLECTION:
492 ret = close_collection(parser);
493 break;
494 case HID_MAIN_ITEM_TAG_INPUT:
495 ret = hid_add_field(parser, HID_INPUT_REPORT, data);
496 break;
497 case HID_MAIN_ITEM_TAG_OUTPUT:
498 ret = hid_add_field(parser, HID_OUTPUT_REPORT, data);
499 break;
500 case HID_MAIN_ITEM_TAG_FEATURE:
501 ret = hid_add_field(parser, HID_FEATURE_REPORT, data);
502 break;
503 default:
504 dbg("unknown main item tag 0x%x", item->tag);
505 ret = 0;
506 }
507
508 memset(&parser->local, 0, sizeof(parser->local)); /* Reset the local parser environment */
509
510 return ret;
511}
512
513/*
514 * Process a reserved item.
515 */
516
517static int hid_parser_reserved(struct hid_parser *parser, struct hid_item *item)
518{
519 dbg("reserved item type, tag 0x%x", item->tag);
520 return 0;
521}
522
523/*
524 * Free a report and all registered fields. The field->usage and
525 * field->value table's are allocated behind the field, so we need
526 * only to free(field) itself.
527 */
528
529static void hid_free_report(struct hid_report *report)
530{
531 unsigned n;
532
533 for (n = 0; n < report->maxfield; n++)
534 kfree(report->field[n]);
535 kfree(report);
536}
537
538/*
539 * Free a device structure, all reports, and all fields.
540 */
541
542static void hid_free_device(struct hid_device *device)
543{
544 unsigned i,j;
545
546 hid_ff_exit(device);
547
548 for (i = 0; i < HID_REPORT_TYPES; i++) {
549 struct hid_report_enum *report_enum = device->report_enum + i;
550
551 for (j = 0; j < 256; j++) {
552 struct hid_report *report = report_enum->report_id_hash[j];
553 if (report)
554 hid_free_report(report);
555 }
556 }
557
1bc3c9e1 558 kfree(device->rdesc);
1da177e4
LT
559 kfree(device);
560}
561
562/*
563 * Fetch a report description item from the data stream. We support long
564 * items, though they are not used yet.
565 */
566
567static u8 *fetch_item(__u8 *start, __u8 *end, struct hid_item *item)
568{
569 u8 b;
570
571 if ((end - start) <= 0)
572 return NULL;
573
574 b = *start++;
575
576 item->type = (b >> 2) & 3;
577 item->tag = (b >> 4) & 15;
578
579 if (item->tag == HID_ITEM_TAG_LONG) {
580
581 item->format = HID_ITEM_FORMAT_LONG;
582
583 if ((end - start) < 2)
584 return NULL;
585
586 item->size = *start++;
587 item->tag = *start++;
588
589 if ((end - start) < item->size)
590 return NULL;
591
592 item->data.longdata = start;
593 start += item->size;
594 return start;
595 }
596
597 item->format = HID_ITEM_FORMAT_SHORT;
598 item->size = b & 3;
599
600 switch (item->size) {
601
602 case 0:
603 return start;
604
605 case 1:
606 if ((end - start) < 1)
607 return NULL;
608 item->data.u8 = *start++;
609 return start;
610
611 case 2:
612 if ((end - start) < 2)
613 return NULL;
614 item->data.u16 = le16_to_cpu(get_unaligned((__le16*)start));
615 start = (__u8 *)((__le16 *)start + 1);
616 return start;
617
618 case 3:
619 item->size++;
620 if ((end - start) < 4)
621 return NULL;
622 item->data.u32 = le32_to_cpu(get_unaligned((__le32*)start));
623 start = (__u8 *)((__le32 *)start + 1);
624 return start;
625 }
626
627 return NULL;
628}
629
630/*
631 * Parse a report description into a hid_device structure. Reports are
632 * enumerated, fields are attached to these reports.
633 */
634
635static struct hid_device *hid_parse_report(__u8 *start, unsigned size)
636{
637 struct hid_device *device;
638 struct hid_parser *parser;
639 struct hid_item item;
640 __u8 *end;
641 unsigned i;
642 static int (*dispatch_type[])(struct hid_parser *parser,
643 struct hid_item *item) = {
644 hid_parser_main,
645 hid_parser_global,
646 hid_parser_local,
647 hid_parser_reserved
648 };
649
bbdb7daf 650 if (!(device = kzalloc(sizeof(struct hid_device), GFP_KERNEL)))
1da177e4 651 return NULL;
1da177e4 652
bbdb7daf 653 if (!(device->collection = kzalloc(sizeof(struct hid_collection) *
1da177e4
LT
654 HID_DEFAULT_NUM_COLLECTIONS, GFP_KERNEL))) {
655 kfree(device);
656 return NULL;
657 }
1da177e4
LT
658 device->collection_size = HID_DEFAULT_NUM_COLLECTIONS;
659
660 for (i = 0; i < HID_REPORT_TYPES; i++)
661 INIT_LIST_HEAD(&device->report_enum[i].report_list);
662
663 if (!(device->rdesc = (__u8 *)kmalloc(size, GFP_KERNEL))) {
664 kfree(device->collection);
665 kfree(device);
666 return NULL;
667 }
668 memcpy(device->rdesc, start, size);
669 device->rsize = size;
670
bbdb7daf 671 if (!(parser = kzalloc(sizeof(struct hid_parser), GFP_KERNEL))) {
1da177e4
LT
672 kfree(device->rdesc);
673 kfree(device->collection);
674 kfree(device);
675 return NULL;
676 }
1da177e4
LT
677 parser->device = device;
678
679 end = start + size;
680 while ((start = fetch_item(start, end, &item)) != NULL) {
681
682 if (item.format != HID_ITEM_FORMAT_SHORT) {
683 dbg("unexpected long global item");
684 kfree(device->collection);
685 hid_free_device(device);
686 kfree(parser);
687 return NULL;
688 }
689
690 if (dispatch_type[item.type](parser, &item)) {
691 dbg("item %u %u %u %u parsing failed\n",
692 item.format, (unsigned)item.size, (unsigned)item.type, (unsigned)item.tag);
693 kfree(device->collection);
694 hid_free_device(device);
695 kfree(parser);
696 return NULL;
697 }
698
699 if (start == end) {
700 if (parser->collection_stack_ptr) {
701 dbg("unbalanced collection at end of report description");
702 kfree(device->collection);
703 hid_free_device(device);
704 kfree(parser);
705 return NULL;
706 }
707 if (parser->local.delimiter_depth) {
708 dbg("unbalanced delimiter at end of report description");
709 kfree(device->collection);
710 hid_free_device(device);
711 kfree(parser);
712 return NULL;
713 }
714 kfree(parser);
715 return device;
716 }
717 }
718
719 dbg("item fetching failed at offset %d\n", (int)(end - start));
720 kfree(device->collection);
721 hid_free_device(device);
722 kfree(parser);
723 return NULL;
724}
725
726/*
727 * Convert a signed n-bit integer to signed 32-bit integer. Common
728 * cases are done through the compiler, the screwed things has to be
729 * done by hand.
730 */
731
732static __inline__ __s32 snto32(__u32 value, unsigned n)
733{
734 switch (n) {
735 case 8: return ((__s8)value);
736 case 16: return ((__s16)value);
737 case 32: return ((__s32)value);
738 }
739 return value & (1 << (n - 1)) ? value | (-1 << n) : value;
740}
741
742/*
743 * Convert a signed 32-bit integer to a signed n-bit integer.
744 */
745
746static __inline__ __u32 s32ton(__s32 value, unsigned n)
747{
748 __s32 a = value >> (n - 1);
749 if (a && a != -1)
750 return value < 0 ? 1 << (n - 1) : (1 << (n - 1)) - 1;
751 return value & ((1 << n) - 1);
752}
753
754/*
755 * Extract/implement a data field from/to a report.
756 */
757
758static __inline__ __u32 extract(__u8 *report, unsigned offset, unsigned n)
759{
760 report += (offset >> 5) << 2; offset &= 31;
bef3768d 761 return (le64_to_cpu(get_unaligned((__le64*)report)) >> offset) & ((1ULL << n) - 1);
1da177e4
LT
762}
763
764static __inline__ void implement(__u8 *report, unsigned offset, unsigned n, __u32 value)
765{
766 report += (offset >> 5) << 2; offset &= 31;
767 put_unaligned((get_unaligned((__le64*)report)
768 & cpu_to_le64(~((((__u64) 1 << n) - 1) << offset)))
769 | cpu_to_le64((__u64)value << offset), (__le64*)report);
770}
771
772/*
773 * Search an array for a value.
774 */
775
776static __inline__ int search(__s32 *array, __s32 value, unsigned n)
777{
778 while (n--) {
779 if (*array++ == value)
780 return 0;
781 }
782 return -1;
783}
784
bc5d0482 785static void hid_process_event(struct hid_device *hid, struct hid_field *field, struct hid_usage *usage, __s32 value, int interrupt, struct pt_regs *regs)
1da177e4
LT
786{
787 hid_dump_input(usage, value);
788 if (hid->claimed & HID_CLAIMED_INPUT)
789 hidinput_hid_event(hid, field, usage, value, regs);
bc5d0482 790 if (hid->claimed & HID_CLAIMED_HIDDEV && interrupt)
1da177e4
LT
791 hiddev_hid_event(hid, field, usage, value, regs);
792}
793
794/*
795 * Analyse a received field, and fetch the data from it. The field
796 * content is stored for next report processing (we do differential
797 * reporting to the layer).
798 */
799
bc5d0482 800static void hid_input_field(struct hid_device *hid, struct hid_field *field, __u8 *data, int interrupt, struct pt_regs *regs)
1da177e4
LT
801{
802 unsigned n;
803 unsigned count = field->report_count;
804 unsigned offset = field->report_offset;
805 unsigned size = field->report_size;
806 __s32 min = field->logical_minimum;
807 __s32 max = field->logical_maximum;
808 __s32 *value;
809
810 if (!(value = kmalloc(sizeof(__s32) * count, GFP_ATOMIC)))
811 return;
812
813 for (n = 0; n < count; n++) {
814
815 value[n] = min < 0 ? snto32(extract(data, offset + n * size, size), size) :
816 extract(data, offset + n * size, size);
817
818 if (!(field->flags & HID_MAIN_ITEM_VARIABLE) /* Ignore report if ErrorRollOver */
819 && value[n] >= min && value[n] <= max
820 && field->usage[value[n] - min].hid == HID_UP_KEYBOARD + 1)
821 goto exit;
822 }
823
824 for (n = 0; n < count; n++) {
825
826 if (HID_MAIN_ITEM_VARIABLE & field->flags) {
bc5d0482 827 hid_process_event(hid, field, &field->usage[n], value[n], interrupt, regs);
1da177e4
LT
828 continue;
829 }
830
831 if (field->value[n] >= min && field->value[n] <= max
832 && field->usage[field->value[n] - min].hid
833 && search(value, field->value[n], count))
bc5d0482 834 hid_process_event(hid, field, &field->usage[field->value[n] - min], 0, interrupt, regs);
1da177e4
LT
835
836 if (value[n] >= min && value[n] <= max
837 && field->usage[value[n] - min].hid
838 && search(field->value, value[n], count))
bc5d0482 839 hid_process_event(hid, field, &field->usage[value[n] - min], 1, interrupt, regs);
1da177e4
LT
840 }
841
842 memcpy(field->value, value, count * sizeof(__s32));
843exit:
844 kfree(value);
845}
846
bc5d0482 847static int hid_input_report(int type, struct urb *urb, int interrupt, struct pt_regs *regs)
1da177e4
LT
848{
849 struct hid_device *hid = urb->context;
850 struct hid_report_enum *report_enum = hid->report_enum + type;
851 u8 *data = urb->transfer_buffer;
852 int len = urb->actual_length;
853 struct hid_report *report;
854 int n, size;
855
856 if (!len) {
857 dbg("empty report");
858 return -1;
859 }
860
861#ifdef DEBUG_DATA
862 printk(KERN_DEBUG __FILE__ ": report (size %u) (%snumbered)\n", len, report_enum->numbered ? "" : "un");
863#endif
864
865 n = 0; /* Normally report number is 0 */
866 if (report_enum->numbered) { /* Device uses numbered reports, data[0] is report number */
867 n = *data++;
868 len--;
869 }
870
871#ifdef DEBUG_DATA
872 {
873 int i;
874 printk(KERN_DEBUG __FILE__ ": report %d (size %u) = ", n, len);
875 for (i = 0; i < len; i++)
876 printk(" %02x", data[i]);
877 printk("\n");
878 }
879#endif
880
881 if (!(report = report_enum->report_id_hash[n])) {
882 dbg("undefined report_id %d received", n);
883 return -1;
884 }
885
886 size = ((report->size - 1) >> 3) + 1;
887
cd610457 888 if (len < size) {
1da177e4 889 dbg("report %d is too short, (%d < %d)", report->id, len, size);
cd610457
AK
890 memset(data + len, 0, size - len);
891 }
1da177e4
LT
892
893 if (hid->claimed & HID_CLAIMED_HIDDEV)
894 hiddev_report_event(hid, report);
895
896 for (n = 0; n < report->maxfield; n++)
bc5d0482 897 hid_input_field(hid, report->field[n], data, interrupt, regs);
1da177e4
LT
898
899 if (hid->claimed & HID_CLAIMED_INPUT)
900 hidinput_report_event(hid, report);
901
902 return 0;
903}
904
aef4e266
AS
905/*
906 * Input submission and I/O error handler.
907 */
908
909static void hid_io_error(struct hid_device *hid);
910
911/* Start up the input URB */
912static int hid_start_in(struct hid_device *hid)
913{
914 unsigned long flags;
915 int rc = 0;
916
917 spin_lock_irqsave(&hid->inlock, flags);
918 if (hid->open > 0 && !test_bit(HID_SUSPENDED, &hid->iofl) &&
919 !test_and_set_bit(HID_IN_RUNNING, &hid->iofl)) {
920 rc = usb_submit_urb(hid->urbin, GFP_ATOMIC);
921 if (rc != 0)
922 clear_bit(HID_IN_RUNNING, &hid->iofl);
923 }
924 spin_unlock_irqrestore(&hid->inlock, flags);
925 return rc;
926}
927
928/* I/O retry timer routine */
929static void hid_retry_timeout(unsigned long _hid)
930{
931 struct hid_device *hid = (struct hid_device *) _hid;
932
933 dev_dbg(&hid->intf->dev, "retrying intr urb\n");
934 if (hid_start_in(hid))
935 hid_io_error(hid);
936}
937
938/* Workqueue routine to reset the device */
939static void hid_reset(void *_hid)
940{
941 struct hid_device *hid = (struct hid_device *) _hid;
942 int rc_lock, rc;
943
944 dev_dbg(&hid->intf->dev, "resetting device\n");
945 rc = rc_lock = usb_lock_device_for_reset(hid->dev, hid->intf);
946 if (rc_lock >= 0) {
947 rc = usb_reset_device(hid->dev);
948 if (rc_lock)
949 usb_unlock_device(hid->dev);
950 }
951 clear_bit(HID_RESET_PENDING, &hid->iofl);
952
953 if (rc == 0) {
954 hid->retry_delay = 0;
955 if (hid_start_in(hid))
956 hid_io_error(hid);
957 } else if (!(rc == -ENODEV || rc == -EHOSTUNREACH || rc == -EINTR))
958 err("can't reset device, %s-%s/input%d, status %d",
959 hid->dev->bus->bus_name,
960 hid->dev->devpath,
961 hid->ifnum, rc);
962}
963
964/* Main I/O error handler */
965static void hid_io_error(struct hid_device *hid)
966{
967 unsigned long flags;
968
969 spin_lock_irqsave(&hid->inlock, flags);
970
971 /* Stop when disconnected */
972 if (usb_get_intfdata(hid->intf) == NULL)
973 goto done;
974
975 /* When an error occurs, retry at increasing intervals */
976 if (hid->retry_delay == 0) {
977 hid->retry_delay = 13; /* Then 26, 52, 104, 104, ... */
978 hid->stop_retry = jiffies + msecs_to_jiffies(1000);
979 } else if (hid->retry_delay < 100)
980 hid->retry_delay *= 2;
981
982 if (time_after(jiffies, hid->stop_retry)) {
983
984 /* Retries failed, so do a port reset */
985 if (!test_and_set_bit(HID_RESET_PENDING, &hid->iofl)) {
986 if (schedule_work(&hid->reset_work))
987 goto done;
988 clear_bit(HID_RESET_PENDING, &hid->iofl);
989 }
990 }
991
992 mod_timer(&hid->io_retry,
993 jiffies + msecs_to_jiffies(hid->retry_delay));
994done:
995 spin_unlock_irqrestore(&hid->inlock, flags);
996}
997
1da177e4
LT
998/*
999 * Input interrupt completion handler.
1000 */
1001
1002static void hid_irq_in(struct urb *urb, struct pt_regs *regs)
1003{
1004 struct hid_device *hid = urb->context;
1005 int status;
1006
1007 switch (urb->status) {
1008 case 0: /* success */
aef4e266 1009 hid->retry_delay = 0;
bc5d0482 1010 hid_input_report(HID_INPUT_REPORT, urb, 1, regs);
1da177e4
LT
1011 break;
1012 case -ECONNRESET: /* unlink */
1013 case -ENOENT:
1da177e4 1014 case -ESHUTDOWN: /* unplug */
aef4e266 1015 clear_bit(HID_IN_RUNNING, &hid->iofl);
1da177e4 1016 return;
aef4e266
AS
1017 case -EILSEQ: /* protocol error or unplug */
1018 case -EPROTO: /* protocol error or unplug */
1da177e4 1019 case -ETIMEDOUT: /* NAK */
aef4e266
AS
1020 clear_bit(HID_IN_RUNNING, &hid->iofl);
1021 hid_io_error(hid);
1022 return;
1da177e4
LT
1023 default: /* error */
1024 warn("input irq status %d received", urb->status);
1025 }
1026
1027 status = usb_submit_urb(urb, SLAB_ATOMIC);
aef4e266
AS
1028 if (status) {
1029 clear_bit(HID_IN_RUNNING, &hid->iofl);
1030 if (status != -EPERM) {
1031 err("can't resubmit intr, %s-%s/input%d, status %d",
1032 hid->dev->bus->bus_name,
1033 hid->dev->devpath,
1034 hid->ifnum, status);
1035 hid_io_error(hid);
1036 }
1037 }
1da177e4
LT
1038}
1039
1040/*
1041 * Output the field into the report.
1042 */
1043
1044static void hid_output_field(struct hid_field *field, __u8 *data)
1045{
1046 unsigned count = field->report_count;
1047 unsigned offset = field->report_offset;
1048 unsigned size = field->report_size;
1049 unsigned n;
1050
1051 for (n = 0; n < count; n++) {
1052 if (field->logical_minimum < 0) /* signed values */
1053 implement(data, offset + n * size, size, s32ton(field->value[n], size));
1054 else /* unsigned values */
1055 implement(data, offset + n * size, size, field->value[n]);
1056 }
1057}
1058
1059/*
1060 * Create a report.
1061 */
1062
1063static void hid_output_report(struct hid_report *report, __u8 *data)
1064{
1065 unsigned n;
1066
1067 if (report->id > 0)
1068 *data++ = report->id;
1069
1070 for (n = 0; n < report->maxfield; n++)
1071 hid_output_field(report->field[n], data);
1072}
1073
1074/*
1075 * Set a field value. The report this field belongs to has to be
1076 * created and transferred to the device, to set this value in the
1077 * device.
1078 */
1079
1080int hid_set_field(struct hid_field *field, unsigned offset, __s32 value)
1081{
1082 unsigned size = field->report_size;
1083
1084 hid_dump_input(field->usage + offset, value);
1085
1086 if (offset >= field->report_count) {
1087 dbg("offset (%d) exceeds report_count (%d)", offset, field->report_count);
1088 hid_dump_field(field, 8);
1089 return -1;
1090 }
1091 if (field->logical_minimum < 0) {
1092 if (value != snto32(s32ton(value, size), size)) {
1093 dbg("value %d is out of range", value);
1094 return -1;
1095 }
1096 }
1097 field->value[offset] = value;
1098 return 0;
1099}
1100
1101/*
1102 * Find a report field with a specified HID usage.
1103 */
1104
1105struct hid_field *hid_find_field_by_usage(struct hid_device *hid, __u32 wanted_usage, int type)
1106{
1107 struct hid_report *report;
1108 int i;
1109
1110 list_for_each_entry(report, &hid->report_enum[type].report_list, list)
1111 for (i = 0; i < report->maxfield; i++)
1112 if (report->field[i]->logical == wanted_usage)
1113 return report->field[i];
1114 return NULL;
1115}
1116
1117static int hid_submit_out(struct hid_device *hid)
1118{
1119 struct hid_report *report;
1120
1121 report = hid->out[hid->outtail];
1122
1123 hid_output_report(report, hid->outbuf);
1124 hid->urbout->transfer_buffer_length = ((report->size - 1) >> 3) + 1 + (report->id > 0);
1125 hid->urbout->dev = hid->dev;
1126
1127 dbg("submitting out urb");
1128
1129 if (usb_submit_urb(hid->urbout, GFP_ATOMIC)) {
1130 err("usb_submit_urb(out) failed");
1131 return -1;
1132 }
1133
1134 return 0;
1135}
1136
1137static int hid_submit_ctrl(struct hid_device *hid)
1138{
1139 struct hid_report *report;
1140 unsigned char dir;
1141 int len;
1142
1143 report = hid->ctrl[hid->ctrltail].report;
1144 dir = hid->ctrl[hid->ctrltail].dir;
1145
1146 len = ((report->size - 1) >> 3) + 1 + (report->id > 0);
1147 if (dir == USB_DIR_OUT) {
1148 hid_output_report(report, hid->ctrlbuf);
1149 hid->urbctrl->pipe = usb_sndctrlpipe(hid->dev, 0);
1150 hid->urbctrl->transfer_buffer_length = len;
1151 } else {
1152 int maxpacket, padlen;
1153
1154 hid->urbctrl->pipe = usb_rcvctrlpipe(hid->dev, 0);
1155 maxpacket = usb_maxpacket(hid->dev, hid->urbctrl->pipe, 0);
1156 if (maxpacket > 0) {
1157 padlen = (len + maxpacket - 1) / maxpacket;
1158 padlen *= maxpacket;
bf0964dc
MH
1159 if (padlen > hid->bufsize)
1160 padlen = hid->bufsize;
1da177e4
LT
1161 } else
1162 padlen = 0;
1163 hid->urbctrl->transfer_buffer_length = padlen;
1164 }
1165 hid->urbctrl->dev = hid->dev;
1166
1167 hid->cr->bRequestType = USB_TYPE_CLASS | USB_RECIP_INTERFACE | dir;
1168 hid->cr->bRequest = (dir == USB_DIR_OUT) ? HID_REQ_SET_REPORT : HID_REQ_GET_REPORT;
1169 hid->cr->wValue = cpu_to_le16(((report->type + 1) << 8) | report->id);
1170 hid->cr->wIndex = cpu_to_le16(hid->ifnum);
1171 hid->cr->wLength = cpu_to_le16(len);
1172
1173 dbg("submitting ctrl urb: %s wValue=0x%04x wIndex=0x%04x wLength=%u",
1174 hid->cr->bRequest == HID_REQ_SET_REPORT ? "Set_Report" : "Get_Report",
1175 hid->cr->wValue, hid->cr->wIndex, hid->cr->wLength);
1176
1177 if (usb_submit_urb(hid->urbctrl, GFP_ATOMIC)) {
1178 err("usb_submit_urb(ctrl) failed");
1179 return -1;
1180 }
1181
1182 return 0;
1183}
1184
1185/*
1186 * Output interrupt completion handler.
1187 */
1188
1189static void hid_irq_out(struct urb *urb, struct pt_regs *regs)
1190{
1191 struct hid_device *hid = urb->context;
1192 unsigned long flags;
1193 int unplug = 0;
1194
1195 switch (urb->status) {
1196 case 0: /* success */
c4786ca8 1197 break;
1da177e4 1198 case -ESHUTDOWN: /* unplug */
1da177e4 1199 unplug = 1;
aef4e266
AS
1200 case -EILSEQ: /* protocol error or unplug */
1201 case -EPROTO: /* protocol error or unplug */
1da177e4
LT
1202 case -ECONNRESET: /* unlink */
1203 case -ENOENT:
1204 break;
1205 default: /* error */
1206 warn("output irq status %d received", urb->status);
1207 }
1208
1209 spin_lock_irqsave(&hid->outlock, flags);
1210
1211 if (unplug)
1212 hid->outtail = hid->outhead;
1213 else
1214 hid->outtail = (hid->outtail + 1) & (HID_OUTPUT_FIFO_SIZE - 1);
1215
1216 if (hid->outhead != hid->outtail) {
1217 if (hid_submit_out(hid)) {
53b3531b 1218 clear_bit(HID_OUT_RUNNING, &hid->iofl);
1da177e4
LT
1219 wake_up(&hid->wait);
1220 }
1221 spin_unlock_irqrestore(&hid->outlock, flags);
1222 return;
1223 }
1224
1225 clear_bit(HID_OUT_RUNNING, &hid->iofl);
1226 spin_unlock_irqrestore(&hid->outlock, flags);
1227 wake_up(&hid->wait);
1228}
1229
1230/*
1231 * Control pipe completion handler.
1232 */
1233
1234static void hid_ctrl(struct urb *urb, struct pt_regs *regs)
1235{
1236 struct hid_device *hid = urb->context;
1237 unsigned long flags;
1238 int unplug = 0;
1239
1240 spin_lock_irqsave(&hid->ctrllock, flags);
1241
1242 switch (urb->status) {
1243 case 0: /* success */
1244 if (hid->ctrl[hid->ctrltail].dir == USB_DIR_IN)
bc5d0482 1245 hid_input_report(hid->ctrl[hid->ctrltail].report->type, urb, 0, regs);
c4786ca8 1246 break;
1da177e4 1247 case -ESHUTDOWN: /* unplug */
1da177e4 1248 unplug = 1;
aef4e266
AS
1249 case -EILSEQ: /* protocol error or unplug */
1250 case -EPROTO: /* protocol error or unplug */
1da177e4
LT
1251 case -ECONNRESET: /* unlink */
1252 case -ENOENT:
1253 case -EPIPE: /* report not available */
1254 break;
1255 default: /* error */
1256 warn("ctrl urb status %d received", urb->status);
1257 }
1258
1259 if (unplug)
1260 hid->ctrltail = hid->ctrlhead;
1261 else
1262 hid->ctrltail = (hid->ctrltail + 1) & (HID_CONTROL_FIFO_SIZE - 1);
1263
1264 if (hid->ctrlhead != hid->ctrltail) {
1265 if (hid_submit_ctrl(hid)) {
1266 clear_bit(HID_CTRL_RUNNING, &hid->iofl);
1267 wake_up(&hid->wait);
1268 }
1269 spin_unlock_irqrestore(&hid->ctrllock, flags);
1270 return;
1271 }
1272
1273 clear_bit(HID_CTRL_RUNNING, &hid->iofl);
1274 spin_unlock_irqrestore(&hid->ctrllock, flags);
1275 wake_up(&hid->wait);
1276}
1277
1278void hid_submit_report(struct hid_device *hid, struct hid_report *report, unsigned char dir)
1279{
1280 int head;
1281 unsigned long flags;
1282
1283 if ((hid->quirks & HID_QUIRK_NOGET) && dir == USB_DIR_IN)
1284 return;
1285
1286 if (hid->urbout && dir == USB_DIR_OUT && report->type == HID_OUTPUT_REPORT) {
1287
1288 spin_lock_irqsave(&hid->outlock, flags);
1289
1290 if ((head = (hid->outhead + 1) & (HID_OUTPUT_FIFO_SIZE - 1)) == hid->outtail) {
1291 spin_unlock_irqrestore(&hid->outlock, flags);
1292 warn("output queue full");
1293 return;
1294 }
1295
1296 hid->out[hid->outhead] = report;
1297 hid->outhead = head;
1298
1299 if (!test_and_set_bit(HID_OUT_RUNNING, &hid->iofl))
1300 if (hid_submit_out(hid))
1301 clear_bit(HID_OUT_RUNNING, &hid->iofl);
1302
1303 spin_unlock_irqrestore(&hid->outlock, flags);
1304 return;
1305 }
1306
1307 spin_lock_irqsave(&hid->ctrllock, flags);
1308
1309 if ((head = (hid->ctrlhead + 1) & (HID_CONTROL_FIFO_SIZE - 1)) == hid->ctrltail) {
1310 spin_unlock_irqrestore(&hid->ctrllock, flags);
1311 warn("control queue full");
1312 return;
1313 }
1314
1315 hid->ctrl[hid->ctrlhead].report = report;
1316 hid->ctrl[hid->ctrlhead].dir = dir;
1317 hid->ctrlhead = head;
1318
1319 if (!test_and_set_bit(HID_CTRL_RUNNING, &hid->iofl))
1320 if (hid_submit_ctrl(hid))
1321 clear_bit(HID_CTRL_RUNNING, &hid->iofl);
1322
1323 spin_unlock_irqrestore(&hid->ctrllock, flags);
1324}
1325
1326int hid_wait_io(struct hid_device *hid)
1327{
1328 if (!wait_event_timeout(hid->wait, (!test_bit(HID_CTRL_RUNNING, &hid->iofl) &&
1329 !test_bit(HID_OUT_RUNNING, &hid->iofl)),
1330 10*HZ)) {
1331 dbg("timeout waiting for ctrl or out queue to clear");
1332 return -1;
1333 }
1334
1335 return 0;
1336}
1337
854561b0
VP
1338static int hid_set_idle(struct usb_device *dev, int ifnum, int report, int idle)
1339{
71387bd7 1340 return usb_control_msg(dev, usb_sndctrlpipe(dev, 0),
854561b0
VP
1341 HID_REQ_SET_IDLE, USB_TYPE_CLASS | USB_RECIP_INTERFACE, (idle << 8) | report,
1342 ifnum, NULL, 0, USB_CTRL_SET_TIMEOUT);
1343}
1344
1da177e4
LT
1345static int hid_get_class_descriptor(struct usb_device *dev, int ifnum,
1346 unsigned char type, void *buf, int size)
1347{
1348 int result, retries = 4;
1349
1350 memset(buf,0,size); // Make sure we parse really received data
1351
1352 do {
1353 result = usb_control_msg(dev, usb_rcvctrlpipe(dev, 0),
1354 USB_REQ_GET_DESCRIPTOR, USB_RECIP_INTERFACE | USB_DIR_IN,
1355 (type << 8), ifnum, buf, size, USB_CTRL_GET_TIMEOUT);
1356 retries--;
1357 } while (result < size && retries);
1358 return result;
1359}
1360
1361int hid_open(struct hid_device *hid)
1362{
aef4e266
AS
1363 ++hid->open;
1364 if (hid_start_in(hid))
1365 hid_io_error(hid);
1da177e4
LT
1366 return 0;
1367}
1368
1369void hid_close(struct hid_device *hid)
1370{
1371 if (!--hid->open)
1372 usb_kill_urb(hid->urbin);
1373}
1374
1375/*
1376 * Initialize all reports
1377 */
1378
1379void hid_init_reports(struct hid_device *hid)
1380{
1381 struct hid_report *report;
1382 int err, ret;
1383
bf0964dc 1384 list_for_each_entry(report, &hid->report_enum[HID_INPUT_REPORT].report_list, list)
1da177e4 1385 hid_submit_report(hid, report, USB_DIR_IN);
1da177e4
LT
1386
1387 list_for_each_entry(report, &hid->report_enum[HID_FEATURE_REPORT].report_list, list)
1388 hid_submit_report(hid, report, USB_DIR_IN);
1389
1390 err = 0;
1391 ret = hid_wait_io(hid);
1392 while (ret) {
1393 err |= ret;
1394 if (test_bit(HID_CTRL_RUNNING, &hid->iofl))
1395 usb_kill_urb(hid->urbctrl);
1396 if (test_bit(HID_OUT_RUNNING, &hid->iofl))
1397 usb_kill_urb(hid->urbout);
1398 ret = hid_wait_io(hid);
1399 }
1400
1401 if (err)
de289fdf 1402 warn("timeout initializing reports");
1da177e4
LT
1403}
1404
1405#define USB_VENDOR_ID_WACOM 0x056a
1406#define USB_DEVICE_ID_WACOM_PENPARTNER 0x0000
1407#define USB_DEVICE_ID_WACOM_GRAPHIRE 0x0010
1408#define USB_DEVICE_ID_WACOM_INTUOS 0x0020
1409#define USB_DEVICE_ID_WACOM_PL 0x0030
1410#define USB_DEVICE_ID_WACOM_INTUOS2 0x0040
1411#define USB_DEVICE_ID_WACOM_VOLITO 0x0060
1412#define USB_DEVICE_ID_WACOM_PTU 0x0003
5ce0482e
PC
1413#define USB_DEVICE_ID_WACOM_INTUOS3 0x00B0
1414#define USB_DEVICE_ID_WACOM_CINTIQ 0x003F
116d75bd 1415#define USB_DEVICE_ID_WACOM_DTF 0x00C0
1da177e4 1416
53880546
SV
1417#define USB_VENDOR_ID_ACECAD 0x0460
1418#define USB_DEVICE_ID_ACECAD_FLAIR 0x0004
1419#define USB_DEVICE_ID_ACECAD_302 0x0008
1420
1da177e4
LT
1421#define USB_VENDOR_ID_KBGEAR 0x084e
1422#define USB_DEVICE_ID_KBGEAR_JAMSTUDIO 0x1001
1423
1424#define USB_VENDOR_ID_AIPTEK 0x08ca
1425#define USB_DEVICE_ID_AIPTEK_01 0x0001
1426#define USB_DEVICE_ID_AIPTEK_10 0x0010
1427#define USB_DEVICE_ID_AIPTEK_20 0x0020
1428#define USB_DEVICE_ID_AIPTEK_21 0x0021
1429#define USB_DEVICE_ID_AIPTEK_22 0x0022
1430#define USB_DEVICE_ID_AIPTEK_23 0x0023
1431#define USB_DEVICE_ID_AIPTEK_24 0x0024
1432
1433#define USB_VENDOR_ID_GRIFFIN 0x077d
1434#define USB_DEVICE_ID_POWERMATE 0x0410
1435#define USB_DEVICE_ID_SOUNDKNOB 0x04AA
1436
1437#define USB_VENDOR_ID_ATEN 0x0557
1438#define USB_DEVICE_ID_ATEN_UC100KM 0x2004
1439#define USB_DEVICE_ID_ATEN_CS124U 0x2202
1440#define USB_DEVICE_ID_ATEN_2PORTKVM 0x2204
1441#define USB_DEVICE_ID_ATEN_4PORTKVM 0x2205
1442#define USB_DEVICE_ID_ATEN_4PORTKVMC 0x2208
1443
1444#define USB_VENDOR_ID_TOPMAX 0x0663
1445#define USB_DEVICE_ID_TOPMAX_COBRAPAD 0x0103
1446
1447#define USB_VENDOR_ID_HAPP 0x078b
1448#define USB_DEVICE_ID_UGCI_DRIVING 0x0010
1449#define USB_DEVICE_ID_UGCI_FLYING 0x0020
1450#define USB_DEVICE_ID_UGCI_FIGHTING 0x0030
1451
1452#define USB_VENDOR_ID_MGE 0x0463
1453#define USB_DEVICE_ID_MGE_UPS 0xffff
1454#define USB_DEVICE_ID_MGE_UPS1 0x0001
1455
1456#define USB_VENDOR_ID_ONTRAK 0x0a07
1457#define USB_DEVICE_ID_ONTRAK_ADU100 0x0064
1458
1459#define USB_VENDOR_ID_TANGTOP 0x0d3d
1460#define USB_DEVICE_ID_TANGTOP_USBPS2 0x0001
1461
1462#define USB_VENDOR_ID_ESSENTIAL_REALITY 0x0d7f
1463#define USB_DEVICE_ID_ESSENTIAL_REALITY_P5 0x0100
1464
1465#define USB_VENDOR_ID_A4TECH 0x09da
1466#define USB_DEVICE_ID_A4TECH_WCP32PU 0x0006
1467
61cdecd9 1468#define USB_VENDOR_ID_AASHIMA 0x06d6
6345fdfd 1469#define USB_DEVICE_ID_AASHIMA_GAMEPAD 0x0025
61cdecd9 1470#define USB_DEVICE_ID_AASHIMA_PREDATOR 0x0026
6345fdfd 1471
1da177e4
LT
1472#define USB_VENDOR_ID_CYPRESS 0x04b4
1473#define USB_DEVICE_ID_CYPRESS_MOUSE 0x0001
1474#define USB_DEVICE_ID_CYPRESS_HIDCOM 0x5500
7d25258f 1475#define USB_DEVICE_ID_CYPRESS_ULTRAMOUSE 0x7417
1da177e4
LT
1476
1477#define USB_VENDOR_ID_BERKSHIRE 0x0c98
1478#define USB_DEVICE_ID_BERKSHIRE_PCWD 0x1140
1479
1480#define USB_VENDOR_ID_ALPS 0x0433
1481#define USB_DEVICE_ID_IBM_GAMEPAD 0x1101
1482
1483#define USB_VENDOR_ID_SAITEK 0x06a3
1484#define USB_DEVICE_ID_SAITEK_RUMBLEPAD 0xff17
1485
1486#define USB_VENDOR_ID_NEC 0x073e
1487#define USB_DEVICE_ID_NEC_USB_GAME_PAD 0x0301
1488
1489#define USB_VENDOR_ID_CHIC 0x05fe
1490#define USB_DEVICE_ID_CHIC_GAMEPAD 0x0014
1491
1492#define USB_VENDOR_ID_GLAB 0x06c2
1493#define USB_DEVICE_ID_4_PHIDGETSERVO_30 0x0038
1494#define USB_DEVICE_ID_1_PHIDGETSERVO_30 0x0039
1495#define USB_DEVICE_ID_8_8_8_IF_KIT 0x0045
1496#define USB_DEVICE_ID_0_0_4_IF_KIT 0x0040
1497#define USB_DEVICE_ID_0_8_8_IF_KIT 0x0053
1498
1499#define USB_VENDOR_ID_WISEGROUP 0x0925
1500#define USB_DEVICE_ID_1_PHIDGETSERVO_20 0x8101
1501#define USB_DEVICE_ID_4_PHIDGETSERVO_20 0x8104
e65335ef 1502#define USB_DEVICE_ID_DUAL_USB_JOYPAD 0x8866
1da177e4
LT
1503
1504#define USB_VENDOR_ID_CODEMERCS 0x07c0
1505#define USB_DEVICE_ID_CODEMERCS_IOW40 0x1500
1506#define USB_DEVICE_ID_CODEMERCS_IOW24 0x1501
1507#define USB_DEVICE_ID_CODEMERCS_IOW48 0x1502
1508#define USB_DEVICE_ID_CODEMERCS_IOW28 0x1503
1509
1510#define USB_VENDOR_ID_DELORME 0x1163
1511#define USB_DEVICE_ID_DELORME_EARTHMATE 0x0100
dc1d1003 1512#define USB_DEVICE_ID_DELORME_EM_LT20 0x0200
1da177e4
LT
1513
1514#define USB_VENDOR_ID_MCC 0x09db
1515#define USB_DEVICE_ID_MCC_PMD1024LS 0x0076
1516#define USB_DEVICE_ID_MCC_PMD1208LS 0x007a
1517
1518#define USB_VENDOR_ID_CHICONY 0x04f2
1519#define USB_DEVICE_ID_CHICONY_USBHUB_KB 0x0100
1520
1521#define USB_VENDOR_ID_BTC 0x046e
1522#define USB_DEVICE_ID_BTC_KEYBOARD 0x5303
1523
4871d3be
GKH
1524#define USB_VENDOR_ID_VERNIER 0x08f7
1525#define USB_DEVICE_ID_VERNIER_LABPRO 0x0001
1526#define USB_DEVICE_ID_VERNIER_GOTEMP 0x0002
1527#define USB_DEVICE_ID_VERNIER_SKIP 0x0003
1528#define USB_DEVICE_ID_VERNIER_CYCLOPS 0x0004
1529
8fd6db47 1530#define USB_VENDOR_ID_LD 0x0f11
ba3e66e9
MH
1531#define USB_DEVICE_ID_LD_CASSY 0x1000
1532#define USB_DEVICE_ID_LD_POCKETCASSY 0x1010
1533#define USB_DEVICE_ID_LD_MOBILECASSY 0x1020
1534#define USB_DEVICE_ID_LD_JWM 0x1080
1535#define USB_DEVICE_ID_LD_DMMP 0x1081
1536#define USB_DEVICE_ID_LD_UMIP 0x1090
1537#define USB_DEVICE_ID_LD_XRAY1 0x1100
1538#define USB_DEVICE_ID_LD_XRAY2 0x1101
1539#define USB_DEVICE_ID_LD_VIDEOCOM 0x1200
1540#define USB_DEVICE_ID_LD_COM3LAB 0x2000
1541#define USB_DEVICE_ID_LD_TELEPORT 0x2010
1542#define USB_DEVICE_ID_LD_NETWORKANALYSER 0x2020
1543#define USB_DEVICE_ID_LD_POWERCONTROL 0x2030
1544#define USB_DEVICE_ID_LD_MACHINETEST 0x2040
8fd6db47 1545
c58de6d9
VP
1546#define USB_VENDOR_ID_APPLE 0x05ac
1547#define USB_DEVICE_ID_APPLE_POWERMOUSE 0x0304
1da177e4 1548
940824b0
VP
1549#define USB_VENDOR_ID_CHERRY 0x046a
1550#define USB_DEVICE_ID_CHERRY_CYMOTION 0x0023
1551
dc41baf8
VP
1552#define USB_VENDOR_ID_HP 0x03f0
1553#define USB_DEVICE_ID_HP_USBHUB_KB 0x020c
1554
2e56222e
WR
1555#define USB_VENDOR_ID_CREATIVELABS 0x062a
1556#define USB_DEVICE_ID_CREATIVELABS_SILVERCREST 0x0201
1557
1da177e4
LT
1558/*
1559 * Alphabetically sorted blacklist by quirk type.
1560 */
1561
4c4c9432 1562static const struct hid_blacklist {
1da177e4
LT
1563 __u16 idVendor;
1564 __u16 idProduct;
1565 unsigned quirks;
1566} hid_blacklist[] = {
1567
1568 { USB_VENDOR_ID_AIPTEK, USB_DEVICE_ID_AIPTEK_01, HID_QUIRK_IGNORE },
1569 { USB_VENDOR_ID_AIPTEK, USB_DEVICE_ID_AIPTEK_10, HID_QUIRK_IGNORE },
1570 { USB_VENDOR_ID_AIPTEK, USB_DEVICE_ID_AIPTEK_20, HID_QUIRK_IGNORE },
1571 { USB_VENDOR_ID_AIPTEK, USB_DEVICE_ID_AIPTEK_21, HID_QUIRK_IGNORE },
1572 { USB_VENDOR_ID_AIPTEK, USB_DEVICE_ID_AIPTEK_22, HID_QUIRK_IGNORE },
1573 { USB_VENDOR_ID_AIPTEK, USB_DEVICE_ID_AIPTEK_23, HID_QUIRK_IGNORE },
1574 { USB_VENDOR_ID_AIPTEK, USB_DEVICE_ID_AIPTEK_24, HID_QUIRK_IGNORE },
1575 { USB_VENDOR_ID_BERKSHIRE, USB_DEVICE_ID_BERKSHIRE_PCWD, HID_QUIRK_IGNORE },
1576 { USB_VENDOR_ID_CODEMERCS, USB_DEVICE_ID_CODEMERCS_IOW40, HID_QUIRK_IGNORE },
1577 { USB_VENDOR_ID_CODEMERCS, USB_DEVICE_ID_CODEMERCS_IOW24, HID_QUIRK_IGNORE },
1578 { USB_VENDOR_ID_CODEMERCS, USB_DEVICE_ID_CODEMERCS_IOW48, HID_QUIRK_IGNORE },
1579 { USB_VENDOR_ID_CODEMERCS, USB_DEVICE_ID_CODEMERCS_IOW28, HID_QUIRK_IGNORE },
1580 { USB_VENDOR_ID_CYPRESS, USB_DEVICE_ID_CYPRESS_HIDCOM, HID_QUIRK_IGNORE },
7d25258f 1581 { USB_VENDOR_ID_CYPRESS, USB_DEVICE_ID_CYPRESS_ULTRAMOUSE, HID_QUIRK_IGNORE },
1da177e4 1582 { USB_VENDOR_ID_DELORME, USB_DEVICE_ID_DELORME_EARTHMATE, HID_QUIRK_IGNORE },
dc1d1003 1583 { USB_VENDOR_ID_DELORME, USB_DEVICE_ID_DELORME_EM_LT20, HID_QUIRK_IGNORE },
1da177e4
LT
1584 { USB_VENDOR_ID_ESSENTIAL_REALITY, USB_DEVICE_ID_ESSENTIAL_REALITY_P5, HID_QUIRK_IGNORE },
1585 { USB_VENDOR_ID_GLAB, USB_DEVICE_ID_4_PHIDGETSERVO_30, HID_QUIRK_IGNORE },
1586 { USB_VENDOR_ID_GLAB, USB_DEVICE_ID_1_PHIDGETSERVO_30, HID_QUIRK_IGNORE },
1587 { USB_VENDOR_ID_GLAB, USB_DEVICE_ID_8_8_8_IF_KIT, HID_QUIRK_IGNORE },
1588 { USB_VENDOR_ID_GLAB, USB_DEVICE_ID_0_0_4_IF_KIT, HID_QUIRK_IGNORE },
1589 { USB_VENDOR_ID_GLAB, USB_DEVICE_ID_0_8_8_IF_KIT, HID_QUIRK_IGNORE },
1590 { USB_VENDOR_ID_GRIFFIN, USB_DEVICE_ID_POWERMATE, HID_QUIRK_IGNORE },
1591 { USB_VENDOR_ID_GRIFFIN, USB_DEVICE_ID_SOUNDKNOB, HID_QUIRK_IGNORE },
1592 { USB_VENDOR_ID_KBGEAR, USB_DEVICE_ID_KBGEAR_JAMSTUDIO, HID_QUIRK_IGNORE },
ba3e66e9
MH
1593 { USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_CASSY, HID_QUIRK_IGNORE },
1594 { USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_POCKETCASSY, HID_QUIRK_IGNORE },
1595 { USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_MOBILECASSY, HID_QUIRK_IGNORE },
1596 { USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_JWM, HID_QUIRK_IGNORE },
1597 { USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_DMMP, HID_QUIRK_IGNORE },
1598 { USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_UMIP, HID_QUIRK_IGNORE },
1599 { USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_XRAY1, HID_QUIRK_IGNORE },
1600 { USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_XRAY2, HID_QUIRK_IGNORE },
1601 { USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_VIDEOCOM, HID_QUIRK_IGNORE },
1602 { USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_COM3LAB, HID_QUIRK_IGNORE },
1603 { USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_TELEPORT, HID_QUIRK_IGNORE },
1604 { USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_NETWORKANALYSER, HID_QUIRK_IGNORE },
1605 { USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_POWERCONTROL, HID_QUIRK_IGNORE },
1606 { USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_MACHINETEST, HID_QUIRK_IGNORE },
1da177e4
LT
1607 { USB_VENDOR_ID_MCC, USB_DEVICE_ID_MCC_PMD1024LS, HID_QUIRK_IGNORE },
1608 { USB_VENDOR_ID_MCC, USB_DEVICE_ID_MCC_PMD1208LS, HID_QUIRK_IGNORE },
1609 { USB_VENDOR_ID_MGE, USB_DEVICE_ID_MGE_UPS, HID_QUIRK_IGNORE },
1610 { USB_VENDOR_ID_MGE, USB_DEVICE_ID_MGE_UPS1, HID_QUIRK_IGNORE },
1611 { USB_VENDOR_ID_ONTRAK, USB_DEVICE_ID_ONTRAK_ADU100, HID_QUIRK_IGNORE },
1612 { USB_VENDOR_ID_ONTRAK, USB_DEVICE_ID_ONTRAK_ADU100 + 100, HID_QUIRK_IGNORE },
1613 { USB_VENDOR_ID_ONTRAK, USB_DEVICE_ID_ONTRAK_ADU100 + 200, HID_QUIRK_IGNORE },
1614 { USB_VENDOR_ID_ONTRAK, USB_DEVICE_ID_ONTRAK_ADU100 + 300, HID_QUIRK_IGNORE },
1615 { USB_VENDOR_ID_ONTRAK, USB_DEVICE_ID_ONTRAK_ADU100 + 400, HID_QUIRK_IGNORE },
1616 { USB_VENDOR_ID_ONTRAK, USB_DEVICE_ID_ONTRAK_ADU100 + 500, HID_QUIRK_IGNORE },
4871d3be
GKH
1617 { USB_VENDOR_ID_VERNIER, USB_DEVICE_ID_VERNIER_LABPRO, HID_QUIRK_IGNORE },
1618 { USB_VENDOR_ID_VERNIER, USB_DEVICE_ID_VERNIER_GOTEMP, HID_QUIRK_IGNORE },
1619 { USB_VENDOR_ID_VERNIER, USB_DEVICE_ID_VERNIER_SKIP, HID_QUIRK_IGNORE },
1620 { USB_VENDOR_ID_VERNIER, USB_DEVICE_ID_VERNIER_CYCLOPS, HID_QUIRK_IGNORE },
1da177e4
LT
1621 { USB_VENDOR_ID_WACOM, USB_DEVICE_ID_WACOM_PENPARTNER, HID_QUIRK_IGNORE },
1622 { USB_VENDOR_ID_WACOM, USB_DEVICE_ID_WACOM_GRAPHIRE, HID_QUIRK_IGNORE },
1623 { USB_VENDOR_ID_WACOM, USB_DEVICE_ID_WACOM_GRAPHIRE + 1, HID_QUIRK_IGNORE },
1624 { USB_VENDOR_ID_WACOM, USB_DEVICE_ID_WACOM_GRAPHIRE + 2, HID_QUIRK_IGNORE },
1625 { USB_VENDOR_ID_WACOM, USB_DEVICE_ID_WACOM_GRAPHIRE + 3, HID_QUIRK_IGNORE },
1626 { USB_VENDOR_ID_WACOM, USB_DEVICE_ID_WACOM_GRAPHIRE + 4, HID_QUIRK_IGNORE },
1627 { USB_VENDOR_ID_WACOM, USB_DEVICE_ID_WACOM_INTUOS, HID_QUIRK_IGNORE },
1628 { USB_VENDOR_ID_WACOM, USB_DEVICE_ID_WACOM_INTUOS + 1, HID_QUIRK_IGNORE },
1629 { USB_VENDOR_ID_WACOM, USB_DEVICE_ID_WACOM_INTUOS + 2, HID_QUIRK_IGNORE },
1630 { USB_VENDOR_ID_WACOM, USB_DEVICE_ID_WACOM_INTUOS + 3, HID_QUIRK_IGNORE },
1631 { USB_VENDOR_ID_WACOM, USB_DEVICE_ID_WACOM_INTUOS + 4, HID_QUIRK_IGNORE },
1632 { USB_VENDOR_ID_WACOM, USB_DEVICE_ID_WACOM_PL, HID_QUIRK_IGNORE },
1633 { USB_VENDOR_ID_WACOM, USB_DEVICE_ID_WACOM_PL + 1, HID_QUIRK_IGNORE },
1634 { USB_VENDOR_ID_WACOM, USB_DEVICE_ID_WACOM_PL + 2, HID_QUIRK_IGNORE },
1635 { USB_VENDOR_ID_WACOM, USB_DEVICE_ID_WACOM_PL + 3, HID_QUIRK_IGNORE },
1636 { USB_VENDOR_ID_WACOM, USB_DEVICE_ID_WACOM_PL + 4, HID_QUIRK_IGNORE },
1637 { USB_VENDOR_ID_WACOM, USB_DEVICE_ID_WACOM_PL + 5, HID_QUIRK_IGNORE },
116d75bd
PC
1638 { USB_VENDOR_ID_WACOM, USB_DEVICE_ID_WACOM_PL + 7, HID_QUIRK_IGNORE },
1639 { USB_VENDOR_ID_WACOM, USB_DEVICE_ID_WACOM_PL + 8, HID_QUIRK_IGNORE },
1640 { USB_VENDOR_ID_WACOM, USB_DEVICE_ID_WACOM_PL + 9, HID_QUIRK_IGNORE },
1da177e4
LT
1641 { USB_VENDOR_ID_WACOM, USB_DEVICE_ID_WACOM_INTUOS2 + 1, HID_QUIRK_IGNORE },
1642 { USB_VENDOR_ID_WACOM, USB_DEVICE_ID_WACOM_INTUOS2 + 2, HID_QUIRK_IGNORE },
1643 { USB_VENDOR_ID_WACOM, USB_DEVICE_ID_WACOM_INTUOS2 + 3, HID_QUIRK_IGNORE },
1644 { USB_VENDOR_ID_WACOM, USB_DEVICE_ID_WACOM_INTUOS2 + 4, HID_QUIRK_IGNORE },
1645 { USB_VENDOR_ID_WACOM, USB_DEVICE_ID_WACOM_INTUOS2 + 5, HID_QUIRK_IGNORE },
1646 { USB_VENDOR_ID_WACOM, USB_DEVICE_ID_WACOM_INTUOS2 + 7, HID_QUIRK_IGNORE },
1647 { USB_VENDOR_ID_WACOM, USB_DEVICE_ID_WACOM_VOLITO, HID_QUIRK_IGNORE },
116d75bd
PC
1648 { USB_VENDOR_ID_WACOM, USB_DEVICE_ID_WACOM_VOLITO + 1, HID_QUIRK_IGNORE },
1649 { USB_VENDOR_ID_WACOM, USB_DEVICE_ID_WACOM_VOLITO + 2, HID_QUIRK_IGNORE },
1650 { USB_VENDOR_ID_WACOM, USB_DEVICE_ID_WACOM_VOLITO + 3, HID_QUIRK_IGNORE },
1651 { USB_VENDOR_ID_WACOM, USB_DEVICE_ID_WACOM_VOLITO + 4, HID_QUIRK_IGNORE },
1652 { USB_VENDOR_ID_WACOM, USB_DEVICE_ID_WACOM_GRAPHIRE + 5, HID_QUIRK_IGNORE },
1653 { USB_VENDOR_ID_WACOM, USB_DEVICE_ID_WACOM_GRAPHIRE + 6, HID_QUIRK_IGNORE },
1da177e4 1654 { USB_VENDOR_ID_WACOM, USB_DEVICE_ID_WACOM_PTU, HID_QUIRK_IGNORE },
5ce0482e
PC
1655 { USB_VENDOR_ID_WACOM, USB_DEVICE_ID_WACOM_INTUOS3, HID_QUIRK_IGNORE },
1656 { USB_VENDOR_ID_WACOM, USB_DEVICE_ID_WACOM_INTUOS3 + 1, HID_QUIRK_IGNORE },
1657 { USB_VENDOR_ID_WACOM, USB_DEVICE_ID_WACOM_INTUOS3 + 2, HID_QUIRK_IGNORE },
116d75bd 1658 { USB_VENDOR_ID_WACOM, USB_DEVICE_ID_WACOM_INTUOS3 + 5, HID_QUIRK_IGNORE },
5ce0482e 1659 { USB_VENDOR_ID_WACOM, USB_DEVICE_ID_WACOM_CINTIQ, HID_QUIRK_IGNORE },
116d75bd 1660 { USB_VENDOR_ID_WACOM, USB_DEVICE_ID_WACOM_DTF, HID_QUIRK_IGNORE },
1da177e4
LT
1661 { USB_VENDOR_ID_WISEGROUP, USB_DEVICE_ID_4_PHIDGETSERVO_20, HID_QUIRK_IGNORE },
1662 { USB_VENDOR_ID_WISEGROUP, USB_DEVICE_ID_1_PHIDGETSERVO_20, HID_QUIRK_IGNORE },
1663
53880546
SV
1664 { USB_VENDOR_ID_ACECAD, USB_DEVICE_ID_ACECAD_FLAIR, HID_QUIRK_IGNORE },
1665 { USB_VENDOR_ID_ACECAD, USB_DEVICE_ID_ACECAD_302, HID_QUIRK_IGNORE },
1666
1da177e4
LT
1667 { USB_VENDOR_ID_ATEN, USB_DEVICE_ID_ATEN_UC100KM, HID_QUIRK_NOGET },
1668 { USB_VENDOR_ID_ATEN, USB_DEVICE_ID_ATEN_CS124U, HID_QUIRK_NOGET },
1669 { USB_VENDOR_ID_ATEN, USB_DEVICE_ID_ATEN_2PORTKVM, HID_QUIRK_NOGET },
1670 { USB_VENDOR_ID_ATEN, USB_DEVICE_ID_ATEN_4PORTKVM, HID_QUIRK_NOGET },
1671 { USB_VENDOR_ID_ATEN, USB_DEVICE_ID_ATEN_4PORTKVMC, HID_QUIRK_NOGET },
1672 { USB_VENDOR_ID_BTC, USB_DEVICE_ID_BTC_KEYBOARD, HID_QUIRK_NOGET},
1673 { USB_VENDOR_ID_CHICONY, USB_DEVICE_ID_CHICONY_USBHUB_KB, HID_QUIRK_NOGET},
2e56222e 1674 { USB_VENDOR_ID_CREATIVELABS, USB_DEVICE_ID_CREATIVELABS_SILVERCREST, HID_QUIRK_NOGET },
dc41baf8 1675 { USB_VENDOR_ID_HP, USB_DEVICE_ID_HP_USBHUB_KB, HID_QUIRK_NOGET },
1da177e4 1676 { USB_VENDOR_ID_TANGTOP, USB_DEVICE_ID_TANGTOP_USBPS2, HID_QUIRK_NOGET },
e65335ef 1677 { USB_VENDOR_ID_WISEGROUP, USB_DEVICE_ID_DUAL_USB_JOYPAD, HID_QUIRK_NOGET | HID_QUIRK_MULTI_INPUT },
1da177e4 1678
c58de6d9 1679 { USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_POWERMOUSE, HID_QUIRK_2WHEEL_POWERMOUSE },
1da177e4
LT
1680 { USB_VENDOR_ID_A4TECH, USB_DEVICE_ID_A4TECH_WCP32PU, HID_QUIRK_2WHEEL_MOUSE_HACK_7 },
1681 { USB_VENDOR_ID_CYPRESS, USB_DEVICE_ID_CYPRESS_MOUSE, HID_QUIRK_2WHEEL_MOUSE_HACK_5 },
1682
6345fdfd 1683 { USB_VENDOR_ID_AASHIMA, USB_DEVICE_ID_AASHIMA_GAMEPAD, HID_QUIRK_BADPAD },
61cdecd9 1684 { USB_VENDOR_ID_AASHIMA, USB_DEVICE_ID_AASHIMA_PREDATOR, HID_QUIRK_BADPAD },
1da177e4
LT
1685 { USB_VENDOR_ID_ALPS, USB_DEVICE_ID_IBM_GAMEPAD, HID_QUIRK_BADPAD },
1686 { USB_VENDOR_ID_CHIC, USB_DEVICE_ID_CHIC_GAMEPAD, HID_QUIRK_BADPAD },
1687 { USB_VENDOR_ID_HAPP, USB_DEVICE_ID_UGCI_DRIVING, HID_QUIRK_BADPAD | HID_QUIRK_MULTI_INPUT },
1688 { USB_VENDOR_ID_HAPP, USB_DEVICE_ID_UGCI_FLYING, HID_QUIRK_BADPAD | HID_QUIRK_MULTI_INPUT },
1689 { USB_VENDOR_ID_HAPP, USB_DEVICE_ID_UGCI_FIGHTING, HID_QUIRK_BADPAD | HID_QUIRK_MULTI_INPUT },
1690 { USB_VENDOR_ID_NEC, USB_DEVICE_ID_NEC_USB_GAME_PAD, HID_QUIRK_BADPAD },
1691 { USB_VENDOR_ID_SAITEK, USB_DEVICE_ID_SAITEK_RUMBLEPAD, HID_QUIRK_BADPAD },
1692 { USB_VENDOR_ID_TOPMAX, USB_DEVICE_ID_TOPMAX_COBRAPAD, HID_QUIRK_BADPAD },
1693
940824b0
VP
1694 { USB_VENDOR_ID_CHERRY, USB_DEVICE_ID_CHERRY_CYMOTION, HID_QUIRK_CYMOTION },
1695
eab9edd2
MH
1696 { USB_VENDOR_ID_APPLE, 0x020E, HID_QUIRK_POWERBOOK_HAS_FN },
1697 { USB_VENDOR_ID_APPLE, 0x020F, HID_QUIRK_POWERBOOK_HAS_FN },
1698 { USB_VENDOR_ID_APPLE, 0x0214, HID_QUIRK_POWERBOOK_HAS_FN },
1699 { USB_VENDOR_ID_APPLE, 0x0215, HID_QUIRK_POWERBOOK_HAS_FN },
1700 { USB_VENDOR_ID_APPLE, 0x0216, HID_QUIRK_POWERBOOK_HAS_FN },
1701 { USB_VENDOR_ID_APPLE, 0x030A, HID_QUIRK_POWERBOOK_HAS_FN },
1702 { USB_VENDOR_ID_APPLE, 0x030B, HID_QUIRK_POWERBOOK_HAS_FN },
1703
1da177e4
LT
1704 { 0, 0 }
1705};
1706
bf0964dc
MH
1707/*
1708 * Traverse the supplied list of reports and find the longest
1709 */
1710static void hid_find_max_report(struct hid_device *hid, unsigned int type, int *max)
1711{
1712 struct hid_report *report;
1713 int size;
1714
1715 list_for_each_entry(report, &hid->report_enum[type].report_list, list) {
1716 size = ((report->size - 1) >> 3) + 1;
1717 if (type == HID_INPUT_REPORT && hid->report_enum[type].numbered)
1718 size++;
1719 if (*max < size)
1720 *max = size;
1721 }
1722}
1723
1da177e4
LT
1724static int hid_alloc_buffers(struct usb_device *dev, struct hid_device *hid)
1725{
bf0964dc 1726 if (!(hid->inbuf = usb_buffer_alloc(dev, hid->bufsize, SLAB_ATOMIC, &hid->inbuf_dma)))
1da177e4 1727 return -1;
bf0964dc 1728 if (!(hid->outbuf = usb_buffer_alloc(dev, hid->bufsize, SLAB_ATOMIC, &hid->outbuf_dma)))
1da177e4
LT
1729 return -1;
1730 if (!(hid->cr = usb_buffer_alloc(dev, sizeof(*(hid->cr)), SLAB_ATOMIC, &hid->cr_dma)))
1731 return -1;
bf0964dc 1732 if (!(hid->ctrlbuf = usb_buffer_alloc(dev, hid->bufsize, SLAB_ATOMIC, &hid->ctrlbuf_dma)))
1da177e4
LT
1733 return -1;
1734
1735 return 0;
1736}
1737
1738static void hid_free_buffers(struct usb_device *dev, struct hid_device *hid)
1739{
1740 if (hid->inbuf)
bf0964dc 1741 usb_buffer_free(dev, hid->bufsize, hid->inbuf, hid->inbuf_dma);
1da177e4 1742 if (hid->outbuf)
bf0964dc 1743 usb_buffer_free(dev, hid->bufsize, hid->outbuf, hid->outbuf_dma);
1da177e4
LT
1744 if (hid->cr)
1745 usb_buffer_free(dev, sizeof(*(hid->cr)), hid->cr, hid->cr_dma);
1746 if (hid->ctrlbuf)
bf0964dc 1747 usb_buffer_free(dev, hid->bufsize, hid->ctrlbuf, hid->ctrlbuf_dma);
1da177e4
LT
1748}
1749
940824b0
VP
1750/*
1751 * Cherry Cymotion keyboard have an invalid HID report descriptor,
1752 * that needs fixing before we can parse it.
1753 */
1754
1755static void hid_fixup_cymotion_descriptor(char *rdesc, int rsize)
1756{
1757 if (rsize >= 17 && rdesc[11] == 0x3c && rdesc[12] == 0x02) {
1758 info("Fixing up Cherry Cymotion report descriptor");
1759 rdesc[11] = rdesc[16] = 0xff;
1760 rdesc[12] = rdesc[17] = 0x03;
1761 }
1762}
1763
1da177e4
LT
1764static struct hid_device *usb_hid_configure(struct usb_interface *intf)
1765{
1766 struct usb_host_interface *interface = intf->cur_altsetting;
1767 struct usb_device *dev = interface_to_usbdev (intf);
1768 struct hid_descriptor *hdesc;
1769 struct hid_device *hid;
1770 unsigned quirks = 0, rsize = 0;
c5b7c7c3
DT
1771 char *rdesc;
1772 int n, len, insize = 0;
1da177e4
LT
1773
1774 for (n = 0; hid_blacklist[n].idVendor; n++)
1775 if ((hid_blacklist[n].idVendor == le16_to_cpu(dev->descriptor.idVendor)) &&
1776 (hid_blacklist[n].idProduct == le16_to_cpu(dev->descriptor.idProduct)))
1777 quirks = hid_blacklist[n].quirks;
1778
1779 if (quirks & HID_QUIRK_IGNORE)
1780 return NULL;
1781
c5b7c7c3
DT
1782 if (usb_get_extra_descriptor(interface, HID_DT_HID, &hdesc) &&
1783 (!interface->desc.bNumEndpoints ||
1784 usb_get_extra_descriptor(&interface->endpoint[0], HID_DT_HID, &hdesc))) {
1785 dbg("class descriptor not present\n");
1786 return NULL;
1da177e4
LT
1787 }
1788
1789 for (n = 0; n < hdesc->bNumDescriptors; n++)
1790 if (hdesc->desc[n].bDescriptorType == HID_DT_REPORT)
1791 rsize = le16_to_cpu(hdesc->desc[n].wDescriptorLength);
1792
1793 if (!rsize || rsize > HID_MAX_DESCRIPTOR_SIZE) {
1794 dbg("weird size of report descriptor (%u)", rsize);
1795 return NULL;
1796 }
1797
1798 if (!(rdesc = kmalloc(rsize, GFP_KERNEL))) {
1799 dbg("couldn't allocate rdesc memory");
1800 return NULL;
1801 }
1802
854561b0
VP
1803 hid_set_idle(dev, interface->desc.bInterfaceNumber, 0, 0);
1804
1da177e4
LT
1805 if ((n = hid_get_class_descriptor(dev, interface->desc.bInterfaceNumber, HID_DT_REPORT, rdesc, rsize)) < 0) {
1806 dbg("reading report descriptor failed");
1807 kfree(rdesc);
1808 return NULL;
1809 }
1810
940824b0
VP
1811 if ((quirks & HID_QUIRK_CYMOTION))
1812 hid_fixup_cymotion_descriptor(rdesc, rsize);
1813
1da177e4
LT
1814#ifdef DEBUG_DATA
1815 printk(KERN_DEBUG __FILE__ ": report descriptor (size %u, read %d) = ", rsize, n);
1816 for (n = 0; n < rsize; n++)
1817 printk(" %02x", (unsigned char) rdesc[n]);
1818 printk("\n");
1819#endif
1820
1821 if (!(hid = hid_parse_report(rdesc, n))) {
1822 dbg("parsing report descriptor failed");
1823 kfree(rdesc);
1824 return NULL;
1825 }
1826
1827 kfree(rdesc);
1828 hid->quirks = quirks;
1829
bf0964dc
MH
1830 hid->bufsize = HID_MIN_BUFFER_SIZE;
1831 hid_find_max_report(hid, HID_INPUT_REPORT, &hid->bufsize);
1832 hid_find_max_report(hid, HID_OUTPUT_REPORT, &hid->bufsize);
1833 hid_find_max_report(hid, HID_FEATURE_REPORT, &hid->bufsize);
1834
1835 if (hid->bufsize > HID_MAX_BUFFER_SIZE)
1836 hid->bufsize = HID_MAX_BUFFER_SIZE;
1837
1838 hid_find_max_report(hid, HID_INPUT_REPORT, &insize);
1839
1840 if (insize > HID_MAX_BUFFER_SIZE)
1841 insize = HID_MAX_BUFFER_SIZE;
1842
1da177e4
LT
1843 if (hid_alloc_buffers(dev, hid)) {
1844 hid_free_buffers(dev, hid);
1845 goto fail;
1846 }
1847
1848 for (n = 0; n < interface->desc.bNumEndpoints; n++) {
1849
1850 struct usb_endpoint_descriptor *endpoint;
1851 int pipe;
1852 int interval;
1853
1854 endpoint = &interface->endpoint[n].desc;
1855 if ((endpoint->bmAttributes & 3) != 3) /* Not an interrupt endpoint */
1856 continue;
1857
1da177e4 1858 interval = endpoint->bInterval;
1da177e4
LT
1859
1860 /* Change the polling interval of mice. */
1861 if (hid->collection->usage == HID_GD_MOUSE && hid_mousepoll_interval > 0)
1862 interval = hid_mousepoll_interval;
05f091ab 1863
1da177e4
LT
1864 if (endpoint->bEndpointAddress & USB_DIR_IN) {
1865 if (hid->urbin)
1866 continue;
1867 if (!(hid->urbin = usb_alloc_urb(0, GFP_KERNEL)))
1868 goto fail;
1869 pipe = usb_rcvintpipe(dev, endpoint->bEndpointAddress);
bf0964dc 1870 usb_fill_int_urb(hid->urbin, dev, pipe, hid->inbuf, insize,
1da177e4
LT
1871 hid_irq_in, hid, interval);
1872 hid->urbin->transfer_dma = hid->inbuf_dma;
b375a049 1873 hid->urbin->transfer_flags |= URB_NO_TRANSFER_DMA_MAP;
1da177e4
LT
1874 } else {
1875 if (hid->urbout)
1876 continue;
1877 if (!(hid->urbout = usb_alloc_urb(0, GFP_KERNEL)))
1878 goto fail;
1879 pipe = usb_sndintpipe(dev, endpoint->bEndpointAddress);
1880 usb_fill_int_urb(hid->urbout, dev, pipe, hid->outbuf, 0,
1881 hid_irq_out, hid, interval);
1882 hid->urbout->transfer_dma = hid->outbuf_dma;
b375a049 1883 hid->urbout->transfer_flags |= URB_NO_TRANSFER_DMA_MAP;
1da177e4
LT
1884 }
1885 }
1886
1887 if (!hid->urbin) {
1888 err("couldn't find an input interrupt endpoint");
1889 goto fail;
1890 }
1891
1892 init_waitqueue_head(&hid->wait);
1893
aef4e266
AS
1894 INIT_WORK(&hid->reset_work, hid_reset, hid);
1895 setup_timer(&hid->io_retry, hid_retry_timeout, (unsigned long) hid);
1896
1897 spin_lock_init(&hid->inlock);
1da177e4
LT
1898 spin_lock_init(&hid->outlock);
1899 spin_lock_init(&hid->ctrllock);
1900
1901 hid->version = le16_to_cpu(hdesc->bcdHID);
1902 hid->country = hdesc->bCountryCode;
1903 hid->dev = dev;
1904 hid->intf = intf;
1905 hid->ifnum = interface->desc.bInterfaceNumber;
1906
1907 hid->name[0] = 0;
1908
c5b7c7c3
DT
1909 if (dev->manufacturer)
1910 strlcpy(hid->name, dev->manufacturer, sizeof(hid->name));
1911
1912 if (dev->product) {
1913 if (dev->manufacturer)
1914 strlcat(hid->name, " ", sizeof(hid->name));
1915 strlcat(hid->name, dev->product, sizeof(hid->name));
1916 }
1917
1918 if (!strlen(hid->name))
1919 snprintf(hid->name, sizeof(hid->name), "HID %04x:%04x",
1920 le16_to_cpu(dev->descriptor.idVendor),
1921 le16_to_cpu(dev->descriptor.idProduct));
1da177e4 1922
c5b7c7c3
DT
1923 usb_make_path(dev, hid->phys, sizeof(hid->phys));
1924 strlcat(hid->phys, "/input", sizeof(hid->phys));
1925 len = strlen(hid->phys);
1926 if (len < sizeof(hid->phys) - 1)
1927 snprintf(hid->phys + len, sizeof(hid->phys) - len,
1928 "%d", intf->altsetting[0].desc.bInterfaceNumber);
1da177e4
LT
1929
1930 if (usb_string(dev, dev->descriptor.iSerialNumber, hid->uniq, 64) <= 0)
1931 hid->uniq[0] = 0;
1932
1da177e4
LT
1933 hid->urbctrl = usb_alloc_urb(0, GFP_KERNEL);
1934 if (!hid->urbctrl)
1935 goto fail;
c5b7c7c3 1936
1da177e4
LT
1937 usb_fill_control_urb(hid->urbctrl, dev, 0, (void *) hid->cr,
1938 hid->ctrlbuf, 1, hid_ctrl, hid);
1939 hid->urbctrl->setup_dma = hid->cr_dma;
1940 hid->urbctrl->transfer_dma = hid->ctrlbuf_dma;
b375a049 1941 hid->urbctrl->transfer_flags |= (URB_NO_TRANSFER_DMA_MAP | URB_NO_SETUP_DMA_MAP);
1da177e4
LT
1942
1943 return hid;
1944
1945fail:
1946
1947 if (hid->urbin)
1948 usb_free_urb(hid->urbin);
1949 if (hid->urbout)
1950 usb_free_urb(hid->urbout);
1951 if (hid->urbctrl)
1952 usb_free_urb(hid->urbctrl);
1953 hid_free_buffers(dev, hid);
1954 hid_free_device(hid);
1955
1956 return NULL;
1957}
1958
1959static void hid_disconnect(struct usb_interface *intf)
1960{
1961 struct hid_device *hid = usb_get_intfdata (intf);
1962
1963 if (!hid)
1964 return;
1965
aef4e266 1966 spin_lock_irq(&hid->inlock); /* Sync with error handler */
1da177e4 1967 usb_set_intfdata(intf, NULL);
aef4e266 1968 spin_unlock_irq(&hid->inlock);
1da177e4
LT
1969 usb_kill_urb(hid->urbin);
1970 usb_kill_urb(hid->urbout);
1971 usb_kill_urb(hid->urbctrl);
1972
aef4e266
AS
1973 del_timer_sync(&hid->io_retry);
1974 flush_scheduled_work();
1975
1da177e4
LT
1976 if (hid->claimed & HID_CLAIMED_INPUT)
1977 hidinput_disconnect(hid);
1978 if (hid->claimed & HID_CLAIMED_HIDDEV)
1979 hiddev_disconnect(hid);
1980
1981 usb_free_urb(hid->urbin);
1982 usb_free_urb(hid->urbctrl);
1983 if (hid->urbout)
1984 usb_free_urb(hid->urbout);
1985
1986 hid_free_buffers(hid->dev, hid);
1987 hid_free_device(hid);
1988}
1989
1990static int hid_probe(struct usb_interface *intf, const struct usb_device_id *id)
1991{
1992 struct hid_device *hid;
1993 char path[64];
1994 int i;
1995 char *c;
1996
1997 dbg("HID probe called for ifnum %d",
1998 intf->altsetting->desc.bInterfaceNumber);
1999
2000 if (!(hid = usb_hid_configure(intf)))
479f6ea8 2001 return -ENODEV;
1da177e4
LT
2002
2003 hid_init_reports(hid);
2004 hid_dump_device(hid);
2005
2006 if (!hidinput_connect(hid))
2007 hid->claimed |= HID_CLAIMED_INPUT;
2008 if (!hiddev_connect(hid))
2009 hid->claimed |= HID_CLAIMED_HIDDEV;
2010
2011 usb_set_intfdata(intf, hid);
2012
2013 if (!hid->claimed) {
2014 printk ("HID device not claimed by input or hiddev\n");
2015 hid_disconnect(intf);
479f6ea8 2016 return -ENODEV;
1da177e4
LT
2017 }
2018
2019 printk(KERN_INFO);
2020
2021 if (hid->claimed & HID_CLAIMED_INPUT)
2022 printk("input");
2023 if (hid->claimed == (HID_CLAIMED_INPUT | HID_CLAIMED_HIDDEV))
2024 printk(",");
2025 if (hid->claimed & HID_CLAIMED_HIDDEV)
2026 printk("hiddev%d", hid->minor);
2027
2028 c = "Device";
2029 for (i = 0; i < hid->maxcollection; i++) {
2030 if (hid->collection[i].type == HID_COLLECTION_APPLICATION &&
2031 (hid->collection[i].usage & HID_USAGE_PAGE) == HID_UP_GENDESK &&
2032 (hid->collection[i].usage & 0xffff) < ARRAY_SIZE(hid_types)) {
2033 c = hid_types[hid->collection[i].usage & 0xffff];
2034 break;
2035 }
2036 }
2037
2038 usb_make_path(interface_to_usbdev(intf), path, 63);
2039
2040 printk(": USB HID v%x.%02x %s [%s] on %s\n",
2041 hid->version >> 8, hid->version & 0xff, c, hid->name, path);
2042
2043 return 0;
2044}
2045
27d72e85 2046static int hid_suspend(struct usb_interface *intf, pm_message_t message)
1da177e4
LT
2047{
2048 struct hid_device *hid = usb_get_intfdata (intf);
2049
aef4e266
AS
2050 spin_lock_irq(&hid->inlock); /* Sync with error handler */
2051 set_bit(HID_SUSPENDED, &hid->iofl);
2052 spin_unlock_irq(&hid->inlock);
2053 del_timer(&hid->io_retry);
1da177e4 2054 usb_kill_urb(hid->urbin);
1da177e4
LT
2055 dev_dbg(&intf->dev, "suspend\n");
2056 return 0;
2057}
2058
2059static int hid_resume(struct usb_interface *intf)
2060{
2061 struct hid_device *hid = usb_get_intfdata (intf);
2062 int status;
2063
aef4e266
AS
2064 clear_bit(HID_SUSPENDED, &hid->iofl);
2065 status = hid_start_in(hid);
1da177e4
LT
2066 dev_dbg(&intf->dev, "resume status %d\n", status);
2067 return status;
2068}
2069
2070static struct usb_device_id hid_usb_ids [] = {
2071 { .match_flags = USB_DEVICE_ID_MATCH_INT_CLASS,
2072 .bInterfaceClass = USB_INTERFACE_CLASS_HID },
2073 { } /* Terminating entry */
2074};
2075
2076MODULE_DEVICE_TABLE (usb, hid_usb_ids);
2077
2078static struct usb_driver hid_driver = {
1da177e4
LT
2079 .name = "usbhid",
2080 .probe = hid_probe,
2081 .disconnect = hid_disconnect,
2082 .suspend = hid_suspend,
2083 .resume = hid_resume,
2084 .id_table = hid_usb_ids,
2085};
2086
2087static int __init hid_init(void)
2088{
2089 int retval;
2090 retval = hiddev_init();
2091 if (retval)
2092 goto hiddev_init_fail;
2093 retval = usb_register(&hid_driver);
2094 if (retval)
2095 goto usb_register_fail;
2096 info(DRIVER_VERSION ":" DRIVER_DESC);
2097
2098 return 0;
2099usb_register_fail:
2100 hiddev_exit();
2101hiddev_init_fail:
2102 return retval;
2103}
2104
2105static void __exit hid_exit(void)
2106{
2107 usb_deregister(&hid_driver);
2108 hiddev_exit();
2109}
2110
2111module_init(hid_init);
2112module_exit(hid_exit);
2113
2114MODULE_AUTHOR(DRIVER_AUTHOR);
2115MODULE_DESCRIPTION(DRIVER_DESC);
2116MODULE_LICENSE(DRIVER_LICENSE);
This page took 0.261824 seconds and 5 git commands to generate.