ipv6: reallocate addrconf router for ipv6 address when lo device up
[linux/fpc-iii.git] / drivers / hid / usbhid / hid-core.c
blob4bbb883a3dd2f8aa8442c29b9fb09df6d0376b4b
1 /*
2 * USB HID support for Linux
4 * Copyright (c) 1999 Andreas Gal
5 * Copyright (c) 2000-2005 Vojtech Pavlik <vojtech@suse.cz>
6 * Copyright (c) 2005 Michael Haboustak <mike-@cinci.rr.com> for Concept2, Inc
7 * Copyright (c) 2007-2008 Oliver Neukum
8 * Copyright (c) 2006-2010 Jiri Kosina
9 */
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.
18 #include <linux/module.h>
19 #include <linux/slab.h>
20 #include <linux/init.h>
21 #include <linux/kernel.h>
22 #include <linux/list.h>
23 #include <linux/mm.h>
24 #include <linux/mutex.h>
25 #include <linux/spinlock.h>
26 #include <asm/unaligned.h>
27 #include <asm/byteorder.h>
28 #include <linux/input.h>
29 #include <linux/wait.h>
30 #include <linux/workqueue.h>
32 #include <linux/usb.h>
34 #include <linux/hid.h>
35 #include <linux/hiddev.h>
36 #include <linux/hid-debug.h>
37 #include <linux/hidraw.h>
38 #include "usbhid.h"
41 * Version Information
44 #define DRIVER_DESC "USB HID core driver"
45 #define DRIVER_LICENSE "GPL"
48 * Module parameters.
51 static unsigned int hid_mousepoll_interval;
52 module_param_named(mousepoll, hid_mousepoll_interval, uint, 0644);
53 MODULE_PARM_DESC(mousepoll, "Polling interval of mice");
55 static unsigned int ignoreled;
56 module_param_named(ignoreled, ignoreled, uint, 0644);
57 MODULE_PARM_DESC(ignoreled, "Autosuspend with active leds");
59 /* Quirks specified at module load time */
60 static char *quirks_param[MAX_USBHID_BOOT_QUIRKS] = { [ 0 ... (MAX_USBHID_BOOT_QUIRKS - 1) ] = NULL };
61 module_param_array_named(quirks, quirks_param, charp, NULL, 0444);
62 MODULE_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");
67 * Input submission and I/O error handler.
69 static DEFINE_MUTEX(hid_open_mut);
71 static void hid_io_error(struct hid_device *hid);
72 static int hid_submit_out(struct hid_device *hid);
73 static int hid_submit_ctrl(struct hid_device *hid);
74 static void hid_cancel_delayed_stuff(struct usbhid_device *usbhid);
76 /* Start up the input URB */
77 static int hid_start_in(struct hid_device *hid)
79 unsigned long flags;
80 int rc = 0;
81 struct usbhid_device *usbhid = hid->driver_data;
83 spin_lock_irqsave(&usbhid->lock, flags);
84 if (hid->open > 0 &&
85 !test_bit(HID_DISCONNECTED, &usbhid->iofl) &&
86 !test_bit(HID_REPORTED_IDLE, &usbhid->iofl) &&
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);
92 spin_unlock_irqrestore(&usbhid->lock, flags);
93 return rc;
96 /* I/O retry timer routine */
97 static void hid_retry_timeout(unsigned long _hid)
99 struct hid_device *hid = (struct hid_device *) _hid;
100 struct usbhid_device *usbhid = hid->driver_data;
102 dev_dbg(&usbhid->intf->dev, "retrying intr urb\n");
103 if (hid_start_in(hid))
104 hid_io_error(hid);
107 /* Workqueue routine to reset the device or clear a halt */
108 static void hid_reset(struct work_struct *work)
110 struct usbhid_device *usbhid =
111 container_of(work, struct usbhid_device, reset_work);
112 struct hid_device *hid = usbhid->hid;
113 int rc = 0;
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);
122 else if (test_bit(HID_RESET_PENDING, &usbhid->iofl)) {
123 dev_dbg(&usbhid->intf->dev, "resetting device\n");
124 rc = usb_lock_device_for_reset(hid_to_usb_dev(hid), usbhid->intf);
125 if (rc == 0) {
126 rc = usb_reset_device(hid_to_usb_dev(hid));
127 usb_unlock_device(hid_to_usb_dev(hid));
129 clear_bit(HID_RESET_PENDING, &usbhid->iofl);
132 switch (rc) {
133 case 0:
134 if (!test_bit(HID_IN_RUNNING, &usbhid->iofl))
135 hid_io_error(hid);
136 break;
137 default:
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);
142 /* FALLTHROUGH */
143 case -EHOSTUNREACH:
144 case -ENODEV:
145 case -EINTR:
146 break;
150 /* Main I/O error handler */
151 static void hid_io_error(struct hid_device *hid)
153 unsigned long flags;
154 struct usbhid_device *usbhid = hid->driver_data;
156 spin_lock_irqsave(&usbhid->lock, flags);
158 /* Stop when disconnected */
159 if (test_bit(HID_DISCONNECTED, &usbhid->iofl))
160 goto done;
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;
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;
174 if (time_after(jiffies, usbhid->stop_retry)) {
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;
183 mod_timer(&usbhid->io_retry,
184 jiffies + msecs_to_jiffies(usbhid->retry_delay));
185 done:
186 spin_unlock_irqrestore(&usbhid->lock, flags);
189 static void usbhid_mark_busy(struct usbhid_device *usbhid)
191 struct usb_interface *intf = usbhid->intf;
193 usb_mark_last_busy(interface_to_usbdev(intf));
196 static int usbhid_restart_out_queue(struct usbhid_device *usbhid)
198 struct hid_device *hid = usb_get_intfdata(usbhid->intf);
199 int kicked;
200 int r;
202 if (!hid)
203 return 0;
205 if ((kicked = (usbhid->outhead != usbhid->outtail))) {
206 dbg("Kicking head %d tail %d", usbhid->outhead, usbhid->outtail);
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);
213 if (hid_submit_out(hid)) {
214 clear_bit(HID_OUT_RUNNING, &usbhid->iofl);
215 usb_autopm_put_interface_async(usbhid->intf);
217 wake_up(&usbhid->wait);
219 return kicked;
222 static int usbhid_restart_ctrl_queue(struct usbhid_device *usbhid)
224 struct hid_device *hid = usb_get_intfdata(usbhid->intf);
225 int kicked;
226 int r;
228 WARN_ON(hid == NULL);
229 if (!hid)
230 return 0;
232 if ((kicked = (usbhid->ctrlhead != usbhid->ctrltail))) {
233 dbg("Kicking head %d tail %d", usbhid->ctrlhead, usbhid->ctrltail);
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);
240 if (hid_submit_ctrl(hid)) {
241 clear_bit(HID_CTRL_RUNNING, &usbhid->iofl);
242 usb_autopm_put_interface_async(usbhid->intf);
244 wake_up(&usbhid->wait);
246 return kicked;
250 * Input interrupt completion handler.
253 static void hid_irq_in(struct urb *urb)
255 struct hid_device *hid = urb->context;
256 struct usbhid_device *usbhid = hid->driver_data;
257 int status;
259 switch (urb->status) {
260 case 0: /* success */
261 usbhid_mark_busy(usbhid);
262 usbhid->retry_delay = 0;
263 hid_input_report(urb->context, HID_INPUT_REPORT,
264 urb->transfer_buffer,
265 urb->actual_length, 1);
267 * autosuspend refused while keys are pressed
268 * because most keyboards don't wake up when
269 * a key is released
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);
275 break;
276 case -EPIPE: /* stall */
277 usbhid_mark_busy(usbhid);
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... */
291 usbhid_mark_busy(usbhid);
292 clear_bit(HID_IN_RUNNING, &usbhid->iofl);
293 hid_io_error(hid);
294 return;
295 default: /* error */
296 hid_warn(urb->dev, "input irq status %d received\n",
297 urb->status);
300 status = usb_submit_urb(urb, GFP_ATOMIC);
301 if (status) {
302 clear_bit(HID_IN_RUNNING, &usbhid->iofl);
303 if (status != -EPERM) {
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);
308 hid_io_error(hid);
313 static int hid_submit_out(struct hid_device *hid)
315 struct hid_report *report;
316 char *raw_report;
317 struct usbhid_device *usbhid = hid->driver_data;
318 int r;
320 report = usbhid->out[usbhid->outtail].report;
321 raw_report = usbhid->out[usbhid->outtail].raw_report;
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);
330 dbg_hid("submitting out urb\n");
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;
337 usbhid->last_out = jiffies;
338 return 0;
341 static int hid_submit_ctrl(struct hid_device *hid)
343 struct hid_report *report;
344 unsigned char dir;
345 char *raw_report;
346 int len, r;
347 struct usbhid_device *usbhid = hid->driver_data;
349 report = usbhid->ctrl[usbhid->ctrltail].report;
350 raw_report = usbhid->ctrl[usbhid->ctrltail].raw_report;
351 dir = usbhid->ctrl[usbhid->ctrltail].dir;
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;
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;
374 usbhid->urbctrl->dev = hid_to_usb_dev(hid);
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);
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);
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;
394 usbhid->last_ctrl = jiffies;
395 return 0;
399 * Output interrupt completion handler.
402 static int irq_out_pump_restart(struct hid_device *hid)
404 struct usbhid_device *usbhid = hid->driver_data;
406 if (usbhid->outhead != usbhid->outtail)
407 return hid_submit_out(hid);
408 else
409 return -1;
412 static void hid_irq_out(struct urb *urb)
414 struct hid_device *hid = urb->context;
415 struct usbhid_device *usbhid = hid->driver_data;
416 unsigned long flags;
417 int unplug = 0;
419 switch (urb->status) {
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 */
430 hid_warn(urb->dev, "output irq status %d received\n",
431 urb->status);
434 spin_lock_irqsave(&usbhid->lock, flags);
436 if (unplug)
437 usbhid->outtail = usbhid->outhead;
438 else
439 usbhid->outtail = (usbhid->outtail + 1) & (HID_OUTPUT_FIFO_SIZE - 1);
441 if (!irq_out_pump_restart(hid)) {
442 /* Successfully submitted next urb in queue */
443 spin_unlock_irqrestore(&usbhid->lock, flags);
444 return;
447 clear_bit(HID_OUT_RUNNING, &usbhid->iofl);
448 spin_unlock_irqrestore(&usbhid->lock, flags);
449 usb_autopm_put_interface_async(usbhid->intf);
450 wake_up(&usbhid->wait);
454 * Control pipe completion handler.
456 static int ctrl_pump_restart(struct hid_device *hid)
458 struct usbhid_device *usbhid = hid->driver_data;
460 if (usbhid->ctrlhead != usbhid->ctrltail)
461 return hid_submit_ctrl(hid);
462 else
463 return -1;
466 static void hid_ctrl(struct urb *urb)
468 struct hid_device *hid = urb->context;
469 struct usbhid_device *usbhid = hid->driver_data;
470 int unplug = 0, status = urb->status;
472 spin_lock(&usbhid->lock);
474 switch (status) {
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 */
490 hid_warn(urb->dev, "ctrl urb status %d received\n", status);
493 if (unplug)
494 usbhid->ctrltail = usbhid->ctrlhead;
495 else
496 usbhid->ctrltail = (usbhid->ctrltail + 1) & (HID_CONTROL_FIFO_SIZE - 1);
498 if (!ctrl_pump_restart(hid)) {
499 /* Successfully submitted next urb in queue */
500 spin_unlock(&usbhid->lock);
501 return;
504 clear_bit(HID_CTRL_RUNNING, &usbhid->iofl);
505 spin_unlock(&usbhid->lock);
506 usb_autopm_put_interface_async(usbhid->intf);
507 wake_up(&usbhid->wait);
510 static void __usbhid_submit_report(struct hid_device *hid, struct hid_report *report,
511 unsigned char dir)
513 int head;
514 struct usbhid_device *usbhid = hid->driver_data;
515 int len = ((report->size - 1) >> 3) + 1 + (report->id > 0);
517 if ((hid->quirks & HID_QUIRK_NOGET) && dir == USB_DIR_IN)
518 return;
520 if (usbhid->urbout && dir == USB_DIR_OUT && report->type == HID_OUTPUT_REPORT) {
521 if ((head = (usbhid->outhead + 1) & (HID_OUTPUT_FIFO_SIZE - 1)) == usbhid->outtail) {
522 hid_warn(hid, "output queue full\n");
523 return;
526 usbhid->out[usbhid->outhead].raw_report = kmalloc(len, GFP_ATOMIC);
527 if (!usbhid->out[usbhid->outhead].raw_report) {
528 hid_warn(hid, "output queueing failed\n");
529 return;
531 hid_output_report(report, usbhid->out[usbhid->outhead].raw_report);
532 usbhid->out[usbhid->outhead].report = report;
533 usbhid->outhead = head;
535 /* Try to awake from autosuspend... */
536 if (usb_autopm_get_interface_async(usbhid->intf) < 0)
537 return;
540 * But if still suspended, leave urb enqueued, don't submit.
541 * Submission will occur if/when resume() drains the queue.
543 if (test_bit(HID_REPORTED_IDLE, &usbhid->iofl))
544 return;
546 if (!test_and_set_bit(HID_OUT_RUNNING, &usbhid->iofl)) {
547 if (hid_submit_out(hid)) {
548 clear_bit(HID_OUT_RUNNING, &usbhid->iofl);
549 usb_autopm_put_interface_async(usbhid->intf);
551 wake_up(&usbhid->wait);
552 } else {
554 * the queue is known to run
555 * but an earlier request may be stuck
556 * we may need to time out
557 * no race because the URB is blocked under
558 * spinlock
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);
564 usb_unlink_urb(usbhid->urbout);
565 spin_lock(&usbhid->lock);
566 usb_unblock_urb(usbhid->urbout);
568 * if the unlinking has already completed
569 * the pump will have been stopped
570 * it must be restarted now
572 if (!test_bit(HID_OUT_RUNNING, &usbhid->iofl))
573 if (!irq_out_pump_restart(hid))
574 set_bit(HID_OUT_RUNNING, &usbhid->iofl);
579 return;
582 if ((head = (usbhid->ctrlhead + 1) & (HID_CONTROL_FIFO_SIZE - 1)) == usbhid->ctrltail) {
583 hid_warn(hid, "control queue full\n");
584 return;
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) {
590 hid_warn(hid, "control queueing failed\n");
591 return;
593 hid_output_report(report, usbhid->ctrl[usbhid->ctrlhead].raw_report);
595 usbhid->ctrl[usbhid->ctrlhead].report = report;
596 usbhid->ctrl[usbhid->ctrlhead].dir = dir;
597 usbhid->ctrlhead = head;
599 /* Try to awake from autosuspend... */
600 if (usb_autopm_get_interface_async(usbhid->intf) < 0)
601 return;
604 * If already suspended, leave urb enqueued, but don't submit.
605 * Submission will occur if/when resume() drains the queue.
607 if (test_bit(HID_REPORTED_IDLE, &usbhid->iofl))
608 return;
610 if (!test_and_set_bit(HID_CTRL_RUNNING, &usbhid->iofl)) {
611 if (hid_submit_ctrl(hid)) {
612 clear_bit(HID_CTRL_RUNNING, &usbhid->iofl);
613 usb_autopm_put_interface_async(usbhid->intf);
615 wake_up(&usbhid->wait);
616 } else {
618 * the queue is known to run
619 * but an earlier request may be stuck
620 * we may need to time out
621 * no race because the URB is blocked under
622 * spinlock
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);
628 usb_unlink_urb(usbhid->urbctrl);
629 spin_lock(&usbhid->lock);
630 usb_unblock_urb(usbhid->urbctrl);
632 * if the unlinking has already completed
633 * the pump will have been stopped
634 * it must be restarted now
636 if (!test_bit(HID_CTRL_RUNNING, &usbhid->iofl))
637 if (!ctrl_pump_restart(hid))
638 set_bit(HID_CTRL_RUNNING, &usbhid->iofl);
643 void usbhid_submit_report(struct hid_device *hid, struct hid_report *report, unsigned char dir)
645 struct usbhid_device *usbhid = hid->driver_data;
646 unsigned long flags;
648 spin_lock_irqsave(&usbhid->lock, flags);
649 __usbhid_submit_report(hid, report, dir);
650 spin_unlock_irqrestore(&usbhid->lock, flags);
652 EXPORT_SYMBOL_GPL(usbhid_submit_report);
654 /* Workqueue routine to send requests to change LEDs */
655 static void hid_led(struct work_struct *work)
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;
663 field = hidinput_get_led_field(hid);
664 if (!field) {
665 hid_warn(hid, "LED event field not found\n");
666 return;
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);
675 spin_unlock_irqrestore(&usbhid->lock, flags);
678 static int usb_hidinput_input_event(struct input_dev *dev, unsigned int type, unsigned int code, int value)
680 struct hid_device *hid = input_get_drvdata(dev);
681 struct usbhid_device *usbhid = hid->driver_data;
682 struct hid_field *field;
683 unsigned long flags;
684 int offset;
686 if (type == EV_FF)
687 return input_ff_event(dev, type, code, value);
689 if (type != EV_LED)
690 return -1;
692 if ((offset = hidinput_find_field(hid, type, code, &field)) == -1) {
693 hid_warn(dev, "event field not found\n");
694 return -1;
697 spin_lock_irqsave(&usbhid->lock, flags);
698 hid_set_field(field, offset, value);
699 spin_unlock_irqrestore(&usbhid->lock, flags);
702 * Defer performing requested LED action.
703 * This is more likely gather all LED changes into a single URB.
705 schedule_work(&usbhid->led_work);
707 return 0;
710 int usbhid_wait_io(struct hid_device *hid)
712 struct usbhid_device *usbhid = hid->driver_data;
714 if (!wait_event_timeout(usbhid->wait,
715 (!test_bit(HID_CTRL_RUNNING, &usbhid->iofl) &&
716 !test_bit(HID_OUT_RUNNING, &usbhid->iofl)),
717 10*HZ)) {
718 dbg_hid("timeout waiting for ctrl or out queue to clear\n");
719 return -1;
722 return 0;
724 EXPORT_SYMBOL_GPL(usbhid_wait_io);
726 static int hid_set_idle(struct usb_device *dev, int ifnum, int report, int idle)
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);
733 static int hid_get_class_descriptor(struct usb_device *dev, int ifnum,
734 unsigned char type, void *buf, int size)
736 int result, retries = 4;
738 memset(buf, 0, size);
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;
749 int usbhid_open(struct hid_device *hid)
751 struct usbhid_device *usbhid = hid->driver_data;
752 int res;
754 mutex_lock(&hid_open_mut);
755 if (!hid->open++) {
756 res = usb_autopm_get_interface(usbhid->intf);
757 /* the device must be awake to reliably request remote wakeup */
758 if (res < 0) {
759 hid->open--;
760 mutex_unlock(&hid_open_mut);
761 return -EIO;
763 usbhid->intf->needs_remote_wakeup = 1;
764 if (hid_start_in(hid))
765 hid_io_error(hid);
767 usb_autopm_put_interface(usbhid->intf);
769 mutex_unlock(&hid_open_mut);
770 return 0;
773 void usbhid_close(struct hid_device *hid)
775 struct usbhid_device *usbhid = hid->driver_data;
777 mutex_lock(&hid_open_mut);
779 /* protecting hid->open to make sure we don't restart
780 * data acquistion due to a resumption we no longer
781 * care about
783 spin_lock_irq(&usbhid->lock);
784 if (!--hid->open) {
785 spin_unlock_irq(&usbhid->lock);
786 hid_cancel_delayed_stuff(usbhid);
787 usb_kill_urb(usbhid->urbin);
788 usbhid->intf->needs_remote_wakeup = 0;
789 } else {
790 spin_unlock_irq(&usbhid->lock);
792 mutex_unlock(&hid_open_mut);
796 * Initialize all reports
799 void usbhid_init_reports(struct hid_device *hid)
801 struct hid_report *report;
802 struct usbhid_device *usbhid = hid->driver_data;
803 int err, ret;
805 list_for_each_entry(report, &hid->report_enum[HID_INPUT_REPORT].report_list, list)
806 usbhid_submit_report(hid, report, USB_DIR_IN);
808 list_for_each_entry(report, &hid->report_enum[HID_FEATURE_REPORT].report_list, list)
809 usbhid_submit_report(hid, report, USB_DIR_IN);
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);
822 if (err)
823 hid_warn(hid, "timeout initializing reports\n");
827 * Reset LEDs which BIOS might have left on. For now, just NumLock (0x01).
829 static int hid_find_field_early(struct hid_device *hid, unsigned int page,
830 unsigned int hid_code, struct hid_field **pfield)
832 struct hid_report *report;
833 struct hid_field *field;
834 struct hid_usage *usage;
835 int i, j;
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;
850 return -1;
853 void usbhid_set_leds(struct hid_device *hid)
855 struct hid_field *field;
856 int offset;
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);
863 EXPORT_SYMBOL_GPL(usbhid_set_leds);
866 * Traverse the supplied list of reports and find the longest
868 static void hid_find_max_report(struct hid_device *hid, unsigned int type,
869 unsigned int *max)
871 struct hid_report *report;
872 unsigned int size;
874 list_for_each_entry(report, &hid->report_enum[type].report_list, list) {
875 size = ((report->size - 1) >> 3) + 1 + hid->report_enum[type].numbered;
876 if (*max < size)
877 *max = size;
881 static int hid_alloc_buffers(struct usb_device *dev, struct hid_device *hid)
883 struct usbhid_device *usbhid = hid->driver_data;
885 usbhid->inbuf = usb_alloc_coherent(dev, usbhid->bufsize, GFP_KERNEL,
886 &usbhid->inbuf_dma);
887 usbhid->outbuf = usb_alloc_coherent(dev, usbhid->bufsize, GFP_KERNEL,
888 &usbhid->outbuf_dma);
889 usbhid->cr = kmalloc(sizeof(*usbhid->cr), GFP_KERNEL);
890 usbhid->ctrlbuf = usb_alloc_coherent(dev, usbhid->bufsize, GFP_KERNEL,
891 &usbhid->ctrlbuf_dma);
892 if (!usbhid->inbuf || !usbhid->outbuf || !usbhid->cr ||
893 !usbhid->ctrlbuf)
894 return -1;
896 return 0;
899 static int usbhid_get_raw_report(struct hid_device *hid,
900 unsigned char report_number, __u8 *buf, size_t count,
901 unsigned char report_type)
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;
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;
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);
926 /* count also the report id */
927 if (ret > 0 && skipped_report_id)
928 ret++;
930 return ret;
933 static int usbhid_output_raw_report(struct hid_device *hid, __u8 *buf, size_t count,
934 unsigned char report_type)
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;
942 if (usbhid->urbout && report_type != HID_FEATURE_REPORT) {
943 int actual_length;
944 int skipped_report_id = 0;
946 if (buf[0] == 0x0) {
947 /* Don't send the Report ID */
948 buf++;
949 count--;
950 skipped_report_id = 1;
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++;
962 } else {
963 int skipped_report_id = 0;
964 int report_id = buf[0];
965 if (buf[0] == 0x0) {
966 /* Don't send the Report ID */
967 buf++;
968 count--;
969 skipped_report_id = 1;
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,
974 ((report_type + 1) << 8) | report_id,
975 interface->desc.bInterfaceNumber, buf, count,
976 USB_CTRL_SET_TIMEOUT);
977 /* count also the report id, if this was a numbered report. */
978 if (ret > 0 && skipped_report_id)
979 ret++;
982 return ret;
985 static void usbhid_restart_queues(struct usbhid_device *usbhid)
987 if (usbhid->urbout)
988 usbhid_restart_out_queue(usbhid);
989 usbhid_restart_ctrl_queue(usbhid);
992 static void hid_free_buffers(struct usb_device *dev, struct hid_device *hid)
994 struct usbhid_device *usbhid = hid->driver_data;
996 usb_free_coherent(dev, usbhid->bufsize, usbhid->inbuf, usbhid->inbuf_dma);
997 usb_free_coherent(dev, usbhid->bufsize, usbhid->outbuf, usbhid->outbuf_dma);
998 kfree(usbhid->cr);
999 usb_free_coherent(dev, usbhid->bufsize, usbhid->ctrlbuf, usbhid->ctrlbuf_dma);
1002 static int usbhid_parse(struct hid_device *hid)
1004 struct usb_interface *intf = to_usb_interface(hid->dev.parent);
1005 struct usb_host_interface *interface = intf->cur_altsetting;
1006 struct usb_device *dev = interface_to_usbdev (intf);
1007 struct hid_descriptor *hdesc;
1008 u32 quirks = 0;
1009 unsigned int rsize = 0;
1010 char *rdesc;
1011 int ret, n;
1013 quirks = usbhid_lookup_quirk(le16_to_cpu(dev->descriptor.idVendor),
1014 le16_to_cpu(dev->descriptor.idProduct));
1016 if (quirks & HID_QUIRK_IGNORE)
1017 return -ENODEV;
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;
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))) {
1030 dbg_hid("class descriptor not present\n");
1031 return -ENODEV;
1034 hid->version = le16_to_cpu(hdesc->bcdHID);
1035 hid->country = hdesc->bCountryCode;
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);
1041 if (!rsize || rsize > HID_MAX_DESCRIPTOR_SIZE) {
1042 dbg_hid("weird size of report descriptor (%u)\n", rsize);
1043 return -EINVAL;
1046 if (!(rdesc = kmalloc(rsize, GFP_KERNEL))) {
1047 dbg_hid("couldn't allocate rdesc memory\n");
1048 return -ENOMEM;
1051 hid_set_idle(dev, interface->desc.bInterfaceNumber, 0, 0);
1053 ret = hid_get_class_descriptor(dev, interface->desc.bInterfaceNumber,
1054 HID_DT_REPORT, rdesc, rsize);
1055 if (ret < 0) {
1056 dbg_hid("reading report descriptor failed\n");
1057 kfree(rdesc);
1058 goto err;
1061 ret = hid_parse_report(hid, rdesc, rsize);
1062 kfree(rdesc);
1063 if (ret) {
1064 dbg_hid("parsing report descriptor failed\n");
1065 goto err;
1068 hid->quirks |= quirks;
1070 return 0;
1071 err:
1072 return ret;
1075 static int usbhid_start(struct hid_device *hid)
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);
1080 struct usbhid_device *usbhid = hid->driver_data;
1081 unsigned int n, insize = 0;
1082 int ret;
1084 clear_bit(HID_DISCONNECTED, &usbhid->iofl);
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);
1091 if (usbhid->bufsize > HID_MAX_BUFFER_SIZE)
1092 usbhid->bufsize = HID_MAX_BUFFER_SIZE;
1094 hid_find_max_report(hid, HID_INPUT_REPORT, &insize);
1096 if (insize > HID_MAX_BUFFER_SIZE)
1097 insize = HID_MAX_BUFFER_SIZE;
1099 if (hid_alloc_buffers(dev, hid)) {
1100 ret = -ENOMEM;
1101 goto fail;
1104 for (n = 0; n < interface->desc.bNumEndpoints; n++) {
1105 struct usb_endpoint_descriptor *endpoint;
1106 int pipe;
1107 int interval;
1109 endpoint = &interface->endpoint[n].desc;
1110 if (!usb_endpoint_xfer_int(endpoint))
1111 continue;
1113 interval = endpoint->bInterval;
1115 /* Some vendors give fullspeed interval on highspeed devides */
1116 if (hid->quirks & HID_QUIRK_FULLSPEED_INTERVAL &&
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);
1123 /* Change the polling interval of mice. */
1124 if (hid->collection->usage == HID_GD_MOUSE && hid_mousepoll_interval > 0)
1125 interval = hid_mousepoll_interval;
1127 ret = -ENOMEM;
1128 if (usb_endpoint_dir_in(endpoint)) {
1129 if (usbhid->urbin)
1130 continue;
1131 if (!(usbhid->urbin = usb_alloc_urb(0, GFP_KERNEL)))
1132 goto fail;
1133 pipe = usb_rcvintpipe(dev, endpoint->bEndpointAddress);
1134 usb_fill_int_urb(usbhid->urbin, dev, pipe, usbhid->inbuf, insize,
1135 hid_irq_in, hid, interval);
1136 usbhid->urbin->transfer_dma = usbhid->inbuf_dma;
1137 usbhid->urbin->transfer_flags |= URB_NO_TRANSFER_DMA_MAP;
1138 } else {
1139 if (usbhid->urbout)
1140 continue;
1141 if (!(usbhid->urbout = usb_alloc_urb(0, GFP_KERNEL)))
1142 goto fail;
1143 pipe = usb_sndintpipe(dev, endpoint->bEndpointAddress);
1144 usb_fill_int_urb(usbhid->urbout, dev, pipe, usbhid->outbuf, 0,
1145 hid_irq_out, hid, interval);
1146 usbhid->urbout->transfer_dma = usbhid->outbuf_dma;
1147 usbhid->urbout->transfer_flags |= URB_NO_TRANSFER_DMA_MAP;
1151 usbhid->urbctrl = usb_alloc_urb(0, GFP_KERNEL);
1152 if (!usbhid->urbctrl) {
1153 ret = -ENOMEM;
1154 goto fail;
1157 usb_fill_control_urb(usbhid->urbctrl, dev, 0, (void *) usbhid->cr,
1158 usbhid->ctrlbuf, 1, hid_ctrl, hid);
1159 usbhid->urbctrl->transfer_dma = usbhid->ctrlbuf_dma;
1160 usbhid->urbctrl->transfer_flags |= URB_NO_TRANSFER_DMA_MAP;
1162 if (!(hid->quirks & HID_QUIRK_NO_INIT_REPORTS))
1163 usbhid_init_reports(hid);
1165 set_bit(HID_STARTED, &usbhid->iofl);
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.
1170 * In addition, enable remote wakeup by default for all keyboard
1171 * devices supporting the boot protocol.
1173 if (interface->desc.bInterfaceSubClass == USB_INTERFACE_SUBCLASS_BOOT &&
1174 interface->desc.bInterfaceProtocol ==
1175 USB_INTERFACE_PROTOCOL_KEYBOARD) {
1176 usbhid_set_leds(hid);
1177 device_set_wakeup_enable(&dev->dev, 1);
1179 return 0;
1181 fail:
1182 usb_free_urb(usbhid->urbin);
1183 usb_free_urb(usbhid->urbout);
1184 usb_free_urb(usbhid->urbctrl);
1185 usbhid->urbin = NULL;
1186 usbhid->urbout = NULL;
1187 usbhid->urbctrl = NULL;
1188 hid_free_buffers(dev, hid);
1189 return ret;
1192 static void usbhid_stop(struct hid_device *hid)
1194 struct usbhid_device *usbhid = hid->driver_data;
1196 if (WARN_ON(!usbhid))
1197 return;
1199 clear_bit(HID_STARTED, &usbhid->iofl);
1200 spin_lock_irq(&usbhid->lock); /* Sync with error and led handlers */
1201 set_bit(HID_DISCONNECTED, &usbhid->iofl);
1202 spin_unlock_irq(&usbhid->lock);
1203 usb_kill_urb(usbhid->urbin);
1204 usb_kill_urb(usbhid->urbout);
1205 usb_kill_urb(usbhid->urbctrl);
1207 hid_cancel_delayed_stuff(usbhid);
1209 hid->claimed = 0;
1211 usb_free_urb(usbhid->urbin);
1212 usb_free_urb(usbhid->urbctrl);
1213 usb_free_urb(usbhid->urbout);
1214 usbhid->urbin = NULL; /* don't mess up next start */
1215 usbhid->urbctrl = NULL;
1216 usbhid->urbout = NULL;
1218 hid_free_buffers(hid_to_usb_dev(hid), hid);
1221 static int usbhid_power(struct hid_device *hid, int lvl)
1223 int r = 0;
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;
1233 return r;
1236 static 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,
1242 .power = usbhid_power,
1243 .hidinput_input_event = usb_hidinput_input_event,
1246 static int usbhid_probe(struct usb_interface *intf, const struct usb_device_id *id)
1248 struct usb_host_interface *interface = intf->cur_altsetting;
1249 struct usb_device *dev = interface_to_usbdev(intf);
1250 struct usbhid_device *usbhid;
1251 struct hid_device *hid;
1252 unsigned int n, has_in = 0;
1253 size_t len;
1254 int ret;
1256 dbg_hid("HID probe called for ifnum %d\n",
1257 intf->altsetting->desc.bInterfaceNumber);
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) {
1263 hid_err(intf, "couldn't find an input interrupt endpoint\n");
1264 return -ENODEV;
1267 hid = hid_allocate_device();
1268 if (IS_ERR(hid))
1269 return PTR_ERR(hid);
1271 usb_set_intfdata(intf, hid);
1272 hid->ll_driver = &usb_hid_driver;
1273 hid->hid_get_raw_report = usbhid_get_raw_report;
1274 hid->hid_output_raw_report = usbhid_output_raw_report;
1275 hid->ff_init = hid_pidff_init;
1276 #ifdef CONFIG_USB_HIDDEV
1277 hid->hiddev_connect = hiddev_connect;
1278 hid->hiddev_disconnect = hiddev_disconnect;
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;
1287 hid->quirks = usbhid_lookup_quirk(hid->vendor, hid->product);
1288 if (intf->cur_altsetting->desc.bInterfaceProtocol ==
1289 USB_INTERFACE_PROTOCOL_MOUSE)
1290 hid->type = HID_TYPE_USBMOUSE;
1291 else if (intf->cur_altsetting->desc.bInterfaceProtocol == 0)
1292 hid->type = HID_TYPE_USBNONE;
1294 if (dev->manufacturer)
1295 strlcpy(hid->name, dev->manufacturer, sizeof(hid->name));
1297 if (dev->product) {
1298 if (dev->manufacturer)
1299 strlcat(hid->name, " ", sizeof(hid->name));
1300 strlcat(hid->name, dev->product, sizeof(hid->name));
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));
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);
1315 if (usb_string(dev, dev->descriptor.iSerialNumber, hid->uniq, 64) <= 0)
1316 hid->uniq[0] = 0;
1318 usbhid = kzalloc(sizeof(*usbhid), GFP_KERNEL);
1319 if (usbhid == NULL) {
1320 ret = -ENOMEM;
1321 goto err;
1324 hid->driver_data = usbhid;
1325 usbhid->hid = hid;
1326 usbhid->intf = intf;
1327 usbhid->ifnum = interface->desc.bInterfaceNumber;
1329 init_waitqueue_head(&usbhid->wait);
1330 INIT_WORK(&usbhid->reset_work, hid_reset);
1331 setup_timer(&usbhid->io_retry, hid_retry_timeout, (unsigned long) hid);
1332 spin_lock_init(&usbhid->lock);
1334 INIT_WORK(&usbhid->led_work, hid_led);
1336 ret = hid_add_device(hid);
1337 if (ret) {
1338 if (ret != -ENODEV)
1339 hid_err(intf, "can't add hid device: %d\n", ret);
1340 goto err_free;
1343 return 0;
1344 err_free:
1345 kfree(usbhid);
1346 err:
1347 hid_destroy_device(hid);
1348 return ret;
1351 static void usbhid_disconnect(struct usb_interface *intf)
1353 struct hid_device *hid = usb_get_intfdata(intf);
1354 struct usbhid_device *usbhid;
1356 if (WARN_ON(!hid))
1357 return;
1359 usbhid = hid->driver_data;
1360 hid_destroy_device(hid);
1361 kfree(usbhid);
1364 static void hid_cancel_delayed_stuff(struct usbhid_device *usbhid)
1366 del_timer_sync(&usbhid->io_retry);
1367 cancel_work_sync(&usbhid->reset_work);
1368 cancel_work_sync(&usbhid->led_work);
1371 static void hid_cease_io(struct usbhid_device *usbhid)
1373 del_timer_sync(&usbhid->io_retry);
1374 usb_kill_urb(usbhid->urbin);
1375 usb_kill_urb(usbhid->urbctrl);
1376 usb_kill_urb(usbhid->urbout);
1379 /* Treat USB reset pretty much the same as suspend/resume */
1380 static int hid_pre_reset(struct usb_interface *intf)
1382 struct hid_device *hid = usb_get_intfdata(intf);
1383 struct usbhid_device *usbhid = hid->driver_data;
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);
1390 return 0;
1393 /* Same routine used for post_reset and reset_resume */
1394 static int hid_post_reset(struct usb_interface *intf)
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;
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);
1405 status = hid_start_in(hid);
1406 if (status < 0)
1407 hid_io_error(hid);
1408 usbhid_restart_queues(usbhid);
1410 return 0;
1413 int usbhid_get_power(struct hid_device *hid)
1415 struct usbhid_device *usbhid = hid->driver_data;
1417 return usb_autopm_get_interface(usbhid->intf);
1420 void usbhid_put_power(struct hid_device *hid)
1422 struct usbhid_device *usbhid = hid->driver_data;
1424 usb_autopm_put_interface(usbhid->intf);
1428 #ifdef CONFIG_PM
1429 static int hid_suspend(struct usb_interface *intf, pm_message_t message)
1431 struct hid_device *hid = usb_get_intfdata(intf);
1432 struct usbhid_device *usbhid = hid->driver_data;
1433 int status;
1435 if (PMSG_IS_AUTO(message)) {
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))
1444 set_bit(HID_REPORTED_IDLE, &usbhid->iofl);
1445 spin_unlock_irq(&usbhid->lock);
1446 if (hid->driver && hid->driver->suspend) {
1447 status = hid->driver->suspend(hid, message);
1448 if (status < 0)
1449 return status;
1451 } else {
1452 usbhid_mark_busy(usbhid);
1453 spin_unlock_irq(&usbhid->lock);
1454 return -EBUSY;
1457 } else {
1458 if (hid->driver && hid->driver->suspend) {
1459 status = hid->driver->suspend(hid, message);
1460 if (status < 0)
1461 return status;
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;
1470 hid_cancel_delayed_stuff(usbhid);
1471 hid_cease_io(usbhid);
1473 if (PMSG_IS_AUTO(message) && test_bit(HID_KEYS_PRESSED, &usbhid->iofl)) {
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;
1481 dev_dbg(&intf->dev, "suspend\n");
1482 return 0;
1485 static int hid_resume(struct usb_interface *intf)
1487 struct hid_device *hid = usb_get_intfdata (intf);
1488 struct usbhid_device *usbhid = hid->driver_data;
1489 int status;
1491 if (!test_bit(HID_STARTED, &usbhid->iofl))
1492 return 0;
1494 clear_bit(HID_REPORTED_IDLE, &usbhid->iofl);
1495 usbhid_mark_busy(usbhid);
1497 if (test_bit(HID_CLEAR_HALT, &usbhid->iofl) ||
1498 test_bit(HID_RESET_PENDING, &usbhid->iofl))
1499 schedule_work(&usbhid->reset_work);
1500 usbhid->retry_delay = 0;
1501 status = hid_start_in(hid);
1502 if (status < 0)
1503 hid_io_error(hid);
1504 usbhid_restart_queues(usbhid);
1506 if (status >= 0 && hid->driver && hid->driver->resume) {
1507 int ret = hid->driver->resume(hid);
1508 if (ret < 0)
1509 status = ret;
1511 dev_dbg(&intf->dev, "resume status %d\n", status);
1512 return 0;
1515 static int hid_reset_resume(struct usb_interface *intf)
1517 struct hid_device *hid = usb_get_intfdata(intf);
1518 struct usbhid_device *usbhid = hid->driver_data;
1519 int status;
1521 clear_bit(HID_REPORTED_IDLE, &usbhid->iofl);
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;
1528 return status;
1531 #endif /* CONFIG_PM */
1533 static const struct usb_device_id hid_usb_ids[] = {
1534 { .match_flags = USB_DEVICE_ID_MATCH_INT_CLASS,
1535 .bInterfaceClass = USB_INTERFACE_CLASS_HID },
1536 { } /* Terminating entry */
1539 MODULE_DEVICE_TABLE (usb, hid_usb_ids);
1541 static struct usb_driver hid_driver = {
1542 .name = "usbhid",
1543 .probe = usbhid_probe,
1544 .disconnect = usbhid_disconnect,
1545 #ifdef CONFIG_PM
1546 .suspend = hid_suspend,
1547 .resume = hid_resume,
1548 .reset_resume = hid_reset_resume,
1549 #endif
1550 .pre_reset = hid_pre_reset,
1551 .post_reset = hid_post_reset,
1552 .id_table = hid_usb_ids,
1553 .supports_autosuspend = 1,
1556 static const struct hid_device_id hid_usb_table[] = {
1557 { HID_USB_DEVICE(HID_ANY_ID, HID_ANY_ID) },
1561 struct usb_interface *usbhid_find_interface(int minor)
1563 return usb_find_interface(&hid_driver, minor);
1566 static struct hid_driver hid_usb_driver = {
1567 .name = "generic-usb",
1568 .id_table = hid_usb_table,
1571 static int __init hid_init(void)
1573 int retval = -ENOMEM;
1575 retval = hid_register_driver(&hid_usb_driver);
1576 if (retval)
1577 goto hid_register_fail;
1578 retval = usbhid_quirks_init(quirks_param);
1579 if (retval)
1580 goto usbhid_quirks_init_fail;
1581 retval = usb_register(&hid_driver);
1582 if (retval)
1583 goto usb_register_fail;
1584 printk(KERN_INFO KBUILD_MODNAME ": " DRIVER_DESC "\n");
1586 return 0;
1587 usb_register_fail:
1588 usbhid_quirks_exit();
1589 usbhid_quirks_init_fail:
1590 hid_unregister_driver(&hid_usb_driver);
1591 hid_register_fail:
1592 return retval;
1595 static void __exit hid_exit(void)
1597 usb_deregister(&hid_driver);
1598 usbhid_quirks_exit();
1599 hid_unregister_driver(&hid_usb_driver);
1602 module_init(hid_init);
1603 module_exit(hid_exit);
1605 MODULE_AUTHOR("Andreas Gal");
1606 MODULE_AUTHOR("Vojtech Pavlik");
1607 MODULE_AUTHOR("Jiri Kosina");
1608 MODULE_DESCRIPTION(DRIVER_DESC);
1609 MODULE_LICENSE(DRIVER_LICENSE);