]> git.karo-electronics.de Git - karo-tx-linux.git/blob - drivers/hid/usbhid/hid-core.c
HID: make raw reports possible for both feature and output reports
[karo-tx-linux.git] / drivers / hid / usbhid / hid-core.c
1 /*
2  *  USB HID support for Linux
3  *
4  *  Copyright (c) 1999 Andreas Gal
5  *  Copyright (c) 2000-2005 Vojtech Pavlik <vojtech@suse.cz>
6  *  Copyright (c) 2005 Michael Haboustak <mike-@cinci.rr.com> for Concept2, Inc
7  *  Copyright (c) 2007-2008 Oliver Neukum
8  *  Copyright (c) 2006-2009 Jiri Kosina
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>
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>
31
32 #include <linux/usb.h>
33
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"
39
40 /*
41  * Version Information
42  */
43
44 #define DRIVER_DESC "USB HID core driver"
45 #define DRIVER_LICENSE "GPL"
46
47 /*
48  * Module parameters.
49  */
50
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");
54
55 static unsigned int ignoreled;
56 module_param_named(ignoreled, ignoreled, uint, 0644);
57 MODULE_PARM_DESC(ignoreled, "Autosuspend with active leds");
58
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");
66 /*
67  * Input submission and I/O error handler.
68  */
69 static DEFINE_MUTEX(hid_open_mut);
70 static struct workqueue_struct *resumption_waker;
71
72 static void hid_io_error(struct hid_device *hid);
73 static int hid_submit_out(struct hid_device *hid);
74 static int hid_submit_ctrl(struct hid_device *hid);
75 static void hid_cancel_delayed_stuff(struct usbhid_device *usbhid);
76
77 /* Start up the input URB */
78 static int hid_start_in(struct hid_device *hid)
79 {
80         unsigned long flags;
81         int rc = 0;
82         struct usbhid_device *usbhid = hid->driver_data;
83
84         spin_lock_irqsave(&usbhid->lock, flags);
85         if (hid->open > 0 &&
86                         !test_bit(HID_DISCONNECTED, &usbhid->iofl) &&
87                         !test_bit(HID_REPORTED_IDLE, &usbhid->iofl) &&
88                         !test_and_set_bit(HID_IN_RUNNING, &usbhid->iofl)) {
89                 rc = usb_submit_urb(usbhid->urbin, GFP_ATOMIC);
90                 if (rc != 0)
91                         clear_bit(HID_IN_RUNNING, &usbhid->iofl);
92         }
93         spin_unlock_irqrestore(&usbhid->lock, flags);
94         return rc;
95 }
96
97 /* I/O retry timer routine */
98 static void hid_retry_timeout(unsigned long _hid)
99 {
100         struct hid_device *hid = (struct hid_device *) _hid;
101         struct usbhid_device *usbhid = hid->driver_data;
102
103         dev_dbg(&usbhid->intf->dev, "retrying intr urb\n");
104         if (hid_start_in(hid))
105                 hid_io_error(hid);
106 }
107
108 /* Workqueue routine to reset the device or clear a halt */
109 static void hid_reset(struct work_struct *work)
110 {
111         struct usbhid_device *usbhid =
112                 container_of(work, struct usbhid_device, reset_work);
113         struct hid_device *hid = usbhid->hid;
114         int rc = 0;
115
116         if (test_bit(HID_CLEAR_HALT, &usbhid->iofl)) {
117                 dev_dbg(&usbhid->intf->dev, "clear halt\n");
118                 rc = usb_clear_halt(hid_to_usb_dev(hid), usbhid->urbin->pipe);
119                 clear_bit(HID_CLEAR_HALT, &usbhid->iofl);
120                 hid_start_in(hid);
121         }
122
123         else if (test_bit(HID_RESET_PENDING, &usbhid->iofl)) {
124                 dev_dbg(&usbhid->intf->dev, "resetting device\n");
125                 rc = usb_lock_device_for_reset(hid_to_usb_dev(hid), usbhid->intf);
126                 if (rc == 0) {
127                         rc = usb_reset_device(hid_to_usb_dev(hid));
128                         usb_unlock_device(hid_to_usb_dev(hid));
129                 }
130                 clear_bit(HID_RESET_PENDING, &usbhid->iofl);
131         }
132
133         switch (rc) {
134         case 0:
135                 if (!test_bit(HID_IN_RUNNING, &usbhid->iofl))
136                         hid_io_error(hid);
137                 break;
138         default:
139                 err_hid("can't reset device, %s-%s/input%d, status %d",
140                                 hid_to_usb_dev(hid)->bus->bus_name,
141                                 hid_to_usb_dev(hid)->devpath,
142                                 usbhid->ifnum, rc);
143                 /* FALLTHROUGH */
144         case -EHOSTUNREACH:
145         case -ENODEV:
146         case -EINTR:
147                 break;
148         }
149 }
150
151 /* Main I/O error handler */
152 static void hid_io_error(struct hid_device *hid)
153 {
154         unsigned long flags;
155         struct usbhid_device *usbhid = hid->driver_data;
156
157         spin_lock_irqsave(&usbhid->lock, flags);
158
159         /* Stop when disconnected */
160         if (test_bit(HID_DISCONNECTED, &usbhid->iofl))
161                 goto done;
162
163         /* If it has been a while since the last error, we'll assume
164          * this a brand new error and reset the retry timeout. */
165         if (time_after(jiffies, usbhid->stop_retry + HZ/2))
166                 usbhid->retry_delay = 0;
167
168         /* When an error occurs, retry at increasing intervals */
169         if (usbhid->retry_delay == 0) {
170                 usbhid->retry_delay = 13;       /* Then 26, 52, 104, 104, ... */
171                 usbhid->stop_retry = jiffies + msecs_to_jiffies(1000);
172         } else if (usbhid->retry_delay < 100)
173                 usbhid->retry_delay *= 2;
174
175         if (time_after(jiffies, usbhid->stop_retry)) {
176
177                 /* Retries failed, so do a port reset */
178                 if (!test_and_set_bit(HID_RESET_PENDING, &usbhid->iofl)) {
179                         schedule_work(&usbhid->reset_work);
180                         goto done;
181                 }
182         }
183
184         mod_timer(&usbhid->io_retry,
185                         jiffies + msecs_to_jiffies(usbhid->retry_delay));
186 done:
187         spin_unlock_irqrestore(&usbhid->lock, flags);
188 }
189
190 static void usbhid_mark_busy(struct usbhid_device *usbhid)
191 {
192         struct usb_interface *intf = usbhid->intf;
193
194         usb_mark_last_busy(interface_to_usbdev(intf));
195 }
196
197 static int usbhid_restart_out_queue(struct usbhid_device *usbhid)
198 {
199         struct hid_device *hid = usb_get_intfdata(usbhid->intf);
200         int kicked;
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);
207                 if (hid_submit_out(hid)) {
208                         clear_bit(HID_OUT_RUNNING, &usbhid->iofl);
209                         wake_up(&usbhid->wait);
210                 }
211         }
212         return kicked;
213 }
214
215 static int usbhid_restart_ctrl_queue(struct usbhid_device *usbhid)
216 {
217         struct hid_device *hid = usb_get_intfdata(usbhid->intf);
218         int kicked;
219
220         WARN_ON(hid == NULL);
221         if (!hid)
222                 return 0;
223
224         if ((kicked = (usbhid->ctrlhead != usbhid->ctrltail))) {
225                 dbg("Kicking head %d tail %d", usbhid->ctrlhead, usbhid->ctrltail);
226                 if (hid_submit_ctrl(hid)) {
227                         clear_bit(HID_CTRL_RUNNING, &usbhid->iofl);
228                         wake_up(&usbhid->wait);
229                 }
230         }
231         return kicked;
232 }
233
234 /*
235  * Input interrupt completion handler.
236  */
237
238 static void hid_irq_in(struct urb *urb)
239 {
240         struct hid_device       *hid = urb->context;
241         struct usbhid_device    *usbhid = hid->driver_data;
242         int                     status;
243
244         switch (urb->status) {
245         case 0:                 /* success */
246                 usbhid_mark_busy(usbhid);
247                 usbhid->retry_delay = 0;
248                 hid_input_report(urb->context, HID_INPUT_REPORT,
249                                  urb->transfer_buffer,
250                                  urb->actual_length, 1);
251                 /*
252                  * autosuspend refused while keys are pressed
253                  * because most keyboards don't wake up when
254                  * a key is released
255                  */
256                 if (hid_check_keys_pressed(hid))
257                         set_bit(HID_KEYS_PRESSED, &usbhid->iofl);
258                 else
259                         clear_bit(HID_KEYS_PRESSED, &usbhid->iofl);
260                 break;
261         case -EPIPE:            /* stall */
262                 usbhid_mark_busy(usbhid);
263                 clear_bit(HID_IN_RUNNING, &usbhid->iofl);
264                 set_bit(HID_CLEAR_HALT, &usbhid->iofl);
265                 schedule_work(&usbhid->reset_work);
266                 return;
267         case -ECONNRESET:       /* unlink */
268         case -ENOENT:
269         case -ESHUTDOWN:        /* unplug */
270                 clear_bit(HID_IN_RUNNING, &usbhid->iofl);
271                 return;
272         case -EILSEQ:           /* protocol error or unplug */
273         case -EPROTO:           /* protocol error or unplug */
274         case -ETIME:            /* protocol error or unplug */
275         case -ETIMEDOUT:        /* Should never happen, but... */
276                 usbhid_mark_busy(usbhid);
277                 clear_bit(HID_IN_RUNNING, &usbhid->iofl);
278                 hid_io_error(hid);
279                 return;
280         default:                /* error */
281                 dev_warn(&urb->dev->dev, "input irq status %d  "
282                                 "received\n", urb->status);
283         }
284
285         status = usb_submit_urb(urb, GFP_ATOMIC);
286         if (status) {
287                 clear_bit(HID_IN_RUNNING, &usbhid->iofl);
288                 if (status != -EPERM) {
289                         err_hid("can't resubmit intr, %s-%s/input%d, status %d",
290                                         hid_to_usb_dev(hid)->bus->bus_name,
291                                         hid_to_usb_dev(hid)->devpath,
292                                         usbhid->ifnum, status);
293                         hid_io_error(hid);
294                 }
295         }
296 }
297
298 static int hid_submit_out(struct hid_device *hid)
299 {
300         struct hid_report *report;
301         char *raw_report;
302         struct usbhid_device *usbhid = hid->driver_data;
303
304         report = usbhid->out[usbhid->outtail].report;
305         raw_report = usbhid->out[usbhid->outtail].raw_report;
306
307         if (!test_bit(HID_REPORTED_IDLE, &usbhid->iofl)) {
308                 usbhid->urbout->transfer_buffer_length = ((report->size - 1) >> 3) + 1 + (report->id > 0);
309                 usbhid->urbout->dev = hid_to_usb_dev(hid);
310                 memcpy(usbhid->outbuf, raw_report, usbhid->urbout->transfer_buffer_length);
311                 kfree(raw_report);
312
313                 dbg_hid("submitting out urb\n");
314
315                 if (usb_submit_urb(usbhid->urbout, GFP_ATOMIC)) {
316                         err_hid("usb_submit_urb(out) failed");
317                         return -1;
318                 }
319         } else {
320                 /*
321                  * queue work to wake up the device.
322                  * as the work queue is freezeable, this is safe
323                  * with respect to STD and STR
324                  */
325                 queue_work(resumption_waker, &usbhid->restart_work);
326         }
327
328         return 0;
329 }
330
331 static int hid_submit_ctrl(struct hid_device *hid)
332 {
333         struct hid_report *report;
334         unsigned char dir;
335         char *raw_report;
336         int len;
337         struct usbhid_device *usbhid = hid->driver_data;
338
339         report = usbhid->ctrl[usbhid->ctrltail].report;
340         raw_report = usbhid->ctrl[usbhid->ctrltail].raw_report;
341         dir = usbhid->ctrl[usbhid->ctrltail].dir;
342
343         if (!test_bit(HID_REPORTED_IDLE, &usbhid->iofl)) {
344                 len = ((report->size - 1) >> 3) + 1 + (report->id > 0);
345                 if (dir == USB_DIR_OUT) {
346                         usbhid->urbctrl->pipe = usb_sndctrlpipe(hid_to_usb_dev(hid), 0);
347                         usbhid->urbctrl->transfer_buffer_length = len;
348                         memcpy(usbhid->ctrlbuf, raw_report, len);
349                         kfree(raw_report);
350                 } else {
351                         int maxpacket, padlen;
352
353                         usbhid->urbctrl->pipe = usb_rcvctrlpipe(hid_to_usb_dev(hid), 0);
354                         maxpacket = usb_maxpacket(hid_to_usb_dev(hid), usbhid->urbctrl->pipe, 0);
355                         if (maxpacket > 0) {
356                                 padlen = DIV_ROUND_UP(len, maxpacket);
357                                 padlen *= maxpacket;
358                                 if (padlen > usbhid->bufsize)
359                                         padlen = usbhid->bufsize;
360                         } else
361                                 padlen = 0;
362                         usbhid->urbctrl->transfer_buffer_length = padlen;
363                 }
364                 usbhid->urbctrl->dev = hid_to_usb_dev(hid);
365
366                 usbhid->cr->bRequestType = USB_TYPE_CLASS | USB_RECIP_INTERFACE | dir;
367                 usbhid->cr->bRequest = (dir == USB_DIR_OUT) ? HID_REQ_SET_REPORT : HID_REQ_GET_REPORT;
368                 usbhid->cr->wValue = cpu_to_le16(((report->type + 1) << 8) | report->id);
369                 usbhid->cr->wIndex = cpu_to_le16(usbhid->ifnum);
370                 usbhid->cr->wLength = cpu_to_le16(len);
371
372                 dbg_hid("submitting ctrl urb: %s wValue=0x%04x wIndex=0x%04x wLength=%u\n",
373                         usbhid->cr->bRequest == HID_REQ_SET_REPORT ? "Set_Report" : "Get_Report",
374                         usbhid->cr->wValue, usbhid->cr->wIndex, usbhid->cr->wLength);
375
376                 if (usb_submit_urb(usbhid->urbctrl, GFP_ATOMIC)) {
377                         err_hid("usb_submit_urb(ctrl) failed");
378                         return -1;
379                 }
380         } else {
381                 /*
382                  * queue work to wake up the device.
383                  * as the work queue is freezeable, this is safe
384                  * with respect to STD and STR
385                  */
386                 queue_work(resumption_waker, &usbhid->restart_work);
387         }
388
389         return 0;
390 }
391
392 /*
393  * Output interrupt completion handler.
394  */
395
396 static void hid_irq_out(struct urb *urb)
397 {
398         struct hid_device *hid = urb->context;
399         struct usbhid_device *usbhid = hid->driver_data;
400         unsigned long flags;
401         int unplug = 0;
402
403         switch (urb->status) {
404         case 0:                 /* success */
405                 break;
406         case -ESHUTDOWN:        /* unplug */
407                 unplug = 1;
408         case -EILSEQ:           /* protocol error or unplug */
409         case -EPROTO:           /* protocol error or unplug */
410         case -ECONNRESET:       /* unlink */
411         case -ENOENT:
412                 break;
413         default:                /* error */
414                 dev_warn(&urb->dev->dev, "output irq status %d "
415                                 "received\n", urb->status);
416         }
417
418         spin_lock_irqsave(&usbhid->lock, flags);
419
420         if (unplug)
421                 usbhid->outtail = usbhid->outhead;
422         else
423                 usbhid->outtail = (usbhid->outtail + 1) & (HID_OUTPUT_FIFO_SIZE - 1);
424
425         if (usbhid->outhead != usbhid->outtail) {
426                 if (hid_submit_out(hid)) {
427                         clear_bit(HID_OUT_RUNNING, &usbhid->iofl);
428                         wake_up(&usbhid->wait);
429                 }
430                 spin_unlock_irqrestore(&usbhid->lock, flags);
431                 return;
432         }
433
434         clear_bit(HID_OUT_RUNNING, &usbhid->iofl);
435         spin_unlock_irqrestore(&usbhid->lock, flags);
436         wake_up(&usbhid->wait);
437 }
438
439 /*
440  * Control pipe completion handler.
441  */
442
443 static void hid_ctrl(struct urb *urb)
444 {
445         struct hid_device *hid = urb->context;
446         struct usbhid_device *usbhid = hid->driver_data;
447         int unplug = 0, status = urb->status;
448
449         spin_lock(&usbhid->lock);
450
451         switch (status) {
452         case 0:                 /* success */
453                 if (usbhid->ctrl[usbhid->ctrltail].dir == USB_DIR_IN)
454                         hid_input_report(urb->context,
455                                 usbhid->ctrl[usbhid->ctrltail].report->type,
456                                 urb->transfer_buffer, urb->actual_length, 0);
457                 break;
458         case -ESHUTDOWN:        /* unplug */
459                 unplug = 1;
460         case -EILSEQ:           /* protocol error or unplug */
461         case -EPROTO:           /* protocol error or unplug */
462         case -ECONNRESET:       /* unlink */
463         case -ENOENT:
464         case -EPIPE:            /* report not available */
465                 break;
466         default:                /* error */
467                 dev_warn(&urb->dev->dev, "ctrl urb status %d "
468                                 "received\n", status);
469         }
470
471         if (unplug)
472                 usbhid->ctrltail = usbhid->ctrlhead;
473         else
474                 usbhid->ctrltail = (usbhid->ctrltail + 1) & (HID_CONTROL_FIFO_SIZE - 1);
475
476         if (usbhid->ctrlhead != usbhid->ctrltail) {
477                 if (hid_submit_ctrl(hid)) {
478                         clear_bit(HID_CTRL_RUNNING, &usbhid->iofl);
479                         wake_up(&usbhid->wait);
480                 }
481                 spin_unlock(&usbhid->lock);
482                 return;
483         }
484
485         clear_bit(HID_CTRL_RUNNING, &usbhid->iofl);
486         spin_unlock(&usbhid->lock);
487         wake_up(&usbhid->wait);
488 }
489
490 static void __usbhid_submit_report(struct hid_device *hid, struct hid_report *report,
491                                    unsigned char dir)
492 {
493         int head;
494         struct usbhid_device *usbhid = hid->driver_data;
495         int len = ((report->size - 1) >> 3) + 1 + (report->id > 0);
496
497         if ((hid->quirks & HID_QUIRK_NOGET) && dir == USB_DIR_IN)
498                 return;
499
500         if (usbhid->urbout && dir == USB_DIR_OUT && report->type == HID_OUTPUT_REPORT) {
501                 if ((head = (usbhid->outhead + 1) & (HID_OUTPUT_FIFO_SIZE - 1)) == usbhid->outtail) {
502                         dev_warn(&hid->dev, "output queue full\n");
503                         return;
504                 }
505
506                 usbhid->out[usbhid->outhead].raw_report = kmalloc(len, GFP_ATOMIC);
507                 if (!usbhid->out[usbhid->outhead].raw_report) {
508                         dev_warn(&hid->dev, "output queueing failed\n");
509                         return;
510                 }
511                 hid_output_report(report, usbhid->out[usbhid->outhead].raw_report);
512                 usbhid->out[usbhid->outhead].report = report;
513                 usbhid->outhead = head;
514
515                 if (!test_and_set_bit(HID_OUT_RUNNING, &usbhid->iofl))
516                         if (hid_submit_out(hid))
517                                 clear_bit(HID_OUT_RUNNING, &usbhid->iofl);
518                 return;
519         }
520
521         if ((head = (usbhid->ctrlhead + 1) & (HID_CONTROL_FIFO_SIZE - 1)) == usbhid->ctrltail) {
522                 dev_warn(&hid->dev, "control queue full\n");
523                 return;
524         }
525
526         if (dir == USB_DIR_OUT) {
527                 usbhid->ctrl[usbhid->ctrlhead].raw_report = kmalloc(len, GFP_ATOMIC);
528                 if (!usbhid->ctrl[usbhid->ctrlhead].raw_report) {
529                         dev_warn(&hid->dev, "control queueing failed\n");
530                         return;
531                 }
532                 hid_output_report(report, usbhid->ctrl[usbhid->ctrlhead].raw_report);
533         }
534         usbhid->ctrl[usbhid->ctrlhead].report = report;
535         usbhid->ctrl[usbhid->ctrlhead].dir = dir;
536         usbhid->ctrlhead = head;
537
538         if (!test_and_set_bit(HID_CTRL_RUNNING, &usbhid->iofl))
539                 if (hid_submit_ctrl(hid))
540                         clear_bit(HID_CTRL_RUNNING, &usbhid->iofl);
541 }
542
543 void usbhid_submit_report(struct hid_device *hid, struct hid_report *report, unsigned char dir)
544 {
545         struct usbhid_device *usbhid = hid->driver_data;
546         unsigned long flags;
547
548         spin_lock_irqsave(&usbhid->lock, flags);
549         __usbhid_submit_report(hid, report, dir);
550         spin_unlock_irqrestore(&usbhid->lock, flags);
551 }
552 EXPORT_SYMBOL_GPL(usbhid_submit_report);
553
554 static int usb_hidinput_input_event(struct input_dev *dev, unsigned int type, unsigned int code, int value)
555 {
556         struct hid_device *hid = input_get_drvdata(dev);
557         struct usbhid_device *usbhid = hid->driver_data;
558         struct hid_field *field;
559         unsigned long flags;
560         int offset;
561
562         if (type == EV_FF)
563                 return input_ff_event(dev, type, code, value);
564
565         if (type != EV_LED)
566                 return -1;
567
568         if ((offset = hidinput_find_field(hid, type, code, &field)) == -1) {
569                 dev_warn(&dev->dev, "event field not found\n");
570                 return -1;
571         }
572
573         hid_set_field(field, offset, value);
574         if (value) {
575                 spin_lock_irqsave(&usbhid->lock, flags);
576                 usbhid->ledcount++;
577                 spin_unlock_irqrestore(&usbhid->lock, flags);
578         } else {
579                 spin_lock_irqsave(&usbhid->lock, flags);
580                 usbhid->ledcount--;
581                 spin_unlock_irqrestore(&usbhid->lock, flags);
582         }
583         usbhid_submit_report(hid, field->report, USB_DIR_OUT);
584
585         return 0;
586 }
587
588 int usbhid_wait_io(struct hid_device *hid)
589 {
590         struct usbhid_device *usbhid = hid->driver_data;
591
592         if (!wait_event_timeout(usbhid->wait,
593                                 (!test_bit(HID_CTRL_RUNNING, &usbhid->iofl) &&
594                                 !test_bit(HID_OUT_RUNNING, &usbhid->iofl)),
595                                         10*HZ)) {
596                 dbg_hid("timeout waiting for ctrl or out queue to clear\n");
597                 return -1;
598         }
599
600         return 0;
601 }
602
603 static int hid_set_idle(struct usb_device *dev, int ifnum, int report, int idle)
604 {
605         return usb_control_msg(dev, usb_sndctrlpipe(dev, 0),
606                 HID_REQ_SET_IDLE, USB_TYPE_CLASS | USB_RECIP_INTERFACE, (idle << 8) | report,
607                 ifnum, NULL, 0, USB_CTRL_SET_TIMEOUT);
608 }
609
610 static int hid_get_class_descriptor(struct usb_device *dev, int ifnum,
611                 unsigned char type, void *buf, int size)
612 {
613         int result, retries = 4;
614
615         memset(buf, 0, size);
616
617         do {
618                 result = usb_control_msg(dev, usb_rcvctrlpipe(dev, 0),
619                                 USB_REQ_GET_DESCRIPTOR, USB_RECIP_INTERFACE | USB_DIR_IN,
620                                 (type << 8), ifnum, buf, size, USB_CTRL_GET_TIMEOUT);
621                 retries--;
622         } while (result < size && retries);
623         return result;
624 }
625
626 int usbhid_open(struct hid_device *hid)
627 {
628         struct usbhid_device *usbhid = hid->driver_data;
629         int res;
630
631         mutex_lock(&hid_open_mut);
632         if (!hid->open++) {
633                 res = usb_autopm_get_interface(usbhid->intf);
634                 /* the device must be awake to reliable request remote wakeup */
635                 if (res < 0) {
636                         hid->open--;
637                         mutex_unlock(&hid_open_mut);
638                         return -EIO;
639                 }
640                 usbhid->intf->needs_remote_wakeup = 1;
641                 if (hid_start_in(hid))
642                         hid_io_error(hid);
643  
644                 usb_autopm_put_interface(usbhid->intf);
645         }
646         mutex_unlock(&hid_open_mut);
647         return 0;
648 }
649
650 void usbhid_close(struct hid_device *hid)
651 {
652         struct usbhid_device *usbhid = hid->driver_data;
653
654         mutex_lock(&hid_open_mut);
655
656         /* protecting hid->open to make sure we don't restart
657          * data acquistion due to a resumption we no longer
658          * care about
659          */
660         spin_lock_irq(&usbhid->lock);
661         if (!--hid->open) {
662                 spin_unlock_irq(&usbhid->lock);
663                 hid_cancel_delayed_stuff(usbhid);
664                 usb_kill_urb(usbhid->urbin);
665                 usbhid->intf->needs_remote_wakeup = 0;
666         } else {
667                 spin_unlock_irq(&usbhid->lock);
668         }
669         mutex_unlock(&hid_open_mut);
670 }
671
672 /*
673  * Initialize all reports
674  */
675
676 void usbhid_init_reports(struct hid_device *hid)
677 {
678         struct hid_report *report;
679         struct usbhid_device *usbhid = hid->driver_data;
680         int err, ret;
681
682         list_for_each_entry(report, &hid->report_enum[HID_INPUT_REPORT].report_list, list)
683                 usbhid_submit_report(hid, report, USB_DIR_IN);
684
685         list_for_each_entry(report, &hid->report_enum[HID_FEATURE_REPORT].report_list, list)
686                 usbhid_submit_report(hid, report, USB_DIR_IN);
687
688         err = 0;
689         ret = usbhid_wait_io(hid);
690         while (ret) {
691                 err |= ret;
692                 if (test_bit(HID_CTRL_RUNNING, &usbhid->iofl))
693                         usb_kill_urb(usbhid->urbctrl);
694                 if (test_bit(HID_OUT_RUNNING, &usbhid->iofl))
695                         usb_kill_urb(usbhid->urbout);
696                 ret = usbhid_wait_io(hid);
697         }
698
699         if (err)
700                 dev_warn(&hid->dev, "timeout initializing reports\n");
701 }
702
703 /*
704  * Reset LEDs which BIOS might have left on. For now, just NumLock (0x01).
705  */
706 static int hid_find_field_early(struct hid_device *hid, unsigned int page,
707     unsigned int hid_code, struct hid_field **pfield)
708 {
709         struct hid_report *report;
710         struct hid_field *field;
711         struct hid_usage *usage;
712         int i, j;
713
714         list_for_each_entry(report, &hid->report_enum[HID_OUTPUT_REPORT].report_list, list) {
715                 for (i = 0; i < report->maxfield; i++) {
716                         field = report->field[i];
717                         for (j = 0; j < field->maxusage; j++) {
718                                 usage = &field->usage[j];
719                                 if ((usage->hid & HID_USAGE_PAGE) == page &&
720                                     (usage->hid & 0xFFFF) == hid_code) {
721                                         *pfield = field;
722                                         return j;
723                                 }
724                         }
725                 }
726         }
727         return -1;
728 }
729
730 void usbhid_set_leds(struct hid_device *hid)
731 {
732         struct hid_field *field;
733         int offset;
734
735         if ((offset = hid_find_field_early(hid, HID_UP_LED, 0x01, &field)) != -1) {
736                 hid_set_field(field, offset, 0);
737                 usbhid_submit_report(hid, field->report, USB_DIR_OUT);
738         }
739 }
740 EXPORT_SYMBOL_GPL(usbhid_set_leds);
741
742 /*
743  * Traverse the supplied list of reports and find the longest
744  */
745 static void hid_find_max_report(struct hid_device *hid, unsigned int type,
746                 unsigned int *max)
747 {
748         struct hid_report *report;
749         unsigned int size;
750
751         list_for_each_entry(report, &hid->report_enum[type].report_list, list) {
752                 size = ((report->size - 1) >> 3) + 1 + hid->report_enum[type].numbered;
753                 if (*max < size)
754                         *max = size;
755         }
756 }
757
758 static int hid_alloc_buffers(struct usb_device *dev, struct hid_device *hid)
759 {
760         struct usbhid_device *usbhid = hid->driver_data;
761
762         usbhid->inbuf = usb_buffer_alloc(dev, usbhid->bufsize, GFP_KERNEL,
763                         &usbhid->inbuf_dma);
764         usbhid->outbuf = usb_buffer_alloc(dev, usbhid->bufsize, GFP_KERNEL,
765                         &usbhid->outbuf_dma);
766         usbhid->cr = usb_buffer_alloc(dev, sizeof(*usbhid->cr), GFP_KERNEL,
767                         &usbhid->cr_dma);
768         usbhid->ctrlbuf = usb_buffer_alloc(dev, usbhid->bufsize, GFP_KERNEL,
769                         &usbhid->ctrlbuf_dma);
770         if (!usbhid->inbuf || !usbhid->outbuf || !usbhid->cr ||
771                         !usbhid->ctrlbuf)
772                 return -1;
773
774         return 0;
775 }
776
777 static int usbhid_output_raw_report(struct hid_device *hid, __u8 *buf, size_t count,
778                 unsigned char report_type)
779 {
780         struct usbhid_device *usbhid = hid->driver_data;
781         struct usb_device *dev = hid_to_usb_dev(hid);
782         struct usb_interface *intf = usbhid->intf;
783         struct usb_host_interface *interface = intf->cur_altsetting;
784         int ret;
785
786         ret = usb_control_msg(dev, usb_sndctrlpipe(dev, 0),
787                 HID_REQ_SET_REPORT,
788                 USB_DIR_OUT | USB_TYPE_CLASS | USB_RECIP_INTERFACE,
789                 ((report_type + 1) << 8) | *buf,
790                 interface->desc.bInterfaceNumber, buf + 1, count - 1,
791                 USB_CTRL_SET_TIMEOUT);
792
793         /* count also the report id */
794         if (ret > 0)
795                 ret++;
796
797         return ret;
798 }
799
800 static void usbhid_restart_queues(struct usbhid_device *usbhid)
801 {
802         if (usbhid->urbout)
803                 usbhid_restart_out_queue(usbhid);
804         usbhid_restart_ctrl_queue(usbhid);
805 }
806
807 static void __usbhid_restart_queues(struct work_struct *work)
808 {
809         struct usbhid_device *usbhid =
810                 container_of(work, struct usbhid_device, restart_work);
811         int r;
812
813         r = usb_autopm_get_interface(usbhid->intf);
814         if (r < 0)
815                 return;
816         usb_autopm_put_interface(usbhid->intf);
817 }
818
819 static void hid_free_buffers(struct usb_device *dev, struct hid_device *hid)
820 {
821         struct usbhid_device *usbhid = hid->driver_data;
822
823         usb_buffer_free(dev, usbhid->bufsize, usbhid->inbuf, usbhid->inbuf_dma);
824         usb_buffer_free(dev, usbhid->bufsize, usbhid->outbuf, usbhid->outbuf_dma);
825         usb_buffer_free(dev, sizeof(*(usbhid->cr)), usbhid->cr, usbhid->cr_dma);
826         usb_buffer_free(dev, usbhid->bufsize, usbhid->ctrlbuf, usbhid->ctrlbuf_dma);
827 }
828
829 static int usbhid_parse(struct hid_device *hid)
830 {
831         struct usb_interface *intf = to_usb_interface(hid->dev.parent);
832         struct usb_host_interface *interface = intf->cur_altsetting;
833         struct usb_device *dev = interface_to_usbdev (intf);
834         struct hid_descriptor *hdesc;
835         u32 quirks = 0;
836         unsigned int rsize = 0;
837         char *rdesc;
838         int ret, n;
839
840         quirks = usbhid_lookup_quirk(le16_to_cpu(dev->descriptor.idVendor),
841                         le16_to_cpu(dev->descriptor.idProduct));
842
843         if (quirks & HID_QUIRK_IGNORE)
844                 return -ENODEV;
845
846         /* Many keyboards and mice don't like to be polled for reports,
847          * so we will always set the HID_QUIRK_NOGET flag for them. */
848         if (interface->desc.bInterfaceSubClass == USB_INTERFACE_SUBCLASS_BOOT) {
849                 if (interface->desc.bInterfaceProtocol == USB_INTERFACE_PROTOCOL_KEYBOARD ||
850                         interface->desc.bInterfaceProtocol == USB_INTERFACE_PROTOCOL_MOUSE)
851                                 quirks |= HID_QUIRK_NOGET;
852         }
853
854         if (usb_get_extra_descriptor(interface, HID_DT_HID, &hdesc) &&
855             (!interface->desc.bNumEndpoints ||
856              usb_get_extra_descriptor(&interface->endpoint[0], HID_DT_HID, &hdesc))) {
857                 dbg_hid("class descriptor not present\n");
858                 return -ENODEV;
859         }
860
861         hid->version = le16_to_cpu(hdesc->bcdHID);
862         hid->country = hdesc->bCountryCode;
863
864         for (n = 0; n < hdesc->bNumDescriptors; n++)
865                 if (hdesc->desc[n].bDescriptorType == HID_DT_REPORT)
866                         rsize = le16_to_cpu(hdesc->desc[n].wDescriptorLength);
867
868         if (!rsize || rsize > HID_MAX_DESCRIPTOR_SIZE) {
869                 dbg_hid("weird size of report descriptor (%u)\n", rsize);
870                 return -EINVAL;
871         }
872
873         if (!(rdesc = kmalloc(rsize, GFP_KERNEL))) {
874                 dbg_hid("couldn't allocate rdesc memory\n");
875                 return -ENOMEM;
876         }
877
878         hid_set_idle(dev, interface->desc.bInterfaceNumber, 0, 0);
879
880         ret = hid_get_class_descriptor(dev, interface->desc.bInterfaceNumber,
881                         HID_DT_REPORT, rdesc, rsize);
882         if (ret < 0) {
883                 dbg_hid("reading report descriptor failed\n");
884                 kfree(rdesc);
885                 goto err;
886         }
887
888         ret = hid_parse_report(hid, rdesc, rsize);
889         kfree(rdesc);
890         if (ret) {
891                 dbg_hid("parsing report descriptor failed\n");
892                 goto err;
893         }
894
895         hid->quirks |= quirks;
896
897         return 0;
898 err:
899         return ret;
900 }
901
902 static int usbhid_start(struct hid_device *hid)
903 {
904         struct usb_interface *intf = to_usb_interface(hid->dev.parent);
905         struct usb_host_interface *interface = intf->cur_altsetting;
906         struct usb_device *dev = interface_to_usbdev(intf);
907         struct usbhid_device *usbhid = hid->driver_data;
908         unsigned int n, insize = 0;
909         int ret;
910
911         clear_bit(HID_DISCONNECTED, &usbhid->iofl);
912
913         usbhid->bufsize = HID_MIN_BUFFER_SIZE;
914         hid_find_max_report(hid, HID_INPUT_REPORT, &usbhid->bufsize);
915         hid_find_max_report(hid, HID_OUTPUT_REPORT, &usbhid->bufsize);
916         hid_find_max_report(hid, HID_FEATURE_REPORT, &usbhid->bufsize);
917
918         if (usbhid->bufsize > HID_MAX_BUFFER_SIZE)
919                 usbhid->bufsize = HID_MAX_BUFFER_SIZE;
920
921         hid_find_max_report(hid, HID_INPUT_REPORT, &insize);
922
923         if (insize > HID_MAX_BUFFER_SIZE)
924                 insize = HID_MAX_BUFFER_SIZE;
925
926         if (hid_alloc_buffers(dev, hid)) {
927                 ret = -ENOMEM;
928                 goto fail;
929         }
930
931         for (n = 0; n < interface->desc.bNumEndpoints; n++) {
932                 struct usb_endpoint_descriptor *endpoint;
933                 int pipe;
934                 int interval;
935
936                 endpoint = &interface->endpoint[n].desc;
937                 if (!usb_endpoint_xfer_int(endpoint))
938                         continue;
939
940                 interval = endpoint->bInterval;
941
942                 /* Some vendors give fullspeed interval on highspeed devides */
943                 if (hid->quirks & HID_QUIRK_FULLSPEED_INTERVAL &&
944                     dev->speed == USB_SPEED_HIGH) {
945                         interval = fls(endpoint->bInterval*8);
946                         printk(KERN_INFO "%s: Fixing fullspeed to highspeed interval: %d -> %d\n",
947                                hid->name, endpoint->bInterval, interval);
948                 }
949
950                 /* Change the polling interval of mice. */
951                 if (hid->collection->usage == HID_GD_MOUSE && hid_mousepoll_interval > 0)
952                         interval = hid_mousepoll_interval;
953
954                 ret = -ENOMEM;
955                 if (usb_endpoint_dir_in(endpoint)) {
956                         if (usbhid->urbin)
957                                 continue;
958                         if (!(usbhid->urbin = usb_alloc_urb(0, GFP_KERNEL)))
959                                 goto fail;
960                         pipe = usb_rcvintpipe(dev, endpoint->bEndpointAddress);
961                         usb_fill_int_urb(usbhid->urbin, dev, pipe, usbhid->inbuf, insize,
962                                          hid_irq_in, hid, interval);
963                         usbhid->urbin->transfer_dma = usbhid->inbuf_dma;
964                         usbhid->urbin->transfer_flags |= URB_NO_TRANSFER_DMA_MAP;
965                 } else {
966                         if (usbhid->urbout)
967                                 continue;
968                         if (!(usbhid->urbout = usb_alloc_urb(0, GFP_KERNEL)))
969                                 goto fail;
970                         pipe = usb_sndintpipe(dev, endpoint->bEndpointAddress);
971                         usb_fill_int_urb(usbhid->urbout, dev, pipe, usbhid->outbuf, 0,
972                                          hid_irq_out, hid, interval);
973                         usbhid->urbout->transfer_dma = usbhid->outbuf_dma;
974                         usbhid->urbout->transfer_flags |= URB_NO_TRANSFER_DMA_MAP;
975                 }
976         }
977
978         init_waitqueue_head(&usbhid->wait);
979         INIT_WORK(&usbhid->reset_work, hid_reset);
980         INIT_WORK(&usbhid->restart_work, __usbhid_restart_queues);
981         setup_timer(&usbhid->io_retry, hid_retry_timeout, (unsigned long) hid);
982
983         spin_lock_init(&usbhid->lock);
984
985         usbhid->intf = intf;
986         usbhid->ifnum = interface->desc.bInterfaceNumber;
987
988         usbhid->urbctrl = usb_alloc_urb(0, GFP_KERNEL);
989         if (!usbhid->urbctrl) {
990                 ret = -ENOMEM;
991                 goto fail;
992         }
993
994         usb_fill_control_urb(usbhid->urbctrl, dev, 0, (void *) usbhid->cr,
995                              usbhid->ctrlbuf, 1, hid_ctrl, hid);
996         usbhid->urbctrl->setup_dma = usbhid->cr_dma;
997         usbhid->urbctrl->transfer_dma = usbhid->ctrlbuf_dma;
998         usbhid->urbctrl->transfer_flags |= (URB_NO_TRANSFER_DMA_MAP | URB_NO_SETUP_DMA_MAP);
999
1000         if (!(hid->quirks & HID_QUIRK_NO_INIT_REPORTS))
1001                 usbhid_init_reports(hid);
1002
1003         set_bit(HID_STARTED, &usbhid->iofl);
1004
1005         /* Some keyboards don't work until their LEDs have been set.
1006          * Since BIOSes do set the LEDs, it must be safe for any device
1007          * that supports the keyboard boot protocol.
1008          */
1009         if (interface->desc.bInterfaceSubClass == USB_INTERFACE_SUBCLASS_BOOT &&
1010                         interface->desc.bInterfaceProtocol ==
1011                                 USB_INTERFACE_PROTOCOL_KEYBOARD)
1012                 usbhid_set_leds(hid);
1013
1014         return 0;
1015
1016 fail:
1017         usb_free_urb(usbhid->urbin);
1018         usb_free_urb(usbhid->urbout);
1019         usb_free_urb(usbhid->urbctrl);
1020         usbhid->urbin = NULL;
1021         usbhid->urbout = NULL;
1022         usbhid->urbctrl = NULL;
1023         hid_free_buffers(dev, hid);
1024         return ret;
1025 }
1026
1027 static void usbhid_stop(struct hid_device *hid)
1028 {
1029         struct usbhid_device *usbhid = hid->driver_data;
1030
1031         if (WARN_ON(!usbhid))
1032                 return;
1033
1034         clear_bit(HID_STARTED, &usbhid->iofl);
1035         spin_lock_irq(&usbhid->lock);   /* Sync with error handler */
1036         set_bit(HID_DISCONNECTED, &usbhid->iofl);
1037         spin_unlock_irq(&usbhid->lock);
1038         usb_kill_urb(usbhid->urbin);
1039         usb_kill_urb(usbhid->urbout);
1040         usb_kill_urb(usbhid->urbctrl);
1041
1042         hid_cancel_delayed_stuff(usbhid);
1043
1044         hid->claimed = 0;
1045
1046         usb_free_urb(usbhid->urbin);
1047         usb_free_urb(usbhid->urbctrl);
1048         usb_free_urb(usbhid->urbout);
1049         usbhid->urbin = NULL; /* don't mess up next start */
1050         usbhid->urbctrl = NULL;
1051         usbhid->urbout = NULL;
1052
1053         hid_free_buffers(hid_to_usb_dev(hid), hid);
1054 }
1055
1056 static int usbhid_power(struct hid_device *hid, int lvl)
1057 {
1058         int r = 0;
1059
1060         switch (lvl) {
1061         case PM_HINT_FULLON:
1062                 r = usbhid_get_power(hid);
1063                 break;
1064         case PM_HINT_NORMAL:
1065                 usbhid_put_power(hid);
1066                 break;
1067         }
1068         return r;
1069 }
1070
1071 static struct hid_ll_driver usb_hid_driver = {
1072         .parse = usbhid_parse,
1073         .start = usbhid_start,
1074         .stop = usbhid_stop,
1075         .open = usbhid_open,
1076         .close = usbhid_close,
1077         .power = usbhid_power,
1078         .hidinput_input_event = usb_hidinput_input_event,
1079 };
1080
1081 static int usbhid_probe(struct usb_interface *intf, const struct usb_device_id *id)
1082 {
1083         struct usb_host_interface *interface = intf->cur_altsetting;
1084         struct usb_device *dev = interface_to_usbdev(intf);
1085         struct usbhid_device *usbhid;
1086         struct hid_device *hid;
1087         unsigned int n, has_in = 0;
1088         size_t len;
1089         int ret;
1090
1091         dbg_hid("HID probe called for ifnum %d\n",
1092                         intf->altsetting->desc.bInterfaceNumber);
1093
1094         for (n = 0; n < interface->desc.bNumEndpoints; n++)
1095                 if (usb_endpoint_is_int_in(&interface->endpoint[n].desc))
1096                         has_in++;
1097         if (!has_in) {
1098                 dev_err(&intf->dev, "couldn't find an input interrupt "
1099                                 "endpoint\n");
1100                 return -ENODEV;
1101         }
1102
1103         hid = hid_allocate_device();
1104         if (IS_ERR(hid))
1105                 return PTR_ERR(hid);
1106
1107         usb_set_intfdata(intf, hid);
1108         hid->ll_driver = &usb_hid_driver;
1109         hid->hid_output_raw_report = usbhid_output_raw_report;
1110         hid->ff_init = hid_pidff_init;
1111 #ifdef CONFIG_USB_HIDDEV
1112         hid->hiddev_connect = hiddev_connect;
1113         hid->hiddev_disconnect = hiddev_disconnect;
1114         hid->hiddev_hid_event = hiddev_hid_event;
1115         hid->hiddev_report_event = hiddev_report_event;
1116 #endif
1117         hid->dev.parent = &intf->dev;
1118         hid->bus = BUS_USB;
1119         hid->vendor = le16_to_cpu(dev->descriptor.idVendor);
1120         hid->product = le16_to_cpu(dev->descriptor.idProduct);
1121         hid->name[0] = 0;
1122         if (intf->cur_altsetting->desc.bInterfaceProtocol ==
1123                         USB_INTERFACE_PROTOCOL_MOUSE)
1124                 hid->type = HID_TYPE_USBMOUSE;
1125
1126         if (dev->manufacturer)
1127                 strlcpy(hid->name, dev->manufacturer, sizeof(hid->name));
1128
1129         if (dev->product) {
1130                 if (dev->manufacturer)
1131                         strlcat(hid->name, " ", sizeof(hid->name));
1132                 strlcat(hid->name, dev->product, sizeof(hid->name));
1133         }
1134
1135         if (!strlen(hid->name))
1136                 snprintf(hid->name, sizeof(hid->name), "HID %04x:%04x",
1137                          le16_to_cpu(dev->descriptor.idVendor),
1138                          le16_to_cpu(dev->descriptor.idProduct));
1139
1140         usb_make_path(dev, hid->phys, sizeof(hid->phys));
1141         strlcat(hid->phys, "/input", sizeof(hid->phys));
1142         len = strlen(hid->phys);
1143         if (len < sizeof(hid->phys) - 1)
1144                 snprintf(hid->phys + len, sizeof(hid->phys) - len,
1145                          "%d", intf->altsetting[0].desc.bInterfaceNumber);
1146
1147         if (usb_string(dev, dev->descriptor.iSerialNumber, hid->uniq, 64) <= 0)
1148                 hid->uniq[0] = 0;
1149
1150         usbhid = kzalloc(sizeof(*usbhid), GFP_KERNEL);
1151         if (usbhid == NULL) {
1152                 ret = -ENOMEM;
1153                 goto err;
1154         }
1155
1156         hid->driver_data = usbhid;
1157         usbhid->hid = hid;
1158
1159         ret = hid_add_device(hid);
1160         if (ret) {
1161                 if (ret != -ENODEV)
1162                         dev_err(&intf->dev, "can't add hid device: %d\n", ret);
1163                 goto err_free;
1164         }
1165
1166         return 0;
1167 err_free:
1168         kfree(usbhid);
1169 err:
1170         hid_destroy_device(hid);
1171         return ret;
1172 }
1173
1174 static void usbhid_disconnect(struct usb_interface *intf)
1175 {
1176         struct hid_device *hid = usb_get_intfdata(intf);
1177         struct usbhid_device *usbhid;
1178
1179         if (WARN_ON(!hid))
1180                 return;
1181
1182         usbhid = hid->driver_data;
1183         hid_destroy_device(hid);
1184         kfree(usbhid);
1185 }
1186
1187 static void hid_cancel_delayed_stuff(struct usbhid_device *usbhid)
1188 {
1189         del_timer_sync(&usbhid->io_retry);
1190         cancel_work_sync(&usbhid->restart_work);
1191         cancel_work_sync(&usbhid->reset_work);
1192 }
1193
1194 static void hid_cease_io(struct usbhid_device *usbhid)
1195 {
1196         del_timer(&usbhid->io_retry);
1197         usb_kill_urb(usbhid->urbin);
1198         usb_kill_urb(usbhid->urbctrl);
1199         usb_kill_urb(usbhid->urbout);
1200 }
1201
1202 /* Treat USB reset pretty much the same as suspend/resume */
1203 static int hid_pre_reset(struct usb_interface *intf)
1204 {
1205         struct hid_device *hid = usb_get_intfdata(intf);
1206         struct usbhid_device *usbhid = hid->driver_data;
1207
1208         spin_lock_irq(&usbhid->lock);
1209         set_bit(HID_RESET_PENDING, &usbhid->iofl);
1210         spin_unlock_irq(&usbhid->lock);
1211         cancel_work_sync(&usbhid->restart_work);
1212         hid_cease_io(usbhid);
1213
1214         return 0;
1215 }
1216
1217 /* Same routine used for post_reset and reset_resume */
1218 static int hid_post_reset(struct usb_interface *intf)
1219 {
1220         struct usb_device *dev = interface_to_usbdev (intf);
1221         struct hid_device *hid = usb_get_intfdata(intf);
1222         struct usbhid_device *usbhid = hid->driver_data;
1223         int status;
1224
1225         spin_lock_irq(&usbhid->lock);
1226         clear_bit(HID_RESET_PENDING, &usbhid->iofl);
1227         spin_unlock_irq(&usbhid->lock);
1228         hid_set_idle(dev, intf->cur_altsetting->desc.bInterfaceNumber, 0, 0);
1229         status = hid_start_in(hid);
1230         if (status < 0)
1231                 hid_io_error(hid);
1232         usbhid_restart_queues(usbhid);
1233
1234         return 0;
1235 }
1236
1237 int usbhid_get_power(struct hid_device *hid)
1238 {
1239         struct usbhid_device *usbhid = hid->driver_data;
1240
1241         return usb_autopm_get_interface(usbhid->intf);
1242 }
1243
1244 void usbhid_put_power(struct hid_device *hid)
1245 {
1246         struct usbhid_device *usbhid = hid->driver_data;
1247
1248         usb_autopm_put_interface(usbhid->intf);
1249 }
1250
1251
1252 #ifdef CONFIG_PM
1253 static int hid_suspend(struct usb_interface *intf, pm_message_t message)
1254 {
1255         struct hid_device *hid = usb_get_intfdata(intf);
1256         struct usbhid_device *usbhid = hid->driver_data;
1257         int status;
1258
1259         if (message.event & PM_EVENT_AUTO) {
1260                 spin_lock_irq(&usbhid->lock);   /* Sync with error handler */
1261                 if (!test_bit(HID_RESET_PENDING, &usbhid->iofl)
1262                     && !test_bit(HID_CLEAR_HALT, &usbhid->iofl)
1263                     && !test_bit(HID_OUT_RUNNING, &usbhid->iofl)
1264                     && !test_bit(HID_CTRL_RUNNING, &usbhid->iofl)
1265                     && !test_bit(HID_KEYS_PRESSED, &usbhid->iofl)
1266                     && (!usbhid->ledcount || ignoreled))
1267                 {
1268                         set_bit(HID_REPORTED_IDLE, &usbhid->iofl);
1269                         spin_unlock_irq(&usbhid->lock);
1270                 } else {
1271                         usbhid_mark_busy(usbhid);
1272                         spin_unlock_irq(&usbhid->lock);
1273                         return -EBUSY;
1274                 }
1275
1276         } else {
1277                 spin_lock_irq(&usbhid->lock);
1278                 set_bit(HID_REPORTED_IDLE, &usbhid->iofl);
1279                 spin_unlock_irq(&usbhid->lock);
1280                 if (usbhid_wait_io(hid) < 0)
1281                         return -EIO;
1282         }
1283
1284         if (!ignoreled && (message.event & PM_EVENT_AUTO)) {
1285                 spin_lock_irq(&usbhid->lock);
1286                 if (test_bit(HID_LED_ON, &usbhid->iofl)) {
1287                         spin_unlock_irq(&usbhid->lock);
1288                         usbhid_mark_busy(usbhid);
1289                         return -EBUSY;
1290                 }
1291                 spin_unlock_irq(&usbhid->lock);
1292         }
1293
1294         hid_cancel_delayed_stuff(usbhid);
1295         hid_cease_io(usbhid);
1296
1297         if ((message.event & PM_EVENT_AUTO) &&
1298                         test_bit(HID_KEYS_PRESSED, &usbhid->iofl)) {
1299                 /* lost race against keypresses */
1300                 status = hid_start_in(hid);
1301                 if (status < 0)
1302                         hid_io_error(hid);
1303                 usbhid_mark_busy(usbhid);
1304                 return -EBUSY;
1305         }
1306         dev_dbg(&intf->dev, "suspend\n");
1307         return 0;
1308 }
1309
1310 static int hid_resume(struct usb_interface *intf)
1311 {
1312         struct hid_device *hid = usb_get_intfdata (intf);
1313         struct usbhid_device *usbhid = hid->driver_data;
1314         int status;
1315
1316         if (!test_bit(HID_STARTED, &usbhid->iofl))
1317                 return 0;
1318
1319         clear_bit(HID_REPORTED_IDLE, &usbhid->iofl);
1320         usbhid_mark_busy(usbhid);
1321
1322         if (test_bit(HID_CLEAR_HALT, &usbhid->iofl) ||
1323             test_bit(HID_RESET_PENDING, &usbhid->iofl))
1324                 schedule_work(&usbhid->reset_work);
1325         usbhid->retry_delay = 0;
1326         status = hid_start_in(hid);
1327         if (status < 0)
1328                 hid_io_error(hid);
1329         usbhid_restart_queues(usbhid);
1330
1331         dev_dbg(&intf->dev, "resume status %d\n", status);
1332         return 0;
1333 }
1334
1335 static int hid_reset_resume(struct usb_interface *intf)
1336 {
1337         struct hid_device *hid = usb_get_intfdata(intf);
1338         struct usbhid_device *usbhid = hid->driver_data;
1339
1340         clear_bit(HID_REPORTED_IDLE, &usbhid->iofl);
1341         return hid_post_reset(intf);
1342 }
1343
1344 #endif /* CONFIG_PM */
1345
1346 static struct usb_device_id hid_usb_ids [] = {
1347         { .match_flags = USB_DEVICE_ID_MATCH_INT_CLASS,
1348                 .bInterfaceClass = USB_INTERFACE_CLASS_HID },
1349         { }                                             /* Terminating entry */
1350 };
1351
1352 MODULE_DEVICE_TABLE (usb, hid_usb_ids);
1353
1354 static struct usb_driver hid_driver = {
1355         .name =         "usbhid",
1356         .probe =        usbhid_probe,
1357         .disconnect =   usbhid_disconnect,
1358 #ifdef CONFIG_PM
1359         .suspend =      hid_suspend,
1360         .resume =       hid_resume,
1361         .reset_resume = hid_reset_resume,
1362 #endif
1363         .pre_reset =    hid_pre_reset,
1364         .post_reset =   hid_post_reset,
1365         .id_table =     hid_usb_ids,
1366         .supports_autosuspend = 1,
1367 };
1368
1369 static const struct hid_device_id hid_usb_table[] = {
1370         { HID_USB_DEVICE(HID_ANY_ID, HID_ANY_ID) },
1371         { }
1372 };
1373
1374 static struct hid_driver hid_usb_driver = {
1375         .name = "generic-usb",
1376         .id_table = hid_usb_table,
1377 };
1378
1379 static int __init hid_init(void)
1380 {
1381         int retval = -ENOMEM;
1382
1383         resumption_waker = create_freezeable_workqueue("usbhid_resumer");
1384         if (!resumption_waker)
1385                 goto no_queue;
1386         retval = hid_register_driver(&hid_usb_driver);
1387         if (retval)
1388                 goto hid_register_fail;
1389         retval = usbhid_quirks_init(quirks_param);
1390         if (retval)
1391                 goto usbhid_quirks_init_fail;
1392         retval = hiddev_init();
1393         if (retval)
1394                 goto hiddev_init_fail;
1395         retval = usb_register(&hid_driver);
1396         if (retval)
1397                 goto usb_register_fail;
1398         printk(KERN_INFO KBUILD_MODNAME ": " DRIVER_DESC "\n");
1399
1400         return 0;
1401 usb_register_fail:
1402         hiddev_exit();
1403 hiddev_init_fail:
1404         usbhid_quirks_exit();
1405 usbhid_quirks_init_fail:
1406         hid_unregister_driver(&hid_usb_driver);
1407 hid_register_fail:
1408         destroy_workqueue(resumption_waker);
1409 no_queue:
1410         return retval;
1411 }
1412
1413 static void __exit hid_exit(void)
1414 {
1415         usb_deregister(&hid_driver);
1416         hiddev_exit();
1417         usbhid_quirks_exit();
1418         hid_unregister_driver(&hid_usb_driver);
1419         destroy_workqueue(resumption_waker);
1420 }
1421
1422 module_init(hid_init);
1423 module_exit(hid_exit);
1424
1425 MODULE_AUTHOR("Andreas Gal");
1426 MODULE_AUTHOR("Vojtech Pavlik");
1427 MODULE_AUTHOR("Jiri Kosina");
1428 MODULE_DESCRIPTION(DRIVER_DESC);
1429 MODULE_LICENSE(DRIVER_LICENSE);