HID: multitouch: fix Win 8 protocol
[profile/ivi/kernel-x86-ivi.git] / drivers / hid / hid-core.c
1 /*
2  *  HID support for Linux
3  *
4  *  Copyright (c) 1999 Andreas Gal
5  *  Copyright (c) 2000-2005 Vojtech Pavlik <vojtech@suse.cz>
6  *  Copyright (c) 2005 Michael Haboustak <mike-@cinci.rr.com> for Concept2, Inc
7  *  Copyright (c) 2006-2012 Jiri Kosina
8  */
9
10 /*
11  * This program is free software; you can redistribute it and/or modify it
12  * under the terms of the GNU General Public License as published by the Free
13  * Software Foundation; either version 2 of the License, or (at your option)
14  * any later version.
15  */
16
17 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
18
19 #include <linux/module.h>
20 #include <linux/slab.h>
21 #include <linux/init.h>
22 #include <linux/kernel.h>
23 #include <linux/list.h>
24 #include <linux/mm.h>
25 #include <linux/spinlock.h>
26 #include <asm/unaligned.h>
27 #include <asm/byteorder.h>
28 #include <linux/input.h>
29 #include <linux/wait.h>
30 #include <linux/vmalloc.h>
31 #include <linux/sched.h>
32 #include <linux/semaphore.h>
33
34 #include <linux/hid.h>
35 #include <linux/hiddev.h>
36 #include <linux/hid-debug.h>
37 #include <linux/hidraw.h>
38
39 #include "hid-ids.h"
40
41 /*
42  * Version Information
43  */
44
45 #define DRIVER_DESC "HID core driver"
46 #define DRIVER_LICENSE "GPL"
47
48 int hid_debug = 0;
49 module_param_named(debug, hid_debug, int, 0600);
50 MODULE_PARM_DESC(debug, "toggle HID debugging messages");
51 EXPORT_SYMBOL_GPL(hid_debug);
52
53 static int hid_ignore_special_drivers = 0;
54 module_param_named(ignore_special_drivers, hid_ignore_special_drivers, int, 0600);
55 MODULE_PARM_DESC(debug, "Ignore any special drivers and handle all devices by generic driver");
56
57 /*
58  * Register a new report for a device.
59  */
60
61 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
69         report = kzalloc(sizeof(struct hid_report), GFP_KERNEL);
70         if (!report)
71                 return NULL;
72
73         if (id != 0)
74                 report_enum->numbered = 1;
75
76         report->id = id;
77         report->type = type;
78         report->size = 0;
79         report->device = device;
80         report_enum->report_id_hash[id] = report;
81
82         list_add_tail(&report->list, &report_enum->report_list);
83
84         return report;
85 }
86 EXPORT_SYMBOL_GPL(hid_register_report);
87
88 /*
89  * Register a new field for this report.
90  */
91
92 static struct hid_field *hid_register_field(struct hid_report *report, unsigned usages, unsigned values)
93 {
94         struct hid_field *field;
95         int i;
96
97         if (report->maxfield == HID_MAX_FIELDS) {
98                 hid_err(report->device, "too many fields in report\n");
99                 return NULL;
100         }
101
102         field = kzalloc((sizeof(struct hid_field) +
103                          usages * sizeof(struct hid_usage) +
104                          values * sizeof(unsigned)), GFP_KERNEL);
105         if (!field)
106                 return NULL;
107
108         field->index = report->maxfield++;
109         report->field[field->index] = field;
110         field->usage = (struct hid_usage *)(field + 1);
111         field->value = (s32 *)(field->usage + usages);
112         field->report = report;
113
114         for (i = 0; i < usages; i++)
115                 field->usage[i].usage_index = i;
116
117         return field;
118 }
119
120 /*
121  * Open a collection. The type/usage is pushed on the stack.
122  */
123
124 static int open_collection(struct hid_parser *parser, unsigned type)
125 {
126         struct hid_collection *collection;
127         unsigned usage;
128
129         usage = parser->local.usage[0];
130
131         if (parser->collection_stack_ptr == HID_COLLECTION_STACK_SIZE) {
132                 hid_err(parser->device, "collection stack overflow\n");
133                 return -EINVAL;
134         }
135
136         if (parser->device->maxcollection == parser->device->collection_size) {
137                 collection = kmalloc(sizeof(struct hid_collection) *
138                                 parser->device->collection_size * 2, GFP_KERNEL);
139                 if (collection == NULL) {
140                         hid_err(parser->device, "failed to reallocate collection array\n");
141                         return -ENOMEM;
142                 }
143                 memcpy(collection, parser->device->collection,
144                         sizeof(struct hid_collection) *
145                         parser->device->collection_size);
146                 memset(collection + parser->device->collection_size, 0,
147                         sizeof(struct hid_collection) *
148                         parser->device->collection_size);
149                 kfree(parser->device->collection);
150                 parser->device->collection = collection;
151                 parser->device->collection_size *= 2;
152         }
153
154         parser->collection_stack[parser->collection_stack_ptr++] =
155                 parser->device->maxcollection;
156
157         collection = parser->device->collection +
158                 parser->device->maxcollection++;
159         collection->type = type;
160         collection->usage = usage;
161         collection->level = parser->collection_stack_ptr - 1;
162
163         if (type == HID_COLLECTION_APPLICATION)
164                 parser->device->maxapplication++;
165
166         return 0;
167 }
168
169 /*
170  * Close a collection.
171  */
172
173 static int close_collection(struct hid_parser *parser)
174 {
175         if (!parser->collection_stack_ptr) {
176                 hid_err(parser->device, "collection stack underflow\n");
177                 return -EINVAL;
178         }
179         parser->collection_stack_ptr--;
180         return 0;
181 }
182
183 /*
184  * Climb up the stack, search for the specified collection type
185  * and return the usage.
186  */
187
188 static unsigned hid_lookup_collection(struct hid_parser *parser, unsigned type)
189 {
190         struct hid_collection *collection = parser->device->collection;
191         int n;
192
193         for (n = parser->collection_stack_ptr - 1; n >= 0; n--) {
194                 unsigned index = parser->collection_stack[n];
195                 if (collection[index].type == type)
196                         return collection[index].usage;
197         }
198         return 0; /* we know nothing about this usage type */
199 }
200
201 /*
202  * Add a usage to the temporary parser table.
203  */
204
205 static int hid_add_usage(struct hid_parser *parser, unsigned usage)
206 {
207         if (parser->local.usage_index >= HID_MAX_USAGES) {
208                 hid_err(parser->device, "usage index exceeded\n");
209                 return -1;
210         }
211         parser->local.usage[parser->local.usage_index] = usage;
212         parser->local.collection_index[parser->local.usage_index] =
213                 parser->collection_stack_ptr ?
214                 parser->collection_stack[parser->collection_stack_ptr - 1] : 0;
215         parser->local.usage_index++;
216         return 0;
217 }
218
219 /*
220  * Register a new field for this report.
221  */
222
223 static int hid_add_field(struct hid_parser *parser, unsigned report_type, unsigned flags)
224 {
225         struct hid_report *report;
226         struct hid_field *field;
227         int usages;
228         unsigned offset;
229         int i;
230
231         report = hid_register_report(parser->device, report_type, parser->global.report_id);
232         if (!report) {
233                 hid_err(parser->device, "hid_register_report failed\n");
234                 return -1;
235         }
236
237         /* Handle both signed and unsigned cases properly */
238         if ((parser->global.logical_minimum < 0 &&
239                 parser->global.logical_maximum <
240                 parser->global.logical_minimum) ||
241                 (parser->global.logical_minimum >= 0 &&
242                 (__u32)parser->global.logical_maximum <
243                 (__u32)parser->global.logical_minimum)) {
244                 dbg_hid("logical range invalid 0x%x 0x%x\n",
245                         parser->global.logical_minimum,
246                         parser->global.logical_maximum);
247                 return -1;
248         }
249
250         offset = report->size;
251         report->size += parser->global.report_size * parser->global.report_count;
252
253         if (!parser->local.usage_index) /* Ignore padding fields */
254                 return 0;
255
256         usages = max_t(int, parser->local.usage_index, parser->global.report_count);
257
258         field = hid_register_field(report, usages, parser->global.report_count);
259         if (!field)
260                 return 0;
261
262         field->physical = hid_lookup_collection(parser, HID_COLLECTION_PHYSICAL);
263         field->logical = hid_lookup_collection(parser, HID_COLLECTION_LOGICAL);
264         field->application = hid_lookup_collection(parser, HID_COLLECTION_APPLICATION);
265
266         for (i = 0; i < usages; i++) {
267                 int j = i;
268                 /* Duplicate the last usage we parsed if we have excess values */
269                 if (i >= parser->local.usage_index)
270                         j = parser->local.usage_index - 1;
271                 field->usage[i].hid = parser->local.usage[j];
272                 field->usage[i].collection_index =
273                         parser->local.collection_index[j];
274         }
275
276         field->maxusage = usages;
277         field->flags = flags;
278         field->report_offset = offset;
279         field->report_type = report_type;
280         field->report_size = parser->global.report_size;
281         field->report_count = parser->global.report_count;
282         field->logical_minimum = parser->global.logical_minimum;
283         field->logical_maximum = parser->global.logical_maximum;
284         field->physical_minimum = parser->global.physical_minimum;
285         field->physical_maximum = parser->global.physical_maximum;
286         field->unit_exponent = parser->global.unit_exponent;
287         field->unit = parser->global.unit;
288
289         return 0;
290 }
291
292 /*
293  * Read data value from item.
294  */
295
296 static u32 item_udata(struct hid_item *item)
297 {
298         switch (item->size) {
299         case 1: return item->data.u8;
300         case 2: return item->data.u16;
301         case 4: return item->data.u32;
302         }
303         return 0;
304 }
305
306 static s32 item_sdata(struct hid_item *item)
307 {
308         switch (item->size) {
309         case 1: return item->data.s8;
310         case 2: return item->data.s16;
311         case 4: return item->data.s32;
312         }
313         return 0;
314 }
315
316 /*
317  * Process a global item.
318  */
319
320 static int hid_parser_global(struct hid_parser *parser, struct hid_item *item)
321 {
322         __u32 raw_value;
323         switch (item->tag) {
324         case HID_GLOBAL_ITEM_TAG_PUSH:
325
326                 if (parser->global_stack_ptr == HID_GLOBAL_STACK_SIZE) {
327                         hid_err(parser->device, "global environment stack overflow\n");
328                         return -1;
329                 }
330
331                 memcpy(parser->global_stack + parser->global_stack_ptr++,
332                         &parser->global, sizeof(struct hid_global));
333                 return 0;
334
335         case HID_GLOBAL_ITEM_TAG_POP:
336
337                 if (!parser->global_stack_ptr) {
338                         hid_err(parser->device, "global environment stack underflow\n");
339                         return -1;
340                 }
341
342                 memcpy(&parser->global, parser->global_stack +
343                         --parser->global_stack_ptr, sizeof(struct hid_global));
344                 return 0;
345
346         case HID_GLOBAL_ITEM_TAG_USAGE_PAGE:
347                 parser->global.usage_page = item_udata(item);
348                 return 0;
349
350         case HID_GLOBAL_ITEM_TAG_LOGICAL_MINIMUM:
351                 parser->global.logical_minimum = item_sdata(item);
352                 return 0;
353
354         case HID_GLOBAL_ITEM_TAG_LOGICAL_MAXIMUM:
355                 if (parser->global.logical_minimum < 0)
356                         parser->global.logical_maximum = item_sdata(item);
357                 else
358                         parser->global.logical_maximum = item_udata(item);
359                 return 0;
360
361         case HID_GLOBAL_ITEM_TAG_PHYSICAL_MINIMUM:
362                 parser->global.physical_minimum = item_sdata(item);
363                 return 0;
364
365         case HID_GLOBAL_ITEM_TAG_PHYSICAL_MAXIMUM:
366                 if (parser->global.physical_minimum < 0)
367                         parser->global.physical_maximum = item_sdata(item);
368                 else
369                         parser->global.physical_maximum = item_udata(item);
370                 return 0;
371
372         case HID_GLOBAL_ITEM_TAG_UNIT_EXPONENT:
373                 /* Units exponent negative numbers are given through a
374                  * two's complement.
375                  * See "6.2.2.7 Global Items" for more information. */
376                 raw_value = item_udata(item);
377                 if (!(raw_value & 0xfffffff0))
378                         parser->global.unit_exponent = hid_snto32(raw_value, 4);
379                 else
380                         parser->global.unit_exponent = raw_value;
381                 return 0;
382
383         case HID_GLOBAL_ITEM_TAG_UNIT:
384                 parser->global.unit = item_udata(item);
385                 return 0;
386
387         case HID_GLOBAL_ITEM_TAG_REPORT_SIZE:
388                 parser->global.report_size = item_udata(item);
389                 if (parser->global.report_size > 128) {
390                         hid_err(parser->device, "invalid report_size %d\n",
391                                         parser->global.report_size);
392                         return -1;
393                 }
394                 return 0;
395
396         case HID_GLOBAL_ITEM_TAG_REPORT_COUNT:
397                 parser->global.report_count = item_udata(item);
398                 if (parser->global.report_count > HID_MAX_USAGES) {
399                         hid_err(parser->device, "invalid report_count %d\n",
400                                         parser->global.report_count);
401                         return -1;
402                 }
403                 return 0;
404
405         case HID_GLOBAL_ITEM_TAG_REPORT_ID:
406                 parser->global.report_id = item_udata(item);
407                 if (parser->global.report_id == 0) {
408                         hid_err(parser->device, "report_id 0 is invalid\n");
409                         return -1;
410                 }
411                 return 0;
412
413         default:
414                 hid_err(parser->device, "unknown global tag 0x%x\n", item->tag);
415                 return -1;
416         }
417 }
418
419 /*
420  * Process a local item.
421  */
422
423 static int hid_parser_local(struct hid_parser *parser, struct hid_item *item)
424 {
425         __u32 data;
426         unsigned n;
427
428         data = item_udata(item);
429
430         switch (item->tag) {
431         case HID_LOCAL_ITEM_TAG_DELIMITER:
432
433                 if (data) {
434                         /*
435                          * We treat items before the first delimiter
436                          * as global to all usage sets (branch 0).
437                          * In the moment we process only these global
438                          * items and the first delimiter set.
439                          */
440                         if (parser->local.delimiter_depth != 0) {
441                                 hid_err(parser->device, "nested delimiters\n");
442                                 return -1;
443                         }
444                         parser->local.delimiter_depth++;
445                         parser->local.delimiter_branch++;
446                 } else {
447                         if (parser->local.delimiter_depth < 1) {
448                                 hid_err(parser->device, "bogus close delimiter\n");
449                                 return -1;
450                         }
451                         parser->local.delimiter_depth--;
452                 }
453                 return 1;
454
455         case HID_LOCAL_ITEM_TAG_USAGE:
456
457                 if (parser->local.delimiter_branch > 1) {
458                         dbg_hid("alternative usage ignored\n");
459                         return 0;
460                 }
461
462                 if (item->size <= 2)
463                         data = (parser->global.usage_page << 16) + data;
464
465                 return hid_add_usage(parser, data);
466
467         case HID_LOCAL_ITEM_TAG_USAGE_MINIMUM:
468
469                 if (parser->local.delimiter_branch > 1) {
470                         dbg_hid("alternative usage ignored\n");
471                         return 0;
472                 }
473
474                 if (item->size <= 2)
475                         data = (parser->global.usage_page << 16) + data;
476
477                 parser->local.usage_minimum = data;
478                 return 0;
479
480         case HID_LOCAL_ITEM_TAG_USAGE_MAXIMUM:
481
482                 if (parser->local.delimiter_branch > 1) {
483                         dbg_hid("alternative usage ignored\n");
484                         return 0;
485                 }
486
487                 if (item->size <= 2)
488                         data = (parser->global.usage_page << 16) + data;
489
490                 for (n = parser->local.usage_minimum; n <= data; n++)
491                         if (hid_add_usage(parser, n)) {
492                                 dbg_hid("hid_add_usage failed\n");
493                                 return -1;
494                         }
495                 return 0;
496
497         default:
498
499                 dbg_hid("unknown local item tag 0x%x\n", item->tag);
500                 return 0;
501         }
502         return 0;
503 }
504
505 /*
506  * Process a main item.
507  */
508
509 static int hid_parser_main(struct hid_parser *parser, struct hid_item *item)
510 {
511         __u32 data;
512         int ret;
513
514         data = item_udata(item);
515
516         switch (item->tag) {
517         case HID_MAIN_ITEM_TAG_BEGIN_COLLECTION:
518                 ret = open_collection(parser, data & 0xff);
519                 break;
520         case HID_MAIN_ITEM_TAG_END_COLLECTION:
521                 ret = close_collection(parser);
522                 break;
523         case HID_MAIN_ITEM_TAG_INPUT:
524                 ret = hid_add_field(parser, HID_INPUT_REPORT, data);
525                 break;
526         case HID_MAIN_ITEM_TAG_OUTPUT:
527                 ret = hid_add_field(parser, HID_OUTPUT_REPORT, data);
528                 break;
529         case HID_MAIN_ITEM_TAG_FEATURE:
530                 ret = hid_add_field(parser, HID_FEATURE_REPORT, data);
531                 break;
532         default:
533                 hid_err(parser->device, "unknown main item tag 0x%x\n", item->tag);
534                 ret = 0;
535         }
536
537         memset(&parser->local, 0, sizeof(parser->local));       /* Reset the local parser environment */
538
539         return ret;
540 }
541
542 /*
543  * Process a reserved item.
544  */
545
546 static int hid_parser_reserved(struct hid_parser *parser, struct hid_item *item)
547 {
548         dbg_hid("reserved item type, tag 0x%x\n", item->tag);
549         return 0;
550 }
551
552 /*
553  * Free a report and all registered fields. The field->usage and
554  * field->value table's are allocated behind the field, so we need
555  * only to free(field) itself.
556  */
557
558 static void hid_free_report(struct hid_report *report)
559 {
560         unsigned n;
561
562         for (n = 0; n < report->maxfield; n++)
563                 kfree(report->field[n]);
564         kfree(report);
565 }
566
567 /*
568  * Close report. This function returns the device
569  * state to the point prior to hid_open_report().
570  */
571 static void hid_close_report(struct hid_device *device)
572 {
573         unsigned i, j;
574
575         for (i = 0; i < HID_REPORT_TYPES; i++) {
576                 struct hid_report_enum *report_enum = device->report_enum + i;
577
578                 for (j = 0; j < 256; j++) {
579                         struct hid_report *report = report_enum->report_id_hash[j];
580                         if (report)
581                                 hid_free_report(report);
582                 }
583                 memset(report_enum, 0, sizeof(*report_enum));
584                 INIT_LIST_HEAD(&report_enum->report_list);
585         }
586
587         kfree(device->rdesc);
588         device->rdesc = NULL;
589         device->rsize = 0;
590
591         kfree(device->collection);
592         device->collection = NULL;
593         device->collection_size = 0;
594         device->maxcollection = 0;
595         device->maxapplication = 0;
596
597         device->status &= ~HID_STAT_PARSED;
598 }
599
600 /*
601  * Free a device structure, all reports, and all fields.
602  */
603
604 static void hid_device_release(struct device *dev)
605 {
606         struct hid_device *hid = container_of(dev, struct hid_device, dev);
607
608         hid_close_report(hid);
609         kfree(hid->dev_rdesc);
610         kfree(hid);
611 }
612
613 /*
614  * Fetch a report description item from the data stream. We support long
615  * items, though they are not used yet.
616  */
617
618 static u8 *fetch_item(__u8 *start, __u8 *end, struct hid_item *item)
619 {
620         u8 b;
621
622         if ((end - start) <= 0)
623                 return NULL;
624
625         b = *start++;
626
627         item->type = (b >> 2) & 3;
628         item->tag  = (b >> 4) & 15;
629
630         if (item->tag == HID_ITEM_TAG_LONG) {
631
632                 item->format = HID_ITEM_FORMAT_LONG;
633
634                 if ((end - start) < 2)
635                         return NULL;
636
637                 item->size = *start++;
638                 item->tag  = *start++;
639
640                 if ((end - start) < item->size)
641                         return NULL;
642
643                 item->data.longdata = start;
644                 start += item->size;
645                 return start;
646         }
647
648         item->format = HID_ITEM_FORMAT_SHORT;
649         item->size = b & 3;
650
651         switch (item->size) {
652         case 0:
653                 return start;
654
655         case 1:
656                 if ((end - start) < 1)
657                         return NULL;
658                 item->data.u8 = *start++;
659                 return start;
660
661         case 2:
662                 if ((end - start) < 2)
663                         return NULL;
664                 item->data.u16 = get_unaligned_le16(start);
665                 start = (__u8 *)((__le16 *)start + 1);
666                 return start;
667
668         case 3:
669                 item->size++;
670                 if ((end - start) < 4)
671                         return NULL;
672                 item->data.u32 = get_unaligned_le32(start);
673                 start = (__u8 *)((__le32 *)start + 1);
674                 return start;
675         }
676
677         return NULL;
678 }
679
680 static void hid_scan_usage(struct hid_device *hid, u32 usage)
681 {
682         if (usage == HID_DG_CONTACTID)
683                 hid->group = HID_GROUP_MULTITOUCH;
684 }
685
686 /*
687  * Scan a report descriptor before the device is added to the bus.
688  * Sets device groups and other properties that determine what driver
689  * to load.
690  */
691 static int hid_scan_report(struct hid_device *hid)
692 {
693         unsigned int page = 0, delim = 0;
694         __u8 *start = hid->dev_rdesc;
695         __u8 *end = start + hid->dev_rsize;
696         unsigned int u, u_min = 0, u_max = 0;
697         struct hid_item item;
698
699         hid->group = HID_GROUP_GENERIC;
700         while ((start = fetch_item(start, end, &item)) != NULL) {
701                 if (item.format != HID_ITEM_FORMAT_SHORT)
702                         return -EINVAL;
703                 if (item.type == HID_ITEM_TYPE_GLOBAL) {
704                         if (item.tag == HID_GLOBAL_ITEM_TAG_USAGE_PAGE)
705                                 page = item_udata(&item) << 16;
706                 } else if (item.type == HID_ITEM_TYPE_LOCAL) {
707                         if (delim > 1)
708                                 break;
709                         u = item_udata(&item);
710                         if (item.size <= 2)
711                                 u += page;
712                         switch (item.tag) {
713                         case HID_LOCAL_ITEM_TAG_DELIMITER:
714                                 delim += !!u;
715                                 break;
716                         case HID_LOCAL_ITEM_TAG_USAGE:
717                                 hid_scan_usage(hid, u);
718                                 break;
719                         case HID_LOCAL_ITEM_TAG_USAGE_MINIMUM:
720                                 u_min = u;
721                                 break;
722                         case HID_LOCAL_ITEM_TAG_USAGE_MAXIMUM:
723                                 u_max = u;
724                                 for (u = u_min; u <= u_max; u++)
725                                         hid_scan_usage(hid, u);
726                                 break;
727                         }
728                 }
729         }
730
731         return 0;
732 }
733
734 /**
735  * hid_parse_report - parse device report
736  *
737  * @device: hid device
738  * @start: report start
739  * @size: report size
740  *
741  * Allocate the device report as read by the bus driver. This function should
742  * only be called from parse() in ll drivers.
743  */
744 int hid_parse_report(struct hid_device *hid, __u8 *start, unsigned size)
745 {
746         hid->dev_rdesc = kmemdup(start, size, GFP_KERNEL);
747         if (!hid->dev_rdesc)
748                 return -ENOMEM;
749         hid->dev_rsize = size;
750         return 0;
751 }
752 EXPORT_SYMBOL_GPL(hid_parse_report);
753
754 /**
755  * hid_open_report - open a driver-specific device report
756  *
757  * @device: hid device
758  *
759  * Parse a report description into a hid_device structure. Reports are
760  * enumerated, fields are attached to these reports.
761  * 0 returned on success, otherwise nonzero error value.
762  *
763  * This function (or the equivalent hid_parse() macro) should only be
764  * called from probe() in drivers, before starting the device.
765  */
766 int hid_open_report(struct hid_device *device)
767 {
768         struct hid_parser *parser;
769         struct hid_item item;
770         unsigned int size;
771         __u8 *start;
772         __u8 *buf;
773         __u8 *end;
774         int ret;
775         static int (*dispatch_type[])(struct hid_parser *parser,
776                                       struct hid_item *item) = {
777                 hid_parser_main,
778                 hid_parser_global,
779                 hid_parser_local,
780                 hid_parser_reserved
781         };
782
783         if (WARN_ON(device->status & HID_STAT_PARSED))
784                 return -EBUSY;
785
786         start = device->dev_rdesc;
787         if (WARN_ON(!start))
788                 return -ENODEV;
789         size = device->dev_rsize;
790
791         buf = kmemdup(start, size, GFP_KERNEL);
792         if (buf == NULL)
793                 return -ENOMEM;
794
795         if (device->driver->report_fixup)
796                 start = device->driver->report_fixup(device, buf, &size);
797         else
798                 start = buf;
799
800         start = kmemdup(start, size, GFP_KERNEL);
801         kfree(buf);
802         if (start == NULL)
803                 return -ENOMEM;
804
805         device->rdesc = start;
806         device->rsize = size;
807
808         parser = vzalloc(sizeof(struct hid_parser));
809         if (!parser) {
810                 ret = -ENOMEM;
811                 goto err;
812         }
813
814         parser->device = device;
815
816         end = start + size;
817
818         device->collection = kcalloc(HID_DEFAULT_NUM_COLLECTIONS,
819                                      sizeof(struct hid_collection), GFP_KERNEL);
820         if (!device->collection) {
821                 ret = -ENOMEM;
822                 goto err;
823         }
824         device->collection_size = HID_DEFAULT_NUM_COLLECTIONS;
825
826         ret = -EINVAL;
827         while ((start = fetch_item(start, end, &item)) != NULL) {
828
829                 if (item.format != HID_ITEM_FORMAT_SHORT) {
830                         hid_err(device, "unexpected long global item\n");
831                         goto err;
832                 }
833
834                 if (dispatch_type[item.type](parser, &item)) {
835                         hid_err(device, "item %u %u %u %u parsing failed\n",
836                                 item.format, (unsigned)item.size,
837                                 (unsigned)item.type, (unsigned)item.tag);
838                         goto err;
839                 }
840
841                 if (start == end) {
842                         if (parser->collection_stack_ptr) {
843                                 hid_err(device, "unbalanced collection at end of report description\n");
844                                 goto err;
845                         }
846                         if (parser->local.delimiter_depth) {
847                                 hid_err(device, "unbalanced delimiter at end of report description\n");
848                                 goto err;
849                         }
850                         vfree(parser);
851                         device->status |= HID_STAT_PARSED;
852                         return 0;
853                 }
854         }
855
856         hid_err(device, "item fetching failed at offset %d\n", (int)(end - start));
857 err:
858         vfree(parser);
859         hid_close_report(device);
860         return ret;
861 }
862 EXPORT_SYMBOL_GPL(hid_open_report);
863
864 /*
865  * Convert a signed n-bit integer to signed 32-bit integer. Common
866  * cases are done through the compiler, the screwed things has to be
867  * done by hand.
868  */
869
870 static s32 snto32(__u32 value, unsigned n)
871 {
872         switch (n) {
873         case 8:  return ((__s8)value);
874         case 16: return ((__s16)value);
875         case 32: return ((__s32)value);
876         }
877         return value & (1 << (n - 1)) ? value | (-1 << n) : value;
878 }
879
880 s32 hid_snto32(__u32 value, unsigned n)
881 {
882         return snto32(value, n);
883 }
884 EXPORT_SYMBOL_GPL(hid_snto32);
885
886 /*
887  * Convert a signed 32-bit integer to a signed n-bit integer.
888  */
889
890 static u32 s32ton(__s32 value, unsigned n)
891 {
892         s32 a = value >> (n - 1);
893         if (a && a != -1)
894                 return value < 0 ? 1 << (n - 1) : (1 << (n - 1)) - 1;
895         return value & ((1 << n) - 1);
896 }
897
898 /*
899  * Extract/implement a data field from/to a little endian report (bit array).
900  *
901  * Code sort-of follows HID spec:
902  *     http://www.usb.org/developers/devclass_docs/HID1_11.pdf
903  *
904  * While the USB HID spec allows unlimited length bit fields in "report
905  * descriptors", most devices never use more than 16 bits.
906  * One model of UPS is claimed to report "LINEV" as a 32-bit field.
907  * Search linux-kernel and linux-usb-devel archives for "hid-core extract".
908  */
909
910 static __u32 extract(const struct hid_device *hid, __u8 *report,
911                      unsigned offset, unsigned n)
912 {
913         u64 x;
914
915         if (n > 32)
916                 hid_warn(hid, "extract() called with n (%d) > 32! (%s)\n",
917                          n, current->comm);
918
919         report += offset >> 3;  /* adjust byte index */
920         offset &= 7;            /* now only need bit offset into one byte */
921         x = get_unaligned_le64(report);
922         x = (x >> offset) & ((1ULL << n) - 1);  /* extract bit field */
923         return (u32) x;
924 }
925
926 /*
927  * "implement" : set bits in a little endian bit stream.
928  * Same concepts as "extract" (see comments above).
929  * The data mangled in the bit stream remains in little endian
930  * order the whole time. It make more sense to talk about
931  * endianness of register values by considering a register
932  * a "cached" copy of the little endiad bit stream.
933  */
934 static void implement(const struct hid_device *hid, __u8 *report,
935                       unsigned offset, unsigned n, __u32 value)
936 {
937         u64 x;
938         u64 m = (1ULL << n) - 1;
939
940         if (n > 32)
941                 hid_warn(hid, "%s() called with n (%d) > 32! (%s)\n",
942                          __func__, n, current->comm);
943
944         if (value > m)
945                 hid_warn(hid, "%s() called with too large value %d! (%s)\n",
946                          __func__, value, current->comm);
947         WARN_ON(value > m);
948         value &= m;
949
950         report += offset >> 3;
951         offset &= 7;
952
953         x = get_unaligned_le64(report);
954         x &= ~(m << offset);
955         x |= ((u64)value) << offset;
956         put_unaligned_le64(x, report);
957 }
958
959 /*
960  * Search an array for a value.
961  */
962
963 static int search(__s32 *array, __s32 value, unsigned n)
964 {
965         while (n--) {
966                 if (*array++ == value)
967                         return 0;
968         }
969         return -1;
970 }
971
972 /**
973  * hid_match_report - check if driver's raw_event should be called
974  *
975  * @hid: hid device
976  * @report_type: type to match against
977  *
978  * compare hid->driver->report_table->report_type to report->type
979  */
980 static int hid_match_report(struct hid_device *hid, struct hid_report *report)
981 {
982         const struct hid_report_id *id = hid->driver->report_table;
983
984         if (!id) /* NULL means all */
985                 return 1;
986
987         for (; id->report_type != HID_TERMINATOR; id++)
988                 if (id->report_type == HID_ANY_ID ||
989                                 id->report_type == report->type)
990                         return 1;
991         return 0;
992 }
993
994 /**
995  * hid_match_usage - check if driver's event should be called
996  *
997  * @hid: hid device
998  * @usage: usage to match against
999  *
1000  * compare hid->driver->usage_table->usage_{type,code} to
1001  * usage->usage_{type,code}
1002  */
1003 static int hid_match_usage(struct hid_device *hid, struct hid_usage *usage)
1004 {
1005         const struct hid_usage_id *id = hid->driver->usage_table;
1006
1007         if (!id) /* NULL means all */
1008                 return 1;
1009
1010         for (; id->usage_type != HID_ANY_ID - 1; id++)
1011                 if ((id->usage_hid == HID_ANY_ID ||
1012                                 id->usage_hid == usage->hid) &&
1013                                 (id->usage_type == HID_ANY_ID ||
1014                                 id->usage_type == usage->type) &&
1015                                 (id->usage_code == HID_ANY_ID ||
1016                                  id->usage_code == usage->code))
1017                         return 1;
1018         return 0;
1019 }
1020
1021 static void hid_process_event(struct hid_device *hid, struct hid_field *field,
1022                 struct hid_usage *usage, __s32 value, int interrupt)
1023 {
1024         struct hid_driver *hdrv = hid->driver;
1025         int ret;
1026
1027         if (!list_empty(&hid->debug_list))
1028                 hid_dump_input(hid, usage, value);
1029
1030         if (hdrv && hdrv->event && hid_match_usage(hid, usage)) {
1031                 ret = hdrv->event(hid, field, usage, value);
1032                 if (ret != 0) {
1033                         if (ret < 0)
1034                                 hid_err(hid, "%s's event failed with %d\n",
1035                                                 hdrv->name, ret);
1036                         return;
1037                 }
1038         }
1039
1040         if (hid->claimed & HID_CLAIMED_INPUT)
1041                 hidinput_hid_event(hid, field, usage, value);
1042         if (hid->claimed & HID_CLAIMED_HIDDEV && interrupt && hid->hiddev_hid_event)
1043                 hid->hiddev_hid_event(hid, field, usage, value);
1044 }
1045
1046 /*
1047  * Analyse a received field, and fetch the data from it. The field
1048  * content is stored for next report processing (we do differential
1049  * reporting to the layer).
1050  */
1051
1052 static void hid_input_field(struct hid_device *hid, struct hid_field *field,
1053                             __u8 *data, int interrupt)
1054 {
1055         unsigned n;
1056         unsigned count = field->report_count;
1057         unsigned offset = field->report_offset;
1058         unsigned size = field->report_size;
1059         __s32 min = field->logical_minimum;
1060         __s32 max = field->logical_maximum;
1061         __s32 *value;
1062
1063         value = kmalloc(sizeof(__s32) * count, GFP_ATOMIC);
1064         if (!value)
1065                 return;
1066
1067         for (n = 0; n < count; n++) {
1068
1069                 value[n] = min < 0 ?
1070                         snto32(extract(hid, data, offset + n * size, size),
1071                                size) :
1072                         extract(hid, data, offset + n * size, size);
1073
1074                 /* Ignore report if ErrorRollOver */
1075                 if (!(field->flags & HID_MAIN_ITEM_VARIABLE) &&
1076                     value[n] >= min && value[n] <= max &&
1077                     field->usage[value[n] - min].hid == HID_UP_KEYBOARD + 1)
1078                         goto exit;
1079         }
1080
1081         for (n = 0; n < count; n++) {
1082
1083                 if (HID_MAIN_ITEM_VARIABLE & field->flags) {
1084                         hid_process_event(hid, field, &field->usage[n], value[n], interrupt);
1085                         continue;
1086                 }
1087
1088                 if (field->value[n] >= min && field->value[n] <= max
1089                         && field->usage[field->value[n] - min].hid
1090                         && search(value, field->value[n], count))
1091                                 hid_process_event(hid, field, &field->usage[field->value[n] - min], 0, interrupt);
1092
1093                 if (value[n] >= min && value[n] <= max
1094                         && field->usage[value[n] - min].hid
1095                         && search(field->value, value[n], count))
1096                                 hid_process_event(hid, field, &field->usage[value[n] - min], 1, interrupt);
1097         }
1098
1099         memcpy(field->value, value, count * sizeof(__s32));
1100 exit:
1101         kfree(value);
1102 }
1103
1104 /*
1105  * Output the field into the report.
1106  */
1107
1108 static void hid_output_field(const struct hid_device *hid,
1109                              struct hid_field *field, __u8 *data)
1110 {
1111         unsigned count = field->report_count;
1112         unsigned offset = field->report_offset;
1113         unsigned size = field->report_size;
1114         unsigned n;
1115
1116         for (n = 0; n < count; n++) {
1117                 if (field->logical_minimum < 0) /* signed values */
1118                         implement(hid, data, offset + n * size, size,
1119                                   s32ton(field->value[n], size));
1120                 else                            /* unsigned values */
1121                         implement(hid, data, offset + n * size, size,
1122                                   field->value[n]);
1123         }
1124 }
1125
1126 /*
1127  * Create a report.
1128  */
1129
1130 void hid_output_report(struct hid_report *report, __u8 *data)
1131 {
1132         unsigned n;
1133
1134         if (report->id > 0)
1135                 *data++ = report->id;
1136
1137         memset(data, 0, ((report->size - 1) >> 3) + 1);
1138         for (n = 0; n < report->maxfield; n++)
1139                 hid_output_field(report->device, report->field[n], data);
1140 }
1141 EXPORT_SYMBOL_GPL(hid_output_report);
1142
1143 /*
1144  * Set a field value. The report this field belongs to has to be
1145  * created and transferred to the device, to set this value in the
1146  * device.
1147  */
1148
1149 int hid_set_field(struct hid_field *field, unsigned offset, __s32 value)
1150 {
1151         unsigned size = field->report_size;
1152
1153         hid_dump_input(field->report->device, field->usage + offset, value);
1154
1155         if (offset >= field->report_count) {
1156                 hid_err(field->report->device, "offset (%d) exceeds report_count (%d)\n",
1157                                 offset, field->report_count);
1158                 return -1;
1159         }
1160         if (field->logical_minimum < 0) {
1161                 if (value != snto32(s32ton(value, size), size)) {
1162                         hid_err(field->report->device, "value %d is out of range\n", value);
1163                         return -1;
1164                 }
1165         }
1166         field->value[offset] = value;
1167         return 0;
1168 }
1169 EXPORT_SYMBOL_GPL(hid_set_field);
1170
1171 static struct hid_report *hid_get_report(struct hid_report_enum *report_enum,
1172                 const u8 *data)
1173 {
1174         struct hid_report *report;
1175         unsigned int n = 0;     /* Normally report number is 0 */
1176
1177         /* Device uses numbered reports, data[0] is report number */
1178         if (report_enum->numbered)
1179                 n = *data;
1180
1181         report = report_enum->report_id_hash[n];
1182         if (report == NULL)
1183                 dbg_hid("undefined report_id %u received\n", n);
1184
1185         return report;
1186 }
1187
1188 int hid_report_raw_event(struct hid_device *hid, int type, u8 *data, int size,
1189                 int interrupt)
1190 {
1191         struct hid_report_enum *report_enum = hid->report_enum + type;
1192         struct hid_report *report;
1193         unsigned int a;
1194         int rsize, csize = size;
1195         u8 *cdata = data;
1196         int ret = 0;
1197
1198         report = hid_get_report(report_enum, data);
1199         if (!report)
1200                 goto out;
1201
1202         if (report_enum->numbered) {
1203                 cdata++;
1204                 csize--;
1205         }
1206
1207         rsize = ((report->size - 1) >> 3) + 1;
1208
1209         if (rsize > HID_MAX_BUFFER_SIZE)
1210                 rsize = HID_MAX_BUFFER_SIZE;
1211
1212         if (csize < rsize) {
1213                 dbg_hid("report %d is too short, (%d < %d)\n", report->id,
1214                                 csize, rsize);
1215                 memset(cdata + csize, 0, rsize - csize);
1216         }
1217
1218         if ((hid->claimed & HID_CLAIMED_HIDDEV) && hid->hiddev_report_event)
1219                 hid->hiddev_report_event(hid, report);
1220         if (hid->claimed & HID_CLAIMED_HIDRAW) {
1221                 ret = hidraw_report_event(hid, data, size);
1222                 if (ret)
1223                         goto out;
1224         }
1225
1226         if (hid->claimed != HID_CLAIMED_HIDRAW) {
1227                 for (a = 0; a < report->maxfield; a++)
1228                         hid_input_field(hid, report->field[a], cdata, interrupt);
1229         }
1230
1231         if (hid->claimed & HID_CLAIMED_INPUT)
1232                 hidinput_report_event(hid, report);
1233 out:
1234         return ret;
1235 }
1236 EXPORT_SYMBOL_GPL(hid_report_raw_event);
1237
1238 /**
1239  * hid_input_report - report data from lower layer (usb, bt...)
1240  *
1241  * @hid: hid device
1242  * @type: HID report type (HID_*_REPORT)
1243  * @data: report contents
1244  * @size: size of data parameter
1245  * @interrupt: distinguish between interrupt and control transfers
1246  *
1247  * This is data entry for lower layers.
1248  */
1249 int hid_input_report(struct hid_device *hid, int type, u8 *data, int size, int interrupt)
1250 {
1251         struct hid_report_enum *report_enum;
1252         struct hid_driver *hdrv;
1253         struct hid_report *report;
1254         char *buf;
1255         unsigned int i;
1256         int ret = 0;
1257
1258         if (!hid)
1259                 return -ENODEV;
1260
1261         if (down_trylock(&hid->driver_lock))
1262                 return -EBUSY;
1263
1264         if (!hid->driver) {
1265                 ret = -ENODEV;
1266                 goto unlock;
1267         }
1268         report_enum = hid->report_enum + type;
1269         hdrv = hid->driver;
1270
1271         if (!size) {
1272                 dbg_hid("empty report\n");
1273                 ret = -1;
1274                 goto unlock;
1275         }
1276
1277         /* Avoid unnecessary overhead if debugfs is disabled */
1278         if (list_empty(&hid->debug_list))
1279                 goto nomem;
1280
1281         buf = kmalloc(sizeof(char) * HID_DEBUG_BUFSIZE, GFP_ATOMIC);
1282
1283         if (!buf)
1284                 goto nomem;
1285
1286         /* dump the report */
1287         snprintf(buf, HID_DEBUG_BUFSIZE - 1,
1288                         "\nreport (size %u) (%snumbered) = ", size, report_enum->numbered ? "" : "un");
1289         hid_debug_event(hid, buf);
1290
1291         for (i = 0; i < size; i++) {
1292                 snprintf(buf, HID_DEBUG_BUFSIZE - 1,
1293                                 " %02x", data[i]);
1294                 hid_debug_event(hid, buf);
1295         }
1296         hid_debug_event(hid, "\n");
1297         kfree(buf);
1298
1299 nomem:
1300         report = hid_get_report(report_enum, data);
1301
1302         if (!report) {
1303                 ret = -1;
1304                 goto unlock;
1305         }
1306
1307         if (hdrv && hdrv->raw_event && hid_match_report(hid, report)) {
1308                 ret = hdrv->raw_event(hid, report, data, size);
1309                 if (ret != 0) {
1310                         ret = ret < 0 ? ret : 0;
1311                         goto unlock;
1312                 }
1313         }
1314
1315         ret = hid_report_raw_event(hid, type, data, size, interrupt);
1316
1317 unlock:
1318         up(&hid->driver_lock);
1319         return ret;
1320 }
1321 EXPORT_SYMBOL_GPL(hid_input_report);
1322
1323 static bool hid_match_one_id(struct hid_device *hdev,
1324                 const struct hid_device_id *id)
1325 {
1326         return (id->bus == HID_BUS_ANY || id->bus == hdev->bus) &&
1327                 (id->group == HID_GROUP_ANY || id->group == hdev->group) &&
1328                 (id->vendor == HID_ANY_ID || id->vendor == hdev->vendor) &&
1329                 (id->product == HID_ANY_ID || id->product == hdev->product);
1330 }
1331
1332 const struct hid_device_id *hid_match_id(struct hid_device *hdev,
1333                 const struct hid_device_id *id)
1334 {
1335         for (; id->bus; id++)
1336                 if (hid_match_one_id(hdev, id))
1337                         return id;
1338
1339         return NULL;
1340 }
1341
1342 static const struct hid_device_id hid_hiddev_list[] = {
1343         { HID_USB_DEVICE(USB_VENDOR_ID_MGE, USB_DEVICE_ID_MGE_UPS) },
1344         { HID_USB_DEVICE(USB_VENDOR_ID_MGE, USB_DEVICE_ID_MGE_UPS1) },
1345         { }
1346 };
1347
1348 static bool hid_hiddev(struct hid_device *hdev)
1349 {
1350         return !!hid_match_id(hdev, hid_hiddev_list);
1351 }
1352
1353
1354 static ssize_t
1355 read_report_descriptor(struct file *filp, struct kobject *kobj,
1356                 struct bin_attribute *attr,
1357                 char *buf, loff_t off, size_t count)
1358 {
1359         struct device *dev = container_of(kobj, struct device, kobj);
1360         struct hid_device *hdev = container_of(dev, struct hid_device, dev);
1361
1362         if (off >= hdev->rsize)
1363                 return 0;
1364
1365         if (off + count > hdev->rsize)
1366                 count = hdev->rsize - off;
1367
1368         memcpy(buf, hdev->rdesc + off, count);
1369
1370         return count;
1371 }
1372
1373 static struct bin_attribute dev_bin_attr_report_desc = {
1374         .attr = { .name = "report_descriptor", .mode = 0444 },
1375         .read = read_report_descriptor,
1376         .size = HID_MAX_DESCRIPTOR_SIZE,
1377 };
1378
1379 int hid_connect(struct hid_device *hdev, unsigned int connect_mask)
1380 {
1381         static const char *types[] = { "Device", "Pointer", "Mouse", "Device",
1382                 "Joystick", "Gamepad", "Keyboard", "Keypad",
1383                 "Multi-Axis Controller"
1384         };
1385         const char *type, *bus;
1386         char buf[64];
1387         unsigned int i;
1388         int len;
1389         int ret;
1390
1391         if (hdev->quirks & HID_QUIRK_HIDDEV_FORCE)
1392                 connect_mask |= (HID_CONNECT_HIDDEV_FORCE | HID_CONNECT_HIDDEV);
1393         if (hdev->quirks & HID_QUIRK_HIDINPUT_FORCE)
1394                 connect_mask |= HID_CONNECT_HIDINPUT_FORCE;
1395         if (hdev->bus != BUS_USB)
1396                 connect_mask &= ~HID_CONNECT_HIDDEV;
1397         if (hid_hiddev(hdev))
1398                 connect_mask |= HID_CONNECT_HIDDEV_FORCE;
1399
1400         if ((connect_mask & HID_CONNECT_HIDINPUT) && !hidinput_connect(hdev,
1401                                 connect_mask & HID_CONNECT_HIDINPUT_FORCE))
1402                 hdev->claimed |= HID_CLAIMED_INPUT;
1403
1404         if ((connect_mask & HID_CONNECT_HIDDEV) && hdev->hiddev_connect &&
1405                         !hdev->hiddev_connect(hdev,
1406                                 connect_mask & HID_CONNECT_HIDDEV_FORCE))
1407                 hdev->claimed |= HID_CLAIMED_HIDDEV;
1408         if ((connect_mask & HID_CONNECT_HIDRAW) && !hidraw_connect(hdev))
1409                 hdev->claimed |= HID_CLAIMED_HIDRAW;
1410
1411         /* Drivers with the ->raw_event callback set are not required to connect
1412          * to any other listener. */
1413         if (!hdev->claimed && !hdev->driver->raw_event) {
1414                 hid_err(hdev, "device has no listeners, quitting\n");
1415                 return -ENODEV;
1416         }
1417
1418         if ((hdev->claimed & HID_CLAIMED_INPUT) &&
1419                         (connect_mask & HID_CONNECT_FF) && hdev->ff_init)
1420                 hdev->ff_init(hdev);
1421
1422         len = 0;
1423         if (hdev->claimed & HID_CLAIMED_INPUT)
1424                 len += sprintf(buf + len, "input");
1425         if (hdev->claimed & HID_CLAIMED_HIDDEV)
1426                 len += sprintf(buf + len, "%shiddev%d", len ? "," : "",
1427                                 hdev->minor);
1428         if (hdev->claimed & HID_CLAIMED_HIDRAW)
1429                 len += sprintf(buf + len, "%shidraw%d", len ? "," : "",
1430                                 ((struct hidraw *)hdev->hidraw)->minor);
1431
1432         type = "Device";
1433         for (i = 0; i < hdev->maxcollection; i++) {
1434                 struct hid_collection *col = &hdev->collection[i];
1435                 if (col->type == HID_COLLECTION_APPLICATION &&
1436                    (col->usage & HID_USAGE_PAGE) == HID_UP_GENDESK &&
1437                    (col->usage & 0xffff) < ARRAY_SIZE(types)) {
1438                         type = types[col->usage & 0xffff];
1439                         break;
1440                 }
1441         }
1442
1443         switch (hdev->bus) {
1444         case BUS_USB:
1445                 bus = "USB";
1446                 break;
1447         case BUS_BLUETOOTH:
1448                 bus = "BLUETOOTH";
1449                 break;
1450         default:
1451                 bus = "<UNKNOWN>";
1452         }
1453
1454         ret = device_create_bin_file(&hdev->dev, &dev_bin_attr_report_desc);
1455         if (ret)
1456                 hid_warn(hdev,
1457                          "can't create sysfs report descriptor attribute err: %d\n", ret);
1458
1459         hid_info(hdev, "%s: %s HID v%x.%02x %s [%s] on %s\n",
1460                  buf, bus, hdev->version >> 8, hdev->version & 0xff,
1461                  type, hdev->name, hdev->phys);
1462
1463         return 0;
1464 }
1465 EXPORT_SYMBOL_GPL(hid_connect);
1466
1467 void hid_disconnect(struct hid_device *hdev)
1468 {
1469         device_remove_bin_file(&hdev->dev, &dev_bin_attr_report_desc);
1470         if (hdev->claimed & HID_CLAIMED_INPUT)
1471                 hidinput_disconnect(hdev);
1472         if (hdev->claimed & HID_CLAIMED_HIDDEV)
1473                 hdev->hiddev_disconnect(hdev);
1474         if (hdev->claimed & HID_CLAIMED_HIDRAW)
1475                 hidraw_disconnect(hdev);
1476 }
1477 EXPORT_SYMBOL_GPL(hid_disconnect);
1478
1479 /*
1480  * A list of devices for which there is a specialized driver on HID bus.
1481  *
1482  * Please note that for multitouch devices (driven by hid-multitouch driver),
1483  * there is a proper autodetection and autoloading in place (based on presence
1484  * of HID_DG_CONTACTID), so those devices don't need to be added to this list,
1485  * as we are doing the right thing in hid_scan_usage().
1486  */
1487 static const struct hid_device_id hid_have_special_driver[] = {
1488         { HID_USB_DEVICE(USB_VENDOR_ID_A4TECH, USB_DEVICE_ID_A4TECH_WCP32PU) },
1489         { HID_USB_DEVICE(USB_VENDOR_ID_A4TECH, USB_DEVICE_ID_A4TECH_X5_005D) },
1490         { HID_USB_DEVICE(USB_VENDOR_ID_A4TECH, USB_DEVICE_ID_A4TECH_RP_649) },
1491         { HID_USB_DEVICE(USB_VENDOR_ID_ACRUX, 0x0802) },
1492         { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_ATV_IRCONTROL) },
1493         { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_IRCONTROL4) },
1494         { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_MIGHTYMOUSE) },
1495         { HID_BLUETOOTH_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_MAGICMOUSE) },
1496         { HID_BLUETOOTH_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_MAGICTRACKPAD) },
1497         { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_FOUNTAIN_ANSI) },
1498         { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_FOUNTAIN_ISO) },
1499         { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_GEYSER_ANSI) },
1500         { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_GEYSER_ISO) },
1501         { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_GEYSER_JIS) },
1502         { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_GEYSER3_ANSI) },
1503         { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_GEYSER3_ISO) },
1504         { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_GEYSER3_JIS) },
1505         { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_GEYSER4_ANSI) },
1506         { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_GEYSER4_ISO) },
1507         { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_GEYSER4_JIS) },
1508         { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_ALU_MINI_ANSI) },
1509         { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_ALU_MINI_ISO) },
1510         { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_ALU_MINI_JIS) },
1511         { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_ALU_ANSI) },
1512         { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_ALU_ISO) },
1513         { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_ALU_JIS) },
1514         { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_GEYSER4_HF_ANSI) },
1515         { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_GEYSER4_HF_ISO) },
1516         { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_GEYSER4_HF_JIS) },
1517         { HID_BLUETOOTH_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_ALU_WIRELESS_ANSI) },
1518         { HID_BLUETOOTH_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_ALU_WIRELESS_ISO) },
1519         { HID_BLUETOOTH_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_ALU_WIRELESS_JIS) },
1520         { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING_ANSI) },
1521         { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING_ISO) },
1522         { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING_JIS) },
1523         { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING2_ANSI) },
1524         { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING2_ISO) },
1525         { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING2_JIS) },
1526         { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING3_ANSI) },
1527         { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING3_ISO) },
1528         { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING3_JIS) },
1529         { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING4_ANSI) },
1530         { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING4_ISO) },
1531         { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING4_JIS) },
1532         { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING4A_ANSI) },
1533         { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING4A_ISO) },
1534         { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING4A_JIS) },
1535         { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING5_ANSI) },
1536         { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING5_ISO) },
1537         { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING5_JIS) },
1538         { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING5A_ANSI) },
1539         { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING5A_ISO) },
1540         { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING5A_JIS) },
1541         { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_ALU_REVB_ANSI) },
1542         { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_ALU_REVB_ISO) },
1543         { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_ALU_REVB_JIS) },
1544         { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING6_ANSI) },
1545         { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING6_ISO) },
1546         { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING6_JIS) },
1547         { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING6A_ANSI) },
1548         { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING6A_ISO) },
1549         { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING6A_JIS) },
1550         { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING7_ANSI) },
1551         { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING7_ISO) },
1552         { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING7_JIS) },
1553         { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING7A_ANSI) },
1554         { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING7A_ISO) },
1555         { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING7A_JIS) },
1556         { HID_BLUETOOTH_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_ALU_WIRELESS_2009_ANSI) },
1557         { HID_BLUETOOTH_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_ALU_WIRELESS_2009_ISO) },
1558         { HID_BLUETOOTH_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_ALU_WIRELESS_2009_JIS) },
1559         { HID_BLUETOOTH_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_ALU_WIRELESS_2011_ISO) },
1560         { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_FOUNTAIN_TP_ONLY) },
1561         { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_GEYSER1_TP_ONLY) },
1562         { HID_USB_DEVICE(USB_VENDOR_ID_AUREAL, USB_DEVICE_ID_AUREAL_W01RN) },
1563         { HID_USB_DEVICE(USB_VENDOR_ID_BELKIN, USB_DEVICE_ID_FLIP_KVM) },
1564         { HID_USB_DEVICE(USB_VENDOR_ID_BTC, USB_DEVICE_ID_BTC_EMPREX_REMOTE) },
1565         { HID_USB_DEVICE(USB_VENDOR_ID_BTC, USB_DEVICE_ID_BTC_EMPREX_REMOTE_2) },
1566         { HID_USB_DEVICE(USB_VENDOR_ID_CHERRY, USB_DEVICE_ID_CHERRY_CYMOTION) },
1567         { HID_USB_DEVICE(USB_VENDOR_ID_CHERRY, USB_DEVICE_ID_CHERRY_CYMOTION_SOLAR) },
1568         { HID_USB_DEVICE(USB_VENDOR_ID_CHICONY, USB_DEVICE_ID_CHICONY_TACTICAL_PAD) },
1569         { HID_USB_DEVICE(USB_VENDOR_ID_CHICONY, USB_DEVICE_ID_CHICONY_WIRELESS) },
1570         { HID_USB_DEVICE(USB_VENDOR_ID_CHICONY, USB_DEVICE_ID_CHICONY_WIRELESS2) },
1571         { HID_USB_DEVICE(USB_VENDOR_ID_CHICONY, USB_DEVICE_ID_CHICONY_AK1D) },
1572         { HID_USB_DEVICE(USB_VENDOR_ID_CREATIVELABS, USB_DEVICE_ID_PRODIKEYS_PCMIDI) },
1573         { HID_USB_DEVICE(USB_VENDOR_ID_CYPRESS, USB_DEVICE_ID_CYPRESS_BARCODE_1) },
1574         { HID_USB_DEVICE(USB_VENDOR_ID_CYPRESS, USB_DEVICE_ID_CYPRESS_BARCODE_2) },
1575         { HID_USB_DEVICE(USB_VENDOR_ID_CYPRESS, USB_DEVICE_ID_CYPRESS_BARCODE_3) },
1576         { HID_USB_DEVICE(USB_VENDOR_ID_CYPRESS, USB_DEVICE_ID_CYPRESS_BARCODE_4) },
1577         { HID_USB_DEVICE(USB_VENDOR_ID_CYPRESS, USB_DEVICE_ID_CYPRESS_MOUSE) },
1578         { HID_USB_DEVICE(USB_VENDOR_ID_DRAGONRISE, 0x0006) },
1579         { HID_USB_DEVICE(USB_VENDOR_ID_DRAGONRISE, 0x0011) },
1580         { HID_BLUETOOTH_DEVICE(USB_VENDOR_ID_ELECOM, USB_DEVICE_ID_ELECOM_BM084) },
1581         { HID_USB_DEVICE(USB_VENDOR_ID_EMS, USB_DEVICE_ID_EMS_TRIO_LINKER_PLUS_II) },
1582         { HID_USB_DEVICE(USB_VENDOR_ID_EZKEY, USB_DEVICE_ID_BTC_8193) },
1583         { HID_USB_DEVICE(USB_VENDOR_ID_GAMERON, USB_DEVICE_ID_GAMERON_DUAL_PSX_ADAPTOR) },
1584         { HID_USB_DEVICE(USB_VENDOR_ID_GAMERON, USB_DEVICE_ID_GAMERON_DUAL_PCS_ADAPTOR) },
1585         { HID_USB_DEVICE(USB_VENDOR_ID_GREENASIA, 0x0003) },
1586         { HID_USB_DEVICE(USB_VENDOR_ID_GREENASIA, 0x0012) },
1587         { HID_USB_DEVICE(USB_VENDOR_ID_GYRATION, USB_DEVICE_ID_GYRATION_REMOTE) },
1588         { HID_USB_DEVICE(USB_VENDOR_ID_GYRATION, USB_DEVICE_ID_GYRATION_REMOTE_2) },
1589         { HID_USB_DEVICE(USB_VENDOR_ID_GYRATION, USB_DEVICE_ID_GYRATION_REMOTE_3) },
1590         { HID_USB_DEVICE(USB_VENDOR_ID_HOLTEK, USB_DEVICE_ID_HOLTEK_ON_LINE_GRIP) },
1591         { HID_USB_DEVICE(USB_VENDOR_ID_HOLTEK_ALT, USB_DEVICE_ID_HOLTEK_ALT_KEYBOARD) },
1592         { HID_USB_DEVICE(USB_VENDOR_ID_INTEL_8086, USB_DEVICE_ID_SENSOR_HUB_1020) },
1593         { HID_USB_DEVICE(USB_VENDOR_ID_INTEL_8086, USB_DEVICE_ID_SENSOR_HUB_09FA) },
1594         { HID_USB_DEVICE(USB_VENDOR_ID_INTEL_8087, USB_DEVICE_ID_SENSOR_HUB_1020) },
1595         { HID_USB_DEVICE(USB_VENDOR_ID_INTEL_8087, USB_DEVICE_ID_SENSOR_HUB_09FA) },
1596         { HID_USB_DEVICE(USB_VENDOR_ID_KENSINGTON, USB_DEVICE_ID_KS_SLIMBLADE) },
1597         { HID_USB_DEVICE(USB_VENDOR_ID_KEYTOUCH, USB_DEVICE_ID_KEYTOUCH_IEC) },
1598         { HID_USB_DEVICE(USB_VENDOR_ID_KYE, USB_DEVICE_ID_KYE_ERGO_525V) },
1599         { HID_USB_DEVICE(USB_VENDOR_ID_KYE, USB_DEVICE_ID_KYE_EASYPEN_I405X) },
1600         { HID_USB_DEVICE(USB_VENDOR_ID_KYE, USB_DEVICE_ID_KYE_MOUSEPEN_I608X) },
1601         { HID_USB_DEVICE(USB_VENDOR_ID_KYE, USB_DEVICE_ID_KYE_EASYPEN_M610X) },
1602         { HID_USB_DEVICE(USB_VENDOR_ID_LABTEC, USB_DEVICE_ID_LABTEC_WIRELESS_KEYBOARD) },
1603         { HID_USB_DEVICE(USB_VENDOR_ID_LCPOWER, USB_DEVICE_ID_LCPOWER_LC1000 ) },
1604 #if IS_ENABLED(CONFIG_HID_LENOVO_TPKBD)
1605         { HID_USB_DEVICE(USB_VENDOR_ID_LENOVO, USB_DEVICE_ID_LENOVO_TPKBD) },
1606 #endif
1607         { HID_USB_DEVICE(USB_VENDOR_ID_LOGITECH, USB_DEVICE_ID_MX3000_RECEIVER) },
1608         { HID_USB_DEVICE(USB_VENDOR_ID_LOGITECH, USB_DEVICE_ID_S510_RECEIVER) },
1609         { HID_USB_DEVICE(USB_VENDOR_ID_LOGITECH, USB_DEVICE_ID_S510_RECEIVER_2) },
1610         { HID_USB_DEVICE(USB_VENDOR_ID_LOGITECH, USB_DEVICE_ID_LOGITECH_RECEIVER) },
1611         { HID_BLUETOOTH_DEVICE(USB_VENDOR_ID_LOGITECH, USB_DEVICE_ID_LOGITECH_HARMONY_PS3) },
1612         { HID_USB_DEVICE(USB_VENDOR_ID_LOGITECH, USB_DEVICE_ID_DINOVO_DESKTOP) },
1613         { HID_USB_DEVICE(USB_VENDOR_ID_LOGITECH, USB_DEVICE_ID_DINOVO_EDGE) },
1614         { HID_USB_DEVICE(USB_VENDOR_ID_LOGITECH, USB_DEVICE_ID_DINOVO_MINI) },
1615         { HID_USB_DEVICE(USB_VENDOR_ID_LOGITECH, USB_DEVICE_ID_LOGITECH_ELITE_KBD) },
1616         { HID_USB_DEVICE(USB_VENDOR_ID_LOGITECH, USB_DEVICE_ID_LOGITECH_CORDLESS_DESKTOP_LX500) },
1617         { HID_USB_DEVICE(USB_VENDOR_ID_LOGITECH, USB_DEVICE_ID_LOGITECH_EXTREME_3D) },
1618         { HID_USB_DEVICE(USB_VENDOR_ID_LOGITECH, USB_DEVICE_ID_LOGITECH_WHEEL) },
1619         { HID_USB_DEVICE(USB_VENDOR_ID_LOGITECH, USB_DEVICE_ID_LOGITECH_RUMBLEPAD_CORD) },
1620         { HID_USB_DEVICE(USB_VENDOR_ID_LOGITECH, USB_DEVICE_ID_LOGITECH_RUMBLEPAD) },
1621         { HID_USB_DEVICE(USB_VENDOR_ID_LOGITECH, USB_DEVICE_ID_LOGITECH_RUMBLEPAD2_2) },
1622         { HID_USB_DEVICE(USB_VENDOR_ID_LOGITECH, USB_DEVICE_ID_LOGITECH_WINGMAN_F3D) },
1623         { HID_USB_DEVICE(USB_VENDOR_ID_LOGITECH, USB_DEVICE_ID_LOGITECH_WINGMAN_FFG ) },
1624         { HID_USB_DEVICE(USB_VENDOR_ID_LOGITECH, USB_DEVICE_ID_LOGITECH_FORCE3D_PRO) },
1625         { HID_USB_DEVICE(USB_VENDOR_ID_LOGITECH, USB_DEVICE_ID_LOGITECH_FLIGHT_SYSTEM_G940) },
1626         { HID_USB_DEVICE(USB_VENDOR_ID_LOGITECH, USB_DEVICE_ID_LOGITECH_MOMO_WHEEL) },
1627         { HID_USB_DEVICE(USB_VENDOR_ID_LOGITECH, USB_DEVICE_ID_LOGITECH_MOMO_WHEEL2) },
1628         { HID_USB_DEVICE(USB_VENDOR_ID_LOGITECH, USB_DEVICE_ID_LOGITECH_DFP_WHEEL) },
1629         { HID_USB_DEVICE(USB_VENDOR_ID_LOGITECH, USB_DEVICE_ID_LOGITECH_DFGT_WHEEL) },
1630         { HID_USB_DEVICE(USB_VENDOR_ID_LOGITECH, USB_DEVICE_ID_LOGITECH_G25_WHEEL) },
1631         { HID_USB_DEVICE(USB_VENDOR_ID_LOGITECH, USB_DEVICE_ID_LOGITECH_G27_WHEEL) },
1632 #if IS_ENABLED(CONFIG_HID_LOGITECH_DJ)
1633         { HID_USB_DEVICE(USB_VENDOR_ID_LOGITECH, USB_DEVICE_ID_LOGITECH_UNIFYING_RECEIVER) },
1634         { HID_USB_DEVICE(USB_VENDOR_ID_LOGITECH, USB_DEVICE_ID_LOGITECH_UNIFYING_RECEIVER_2) },
1635 #endif
1636         { HID_USB_DEVICE(USB_VENDOR_ID_LOGITECH, USB_DEVICE_ID_LOGITECH_WII_WHEEL) },
1637         { HID_USB_DEVICE(USB_VENDOR_ID_LOGITECH, USB_DEVICE_ID_LOGITECH_RUMBLEPAD2) },
1638         { HID_USB_DEVICE(USB_VENDOR_ID_LOGITECH, USB_DEVICE_ID_SPACETRAVELLER) },
1639         { HID_USB_DEVICE(USB_VENDOR_ID_LOGITECH, USB_DEVICE_ID_SPACENAVIGATOR) },
1640         { HID_USB_DEVICE(USB_VENDOR_ID_MICROCHIP, USB_DEVICE_ID_PICOLCD) },
1641         { HID_USB_DEVICE(USB_VENDOR_ID_MICROCHIP, USB_DEVICE_ID_PICOLCD_BOOTLOADER) },
1642         { HID_USB_DEVICE(USB_VENDOR_ID_MICROSOFT, USB_DEVICE_ID_MS_COMFORT_MOUSE_4500) },
1643         { HID_USB_DEVICE(USB_VENDOR_ID_MICROSOFT, USB_DEVICE_ID_SIDEWINDER_GV) },
1644         { HID_USB_DEVICE(USB_VENDOR_ID_MICROSOFT, USB_DEVICE_ID_MS_NE4K) },
1645         { HID_USB_DEVICE(USB_VENDOR_ID_MICROSOFT, USB_DEVICE_ID_MS_LK6K) },
1646         { HID_USB_DEVICE(USB_VENDOR_ID_MICROSOFT, USB_DEVICE_ID_MS_PRESENTER_8K_USB) },
1647         { HID_USB_DEVICE(USB_VENDOR_ID_MICROSOFT, USB_DEVICE_ID_MS_DIGITAL_MEDIA_3K) },
1648         { HID_USB_DEVICE(USB_VENDOR_ID_MICROSOFT, USB_DEVICE_ID_WIRELESS_OPTICAL_DESKTOP_3_0) },
1649         { HID_USB_DEVICE(USB_VENDOR_ID_MONTEREY, USB_DEVICE_ID_GENIUS_KB29E) },
1650         { HID_USB_DEVICE(USB_VENDOR_ID_NTRIG, USB_DEVICE_ID_NTRIG_TOUCH_SCREEN) },
1651         { HID_USB_DEVICE(USB_VENDOR_ID_NTRIG, USB_DEVICE_ID_NTRIG_TOUCH_SCREEN_1) },
1652         { HID_USB_DEVICE(USB_VENDOR_ID_NTRIG, USB_DEVICE_ID_NTRIG_TOUCH_SCREEN_2) },
1653         { HID_USB_DEVICE(USB_VENDOR_ID_NTRIG, USB_DEVICE_ID_NTRIG_TOUCH_SCREEN_3) },
1654         { HID_USB_DEVICE(USB_VENDOR_ID_NTRIG, USB_DEVICE_ID_NTRIG_TOUCH_SCREEN_4) },
1655         { HID_USB_DEVICE(USB_VENDOR_ID_NTRIG, USB_DEVICE_ID_NTRIG_TOUCH_SCREEN_5) },
1656         { HID_USB_DEVICE(USB_VENDOR_ID_NTRIG, USB_DEVICE_ID_NTRIG_TOUCH_SCREEN_6) },
1657         { HID_USB_DEVICE(USB_VENDOR_ID_NTRIG, USB_DEVICE_ID_NTRIG_TOUCH_SCREEN_7) },
1658         { HID_USB_DEVICE(USB_VENDOR_ID_NTRIG, USB_DEVICE_ID_NTRIG_TOUCH_SCREEN_8) },
1659         { HID_USB_DEVICE(USB_VENDOR_ID_NTRIG, USB_DEVICE_ID_NTRIG_TOUCH_SCREEN_9) },
1660         { HID_USB_DEVICE(USB_VENDOR_ID_NTRIG, USB_DEVICE_ID_NTRIG_TOUCH_SCREEN_10) },
1661         { HID_USB_DEVICE(USB_VENDOR_ID_NTRIG, USB_DEVICE_ID_NTRIG_TOUCH_SCREEN_11) },
1662         { HID_USB_DEVICE(USB_VENDOR_ID_NTRIG, USB_DEVICE_ID_NTRIG_TOUCH_SCREEN_12) },
1663         { HID_USB_DEVICE(USB_VENDOR_ID_NTRIG, USB_DEVICE_ID_NTRIG_TOUCH_SCREEN_13) },
1664         { HID_USB_DEVICE(USB_VENDOR_ID_NTRIG, USB_DEVICE_ID_NTRIG_TOUCH_SCREEN_14) },
1665         { HID_USB_DEVICE(USB_VENDOR_ID_NTRIG, USB_DEVICE_ID_NTRIG_TOUCH_SCREEN_15) },
1666         { HID_USB_DEVICE(USB_VENDOR_ID_NTRIG, USB_DEVICE_ID_NTRIG_TOUCH_SCREEN_16) },
1667         { HID_USB_DEVICE(USB_VENDOR_ID_NTRIG, USB_DEVICE_ID_NTRIG_TOUCH_SCREEN_17) },
1668         { HID_USB_DEVICE(USB_VENDOR_ID_NTRIG, USB_DEVICE_ID_NTRIG_TOUCH_SCREEN_18) },
1669         { HID_USB_DEVICE(USB_VENDOR_ID_ORTEK, USB_DEVICE_ID_ORTEK_PKB1700) },
1670         { HID_USB_DEVICE(USB_VENDOR_ID_ORTEK, USB_DEVICE_ID_ORTEK_WKB2000) },
1671         { HID_USB_DEVICE(USB_VENDOR_ID_PETALYNX, USB_DEVICE_ID_PETALYNX_MAXTER_REMOTE) },
1672         { HID_USB_DEVICE(USB_VENDOR_ID_PRIMAX, USB_DEVICE_ID_PRIMAX_KEYBOARD) },
1673 #if IS_ENABLED(CONFIG_HID_ROCCAT)
1674         { HID_USB_DEVICE(USB_VENDOR_ID_ROCCAT, USB_DEVICE_ID_ROCCAT_KONE) },
1675         { HID_USB_DEVICE(USB_VENDOR_ID_ROCCAT, USB_DEVICE_ID_ROCCAT_ARVO) },
1676         { HID_USB_DEVICE(USB_VENDOR_ID_ROCCAT, USB_DEVICE_ID_ROCCAT_ISKU) },
1677         { HID_USB_DEVICE(USB_VENDOR_ID_ROCCAT, USB_DEVICE_ID_ROCCAT_KONEPLUS) },
1678         { HID_USB_DEVICE(USB_VENDOR_ID_ROCCAT, USB_DEVICE_ID_ROCCAT_KOVAPLUS) },
1679         { HID_USB_DEVICE(USB_VENDOR_ID_ROCCAT, USB_DEVICE_ID_ROCCAT_PYRA_WIRED) },
1680         { HID_USB_DEVICE(USB_VENDOR_ID_ROCCAT, USB_DEVICE_ID_ROCCAT_PYRA_WIRELESS) },
1681         { HID_USB_DEVICE(USB_VENDOR_ID_ROCCAT, USB_DEVICE_ID_ROCCAT_SAVU) },
1682 #endif
1683         { HID_USB_DEVICE(USB_VENDOR_ID_SAITEK, USB_DEVICE_ID_SAITEK_PS1000) },
1684         { HID_USB_DEVICE(USB_VENDOR_ID_SAMSUNG, USB_DEVICE_ID_SAMSUNG_IR_REMOTE) },
1685         { HID_USB_DEVICE(USB_VENDOR_ID_SAMSUNG, USB_DEVICE_ID_SAMSUNG_WIRELESS_KBD_MOUSE) },
1686         { HID_USB_DEVICE(USB_VENDOR_ID_SKYCABLE, USB_DEVICE_ID_SKYCABLE_WIRELESS_PRESENTER) },
1687         { HID_BLUETOOTH_DEVICE(USB_VENDOR_ID_SONY, USB_DEVICE_ID_SONY_PS3_BDREMOTE) },
1688         { HID_USB_DEVICE(USB_VENDOR_ID_SONY, USB_DEVICE_ID_SONY_PS3_CONTROLLER) },
1689         { HID_USB_DEVICE(USB_VENDOR_ID_SONY, USB_DEVICE_ID_SONY_NAVIGATION_CONTROLLER) },
1690         { HID_BLUETOOTH_DEVICE(USB_VENDOR_ID_SONY, USB_DEVICE_ID_SONY_PS3_CONTROLLER) },
1691         { HID_USB_DEVICE(USB_VENDOR_ID_SONY, USB_DEVICE_ID_SONY_VAIO_VGX_MOUSE) },
1692         { HID_USB_DEVICE(USB_VENDOR_ID_SUNPLUS, USB_DEVICE_ID_SUNPLUS_WDESKTOP) },
1693         { HID_USB_DEVICE(USB_VENDOR_ID_STANTUM_STM, USB_DEVICE_ID_SENSOR_HUB_7014) },
1694         { HID_USB_DEVICE(USB_VENDOR_ID_THRUSTMASTER, 0xb300) },
1695         { HID_USB_DEVICE(USB_VENDOR_ID_THRUSTMASTER, 0xb304) },
1696         { HID_USB_DEVICE(USB_VENDOR_ID_THRUSTMASTER, 0xb323) },
1697         { HID_USB_DEVICE(USB_VENDOR_ID_THRUSTMASTER, 0xb324) },
1698         { HID_USB_DEVICE(USB_VENDOR_ID_THRUSTMASTER, 0xb651) },
1699         { HID_USB_DEVICE(USB_VENDOR_ID_THRUSTMASTER, 0xb653) },
1700         { HID_USB_DEVICE(USB_VENDOR_ID_THRUSTMASTER, 0xb654) },
1701         { HID_USB_DEVICE(USB_VENDOR_ID_THRUSTMASTER, 0xb65a) },
1702         { HID_BLUETOOTH_DEVICE(USB_VENDOR_ID_TIVO, USB_DEVICE_ID_TIVO_SLIDE_BT) },
1703         { HID_USB_DEVICE(USB_VENDOR_ID_TIVO, USB_DEVICE_ID_TIVO_SLIDE) },
1704         { HID_USB_DEVICE(USB_VENDOR_ID_TOPSEED, USB_DEVICE_ID_TOPSEED_CYBERLINK) },
1705         { HID_USB_DEVICE(USB_VENDOR_ID_TOPSEED2, USB_DEVICE_ID_TOPSEED2_RF_COMBO) },
1706         { HID_USB_DEVICE(USB_VENDOR_ID_TWINHAN, USB_DEVICE_ID_TWINHAN_IR_REMOTE) },
1707         { HID_USB_DEVICE(USB_VENDOR_ID_UCLOGIC, USB_DEVICE_ID_UCLOGIC_TABLET_PF1209) },
1708         { HID_USB_DEVICE(USB_VENDOR_ID_UCLOGIC, USB_DEVICE_ID_UCLOGIC_TABLET_WP4030U) },
1709         { HID_USB_DEVICE(USB_VENDOR_ID_UCLOGIC, USB_DEVICE_ID_UCLOGIC_TABLET_WP5540U) },
1710         { HID_USB_DEVICE(USB_VENDOR_ID_UCLOGIC, USB_DEVICE_ID_UCLOGIC_TABLET_WP8060U) },
1711         { HID_USB_DEVICE(USB_VENDOR_ID_UCLOGIC, USB_DEVICE_ID_UCLOGIC_TABLET_WP1062) },
1712         { HID_USB_DEVICE(USB_VENDOR_ID_UCLOGIC, USB_DEVICE_ID_UCLOGIC_WIRELESS_TABLET_TWHL850) },
1713         { HID_USB_DEVICE(USB_VENDOR_ID_UCLOGIC, USB_DEVICE_ID_UCLOGIC_TABLET_TWHA60) },
1714         { HID_USB_DEVICE(USB_VENDOR_ID_WISEGROUP, USB_DEVICE_ID_SMARTJOY_PLUS) },
1715         { HID_USB_DEVICE(USB_VENDOR_ID_WISEGROUP, USB_DEVICE_ID_SUPER_JOY_BOX_3) },
1716         { HID_USB_DEVICE(USB_VENDOR_ID_WISEGROUP, USB_DEVICE_ID_DUAL_USB_JOYPAD) },
1717         { HID_USB_DEVICE(USB_VENDOR_ID_WISEGROUP_LTD, USB_DEVICE_ID_SUPER_JOY_BOX_3_PRO) },
1718         { HID_USB_DEVICE(USB_VENDOR_ID_WISEGROUP_LTD, USB_DEVICE_ID_SUPER_DUAL_BOX_PRO) },
1719         { HID_USB_DEVICE(USB_VENDOR_ID_WISEGROUP_LTD, USB_DEVICE_ID_SUPER_JOY_BOX_5_PRO) },
1720         { HID_BLUETOOTH_DEVICE(USB_VENDOR_ID_WACOM, USB_DEVICE_ID_WACOM_GRAPHIRE_BLUETOOTH) },
1721         { HID_BLUETOOTH_DEVICE(USB_VENDOR_ID_WACOM, USB_DEVICE_ID_WACOM_INTUOS4_BLUETOOTH) },
1722         { HID_USB_DEVICE(USB_VENDOR_ID_WALTOP, USB_DEVICE_ID_WALTOP_SLIM_TABLET_5_8_INCH) },
1723         { HID_USB_DEVICE(USB_VENDOR_ID_WALTOP, USB_DEVICE_ID_WALTOP_SLIM_TABLET_12_1_INCH) },
1724         { HID_USB_DEVICE(USB_VENDOR_ID_WALTOP, USB_DEVICE_ID_WALTOP_Q_PAD) },
1725         { HID_USB_DEVICE(USB_VENDOR_ID_WALTOP, USB_DEVICE_ID_WALTOP_PID_0038) },
1726         { HID_USB_DEVICE(USB_VENDOR_ID_WALTOP, USB_DEVICE_ID_WALTOP_MEDIA_TABLET_10_6_INCH) },
1727         { HID_USB_DEVICE(USB_VENDOR_ID_WALTOP, USB_DEVICE_ID_WALTOP_MEDIA_TABLET_14_1_INCH) },
1728         { HID_USB_DEVICE(USB_VENDOR_ID_WALTOP, USB_DEVICE_ID_WALTOP_SIRIUS_BATTERY_FREE_TABLET) },
1729         { HID_USB_DEVICE(USB_VENDOR_ID_X_TENSIONS, USB_DEVICE_ID_SPEEDLINK_VAD_CEZANNE) },
1730         { HID_USB_DEVICE(USB_VENDOR_ID_ZEROPLUS, 0x0005) },
1731         { HID_USB_DEVICE(USB_VENDOR_ID_ZEROPLUS, 0x0030) },
1732         { HID_USB_DEVICE(USB_VENDOR_ID_ZYDACRON, USB_DEVICE_ID_ZYDACRON_REMOTE_CONTROL) },
1733
1734         { HID_BLUETOOTH_DEVICE(USB_VENDOR_ID_MICROSOFT, USB_DEVICE_ID_MS_PRESENTER_8K_BT) },
1735         { HID_BLUETOOTH_DEVICE(USB_VENDOR_ID_NINTENDO, USB_DEVICE_ID_NINTENDO_WIIMOTE) },
1736         { }
1737 };
1738
1739 struct hid_dynid {
1740         struct list_head list;
1741         struct hid_device_id id;
1742 };
1743
1744 /**
1745  * store_new_id - add a new HID device ID to this driver and re-probe devices
1746  * @driver: target device driver
1747  * @buf: buffer for scanning device ID data
1748  * @count: input size
1749  *
1750  * Adds a new dynamic hid device ID to this driver,
1751  * and causes the driver to probe for all devices again.
1752  */
1753 static ssize_t store_new_id(struct device_driver *drv, const char *buf,
1754                 size_t count)
1755 {
1756         struct hid_driver *hdrv = container_of(drv, struct hid_driver, driver);
1757         struct hid_dynid *dynid;
1758         __u32 bus, vendor, product;
1759         unsigned long driver_data = 0;
1760         int ret;
1761
1762         ret = sscanf(buf, "%x %x %x %lx",
1763                         &bus, &vendor, &product, &driver_data);
1764         if (ret < 3)
1765                 return -EINVAL;
1766
1767         dynid = kzalloc(sizeof(*dynid), GFP_KERNEL);
1768         if (!dynid)
1769                 return -ENOMEM;
1770
1771         dynid->id.bus = bus;
1772         dynid->id.group = HID_GROUP_ANY;
1773         dynid->id.vendor = vendor;
1774         dynid->id.product = product;
1775         dynid->id.driver_data = driver_data;
1776
1777         spin_lock(&hdrv->dyn_lock);
1778         list_add_tail(&dynid->list, &hdrv->dyn_list);
1779         spin_unlock(&hdrv->dyn_lock);
1780
1781         ret = driver_attach(&hdrv->driver);
1782
1783         return ret ? : count;
1784 }
1785 static DRIVER_ATTR(new_id, S_IWUSR, NULL, store_new_id);
1786
1787 static void hid_free_dynids(struct hid_driver *hdrv)
1788 {
1789         struct hid_dynid *dynid, *n;
1790
1791         spin_lock(&hdrv->dyn_lock);
1792         list_for_each_entry_safe(dynid, n, &hdrv->dyn_list, list) {
1793                 list_del(&dynid->list);
1794                 kfree(dynid);
1795         }
1796         spin_unlock(&hdrv->dyn_lock);
1797 }
1798
1799 static const struct hid_device_id *hid_match_device(struct hid_device *hdev,
1800                 struct hid_driver *hdrv)
1801 {
1802         struct hid_dynid *dynid;
1803
1804         spin_lock(&hdrv->dyn_lock);
1805         list_for_each_entry(dynid, &hdrv->dyn_list, list) {
1806                 if (hid_match_one_id(hdev, &dynid->id)) {
1807                         spin_unlock(&hdrv->dyn_lock);
1808                         return &dynid->id;
1809                 }
1810         }
1811         spin_unlock(&hdrv->dyn_lock);
1812
1813         return hid_match_id(hdev, hdrv->id_table);
1814 }
1815
1816 static int hid_bus_match(struct device *dev, struct device_driver *drv)
1817 {
1818         struct hid_driver *hdrv = container_of(drv, struct hid_driver, driver);
1819         struct hid_device *hdev = container_of(dev, struct hid_device, dev);
1820
1821         return hid_match_device(hdev, hdrv) != NULL;
1822 }
1823
1824 static int hid_device_probe(struct device *dev)
1825 {
1826         struct hid_driver *hdrv = container_of(dev->driver,
1827                         struct hid_driver, driver);
1828         struct hid_device *hdev = container_of(dev, struct hid_device, dev);
1829         const struct hid_device_id *id;
1830         int ret = 0;
1831
1832         if (down_interruptible(&hdev->driver_lock))
1833                 return -EINTR;
1834
1835         if (!hdev->driver) {
1836                 id = hid_match_device(hdev, hdrv);
1837                 if (id == NULL) {
1838                         ret = -ENODEV;
1839                         goto unlock;
1840                 }
1841
1842                 hdev->driver = hdrv;
1843                 if (hdrv->probe) {
1844                         ret = hdrv->probe(hdev, id);
1845                 } else { /* default probe */
1846                         ret = hid_open_report(hdev);
1847                         if (!ret)
1848                                 ret = hid_hw_start(hdev, HID_CONNECT_DEFAULT);
1849                 }
1850                 if (ret) {
1851                         hid_close_report(hdev);
1852                         hdev->driver = NULL;
1853                 }
1854         }
1855 unlock:
1856         up(&hdev->driver_lock);
1857         return ret;
1858 }
1859
1860 static int hid_device_remove(struct device *dev)
1861 {
1862         struct hid_device *hdev = container_of(dev, struct hid_device, dev);
1863         struct hid_driver *hdrv;
1864
1865         if (down_interruptible(&hdev->driver_lock))
1866                 return -EINTR;
1867
1868         hdrv = hdev->driver;
1869         if (hdrv) {
1870                 if (hdrv->remove)
1871                         hdrv->remove(hdev);
1872                 else /* default remove */
1873                         hid_hw_stop(hdev);
1874                 hid_close_report(hdev);
1875                 hdev->driver = NULL;
1876         }
1877
1878         up(&hdev->driver_lock);
1879         return 0;
1880 }
1881
1882 static ssize_t modalias_show(struct device *dev, struct device_attribute *a,
1883                              char *buf)
1884 {
1885         struct hid_device *hdev = container_of(dev, struct hid_device, dev);
1886         int len;
1887
1888         len = snprintf(buf, PAGE_SIZE, "hid:b%04Xg%04Xv%08Xp%08X\n",
1889                        hdev->bus, hdev->group, hdev->vendor, hdev->product);
1890
1891         return (len >= PAGE_SIZE) ? (PAGE_SIZE - 1) : len;
1892 }
1893
1894 static struct device_attribute hid_dev_attrs[] = {
1895         __ATTR_RO(modalias),
1896         __ATTR_NULL,
1897 };
1898
1899 static int hid_uevent(struct device *dev, struct kobj_uevent_env *env)
1900 {
1901         struct hid_device *hdev = container_of(dev, struct hid_device, dev);
1902
1903         if (add_uevent_var(env, "HID_ID=%04X:%08X:%08X",
1904                         hdev->bus, hdev->vendor, hdev->product))
1905                 return -ENOMEM;
1906
1907         if (add_uevent_var(env, "HID_NAME=%s", hdev->name))
1908                 return -ENOMEM;
1909
1910         if (add_uevent_var(env, "HID_PHYS=%s", hdev->phys))
1911                 return -ENOMEM;
1912
1913         if (add_uevent_var(env, "HID_UNIQ=%s", hdev->uniq))
1914                 return -ENOMEM;
1915
1916         if (add_uevent_var(env, "MODALIAS=hid:b%04Xg%04Xv%08Xp%08X",
1917                            hdev->bus, hdev->group, hdev->vendor, hdev->product))
1918                 return -ENOMEM;
1919
1920         return 0;
1921 }
1922
1923 static struct bus_type hid_bus_type = {
1924         .name           = "hid",
1925         .dev_attrs      = hid_dev_attrs,
1926         .match          = hid_bus_match,
1927         .probe          = hid_device_probe,
1928         .remove         = hid_device_remove,
1929         .uevent         = hid_uevent,
1930 };
1931
1932 /* a list of devices that shouldn't be handled by HID core at all */
1933 static const struct hid_device_id hid_ignore_list[] = {
1934         { HID_USB_DEVICE(USB_VENDOR_ID_ACECAD, USB_DEVICE_ID_ACECAD_FLAIR) },
1935         { HID_USB_DEVICE(USB_VENDOR_ID_ACECAD, USB_DEVICE_ID_ACECAD_302) },
1936         { HID_USB_DEVICE(USB_VENDOR_ID_ADS_TECH, USB_DEVICE_ID_ADS_TECH_RADIO_SI470X) },
1937         { HID_USB_DEVICE(USB_VENDOR_ID_AIPTEK, USB_DEVICE_ID_AIPTEK_01) },
1938         { HID_USB_DEVICE(USB_VENDOR_ID_AIPTEK, USB_DEVICE_ID_AIPTEK_10) },
1939         { HID_USB_DEVICE(USB_VENDOR_ID_AIPTEK, USB_DEVICE_ID_AIPTEK_20) },
1940         { HID_USB_DEVICE(USB_VENDOR_ID_AIPTEK, USB_DEVICE_ID_AIPTEK_21) },
1941         { HID_USB_DEVICE(USB_VENDOR_ID_AIPTEK, USB_DEVICE_ID_AIPTEK_22) },
1942         { HID_USB_DEVICE(USB_VENDOR_ID_AIPTEK, USB_DEVICE_ID_AIPTEK_23) },
1943         { HID_USB_DEVICE(USB_VENDOR_ID_AIPTEK, USB_DEVICE_ID_AIPTEK_24) },
1944         { HID_USB_DEVICE(USB_VENDOR_ID_AIRCABLE, USB_DEVICE_ID_AIRCABLE1) },
1945         { HID_USB_DEVICE(USB_VENDOR_ID_ALCOR, USB_DEVICE_ID_ALCOR_USBRS232) },
1946         { HID_USB_DEVICE(USB_VENDOR_ID_ASUSTEK, USB_DEVICE_ID_ASUSTEK_LCM)},
1947         { HID_USB_DEVICE(USB_VENDOR_ID_ASUSTEK, USB_DEVICE_ID_ASUSTEK_LCM2)},
1948         { HID_USB_DEVICE(USB_VENDOR_ID_AVERMEDIA, USB_DEVICE_ID_AVER_FM_MR800) },
1949         { HID_USB_DEVICE(USB_VENDOR_ID_AXENTIA, USB_DEVICE_ID_AXENTIA_FM_RADIO) },
1950         { HID_USB_DEVICE(USB_VENDOR_ID_BERKSHIRE, USB_DEVICE_ID_BERKSHIRE_PCWD) },
1951         { HID_USB_DEVICE(USB_VENDOR_ID_CIDC, 0x0103) },
1952         { HID_USB_DEVICE(USB_VENDOR_ID_CYGNAL, USB_DEVICE_ID_CYGNAL_RADIO_SI470X) },
1953         { HID_USB_DEVICE(USB_VENDOR_ID_CMEDIA, USB_DEVICE_ID_CM109) },
1954         { HID_USB_DEVICE(USB_VENDOR_ID_CYPRESS, USB_DEVICE_ID_CYPRESS_HIDCOM) },
1955         { HID_USB_DEVICE(USB_VENDOR_ID_CYPRESS, USB_DEVICE_ID_CYPRESS_ULTRAMOUSE) },
1956         { HID_USB_DEVICE(USB_VENDOR_ID_DEALEXTREAME, USB_DEVICE_ID_DEALEXTREAME_RADIO_SI4701) },
1957         { HID_USB_DEVICE(USB_VENDOR_ID_DELORME, USB_DEVICE_ID_DELORME_EARTHMATE) },
1958         { HID_USB_DEVICE(USB_VENDOR_ID_DELORME, USB_DEVICE_ID_DELORME_EM_LT20) },
1959         { HID_USB_DEVICE(USB_VENDOR_ID_DREAM_CHEEKY, 0x0004) },
1960         { HID_USB_DEVICE(USB_VENDOR_ID_DREAM_CHEEKY, 0x000a) },
1961         { HID_USB_DEVICE(USB_VENDOR_ID_ESSENTIAL_REALITY, USB_DEVICE_ID_ESSENTIAL_REALITY_P5) },
1962         { HID_USB_DEVICE(USB_VENDOR_ID_ETT, USB_DEVICE_ID_TC5UH) },
1963         { HID_USB_DEVICE(USB_VENDOR_ID_ETT, USB_DEVICE_ID_TC4UM) },
1964         { HID_USB_DEVICE(USB_VENDOR_ID_GENERAL_TOUCH, 0x0001) },
1965         { HID_USB_DEVICE(USB_VENDOR_ID_GENERAL_TOUCH, 0x0002) },
1966         { HID_USB_DEVICE(USB_VENDOR_ID_GENERAL_TOUCH, 0x0004) },
1967         { HID_USB_DEVICE(USB_VENDOR_ID_GLAB, USB_DEVICE_ID_4_PHIDGETSERVO_30) },
1968         { HID_USB_DEVICE(USB_VENDOR_ID_GLAB, USB_DEVICE_ID_1_PHIDGETSERVO_30) },
1969         { HID_USB_DEVICE(USB_VENDOR_ID_GLAB, USB_DEVICE_ID_0_0_4_IF_KIT) },
1970         { HID_USB_DEVICE(USB_VENDOR_ID_GLAB, USB_DEVICE_ID_0_16_16_IF_KIT) },
1971         { HID_USB_DEVICE(USB_VENDOR_ID_GLAB, USB_DEVICE_ID_8_8_8_IF_KIT) },
1972         { HID_USB_DEVICE(USB_VENDOR_ID_GLAB, USB_DEVICE_ID_0_8_7_IF_KIT) },
1973         { HID_USB_DEVICE(USB_VENDOR_ID_GLAB, USB_DEVICE_ID_0_8_8_IF_KIT) },
1974         { HID_USB_DEVICE(USB_VENDOR_ID_GLAB, USB_DEVICE_ID_PHIDGET_MOTORCONTROL) },
1975         { HID_USB_DEVICE(USB_VENDOR_ID_GOTOP, USB_DEVICE_ID_SUPER_Q2) },
1976         { HID_USB_DEVICE(USB_VENDOR_ID_GOTOP, USB_DEVICE_ID_GOGOPEN) },
1977         { HID_USB_DEVICE(USB_VENDOR_ID_GOTOP, USB_DEVICE_ID_PENPOWER) },
1978         { HID_USB_DEVICE(USB_VENDOR_ID_GRETAGMACBETH, USB_DEVICE_ID_GRETAGMACBETH_HUEY) },
1979         { HID_USB_DEVICE(USB_VENDOR_ID_GRIFFIN, USB_DEVICE_ID_POWERMATE) },
1980         { HID_USB_DEVICE(USB_VENDOR_ID_GRIFFIN, USB_DEVICE_ID_SOUNDKNOB) },
1981         { HID_USB_DEVICE(USB_VENDOR_ID_GRIFFIN, USB_DEVICE_ID_RADIOSHARK) },
1982         { HID_USB_DEVICE(USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_90) },
1983         { HID_USB_DEVICE(USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_100) },
1984         { HID_USB_DEVICE(USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_101) },
1985         { HID_USB_DEVICE(USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_103) },
1986         { HID_USB_DEVICE(USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_104) },
1987         { HID_USB_DEVICE(USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_105) },
1988         { HID_USB_DEVICE(USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_106) },
1989         { HID_USB_DEVICE(USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_107) },
1990         { HID_USB_DEVICE(USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_108) },
1991         { HID_USB_DEVICE(USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_200) },
1992         { HID_USB_DEVICE(USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_201) },
1993         { HID_USB_DEVICE(USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_202) },
1994         { HID_USB_DEVICE(USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_203) },
1995         { HID_USB_DEVICE(USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_204) },
1996         { HID_USB_DEVICE(USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_205) },
1997         { HID_USB_DEVICE(USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_206) },
1998         { HID_USB_DEVICE(USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_207) },
1999         { HID_USB_DEVICE(USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_300) },
2000         { HID_USB_DEVICE(USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_301) },
2001         { HID_USB_DEVICE(USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_302) },
2002         { HID_USB_DEVICE(USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_303) },
2003         { HID_USB_DEVICE(USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_304) },
2004         { HID_USB_DEVICE(USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_305) },
2005         { HID_USB_DEVICE(USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_306) },
2006         { HID_USB_DEVICE(USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_307) },
2007         { HID_USB_DEVICE(USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_308) },
2008         { HID_USB_DEVICE(USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_309) },
2009         { HID_USB_DEVICE(USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_400) },
2010         { HID_USB_DEVICE(USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_401) },
2011         { HID_USB_DEVICE(USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_402) },
2012         { HID_USB_DEVICE(USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_403) },
2013         { HID_USB_DEVICE(USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_404) },
2014         { HID_USB_DEVICE(USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_405) },
2015         { HID_USB_DEVICE(USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_500) },
2016         { HID_USB_DEVICE(USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_501) },
2017         { HID_USB_DEVICE(USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_502) },
2018         { HID_USB_DEVICE(USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_503) },
2019         { HID_USB_DEVICE(USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_504) },
2020         { HID_USB_DEVICE(USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_1000) },
2021         { HID_USB_DEVICE(USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_1001) },
2022         { HID_USB_DEVICE(USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_1002) },
2023         { HID_USB_DEVICE(USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_1003) },
2024         { HID_USB_DEVICE(USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_1004) },
2025         { HID_USB_DEVICE(USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_1005) },
2026         { HID_USB_DEVICE(USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_1006) },
2027         { HID_USB_DEVICE(USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_1007) },
2028         { HID_USB_DEVICE(USB_VENDOR_ID_IMATION, USB_DEVICE_ID_DISC_STAKKA) },
2029         { HID_USB_DEVICE(USB_VENDOR_ID_KBGEAR, USB_DEVICE_ID_KBGEAR_JAMSTUDIO) },
2030         { HID_USB_DEVICE(USB_VENDOR_ID_KWORLD, USB_DEVICE_ID_KWORLD_RADIO_FM700) },
2031         { HID_USB_DEVICE(USB_VENDOR_ID_KYE, USB_DEVICE_ID_KYE_GPEN_560) },
2032         { HID_BLUETOOTH_DEVICE(USB_VENDOR_ID_KYE, 0x0058) },
2033         { HID_USB_DEVICE(USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_CASSY) },
2034         { HID_USB_DEVICE(USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_CASSY2) },
2035         { HID_USB_DEVICE(USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_POCKETCASSY) },
2036         { HID_USB_DEVICE(USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_POCKETCASSY2) },
2037         { HID_USB_DEVICE(USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_MOBILECASSY) },
2038         { HID_USB_DEVICE(USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_MOBILECASSY2) },
2039         { HID_USB_DEVICE(USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_MICROCASSYVOLTAGE) },
2040         { HID_USB_DEVICE(USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_MICROCASSYCURRENT) },
2041         { HID_USB_DEVICE(USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_MICROCASSYTIME) },
2042         { HID_USB_DEVICE(USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_MICROCASSYTEMPERATURE) },
2043         { HID_USB_DEVICE(USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_MICROCASSYPH) },
2044         { HID_USB_DEVICE(USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_JWM) },
2045         { HID_USB_DEVICE(USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_DMMP) },
2046         { HID_USB_DEVICE(USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_UMIP) },
2047         { HID_USB_DEVICE(USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_UMIC) },
2048         { HID_USB_DEVICE(USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_UMIB) },
2049         { HID_USB_DEVICE(USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_XRAY) },
2050         { HID_USB_DEVICE(USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_XRAY2) },
2051         { HID_USB_DEVICE(USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_VIDEOCOM) },
2052         { HID_USB_DEVICE(USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_MOTOR) },
2053         { HID_USB_DEVICE(USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_COM3LAB) },
2054         { HID_USB_DEVICE(USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_TELEPORT) },
2055         { HID_USB_DEVICE(USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_NETWORKANALYSER) },
2056         { HID_USB_DEVICE(USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_POWERCONTROL) },
2057         { HID_USB_DEVICE(USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_MACHINETEST) },
2058         { HID_USB_DEVICE(USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_MOSTANALYSER) },
2059         { HID_USB_DEVICE(USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_MOSTANALYSER2) },
2060         { HID_USB_DEVICE(USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_ABSESP) },
2061         { HID_USB_DEVICE(USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_AUTODATABUS) },
2062         { HID_USB_DEVICE(USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_MCT) },
2063         { HID_USB_DEVICE(USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_HYBRID) },
2064         { HID_USB_DEVICE(USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_HEATCONTROL) },
2065         { HID_USB_DEVICE(USB_VENDOR_ID_MADCATZ, USB_DEVICE_ID_MADCATZ_BEATPAD) },
2066         { HID_USB_DEVICE(USB_VENDOR_ID_MCC, USB_DEVICE_ID_MCC_PMD1024LS) },
2067         { HID_USB_DEVICE(USB_VENDOR_ID_MCC, USB_DEVICE_ID_MCC_PMD1208LS) },
2068         { HID_USB_DEVICE(USB_VENDOR_ID_MICROCHIP, USB_DEVICE_ID_PICKIT1) },
2069         { HID_USB_DEVICE(USB_VENDOR_ID_MICROCHIP, USB_DEVICE_ID_PICKIT2) },
2070         { HID_USB_DEVICE(USB_VENDOR_ID_NATIONAL_SEMICONDUCTOR, USB_DEVICE_ID_N_S_HARMONY) },
2071         { HID_USB_DEVICE(USB_VENDOR_ID_ONTRAK, USB_DEVICE_ID_ONTRAK_ADU100) },
2072         { HID_USB_DEVICE(USB_VENDOR_ID_ONTRAK, USB_DEVICE_ID_ONTRAK_ADU100 + 20) },
2073         { HID_USB_DEVICE(USB_VENDOR_ID_ONTRAK, USB_DEVICE_ID_ONTRAK_ADU100 + 30) },
2074         { HID_USB_DEVICE(USB_VENDOR_ID_ONTRAK, USB_DEVICE_ID_ONTRAK_ADU100 + 100) },
2075         { HID_USB_DEVICE(USB_VENDOR_ID_ONTRAK, USB_DEVICE_ID_ONTRAK_ADU100 + 108) },
2076         { HID_USB_DEVICE(USB_VENDOR_ID_ONTRAK, USB_DEVICE_ID_ONTRAK_ADU100 + 118) },
2077         { HID_USB_DEVICE(USB_VENDOR_ID_ONTRAK, USB_DEVICE_ID_ONTRAK_ADU100 + 200) },
2078         { HID_USB_DEVICE(USB_VENDOR_ID_ONTRAK, USB_DEVICE_ID_ONTRAK_ADU100 + 300) },
2079         { HID_USB_DEVICE(USB_VENDOR_ID_ONTRAK, USB_DEVICE_ID_ONTRAK_ADU100 + 400) },
2080         { HID_USB_DEVICE(USB_VENDOR_ID_ONTRAK, USB_DEVICE_ID_ONTRAK_ADU100 + 500) },
2081         { HID_USB_DEVICE(USB_VENDOR_ID_PANJIT, 0x0001) },
2082         { HID_USB_DEVICE(USB_VENDOR_ID_PANJIT, 0x0002) },
2083         { HID_USB_DEVICE(USB_VENDOR_ID_PANJIT, 0x0003) },
2084         { HID_USB_DEVICE(USB_VENDOR_ID_PANJIT, 0x0004) },
2085         { HID_USB_DEVICE(USB_VENDOR_ID_PHILIPS, USB_DEVICE_ID_PHILIPS_IEEE802154_DONGLE) },
2086         { HID_USB_DEVICE(USB_VENDOR_ID_POWERCOM, USB_DEVICE_ID_POWERCOM_UPS) },
2087 #if defined(CONFIG_MOUSE_SYNAPTICS_USB) || defined(CONFIG_MOUSE_SYNAPTICS_USB_MODULE)
2088         { HID_USB_DEVICE(USB_VENDOR_ID_SYNAPTICS, USB_DEVICE_ID_SYNAPTICS_TP) },
2089         { HID_USB_DEVICE(USB_VENDOR_ID_SYNAPTICS, USB_DEVICE_ID_SYNAPTICS_INT_TP) },
2090         { HID_USB_DEVICE(USB_VENDOR_ID_SYNAPTICS, USB_DEVICE_ID_SYNAPTICS_CPAD) },
2091         { HID_USB_DEVICE(USB_VENDOR_ID_SYNAPTICS, USB_DEVICE_ID_SYNAPTICS_STICK) },
2092         { HID_USB_DEVICE(USB_VENDOR_ID_SYNAPTICS, USB_DEVICE_ID_SYNAPTICS_WP) },
2093         { HID_USB_DEVICE(USB_VENDOR_ID_SYNAPTICS, USB_DEVICE_ID_SYNAPTICS_COMP_TP) },
2094         { HID_USB_DEVICE(USB_VENDOR_ID_SYNAPTICS, USB_DEVICE_ID_SYNAPTICS_WTP) },
2095         { HID_USB_DEVICE(USB_VENDOR_ID_SYNAPTICS, USB_DEVICE_ID_SYNAPTICS_DPAD) },
2096 #endif
2097         { HID_USB_DEVICE(USB_VENDOR_ID_VERNIER, USB_DEVICE_ID_VERNIER_LABPRO) },
2098         { HID_USB_DEVICE(USB_VENDOR_ID_VERNIER, USB_DEVICE_ID_VERNIER_GOTEMP) },
2099         { HID_USB_DEVICE(USB_VENDOR_ID_VERNIER, USB_DEVICE_ID_VERNIER_SKIP) },
2100         { HID_USB_DEVICE(USB_VENDOR_ID_VERNIER, USB_DEVICE_ID_VERNIER_CYCLOPS) },
2101         { HID_USB_DEVICE(USB_VENDOR_ID_VERNIER, USB_DEVICE_ID_VERNIER_LCSPEC) },
2102         { HID_USB_DEVICE(USB_VENDOR_ID_WACOM, HID_ANY_ID) },
2103         { HID_USB_DEVICE(USB_VENDOR_ID_WISEGROUP, USB_DEVICE_ID_4_PHIDGETSERVO_20) },
2104         { HID_USB_DEVICE(USB_VENDOR_ID_WISEGROUP, USB_DEVICE_ID_1_PHIDGETSERVO_20) },
2105         { HID_USB_DEVICE(USB_VENDOR_ID_WISEGROUP, USB_DEVICE_ID_8_8_4_IF_KIT) },
2106         { HID_USB_DEVICE(USB_VENDOR_ID_YEALINK, USB_DEVICE_ID_YEALINK_P1K_P4K_B2K) },
2107         { }
2108 };
2109
2110 /**
2111  * hid_mouse_ignore_list - mouse devices which should not be handled by the hid layer
2112  *
2113  * There are composite devices for which we want to ignore only a certain
2114  * interface. This is a list of devices for which only the mouse interface will
2115  * be ignored. This allows a dedicated driver to take care of the interface.
2116  */
2117 static const struct hid_device_id hid_mouse_ignore_list[] = {
2118         /* appletouch driver */
2119         { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_FOUNTAIN_ANSI) },
2120         { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_FOUNTAIN_ISO) },
2121         { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_GEYSER_ANSI) },
2122         { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_GEYSER_ISO) },
2123         { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_GEYSER_JIS) },
2124         { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_GEYSER3_ANSI) },
2125         { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_GEYSER3_ISO) },
2126         { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_GEYSER3_JIS) },
2127         { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_GEYSER4_ANSI) },
2128         { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_GEYSER4_ISO) },
2129         { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_GEYSER4_JIS) },
2130         { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_GEYSER4_HF_ANSI) },
2131         { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_GEYSER4_HF_ISO) },
2132         { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_GEYSER4_HF_JIS) },
2133         { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING_ANSI) },
2134         { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING_ISO) },
2135         { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING_JIS) },
2136         { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING2_ANSI) },
2137         { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING2_ISO) },
2138         { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING2_JIS) },
2139         { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING3_ANSI) },
2140         { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING3_ISO) },
2141         { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING3_JIS) },
2142         { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING4_ANSI) },
2143         { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING4_ISO) },
2144         { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING4_JIS) },
2145         { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING4A_ANSI) },
2146         { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING4A_ISO) },
2147         { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING4A_JIS) },
2148         { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING5_ANSI) },
2149         { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING5_ISO) },
2150         { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING5_JIS) },
2151         { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING5A_ANSI) },
2152         { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING5A_ISO) },
2153         { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING5A_JIS) },
2154         { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING6_ANSI) },
2155         { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING6_ISO) },
2156         { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING6_JIS) },
2157         { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING6A_ANSI) },
2158         { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING6A_ISO) },
2159         { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING6A_JIS) },
2160         { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING7_ANSI) },
2161         { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING7_ISO) },
2162         { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING7_JIS) },
2163         { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING7A_ANSI) },
2164         { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING7A_ISO) },
2165         { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING7A_JIS) },
2166         { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_FOUNTAIN_TP_ONLY) },
2167         { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_GEYSER1_TP_ONLY) },
2168         { }
2169 };
2170
2171 static bool hid_ignore(struct hid_device *hdev)
2172 {
2173         switch (hdev->vendor) {
2174         case USB_VENDOR_ID_CODEMERCS:
2175                 /* ignore all Code Mercenaries IOWarrior devices */
2176                 if (hdev->product >= USB_DEVICE_ID_CODEMERCS_IOW_FIRST &&
2177                                 hdev->product <= USB_DEVICE_ID_CODEMERCS_IOW_LAST)
2178                         return true;
2179                 break;
2180         case USB_VENDOR_ID_LOGITECH:
2181                 if (hdev->product >= USB_DEVICE_ID_LOGITECH_HARMONY_FIRST &&
2182                                 hdev->product <= USB_DEVICE_ID_LOGITECH_HARMONY_LAST)
2183                         return true;
2184                 /*
2185                  * The Keene FM transmitter USB device has the same USB ID as
2186                  * the Logitech AudioHub Speaker, but it should ignore the hid.
2187                  * Check if the name is that of the Keene device.
2188                  * For reference: the name of the AudioHub is
2189                  * "HOLTEK  AudioHub Speaker".
2190                  */
2191                 if (hdev->product == USB_DEVICE_ID_LOGITECH_AUDIOHUB &&
2192                         !strcmp(hdev->name, "HOLTEK  B-LINK USB Audio  "))
2193                                 return true;
2194                 break;
2195         case USB_VENDOR_ID_SOUNDGRAPH:
2196                 if (hdev->product >= USB_DEVICE_ID_SOUNDGRAPH_IMON_FIRST &&
2197                     hdev->product <= USB_DEVICE_ID_SOUNDGRAPH_IMON_LAST)
2198                         return true;
2199                 break;
2200         case USB_VENDOR_ID_HANWANG:
2201                 if (hdev->product >= USB_DEVICE_ID_HANWANG_TABLET_FIRST &&
2202                     hdev->product <= USB_DEVICE_ID_HANWANG_TABLET_LAST)
2203                         return true;
2204                 break;
2205         case USB_VENDOR_ID_JESS:
2206                 if (hdev->product == USB_DEVICE_ID_JESS_YUREX &&
2207                                 hdev->type == HID_TYPE_USBNONE)
2208                         return true;
2209         break;
2210         }
2211
2212         if (hdev->type == HID_TYPE_USBMOUSE &&
2213                         hid_match_id(hdev, hid_mouse_ignore_list))
2214                 return true;
2215
2216         return !!hid_match_id(hdev, hid_ignore_list);
2217 }
2218
2219 int hid_add_device(struct hid_device *hdev)
2220 {
2221         static atomic_t id = ATOMIC_INIT(0);
2222         int ret;
2223
2224         if (WARN_ON(hdev->status & HID_STAT_ADDED))
2225                 return -EBUSY;
2226
2227         /* we need to kill them here, otherwise they will stay allocated to
2228          * wait for coming driver */
2229         if (!(hdev->quirks & HID_QUIRK_NO_IGNORE)
2230             && (hid_ignore(hdev) || (hdev->quirks & HID_QUIRK_IGNORE)))
2231                 return -ENODEV;
2232
2233         /*
2234          * Read the device report descriptor once and use as template
2235          * for the driver-specific modifications.
2236          */
2237         ret = hdev->ll_driver->parse(hdev);
2238         if (ret)
2239                 return ret;
2240         if (!hdev->dev_rdesc)
2241                 return -ENODEV;
2242
2243         /*
2244          * Scan generic devices for group information
2245          */
2246         if (hid_ignore_special_drivers ||
2247             !hid_match_id(hdev, hid_have_special_driver)) {
2248                 ret = hid_scan_report(hdev);
2249                 if (ret)
2250                         hid_warn(hdev, "bad device descriptor (%d)\n", ret);
2251         }
2252
2253         /* XXX hack, any other cleaner solution after the driver core
2254          * is converted to allow more than 20 bytes as the device name? */
2255         dev_set_name(&hdev->dev, "%04X:%04X:%04X.%04X", hdev->bus,
2256                      hdev->vendor, hdev->product, atomic_inc_return(&id));
2257
2258         hid_debug_register(hdev, dev_name(&hdev->dev));
2259         ret = device_add(&hdev->dev);
2260         if (!ret)
2261                 hdev->status |= HID_STAT_ADDED;
2262         else
2263                 hid_debug_unregister(hdev);
2264
2265         return ret;
2266 }
2267 EXPORT_SYMBOL_GPL(hid_add_device);
2268
2269 /**
2270  * hid_allocate_device - allocate new hid device descriptor
2271  *
2272  * Allocate and initialize hid device, so that hid_destroy_device might be
2273  * used to free it.
2274  *
2275  * New hid_device pointer is returned on success, otherwise ERR_PTR encoded
2276  * error value.
2277  */
2278 struct hid_device *hid_allocate_device(void)
2279 {
2280         struct hid_device *hdev;
2281         int ret = -ENOMEM;
2282
2283         hdev = kzalloc(sizeof(*hdev), GFP_KERNEL);
2284         if (hdev == NULL)
2285                 return ERR_PTR(ret);
2286
2287         device_initialize(&hdev->dev);
2288         hdev->dev.release = hid_device_release;
2289         hdev->dev.bus = &hid_bus_type;
2290
2291         hid_close_report(hdev);
2292
2293         init_waitqueue_head(&hdev->debug_wait);
2294         INIT_LIST_HEAD(&hdev->debug_list);
2295         sema_init(&hdev->driver_lock, 1);
2296
2297         return hdev;
2298 }
2299 EXPORT_SYMBOL_GPL(hid_allocate_device);
2300
2301 static void hid_remove_device(struct hid_device *hdev)
2302 {
2303         if (hdev->status & HID_STAT_ADDED) {
2304                 device_del(&hdev->dev);
2305                 hid_debug_unregister(hdev);
2306                 hdev->status &= ~HID_STAT_ADDED;
2307         }
2308         kfree(hdev->dev_rdesc);
2309         hdev->dev_rdesc = NULL;
2310         hdev->dev_rsize = 0;
2311 }
2312
2313 /**
2314  * hid_destroy_device - free previously allocated device
2315  *
2316  * @hdev: hid device
2317  *
2318  * If you allocate hid_device through hid_allocate_device, you should ever
2319  * free by this function.
2320  */
2321 void hid_destroy_device(struct hid_device *hdev)
2322 {
2323         hid_remove_device(hdev);
2324         put_device(&hdev->dev);
2325 }
2326 EXPORT_SYMBOL_GPL(hid_destroy_device);
2327
2328 int __hid_register_driver(struct hid_driver *hdrv, struct module *owner,
2329                 const char *mod_name)
2330 {
2331         int ret;
2332
2333         hdrv->driver.name = hdrv->name;
2334         hdrv->driver.bus = &hid_bus_type;
2335         hdrv->driver.owner = owner;
2336         hdrv->driver.mod_name = mod_name;
2337
2338         INIT_LIST_HEAD(&hdrv->dyn_list);
2339         spin_lock_init(&hdrv->dyn_lock);
2340
2341         ret = driver_register(&hdrv->driver);
2342         if (ret)
2343                 return ret;
2344
2345         ret = driver_create_file(&hdrv->driver, &driver_attr_new_id);
2346         if (ret)
2347                 driver_unregister(&hdrv->driver);
2348
2349         return ret;
2350 }
2351 EXPORT_SYMBOL_GPL(__hid_register_driver);
2352
2353 void hid_unregister_driver(struct hid_driver *hdrv)
2354 {
2355         driver_remove_file(&hdrv->driver, &driver_attr_new_id);
2356         driver_unregister(&hdrv->driver);
2357         hid_free_dynids(hdrv);
2358 }
2359 EXPORT_SYMBOL_GPL(hid_unregister_driver);
2360
2361 int hid_check_keys_pressed(struct hid_device *hid)
2362 {
2363         struct hid_input *hidinput;
2364         int i;
2365
2366         if (!(hid->claimed & HID_CLAIMED_INPUT))
2367                 return 0;
2368
2369         list_for_each_entry(hidinput, &hid->inputs, list) {
2370                 for (i = 0; i < BITS_TO_LONGS(KEY_MAX); i++)
2371                         if (hidinput->input->key[i])
2372                                 return 1;
2373         }
2374
2375         return 0;
2376 }
2377
2378 EXPORT_SYMBOL_GPL(hid_check_keys_pressed);
2379
2380 static int __init hid_init(void)
2381 {
2382         int ret;
2383
2384         if (hid_debug)
2385                 pr_warn("hid_debug is now used solely for parser and driver debugging.\n"
2386                         "debugfs is now used for inspecting the device (report descriptor, reports)\n");
2387
2388         ret = bus_register(&hid_bus_type);
2389         if (ret) {
2390                 pr_err("can't register hid bus\n");
2391                 goto err;
2392         }
2393
2394         ret = hidraw_init();
2395         if (ret)
2396                 goto err_bus;
2397
2398         hid_debug_init();
2399
2400         return 0;
2401 err_bus:
2402         bus_unregister(&hid_bus_type);
2403 err:
2404         return ret;
2405 }
2406
2407 static void __exit hid_exit(void)
2408 {
2409         hid_debug_exit();
2410         hidraw_exit();
2411         bus_unregister(&hid_bus_type);
2412 }
2413
2414 module_init(hid_init);
2415 module_exit(hid_exit);
2416
2417 MODULE_AUTHOR("Andreas Gal");
2418 MODULE_AUTHOR("Vojtech Pavlik");
2419 MODULE_AUTHOR("Jiri Kosina");
2420 MODULE_LICENSE(DRIVER_LICENSE);
2421