]> git.proxmox.com Git - mirror_ubuntu-focal-kernel.git/blame - drivers/hid/usbhid/hid-core.c
USB: iforce: remove dbg() usage
[mirror_ubuntu-focal-kernel.git] / drivers / hid / usbhid / hid-core.c
CommitLineData
1da177e4
LT
1/*
2 * USB HID support for Linux
3 *
4 * Copyright (c) 1999 Andreas Gal
bf0964dc
MH
5 * Copyright (c) 2000-2005 Vojtech Pavlik <vojtech@suse.cz>
6 * Copyright (c) 2005 Michael Haboustak <mike-@cinci.rr.com> for Concept2, Inc
0361a28d 7 * Copyright (c) 2007-2008 Oliver Neukum
7d39e849 8 * Copyright (c) 2006-2010 Jiri Kosina
1da177e4
LT
9 */
10
11/*
12 * This program is free software; you can redistribute it and/or modify it
13 * under the terms of the GNU General Public License as published by the Free
14 * Software Foundation; either version 2 of the License, or (at your option)
15 * any later version.
16 */
17
18#include <linux/module.h>
19#include <linux/slab.h>
20#include <linux/init.h>
21#include <linux/kernel.h>
1da177e4
LT
22#include <linux/list.h>
23#include <linux/mm.h>
3d5afd32 24#include <linux/mutex.h>
1da177e4
LT
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>
0361a28d 30#include <linux/workqueue.h>
1da177e4 31
1da177e4
LT
32#include <linux/usb.h>
33
dde5845a 34#include <linux/hid.h>
1da177e4 35#include <linux/hiddev.h>
c080d89a 36#include <linux/hid-debug.h>
86166b7b 37#include <linux/hidraw.h>
4916b3a5 38#include "usbhid.h"
1da177e4
LT
39
40/*
41 * Version Information
42 */
43
1da177e4
LT
44#define DRIVER_DESC "USB HID core driver"
45#define DRIVER_LICENSE "GPL"
46
1da177e4
LT
47/*
48 * Module parameters.
49 */
50
51static unsigned int hid_mousepoll_interval;
52module_param_named(mousepoll, hid_mousepoll_interval, uint, 0644);
53MODULE_PARM_DESC(mousepoll, "Polling interval of mice");
54
0361a28d
ON
55static unsigned int ignoreled;
56module_param_named(ignoreled, ignoreled, uint, 0644);
57MODULE_PARM_DESC(ignoreled, "Autosuspend with active leds");
58
876b9276
PW
59/* Quirks specified at module load time */
60static char *quirks_param[MAX_USBHID_BOOT_QUIRKS] = { [ 0 ... (MAX_USBHID_BOOT_QUIRKS - 1) ] = NULL };
61module_param_array_named(quirks, quirks_param, charp, NULL, 0444);
62MODULE_PARM_DESC(quirks, "Add/modify USB HID quirks by specifying "
63 " quirks=vendorID:productID:quirks"
64 " where vendorID, productID, and quirks are all in"
65 " 0x-prefixed hex");
1da177e4 66/*
48b4554a 67 * Input submission and I/O error handler.
1da177e4 68 */
0361a28d 69static DEFINE_MUTEX(hid_open_mut);
1da177e4 70
48b4554a 71static void hid_io_error(struct hid_device *hid);
0361a28d
ON
72static int hid_submit_out(struct hid_device *hid);
73static int hid_submit_ctrl(struct hid_device *hid);
74static void hid_cancel_delayed_stuff(struct usbhid_device *usbhid);
48b4554a
JK
75
76/* Start up the input URB */
77static int hid_start_in(struct hid_device *hid)
1da177e4 78{
1da177e4 79 unsigned long flags;
48b4554a
JK
80 int rc = 0;
81 struct usbhid_device *usbhid = hid->driver_data;
1da177e4 82
0361a28d
ON
83 spin_lock_irqsave(&usbhid->lock, flags);
84 if (hid->open > 0 &&
69626f23 85 !test_bit(HID_DISCONNECTED, &usbhid->iofl) &&
0361a28d 86 !test_bit(HID_REPORTED_IDLE, &usbhid->iofl) &&
48b4554a
JK
87 !test_and_set_bit(HID_IN_RUNNING, &usbhid->iofl)) {
88 rc = usb_submit_urb(usbhid->urbin, GFP_ATOMIC);
89 if (rc != 0)
90 clear_bit(HID_IN_RUNNING, &usbhid->iofl);
1da177e4 91 }
0361a28d 92 spin_unlock_irqrestore(&usbhid->lock, flags);
48b4554a 93 return rc;
1da177e4
LT
94}
95
48b4554a
JK
96/* I/O retry timer routine */
97static void hid_retry_timeout(unsigned long _hid)
1da177e4 98{
48b4554a 99 struct hid_device *hid = (struct hid_device *) _hid;
4916b3a5 100 struct usbhid_device *usbhid = hid->driver_data;
1da177e4 101
48b4554a
JK
102 dev_dbg(&usbhid->intf->dev, "retrying intr urb\n");
103 if (hid_start_in(hid))
104 hid_io_error(hid);
1da177e4
LT
105}
106
48b4554a
JK
107/* Workqueue routine to reset the device or clear a halt */
108static void hid_reset(struct work_struct *work)
1da177e4 109{
48b4554a
JK
110 struct usbhid_device *usbhid =
111 container_of(work, struct usbhid_device, reset_work);
112 struct hid_device *hid = usbhid->hid;
011b15df 113 int rc = 0;
1da177e4 114
48b4554a
JK
115 if (test_bit(HID_CLEAR_HALT, &usbhid->iofl)) {
116 dev_dbg(&usbhid->intf->dev, "clear halt\n");
117 rc = usb_clear_halt(hid_to_usb_dev(hid), usbhid->urbin->pipe);
118 clear_bit(HID_CLEAR_HALT, &usbhid->iofl);
119 hid_start_in(hid);
120 }
1da177e4 121
48b4554a
JK
122 else if (test_bit(HID_RESET_PENDING, &usbhid->iofl)) {
123 dev_dbg(&usbhid->intf->dev, "resetting device\n");
011b15df
AS
124 rc = usb_lock_device_for_reset(hid_to_usb_dev(hid), usbhid->intf);
125 if (rc == 0) {
742120c6 126 rc = usb_reset_device(hid_to_usb_dev(hid));
011b15df 127 usb_unlock_device(hid_to_usb_dev(hid));
1da177e4 128 }
48b4554a 129 clear_bit(HID_RESET_PENDING, &usbhid->iofl);
1da177e4
LT
130 }
131
48b4554a
JK
132 switch (rc) {
133 case 0:
134 if (!test_bit(HID_IN_RUNNING, &usbhid->iofl))
135 hid_io_error(hid);
136 break;
137 default:
4291ee30
JP
138 hid_err(hid, "can't reset device, %s-%s/input%d, status %d\n",
139 hid_to_usb_dev(hid)->bus->bus_name,
140 hid_to_usb_dev(hid)->devpath,
141 usbhid->ifnum, rc);
48b4554a
JK
142 /* FALLTHROUGH */
143 case -EHOSTUNREACH:
144 case -ENODEV:
145 case -EINTR:
146 break;
1da177e4 147 }
1da177e4
LT
148}
149
48b4554a
JK
150/* Main I/O error handler */
151static void hid_io_error(struct hid_device *hid)
dde5845a 152{
48b4554a
JK
153 unsigned long flags;
154 struct usbhid_device *usbhid = hid->driver_data;
dde5845a 155
0361a28d 156 spin_lock_irqsave(&usbhid->lock, flags);
dde5845a 157
48b4554a 158 /* Stop when disconnected */
69626f23 159 if (test_bit(HID_DISCONNECTED, &usbhid->iofl))
48b4554a 160 goto done;
dde5845a 161
5e2a55f2
AS
162 /* If it has been a while since the last error, we'll assume
163 * this a brand new error and reset the retry timeout. */
164 if (time_after(jiffies, usbhid->stop_retry + HZ/2))
165 usbhid->retry_delay = 0;
166
48b4554a
JK
167 /* When an error occurs, retry at increasing intervals */
168 if (usbhid->retry_delay == 0) {
169 usbhid->retry_delay = 13; /* Then 26, 52, 104, 104, ... */
170 usbhid->stop_retry = jiffies + msecs_to_jiffies(1000);
171 } else if (usbhid->retry_delay < 100)
172 usbhid->retry_delay *= 2;
dde5845a 173
48b4554a 174 if (time_after(jiffies, usbhid->stop_retry)) {
4916b3a5 175
48b4554a
JK
176 /* Retries failed, so do a port reset */
177 if (!test_and_set_bit(HID_RESET_PENDING, &usbhid->iofl)) {
178 schedule_work(&usbhid->reset_work);
179 goto done;
180 }
1da177e4
LT
181 }
182
48b4554a
JK
183 mod_timer(&usbhid->io_retry,
184 jiffies + msecs_to_jiffies(usbhid->retry_delay));
185done:
0361a28d
ON
186 spin_unlock_irqrestore(&usbhid->lock, flags);
187}
188
189static void usbhid_mark_busy(struct usbhid_device *usbhid)
190{
191 struct usb_interface *intf = usbhid->intf;
192
193 usb_mark_last_busy(interface_to_usbdev(intf));
194}
195
196static int usbhid_restart_out_queue(struct usbhid_device *usbhid)
197{
198 struct hid_device *hid = usb_get_intfdata(usbhid->intf);
199 int kicked;
f0befcd6 200 int r;
0361a28d
ON
201
202 if (!hid)
203 return 0;
204
205 if ((kicked = (usbhid->outhead != usbhid->outtail))) {
206 dbg("Kicking head %d tail %d", usbhid->outhead, usbhid->outtail);
f0befcd6
DK
207
208 r = usb_autopm_get_interface_async(usbhid->intf);
209 if (r < 0)
210 return r;
211 /* Asynchronously flush queue. */
212 set_bit(HID_OUT_RUNNING, &usbhid->iofl);
0361a28d
ON
213 if (hid_submit_out(hid)) {
214 clear_bit(HID_OUT_RUNNING, &usbhid->iofl);
f0befcd6 215 usb_autopm_put_interface_async(usbhid->intf);
0361a28d 216 }
f0befcd6 217 wake_up(&usbhid->wait);
0361a28d
ON
218 }
219 return kicked;
220}
221
222static int usbhid_restart_ctrl_queue(struct usbhid_device *usbhid)
223{
224 struct hid_device *hid = usb_get_intfdata(usbhid->intf);
225 int kicked;
f0befcd6 226 int r;
0361a28d
ON
227
228 WARN_ON(hid == NULL);
229 if (!hid)
230 return 0;
231
232 if ((kicked = (usbhid->ctrlhead != usbhid->ctrltail))) {
233 dbg("Kicking head %d tail %d", usbhid->ctrlhead, usbhid->ctrltail);
f0befcd6
DK
234
235 r = usb_autopm_get_interface_async(usbhid->intf);
236 if (r < 0)
237 return r;
238 /* Asynchronously flush queue. */
239 set_bit(HID_CTRL_RUNNING, &usbhid->iofl);
0361a28d
ON
240 if (hid_submit_ctrl(hid)) {
241 clear_bit(HID_CTRL_RUNNING, &usbhid->iofl);
f0befcd6 242 usb_autopm_put_interface_async(usbhid->intf);
0361a28d 243 }
f0befcd6 244 wake_up(&usbhid->wait);
0361a28d
ON
245 }
246 return kicked;
1da177e4
LT
247}
248
48b4554a
JK
249/*
250 * Input interrupt completion handler.
251 */
854561b0 252
48b4554a 253static void hid_irq_in(struct urb *urb)
1da177e4 254{
48b4554a
JK
255 struct hid_device *hid = urb->context;
256 struct usbhid_device *usbhid = hid->driver_data;
257 int status;
1da177e4 258
48b4554a 259 switch (urb->status) {
880d29f1 260 case 0: /* success */
0361a28d 261 usbhid_mark_busy(usbhid);
880d29f1
JS
262 usbhid->retry_delay = 0;
263 hid_input_report(urb->context, HID_INPUT_REPORT,
264 urb->transfer_buffer,
265 urb->actual_length, 1);
0361a28d
ON
266 /*
267 * autosuspend refused while keys are pressed
268 * because most keyboards don't wake up when
269 * a key is released
270 */
271 if (hid_check_keys_pressed(hid))
272 set_bit(HID_KEYS_PRESSED, &usbhid->iofl);
273 else
274 clear_bit(HID_KEYS_PRESSED, &usbhid->iofl);
880d29f1
JS
275 break;
276 case -EPIPE: /* stall */
0361a28d 277 usbhid_mark_busy(usbhid);
880d29f1
JS
278 clear_bit(HID_IN_RUNNING, &usbhid->iofl);
279 set_bit(HID_CLEAR_HALT, &usbhid->iofl);
280 schedule_work(&usbhid->reset_work);
281 return;
282 case -ECONNRESET: /* unlink */
283 case -ENOENT:
284 case -ESHUTDOWN: /* unplug */
285 clear_bit(HID_IN_RUNNING, &usbhid->iofl);
286 return;
287 case -EILSEQ: /* protocol error or unplug */
288 case -EPROTO: /* protocol error or unplug */
289 case -ETIME: /* protocol error or unplug */
290 case -ETIMEDOUT: /* Should never happen, but... */
0361a28d 291 usbhid_mark_busy(usbhid);
880d29f1
JS
292 clear_bit(HID_IN_RUNNING, &usbhid->iofl);
293 hid_io_error(hid);
294 return;
295 default: /* error */
4291ee30
JP
296 hid_warn(urb->dev, "input irq status %d received\n",
297 urb->status);
48b4554a 298 }
1da177e4 299
48b4554a
JK
300 status = usb_submit_urb(urb, GFP_ATOMIC);
301 if (status) {
302 clear_bit(HID_IN_RUNNING, &usbhid->iofl);
303 if (status != -EPERM) {
4291ee30
JP
304 hid_err(hid, "can't resubmit intr, %s-%s/input%d, status %d\n",
305 hid_to_usb_dev(hid)->bus->bus_name,
306 hid_to_usb_dev(hid)->devpath,
307 usbhid->ifnum, status);
48b4554a
JK
308 hid_io_error(hid);
309 }
310 }
1da177e4
LT
311}
312
48b4554a 313static int hid_submit_out(struct hid_device *hid)
1da177e4 314{
48b4554a 315 struct hid_report *report;
f129ea6d 316 char *raw_report;
4916b3a5 317 struct usbhid_device *usbhid = hid->driver_data;
68229689 318 int r;
4916b3a5 319
f129ea6d
AH
320 report = usbhid->out[usbhid->outtail].report;
321 raw_report = usbhid->out[usbhid->outtail].raw_report;
1da177e4 322
f0befcd6
DK
323 usbhid->urbout->transfer_buffer_length = ((report->size - 1) >> 3) +
324 1 + (report->id > 0);
325 usbhid->urbout->dev = hid_to_usb_dev(hid);
326 memcpy(usbhid->outbuf, raw_report,
327 usbhid->urbout->transfer_buffer_length);
328 kfree(raw_report);
1d3e2023 329
f0befcd6 330 dbg_hid("submitting out urb\n");
d57cdcff 331
f0befcd6
DK
332 r = usb_submit_urb(usbhid->urbout, GFP_ATOMIC);
333 if (r < 0) {
334 hid_err(hid, "usb_submit_urb(out) failed: %d\n", r);
335 return r;
48b4554a 336 }
f0befcd6 337 usbhid->last_out = jiffies;
48b4554a
JK
338 return 0;
339}
340
341static int hid_submit_ctrl(struct hid_device *hid)
1da177e4
LT
342{
343 struct hid_report *report;
48b4554a 344 unsigned char dir;
f129ea6d 345 char *raw_report;
68229689 346 int len, r;
4916b3a5 347 struct usbhid_device *usbhid = hid->driver_data;
1da177e4 348
48b4554a 349 report = usbhid->ctrl[usbhid->ctrltail].report;
f129ea6d 350 raw_report = usbhid->ctrl[usbhid->ctrltail].raw_report;
48b4554a 351 dir = usbhid->ctrl[usbhid->ctrltail].dir;
1da177e4 352
f0befcd6
DK
353 len = ((report->size - 1) >> 3) + 1 + (report->id > 0);
354 if (dir == USB_DIR_OUT) {
355 usbhid->urbctrl->pipe = usb_sndctrlpipe(hid_to_usb_dev(hid), 0);
356 usbhid->urbctrl->transfer_buffer_length = len;
357 memcpy(usbhid->ctrlbuf, raw_report, len);
358 kfree(raw_report);
359 } else {
360 int maxpacket, padlen;
361
362 usbhid->urbctrl->pipe = usb_rcvctrlpipe(hid_to_usb_dev(hid), 0);
363 maxpacket = usb_maxpacket(hid_to_usb_dev(hid),
364 usbhid->urbctrl->pipe, 0);
365 if (maxpacket > 0) {
366 padlen = DIV_ROUND_UP(len, maxpacket);
367 padlen *= maxpacket;
368 if (padlen > usbhid->bufsize)
369 padlen = usbhid->bufsize;
370 } else
371 padlen = 0;
372 usbhid->urbctrl->transfer_buffer_length = padlen;
48b4554a 373 }
f0befcd6
DK
374 usbhid->urbctrl->dev = hid_to_usb_dev(hid);
375
376 usbhid->cr->bRequestType = USB_TYPE_CLASS | USB_RECIP_INTERFACE | dir;
377 usbhid->cr->bRequest = (dir == USB_DIR_OUT) ? HID_REQ_SET_REPORT :
378 HID_REQ_GET_REPORT;
379 usbhid->cr->wValue = cpu_to_le16(((report->type + 1) << 8) |
380 report->id);
381 usbhid->cr->wIndex = cpu_to_le16(usbhid->ifnum);
382 usbhid->cr->wLength = cpu_to_le16(len);
383
384 dbg_hid("submitting ctrl urb: %s wValue=0x%04x wIndex=0x%04x wLength=%u\n",
385 usbhid->cr->bRequest == HID_REQ_SET_REPORT ? "Set_Report" :
386 "Get_Report",
387 usbhid->cr->wValue, usbhid->cr->wIndex, usbhid->cr->wLength);
388
389 r = usb_submit_urb(usbhid->urbctrl, GFP_ATOMIC);
390 if (r < 0) {
391 hid_err(hid, "usb_submit_urb(ctrl) failed: %d\n", r);
392 return r;
393 }
394 usbhid->last_ctrl = jiffies;
48b4554a
JK
395 return 0;
396}
1da177e4 397
48b4554a
JK
398/*
399 * Output interrupt completion handler.
400 */
1da177e4 401
8815bb09
ON
402static int irq_out_pump_restart(struct hid_device *hid)
403{
404 struct usbhid_device *usbhid = hid->driver_data;
405
406 if (usbhid->outhead != usbhid->outtail)
407 return hid_submit_out(hid);
408 else
409 return -1;
410}
411
48b4554a
JK
412static void hid_irq_out(struct urb *urb)
413{
414 struct hid_device *hid = urb->context;
415 struct usbhid_device *usbhid = hid->driver_data;
416 unsigned long flags;
417 int unplug = 0;
1da177e4 418
48b4554a 419 switch (urb->status) {
880d29f1
JS
420 case 0: /* success */
421 break;
422 case -ESHUTDOWN: /* unplug */
423 unplug = 1;
424 case -EILSEQ: /* protocol error or unplug */
425 case -EPROTO: /* protocol error or unplug */
426 case -ECONNRESET: /* unlink */
427 case -ENOENT:
428 break;
429 default: /* error */
4291ee30
JP
430 hid_warn(urb->dev, "output irq status %d received\n",
431 urb->status);
48b4554a 432 }
1da177e4 433
0361a28d 434 spin_lock_irqsave(&usbhid->lock, flags);
1da177e4 435
48b4554a
JK
436 if (unplug)
437 usbhid->outtail = usbhid->outhead;
438 else
439 usbhid->outtail = (usbhid->outtail + 1) & (HID_OUTPUT_FIFO_SIZE - 1);
1da177e4 440
8815bb09 441 if (!irq_out_pump_restart(hid)) {
f0befcd6 442 /* Successfully submitted next urb in queue */
0361a28d 443 spin_unlock_irqrestore(&usbhid->lock, flags);
48b4554a
JK
444 return;
445 }
1da177e4 446
48b4554a 447 clear_bit(HID_OUT_RUNNING, &usbhid->iofl);
0361a28d 448 spin_unlock_irqrestore(&usbhid->lock, flags);
68229689 449 usb_autopm_put_interface_async(usbhid->intf);
1d1bdd20 450 wake_up(&usbhid->wait);
48b4554a 451}
6345fdfd 452
48b4554a
JK
453/*
454 * Control pipe completion handler.
455 */
8815bb09
ON
456static int ctrl_pump_restart(struct hid_device *hid)
457{
458 struct usbhid_device *usbhid = hid->driver_data;
459
460 if (usbhid->ctrlhead != usbhid->ctrltail)
461 return hid_submit_ctrl(hid);
462 else
463 return -1;
464}
1da177e4 465
48b4554a
JK
466static void hid_ctrl(struct urb *urb)
467{
468 struct hid_device *hid = urb->context;
469 struct usbhid_device *usbhid = hid->driver_data;
0361a28d 470 int unplug = 0, status = urb->status;
1da177e4 471
0361a28d 472 spin_lock(&usbhid->lock);
1da177e4 473
0361a28d 474 switch (status) {
880d29f1
JS
475 case 0: /* success */
476 if (usbhid->ctrl[usbhid->ctrltail].dir == USB_DIR_IN)
477 hid_input_report(urb->context,
478 usbhid->ctrl[usbhid->ctrltail].report->type,
479 urb->transfer_buffer, urb->actual_length, 0);
480 break;
481 case -ESHUTDOWN: /* unplug */
482 unplug = 1;
483 case -EILSEQ: /* protocol error or unplug */
484 case -EPROTO: /* protocol error or unplug */
485 case -ECONNRESET: /* unlink */
486 case -ENOENT:
487 case -EPIPE: /* report not available */
488 break;
489 default: /* error */
4291ee30 490 hid_warn(urb->dev, "ctrl urb status %d received\n", status);
48b4554a 491 }
1da177e4 492
48b4554a
JK
493 if (unplug)
494 usbhid->ctrltail = usbhid->ctrlhead;
495 else
496 usbhid->ctrltail = (usbhid->ctrltail + 1) & (HID_CONTROL_FIFO_SIZE - 1);
1da177e4 497
8815bb09 498 if (!ctrl_pump_restart(hid)) {
f0befcd6 499 /* Successfully submitted next urb in queue */
0361a28d 500 spin_unlock(&usbhid->lock);
48b4554a
JK
501 return;
502 }
1da177e4 503
48b4554a 504 clear_bit(HID_CTRL_RUNNING, &usbhid->iofl);
0361a28d 505 spin_unlock(&usbhid->lock);
68229689 506 usb_autopm_put_interface_async(usbhid->intf);
1d1bdd20 507 wake_up(&usbhid->wait);
48b4554a 508}
1da177e4 509
52cfc61b
HS
510static void __usbhid_submit_report(struct hid_device *hid, struct hid_report *report,
511 unsigned char dir)
48b4554a
JK
512{
513 int head;
48b4554a 514 struct usbhid_device *usbhid = hid->driver_data;
f129ea6d 515 int len = ((report->size - 1) >> 3) + 1 + (report->id > 0);
1da177e4 516
48b4554a
JK
517 if ((hid->quirks & HID_QUIRK_NOGET) && dir == USB_DIR_IN)
518 return;
b857c651 519
48b4554a 520 if (usbhid->urbout && dir == USB_DIR_OUT && report->type == HID_OUTPUT_REPORT) {
48b4554a 521 if ((head = (usbhid->outhead + 1) & (HID_OUTPUT_FIFO_SIZE - 1)) == usbhid->outtail) {
4291ee30 522 hid_warn(hid, "output queue full\n");
48b4554a
JK
523 return;
524 }
1da177e4 525
f129ea6d
AH
526 usbhid->out[usbhid->outhead].raw_report = kmalloc(len, GFP_ATOMIC);
527 if (!usbhid->out[usbhid->outhead].raw_report) {
4291ee30 528 hid_warn(hid, "output queueing failed\n");
f129ea6d
AH
529 return;
530 }
531 hid_output_report(report, usbhid->out[usbhid->outhead].raw_report);
532 usbhid->out[usbhid->outhead].report = report;
48b4554a 533 usbhid->outhead = head;
4871d3be 534
f0befcd6
DK
535 /* Try to awake from autosuspend... */
536 if (usb_autopm_get_interface_async(usbhid->intf) < 0)
537 return;
538
539 /*
540 * But if still suspended, leave urb enqueued, don't submit.
541 * Submission will occur if/when resume() drains the queue.
542 */
543 if (test_bit(HID_REPORTED_IDLE, &usbhid->iofl))
544 return;
545
858155fb 546 if (!test_and_set_bit(HID_OUT_RUNNING, &usbhid->iofl)) {
f0befcd6 547 if (hid_submit_out(hid)) {
48b4554a 548 clear_bit(HID_OUT_RUNNING, &usbhid->iofl);
f0befcd6
DK
549 usb_autopm_put_interface_async(usbhid->intf);
550 }
551 wake_up(&usbhid->wait);
858155fb
ON
552 } else {
553 /*
554 * the queue is known to run
555 * but an earlier request may be stuck
556 * we may need to time out
8815bb09 557 * no race because the URB is blocked under
858155fb
ON
558 * spinlock
559 */
8815bb09
ON
560 if (time_after(jiffies, usbhid->last_out + HZ * 5)) {
561 usb_block_urb(usbhid->urbout);
562 /* drop lock to not deadlock if the callback is called */
563 spin_unlock(&usbhid->lock);
858155fb 564 usb_unlink_urb(usbhid->urbout);
8815bb09
ON
565 spin_lock(&usbhid->lock);
566 usb_unblock_urb(usbhid->urbout);
567 /*
568 * if the unlinking has already completed
569 * the pump will have been stopped
570 * it must be restarted now
571 */
572 if (!test_bit(HID_OUT_RUNNING, &usbhid->iofl))
573 if (!irq_out_pump_restart(hid))
574 set_bit(HID_OUT_RUNNING, &usbhid->iofl);
575
576
577 }
858155fb 578 }
48b4554a
JK
579 return;
580 }
1da177e4 581
48b4554a 582 if ((head = (usbhid->ctrlhead + 1) & (HID_CONTROL_FIFO_SIZE - 1)) == usbhid->ctrltail) {
4291ee30 583 hid_warn(hid, "control queue full\n");
48b4554a
JK
584 return;
585 }
8fd80133 586
f129ea6d
AH
587 if (dir == USB_DIR_OUT) {
588 usbhid->ctrl[usbhid->ctrlhead].raw_report = kmalloc(len, GFP_ATOMIC);
589 if (!usbhid->ctrl[usbhid->ctrlhead].raw_report) {
4291ee30 590 hid_warn(hid, "control queueing failed\n");
f129ea6d
AH
591 return;
592 }
593 hid_output_report(report, usbhid->ctrl[usbhid->ctrlhead].raw_report);
594 }
48b4554a
JK
595 usbhid->ctrl[usbhid->ctrlhead].report = report;
596 usbhid->ctrl[usbhid->ctrlhead].dir = dir;
597 usbhid->ctrlhead = head;
8fd80133 598
f0befcd6
DK
599 /* Try to awake from autosuspend... */
600 if (usb_autopm_get_interface_async(usbhid->intf) < 0)
601 return;
602
603 /*
604 * If already suspended, leave urb enqueued, but don't submit.
605 * Submission will occur if/when resume() drains the queue.
606 */
607 if (test_bit(HID_REPORTED_IDLE, &usbhid->iofl))
608 return;
609
858155fb 610 if (!test_and_set_bit(HID_CTRL_RUNNING, &usbhid->iofl)) {
f0befcd6 611 if (hid_submit_ctrl(hid)) {
48b4554a 612 clear_bit(HID_CTRL_RUNNING, &usbhid->iofl);
f0befcd6
DK
613 usb_autopm_put_interface_async(usbhid->intf);
614 }
615 wake_up(&usbhid->wait);
858155fb
ON
616 } else {
617 /*
618 * the queue is known to run
619 * but an earlier request may be stuck
620 * we may need to time out
8815bb09 621 * no race because the URB is blocked under
858155fb
ON
622 * spinlock
623 */
8815bb09
ON
624 if (time_after(jiffies, usbhid->last_ctrl + HZ * 5)) {
625 usb_block_urb(usbhid->urbctrl);
626 /* drop lock to not deadlock if the callback is called */
627 spin_unlock(&usbhid->lock);
858155fb 628 usb_unlink_urb(usbhid->urbctrl);
8815bb09
ON
629 spin_lock(&usbhid->lock);
630 usb_unblock_urb(usbhid->urbctrl);
631 /*
632 * if the unlinking has already completed
633 * the pump will have been stopped
634 * it must be restarted now
635 */
636 if (!test_bit(HID_CTRL_RUNNING, &usbhid->iofl))
637 if (!ctrl_pump_restart(hid))
638 set_bit(HID_CTRL_RUNNING, &usbhid->iofl);
639 }
858155fb 640 }
0361a28d 641}
931e24b9 642
0361a28d
ON
643void usbhid_submit_report(struct hid_device *hid, struct hid_report *report, unsigned char dir)
644{
645 struct usbhid_device *usbhid = hid->driver_data;
646 unsigned long flags;
931e24b9 647
0361a28d
ON
648 spin_lock_irqsave(&usbhid->lock, flags);
649 __usbhid_submit_report(hid, report, dir);
650 spin_unlock_irqrestore(&usbhid->lock, flags);
48b4554a 651}
606bd0a8 652EXPORT_SYMBOL_GPL(usbhid_submit_report);
23b0d968 653
4371ea82
DK
654/* Workqueue routine to send requests to change LEDs */
655static void hid_led(struct work_struct *work)
656{
657 struct usbhid_device *usbhid =
658 container_of(work, struct usbhid_device, led_work);
659 struct hid_device *hid = usbhid->hid;
660 struct hid_field *field;
661 unsigned long flags;
662
663 field = hidinput_get_led_field(hid);
664 if (!field) {
665 hid_warn(hid, "LED event field not found\n");
666 return;
667 }
668
669 spin_lock_irqsave(&usbhid->lock, flags);
670 if (!test_bit(HID_DISCONNECTED, &usbhid->iofl)) {
671 usbhid->ledcount = hidinput_count_leds(hid);
672 hid_dbg(usbhid->hid, "New ledcount = %u\n", usbhid->ledcount);
673 __usbhid_submit_report(hid, field->report, USB_DIR_OUT);
674 }
675 spin_unlock_irqrestore(&usbhid->lock, flags);
676}
677
48b4554a
JK
678static int usb_hidinput_input_event(struct input_dev *dev, unsigned int type, unsigned int code, int value)
679{
e0712985 680 struct hid_device *hid = input_get_drvdata(dev);
0361a28d 681 struct usbhid_device *usbhid = hid->driver_data;
48b4554a 682 struct hid_field *field;
0361a28d 683 unsigned long flags;
48b4554a 684 int offset;
41ad5fba 685
48b4554a
JK
686 if (type == EV_FF)
687 return input_ff_event(dev, type, code, value);
8d2bad87 688
48b4554a
JK
689 if (type != EV_LED)
690 return -1;
5556feae 691
48b4554a 692 if ((offset = hidinput_find_field(hid, type, code, &field)) == -1) {
4291ee30 693 hid_warn(dev, "event field not found\n");
48b4554a
JK
694 return -1;
695 }
4a1a4d8b 696
4371ea82 697 spin_lock_irqsave(&usbhid->lock, flags);
48b4554a 698 hid_set_field(field, offset, value);
4371ea82
DK
699 spin_unlock_irqrestore(&usbhid->lock, flags);
700
701 /*
702 * Defer performing requested LED action.
703 * This is more likely gather all LED changes into a single URB.
704 */
705 schedule_work(&usbhid->led_work);
1da177e4 706
48b4554a
JK
707 return 0;
708}
1da177e4 709
48b4554a
JK
710int usbhid_wait_io(struct hid_device *hid)
711{
712 struct usbhid_device *usbhid = hid->driver_data;
25914662 713
1d1bdd20
JS
714 if (!wait_event_timeout(usbhid->wait,
715 (!test_bit(HID_CTRL_RUNNING, &usbhid->iofl) &&
716 !test_bit(HID_OUT_RUNNING, &usbhid->iofl)),
48b4554a 717 10*HZ)) {
58037eb9 718 dbg_hid("timeout waiting for ctrl or out queue to clear\n");
48b4554a
JK
719 return -1;
720 }
1da177e4 721
48b4554a
JK
722 return 0;
723}
b8c21cf6 724EXPORT_SYMBOL_GPL(usbhid_wait_io);
53880546 725
48b4554a
JK
726static int hid_set_idle(struct usb_device *dev, int ifnum, int report, int idle)
727{
728 return usb_control_msg(dev, usb_sndctrlpipe(dev, 0),
729 HID_REQ_SET_IDLE, USB_TYPE_CLASS | USB_RECIP_INTERFACE, (idle << 8) | report,
730 ifnum, NULL, 0, USB_CTRL_SET_TIMEOUT);
731}
1da177e4 732
48b4554a
JK
733static int hid_get_class_descriptor(struct usb_device *dev, int ifnum,
734 unsigned char type, void *buf, int size)
735{
736 int result, retries = 4;
1da177e4 737
48b4554a 738 memset(buf, 0, size);
1da177e4 739
48b4554a
JK
740 do {
741 result = usb_control_msg(dev, usb_rcvctrlpipe(dev, 0),
742 USB_REQ_GET_DESCRIPTOR, USB_RECIP_INTERFACE | USB_DIR_IN,
743 (type << 8), ifnum, buf, size, USB_CTRL_GET_TIMEOUT);
744 retries--;
745 } while (result < size && retries);
746 return result;
747}
940824b0 748
48b4554a
JK
749int usbhid_open(struct hid_device *hid)
750{
933e3187
ON
751 struct usbhid_device *usbhid = hid->driver_data;
752 int res;
753
0361a28d 754 mutex_lock(&hid_open_mut);
933e3187
ON
755 if (!hid->open++) {
756 res = usb_autopm_get_interface(usbhid->intf);
68229689 757 /* the device must be awake to reliably request remote wakeup */
933e3187
ON
758 if (res < 0) {
759 hid->open--;
0361a28d 760 mutex_unlock(&hid_open_mut);
933e3187
ON
761 return -EIO;
762 }
0361a28d
ON
763 usbhid->intf->needs_remote_wakeup = 1;
764 if (hid_start_in(hid))
765 hid_io_error(hid);
766
767 usb_autopm_put_interface(usbhid->intf);
933e3187 768 }
0361a28d 769 mutex_unlock(&hid_open_mut);
48b4554a
JK
770 return 0;
771}
a417a21e 772
48b4554a
JK
773void usbhid_close(struct hid_device *hid)
774{
775 struct usbhid_device *usbhid = hid->driver_data;
eab9edd2 776
0361a28d
ON
777 mutex_lock(&hid_open_mut);
778
779 /* protecting hid->open to make sure we don't restart
780 * data acquistion due to a resumption we no longer
781 * care about
782 */
783 spin_lock_irq(&usbhid->lock);
933e3187 784 if (!--hid->open) {
0361a28d 785 spin_unlock_irq(&usbhid->lock);
89092ddd 786 hid_cancel_delayed_stuff(usbhid);
48b4554a 787 usb_kill_urb(usbhid->urbin);
0361a28d
ON
788 usbhid->intf->needs_remote_wakeup = 0;
789 } else {
790 spin_unlock_irq(&usbhid->lock);
933e3187 791 }
0361a28d 792 mutex_unlock(&hid_open_mut);
48b4554a 793}
1d3e2023 794
48b4554a
JK
795/*
796 * Initialize all reports
797 */
41ad5fba 798
48b4554a
JK
799void usbhid_init_reports(struct hid_device *hid)
800{
801 struct hid_report *report;
802 struct usbhid_device *usbhid = hid->driver_data;
803 int err, ret;
41ad5fba 804
48b4554a
JK
805 list_for_each_entry(report, &hid->report_enum[HID_INPUT_REPORT].report_list, list)
806 usbhid_submit_report(hid, report, USB_DIR_IN);
5556feae 807
48b4554a
JK
808 list_for_each_entry(report, &hid->report_enum[HID_FEATURE_REPORT].report_list, list)
809 usbhid_submit_report(hid, report, USB_DIR_IN);
4a1a4d8b 810
48b4554a
JK
811 err = 0;
812 ret = usbhid_wait_io(hid);
813 while (ret) {
814 err |= ret;
815 if (test_bit(HID_CTRL_RUNNING, &usbhid->iofl))
816 usb_kill_urb(usbhid->urbctrl);
817 if (test_bit(HID_OUT_RUNNING, &usbhid->iofl))
818 usb_kill_urb(usbhid->urbout);
819 ret = usbhid_wait_io(hid);
820 }
3f9b4076 821
48b4554a 822 if (err)
4291ee30 823 hid_warn(hid, "timeout initializing reports\n");
48b4554a 824}
1da177e4 825
713c8aad
PZ
826/*
827 * Reset LEDs which BIOS might have left on. For now, just NumLock (0x01).
828 */
829static int hid_find_field_early(struct hid_device *hid, unsigned int page,
830 unsigned int hid_code, struct hid_field **pfield)
831{
832 struct hid_report *report;
833 struct hid_field *field;
834 struct hid_usage *usage;
835 int i, j;
836
837 list_for_each_entry(report, &hid->report_enum[HID_OUTPUT_REPORT].report_list, list) {
838 for (i = 0; i < report->maxfield; i++) {
839 field = report->field[i];
840 for (j = 0; j < field->maxusage; j++) {
841 usage = &field->usage[j];
842 if ((usage->hid & HID_USAGE_PAGE) == page &&
843 (usage->hid & 0xFFFF) == hid_code) {
844 *pfield = field;
845 return j;
846 }
847 }
848 }
849 }
850 return -1;
851}
852
6edfa8dc 853void usbhid_set_leds(struct hid_device *hid)
713c8aad
PZ
854{
855 struct hid_field *field;
856 int offset;
857
858 if ((offset = hid_find_field_early(hid, HID_UP_LED, 0x01, &field)) != -1) {
859 hid_set_field(field, offset, 0);
860 usbhid_submit_report(hid, field->report, USB_DIR_OUT);
861 }
862}
6edfa8dc 863EXPORT_SYMBOL_GPL(usbhid_set_leds);
713c8aad 864
bf0964dc
MH
865/*
866 * Traverse the supplied list of reports and find the longest
867 */
282bfd4c
JS
868static void hid_find_max_report(struct hid_device *hid, unsigned int type,
869 unsigned int *max)
bf0964dc
MH
870{
871 struct hid_report *report;
282bfd4c 872 unsigned int size;
bf0964dc
MH
873
874 list_for_each_entry(report, &hid->report_enum[type].report_list, list) {
efc7ce18 875 size = ((report->size - 1) >> 3) + 1 + hid->report_enum[type].numbered;
bf0964dc
MH
876 if (*max < size)
877 *max = size;
878 }
879}
880
1da177e4
LT
881static int hid_alloc_buffers(struct usb_device *dev, struct hid_device *hid)
882{
4916b3a5
JK
883 struct usbhid_device *usbhid = hid->driver_data;
884
997ea58e 885 usbhid->inbuf = usb_alloc_coherent(dev, usbhid->bufsize, GFP_KERNEL,
898089d0 886 &usbhid->inbuf_dma);
997ea58e 887 usbhid->outbuf = usb_alloc_coherent(dev, usbhid->bufsize, GFP_KERNEL,
898089d0 888 &usbhid->outbuf_dma);
0ede76fc 889 usbhid->cr = kmalloc(sizeof(*usbhid->cr), GFP_KERNEL);
997ea58e 890 usbhid->ctrlbuf = usb_alloc_coherent(dev, usbhid->bufsize, GFP_KERNEL,
898089d0
JS
891 &usbhid->ctrlbuf_dma);
892 if (!usbhid->inbuf || !usbhid->outbuf || !usbhid->cr ||
893 !usbhid->ctrlbuf)
1da177e4
LT
894 return -1;
895
896 return 0;
897}
898
b4dbde9d
AO
899static int usbhid_get_raw_report(struct hid_device *hid,
900 unsigned char report_number, __u8 *buf, size_t count,
901 unsigned char report_type)
902{
903 struct usbhid_device *usbhid = hid->driver_data;
904 struct usb_device *dev = hid_to_usb_dev(hid);
905 struct usb_interface *intf = usbhid->intf;
906 struct usb_host_interface *interface = intf->cur_altsetting;
907 int skipped_report_id = 0;
908 int ret;
909
910 /* Byte 0 is the report number. Report data starts at byte 1.*/
911 buf[0] = report_number;
912 if (report_number == 0x0) {
913 /* Offset the return buffer by 1, so that the report ID
914 will remain in byte 0. */
915 buf++;
916 count--;
917 skipped_report_id = 1;
918 }
919 ret = usb_control_msg(dev, usb_rcvctrlpipe(dev, 0),
920 HID_REQ_GET_REPORT,
921 USB_DIR_IN | USB_TYPE_CLASS | USB_RECIP_INTERFACE,
922 ((report_type + 1) << 8) | report_number,
923 interface->desc.bInterfaceNumber, buf, count,
924 USB_CTRL_SET_TIMEOUT);
925
926 /* count also the report id */
927 if (ret > 0 && skipped_report_id)
928 ret++;
929
930 return ret;
931}
932
d4bfa033
JK
933static int usbhid_output_raw_report(struct hid_device *hid, __u8 *buf, size_t count,
934 unsigned char report_type)
efc493f9
JK
935{
936 struct usbhid_device *usbhid = hid->driver_data;
937 struct usb_device *dev = hid_to_usb_dev(hid);
938 struct usb_interface *intf = usbhid->intf;
939 struct usb_host_interface *interface = intf->cur_altsetting;
940 int ret;
941
fe2c91ee 942 if (usbhid->urbout && report_type != HID_FEATURE_REPORT) {
a8ab5d58
AO
943 int actual_length;
944 int skipped_report_id = 0;
12e52725 945
a8ab5d58
AO
946 if (buf[0] == 0x0) {
947 /* Don't send the Report ID */
948 buf++;
949 count--;
950 skipped_report_id = 1;
951 }
952 ret = usb_interrupt_msg(dev, usbhid->urbout->pipe,
953 buf, count, &actual_length,
954 USB_CTRL_SET_TIMEOUT);
955 /* return the number of bytes transferred */
956 if (ret == 0) {
957 ret = actual_length;
958 /* count also the report id */
959 if (skipped_report_id)
960 ret++;
961 }
962 } else {
29129a98 963 int skipped_report_id = 0;
c29771c2 964 int report_id = buf[0];
29129a98
AO
965 if (buf[0] == 0x0) {
966 /* Don't send the Report ID */
967 buf++;
968 count--;
969 skipped_report_id = 1;
970 }
a8ab5d58
AO
971 ret = usb_control_msg(dev, usb_sndctrlpipe(dev, 0),
972 HID_REQ_SET_REPORT,
973 USB_DIR_OUT | USB_TYPE_CLASS | USB_RECIP_INTERFACE,
c29771c2 974 ((report_type + 1) << 8) | report_id,
29129a98 975 interface->desc.bInterfaceNumber, buf, count,
a8ab5d58 976 USB_CTRL_SET_TIMEOUT);
29129a98
AO
977 /* count also the report id, if this was a numbered report. */
978 if (ret > 0 && skipped_report_id)
a8ab5d58
AO
979 ret++;
980 }
efc493f9
JK
981
982 return ret;
983}
984
0361a28d
ON
985static void usbhid_restart_queues(struct usbhid_device *usbhid)
986{
987 if (usbhid->urbout)
988 usbhid_restart_out_queue(usbhid);
989 usbhid_restart_ctrl_queue(usbhid);
990}
991
1da177e4
LT
992static void hid_free_buffers(struct usb_device *dev, struct hid_device *hid)
993{
4916b3a5
JK
994 struct usbhid_device *usbhid = hid->driver_data;
995
997ea58e
DM
996 usb_free_coherent(dev, usbhid->bufsize, usbhid->inbuf, usbhid->inbuf_dma);
997 usb_free_coherent(dev, usbhid->bufsize, usbhid->outbuf, usbhid->outbuf_dma);
0ede76fc 998 kfree(usbhid->cr);
997ea58e 999 usb_free_coherent(dev, usbhid->bufsize, usbhid->ctrlbuf, usbhid->ctrlbuf_dma);
1da177e4
LT
1000}
1001
c500c971
JS
1002static int usbhid_parse(struct hid_device *hid)
1003{
1004 struct usb_interface *intf = to_usb_interface(hid->dev.parent);
1da177e4
LT
1005 struct usb_host_interface *interface = intf->cur_altsetting;
1006 struct usb_device *dev = interface_to_usbdev (intf);
1007 struct hid_descriptor *hdesc;
2eb5dc30 1008 u32 quirks = 0;
c500c971 1009 unsigned int rsize = 0;
c5b7c7c3 1010 char *rdesc;
c500c971 1011 int ret, n;
1da177e4 1012
2eb5dc30
PW
1013 quirks = usbhid_lookup_quirk(le16_to_cpu(dev->descriptor.idVendor),
1014 le16_to_cpu(dev->descriptor.idProduct));
1da177e4 1015
6f4303fb
JK
1016 if (quirks & HID_QUIRK_IGNORE)
1017 return -ENODEV;
1018
0f28b55d
AS
1019 /* Many keyboards and mice don't like to be polled for reports,
1020 * so we will always set the HID_QUIRK_NOGET flag for them. */
1021 if (interface->desc.bInterfaceSubClass == USB_INTERFACE_SUBCLASS_BOOT) {
1022 if (interface->desc.bInterfaceProtocol == USB_INTERFACE_PROTOCOL_KEYBOARD ||
1023 interface->desc.bInterfaceProtocol == USB_INTERFACE_PROTOCOL_MOUSE)
1024 quirks |= HID_QUIRK_NOGET;
1025 }
1026
c5b7c7c3
DT
1027 if (usb_get_extra_descriptor(interface, HID_DT_HID, &hdesc) &&
1028 (!interface->desc.bNumEndpoints ||
1029 usb_get_extra_descriptor(&interface->endpoint[0], HID_DT_HID, &hdesc))) {
58037eb9 1030 dbg_hid("class descriptor not present\n");
c500c971 1031 return -ENODEV;
1da177e4
LT
1032 }
1033
c500c971
JS
1034 hid->version = le16_to_cpu(hdesc->bcdHID);
1035 hid->country = hdesc->bCountryCode;
1036
1da177e4
LT
1037 for (n = 0; n < hdesc->bNumDescriptors; n++)
1038 if (hdesc->desc[n].bDescriptorType == HID_DT_REPORT)
1039 rsize = le16_to_cpu(hdesc->desc[n].wDescriptorLength);
1040
1041 if (!rsize || rsize > HID_MAX_DESCRIPTOR_SIZE) {
58037eb9 1042 dbg_hid("weird size of report descriptor (%u)\n", rsize);
c500c971 1043 return -EINVAL;
1da177e4
LT
1044 }
1045
1046 if (!(rdesc = kmalloc(rsize, GFP_KERNEL))) {
58037eb9 1047 dbg_hid("couldn't allocate rdesc memory\n");
c500c971 1048 return -ENOMEM;
1da177e4
LT
1049 }
1050
854561b0
VP
1051 hid_set_idle(dev, interface->desc.bInterfaceNumber, 0, 0);
1052
c500c971
JS
1053 ret = hid_get_class_descriptor(dev, interface->desc.bInterfaceNumber,
1054 HID_DT_REPORT, rdesc, rsize);
1055 if (ret < 0) {
58037eb9 1056 dbg_hid("reading report descriptor failed\n");
1da177e4 1057 kfree(rdesc);
c500c971 1058 goto err;
1da177e4
LT
1059 }
1060
c500c971
JS
1061 ret = hid_parse_report(hid, rdesc, rsize);
1062 kfree(rdesc);
1063 if (ret) {
58037eb9 1064 dbg_hid("parsing report descriptor failed\n");
c500c971 1065 goto err;
1da177e4
LT
1066 }
1067
f5208997 1068 hid->quirks |= quirks;
1da177e4 1069
c500c971
JS
1070 return 0;
1071err:
1072 return ret;
1073}
1074
1075static int usbhid_start(struct hid_device *hid)
1076{
1077 struct usb_interface *intf = to_usb_interface(hid->dev.parent);
1078 struct usb_host_interface *interface = intf->cur_altsetting;
1079 struct usb_device *dev = interface_to_usbdev(intf);
3d5afd32 1080 struct usbhid_device *usbhid = hid->driver_data;
c500c971
JS
1081 unsigned int n, insize = 0;
1082 int ret;
1083
e3e14de5
JS
1084 clear_bit(HID_DISCONNECTED, &usbhid->iofl);
1085
4916b3a5
JK
1086 usbhid->bufsize = HID_MIN_BUFFER_SIZE;
1087 hid_find_max_report(hid, HID_INPUT_REPORT, &usbhid->bufsize);
1088 hid_find_max_report(hid, HID_OUTPUT_REPORT, &usbhid->bufsize);
1089 hid_find_max_report(hid, HID_FEATURE_REPORT, &usbhid->bufsize);
bf0964dc 1090
4916b3a5
JK
1091 if (usbhid->bufsize > HID_MAX_BUFFER_SIZE)
1092 usbhid->bufsize = HID_MAX_BUFFER_SIZE;
bf0964dc
MH
1093
1094 hid_find_max_report(hid, HID_INPUT_REPORT, &insize);
1095
1096 if (insize > HID_MAX_BUFFER_SIZE)
1097 insize = HID_MAX_BUFFER_SIZE;
1098
c500c971
JS
1099 if (hid_alloc_buffers(dev, hid)) {
1100 ret = -ENOMEM;
1da177e4 1101 goto fail;
f345c37c
PS
1102 }
1103
1da177e4 1104 for (n = 0; n < interface->desc.bNumEndpoints; n++) {
1da177e4
LT
1105 struct usb_endpoint_descriptor *endpoint;
1106 int pipe;
1107 int interval;
1108
1109 endpoint = &interface->endpoint[n].desc;
581a2739 1110 if (!usb_endpoint_xfer_int(endpoint))
1da177e4
LT
1111 continue;
1112
1da177e4 1113 interval = endpoint->bInterval;
1da177e4 1114
f345c37c 1115 /* Some vendors give fullspeed interval on highspeed devides */
c500c971 1116 if (hid->quirks & HID_QUIRK_FULLSPEED_INTERVAL &&
f345c37c
PS
1117 dev->speed == USB_SPEED_HIGH) {
1118 interval = fls(endpoint->bInterval*8);
1119 printk(KERN_INFO "%s: Fixing fullspeed to highspeed interval: %d -> %d\n",
1120 hid->name, endpoint->bInterval, interval);
1121 }
1122
1da177e4
LT
1123 /* Change the polling interval of mice. */
1124 if (hid->collection->usage == HID_GD_MOUSE && hid_mousepoll_interval > 0)
1125 interval = hid_mousepoll_interval;
05f091ab 1126
c500c971 1127 ret = -ENOMEM;
0f12aa03 1128 if (usb_endpoint_dir_in(endpoint)) {
4916b3a5 1129 if (usbhid->urbin)
1da177e4 1130 continue;
4916b3a5 1131 if (!(usbhid->urbin = usb_alloc_urb(0, GFP_KERNEL)))
1da177e4
LT
1132 goto fail;
1133 pipe = usb_rcvintpipe(dev, endpoint->bEndpointAddress);
4916b3a5 1134 usb_fill_int_urb(usbhid->urbin, dev, pipe, usbhid->inbuf, insize,
1da177e4 1135 hid_irq_in, hid, interval);
4916b3a5
JK
1136 usbhid->urbin->transfer_dma = usbhid->inbuf_dma;
1137 usbhid->urbin->transfer_flags |= URB_NO_TRANSFER_DMA_MAP;
1da177e4 1138 } else {
4916b3a5 1139 if (usbhid->urbout)
1da177e4 1140 continue;
4916b3a5 1141 if (!(usbhid->urbout = usb_alloc_urb(0, GFP_KERNEL)))
1da177e4
LT
1142 goto fail;
1143 pipe = usb_sndintpipe(dev, endpoint->bEndpointAddress);
4916b3a5 1144 usb_fill_int_urb(usbhid->urbout, dev, pipe, usbhid->outbuf, 0,
1da177e4 1145 hid_irq_out, hid, interval);
4916b3a5
JK
1146 usbhid->urbout->transfer_dma = usbhid->outbuf_dma;
1147 usbhid->urbout->transfer_flags |= URB_NO_TRANSFER_DMA_MAP;
1da177e4
LT
1148 }
1149 }
1150
4916b3a5 1151 usbhid->urbctrl = usb_alloc_urb(0, GFP_KERNEL);
c500c971
JS
1152 if (!usbhid->urbctrl) {
1153 ret = -ENOMEM;
1da177e4 1154 goto fail;
c500c971 1155 }
c5b7c7c3 1156
4916b3a5
JK
1157 usb_fill_control_urb(usbhid->urbctrl, dev, 0, (void *) usbhid->cr,
1158 usbhid->ctrlbuf, 1, hid_ctrl, hid);
4916b3a5 1159 usbhid->urbctrl->transfer_dma = usbhid->ctrlbuf_dma;
0ede76fc 1160 usbhid->urbctrl->transfer_flags |= URB_NO_TRANSFER_DMA_MAP;
c500c971 1161
5b915d9e
JK
1162 if (!(hid->quirks & HID_QUIRK_NO_INIT_REPORTS))
1163 usbhid_init_reports(hid);
93c10132 1164
3d5afd32 1165 set_bit(HID_STARTED, &usbhid->iofl);
3d5afd32 1166
08ef08ee
AS
1167 /* Some keyboards don't work until their LEDs have been set.
1168 * Since BIOSes do set the LEDs, it must be safe for any device
1169 * that supports the keyboard boot protocol.
3d61510f
AS
1170 * In addition, enable remote wakeup by default for all keyboard
1171 * devices supporting the boot protocol.
08ef08ee
AS
1172 */
1173 if (interface->desc.bInterfaceSubClass == USB_INTERFACE_SUBCLASS_BOOT &&
1174 interface->desc.bInterfaceProtocol ==
3d61510f 1175 USB_INTERFACE_PROTOCOL_KEYBOARD) {
08ef08ee 1176 usbhid_set_leds(hid);
3d61510f
AS
1177 device_set_wakeup_enable(&dev->dev, 1);
1178 }
c500c971 1179 return 0;
1da177e4
LT
1180
1181fail:
4916b3a5
JK
1182 usb_free_urb(usbhid->urbin);
1183 usb_free_urb(usbhid->urbout);
1184 usb_free_urb(usbhid->urbctrl);
e3e14de5
JS
1185 usbhid->urbin = NULL;
1186 usbhid->urbout = NULL;
1187 usbhid->urbctrl = NULL;
22f675f3 1188 hid_free_buffers(dev, hid);
c500c971 1189 return ret;
1da177e4
LT
1190}
1191
c500c971 1192static void usbhid_stop(struct hid_device *hid)
1da177e4 1193{
c500c971 1194 struct usbhid_device *usbhid = hid->driver_data;
1da177e4 1195
c500c971 1196 if (WARN_ON(!usbhid))
1da177e4
LT
1197 return;
1198
3d5afd32 1199 clear_bit(HID_STARTED, &usbhid->iofl);
4371ea82 1200 spin_lock_irq(&usbhid->lock); /* Sync with error and led handlers */
69626f23 1201 set_bit(HID_DISCONNECTED, &usbhid->iofl);
0361a28d 1202 spin_unlock_irq(&usbhid->lock);
4916b3a5
JK
1203 usb_kill_urb(usbhid->urbin);
1204 usb_kill_urb(usbhid->urbout);
1205 usb_kill_urb(usbhid->urbctrl);
1da177e4 1206
0361a28d 1207 hid_cancel_delayed_stuff(usbhid);
aef4e266 1208
c500c971
JS
1209 hid->claimed = 0;
1210
4916b3a5
JK
1211 usb_free_urb(usbhid->urbin);
1212 usb_free_urb(usbhid->urbctrl);
1213 usb_free_urb(usbhid->urbout);
e3e14de5
JS
1214 usbhid->urbin = NULL; /* don't mess up next start */
1215 usbhid->urbctrl = NULL;
1216 usbhid->urbout = NULL;
1da177e4 1217
be820975 1218 hid_free_buffers(hid_to_usb_dev(hid), hid);
1da177e4
LT
1219}
1220
0361a28d
ON
1221static int usbhid_power(struct hid_device *hid, int lvl)
1222{
1223 int r = 0;
1224
1225 switch (lvl) {
1226 case PM_HINT_FULLON:
1227 r = usbhid_get_power(hid);
1228 break;
1229 case PM_HINT_NORMAL:
1230 usbhid_put_power(hid);
1231 break;
1232 }
1233 return r;
1234}
1235
c500c971
JS
1236static struct hid_ll_driver usb_hid_driver = {
1237 .parse = usbhid_parse,
1238 .start = usbhid_start,
1239 .stop = usbhid_stop,
1240 .open = usbhid_open,
1241 .close = usbhid_close,
0361a28d 1242 .power = usbhid_power,
c500c971
JS
1243 .hidinput_input_event = usb_hidinput_input_event,
1244};
1245
c4c259bc 1246static int usbhid_probe(struct usb_interface *intf, const struct usb_device_id *id)
1da177e4 1247{
131d3a7a 1248 struct usb_host_interface *interface = intf->cur_altsetting;
c500c971 1249 struct usb_device *dev = interface_to_usbdev(intf);
3d5afd32 1250 struct usbhid_device *usbhid;
1da177e4 1251 struct hid_device *hid;
131d3a7a 1252 unsigned int n, has_in = 0;
c500c971
JS
1253 size_t len;
1254 int ret;
1da177e4 1255
58037eb9 1256 dbg_hid("HID probe called for ifnum %d\n",
1da177e4
LT
1257 intf->altsetting->desc.bInterfaceNumber);
1258
131d3a7a
JS
1259 for (n = 0; n < interface->desc.bNumEndpoints; n++)
1260 if (usb_endpoint_is_int_in(&interface->endpoint[n].desc))
1261 has_in++;
1262 if (!has_in) {
4291ee30 1263 hid_err(intf, "couldn't find an input interrupt endpoint\n");
131d3a7a
JS
1264 return -ENODEV;
1265 }
1266
c500c971
JS
1267 hid = hid_allocate_device();
1268 if (IS_ERR(hid))
1269 return PTR_ERR(hid);
1da177e4
LT
1270
1271 usb_set_intfdata(intf, hid);
c500c971 1272 hid->ll_driver = &usb_hid_driver;
b4dbde9d 1273 hid->hid_get_raw_report = usbhid_get_raw_report;
c500c971 1274 hid->hid_output_raw_report = usbhid_output_raw_report;
76483cf4 1275 hid->ff_init = hid_pidff_init;
c500c971 1276#ifdef CONFIG_USB_HIDDEV
93c10132 1277 hid->hiddev_connect = hiddev_connect;
c4c259bc 1278 hid->hiddev_disconnect = hiddev_disconnect;
c500c971
JS
1279 hid->hiddev_hid_event = hiddev_hid_event;
1280 hid->hiddev_report_event = hiddev_report_event;
1281#endif
1282 hid->dev.parent = &intf->dev;
1283 hid->bus = BUS_USB;
1284 hid->vendor = le16_to_cpu(dev->descriptor.idVendor);
1285 hid->product = le16_to_cpu(dev->descriptor.idProduct);
1286 hid->name[0] = 0;
b5e5a37e 1287 hid->quirks = usbhid_lookup_quirk(hid->vendor, hid->product);
a73a6370
JS
1288 if (intf->cur_altsetting->desc.bInterfaceProtocol ==
1289 USB_INTERFACE_PROTOCOL_MOUSE)
1290 hid->type = HID_TYPE_USBMOUSE;
6dc1418e
TS
1291 else if (intf->cur_altsetting->desc.bInterfaceProtocol == 0)
1292 hid->type = HID_TYPE_USBNONE;
1da177e4 1293
c500c971
JS
1294 if (dev->manufacturer)
1295 strlcpy(hid->name, dev->manufacturer, sizeof(hid->name));
1da177e4 1296
c500c971
JS
1297 if (dev->product) {
1298 if (dev->manufacturer)
1299 strlcat(hid->name, " ", sizeof(hid->name));
1300 strlcat(hid->name, dev->product, sizeof(hid->name));
1da177e4
LT
1301 }
1302
c500c971
JS
1303 if (!strlen(hid->name))
1304 snprintf(hid->name, sizeof(hid->name), "HID %04x:%04x",
1305 le16_to_cpu(dev->descriptor.idVendor),
1306 le16_to_cpu(dev->descriptor.idProduct));
1da177e4 1307
c500c971
JS
1308 usb_make_path(dev, hid->phys, sizeof(hid->phys));
1309 strlcat(hid->phys, "/input", sizeof(hid->phys));
1310 len = strlen(hid->phys);
1311 if (len < sizeof(hid->phys) - 1)
1312 snprintf(hid->phys + len, sizeof(hid->phys) - len,
1313 "%d", intf->altsetting[0].desc.bInterfaceNumber);
1314
1315 if (usb_string(dev, dev->descriptor.iSerialNumber, hid->uniq, 64) <= 0)
1316 hid->uniq[0] = 0;
1da177e4 1317
3d5afd32
JS
1318 usbhid = kzalloc(sizeof(*usbhid), GFP_KERNEL);
1319 if (usbhid == NULL) {
1320 ret = -ENOMEM;
1321 goto err;
1322 }
1323
1324 hid->driver_data = usbhid;
1325 usbhid->hid = hid;
57ab12e4
JK
1326 usbhid->intf = intf;
1327 usbhid->ifnum = interface->desc.bInterfaceNumber;
3d5afd32 1328
fde4e2f7
AS
1329 init_waitqueue_head(&usbhid->wait);
1330 INIT_WORK(&usbhid->reset_work, hid_reset);
fde4e2f7
AS
1331 setup_timer(&usbhid->io_retry, hid_retry_timeout, (unsigned long) hid);
1332 spin_lock_init(&usbhid->lock);
1333
4371ea82
DK
1334 INIT_WORK(&usbhid->led_work, hid_led);
1335
85cdaf52
JS
1336 ret = hid_add_device(hid);
1337 if (ret) {
d458a9df 1338 if (ret != -ENODEV)
4291ee30 1339 hid_err(intf, "can't add hid device: %d\n", ret);
3d5afd32 1340 goto err_free;
85cdaf52 1341 }
c500c971
JS
1342
1343 return 0;
3d5afd32
JS
1344err_free:
1345 kfree(usbhid);
c500c971
JS
1346err:
1347 hid_destroy_device(hid);
85cdaf52 1348 return ret;
1da177e4
LT
1349}
1350
c4c259bc 1351static void usbhid_disconnect(struct usb_interface *intf)
c500c971
JS
1352{
1353 struct hid_device *hid = usb_get_intfdata(intf);
3d5afd32 1354 struct usbhid_device *usbhid;
c500c971
JS
1355
1356 if (WARN_ON(!hid))
1357 return;
1358
3d5afd32 1359 usbhid = hid->driver_data;
c500c971 1360 hid_destroy_device(hid);
3d5afd32 1361 kfree(usbhid);
c500c971
JS
1362}
1363
0361a28d
ON
1364static void hid_cancel_delayed_stuff(struct usbhid_device *usbhid)
1365{
1366 del_timer_sync(&usbhid->io_retry);
0361a28d 1367 cancel_work_sync(&usbhid->reset_work);
4371ea82 1368 cancel_work_sync(&usbhid->led_work);
0361a28d
ON
1369}
1370
1371static void hid_cease_io(struct usbhid_device *usbhid)
1372{
fad9fbe8 1373 del_timer_sync(&usbhid->io_retry);
0361a28d
ON
1374 usb_kill_urb(usbhid->urbin);
1375 usb_kill_urb(usbhid->urbctrl);
1376 usb_kill_urb(usbhid->urbout);
0361a28d
ON
1377}
1378
ae2f0074
JK
1379/* Treat USB reset pretty much the same as suspend/resume */
1380static int hid_pre_reset(struct usb_interface *intf)
1381{
1382 struct hid_device *hid = usb_get_intfdata(intf);
1383 struct usbhid_device *usbhid = hid->driver_data;
1384
1385 spin_lock_irq(&usbhid->lock);
1386 set_bit(HID_RESET_PENDING, &usbhid->iofl);
1387 spin_unlock_irq(&usbhid->lock);
1388 hid_cease_io(usbhid);
1389
1390 return 0;
1391}
1392
1393/* Same routine used for post_reset and reset_resume */
1394static int hid_post_reset(struct usb_interface *intf)
1395{
1396 struct usb_device *dev = interface_to_usbdev (intf);
1397 struct hid_device *hid = usb_get_intfdata(intf);
1398 struct usbhid_device *usbhid = hid->driver_data;
1399 int status;
70fa9f2e 1400
ae2f0074
JK
1401 spin_lock_irq(&usbhid->lock);
1402 clear_bit(HID_RESET_PENDING, &usbhid->iofl);
1403 spin_unlock_irq(&usbhid->lock);
1404 hid_set_idle(dev, intf->cur_altsetting->desc.bInterfaceNumber, 0, 0);
ae2f0074
JK
1405 status = hid_start_in(hid);
1406 if (status < 0)
1407 hid_io_error(hid);
1408 usbhid_restart_queues(usbhid);
1409
1410 return 0;
1411}
1412
1413int usbhid_get_power(struct hid_device *hid)
1414{
1415 struct usbhid_device *usbhid = hid->driver_data;
70fa9f2e 1416
ae2f0074
JK
1417 return usb_autopm_get_interface(usbhid->intf);
1418}
1419
1420void usbhid_put_power(struct hid_device *hid)
1421{
1422 struct usbhid_device *usbhid = hid->driver_data;
70fa9f2e 1423
ae2f0074
JK
1424 usb_autopm_put_interface(usbhid->intf);
1425}
1426
1427
0f6f1407 1428#ifdef CONFIG_PM
27d72e85 1429static int hid_suspend(struct usb_interface *intf, pm_message_t message)
1da177e4 1430{
0361a28d 1431 struct hid_device *hid = usb_get_intfdata(intf);
4916b3a5 1432 struct usbhid_device *usbhid = hid->driver_data;
0361a28d 1433 int status;
1da177e4 1434
5b1b0b81 1435 if (PMSG_IS_AUTO(message)) {
0361a28d
ON
1436 spin_lock_irq(&usbhid->lock); /* Sync with error handler */
1437 if (!test_bit(HID_RESET_PENDING, &usbhid->iofl)
1438 && !test_bit(HID_CLEAR_HALT, &usbhid->iofl)
1439 && !test_bit(HID_OUT_RUNNING, &usbhid->iofl)
1440 && !test_bit(HID_CTRL_RUNNING, &usbhid->iofl)
1441 && !test_bit(HID_KEYS_PRESSED, &usbhid->iofl)
1442 && (!usbhid->ledcount || ignoreled))
1443 {
1444 set_bit(HID_REPORTED_IDLE, &usbhid->iofl);
1445 spin_unlock_irq(&usbhid->lock);
6a740aa4
BP
1446 if (hid->driver && hid->driver->suspend) {
1447 status = hid->driver->suspend(hid, message);
1448 if (status < 0)
1449 return status;
1450 }
0361a28d
ON
1451 } else {
1452 usbhid_mark_busy(usbhid);
1453 spin_unlock_irq(&usbhid->lock);
1454 return -EBUSY;
1455 }
3d5afd32 1456
0361a28d 1457 } else {
6a740aa4
BP
1458 if (hid->driver && hid->driver->suspend) {
1459 status = hid->driver->suspend(hid, message);
1460 if (status < 0)
1461 return status;
1462 }
0361a28d
ON
1463 spin_lock_irq(&usbhid->lock);
1464 set_bit(HID_REPORTED_IDLE, &usbhid->iofl);
1465 spin_unlock_irq(&usbhid->lock);
1466 if (usbhid_wait_io(hid) < 0)
1467 return -EIO;
1468 }
1469
0361a28d
ON
1470 hid_cancel_delayed_stuff(usbhid);
1471 hid_cease_io(usbhid);
1472
5b1b0b81 1473 if (PMSG_IS_AUTO(message) && test_bit(HID_KEYS_PRESSED, &usbhid->iofl)) {
0361a28d
ON
1474 /* lost race against keypresses */
1475 status = hid_start_in(hid);
1476 if (status < 0)
1477 hid_io_error(hid);
1478 usbhid_mark_busy(usbhid);
1479 return -EBUSY;
1480 }
1da177e4
LT
1481 dev_dbg(&intf->dev, "suspend\n");
1482 return 0;
1483}
1484
1485static int hid_resume(struct usb_interface *intf)
1486{
1487 struct hid_device *hid = usb_get_intfdata (intf);
4916b3a5 1488 struct usbhid_device *usbhid = hid->driver_data;
1da177e4
LT
1489 int status;
1490
fde5be35 1491 if (!test_bit(HID_STARTED, &usbhid->iofl))
3d5afd32 1492 return 0;
3d5afd32 1493
0361a28d
ON
1494 clear_bit(HID_REPORTED_IDLE, &usbhid->iofl);
1495 usbhid_mark_busy(usbhid);
1496
1497 if (test_bit(HID_CLEAR_HALT, &usbhid->iofl) ||
1498 test_bit(HID_RESET_PENDING, &usbhid->iofl))
1499 schedule_work(&usbhid->reset_work);
4916b3a5 1500 usbhid->retry_delay = 0;
aef4e266 1501 status = hid_start_in(hid);
0361a28d
ON
1502 if (status < 0)
1503 hid_io_error(hid);
1504 usbhid_restart_queues(usbhid);
1da177e4 1505
6a740aa4
BP
1506 if (status >= 0 && hid->driver && hid->driver->resume) {
1507 int ret = hid->driver->resume(hid);
1508 if (ret < 0)
1509 status = ret;
1510 }
1da177e4 1511 dev_dbg(&intf->dev, "resume status %d\n", status);
f07600cf 1512 return 0;
df9a1f48
AS
1513}
1514
378a0ede 1515static int hid_reset_resume(struct usb_interface *intf)
df9a1f48 1516{
378a0ede
ON
1517 struct hid_device *hid = usb_get_intfdata(intf);
1518 struct usbhid_device *usbhid = hid->driver_data;
6a740aa4 1519 int status;
df9a1f48 1520
378a0ede 1521 clear_bit(HID_REPORTED_IDLE, &usbhid->iofl);
6a740aa4
BP
1522 status = hid_post_reset(intf);
1523 if (status >= 0 && hid->driver && hid->driver->reset_resume) {
1524 int ret = hid->driver->reset_resume(hid);
1525 if (ret < 0)
1526 status = ret;
1527 }
1528 return status;
df9a1f48
AS
1529}
1530
ae2f0074 1531#endif /* CONFIG_PM */
df9a1f48 1532
d67dec5b 1533static const struct usb_device_id hid_usb_ids[] = {
1da177e4
LT
1534 { .match_flags = USB_DEVICE_ID_MATCH_INT_CLASS,
1535 .bInterfaceClass = USB_INTERFACE_CLASS_HID },
1536 { } /* Terminating entry */
1537};
1538
1539MODULE_DEVICE_TABLE (usb, hid_usb_ids);
1540
1541static struct usb_driver hid_driver = {
1da177e4 1542 .name = "usbhid",
c4c259bc
JK
1543 .probe = usbhid_probe,
1544 .disconnect = usbhid_disconnect,
0f6f1407 1545#ifdef CONFIG_PM
1da177e4
LT
1546 .suspend = hid_suspend,
1547 .resume = hid_resume,
378a0ede 1548 .reset_resume = hid_reset_resume,
0f6f1407 1549#endif
df9a1f48
AS
1550 .pre_reset = hid_pre_reset,
1551 .post_reset = hid_post_reset,
1da177e4 1552 .id_table = hid_usb_ids,
933e3187 1553 .supports_autosuspend = 1,
1da177e4
LT
1554};
1555
85cdaf52
JS
1556static const struct hid_device_id hid_usb_table[] = {
1557 { HID_USB_DEVICE(HID_ANY_ID, HID_ANY_ID) },
1558 { }
1559};
1560
8fe294ca
GC
1561struct usb_interface *usbhid_find_interface(int minor)
1562{
1563 return usb_find_interface(&hid_driver, minor);
1564}
1565
85cdaf52
JS
1566static struct hid_driver hid_usb_driver = {
1567 .name = "generic-usb",
1568 .id_table = hid_usb_table,
1569};
1570
1da177e4
LT
1571static int __init hid_init(void)
1572{
0361a28d
ON
1573 int retval = -ENOMEM;
1574
85cdaf52
JS
1575 retval = hid_register_driver(&hid_usb_driver);
1576 if (retval)
1577 goto hid_register_fail;
876b9276
PW
1578 retval = usbhid_quirks_init(quirks_param);
1579 if (retval)
1580 goto usbhid_quirks_init_fail;
1da177e4
LT
1581 retval = usb_register(&hid_driver);
1582 if (retval)
1583 goto usb_register_fail;
ccabcd2d 1584 printk(KERN_INFO KBUILD_MODNAME ": " DRIVER_DESC "\n");
1da177e4
LT
1585
1586 return 0;
1587usb_register_fail:
876b9276
PW
1588 usbhid_quirks_exit();
1589usbhid_quirks_init_fail:
85cdaf52
JS
1590 hid_unregister_driver(&hid_usb_driver);
1591hid_register_fail:
1da177e4
LT
1592 return retval;
1593}
1594
1595static void __exit hid_exit(void)
1596{
1597 usb_deregister(&hid_driver);
876b9276 1598 usbhid_quirks_exit();
85cdaf52 1599 hid_unregister_driver(&hid_usb_driver);
1da177e4
LT
1600}
1601
1602module_init(hid_init);
1603module_exit(hid_exit);
1604
88adb72b
JK
1605MODULE_AUTHOR("Andreas Gal");
1606MODULE_AUTHOR("Vojtech Pavlik");
1607MODULE_AUTHOR("Jiri Kosina");
1da177e4
LT
1608MODULE_DESCRIPTION(DRIVER_DESC);
1609MODULE_LICENSE(DRIVER_LICENSE);