blob: a0c0c49dec092f81a0623a12536e14aea31396aa [file] [log] [blame]
Jiri Kosinadde58452006-12-08 18:40:44 +01001/*
Jiri Kosina229695e2006-12-08 18:40:53 +01002 * HID support for Linux
Jiri Kosinadde58452006-12-08 18:40:44 +01003 *
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
Jiri Kosinaf142b3a42007-04-16 11:29:28 +02007 * Copyright (c) 2006-2007 Jiri Kosina
Jiri Kosinadde58452006-12-08 18:40:44 +01008 */
9
10/*
11 * This program is free software; you can redistribute it and/or modify it
12 * under the terms of the GNU General Public License as published by the Free
13 * Software Foundation; either version 2 of the License, or (at your option)
14 * any later version.
15 */
16
17#include <linux/module.h>
18#include <linux/slab.h>
19#include <linux/init.h>
20#include <linux/kernel.h>
Jiri Kosinadde58452006-12-08 18:40:44 +010021#include <linux/list.h>
22#include <linux/mm.h>
Jiri Kosinadde58452006-12-08 18:40:44 +010023#include <linux/spinlock.h>
24#include <asm/unaligned.h>
25#include <asm/byteorder.h>
26#include <linux/input.h>
27#include <linux/wait.h>
Jiri Kosina47a80ed2007-03-12 14:55:12 +010028#include <linux/vmalloc.h>
Jiri Kosinac4124c92007-11-30 11:12:58 +010029#include <linux/sched.h>
Jiri Kosinadde58452006-12-08 18:40:44 +010030
Jiri Kosinadde58452006-12-08 18:40:44 +010031#include <linux/hid.h>
32#include <linux/hiddev.h>
Jiri Kosinac080d892007-01-25 11:43:31 +010033#include <linux/hid-debug.h>
Jiri Kosina86166b72007-05-14 09:57:40 +020034#include <linux/hidraw.h>
Jiri Kosinadde58452006-12-08 18:40:44 +010035
Jiri Slaby5f22a792008-05-16 11:49:19 +020036#include "hid-ids.h"
37
Jiri Kosinadde58452006-12-08 18:40:44 +010038/*
39 * Version Information
40 */
41
Jiri Kosina53149802007-01-09 13:24:25 +010042#define DRIVER_DESC "HID core driver"
Jiri Kosinadde58452006-12-08 18:40:44 +010043#define DRIVER_LICENSE "GPL"
44
Jiri Kosina58037eb2007-05-30 15:07:13 +020045int hid_debug = 0;
Anssi Hannula377e10f2008-03-22 23:50:13 +010046module_param_named(debug, hid_debug, int, 0600);
Jiri Kosinacd667ce2009-06-12 15:20:57 +020047MODULE_PARM_DESC(debug, "toggle HID debugging messages");
Jiri Kosina58037eb2007-05-30 15:07:13 +020048EXPORT_SYMBOL_GPL(hid_debug);
Jiri Kosina58037eb2007-05-30 15:07:13 +020049
Jiri Kosinadde58452006-12-08 18:40:44 +010050/*
Jiri Kosinadde58452006-12-08 18:40:44 +010051 * Register a new report for a device.
52 */
53
54static struct hid_report *hid_register_report(struct hid_device *device, unsigned type, unsigned id)
55{
56 struct hid_report_enum *report_enum = device->report_enum + type;
57 struct hid_report *report;
58
59 if (report_enum->report_id_hash[id])
60 return report_enum->report_id_hash[id];
61
62 if (!(report = kzalloc(sizeof(struct hid_report), GFP_KERNEL)))
63 return NULL;
64
65 if (id != 0)
66 report_enum->numbered = 1;
67
68 report->id = id;
69 report->type = type;
70 report->size = 0;
71 report->device = device;
72 report_enum->report_id_hash[id] = report;
73
74 list_add_tail(&report->list, &report_enum->report_list);
75
76 return report;
77}
78
79/*
80 * Register a new field for this report.
81 */
82
83static struct hid_field *hid_register_field(struct hid_report *report, unsigned usages, unsigned values)
84{
85 struct hid_field *field;
86
87 if (report->maxfield == HID_MAX_FIELDS) {
Jiri Kosina58037eb2007-05-30 15:07:13 +020088 dbg_hid("too many fields in report\n");
Jiri Kosinadde58452006-12-08 18:40:44 +010089 return NULL;
90 }
91
92 if (!(field = kzalloc(sizeof(struct hid_field) + usages * sizeof(struct hid_usage)
93 + values * sizeof(unsigned), GFP_KERNEL))) return NULL;
94
95 field->index = report->maxfield++;
96 report->field[field->index] = field;
97 field->usage = (struct hid_usage *)(field + 1);
Jiri Slaby282bfd42008-03-28 17:06:41 +010098 field->value = (s32 *)(field->usage + usages);
Jiri Kosinadde58452006-12-08 18:40:44 +010099 field->report = report;
100
101 return field;
102}
103
104/*
105 * Open a collection. The type/usage is pushed on the stack.
106 */
107
108static int open_collection(struct hid_parser *parser, unsigned type)
109{
110 struct hid_collection *collection;
111 unsigned usage;
112
113 usage = parser->local.usage[0];
114
115 if (parser->collection_stack_ptr == HID_COLLECTION_STACK_SIZE) {
Jiri Kosina58037eb2007-05-30 15:07:13 +0200116 dbg_hid("collection stack overflow\n");
Jiri Kosinadde58452006-12-08 18:40:44 +0100117 return -1;
118 }
119
120 if (parser->device->maxcollection == parser->device->collection_size) {
121 collection = kmalloc(sizeof(struct hid_collection) *
122 parser->device->collection_size * 2, GFP_KERNEL);
123 if (collection == NULL) {
Jiri Kosina58037eb2007-05-30 15:07:13 +0200124 dbg_hid("failed to reallocate collection array\n");
Jiri Kosinadde58452006-12-08 18:40:44 +0100125 return -1;
126 }
127 memcpy(collection, parser->device->collection,
128 sizeof(struct hid_collection) *
129 parser->device->collection_size);
130 memset(collection + parser->device->collection_size, 0,
131 sizeof(struct hid_collection) *
132 parser->device->collection_size);
133 kfree(parser->device->collection);
134 parser->device->collection = collection;
135 parser->device->collection_size *= 2;
136 }
137
138 parser->collection_stack[parser->collection_stack_ptr++] =
139 parser->device->maxcollection;
140
141 collection = parser->device->collection +
142 parser->device->maxcollection++;
143 collection->type = type;
144 collection->usage = usage;
145 collection->level = parser->collection_stack_ptr - 1;
146
147 if (type == HID_COLLECTION_APPLICATION)
148 parser->device->maxapplication++;
149
150 return 0;
151}
152
153/*
154 * Close a collection.
155 */
156
157static int close_collection(struct hid_parser *parser)
158{
159 if (!parser->collection_stack_ptr) {
Jiri Kosina58037eb2007-05-30 15:07:13 +0200160 dbg_hid("collection stack underflow\n");
Jiri Kosinadde58452006-12-08 18:40:44 +0100161 return -1;
162 }
163 parser->collection_stack_ptr--;
164 return 0;
165}
166
167/*
168 * Climb up the stack, search for the specified collection type
169 * and return the usage.
170 */
171
172static unsigned hid_lookup_collection(struct hid_parser *parser, unsigned type)
173{
174 int n;
175 for (n = parser->collection_stack_ptr - 1; n >= 0; n--)
176 if (parser->device->collection[parser->collection_stack[n]].type == type)
177 return parser->device->collection[parser->collection_stack[n]].usage;
178 return 0; /* we know nothing about this usage type */
179}
180
181/*
182 * Add a usage to the temporary parser table.
183 */
184
185static int hid_add_usage(struct hid_parser *parser, unsigned usage)
186{
187 if (parser->local.usage_index >= HID_MAX_USAGES) {
Jiri Kosina58037eb2007-05-30 15:07:13 +0200188 dbg_hid("usage index exceeded\n");
Jiri Kosinadde58452006-12-08 18:40:44 +0100189 return -1;
190 }
191 parser->local.usage[parser->local.usage_index] = usage;
192 parser->local.collection_index[parser->local.usage_index] =
193 parser->collection_stack_ptr ?
194 parser->collection_stack[parser->collection_stack_ptr - 1] : 0;
195 parser->local.usage_index++;
196 return 0;
197}
198
199/*
200 * Register a new field for this report.
201 */
202
203static int hid_add_field(struct hid_parser *parser, unsigned report_type, unsigned flags)
204{
205 struct hid_report *report;
206 struct hid_field *field;
207 int usages;
208 unsigned offset;
209 int i;
210
211 if (!(report = hid_register_report(parser->device, report_type, parser->global.report_id))) {
Jiri Kosina58037eb2007-05-30 15:07:13 +0200212 dbg_hid("hid_register_report failed\n");
Jiri Kosinadde58452006-12-08 18:40:44 +0100213 return -1;
214 }
215
216 if (parser->global.logical_maximum < parser->global.logical_minimum) {
Jiri Kosina58037eb2007-05-30 15:07:13 +0200217 dbg_hid("logical range invalid %d %d\n", parser->global.logical_minimum, parser->global.logical_maximum);
Jiri Kosinadde58452006-12-08 18:40:44 +0100218 return -1;
219 }
220
221 offset = report->size;
222 report->size += parser->global.report_size * parser->global.report_count;
223
224 if (!parser->local.usage_index) /* Ignore padding fields */
225 return 0;
226
227 usages = max_t(int, parser->local.usage_index, parser->global.report_count);
228
229 if ((field = hid_register_field(report, usages, parser->global.report_count)) == NULL)
230 return 0;
231
232 field->physical = hid_lookup_collection(parser, HID_COLLECTION_PHYSICAL);
233 field->logical = hid_lookup_collection(parser, HID_COLLECTION_LOGICAL);
234 field->application = hid_lookup_collection(parser, HID_COLLECTION_APPLICATION);
235
236 for (i = 0; i < usages; i++) {
237 int j = i;
238 /* Duplicate the last usage we parsed if we have excess values */
239 if (i >= parser->local.usage_index)
240 j = parser->local.usage_index - 1;
241 field->usage[i].hid = parser->local.usage[j];
242 field->usage[i].collection_index =
243 parser->local.collection_index[j];
244 }
245
246 field->maxusage = usages;
247 field->flags = flags;
248 field->report_offset = offset;
249 field->report_type = report_type;
250 field->report_size = parser->global.report_size;
251 field->report_count = parser->global.report_count;
252 field->logical_minimum = parser->global.logical_minimum;
253 field->logical_maximum = parser->global.logical_maximum;
254 field->physical_minimum = parser->global.physical_minimum;
255 field->physical_maximum = parser->global.physical_maximum;
256 field->unit_exponent = parser->global.unit_exponent;
257 field->unit = parser->global.unit;
258
259 return 0;
260}
261
262/*
263 * Read data value from item.
264 */
265
266static u32 item_udata(struct hid_item *item)
267{
268 switch (item->size) {
Jiri Slaby880d29f2008-06-18 23:55:41 +0200269 case 1: return item->data.u8;
270 case 2: return item->data.u16;
271 case 4: return item->data.u32;
Jiri Kosinadde58452006-12-08 18:40:44 +0100272 }
273 return 0;
274}
275
276static s32 item_sdata(struct hid_item *item)
277{
278 switch (item->size) {
Jiri Slaby880d29f2008-06-18 23:55:41 +0200279 case 1: return item->data.s8;
280 case 2: return item->data.s16;
281 case 4: return item->data.s32;
Jiri Kosinadde58452006-12-08 18:40:44 +0100282 }
283 return 0;
284}
285
286/*
287 * Process a global item.
288 */
289
290static int hid_parser_global(struct hid_parser *parser, struct hid_item *item)
291{
292 switch (item->tag) {
Jiri Slaby880d29f2008-06-18 23:55:41 +0200293 case HID_GLOBAL_ITEM_TAG_PUSH:
Jiri Kosinadde58452006-12-08 18:40:44 +0100294
Jiri Slaby880d29f2008-06-18 23:55:41 +0200295 if (parser->global_stack_ptr == HID_GLOBAL_STACK_SIZE) {
296 dbg_hid("global enviroment stack overflow\n");
Jiri Kosinadde58452006-12-08 18:40:44 +0100297 return -1;
Jiri Slaby880d29f2008-06-18 23:55:41 +0200298 }
299
300 memcpy(parser->global_stack + parser->global_stack_ptr++,
301 &parser->global, sizeof(struct hid_global));
302 return 0;
303
304 case HID_GLOBAL_ITEM_TAG_POP:
305
306 if (!parser->global_stack_ptr) {
307 dbg_hid("global enviroment stack underflow\n");
308 return -1;
309 }
310
311 memcpy(&parser->global, parser->global_stack +
312 --parser->global_stack_ptr, sizeof(struct hid_global));
313 return 0;
314
315 case HID_GLOBAL_ITEM_TAG_USAGE_PAGE:
316 parser->global.usage_page = item_udata(item);
317 return 0;
318
319 case HID_GLOBAL_ITEM_TAG_LOGICAL_MINIMUM:
320 parser->global.logical_minimum = item_sdata(item);
321 return 0;
322
323 case HID_GLOBAL_ITEM_TAG_LOGICAL_MAXIMUM:
324 if (parser->global.logical_minimum < 0)
325 parser->global.logical_maximum = item_sdata(item);
326 else
327 parser->global.logical_maximum = item_udata(item);
328 return 0;
329
330 case HID_GLOBAL_ITEM_TAG_PHYSICAL_MINIMUM:
331 parser->global.physical_minimum = item_sdata(item);
332 return 0;
333
334 case HID_GLOBAL_ITEM_TAG_PHYSICAL_MAXIMUM:
335 if (parser->global.physical_minimum < 0)
336 parser->global.physical_maximum = item_sdata(item);
337 else
338 parser->global.physical_maximum = item_udata(item);
339 return 0;
340
341 case HID_GLOBAL_ITEM_TAG_UNIT_EXPONENT:
342 parser->global.unit_exponent = item_sdata(item);
343 return 0;
344
345 case HID_GLOBAL_ITEM_TAG_UNIT:
346 parser->global.unit = item_udata(item);
347 return 0;
348
349 case HID_GLOBAL_ITEM_TAG_REPORT_SIZE:
350 parser->global.report_size = item_udata(item);
351 if (parser->global.report_size > 32) {
352 dbg_hid("invalid report_size %d\n",
353 parser->global.report_size);
354 return -1;
355 }
356 return 0;
357
358 case HID_GLOBAL_ITEM_TAG_REPORT_COUNT:
359 parser->global.report_count = item_udata(item);
360 if (parser->global.report_count > HID_MAX_USAGES) {
361 dbg_hid("invalid report_count %d\n",
362 parser->global.report_count);
363 return -1;
364 }
365 return 0;
366
367 case HID_GLOBAL_ITEM_TAG_REPORT_ID:
368 parser->global.report_id = item_udata(item);
369 if (parser->global.report_id == 0) {
370 dbg_hid("report_id 0 is invalid\n");
371 return -1;
372 }
373 return 0;
374
375 default:
376 dbg_hid("unknown global tag 0x%x\n", item->tag);
377 return -1;
Jiri Kosinadde58452006-12-08 18:40:44 +0100378 }
379}
380
381/*
382 * Process a local item.
383 */
384
385static int hid_parser_local(struct hid_parser *parser, struct hid_item *item)
386{
387 __u32 data;
388 unsigned n;
389
Jiri Kosina722612c2010-01-05 11:45:52 +0100390 /* Local delimiter could have value 0, which allows size to be 0 */
391 if (item->size == 0 && item->tag != HID_LOCAL_ITEM_TAG_DELIMITER) {
Jiri Kosina58037eb2007-05-30 15:07:13 +0200392 dbg_hid("item data expected for local item\n");
Jiri Kosinadde58452006-12-08 18:40:44 +0100393 return -1;
394 }
395
396 data = item_udata(item);
397
398 switch (item->tag) {
Jiri Slaby880d29f2008-06-18 23:55:41 +0200399 case HID_LOCAL_ITEM_TAG_DELIMITER:
Jiri Kosinadde58452006-12-08 18:40:44 +0100400
Jiri Slaby880d29f2008-06-18 23:55:41 +0200401 if (data) {
402 /*
403 * We treat items before the first delimiter
404 * as global to all usage sets (branch 0).
405 * In the moment we process only these global
406 * items and the first delimiter set.
407 */
408 if (parser->local.delimiter_depth != 0) {
409 dbg_hid("nested delimiters\n");
410 return -1;
Jiri Kosinadde58452006-12-08 18:40:44 +0100411 }
Jiri Slaby880d29f2008-06-18 23:55:41 +0200412 parser->local.delimiter_depth++;
413 parser->local.delimiter_branch++;
414 } else {
415 if (parser->local.delimiter_depth < 1) {
416 dbg_hid("bogus close delimiter\n");
417 return -1;
Jiri Kosinadde58452006-12-08 18:40:44 +0100418 }
Jiri Slaby880d29f2008-06-18 23:55:41 +0200419 parser->local.delimiter_depth--;
420 }
421 return 1;
Jiri Kosinadde58452006-12-08 18:40:44 +0100422
Jiri Slaby880d29f2008-06-18 23:55:41 +0200423 case HID_LOCAL_ITEM_TAG_USAGE:
Jiri Kosinadde58452006-12-08 18:40:44 +0100424
Jiri Slaby880d29f2008-06-18 23:55:41 +0200425 if (parser->local.delimiter_branch > 1) {
426 dbg_hid("alternative usage ignored\n");
Jiri Kosinadde58452006-12-08 18:40:44 +0100427 return 0;
Jiri Slaby880d29f2008-06-18 23:55:41 +0200428 }
Jiri Kosinadde58452006-12-08 18:40:44 +0100429
Jiri Slaby880d29f2008-06-18 23:55:41 +0200430 if (item->size <= 2)
431 data = (parser->global.usage_page << 16) + data;
Jiri Kosinadde58452006-12-08 18:40:44 +0100432
Jiri Slaby880d29f2008-06-18 23:55:41 +0200433 return hid_add_usage(parser, data);
434
435 case HID_LOCAL_ITEM_TAG_USAGE_MINIMUM:
436
437 if (parser->local.delimiter_branch > 1) {
438 dbg_hid("alternative usage ignored\n");
439 return 0;
440 }
441
442 if (item->size <= 2)
443 data = (parser->global.usage_page << 16) + data;
444
445 parser->local.usage_minimum = data;
446 return 0;
447
448 case HID_LOCAL_ITEM_TAG_USAGE_MAXIMUM:
449
450 if (parser->local.delimiter_branch > 1) {
451 dbg_hid("alternative usage ignored\n");
452 return 0;
453 }
454
455 if (item->size <= 2)
456 data = (parser->global.usage_page << 16) + data;
457
458 for (n = parser->local.usage_minimum; n <= data; n++)
459 if (hid_add_usage(parser, n)) {
460 dbg_hid("hid_add_usage failed\n");
461 return -1;
Jiri Kosinadde58452006-12-08 18:40:44 +0100462 }
Jiri Slaby880d29f2008-06-18 23:55:41 +0200463 return 0;
Jiri Kosinadde58452006-12-08 18:40:44 +0100464
Jiri Slaby880d29f2008-06-18 23:55:41 +0200465 default:
Jiri Kosinadde58452006-12-08 18:40:44 +0100466
Jiri Slaby880d29f2008-06-18 23:55:41 +0200467 dbg_hid("unknown local item tag 0x%x\n", item->tag);
468 return 0;
Jiri Kosinadde58452006-12-08 18:40:44 +0100469 }
470 return 0;
471}
472
473/*
474 * Process a main item.
475 */
476
477static int hid_parser_main(struct hid_parser *parser, struct hid_item *item)
478{
479 __u32 data;
480 int ret;
481
482 data = item_udata(item);
483
484 switch (item->tag) {
Jiri Slaby880d29f2008-06-18 23:55:41 +0200485 case HID_MAIN_ITEM_TAG_BEGIN_COLLECTION:
486 ret = open_collection(parser, data & 0xff);
487 break;
488 case HID_MAIN_ITEM_TAG_END_COLLECTION:
489 ret = close_collection(parser);
490 break;
491 case HID_MAIN_ITEM_TAG_INPUT:
492 ret = hid_add_field(parser, HID_INPUT_REPORT, data);
493 break;
494 case HID_MAIN_ITEM_TAG_OUTPUT:
495 ret = hid_add_field(parser, HID_OUTPUT_REPORT, data);
496 break;
497 case HID_MAIN_ITEM_TAG_FEATURE:
498 ret = hid_add_field(parser, HID_FEATURE_REPORT, data);
499 break;
500 default:
501 dbg_hid("unknown main item tag 0x%x\n", item->tag);
502 ret = 0;
Jiri Kosinadde58452006-12-08 18:40:44 +0100503 }
504
505 memset(&parser->local, 0, sizeof(parser->local)); /* Reset the local parser environment */
506
507 return ret;
508}
509
510/*
511 * Process a reserved item.
512 */
513
514static int hid_parser_reserved(struct hid_parser *parser, struct hid_item *item)
515{
Jiri Kosina58037eb2007-05-30 15:07:13 +0200516 dbg_hid("reserved item type, tag 0x%x\n", item->tag);
Jiri Kosinadde58452006-12-08 18:40:44 +0100517 return 0;
518}
519
520/*
521 * Free a report and all registered fields. The field->usage and
522 * field->value table's are allocated behind the field, so we need
523 * only to free(field) itself.
524 */
525
526static void hid_free_report(struct hid_report *report)
527{
528 unsigned n;
529
530 for (n = 0; n < report->maxfield; n++)
531 kfree(report->field[n]);
532 kfree(report);
533}
534
535/*
536 * Free a device structure, all reports, and all fields.
537 */
538
Jiri Slaby85cdaf52008-05-16 11:49:15 +0200539static void hid_device_release(struct device *dev)
Jiri Kosinadde58452006-12-08 18:40:44 +0100540{
Jiri Slaby85cdaf52008-05-16 11:49:15 +0200541 struct hid_device *device = container_of(dev, struct hid_device, dev);
542 unsigned i, j;
Jiri Kosinadde58452006-12-08 18:40:44 +0100543
544 for (i = 0; i < HID_REPORT_TYPES; i++) {
545 struct hid_report_enum *report_enum = device->report_enum + i;
546
547 for (j = 0; j < 256; j++) {
548 struct hid_report *report = report_enum->report_id_hash[j];
549 if (report)
550 hid_free_report(report);
551 }
552 }
553
554 kfree(device->rdesc);
Jiri Kosina767fe782007-01-24 23:05:07 +0100555 kfree(device->collection);
Jiri Kosinadde58452006-12-08 18:40:44 +0100556 kfree(device);
557}
558
559/*
560 * Fetch a report description item from the data stream. We support long
561 * items, though they are not used yet.
562 */
563
564static u8 *fetch_item(__u8 *start, __u8 *end, struct hid_item *item)
565{
566 u8 b;
567
568 if ((end - start) <= 0)
569 return NULL;
570
571 b = *start++;
572
573 item->type = (b >> 2) & 3;
574 item->tag = (b >> 4) & 15;
575
576 if (item->tag == HID_ITEM_TAG_LONG) {
577
578 item->format = HID_ITEM_FORMAT_LONG;
579
580 if ((end - start) < 2)
581 return NULL;
582
583 item->size = *start++;
584 item->tag = *start++;
585
586 if ((end - start) < item->size)
587 return NULL;
588
589 item->data.longdata = start;
590 start += item->size;
591 return start;
592 }
593
594 item->format = HID_ITEM_FORMAT_SHORT;
595 item->size = b & 3;
596
597 switch (item->size) {
Jiri Slaby880d29f2008-06-18 23:55:41 +0200598 case 0:
599 return start;
Jiri Kosinadde58452006-12-08 18:40:44 +0100600
Jiri Slaby880d29f2008-06-18 23:55:41 +0200601 case 1:
602 if ((end - start) < 1)
603 return NULL;
604 item->data.u8 = *start++;
605 return start;
Jiri Kosinadde58452006-12-08 18:40:44 +0100606
Jiri Slaby880d29f2008-06-18 23:55:41 +0200607 case 2:
608 if ((end - start) < 2)
609 return NULL;
610 item->data.u16 = get_unaligned_le16(start);
611 start = (__u8 *)((__le16 *)start + 1);
612 return start;
Jiri Kosinadde58452006-12-08 18:40:44 +0100613
Jiri Slaby880d29f2008-06-18 23:55:41 +0200614 case 3:
615 item->size++;
616 if ((end - start) < 4)
617 return NULL;
618 item->data.u32 = get_unaligned_le32(start);
619 start = (__u8 *)((__le32 *)start + 1);
620 return start;
Jiri Kosinadde58452006-12-08 18:40:44 +0100621 }
622
623 return NULL;
624}
625
Jiri Slaby85cdaf52008-05-16 11:49:15 +0200626/**
627 * hid_parse_report - parse device report
628 *
629 * @device: hid device
630 * @start: report start
631 * @size: report size
632 *
Jiri Kosinadde58452006-12-08 18:40:44 +0100633 * Parse a report description into a hid_device structure. Reports are
634 * enumerated, fields are attached to these reports.
Jiri Slaby85cdaf52008-05-16 11:49:15 +0200635 * 0 returned on success, otherwise nonzero error value.
Jiri Kosinadde58452006-12-08 18:40:44 +0100636 */
Jiri Slaby85cdaf52008-05-16 11:49:15 +0200637int hid_parse_report(struct hid_device *device, __u8 *start,
638 unsigned size)
Jiri Kosinadde58452006-12-08 18:40:44 +0100639{
Jiri Kosinadde58452006-12-08 18:40:44 +0100640 struct hid_parser *parser;
641 struct hid_item item;
642 __u8 *end;
Jiri Slaby85cdaf52008-05-16 11:49:15 +0200643 int ret;
Jiri Kosinadde58452006-12-08 18:40:44 +0100644 static int (*dispatch_type[])(struct hid_parser *parser,
645 struct hid_item *item) = {
646 hid_parser_main,
647 hid_parser_global,
648 hid_parser_local,
649 hid_parser_reserved
650 };
651
Jiri Slabyc500c972008-05-16 11:49:16 +0200652 if (device->driver->report_fixup)
653 device->driver->report_fixup(device, start, size);
654
Jiri Slaby85cdaf52008-05-16 11:49:15 +0200655 device->rdesc = kmalloc(size, GFP_KERNEL);
656 if (device->rdesc == NULL)
657 return -ENOMEM;
Jiri Kosinadde58452006-12-08 18:40:44 +0100658 memcpy(device->rdesc, start, size);
659 device->rsize = size;
660
Jiri Slaby85cdaf52008-05-16 11:49:15 +0200661 parser = vmalloc(sizeof(struct hid_parser));
662 if (!parser) {
663 ret = -ENOMEM;
664 goto err;
Jiri Kosinadde58452006-12-08 18:40:44 +0100665 }
Jiri Slaby85cdaf52008-05-16 11:49:15 +0200666
Jiri Kosina47a80ed2007-03-12 14:55:12 +0100667 memset(parser, 0, sizeof(struct hid_parser));
Jiri Kosinadde58452006-12-08 18:40:44 +0100668 parser->device = device;
669
670 end = start + size;
Jiri Slaby85cdaf52008-05-16 11:49:15 +0200671 ret = -EINVAL;
Jiri Kosinadde58452006-12-08 18:40:44 +0100672 while ((start = fetch_item(start, end, &item)) != NULL) {
673
674 if (item.format != HID_ITEM_FORMAT_SHORT) {
Jiri Kosina58037eb2007-05-30 15:07:13 +0200675 dbg_hid("unexpected long global item\n");
Jiri Slaby85cdaf52008-05-16 11:49:15 +0200676 goto err;
Jiri Kosinadde58452006-12-08 18:40:44 +0100677 }
678
679 if (dispatch_type[item.type](parser, &item)) {
Jiri Kosina58037eb2007-05-30 15:07:13 +0200680 dbg_hid("item %u %u %u %u parsing failed\n",
Jiri Kosinadde58452006-12-08 18:40:44 +0100681 item.format, (unsigned)item.size, (unsigned)item.type, (unsigned)item.tag);
Jiri Slaby85cdaf52008-05-16 11:49:15 +0200682 goto err;
Jiri Kosinadde58452006-12-08 18:40:44 +0100683 }
684
685 if (start == end) {
686 if (parser->collection_stack_ptr) {
Jiri Kosina58037eb2007-05-30 15:07:13 +0200687 dbg_hid("unbalanced collection at end of report description\n");
Jiri Slaby85cdaf52008-05-16 11:49:15 +0200688 goto err;
Jiri Kosinadde58452006-12-08 18:40:44 +0100689 }
690 if (parser->local.delimiter_depth) {
Jiri Kosina58037eb2007-05-30 15:07:13 +0200691 dbg_hid("unbalanced delimiter at end of report description\n");
Jiri Slaby85cdaf52008-05-16 11:49:15 +0200692 goto err;
Jiri Kosinadde58452006-12-08 18:40:44 +0100693 }
Jiri Kosina47a80ed2007-03-12 14:55:12 +0100694 vfree(parser);
Jiri Slaby85cdaf52008-05-16 11:49:15 +0200695 return 0;
Jiri Kosinadde58452006-12-08 18:40:44 +0100696 }
697 }
698
Jiri Kosina58037eb2007-05-30 15:07:13 +0200699 dbg_hid("item fetching failed at offset %d\n", (int)(end - start));
Jiri Slaby85cdaf52008-05-16 11:49:15 +0200700err:
Jiri Kosina47a80ed2007-03-12 14:55:12 +0100701 vfree(parser);
Jiri Slaby85cdaf52008-05-16 11:49:15 +0200702 return ret;
Jiri Kosinadde58452006-12-08 18:40:44 +0100703}
Jiri Kosina229695e2006-12-08 18:40:53 +0100704EXPORT_SYMBOL_GPL(hid_parse_report);
Jiri Kosinadde58452006-12-08 18:40:44 +0100705
706/*
707 * Convert a signed n-bit integer to signed 32-bit integer. Common
708 * cases are done through the compiler, the screwed things has to be
709 * done by hand.
710 */
711
712static s32 snto32(__u32 value, unsigned n)
713{
714 switch (n) {
Jiri Slaby880d29f2008-06-18 23:55:41 +0200715 case 8: return ((__s8)value);
716 case 16: return ((__s16)value);
717 case 32: return ((__s32)value);
Jiri Kosinadde58452006-12-08 18:40:44 +0100718 }
719 return value & (1 << (n - 1)) ? value | (-1 << n) : value;
720}
721
722/*
723 * Convert a signed 32-bit integer to a signed n-bit integer.
724 */
725
726static u32 s32ton(__s32 value, unsigned n)
727{
728 s32 a = value >> (n - 1);
729 if (a && a != -1)
730 return value < 0 ? 1 << (n - 1) : (1 << (n - 1)) - 1;
731 return value & ((1 << n) - 1);
732}
733
734/*
735 * Extract/implement a data field from/to a little endian report (bit array).
736 *
737 * Code sort-of follows HID spec:
738 * http://www.usb.org/developers/devclass_docs/HID1_11.pdf
739 *
740 * While the USB HID spec allows unlimited length bit fields in "report
741 * descriptors", most devices never use more than 16 bits.
742 * One model of UPS is claimed to report "LINEV" as a 32-bit field.
743 * Search linux-kernel and linux-usb-devel archives for "hid-core extract".
744 */
745
746static __inline__ __u32 extract(__u8 *report, unsigned offset, unsigned n)
747{
748 u64 x;
749
Jiri Kosinac4124c92007-11-30 11:12:58 +0100750 if (n > 32)
751 printk(KERN_WARNING "HID: extract() called with n (%d) > 32! (%s)\n",
752 n, current->comm);
Jiri Kosinadde58452006-12-08 18:40:44 +0100753
754 report += offset >> 3; /* adjust byte index */
Jiri Kosina229695e2006-12-08 18:40:53 +0100755 offset &= 7; /* now only need bit offset into one byte */
Harvey Harrisonc1050682008-04-29 01:03:31 -0700756 x = get_unaligned_le64(report);
Jiri Kosina229695e2006-12-08 18:40:53 +0100757 x = (x >> offset) & ((1ULL << n) - 1); /* extract bit field */
Jiri Kosinadde58452006-12-08 18:40:44 +0100758 return (u32) x;
759}
760
761/*
762 * "implement" : set bits in a little endian bit stream.
763 * Same concepts as "extract" (see comments above).
764 * The data mangled in the bit stream remains in little endian
765 * order the whole time. It make more sense to talk about
766 * endianness of register values by considering a register
767 * a "cached" copy of the little endiad bit stream.
768 */
769static __inline__ void implement(__u8 *report, unsigned offset, unsigned n, __u32 value)
770{
Harvey Harrison6f0168d2008-05-16 11:00:23 +0200771 u64 x;
Jiri Kosinadde58452006-12-08 18:40:44 +0100772 u64 m = (1ULL << n) - 1;
773
Jiri Kosinac4124c92007-11-30 11:12:58 +0100774 if (n > 32)
775 printk(KERN_WARNING "HID: implement() called with n (%d) > 32! (%s)\n",
776 n, current->comm);
Jiri Kosinadde58452006-12-08 18:40:44 +0100777
Jiri Kosinac4124c92007-11-30 11:12:58 +0100778 if (value > m)
779 printk(KERN_WARNING "HID: implement() called with too large value %d! (%s)\n",
780 value, current->comm);
Jiri Kosinadde58452006-12-08 18:40:44 +0100781 WARN_ON(value > m);
782 value &= m;
783
784 report += offset >> 3;
785 offset &= 7;
786
Harvey Harrison6f0168d2008-05-16 11:00:23 +0200787 x = get_unaligned_le64(report);
788 x &= ~(m << offset);
789 x |= ((u64)value) << offset;
790 put_unaligned_le64(x, report);
Jiri Kosinadde58452006-12-08 18:40:44 +0100791}
792
793/*
794 * Search an array for a value.
795 */
796
797static __inline__ int search(__s32 *array, __s32 value, unsigned n)
798{
799 while (n--) {
800 if (*array++ == value)
801 return 0;
802 }
803 return -1;
804}
805
Jiri Slaby85cdaf52008-05-16 11:49:15 +0200806/**
807 * hid_match_report - check if driver's raw_event should be called
808 *
809 * @hid: hid device
810 * @report_type: type to match against
811 *
812 * compare hid->driver->report_table->report_type to report->type
813 */
814static int hid_match_report(struct hid_device *hid, struct hid_report *report)
Jiri Kosinadde58452006-12-08 18:40:44 +0100815{
Jiri Slaby85cdaf52008-05-16 11:49:15 +0200816 const struct hid_report_id *id = hid->driver->report_table;
817
818 if (!id) /* NULL means all */
819 return 1;
820
821 for (; id->report_type != HID_TERMINATOR; id++)
822 if (id->report_type == HID_ANY_ID ||
823 id->report_type == report->type)
824 return 1;
825 return 0;
826}
827
828/**
829 * hid_match_usage - check if driver's event should be called
830 *
831 * @hid: hid device
832 * @usage: usage to match against
833 *
834 * compare hid->driver->usage_table->usage_{type,code} to
835 * usage->usage_{type,code}
836 */
837static int hid_match_usage(struct hid_device *hid, struct hid_usage *usage)
838{
839 const struct hid_usage_id *id = hid->driver->usage_table;
840
841 if (!id) /* NULL means all */
842 return 1;
843
844 for (; id->usage_type != HID_ANY_ID - 1; id++)
845 if ((id->usage_hid == HID_ANY_ID ||
846 id->usage_hid == usage->hid) &&
847 (id->usage_type == HID_ANY_ID ||
848 id->usage_type == usage->type) &&
849 (id->usage_code == HID_ANY_ID ||
850 id->usage_code == usage->code))
851 return 1;
852 return 0;
853}
854
855static void hid_process_event(struct hid_device *hid, struct hid_field *field,
856 struct hid_usage *usage, __s32 value, int interrupt)
857{
858 struct hid_driver *hdrv = hid->driver;
859 int ret;
860
Jiri Kosinacd667ce2009-06-12 15:20:57 +0200861 hid_dump_input(hid, usage, value);
Jiri Slaby85cdaf52008-05-16 11:49:15 +0200862
863 if (hdrv && hdrv->event && hid_match_usage(hid, usage)) {
864 ret = hdrv->event(hid, field, usage, value);
865 if (ret != 0) {
866 if (ret < 0)
867 dbg_hid("%s's event failed with %d\n",
868 hdrv->name, ret);
869 return;
870 }
871 }
872
Jiri Kosinadde58452006-12-08 18:40:44 +0100873 if (hid->claimed & HID_CLAIMED_INPUT)
874 hidinput_hid_event(hid, field, usage, value);
Jiri Kosinaaa938f72006-12-08 18:41:10 +0100875 if (hid->claimed & HID_CLAIMED_HIDDEV && interrupt && hid->hiddev_hid_event)
876 hid->hiddev_hid_event(hid, field, usage, value);
Jiri Kosinadde58452006-12-08 18:40:44 +0100877}
878
879/*
880 * Analyse a received field, and fetch the data from it. The field
881 * content is stored for next report processing (we do differential
882 * reporting to the layer).
883 */
884
Adrian Bunkabdff0f2008-03-31 01:53:56 +0200885static void hid_input_field(struct hid_device *hid, struct hid_field *field,
886 __u8 *data, int interrupt)
Jiri Kosinadde58452006-12-08 18:40:44 +0100887{
888 unsigned n;
889 unsigned count = field->report_count;
890 unsigned offset = field->report_offset;
891 unsigned size = field->report_size;
892 __s32 min = field->logical_minimum;
893 __s32 max = field->logical_maximum;
894 __s32 *value;
895
896 if (!(value = kmalloc(sizeof(__s32) * count, GFP_ATOMIC)))
897 return;
898
899 for (n = 0; n < count; n++) {
900
901 value[n] = min < 0 ? snto32(extract(data, offset + n * size, size), size) :
902 extract(data, offset + n * size, size);
903
904 if (!(field->flags & HID_MAIN_ITEM_VARIABLE) /* Ignore report if ErrorRollOver */
905 && value[n] >= min && value[n] <= max
906 && field->usage[value[n] - min].hid == HID_UP_KEYBOARD + 1)
907 goto exit;
908 }
909
910 for (n = 0; n < count; n++) {
911
912 if (HID_MAIN_ITEM_VARIABLE & field->flags) {
913 hid_process_event(hid, field, &field->usage[n], value[n], interrupt);
914 continue;
915 }
916
917 if (field->value[n] >= min && field->value[n] <= max
918 && field->usage[field->value[n] - min].hid
919 && search(value, field->value[n], count))
920 hid_process_event(hid, field, &field->usage[field->value[n] - min], 0, interrupt);
921
922 if (value[n] >= min && value[n] <= max
923 && field->usage[value[n] - min].hid
924 && search(field->value, value[n], count))
925 hid_process_event(hid, field, &field->usage[value[n] - min], 1, interrupt);
926 }
927
928 memcpy(field->value, value, count * sizeof(__s32));
929exit:
930 kfree(value);
931}
Jiri Kosinadde58452006-12-08 18:40:44 +0100932
933/*
934 * Output the field into the report.
935 */
936
937static void hid_output_field(struct hid_field *field, __u8 *data)
938{
939 unsigned count = field->report_count;
940 unsigned offset = field->report_offset;
941 unsigned size = field->report_size;
Simon Budig46386b52007-03-12 13:52:04 +0100942 unsigned bitsused = offset + count * size;
Jiri Kosinadde58452006-12-08 18:40:44 +0100943 unsigned n;
944
Simon Budig46386b52007-03-12 13:52:04 +0100945 /* make sure the unused bits in the last byte are zeros */
946 if (count > 0 && size > 0 && (bitsused % 8) != 0)
947 data[(bitsused-1)/8] &= (1 << (bitsused % 8)) - 1;
948
Jiri Kosinadde58452006-12-08 18:40:44 +0100949 for (n = 0; n < count; n++) {
950 if (field->logical_minimum < 0) /* signed values */
951 implement(data, offset + n * size, size, s32ton(field->value[n], size));
952 else /* unsigned values */
953 implement(data, offset + n * size, size, field->value[n]);
954 }
955}
956
957/*
958 * Create a report.
959 */
960
Jiri Kosina229695e2006-12-08 18:40:53 +0100961void hid_output_report(struct hid_report *report, __u8 *data)
Jiri Kosinadde58452006-12-08 18:40:44 +0100962{
963 unsigned n;
964
965 if (report->id > 0)
966 *data++ = report->id;
967
968 for (n = 0; n < report->maxfield; n++)
969 hid_output_field(report->field[n], data);
970}
Jiri Kosina229695e2006-12-08 18:40:53 +0100971EXPORT_SYMBOL_GPL(hid_output_report);
Jiri Kosinadde58452006-12-08 18:40:44 +0100972
973/*
974 * Set a field value. The report this field belongs to has to be
975 * created and transferred to the device, to set this value in the
976 * device.
977 */
978
979int hid_set_field(struct hid_field *field, unsigned offset, __s32 value)
980{
981 unsigned size = field->report_size;
982
Jiri Kosinacd667ce2009-06-12 15:20:57 +0200983 hid_dump_input(field->report->device, field->usage + offset, value);
Jiri Kosinadde58452006-12-08 18:40:44 +0100984
985 if (offset >= field->report_count) {
Jiri Kosina58037eb2007-05-30 15:07:13 +0200986 dbg_hid("offset (%d) exceeds report_count (%d)\n", offset, field->report_count);
Jiri Kosinadde58452006-12-08 18:40:44 +0100987 return -1;
988 }
989 if (field->logical_minimum < 0) {
990 if (value != snto32(s32ton(value, size), size)) {
Jiri Kosina58037eb2007-05-30 15:07:13 +0200991 dbg_hid("value %d is out of range\n", value);
Jiri Kosinadde58452006-12-08 18:40:44 +0100992 return -1;
993 }
994 }
995 field->value[offset] = value;
996 return 0;
997}
Jiri Kosina229695e2006-12-08 18:40:53 +0100998EXPORT_SYMBOL_GPL(hid_set_field);
Jiri Kosinadde58452006-12-08 18:40:44 +0100999
Jiri Slaby85cdaf52008-05-16 11:49:15 +02001000static struct hid_report *hid_get_report(struct hid_report_enum *report_enum,
1001 const u8 *data)
1002{
1003 struct hid_report *report;
1004 unsigned int n = 0; /* Normally report number is 0 */
1005
1006 /* Device uses numbered reports, data[0] is report number */
1007 if (report_enum->numbered)
1008 n = *data;
1009
1010 report = report_enum->report_id_hash[n];
1011 if (report == NULL)
1012 dbg_hid("undefined report_id %u received\n", n);
1013
1014 return report;
1015}
1016
1017void hid_report_raw_event(struct hid_device *hid, int type, u8 *data, int size,
1018 int interrupt)
Jiri Kosinaaa8de2f2006-12-08 18:41:17 +01001019{
1020 struct hid_report_enum *report_enum = hid->report_enum + type;
1021 struct hid_report *report;
Jiri Slaby85cdaf52008-05-16 11:49:15 +02001022 unsigned int a;
1023 int rsize, csize = size;
1024 u8 *cdata = data;
Jiri Kosinaaa8de2f2006-12-08 18:41:17 +01001025
Jiri Slaby85cdaf52008-05-16 11:49:15 +02001026 report = hid_get_report(report_enum, data);
1027 if (!report)
1028 return;
Jiri Kosinaaa8de2f2006-12-08 18:41:17 +01001029
Jiri Slaby85cdaf52008-05-16 11:49:15 +02001030 if (report_enum->numbered) {
1031 cdata++;
1032 csize--;
Jiri Kosinaaa8de2f2006-12-08 18:41:17 +01001033 }
1034
1035 rsize = ((report->size - 1) >> 3) + 1;
1036
Jiri Slaby85cdaf52008-05-16 11:49:15 +02001037 if (csize < rsize) {
1038 dbg_hid("report %d is too short, (%d < %d)\n", report->id,
1039 csize, rsize);
1040 memset(cdata + csize, 0, rsize - csize);
Jiri Kosinaaa8de2f2006-12-08 18:41:17 +01001041 }
1042
1043 if ((hid->claimed & HID_CLAIMED_HIDDEV) && hid->hiddev_report_event)
1044 hid->hiddev_report_event(hid, report);
Jiri Kosinab54ec3c2008-03-28 14:11:22 +01001045 if (hid->claimed & HID_CLAIMED_HIDRAW) {
1046 /* numbered reports need to be passed with the report num */
1047 if (report_enum->numbered)
1048 hidraw_report_event(hid, data - 1, size + 1);
1049 else
1050 hidraw_report_event(hid, data, size);
1051 }
Jiri Kosinaaa8de2f2006-12-08 18:41:17 +01001052
Jiri Slaby85cdaf52008-05-16 11:49:15 +02001053 for (a = 0; a < report->maxfield; a++)
1054 hid_input_field(hid, report->field[a], cdata, interrupt);
Jiri Kosinaaa8de2f2006-12-08 18:41:17 +01001055
1056 if (hid->claimed & HID_CLAIMED_INPUT)
1057 hidinput_report_event(hid, report);
Jiri Slaby85cdaf52008-05-16 11:49:15 +02001058}
1059EXPORT_SYMBOL_GPL(hid_report_raw_event);
1060
1061/**
1062 * hid_input_report - report data from lower layer (usb, bt...)
1063 *
1064 * @hid: hid device
1065 * @type: HID report type (HID_*_REPORT)
1066 * @data: report contents
1067 * @size: size of data parameter
Jiri Kosinaff9b00a2009-10-01 16:03:13 +02001068 * @interrupt: distinguish between interrupt and control transfers
Jiri Slaby85cdaf52008-05-16 11:49:15 +02001069 *
1070 * This is data entry for lower layers.
1071 */
1072int hid_input_report(struct hid_device *hid, int type, u8 *data, int size, int interrupt)
1073{
Julia Lawall76c317d2009-07-19 17:26:13 +02001074 struct hid_report_enum *report_enum;
1075 struct hid_driver *hdrv;
Jiri Slaby85cdaf52008-05-16 11:49:15 +02001076 struct hid_report *report;
Jiri Kosinacd667ce2009-06-12 15:20:57 +02001077 char *buf;
Jiri Slaby85cdaf52008-05-16 11:49:15 +02001078 unsigned int i;
1079 int ret;
1080
1081 if (!hid || !hid->driver)
1082 return -ENODEV;
Julia Lawall76c317d2009-07-19 17:26:13 +02001083 report_enum = hid->report_enum + type;
1084 hdrv = hid->driver;
Jiri Slaby85cdaf52008-05-16 11:49:15 +02001085
1086 if (!size) {
1087 dbg_hid("empty report\n");
1088 return -1;
1089 }
1090
Jiri Kosinad1ff6522009-09-15 11:59:49 +02001091 buf = kmalloc(sizeof(char) * HID_DEBUG_BUFSIZE, GFP_ATOMIC);
Jiri Kosinacd667ce2009-06-12 15:20:57 +02001092
1093 if (!buf) {
1094 report = hid_get_report(report_enum, data);
1095 goto nomem;
1096 }
1097
1098 snprintf(buf, HID_DEBUG_BUFSIZE - 1,
1099 "\nreport (size %u) (%snumbered)\n", size, report_enum->numbered ? "" : "un");
1100 hid_debug_event(hid, buf);
Jiri Slaby85cdaf52008-05-16 11:49:15 +02001101
1102 report = hid_get_report(report_enum, data);
Jiri Kosina55dba522009-06-26 10:50:12 +02001103 if (!report) {
1104 kfree(buf);
Jiri Slaby85cdaf52008-05-16 11:49:15 +02001105 return -1;
Jiri Kosina55dba522009-06-26 10:50:12 +02001106 }
Jiri Slaby85cdaf52008-05-16 11:49:15 +02001107
1108 /* dump the report */
Jiri Kosinacd667ce2009-06-12 15:20:57 +02001109 snprintf(buf, HID_DEBUG_BUFSIZE - 1,
1110 "report %d (size %u) = ", report->id, size);
1111 hid_debug_event(hid, buf);
1112 for (i = 0; i < size; i++) {
1113 snprintf(buf, HID_DEBUG_BUFSIZE - 1,
1114 " %02x", data[i]);
1115 hid_debug_event(hid, buf);
1116 }
1117 hid_debug_event(hid, "\n");
Jiri Slaby85cdaf52008-05-16 11:49:15 +02001118
Jiri Kosinacd667ce2009-06-12 15:20:57 +02001119 kfree(buf);
1120
1121nomem:
Jiri Slaby85cdaf52008-05-16 11:49:15 +02001122 if (hdrv && hdrv->raw_event && hid_match_report(hid, report)) {
1123 ret = hdrv->raw_event(hid, report, data, size);
1124 if (ret != 0)
1125 return ret < 0 ? ret : 0;
1126 }
1127
1128 hid_report_raw_event(hid, type, data, size, interrupt);
Jiri Kosinaaa8de2f2006-12-08 18:41:17 +01001129
1130 return 0;
1131}
1132EXPORT_SYMBOL_GPL(hid_input_report);
1133
Jiri Kosina0f37cd02008-08-20 19:13:52 +02001134static bool hid_match_one_id(struct hid_device *hdev,
1135 const struct hid_device_id *id)
1136{
1137 return id->bus == hdev->bus &&
1138 (id->vendor == HID_ANY_ID || id->vendor == hdev->vendor) &&
1139 (id->product == HID_ANY_ID || id->product == hdev->product);
1140}
1141
1142static const struct hid_device_id *hid_match_id(struct hid_device *hdev,
1143 const struct hid_device_id *id)
1144{
1145 for (; id->bus; id++)
1146 if (hid_match_one_id(hdev, id))
1147 return id;
1148
1149 return NULL;
1150}
1151
1152static const struct hid_device_id hid_hiddev_list[] = {
Richard Hughesc0bd6a42008-08-27 11:19:37 +02001153 { HID_USB_DEVICE(USB_VENDOR_ID_MGE, USB_DEVICE_ID_MGE_UPS) },
1154 { HID_USB_DEVICE(USB_VENDOR_ID_MGE, USB_DEVICE_ID_MGE_UPS1) },
Jiri Kosina0f37cd02008-08-20 19:13:52 +02001155 { }
1156};
1157
1158static bool hid_hiddev(struct hid_device *hdev)
1159{
1160 return !!hid_match_id(hdev, hid_hiddev_list);
1161}
1162
Jiri Slaby93c10132008-06-27 00:04:24 +02001163int hid_connect(struct hid_device *hdev, unsigned int connect_mask)
1164{
1165 static const char *types[] = { "Device", "Pointer", "Mouse", "Device",
1166 "Joystick", "Gamepad", "Keyboard", "Keypad",
1167 "Multi-Axis Controller"
1168 };
1169 const char *type, *bus;
1170 char buf[64];
1171 unsigned int i;
1172 int len;
1173
1174 if (hdev->bus != BUS_USB)
1175 connect_mask &= ~HID_CONNECT_HIDDEV;
Jiri Kosina0f37cd02008-08-20 19:13:52 +02001176 if (hid_hiddev(hdev))
1177 connect_mask |= HID_CONNECT_HIDDEV_FORCE;
Jiri Slaby93c10132008-06-27 00:04:24 +02001178
1179 if ((connect_mask & HID_CONNECT_HIDINPUT) && !hidinput_connect(hdev,
1180 connect_mask & HID_CONNECT_HIDINPUT_FORCE))
1181 hdev->claimed |= HID_CLAIMED_INPUT;
1182 if ((connect_mask & HID_CONNECT_HIDDEV) && hdev->hiddev_connect &&
1183 !hdev->hiddev_connect(hdev,
1184 connect_mask & HID_CONNECT_HIDDEV_FORCE))
1185 hdev->claimed |= HID_CLAIMED_HIDDEV;
1186 if ((connect_mask & HID_CONNECT_HIDRAW) && !hidraw_connect(hdev))
1187 hdev->claimed |= HID_CLAIMED_HIDRAW;
1188
1189 if (!hdev->claimed) {
1190 dev_err(&hdev->dev, "claimed by neither input, hiddev nor "
1191 "hidraw\n");
1192 return -ENODEV;
1193 }
1194
1195 if ((hdev->claimed & HID_CLAIMED_INPUT) &&
1196 (connect_mask & HID_CONNECT_FF) && hdev->ff_init)
1197 hdev->ff_init(hdev);
1198
1199 len = 0;
1200 if (hdev->claimed & HID_CLAIMED_INPUT)
1201 len += sprintf(buf + len, "input");
1202 if (hdev->claimed & HID_CLAIMED_HIDDEV)
1203 len += sprintf(buf + len, "%shiddev%d", len ? "," : "",
1204 hdev->minor);
1205 if (hdev->claimed & HID_CLAIMED_HIDRAW)
1206 len += sprintf(buf + len, "%shidraw%d", len ? "," : "",
1207 ((struct hidraw *)hdev->hidraw)->minor);
1208
1209 type = "Device";
1210 for (i = 0; i < hdev->maxcollection; i++) {
1211 struct hid_collection *col = &hdev->collection[i];
1212 if (col->type == HID_COLLECTION_APPLICATION &&
1213 (col->usage & HID_USAGE_PAGE) == HID_UP_GENDESK &&
1214 (col->usage & 0xffff) < ARRAY_SIZE(types)) {
1215 type = types[col->usage & 0xffff];
1216 break;
1217 }
1218 }
1219
1220 switch (hdev->bus) {
1221 case BUS_USB:
1222 bus = "USB";
1223 break;
1224 case BUS_BLUETOOTH:
1225 bus = "BLUETOOTH";
1226 break;
1227 default:
1228 bus = "<UNKNOWN>";
1229 }
1230
1231 dev_info(&hdev->dev, "%s: %s HID v%x.%02x %s [%s] on %s\n",
1232 buf, bus, hdev->version >> 8, hdev->version & 0xff,
1233 type, hdev->name, hdev->phys);
1234
1235 return 0;
1236}
1237EXPORT_SYMBOL_GPL(hid_connect);
1238
Jiri Kosinac4c259b2009-09-15 16:27:45 +02001239void hid_disconnect(struct hid_device *hdev)
1240{
1241 if (hdev->claimed & HID_CLAIMED_INPUT)
1242 hidinput_disconnect(hdev);
1243 if (hdev->claimed & HID_CLAIMED_HIDDEV)
1244 hdev->hiddev_disconnect(hdev);
1245 if (hdev->claimed & HID_CLAIMED_HIDRAW)
1246 hidraw_disconnect(hdev);
1247}
1248EXPORT_SYMBOL_GPL(hid_disconnect);
1249
Jiri Kosinabae7eb32009-01-28 23:06:37 +01001250/* a list of devices for which there is a specialized driver on HID bus */
Jiri Slaby85cdaf52008-05-16 11:49:15 +02001251static const struct hid_device_id hid_blacklist[] = {
Stephane Chattyb6353f42009-12-22 23:04:17 +01001252 { HID_USB_DEVICE(USB_VENDOR_ID_3M, USB_DEVICE_ID_3M1968) },
Jiri Slaby14a21cd2008-06-23 23:31:09 +02001253 { HID_USB_DEVICE(USB_VENDOR_ID_A4TECH, USB_DEVICE_ID_A4TECH_WCP32PU) },
1254 { HID_USB_DEVICE(USB_VENDOR_ID_A4TECH, USB_DEVICE_ID_A4TECH_X5_005D) },
Jiri Kosinadf9bcac2008-10-14 22:45:40 +02001255 { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_ATV_IRCONTROL) },
Jiri Slaby8c19a512008-06-18 23:36:49 +02001256 { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_IRCONTROL4) },
1257 { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_MIGHTYMOUSE) },
1258 { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_FOUNTAIN_ANSI) },
1259 { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_FOUNTAIN_ISO) },
1260 { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_GEYSER_ANSI) },
1261 { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_GEYSER_ISO) },
1262 { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_GEYSER_JIS) },
1263 { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_GEYSER3_ANSI) },
1264 { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_GEYSER3_ISO) },
1265 { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_GEYSER3_JIS) },
1266 { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_GEYSER4_ANSI) },
1267 { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_GEYSER4_ISO) },
1268 { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_GEYSER4_JIS) },
Ryan Finniefef3f572009-03-05 10:18:01 +01001269 { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_ALU_MINI_ANSI) },
1270 { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_ALU_MINI_ISO) },
1271 { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_ALU_MINI_JIS) },
Jiri Slaby8c19a512008-06-18 23:36:49 +02001272 { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_ALU_ANSI) },
1273 { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_ALU_ISO) },
1274 { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_ALU_JIS) },
1275 { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_GEYSER4_HF_ANSI) },
1276 { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_GEYSER4_HF_ISO) },
1277 { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_GEYSER4_HF_JIS) },
Jan Scholzee8a1a02008-11-26 15:33:45 +01001278 { HID_BLUETOOTH_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_ALU_WIRELESS_ANSI) },
1279 { HID_BLUETOOTH_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_ALU_WIRELESS_ISO) },
1280 { HID_BLUETOOTH_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_ALU_WIRELESS_JIS) },
Jiri Slaby8c19a512008-06-18 23:36:49 +02001281 { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING_ANSI) },
1282 { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING_ISO) },
1283 { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING_JIS) },
1284 { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING2_ANSI) },
1285 { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING2_ISO) },
1286 { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING2_JIS) },
Henrik Rydberga96d6ef2008-11-04 20:03:45 +01001287 { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING3_ANSI) },
1288 { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING3_ISO) },
1289 { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING3_JIS) },
Jiri Slaby8c19a512008-06-18 23:36:49 +02001290 { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_FOUNTAIN_TP_ONLY) },
1291 { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_GEYSER1_TP_ONLY) },
Jiri Slabyb5635b12008-06-24 23:24:57 +02001292 { HID_USB_DEVICE(USB_VENDOR_ID_BELKIN, USB_DEVICE_ID_FLIP_KVM) },
Jiri Slaby3b239cd2008-06-24 20:42:25 +02001293 { HID_USB_DEVICE(USB_VENDOR_ID_CHERRY, USB_DEVICE_ID_CHERRY_CYMOTION) },
Jiri Slabyfcfacfd2008-06-24 22:48:52 +02001294 { HID_USB_DEVICE(USB_VENDOR_ID_CHICONY, USB_DEVICE_ID_CHICONY_TACTICAL_PAD) },
Jiri Slaby0f221322008-06-23 22:54:08 +02001295 { HID_USB_DEVICE(USB_VENDOR_ID_CYPRESS, USB_DEVICE_ID_CYPRESS_BARCODE_1) },
1296 { HID_USB_DEVICE(USB_VENDOR_ID_CYPRESS, USB_DEVICE_ID_CYPRESS_BARCODE_2) },
Jiri Kosinae8d0eab2009-12-02 22:54:11 +01001297 { HID_USB_DEVICE(USB_VENDOR_ID_CYPRESS, USB_DEVICE_ID_CYPRESS_BARCODE_3) },
Jiri Slaby0f221322008-06-23 22:54:08 +02001298 { HID_USB_DEVICE(USB_VENDOR_ID_CYPRESS, USB_DEVICE_ID_CYPRESS_MOUSE) },
Richard Walmsley3f866fb2009-03-04 22:12:04 +13001299 { HID_USB_DEVICE(USB_VENDOR_ID_DRAGONRISE, 0x0006) },
Jiri Slaby1f243e32008-06-24 21:11:21 +02001300 { HID_USB_DEVICE(USB_VENDOR_ID_EZKEY, USB_DEVICE_ID_BTC_8193) },
Jiri Kosina5181e592008-11-17 01:44:38 +01001301 { HID_USB_DEVICE(USB_VENDOR_ID_GAMERON, USB_DEVICE_ID_GAMERON_DUAL_PSX_ADAPTOR) },
Jiri Kosina578f3a32008-11-20 15:55:38 +01001302 { HID_USB_DEVICE(USB_VENDOR_ID_GAMERON, USB_DEVICE_ID_GAMERON_DUAL_PCS_ADAPTOR) },
Jiri Kosina5181e592008-11-17 01:44:38 +01001303 { HID_USB_DEVICE(USB_VENDOR_ID_GREENASIA, 0x0003) },
Lukasz Lubojanski42859e02008-12-11 22:07:59 +01001304 { HID_USB_DEVICE(USB_VENDOR_ID_GREENASIA, 0x0012) },
Jiri Slaby949f8fe2008-07-24 23:35:13 +02001305 { HID_USB_DEVICE(USB_VENDOR_ID_GYRATION, USB_DEVICE_ID_GYRATION_REMOTE) },
Jiri Kosina1e093202008-10-17 11:52:23 +02001306 { HID_USB_DEVICE(USB_VENDOR_ID_GYRATION, USB_DEVICE_ID_GYRATION_REMOTE_2) },
Jiri Kosinafdf93aa2009-03-04 16:09:40 +01001307 { HID_USB_DEVICE(USB_VENDOR_ID_KENSINGTON, USB_DEVICE_ID_KS_SLIMBLADE) },
Jiri Kosina79422742009-03-11 11:43:27 +01001308 { HID_USB_DEVICE(USB_VENDOR_ID_KYE, USB_DEVICE_ID_KYE_ERGO_525V) },
Jiri Slabyb5635b12008-06-24 23:24:57 +02001309 { HID_USB_DEVICE(USB_VENDOR_ID_LABTEC, USB_DEVICE_ID_LABTEC_WIRELESS_KEYBOARD) },
Jiri Slaby5f22a792008-05-16 11:49:19 +02001310 { HID_USB_DEVICE(USB_VENDOR_ID_LOGITECH, USB_DEVICE_ID_MX3000_RECEIVER) },
1311 { HID_USB_DEVICE(USB_VENDOR_ID_LOGITECH, USB_DEVICE_ID_S510_RECEIVER) },
1312 { HID_USB_DEVICE(USB_VENDOR_ID_LOGITECH, USB_DEVICE_ID_S510_RECEIVER_2) },
1313 { HID_USB_DEVICE(USB_VENDOR_ID_LOGITECH, USB_DEVICE_ID_LOGITECH_RECEIVER) },
1314 { HID_USB_DEVICE(USB_VENDOR_ID_LOGITECH, USB_DEVICE_ID_DINOVO_DESKTOP) },
1315 { HID_USB_DEVICE(USB_VENDOR_ID_LOGITECH, USB_DEVICE_ID_DINOVO_EDGE) },
1316 { HID_USB_DEVICE(USB_VENDOR_ID_LOGITECH, USB_DEVICE_ID_DINOVO_MINI) },
Jiri Slaby5f22a792008-05-16 11:49:19 +02001317 { HID_USB_DEVICE(USB_VENDOR_ID_LOGITECH, USB_DEVICE_ID_LOGITECH_ELITE_KBD) },
1318 { HID_USB_DEVICE(USB_VENDOR_ID_LOGITECH, USB_DEVICE_ID_LOGITECH_CORDLESS_DESKTOP_LX500) },
Jiri Slaby5f22a792008-05-16 11:49:19 +02001319 { HID_USB_DEVICE(USB_VENDOR_ID_LOGITECH, USB_DEVICE_ID_LOGITECH_EXTREME_3D) },
1320 { HID_USB_DEVICE(USB_VENDOR_ID_LOGITECH, USB_DEVICE_ID_LOGITECH_WHEEL) },
Jiri Slaby606bd0a2008-07-04 23:06:45 +02001321 { HID_USB_DEVICE(USB_VENDOR_ID_LOGITECH, USB_DEVICE_ID_LOGITECH_RUMBLEPAD) },
1322 { HID_USB_DEVICE(USB_VENDOR_ID_LOGITECH, USB_DEVICE_ID_LOGITECH_RUMBLEPAD2_2) },
1323 { HID_USB_DEVICE(USB_VENDOR_ID_LOGITECH, USB_DEVICE_ID_LOGITECH_WINGMAN_F3D) },
Jiri Kosinafd30ea82009-06-23 12:11:31 +02001324 { HID_USB_DEVICE(USB_VENDOR_ID_LOGITECH, USB_DEVICE_ID_LOGITECH_WINGMAN_FFG ) },
Jiri Slaby606bd0a2008-07-04 23:06:45 +02001325 { HID_USB_DEVICE(USB_VENDOR_ID_LOGITECH, USB_DEVICE_ID_LOGITECH_FORCE3D_PRO) },
Gary Stein74f292c2010-01-13 00:25:58 +01001326 { HID_USB_DEVICE(USB_VENDOR_ID_LOGITECH, USB_DEVICE_ID_LOGITECH_FLIGHT_SYSTEM_G940) },
Jiri Slaby606bd0a2008-07-04 23:06:45 +02001327 { HID_USB_DEVICE(USB_VENDOR_ID_LOGITECH, USB_DEVICE_ID_LOGITECH_MOMO_WHEEL) },
1328 { HID_USB_DEVICE(USB_VENDOR_ID_LOGITECH, USB_DEVICE_ID_LOGITECH_MOMO_WHEEL2) },
Christophe Borivant243b7062009-04-17 11:39:39 +02001329 { HID_USB_DEVICE(USB_VENDOR_ID_LOGITECH, USB_DEVICE_ID_LOGITECH_G25_WHEEL) },
Jiri Slaby606bd0a2008-07-04 23:06:45 +02001330 { HID_USB_DEVICE(USB_VENDOR_ID_LOGITECH, USB_DEVICE_ID_LOGITECH_RUMBLEPAD2) },
Jiri Kosina24985cf2009-11-13 10:45:53 +01001331 { HID_USB_DEVICE(USB_VENDOR_ID_LOGITECH, USB_DEVICE_ID_SPACETRAVELLER) },
1332 { HID_USB_DEVICE(USB_VENDOR_ID_LOGITECH, USB_DEVICE_ID_SPACENAVIGATOR) },
Jiri Slaby78a849a682008-06-20 21:26:11 +02001333 { HID_USB_DEVICE(USB_VENDOR_ID_MICROSOFT, USB_DEVICE_ID_SIDEWINDER_GV) },
1334 { HID_USB_DEVICE(USB_VENDOR_ID_MICROSOFT, USB_DEVICE_ID_MS_NE4K) },
1335 { HID_USB_DEVICE(USB_VENDOR_ID_MICROSOFT, USB_DEVICE_ID_MS_LK6K) },
1336 { HID_USB_DEVICE(USB_VENDOR_ID_MICROSOFT, USB_DEVICE_ID_MS_PRESENTER_8K_USB) },
1337 { HID_USB_DEVICE(USB_VENDOR_ID_MICROSOFT, USB_DEVICE_ID_WIRELESS_OPTICAL_DESKTOP_3_0) },
Jiri Slaby3b8006e2008-06-25 00:07:50 +02001338 { HID_USB_DEVICE(USB_VENDOR_ID_MONTEREY, USB_DEVICE_ID_GENIUS_KB29E) },
Rafi Rubin94011f92008-11-19 15:54:46 +01001339 { HID_USB_DEVICE(USB_VENDOR_ID_NTRIG, USB_DEVICE_ID_NTRIG_TOUCH_SCREEN) },
Jiri Slaby1e762532008-06-24 23:46:21 +02001340 { HID_USB_DEVICE(USB_VENDOR_ID_PETALYNX, USB_DEVICE_ID_PETALYNX_MAXTER_REMOTE) },
Jiri Slaby980a3da2008-06-25 22:31:48 +02001341 { HID_USB_DEVICE(USB_VENDOR_ID_SAMSUNG, USB_DEVICE_ID_SAMSUNG_IR_REMOTE) },
Jiri Slabybd28ce02008-06-25 23:47:04 +02001342 { HID_USB_DEVICE(USB_VENDOR_ID_SONY, USB_DEVICE_ID_SONY_PS3_CONTROLLER) },
Jiri Kosinacc6e0bb2008-10-23 12:58:38 +02001343 { HID_USB_DEVICE(USB_VENDOR_ID_SONY, USB_DEVICE_ID_SONY_VAIO_VGX_MOUSE) },
Stephane Chattyd3fb5452010-01-04 12:04:08 +01001344 { HID_USB_DEVICE(USB_VENDOR_ID_STANTUM, USB_DEVICE_ID_MTP) },
Jiri Slaby90231e72008-06-23 21:56:07 +02001345 { HID_USB_DEVICE(USB_VENDOR_ID_SUNPLUS, USB_DEVICE_ID_SUNPLUS_WDESKTOP) },
Anssi Hannuladaedb3d2009-02-14 11:45:05 +02001346 { HID_USB_DEVICE(USB_VENDOR_ID_THRUSTMASTER, 0xb300) },
1347 { HID_USB_DEVICE(USB_VENDOR_ID_THRUSTMASTER, 0xb304) },
Ruben Aos Garralda7a84b132009-06-29 09:41:29 +02001348 { HID_USB_DEVICE(USB_VENDOR_ID_THRUSTMASTER, 0xb323) },
1349 { HID_USB_DEVICE(USB_VENDOR_ID_THRUSTMASTER, 0xb324) },
Anssi Hannuladaedb3d2009-02-14 11:45:05 +02001350 { HID_USB_DEVICE(USB_VENDOR_ID_THRUSTMASTER, 0xb651) },
1351 { HID_USB_DEVICE(USB_VENDOR_ID_THRUSTMASTER, 0xb654) },
Lev Babievf14f5262009-01-04 00:36:56 +01001352 { HID_USB_DEVICE(USB_VENDOR_ID_TOPSEED, USB_DEVICE_ID_TOPSEED_CYBERLINK) },
Bruno Premont711a6802009-07-13 14:19:58 +02001353 { HID_USB_DEVICE(USB_VENDOR_ID_TWINHAN, USB_DEVICE_ID_TWINHAN_IR_REMOTE) },
Jussi Kivilinnafac733f2009-05-13 11:54:38 +03001354 { HID_USB_DEVICE(USB_VENDOR_ID_WISEGROUP, USB_DEVICE_ID_SMARTJOY_PLUS) },
Bastien Noceraca2dcd42009-05-11 17:18:12 +02001355 { HID_BLUETOOTH_DEVICE(USB_VENDOR_ID_WACOM, USB_DEVICE_ID_WACOM_GRAPHIRE_BLUETOOTH) },
Anssi Hannuladaedb3d2009-02-14 11:45:05 +02001356 { HID_USB_DEVICE(USB_VENDOR_ID_ZEROPLUS, 0x0005) },
1357 { HID_USB_DEVICE(USB_VENDOR_ID_ZEROPLUS, 0x0030) },
Jiri Slaby8c19a512008-06-18 23:36:49 +02001358
Jiri Slaby78a849a682008-06-20 21:26:11 +02001359 { HID_BLUETOOTH_DEVICE(USB_VENDOR_ID_MICROSOFT, USB_DEVICE_ID_MS_PRESENTER_8K_BT) },
Jiri Slaby85cdaf52008-05-16 11:49:15 +02001360 { }
1361};
1362
Jiri Slaby3a6f82f2008-11-24 16:20:09 +01001363struct hid_dynid {
1364 struct list_head list;
1365 struct hid_device_id id;
1366};
1367
1368/**
1369 * store_new_id - add a new HID device ID to this driver and re-probe devices
1370 * @driver: target device driver
1371 * @buf: buffer for scanning device ID data
1372 * @count: input size
1373 *
1374 * Adds a new dynamic hid device ID to this driver,
1375 * and causes the driver to probe for all devices again.
1376 */
1377static ssize_t store_new_id(struct device_driver *drv, const char *buf,
1378 size_t count)
1379{
1380 struct hid_driver *hdrv = container_of(drv, struct hid_driver, driver);
1381 struct hid_dynid *dynid;
1382 __u32 bus, vendor, product;
1383 unsigned long driver_data = 0;
1384 int ret;
1385
1386 ret = sscanf(buf, "%x %x %x %lx",
1387 &bus, &vendor, &product, &driver_data);
1388 if (ret < 3)
1389 return -EINVAL;
1390
1391 dynid = kzalloc(sizeof(*dynid), GFP_KERNEL);
1392 if (!dynid)
1393 return -ENOMEM;
1394
1395 dynid->id.bus = bus;
1396 dynid->id.vendor = vendor;
1397 dynid->id.product = product;
1398 dynid->id.driver_data = driver_data;
1399
1400 spin_lock(&hdrv->dyn_lock);
1401 list_add_tail(&dynid->list, &hdrv->dyn_list);
1402 spin_unlock(&hdrv->dyn_lock);
1403
1404 ret = 0;
1405 if (get_driver(&hdrv->driver)) {
1406 ret = driver_attach(&hdrv->driver);
1407 put_driver(&hdrv->driver);
1408 }
1409
1410 return ret ? : count;
1411}
1412static DRIVER_ATTR(new_id, S_IWUSR, NULL, store_new_id);
1413
1414static void hid_free_dynids(struct hid_driver *hdrv)
1415{
1416 struct hid_dynid *dynid, *n;
1417
1418 spin_lock(&hdrv->dyn_lock);
1419 list_for_each_entry_safe(dynid, n, &hdrv->dyn_list, list) {
1420 list_del(&dynid->list);
1421 kfree(dynid);
1422 }
1423 spin_unlock(&hdrv->dyn_lock);
1424}
1425
1426static const struct hid_device_id *hid_match_device(struct hid_device *hdev,
1427 struct hid_driver *hdrv)
1428{
1429 struct hid_dynid *dynid;
1430
1431 spin_lock(&hdrv->dyn_lock);
1432 list_for_each_entry(dynid, &hdrv->dyn_list, list) {
1433 if (hid_match_one_id(hdev, &dynid->id)) {
1434 spin_unlock(&hdrv->dyn_lock);
1435 return &dynid->id;
1436 }
1437 }
1438 spin_unlock(&hdrv->dyn_lock);
1439
1440 return hid_match_id(hdev, hdrv->id_table);
1441}
1442
Jiri Slaby85cdaf52008-05-16 11:49:15 +02001443static int hid_bus_match(struct device *dev, struct device_driver *drv)
1444{
1445 struct hid_driver *hdrv = container_of(drv, struct hid_driver, driver);
1446 struct hid_device *hdev = container_of(dev, struct hid_device, dev);
1447
Jiri Slaby3a6f82f2008-11-24 16:20:09 +01001448 if (!hid_match_device(hdev, hdrv))
Jiri Slaby85cdaf52008-05-16 11:49:15 +02001449 return 0;
1450
1451 /* generic wants all non-blacklisted */
1452 if (!strncmp(hdrv->name, "generic-", 8))
1453 return !hid_match_id(hdev, hid_blacklist);
1454
1455 return 1;
1456}
1457
1458static int hid_device_probe(struct device *dev)
1459{
1460 struct hid_driver *hdrv = container_of(dev->driver,
1461 struct hid_driver, driver);
1462 struct hid_device *hdev = container_of(dev, struct hid_device, dev);
1463 const struct hid_device_id *id;
1464 int ret = 0;
1465
1466 if (!hdev->driver) {
Jiri Slaby3a6f82f2008-11-24 16:20:09 +01001467 id = hid_match_device(hdev, hdrv);
Jiri Slabyc500c972008-05-16 11:49:16 +02001468 if (id == NULL)
1469 return -ENODEV;
Jiri Slaby85cdaf52008-05-16 11:49:15 +02001470
Jiri Slabyc500c972008-05-16 11:49:16 +02001471 hdev->driver = hdrv;
1472 if (hdrv->probe) {
1473 ret = hdrv->probe(hdev, id);
1474 } else { /* default probe */
1475 ret = hid_parse(hdev);
1476 if (!ret)
Jiri Slaby93c10132008-06-27 00:04:24 +02001477 ret = hid_hw_start(hdev, HID_CONNECT_DEFAULT);
Jiri Slaby85cdaf52008-05-16 11:49:15 +02001478 }
Jiri Slabyc500c972008-05-16 11:49:16 +02001479 if (ret)
1480 hdev->driver = NULL;
Jiri Slaby85cdaf52008-05-16 11:49:15 +02001481 }
1482 return ret;
1483}
1484
1485static int hid_device_remove(struct device *dev)
1486{
1487 struct hid_device *hdev = container_of(dev, struct hid_device, dev);
1488 struct hid_driver *hdrv = hdev->driver;
1489
1490 if (hdrv) {
1491 if (hdrv->remove)
1492 hdrv->remove(hdev);
Jiri Slabyc500c972008-05-16 11:49:16 +02001493 else /* default remove */
1494 hid_hw_stop(hdev);
Jiri Slaby85cdaf52008-05-16 11:49:15 +02001495 hdev->driver = NULL;
1496 }
1497
1498 return 0;
1499}
1500
1501static int hid_uevent(struct device *dev, struct kobj_uevent_env *env)
1502{
1503 struct hid_device *hdev = container_of(dev, struct hid_device, dev);
1504
1505 if (add_uevent_var(env, "HID_ID=%04X:%08X:%08X",
1506 hdev->bus, hdev->vendor, hdev->product))
1507 return -ENOMEM;
1508
1509 if (add_uevent_var(env, "HID_NAME=%s", hdev->name))
1510 return -ENOMEM;
1511
1512 if (add_uevent_var(env, "HID_PHYS=%s", hdev->phys))
1513 return -ENOMEM;
1514
1515 if (add_uevent_var(env, "HID_UNIQ=%s", hdev->uniq))
1516 return -ENOMEM;
1517
1518 if (add_uevent_var(env, "MODALIAS=hid:b%04Xv%08Xp%08X",
1519 hdev->bus, hdev->vendor, hdev->product))
1520 return -ENOMEM;
1521
1522 return 0;
1523}
1524
1525static struct bus_type hid_bus_type = {
1526 .name = "hid",
1527 .match = hid_bus_match,
1528 .probe = hid_device_probe,
1529 .remove = hid_device_remove,
1530 .uevent = hid_uevent,
1531};
1532
Jiri Kosinabae7eb32009-01-28 23:06:37 +01001533/* a list of devices that shouldn't be handled by HID core at all */
Jiri Slabyd458a9d2008-05-16 11:49:20 +02001534static const struct hid_device_id hid_ignore_list[] = {
1535 { HID_USB_DEVICE(USB_VENDOR_ID_ACECAD, USB_DEVICE_ID_ACECAD_FLAIR) },
1536 { HID_USB_DEVICE(USB_VENDOR_ID_ACECAD, USB_DEVICE_ID_ACECAD_302) },
1537 { HID_USB_DEVICE(USB_VENDOR_ID_ADS_TECH, USB_DEVICE_ID_ADS_TECH_RADIO_SI470X) },
1538 { HID_USB_DEVICE(USB_VENDOR_ID_AIPTEK, USB_DEVICE_ID_AIPTEK_01) },
1539 { HID_USB_DEVICE(USB_VENDOR_ID_AIPTEK, USB_DEVICE_ID_AIPTEK_10) },
1540 { HID_USB_DEVICE(USB_VENDOR_ID_AIPTEK, USB_DEVICE_ID_AIPTEK_20) },
1541 { HID_USB_DEVICE(USB_VENDOR_ID_AIPTEK, USB_DEVICE_ID_AIPTEK_21) },
1542 { HID_USB_DEVICE(USB_VENDOR_ID_AIPTEK, USB_DEVICE_ID_AIPTEK_22) },
1543 { HID_USB_DEVICE(USB_VENDOR_ID_AIPTEK, USB_DEVICE_ID_AIPTEK_23) },
1544 { HID_USB_DEVICE(USB_VENDOR_ID_AIPTEK, USB_DEVICE_ID_AIPTEK_24) },
1545 { HID_USB_DEVICE(USB_VENDOR_ID_AIRCABLE, USB_DEVICE_ID_AIRCABLE1) },
1546 { HID_USB_DEVICE(USB_VENDOR_ID_ALCOR, USB_DEVICE_ID_ALCOR_USBRS232) },
1547 { HID_USB_DEVICE(USB_VENDOR_ID_ASUS, USB_DEVICE_ID_ASUS_LCM)},
Jiri Kosinaac2d9892008-10-20 12:37:43 +02001548 { HID_USB_DEVICE(USB_VENDOR_ID_ASUS, USB_DEVICE_ID_ASUS_LCM2)},
Alexey Klimov62a56582008-11-13 05:44:50 +03001549 { HID_USB_DEVICE(USB_VENDOR_ID_AVERMEDIA, USB_DEVICE_ID_AVER_FM_MR800) },
Jiri Slabyd458a9d2008-05-16 11:49:20 +02001550 { HID_USB_DEVICE(USB_VENDOR_ID_BERKSHIRE, USB_DEVICE_ID_BERKSHIRE_PCWD) },
1551 { HID_USB_DEVICE(USB_VENDOR_ID_CIDC, 0x0103) },
1552 { HID_USB_DEVICE(USB_VENDOR_ID_CYGNAL, USB_DEVICE_ID_CYGNAL_RADIO_SI470X) },
1553 { HID_USB_DEVICE(USB_VENDOR_ID_CMEDIA, USB_DEVICE_ID_CM109) },
1554 { HID_USB_DEVICE(USB_VENDOR_ID_CYPRESS, USB_DEVICE_ID_CYPRESS_HIDCOM) },
1555 { HID_USB_DEVICE(USB_VENDOR_ID_CYPRESS, USB_DEVICE_ID_CYPRESS_ULTRAMOUSE) },
Alexey Klimov5f6108c2008-12-08 12:40:14 +01001556 { HID_USB_DEVICE(USB_VENDOR_ID_DEALEXTREAME, USB_DEVICE_ID_DEALEXTREAME_RADIO_SI4701) },
Jiri Slabyd458a9d2008-05-16 11:49:20 +02001557 { HID_USB_DEVICE(USB_VENDOR_ID_DELORME, USB_DEVICE_ID_DELORME_EARTHMATE) },
1558 { HID_USB_DEVICE(USB_VENDOR_ID_DELORME, USB_DEVICE_ID_DELORME_EM_LT20) },
1559 { HID_USB_DEVICE(USB_VENDOR_ID_ESSENTIAL_REALITY, USB_DEVICE_ID_ESSENTIAL_REALITY_P5) },
1560 { HID_USB_DEVICE(USB_VENDOR_ID_GENERAL_TOUCH, 0x0001) },
1561 { HID_USB_DEVICE(USB_VENDOR_ID_GENERAL_TOUCH, 0x0002) },
1562 { HID_USB_DEVICE(USB_VENDOR_ID_GENERAL_TOUCH, 0x0003) },
1563 { HID_USB_DEVICE(USB_VENDOR_ID_GENERAL_TOUCH, 0x0004) },
1564 { HID_USB_DEVICE(USB_VENDOR_ID_GLAB, USB_DEVICE_ID_4_PHIDGETSERVO_30) },
1565 { HID_USB_DEVICE(USB_VENDOR_ID_GLAB, USB_DEVICE_ID_1_PHIDGETSERVO_30) },
1566 { HID_USB_DEVICE(USB_VENDOR_ID_GLAB, USB_DEVICE_ID_0_0_4_IF_KIT) },
1567 { HID_USB_DEVICE(USB_VENDOR_ID_GLAB, USB_DEVICE_ID_0_16_16_IF_KIT) },
1568 { HID_USB_DEVICE(USB_VENDOR_ID_GLAB, USB_DEVICE_ID_8_8_8_IF_KIT) },
1569 { HID_USB_DEVICE(USB_VENDOR_ID_GLAB, USB_DEVICE_ID_0_8_7_IF_KIT) },
1570 { HID_USB_DEVICE(USB_VENDOR_ID_GLAB, USB_DEVICE_ID_0_8_8_IF_KIT) },
1571 { HID_USB_DEVICE(USB_VENDOR_ID_GLAB, USB_DEVICE_ID_PHIDGET_MOTORCONTROL) },
1572 { HID_USB_DEVICE(USB_VENDOR_ID_GOTOP, USB_DEVICE_ID_SUPER_Q2) },
1573 { HID_USB_DEVICE(USB_VENDOR_ID_GOTOP, USB_DEVICE_ID_GOGOPEN) },
1574 { HID_USB_DEVICE(USB_VENDOR_ID_GOTOP, USB_DEVICE_ID_PENPOWER) },
1575 { HID_USB_DEVICE(USB_VENDOR_ID_GRETAGMACBETH, USB_DEVICE_ID_GRETAGMACBETH_HUEY) },
1576 { HID_USB_DEVICE(USB_VENDOR_ID_GRIFFIN, USB_DEVICE_ID_POWERMATE) },
1577 { HID_USB_DEVICE(USB_VENDOR_ID_GRIFFIN, USB_DEVICE_ID_SOUNDKNOB) },
1578 { HID_USB_DEVICE(USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_90) },
1579 { HID_USB_DEVICE(USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_100) },
1580 { HID_USB_DEVICE(USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_101) },
1581 { HID_USB_DEVICE(USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_103) },
1582 { HID_USB_DEVICE(USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_104) },
1583 { HID_USB_DEVICE(USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_105) },
1584 { HID_USB_DEVICE(USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_106) },
1585 { HID_USB_DEVICE(USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_107) },
1586 { HID_USB_DEVICE(USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_108) },
1587 { HID_USB_DEVICE(USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_200) },
1588 { HID_USB_DEVICE(USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_201) },
1589 { HID_USB_DEVICE(USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_202) },
1590 { HID_USB_DEVICE(USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_203) },
1591 { HID_USB_DEVICE(USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_204) },
1592 { HID_USB_DEVICE(USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_205) },
1593 { HID_USB_DEVICE(USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_206) },
1594 { HID_USB_DEVICE(USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_207) },
1595 { HID_USB_DEVICE(USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_300) },
1596 { HID_USB_DEVICE(USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_301) },
1597 { HID_USB_DEVICE(USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_302) },
1598 { HID_USB_DEVICE(USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_303) },
1599 { HID_USB_DEVICE(USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_304) },
1600 { HID_USB_DEVICE(USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_305) },
1601 { HID_USB_DEVICE(USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_306) },
1602 { HID_USB_DEVICE(USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_307) },
1603 { HID_USB_DEVICE(USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_308) },
1604 { HID_USB_DEVICE(USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_309) },
1605 { HID_USB_DEVICE(USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_400) },
1606 { HID_USB_DEVICE(USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_401) },
1607 { HID_USB_DEVICE(USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_402) },
1608 { HID_USB_DEVICE(USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_403) },
1609 { HID_USB_DEVICE(USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_404) },
1610 { HID_USB_DEVICE(USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_405) },
1611 { HID_USB_DEVICE(USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_500) },
1612 { HID_USB_DEVICE(USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_501) },
1613 { HID_USB_DEVICE(USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_502) },
1614 { HID_USB_DEVICE(USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_503) },
1615 { HID_USB_DEVICE(USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_504) },
1616 { HID_USB_DEVICE(USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_1000) },
1617 { HID_USB_DEVICE(USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_1001) },
1618 { HID_USB_DEVICE(USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_1002) },
1619 { HID_USB_DEVICE(USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_1003) },
1620 { HID_USB_DEVICE(USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_1004) },
1621 { HID_USB_DEVICE(USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_1005) },
1622 { HID_USB_DEVICE(USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_1006) },
1623 { HID_USB_DEVICE(USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_1007) },
1624 { HID_USB_DEVICE(USB_VENDOR_ID_IMATION, USB_DEVICE_ID_DISC_STAKKA) },
1625 { HID_USB_DEVICE(USB_VENDOR_ID_KBGEAR, USB_DEVICE_ID_KBGEAR_JAMSTUDIO) },
Alexey Klimovc91c21c2008-11-13 10:36:11 +01001626 { HID_USB_DEVICE(USB_VENDOR_ID_KWORLD, USB_DEVICE_ID_KWORLD_RADIO_FM700) },
Jiri Slabyd458a9d2008-05-16 11:49:20 +02001627 { HID_USB_DEVICE(USB_VENDOR_ID_KYE, USB_DEVICE_ID_KYE_GPEN_560) },
Lamarque Vieira Souzaeb8141c2009-10-02 15:04:44 +02001628 { HID_BLUETOOTH_DEVICE(USB_VENDOR_ID_KYE, 0x0058) },
Jiri Slabyd458a9d2008-05-16 11:49:20 +02001629 { HID_USB_DEVICE(USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_CASSY) },
1630 { HID_USB_DEVICE(USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_POCKETCASSY) },
1631 { HID_USB_DEVICE(USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_MOBILECASSY) },
1632 { HID_USB_DEVICE(USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_JWM) },
1633 { HID_USB_DEVICE(USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_DMMP) },
1634 { HID_USB_DEVICE(USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_UMIP) },
1635 { HID_USB_DEVICE(USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_XRAY1) },
1636 { HID_USB_DEVICE(USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_XRAY2) },
1637 { HID_USB_DEVICE(USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_VIDEOCOM) },
1638 { HID_USB_DEVICE(USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_COM3LAB) },
1639 { HID_USB_DEVICE(USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_TELEPORT) },
1640 { HID_USB_DEVICE(USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_NETWORKANALYSER) },
1641 { HID_USB_DEVICE(USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_POWERCONTROL) },
1642 { HID_USB_DEVICE(USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_MACHINETEST) },
1643 { HID_USB_DEVICE(USB_VENDOR_ID_MCC, USB_DEVICE_ID_MCC_PMD1024LS) },
1644 { HID_USB_DEVICE(USB_VENDOR_ID_MCC, USB_DEVICE_ID_MCC_PMD1208LS) },
Jiri Slabyd458a9d2008-05-16 11:49:20 +02001645 { HID_USB_DEVICE(USB_VENDOR_ID_MICROCHIP, USB_DEVICE_ID_PICKIT1) },
1646 { HID_USB_DEVICE(USB_VENDOR_ID_MICROCHIP, USB_DEVICE_ID_PICKIT2) },
1647 { HID_USB_DEVICE(USB_VENDOR_ID_NATIONAL_SEMICONDUCTOR, USB_DEVICE_ID_N_S_HARMONY) },
1648 { HID_USB_DEVICE(USB_VENDOR_ID_ONTRAK, USB_DEVICE_ID_ONTRAK_ADU100) },
1649 { HID_USB_DEVICE(USB_VENDOR_ID_ONTRAK, USB_DEVICE_ID_ONTRAK_ADU100 + 20) },
1650 { HID_USB_DEVICE(USB_VENDOR_ID_ONTRAK, USB_DEVICE_ID_ONTRAK_ADU100 + 30) },
1651 { HID_USB_DEVICE(USB_VENDOR_ID_ONTRAK, USB_DEVICE_ID_ONTRAK_ADU100 + 100) },
1652 { HID_USB_DEVICE(USB_VENDOR_ID_ONTRAK, USB_DEVICE_ID_ONTRAK_ADU100 + 108) },
1653 { HID_USB_DEVICE(USB_VENDOR_ID_ONTRAK, USB_DEVICE_ID_ONTRAK_ADU100 + 118) },
1654 { HID_USB_DEVICE(USB_VENDOR_ID_ONTRAK, USB_DEVICE_ID_ONTRAK_ADU100 + 200) },
1655 { HID_USB_DEVICE(USB_VENDOR_ID_ONTRAK, USB_DEVICE_ID_ONTRAK_ADU100 + 300) },
1656 { HID_USB_DEVICE(USB_VENDOR_ID_ONTRAK, USB_DEVICE_ID_ONTRAK_ADU100 + 400) },
1657 { HID_USB_DEVICE(USB_VENDOR_ID_ONTRAK, USB_DEVICE_ID_ONTRAK_ADU100 + 500) },
1658 { HID_USB_DEVICE(USB_VENDOR_ID_PANJIT, 0x0001) },
1659 { HID_USB_DEVICE(USB_VENDOR_ID_PANJIT, 0x0002) },
1660 { HID_USB_DEVICE(USB_VENDOR_ID_PANJIT, 0x0003) },
1661 { HID_USB_DEVICE(USB_VENDOR_ID_PANJIT, 0x0004) },
Henning Glawe4cfae3e2009-08-02 22:18:12 +02001662 { HID_USB_DEVICE(USB_VENDOR_ID_PHILIPS, USB_DEVICE_ID_PHILIPS_IEEE802154_DONGLE) },
Michael Tokarev35cfd1d2009-02-01 16:11:04 +01001663 { HID_USB_DEVICE(USB_VENDOR_ID_POWERCOM, USB_DEVICE_ID_POWERCOM_UPS) },
Remi Cattiaud1d3a5f2008-09-09 01:39:33 +02001664 { HID_USB_DEVICE(USB_VENDOR_ID_TENX, USB_DEVICE_ID_TENX_IBUDDY1) },
1665 { HID_USB_DEVICE(USB_VENDOR_ID_TENX, USB_DEVICE_ID_TENX_IBUDDY2) },
Jiri Slabyd458a9d2008-05-16 11:49:20 +02001666 { HID_USB_DEVICE(USB_VENDOR_ID_VERNIER, USB_DEVICE_ID_VERNIER_LABPRO) },
1667 { HID_USB_DEVICE(USB_VENDOR_ID_VERNIER, USB_DEVICE_ID_VERNIER_GOTEMP) },
1668 { HID_USB_DEVICE(USB_VENDOR_ID_VERNIER, USB_DEVICE_ID_VERNIER_SKIP) },
1669 { HID_USB_DEVICE(USB_VENDOR_ID_VERNIER, USB_DEVICE_ID_VERNIER_CYCLOPS) },
1670 { HID_USB_DEVICE(USB_VENDOR_ID_VERNIER, USB_DEVICE_ID_VERNIER_LCSPEC) },
1671 { HID_USB_DEVICE(USB_VENDOR_ID_WACOM, HID_ANY_ID) },
1672 { HID_USB_DEVICE(USB_VENDOR_ID_WISEGROUP, USB_DEVICE_ID_4_PHIDGETSERVO_20) },
1673 { HID_USB_DEVICE(USB_VENDOR_ID_WISEGROUP, USB_DEVICE_ID_1_PHIDGETSERVO_20) },
1674 { HID_USB_DEVICE(USB_VENDOR_ID_WISEGROUP, USB_DEVICE_ID_8_8_4_IF_KIT) },
1675 { HID_USB_DEVICE(USB_VENDOR_ID_YEALINK, USB_DEVICE_ID_YEALINK_P1K_P4K_B2K) },
1676 { }
1677};
1678
Jiri Slabyb4d8e472008-10-22 14:47:18 +02001679/**
1680 * hid_mouse_ignore_list - mouse devices which should not be handled by the hid layer
1681 *
1682 * There are composite devices for which we want to ignore only a certain
1683 * interface. This is a list of devices for which only the mouse interface will
1684 * be ignored. This allows a dedicated driver to take care of the interface.
1685 */
1686static const struct hid_device_id hid_mouse_ignore_list[] = {
1687 /* appletouch driver */
1688 { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_FOUNTAIN_ANSI) },
1689 { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_FOUNTAIN_ISO) },
1690 { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_GEYSER_ANSI) },
1691 { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_GEYSER_ISO) },
1692 { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_GEYSER_JIS) },
1693 { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_GEYSER3_ANSI) },
1694 { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_GEYSER3_ISO) },
1695 { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_GEYSER3_JIS) },
1696 { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_GEYSER4_ANSI) },
1697 { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_GEYSER4_ISO) },
1698 { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_GEYSER4_JIS) },
1699 { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_GEYSER4_HF_ANSI) },
1700 { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_GEYSER4_HF_ISO) },
1701 { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_GEYSER4_HF_JIS) },
1702 { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING_ANSI) },
1703 { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING_ISO) },
1704 { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING_JIS) },
1705 { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING2_ANSI) },
1706 { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING2_ISO) },
1707 { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING2_JIS) },
Jiri Kosinaac26fca2008-11-20 11:27:02 +01001708 { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING3_ANSI) },
1709 { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING3_ISO) },
1710 { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING3_JIS) },
Jiri Slabyb4d8e472008-10-22 14:47:18 +02001711 { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_FOUNTAIN_TP_ONLY) },
1712 { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_GEYSER1_TP_ONLY) },
1713 { }
1714};
1715
Jiri Slabyd458a9d2008-05-16 11:49:20 +02001716static bool hid_ignore(struct hid_device *hdev)
1717{
1718 switch (hdev->vendor) {
1719 case USB_VENDOR_ID_CODEMERCS:
1720 /* ignore all Code Mercenaries IOWarrior devices */
1721 if (hdev->product >= USB_DEVICE_ID_CODEMERCS_IOW_FIRST &&
1722 hdev->product <= USB_DEVICE_ID_CODEMERCS_IOW_LAST)
1723 return true;
1724 break;
1725 case USB_VENDOR_ID_LOGITECH:
1726 if (hdev->product >= USB_DEVICE_ID_LOGITECH_HARMONY_FIRST &&
1727 hdev->product <= USB_DEVICE_ID_LOGITECH_HARMONY_LAST)
1728 return true;
1729 break;
Jarod Wilson31f7fd72009-07-31 10:56:36 -04001730 case USB_VENDOR_ID_SOUNDGRAPH:
1731 if (hdev->product >= USB_DEVICE_ID_SOUNDGRAPH_IMON_FIRST &&
1732 hdev->product <= USB_DEVICE_ID_SOUNDGRAPH_IMON_LAST)
1733 return true;
1734 break;
Jiri Slabyd458a9d2008-05-16 11:49:20 +02001735 }
1736
Jiri Slabyb4d8e472008-10-22 14:47:18 +02001737 if (hdev->type == HID_TYPE_USBMOUSE &&
1738 hid_match_id(hdev, hid_mouse_ignore_list))
1739 return true;
1740
Jiri Slabyd458a9d2008-05-16 11:49:20 +02001741 return !!hid_match_id(hdev, hid_ignore_list);
1742}
1743
Jiri Slaby85cdaf52008-05-16 11:49:15 +02001744int hid_add_device(struct hid_device *hdev)
1745{
1746 static atomic_t id = ATOMIC_INIT(0);
1747 int ret;
1748
1749 if (WARN_ON(hdev->status & HID_STAT_ADDED))
1750 return -EBUSY;
1751
Jiri Slabyd458a9d2008-05-16 11:49:20 +02001752 /* we need to kill them here, otherwise they will stay allocated to
1753 * wait for coming driver */
1754 if (hid_ignore(hdev))
1755 return -ENODEV;
1756
Kay Sievers6bbe5862008-10-31 00:12:32 +01001757 /* XXX hack, any other cleaner solution after the driver core
1758 * is converted to allow more than 20 bytes as the device name? */
1759 dev_set_name(&hdev->dev, "%04X:%04X:%04X.%04X", hdev->bus,
1760 hdev->vendor, hdev->product, atomic_inc_return(&id));
Jiri Slaby85cdaf52008-05-16 11:49:15 +02001761
1762 ret = device_add(&hdev->dev);
1763 if (!ret)
1764 hdev->status |= HID_STAT_ADDED;
1765
Jiri Kosinaa635f9d2009-06-12 15:20:55 +02001766 hid_debug_register(hdev, dev_name(&hdev->dev));
1767
Jiri Slaby85cdaf52008-05-16 11:49:15 +02001768 return ret;
1769}
1770EXPORT_SYMBOL_GPL(hid_add_device);
1771
1772/**
1773 * hid_allocate_device - allocate new hid device descriptor
1774 *
1775 * Allocate and initialize hid device, so that hid_destroy_device might be
1776 * used to free it.
1777 *
1778 * New hid_device pointer is returned on success, otherwise ERR_PTR encoded
1779 * error value.
1780 */
1781struct hid_device *hid_allocate_device(void)
1782{
1783 struct hid_device *hdev;
1784 unsigned int i;
1785 int ret = -ENOMEM;
1786
1787 hdev = kzalloc(sizeof(*hdev), GFP_KERNEL);
1788 if (hdev == NULL)
1789 return ERR_PTR(ret);
1790
1791 device_initialize(&hdev->dev);
1792 hdev->dev.release = hid_device_release;
1793 hdev->dev.bus = &hid_bus_type;
1794
1795 hdev->collection = kcalloc(HID_DEFAULT_NUM_COLLECTIONS,
1796 sizeof(struct hid_collection), GFP_KERNEL);
1797 if (hdev->collection == NULL)
1798 goto err;
1799 hdev->collection_size = HID_DEFAULT_NUM_COLLECTIONS;
1800
1801 for (i = 0; i < HID_REPORT_TYPES; i++)
1802 INIT_LIST_HEAD(&hdev->report_enum[i].report_list);
1803
Jiri Kosinacd667ce2009-06-12 15:20:57 +02001804 init_waitqueue_head(&hdev->debug_wait);
1805 INIT_LIST_HEAD(&hdev->debug_list);
1806
Jiri Slaby85cdaf52008-05-16 11:49:15 +02001807 return hdev;
1808err:
1809 put_device(&hdev->dev);
1810 return ERR_PTR(ret);
1811}
1812EXPORT_SYMBOL_GPL(hid_allocate_device);
1813
1814static void hid_remove_device(struct hid_device *hdev)
1815{
1816 if (hdev->status & HID_STAT_ADDED) {
1817 device_del(&hdev->dev);
Jiri Kosinaa635f9d2009-06-12 15:20:55 +02001818 hid_debug_unregister(hdev);
Jiri Slaby85cdaf52008-05-16 11:49:15 +02001819 hdev->status &= ~HID_STAT_ADDED;
1820 }
1821}
1822
1823/**
1824 * hid_destroy_device - free previously allocated device
1825 *
1826 * @hdev: hid device
1827 *
1828 * If you allocate hid_device through hid_allocate_device, you should ever
1829 * free by this function.
1830 */
1831void hid_destroy_device(struct hid_device *hdev)
1832{
1833 hid_remove_device(hdev);
1834 put_device(&hdev->dev);
1835}
1836EXPORT_SYMBOL_GPL(hid_destroy_device);
1837
1838int __hid_register_driver(struct hid_driver *hdrv, struct module *owner,
1839 const char *mod_name)
1840{
Jiri Slaby3a6f82f2008-11-24 16:20:09 +01001841 int ret;
1842
Jiri Slaby85cdaf52008-05-16 11:49:15 +02001843 hdrv->driver.name = hdrv->name;
1844 hdrv->driver.bus = &hid_bus_type;
1845 hdrv->driver.owner = owner;
1846 hdrv->driver.mod_name = mod_name;
1847
Jiri Slaby3a6f82f2008-11-24 16:20:09 +01001848 INIT_LIST_HEAD(&hdrv->dyn_list);
1849 spin_lock_init(&hdrv->dyn_lock);
1850
1851 ret = driver_register(&hdrv->driver);
1852 if (ret)
1853 return ret;
1854
1855 ret = driver_create_file(&hdrv->driver, &driver_attr_new_id);
1856 if (ret)
1857 driver_unregister(&hdrv->driver);
1858
1859 return ret;
Jiri Slaby85cdaf52008-05-16 11:49:15 +02001860}
1861EXPORT_SYMBOL_GPL(__hid_register_driver);
1862
1863void hid_unregister_driver(struct hid_driver *hdrv)
1864{
Jiri Slaby3a6f82f2008-11-24 16:20:09 +01001865 driver_remove_file(&hdrv->driver, &driver_attr_new_id);
Jiri Slaby85cdaf52008-05-16 11:49:15 +02001866 driver_unregister(&hdrv->driver);
Jiri Slaby3a6f82f2008-11-24 16:20:09 +01001867 hid_free_dynids(hdrv);
Jiri Slaby85cdaf52008-05-16 11:49:15 +02001868}
1869EXPORT_SYMBOL_GPL(hid_unregister_driver);
1870
Oliver Neukum0361a282008-12-17 15:38:03 +01001871int hid_check_keys_pressed(struct hid_device *hid)
1872{
1873 struct hid_input *hidinput;
1874 int i;
1875
Jiri Kosinae5288eb2009-05-02 00:02:57 +02001876 if (!(hid->claimed & HID_CLAIMED_INPUT))
1877 return 0;
1878
Oliver Neukum0361a282008-12-17 15:38:03 +01001879 list_for_each_entry(hidinput, &hid->inputs, list) {
1880 for (i = 0; i < BITS_TO_LONGS(KEY_MAX); i++)
1881 if (hidinput->input->key[i])
1882 return 1;
1883 }
1884
1885 return 0;
1886}
1887
1888EXPORT_SYMBOL_GPL(hid_check_keys_pressed);
1889
Jiri Kosina86166b72007-05-14 09:57:40 +02001890static int __init hid_init(void)
1891{
Jiri Slaby85cdaf52008-05-16 11:49:15 +02001892 int ret;
1893
Jiri Kosinaa635f9d2009-06-12 15:20:55 +02001894 if (hid_debug)
Jiri Kosinacd667ce2009-06-12 15:20:57 +02001895 printk(KERN_WARNING "HID: hid_debug is now used solely for parser and driver debugging.\n"
1896 "HID: debugfs is now used for inspecting the device (report descriptor, reports)\n");
Jiri Kosinaa635f9d2009-06-12 15:20:55 +02001897
Jiri Slaby85cdaf52008-05-16 11:49:15 +02001898 ret = bus_register(&hid_bus_type);
1899 if (ret) {
1900 printk(KERN_ERR "HID: can't register hid bus\n");
1901 goto err;
1902 }
1903
1904 ret = hidraw_init();
1905 if (ret)
1906 goto err_bus;
1907
Jiri Kosinaa635f9d2009-06-12 15:20:55 +02001908 hid_debug_init();
1909
Jiri Slaby85cdaf52008-05-16 11:49:15 +02001910 return 0;
1911err_bus:
1912 bus_unregister(&hid_bus_type);
1913err:
1914 return ret;
Jiri Kosina86166b72007-05-14 09:57:40 +02001915}
1916
1917static void __exit hid_exit(void)
1918{
Jiri Kosinaa635f9d2009-06-12 15:20:55 +02001919 hid_debug_exit();
Jiri Kosina86166b72007-05-14 09:57:40 +02001920 hidraw_exit();
Jiri Slaby85cdaf52008-05-16 11:49:15 +02001921 bus_unregister(&hid_bus_type);
Jiri Kosina86166b72007-05-14 09:57:40 +02001922}
1923
1924module_init(hid_init);
1925module_exit(hid_exit);
1926
Jiri Kosina88adb722009-10-02 18:29:34 +02001927MODULE_AUTHOR("Andreas Gal");
1928MODULE_AUTHOR("Vojtech Pavlik");
1929MODULE_AUTHOR("Jiri Kosina");
Jiri Kosinaaa938f72006-12-08 18:41:10 +01001930MODULE_LICENSE(DRIVER_LICENSE);
1931