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