GNU Linux-libre 4.14.302-gnu1
[releases.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
47 int hid_debug = 0;
48 module_param_named(debug, hid_debug, int, 0600);
49 MODULE_PARM_DESC(debug, "toggle HID debugging messages");
50 EXPORT_SYMBOL_GPL(hid_debug);
51
52 static int hid_ignore_special_drivers = 0;
53 module_param_named(ignore_special_drivers, hid_ignore_special_drivers, int, 0600);
54 MODULE_PARM_DESC(ignore_special_drivers, "Ignore any special drivers and handle all devices by generic driver");
55
56 /*
57  * Register a new report for a device.
58  */
59
60 struct hid_report *hid_register_report(struct hid_device *device, unsigned type, unsigned id)
61 {
62         struct hid_report_enum *report_enum = device->report_enum + type;
63         struct hid_report *report;
64
65         if (id >= HID_MAX_IDS)
66                 return NULL;
67         if (report_enum->report_id_hash[id])
68                 return report_enum->report_id_hash[id];
69
70         report = kzalloc(sizeof(struct hid_report), GFP_KERNEL);
71         if (!report)
72                 return NULL;
73
74         if (id != 0)
75                 report_enum->numbered = 1;
76
77         report->id = id;
78         report->type = type;
79         report->size = 0;
80         report->device = device;
81         report_enum->report_id_hash[id] = report;
82
83         list_add_tail(&report->list, &report_enum->report_list);
84
85         return report;
86 }
87 EXPORT_SYMBOL_GPL(hid_register_report);
88
89 /*
90  * Register a new field for this report.
91  */
92
93 static struct hid_field *hid_register_field(struct hid_report *report, unsigned usages)
94 {
95         struct hid_field *field;
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                          usages * 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         return field;
115 }
116
117 /*
118  * Open a collection. The type/usage is pushed on the stack.
119  */
120
121 static int open_collection(struct hid_parser *parser, unsigned type)
122 {
123         struct hid_collection *collection;
124         unsigned usage;
125
126         usage = parser->local.usage[0];
127
128         if (parser->collection_stack_ptr == HID_COLLECTION_STACK_SIZE) {
129                 hid_err(parser->device, "collection stack overflow\n");
130                 return -EINVAL;
131         }
132
133         if (parser->device->maxcollection == parser->device->collection_size) {
134                 collection = kmalloc(sizeof(struct hid_collection) *
135                                 parser->device->collection_size * 2, GFP_KERNEL);
136                 if (collection == NULL) {
137                         hid_err(parser->device, "failed to reallocate collection array\n");
138                         return -ENOMEM;
139                 }
140                 memcpy(collection, parser->device->collection,
141                         sizeof(struct hid_collection) *
142                         parser->device->collection_size);
143                 memset(collection + parser->device->collection_size, 0,
144                         sizeof(struct hid_collection) *
145                         parser->device->collection_size);
146                 kfree(parser->device->collection);
147                 parser->device->collection = collection;
148                 parser->device->collection_size *= 2;
149         }
150
151         parser->collection_stack[parser->collection_stack_ptr++] =
152                 parser->device->maxcollection;
153
154         collection = parser->device->collection +
155                 parser->device->maxcollection++;
156         collection->type = type;
157         collection->usage = usage;
158         collection->level = parser->collection_stack_ptr - 1;
159
160         if (type == HID_COLLECTION_APPLICATION)
161                 parser->device->maxapplication++;
162
163         return 0;
164 }
165
166 /*
167  * Close a collection.
168  */
169
170 static int close_collection(struct hid_parser *parser)
171 {
172         if (!parser->collection_stack_ptr) {
173                 hid_err(parser->device, "collection stack underflow\n");
174                 return -EINVAL;
175         }
176         parser->collection_stack_ptr--;
177         return 0;
178 }
179
180 /*
181  * Climb up the stack, search for the specified collection type
182  * and return the usage.
183  */
184
185 static unsigned hid_lookup_collection(struct hid_parser *parser, unsigned type)
186 {
187         struct hid_collection *collection = parser->device->collection;
188         int n;
189
190         for (n = parser->collection_stack_ptr - 1; n >= 0; n--) {
191                 unsigned index = parser->collection_stack[n];
192                 if (collection[index].type == type)
193                         return collection[index].usage;
194         }
195         return 0; /* we know nothing about this usage type */
196 }
197
198 /*
199  * Concatenate usage which defines 16 bits or less with the
200  * currently defined usage page to form a 32 bit usage
201  */
202
203 static void complete_usage(struct hid_parser *parser, unsigned int index)
204 {
205         parser->local.usage[index] &= 0xFFFF;
206         parser->local.usage[index] |=
207                 (parser->global.usage_page & 0xFFFF) << 16;
208 }
209
210 /*
211  * Add a usage to the temporary parser table.
212  */
213
214 static int hid_add_usage(struct hid_parser *parser, unsigned usage, u8 size)
215 {
216         if (parser->local.usage_index >= HID_MAX_USAGES) {
217                 hid_err(parser->device, "usage index exceeded\n");
218                 return -1;
219         }
220         parser->local.usage[parser->local.usage_index] = usage;
221
222         /*
223          * If Usage item only includes usage id, concatenate it with
224          * currently defined usage page
225          */
226         if (size <= 2)
227                 complete_usage(parser, parser->local.usage_index);
228
229         parser->local.usage_size[parser->local.usage_index] = size;
230         parser->local.collection_index[parser->local.usage_index] =
231                 parser->collection_stack_ptr ?
232                 parser->collection_stack[parser->collection_stack_ptr - 1] : 0;
233         parser->local.usage_index++;
234         return 0;
235 }
236
237 /*
238  * Register a new field for this report.
239  */
240
241 static int hid_add_field(struct hid_parser *parser, unsigned report_type, unsigned flags)
242 {
243         struct hid_report *report;
244         struct hid_field *field;
245         unsigned usages;
246         unsigned offset;
247         unsigned i;
248
249         report = hid_register_report(parser->device, report_type, parser->global.report_id);
250         if (!report) {
251                 hid_err(parser->device, "hid_register_report failed\n");
252                 return -1;
253         }
254
255         /* Handle both signed and unsigned cases properly */
256         if ((parser->global.logical_minimum < 0 &&
257                 parser->global.logical_maximum <
258                 parser->global.logical_minimum) ||
259                 (parser->global.logical_minimum >= 0 &&
260                 (__u32)parser->global.logical_maximum <
261                 (__u32)parser->global.logical_minimum)) {
262                 dbg_hid("logical range invalid 0x%x 0x%x\n",
263                         parser->global.logical_minimum,
264                         parser->global.logical_maximum);
265                 return -1;
266         }
267
268         offset = report->size;
269         report->size += parser->global.report_size * parser->global.report_count;
270
271         /* Total size check: Allow for possible report index byte */
272         if (report->size > (HID_MAX_BUFFER_SIZE - 1) << 3) {
273                 hid_err(parser->device, "report is too long\n");
274                 return -1;
275         }
276
277         if (!parser->local.usage_index) /* Ignore padding fields */
278                 return 0;
279
280         usages = max_t(unsigned, parser->local.usage_index,
281                                  parser->global.report_count);
282
283         field = hid_register_field(report, usages);
284         if (!field)
285                 return 0;
286
287         field->physical = hid_lookup_collection(parser, HID_COLLECTION_PHYSICAL);
288         field->logical = hid_lookup_collection(parser, HID_COLLECTION_LOGICAL);
289         field->application = hid_lookup_collection(parser, HID_COLLECTION_APPLICATION);
290
291         for (i = 0; i < usages; i++) {
292                 unsigned j = i;
293                 /* Duplicate the last usage we parsed if we have excess values */
294                 if (i >= parser->local.usage_index)
295                         j = parser->local.usage_index - 1;
296                 field->usage[i].hid = parser->local.usage[j];
297                 field->usage[i].collection_index =
298                         parser->local.collection_index[j];
299                 field->usage[i].usage_index = i;
300         }
301
302         field->maxusage = usages;
303         field->flags = flags;
304         field->report_offset = offset;
305         field->report_type = report_type;
306         field->report_size = parser->global.report_size;
307         field->report_count = parser->global.report_count;
308         field->logical_minimum = parser->global.logical_minimum;
309         field->logical_maximum = parser->global.logical_maximum;
310         field->physical_minimum = parser->global.physical_minimum;
311         field->physical_maximum = parser->global.physical_maximum;
312         field->unit_exponent = parser->global.unit_exponent;
313         field->unit = parser->global.unit;
314
315         return 0;
316 }
317
318 /*
319  * Read data value from item.
320  */
321
322 static u32 item_udata(struct hid_item *item)
323 {
324         switch (item->size) {
325         case 1: return item->data.u8;
326         case 2: return item->data.u16;
327         case 4: return item->data.u32;
328         }
329         return 0;
330 }
331
332 static s32 item_sdata(struct hid_item *item)
333 {
334         switch (item->size) {
335         case 1: return item->data.s8;
336         case 2: return item->data.s16;
337         case 4: return item->data.s32;
338         }
339         return 0;
340 }
341
342 /*
343  * Process a global item.
344  */
345
346 static int hid_parser_global(struct hid_parser *parser, struct hid_item *item)
347 {
348         __s32 raw_value;
349         switch (item->tag) {
350         case HID_GLOBAL_ITEM_TAG_PUSH:
351
352                 if (parser->global_stack_ptr == HID_GLOBAL_STACK_SIZE) {
353                         hid_err(parser->device, "global environment stack overflow\n");
354                         return -1;
355                 }
356
357                 memcpy(parser->global_stack + parser->global_stack_ptr++,
358                         &parser->global, sizeof(struct hid_global));
359                 return 0;
360
361         case HID_GLOBAL_ITEM_TAG_POP:
362
363                 if (!parser->global_stack_ptr) {
364                         hid_err(parser->device, "global environment stack underflow\n");
365                         return -1;
366                 }
367
368                 memcpy(&parser->global, parser->global_stack +
369                         --parser->global_stack_ptr, sizeof(struct hid_global));
370                 return 0;
371
372         case HID_GLOBAL_ITEM_TAG_USAGE_PAGE:
373                 parser->global.usage_page = item_udata(item);
374                 return 0;
375
376         case HID_GLOBAL_ITEM_TAG_LOGICAL_MINIMUM:
377                 parser->global.logical_minimum = item_sdata(item);
378                 return 0;
379
380         case HID_GLOBAL_ITEM_TAG_LOGICAL_MAXIMUM:
381                 if (parser->global.logical_minimum < 0)
382                         parser->global.logical_maximum = item_sdata(item);
383                 else
384                         parser->global.logical_maximum = item_udata(item);
385                 return 0;
386
387         case HID_GLOBAL_ITEM_TAG_PHYSICAL_MINIMUM:
388                 parser->global.physical_minimum = item_sdata(item);
389                 return 0;
390
391         case HID_GLOBAL_ITEM_TAG_PHYSICAL_MAXIMUM:
392                 if (parser->global.physical_minimum < 0)
393                         parser->global.physical_maximum = item_sdata(item);
394                 else
395                         parser->global.physical_maximum = item_udata(item);
396                 return 0;
397
398         case HID_GLOBAL_ITEM_TAG_UNIT_EXPONENT:
399                 /* Many devices provide unit exponent as a two's complement
400                  * nibble due to the common misunderstanding of HID
401                  * specification 1.11, 6.2.2.7 Global Items. Attempt to handle
402                  * both this and the standard encoding. */
403                 raw_value = item_sdata(item);
404                 if (!(raw_value & 0xfffffff0))
405                         parser->global.unit_exponent = hid_snto32(raw_value, 4);
406                 else
407                         parser->global.unit_exponent = raw_value;
408                 return 0;
409
410         case HID_GLOBAL_ITEM_TAG_UNIT:
411                 parser->global.unit = item_udata(item);
412                 return 0;
413
414         case HID_GLOBAL_ITEM_TAG_REPORT_SIZE:
415                 parser->global.report_size = item_udata(item);
416                 if (parser->global.report_size > 128) {
417                         hid_err(parser->device, "invalid report_size %d\n",
418                                         parser->global.report_size);
419                         return -1;
420                 }
421                 return 0;
422
423         case HID_GLOBAL_ITEM_TAG_REPORT_COUNT:
424                 parser->global.report_count = item_udata(item);
425                 if (parser->global.report_count > HID_MAX_USAGES) {
426                         hid_err(parser->device, "invalid report_count %d\n",
427                                         parser->global.report_count);
428                         return -1;
429                 }
430                 return 0;
431
432         case HID_GLOBAL_ITEM_TAG_REPORT_ID:
433                 parser->global.report_id = item_udata(item);
434                 if (parser->global.report_id == 0 ||
435                     parser->global.report_id >= HID_MAX_IDS) {
436                         hid_err(parser->device, "report_id %u is invalid\n",
437                                 parser->global.report_id);
438                         return -1;
439                 }
440                 return 0;
441
442         default:
443                 hid_err(parser->device, "unknown global tag 0x%x\n", item->tag);
444                 return -1;
445         }
446 }
447
448 /*
449  * Process a local item.
450  */
451
452 static int hid_parser_local(struct hid_parser *parser, struct hid_item *item)
453 {
454         __u32 data;
455         unsigned n;
456         __u32 count;
457
458         data = item_udata(item);
459
460         switch (item->tag) {
461         case HID_LOCAL_ITEM_TAG_DELIMITER:
462
463                 if (data) {
464                         /*
465                          * We treat items before the first delimiter
466                          * as global to all usage sets (branch 0).
467                          * In the moment we process only these global
468                          * items and the first delimiter set.
469                          */
470                         if (parser->local.delimiter_depth != 0) {
471                                 hid_err(parser->device, "nested delimiters\n");
472                                 return -1;
473                         }
474                         parser->local.delimiter_depth++;
475                         parser->local.delimiter_branch++;
476                 } else {
477                         if (parser->local.delimiter_depth < 1) {
478                                 hid_err(parser->device, "bogus close delimiter\n");
479                                 return -1;
480                         }
481                         parser->local.delimiter_depth--;
482                 }
483                 return 0;
484
485         case HID_LOCAL_ITEM_TAG_USAGE:
486
487                 if (parser->local.delimiter_branch > 1) {
488                         dbg_hid("alternative usage ignored\n");
489                         return 0;
490                 }
491
492                 return hid_add_usage(parser, data, item->size);
493
494         case HID_LOCAL_ITEM_TAG_USAGE_MINIMUM:
495
496                 if (parser->local.delimiter_branch > 1) {
497                         dbg_hid("alternative usage ignored\n");
498                         return 0;
499                 }
500
501                 parser->local.usage_minimum = data;
502                 return 0;
503
504         case HID_LOCAL_ITEM_TAG_USAGE_MAXIMUM:
505
506                 if (parser->local.delimiter_branch > 1) {
507                         dbg_hid("alternative usage ignored\n");
508                         return 0;
509                 }
510
511                 count = data - parser->local.usage_minimum;
512                 if (count + parser->local.usage_index >= HID_MAX_USAGES) {
513                         /*
514                          * We do not warn if the name is not set, we are
515                          * actually pre-scanning the device.
516                          */
517                         if (dev_name(&parser->device->dev))
518                                 hid_warn(parser->device,
519                                          "ignoring exceeding usage max\n");
520                         data = HID_MAX_USAGES - parser->local.usage_index +
521                                 parser->local.usage_minimum - 1;
522                         if (data <= 0) {
523                                 hid_err(parser->device,
524                                         "no more usage index available\n");
525                                 return -1;
526                         }
527                 }
528
529                 for (n = parser->local.usage_minimum; n <= data; n++)
530                         if (hid_add_usage(parser, n, item->size)) {
531                                 dbg_hid("hid_add_usage failed\n");
532                                 return -1;
533                         }
534                 return 0;
535
536         default:
537
538                 dbg_hid("unknown local item tag 0x%x\n", item->tag);
539                 return 0;
540         }
541         return 0;
542 }
543
544 /*
545  * Concatenate Usage Pages into Usages where relevant:
546  * As per specification, 6.2.2.8: "When the parser encounters a main item it
547  * concatenates the last declared Usage Page with a Usage to form a complete
548  * usage value."
549  */
550
551 static void hid_concatenate_last_usage_page(struct hid_parser *parser)
552 {
553         int i;
554         unsigned int usage_page;
555         unsigned int current_page;
556
557         if (!parser->local.usage_index)
558                 return;
559
560         usage_page = parser->global.usage_page;
561
562         /*
563          * Concatenate usage page again only if last declared Usage Page
564          * has not been already used in previous usages concatenation
565          */
566         for (i = parser->local.usage_index - 1; i >= 0; i--) {
567                 if (parser->local.usage_size[i] > 2)
568                         /* Ignore extended usages */
569                         continue;
570
571                 current_page = parser->local.usage[i] >> 16;
572                 if (current_page == usage_page)
573                         break;
574
575                 complete_usage(parser, i);
576         }
577 }
578
579 /*
580  * Process a main item.
581  */
582
583 static int hid_parser_main(struct hid_parser *parser, struct hid_item *item)
584 {
585         __u32 data;
586         int ret;
587
588         hid_concatenate_last_usage_page(parser);
589
590         data = item_udata(item);
591
592         switch (item->tag) {
593         case HID_MAIN_ITEM_TAG_BEGIN_COLLECTION:
594                 ret = open_collection(parser, data & 0xff);
595                 break;
596         case HID_MAIN_ITEM_TAG_END_COLLECTION:
597                 ret = close_collection(parser);
598                 break;
599         case HID_MAIN_ITEM_TAG_INPUT:
600                 ret = hid_add_field(parser, HID_INPUT_REPORT, data);
601                 break;
602         case HID_MAIN_ITEM_TAG_OUTPUT:
603                 ret = hid_add_field(parser, HID_OUTPUT_REPORT, data);
604                 break;
605         case HID_MAIN_ITEM_TAG_FEATURE:
606                 ret = hid_add_field(parser, HID_FEATURE_REPORT, data);
607                 break;
608         default:
609                 hid_err(parser->device, "unknown main item tag 0x%x\n", item->tag);
610                 ret = 0;
611         }
612
613         memset(&parser->local, 0, sizeof(parser->local));       /* Reset the local parser environment */
614
615         return ret;
616 }
617
618 /*
619  * Process a reserved item.
620  */
621
622 static int hid_parser_reserved(struct hid_parser *parser, struct hid_item *item)
623 {
624         dbg_hid("reserved item type, tag 0x%x\n", item->tag);
625         return 0;
626 }
627
628 /*
629  * Free a report and all registered fields. The field->usage and
630  * field->value table's are allocated behind the field, so we need
631  * only to free(field) itself.
632  */
633
634 static void hid_free_report(struct hid_report *report)
635 {
636         unsigned n;
637
638         for (n = 0; n < report->maxfield; n++)
639                 kfree(report->field[n]);
640         kfree(report);
641 }
642
643 /*
644  * Close report. This function returns the device
645  * state to the point prior to hid_open_report().
646  */
647 static void hid_close_report(struct hid_device *device)
648 {
649         unsigned i, j;
650
651         for (i = 0; i < HID_REPORT_TYPES; i++) {
652                 struct hid_report_enum *report_enum = device->report_enum + i;
653
654                 for (j = 0; j < HID_MAX_IDS; j++) {
655                         struct hid_report *report = report_enum->report_id_hash[j];
656                         if (report)
657                                 hid_free_report(report);
658                 }
659                 memset(report_enum, 0, sizeof(*report_enum));
660                 INIT_LIST_HEAD(&report_enum->report_list);
661         }
662
663         kfree(device->rdesc);
664         device->rdesc = NULL;
665         device->rsize = 0;
666
667         kfree(device->collection);
668         device->collection = NULL;
669         device->collection_size = 0;
670         device->maxcollection = 0;
671         device->maxapplication = 0;
672
673         device->status &= ~HID_STAT_PARSED;
674 }
675
676 /*
677  * Free a device structure, all reports, and all fields.
678  */
679
680 static void hid_device_release(struct device *dev)
681 {
682         struct hid_device *hid = to_hid_device(dev);
683
684         hid_close_report(hid);
685         kfree(hid->dev_rdesc);
686         kfree(hid);
687 }
688
689 /*
690  * Fetch a report description item from the data stream. We support long
691  * items, though they are not used yet.
692  */
693
694 static u8 *fetch_item(__u8 *start, __u8 *end, struct hid_item *item)
695 {
696         u8 b;
697
698         if ((end - start) <= 0)
699                 return NULL;
700
701         b = *start++;
702
703         item->type = (b >> 2) & 3;
704         item->tag  = (b >> 4) & 15;
705
706         if (item->tag == HID_ITEM_TAG_LONG) {
707
708                 item->format = HID_ITEM_FORMAT_LONG;
709
710                 if ((end - start) < 2)
711                         return NULL;
712
713                 item->size = *start++;
714                 item->tag  = *start++;
715
716                 if ((end - start) < item->size)
717                         return NULL;
718
719                 item->data.longdata = start;
720                 start += item->size;
721                 return start;
722         }
723
724         item->format = HID_ITEM_FORMAT_SHORT;
725         item->size = b & 3;
726
727         switch (item->size) {
728         case 0:
729                 return start;
730
731         case 1:
732                 if ((end - start) < 1)
733                         return NULL;
734                 item->data.u8 = *start++;
735                 return start;
736
737         case 2:
738                 if ((end - start) < 2)
739                         return NULL;
740                 item->data.u16 = get_unaligned_le16(start);
741                 start = (__u8 *)((__le16 *)start + 1);
742                 return start;
743
744         case 3:
745                 item->size++;
746                 if ((end - start) < 4)
747                         return NULL;
748                 item->data.u32 = get_unaligned_le32(start);
749                 start = (__u8 *)((__le32 *)start + 1);
750                 return start;
751         }
752
753         return NULL;
754 }
755
756 static void hid_scan_input_usage(struct hid_parser *parser, u32 usage)
757 {
758         struct hid_device *hid = parser->device;
759
760         if (usage == HID_DG_CONTACTID)
761                 hid->group = HID_GROUP_MULTITOUCH;
762 }
763
764 static void hid_scan_feature_usage(struct hid_parser *parser, u32 usage)
765 {
766         if (usage == 0xff0000c5 && parser->global.report_count == 256 &&
767             parser->global.report_size == 8)
768                 parser->scan_flags |= HID_SCAN_FLAG_MT_WIN_8;
769
770         if (usage == 0xff0000c6 && parser->global.report_count == 1 &&
771             parser->global.report_size == 8)
772                 parser->scan_flags |= HID_SCAN_FLAG_MT_WIN_8;
773 }
774
775 static void hid_scan_collection(struct hid_parser *parser, unsigned type)
776 {
777         struct hid_device *hid = parser->device;
778         int i;
779
780         if (((parser->global.usage_page << 16) == HID_UP_SENSOR) &&
781             type == HID_COLLECTION_PHYSICAL)
782                 hid->group = HID_GROUP_SENSOR_HUB;
783
784         if (hid->vendor == USB_VENDOR_ID_MICROSOFT &&
785             hid->product == USB_DEVICE_ID_MS_POWER_COVER &&
786             hid->group == HID_GROUP_MULTITOUCH)
787                 hid->group = HID_GROUP_GENERIC;
788
789         if ((parser->global.usage_page << 16) == HID_UP_GENDESK)
790                 for (i = 0; i < parser->local.usage_index; i++)
791                         if (parser->local.usage[i] == HID_GD_POINTER)
792                                 parser->scan_flags |= HID_SCAN_FLAG_GD_POINTER;
793
794         if ((parser->global.usage_page << 16) >= HID_UP_MSVENDOR)
795                 parser->scan_flags |= HID_SCAN_FLAG_VENDOR_SPECIFIC;
796 }
797
798 static int hid_scan_main(struct hid_parser *parser, struct hid_item *item)
799 {
800         __u32 data;
801         int i;
802
803         hid_concatenate_last_usage_page(parser);
804
805         data = item_udata(item);
806
807         switch (item->tag) {
808         case HID_MAIN_ITEM_TAG_BEGIN_COLLECTION:
809                 hid_scan_collection(parser, data & 0xff);
810                 break;
811         case HID_MAIN_ITEM_TAG_END_COLLECTION:
812                 break;
813         case HID_MAIN_ITEM_TAG_INPUT:
814                 /* ignore constant inputs, they will be ignored by hid-input */
815                 if (data & HID_MAIN_ITEM_CONSTANT)
816                         break;
817                 for (i = 0; i < parser->local.usage_index; i++)
818                         hid_scan_input_usage(parser, parser->local.usage[i]);
819                 break;
820         case HID_MAIN_ITEM_TAG_OUTPUT:
821                 break;
822         case HID_MAIN_ITEM_TAG_FEATURE:
823                 for (i = 0; i < parser->local.usage_index; i++)
824                         hid_scan_feature_usage(parser, parser->local.usage[i]);
825                 break;
826         }
827
828         /* Reset the local parser environment */
829         memset(&parser->local, 0, sizeof(parser->local));
830
831         return 0;
832 }
833
834 /*
835  * Scan a report descriptor before the device is added to the bus.
836  * Sets device groups and other properties that determine what driver
837  * to load.
838  */
839 static int hid_scan_report(struct hid_device *hid)
840 {
841         struct hid_parser *parser;
842         struct hid_item item;
843         __u8 *start = hid->dev_rdesc;
844         __u8 *end = start + hid->dev_rsize;
845         static int (*dispatch_type[])(struct hid_parser *parser,
846                                       struct hid_item *item) = {
847                 hid_scan_main,
848                 hid_parser_global,
849                 hid_parser_local,
850                 hid_parser_reserved
851         };
852
853         parser = vzalloc(sizeof(struct hid_parser));
854         if (!parser)
855                 return -ENOMEM;
856
857         parser->device = hid;
858         hid->group = HID_GROUP_GENERIC;
859
860         /*
861          * The parsing is simpler than the one in hid_open_report() as we should
862          * be robust against hid errors. Those errors will be raised by
863          * hid_open_report() anyway.
864          */
865         while ((start = fetch_item(start, end, &item)) != NULL)
866                 dispatch_type[item.type](parser, &item);
867
868         /*
869          * Handle special flags set during scanning.
870          */
871         if ((parser->scan_flags & HID_SCAN_FLAG_MT_WIN_8) &&
872             (hid->group == HID_GROUP_MULTITOUCH))
873                 hid->group = HID_GROUP_MULTITOUCH_WIN_8;
874
875         /*
876          * Vendor specific handlings
877          */
878         switch (hid->vendor) {
879         case USB_VENDOR_ID_WACOM:
880                 hid->group = HID_GROUP_WACOM;
881                 break;
882         case USB_VENDOR_ID_SYNAPTICS:
883                 if (hid->group == HID_GROUP_GENERIC)
884                         if ((parser->scan_flags & HID_SCAN_FLAG_VENDOR_SPECIFIC)
885                             && (parser->scan_flags & HID_SCAN_FLAG_GD_POINTER))
886                                 /*
887                                  * hid-rmi should take care of them,
888                                  * not hid-generic
889                                  */
890                                 hid->group = HID_GROUP_RMI;
891                 break;
892         }
893
894         /* fall back to generic driver in case specific driver doesn't exist */
895         switch (hid->group) {
896         case HID_GROUP_MULTITOUCH_WIN_8:
897                 /* fall-through */
898         case HID_GROUP_MULTITOUCH:
899                 if (!IS_ENABLED(CONFIG_HID_MULTITOUCH))
900                         hid->group = HID_GROUP_GENERIC;
901                 break;
902         case HID_GROUP_SENSOR_HUB:
903                 if (!IS_ENABLED(CONFIG_HID_SENSOR_HUB))
904                         hid->group = HID_GROUP_GENERIC;
905                 break;
906         case HID_GROUP_RMI:
907                 if (!IS_ENABLED(CONFIG_HID_RMI))
908                         hid->group = HID_GROUP_GENERIC;
909                 break;
910         case HID_GROUP_WACOM:
911                 if (!IS_ENABLED(CONFIG_HID_WACOM))
912                         hid->group = HID_GROUP_GENERIC;
913                 break;
914         case HID_GROUP_LOGITECH_DJ_DEVICE:
915                 if (!IS_ENABLED(CONFIG_HID_LOGITECH_DJ))
916                         hid->group = HID_GROUP_GENERIC;
917                 break;
918         }
919         vfree(parser);
920         return 0;
921 }
922
923 /**
924  * hid_parse_report - parse device report
925  *
926  * @device: hid device
927  * @start: report start
928  * @size: report size
929  *
930  * Allocate the device report as read by the bus driver. This function should
931  * only be called from parse() in ll drivers.
932  */
933 int hid_parse_report(struct hid_device *hid, __u8 *start, unsigned size)
934 {
935         hid->dev_rdesc = kmemdup(start, size, GFP_KERNEL);
936         if (!hid->dev_rdesc)
937                 return -ENOMEM;
938         hid->dev_rsize = size;
939         return 0;
940 }
941 EXPORT_SYMBOL_GPL(hid_parse_report);
942
943 static const char * const hid_report_names[] = {
944         "HID_INPUT_REPORT",
945         "HID_OUTPUT_REPORT",
946         "HID_FEATURE_REPORT",
947 };
948 /**
949  * hid_validate_values - validate existing device report's value indexes
950  *
951  * @device: hid device
952  * @type: which report type to examine
953  * @id: which report ID to examine (0 for first)
954  * @field_index: which report field to examine
955  * @report_counts: expected number of values
956  *
957  * Validate the number of values in a given field of a given report, after
958  * parsing.
959  */
960 struct hid_report *hid_validate_values(struct hid_device *hid,
961                                        unsigned int type, unsigned int id,
962                                        unsigned int field_index,
963                                        unsigned int report_counts)
964 {
965         struct hid_report *report;
966
967         if (type > HID_FEATURE_REPORT) {
968                 hid_err(hid, "invalid HID report type %u\n", type);
969                 return NULL;
970         }
971
972         if (id >= HID_MAX_IDS) {
973                 hid_err(hid, "invalid HID report id %u\n", id);
974                 return NULL;
975         }
976
977         /*
978          * Explicitly not using hid_get_report() here since it depends on
979          * ->numbered being checked, which may not always be the case when
980          * drivers go to access report values.
981          */
982         if (id == 0) {
983                 /*
984                  * Validating on id 0 means we should examine the first
985                  * report in the list.
986                  */
987                 report = list_entry(
988                                 hid->report_enum[type].report_list.next,
989                                 struct hid_report, list);
990         } else {
991                 report = hid->report_enum[type].report_id_hash[id];
992         }
993         if (!report) {
994                 hid_err(hid, "missing %s %u\n", hid_report_names[type], id);
995                 return NULL;
996         }
997         if (report->maxfield <= field_index) {
998                 hid_err(hid, "not enough fields in %s %u\n",
999                         hid_report_names[type], id);
1000                 return NULL;
1001         }
1002         if (report->field[field_index]->report_count < report_counts) {
1003                 hid_err(hid, "not enough values in %s %u field %u\n",
1004                         hid_report_names[type], id, field_index);
1005                 return NULL;
1006         }
1007         return report;
1008 }
1009 EXPORT_SYMBOL_GPL(hid_validate_values);
1010
1011 /**
1012  * hid_open_report - open a driver-specific device report
1013  *
1014  * @device: hid device
1015  *
1016  * Parse a report description into a hid_device structure. Reports are
1017  * enumerated, fields are attached to these reports.
1018  * 0 returned on success, otherwise nonzero error value.
1019  *
1020  * This function (or the equivalent hid_parse() macro) should only be
1021  * called from probe() in drivers, before starting the device.
1022  */
1023 int hid_open_report(struct hid_device *device)
1024 {
1025         struct hid_parser *parser;
1026         struct hid_item item;
1027         unsigned int size;
1028         __u8 *start;
1029         __u8 *buf;
1030         __u8 *end;
1031         __u8 *next;
1032         int ret;
1033         static int (*dispatch_type[])(struct hid_parser *parser,
1034                                       struct hid_item *item) = {
1035                 hid_parser_main,
1036                 hid_parser_global,
1037                 hid_parser_local,
1038                 hid_parser_reserved
1039         };
1040
1041         if (WARN_ON(device->status & HID_STAT_PARSED))
1042                 return -EBUSY;
1043
1044         start = device->dev_rdesc;
1045         if (WARN_ON(!start))
1046                 return -ENODEV;
1047         size = device->dev_rsize;
1048
1049         buf = kmemdup(start, size, GFP_KERNEL);
1050         if (buf == NULL)
1051                 return -ENOMEM;
1052
1053         if (device->driver->report_fixup)
1054                 start = device->driver->report_fixup(device, buf, &size);
1055         else
1056                 start = buf;
1057
1058         start = kmemdup(start, size, GFP_KERNEL);
1059         kfree(buf);
1060         if (start == NULL)
1061                 return -ENOMEM;
1062
1063         device->rdesc = start;
1064         device->rsize = size;
1065
1066         parser = vzalloc(sizeof(struct hid_parser));
1067         if (!parser) {
1068                 ret = -ENOMEM;
1069                 goto err;
1070         }
1071
1072         parser->device = device;
1073
1074         end = start + size;
1075
1076         device->collection = kcalloc(HID_DEFAULT_NUM_COLLECTIONS,
1077                                      sizeof(struct hid_collection), GFP_KERNEL);
1078         if (!device->collection) {
1079                 ret = -ENOMEM;
1080                 goto err;
1081         }
1082         device->collection_size = HID_DEFAULT_NUM_COLLECTIONS;
1083
1084         ret = -EINVAL;
1085         while ((next = fetch_item(start, end, &item)) != NULL) {
1086                 start = next;
1087
1088                 if (item.format != HID_ITEM_FORMAT_SHORT) {
1089                         hid_err(device, "unexpected long global item\n");
1090                         goto err;
1091                 }
1092
1093                 if (dispatch_type[item.type](parser, &item)) {
1094                         hid_err(device, "item %u %u %u %u parsing failed\n",
1095                                 item.format, (unsigned)item.size,
1096                                 (unsigned)item.type, (unsigned)item.tag);
1097                         goto err;
1098                 }
1099
1100                 if (start == end) {
1101                         if (parser->collection_stack_ptr) {
1102                                 hid_err(device, "unbalanced collection at end of report description\n");
1103                                 goto err;
1104                         }
1105                         if (parser->local.delimiter_depth) {
1106                                 hid_err(device, "unbalanced delimiter at end of report description\n");
1107                                 goto err;
1108                         }
1109                         vfree(parser);
1110                         device->status |= HID_STAT_PARSED;
1111                         return 0;
1112                 }
1113         }
1114
1115         hid_err(device, "item fetching failed at offset %u/%u\n",
1116                 size - (unsigned int)(end - start), size);
1117 err:
1118         vfree(parser);
1119         hid_close_report(device);
1120         return ret;
1121 }
1122 EXPORT_SYMBOL_GPL(hid_open_report);
1123
1124 /*
1125  * Convert a signed n-bit integer to signed 32-bit integer. Common
1126  * cases are done through the compiler, the screwed things has to be
1127  * done by hand.
1128  */
1129
1130 static s32 snto32(__u32 value, unsigned n)
1131 {
1132         if (!value || !n)
1133                 return 0;
1134
1135         if (n > 32)
1136                 n = 32;
1137
1138         switch (n) {
1139         case 8:  return ((__s8)value);
1140         case 16: return ((__s16)value);
1141         case 32: return ((__s32)value);
1142         }
1143         return value & (1 << (n - 1)) ? value | (~0U << n) : value;
1144 }
1145
1146 s32 hid_snto32(__u32 value, unsigned n)
1147 {
1148         return snto32(value, n);
1149 }
1150 EXPORT_SYMBOL_GPL(hid_snto32);
1151
1152 /*
1153  * Convert a signed 32-bit integer to a signed n-bit integer.
1154  */
1155
1156 static u32 s32ton(__s32 value, unsigned n)
1157 {
1158         s32 a = value >> (n - 1);
1159         if (a && a != -1)
1160                 return value < 0 ? 1 << (n - 1) : (1 << (n - 1)) - 1;
1161         return value & ((1 << n) - 1);
1162 }
1163
1164 /*
1165  * Extract/implement a data field from/to a little endian report (bit array).
1166  *
1167  * Code sort-of follows HID spec:
1168  *     http://www.usb.org/developers/hidpage/HID1_11.pdf
1169  *
1170  * While the USB HID spec allows unlimited length bit fields in "report
1171  * descriptors", most devices never use more than 16 bits.
1172  * One model of UPS is claimed to report "LINEV" as a 32-bit field.
1173  * Search linux-kernel and linux-usb-devel archives for "hid-core extract".
1174  */
1175
1176 static u32 __extract(u8 *report, unsigned offset, int n)
1177 {
1178         unsigned int idx = offset / 8;
1179         unsigned int bit_nr = 0;
1180         unsigned int bit_shift = offset % 8;
1181         int bits_to_copy = 8 - bit_shift;
1182         u32 value = 0;
1183         u32 mask = n < 32 ? (1U << n) - 1 : ~0U;
1184
1185         while (n > 0) {
1186                 value |= ((u32)report[idx] >> bit_shift) << bit_nr;
1187                 n -= bits_to_copy;
1188                 bit_nr += bits_to_copy;
1189                 bits_to_copy = 8;
1190                 bit_shift = 0;
1191                 idx++;
1192         }
1193
1194         return value & mask;
1195 }
1196
1197 u32 hid_field_extract(const struct hid_device *hid, u8 *report,
1198                         unsigned offset, unsigned n)
1199 {
1200         if (n > 32) {
1201                 hid_warn(hid, "hid_field_extract() called with n (%d) > 32! (%s)\n",
1202                          n, current->comm);
1203                 n = 32;
1204         }
1205
1206         return __extract(report, offset, n);
1207 }
1208 EXPORT_SYMBOL_GPL(hid_field_extract);
1209
1210 /*
1211  * "implement" : set bits in a little endian bit stream.
1212  * Same concepts as "extract" (see comments above).
1213  * The data mangled in the bit stream remains in little endian
1214  * order the whole time. It make more sense to talk about
1215  * endianness of register values by considering a register
1216  * a "cached" copy of the little endian bit stream.
1217  */
1218
1219 static void __implement(u8 *report, unsigned offset, int n, u32 value)
1220 {
1221         unsigned int idx = offset / 8;
1222         unsigned int bit_shift = offset % 8;
1223         int bits_to_set = 8 - bit_shift;
1224
1225         while (n - bits_to_set >= 0) {
1226                 report[idx] &= ~(0xff << bit_shift);
1227                 report[idx] |= value << bit_shift;
1228                 value >>= bits_to_set;
1229                 n -= bits_to_set;
1230                 bits_to_set = 8;
1231                 bit_shift = 0;
1232                 idx++;
1233         }
1234
1235         /* last nibble */
1236         if (n) {
1237                 u8 bit_mask = ((1U << n) - 1);
1238                 report[idx] &= ~(bit_mask << bit_shift);
1239                 report[idx] |= value << bit_shift;
1240         }
1241 }
1242
1243 static void implement(const struct hid_device *hid, u8 *report,
1244                       unsigned offset, unsigned n, u32 value)
1245 {
1246         if (unlikely(n > 32)) {
1247                 hid_warn(hid, "%s() called with n (%d) > 32! (%s)\n",
1248                          __func__, n, current->comm);
1249                 n = 32;
1250         } else if (n < 32) {
1251                 u32 m = (1U << n) - 1;
1252
1253                 if (unlikely(value > m)) {
1254                         hid_warn(hid,
1255                                  "%s() called with too large value %d (n: %d)! (%s)\n",
1256                                  __func__, value, n, current->comm);
1257                         WARN_ON(1);
1258                         value &= m;
1259                 }
1260         }
1261
1262         __implement(report, offset, n, value);
1263 }
1264
1265 /*
1266  * Search an array for a value.
1267  */
1268
1269 static int search(__s32 *array, __s32 value, unsigned n)
1270 {
1271         while (n--) {
1272                 if (*array++ == value)
1273                         return 0;
1274         }
1275         return -1;
1276 }
1277
1278 /**
1279  * hid_match_report - check if driver's raw_event should be called
1280  *
1281  * @hid: hid device
1282  * @report_type: type to match against
1283  *
1284  * compare hid->driver->report_table->report_type to report->type
1285  */
1286 static int hid_match_report(struct hid_device *hid, struct hid_report *report)
1287 {
1288         const struct hid_report_id *id = hid->driver->report_table;
1289
1290         if (!id) /* NULL means all */
1291                 return 1;
1292
1293         for (; id->report_type != HID_TERMINATOR; id++)
1294                 if (id->report_type == HID_ANY_ID ||
1295                                 id->report_type == report->type)
1296                         return 1;
1297         return 0;
1298 }
1299
1300 /**
1301  * hid_match_usage - check if driver's event should be called
1302  *
1303  * @hid: hid device
1304  * @usage: usage to match against
1305  *
1306  * compare hid->driver->usage_table->usage_{type,code} to
1307  * usage->usage_{type,code}
1308  */
1309 static int hid_match_usage(struct hid_device *hid, struct hid_usage *usage)
1310 {
1311         const struct hid_usage_id *id = hid->driver->usage_table;
1312
1313         if (!id) /* NULL means all */
1314                 return 1;
1315
1316         for (; id->usage_type != HID_ANY_ID - 1; id++)
1317                 if ((id->usage_hid == HID_ANY_ID ||
1318                                 id->usage_hid == usage->hid) &&
1319                                 (id->usage_type == HID_ANY_ID ||
1320                                 id->usage_type == usage->type) &&
1321                                 (id->usage_code == HID_ANY_ID ||
1322                                  id->usage_code == usage->code))
1323                         return 1;
1324         return 0;
1325 }
1326
1327 static void hid_process_event(struct hid_device *hid, struct hid_field *field,
1328                 struct hid_usage *usage, __s32 value, int interrupt)
1329 {
1330         struct hid_driver *hdrv = hid->driver;
1331         int ret;
1332
1333         if (!list_empty(&hid->debug_list))
1334                 hid_dump_input(hid, usage, value);
1335
1336         if (hdrv && hdrv->event && hid_match_usage(hid, usage)) {
1337                 ret = hdrv->event(hid, field, usage, value);
1338                 if (ret != 0) {
1339                         if (ret < 0)
1340                                 hid_err(hid, "%s's event failed with %d\n",
1341                                                 hdrv->name, ret);
1342                         return;
1343                 }
1344         }
1345
1346         if (hid->claimed & HID_CLAIMED_INPUT)
1347                 hidinput_hid_event(hid, field, usage, value);
1348         if (hid->claimed & HID_CLAIMED_HIDDEV && interrupt && hid->hiddev_hid_event)
1349                 hid->hiddev_hid_event(hid, field, usage, value);
1350 }
1351
1352 /*
1353  * Analyse a received field, and fetch the data from it. The field
1354  * content is stored for next report processing (we do differential
1355  * reporting to the layer).
1356  */
1357
1358 static void hid_input_field(struct hid_device *hid, struct hid_field *field,
1359                             __u8 *data, int interrupt)
1360 {
1361         unsigned n;
1362         unsigned count = field->report_count;
1363         unsigned offset = field->report_offset;
1364         unsigned size = field->report_size;
1365         __s32 min = field->logical_minimum;
1366         __s32 max = field->logical_maximum;
1367         __s32 *value;
1368
1369         value = kmalloc(sizeof(__s32) * count, GFP_ATOMIC);
1370         if (!value)
1371                 return;
1372
1373         for (n = 0; n < count; n++) {
1374
1375                 value[n] = min < 0 ?
1376                         snto32(hid_field_extract(hid, data, offset + n * size,
1377                                size), size) :
1378                         hid_field_extract(hid, data, offset + n * size, size);
1379
1380                 /* Ignore report if ErrorRollOver */
1381                 if (!(field->flags & HID_MAIN_ITEM_VARIABLE) &&
1382                     value[n] >= min && value[n] <= max &&
1383                     value[n] - min < field->maxusage &&
1384                     field->usage[value[n] - min].hid == HID_UP_KEYBOARD + 1)
1385                         goto exit;
1386         }
1387
1388         for (n = 0; n < count; n++) {
1389
1390                 if (HID_MAIN_ITEM_VARIABLE & field->flags) {
1391                         hid_process_event(hid, field, &field->usage[n], value[n], interrupt);
1392                         continue;
1393                 }
1394
1395                 if (field->value[n] >= min && field->value[n] <= max
1396                         && field->value[n] - min < field->maxusage
1397                         && field->usage[field->value[n] - min].hid
1398                         && search(value, field->value[n], count))
1399                                 hid_process_event(hid, field, &field->usage[field->value[n] - min], 0, interrupt);
1400
1401                 if (value[n] >= min && value[n] <= max
1402                         && value[n] - min < field->maxusage
1403                         && field->usage[value[n] - min].hid
1404                         && search(field->value, value[n], count))
1405                                 hid_process_event(hid, field, &field->usage[value[n] - min], 1, interrupt);
1406         }
1407
1408         memcpy(field->value, value, count * sizeof(__s32));
1409 exit:
1410         kfree(value);
1411 }
1412
1413 /*
1414  * Output the field into the report.
1415  */
1416
1417 static void hid_output_field(const struct hid_device *hid,
1418                              struct hid_field *field, __u8 *data)
1419 {
1420         unsigned count = field->report_count;
1421         unsigned offset = field->report_offset;
1422         unsigned size = field->report_size;
1423         unsigned n;
1424
1425         for (n = 0; n < count; n++) {
1426                 if (field->logical_minimum < 0) /* signed values */
1427                         implement(hid, data, offset + n * size, size,
1428                                   s32ton(field->value[n], size));
1429                 else                            /* unsigned values */
1430                         implement(hid, data, offset + n * size, size,
1431                                   field->value[n]);
1432         }
1433 }
1434
1435 /*
1436  * Compute the size of a report.
1437  */
1438 static size_t hid_compute_report_size(struct hid_report *report)
1439 {
1440         if (report->size)
1441                 return ((report->size - 1) >> 3) + 1;
1442
1443         return 0;
1444 }
1445
1446 /*
1447  * Create a report. 'data' has to be allocated using
1448  * hid_alloc_report_buf() so that it has proper size.
1449  */
1450
1451 void hid_output_report(struct hid_report *report, __u8 *data)
1452 {
1453         unsigned n;
1454
1455         if (report->id > 0)
1456                 *data++ = report->id;
1457
1458         memset(data, 0, hid_compute_report_size(report));
1459         for (n = 0; n < report->maxfield; n++)
1460                 hid_output_field(report->device, report->field[n], data);
1461 }
1462 EXPORT_SYMBOL_GPL(hid_output_report);
1463
1464 /*
1465  * Allocator for buffer that is going to be passed to hid_output_report()
1466  */
1467 u8 *hid_alloc_report_buf(struct hid_report *report, gfp_t flags)
1468 {
1469         /*
1470          * 7 extra bytes are necessary to achieve proper functionality
1471          * of implement() working on 8 byte chunks
1472          */
1473
1474         u32 len = hid_report_len(report) + 7;
1475
1476         return kmalloc(len, flags);
1477 }
1478 EXPORT_SYMBOL_GPL(hid_alloc_report_buf);
1479
1480 /*
1481  * Set a field value. The report this field belongs to has to be
1482  * created and transferred to the device, to set this value in the
1483  * device.
1484  */
1485
1486 int hid_set_field(struct hid_field *field, unsigned offset, __s32 value)
1487 {
1488         unsigned size;
1489
1490         if (!field)
1491                 return -1;
1492
1493         size = field->report_size;
1494
1495         hid_dump_input(field->report->device, field->usage + offset, value);
1496
1497         if (offset >= field->report_count) {
1498                 hid_err(field->report->device, "offset (%d) exceeds report_count (%d)\n",
1499                                 offset, field->report_count);
1500                 return -1;
1501         }
1502         if (field->logical_minimum < 0) {
1503                 if (value != snto32(s32ton(value, size), size)) {
1504                         hid_err(field->report->device, "value %d is out of range\n", value);
1505                         return -1;
1506                 }
1507         }
1508         field->value[offset] = value;
1509         return 0;
1510 }
1511 EXPORT_SYMBOL_GPL(hid_set_field);
1512
1513 static struct hid_report *hid_get_report(struct hid_report_enum *report_enum,
1514                 const u8 *data)
1515 {
1516         struct hid_report *report;
1517         unsigned int n = 0;     /* Normally report number is 0 */
1518
1519         /* Device uses numbered reports, data[0] is report number */
1520         if (report_enum->numbered)
1521                 n = *data;
1522
1523         report = report_enum->report_id_hash[n];
1524         if (report == NULL)
1525                 dbg_hid("undefined report_id %u received\n", n);
1526
1527         return report;
1528 }
1529
1530 /*
1531  * Implement a generic .request() callback, using .raw_request()
1532  * DO NOT USE in hid drivers directly, but through hid_hw_request instead.
1533  */
1534 void __hid_request(struct hid_device *hid, struct hid_report *report,
1535                 int reqtype)
1536 {
1537         char *buf;
1538         int ret;
1539         u32 len;
1540
1541         buf = hid_alloc_report_buf(report, GFP_KERNEL);
1542         if (!buf)
1543                 return;
1544
1545         len = hid_report_len(report);
1546
1547         if (reqtype == HID_REQ_SET_REPORT)
1548                 hid_output_report(report, buf);
1549
1550         ret = hid->ll_driver->raw_request(hid, report->id, buf, len,
1551                                           report->type, reqtype);
1552         if (ret < 0) {
1553                 dbg_hid("unable to complete request: %d\n", ret);
1554                 goto out;
1555         }
1556
1557         if (reqtype == HID_REQ_GET_REPORT)
1558                 hid_input_report(hid, report->type, buf, ret, 0);
1559
1560 out:
1561         kfree(buf);
1562 }
1563 EXPORT_SYMBOL_GPL(__hid_request);
1564
1565 int hid_report_raw_event(struct hid_device *hid, int type, u8 *data, u32 size,
1566                 int interrupt)
1567 {
1568         struct hid_report_enum *report_enum = hid->report_enum + type;
1569         struct hid_report *report;
1570         struct hid_driver *hdrv;
1571         unsigned int a;
1572         u32 rsize, csize = size;
1573         u8 *cdata = data;
1574         int ret = 0;
1575
1576         report = hid_get_report(report_enum, data);
1577         if (!report)
1578                 goto out;
1579
1580         if (report_enum->numbered) {
1581                 cdata++;
1582                 csize--;
1583         }
1584
1585         rsize = hid_compute_report_size(report);
1586
1587         if (report_enum->numbered && rsize >= HID_MAX_BUFFER_SIZE)
1588                 rsize = HID_MAX_BUFFER_SIZE - 1;
1589         else if (rsize > HID_MAX_BUFFER_SIZE)
1590                 rsize = HID_MAX_BUFFER_SIZE;
1591
1592         if (csize < rsize) {
1593                 dbg_hid("report %d is too short, (%d < %d)\n", report->id,
1594                                 csize, rsize);
1595                 memset(cdata + csize, 0, rsize - csize);
1596         }
1597
1598         if ((hid->claimed & HID_CLAIMED_HIDDEV) && hid->hiddev_report_event)
1599                 hid->hiddev_report_event(hid, report);
1600         if (hid->claimed & HID_CLAIMED_HIDRAW) {
1601                 ret = hidraw_report_event(hid, data, size);
1602                 if (ret)
1603                         goto out;
1604         }
1605
1606         if (hid->claimed != HID_CLAIMED_HIDRAW && report->maxfield) {
1607                 for (a = 0; a < report->maxfield; a++)
1608                         hid_input_field(hid, report->field[a], cdata, interrupt);
1609                 hdrv = hid->driver;
1610                 if (hdrv && hdrv->report)
1611                         hdrv->report(hid, report);
1612         }
1613
1614         if (hid->claimed & HID_CLAIMED_INPUT)
1615                 hidinput_report_event(hid, report);
1616 out:
1617         return ret;
1618 }
1619 EXPORT_SYMBOL_GPL(hid_report_raw_event);
1620
1621 /**
1622  * hid_input_report - report data from lower layer (usb, bt...)
1623  *
1624  * @hid: hid device
1625  * @type: HID report type (HID_*_REPORT)
1626  * @data: report contents
1627  * @size: size of data parameter
1628  * @interrupt: distinguish between interrupt and control transfers
1629  *
1630  * This is data entry for lower layers.
1631  */
1632 int hid_input_report(struct hid_device *hid, int type, u8 *data, u32 size, int interrupt)
1633 {
1634         struct hid_report_enum *report_enum;
1635         struct hid_driver *hdrv;
1636         struct hid_report *report;
1637         int ret = 0;
1638
1639         if (!hid)
1640                 return -ENODEV;
1641
1642         if (down_trylock(&hid->driver_input_lock))
1643                 return -EBUSY;
1644
1645         if (!hid->driver) {
1646                 ret = -ENODEV;
1647                 goto unlock;
1648         }
1649         report_enum = hid->report_enum + type;
1650         hdrv = hid->driver;
1651
1652         if (!size) {
1653                 dbg_hid("empty report\n");
1654                 ret = -1;
1655                 goto unlock;
1656         }
1657
1658         /* Avoid unnecessary overhead if debugfs is disabled */
1659         if (!list_empty(&hid->debug_list))
1660                 hid_dump_report(hid, type, data, size);
1661
1662         report = hid_get_report(report_enum, data);
1663
1664         if (!report) {
1665                 ret = -1;
1666                 goto unlock;
1667         }
1668
1669         if (hdrv && hdrv->raw_event && hid_match_report(hid, report)) {
1670                 ret = hdrv->raw_event(hid, report, data, size);
1671                 if (ret < 0)
1672                         goto unlock;
1673         }
1674
1675         ret = hid_report_raw_event(hid, type, data, size, interrupt);
1676
1677 unlock:
1678         up(&hid->driver_input_lock);
1679         return ret;
1680 }
1681 EXPORT_SYMBOL_GPL(hid_input_report);
1682
1683 static bool hid_match_one_id(struct hid_device *hdev,
1684                 const struct hid_device_id *id)
1685 {
1686         return (id->bus == HID_BUS_ANY || id->bus == hdev->bus) &&
1687                 (id->group == HID_GROUP_ANY || id->group == hdev->group) &&
1688                 (id->vendor == HID_ANY_ID || id->vendor == hdev->vendor) &&
1689                 (id->product == HID_ANY_ID || id->product == hdev->product);
1690 }
1691
1692 const struct hid_device_id *hid_match_id(struct hid_device *hdev,
1693                 const struct hid_device_id *id)
1694 {
1695         for (; id->bus; id++)
1696                 if (hid_match_one_id(hdev, id))
1697                         return id;
1698
1699         return NULL;
1700 }
1701
1702 static const struct hid_device_id hid_hiddev_list[] = {
1703         { HID_USB_DEVICE(USB_VENDOR_ID_MGE, USB_DEVICE_ID_MGE_UPS) },
1704         { HID_USB_DEVICE(USB_VENDOR_ID_MGE, USB_DEVICE_ID_MGE_UPS1) },
1705         { }
1706 };
1707
1708 static bool hid_hiddev(struct hid_device *hdev)
1709 {
1710         return !!hid_match_id(hdev, hid_hiddev_list);
1711 }
1712
1713
1714 static ssize_t
1715 read_report_descriptor(struct file *filp, struct kobject *kobj,
1716                 struct bin_attribute *attr,
1717                 char *buf, loff_t off, size_t count)
1718 {
1719         struct device *dev = kobj_to_dev(kobj);
1720         struct hid_device *hdev = to_hid_device(dev);
1721
1722         if (off >= hdev->rsize)
1723                 return 0;
1724
1725         if (off + count > hdev->rsize)
1726                 count = hdev->rsize - off;
1727
1728         memcpy(buf, hdev->rdesc + off, count);
1729
1730         return count;
1731 }
1732
1733 static ssize_t
1734 show_country(struct device *dev, struct device_attribute *attr,
1735                 char *buf)
1736 {
1737         struct hid_device *hdev = to_hid_device(dev);
1738
1739         return sprintf(buf, "%02x\n", hdev->country & 0xff);
1740 }
1741
1742 static struct bin_attribute dev_bin_attr_report_desc = {
1743         .attr = { .name = "report_descriptor", .mode = 0444 },
1744         .read = read_report_descriptor,
1745         .size = HID_MAX_DESCRIPTOR_SIZE,
1746 };
1747
1748 static struct device_attribute dev_attr_country = {
1749         .attr = { .name = "country", .mode = 0444 },
1750         .show = show_country,
1751 };
1752
1753 int hid_connect(struct hid_device *hdev, unsigned int connect_mask)
1754 {
1755         static const char *types[] = { "Device", "Pointer", "Mouse", "Device",
1756                 "Joystick", "Gamepad", "Keyboard", "Keypad",
1757                 "Multi-Axis Controller"
1758         };
1759         const char *type, *bus;
1760         char buf[64] = "";
1761         unsigned int i;
1762         int len;
1763         int ret;
1764
1765         if (hdev->quirks & HID_QUIRK_HIDDEV_FORCE)
1766                 connect_mask |= (HID_CONNECT_HIDDEV_FORCE | HID_CONNECT_HIDDEV);
1767         if (hdev->quirks & HID_QUIRK_HIDINPUT_FORCE)
1768                 connect_mask |= HID_CONNECT_HIDINPUT_FORCE;
1769         if (hdev->bus != BUS_USB)
1770                 connect_mask &= ~HID_CONNECT_HIDDEV;
1771         if (hid_hiddev(hdev))
1772                 connect_mask |= HID_CONNECT_HIDDEV_FORCE;
1773
1774         if ((connect_mask & HID_CONNECT_HIDINPUT) && !hidinput_connect(hdev,
1775                                 connect_mask & HID_CONNECT_HIDINPUT_FORCE))
1776                 hdev->claimed |= HID_CLAIMED_INPUT;
1777
1778         if ((connect_mask & HID_CONNECT_HIDDEV) && hdev->hiddev_connect &&
1779                         !hdev->hiddev_connect(hdev,
1780                                 connect_mask & HID_CONNECT_HIDDEV_FORCE))
1781                 hdev->claimed |= HID_CLAIMED_HIDDEV;
1782         if ((connect_mask & HID_CONNECT_HIDRAW) && !hidraw_connect(hdev))
1783                 hdev->claimed |= HID_CLAIMED_HIDRAW;
1784
1785         if (connect_mask & HID_CONNECT_DRIVER)
1786                 hdev->claimed |= HID_CLAIMED_DRIVER;
1787
1788         /* Drivers with the ->raw_event callback set are not required to connect
1789          * to any other listener. */
1790         if (!hdev->claimed && !hdev->driver->raw_event) {
1791                 hid_err(hdev, "device has no listeners, quitting\n");
1792                 return -ENODEV;
1793         }
1794
1795         if ((hdev->claimed & HID_CLAIMED_INPUT) &&
1796                         (connect_mask & HID_CONNECT_FF) && hdev->ff_init)
1797                 hdev->ff_init(hdev);
1798
1799         len = 0;
1800         if (hdev->claimed & HID_CLAIMED_INPUT)
1801                 len += sprintf(buf + len, "input");
1802         if (hdev->claimed & HID_CLAIMED_HIDDEV)
1803                 len += sprintf(buf + len, "%shiddev%d", len ? "," : "",
1804                                 ((struct hiddev *)hdev->hiddev)->minor);
1805         if (hdev->claimed & HID_CLAIMED_HIDRAW)
1806                 len += sprintf(buf + len, "%shidraw%d", len ? "," : "",
1807                                 ((struct hidraw *)hdev->hidraw)->minor);
1808
1809         type = "Device";
1810         for (i = 0; i < hdev->maxcollection; i++) {
1811                 struct hid_collection *col = &hdev->collection[i];
1812                 if (col->type == HID_COLLECTION_APPLICATION &&
1813                    (col->usage & HID_USAGE_PAGE) == HID_UP_GENDESK &&
1814                    (col->usage & 0xffff) < ARRAY_SIZE(types)) {
1815                         type = types[col->usage & 0xffff];
1816                         break;
1817                 }
1818         }
1819
1820         switch (hdev->bus) {
1821         case BUS_USB:
1822                 bus = "USB";
1823                 break;
1824         case BUS_BLUETOOTH:
1825                 bus = "BLUETOOTH";
1826                 break;
1827         case BUS_I2C:
1828                 bus = "I2C";
1829                 break;
1830         case BUS_VIRTUAL:
1831                 bus = "VIRTUAL";
1832                 break;
1833         default:
1834                 bus = "<UNKNOWN>";
1835         }
1836
1837         ret = device_create_file(&hdev->dev, &dev_attr_country);
1838         if (ret)
1839                 hid_warn(hdev,
1840                          "can't create sysfs country code attribute err: %d\n", ret);
1841
1842         hid_info(hdev, "%s: %s HID v%x.%02x %s [%s] on %s\n",
1843                  buf, bus, hdev->version >> 8, hdev->version & 0xff,
1844                  type, hdev->name, hdev->phys);
1845
1846         return 0;
1847 }
1848 EXPORT_SYMBOL_GPL(hid_connect);
1849
1850 void hid_disconnect(struct hid_device *hdev)
1851 {
1852         device_remove_file(&hdev->dev, &dev_attr_country);
1853         if (hdev->claimed & HID_CLAIMED_INPUT)
1854                 hidinput_disconnect(hdev);
1855         if (hdev->claimed & HID_CLAIMED_HIDDEV)
1856                 hdev->hiddev_disconnect(hdev);
1857         if (hdev->claimed & HID_CLAIMED_HIDRAW)
1858                 hidraw_disconnect(hdev);
1859         hdev->claimed = 0;
1860 }
1861 EXPORT_SYMBOL_GPL(hid_disconnect);
1862
1863 /**
1864  * hid_hw_start - start underlying HW
1865  * @hdev: hid device
1866  * @connect_mask: which outputs to connect, see HID_CONNECT_*
1867  *
1868  * Call this in probe function *after* hid_parse. This will setup HW
1869  * buffers and start the device (if not defeirred to device open).
1870  * hid_hw_stop must be called if this was successful.
1871  */
1872 int hid_hw_start(struct hid_device *hdev, unsigned int connect_mask)
1873 {
1874         int error;
1875
1876         error = hdev->ll_driver->start(hdev);
1877         if (error)
1878                 return error;
1879
1880         if (connect_mask) {
1881                 error = hid_connect(hdev, connect_mask);
1882                 if (error) {
1883                         hdev->ll_driver->stop(hdev);
1884                         return error;
1885                 }
1886         }
1887
1888         return 0;
1889 }
1890 EXPORT_SYMBOL_GPL(hid_hw_start);
1891
1892 /**
1893  * hid_hw_stop - stop underlying HW
1894  * @hdev: hid device
1895  *
1896  * This is usually called from remove function or from probe when something
1897  * failed and hid_hw_start was called already.
1898  */
1899 void hid_hw_stop(struct hid_device *hdev)
1900 {
1901         hid_disconnect(hdev);
1902         hdev->ll_driver->stop(hdev);
1903 }
1904 EXPORT_SYMBOL_GPL(hid_hw_stop);
1905
1906 /**
1907  * hid_hw_open - signal underlying HW to start delivering events
1908  * @hdev: hid device
1909  *
1910  * Tell underlying HW to start delivering events from the device.
1911  * This function should be called sometime after successful call
1912  * to hid_hiw_start().
1913  */
1914 int hid_hw_open(struct hid_device *hdev)
1915 {
1916         int ret;
1917
1918         ret = mutex_lock_killable(&hdev->ll_open_lock);
1919         if (ret)
1920                 return ret;
1921
1922         if (!hdev->ll_open_count++) {
1923                 ret = hdev->ll_driver->open(hdev);
1924                 if (ret)
1925                         hdev->ll_open_count--;
1926         }
1927
1928         mutex_unlock(&hdev->ll_open_lock);
1929         return ret;
1930 }
1931 EXPORT_SYMBOL_GPL(hid_hw_open);
1932
1933 /**
1934  * hid_hw_close - signal underlaying HW to stop delivering events
1935  *
1936  * @hdev: hid device
1937  *
1938  * This function indicates that we are not interested in the events
1939  * from this device anymore. Delivery of events may or may not stop,
1940  * depending on the number of users still outstanding.
1941  */
1942 void hid_hw_close(struct hid_device *hdev)
1943 {
1944         mutex_lock(&hdev->ll_open_lock);
1945         if (!--hdev->ll_open_count)
1946                 hdev->ll_driver->close(hdev);
1947         mutex_unlock(&hdev->ll_open_lock);
1948 }
1949 EXPORT_SYMBOL_GPL(hid_hw_close);
1950
1951 /*
1952  * A list of devices for which there is a specialized driver on HID bus.
1953  *
1954  * Please note that for multitouch devices (driven by hid-multitouch driver),
1955  * there is a proper autodetection and autoloading in place (based on presence
1956  * of HID_DG_CONTACTID), so those devices don't need to be added to this list,
1957  * as we are doing the right thing in hid_scan_usage().
1958  *
1959  * Autodetection for (USB) HID sensor hubs exists too. If a collection of type
1960  * physical is found inside a usage page of type sensor, hid-sensor-hub will be
1961  * used as a driver. See hid_scan_report().
1962  */
1963 static const struct hid_device_id hid_have_special_driver[] = {
1964 #if IS_ENABLED(CONFIG_HID_A4TECH)
1965         { HID_USB_DEVICE(USB_VENDOR_ID_A4TECH, USB_DEVICE_ID_A4TECH_WCP32PU) },
1966         { HID_USB_DEVICE(USB_VENDOR_ID_A4TECH, USB_DEVICE_ID_A4TECH_X5_005D) },
1967         { HID_USB_DEVICE(USB_VENDOR_ID_A4TECH, USB_DEVICE_ID_A4TECH_RP_649) },
1968 #endif
1969 #if IS_ENABLED(CONFIG_HID_ACCUTOUCH)
1970         { HID_USB_DEVICE(USB_VENDOR_ID_ELO, USB_DEVICE_ID_ELO_ACCUTOUCH_2216) },
1971 #endif
1972 #if IS_ENABLED(CONFIG_HID_ACRUX)
1973         { HID_USB_DEVICE(USB_VENDOR_ID_ACRUX, 0x0802) },
1974         { HID_USB_DEVICE(USB_VENDOR_ID_ACRUX, 0xf705) },
1975 #endif
1976 #if IS_ENABLED(CONFIG_HID_ALPS)
1977         { HID_DEVICE(HID_BUS_ANY, HID_GROUP_ANY, USB_VENDOR_ID_ALPS_JP, HID_DEVICE_ID_ALPS_U1_DUAL) },
1978 #endif
1979 #if IS_ENABLED(CONFIG_HID_APPLE)
1980         { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_MIGHTYMOUSE) },
1981         { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_FOUNTAIN_ANSI) },
1982         { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_FOUNTAIN_ISO) },
1983         { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_GEYSER_ANSI) },
1984         { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_GEYSER_ISO) },
1985         { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_GEYSER_JIS) },
1986         { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_GEYSER3_ANSI) },
1987         { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_GEYSER3_ISO) },
1988         { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_GEYSER3_JIS) },
1989         { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_GEYSER4_ANSI) },
1990         { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_GEYSER4_ISO) },
1991         { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_GEYSER4_JIS) },
1992         { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_ALU_MINI_ANSI) },
1993         { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_ALU_MINI_ISO) },
1994         { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_ALU_MINI_JIS) },
1995         { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_ALU_ANSI) },
1996         { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_ALU_ISO) },
1997         { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_ALU_JIS) },
1998         { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_GEYSER4_HF_ANSI) },
1999         { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_GEYSER4_HF_ISO) },
2000         { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_GEYSER4_HF_JIS) },
2001         { HID_BLUETOOTH_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_ALU_WIRELESS_ANSI) },
2002         { HID_BLUETOOTH_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_ALU_WIRELESS_ISO) },
2003         { HID_BLUETOOTH_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_ALU_WIRELESS_JIS) },
2004         { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING_ANSI) },
2005         { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING_ISO) },
2006         { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING_JIS) },
2007         { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING2_ANSI) },
2008         { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING2_ISO) },
2009         { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING2_JIS) },
2010         { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING3_ANSI) },
2011         { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING3_ISO) },
2012         { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING3_JIS) },
2013         { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING4_ANSI) },
2014         { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING4_ISO) },
2015         { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING4_JIS) },
2016         { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING4A_ANSI) },
2017         { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING4A_ISO) },
2018         { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING4A_JIS) },
2019         { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING5_ANSI) },
2020         { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING5_ISO) },
2021         { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING5_JIS) },
2022         { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING5A_ANSI) },
2023         { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING5A_ISO) },
2024         { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING5A_JIS) },
2025         { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_ALU_REVB_ANSI) },
2026         { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_ALU_REVB_ISO) },
2027         { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_ALU_REVB_JIS) },
2028         { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING6_ANSI) },
2029         { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING6_ISO) },
2030         { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING6_JIS) },
2031         { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING6A_ANSI) },
2032         { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING6A_ISO) },
2033         { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING6A_JIS) },
2034         { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING7_ANSI) },
2035         { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING7_ISO) },
2036         { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING7_JIS) },
2037         { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING7A_ANSI) },
2038         { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING7A_ISO) },
2039         { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING7A_JIS) },
2040         { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING8_ANSI) },
2041         { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING8_ISO) },
2042         { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING8_JIS) },
2043         { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING9_ANSI) },
2044         { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING9_ISO) },
2045         { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING9_JIS) },
2046         { HID_BLUETOOTH_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_ALU_WIRELESS_2009_ANSI) },
2047         { HID_BLUETOOTH_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_ALU_WIRELESS_2009_ISO) },
2048         { HID_BLUETOOTH_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_ALU_WIRELESS_2009_JIS) },
2049         { HID_BLUETOOTH_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_ALU_WIRELESS_2011_ANSI) },
2050         { HID_BLUETOOTH_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_ALU_WIRELESS_2011_ISO) },
2051         { HID_BLUETOOTH_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_ALU_WIRELESS_2011_JIS) },
2052         { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_MAGIC_KEYBOARD_ANSI) },
2053         { HID_BLUETOOTH_DEVICE(BT_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_MAGIC_KEYBOARD_ANSI) },
2054         { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_MAGIC_KEYBOARD_NUMPAD_ANSI) },
2055         { HID_BLUETOOTH_DEVICE(BT_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_MAGIC_KEYBOARD_NUMPAD_ANSI) },
2056         { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_FOUNTAIN_TP_ONLY) },
2057         { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_GEYSER1_TP_ONLY) },
2058 #endif
2059 #if IS_ENABLED(CONFIG_HID_APPLEIR)
2060         { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_IRCONTROL) },
2061         { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_IRCONTROL2) },
2062         { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_IRCONTROL3) },
2063         { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_IRCONTROL4) },
2064         { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_IRCONTROL5) },
2065 #endif
2066 #if IS_ENABLED(CONFIG_HID_ASUS)
2067         { HID_I2C_DEVICE(USB_VENDOR_ID_ASUSTEK, USB_DEVICE_ID_ASUSTEK_I2C_KEYBOARD) },
2068         { HID_I2C_DEVICE(USB_VENDOR_ID_ASUSTEK, USB_DEVICE_ID_ASUSTEK_I2C_TOUCHPAD) },
2069         { HID_USB_DEVICE(USB_VENDOR_ID_ASUSTEK, USB_DEVICE_ID_ASUSTEK_ROG_KEYBOARD1) },
2070         { HID_USB_DEVICE(USB_VENDOR_ID_ASUSTEK, USB_DEVICE_ID_ASUSTEK_ROG_KEYBOARD2) },
2071         { HID_USB_DEVICE(USB_VENDOR_ID_ASUSTEK, USB_DEVICE_ID_ASUSTEK_T100_KEYBOARD) },
2072         { HID_USB_DEVICE(USB_VENDOR_ID_JESS, USB_DEVICE_ID_ASUS_MD_5112) },
2073         { HID_USB_DEVICE(USB_VENDOR_ID_TURBOX, USB_DEVICE_ID_ASUS_MD_5110) },
2074         { HID_BLUETOOTH_DEVICE(USB_VENDOR_ID_ASUSTEK, USB_DEVICE_ID_ASUSTEK_T100CHI_KEYBOARD) },
2075 #endif
2076 #if IS_ENABLED(CONFIG_HID_AUREAL)
2077         { HID_USB_DEVICE(USB_VENDOR_ID_AUREAL, USB_DEVICE_ID_AUREAL_W01RN) },
2078 #endif
2079 #if IS_ENABLED(CONFIG_HID_BELKIN)
2080         { HID_USB_DEVICE(USB_VENDOR_ID_BELKIN, USB_DEVICE_ID_FLIP_KVM) },
2081         { HID_USB_DEVICE(USB_VENDOR_ID_LABTEC, USB_DEVICE_ID_LABTEC_WIRELESS_KEYBOARD) },
2082 #endif
2083 #if IS_ENABLED(CONFIG_HID_BETOP_FF)
2084         { HID_USB_DEVICE(USB_VENDOR_ID_BETOP_2185BFM, 0x2208) },
2085         { HID_USB_DEVICE(USB_VENDOR_ID_BETOP_2185PC, 0x5506) },
2086         { HID_USB_DEVICE(USB_VENDOR_ID_BETOP_2185V2PC, 0x1850) },
2087         { HID_USB_DEVICE(USB_VENDOR_ID_BETOP_2185V2BFM, 0x5500) },
2088 #endif
2089 #if IS_ENABLED(CONFIG_HID_CHERRY)
2090         { HID_USB_DEVICE(USB_VENDOR_ID_CHERRY, USB_DEVICE_ID_CHERRY_CYMOTION) },
2091         { HID_USB_DEVICE(USB_VENDOR_ID_CHERRY, USB_DEVICE_ID_CHERRY_CYMOTION_SOLAR) },
2092 #endif
2093 #if IS_ENABLED(CONFIG_HID_CHICONY)
2094         { HID_USB_DEVICE(USB_VENDOR_ID_CHICONY, USB_DEVICE_ID_CHICONY_TACTICAL_PAD) },
2095         { HID_USB_DEVICE(USB_VENDOR_ID_CHICONY, USB_DEVICE_ID_CHICONY_WIRELESS2) },
2096         { HID_USB_DEVICE(USB_VENDOR_ID_CHICONY, USB_DEVICE_ID_ASUS_AK1D) },
2097         { HID_USB_DEVICE(USB_VENDOR_ID_CHICONY, USB_DEVICE_ID_CHICONY_ACER_SWITCH12) },
2098 #endif
2099 #if IS_ENABLED(CONFIG_HID_CMEDIA)
2100         { HID_USB_DEVICE(USB_VENDOR_ID_CMEDIA, USB_DEVICE_ID_CM6533) },
2101 #endif
2102 #if IS_ENABLED(CONFIG_HID_CORSAIR)
2103         { HID_USB_DEVICE(USB_VENDOR_ID_CORSAIR, USB_DEVICE_ID_CORSAIR_K90) },
2104         { HID_USB_DEVICE(USB_VENDOR_ID_CORSAIR, USB_DEVICE_ID_CORSAIR_SCIMITAR_PRO_RGB) },
2105 #endif
2106 #if IS_ENABLED(CONFIG_HID_CP2112)
2107         { HID_USB_DEVICE(USB_VENDOR_ID_CYGNAL, USB_DEVICE_ID_CYGNAL_CP2112) },
2108 #endif
2109 #if IS_ENABLED(CONFIG_HID_CYPRESS)
2110         { HID_USB_DEVICE(USB_VENDOR_ID_CYPRESS, USB_DEVICE_ID_CYPRESS_BARCODE_1) },
2111         { HID_USB_DEVICE(USB_VENDOR_ID_CYPRESS, USB_DEVICE_ID_CYPRESS_BARCODE_2) },
2112         { HID_USB_DEVICE(USB_VENDOR_ID_CYPRESS, USB_DEVICE_ID_CYPRESS_BARCODE_3) },
2113         { HID_USB_DEVICE(USB_VENDOR_ID_CYPRESS, USB_DEVICE_ID_CYPRESS_BARCODE_4) },
2114         { HID_USB_DEVICE(USB_VENDOR_ID_CYPRESS, USB_DEVICE_ID_CYPRESS_MOUSE) },
2115 #endif
2116 #if IS_ENABLED(CONFIG_HID_DRAGONRISE)
2117         { HID_USB_DEVICE(USB_VENDOR_ID_DRAGONRISE, 0x0006) },
2118         { HID_USB_DEVICE(USB_VENDOR_ID_DRAGONRISE, 0x0011) },
2119 #endif
2120 #if IS_ENABLED(CONFIG_HID_ELECOM)
2121         { HID_BLUETOOTH_DEVICE(USB_VENDOR_ID_ELECOM, USB_DEVICE_ID_ELECOM_BM084) },
2122         { HID_USB_DEVICE(USB_VENDOR_ID_ELECOM, USB_DEVICE_ID_ELECOM_DEFT_WIRED) },
2123         { HID_USB_DEVICE(USB_VENDOR_ID_ELECOM, USB_DEVICE_ID_ELECOM_DEFT_WIRELESS) },
2124         { HID_USB_DEVICE(USB_VENDOR_ID_ELECOM, USB_DEVICE_ID_ELECOM_HUGE_WIRED) },
2125         { HID_USB_DEVICE(USB_VENDOR_ID_ELECOM, USB_DEVICE_ID_ELECOM_HUGE_WIRELESS) },
2126 #endif
2127 #if IS_ENABLED(CONFIG_HID_ELO)
2128         { HID_USB_DEVICE(USB_VENDOR_ID_ELO, 0x0009) },
2129         { HID_USB_DEVICE(USB_VENDOR_ID_ELO, 0x0030) },
2130 #endif
2131 #if IS_ENABLED(CONFIG_HID_EMS_FF)
2132         { HID_USB_DEVICE(USB_VENDOR_ID_EMS, USB_DEVICE_ID_EMS_TRIO_LINKER_PLUS_II) },
2133 #endif
2134 #if IS_ENABLED(CONFIG_HID_EZKEY)
2135         { HID_USB_DEVICE(USB_VENDOR_ID_EZKEY, USB_DEVICE_ID_BTC_8193) },
2136 #endif
2137 #if IS_ENABLED(CONFIG_HID_GEMBIRD)
2138         { HID_USB_DEVICE(USB_VENDOR_ID_GEMBIRD, USB_DEVICE_ID_GEMBIRD_JPD_DUALFORCE2) },
2139 #endif
2140 #if IS_ENABLED(CONFIG_HID_GFRM)
2141         { HID_BLUETOOTH_DEVICE(0x58, 0x2000) },
2142         { HID_BLUETOOTH_DEVICE(0x471, 0x2210) },
2143 #endif
2144 #if IS_ENABLED(CONFIG_HID_GREENASIA)
2145         { HID_USB_DEVICE(USB_VENDOR_ID_GREENASIA, 0x0012) },
2146 #endif
2147 #if IS_ENABLED(CONFIG_HID_GT683R)
2148         { HID_USB_DEVICE(USB_VENDOR_ID_MSI, USB_DEVICE_ID_MSI_GT683R_LED_PANEL) },
2149 #endif
2150 #if IS_ENABLED(CONFIG_HID_GYRATION)
2151         { HID_USB_DEVICE(USB_VENDOR_ID_GYRATION, USB_DEVICE_ID_GYRATION_REMOTE) },
2152         { HID_USB_DEVICE(USB_VENDOR_ID_GYRATION, USB_DEVICE_ID_GYRATION_REMOTE_2) },
2153         { HID_USB_DEVICE(USB_VENDOR_ID_GYRATION, USB_DEVICE_ID_GYRATION_REMOTE_3) },
2154 #endif
2155 #if IS_ENABLED(CONFIG_HID_HOLTEK)
2156         { HID_USB_DEVICE(USB_VENDOR_ID_HOLTEK, USB_DEVICE_ID_HOLTEK_ON_LINE_GRIP) },
2157         { HID_USB_DEVICE(USB_VENDOR_ID_HOLTEK_ALT, USB_DEVICE_ID_HOLTEK_ALT_KEYBOARD) },
2158         { HID_USB_DEVICE(USB_VENDOR_ID_HOLTEK_ALT, USB_DEVICE_ID_HOLTEK_ALT_MOUSE_A04A) },
2159         { HID_USB_DEVICE(USB_VENDOR_ID_HOLTEK_ALT, USB_DEVICE_ID_HOLTEK_ALT_MOUSE_A067) },
2160         { HID_USB_DEVICE(USB_VENDOR_ID_HOLTEK_ALT, USB_DEVICE_ID_HOLTEK_ALT_MOUSE_A070) },
2161         { HID_USB_DEVICE(USB_VENDOR_ID_HOLTEK_ALT, USB_DEVICE_ID_HOLTEK_ALT_MOUSE_A072) },
2162         { HID_USB_DEVICE(USB_VENDOR_ID_HOLTEK_ALT, USB_DEVICE_ID_HOLTEK_ALT_MOUSE_A081) },
2163         { HID_USB_DEVICE(USB_VENDOR_ID_HOLTEK_ALT, USB_DEVICE_ID_HOLTEK_ALT_MOUSE_A0C2) },
2164 #endif
2165 #if IS_ENABLED(CONFIG_HID_ICADE)
2166         { HID_BLUETOOTH_DEVICE(USB_VENDOR_ID_ION, USB_DEVICE_ID_ICADE) },
2167 #endif
2168 #if IS_ENABLED(CONFIG_HID_ITE)
2169         { HID_USB_DEVICE(USB_VENDOR_ID_ITE, USB_DEVICE_ID_ITE8595) },
2170 #endif
2171 #if IS_ENABLED(CONFIG_HID_KENSINGTON)
2172         { HID_USB_DEVICE(USB_VENDOR_ID_KENSINGTON, USB_DEVICE_ID_KS_SLIMBLADE) },
2173 #endif
2174 #if IS_ENABLED(CONFIG_HID_KEYTOUCH)
2175         { HID_USB_DEVICE(USB_VENDOR_ID_KEYTOUCH, USB_DEVICE_ID_KEYTOUCH_IEC) },
2176 #endif
2177 #if IS_ENABLED(CONFIG_HID_KYE)
2178         { HID_USB_DEVICE(USB_VENDOR_ID_KYE, USB_DEVICE_ID_GENIUS_GILA_GAMING_MOUSE) },
2179         { HID_USB_DEVICE(USB_VENDOR_ID_KYE, USB_DEVICE_ID_GENIUS_MANTICORE) },
2180         { HID_USB_DEVICE(USB_VENDOR_ID_KYE, USB_DEVICE_ID_GENIUS_GX_IMPERATOR) },
2181         { HID_USB_DEVICE(USB_VENDOR_ID_KYE, USB_DEVICE_ID_KYE_ERGO_525V) },
2182         { HID_USB_DEVICE(USB_VENDOR_ID_KYE, USB_DEVICE_ID_KYE_EASYPEN_I405X) },
2183         { HID_USB_DEVICE(USB_VENDOR_ID_KYE, USB_DEVICE_ID_KYE_MOUSEPEN_I608X) },
2184         { HID_USB_DEVICE(USB_VENDOR_ID_KYE, USB_DEVICE_ID_KYE_MOUSEPEN_I608X_V2) },
2185         { HID_USB_DEVICE(USB_VENDOR_ID_KYE, USB_DEVICE_ID_KYE_EASYPEN_M610X) },
2186         { HID_USB_DEVICE(USB_VENDOR_ID_KYE, USB_DEVICE_ID_KYE_PENSKETCH_M912) },
2187 #endif
2188 #if IS_ENABLED(CONFIG_HID_LCPOWER)
2189         { HID_USB_DEVICE(USB_VENDOR_ID_LCPOWER, USB_DEVICE_ID_LCPOWER_LC1000 ) },
2190 #endif
2191 #if IS_ENABLED(CONFIG_HID_LED)
2192         { HID_USB_DEVICE(USB_VENDOR_ID_DELCOM, USB_DEVICE_ID_DELCOM_VISUAL_IND) },
2193         { HID_USB_DEVICE(USB_VENDOR_ID_DREAM_CHEEKY, USB_DEVICE_ID_DREAM_CHEEKY_WN) },
2194         { HID_USB_DEVICE(USB_VENDOR_ID_DREAM_CHEEKY, USB_DEVICE_ID_DREAM_CHEEKY_FA) },
2195         { HID_USB_DEVICE(USB_VENDOR_ID_MICROCHIP, USB_DEVICE_ID_LUXAFOR) },
2196         { HID_USB_DEVICE(USB_VENDOR_ID_RISO_KAGAKU, USB_DEVICE_ID_RI_KA_WEBMAIL) },
2197         { HID_USB_DEVICE(USB_VENDOR_ID_THINGM, USB_DEVICE_ID_BLINK1) },
2198 #endif
2199 #if IS_ENABLED(CONFIG_HID_LENOVO)
2200         { HID_USB_DEVICE(USB_VENDOR_ID_LENOVO, USB_DEVICE_ID_LENOVO_TPKBD) },
2201         { HID_USB_DEVICE(USB_VENDOR_ID_LENOVO, USB_DEVICE_ID_LENOVO_CUSBKBD) },
2202         { HID_BLUETOOTH_DEVICE(USB_VENDOR_ID_LENOVO, USB_DEVICE_ID_LENOVO_CBTKBD) },
2203         { HID_USB_DEVICE(USB_VENDOR_ID_LENOVO, USB_DEVICE_ID_LENOVO_TPPRODOCK) },
2204 #endif
2205 #if IS_ENABLED(CONFIG_HID_LOGITECH)
2206         { HID_USB_DEVICE(USB_VENDOR_ID_LOGITECH, USB_DEVICE_ID_MX3000_RECEIVER) },
2207         { HID_USB_DEVICE(USB_VENDOR_ID_LOGITECH, USB_DEVICE_ID_S510_RECEIVER) },
2208         { HID_USB_DEVICE(USB_VENDOR_ID_LOGITECH, USB_DEVICE_ID_S510_RECEIVER_2) },
2209         { HID_USB_DEVICE(USB_VENDOR_ID_LOGITECH, USB_DEVICE_ID_LOGITECH_RECEIVER) },
2210         { HID_USB_DEVICE(USB_VENDOR_ID_LOGITECH, USB_DEVICE_ID_DINOVO_DESKTOP) },
2211         { HID_USB_DEVICE(USB_VENDOR_ID_LOGITECH, USB_DEVICE_ID_DINOVO_EDGE) },
2212         { HID_USB_DEVICE(USB_VENDOR_ID_LOGITECH, USB_DEVICE_ID_DINOVO_MINI) },
2213         { HID_USB_DEVICE(USB_VENDOR_ID_LOGITECH, USB_DEVICE_ID_LOGITECH_ELITE_KBD) },
2214         { HID_USB_DEVICE(USB_VENDOR_ID_LOGITECH, USB_DEVICE_ID_LOGITECH_CORDLESS_DESKTOP_LX500) },
2215         { HID_USB_DEVICE(USB_VENDOR_ID_LOGITECH, USB_DEVICE_ID_LOGITECH_EXTREME_3D) },
2216         { HID_USB_DEVICE(USB_VENDOR_ID_LOGITECH, USB_DEVICE_ID_LOGITECH_DUAL_ACTION) },
2217         { HID_USB_DEVICE(USB_VENDOR_ID_LOGITECH, USB_DEVICE_ID_LOGITECH_WHEEL) },
2218         { HID_USB_DEVICE(USB_VENDOR_ID_LOGITECH, USB_DEVICE_ID_LOGITECH_RUMBLEPAD_CORD) },
2219         { HID_USB_DEVICE(USB_VENDOR_ID_LOGITECH, USB_DEVICE_ID_LOGITECH_RUMBLEPAD) },
2220         { HID_USB_DEVICE(USB_VENDOR_ID_LOGITECH, USB_DEVICE_ID_LOGITECH_RUMBLEPAD2_2) },
2221         { HID_USB_DEVICE(USB_VENDOR_ID_LOGITECH, USB_DEVICE_ID_LOGITECH_G29_WHEEL) },
2222         { HID_USB_DEVICE(USB_VENDOR_ID_LOGITECH, USB_DEVICE_ID_LOGITECH_WINGMAN_F3D) },
2223         { HID_USB_DEVICE(USB_VENDOR_ID_LOGITECH, USB_DEVICE_ID_LOGITECH_WINGMAN_FFG ) },
2224         { HID_USB_DEVICE(USB_VENDOR_ID_LOGITECH, USB_DEVICE_ID_LOGITECH_FORCE3D_PRO) },
2225         { HID_USB_DEVICE(USB_VENDOR_ID_LOGITECH, USB_DEVICE_ID_LOGITECH_FLIGHT_SYSTEM_G940) },
2226         { HID_USB_DEVICE(USB_VENDOR_ID_LOGITECH, USB_DEVICE_ID_LOGITECH_MOMO_WHEEL) },
2227         { HID_USB_DEVICE(USB_VENDOR_ID_LOGITECH, USB_DEVICE_ID_LOGITECH_MOMO_WHEEL2) },
2228         { HID_USB_DEVICE(USB_VENDOR_ID_LOGITECH, USB_DEVICE_ID_LOGITECH_VIBRATION_WHEEL) },
2229         { HID_USB_DEVICE(USB_VENDOR_ID_LOGITECH, USB_DEVICE_ID_LOGITECH_DFP_WHEEL) },
2230         { HID_USB_DEVICE(USB_VENDOR_ID_LOGITECH, USB_DEVICE_ID_LOGITECH_DFGT_WHEEL) },
2231         { HID_USB_DEVICE(USB_VENDOR_ID_LOGITECH, USB_DEVICE_ID_LOGITECH_G25_WHEEL) },
2232         { HID_USB_DEVICE(USB_VENDOR_ID_LOGITECH, USB_DEVICE_ID_LOGITECH_G27_WHEEL) },
2233         { HID_USB_DEVICE(USB_VENDOR_ID_LOGITECH, USB_DEVICE_ID_LOGITECH_WII_WHEEL) },
2234         { HID_USB_DEVICE(USB_VENDOR_ID_LOGITECH, USB_DEVICE_ID_LOGITECH_RUMBLEPAD2) },
2235         { HID_USB_DEVICE(USB_VENDOR_ID_LOGITECH, USB_DEVICE_ID_SPACETRAVELLER) },
2236         { HID_USB_DEVICE(USB_VENDOR_ID_LOGITECH, USB_DEVICE_ID_SPACENAVIGATOR) },
2237 #endif
2238 #if IS_ENABLED(CONFIG_HID_LOGITECH_HIDPP)
2239         { HID_BLUETOOTH_DEVICE(USB_VENDOR_ID_LOGITECH, USB_DEVICE_ID_LOGITECH_T651) },
2240         { HID_USB_DEVICE(USB_VENDOR_ID_LOGITECH, USB_DEVICE_ID_LOGITECH_G920_WHEEL) },
2241 #endif
2242 #if IS_ENABLED(CONFIG_HID_LOGITECH_DJ)
2243         { HID_USB_DEVICE(USB_VENDOR_ID_LOGITECH, USB_DEVICE_ID_LOGITECH_UNIFYING_RECEIVER) },
2244         { HID_USB_DEVICE(USB_VENDOR_ID_LOGITECH, USB_DEVICE_ID_LOGITECH_UNIFYING_RECEIVER_2) },
2245 #endif
2246 #if IS_ENABLED(CONFIG_HID_MAGICMOUSE)
2247         { HID_BLUETOOTH_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_MAGICMOUSE) },
2248         { HID_BLUETOOTH_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_MAGICTRACKPAD) },
2249 #endif
2250 #if IS_ENABLED(CONFIG_HID_MAYFLASH)
2251         { HID_USB_DEVICE(USB_VENDOR_ID_DRAGONRISE, USB_DEVICE_ID_DRAGONRISE_PS3) },
2252         { HID_USB_DEVICE(USB_VENDOR_ID_DRAGONRISE, USB_DEVICE_ID_DRAGONRISE_DOLPHINBAR) },
2253         { HID_USB_DEVICE(USB_VENDOR_ID_DRAGONRISE, USB_DEVICE_ID_DRAGONRISE_GAMECUBE1) },
2254         { HID_USB_DEVICE(USB_VENDOR_ID_DRAGONRISE, USB_DEVICE_ID_DRAGONRISE_GAMECUBE2) },
2255 #endif
2256 #if IS_ENABLED(CONFIG_HID_MICROSOFT)
2257         { HID_USB_DEVICE(USB_VENDOR_ID_MICROSOFT, USB_DEVICE_ID_MS_COMFORT_MOUSE_4500) },
2258         { HID_USB_DEVICE(USB_VENDOR_ID_MICROSOFT, USB_DEVICE_ID_MS_COMFORT_KEYBOARD) },
2259         { HID_USB_DEVICE(USB_VENDOR_ID_MICROSOFT, USB_DEVICE_ID_SIDEWINDER_GV) },
2260         { HID_USB_DEVICE(USB_VENDOR_ID_MICROSOFT, USB_DEVICE_ID_MS_NE4K) },
2261         { HID_USB_DEVICE(USB_VENDOR_ID_MICROSOFT, USB_DEVICE_ID_MS_NE4K_JP) },
2262         { HID_USB_DEVICE(USB_VENDOR_ID_MICROSOFT, USB_DEVICE_ID_MS_NE7K) },
2263         { HID_USB_DEVICE(USB_VENDOR_ID_MICROSOFT, USB_DEVICE_ID_MS_LK6K) },
2264         { HID_USB_DEVICE(USB_VENDOR_ID_MICROSOFT, USB_DEVICE_ID_MS_PRESENTER_8K_USB) },
2265         { HID_USB_DEVICE(USB_VENDOR_ID_MICROSOFT, USB_DEVICE_ID_MS_DIGITAL_MEDIA_3K) },
2266         { HID_USB_DEVICE(USB_VENDOR_ID_MICROSOFT, USB_DEVICE_ID_WIRELESS_OPTICAL_DESKTOP_3_0) },
2267         { HID_USB_DEVICE(USB_VENDOR_ID_MICROSOFT, USB_DEVICE_ID_MS_OFFICE_KB) },
2268         { HID_USB_DEVICE(USB_VENDOR_ID_MICROSOFT, USB_DEVICE_ID_MS_DIGITAL_MEDIA_7K) },
2269         { HID_USB_DEVICE(USB_VENDOR_ID_MICROSOFT, USB_DEVICE_ID_MS_DIGITAL_MEDIA_600) },
2270         { HID_USB_DEVICE(USB_VENDOR_ID_MICROSOFT, USB_DEVICE_ID_MS_DIGITAL_MEDIA_3KV1) },
2271         { HID_USB_DEVICE(USB_VENDOR_ID_MICROSOFT, USB_DEVICE_ID_MS_POWER_COVER) },
2272         { HID_BLUETOOTH_DEVICE(USB_VENDOR_ID_MICROSOFT, USB_DEVICE_ID_MS_PRESENTER_8K_BT) },
2273 #endif
2274 #if IS_ENABLED(CONFIG_HID_MONTEREY)
2275         { HID_USB_DEVICE(USB_VENDOR_ID_MONTEREY, USB_DEVICE_ID_GENIUS_KB29E) },
2276 #endif
2277 #if IS_ENABLED(CONFIG_HID_MULTITOUCH)
2278         { HID_USB_DEVICE(USB_VENDOR_ID_LG, USB_DEVICE_ID_LG_MELFAS_MT) },
2279 #endif
2280 #if IS_ENABLED(CONFIG_HID_WIIMOTE)
2281         { HID_BLUETOOTH_DEVICE(USB_VENDOR_ID_NINTENDO, USB_DEVICE_ID_NINTENDO_WIIMOTE) },
2282         { HID_BLUETOOTH_DEVICE(USB_VENDOR_ID_NINTENDO, USB_DEVICE_ID_NINTENDO_WIIMOTE2) },
2283 #endif
2284 #if IS_ENABLED(CONFIG_HID_NTI)
2285         { HID_USB_DEVICE(USB_VENDOR_ID_NTI, USB_DEVICE_ID_USB_SUN) },
2286 #endif
2287 #if IS_ENABLED(CONFIG_HID_NTRIG)
2288         { HID_USB_DEVICE(USB_VENDOR_ID_NTRIG, USB_DEVICE_ID_NTRIG_TOUCH_SCREEN) },
2289         { HID_USB_DEVICE(USB_VENDOR_ID_NTRIG, USB_DEVICE_ID_NTRIG_TOUCH_SCREEN_1) },
2290         { HID_USB_DEVICE(USB_VENDOR_ID_NTRIG, USB_DEVICE_ID_NTRIG_TOUCH_SCREEN_2) },
2291         { HID_USB_DEVICE(USB_VENDOR_ID_NTRIG, USB_DEVICE_ID_NTRIG_TOUCH_SCREEN_3) },
2292         { HID_USB_DEVICE(USB_VENDOR_ID_NTRIG, USB_DEVICE_ID_NTRIG_TOUCH_SCREEN_4) },
2293         { HID_USB_DEVICE(USB_VENDOR_ID_NTRIG, USB_DEVICE_ID_NTRIG_TOUCH_SCREEN_5) },
2294         { HID_USB_DEVICE(USB_VENDOR_ID_NTRIG, USB_DEVICE_ID_NTRIG_TOUCH_SCREEN_6) },
2295         { HID_USB_DEVICE(USB_VENDOR_ID_NTRIG, USB_DEVICE_ID_NTRIG_TOUCH_SCREEN_7) },
2296         { HID_USB_DEVICE(USB_VENDOR_ID_NTRIG, USB_DEVICE_ID_NTRIG_TOUCH_SCREEN_8) },
2297         { HID_USB_DEVICE(USB_VENDOR_ID_NTRIG, USB_DEVICE_ID_NTRIG_TOUCH_SCREEN_9) },
2298         { HID_USB_DEVICE(USB_VENDOR_ID_NTRIG, USB_DEVICE_ID_NTRIG_TOUCH_SCREEN_10) },
2299         { HID_USB_DEVICE(USB_VENDOR_ID_NTRIG, USB_DEVICE_ID_NTRIG_TOUCH_SCREEN_11) },
2300         { HID_USB_DEVICE(USB_VENDOR_ID_NTRIG, USB_DEVICE_ID_NTRIG_TOUCH_SCREEN_12) },
2301         { HID_USB_DEVICE(USB_VENDOR_ID_NTRIG, USB_DEVICE_ID_NTRIG_TOUCH_SCREEN_13) },
2302         { HID_USB_DEVICE(USB_VENDOR_ID_NTRIG, USB_DEVICE_ID_NTRIG_TOUCH_SCREEN_14) },
2303         { HID_USB_DEVICE(USB_VENDOR_ID_NTRIG, USB_DEVICE_ID_NTRIG_TOUCH_SCREEN_15) },
2304         { HID_USB_DEVICE(USB_VENDOR_ID_NTRIG, USB_DEVICE_ID_NTRIG_TOUCH_SCREEN_16) },
2305         { HID_USB_DEVICE(USB_VENDOR_ID_NTRIG, USB_DEVICE_ID_NTRIG_TOUCH_SCREEN_17) },
2306         { HID_USB_DEVICE(USB_VENDOR_ID_NTRIG, USB_DEVICE_ID_NTRIG_TOUCH_SCREEN_18) },
2307 #endif
2308 #if IS_ENABLED(CONFIG_HID_ORTEK)
2309         { HID_USB_DEVICE(USB_VENDOR_ID_ORTEK, USB_DEVICE_ID_ORTEK_PKB1700) },
2310         { HID_USB_DEVICE(USB_VENDOR_ID_ORTEK, USB_DEVICE_ID_ORTEK_WKB2000) },
2311         { HID_USB_DEVICE(USB_VENDOR_ID_ORTEK, USB_DEVICE_ID_ORTEK_IHOME_IMAC_A210S) },
2312         { HID_USB_DEVICE(USB_VENDOR_ID_SKYCABLE, USB_DEVICE_ID_SKYCABLE_WIRELESS_PRESENTER) },
2313 #endif
2314 #if IS_ENABLED(CONFIG_HID_PANTHERLORD)
2315         { HID_USB_DEVICE(USB_VENDOR_ID_GAMERON, USB_DEVICE_ID_GAMERON_DUAL_PSX_ADAPTOR) },
2316         { HID_USB_DEVICE(USB_VENDOR_ID_GAMERON, USB_DEVICE_ID_GAMERON_DUAL_PCS_ADAPTOR) },
2317         { HID_USB_DEVICE(USB_VENDOR_ID_GREENASIA, 0x0003) },
2318         { HID_USB_DEVICE(USB_VENDOR_ID_JESS2, USB_DEVICE_ID_JESS2_COLOR_RUMBLE_PAD) },
2319 #endif
2320 #if IS_ENABLED(CONFIG_HID_PENMOUNT)
2321         { HID_USB_DEVICE(USB_VENDOR_ID_PENMOUNT, USB_DEVICE_ID_PENMOUNT_6000) },
2322 #endif
2323 #if IS_ENABLED(CONFIG_HID_PETALYNX)
2324         { HID_USB_DEVICE(USB_VENDOR_ID_PETALYNX, USB_DEVICE_ID_PETALYNX_MAXTER_REMOTE) },
2325 #endif
2326 #if IS_ENABLED(CONFIG_HID_PICOLCD)
2327         { HID_USB_DEVICE(USB_VENDOR_ID_MICROCHIP, USB_DEVICE_ID_PICOLCD) },
2328         { HID_USB_DEVICE(USB_VENDOR_ID_MICROCHIP, USB_DEVICE_ID_PICOLCD_BOOTLOADER) },
2329 #endif
2330 #if IS_ENABLED(CONFIG_HID_PLANTRONICS)
2331         { HID_USB_DEVICE(USB_VENDOR_ID_PLANTRONICS, HID_ANY_ID) },
2332 #endif
2333 #if IS_ENABLED(CONFIG_HID_PRIMAX)
2334         { HID_USB_DEVICE(USB_VENDOR_ID_PRIMAX, USB_DEVICE_ID_PRIMAX_KEYBOARD) },
2335 #endif
2336 #if IS_ENABLED(CONFIG_HID_PRODIKEYS)
2337         { HID_USB_DEVICE(USB_VENDOR_ID_CREATIVELABS, USB_DEVICE_ID_PRODIKEYS_PCMIDI) },
2338 #endif
2339 #if IS_ENABLED(CONFIG_HID_RETRODE)
2340         { HID_USB_DEVICE(USB_VENDOR_ID_FUTURE_TECHNOLOGY, USB_DEVICE_ID_RETRODE2) },
2341 #endif
2342 #if IS_ENABLED(CONFIG_HID_RMI)
2343         { HID_USB_DEVICE(USB_VENDOR_ID_LENOVO, USB_DEVICE_ID_LENOVO_X1_COVER) },
2344         { HID_USB_DEVICE(USB_VENDOR_ID_RAZER, USB_DEVICE_ID_RAZER_BLADE_14) },
2345 #endif
2346 #if IS_ENABLED(CONFIG_HID_ROCCAT)
2347         { HID_USB_DEVICE(USB_VENDOR_ID_ROCCAT, USB_DEVICE_ID_ROCCAT_ARVO) },
2348         { HID_USB_DEVICE(USB_VENDOR_ID_ROCCAT, USB_DEVICE_ID_ROCCAT_ISKU) },
2349         { HID_USB_DEVICE(USB_VENDOR_ID_ROCCAT, USB_DEVICE_ID_ROCCAT_ISKUFX) },
2350         { HID_USB_DEVICE(USB_VENDOR_ID_ROCCAT, USB_DEVICE_ID_ROCCAT_KONE) },
2351         { HID_USB_DEVICE(USB_VENDOR_ID_ROCCAT, USB_DEVICE_ID_ROCCAT_KONEPLUS) },
2352         { HID_USB_DEVICE(USB_VENDOR_ID_ROCCAT, USB_DEVICE_ID_ROCCAT_KONEPURE) },
2353         { HID_USB_DEVICE(USB_VENDOR_ID_ROCCAT, USB_DEVICE_ID_ROCCAT_KONEPURE_OPTICAL) },
2354         { HID_USB_DEVICE(USB_VENDOR_ID_ROCCAT, USB_DEVICE_ID_ROCCAT_KONEXTD) },
2355         { HID_USB_DEVICE(USB_VENDOR_ID_ROCCAT, USB_DEVICE_ID_ROCCAT_KOVAPLUS) },
2356         { HID_USB_DEVICE(USB_VENDOR_ID_ROCCAT, USB_DEVICE_ID_ROCCAT_LUA) },
2357         { HID_USB_DEVICE(USB_VENDOR_ID_ROCCAT, USB_DEVICE_ID_ROCCAT_PYRA_WIRED) },
2358         { HID_USB_DEVICE(USB_VENDOR_ID_ROCCAT, USB_DEVICE_ID_ROCCAT_PYRA_WIRELESS) },
2359         { HID_USB_DEVICE(USB_VENDOR_ID_ROCCAT, USB_DEVICE_ID_ROCCAT_RYOS_MK) },
2360         { HID_USB_DEVICE(USB_VENDOR_ID_ROCCAT, USB_DEVICE_ID_ROCCAT_RYOS_MK_GLOW) },
2361         { HID_USB_DEVICE(USB_VENDOR_ID_ROCCAT, USB_DEVICE_ID_ROCCAT_RYOS_MK_PRO) },
2362         { HID_USB_DEVICE(USB_VENDOR_ID_ROCCAT, USB_DEVICE_ID_ROCCAT_SAVU) },
2363 #endif
2364 #if IS_ENABLED(CONFIG_HID_SAITEK)
2365         { HID_USB_DEVICE(USB_VENDOR_ID_SAITEK, USB_DEVICE_ID_SAITEK_PS1000) },
2366         { HID_USB_DEVICE(USB_VENDOR_ID_SAITEK, USB_DEVICE_ID_SAITEK_RAT7_OLD) },
2367         { HID_USB_DEVICE(USB_VENDOR_ID_SAITEK, USB_DEVICE_ID_SAITEK_RAT7) },
2368         { HID_USB_DEVICE(USB_VENDOR_ID_SAITEK, USB_DEVICE_ID_SAITEK_RAT9) },
2369         { HID_USB_DEVICE(USB_VENDOR_ID_SAITEK, USB_DEVICE_ID_SAITEK_MMO7) },
2370         { HID_USB_DEVICE(USB_VENDOR_ID_MADCATZ, USB_DEVICE_ID_MADCATZ_RAT5) },
2371         { HID_USB_DEVICE(USB_VENDOR_ID_MADCATZ, USB_DEVICE_ID_MADCATZ_RAT9) },
2372 #endif
2373 #if IS_ENABLED(CONFIG_HID_SAMSUNG)
2374         { HID_USB_DEVICE(USB_VENDOR_ID_SAMSUNG, USB_DEVICE_ID_SAMSUNG_IR_REMOTE) },
2375         { HID_USB_DEVICE(USB_VENDOR_ID_SAMSUNG, USB_DEVICE_ID_SAMSUNG_WIRELESS_KBD_MOUSE) },
2376 #endif
2377 #if IS_ENABLED(CONFIG_HID_SMARTJOYPLUS)
2378         { HID_USB_DEVICE(USB_VENDOR_ID_PLAYDOTCOM, USB_DEVICE_ID_PLAYDOTCOM_EMS_USBII) },
2379         { HID_USB_DEVICE(USB_VENDOR_ID_WISEGROUP, USB_DEVICE_ID_SMARTJOY_PLUS) },
2380         { HID_USB_DEVICE(USB_VENDOR_ID_WISEGROUP, USB_DEVICE_ID_SUPER_JOY_BOX_3) },
2381         { HID_USB_DEVICE(USB_VENDOR_ID_WISEGROUP, USB_DEVICE_ID_DUAL_USB_JOYPAD) },
2382         { HID_USB_DEVICE(USB_VENDOR_ID_WISEGROUP_LTD, USB_DEVICE_ID_SUPER_JOY_BOX_3_PRO) },
2383         { HID_USB_DEVICE(USB_VENDOR_ID_WISEGROUP_LTD, USB_DEVICE_ID_SUPER_DUAL_BOX_PRO) },
2384         { HID_USB_DEVICE(USB_VENDOR_ID_WISEGROUP_LTD, USB_DEVICE_ID_SUPER_JOY_BOX_5_PRO) },
2385 #endif
2386 #if IS_ENABLED(CONFIG_HID_SONY)
2387         { HID_BLUETOOTH_DEVICE(USB_VENDOR_ID_LOGITECH, USB_DEVICE_ID_LOGITECH_HARMONY_PS3) },
2388         { HID_BLUETOOTH_DEVICE(USB_VENDOR_ID_SMK, USB_DEVICE_ID_SMK_PS3_BDREMOTE) },
2389         { HID_USB_DEVICE(USB_VENDOR_ID_SONY, USB_DEVICE_ID_SONY_BUZZ_CONTROLLER) },
2390         { HID_USB_DEVICE(USB_VENDOR_ID_SONY, USB_DEVICE_ID_SONY_WIRELESS_BUZZ_CONTROLLER) },
2391         { HID_USB_DEVICE(USB_VENDOR_ID_SONY, USB_DEVICE_ID_SONY_MOTION_CONTROLLER) },
2392         { HID_BLUETOOTH_DEVICE(USB_VENDOR_ID_SONY, USB_DEVICE_ID_SONY_MOTION_CONTROLLER) },
2393         { HID_USB_DEVICE(USB_VENDOR_ID_SONY, USB_DEVICE_ID_SONY_NAVIGATION_CONTROLLER) },
2394         { HID_BLUETOOTH_DEVICE(USB_VENDOR_ID_SONY, USB_DEVICE_ID_SONY_NAVIGATION_CONTROLLER) },
2395         { HID_BLUETOOTH_DEVICE(USB_VENDOR_ID_SONY, USB_DEVICE_ID_SONY_PS3_BDREMOTE) },
2396         { HID_USB_DEVICE(USB_VENDOR_ID_SONY, USB_DEVICE_ID_SONY_PS3_CONTROLLER) },
2397         { HID_BLUETOOTH_DEVICE(USB_VENDOR_ID_SONY, USB_DEVICE_ID_SONY_PS3_CONTROLLER) },
2398         { HID_USB_DEVICE(USB_VENDOR_ID_SONY, USB_DEVICE_ID_SONY_PS4_CONTROLLER) },
2399         { HID_BLUETOOTH_DEVICE(USB_VENDOR_ID_SONY, USB_DEVICE_ID_SONY_PS4_CONTROLLER) },
2400         { HID_USB_DEVICE(USB_VENDOR_ID_SONY, USB_DEVICE_ID_SONY_PS4_CONTROLLER_2) },
2401         { HID_BLUETOOTH_DEVICE(USB_VENDOR_ID_SONY, USB_DEVICE_ID_SONY_PS4_CONTROLLER_2) },
2402         { HID_USB_DEVICE(USB_VENDOR_ID_SONY, USB_DEVICE_ID_SONY_PS4_CONTROLLER_DONGLE) },
2403         { HID_USB_DEVICE(USB_VENDOR_ID_SONY, USB_DEVICE_ID_SONY_VAIO_VGX_MOUSE) },
2404         { HID_USB_DEVICE(USB_VENDOR_ID_SONY, USB_DEVICE_ID_SONY_VAIO_VGP_MOUSE) },
2405         { HID_USB_DEVICE(USB_VENDOR_ID_SINO_LITE, USB_DEVICE_ID_SINO_LITE_CONTROLLER) },
2406 #endif
2407 #if IS_ENABLED(CONFIG_HID_SPEEDLINK)
2408         { HID_USB_DEVICE(USB_VENDOR_ID_X_TENSIONS, USB_DEVICE_ID_SPEEDLINK_VAD_CEZANNE) },
2409 #endif
2410 #if IS_ENABLED(CONFIG_HID_STEELSERIES)
2411         { HID_USB_DEVICE(USB_VENDOR_ID_STEELSERIES, USB_DEVICE_ID_STEELSERIES_SRWS1) },
2412 #endif
2413 #if IS_ENABLED(CONFIG_HID_SUNPLUS)
2414         { HID_USB_DEVICE(USB_VENDOR_ID_SUNPLUS, USB_DEVICE_ID_SUNPLUS_WDESKTOP) },
2415 #endif
2416 #if IS_ENABLED(CONFIG_HID_THRUSTMASTER)
2417         { HID_USB_DEVICE(USB_VENDOR_ID_THRUSTMASTER, 0xb300) },
2418         { HID_USB_DEVICE(USB_VENDOR_ID_THRUSTMASTER, 0xb304) },
2419         { HID_USB_DEVICE(USB_VENDOR_ID_THRUSTMASTER, 0xb323) },
2420         { HID_USB_DEVICE(USB_VENDOR_ID_THRUSTMASTER, 0xb324) },
2421         { HID_USB_DEVICE(USB_VENDOR_ID_THRUSTMASTER, 0xb651) },
2422         { HID_USB_DEVICE(USB_VENDOR_ID_THRUSTMASTER, 0xb653) },
2423         { HID_USB_DEVICE(USB_VENDOR_ID_THRUSTMASTER, 0xb654) },
2424         { HID_USB_DEVICE(USB_VENDOR_ID_THRUSTMASTER, 0xb65a) },
2425 #endif
2426 #if IS_ENABLED(CONFIG_HID_TIVO)
2427         { HID_BLUETOOTH_DEVICE(USB_VENDOR_ID_TIVO, USB_DEVICE_ID_TIVO_SLIDE_BT) },
2428         { HID_USB_DEVICE(USB_VENDOR_ID_TIVO, USB_DEVICE_ID_TIVO_SLIDE) },
2429         { HID_USB_DEVICE(USB_VENDOR_ID_TIVO, USB_DEVICE_ID_TIVO_SLIDE_PRO) },
2430 #endif
2431 #if IS_ENABLED(CONFIG_HID_TOPSEED)
2432         { HID_USB_DEVICE(USB_VENDOR_ID_BTC, USB_DEVICE_ID_BTC_EMPREX_REMOTE) },
2433         { HID_USB_DEVICE(USB_VENDOR_ID_BTC, USB_DEVICE_ID_BTC_EMPREX_REMOTE_2) },
2434         { HID_USB_DEVICE(USB_VENDOR_ID_CHICONY, USB_DEVICE_ID_CHICONY_WIRELESS) },
2435         { HID_USB_DEVICE(USB_VENDOR_ID_TOPSEED, USB_DEVICE_ID_TOPSEED_CYBERLINK) },
2436         { HID_USB_DEVICE(USB_VENDOR_ID_TOPSEED2, USB_DEVICE_ID_TOPSEED2_RF_COMBO) },
2437 #endif
2438 #if IS_ENABLED(CONFIG_HID_TWINHAN)
2439         { HID_USB_DEVICE(USB_VENDOR_ID_TWINHAN, USB_DEVICE_ID_TWINHAN_IR_REMOTE) },
2440 #endif
2441 #if IS_ENABLED(CONFIG_HID_UCLOGIC)
2442         { HID_USB_DEVICE(USB_VENDOR_ID_HUION, USB_DEVICE_ID_HUION_TABLET) },
2443         { HID_USB_DEVICE(USB_VENDOR_ID_UCLOGIC, USB_DEVICE_ID_HUION_TABLET) },
2444         { HID_USB_DEVICE(USB_VENDOR_ID_UCLOGIC, USB_DEVICE_ID_UCLOGIC_TABLET_PF1209) },
2445         { HID_USB_DEVICE(USB_VENDOR_ID_UCLOGIC, USB_DEVICE_ID_UCLOGIC_TABLET_WP4030U) },
2446         { HID_USB_DEVICE(USB_VENDOR_ID_UCLOGIC, USB_DEVICE_ID_UCLOGIC_TABLET_WP5540U) },
2447         { HID_USB_DEVICE(USB_VENDOR_ID_UCLOGIC, USB_DEVICE_ID_UCLOGIC_TABLET_WP8060U) },
2448         { HID_USB_DEVICE(USB_VENDOR_ID_UCLOGIC, USB_DEVICE_ID_UCLOGIC_TABLET_WP1062) },
2449         { HID_USB_DEVICE(USB_VENDOR_ID_UCLOGIC, USB_DEVICE_ID_UCLOGIC_WIRELESS_TABLET_TWHL850) },
2450         { HID_USB_DEVICE(USB_VENDOR_ID_UCLOGIC, USB_DEVICE_ID_UCLOGIC_TABLET_TWHA60) },
2451         { HID_USB_DEVICE(USB_VENDOR_ID_UCLOGIC, USB_DEVICE_ID_YIYNOVA_TABLET) },
2452         { HID_USB_DEVICE(USB_VENDOR_ID_UCLOGIC, USB_DEVICE_ID_UGEE_TABLET_81) },
2453         { HID_USB_DEVICE(USB_VENDOR_ID_UCLOGIC, USB_DEVICE_ID_UGEE_TABLET_45) },
2454         { HID_USB_DEVICE(USB_VENDOR_ID_UCLOGIC, USB_DEVICE_ID_UCLOGIC_DRAWIMAGE_G3) },
2455         { HID_USB_DEVICE(USB_VENDOR_ID_UGEE, USB_DEVICE_ID_UGEE_TABLET_EX07S) },
2456         { HID_USB_DEVICE(USB_VENDOR_ID_UGTIZER, USB_DEVICE_ID_UGTIZER_TABLET_GP0610) },
2457 #endif
2458 #if IS_ENABLED(CONFIG_HID_UDRAW_PS3)
2459         { HID_USB_DEVICE(USB_VENDOR_ID_THQ, USB_DEVICE_ID_THQ_PS3_UDRAW) },
2460 #endif
2461 #if IS_ENABLED(CONFIG_HID_WALTOP)
2462         { HID_USB_DEVICE(USB_VENDOR_ID_WALTOP, USB_DEVICE_ID_WALTOP_SLIM_TABLET_5_8_INCH) },
2463         { HID_USB_DEVICE(USB_VENDOR_ID_WALTOP, USB_DEVICE_ID_WALTOP_SLIM_TABLET_12_1_INCH) },
2464         { HID_USB_DEVICE(USB_VENDOR_ID_WALTOP, USB_DEVICE_ID_WALTOP_Q_PAD) },
2465         { HID_USB_DEVICE(USB_VENDOR_ID_WALTOP, USB_DEVICE_ID_WALTOP_PID_0038) },
2466         { HID_USB_DEVICE(USB_VENDOR_ID_WALTOP, USB_DEVICE_ID_WALTOP_MEDIA_TABLET_10_6_INCH) },
2467         { HID_USB_DEVICE(USB_VENDOR_ID_WALTOP, USB_DEVICE_ID_WALTOP_MEDIA_TABLET_14_1_INCH) },
2468         { HID_USB_DEVICE(USB_VENDOR_ID_WALTOP, USB_DEVICE_ID_WALTOP_SIRIUS_BATTERY_FREE_TABLET) },
2469 #endif
2470 #if IS_ENABLED(CONFIG_HID_XINMO)
2471         { HID_USB_DEVICE(USB_VENDOR_ID_XIN_MO, USB_DEVICE_ID_XIN_MO_DUAL_ARCADE) },
2472         { HID_USB_DEVICE(USB_VENDOR_ID_XIN_MO, USB_DEVICE_ID_THT_2P_ARCADE) },
2473 #endif
2474 #if IS_ENABLED(CONFIG_HID_ZEROPLUS)
2475         { HID_USB_DEVICE(USB_VENDOR_ID_ZEROPLUS, 0x0005) },
2476         { HID_USB_DEVICE(USB_VENDOR_ID_ZEROPLUS, 0x0030) },
2477 #endif
2478 #if IS_ENABLED(CONFIG_HID_ZYDACRON)
2479         { HID_USB_DEVICE(USB_VENDOR_ID_ZYDACRON, USB_DEVICE_ID_ZYDACRON_REMOTE_CONTROL) },
2480 #endif
2481         { }
2482 };
2483
2484 struct hid_dynid {
2485         struct list_head list;
2486         struct hid_device_id id;
2487 };
2488
2489 /**
2490  * store_new_id - add a new HID device ID to this driver and re-probe devices
2491  * @driver: target device driver
2492  * @buf: buffer for scanning device ID data
2493  * @count: input size
2494  *
2495  * Adds a new dynamic hid device ID to this driver,
2496  * and causes the driver to probe for all devices again.
2497  */
2498 static ssize_t new_id_store(struct device_driver *drv, const char *buf,
2499                 size_t count)
2500 {
2501         struct hid_driver *hdrv = to_hid_driver(drv);
2502         struct hid_dynid *dynid;
2503         __u32 bus, vendor, product;
2504         unsigned long driver_data = 0;
2505         int ret;
2506
2507         ret = sscanf(buf, "%x %x %x %lx",
2508                         &bus, &vendor, &product, &driver_data);
2509         if (ret < 3)
2510                 return -EINVAL;
2511
2512         dynid = kzalloc(sizeof(*dynid), GFP_KERNEL);
2513         if (!dynid)
2514                 return -ENOMEM;
2515
2516         dynid->id.bus = bus;
2517         dynid->id.group = HID_GROUP_ANY;
2518         dynid->id.vendor = vendor;
2519         dynid->id.product = product;
2520         dynid->id.driver_data = driver_data;
2521
2522         spin_lock(&hdrv->dyn_lock);
2523         list_add_tail(&dynid->list, &hdrv->dyn_list);
2524         spin_unlock(&hdrv->dyn_lock);
2525
2526         ret = driver_attach(&hdrv->driver);
2527
2528         return ret ? : count;
2529 }
2530 static DRIVER_ATTR_WO(new_id);
2531
2532 static struct attribute *hid_drv_attrs[] = {
2533         &driver_attr_new_id.attr,
2534         NULL,
2535 };
2536 ATTRIBUTE_GROUPS(hid_drv);
2537
2538 static void hid_free_dynids(struct hid_driver *hdrv)
2539 {
2540         struct hid_dynid *dynid, *n;
2541
2542         spin_lock(&hdrv->dyn_lock);
2543         list_for_each_entry_safe(dynid, n, &hdrv->dyn_list, list) {
2544                 list_del(&dynid->list);
2545                 kfree(dynid);
2546         }
2547         spin_unlock(&hdrv->dyn_lock);
2548 }
2549
2550 static const struct hid_device_id *hid_match_device(struct hid_device *hdev,
2551                 struct hid_driver *hdrv)
2552 {
2553         struct hid_dynid *dynid;
2554
2555         spin_lock(&hdrv->dyn_lock);
2556         list_for_each_entry(dynid, &hdrv->dyn_list, list) {
2557                 if (hid_match_one_id(hdev, &dynid->id)) {
2558                         spin_unlock(&hdrv->dyn_lock);
2559                         return &dynid->id;
2560                 }
2561         }
2562         spin_unlock(&hdrv->dyn_lock);
2563
2564         return hid_match_id(hdev, hdrv->id_table);
2565 }
2566
2567 static int hid_bus_match(struct device *dev, struct device_driver *drv)
2568 {
2569         struct hid_driver *hdrv = to_hid_driver(drv);
2570         struct hid_device *hdev = to_hid_device(dev);
2571
2572         return hid_match_device(hdev, hdrv) != NULL;
2573 }
2574
2575 static int hid_device_probe(struct device *dev)
2576 {
2577         struct hid_driver *hdrv = to_hid_driver(dev->driver);
2578         struct hid_device *hdev = to_hid_device(dev);
2579         const struct hid_device_id *id;
2580         int ret = 0;
2581
2582         if (down_interruptible(&hdev->driver_input_lock)) {
2583                 ret = -EINTR;
2584                 goto end;
2585         }
2586         hdev->io_started = false;
2587
2588         if (!hdev->driver) {
2589                 id = hid_match_device(hdev, hdrv);
2590                 if (id == NULL) {
2591                         ret = -ENODEV;
2592                         goto unlock;
2593                 }
2594
2595                 hdev->driver = hdrv;
2596                 if (hdrv->probe) {
2597                         ret = hdrv->probe(hdev, id);
2598                 } else { /* default probe */
2599                         ret = hid_open_report(hdev);
2600                         if (!ret)
2601                                 ret = hid_hw_start(hdev, HID_CONNECT_DEFAULT);
2602                 }
2603                 if (ret) {
2604                         hid_close_report(hdev);
2605                         hdev->driver = NULL;
2606                 }
2607         }
2608 unlock:
2609         if (!hdev->io_started)
2610                 up(&hdev->driver_input_lock);
2611 end:
2612         return ret;
2613 }
2614
2615 static int hid_device_remove(struct device *dev)
2616 {
2617         struct hid_device *hdev = to_hid_device(dev);
2618         struct hid_driver *hdrv;
2619
2620         down(&hdev->driver_input_lock);
2621         hdev->io_started = false;
2622
2623         hdrv = hdev->driver;
2624         if (hdrv) {
2625                 if (hdrv->remove)
2626                         hdrv->remove(hdev);
2627                 else /* default remove */
2628                         hid_hw_stop(hdev);
2629                 hid_close_report(hdev);
2630                 hdev->driver = NULL;
2631         }
2632
2633         if (!hdev->io_started)
2634                 up(&hdev->driver_input_lock);
2635
2636         return 0;
2637 }
2638
2639 static ssize_t modalias_show(struct device *dev, struct device_attribute *a,
2640                              char *buf)
2641 {
2642         struct hid_device *hdev = container_of(dev, struct hid_device, dev);
2643
2644         return scnprintf(buf, PAGE_SIZE, "hid:b%04Xg%04Xv%08Xp%08X\n",
2645                          hdev->bus, hdev->group, hdev->vendor, hdev->product);
2646 }
2647 static DEVICE_ATTR_RO(modalias);
2648
2649 static struct attribute *hid_dev_attrs[] = {
2650         &dev_attr_modalias.attr,
2651         NULL,
2652 };
2653 static struct bin_attribute *hid_dev_bin_attrs[] = {
2654         &dev_bin_attr_report_desc,
2655         NULL
2656 };
2657 static const struct attribute_group hid_dev_group = {
2658         .attrs = hid_dev_attrs,
2659         .bin_attrs = hid_dev_bin_attrs,
2660 };
2661 __ATTRIBUTE_GROUPS(hid_dev);
2662
2663 static int hid_uevent(struct device *dev, struct kobj_uevent_env *env)
2664 {
2665         struct hid_device *hdev = to_hid_device(dev);
2666
2667         if (add_uevent_var(env, "HID_ID=%04X:%08X:%08X",
2668                         hdev->bus, hdev->vendor, hdev->product))
2669                 return -ENOMEM;
2670
2671         if (add_uevent_var(env, "HID_NAME=%s", hdev->name))
2672                 return -ENOMEM;
2673
2674         if (add_uevent_var(env, "HID_PHYS=%s", hdev->phys))
2675                 return -ENOMEM;
2676
2677         if (add_uevent_var(env, "HID_UNIQ=%s", hdev->uniq))
2678                 return -ENOMEM;
2679
2680         if (add_uevent_var(env, "MODALIAS=hid:b%04Xg%04Xv%08Xp%08X",
2681                            hdev->bus, hdev->group, hdev->vendor, hdev->product))
2682                 return -ENOMEM;
2683
2684         return 0;
2685 }
2686
2687 static struct bus_type hid_bus_type = {
2688         .name           = "hid",
2689         .dev_groups     = hid_dev_groups,
2690         .drv_groups     = hid_drv_groups,
2691         .match          = hid_bus_match,
2692         .probe          = hid_device_probe,
2693         .remove         = hid_device_remove,
2694         .uevent         = hid_uevent,
2695 };
2696
2697 /* a list of devices that shouldn't be handled by HID core at all */
2698 static const struct hid_device_id hid_ignore_list[] = {
2699         { HID_USB_DEVICE(USB_VENDOR_ID_ACECAD, USB_DEVICE_ID_ACECAD_FLAIR) },
2700         { HID_USB_DEVICE(USB_VENDOR_ID_ACECAD, USB_DEVICE_ID_ACECAD_302) },
2701         { HID_USB_DEVICE(USB_VENDOR_ID_ADS_TECH, USB_DEVICE_ID_ADS_TECH_RADIO_SI470X) },
2702         { HID_USB_DEVICE(USB_VENDOR_ID_AIPTEK, USB_DEVICE_ID_AIPTEK_01) },
2703         { HID_USB_DEVICE(USB_VENDOR_ID_AIPTEK, USB_DEVICE_ID_AIPTEK_10) },
2704         { HID_USB_DEVICE(USB_VENDOR_ID_AIPTEK, USB_DEVICE_ID_AIPTEK_20) },
2705         { HID_USB_DEVICE(USB_VENDOR_ID_AIPTEK, USB_DEVICE_ID_AIPTEK_21) },
2706         { HID_USB_DEVICE(USB_VENDOR_ID_AIPTEK, USB_DEVICE_ID_AIPTEK_22) },
2707         { HID_USB_DEVICE(USB_VENDOR_ID_AIPTEK, USB_DEVICE_ID_AIPTEK_23) },
2708         { HID_USB_DEVICE(USB_VENDOR_ID_AIPTEK, USB_DEVICE_ID_AIPTEK_24) },
2709         { HID_USB_DEVICE(USB_VENDOR_ID_AIRCABLE, USB_DEVICE_ID_AIRCABLE1) },
2710         { HID_USB_DEVICE(USB_VENDOR_ID_ALCOR, USB_DEVICE_ID_ALCOR_USBRS232) },
2711         { HID_USB_DEVICE(USB_VENDOR_ID_ASUSTEK, USB_DEVICE_ID_ASUSTEK_LCM)},
2712         { HID_USB_DEVICE(USB_VENDOR_ID_ASUSTEK, USB_DEVICE_ID_ASUSTEK_LCM2)},
2713         { HID_USB_DEVICE(USB_VENDOR_ID_AVERMEDIA, USB_DEVICE_ID_AVER_FM_MR800) },
2714         { HID_USB_DEVICE(USB_VENDOR_ID_AXENTIA, USB_DEVICE_ID_AXENTIA_FM_RADIO) },
2715         { HID_USB_DEVICE(USB_VENDOR_ID_BERKSHIRE, USB_DEVICE_ID_BERKSHIRE_PCWD) },
2716         { HID_USB_DEVICE(USB_VENDOR_ID_CIDC, 0x0103) },
2717         { HID_USB_DEVICE(USB_VENDOR_ID_CYGNAL, USB_DEVICE_ID_CYGNAL_RADIO_SI470X) },
2718         { HID_USB_DEVICE(USB_VENDOR_ID_CYGNAL, USB_DEVICE_ID_CYGNAL_RADIO_SI4713) },
2719         { HID_USB_DEVICE(USB_VENDOR_ID_CMEDIA, USB_DEVICE_ID_CM109) },
2720         { HID_USB_DEVICE(USB_VENDOR_ID_CYPRESS, USB_DEVICE_ID_CYPRESS_HIDCOM) },
2721         { HID_USB_DEVICE(USB_VENDOR_ID_CYPRESS, USB_DEVICE_ID_CYPRESS_ULTRAMOUSE) },
2722         { HID_USB_DEVICE(USB_VENDOR_ID_DEALEXTREAME, USB_DEVICE_ID_DEALEXTREAME_RADIO_SI4701) },
2723         { HID_USB_DEVICE(USB_VENDOR_ID_DELORME, USB_DEVICE_ID_DELORME_EARTHMATE) },
2724         { HID_USB_DEVICE(USB_VENDOR_ID_DELORME, USB_DEVICE_ID_DELORME_EM_LT20) },
2725         { HID_I2C_DEVICE(USB_VENDOR_ID_ELAN, 0x0400) },
2726         { HID_USB_DEVICE(USB_VENDOR_ID_ESSENTIAL_REALITY, USB_DEVICE_ID_ESSENTIAL_REALITY_P5) },
2727         { HID_USB_DEVICE(USB_VENDOR_ID_ETT, USB_DEVICE_ID_TC5UH) },
2728         { HID_USB_DEVICE(USB_VENDOR_ID_ETT, USB_DEVICE_ID_TC4UM) },
2729         { HID_USB_DEVICE(USB_VENDOR_ID_GENERAL_TOUCH, 0x0001) },
2730         { HID_USB_DEVICE(USB_VENDOR_ID_GENERAL_TOUCH, 0x0002) },
2731         { HID_USB_DEVICE(USB_VENDOR_ID_GENERAL_TOUCH, 0x0004) },
2732         { HID_USB_DEVICE(USB_VENDOR_ID_GOTOP, USB_DEVICE_ID_SUPER_Q2) },
2733         { HID_USB_DEVICE(USB_VENDOR_ID_GOTOP, USB_DEVICE_ID_GOGOPEN) },
2734         { HID_USB_DEVICE(USB_VENDOR_ID_GOTOP, USB_DEVICE_ID_PENPOWER) },
2735         { HID_USB_DEVICE(USB_VENDOR_ID_GRETAGMACBETH, USB_DEVICE_ID_GRETAGMACBETH_HUEY) },
2736         { HID_USB_DEVICE(USB_VENDOR_ID_GRIFFIN, USB_DEVICE_ID_POWERMATE) },
2737         { HID_USB_DEVICE(USB_VENDOR_ID_GRIFFIN, USB_DEVICE_ID_SOUNDKNOB) },
2738         { HID_USB_DEVICE(USB_VENDOR_ID_GRIFFIN, USB_DEVICE_ID_RADIOSHARK) },
2739         { HID_USB_DEVICE(USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_90) },
2740         { HID_USB_DEVICE(USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_100) },
2741         { HID_USB_DEVICE(USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_101) },
2742         { HID_USB_DEVICE(USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_103) },
2743         { HID_USB_DEVICE(USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_104) },
2744         { HID_USB_DEVICE(USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_105) },
2745         { HID_USB_DEVICE(USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_106) },
2746         { HID_USB_DEVICE(USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_107) },
2747         { HID_USB_DEVICE(USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_108) },
2748         { HID_USB_DEVICE(USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_200) },
2749         { HID_USB_DEVICE(USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_201) },
2750         { HID_USB_DEVICE(USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_202) },
2751         { HID_USB_DEVICE(USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_203) },
2752         { HID_USB_DEVICE(USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_204) },
2753         { HID_USB_DEVICE(USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_205) },
2754         { HID_USB_DEVICE(USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_206) },
2755         { HID_USB_DEVICE(USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_207) },
2756         { HID_USB_DEVICE(USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_300) },
2757         { HID_USB_DEVICE(USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_301) },
2758         { HID_USB_DEVICE(USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_302) },
2759         { HID_USB_DEVICE(USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_303) },
2760         { HID_USB_DEVICE(USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_304) },
2761         { HID_USB_DEVICE(USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_305) },
2762         { HID_USB_DEVICE(USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_306) },
2763         { HID_USB_DEVICE(USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_307) },
2764         { HID_USB_DEVICE(USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_308) },
2765         { HID_USB_DEVICE(USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_309) },
2766         { HID_USB_DEVICE(USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_400) },
2767         { HID_USB_DEVICE(USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_401) },
2768         { HID_USB_DEVICE(USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_402) },
2769         { HID_USB_DEVICE(USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_403) },
2770         { HID_USB_DEVICE(USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_404) },
2771         { HID_USB_DEVICE(USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_405) },
2772         { HID_USB_DEVICE(USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_500) },
2773         { HID_USB_DEVICE(USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_501) },
2774         { HID_USB_DEVICE(USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_502) },
2775         { HID_USB_DEVICE(USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_503) },
2776         { HID_USB_DEVICE(USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_504) },
2777         { HID_USB_DEVICE(USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_1000) },
2778         { HID_USB_DEVICE(USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_1001) },
2779         { HID_USB_DEVICE(USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_1002) },
2780         { HID_USB_DEVICE(USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_1003) },
2781         { HID_USB_DEVICE(USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_1004) },
2782         { HID_USB_DEVICE(USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_1005) },
2783         { HID_USB_DEVICE(USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_1006) },
2784         { HID_USB_DEVICE(USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_1007) },
2785         { HID_USB_DEVICE(USB_VENDOR_ID_IMATION, USB_DEVICE_ID_DISC_STAKKA) },
2786         { HID_USB_DEVICE(USB_VENDOR_ID_JABRA, USB_DEVICE_ID_JABRA_SPEAK_410) },
2787         { HID_USB_DEVICE(USB_VENDOR_ID_JABRA, USB_DEVICE_ID_JABRA_SPEAK_510) },
2788         { HID_USB_DEVICE(USB_VENDOR_ID_JABRA, USB_DEVICE_ID_JABRA_GN9350E) },
2789         { HID_USB_DEVICE(USB_VENDOR_ID_KBGEAR, USB_DEVICE_ID_KBGEAR_JAMSTUDIO) },
2790         { HID_USB_DEVICE(USB_VENDOR_ID_KWORLD, USB_DEVICE_ID_KWORLD_RADIO_FM700) },
2791         { HID_USB_DEVICE(USB_VENDOR_ID_KYE, USB_DEVICE_ID_KYE_GPEN_560) },
2792         { HID_BLUETOOTH_DEVICE(USB_VENDOR_ID_KYE, 0x0058) },
2793         { HID_USB_DEVICE(USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_CASSY) },
2794         { HID_USB_DEVICE(USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_CASSY2) },
2795         { HID_USB_DEVICE(USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_POCKETCASSY) },
2796         { HID_USB_DEVICE(USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_POCKETCASSY2) },
2797         { HID_USB_DEVICE(USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_MOBILECASSY) },
2798         { HID_USB_DEVICE(USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_MOBILECASSY2) },
2799         { HID_USB_DEVICE(USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_MICROCASSYVOLTAGE) },
2800         { HID_USB_DEVICE(USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_MICROCASSYCURRENT) },
2801         { HID_USB_DEVICE(USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_MICROCASSYTIME) },
2802         { HID_USB_DEVICE(USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_MICROCASSYTEMPERATURE) },
2803         { HID_USB_DEVICE(USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_MICROCASSYPH) },
2804         { HID_USB_DEVICE(USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_POWERANALYSERCASSY) },
2805         { HID_USB_DEVICE(USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_CONVERTERCONTROLLERCASSY) },
2806         { HID_USB_DEVICE(USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_MACHINETESTCASSY) },
2807         { HID_USB_DEVICE(USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_JWM) },
2808         { HID_USB_DEVICE(USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_DMMP) },
2809         { HID_USB_DEVICE(USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_UMIP) },
2810         { HID_USB_DEVICE(USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_UMIC) },
2811         { HID_USB_DEVICE(USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_UMIB) },
2812         { HID_USB_DEVICE(USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_XRAY) },
2813         { HID_USB_DEVICE(USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_XRAY2) },
2814         { HID_USB_DEVICE(USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_VIDEOCOM) },
2815         { HID_USB_DEVICE(USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_MOTOR) },
2816         { HID_USB_DEVICE(USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_COM3LAB) },
2817         { HID_USB_DEVICE(USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_TELEPORT) },
2818         { HID_USB_DEVICE(USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_NETWORKANALYSER) },
2819         { HID_USB_DEVICE(USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_POWERCONTROL) },
2820         { HID_USB_DEVICE(USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_MACHINETEST) },
2821         { HID_USB_DEVICE(USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_MOSTANALYSER) },
2822         { HID_USB_DEVICE(USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_MOSTANALYSER2) },
2823         { HID_USB_DEVICE(USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_ABSESP) },
2824         { HID_USB_DEVICE(USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_AUTODATABUS) },
2825         { HID_USB_DEVICE(USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_MCT) },
2826         { HID_USB_DEVICE(USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_HYBRID) },
2827         { HID_USB_DEVICE(USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_HEATCONTROL) },
2828         { HID_USB_DEVICE(USB_VENDOR_ID_MADCATZ, USB_DEVICE_ID_MADCATZ_BEATPAD) },
2829         { HID_USB_DEVICE(USB_VENDOR_ID_MCC, USB_DEVICE_ID_MCC_PMD1024LS) },
2830         { HID_USB_DEVICE(USB_VENDOR_ID_MCC, USB_DEVICE_ID_MCC_PMD1208LS) },
2831         { HID_USB_DEVICE(USB_VENDOR_ID_MICROCHIP, USB_DEVICE_ID_PICKIT1) },
2832         { HID_USB_DEVICE(USB_VENDOR_ID_MICROCHIP, USB_DEVICE_ID_PICKIT2) },
2833         { HID_USB_DEVICE(USB_VENDOR_ID_MICROCHIP, USB_DEVICE_ID_PICK16F1454) },
2834         { HID_USB_DEVICE(USB_VENDOR_ID_MICROCHIP, USB_DEVICE_ID_PICK16F1454_V2) },
2835         { HID_USB_DEVICE(USB_VENDOR_ID_NATIONAL_SEMICONDUCTOR, USB_DEVICE_ID_N_S_HARMONY) },
2836         { HID_USB_DEVICE(USB_VENDOR_ID_ONTRAK, USB_DEVICE_ID_ONTRAK_ADU100) },
2837         { HID_USB_DEVICE(USB_VENDOR_ID_ONTRAK, USB_DEVICE_ID_ONTRAK_ADU100 + 20) },
2838         { HID_USB_DEVICE(USB_VENDOR_ID_ONTRAK, USB_DEVICE_ID_ONTRAK_ADU100 + 30) },
2839         { HID_USB_DEVICE(USB_VENDOR_ID_ONTRAK, USB_DEVICE_ID_ONTRAK_ADU100 + 100) },
2840         { HID_USB_DEVICE(USB_VENDOR_ID_ONTRAK, USB_DEVICE_ID_ONTRAK_ADU100 + 108) },
2841         { HID_USB_DEVICE(USB_VENDOR_ID_ONTRAK, USB_DEVICE_ID_ONTRAK_ADU100 + 118) },
2842         { HID_USB_DEVICE(USB_VENDOR_ID_ONTRAK, USB_DEVICE_ID_ONTRAK_ADU100 + 200) },
2843         { HID_USB_DEVICE(USB_VENDOR_ID_ONTRAK, USB_DEVICE_ID_ONTRAK_ADU100 + 300) },
2844         { HID_USB_DEVICE(USB_VENDOR_ID_ONTRAK, USB_DEVICE_ID_ONTRAK_ADU100 + 400) },
2845         { HID_USB_DEVICE(USB_VENDOR_ID_ONTRAK, USB_DEVICE_ID_ONTRAK_ADU100 + 500) },
2846         { HID_USB_DEVICE(USB_VENDOR_ID_PANJIT, 0x0001) },
2847         { HID_USB_DEVICE(USB_VENDOR_ID_PANJIT, 0x0002) },
2848         { HID_USB_DEVICE(USB_VENDOR_ID_PANJIT, 0x0003) },
2849         { HID_USB_DEVICE(USB_VENDOR_ID_PANJIT, 0x0004) },
2850         { HID_USB_DEVICE(USB_VENDOR_ID_PETZL, USB_DEVICE_ID_PETZL_HEADLAMP) },
2851         { HID_USB_DEVICE(USB_VENDOR_ID_PHILIPS, USB_DEVICE_ID_PHILIPS_IEEE802154_DONGLE) },
2852         { HID_USB_DEVICE(USB_VENDOR_ID_POWERCOM, USB_DEVICE_ID_POWERCOM_UPS) },
2853 #if IS_ENABLED(CONFIG_MOUSE_SYNAPTICS_USB)
2854         { HID_USB_DEVICE(USB_VENDOR_ID_SYNAPTICS, USB_DEVICE_ID_SYNAPTICS_TP) },
2855         { HID_USB_DEVICE(USB_VENDOR_ID_SYNAPTICS, USB_DEVICE_ID_SYNAPTICS_INT_TP) },
2856         { HID_USB_DEVICE(USB_VENDOR_ID_SYNAPTICS, USB_DEVICE_ID_SYNAPTICS_CPAD) },
2857         { HID_USB_DEVICE(USB_VENDOR_ID_SYNAPTICS, USB_DEVICE_ID_SYNAPTICS_STICK) },
2858         { HID_USB_DEVICE(USB_VENDOR_ID_SYNAPTICS, USB_DEVICE_ID_SYNAPTICS_WP) },
2859         { HID_USB_DEVICE(USB_VENDOR_ID_SYNAPTICS, USB_DEVICE_ID_SYNAPTICS_COMP_TP) },
2860         { HID_USB_DEVICE(USB_VENDOR_ID_SYNAPTICS, USB_DEVICE_ID_SYNAPTICS_WTP) },
2861         { HID_USB_DEVICE(USB_VENDOR_ID_SYNAPTICS, USB_DEVICE_ID_SYNAPTICS_DPAD) },
2862 #endif
2863         { HID_USB_DEVICE(USB_VENDOR_ID_YEALINK, USB_DEVICE_ID_YEALINK_P1K_P4K_B2K) },
2864         { }
2865 };
2866
2867 /**
2868  * hid_mouse_ignore_list - mouse devices which should not be handled by the hid layer
2869  *
2870  * There are composite devices for which we want to ignore only a certain
2871  * interface. This is a list of devices for which only the mouse interface will
2872  * be ignored. This allows a dedicated driver to take care of the interface.
2873  */
2874 static const struct hid_device_id hid_mouse_ignore_list[] = {
2875         /* appletouch driver */
2876         { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_FOUNTAIN_ANSI) },
2877         { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_FOUNTAIN_ISO) },
2878         { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_GEYSER_ANSI) },
2879         { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_GEYSER_ISO) },
2880         { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_GEYSER_JIS) },
2881         { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_GEYSER3_ANSI) },
2882         { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_GEYSER3_ISO) },
2883         { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_GEYSER3_JIS) },
2884         { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_GEYSER4_ANSI) },
2885         { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_GEYSER4_ISO) },
2886         { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_GEYSER4_JIS) },
2887         { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_GEYSER4_HF_ANSI) },
2888         { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_GEYSER4_HF_ISO) },
2889         { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_GEYSER4_HF_JIS) },
2890         { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING_ANSI) },
2891         { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING_ISO) },
2892         { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING_JIS) },
2893         { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING2_ANSI) },
2894         { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING2_ISO) },
2895         { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING2_JIS) },
2896         { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING3_ANSI) },
2897         { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING3_ISO) },
2898         { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING3_JIS) },
2899         { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING4_ANSI) },
2900         { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING4_ISO) },
2901         { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING4_JIS) },
2902         { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING4A_ANSI) },
2903         { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING4A_ISO) },
2904         { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING4A_JIS) },
2905         { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING5_ANSI) },
2906         { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING5_ISO) },
2907         { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING5_JIS) },
2908         { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING5A_ANSI) },
2909         { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING5A_ISO) },
2910         { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING5A_JIS) },
2911         { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING6_ANSI) },
2912         { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING6_ISO) },
2913         { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING6_JIS) },
2914         { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING6A_ANSI) },
2915         { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING6A_ISO) },
2916         { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING6A_JIS) },
2917         { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING7_ANSI) },
2918         { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING7_ISO) },
2919         { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING7_JIS) },
2920         { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING7A_ANSI) },
2921         { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING7A_ISO) },
2922         { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING7A_JIS) },
2923         { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING8_ANSI) },
2924         { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING8_ISO) },
2925         { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING8_JIS) },
2926         { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING9_ANSI) },
2927         { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING9_ISO) },
2928         { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING9_JIS) },
2929         { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_FOUNTAIN_TP_ONLY) },
2930         { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_GEYSER1_TP_ONLY) },
2931         { }
2932 };
2933
2934 bool hid_ignore(struct hid_device *hdev)
2935 {
2936         if (hdev->quirks & HID_QUIRK_NO_IGNORE)
2937                 return false;
2938         if (hdev->quirks & HID_QUIRK_IGNORE)
2939                 return true;
2940
2941         switch (hdev->vendor) {
2942         case USB_VENDOR_ID_CODEMERCS:
2943                 /* ignore all Code Mercenaries IOWarrior devices */
2944                 if (hdev->product >= USB_DEVICE_ID_CODEMERCS_IOW_FIRST &&
2945                                 hdev->product <= USB_DEVICE_ID_CODEMERCS_IOW_LAST)
2946                         return true;
2947                 break;
2948         case USB_VENDOR_ID_LOGITECH:
2949                 if (hdev->product >= USB_DEVICE_ID_LOGITECH_HARMONY_FIRST &&
2950                                 hdev->product <= USB_DEVICE_ID_LOGITECH_HARMONY_LAST)
2951                         return true;
2952                 /*
2953                  * The Keene FM transmitter USB device has the same USB ID as
2954                  * the Logitech AudioHub Speaker, but it should ignore the hid.
2955                  * Check if the name is that of the Keene device.
2956                  * For reference: the name of the AudioHub is
2957                  * "HOLTEK  AudioHub Speaker".
2958                  */
2959                 if (hdev->product == USB_DEVICE_ID_LOGITECH_AUDIOHUB &&
2960                         !strcmp(hdev->name, "HOLTEK  B-LINK USB Audio  "))
2961                                 return true;
2962                 break;
2963         case USB_VENDOR_ID_SOUNDGRAPH:
2964                 if (hdev->product >= USB_DEVICE_ID_SOUNDGRAPH_IMON_FIRST &&
2965                     hdev->product <= USB_DEVICE_ID_SOUNDGRAPH_IMON_LAST)
2966                         return true;
2967                 break;
2968         case USB_VENDOR_ID_HANWANG:
2969                 if (hdev->product >= USB_DEVICE_ID_HANWANG_TABLET_FIRST &&
2970                     hdev->product <= USB_DEVICE_ID_HANWANG_TABLET_LAST)
2971                         return true;
2972                 break;
2973         case USB_VENDOR_ID_JESS:
2974                 if (hdev->product == USB_DEVICE_ID_JESS_YUREX &&
2975                                 hdev->type == HID_TYPE_USBNONE)
2976                         return true;
2977                 break;
2978         case USB_VENDOR_ID_VELLEMAN:
2979                 /* These are not HID devices.  They are handled by comedi. */
2980                 if ((hdev->product >= USB_DEVICE_ID_VELLEMAN_K8055_FIRST &&
2981                      hdev->product <= USB_DEVICE_ID_VELLEMAN_K8055_LAST) ||
2982                     (hdev->product >= USB_DEVICE_ID_VELLEMAN_K8061_FIRST &&
2983                      hdev->product <= USB_DEVICE_ID_VELLEMAN_K8061_LAST))
2984                         return true;
2985                 break;
2986         case USB_VENDOR_ID_ATMEL_V_USB:
2987                 /* Masterkit MA901 usb radio based on Atmel tiny85 chip and
2988                  * it has the same USB ID as many Atmel V-USB devices. This
2989                  * usb radio is handled by radio-ma901.c driver so we want
2990                  * ignore the hid. Check the name, bus, product and ignore
2991                  * if we have MA901 usb radio.
2992                  */
2993                 if (hdev->product == USB_DEVICE_ID_ATMEL_V_USB &&
2994                         hdev->bus == BUS_USB &&
2995                         strncmp(hdev->name, "www.masterkit.ru MA901", 22) == 0)
2996                         return true;
2997                 break;
2998         case USB_VENDOR_ID_ELAN:
2999                 /*
3000                  * Many Elan devices have a product id of 0x0401 and are handled
3001                  * by the elan_i2c input driver. But the ACPI HID ELAN0800 dev
3002                  * is not (and cannot be) handled by that driver ->
3003                  * Ignore all 0x0401 devs except for the ELAN0800 dev.
3004                  */
3005                 if (hdev->product == 0x0401 &&
3006                     strncmp(hdev->name, "ELAN0800", 8) != 0)
3007                         return true;
3008                 break;
3009         }
3010
3011         if (hdev->type == HID_TYPE_USBMOUSE &&
3012                         hid_match_id(hdev, hid_mouse_ignore_list))
3013                 return true;
3014
3015         return !!hid_match_id(hdev, hid_ignore_list);
3016 }
3017 EXPORT_SYMBOL_GPL(hid_ignore);
3018
3019 int hid_add_device(struct hid_device *hdev)
3020 {
3021         static atomic_t id = ATOMIC_INIT(0);
3022         int ret;
3023
3024         if (WARN_ON(hdev->status & HID_STAT_ADDED))
3025                 return -EBUSY;
3026
3027         /* we need to kill them here, otherwise they will stay allocated to
3028          * wait for coming driver */
3029         if (hid_ignore(hdev))
3030                 return -ENODEV;
3031
3032         /*
3033          * Check for the mandatory transport channel.
3034          */
3035          if (!hdev->ll_driver->raw_request) {
3036                 hid_err(hdev, "transport driver missing .raw_request()\n");
3037                 return -EINVAL;
3038          }
3039
3040         /*
3041          * Read the device report descriptor once and use as template
3042          * for the driver-specific modifications.
3043          */
3044         ret = hdev->ll_driver->parse(hdev);
3045         if (ret)
3046                 return ret;
3047         if (!hdev->dev_rdesc)
3048                 return -ENODEV;
3049
3050         /*
3051          * Scan generic devices for group information
3052          */
3053         if (hid_ignore_special_drivers) {
3054                 hdev->group = HID_GROUP_GENERIC;
3055         } else if (!hdev->group &&
3056                    !hid_match_id(hdev, hid_have_special_driver)) {
3057                 ret = hid_scan_report(hdev);
3058                 if (ret)
3059                         hid_warn(hdev, "bad device descriptor (%d)\n", ret);
3060         }
3061
3062         /* XXX hack, any other cleaner solution after the driver core
3063          * is converted to allow more than 20 bytes as the device name? */
3064         dev_set_name(&hdev->dev, "%04X:%04X:%04X.%04X", hdev->bus,
3065                      hdev->vendor, hdev->product, atomic_inc_return(&id));
3066
3067         hid_debug_register(hdev, dev_name(&hdev->dev));
3068         ret = device_add(&hdev->dev);
3069         if (!ret)
3070                 hdev->status |= HID_STAT_ADDED;
3071         else
3072                 hid_debug_unregister(hdev);
3073
3074         return ret;
3075 }
3076 EXPORT_SYMBOL_GPL(hid_add_device);
3077
3078 /**
3079  * hid_allocate_device - allocate new hid device descriptor
3080  *
3081  * Allocate and initialize hid device, so that hid_destroy_device might be
3082  * used to free it.
3083  *
3084  * New hid_device pointer is returned on success, otherwise ERR_PTR encoded
3085  * error value.
3086  */
3087 struct hid_device *hid_allocate_device(void)
3088 {
3089         struct hid_device *hdev;
3090         int ret = -ENOMEM;
3091
3092         hdev = kzalloc(sizeof(*hdev), GFP_KERNEL);
3093         if (hdev == NULL)
3094                 return ERR_PTR(ret);
3095
3096         device_initialize(&hdev->dev);
3097         hdev->dev.release = hid_device_release;
3098         hdev->dev.bus = &hid_bus_type;
3099         device_enable_async_suspend(&hdev->dev);
3100
3101         hid_close_report(hdev);
3102
3103         init_waitqueue_head(&hdev->debug_wait);
3104         INIT_LIST_HEAD(&hdev->debug_list);
3105         spin_lock_init(&hdev->debug_list_lock);
3106         sema_init(&hdev->driver_input_lock, 1);
3107         mutex_init(&hdev->ll_open_lock);
3108
3109         return hdev;
3110 }
3111 EXPORT_SYMBOL_GPL(hid_allocate_device);
3112
3113 static void hid_remove_device(struct hid_device *hdev)
3114 {
3115         if (hdev->status & HID_STAT_ADDED) {
3116                 device_del(&hdev->dev);
3117                 hid_debug_unregister(hdev);
3118                 hdev->status &= ~HID_STAT_ADDED;
3119         }
3120         kfree(hdev->dev_rdesc);
3121         hdev->dev_rdesc = NULL;
3122         hdev->dev_rsize = 0;
3123 }
3124
3125 /**
3126  * hid_destroy_device - free previously allocated device
3127  *
3128  * @hdev: hid device
3129  *
3130  * If you allocate hid_device through hid_allocate_device, you should ever
3131  * free by this function.
3132  */
3133 void hid_destroy_device(struct hid_device *hdev)
3134 {
3135         hid_remove_device(hdev);
3136         put_device(&hdev->dev);
3137 }
3138 EXPORT_SYMBOL_GPL(hid_destroy_device);
3139
3140 int __hid_register_driver(struct hid_driver *hdrv, struct module *owner,
3141                 const char *mod_name)
3142 {
3143         hdrv->driver.name = hdrv->name;
3144         hdrv->driver.bus = &hid_bus_type;
3145         hdrv->driver.owner = owner;
3146         hdrv->driver.mod_name = mod_name;
3147
3148         INIT_LIST_HEAD(&hdrv->dyn_list);
3149         spin_lock_init(&hdrv->dyn_lock);
3150
3151         return driver_register(&hdrv->driver);
3152 }
3153 EXPORT_SYMBOL_GPL(__hid_register_driver);
3154
3155 void hid_unregister_driver(struct hid_driver *hdrv)
3156 {
3157         driver_unregister(&hdrv->driver);
3158         hid_free_dynids(hdrv);
3159 }
3160 EXPORT_SYMBOL_GPL(hid_unregister_driver);
3161
3162 int hid_check_keys_pressed(struct hid_device *hid)
3163 {
3164         struct hid_input *hidinput;
3165         int i;
3166
3167         if (!(hid->claimed & HID_CLAIMED_INPUT))
3168                 return 0;
3169
3170         list_for_each_entry(hidinput, &hid->inputs, list) {
3171                 for (i = 0; i < BITS_TO_LONGS(KEY_MAX); i++)
3172                         if (hidinput->input->key[i])
3173                                 return 1;
3174         }
3175
3176         return 0;
3177 }
3178
3179 EXPORT_SYMBOL_GPL(hid_check_keys_pressed);
3180
3181 static int __init hid_init(void)
3182 {
3183         int ret;
3184
3185         if (hid_debug)
3186                 pr_warn("hid_debug is now used solely for parser and driver debugging.\n"
3187                         "debugfs is now used for inspecting the device (report descriptor, reports)\n");
3188
3189         ret = bus_register(&hid_bus_type);
3190         if (ret) {
3191                 pr_err("can't register hid bus\n");
3192                 goto err;
3193         }
3194
3195         ret = hidraw_init();
3196         if (ret)
3197                 goto err_bus;
3198
3199         hid_debug_init();
3200
3201         return 0;
3202 err_bus:
3203         bus_unregister(&hid_bus_type);
3204 err:
3205         return ret;
3206 }
3207
3208 static void __exit hid_exit(void)
3209 {
3210         hid_debug_exit();
3211         hidraw_exit();
3212         bus_unregister(&hid_bus_type);
3213 }
3214
3215 module_init(hid_init);
3216 module_exit(hid_exit);
3217
3218 MODULE_AUTHOR("Andreas Gal");
3219 MODULE_AUTHOR("Vojtech Pavlik");
3220 MODULE_AUTHOR("Jiri Kosina");
3221 MODULE_LICENSE("GPL");
3222