2 * HID support for Linux
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
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)
17 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
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>
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>
34 #include <linux/hid.h>
35 #include <linux/hiddev.h>
36 #include <linux/hid-debug.h>
37 #include <linux/hidraw.h>
45 #define DRIVER_DESC "HID core driver"
46 #define DRIVER_LICENSE "GPL"
49 module_param_named(debug, hid_debug, int, 0600);
50 MODULE_PARM_DESC(debug, "toggle HID debugging messages");
51 EXPORT_SYMBOL_GPL(hid_debug);
53 static int hid_ignore_special_drivers = 0;
54 module_param_named(ignore_special_drivers, hid_ignore_special_drivers, int, 0600);
55 MODULE_PARM_DESC(ignore_special_drivers, "Ignore any special drivers and handle all devices by generic driver");
58 * Register a new report for a device.
61 struct hid_report *hid_register_report(struct hid_device *device, unsigned type, unsigned id)
63 struct hid_report_enum *report_enum = device->report_enum + type;
64 struct hid_report *report;
66 if (id >= HID_MAX_IDS)
68 if (report_enum->report_id_hash[id])
69 return report_enum->report_id_hash[id];
71 report = kzalloc(sizeof(struct hid_report), GFP_KERNEL);
76 report_enum->numbered = 1;
81 report->device = device;
82 report_enum->report_id_hash[id] = report;
84 list_add_tail(&report->list, &report_enum->report_list);
88 EXPORT_SYMBOL_GPL(hid_register_report);
91 * Register a new field for this report.
94 static struct hid_field *hid_register_field(struct hid_report *report, unsigned usages)
96 struct hid_field *field;
98 if (report->maxfield == HID_MAX_FIELDS) {
99 hid_err(report->device, "too many fields in report\n");
103 field = kzalloc((sizeof(struct hid_field) +
104 usages * sizeof(struct hid_usage) +
105 usages * sizeof(unsigned)), GFP_KERNEL);
109 field->index = report->maxfield++;
110 report->field[field->index] = field;
111 field->usage = (struct hid_usage *)(field + 1);
112 field->value = (s32 *)(field->usage + usages);
113 field->report = report;
119 * Open a collection. The type/usage is pushed on the stack.
122 static int open_collection(struct hid_parser *parser, unsigned type)
124 struct hid_collection *collection;
127 usage = parser->local.usage[0];
129 if (parser->collection_stack_ptr == HID_COLLECTION_STACK_SIZE) {
130 hid_err(parser->device, "collection stack overflow\n");
134 if (parser->device->maxcollection == parser->device->collection_size) {
135 collection = kmalloc(sizeof(struct hid_collection) *
136 parser->device->collection_size * 2, GFP_KERNEL);
137 if (collection == NULL) {
138 hid_err(parser->device, "failed to reallocate collection array\n");
141 memcpy(collection, parser->device->collection,
142 sizeof(struct hid_collection) *
143 parser->device->collection_size);
144 memset(collection + parser->device->collection_size, 0,
145 sizeof(struct hid_collection) *
146 parser->device->collection_size);
147 kfree(parser->device->collection);
148 parser->device->collection = collection;
149 parser->device->collection_size *= 2;
152 parser->collection_stack[parser->collection_stack_ptr++] =
153 parser->device->maxcollection;
155 collection = parser->device->collection +
156 parser->device->maxcollection++;
157 collection->type = type;
158 collection->usage = usage;
159 collection->level = parser->collection_stack_ptr - 1;
161 if (type == HID_COLLECTION_APPLICATION)
162 parser->device->maxapplication++;
168 * Close a collection.
171 static int close_collection(struct hid_parser *parser)
173 if (!parser->collection_stack_ptr) {
174 hid_err(parser->device, "collection stack underflow\n");
177 parser->collection_stack_ptr--;
182 * Climb up the stack, search for the specified collection type
183 * and return the usage.
186 static unsigned hid_lookup_collection(struct hid_parser *parser, unsigned type)
188 struct hid_collection *collection = parser->device->collection;
191 for (n = parser->collection_stack_ptr - 1; n >= 0; n--) {
192 unsigned index = parser->collection_stack[n];
193 if (collection[index].type == type)
194 return collection[index].usage;
196 return 0; /* we know nothing about this usage type */
200 * Concatenate usage which defines 16 bits or less with the
201 * currently defined usage page to form a 32 bit usage
204 static void complete_usage(struct hid_parser *parser, unsigned int index)
206 parser->local.usage[index] &= 0xFFFF;
207 parser->local.usage[index] |=
208 (parser->global.usage_page & 0xFFFF) << 16;
212 * Add a usage to the temporary parser table.
215 static int hid_add_usage(struct hid_parser *parser, unsigned usage, u8 size)
217 if (parser->local.usage_index >= HID_MAX_USAGES) {
218 hid_err(parser->device, "usage index exceeded\n");
221 parser->local.usage[parser->local.usage_index] = usage;
224 * If Usage item only includes usage id, concatenate it with
225 * currently defined usage page
228 complete_usage(parser, parser->local.usage_index);
230 parser->local.usage_size[parser->local.usage_index] = size;
231 parser->local.collection_index[parser->local.usage_index] =
232 parser->collection_stack_ptr ?
233 parser->collection_stack[parser->collection_stack_ptr - 1] : 0;
234 parser->local.usage_index++;
239 * Register a new field for this report.
242 static int hid_add_field(struct hid_parser *parser, unsigned report_type, unsigned flags)
244 struct hid_report *report;
245 struct hid_field *field;
250 report = hid_register_report(parser->device, report_type, parser->global.report_id);
252 hid_err(parser->device, "hid_register_report failed\n");
256 /* Handle both signed and unsigned cases properly */
257 if ((parser->global.logical_minimum < 0 &&
258 parser->global.logical_maximum <
259 parser->global.logical_minimum) ||
260 (parser->global.logical_minimum >= 0 &&
261 (__u32)parser->global.logical_maximum <
262 (__u32)parser->global.logical_minimum)) {
263 dbg_hid("logical range invalid 0x%x 0x%x\n",
264 parser->global.logical_minimum,
265 parser->global.logical_maximum);
269 offset = report->size;
270 report->size += parser->global.report_size * parser->global.report_count;
272 /* Total size check: Allow for possible report index byte */
273 if (report->size > (HID_MAX_BUFFER_SIZE - 1) << 3) {
274 hid_err(parser->device, "report is too long\n");
278 if (!parser->local.usage_index) /* Ignore padding fields */
281 usages = max_t(unsigned, parser->local.usage_index,
282 parser->global.report_count);
284 field = hid_register_field(report, usages);
288 field->physical = hid_lookup_collection(parser, HID_COLLECTION_PHYSICAL);
289 field->logical = hid_lookup_collection(parser, HID_COLLECTION_LOGICAL);
290 field->application = hid_lookup_collection(parser, HID_COLLECTION_APPLICATION);
292 for (i = 0; i < usages; i++) {
294 /* Duplicate the last usage we parsed if we have excess values */
295 if (i >= parser->local.usage_index)
296 j = parser->local.usage_index - 1;
297 field->usage[i].hid = parser->local.usage[j];
298 field->usage[i].collection_index =
299 parser->local.collection_index[j];
300 field->usage[i].usage_index = i;
303 field->maxusage = usages;
304 field->flags = flags;
305 field->report_offset = offset;
306 field->report_type = report_type;
307 field->report_size = parser->global.report_size;
308 field->report_count = parser->global.report_count;
309 field->logical_minimum = parser->global.logical_minimum;
310 field->logical_maximum = parser->global.logical_maximum;
311 field->physical_minimum = parser->global.physical_minimum;
312 field->physical_maximum = parser->global.physical_maximum;
313 field->unit_exponent = parser->global.unit_exponent;
314 field->unit = parser->global.unit;
320 * Read data value from item.
323 static u32 item_udata(struct hid_item *item)
325 switch (item->size) {
326 case 1: return item->data.u8;
327 case 2: return item->data.u16;
328 case 4: return item->data.u32;
333 static s32 item_sdata(struct hid_item *item)
335 switch (item->size) {
336 case 1: return item->data.s8;
337 case 2: return item->data.s16;
338 case 4: return item->data.s32;
344 * Process a global item.
347 static int hid_parser_global(struct hid_parser *parser, struct hid_item *item)
351 case HID_GLOBAL_ITEM_TAG_PUSH:
353 if (parser->global_stack_ptr == HID_GLOBAL_STACK_SIZE) {
354 hid_err(parser->device, "global environment stack overflow\n");
358 memcpy(parser->global_stack + parser->global_stack_ptr++,
359 &parser->global, sizeof(struct hid_global));
362 case HID_GLOBAL_ITEM_TAG_POP:
364 if (!parser->global_stack_ptr) {
365 hid_err(parser->device, "global environment stack underflow\n");
369 memcpy(&parser->global, parser->global_stack +
370 --parser->global_stack_ptr, sizeof(struct hid_global));
373 case HID_GLOBAL_ITEM_TAG_USAGE_PAGE:
374 parser->global.usage_page = item_udata(item);
377 case HID_GLOBAL_ITEM_TAG_LOGICAL_MINIMUM:
378 parser->global.logical_minimum = item_sdata(item);
381 case HID_GLOBAL_ITEM_TAG_LOGICAL_MAXIMUM:
382 if (parser->global.logical_minimum < 0)
383 parser->global.logical_maximum = item_sdata(item);
385 parser->global.logical_maximum = item_udata(item);
388 case HID_GLOBAL_ITEM_TAG_PHYSICAL_MINIMUM:
389 parser->global.physical_minimum = item_sdata(item);
392 case HID_GLOBAL_ITEM_TAG_PHYSICAL_MAXIMUM:
393 if (parser->global.physical_minimum < 0)
394 parser->global.physical_maximum = item_sdata(item);
396 parser->global.physical_maximum = item_udata(item);
399 case HID_GLOBAL_ITEM_TAG_UNIT_EXPONENT:
400 /* Many devices provide unit exponent as a two's complement
401 * nibble due to the common misunderstanding of HID
402 * specification 1.11, 6.2.2.7 Global Items. Attempt to handle
403 * both this and the standard encoding. */
404 raw_value = item_sdata(item);
405 if (!(raw_value & 0xfffffff0))
406 parser->global.unit_exponent = hid_snto32(raw_value, 4);
408 parser->global.unit_exponent = raw_value;
411 case HID_GLOBAL_ITEM_TAG_UNIT:
412 parser->global.unit = item_udata(item);
415 case HID_GLOBAL_ITEM_TAG_REPORT_SIZE:
416 parser->global.report_size = item_udata(item);
417 if (parser->global.report_size > 128) {
418 hid_err(parser->device, "invalid report_size %d\n",
419 parser->global.report_size);
424 case HID_GLOBAL_ITEM_TAG_REPORT_COUNT:
425 parser->global.report_count = item_udata(item);
426 if (parser->global.report_count > HID_MAX_USAGES) {
427 hid_err(parser->device, "invalid report_count %d\n",
428 parser->global.report_count);
433 case HID_GLOBAL_ITEM_TAG_REPORT_ID:
434 parser->global.report_id = item_udata(item);
435 if (parser->global.report_id == 0 ||
436 parser->global.report_id >= HID_MAX_IDS) {
437 hid_err(parser->device, "report_id %u is invalid\n",
438 parser->global.report_id);
444 hid_err(parser->device, "unknown global tag 0x%x\n", item->tag);
450 * Process a local item.
453 static int hid_parser_local(struct hid_parser *parser, struct hid_item *item)
459 data = item_udata(item);
462 case HID_LOCAL_ITEM_TAG_DELIMITER:
466 * We treat items before the first delimiter
467 * as global to all usage sets (branch 0).
468 * In the moment we process only these global
469 * items and the first delimiter set.
471 if (parser->local.delimiter_depth != 0) {
472 hid_err(parser->device, "nested delimiters\n");
475 parser->local.delimiter_depth++;
476 parser->local.delimiter_branch++;
478 if (parser->local.delimiter_depth < 1) {
479 hid_err(parser->device, "bogus close delimiter\n");
482 parser->local.delimiter_depth--;
486 case HID_LOCAL_ITEM_TAG_USAGE:
488 if (parser->local.delimiter_branch > 1) {
489 dbg_hid("alternative usage ignored\n");
493 return hid_add_usage(parser, data, item->size);
495 case HID_LOCAL_ITEM_TAG_USAGE_MINIMUM:
497 if (parser->local.delimiter_branch > 1) {
498 dbg_hid("alternative usage ignored\n");
502 parser->local.usage_minimum = data;
505 case HID_LOCAL_ITEM_TAG_USAGE_MAXIMUM:
507 if (parser->local.delimiter_branch > 1) {
508 dbg_hid("alternative usage ignored\n");
512 count = data - parser->local.usage_minimum;
513 if (count + parser->local.usage_index >= HID_MAX_USAGES) {
515 * We do not warn if the name is not set, we are
516 * actually pre-scanning the device.
518 if (dev_name(&parser->device->dev))
519 hid_warn(parser->device,
520 "ignoring exceeding usage max\n");
521 data = HID_MAX_USAGES - parser->local.usage_index +
522 parser->local.usage_minimum - 1;
524 hid_err(parser->device,
525 "no more usage index available\n");
530 for (n = parser->local.usage_minimum; n <= data; n++)
531 if (hid_add_usage(parser, n, item->size)) {
532 dbg_hid("hid_add_usage failed\n");
539 dbg_hid("unknown local item tag 0x%x\n", item->tag);
546 * Concatenate Usage Pages into Usages where relevant:
547 * As per specification, 6.2.2.8: "When the parser encounters a main item it
548 * concatenates the last declared Usage Page with a Usage to form a complete
552 static void hid_concatenate_last_usage_page(struct hid_parser *parser)
555 unsigned int usage_page;
556 unsigned int current_page;
558 if (!parser->local.usage_index)
561 usage_page = parser->global.usage_page;
564 * Concatenate usage page again only if last declared Usage Page
565 * has not been already used in previous usages concatenation
567 for (i = parser->local.usage_index - 1; i >= 0; i--) {
568 if (parser->local.usage_size[i] > 2)
569 /* Ignore extended usages */
572 current_page = parser->local.usage[i] >> 16;
573 if (current_page == usage_page)
576 complete_usage(parser, i);
581 * Process a main item.
584 static int hid_parser_main(struct hid_parser *parser, struct hid_item *item)
589 hid_concatenate_last_usage_page(parser);
591 data = item_udata(item);
594 case HID_MAIN_ITEM_TAG_BEGIN_COLLECTION:
595 ret = open_collection(parser, data & 0xff);
597 case HID_MAIN_ITEM_TAG_END_COLLECTION:
598 ret = close_collection(parser);
600 case HID_MAIN_ITEM_TAG_INPUT:
601 ret = hid_add_field(parser, HID_INPUT_REPORT, data);
603 case HID_MAIN_ITEM_TAG_OUTPUT:
604 ret = hid_add_field(parser, HID_OUTPUT_REPORT, data);
606 case HID_MAIN_ITEM_TAG_FEATURE:
607 ret = hid_add_field(parser, HID_FEATURE_REPORT, data);
610 hid_err(parser->device, "unknown main item tag 0x%x\n", item->tag);
614 memset(&parser->local, 0, sizeof(parser->local)); /* Reset the local parser environment */
620 * Process a reserved item.
623 static int hid_parser_reserved(struct hid_parser *parser, struct hid_item *item)
625 dbg_hid("reserved item type, tag 0x%x\n", item->tag);
630 * Free a report and all registered fields. The field->usage and
631 * field->value table's are allocated behind the field, so we need
632 * only to free(field) itself.
635 static void hid_free_report(struct hid_report *report)
639 for (n = 0; n < report->maxfield; n++)
640 kfree(report->field[n]);
645 * Close report. This function returns the device
646 * state to the point prior to hid_open_report().
648 static void hid_close_report(struct hid_device *device)
652 for (i = 0; i < HID_REPORT_TYPES; i++) {
653 struct hid_report_enum *report_enum = device->report_enum + i;
655 for (j = 0; j < HID_MAX_IDS; j++) {
656 struct hid_report *report = report_enum->report_id_hash[j];
658 hid_free_report(report);
660 memset(report_enum, 0, sizeof(*report_enum));
661 INIT_LIST_HEAD(&report_enum->report_list);
664 kfree(device->rdesc);
665 device->rdesc = NULL;
668 kfree(device->collection);
669 device->collection = NULL;
670 device->collection_size = 0;
671 device->maxcollection = 0;
672 device->maxapplication = 0;
674 device->status &= ~HID_STAT_PARSED;
678 * Free a device structure, all reports, and all fields.
681 static void hid_device_release(struct device *dev)
683 struct hid_device *hid = container_of(dev, struct hid_device, dev);
685 hid_close_report(hid);
686 kfree(hid->dev_rdesc);
691 * Fetch a report description item from the data stream. We support long
692 * items, though they are not used yet.
695 static u8 *fetch_item(__u8 *start, __u8 *end, struct hid_item *item)
699 if ((end - start) <= 0)
704 item->type = (b >> 2) & 3;
705 item->tag = (b >> 4) & 15;
707 if (item->tag == HID_ITEM_TAG_LONG) {
709 item->format = HID_ITEM_FORMAT_LONG;
711 if ((end - start) < 2)
714 item->size = *start++;
715 item->tag = *start++;
717 if ((end - start) < item->size)
720 item->data.longdata = start;
725 item->format = HID_ITEM_FORMAT_SHORT;
728 switch (item->size) {
733 if ((end - start) < 1)
735 item->data.u8 = *start++;
739 if ((end - start) < 2)
741 item->data.u16 = get_unaligned_le16(start);
742 start = (__u8 *)((__le16 *)start + 1);
747 if ((end - start) < 4)
749 item->data.u32 = get_unaligned_le32(start);
750 start = (__u8 *)((__le32 *)start + 1);
757 static void hid_scan_input_usage(struct hid_parser *parser, u32 usage)
759 struct hid_device *hid = parser->device;
761 if (usage == HID_DG_CONTACTID)
762 hid->group = HID_GROUP_MULTITOUCH;
765 static void hid_scan_feature_usage(struct hid_parser *parser, u32 usage)
767 if (usage == 0xff0000c5 && parser->global.report_count == 256 &&
768 parser->global.report_size == 8)
769 parser->scan_flags |= HID_SCAN_FLAG_MT_WIN_8;
771 if (usage == 0xff0000c6 && parser->global.report_count == 1 &&
772 parser->global.report_size == 8)
773 parser->scan_flags |= HID_SCAN_FLAG_MT_WIN_8;
776 static void hid_scan_collection(struct hid_parser *parser, unsigned type)
778 struct hid_device *hid = parser->device;
781 if (((parser->global.usage_page << 16) == HID_UP_SENSOR) &&
782 type == HID_COLLECTION_PHYSICAL)
783 hid->group = HID_GROUP_SENSOR_HUB;
785 if (hid->vendor == USB_VENDOR_ID_MICROSOFT &&
786 (hid->product == USB_DEVICE_ID_MS_TYPE_COVER_PRO_3 ||
787 hid->product == USB_DEVICE_ID_MS_TYPE_COVER_PRO_3_2 ||
788 hid->product == USB_DEVICE_ID_MS_TYPE_COVER_PRO_3_JP ||
789 hid->product == USB_DEVICE_ID_MS_TYPE_COVER_3 ||
790 hid->product == USB_DEVICE_ID_MS_POWER_COVER) &&
791 hid->group == HID_GROUP_MULTITOUCH)
792 hid->group = HID_GROUP_GENERIC;
794 if ((parser->global.usage_page << 16) == HID_UP_GENDESK)
795 for (i = 0; i < parser->local.usage_index; i++)
796 if (parser->local.usage[i] == HID_GD_POINTER)
797 parser->scan_flags |= HID_SCAN_FLAG_GD_POINTER;
799 if ((parser->global.usage_page << 16) >= HID_UP_MSVENDOR)
800 parser->scan_flags |= HID_SCAN_FLAG_VENDOR_SPECIFIC;
803 static int hid_scan_main(struct hid_parser *parser, struct hid_item *item)
808 hid_concatenate_last_usage_page(parser);
810 data = item_udata(item);
813 case HID_MAIN_ITEM_TAG_BEGIN_COLLECTION:
814 hid_scan_collection(parser, data & 0xff);
816 case HID_MAIN_ITEM_TAG_END_COLLECTION:
818 case HID_MAIN_ITEM_TAG_INPUT:
819 /* ignore constant inputs, they will be ignored by hid-input */
820 if (data & HID_MAIN_ITEM_CONSTANT)
822 for (i = 0; i < parser->local.usage_index; i++)
823 hid_scan_input_usage(parser, parser->local.usage[i]);
825 case HID_MAIN_ITEM_TAG_OUTPUT:
827 case HID_MAIN_ITEM_TAG_FEATURE:
828 for (i = 0; i < parser->local.usage_index; i++)
829 hid_scan_feature_usage(parser, parser->local.usage[i]);
833 /* Reset the local parser environment */
834 memset(&parser->local, 0, sizeof(parser->local));
840 * Scan a report descriptor before the device is added to the bus.
841 * Sets device groups and other properties that determine what driver
844 static int hid_scan_report(struct hid_device *hid)
846 struct hid_parser *parser;
847 struct hid_item item;
848 __u8 *start = hid->dev_rdesc;
849 __u8 *end = start + hid->dev_rsize;
850 static int (*dispatch_type[])(struct hid_parser *parser,
851 struct hid_item *item) = {
858 parser = vzalloc(sizeof(struct hid_parser));
862 parser->device = hid;
863 hid->group = HID_GROUP_GENERIC;
866 * The parsing is simpler than the one in hid_open_report() as we should
867 * be robust against hid errors. Those errors will be raised by
868 * hid_open_report() anyway.
870 while ((start = fetch_item(start, end, &item)) != NULL)
871 dispatch_type[item.type](parser, &item);
874 * Handle special flags set during scanning.
876 if ((parser->scan_flags & HID_SCAN_FLAG_MT_WIN_8) &&
877 (hid->group == HID_GROUP_MULTITOUCH))
878 hid->group = HID_GROUP_MULTITOUCH_WIN_8;
881 * Vendor specific handlings
883 switch (hid->vendor) {
884 case USB_VENDOR_ID_WACOM:
885 hid->group = HID_GROUP_WACOM;
887 case USB_VENDOR_ID_SYNAPTICS:
888 if (hid->group == HID_GROUP_GENERIC)
889 if ((parser->scan_flags & HID_SCAN_FLAG_VENDOR_SPECIFIC)
890 && (parser->scan_flags & HID_SCAN_FLAG_GD_POINTER))
892 * hid-rmi should take care of them,
895 hid->group = HID_GROUP_RMI;
904 * hid_parse_report - parse device report
906 * @device: hid device
907 * @start: report start
910 * Allocate the device report as read by the bus driver. This function should
911 * only be called from parse() in ll drivers.
913 int hid_parse_report(struct hid_device *hid, __u8 *start, unsigned size)
915 hid->dev_rdesc = kmemdup(start, size, GFP_KERNEL);
918 hid->dev_rsize = size;
921 EXPORT_SYMBOL_GPL(hid_parse_report);
923 static const char * const hid_report_names[] = {
926 "HID_FEATURE_REPORT",
929 * hid_validate_values - validate existing device report's value indexes
931 * @device: hid device
932 * @type: which report type to examine
933 * @id: which report ID to examine (0 for first)
934 * @field_index: which report field to examine
935 * @report_counts: expected number of values
937 * Validate the number of values in a given field of a given report, after
940 struct hid_report *hid_validate_values(struct hid_device *hid,
941 unsigned int type, unsigned int id,
942 unsigned int field_index,
943 unsigned int report_counts)
945 struct hid_report *report;
947 if (type > HID_FEATURE_REPORT) {
948 hid_err(hid, "invalid HID report type %u\n", type);
952 if (id >= HID_MAX_IDS) {
953 hid_err(hid, "invalid HID report id %u\n", id);
958 * Explicitly not using hid_get_report() here since it depends on
959 * ->numbered being checked, which may not always be the case when
960 * drivers go to access report values.
964 * Validating on id 0 means we should examine the first
965 * report in the list.
968 hid->report_enum[type].report_list.next,
969 struct hid_report, list);
971 report = hid->report_enum[type].report_id_hash[id];
974 hid_err(hid, "missing %s %u\n", hid_report_names[type], id);
977 if (report->maxfield <= field_index) {
978 hid_err(hid, "not enough fields in %s %u\n",
979 hid_report_names[type], id);
982 if (report->field[field_index]->report_count < report_counts) {
983 hid_err(hid, "not enough values in %s %u field %u\n",
984 hid_report_names[type], id, field_index);
989 EXPORT_SYMBOL_GPL(hid_validate_values);
992 * hid_open_report - open a driver-specific device report
994 * @device: hid device
996 * Parse a report description into a hid_device structure. Reports are
997 * enumerated, fields are attached to these reports.
998 * 0 returned on success, otherwise nonzero error value.
1000 * This function (or the equivalent hid_parse() macro) should only be
1001 * called from probe() in drivers, before starting the device.
1003 int hid_open_report(struct hid_device *device)
1005 struct hid_parser *parser;
1006 struct hid_item item;
1013 static int (*dispatch_type[])(struct hid_parser *parser,
1014 struct hid_item *item) = {
1021 if (WARN_ON(device->status & HID_STAT_PARSED))
1024 start = device->dev_rdesc;
1025 if (WARN_ON(!start))
1027 size = device->dev_rsize;
1029 buf = kmemdup(start, size, GFP_KERNEL);
1033 if (device->driver->report_fixup)
1034 start = device->driver->report_fixup(device, buf, &size);
1038 start = kmemdup(start, size, GFP_KERNEL);
1043 device->rdesc = start;
1044 device->rsize = size;
1046 parser = vzalloc(sizeof(struct hid_parser));
1052 parser->device = device;
1056 device->collection = kcalloc(HID_DEFAULT_NUM_COLLECTIONS,
1057 sizeof(struct hid_collection), GFP_KERNEL);
1058 if (!device->collection) {
1062 device->collection_size = HID_DEFAULT_NUM_COLLECTIONS;
1065 while ((next = fetch_item(start, end, &item)) != NULL) {
1068 if (item.format != HID_ITEM_FORMAT_SHORT) {
1069 hid_err(device, "unexpected long global item\n");
1073 if (dispatch_type[item.type](parser, &item)) {
1074 hid_err(device, "item %u %u %u %u parsing failed\n",
1075 item.format, (unsigned)item.size,
1076 (unsigned)item.type, (unsigned)item.tag);
1081 if (parser->collection_stack_ptr) {
1082 hid_err(device, "unbalanced collection at end of report description\n");
1085 if (parser->local.delimiter_depth) {
1086 hid_err(device, "unbalanced delimiter at end of report description\n");
1090 device->status |= HID_STAT_PARSED;
1095 hid_err(device, "item fetching failed at offset %u/%u\n",
1096 size - (unsigned int)(end - start), size);
1099 hid_close_report(device);
1102 EXPORT_SYMBOL_GPL(hid_open_report);
1105 * Convert a signed n-bit integer to signed 32-bit integer. Common
1106 * cases are done through the compiler, the screwed things has to be
1110 static s32 snto32(__u32 value, unsigned n)
1116 case 8: return ((__s8)value);
1117 case 16: return ((__s16)value);
1118 case 32: return ((__s32)value);
1120 return value & (1 << (n - 1)) ? value | (-1 << n) : value;
1123 s32 hid_snto32(__u32 value, unsigned n)
1125 return snto32(value, n);
1127 EXPORT_SYMBOL_GPL(hid_snto32);
1130 * Convert a signed 32-bit integer to a signed n-bit integer.
1133 static u32 s32ton(__s32 value, unsigned n)
1135 s32 a = value >> (n - 1);
1137 return value < 0 ? 1 << (n - 1) : (1 << (n - 1)) - 1;
1138 return value & ((1 << n) - 1);
1142 * Extract/implement a data field from/to a little endian report (bit array).
1144 * Code sort-of follows HID spec:
1145 * http://www.usb.org/developers/devclass_docs/HID1_11.pdf
1147 * While the USB HID spec allows unlimited length bit fields in "report
1148 * descriptors", most devices never use more than 16 bits.
1149 * One model of UPS is claimed to report "LINEV" as a 32-bit field.
1150 * Search linux-kernel and linux-usb-devel archives for "hid-core extract".
1153 __u32 hid_field_extract(const struct hid_device *hid, __u8 *report,
1154 unsigned offset, unsigned n)
1159 hid_warn(hid, "hid_field_extract() called with n (%d) > 32! (%s)\n",
1162 report += offset >> 3; /* adjust byte index */
1163 offset &= 7; /* now only need bit offset into one byte */
1164 x = get_unaligned_le64(report);
1165 x = (x >> offset) & ((1ULL << n) - 1); /* extract bit field */
1168 EXPORT_SYMBOL_GPL(hid_field_extract);
1171 * "implement" : set bits in a little endian bit stream.
1172 * Same concepts as "extract" (see comments above).
1173 * The data mangled in the bit stream remains in little endian
1174 * order the whole time. It make more sense to talk about
1175 * endianness of register values by considering a register
1176 * a "cached" copy of the little endiad bit stream.
1178 static void implement(const struct hid_device *hid, __u8 *report,
1179 unsigned offset, unsigned n, __u32 value)
1182 u64 m = (1ULL << n) - 1;
1185 hid_warn(hid, "%s() called with n (%d) > 32! (%s)\n",
1186 __func__, n, current->comm);
1189 hid_warn(hid, "%s() called with too large value %d! (%s)\n",
1190 __func__, value, current->comm);
1194 report += offset >> 3;
1197 x = get_unaligned_le64(report);
1198 x &= ~(m << offset);
1199 x |= ((u64)value) << offset;
1200 put_unaligned_le64(x, report);
1204 * Search an array for a value.
1207 static int search(__s32 *array, __s32 value, unsigned n)
1210 if (*array++ == value)
1217 * hid_match_report - check if driver's raw_event should be called
1220 * @report_type: type to match against
1222 * compare hid->driver->report_table->report_type to report->type
1224 static int hid_match_report(struct hid_device *hid, struct hid_report *report)
1226 const struct hid_report_id *id = hid->driver->report_table;
1228 if (!id) /* NULL means all */
1231 for (; id->report_type != HID_TERMINATOR; id++)
1232 if (id->report_type == HID_ANY_ID ||
1233 id->report_type == report->type)
1239 * hid_match_usage - check if driver's event should be called
1242 * @usage: usage to match against
1244 * compare hid->driver->usage_table->usage_{type,code} to
1245 * usage->usage_{type,code}
1247 static int hid_match_usage(struct hid_device *hid, struct hid_usage *usage)
1249 const struct hid_usage_id *id = hid->driver->usage_table;
1251 if (!id) /* NULL means all */
1254 for (; id->usage_type != HID_ANY_ID - 1; id++)
1255 if ((id->usage_hid == HID_ANY_ID ||
1256 id->usage_hid == usage->hid) &&
1257 (id->usage_type == HID_ANY_ID ||
1258 id->usage_type == usage->type) &&
1259 (id->usage_code == HID_ANY_ID ||
1260 id->usage_code == usage->code))
1265 static void hid_process_event(struct hid_device *hid, struct hid_field *field,
1266 struct hid_usage *usage, __s32 value, int interrupt)
1268 struct hid_driver *hdrv = hid->driver;
1271 if (!list_empty(&hid->debug_list))
1272 hid_dump_input(hid, usage, value);
1274 if (hdrv && hdrv->event && hid_match_usage(hid, usage)) {
1275 ret = hdrv->event(hid, field, usage, value);
1278 hid_err(hid, "%s's event failed with %d\n",
1284 if (hid->claimed & HID_CLAIMED_INPUT)
1285 hidinput_hid_event(hid, field, usage, value);
1286 if (hid->claimed & HID_CLAIMED_HIDDEV && interrupt && hid->hiddev_hid_event)
1287 hid->hiddev_hid_event(hid, field, usage, value);
1291 * Analyse a received field, and fetch the data from it. The field
1292 * content is stored for next report processing (we do differential
1293 * reporting to the layer).
1296 static void hid_input_field(struct hid_device *hid, struct hid_field *field,
1297 __u8 *data, int interrupt)
1300 unsigned count = field->report_count;
1301 unsigned offset = field->report_offset;
1302 unsigned size = field->report_size;
1303 __s32 min = field->logical_minimum;
1304 __s32 max = field->logical_maximum;
1307 value = kmalloc(sizeof(__s32) * count, GFP_ATOMIC);
1311 for (n = 0; n < count; n++) {
1313 value[n] = min < 0 ?
1314 snto32(hid_field_extract(hid, data, offset + n * size,
1316 hid_field_extract(hid, data, offset + n * size, size);
1318 /* Ignore report if ErrorRollOver */
1319 if (!(field->flags & HID_MAIN_ITEM_VARIABLE) &&
1320 value[n] >= min && value[n] <= max &&
1321 value[n] - min < field->maxusage &&
1322 field->usage[value[n] - min].hid == HID_UP_KEYBOARD + 1)
1326 for (n = 0; n < count; n++) {
1328 if (HID_MAIN_ITEM_VARIABLE & field->flags) {
1329 hid_process_event(hid, field, &field->usage[n], value[n], interrupt);
1333 if (field->value[n] >= min && field->value[n] <= max
1334 && field->value[n] - min < field->maxusage
1335 && field->usage[field->value[n] - min].hid
1336 && search(value, field->value[n], count))
1337 hid_process_event(hid, field, &field->usage[field->value[n] - min], 0, interrupt);
1339 if (value[n] >= min && value[n] <= max
1340 && value[n] - min < field->maxusage
1341 && field->usage[value[n] - min].hid
1342 && search(field->value, value[n], count))
1343 hid_process_event(hid, field, &field->usage[value[n] - min], 1, interrupt);
1346 memcpy(field->value, value, count * sizeof(__s32));
1352 * Output the field into the report.
1355 static void hid_output_field(const struct hid_device *hid,
1356 struct hid_field *field, __u8 *data)
1358 unsigned count = field->report_count;
1359 unsigned offset = field->report_offset;
1360 unsigned size = field->report_size;
1363 for (n = 0; n < count; n++) {
1364 if (field->logical_minimum < 0) /* signed values */
1365 implement(hid, data, offset + n * size, size,
1366 s32ton(field->value[n], size));
1367 else /* unsigned values */
1368 implement(hid, data, offset + n * size, size,
1374 * Compute the size of a report.
1376 static size_t hid_compute_report_size(struct hid_report *report)
1379 return ((report->size - 1) >> 3) + 1;
1385 * Create a report. 'data' has to be allocated using
1386 * hid_alloc_report_buf() so that it has proper size.
1389 void hid_output_report(struct hid_report *report, __u8 *data)
1394 *data++ = report->id;
1396 memset(data, 0, hid_compute_report_size(report));
1397 for (n = 0; n < report->maxfield; n++)
1398 hid_output_field(report->device, report->field[n], data);
1400 EXPORT_SYMBOL_GPL(hid_output_report);
1403 * Allocator for buffer that is going to be passed to hid_output_report()
1405 u8 *hid_alloc_report_buf(struct hid_report *report, gfp_t flags)
1408 * 7 extra bytes are necessary to achieve proper functionality
1409 * of implement() working on 8 byte chunks
1412 u32 len = hid_report_len(report) + 7;
1414 return kmalloc(len, flags);
1416 EXPORT_SYMBOL_GPL(hid_alloc_report_buf);
1419 * Set a field value. The report this field belongs to has to be
1420 * created and transferred to the device, to set this value in the
1424 int hid_set_field(struct hid_field *field, unsigned offset, __s32 value)
1431 size = field->report_size;
1433 hid_dump_input(field->report->device, field->usage + offset, value);
1435 if (offset >= field->report_count) {
1436 hid_err(field->report->device, "offset (%d) exceeds report_count (%d)\n",
1437 offset, field->report_count);
1440 if (field->logical_minimum < 0) {
1441 if (value != snto32(s32ton(value, size), size)) {
1442 hid_err(field->report->device, "value %d is out of range\n", value);
1446 field->value[offset] = value;
1449 EXPORT_SYMBOL_GPL(hid_set_field);
1451 static struct hid_report *hid_get_report(struct hid_report_enum *report_enum,
1454 struct hid_report *report;
1455 unsigned int n = 0; /* Normally report number is 0 */
1457 /* Device uses numbered reports, data[0] is report number */
1458 if (report_enum->numbered)
1461 report = report_enum->report_id_hash[n];
1463 dbg_hid("undefined report_id %u received\n", n);
1469 * Implement a generic .request() callback, using .raw_request()
1470 * DO NOT USE in hid drivers directly, but through hid_hw_request instead.
1472 void __hid_request(struct hid_device *hid, struct hid_report *report,
1479 buf = hid_alloc_report_buf(report, GFP_KERNEL);
1483 len = hid_report_len(report);
1485 if (reqtype == HID_REQ_SET_REPORT)
1486 hid_output_report(report, buf);
1488 ret = hid->ll_driver->raw_request(hid, report->id, buf, len,
1489 report->type, reqtype);
1491 dbg_hid("unable to complete request: %d\n", ret);
1495 if (reqtype == HID_REQ_GET_REPORT)
1496 hid_input_report(hid, report->type, buf, ret, 0);
1501 EXPORT_SYMBOL_GPL(__hid_request);
1503 int hid_report_raw_event(struct hid_device *hid, int type, u8 *data, u32 size,
1506 struct hid_report_enum *report_enum = hid->report_enum + type;
1507 struct hid_report *report;
1508 struct hid_driver *hdrv;
1510 u32 rsize, csize = size;
1514 report = hid_get_report(report_enum, data);
1518 if (report_enum->numbered) {
1523 rsize = hid_compute_report_size(report);
1525 if (report_enum->numbered && rsize >= HID_MAX_BUFFER_SIZE)
1526 rsize = HID_MAX_BUFFER_SIZE - 1;
1527 else if (rsize > HID_MAX_BUFFER_SIZE)
1528 rsize = HID_MAX_BUFFER_SIZE;
1530 if (csize < rsize) {
1531 dbg_hid("report %d is too short, (%d < %d)\n", report->id,
1533 memset(cdata + csize, 0, rsize - csize);
1536 if ((hid->claimed & HID_CLAIMED_HIDDEV) && hid->hiddev_report_event)
1537 hid->hiddev_report_event(hid, report);
1538 if (hid->claimed & HID_CLAIMED_HIDRAW) {
1539 ret = hidraw_report_event(hid, data, size);
1544 if (hid->claimed != HID_CLAIMED_HIDRAW && report->maxfield) {
1545 for (a = 0; a < report->maxfield; a++)
1546 hid_input_field(hid, report->field[a], cdata, interrupt);
1548 if (hdrv && hdrv->report)
1549 hdrv->report(hid, report);
1552 if (hid->claimed & HID_CLAIMED_INPUT)
1553 hidinput_report_event(hid, report);
1557 EXPORT_SYMBOL_GPL(hid_report_raw_event);
1560 * hid_input_report - report data from lower layer (usb, bt...)
1563 * @type: HID report type (HID_*_REPORT)
1564 * @data: report contents
1565 * @size: size of data parameter
1566 * @interrupt: distinguish between interrupt and control transfers
1568 * This is data entry for lower layers.
1570 int hid_input_report(struct hid_device *hid, int type, u8 *data, u32 size, int interrupt)
1572 struct hid_report_enum *report_enum;
1573 struct hid_driver *hdrv;
1574 struct hid_report *report;
1580 if (down_trylock(&hid->driver_input_lock))
1587 report_enum = hid->report_enum + type;
1591 dbg_hid("empty report\n");
1596 /* Avoid unnecessary overhead if debugfs is disabled */
1597 if (!list_empty(&hid->debug_list))
1598 hid_dump_report(hid, type, data, size);
1600 report = hid_get_report(report_enum, data);
1607 if (hdrv && hdrv->raw_event && hid_match_report(hid, report)) {
1608 ret = hdrv->raw_event(hid, report, data, size);
1613 ret = hid_report_raw_event(hid, type, data, size, interrupt);
1616 up(&hid->driver_input_lock);
1619 EXPORT_SYMBOL_GPL(hid_input_report);
1621 static bool hid_match_one_id(struct hid_device *hdev,
1622 const struct hid_device_id *id)
1624 return (id->bus == HID_BUS_ANY || id->bus == hdev->bus) &&
1625 (id->group == HID_GROUP_ANY || id->group == hdev->group) &&
1626 (id->vendor == HID_ANY_ID || id->vendor == hdev->vendor) &&
1627 (id->product == HID_ANY_ID || id->product == hdev->product);
1630 const struct hid_device_id *hid_match_id(struct hid_device *hdev,
1631 const struct hid_device_id *id)
1633 for (; id->bus; id++)
1634 if (hid_match_one_id(hdev, id))
1640 static const struct hid_device_id hid_hiddev_list[] = {
1641 { HID_USB_DEVICE(USB_VENDOR_ID_MGE, USB_DEVICE_ID_MGE_UPS) },
1642 { HID_USB_DEVICE(USB_VENDOR_ID_MGE, USB_DEVICE_ID_MGE_UPS1) },
1646 static bool hid_hiddev(struct hid_device *hdev)
1648 return !!hid_match_id(hdev, hid_hiddev_list);
1653 read_report_descriptor(struct file *filp, struct kobject *kobj,
1654 struct bin_attribute *attr,
1655 char *buf, loff_t off, size_t count)
1657 struct device *dev = container_of(kobj, struct device, kobj);
1658 struct hid_device *hdev = container_of(dev, struct hid_device, dev);
1660 if (off >= hdev->rsize)
1663 if (off + count > hdev->rsize)
1664 count = hdev->rsize - off;
1666 memcpy(buf, hdev->rdesc + off, count);
1672 show_country(struct device *dev, struct device_attribute *attr,
1675 struct hid_device *hdev = container_of(dev, struct hid_device, dev);
1677 return sprintf(buf, "%02x\n", hdev->country & 0xff);
1680 static struct bin_attribute dev_bin_attr_report_desc = {
1681 .attr = { .name = "report_descriptor", .mode = 0444 },
1682 .read = read_report_descriptor,
1683 .size = HID_MAX_DESCRIPTOR_SIZE,
1686 static struct device_attribute dev_attr_country = {
1687 .attr = { .name = "country", .mode = 0444 },
1688 .show = show_country,
1691 int hid_connect(struct hid_device *hdev, unsigned int connect_mask)
1693 static const char *types[] = { "Device", "Pointer", "Mouse", "Device",
1694 "Joystick", "Gamepad", "Keyboard", "Keypad",
1695 "Multi-Axis Controller"
1697 const char *type, *bus;
1703 if (hdev->quirks & HID_QUIRK_HIDDEV_FORCE)
1704 connect_mask |= (HID_CONNECT_HIDDEV_FORCE | HID_CONNECT_HIDDEV);
1705 if (hdev->quirks & HID_QUIRK_HIDINPUT_FORCE)
1706 connect_mask |= HID_CONNECT_HIDINPUT_FORCE;
1707 if (hdev->bus != BUS_USB)
1708 connect_mask &= ~HID_CONNECT_HIDDEV;
1709 if (hid_hiddev(hdev))
1710 connect_mask |= HID_CONNECT_HIDDEV_FORCE;
1712 if ((connect_mask & HID_CONNECT_HIDINPUT) && !hidinput_connect(hdev,
1713 connect_mask & HID_CONNECT_HIDINPUT_FORCE))
1714 hdev->claimed |= HID_CLAIMED_INPUT;
1716 if ((connect_mask & HID_CONNECT_HIDDEV) && hdev->hiddev_connect &&
1717 !hdev->hiddev_connect(hdev,
1718 connect_mask & HID_CONNECT_HIDDEV_FORCE))
1719 hdev->claimed |= HID_CLAIMED_HIDDEV;
1720 if ((connect_mask & HID_CONNECT_HIDRAW) && !hidraw_connect(hdev))
1721 hdev->claimed |= HID_CLAIMED_HIDRAW;
1723 if (connect_mask & HID_CONNECT_DRIVER)
1724 hdev->claimed |= HID_CLAIMED_DRIVER;
1726 /* Drivers with the ->raw_event callback set are not required to connect
1727 * to any other listener. */
1728 if (!hdev->claimed && !hdev->driver->raw_event) {
1729 hid_err(hdev, "device has no listeners, quitting\n");
1733 if ((hdev->claimed & HID_CLAIMED_INPUT) &&
1734 (connect_mask & HID_CONNECT_FF) && hdev->ff_init)
1735 hdev->ff_init(hdev);
1738 if (hdev->claimed & HID_CLAIMED_INPUT)
1739 len += sprintf(buf + len, "input");
1740 if (hdev->claimed & HID_CLAIMED_HIDDEV)
1741 len += sprintf(buf + len, "%shiddev%d", len ? "," : "",
1743 if (hdev->claimed & HID_CLAIMED_HIDRAW)
1744 len += sprintf(buf + len, "%shidraw%d", len ? "," : "",
1745 ((struct hidraw *)hdev->hidraw)->minor);
1748 for (i = 0; i < hdev->maxcollection; i++) {
1749 struct hid_collection *col = &hdev->collection[i];
1750 if (col->type == HID_COLLECTION_APPLICATION &&
1751 (col->usage & HID_USAGE_PAGE) == HID_UP_GENDESK &&
1752 (col->usage & 0xffff) < ARRAY_SIZE(types)) {
1753 type = types[col->usage & 0xffff];
1758 switch (hdev->bus) {
1775 ret = device_create_file(&hdev->dev, &dev_attr_country);
1778 "can't create sysfs country code attribute err: %d\n", ret);
1780 ret = device_create_bin_file(&hdev->dev, &dev_bin_attr_report_desc);
1783 "can't create sysfs report descriptor attribute err: %d\n", ret);
1785 hid_info(hdev, "%s: %s HID v%x.%02x %s [%s] on %s\n",
1786 buf, bus, hdev->version >> 8, hdev->version & 0xff,
1787 type, hdev->name, hdev->phys);
1791 EXPORT_SYMBOL_GPL(hid_connect);
1793 void hid_disconnect(struct hid_device *hdev)
1795 device_remove_file(&hdev->dev, &dev_attr_country);
1796 device_remove_bin_file(&hdev->dev, &dev_bin_attr_report_desc);
1797 if (hdev->claimed & HID_CLAIMED_INPUT)
1798 hidinput_disconnect(hdev);
1799 if (hdev->claimed & HID_CLAIMED_HIDDEV)
1800 hdev->hiddev_disconnect(hdev);
1801 if (hdev->claimed & HID_CLAIMED_HIDRAW)
1802 hidraw_disconnect(hdev);
1805 EXPORT_SYMBOL_GPL(hid_disconnect);
1808 * A list of devices for which there is a specialized driver on HID bus.
1810 * Please note that for multitouch devices (driven by hid-multitouch driver),
1811 * there is a proper autodetection and autoloading in place (based on presence
1812 * of HID_DG_CONTACTID), so those devices don't need to be added to this list,
1813 * as we are doing the right thing in hid_scan_usage().
1815 * Autodetection for (USB) HID sensor hubs exists too. If a collection of type
1816 * physical is found inside a usage page of type sensor, hid-sensor-hub will be
1817 * used as a driver. See hid_scan_report().
1819 static const struct hid_device_id hid_have_special_driver[] = {
1820 { HID_USB_DEVICE(USB_VENDOR_ID_A4TECH, USB_DEVICE_ID_A4TECH_WCP32PU) },
1821 { HID_USB_DEVICE(USB_VENDOR_ID_A4TECH, USB_DEVICE_ID_A4TECH_X5_005D) },
1822 { HID_USB_DEVICE(USB_VENDOR_ID_A4TECH, USB_DEVICE_ID_A4TECH_RP_649) },
1823 { HID_USB_DEVICE(USB_VENDOR_ID_ACRUX, 0x0802) },
1824 { HID_USB_DEVICE(USB_VENDOR_ID_ACRUX, 0xf705) },
1825 { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_MIGHTYMOUSE) },
1826 { HID_BLUETOOTH_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_MAGICMOUSE) },
1827 { HID_BLUETOOTH_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_MAGICTRACKPAD) },
1828 { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_FOUNTAIN_ANSI) },
1829 { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_FOUNTAIN_ISO) },
1830 { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_GEYSER_ANSI) },
1831 { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_GEYSER_ISO) },
1832 { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_GEYSER_JIS) },
1833 { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_GEYSER3_ANSI) },
1834 { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_GEYSER3_ISO) },
1835 { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_GEYSER3_JIS) },
1836 { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_GEYSER4_ANSI) },
1837 { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_GEYSER4_ISO) },
1838 { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_GEYSER4_JIS) },
1839 { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_ALU_MINI_ANSI) },
1840 { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_ALU_MINI_ISO) },
1841 { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_ALU_MINI_JIS) },
1842 { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_ALU_ANSI) },
1843 { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_ALU_ISO) },
1844 { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_ALU_JIS) },
1845 { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_GEYSER4_HF_ANSI) },
1846 { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_GEYSER4_HF_ISO) },
1847 { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_GEYSER4_HF_JIS) },
1848 { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_IRCONTROL) },
1849 { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_IRCONTROL2) },
1850 { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_IRCONTROL3) },
1851 { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_IRCONTROL4) },
1852 { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_IRCONTROL5) },
1853 { HID_BLUETOOTH_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_ALU_WIRELESS_ANSI) },
1854 { HID_BLUETOOTH_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_ALU_WIRELESS_ISO) },
1855 { HID_BLUETOOTH_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_ALU_WIRELESS_JIS) },
1856 { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING_ANSI) },
1857 { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING_ISO) },
1858 { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING_JIS) },
1859 { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING2_ANSI) },
1860 { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING2_ISO) },
1861 { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING2_JIS) },
1862 { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING3_ANSI) },
1863 { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING3_ISO) },
1864 { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING3_JIS) },
1865 { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING4_ANSI) },
1866 { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING4_ISO) },
1867 { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING4_JIS) },
1868 { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING4A_ANSI) },
1869 { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING4A_ISO) },
1870 { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING4A_JIS) },
1871 { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING5_ANSI) },
1872 { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING5_ISO) },
1873 { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING5_JIS) },
1874 { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING5A_ANSI) },
1875 { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING5A_ISO) },
1876 { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING5A_JIS) },
1877 { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_ALU_REVB_ANSI) },
1878 { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_ALU_REVB_ISO) },
1879 { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_ALU_REVB_JIS) },
1880 { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING6_ANSI) },
1881 { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING6_ISO) },
1882 { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING6_JIS) },
1883 { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING6A_ANSI) },
1884 { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING6A_ISO) },
1885 { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING6A_JIS) },
1886 { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING7_ANSI) },
1887 { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING7_ISO) },
1888 { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING7_JIS) },
1889 { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING7A_ANSI) },
1890 { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING7A_ISO) },
1891 { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING7A_JIS) },
1892 { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING8_ANSI) },
1893 { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING8_ISO) },
1894 { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING8_JIS) },
1895 { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING9_ANSI) },
1896 { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING9_ISO) },
1897 { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING9_JIS) },
1898 { HID_BLUETOOTH_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_ALU_WIRELESS_2009_ANSI) },
1899 { HID_BLUETOOTH_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_ALU_WIRELESS_2009_ISO) },
1900 { HID_BLUETOOTH_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_ALU_WIRELESS_2009_JIS) },
1901 { HID_BLUETOOTH_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_ALU_WIRELESS_2011_ANSI) },
1902 { HID_BLUETOOTH_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_ALU_WIRELESS_2011_ISO) },
1903 { HID_BLUETOOTH_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_ALU_WIRELESS_2011_JIS) },
1904 { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_FOUNTAIN_TP_ONLY) },
1905 { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_GEYSER1_TP_ONLY) },
1906 { HID_USB_DEVICE(USB_VENDOR_ID_AUREAL, USB_DEVICE_ID_AUREAL_W01RN) },
1907 { HID_USB_DEVICE(USB_VENDOR_ID_BELKIN, USB_DEVICE_ID_FLIP_KVM) },
1908 { HID_USB_DEVICE(USB_VENDOR_ID_BETOP_2185BFM, 0x2208) },
1909 { HID_USB_DEVICE(USB_VENDOR_ID_BETOP_2185PC, 0x5506) },
1910 { HID_USB_DEVICE(USB_VENDOR_ID_BETOP_2185V2PC, 0x1850) },
1911 { HID_USB_DEVICE(USB_VENDOR_ID_BETOP_2185V2BFM, 0x5500) },
1912 { HID_USB_DEVICE(USB_VENDOR_ID_BTC, USB_DEVICE_ID_BTC_EMPREX_REMOTE) },
1913 { HID_USB_DEVICE(USB_VENDOR_ID_BTC, USB_DEVICE_ID_BTC_EMPREX_REMOTE_2) },
1914 { HID_USB_DEVICE(USB_VENDOR_ID_CHERRY, USB_DEVICE_ID_CHERRY_CYMOTION) },
1915 { HID_USB_DEVICE(USB_VENDOR_ID_CHERRY, USB_DEVICE_ID_CHERRY_CYMOTION_SOLAR) },
1916 { HID_USB_DEVICE(USB_VENDOR_ID_CHICONY, USB_DEVICE_ID_CHICONY_TACTICAL_PAD) },
1917 { HID_USB_DEVICE(USB_VENDOR_ID_CHICONY, USB_DEVICE_ID_CHICONY_WIRELESS) },
1918 { HID_USB_DEVICE(USB_VENDOR_ID_CHICONY, USB_DEVICE_ID_CHICONY_WIRELESS2) },
1919 { HID_USB_DEVICE(USB_VENDOR_ID_CHICONY, USB_DEVICE_ID_CHICONY_AK1D) },
1920 { HID_USB_DEVICE(USB_VENDOR_ID_CHICONY, USB_DEVICE_ID_CHICONY_ACER_SWITCH12) },
1921 { HID_USB_DEVICE(USB_VENDOR_ID_CORSAIR, USB_DEVICE_ID_CORSAIR_K90) },
1922 { HID_USB_DEVICE(USB_VENDOR_ID_CREATIVELABS, USB_DEVICE_ID_PRODIKEYS_PCMIDI) },
1923 { HID_USB_DEVICE(USB_VENDOR_ID_CYGNAL, USB_DEVICE_ID_CYGNAL_CP2112) },
1924 { HID_USB_DEVICE(USB_VENDOR_ID_CYPRESS, USB_DEVICE_ID_CYPRESS_BARCODE_1) },
1925 { HID_USB_DEVICE(USB_VENDOR_ID_CYPRESS, USB_DEVICE_ID_CYPRESS_BARCODE_2) },
1926 { HID_USB_DEVICE(USB_VENDOR_ID_CYPRESS, USB_DEVICE_ID_CYPRESS_BARCODE_3) },
1927 { HID_USB_DEVICE(USB_VENDOR_ID_CYPRESS, USB_DEVICE_ID_CYPRESS_BARCODE_4) },
1928 { HID_USB_DEVICE(USB_VENDOR_ID_CYPRESS, USB_DEVICE_ID_CYPRESS_MOUSE) },
1929 { HID_USB_DEVICE(USB_VENDOR_ID_DRAGONRISE, 0x0006) },
1930 { HID_USB_DEVICE(USB_VENDOR_ID_DRAGONRISE, 0x0011) },
1931 { HID_BLUETOOTH_DEVICE(USB_VENDOR_ID_ELECOM, USB_DEVICE_ID_ELECOM_BM084) },
1932 { HID_USB_DEVICE(USB_VENDOR_ID_ELO, 0x0009) },
1933 { HID_USB_DEVICE(USB_VENDOR_ID_ELO, 0x0030) },
1934 { HID_USB_DEVICE(USB_VENDOR_ID_EMS, USB_DEVICE_ID_EMS_TRIO_LINKER_PLUS_II) },
1935 { HID_USB_DEVICE(USB_VENDOR_ID_EZKEY, USB_DEVICE_ID_BTC_8193) },
1936 { HID_USB_DEVICE(USB_VENDOR_ID_GAMERON, USB_DEVICE_ID_GAMERON_DUAL_PSX_ADAPTOR) },
1937 { HID_USB_DEVICE(USB_VENDOR_ID_GAMERON, USB_DEVICE_ID_GAMERON_DUAL_PCS_ADAPTOR) },
1938 { HID_USB_DEVICE(USB_VENDOR_ID_GEMBIRD, USB_DEVICE_ID_GEMBIRD_JPD_DUALFORCE2) },
1939 { HID_USB_DEVICE(USB_VENDOR_ID_GREENASIA, 0x0003) },
1940 { HID_USB_DEVICE(USB_VENDOR_ID_GREENASIA, 0x0012) },
1941 { HID_USB_DEVICE(USB_VENDOR_ID_GYRATION, USB_DEVICE_ID_GYRATION_REMOTE) },
1942 { HID_USB_DEVICE(USB_VENDOR_ID_GYRATION, USB_DEVICE_ID_GYRATION_REMOTE_2) },
1943 { HID_USB_DEVICE(USB_VENDOR_ID_GYRATION, USB_DEVICE_ID_GYRATION_REMOTE_3) },
1944 { HID_USB_DEVICE(USB_VENDOR_ID_HOLTEK, USB_DEVICE_ID_HOLTEK_ON_LINE_GRIP) },
1945 { HID_USB_DEVICE(USB_VENDOR_ID_HOLTEK_ALT, USB_DEVICE_ID_HOLTEK_ALT_KEYBOARD) },
1946 { HID_USB_DEVICE(USB_VENDOR_ID_HOLTEK_ALT, USB_DEVICE_ID_HOLTEK_ALT_MOUSE_A04A) },
1947 { HID_USB_DEVICE(USB_VENDOR_ID_HOLTEK_ALT, USB_DEVICE_ID_HOLTEK_ALT_MOUSE_A067) },
1948 { HID_USB_DEVICE(USB_VENDOR_ID_HOLTEK_ALT, USB_DEVICE_ID_HOLTEK_ALT_MOUSE_A070) },
1949 { HID_USB_DEVICE(USB_VENDOR_ID_HOLTEK_ALT, USB_DEVICE_ID_HOLTEK_ALT_MOUSE_A072) },
1950 { HID_USB_DEVICE(USB_VENDOR_ID_HOLTEK_ALT, USB_DEVICE_ID_HOLTEK_ALT_MOUSE_A081) },
1951 { HID_USB_DEVICE(USB_VENDOR_ID_HOLTEK_ALT, USB_DEVICE_ID_HOLTEK_ALT_MOUSE_A0C2) },
1952 { HID_USB_DEVICE(USB_VENDOR_ID_HUION, USB_DEVICE_ID_HUION_TABLET) },
1953 { HID_USB_DEVICE(USB_VENDOR_ID_JESS, USB_DEVICE_ID_JESS_ZEN_AIO_KBD) },
1954 { HID_USB_DEVICE(USB_VENDOR_ID_JESS2, USB_DEVICE_ID_JESS2_COLOR_RUMBLE_PAD) },
1955 { HID_BLUETOOTH_DEVICE(USB_VENDOR_ID_ION, USB_DEVICE_ID_ICADE) },
1956 { HID_USB_DEVICE(USB_VENDOR_ID_KENSINGTON, USB_DEVICE_ID_KS_SLIMBLADE) },
1957 { HID_USB_DEVICE(USB_VENDOR_ID_KEYTOUCH, USB_DEVICE_ID_KEYTOUCH_IEC) },
1958 { HID_USB_DEVICE(USB_VENDOR_ID_KYE, USB_DEVICE_ID_GENIUS_GILA_GAMING_MOUSE) },
1959 { HID_USB_DEVICE(USB_VENDOR_ID_KYE, USB_DEVICE_ID_GENIUS_MANTICORE) },
1960 { HID_USB_DEVICE(USB_VENDOR_ID_KYE, USB_DEVICE_ID_GENIUS_GX_IMPERATOR) },
1961 { HID_USB_DEVICE(USB_VENDOR_ID_KYE, USB_DEVICE_ID_KYE_ERGO_525V) },
1962 { HID_USB_DEVICE(USB_VENDOR_ID_KYE, USB_DEVICE_ID_KYE_EASYPEN_I405X) },
1963 { HID_USB_DEVICE(USB_VENDOR_ID_KYE, USB_DEVICE_ID_KYE_MOUSEPEN_I608X) },
1964 { HID_USB_DEVICE(USB_VENDOR_ID_KYE, USB_DEVICE_ID_KYE_MOUSEPEN_I608X_2) },
1965 { HID_USB_DEVICE(USB_VENDOR_ID_KYE, USB_DEVICE_ID_KYE_EASYPEN_M610X) },
1966 { HID_USB_DEVICE(USB_VENDOR_ID_KYE, USB_DEVICE_ID_KYE_PENSKETCH_M912) },
1967 { HID_USB_DEVICE(USB_VENDOR_ID_LABTEC, USB_DEVICE_ID_LABTEC_WIRELESS_KEYBOARD) },
1968 { HID_USB_DEVICE(USB_VENDOR_ID_LCPOWER, USB_DEVICE_ID_LCPOWER_LC1000 ) },
1969 #if IS_ENABLED(CONFIG_HID_LENOVO)
1970 { HID_USB_DEVICE(USB_VENDOR_ID_LENOVO, USB_DEVICE_ID_LENOVO_TPKBD) },
1971 { HID_USB_DEVICE(USB_VENDOR_ID_LENOVO, USB_DEVICE_ID_LENOVO_CUSBKBD) },
1972 { HID_BLUETOOTH_DEVICE(USB_VENDOR_ID_LENOVO, USB_DEVICE_ID_LENOVO_CBTKBD) },
1973 { HID_USB_DEVICE(USB_VENDOR_ID_LENOVO, USB_DEVICE_ID_LENOVO_TPPRODOCK) },
1975 { HID_USB_DEVICE(USB_VENDOR_ID_LOGITECH, USB_DEVICE_ID_MX3000_RECEIVER) },
1976 { HID_USB_DEVICE(USB_VENDOR_ID_LOGITECH, USB_DEVICE_ID_S510_RECEIVER) },
1977 { HID_USB_DEVICE(USB_VENDOR_ID_LOGITECH, USB_DEVICE_ID_S510_RECEIVER_2) },
1978 { HID_USB_DEVICE(USB_VENDOR_ID_LOGITECH, USB_DEVICE_ID_LOGITECH_RECEIVER) },
1979 { HID_BLUETOOTH_DEVICE(USB_VENDOR_ID_LOGITECH, USB_DEVICE_ID_LOGITECH_HARMONY_PS3) },
1980 { HID_BLUETOOTH_DEVICE(USB_VENDOR_ID_LOGITECH, USB_DEVICE_ID_LOGITECH_T651) },
1981 { HID_USB_DEVICE(USB_VENDOR_ID_LOGITECH, USB_DEVICE_ID_DINOVO_DESKTOP) },
1982 { HID_USB_DEVICE(USB_VENDOR_ID_LOGITECH, USB_DEVICE_ID_DINOVO_EDGE) },
1983 { HID_USB_DEVICE(USB_VENDOR_ID_LOGITECH, USB_DEVICE_ID_DINOVO_MINI) },
1984 { HID_USB_DEVICE(USB_VENDOR_ID_LOGITECH, USB_DEVICE_ID_LOGITECH_ELITE_KBD) },
1985 { HID_USB_DEVICE(USB_VENDOR_ID_LOGITECH, USB_DEVICE_ID_LOGITECH_CORDLESS_DESKTOP_LX500) },
1986 { HID_USB_DEVICE(USB_VENDOR_ID_LOGITECH, USB_DEVICE_ID_LOGITECH_EXTREME_3D) },
1987 { HID_USB_DEVICE(USB_VENDOR_ID_LOGITECH, USB_DEVICE_ID_LOGITECH_DUAL_ACTION) },
1988 { HID_USB_DEVICE(USB_VENDOR_ID_LOGITECH, USB_DEVICE_ID_LOGITECH_WHEEL) },
1989 { HID_USB_DEVICE(USB_VENDOR_ID_LOGITECH, USB_DEVICE_ID_LOGITECH_RUMBLEPAD_CORD) },
1990 { HID_USB_DEVICE(USB_VENDOR_ID_LOGITECH, USB_DEVICE_ID_LOGITECH_RUMBLEPAD) },
1991 { HID_USB_DEVICE(USB_VENDOR_ID_LOGITECH, USB_DEVICE_ID_LOGITECH_RUMBLEPAD2_2) },
1992 { HID_USB_DEVICE(USB_VENDOR_ID_LOGITECH, USB_DEVICE_ID_LOGITECH_G29_WHEEL) },
1993 { HID_USB_DEVICE(USB_VENDOR_ID_LOGITECH, USB_DEVICE_ID_LOGITECH_WINGMAN_F3D) },
1994 { HID_USB_DEVICE(USB_VENDOR_ID_LOGITECH, USB_DEVICE_ID_LOGITECH_WINGMAN_FFG ) },
1995 { HID_USB_DEVICE(USB_VENDOR_ID_LOGITECH, USB_DEVICE_ID_LOGITECH_FORCE3D_PRO) },
1996 { HID_USB_DEVICE(USB_VENDOR_ID_LOGITECH, USB_DEVICE_ID_LOGITECH_FLIGHT_SYSTEM_G940) },
1997 { HID_USB_DEVICE(USB_VENDOR_ID_LOGITECH, USB_DEVICE_ID_LOGITECH_MOMO_WHEEL) },
1998 { HID_USB_DEVICE(USB_VENDOR_ID_LOGITECH, USB_DEVICE_ID_LOGITECH_MOMO_WHEEL2) },
1999 { HID_USB_DEVICE(USB_VENDOR_ID_LOGITECH, USB_DEVICE_ID_LOGITECH_VIBRATION_WHEEL) },
2000 { HID_USB_DEVICE(USB_VENDOR_ID_LOGITECH, USB_DEVICE_ID_LOGITECH_DFP_WHEEL) },
2001 { HID_USB_DEVICE(USB_VENDOR_ID_LOGITECH, USB_DEVICE_ID_LOGITECH_DFGT_WHEEL) },
2002 { HID_USB_DEVICE(USB_VENDOR_ID_LOGITECH, USB_DEVICE_ID_LOGITECH_G25_WHEEL) },
2003 { HID_USB_DEVICE(USB_VENDOR_ID_LOGITECH, USB_DEVICE_ID_LOGITECH_G27_WHEEL) },
2004 #if IS_ENABLED(CONFIG_HID_LOGITECH_DJ)
2005 { HID_USB_DEVICE(USB_VENDOR_ID_LOGITECH, USB_DEVICE_ID_LOGITECH_UNIFYING_RECEIVER) },
2006 { HID_USB_DEVICE(USB_VENDOR_ID_LOGITECH, USB_DEVICE_ID_LOGITECH_UNIFYING_RECEIVER_2) },
2008 { HID_USB_DEVICE(USB_VENDOR_ID_LOGITECH, USB_DEVICE_ID_LOGITECH_WII_WHEEL) },
2009 { HID_USB_DEVICE(USB_VENDOR_ID_LOGITECH, USB_DEVICE_ID_LOGITECH_RUMBLEPAD2) },
2010 { HID_USB_DEVICE(USB_VENDOR_ID_LOGITECH, USB_DEVICE_ID_SPACETRAVELLER) },
2011 { HID_USB_DEVICE(USB_VENDOR_ID_LOGITECH, USB_DEVICE_ID_SPACENAVIGATOR) },
2012 { HID_USB_DEVICE(USB_VENDOR_ID_MICROCHIP, USB_DEVICE_ID_PICOLCD) },
2013 { HID_USB_DEVICE(USB_VENDOR_ID_MICROCHIP, USB_DEVICE_ID_PICOLCD_BOOTLOADER) },
2014 { HID_USB_DEVICE(USB_VENDOR_ID_MICROSOFT, USB_DEVICE_ID_MS_COMFORT_MOUSE_4500) },
2015 { HID_USB_DEVICE(USB_VENDOR_ID_MICROSOFT, USB_DEVICE_ID_SIDEWINDER_GV) },
2016 { HID_USB_DEVICE(USB_VENDOR_ID_MICROSOFT, USB_DEVICE_ID_MS_NE4K) },
2017 { HID_USB_DEVICE(USB_VENDOR_ID_MICROSOFT, USB_DEVICE_ID_MS_NE4K_JP) },
2018 { HID_USB_DEVICE(USB_VENDOR_ID_MICROSOFT, USB_DEVICE_ID_MS_NE7K) },
2019 { HID_USB_DEVICE(USB_VENDOR_ID_MICROSOFT, USB_DEVICE_ID_MS_LK6K) },
2020 { HID_USB_DEVICE(USB_VENDOR_ID_MICROSOFT, USB_DEVICE_ID_MS_PRESENTER_8K_USB) },
2021 { HID_USB_DEVICE(USB_VENDOR_ID_MICROSOFT, USB_DEVICE_ID_MS_DIGITAL_MEDIA_3K) },
2022 { HID_USB_DEVICE(USB_VENDOR_ID_MICROSOFT, USB_DEVICE_ID_WIRELESS_OPTICAL_DESKTOP_3_0) },
2023 { HID_USB_DEVICE(USB_VENDOR_ID_MICROSOFT, USB_DEVICE_ID_MS_OFFICE_KB) },
2024 { HID_USB_DEVICE(USB_VENDOR_ID_MICROSOFT, USB_DEVICE_ID_MS_TYPE_COVER_PRO_3) },
2025 { HID_USB_DEVICE(USB_VENDOR_ID_MICROSOFT, USB_DEVICE_ID_MS_TYPE_COVER_PRO_3_2) },
2026 { HID_USB_DEVICE(USB_VENDOR_ID_MICROSOFT, USB_DEVICE_ID_MS_TYPE_COVER_PRO_3_JP) },
2027 { HID_USB_DEVICE(USB_VENDOR_ID_MICROSOFT, USB_DEVICE_ID_MS_TYPE_COVER_3) },
2028 { HID_USB_DEVICE(USB_VENDOR_ID_MICROSOFT, USB_DEVICE_ID_MS_POWER_COVER) },
2029 { HID_USB_DEVICE(USB_VENDOR_ID_MONTEREY, USB_DEVICE_ID_GENIUS_KB29E) },
2030 { HID_USB_DEVICE(USB_VENDOR_ID_MSI, USB_DEVICE_ID_MSI_GT683R_LED_PANEL) },
2031 { HID_USB_DEVICE(USB_VENDOR_ID_NTRIG, USB_DEVICE_ID_NTRIG_TOUCH_SCREEN) },
2032 { HID_USB_DEVICE(USB_VENDOR_ID_NTRIG, USB_DEVICE_ID_NTRIG_TOUCH_SCREEN_1) },
2033 { HID_USB_DEVICE(USB_VENDOR_ID_NTRIG, USB_DEVICE_ID_NTRIG_TOUCH_SCREEN_2) },
2034 { HID_USB_DEVICE(USB_VENDOR_ID_NTRIG, USB_DEVICE_ID_NTRIG_TOUCH_SCREEN_3) },
2035 { HID_USB_DEVICE(USB_VENDOR_ID_NTRIG, USB_DEVICE_ID_NTRIG_TOUCH_SCREEN_4) },
2036 { HID_USB_DEVICE(USB_VENDOR_ID_NTRIG, USB_DEVICE_ID_NTRIG_TOUCH_SCREEN_5) },
2037 { HID_USB_DEVICE(USB_VENDOR_ID_NTRIG, USB_DEVICE_ID_NTRIG_TOUCH_SCREEN_6) },
2038 { HID_USB_DEVICE(USB_VENDOR_ID_NTRIG, USB_DEVICE_ID_NTRIG_TOUCH_SCREEN_7) },
2039 { HID_USB_DEVICE(USB_VENDOR_ID_NTRIG, USB_DEVICE_ID_NTRIG_TOUCH_SCREEN_8) },
2040 { HID_USB_DEVICE(USB_VENDOR_ID_NTRIG, USB_DEVICE_ID_NTRIG_TOUCH_SCREEN_9) },
2041 { HID_USB_DEVICE(USB_VENDOR_ID_NTRIG, USB_DEVICE_ID_NTRIG_TOUCH_SCREEN_10) },
2042 { HID_USB_DEVICE(USB_VENDOR_ID_NTRIG, USB_DEVICE_ID_NTRIG_TOUCH_SCREEN_11) },
2043 { HID_USB_DEVICE(USB_VENDOR_ID_NTRIG, USB_DEVICE_ID_NTRIG_TOUCH_SCREEN_12) },
2044 { HID_USB_DEVICE(USB_VENDOR_ID_NTRIG, USB_DEVICE_ID_NTRIG_TOUCH_SCREEN_13) },
2045 { HID_USB_DEVICE(USB_VENDOR_ID_NTRIG, USB_DEVICE_ID_NTRIG_TOUCH_SCREEN_14) },
2046 { HID_USB_DEVICE(USB_VENDOR_ID_NTRIG, USB_DEVICE_ID_NTRIG_TOUCH_SCREEN_15) },
2047 { HID_USB_DEVICE(USB_VENDOR_ID_NTRIG, USB_DEVICE_ID_NTRIG_TOUCH_SCREEN_16) },
2048 { HID_USB_DEVICE(USB_VENDOR_ID_NTRIG, USB_DEVICE_ID_NTRIG_TOUCH_SCREEN_17) },
2049 { HID_USB_DEVICE(USB_VENDOR_ID_NTRIG, USB_DEVICE_ID_NTRIG_TOUCH_SCREEN_18) },
2050 { HID_USB_DEVICE(USB_VENDOR_ID_ORTEK, USB_DEVICE_ID_ORTEK_PKB1700) },
2051 { HID_USB_DEVICE(USB_VENDOR_ID_ORTEK, USB_DEVICE_ID_ORTEK_WKB2000) },
2052 { HID_USB_DEVICE(USB_VENDOR_ID_PENMOUNT, USB_DEVICE_ID_PENMOUNT_6000) },
2053 { HID_USB_DEVICE(USB_VENDOR_ID_PETALYNX, USB_DEVICE_ID_PETALYNX_MAXTER_REMOTE) },
2054 { HID_USB_DEVICE(USB_VENDOR_ID_PLANTRONICS, HID_ANY_ID) },
2055 { HID_USB_DEVICE(USB_VENDOR_ID_PRIMAX, USB_DEVICE_ID_PRIMAX_KEYBOARD) },
2056 #if IS_ENABLED(CONFIG_HID_ROCCAT)
2057 { HID_USB_DEVICE(USB_VENDOR_ID_ROCCAT, USB_DEVICE_ID_ROCCAT_ARVO) },
2058 { HID_USB_DEVICE(USB_VENDOR_ID_ROCCAT, USB_DEVICE_ID_ROCCAT_ISKU) },
2059 { HID_USB_DEVICE(USB_VENDOR_ID_ROCCAT, USB_DEVICE_ID_ROCCAT_ISKUFX) },
2060 { HID_USB_DEVICE(USB_VENDOR_ID_ROCCAT, USB_DEVICE_ID_ROCCAT_KONE) },
2061 { HID_USB_DEVICE(USB_VENDOR_ID_ROCCAT, USB_DEVICE_ID_ROCCAT_KONEPLUS) },
2062 { HID_USB_DEVICE(USB_VENDOR_ID_ROCCAT, USB_DEVICE_ID_ROCCAT_KONEPURE) },
2063 { HID_USB_DEVICE(USB_VENDOR_ID_ROCCAT, USB_DEVICE_ID_ROCCAT_KONEPURE_OPTICAL) },
2064 { HID_USB_DEVICE(USB_VENDOR_ID_ROCCAT, USB_DEVICE_ID_ROCCAT_KONEXTD) },
2065 { HID_USB_DEVICE(USB_VENDOR_ID_ROCCAT, USB_DEVICE_ID_ROCCAT_KOVAPLUS) },
2066 { HID_USB_DEVICE(USB_VENDOR_ID_ROCCAT, USB_DEVICE_ID_ROCCAT_LUA) },
2067 { HID_USB_DEVICE(USB_VENDOR_ID_ROCCAT, USB_DEVICE_ID_ROCCAT_PYRA_WIRED) },
2068 { HID_USB_DEVICE(USB_VENDOR_ID_ROCCAT, USB_DEVICE_ID_ROCCAT_PYRA_WIRELESS) },
2069 { HID_USB_DEVICE(USB_VENDOR_ID_ROCCAT, USB_DEVICE_ID_ROCCAT_RYOS_MK) },
2070 { HID_USB_DEVICE(USB_VENDOR_ID_ROCCAT, USB_DEVICE_ID_ROCCAT_RYOS_MK_GLOW) },
2071 { HID_USB_DEVICE(USB_VENDOR_ID_ROCCAT, USB_DEVICE_ID_ROCCAT_RYOS_MK_PRO) },
2072 { HID_USB_DEVICE(USB_VENDOR_ID_ROCCAT, USB_DEVICE_ID_ROCCAT_SAVU) },
2074 #if IS_ENABLED(CONFIG_HID_SAITEK)
2075 { HID_USB_DEVICE(USB_VENDOR_ID_SAITEK, USB_DEVICE_ID_SAITEK_PS1000) },
2076 { HID_USB_DEVICE(USB_VENDOR_ID_SAITEK, USB_DEVICE_ID_SAITEK_RAT7_OLD) },
2077 { HID_USB_DEVICE(USB_VENDOR_ID_SAITEK, USB_DEVICE_ID_SAITEK_RAT7) },
2078 { HID_USB_DEVICE(USB_VENDOR_ID_SAITEK, USB_DEVICE_ID_SAITEK_MMO7) },
2079 { HID_USB_DEVICE(USB_VENDOR_ID_MADCATZ, USB_DEVICE_ID_MADCATZ_RAT5) },
2080 { HID_USB_DEVICE(USB_VENDOR_ID_MADCATZ, USB_DEVICE_ID_MADCATZ_RAT9) },
2082 { HID_USB_DEVICE(USB_VENDOR_ID_SAMSUNG, USB_DEVICE_ID_SAMSUNG_IR_REMOTE) },
2083 { HID_USB_DEVICE(USB_VENDOR_ID_SAMSUNG, USB_DEVICE_ID_SAMSUNG_WIRELESS_KBD_MOUSE) },
2084 { HID_USB_DEVICE(USB_VENDOR_ID_SKYCABLE, USB_DEVICE_ID_SKYCABLE_WIRELESS_PRESENTER) },
2085 { HID_BLUETOOTH_DEVICE(USB_VENDOR_ID_SMK, USB_DEVICE_ID_SMK_PS3_BDREMOTE) },
2086 { HID_USB_DEVICE(USB_VENDOR_ID_SONY, USB_DEVICE_ID_SONY_BUZZ_CONTROLLER) },
2087 { HID_USB_DEVICE(USB_VENDOR_ID_SONY, USB_DEVICE_ID_SONY_WIRELESS_BUZZ_CONTROLLER) },
2088 { HID_USB_DEVICE(USB_VENDOR_ID_SONY, USB_DEVICE_ID_SONY_MOTION_CONTROLLER) },
2089 { HID_BLUETOOTH_DEVICE(USB_VENDOR_ID_SONY, USB_DEVICE_ID_SONY_MOTION_CONTROLLER) },
2090 { HID_USB_DEVICE(USB_VENDOR_ID_SONY, USB_DEVICE_ID_SONY_NAVIGATION_CONTROLLER) },
2091 { HID_BLUETOOTH_DEVICE(USB_VENDOR_ID_SONY, USB_DEVICE_ID_SONY_NAVIGATION_CONTROLLER) },
2092 { HID_BLUETOOTH_DEVICE(USB_VENDOR_ID_SONY, USB_DEVICE_ID_SONY_PS3_BDREMOTE) },
2093 { HID_USB_DEVICE(USB_VENDOR_ID_SONY, USB_DEVICE_ID_SONY_PS3_CONTROLLER) },
2094 { HID_BLUETOOTH_DEVICE(USB_VENDOR_ID_SONY, USB_DEVICE_ID_SONY_PS3_CONTROLLER) },
2095 { HID_USB_DEVICE(USB_VENDOR_ID_SONY, USB_DEVICE_ID_SONY_PS4_CONTROLLER) },
2096 { HID_BLUETOOTH_DEVICE(USB_VENDOR_ID_SONY, USB_DEVICE_ID_SONY_PS4_CONTROLLER) },
2097 { HID_USB_DEVICE(USB_VENDOR_ID_SONY, USB_DEVICE_ID_SONY_PS4_CONTROLLER_2) },
2098 { HID_BLUETOOTH_DEVICE(USB_VENDOR_ID_SONY, USB_DEVICE_ID_SONY_PS4_CONTROLLER_2) },
2099 { HID_USB_DEVICE(USB_VENDOR_ID_SONY, USB_DEVICE_ID_SONY_PS4_CONTROLLER_DONGLE) },
2100 { HID_USB_DEVICE(USB_VENDOR_ID_SONY, USB_DEVICE_ID_SONY_VAIO_VGX_MOUSE) },
2101 { HID_USB_DEVICE(USB_VENDOR_ID_SONY, USB_DEVICE_ID_SONY_VAIO_VGP_MOUSE) },
2102 { HID_USB_DEVICE(USB_VENDOR_ID_STEELSERIES, USB_DEVICE_ID_STEELSERIES_SRWS1) },
2103 { HID_USB_DEVICE(USB_VENDOR_ID_SUNPLUS, USB_DEVICE_ID_SUNPLUS_WDESKTOP) },
2104 { HID_USB_DEVICE(USB_VENDOR_ID_THINGM, USB_DEVICE_ID_BLINK1) },
2105 { HID_USB_DEVICE(USB_VENDOR_ID_THRUSTMASTER, 0xb300) },
2106 { HID_USB_DEVICE(USB_VENDOR_ID_THRUSTMASTER, 0xb304) },
2107 { HID_USB_DEVICE(USB_VENDOR_ID_THRUSTMASTER, 0xb323) },
2108 { HID_USB_DEVICE(USB_VENDOR_ID_THRUSTMASTER, 0xb324) },
2109 { HID_USB_DEVICE(USB_VENDOR_ID_THRUSTMASTER, 0xb651) },
2110 { HID_USB_DEVICE(USB_VENDOR_ID_THRUSTMASTER, 0xb653) },
2111 { HID_USB_DEVICE(USB_VENDOR_ID_THRUSTMASTER, 0xb654) },
2112 { HID_USB_DEVICE(USB_VENDOR_ID_THRUSTMASTER, 0xb65a) },
2113 { HID_BLUETOOTH_DEVICE(USB_VENDOR_ID_TIVO, USB_DEVICE_ID_TIVO_SLIDE_BT) },
2114 { HID_USB_DEVICE(USB_VENDOR_ID_TIVO, USB_DEVICE_ID_TIVO_SLIDE) },
2115 { HID_USB_DEVICE(USB_VENDOR_ID_TIVO, USB_DEVICE_ID_TIVO_SLIDE_PRO) },
2116 { HID_USB_DEVICE(USB_VENDOR_ID_TOPSEED, USB_DEVICE_ID_TOPSEED_CYBERLINK) },
2117 { HID_USB_DEVICE(USB_VENDOR_ID_TOPSEED2, USB_DEVICE_ID_TOPSEED2_RF_COMBO) },
2118 { HID_USB_DEVICE(USB_VENDOR_ID_TWINHAN, USB_DEVICE_ID_TWINHAN_IR_REMOTE) },
2119 { HID_USB_DEVICE(USB_VENDOR_ID_UCLOGIC, USB_DEVICE_ID_UCLOGIC_TABLET_PF1209) },
2120 { HID_USB_DEVICE(USB_VENDOR_ID_UCLOGIC, USB_DEVICE_ID_UCLOGIC_TABLET_WP4030U) },
2121 { HID_USB_DEVICE(USB_VENDOR_ID_UCLOGIC, USB_DEVICE_ID_UCLOGIC_TABLET_WP5540U) },
2122 { HID_USB_DEVICE(USB_VENDOR_ID_UCLOGIC, USB_DEVICE_ID_UCLOGIC_TABLET_WP8060U) },
2123 { HID_USB_DEVICE(USB_VENDOR_ID_UCLOGIC, USB_DEVICE_ID_UCLOGIC_TABLET_WP1062) },
2124 { HID_USB_DEVICE(USB_VENDOR_ID_UCLOGIC, USB_DEVICE_ID_UCLOGIC_WIRELESS_TABLET_TWHL850) },
2125 { HID_USB_DEVICE(USB_VENDOR_ID_UCLOGIC, USB_DEVICE_ID_UCLOGIC_TABLET_TWHA60) },
2126 { HID_USB_DEVICE(USB_VENDOR_ID_WISEGROUP, USB_DEVICE_ID_SMARTJOY_PLUS) },
2127 { HID_USB_DEVICE(USB_VENDOR_ID_WISEGROUP, USB_DEVICE_ID_SUPER_JOY_BOX_3) },
2128 { HID_USB_DEVICE(USB_VENDOR_ID_WISEGROUP, USB_DEVICE_ID_DUAL_USB_JOYPAD) },
2129 { HID_USB_DEVICE(USB_VENDOR_ID_WISEGROUP_LTD, USB_DEVICE_ID_SUPER_JOY_BOX_3_PRO) },
2130 { HID_USB_DEVICE(USB_VENDOR_ID_WISEGROUP_LTD, USB_DEVICE_ID_SUPER_DUAL_BOX_PRO) },
2131 { HID_USB_DEVICE(USB_VENDOR_ID_WISEGROUP_LTD, USB_DEVICE_ID_SUPER_JOY_BOX_5_PRO) },
2132 { HID_USB_DEVICE(USB_VENDOR_ID_PLAYDOTCOM, USB_DEVICE_ID_PLAYDOTCOM_EMS_USBII) },
2133 { HID_USB_DEVICE(USB_VENDOR_ID_WALTOP, USB_DEVICE_ID_WALTOP_SLIM_TABLET_5_8_INCH) },
2134 { HID_USB_DEVICE(USB_VENDOR_ID_WALTOP, USB_DEVICE_ID_WALTOP_SLIM_TABLET_12_1_INCH) },
2135 { HID_USB_DEVICE(USB_VENDOR_ID_WALTOP, USB_DEVICE_ID_WALTOP_Q_PAD) },
2136 { HID_USB_DEVICE(USB_VENDOR_ID_WALTOP, USB_DEVICE_ID_WALTOP_PID_0038) },
2137 { HID_USB_DEVICE(USB_VENDOR_ID_WALTOP, USB_DEVICE_ID_WALTOP_MEDIA_TABLET_10_6_INCH) },
2138 { HID_USB_DEVICE(USB_VENDOR_ID_WALTOP, USB_DEVICE_ID_WALTOP_MEDIA_TABLET_14_1_INCH) },
2139 { HID_USB_DEVICE(USB_VENDOR_ID_WALTOP, USB_DEVICE_ID_WALTOP_SIRIUS_BATTERY_FREE_TABLET) },
2140 { HID_USB_DEVICE(USB_VENDOR_ID_X_TENSIONS, USB_DEVICE_ID_SPEEDLINK_VAD_CEZANNE) },
2141 { HID_USB_DEVICE(USB_VENDOR_ID_XIN_MO, USB_DEVICE_ID_XIN_MO_DUAL_ARCADE) },
2142 { HID_USB_DEVICE(USB_VENDOR_ID_XIN_MO, USB_DEVICE_ID_THT_2P_ARCADE) },
2143 { HID_USB_DEVICE(USB_VENDOR_ID_ZEROPLUS, 0x0005) },
2144 { HID_USB_DEVICE(USB_VENDOR_ID_ZEROPLUS, 0x0030) },
2145 { HID_USB_DEVICE(USB_VENDOR_ID_ZYDACRON, USB_DEVICE_ID_ZYDACRON_REMOTE_CONTROL) },
2147 { HID_BLUETOOTH_DEVICE(USB_VENDOR_ID_MICROSOFT, USB_DEVICE_ID_MS_PRESENTER_8K_BT) },
2148 { HID_BLUETOOTH_DEVICE(USB_VENDOR_ID_NINTENDO, USB_DEVICE_ID_NINTENDO_WIIMOTE) },
2149 { HID_BLUETOOTH_DEVICE(USB_VENDOR_ID_NINTENDO, USB_DEVICE_ID_NINTENDO_WIIMOTE2) },
2150 { HID_USB_DEVICE(USB_VENDOR_ID_RAZER, USB_DEVICE_ID_RAZER_BLADE_14) },
2155 struct list_head list;
2156 struct hid_device_id id;
2160 * store_new_id - add a new HID device ID to this driver and re-probe devices
2161 * @driver: target device driver
2162 * @buf: buffer for scanning device ID data
2163 * @count: input size
2165 * Adds a new dynamic hid device ID to this driver,
2166 * and causes the driver to probe for all devices again.
2168 static ssize_t store_new_id(struct device_driver *drv, const char *buf,
2171 struct hid_driver *hdrv = container_of(drv, struct hid_driver, driver);
2172 struct hid_dynid *dynid;
2173 __u32 bus, vendor, product;
2174 unsigned long driver_data = 0;
2177 ret = sscanf(buf, "%x %x %x %lx",
2178 &bus, &vendor, &product, &driver_data);
2182 dynid = kzalloc(sizeof(*dynid), GFP_KERNEL);
2186 dynid->id.bus = bus;
2187 dynid->id.group = HID_GROUP_ANY;
2188 dynid->id.vendor = vendor;
2189 dynid->id.product = product;
2190 dynid->id.driver_data = driver_data;
2192 spin_lock(&hdrv->dyn_lock);
2193 list_add_tail(&dynid->list, &hdrv->dyn_list);
2194 spin_unlock(&hdrv->dyn_lock);
2196 ret = driver_attach(&hdrv->driver);
2198 return ret ? : count;
2200 static DRIVER_ATTR(new_id, S_IWUSR, NULL, store_new_id);
2202 static void hid_free_dynids(struct hid_driver *hdrv)
2204 struct hid_dynid *dynid, *n;
2206 spin_lock(&hdrv->dyn_lock);
2207 list_for_each_entry_safe(dynid, n, &hdrv->dyn_list, list) {
2208 list_del(&dynid->list);
2211 spin_unlock(&hdrv->dyn_lock);
2214 static const struct hid_device_id *hid_match_device(struct hid_device *hdev,
2215 struct hid_driver *hdrv)
2217 struct hid_dynid *dynid;
2219 spin_lock(&hdrv->dyn_lock);
2220 list_for_each_entry(dynid, &hdrv->dyn_list, list) {
2221 if (hid_match_one_id(hdev, &dynid->id)) {
2222 spin_unlock(&hdrv->dyn_lock);
2226 spin_unlock(&hdrv->dyn_lock);
2228 return hid_match_id(hdev, hdrv->id_table);
2231 static int hid_bus_match(struct device *dev, struct device_driver *drv)
2233 struct hid_driver *hdrv = container_of(drv, struct hid_driver, driver);
2234 struct hid_device *hdev = container_of(dev, struct hid_device, dev);
2236 return hid_match_device(hdev, hdrv) != NULL;
2239 static int hid_device_probe(struct device *dev)
2241 struct hid_driver *hdrv = container_of(dev->driver,
2242 struct hid_driver, driver);
2243 struct hid_device *hdev = container_of(dev, struct hid_device, dev);
2244 const struct hid_device_id *id;
2247 if (down_interruptible(&hdev->driver_lock))
2249 if (down_interruptible(&hdev->driver_input_lock)) {
2251 goto unlock_driver_lock;
2253 hdev->io_started = false;
2255 if (!hdev->driver) {
2256 id = hid_match_device(hdev, hdrv);
2262 hdev->driver = hdrv;
2264 ret = hdrv->probe(hdev, id);
2265 } else { /* default probe */
2266 ret = hid_open_report(hdev);
2268 ret = hid_hw_start(hdev, HID_CONNECT_DEFAULT);
2271 hid_close_report(hdev);
2272 hdev->driver = NULL;
2276 if (!hdev->io_started)
2277 up(&hdev->driver_input_lock);
2279 up(&hdev->driver_lock);
2283 static int hid_device_remove(struct device *dev)
2285 struct hid_device *hdev = container_of(dev, struct hid_device, dev);
2286 struct hid_driver *hdrv;
2289 if (down_interruptible(&hdev->driver_lock))
2291 if (down_interruptible(&hdev->driver_input_lock)) {
2293 goto unlock_driver_lock;
2295 hdev->io_started = false;
2297 hdrv = hdev->driver;
2301 else /* default remove */
2303 hid_close_report(hdev);
2304 hdev->driver = NULL;
2307 if (!hdev->io_started)
2308 up(&hdev->driver_input_lock);
2310 up(&hdev->driver_lock);
2314 static ssize_t modalias_show(struct device *dev, struct device_attribute *a,
2317 struct hid_device *hdev = container_of(dev, struct hid_device, dev);
2320 len = snprintf(buf, PAGE_SIZE, "hid:b%04Xg%04Xv%08Xp%08X\n",
2321 hdev->bus, hdev->group, hdev->vendor, hdev->product);
2323 return (len >= PAGE_SIZE) ? (PAGE_SIZE - 1) : len;
2325 static DEVICE_ATTR_RO(modalias);
2327 static struct attribute *hid_dev_attrs[] = {
2328 &dev_attr_modalias.attr,
2331 ATTRIBUTE_GROUPS(hid_dev);
2333 static int hid_uevent(struct device *dev, struct kobj_uevent_env *env)
2335 struct hid_device *hdev = container_of(dev, struct hid_device, dev);
2337 if (add_uevent_var(env, "HID_ID=%04X:%08X:%08X",
2338 hdev->bus, hdev->vendor, hdev->product))
2341 if (add_uevent_var(env, "HID_NAME=%s", hdev->name))
2344 if (add_uevent_var(env, "HID_PHYS=%s", hdev->phys))
2347 if (add_uevent_var(env, "HID_UNIQ=%s", hdev->uniq))
2350 if (add_uevent_var(env, "MODALIAS=hid:b%04Xg%04Xv%08Xp%08X",
2351 hdev->bus, hdev->group, hdev->vendor, hdev->product))
2357 static struct bus_type hid_bus_type = {
2359 .dev_groups = hid_dev_groups,
2360 .match = hid_bus_match,
2361 .probe = hid_device_probe,
2362 .remove = hid_device_remove,
2363 .uevent = hid_uevent,
2366 /* a list of devices that shouldn't be handled by HID core at all */
2367 static const struct hid_device_id hid_ignore_list[] = {
2368 { HID_USB_DEVICE(USB_VENDOR_ID_ACECAD, USB_DEVICE_ID_ACECAD_FLAIR) },
2369 { HID_USB_DEVICE(USB_VENDOR_ID_ACECAD, USB_DEVICE_ID_ACECAD_302) },
2370 { HID_USB_DEVICE(USB_VENDOR_ID_ADS_TECH, USB_DEVICE_ID_ADS_TECH_RADIO_SI470X) },
2371 { HID_USB_DEVICE(USB_VENDOR_ID_AIPTEK, USB_DEVICE_ID_AIPTEK_01) },
2372 { HID_USB_DEVICE(USB_VENDOR_ID_AIPTEK, USB_DEVICE_ID_AIPTEK_10) },
2373 { HID_USB_DEVICE(USB_VENDOR_ID_AIPTEK, USB_DEVICE_ID_AIPTEK_20) },
2374 { HID_USB_DEVICE(USB_VENDOR_ID_AIPTEK, USB_DEVICE_ID_AIPTEK_21) },
2375 { HID_USB_DEVICE(USB_VENDOR_ID_AIPTEK, USB_DEVICE_ID_AIPTEK_22) },
2376 { HID_USB_DEVICE(USB_VENDOR_ID_AIPTEK, USB_DEVICE_ID_AIPTEK_23) },
2377 { HID_USB_DEVICE(USB_VENDOR_ID_AIPTEK, USB_DEVICE_ID_AIPTEK_24) },
2378 { HID_USB_DEVICE(USB_VENDOR_ID_AIRCABLE, USB_DEVICE_ID_AIRCABLE1) },
2379 { HID_USB_DEVICE(USB_VENDOR_ID_ALCOR, USB_DEVICE_ID_ALCOR_USBRS232) },
2380 { HID_USB_DEVICE(USB_VENDOR_ID_ASUSTEK, USB_DEVICE_ID_ASUSTEK_LCM)},
2381 { HID_USB_DEVICE(USB_VENDOR_ID_ASUSTEK, USB_DEVICE_ID_ASUSTEK_LCM2)},
2382 { HID_USB_DEVICE(USB_VENDOR_ID_AVERMEDIA, USB_DEVICE_ID_AVER_FM_MR800) },
2383 { HID_USB_DEVICE(USB_VENDOR_ID_AXENTIA, USB_DEVICE_ID_AXENTIA_FM_RADIO) },
2384 { HID_USB_DEVICE(USB_VENDOR_ID_BERKSHIRE, USB_DEVICE_ID_BERKSHIRE_PCWD) },
2385 { HID_USB_DEVICE(USB_VENDOR_ID_CIDC, 0x0103) },
2386 { HID_USB_DEVICE(USB_VENDOR_ID_CYGNAL, USB_DEVICE_ID_CYGNAL_RADIO_SI470X) },
2387 { HID_USB_DEVICE(USB_VENDOR_ID_CYGNAL, USB_DEVICE_ID_CYGNAL_RADIO_SI4713) },
2388 { HID_USB_DEVICE(USB_VENDOR_ID_CMEDIA, USB_DEVICE_ID_CM109) },
2389 { HID_USB_DEVICE(USB_VENDOR_ID_CYPRESS, USB_DEVICE_ID_CYPRESS_HIDCOM) },
2390 { HID_USB_DEVICE(USB_VENDOR_ID_CYPRESS, USB_DEVICE_ID_CYPRESS_ULTRAMOUSE) },
2391 { HID_USB_DEVICE(USB_VENDOR_ID_DEALEXTREAME, USB_DEVICE_ID_DEALEXTREAME_RADIO_SI4701) },
2392 { HID_USB_DEVICE(USB_VENDOR_ID_DELORME, USB_DEVICE_ID_DELORME_EARTHMATE) },
2393 { HID_USB_DEVICE(USB_VENDOR_ID_DELORME, USB_DEVICE_ID_DELORME_EM_LT20) },
2394 { HID_USB_DEVICE(USB_VENDOR_ID_DREAM_CHEEKY, 0x0004) },
2395 { HID_USB_DEVICE(USB_VENDOR_ID_DREAM_CHEEKY, 0x000a) },
2396 { HID_I2C_DEVICE(USB_VENDOR_ID_ELAN, 0x0400) },
2397 { HID_USB_DEVICE(USB_VENDOR_ID_ESSENTIAL_REALITY, USB_DEVICE_ID_ESSENTIAL_REALITY_P5) },
2398 { HID_USB_DEVICE(USB_VENDOR_ID_ETT, USB_DEVICE_ID_TC5UH) },
2399 { HID_USB_DEVICE(USB_VENDOR_ID_ETT, USB_DEVICE_ID_TC4UM) },
2400 { HID_USB_DEVICE(USB_VENDOR_ID_GENERAL_TOUCH, 0x0001) },
2401 { HID_USB_DEVICE(USB_VENDOR_ID_GENERAL_TOUCH, 0x0002) },
2402 { HID_USB_DEVICE(USB_VENDOR_ID_GENERAL_TOUCH, 0x0004) },
2403 { HID_USB_DEVICE(USB_VENDOR_ID_GOTOP, USB_DEVICE_ID_SUPER_Q2) },
2404 { HID_USB_DEVICE(USB_VENDOR_ID_GOTOP, USB_DEVICE_ID_GOGOPEN) },
2405 { HID_USB_DEVICE(USB_VENDOR_ID_GOTOP, USB_DEVICE_ID_PENPOWER) },
2406 { HID_USB_DEVICE(USB_VENDOR_ID_GRETAGMACBETH, USB_DEVICE_ID_GRETAGMACBETH_HUEY) },
2407 { HID_USB_DEVICE(USB_VENDOR_ID_GRIFFIN, USB_DEVICE_ID_POWERMATE) },
2408 { HID_USB_DEVICE(USB_VENDOR_ID_GRIFFIN, USB_DEVICE_ID_SOUNDKNOB) },
2409 { HID_USB_DEVICE(USB_VENDOR_ID_GRIFFIN, USB_DEVICE_ID_RADIOSHARK) },
2410 { HID_USB_DEVICE(USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_90) },
2411 { HID_USB_DEVICE(USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_100) },
2412 { HID_USB_DEVICE(USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_101) },
2413 { HID_USB_DEVICE(USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_103) },
2414 { HID_USB_DEVICE(USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_104) },
2415 { HID_USB_DEVICE(USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_105) },
2416 { HID_USB_DEVICE(USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_106) },
2417 { HID_USB_DEVICE(USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_107) },
2418 { HID_USB_DEVICE(USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_108) },
2419 { HID_USB_DEVICE(USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_200) },
2420 { HID_USB_DEVICE(USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_201) },
2421 { HID_USB_DEVICE(USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_202) },
2422 { HID_USB_DEVICE(USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_203) },
2423 { HID_USB_DEVICE(USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_204) },
2424 { HID_USB_DEVICE(USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_205) },
2425 { HID_USB_DEVICE(USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_206) },
2426 { HID_USB_DEVICE(USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_207) },
2427 { HID_USB_DEVICE(USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_300) },
2428 { HID_USB_DEVICE(USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_301) },
2429 { HID_USB_DEVICE(USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_302) },
2430 { HID_USB_DEVICE(USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_303) },
2431 { HID_USB_DEVICE(USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_304) },
2432 { HID_USB_DEVICE(USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_305) },
2433 { HID_USB_DEVICE(USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_306) },
2434 { HID_USB_DEVICE(USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_307) },
2435 { HID_USB_DEVICE(USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_308) },
2436 { HID_USB_DEVICE(USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_309) },
2437 { HID_USB_DEVICE(USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_400) },
2438 { HID_USB_DEVICE(USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_401) },
2439 { HID_USB_DEVICE(USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_402) },
2440 { HID_USB_DEVICE(USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_403) },
2441 { HID_USB_DEVICE(USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_404) },
2442 { HID_USB_DEVICE(USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_405) },
2443 { HID_USB_DEVICE(USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_500) },
2444 { HID_USB_DEVICE(USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_501) },
2445 { HID_USB_DEVICE(USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_502) },
2446 { HID_USB_DEVICE(USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_503) },
2447 { HID_USB_DEVICE(USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_504) },
2448 { HID_USB_DEVICE(USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_1000) },
2449 { HID_USB_DEVICE(USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_1001) },
2450 { HID_USB_DEVICE(USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_1002) },
2451 { HID_USB_DEVICE(USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_1003) },
2452 { HID_USB_DEVICE(USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_1004) },
2453 { HID_USB_DEVICE(USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_1005) },
2454 { HID_USB_DEVICE(USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_1006) },
2455 { HID_USB_DEVICE(USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_1007) },
2456 { HID_USB_DEVICE(USB_VENDOR_ID_IMATION, USB_DEVICE_ID_DISC_STAKKA) },
2457 { HID_USB_DEVICE(USB_VENDOR_ID_JABRA, USB_DEVICE_ID_JABRA_SPEAK_410) },
2458 { HID_USB_DEVICE(USB_VENDOR_ID_JABRA, USB_DEVICE_ID_JABRA_SPEAK_510) },
2459 { HID_USB_DEVICE(USB_VENDOR_ID_JABRA, USB_DEVICE_ID_JABRA_GN9350E) },
2460 { HID_USB_DEVICE(USB_VENDOR_ID_KBGEAR, USB_DEVICE_ID_KBGEAR_JAMSTUDIO) },
2461 { HID_USB_DEVICE(USB_VENDOR_ID_KWORLD, USB_DEVICE_ID_KWORLD_RADIO_FM700) },
2462 { HID_USB_DEVICE(USB_VENDOR_ID_KYE, USB_DEVICE_ID_KYE_GPEN_560) },
2463 { HID_BLUETOOTH_DEVICE(USB_VENDOR_ID_KYE, 0x0058) },
2464 { HID_USB_DEVICE(USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_CASSY) },
2465 { HID_USB_DEVICE(USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_CASSY2) },
2466 { HID_USB_DEVICE(USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_POCKETCASSY) },
2467 { HID_USB_DEVICE(USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_POCKETCASSY2) },
2468 { HID_USB_DEVICE(USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_MOBILECASSY) },
2469 { HID_USB_DEVICE(USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_MOBILECASSY2) },
2470 { HID_USB_DEVICE(USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_MICROCASSYVOLTAGE) },
2471 { HID_USB_DEVICE(USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_MICROCASSYCURRENT) },
2472 { HID_USB_DEVICE(USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_MICROCASSYTIME) },
2473 { HID_USB_DEVICE(USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_MICROCASSYTEMPERATURE) },
2474 { HID_USB_DEVICE(USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_MICROCASSYPH) },
2475 { HID_USB_DEVICE(USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_POWERANALYSERCASSY) },
2476 { HID_USB_DEVICE(USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_CONVERTERCONTROLLERCASSY) },
2477 { HID_USB_DEVICE(USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_MACHINETESTCASSY) },
2478 { HID_USB_DEVICE(USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_JWM) },
2479 { HID_USB_DEVICE(USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_DMMP) },
2480 { HID_USB_DEVICE(USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_UMIP) },
2481 { HID_USB_DEVICE(USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_UMIC) },
2482 { HID_USB_DEVICE(USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_UMIB) },
2483 { HID_USB_DEVICE(USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_XRAY) },
2484 { HID_USB_DEVICE(USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_XRAY2) },
2485 { HID_USB_DEVICE(USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_VIDEOCOM) },
2486 { HID_USB_DEVICE(USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_MOTOR) },
2487 { HID_USB_DEVICE(USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_COM3LAB) },
2488 { HID_USB_DEVICE(USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_TELEPORT) },
2489 { HID_USB_DEVICE(USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_NETWORKANALYSER) },
2490 { HID_USB_DEVICE(USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_POWERCONTROL) },
2491 { HID_USB_DEVICE(USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_MACHINETEST) },
2492 { HID_USB_DEVICE(USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_MOSTANALYSER) },
2493 { HID_USB_DEVICE(USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_MOSTANALYSER2) },
2494 { HID_USB_DEVICE(USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_ABSESP) },
2495 { HID_USB_DEVICE(USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_AUTODATABUS) },
2496 { HID_USB_DEVICE(USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_MCT) },
2497 { HID_USB_DEVICE(USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_HYBRID) },
2498 { HID_USB_DEVICE(USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_HEATCONTROL) },
2499 { HID_USB_DEVICE(USB_VENDOR_ID_MADCATZ, USB_DEVICE_ID_MADCATZ_BEATPAD) },
2500 { HID_USB_DEVICE(USB_VENDOR_ID_MCC, USB_DEVICE_ID_MCC_PMD1024LS) },
2501 { HID_USB_DEVICE(USB_VENDOR_ID_MCC, USB_DEVICE_ID_MCC_PMD1208LS) },
2502 { HID_USB_DEVICE(USB_VENDOR_ID_MICROCHIP, USB_DEVICE_ID_PICKIT1) },
2503 { HID_USB_DEVICE(USB_VENDOR_ID_MICROCHIP, USB_DEVICE_ID_PICKIT2) },
2504 { HID_USB_DEVICE(USB_VENDOR_ID_MICROCHIP, USB_DEVICE_ID_PICK16F1454) },
2505 { HID_USB_DEVICE(USB_VENDOR_ID_NATIONAL_SEMICONDUCTOR, USB_DEVICE_ID_N_S_HARMONY) },
2506 { HID_USB_DEVICE(USB_VENDOR_ID_ONTRAK, USB_DEVICE_ID_ONTRAK_ADU100) },
2507 { HID_USB_DEVICE(USB_VENDOR_ID_ONTRAK, USB_DEVICE_ID_ONTRAK_ADU100 + 20) },
2508 { HID_USB_DEVICE(USB_VENDOR_ID_ONTRAK, USB_DEVICE_ID_ONTRAK_ADU100 + 30) },
2509 { HID_USB_DEVICE(USB_VENDOR_ID_ONTRAK, USB_DEVICE_ID_ONTRAK_ADU100 + 100) },
2510 { HID_USB_DEVICE(USB_VENDOR_ID_ONTRAK, USB_DEVICE_ID_ONTRAK_ADU100 + 108) },
2511 { HID_USB_DEVICE(USB_VENDOR_ID_ONTRAK, USB_DEVICE_ID_ONTRAK_ADU100 + 118) },
2512 { HID_USB_DEVICE(USB_VENDOR_ID_ONTRAK, USB_DEVICE_ID_ONTRAK_ADU100 + 200) },
2513 { HID_USB_DEVICE(USB_VENDOR_ID_ONTRAK, USB_DEVICE_ID_ONTRAK_ADU100 + 300) },
2514 { HID_USB_DEVICE(USB_VENDOR_ID_ONTRAK, USB_DEVICE_ID_ONTRAK_ADU100 + 400) },
2515 { HID_USB_DEVICE(USB_VENDOR_ID_ONTRAK, USB_DEVICE_ID_ONTRAK_ADU100 + 500) },
2516 { HID_USB_DEVICE(USB_VENDOR_ID_PANJIT, 0x0001) },
2517 { HID_USB_DEVICE(USB_VENDOR_ID_PANJIT, 0x0002) },
2518 { HID_USB_DEVICE(USB_VENDOR_ID_PANJIT, 0x0003) },
2519 { HID_USB_DEVICE(USB_VENDOR_ID_PANJIT, 0x0004) },
2520 { HID_USB_DEVICE(USB_VENDOR_ID_PETZL, USB_DEVICE_ID_PETZL_HEADLAMP) },
2521 { HID_USB_DEVICE(USB_VENDOR_ID_PHILIPS, USB_DEVICE_ID_PHILIPS_IEEE802154_DONGLE) },
2522 { HID_USB_DEVICE(USB_VENDOR_ID_POWERCOM, USB_DEVICE_ID_POWERCOM_UPS) },
2523 #if defined(CONFIG_MOUSE_SYNAPTICS_USB) || defined(CONFIG_MOUSE_SYNAPTICS_USB_MODULE)
2524 { HID_USB_DEVICE(USB_VENDOR_ID_SYNAPTICS, USB_DEVICE_ID_SYNAPTICS_TP) },
2525 { HID_USB_DEVICE(USB_VENDOR_ID_SYNAPTICS, USB_DEVICE_ID_SYNAPTICS_INT_TP) },
2526 { HID_USB_DEVICE(USB_VENDOR_ID_SYNAPTICS, USB_DEVICE_ID_SYNAPTICS_CPAD) },
2527 { HID_USB_DEVICE(USB_VENDOR_ID_SYNAPTICS, USB_DEVICE_ID_SYNAPTICS_STICK) },
2528 { HID_USB_DEVICE(USB_VENDOR_ID_SYNAPTICS, USB_DEVICE_ID_SYNAPTICS_WP) },
2529 { HID_USB_DEVICE(USB_VENDOR_ID_SYNAPTICS, USB_DEVICE_ID_SYNAPTICS_COMP_TP) },
2530 { HID_USB_DEVICE(USB_VENDOR_ID_SYNAPTICS, USB_DEVICE_ID_SYNAPTICS_WTP) },
2531 { HID_USB_DEVICE(USB_VENDOR_ID_SYNAPTICS, USB_DEVICE_ID_SYNAPTICS_DPAD) },
2533 { HID_USB_DEVICE(USB_VENDOR_ID_YEALINK, USB_DEVICE_ID_YEALINK_P1K_P4K_B2K) },
2534 { HID_USB_DEVICE(USB_VENDOR_ID_RISO_KAGAKU, USB_DEVICE_ID_RI_KA_WEBMAIL) },
2539 * hid_mouse_ignore_list - mouse devices which should not be handled by the hid layer
2541 * There are composite devices for which we want to ignore only a certain
2542 * interface. This is a list of devices for which only the mouse interface will
2543 * be ignored. This allows a dedicated driver to take care of the interface.
2545 static const struct hid_device_id hid_mouse_ignore_list[] = {
2546 /* appletouch driver */
2547 { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_FOUNTAIN_ANSI) },
2548 { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_FOUNTAIN_ISO) },
2549 { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_GEYSER_ANSI) },
2550 { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_GEYSER_ISO) },
2551 { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_GEYSER_JIS) },
2552 { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_GEYSER3_ANSI) },
2553 { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_GEYSER3_ISO) },
2554 { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_GEYSER3_JIS) },
2555 { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_GEYSER4_ANSI) },
2556 { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_GEYSER4_ISO) },
2557 { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_GEYSER4_JIS) },
2558 { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_GEYSER4_HF_ANSI) },
2559 { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_GEYSER4_HF_ISO) },
2560 { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_GEYSER4_HF_JIS) },
2561 { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING_ANSI) },
2562 { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING_ISO) },
2563 { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING_JIS) },
2564 { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING2_ANSI) },
2565 { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING2_ISO) },
2566 { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING2_JIS) },
2567 { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING3_ANSI) },
2568 { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING3_ISO) },
2569 { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING3_JIS) },
2570 { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING4_ANSI) },
2571 { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING4_ISO) },
2572 { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING4_JIS) },
2573 { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING4A_ANSI) },
2574 { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING4A_ISO) },
2575 { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING4A_JIS) },
2576 { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING5_ANSI) },
2577 { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING5_ISO) },
2578 { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING5_JIS) },
2579 { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING5A_ANSI) },
2580 { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING5A_ISO) },
2581 { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING5A_JIS) },
2582 { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING6_ANSI) },
2583 { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING6_ISO) },
2584 { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING6_JIS) },
2585 { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING6A_ANSI) },
2586 { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING6A_ISO) },
2587 { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING6A_JIS) },
2588 { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING7_ANSI) },
2589 { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING7_ISO) },
2590 { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING7_JIS) },
2591 { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING7A_ANSI) },
2592 { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING7A_ISO) },
2593 { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING7A_JIS) },
2594 { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING8_ANSI) },
2595 { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING8_ISO) },
2596 { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING8_JIS) },
2597 { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING9_ANSI) },
2598 { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING9_ISO) },
2599 { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING9_JIS) },
2600 { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_FOUNTAIN_TP_ONLY) },
2601 { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_GEYSER1_TP_ONLY) },
2605 bool hid_ignore(struct hid_device *hdev)
2607 if (hdev->quirks & HID_QUIRK_NO_IGNORE)
2609 if (hdev->quirks & HID_QUIRK_IGNORE)
2612 switch (hdev->vendor) {
2613 case USB_VENDOR_ID_CODEMERCS:
2614 /* ignore all Code Mercenaries IOWarrior devices */
2615 if (hdev->product >= USB_DEVICE_ID_CODEMERCS_IOW_FIRST &&
2616 hdev->product <= USB_DEVICE_ID_CODEMERCS_IOW_LAST)
2619 case USB_VENDOR_ID_LOGITECH:
2620 if (hdev->product >= USB_DEVICE_ID_LOGITECH_HARMONY_FIRST &&
2621 hdev->product <= USB_DEVICE_ID_LOGITECH_HARMONY_LAST)
2624 * The Keene FM transmitter USB device has the same USB ID as
2625 * the Logitech AudioHub Speaker, but it should ignore the hid.
2626 * Check if the name is that of the Keene device.
2627 * For reference: the name of the AudioHub is
2628 * "HOLTEK AudioHub Speaker".
2630 if (hdev->product == USB_DEVICE_ID_LOGITECH_AUDIOHUB &&
2631 !strcmp(hdev->name, "HOLTEK B-LINK USB Audio "))
2634 case USB_VENDOR_ID_SOUNDGRAPH:
2635 if (hdev->product >= USB_DEVICE_ID_SOUNDGRAPH_IMON_FIRST &&
2636 hdev->product <= USB_DEVICE_ID_SOUNDGRAPH_IMON_LAST)
2639 case USB_VENDOR_ID_HANWANG:
2640 if (hdev->product >= USB_DEVICE_ID_HANWANG_TABLET_FIRST &&
2641 hdev->product <= USB_DEVICE_ID_HANWANG_TABLET_LAST)
2644 case USB_VENDOR_ID_JESS:
2645 if (hdev->product == USB_DEVICE_ID_JESS_YUREX &&
2646 hdev->type == HID_TYPE_USBNONE)
2649 case USB_VENDOR_ID_VELLEMAN:
2650 /* These are not HID devices. They are handled by comedi. */
2651 if ((hdev->product >= USB_DEVICE_ID_VELLEMAN_K8055_FIRST &&
2652 hdev->product <= USB_DEVICE_ID_VELLEMAN_K8055_LAST) ||
2653 (hdev->product >= USB_DEVICE_ID_VELLEMAN_K8061_FIRST &&
2654 hdev->product <= USB_DEVICE_ID_VELLEMAN_K8061_LAST))
2657 case USB_VENDOR_ID_ATMEL_V_USB:
2658 /* Masterkit MA901 usb radio based on Atmel tiny85 chip and
2659 * it has the same USB ID as many Atmel V-USB devices. This
2660 * usb radio is handled by radio-ma901.c driver so we want
2661 * ignore the hid. Check the name, bus, product and ignore
2662 * if we have MA901 usb radio.
2664 if (hdev->product == USB_DEVICE_ID_ATMEL_V_USB &&
2665 hdev->bus == BUS_USB &&
2666 strncmp(hdev->name, "www.masterkit.ru MA901", 22) == 0)
2669 case USB_VENDOR_ID_ELAN:
2671 * Many Elan devices have a product id of 0x0401 and are handled
2672 * by the elan_i2c input driver. But the ACPI HID ELAN0800 dev
2673 * is not (and cannot be) handled by that driver ->
2674 * Ignore all 0x0401 devs except for the ELAN0800 dev.
2676 if (hdev->product == 0x0401 &&
2677 strncmp(hdev->name, "ELAN0800", 8) != 0)
2682 if (hdev->type == HID_TYPE_USBMOUSE &&
2683 hid_match_id(hdev, hid_mouse_ignore_list))
2686 return !!hid_match_id(hdev, hid_ignore_list);
2688 EXPORT_SYMBOL_GPL(hid_ignore);
2690 int hid_add_device(struct hid_device *hdev)
2692 static atomic_t id = ATOMIC_INIT(0);
2695 if (WARN_ON(hdev->status & HID_STAT_ADDED))
2698 /* we need to kill them here, otherwise they will stay allocated to
2699 * wait for coming driver */
2700 if (hid_ignore(hdev))
2704 * Check for the mandatory transport channel.
2706 if (!hdev->ll_driver->raw_request) {
2707 hid_err(hdev, "transport driver missing .raw_request()\n");
2712 * Read the device report descriptor once and use as template
2713 * for the driver-specific modifications.
2715 ret = hdev->ll_driver->parse(hdev);
2718 if (!hdev->dev_rdesc)
2722 * Scan generic devices for group information
2724 if (hid_ignore_special_drivers) {
2725 hdev->group = HID_GROUP_GENERIC;
2726 } else if (!hdev->group &&
2727 !hid_match_id(hdev, hid_have_special_driver)) {
2728 ret = hid_scan_report(hdev);
2730 hid_warn(hdev, "bad device descriptor (%d)\n", ret);
2733 /* XXX hack, any other cleaner solution after the driver core
2734 * is converted to allow more than 20 bytes as the device name? */
2735 dev_set_name(&hdev->dev, "%04X:%04X:%04X.%04X", hdev->bus,
2736 hdev->vendor, hdev->product, atomic_inc_return(&id));
2738 hid_debug_register(hdev, dev_name(&hdev->dev));
2739 ret = device_add(&hdev->dev);
2741 hdev->status |= HID_STAT_ADDED;
2743 hid_debug_unregister(hdev);
2747 EXPORT_SYMBOL_GPL(hid_add_device);
2750 * hid_allocate_device - allocate new hid device descriptor
2752 * Allocate and initialize hid device, so that hid_destroy_device might be
2755 * New hid_device pointer is returned on success, otherwise ERR_PTR encoded
2758 struct hid_device *hid_allocate_device(void)
2760 struct hid_device *hdev;
2763 hdev = kzalloc(sizeof(*hdev), GFP_KERNEL);
2765 return ERR_PTR(ret);
2767 device_initialize(&hdev->dev);
2768 hdev->dev.release = hid_device_release;
2769 hdev->dev.bus = &hid_bus_type;
2771 hid_close_report(hdev);
2773 init_waitqueue_head(&hdev->debug_wait);
2774 INIT_LIST_HEAD(&hdev->debug_list);
2775 spin_lock_init(&hdev->debug_list_lock);
2776 sema_init(&hdev->driver_lock, 1);
2777 sema_init(&hdev->driver_input_lock, 1);
2781 EXPORT_SYMBOL_GPL(hid_allocate_device);
2783 static void hid_remove_device(struct hid_device *hdev)
2785 if (hdev->status & HID_STAT_ADDED) {
2786 device_del(&hdev->dev);
2787 hid_debug_unregister(hdev);
2788 hdev->status &= ~HID_STAT_ADDED;
2790 kfree(hdev->dev_rdesc);
2791 hdev->dev_rdesc = NULL;
2792 hdev->dev_rsize = 0;
2796 * hid_destroy_device - free previously allocated device
2800 * If you allocate hid_device through hid_allocate_device, you should ever
2801 * free by this function.
2803 void hid_destroy_device(struct hid_device *hdev)
2805 hid_remove_device(hdev);
2806 put_device(&hdev->dev);
2808 EXPORT_SYMBOL_GPL(hid_destroy_device);
2810 int __hid_register_driver(struct hid_driver *hdrv, struct module *owner,
2811 const char *mod_name)
2815 hdrv->driver.name = hdrv->name;
2816 hdrv->driver.bus = &hid_bus_type;
2817 hdrv->driver.owner = owner;
2818 hdrv->driver.mod_name = mod_name;
2820 INIT_LIST_HEAD(&hdrv->dyn_list);
2821 spin_lock_init(&hdrv->dyn_lock);
2823 ret = driver_register(&hdrv->driver);
2827 ret = driver_create_file(&hdrv->driver, &driver_attr_new_id);
2829 driver_unregister(&hdrv->driver);
2833 EXPORT_SYMBOL_GPL(__hid_register_driver);
2835 void hid_unregister_driver(struct hid_driver *hdrv)
2837 driver_remove_file(&hdrv->driver, &driver_attr_new_id);
2838 driver_unregister(&hdrv->driver);
2839 hid_free_dynids(hdrv);
2841 EXPORT_SYMBOL_GPL(hid_unregister_driver);
2843 int hid_check_keys_pressed(struct hid_device *hid)
2845 struct hid_input *hidinput;
2848 if (!(hid->claimed & HID_CLAIMED_INPUT))
2851 list_for_each_entry(hidinput, &hid->inputs, list) {
2852 for (i = 0; i < BITS_TO_LONGS(KEY_MAX); i++)
2853 if (hidinput->input->key[i])
2860 EXPORT_SYMBOL_GPL(hid_check_keys_pressed);
2862 static int __init hid_init(void)
2867 pr_warn("hid_debug is now used solely for parser and driver debugging.\n"
2868 "debugfs is now used for inspecting the device (report descriptor, reports)\n");
2870 ret = bus_register(&hid_bus_type);
2872 pr_err("can't register hid bus\n");
2876 ret = hidraw_init();
2884 bus_unregister(&hid_bus_type);
2889 static void __exit hid_exit(void)
2893 bus_unregister(&hid_bus_type);
2896 module_init(hid_init);
2897 module_exit(hid_exit);
2899 MODULE_AUTHOR("Andreas Gal");
2900 MODULE_AUTHOR("Vojtech Pavlik");
2901 MODULE_AUTHOR("Jiri Kosina");
2902 MODULE_LICENSE(DRIVER_LICENSE);