]> bbs.cooldavid.org Git - net-next-2.6.git/blame - drivers/hid/usbhid/hid-core.c
HID: quirk for OLED devices present in ASUS G50/G70/G71
[net-next-2.6.git] / drivers / hid / usbhid / hid-core.c
CommitLineData
1da177e4
LT
1/*
2 * USB HID support for Linux
3 *
4 * Copyright (c) 1999 Andreas Gal
bf0964dc
MH
5 * Copyright (c) 2000-2005 Vojtech Pavlik <vojtech@suse.cz>
6 * Copyright (c) 2005 Michael Haboustak <mike-@cinci.rr.com> for Concept2, Inc
b55fd23c 7 * Copyright (c) 2006-2007 Jiri Kosina
1da177e4
LT
8 */
9
10/*
11 * This program is free software; you can redistribute it and/or modify it
12 * under the terms of the GNU General Public License as published by the Free
13 * Software Foundation; either version 2 of the License, or (at your option)
14 * any later version.
15 */
16
17#include <linux/module.h>
18#include <linux/slab.h>
19#include <linux/init.h>
20#include <linux/kernel.h>
1da177e4
LT
21#include <linux/list.h>
22#include <linux/mm.h>
23#include <linux/smp_lock.h>
24#include <linux/spinlock.h>
25#include <asm/unaligned.h>
26#include <asm/byteorder.h>
27#include <linux/input.h>
28#include <linux/wait.h>
29
1da177e4
LT
30#include <linux/usb.h>
31
dde5845a 32#include <linux/hid.h>
1da177e4 33#include <linux/hiddev.h>
c080d89a 34#include <linux/hid-debug.h>
86166b7b 35#include <linux/hidraw.h>
4916b3a5 36#include "usbhid.h"
1da177e4
LT
37
38/*
39 * Version Information
40 */
41
bf0964dc 42#define DRIVER_VERSION "v2.6"
f142b3a4 43#define DRIVER_AUTHOR "Andreas Gal, Vojtech Pavlik, Jiri Kosina"
1da177e4
LT
44#define DRIVER_DESC "USB HID core driver"
45#define DRIVER_LICENSE "GPL"
46
1da177e4
LT
47/*
48 * Module parameters.
49 */
50
51static unsigned int hid_mousepoll_interval;
52module_param_named(mousepoll, hid_mousepoll_interval, uint, 0644);
53MODULE_PARM_DESC(mousepoll, "Polling interval of mice");
54
876b9276
PW
55/* Quirks specified at module load time */
56static char *quirks_param[MAX_USBHID_BOOT_QUIRKS] = { [ 0 ... (MAX_USBHID_BOOT_QUIRKS - 1) ] = NULL };
57module_param_array_named(quirks, quirks_param, charp, NULL, 0444);
58MODULE_PARM_DESC(quirks, "Add/modify USB HID quirks by specifying "
59 " quirks=vendorID:productID:quirks"
60 " where vendorID, productID, and quirks are all in"
61 " 0x-prefixed hex");
1da177e4 62/*
48b4554a 63 * Input submission and I/O error handler.
1da177e4
LT
64 */
65
48b4554a
JK
66static void hid_io_error(struct hid_device *hid);
67
68/* Start up the input URB */
69static int hid_start_in(struct hid_device *hid)
1da177e4 70{
1da177e4 71 unsigned long flags;
48b4554a
JK
72 int rc = 0;
73 struct usbhid_device *usbhid = hid->driver_data;
1da177e4 74
48b4554a
JK
75 spin_lock_irqsave(&usbhid->inlock, flags);
76 if (hid->open > 0 && !test_bit(HID_SUSPENDED, &usbhid->iofl) &&
69626f23 77 !test_bit(HID_DISCONNECTED, &usbhid->iofl) &&
48b4554a
JK
78 !test_and_set_bit(HID_IN_RUNNING, &usbhid->iofl)) {
79 rc = usb_submit_urb(usbhid->urbin, GFP_ATOMIC);
80 if (rc != 0)
81 clear_bit(HID_IN_RUNNING, &usbhid->iofl);
1da177e4 82 }
48b4554a
JK
83 spin_unlock_irqrestore(&usbhid->inlock, flags);
84 return rc;
1da177e4
LT
85}
86
48b4554a
JK
87/* I/O retry timer routine */
88static void hid_retry_timeout(unsigned long _hid)
1da177e4 89{
48b4554a 90 struct hid_device *hid = (struct hid_device *) _hid;
4916b3a5 91 struct usbhid_device *usbhid = hid->driver_data;
1da177e4 92
48b4554a
JK
93 dev_dbg(&usbhid->intf->dev, "retrying intr urb\n");
94 if (hid_start_in(hid))
95 hid_io_error(hid);
1da177e4
LT
96}
97
48b4554a
JK
98/* Workqueue routine to reset the device or clear a halt */
99static void hid_reset(struct work_struct *work)
1da177e4 100{
48b4554a
JK
101 struct usbhid_device *usbhid =
102 container_of(work, struct usbhid_device, reset_work);
103 struct hid_device *hid = usbhid->hid;
104 int rc_lock, rc = 0;
1da177e4 105
48b4554a
JK
106 if (test_bit(HID_CLEAR_HALT, &usbhid->iofl)) {
107 dev_dbg(&usbhid->intf->dev, "clear halt\n");
108 rc = usb_clear_halt(hid_to_usb_dev(hid), usbhid->urbin->pipe);
109 clear_bit(HID_CLEAR_HALT, &usbhid->iofl);
110 hid_start_in(hid);
111 }
1da177e4 112
48b4554a
JK
113 else if (test_bit(HID_RESET_PENDING, &usbhid->iofl)) {
114 dev_dbg(&usbhid->intf->dev, "resetting device\n");
115 rc = rc_lock = usb_lock_device_for_reset(hid_to_usb_dev(hid), usbhid->intf);
116 if (rc_lock >= 0) {
742120c6 117 rc = usb_reset_device(hid_to_usb_dev(hid));
48b4554a
JK
118 if (rc_lock)
119 usb_unlock_device(hid_to_usb_dev(hid));
1da177e4 120 }
48b4554a 121 clear_bit(HID_RESET_PENDING, &usbhid->iofl);
1da177e4
LT
122 }
123
48b4554a
JK
124 switch (rc) {
125 case 0:
126 if (!test_bit(HID_IN_RUNNING, &usbhid->iofl))
127 hid_io_error(hid);
128 break;
129 default:
58037eb9 130 err_hid("can't reset device, %s-%s/input%d, status %d",
48b4554a
JK
131 hid_to_usb_dev(hid)->bus->bus_name,
132 hid_to_usb_dev(hid)->devpath,
133 usbhid->ifnum, rc);
134 /* FALLTHROUGH */
135 case -EHOSTUNREACH:
136 case -ENODEV:
137 case -EINTR:
138 break;
1da177e4 139 }
1da177e4
LT
140}
141
48b4554a
JK
142/* Main I/O error handler */
143static void hid_io_error(struct hid_device *hid)
dde5845a 144{
48b4554a
JK
145 unsigned long flags;
146 struct usbhid_device *usbhid = hid->driver_data;
dde5845a 147
48b4554a 148 spin_lock_irqsave(&usbhid->inlock, flags);
dde5845a 149
48b4554a 150 /* Stop when disconnected */
69626f23 151 if (test_bit(HID_DISCONNECTED, &usbhid->iofl))
48b4554a 152 goto done;
dde5845a 153
5e2a55f2
AS
154 /* If it has been a while since the last error, we'll assume
155 * this a brand new error and reset the retry timeout. */
156 if (time_after(jiffies, usbhid->stop_retry + HZ/2))
157 usbhid->retry_delay = 0;
158
48b4554a
JK
159 /* When an error occurs, retry at increasing intervals */
160 if (usbhid->retry_delay == 0) {
161 usbhid->retry_delay = 13; /* Then 26, 52, 104, 104, ... */
162 usbhid->stop_retry = jiffies + msecs_to_jiffies(1000);
163 } else if (usbhid->retry_delay < 100)
164 usbhid->retry_delay *= 2;
dde5845a 165
48b4554a 166 if (time_after(jiffies, usbhid->stop_retry)) {
4916b3a5 167
48b4554a
JK
168 /* Retries failed, so do a port reset */
169 if (!test_and_set_bit(HID_RESET_PENDING, &usbhid->iofl)) {
170 schedule_work(&usbhid->reset_work);
171 goto done;
172 }
1da177e4
LT
173 }
174
48b4554a
JK
175 mod_timer(&usbhid->io_retry,
176 jiffies + msecs_to_jiffies(usbhid->retry_delay));
177done:
178 spin_unlock_irqrestore(&usbhid->inlock, flags);
1da177e4
LT
179}
180
48b4554a
JK
181/*
182 * Input interrupt completion handler.
183 */
854561b0 184
48b4554a 185static void hid_irq_in(struct urb *urb)
1da177e4 186{
48b4554a
JK
187 struct hid_device *hid = urb->context;
188 struct usbhid_device *usbhid = hid->driver_data;
189 int status;
1da177e4 190
48b4554a 191 switch (urb->status) {
880d29f1
JS
192 case 0: /* success */
193 usbhid->retry_delay = 0;
194 hid_input_report(urb->context, HID_INPUT_REPORT,
195 urb->transfer_buffer,
196 urb->actual_length, 1);
197 break;
198 case -EPIPE: /* stall */
199 clear_bit(HID_IN_RUNNING, &usbhid->iofl);
200 set_bit(HID_CLEAR_HALT, &usbhid->iofl);
201 schedule_work(&usbhid->reset_work);
202 return;
203 case -ECONNRESET: /* unlink */
204 case -ENOENT:
205 case -ESHUTDOWN: /* unplug */
206 clear_bit(HID_IN_RUNNING, &usbhid->iofl);
207 return;
208 case -EILSEQ: /* protocol error or unplug */
209 case -EPROTO: /* protocol error or unplug */
210 case -ETIME: /* protocol error or unplug */
211 case -ETIMEDOUT: /* Should never happen, but... */
212 clear_bit(HID_IN_RUNNING, &usbhid->iofl);
213 hid_io_error(hid);
214 return;
215 default: /* error */
7d89fe12
GKH
216 dev_warn(&urb->dev->dev, "input irq status %d "
217 "received\n", urb->status);
48b4554a 218 }
1da177e4 219
48b4554a
JK
220 status = usb_submit_urb(urb, GFP_ATOMIC);
221 if (status) {
222 clear_bit(HID_IN_RUNNING, &usbhid->iofl);
223 if (status != -EPERM) {
58037eb9 224 err_hid("can't resubmit intr, %s-%s/input%d, status %d",
48b4554a
JK
225 hid_to_usb_dev(hid)->bus->bus_name,
226 hid_to_usb_dev(hid)->devpath,
227 usbhid->ifnum, status);
228 hid_io_error(hid);
229 }
230 }
1da177e4
LT
231}
232
48b4554a 233static int hid_submit_out(struct hid_device *hid)
1da177e4 234{
48b4554a 235 struct hid_report *report;
f129ea6d 236 char *raw_report;
4916b3a5
JK
237 struct usbhid_device *usbhid = hid->driver_data;
238
f129ea6d
AH
239 report = usbhid->out[usbhid->outtail].report;
240 raw_report = usbhid->out[usbhid->outtail].raw_report;
1da177e4 241
48b4554a
JK
242 usbhid->urbout->transfer_buffer_length = ((report->size - 1) >> 3) + 1 + (report->id > 0);
243 usbhid->urbout->dev = hid_to_usb_dev(hid);
f129ea6d
AH
244 memcpy(usbhid->outbuf, raw_report, usbhid->urbout->transfer_buffer_length);
245 kfree(raw_report);
1d3e2023 246
58037eb9 247 dbg_hid("submitting out urb\n");
d57cdcff 248
48b4554a 249 if (usb_submit_urb(usbhid->urbout, GFP_ATOMIC)) {
58037eb9 250 err_hid("usb_submit_urb(out) failed");
48b4554a
JK
251 return -1;
252 }
1da177e4 253
48b4554a
JK
254 return 0;
255}
256
257static int hid_submit_ctrl(struct hid_device *hid)
1da177e4
LT
258{
259 struct hid_report *report;
48b4554a 260 unsigned char dir;
f129ea6d 261 char *raw_report;
48b4554a 262 int len;
4916b3a5 263 struct usbhid_device *usbhid = hid->driver_data;
1da177e4 264
48b4554a 265 report = usbhid->ctrl[usbhid->ctrltail].report;
f129ea6d 266 raw_report = usbhid->ctrl[usbhid->ctrltail].raw_report;
48b4554a 267 dir = usbhid->ctrl[usbhid->ctrltail].dir;
1da177e4 268
48b4554a
JK
269 len = ((report->size - 1) >> 3) + 1 + (report->id > 0);
270 if (dir == USB_DIR_OUT) {
48b4554a
JK
271 usbhid->urbctrl->pipe = usb_sndctrlpipe(hid_to_usb_dev(hid), 0);
272 usbhid->urbctrl->transfer_buffer_length = len;
f129ea6d
AH
273 memcpy(usbhid->ctrlbuf, raw_report, len);
274 kfree(raw_report);
48b4554a
JK
275 } else {
276 int maxpacket, padlen;
1da177e4 277
48b4554a
JK
278 usbhid->urbctrl->pipe = usb_rcvctrlpipe(hid_to_usb_dev(hid), 0);
279 maxpacket = usb_maxpacket(hid_to_usb_dev(hid), usbhid->urbctrl->pipe, 0);
280 if (maxpacket > 0) {
92c4a1b9 281 padlen = DIV_ROUND_UP(len, maxpacket);
48b4554a
JK
282 padlen *= maxpacket;
283 if (padlen > usbhid->bufsize)
284 padlen = usbhid->bufsize;
285 } else
286 padlen = 0;
287 usbhid->urbctrl->transfer_buffer_length = padlen;
1da177e4 288 }
48b4554a 289 usbhid->urbctrl->dev = hid_to_usb_dev(hid);
1da177e4 290
48b4554a
JK
291 usbhid->cr->bRequestType = USB_TYPE_CLASS | USB_RECIP_INTERFACE | dir;
292 usbhid->cr->bRequest = (dir == USB_DIR_OUT) ? HID_REQ_SET_REPORT : HID_REQ_GET_REPORT;
293 usbhid->cr->wValue = cpu_to_le16(((report->type + 1) << 8) | report->id);
294 usbhid->cr->wIndex = cpu_to_le16(usbhid->ifnum);
295 usbhid->cr->wLength = cpu_to_le16(len);
1da177e4 296
58037eb9 297 dbg_hid("submitting ctrl urb: %s wValue=0x%04x wIndex=0x%04x wLength=%u\n",
48b4554a
JK
298 usbhid->cr->bRequest == HID_REQ_SET_REPORT ? "Set_Report" : "Get_Report",
299 usbhid->cr->wValue, usbhid->cr->wIndex, usbhid->cr->wLength);
1da177e4 300
48b4554a 301 if (usb_submit_urb(usbhid->urbctrl, GFP_ATOMIC)) {
58037eb9 302 err_hid("usb_submit_urb(ctrl) failed");
48b4554a
JK
303 return -1;
304 }
1da177e4 305
48b4554a
JK
306 return 0;
307}
1da177e4 308
48b4554a
JK
309/*
310 * Output interrupt completion handler.
311 */
1da177e4 312
48b4554a
JK
313static void hid_irq_out(struct urb *urb)
314{
315 struct hid_device *hid = urb->context;
316 struct usbhid_device *usbhid = hid->driver_data;
317 unsigned long flags;
318 int unplug = 0;
1da177e4 319
48b4554a 320 switch (urb->status) {
880d29f1
JS
321 case 0: /* success */
322 break;
323 case -ESHUTDOWN: /* unplug */
324 unplug = 1;
325 case -EILSEQ: /* protocol error or unplug */
326 case -EPROTO: /* protocol error or unplug */
327 case -ECONNRESET: /* unlink */
328 case -ENOENT:
329 break;
330 default: /* error */
7d89fe12
GKH
331 dev_warn(&urb->dev->dev, "output irq status %d "
332 "received\n", urb->status);
48b4554a 333 }
1da177e4 334
48b4554a 335 spin_lock_irqsave(&usbhid->outlock, flags);
1da177e4 336
48b4554a
JK
337 if (unplug)
338 usbhid->outtail = usbhid->outhead;
339 else
340 usbhid->outtail = (usbhid->outtail + 1) & (HID_OUTPUT_FIFO_SIZE - 1);
1da177e4 341
48b4554a
JK
342 if (usbhid->outhead != usbhid->outtail) {
343 if (hid_submit_out(hid)) {
344 clear_bit(HID_OUT_RUNNING, &usbhid->iofl);
1d1bdd20 345 wake_up(&usbhid->wait);
48b4554a
JK
346 }
347 spin_unlock_irqrestore(&usbhid->outlock, flags);
348 return;
349 }
1da177e4 350
48b4554a
JK
351 clear_bit(HID_OUT_RUNNING, &usbhid->iofl);
352 spin_unlock_irqrestore(&usbhid->outlock, flags);
1d1bdd20 353 wake_up(&usbhid->wait);
48b4554a 354}
6345fdfd 355
48b4554a
JK
356/*
357 * Control pipe completion handler.
358 */
1da177e4 359
48b4554a
JK
360static void hid_ctrl(struct urb *urb)
361{
362 struct hid_device *hid = urb->context;
363 struct usbhid_device *usbhid = hid->driver_data;
364 unsigned long flags;
365 int unplug = 0;
1da177e4 366
48b4554a 367 spin_lock_irqsave(&usbhid->ctrllock, flags);
1da177e4 368
48b4554a 369 switch (urb->status) {
880d29f1
JS
370 case 0: /* success */
371 if (usbhid->ctrl[usbhid->ctrltail].dir == USB_DIR_IN)
372 hid_input_report(urb->context,
373 usbhid->ctrl[usbhid->ctrltail].report->type,
374 urb->transfer_buffer, urb->actual_length, 0);
375 break;
376 case -ESHUTDOWN: /* unplug */
377 unplug = 1;
378 case -EILSEQ: /* protocol error or unplug */
379 case -EPROTO: /* protocol error or unplug */
380 case -ECONNRESET: /* unlink */
381 case -ENOENT:
382 case -EPIPE: /* report not available */
383 break;
384 default: /* error */
7d89fe12
GKH
385 dev_warn(&urb->dev->dev, "ctrl urb status %d "
386 "received\n", urb->status);
48b4554a 387 }
1da177e4 388
48b4554a
JK
389 if (unplug)
390 usbhid->ctrltail = usbhid->ctrlhead;
391 else
392 usbhid->ctrltail = (usbhid->ctrltail + 1) & (HID_CONTROL_FIFO_SIZE - 1);
1da177e4 393
48b4554a
JK
394 if (usbhid->ctrlhead != usbhid->ctrltail) {
395 if (hid_submit_ctrl(hid)) {
396 clear_bit(HID_CTRL_RUNNING, &usbhid->iofl);
1d1bdd20 397 wake_up(&usbhid->wait);
48b4554a
JK
398 }
399 spin_unlock_irqrestore(&usbhid->ctrllock, flags);
400 return;
401 }
1da177e4 402
48b4554a
JK
403 clear_bit(HID_CTRL_RUNNING, &usbhid->iofl);
404 spin_unlock_irqrestore(&usbhid->ctrllock, flags);
1d1bdd20 405 wake_up(&usbhid->wait);
48b4554a 406}
1da177e4 407
48b4554a
JK
408void usbhid_submit_report(struct hid_device *hid, struct hid_report *report, unsigned char dir)
409{
410 int head;
411 unsigned long flags;
412 struct usbhid_device *usbhid = hid->driver_data;
f129ea6d 413 int len = ((report->size - 1) >> 3) + 1 + (report->id > 0);
1da177e4 414
48b4554a
JK
415 if ((hid->quirks & HID_QUIRK_NOGET) && dir == USB_DIR_IN)
416 return;
b857c651 417
48b4554a 418 if (usbhid->urbout && dir == USB_DIR_OUT && report->type == HID_OUTPUT_REPORT) {
1da177e4 419
48b4554a 420 spin_lock_irqsave(&usbhid->outlock, flags);
1da177e4 421
48b4554a
JK
422 if ((head = (usbhid->outhead + 1) & (HID_OUTPUT_FIFO_SIZE - 1)) == usbhid->outtail) {
423 spin_unlock_irqrestore(&usbhid->outlock, flags);
7d89fe12 424 dev_warn(&hid->dev, "output queue full\n");
48b4554a
JK
425 return;
426 }
1da177e4 427
f129ea6d
AH
428 usbhid->out[usbhid->outhead].raw_report = kmalloc(len, GFP_ATOMIC);
429 if (!usbhid->out[usbhid->outhead].raw_report) {
430 spin_unlock_irqrestore(&usbhid->outlock, flags);
431 warn("output queueing failed");
432 return;
433 }
434 hid_output_report(report, usbhid->out[usbhid->outhead].raw_report);
435 usbhid->out[usbhid->outhead].report = report;
48b4554a 436 usbhid->outhead = head;
4871d3be 437
48b4554a
JK
438 if (!test_and_set_bit(HID_OUT_RUNNING, &usbhid->iofl))
439 if (hid_submit_out(hid))
440 clear_bit(HID_OUT_RUNNING, &usbhid->iofl);
8fd6db47 441
48b4554a
JK
442 spin_unlock_irqrestore(&usbhid->outlock, flags);
443 return;
444 }
1da177e4 445
48b4554a 446 spin_lock_irqsave(&usbhid->ctrllock, flags);
940824b0 447
48b4554a
JK
448 if ((head = (usbhid->ctrlhead + 1) & (HID_CONTROL_FIFO_SIZE - 1)) == usbhid->ctrltail) {
449 spin_unlock_irqrestore(&usbhid->ctrllock, flags);
7d89fe12 450 dev_warn(&hid->dev, "control queue full\n");
48b4554a
JK
451 return;
452 }
8fd80133 453
f129ea6d
AH
454 if (dir == USB_DIR_OUT) {
455 usbhid->ctrl[usbhid->ctrlhead].raw_report = kmalloc(len, GFP_ATOMIC);
456 if (!usbhid->ctrl[usbhid->ctrlhead].raw_report) {
457 spin_unlock_irqrestore(&usbhid->ctrllock, flags);
458 warn("control queueing failed");
459 return;
460 }
461 hid_output_report(report, usbhid->ctrl[usbhid->ctrlhead].raw_report);
462 }
48b4554a
JK
463 usbhid->ctrl[usbhid->ctrlhead].report = report;
464 usbhid->ctrl[usbhid->ctrlhead].dir = dir;
465 usbhid->ctrlhead = head;
8fd80133 466
48b4554a
JK
467 if (!test_and_set_bit(HID_CTRL_RUNNING, &usbhid->iofl))
468 if (hid_submit_ctrl(hid))
469 clear_bit(HID_CTRL_RUNNING, &usbhid->iofl);
931e24b9 470
48b4554a
JK
471 spin_unlock_irqrestore(&usbhid->ctrllock, flags);
472}
606bd0a8 473EXPORT_SYMBOL_GPL(usbhid_submit_report);
23b0d968 474
48b4554a
JK
475static int usb_hidinput_input_event(struct input_dev *dev, unsigned int type, unsigned int code, int value)
476{
e0712985 477 struct hid_device *hid = input_get_drvdata(dev);
48b4554a
JK
478 struct hid_field *field;
479 int offset;
41ad5fba 480
48b4554a
JK
481 if (type == EV_FF)
482 return input_ff_event(dev, type, code, value);
8d2bad87 483
48b4554a
JK
484 if (type != EV_LED)
485 return -1;
5556feae 486
48b4554a 487 if ((offset = hidinput_find_field(hid, type, code, &field)) == -1) {
7d89fe12 488 dev_warn(&dev->dev, "event field not found\n");
48b4554a
JK
489 return -1;
490 }
4a1a4d8b 491
48b4554a
JK
492 hid_set_field(field, offset, value);
493 usbhid_submit_report(hid, field->report, USB_DIR_OUT);
1da177e4 494
48b4554a
JK
495 return 0;
496}
1da177e4 497
48b4554a
JK
498int usbhid_wait_io(struct hid_device *hid)
499{
500 struct usbhid_device *usbhid = hid->driver_data;
25914662 501
1d1bdd20
JS
502 if (!wait_event_timeout(usbhid->wait,
503 (!test_bit(HID_CTRL_RUNNING, &usbhid->iofl) &&
504 !test_bit(HID_OUT_RUNNING, &usbhid->iofl)),
48b4554a 505 10*HZ)) {
58037eb9 506 dbg_hid("timeout waiting for ctrl or out queue to clear\n");
48b4554a
JK
507 return -1;
508 }
1da177e4 509
48b4554a
JK
510 return 0;
511}
53880546 512
48b4554a
JK
513static int hid_set_idle(struct usb_device *dev, int ifnum, int report, int idle)
514{
515 return usb_control_msg(dev, usb_sndctrlpipe(dev, 0),
516 HID_REQ_SET_IDLE, USB_TYPE_CLASS | USB_RECIP_INTERFACE, (idle << 8) | report,
517 ifnum, NULL, 0, USB_CTRL_SET_TIMEOUT);
518}
1da177e4 519
48b4554a
JK
520static int hid_get_class_descriptor(struct usb_device *dev, int ifnum,
521 unsigned char type, void *buf, int size)
522{
523 int result, retries = 4;
1da177e4 524
48b4554a 525 memset(buf, 0, size);
1da177e4 526
48b4554a
JK
527 do {
528 result = usb_control_msg(dev, usb_rcvctrlpipe(dev, 0),
529 USB_REQ_GET_DESCRIPTOR, USB_RECIP_INTERFACE | USB_DIR_IN,
530 (type << 8), ifnum, buf, size, USB_CTRL_GET_TIMEOUT);
531 retries--;
532 } while (result < size && retries);
533 return result;
534}
940824b0 535
48b4554a
JK
536int usbhid_open(struct hid_device *hid)
537{
933e3187
ON
538 struct usbhid_device *usbhid = hid->driver_data;
539 int res;
540
541 if (!hid->open++) {
542 res = usb_autopm_get_interface(usbhid->intf);
543 if (res < 0) {
544 hid->open--;
545 return -EIO;
546 }
547 }
48b4554a
JK
548 if (hid_start_in(hid))
549 hid_io_error(hid);
550 return 0;
551}
a417a21e 552
48b4554a
JK
553void usbhid_close(struct hid_device *hid)
554{
555 struct usbhid_device *usbhid = hid->driver_data;
eab9edd2 556
933e3187 557 if (!--hid->open) {
48b4554a 558 usb_kill_urb(usbhid->urbin);
933e3187
ON
559 usb_autopm_put_interface(usbhid->intf);
560 }
48b4554a 561}
1d3e2023 562
48b4554a
JK
563/*
564 * Initialize all reports
565 */
41ad5fba 566
48b4554a
JK
567void usbhid_init_reports(struct hid_device *hid)
568{
569 struct hid_report *report;
570 struct usbhid_device *usbhid = hid->driver_data;
571 int err, ret;
41ad5fba 572
48b4554a
JK
573 list_for_each_entry(report, &hid->report_enum[HID_INPUT_REPORT].report_list, list)
574 usbhid_submit_report(hid, report, USB_DIR_IN);
5556feae 575
48b4554a
JK
576 list_for_each_entry(report, &hid->report_enum[HID_FEATURE_REPORT].report_list, list)
577 usbhid_submit_report(hid, report, USB_DIR_IN);
4a1a4d8b 578
48b4554a
JK
579 err = 0;
580 ret = usbhid_wait_io(hid);
581 while (ret) {
582 err |= ret;
583 if (test_bit(HID_CTRL_RUNNING, &usbhid->iofl))
584 usb_kill_urb(usbhid->urbctrl);
585 if (test_bit(HID_OUT_RUNNING, &usbhid->iofl))
586 usb_kill_urb(usbhid->urbout);
587 ret = usbhid_wait_io(hid);
588 }
3f9b4076 589
48b4554a 590 if (err)
7d89fe12 591 dev_warn(&hid->dev, "timeout initializing reports\n");
48b4554a 592}
1da177e4 593
713c8aad
PZ
594/*
595 * Reset LEDs which BIOS might have left on. For now, just NumLock (0x01).
596 */
597static int hid_find_field_early(struct hid_device *hid, unsigned int page,
598 unsigned int hid_code, struct hid_field **pfield)
599{
600 struct hid_report *report;
601 struct hid_field *field;
602 struct hid_usage *usage;
603 int i, j;
604
605 list_for_each_entry(report, &hid->report_enum[HID_OUTPUT_REPORT].report_list, list) {
606 for (i = 0; i < report->maxfield; i++) {
607 field = report->field[i];
608 for (j = 0; j < field->maxusage; j++) {
609 usage = &field->usage[j];
610 if ((usage->hid & HID_USAGE_PAGE) == page &&
611 (usage->hid & 0xFFFF) == hid_code) {
612 *pfield = field;
613 return j;
614 }
615 }
616 }
617 }
618 return -1;
619}
620
6edfa8dc 621void usbhid_set_leds(struct hid_device *hid)
713c8aad
PZ
622{
623 struct hid_field *field;
624 int offset;
625
626 if ((offset = hid_find_field_early(hid, HID_UP_LED, 0x01, &field)) != -1) {
627 hid_set_field(field, offset, 0);
628 usbhid_submit_report(hid, field->report, USB_DIR_OUT);
629 }
630}
6edfa8dc 631EXPORT_SYMBOL_GPL(usbhid_set_leds);
713c8aad 632
bf0964dc
MH
633/*
634 * Traverse the supplied list of reports and find the longest
635 */
282bfd4c
JS
636static void hid_find_max_report(struct hid_device *hid, unsigned int type,
637 unsigned int *max)
bf0964dc
MH
638{
639 struct hid_report *report;
282bfd4c 640 unsigned int size;
bf0964dc
MH
641
642 list_for_each_entry(report, &hid->report_enum[type].report_list, list) {
643 size = ((report->size - 1) >> 3) + 1;
644 if (type == HID_INPUT_REPORT && hid->report_enum[type].numbered)
645 size++;
646 if (*max < size)
647 *max = size;
648 }
649}
650
1da177e4
LT
651static int hid_alloc_buffers(struct usb_device *dev, struct hid_device *hid)
652{
4916b3a5
JK
653 struct usbhid_device *usbhid = hid->driver_data;
654
655 if (!(usbhid->inbuf = usb_buffer_alloc(dev, usbhid->bufsize, GFP_ATOMIC, &usbhid->inbuf_dma)))
1da177e4 656 return -1;
4916b3a5 657 if (!(usbhid->outbuf = usb_buffer_alloc(dev, usbhid->bufsize, GFP_ATOMIC, &usbhid->outbuf_dma)))
1da177e4 658 return -1;
4916b3a5 659 if (!(usbhid->cr = usb_buffer_alloc(dev, sizeof(*(usbhid->cr)), GFP_ATOMIC, &usbhid->cr_dma)))
1da177e4 660 return -1;
4916b3a5 661 if (!(usbhid->ctrlbuf = usb_buffer_alloc(dev, usbhid->bufsize, GFP_ATOMIC, &usbhid->ctrlbuf_dma)))
1da177e4
LT
662 return -1;
663
664 return 0;
665}
666
efc493f9
JK
667static int usbhid_output_raw_report(struct hid_device *hid, __u8 *buf, size_t count)
668{
669 struct usbhid_device *usbhid = hid->driver_data;
670 struct usb_device *dev = hid_to_usb_dev(hid);
671 struct usb_interface *intf = usbhid->intf;
672 struct usb_host_interface *interface = intf->cur_altsetting;
673 int ret;
674
675 ret = usb_control_msg(dev, usb_sndctrlpipe(dev, 0),
676 HID_REQ_SET_REPORT,
677 USB_DIR_OUT | USB_TYPE_CLASS | USB_RECIP_INTERFACE,
01d7b369 678 ((HID_OUTPUT_REPORT + 1) << 8) | *buf,
efc493f9
JK
679 interface->desc.bInterfaceNumber, buf + 1, count - 1,
680 USB_CTRL_SET_TIMEOUT);
681
682 /* count also the report id */
683 if (ret > 0)
684 ret++;
685
686 return ret;
687}
688
1da177e4
LT
689static void hid_free_buffers(struct usb_device *dev, struct hid_device *hid)
690{
4916b3a5
JK
691 struct usbhid_device *usbhid = hid->driver_data;
692
6675c5bd
DT
693 usb_buffer_free(dev, usbhid->bufsize, usbhid->inbuf, usbhid->inbuf_dma);
694 usb_buffer_free(dev, usbhid->bufsize, usbhid->outbuf, usbhid->outbuf_dma);
695 usb_buffer_free(dev, sizeof(*(usbhid->cr)), usbhid->cr, usbhid->cr_dma);
696 usb_buffer_free(dev, usbhid->bufsize, usbhid->ctrlbuf, usbhid->ctrlbuf_dma);
1da177e4
LT
697}
698
c500c971
JS
699static int usbhid_parse(struct hid_device *hid)
700{
701 struct usb_interface *intf = to_usb_interface(hid->dev.parent);
1da177e4
LT
702 struct usb_host_interface *interface = intf->cur_altsetting;
703 struct usb_device *dev = interface_to_usbdev (intf);
704 struct hid_descriptor *hdesc;
2eb5dc30 705 u32 quirks = 0;
c500c971 706 unsigned int rsize = 0;
c5b7c7c3 707 char *rdesc;
c500c971 708 int ret, n;
1da177e4 709
2eb5dc30
PW
710 quirks = usbhid_lookup_quirk(le16_to_cpu(dev->descriptor.idVendor),
711 le16_to_cpu(dev->descriptor.idProduct));
1da177e4 712
0f28b55d
AS
713 /* Many keyboards and mice don't like to be polled for reports,
714 * so we will always set the HID_QUIRK_NOGET flag for them. */
715 if (interface->desc.bInterfaceSubClass == USB_INTERFACE_SUBCLASS_BOOT) {
716 if (interface->desc.bInterfaceProtocol == USB_INTERFACE_PROTOCOL_KEYBOARD ||
717 interface->desc.bInterfaceProtocol == USB_INTERFACE_PROTOCOL_MOUSE)
718 quirks |= HID_QUIRK_NOGET;
719 }
720
c5b7c7c3
DT
721 if (usb_get_extra_descriptor(interface, HID_DT_HID, &hdesc) &&
722 (!interface->desc.bNumEndpoints ||
723 usb_get_extra_descriptor(&interface->endpoint[0], HID_DT_HID, &hdesc))) {
58037eb9 724 dbg_hid("class descriptor not present\n");
c500c971 725 return -ENODEV;
1da177e4
LT
726 }
727
c500c971
JS
728 hid->version = le16_to_cpu(hdesc->bcdHID);
729 hid->country = hdesc->bCountryCode;
730
1da177e4
LT
731 for (n = 0; n < hdesc->bNumDescriptors; n++)
732 if (hdesc->desc[n].bDescriptorType == HID_DT_REPORT)
733 rsize = le16_to_cpu(hdesc->desc[n].wDescriptorLength);
734
735 if (!rsize || rsize > HID_MAX_DESCRIPTOR_SIZE) {
58037eb9 736 dbg_hid("weird size of report descriptor (%u)\n", rsize);
c500c971 737 return -EINVAL;
1da177e4
LT
738 }
739
740 if (!(rdesc = kmalloc(rsize, GFP_KERNEL))) {
58037eb9 741 dbg_hid("couldn't allocate rdesc memory\n");
c500c971 742 return -ENOMEM;
1da177e4
LT
743 }
744
854561b0
VP
745 hid_set_idle(dev, interface->desc.bInterfaceNumber, 0, 0);
746
c500c971
JS
747 ret = hid_get_class_descriptor(dev, interface->desc.bInterfaceNumber,
748 HID_DT_REPORT, rdesc, rsize);
749 if (ret < 0) {
58037eb9 750 dbg_hid("reading report descriptor failed\n");
1da177e4 751 kfree(rdesc);
c500c971 752 goto err;
1da177e4
LT
753 }
754
58037eb9 755 dbg_hid("report descriptor (size %u, read %d) = ", rsize, n);
1da177e4 756 for (n = 0; n < rsize; n++)
58037eb9
JK
757 dbg_hid_line(" %02x", (unsigned char) rdesc[n]);
758 dbg_hid_line("\n");
1da177e4 759
c500c971
JS
760 ret = hid_parse_report(hid, rdesc, rsize);
761 kfree(rdesc);
762 if (ret) {
58037eb9 763 dbg_hid("parsing report descriptor failed\n");
c500c971 764 goto err;
1da177e4
LT
765 }
766
1da177e4
LT
767 hid->quirks = quirks;
768
c500c971
JS
769 return 0;
770err:
771 return ret;
772}
773
774static int usbhid_start(struct hid_device *hid)
775{
776 struct usb_interface *intf = to_usb_interface(hid->dev.parent);
777 struct usb_host_interface *interface = intf->cur_altsetting;
778 struct usb_device *dev = interface_to_usbdev(intf);
779 struct usbhid_device *usbhid;
780 unsigned int n, insize = 0;
781 int ret;
782
783 WARN_ON(hid->driver_data);
784
785 usbhid = kzalloc(sizeof(struct usbhid_device), GFP_KERNEL);
786 if (usbhid == NULL) {
787 ret = -ENOMEM;
788 goto err;
789 }
4916b3a5
JK
790
791 hid->driver_data = usbhid;
792 usbhid->hid = hid;
793
794 usbhid->bufsize = HID_MIN_BUFFER_SIZE;
795 hid_find_max_report(hid, HID_INPUT_REPORT, &usbhid->bufsize);
796 hid_find_max_report(hid, HID_OUTPUT_REPORT, &usbhid->bufsize);
797 hid_find_max_report(hid, HID_FEATURE_REPORT, &usbhid->bufsize);
bf0964dc 798
4916b3a5
JK
799 if (usbhid->bufsize > HID_MAX_BUFFER_SIZE)
800 usbhid->bufsize = HID_MAX_BUFFER_SIZE;
bf0964dc
MH
801
802 hid_find_max_report(hid, HID_INPUT_REPORT, &insize);
803
804 if (insize > HID_MAX_BUFFER_SIZE)
805 insize = HID_MAX_BUFFER_SIZE;
806
c500c971
JS
807 if (hid_alloc_buffers(dev, hid)) {
808 ret = -ENOMEM;
1da177e4 809 goto fail;
f345c37c
PS
810 }
811
1da177e4 812 for (n = 0; n < interface->desc.bNumEndpoints; n++) {
1da177e4
LT
813 struct usb_endpoint_descriptor *endpoint;
814 int pipe;
815 int interval;
816
817 endpoint = &interface->endpoint[n].desc;
818 if ((endpoint->bmAttributes & 3) != 3) /* Not an interrupt endpoint */
819 continue;
820
1da177e4 821 interval = endpoint->bInterval;
1da177e4 822
f345c37c 823 /* Some vendors give fullspeed interval on highspeed devides */
c500c971 824 if (hid->quirks & HID_QUIRK_FULLSPEED_INTERVAL &&
f345c37c
PS
825 dev->speed == USB_SPEED_HIGH) {
826 interval = fls(endpoint->bInterval*8);
827 printk(KERN_INFO "%s: Fixing fullspeed to highspeed interval: %d -> %d\n",
828 hid->name, endpoint->bInterval, interval);
829 }
830
1da177e4
LT
831 /* Change the polling interval of mice. */
832 if (hid->collection->usage == HID_GD_MOUSE && hid_mousepoll_interval > 0)
833 interval = hid_mousepoll_interval;
05f091ab 834
c500c971 835 ret = -ENOMEM;
0f12aa03 836 if (usb_endpoint_dir_in(endpoint)) {
4916b3a5 837 if (usbhid->urbin)
1da177e4 838 continue;
4916b3a5 839 if (!(usbhid->urbin = usb_alloc_urb(0, GFP_KERNEL)))
1da177e4
LT
840 goto fail;
841 pipe = usb_rcvintpipe(dev, endpoint->bEndpointAddress);
4916b3a5 842 usb_fill_int_urb(usbhid->urbin, dev, pipe, usbhid->inbuf, insize,
1da177e4 843 hid_irq_in, hid, interval);
4916b3a5
JK
844 usbhid->urbin->transfer_dma = usbhid->inbuf_dma;
845 usbhid->urbin->transfer_flags |= URB_NO_TRANSFER_DMA_MAP;
1da177e4 846 } else {
4916b3a5 847 if (usbhid->urbout)
1da177e4 848 continue;
4916b3a5 849 if (!(usbhid->urbout = usb_alloc_urb(0, GFP_KERNEL)))
1da177e4
LT
850 goto fail;
851 pipe = usb_sndintpipe(dev, endpoint->bEndpointAddress);
4916b3a5 852 usb_fill_int_urb(usbhid->urbout, dev, pipe, usbhid->outbuf, 0,
1da177e4 853 hid_irq_out, hid, interval);
4916b3a5
JK
854 usbhid->urbout->transfer_dma = usbhid->outbuf_dma;
855 usbhid->urbout->transfer_flags |= URB_NO_TRANSFER_DMA_MAP;
1da177e4
LT
856 }
857 }
858
4916b3a5 859 if (!usbhid->urbin) {
58037eb9 860 err_hid("couldn't find an input interrupt endpoint");
c500c971 861 ret = -ENODEV;
1da177e4
LT
862 goto fail;
863 }
864
1d1bdd20 865 init_waitqueue_head(&usbhid->wait);
4916b3a5
JK
866 INIT_WORK(&usbhid->reset_work, hid_reset);
867 setup_timer(&usbhid->io_retry, hid_retry_timeout, (unsigned long) hid);
aef4e266 868
4916b3a5
JK
869 spin_lock_init(&usbhid->inlock);
870 spin_lock_init(&usbhid->outlock);
871 spin_lock_init(&usbhid->ctrllock);
1da177e4 872
4916b3a5
JK
873 usbhid->intf = intf;
874 usbhid->ifnum = interface->desc.bInterfaceNumber;
1da177e4 875
4916b3a5 876 usbhid->urbctrl = usb_alloc_urb(0, GFP_KERNEL);
c500c971
JS
877 if (!usbhid->urbctrl) {
878 ret = -ENOMEM;
1da177e4 879 goto fail;
c500c971 880 }
c5b7c7c3 881
4916b3a5
JK
882 usb_fill_control_urb(usbhid->urbctrl, dev, 0, (void *) usbhid->cr,
883 usbhid->ctrlbuf, 1, hid_ctrl, hid);
884 usbhid->urbctrl->setup_dma = usbhid->cr_dma;
885 usbhid->urbctrl->transfer_dma = usbhid->ctrlbuf_dma;
886 usbhid->urbctrl->transfer_flags |= (URB_NO_TRANSFER_DMA_MAP | URB_NO_SETUP_DMA_MAP);
c500c971 887
93c10132
JS
888 usbhid_init_reports(hid);
889 hid_dump_device(hid);
890
c500c971 891 return 0;
1da177e4
LT
892
893fail:
4916b3a5
JK
894 usb_free_urb(usbhid->urbin);
895 usb_free_urb(usbhid->urbout);
896 usb_free_urb(usbhid->urbctrl);
22f675f3 897 hid_free_buffers(dev, hid);
cda5ecf8 898 kfree(usbhid);
c500c971
JS
899err:
900 return ret;
1da177e4
LT
901}
902
c500c971 903static void usbhid_stop(struct hid_device *hid)
1da177e4 904{
c500c971 905 struct usbhid_device *usbhid = hid->driver_data;
1da177e4 906
c500c971 907 if (WARN_ON(!usbhid))
1da177e4
LT
908 return;
909
4916b3a5 910 spin_lock_irq(&usbhid->inlock); /* Sync with error handler */
69626f23 911 set_bit(HID_DISCONNECTED, &usbhid->iofl);
4916b3a5
JK
912 spin_unlock_irq(&usbhid->inlock);
913 usb_kill_urb(usbhid->urbin);
914 usb_kill_urb(usbhid->urbout);
915 usb_kill_urb(usbhid->urbctrl);
1da177e4 916
4916b3a5 917 del_timer_sync(&usbhid->io_retry);
2fa45a4c 918 cancel_work_sync(&usbhid->reset_work);
aef4e266 919
1da177e4
LT
920 if (hid->claimed & HID_CLAIMED_INPUT)
921 hidinput_disconnect(hid);
922 if (hid->claimed & HID_CLAIMED_HIDDEV)
923 hiddev_disconnect(hid);
86166b7b
JK
924 if (hid->claimed & HID_CLAIMED_HIDRAW)
925 hidraw_disconnect(hid);
1da177e4 926
c500c971
JS
927 hid->claimed = 0;
928
4916b3a5
JK
929 usb_free_urb(usbhid->urbin);
930 usb_free_urb(usbhid->urbctrl);
931 usb_free_urb(usbhid->urbout);
1da177e4 932
be820975 933 hid_free_buffers(hid_to_usb_dev(hid), hid);
22f675f3 934 kfree(usbhid);
c500c971 935 hid->driver_data = NULL;
1da177e4
LT
936}
937
c500c971
JS
938static struct hid_ll_driver usb_hid_driver = {
939 .parse = usbhid_parse,
940 .start = usbhid_start,
941 .stop = usbhid_stop,
942 .open = usbhid_open,
943 .close = usbhid_close,
944 .hidinput_input_event = usb_hidinput_input_event,
945};
946
1da177e4
LT
947static int hid_probe(struct usb_interface *intf, const struct usb_device_id *id)
948{
c500c971 949 struct usb_device *dev = interface_to_usbdev(intf);
1da177e4 950 struct hid_device *hid;
c500c971
JS
951 size_t len;
952 int ret;
1da177e4 953
58037eb9 954 dbg_hid("HID probe called for ifnum %d\n",
1da177e4
LT
955 intf->altsetting->desc.bInterfaceNumber);
956
c500c971
JS
957 hid = hid_allocate_device();
958 if (IS_ERR(hid))
959 return PTR_ERR(hid);
1da177e4
LT
960
961 usb_set_intfdata(intf, hid);
c500c971
JS
962 hid->ll_driver = &usb_hid_driver;
963 hid->hid_output_raw_report = usbhid_output_raw_report;
76483cf4 964 hid->ff_init = hid_pidff_init;
c500c971 965#ifdef CONFIG_USB_HIDDEV
93c10132 966 hid->hiddev_connect = hiddev_connect;
c500c971
JS
967 hid->hiddev_hid_event = hiddev_hid_event;
968 hid->hiddev_report_event = hiddev_report_event;
969#endif
970 hid->dev.parent = &intf->dev;
971 hid->bus = BUS_USB;
972 hid->vendor = le16_to_cpu(dev->descriptor.idVendor);
973 hid->product = le16_to_cpu(dev->descriptor.idProduct);
974 hid->name[0] = 0;
1da177e4 975
c500c971
JS
976 if (dev->manufacturer)
977 strlcpy(hid->name, dev->manufacturer, sizeof(hid->name));
1da177e4 978
c500c971
JS
979 if (dev->product) {
980 if (dev->manufacturer)
981 strlcat(hid->name, " ", sizeof(hid->name));
982 strlcat(hid->name, dev->product, sizeof(hid->name));
1da177e4
LT
983 }
984
c500c971
JS
985 if (!strlen(hid->name))
986 snprintf(hid->name, sizeof(hid->name), "HID %04x:%04x",
987 le16_to_cpu(dev->descriptor.idVendor),
988 le16_to_cpu(dev->descriptor.idProduct));
1da177e4 989
c500c971
JS
990 usb_make_path(dev, hid->phys, sizeof(hid->phys));
991 strlcat(hid->phys, "/input", sizeof(hid->phys));
992 len = strlen(hid->phys);
993 if (len < sizeof(hid->phys) - 1)
994 snprintf(hid->phys + len, sizeof(hid->phys) - len,
995 "%d", intf->altsetting[0].desc.bInterfaceNumber);
996
997 if (usb_string(dev, dev->descriptor.iSerialNumber, hid->uniq, 64) <= 0)
998 hid->uniq[0] = 0;
1da177e4 999
85cdaf52
JS
1000 ret = hid_add_device(hid);
1001 if (ret) {
d458a9df
JS
1002 if (ret != -ENODEV)
1003 dev_err(&intf->dev, "can't add hid device: %d\n", ret);
c500c971 1004 goto err;
85cdaf52 1005 }
c500c971
JS
1006
1007 return 0;
1008err:
1009 hid_destroy_device(hid);
85cdaf52 1010 return ret;
1da177e4
LT
1011}
1012
c500c971
JS
1013static void hid_disconnect(struct usb_interface *intf)
1014{
1015 struct hid_device *hid = usb_get_intfdata(intf);
1016
1017 if (WARN_ON(!hid))
1018 return;
1019
1020 hid_destroy_device(hid);
1021}
1022
27d72e85 1023static int hid_suspend(struct usb_interface *intf, pm_message_t message)
1da177e4
LT
1024{
1025 struct hid_device *hid = usb_get_intfdata (intf);
4916b3a5 1026 struct usbhid_device *usbhid = hid->driver_data;
1da177e4 1027
4916b3a5
JK
1028 spin_lock_irq(&usbhid->inlock); /* Sync with error handler */
1029 set_bit(HID_SUSPENDED, &usbhid->iofl);
1030 spin_unlock_irq(&usbhid->inlock);
1031 del_timer(&usbhid->io_retry);
1032 usb_kill_urb(usbhid->urbin);
1da177e4
LT
1033 dev_dbg(&intf->dev, "suspend\n");
1034 return 0;
1035}
1036
1037static int hid_resume(struct usb_interface *intf)
1038{
1039 struct hid_device *hid = usb_get_intfdata (intf);
4916b3a5 1040 struct usbhid_device *usbhid = hid->driver_data;
1da177e4
LT
1041 int status;
1042
4916b3a5
JK
1043 clear_bit(HID_SUSPENDED, &usbhid->iofl);
1044 usbhid->retry_delay = 0;
aef4e266 1045 status = hid_start_in(hid);
1da177e4
LT
1046 dev_dbg(&intf->dev, "resume status %d\n", status);
1047 return status;
1048}
1049
df9a1f48 1050/* Treat USB reset pretty much the same as suspend/resume */
f07600cf 1051static int hid_pre_reset(struct usb_interface *intf)
df9a1f48
AS
1052{
1053 /* FIXME: What if the interface is already suspended? */
1054 hid_suspend(intf, PMSG_ON);
f07600cf 1055 return 0;
df9a1f48
AS
1056}
1057
f07600cf
AS
1058/* Same routine used for post_reset and reset_resume */
1059static int hid_post_reset(struct usb_interface *intf)
df9a1f48
AS
1060{
1061 struct usb_device *dev = interface_to_usbdev (intf);
1062
1063 hid_set_idle(dev, intf->cur_altsetting->desc.bInterfaceNumber, 0, 0);
1064 /* FIXME: Any more reinitialization needed? */
1065
f07600cf 1066 return hid_resume(intf);
df9a1f48
AS
1067}
1068
1da177e4
LT
1069static struct usb_device_id hid_usb_ids [] = {
1070 { .match_flags = USB_DEVICE_ID_MATCH_INT_CLASS,
1071 .bInterfaceClass = USB_INTERFACE_CLASS_HID },
1072 { } /* Terminating entry */
1073};
1074
1075MODULE_DEVICE_TABLE (usb, hid_usb_ids);
1076
1077static struct usb_driver hid_driver = {
1da177e4
LT
1078 .name = "usbhid",
1079 .probe = hid_probe,
1080 .disconnect = hid_disconnect,
1081 .suspend = hid_suspend,
1082 .resume = hid_resume,
f07600cf 1083 .reset_resume = hid_post_reset,
df9a1f48
AS
1084 .pre_reset = hid_pre_reset,
1085 .post_reset = hid_post_reset,
1da177e4 1086 .id_table = hid_usb_ids,
933e3187 1087 .supports_autosuspend = 1,
1da177e4
LT
1088};
1089
85cdaf52
JS
1090static const struct hid_device_id hid_usb_table[] = {
1091 { HID_USB_DEVICE(HID_ANY_ID, HID_ANY_ID) },
1092 { }
1093};
1094
1095static struct hid_driver hid_usb_driver = {
1096 .name = "generic-usb",
1097 .id_table = hid_usb_table,
1098};
1099
1da177e4
LT
1100static int __init hid_init(void)
1101{
1102 int retval;
85cdaf52
JS
1103 retval = hid_register_driver(&hid_usb_driver);
1104 if (retval)
1105 goto hid_register_fail;
876b9276
PW
1106 retval = usbhid_quirks_init(quirks_param);
1107 if (retval)
1108 goto usbhid_quirks_init_fail;
1da177e4
LT
1109 retval = hiddev_init();
1110 if (retval)
1111 goto hiddev_init_fail;
1112 retval = usb_register(&hid_driver);
1113 if (retval)
1114 goto usb_register_fail;
ddbe3249
GKH
1115 printk(KERN_INFO KBUILD_MODNAME ": " DRIVER_VERSION ":"
1116 DRIVER_DESC "\n");
1da177e4
LT
1117
1118 return 0;
1119usb_register_fail:
1120 hiddev_exit();
1121hiddev_init_fail:
876b9276
PW
1122 usbhid_quirks_exit();
1123usbhid_quirks_init_fail:
85cdaf52
JS
1124 hid_unregister_driver(&hid_usb_driver);
1125hid_register_fail:
1da177e4
LT
1126 return retval;
1127}
1128
1129static void __exit hid_exit(void)
1130{
1131 usb_deregister(&hid_driver);
1132 hiddev_exit();
876b9276 1133 usbhid_quirks_exit();
85cdaf52 1134 hid_unregister_driver(&hid_usb_driver);
1da177e4
LT
1135}
1136
1137module_init(hid_init);
1138module_exit(hid_exit);
1139
1140MODULE_AUTHOR(DRIVER_AUTHOR);
1141MODULE_DESCRIPTION(DRIVER_DESC);
1142MODULE_LICENSE(DRIVER_LICENSE);