blob: 340d6ae646edc7cdfb5f1cf8e02e8a39f00e12d4 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * USB HID support for Linux
3 *
4 * Copyright (c) 1999 Andreas Gal
Michael Haboustakbf0964d2005-09-05 00:12:01 -05005 * Copyright (c) 2000-2005 Vojtech Pavlik <vojtech@suse.cz>
6 * Copyright (c) 2005 Michael Haboustak <mike-@cinci.rr.com> for Concept2, Inc
Oliver Neukum0361a282008-12-17 15:38:03 +01007 * Copyright (c) 2007-2008 Oliver Neukum
Jiri Kosina7d39e842010-02-02 20:46:34 +01008 * Copyright (c) 2006-2010 Jiri Kosina
Linus Torvalds1da177e2005-04-16 15:20:36 -07009 */
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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include <linux/list.h>
23#include <linux/mm.h>
Jiri Slaby3d5afd32008-10-27 12:16:15 +010024#include <linux/mutex.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#include <linux/spinlock.h>
26#include <asm/unaligned.h>
27#include <asm/byteorder.h>
28#include <linux/input.h>
29#include <linux/wait.h>
Oliver Neukum0361a282008-12-17 15:38:03 +010030#include <linux/workqueue.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070031
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#include <linux/usb.h>
33
Jiri Kosinadde58452006-12-08 18:40:44 +010034#include <linux/hid.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070035#include <linux/hiddev.h>
Jiri Kosinac080d892007-01-25 11:43:31 +010036#include <linux/hid-debug.h>
Jiri Kosina86166b72007-05-14 09:57:40 +020037#include <linux/hidraw.h>
Jiri Kosina4916b3a2006-12-08 18:41:03 +010038#include "usbhid.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070039
40/*
41 * Version Information
42 */
43
Linus Torvalds1da177e2005-04-16 15:20:36 -070044#define DRIVER_DESC "USB HID core driver"
45#define DRIVER_LICENSE "GPL"
46
Linus Torvalds1da177e2005-04-16 15:20:36 -070047/*
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
Oliver Neukum0361a282008-12-17 15:38:03 +010055static unsigned int ignoreled;
56module_param_named(ignoreled, ignoreled, uint, 0644);
57MODULE_PARM_DESC(ignoreled, "Autosuspend with active leds");
58
Paul Walmsley876b9272007-04-19 14:56:12 +020059/* Quirks specified at module load time */
60static char *quirks_param[MAX_USBHID_BOOT_QUIRKS] = { [ 0 ... (MAX_USBHID_BOOT_QUIRKS - 1) ] = NULL };
61module_param_array_named(quirks, quirks_param, charp, NULL, 0444);
62MODULE_PARM_DESC(quirks, "Add/modify USB HID quirks by specifying "
63 " quirks=vendorID:productID:quirks"
64 " where vendorID, productID, and quirks are all in"
65 " 0x-prefixed hex");
Linus Torvalds1da177e2005-04-16 15:20:36 -070066/*
Alan Sternaef4e262006-01-31 12:58:38 -050067 * Input submission and I/O error handler.
68 */
Oliver Neukum0361a282008-12-17 15:38:03 +010069static DEFINE_MUTEX(hid_open_mut);
Alan Sternaef4e262006-01-31 12:58:38 -050070
71static void hid_io_error(struct hid_device *hid);
Oliver Neukum0361a282008-12-17 15:38:03 +010072static int hid_submit_out(struct hid_device *hid);
73static int hid_submit_ctrl(struct hid_device *hid);
74static void hid_cancel_delayed_stuff(struct usbhid_device *usbhid);
Alan Sternaef4e262006-01-31 12:58:38 -050075
76/* Start up the input URB */
77static int hid_start_in(struct hid_device *hid)
78{
79 unsigned long flags;
80 int rc = 0;
Jiri Kosina4916b3a2006-12-08 18:41:03 +010081 struct usbhid_device *usbhid = hid->driver_data;
Alan Sternaef4e262006-01-31 12:58:38 -050082
Oliver Neukum0361a282008-12-17 15:38:03 +010083 spin_lock_irqsave(&usbhid->lock, flags);
84 if (hid->open > 0 &&
Oliver Neukum69626f22008-03-31 16:27:30 +020085 !test_bit(HID_DISCONNECTED, &usbhid->iofl) &&
Oliver Neukum0361a282008-12-17 15:38:03 +010086 !test_bit(HID_REPORTED_IDLE, &usbhid->iofl) &&
Jiri Kosina4916b3a2006-12-08 18:41:03 +010087 !test_and_set_bit(HID_IN_RUNNING, &usbhid->iofl)) {
88 rc = usb_submit_urb(usbhid->urbin, GFP_ATOMIC);
Alan Sternaef4e262006-01-31 12:58:38 -050089 if (rc != 0)
Jiri Kosina4916b3a2006-12-08 18:41:03 +010090 clear_bit(HID_IN_RUNNING, &usbhid->iofl);
Alan Sternaef4e262006-01-31 12:58:38 -050091 }
Oliver Neukum0361a282008-12-17 15:38:03 +010092 spin_unlock_irqrestore(&usbhid->lock, flags);
Alan Sternaef4e262006-01-31 12:58:38 -050093 return rc;
94}
95
96/* I/O retry timer routine */
97static void hid_retry_timeout(unsigned long _hid)
98{
99 struct hid_device *hid = (struct hid_device *) _hid;
Jiri Kosina4916b3a2006-12-08 18:41:03 +0100100 struct usbhid_device *usbhid = hid->driver_data;
Alan Sternaef4e262006-01-31 12:58:38 -0500101
Jiri Kosina4916b3a2006-12-08 18:41:03 +0100102 dev_dbg(&usbhid->intf->dev, "retrying intr urb\n");
Alan Sternaef4e262006-01-31 12:58:38 -0500103 if (hid_start_in(hid))
104 hid_io_error(hid);
105}
106
Alan Stern6d8fc4d2006-10-18 12:35:24 -0400107/* Workqueue routine to reset the device or clear a halt */
David Howellsc4028952006-11-22 14:57:56 +0000108static void hid_reset(struct work_struct *work)
Alan Sternaef4e262006-01-31 12:58:38 -0500109{
Jiri Kosina4916b3a2006-12-08 18:41:03 +0100110 struct usbhid_device *usbhid =
111 container_of(work, struct usbhid_device, reset_work);
112 struct hid_device *hid = usbhid->hid;
Alan Stern011b15d2008-11-04 11:29:27 -0500113 int rc = 0;
Alan Sternaef4e262006-01-31 12:58:38 -0500114
Jiri Kosina4916b3a2006-12-08 18:41:03 +0100115 if (test_bit(HID_CLEAR_HALT, &usbhid->iofl)) {
116 dev_dbg(&usbhid->intf->dev, "clear halt\n");
Anssi Hannulabe820972007-01-19 19:28:17 +0200117 rc = usb_clear_halt(hid_to_usb_dev(hid), usbhid->urbin->pipe);
Jiri Kosina4916b3a2006-12-08 18:41:03 +0100118 clear_bit(HID_CLEAR_HALT, &usbhid->iofl);
Alan Stern6d8fc4d2006-10-18 12:35:24 -0400119 hid_start_in(hid);
Alan Sternaef4e262006-01-31 12:58:38 -0500120 }
Alan Stern6d8fc4d2006-10-18 12:35:24 -0400121
Jiri Kosina4916b3a2006-12-08 18:41:03 +0100122 else if (test_bit(HID_RESET_PENDING, &usbhid->iofl)) {
123 dev_dbg(&usbhid->intf->dev, "resetting device\n");
Alan Stern011b15d2008-11-04 11:29:27 -0500124 rc = usb_lock_device_for_reset(hid_to_usb_dev(hid), usbhid->intf);
125 if (rc == 0) {
Ming Lei742120c2008-06-18 22:00:29 +0800126 rc = usb_reset_device(hid_to_usb_dev(hid));
Alan Stern011b15d2008-11-04 11:29:27 -0500127 usb_unlock_device(hid_to_usb_dev(hid));
Alan Stern6d8fc4d2006-10-18 12:35:24 -0400128 }
Jiri Kosina4916b3a2006-12-08 18:41:03 +0100129 clear_bit(HID_RESET_PENDING, &usbhid->iofl);
Alan Stern6d8fc4d2006-10-18 12:35:24 -0400130 }
Alan Sternaef4e262006-01-31 12:58:38 -0500131
Alan Sterndf9a1f42006-06-01 13:55:28 -0400132 switch (rc) {
133 case 0:
Jiri Kosina4916b3a2006-12-08 18:41:03 +0100134 if (!test_bit(HID_IN_RUNNING, &usbhid->iofl))
Alan Sternaef4e262006-01-31 12:58:38 -0500135 hid_io_error(hid);
Alan Sterndf9a1f42006-06-01 13:55:28 -0400136 break;
137 default:
Joe Perches4291ee32010-12-09 19:29:03 -0800138 hid_err(hid, "can't reset device, %s-%s/input%d, status %d\n",
139 hid_to_usb_dev(hid)->bus->bus_name,
140 hid_to_usb_dev(hid)->devpath,
141 usbhid->ifnum, rc);
Alan Sterndf9a1f42006-06-01 13:55:28 -0400142 /* FALLTHROUGH */
143 case -EHOSTUNREACH:
144 case -ENODEV:
145 case -EINTR:
146 break;
147 }
Alan Sternaef4e262006-01-31 12:58:38 -0500148}
149
150/* Main I/O error handler */
151static void hid_io_error(struct hid_device *hid)
152{
153 unsigned long flags;
Jiri Kosina4916b3a2006-12-08 18:41:03 +0100154 struct usbhid_device *usbhid = hid->driver_data;
Alan Sternaef4e262006-01-31 12:58:38 -0500155
Oliver Neukum0361a282008-12-17 15:38:03 +0100156 spin_lock_irqsave(&usbhid->lock, flags);
Alan Sternaef4e262006-01-31 12:58:38 -0500157
158 /* Stop when disconnected */
Oliver Neukum69626f22008-03-31 16:27:30 +0200159 if (test_bit(HID_DISCONNECTED, &usbhid->iofl))
Alan Sternaef4e262006-01-31 12:58:38 -0500160 goto done;
161
Alan Stern5e2a55f2007-03-20 19:03:31 +0100162 /* If it has been a while since the last error, we'll assume
163 * this a brand new error and reset the retry timeout. */
164 if (time_after(jiffies, usbhid->stop_retry + HZ/2))
165 usbhid->retry_delay = 0;
166
Alan Sternaef4e262006-01-31 12:58:38 -0500167 /* When an error occurs, retry at increasing intervals */
Jiri Kosina4916b3a2006-12-08 18:41:03 +0100168 if (usbhid->retry_delay == 0) {
169 usbhid->retry_delay = 13; /* Then 26, 52, 104, 104, ... */
170 usbhid->stop_retry = jiffies + msecs_to_jiffies(1000);
171 } else if (usbhid->retry_delay < 100)
172 usbhid->retry_delay *= 2;
Alan Sternaef4e262006-01-31 12:58:38 -0500173
Jiri Kosina4916b3a2006-12-08 18:41:03 +0100174 if (time_after(jiffies, usbhid->stop_retry)) {
Alan Sternaef4e262006-01-31 12:58:38 -0500175
176 /* Retries failed, so do a port reset */
Jiri Kosina4916b3a2006-12-08 18:41:03 +0100177 if (!test_and_set_bit(HID_RESET_PENDING, &usbhid->iofl)) {
178 schedule_work(&usbhid->reset_work);
Alan Stern6d8fc4d2006-10-18 12:35:24 -0400179 goto done;
Alan Sternaef4e262006-01-31 12:58:38 -0500180 }
181 }
182
Jiri Kosina4916b3a2006-12-08 18:41:03 +0100183 mod_timer(&usbhid->io_retry,
184 jiffies + msecs_to_jiffies(usbhid->retry_delay));
Alan Sternaef4e262006-01-31 12:58:38 -0500185done:
Oliver Neukum0361a282008-12-17 15:38:03 +0100186 spin_unlock_irqrestore(&usbhid->lock, flags);
187}
188
189static void usbhid_mark_busy(struct usbhid_device *usbhid)
190{
191 struct usb_interface *intf = usbhid->intf;
192
193 usb_mark_last_busy(interface_to_usbdev(intf));
194}
195
196static int usbhid_restart_out_queue(struct usbhid_device *usbhid)
197{
198 struct hid_device *hid = usb_get_intfdata(usbhid->intf);
199 int kicked;
Daniel Kurtzf0befcd2011-11-17 19:23:49 +0800200 int r;
Oliver Neukum0361a282008-12-17 15:38:03 +0100201
202 if (!hid)
203 return 0;
204
205 if ((kicked = (usbhid->outhead != usbhid->outtail))) {
Greg Kroah-Hartman6cc203d2012-05-01 21:32:55 -0700206 hid_dbg(hid, "Kicking head %d tail %d", usbhid->outhead, usbhid->outtail);
Daniel Kurtzf0befcd2011-11-17 19:23:49 +0800207
208 r = usb_autopm_get_interface_async(usbhid->intf);
209 if (r < 0)
210 return r;
211 /* Asynchronously flush queue. */
212 set_bit(HID_OUT_RUNNING, &usbhid->iofl);
Oliver Neukum0361a282008-12-17 15:38:03 +0100213 if (hid_submit_out(hid)) {
214 clear_bit(HID_OUT_RUNNING, &usbhid->iofl);
Daniel Kurtzf0befcd2011-11-17 19:23:49 +0800215 usb_autopm_put_interface_async(usbhid->intf);
Oliver Neukum0361a282008-12-17 15:38:03 +0100216 }
Daniel Kurtzf0befcd2011-11-17 19:23:49 +0800217 wake_up(&usbhid->wait);
Oliver Neukum0361a282008-12-17 15:38:03 +0100218 }
219 return kicked;
220}
221
222static int usbhid_restart_ctrl_queue(struct usbhid_device *usbhid)
223{
224 struct hid_device *hid = usb_get_intfdata(usbhid->intf);
225 int kicked;
Daniel Kurtzf0befcd2011-11-17 19:23:49 +0800226 int r;
Oliver Neukum0361a282008-12-17 15:38:03 +0100227
228 WARN_ON(hid == NULL);
229 if (!hid)
230 return 0;
231
232 if ((kicked = (usbhid->ctrlhead != usbhid->ctrltail))) {
Greg Kroah-Hartman6cc203d2012-05-01 21:32:55 -0700233 hid_dbg(hid, "Kicking head %d tail %d", usbhid->ctrlhead, usbhid->ctrltail);
Daniel Kurtzf0befcd2011-11-17 19:23:49 +0800234
235 r = usb_autopm_get_interface_async(usbhid->intf);
236 if (r < 0)
237 return r;
238 /* Asynchronously flush queue. */
239 set_bit(HID_CTRL_RUNNING, &usbhid->iofl);
Oliver Neukum0361a282008-12-17 15:38:03 +0100240 if (hid_submit_ctrl(hid)) {
241 clear_bit(HID_CTRL_RUNNING, &usbhid->iofl);
Daniel Kurtzf0befcd2011-11-17 19:23:49 +0800242 usb_autopm_put_interface_async(usbhid->intf);
Oliver Neukum0361a282008-12-17 15:38:03 +0100243 }
Daniel Kurtzf0befcd2011-11-17 19:23:49 +0800244 wake_up(&usbhid->wait);
Oliver Neukum0361a282008-12-17 15:38:03 +0100245 }
246 return kicked;
Alan Sternaef4e262006-01-31 12:58:38 -0500247}
248
249/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250 * Input interrupt completion handler.
251 */
252
David Howells7d12e782006-10-05 14:55:46 +0100253static void hid_irq_in(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254{
255 struct hid_device *hid = urb->context;
Jiri Kosina4916b3a2006-12-08 18:41:03 +0100256 struct usbhid_device *usbhid = hid->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257 int status;
258
259 switch (urb->status) {
Jiri Slaby880d29f2008-06-18 23:55:41 +0200260 case 0: /* success */
Oliver Neukum0361a282008-12-17 15:38:03 +0100261 usbhid_mark_busy(usbhid);
Jiri Slaby880d29f2008-06-18 23:55:41 +0200262 usbhid->retry_delay = 0;
263 hid_input_report(urb->context, HID_INPUT_REPORT,
264 urb->transfer_buffer,
265 urb->actual_length, 1);
Oliver Neukum0361a282008-12-17 15:38:03 +0100266 /*
267 * autosuspend refused while keys are pressed
268 * because most keyboards don't wake up when
269 * a key is released
270 */
271 if (hid_check_keys_pressed(hid))
272 set_bit(HID_KEYS_PRESSED, &usbhid->iofl);
273 else
274 clear_bit(HID_KEYS_PRESSED, &usbhid->iofl);
Jiri Slaby880d29f2008-06-18 23:55:41 +0200275 break;
276 case -EPIPE: /* stall */
Oliver Neukum0361a282008-12-17 15:38:03 +0100277 usbhid_mark_busy(usbhid);
Jiri Slaby880d29f2008-06-18 23:55:41 +0200278 clear_bit(HID_IN_RUNNING, &usbhid->iofl);
279 set_bit(HID_CLEAR_HALT, &usbhid->iofl);
280 schedule_work(&usbhid->reset_work);
281 return;
282 case -ECONNRESET: /* unlink */
283 case -ENOENT:
284 case -ESHUTDOWN: /* unplug */
285 clear_bit(HID_IN_RUNNING, &usbhid->iofl);
286 return;
287 case -EILSEQ: /* protocol error or unplug */
288 case -EPROTO: /* protocol error or unplug */
289 case -ETIME: /* protocol error or unplug */
290 case -ETIMEDOUT: /* Should never happen, but... */
Oliver Neukum0361a282008-12-17 15:38:03 +0100291 usbhid_mark_busy(usbhid);
Jiri Slaby880d29f2008-06-18 23:55:41 +0200292 clear_bit(HID_IN_RUNNING, &usbhid->iofl);
293 hid_io_error(hid);
294 return;
295 default: /* error */
Joe Perches4291ee32010-12-09 19:29:03 -0800296 hid_warn(urb->dev, "input irq status %d received\n",
297 urb->status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298 }
299
Christoph Lameter54e6ecb2006-12-06 20:33:16 -0800300 status = usb_submit_urb(urb, GFP_ATOMIC);
Alan Sternaef4e262006-01-31 12:58:38 -0500301 if (status) {
Jiri Kosina4916b3a2006-12-08 18:41:03 +0100302 clear_bit(HID_IN_RUNNING, &usbhid->iofl);
Alan Sternaef4e262006-01-31 12:58:38 -0500303 if (status != -EPERM) {
Joe Perches4291ee32010-12-09 19:29:03 -0800304 hid_err(hid, "can't resubmit intr, %s-%s/input%d, status %d\n",
305 hid_to_usb_dev(hid)->bus->bus_name,
306 hid_to_usb_dev(hid)->devpath,
307 usbhid->ifnum, status);
Alan Sternaef4e262006-01-31 12:58:38 -0500308 hid_io_error(hid);
309 }
310 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311}
312
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313static int hid_submit_out(struct hid_device *hid)
314{
315 struct hid_report *report;
Anssi Hannulaf129ea62008-10-04 14:44:06 +0200316 char *raw_report;
Jiri Kosina4916b3a2006-12-08 18:41:03 +0100317 struct usbhid_device *usbhid = hid->driver_data;
Oliver Neukum68229682010-12-22 15:33:40 +0100318 int r;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319
Anssi Hannulaf129ea62008-10-04 14:44:06 +0200320 report = usbhid->out[usbhid->outtail].report;
321 raw_report = usbhid->out[usbhid->outtail].raw_report;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322
Daniel Kurtzf0befcd2011-11-17 19:23:49 +0800323 usbhid->urbout->transfer_buffer_length = ((report->size - 1) >> 3) +
324 1 + (report->id > 0);
325 usbhid->urbout->dev = hid_to_usb_dev(hid);
326 memcpy(usbhid->outbuf, raw_report,
327 usbhid->urbout->transfer_buffer_length);
328 kfree(raw_report);
Oliver Neukum68229682010-12-22 15:33:40 +0100329
Daniel Kurtzf0befcd2011-11-17 19:23:49 +0800330 dbg_hid("submitting out urb\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331
Daniel Kurtzf0befcd2011-11-17 19:23:49 +0800332 r = usb_submit_urb(usbhid->urbout, GFP_ATOMIC);
333 if (r < 0) {
334 hid_err(hid, "usb_submit_urb(out) failed: %d\n", r);
335 return r;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336 }
Daniel Kurtzf0befcd2011-11-17 19:23:49 +0800337 usbhid->last_out = jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338 return 0;
339}
340
341static int hid_submit_ctrl(struct hid_device *hid)
342{
343 struct hid_report *report;
344 unsigned char dir;
Anssi Hannulaf129ea62008-10-04 14:44:06 +0200345 char *raw_report;
Oliver Neukum68229682010-12-22 15:33:40 +0100346 int len, r;
Jiri Kosina4916b3a2006-12-08 18:41:03 +0100347 struct usbhid_device *usbhid = hid->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348
Jiri Kosina4916b3a2006-12-08 18:41:03 +0100349 report = usbhid->ctrl[usbhid->ctrltail].report;
Anssi Hannulaf129ea62008-10-04 14:44:06 +0200350 raw_report = usbhid->ctrl[usbhid->ctrltail].raw_report;
Jiri Kosina4916b3a2006-12-08 18:41:03 +0100351 dir = usbhid->ctrl[usbhid->ctrltail].dir;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352
Daniel Kurtzf0befcd2011-11-17 19:23:49 +0800353 len = ((report->size - 1) >> 3) + 1 + (report->id > 0);
354 if (dir == USB_DIR_OUT) {
355 usbhid->urbctrl->pipe = usb_sndctrlpipe(hid_to_usb_dev(hid), 0);
356 usbhid->urbctrl->transfer_buffer_length = len;
357 memcpy(usbhid->ctrlbuf, raw_report, len);
358 kfree(raw_report);
359 } else {
360 int maxpacket, padlen;
Oliver Neukum0361a282008-12-17 15:38:03 +0100361
Daniel Kurtzf0befcd2011-11-17 19:23:49 +0800362 usbhid->urbctrl->pipe = usb_rcvctrlpipe(hid_to_usb_dev(hid), 0);
363 maxpacket = usb_maxpacket(hid_to_usb_dev(hid),
364 usbhid->urbctrl->pipe, 0);
365 if (maxpacket > 0) {
366 padlen = DIV_ROUND_UP(len, maxpacket);
367 padlen *= maxpacket;
368 if (padlen > usbhid->bufsize)
369 padlen = usbhid->bufsize;
370 } else
371 padlen = 0;
372 usbhid->urbctrl->transfer_buffer_length = padlen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373 }
Daniel Kurtzf0befcd2011-11-17 19:23:49 +0800374 usbhid->urbctrl->dev = hid_to_usb_dev(hid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375
Daniel Kurtzf0befcd2011-11-17 19:23:49 +0800376 usbhid->cr->bRequestType = USB_TYPE_CLASS | USB_RECIP_INTERFACE | dir;
377 usbhid->cr->bRequest = (dir == USB_DIR_OUT) ? HID_REQ_SET_REPORT :
378 HID_REQ_GET_REPORT;
379 usbhid->cr->wValue = cpu_to_le16(((report->type + 1) << 8) |
380 report->id);
381 usbhid->cr->wIndex = cpu_to_le16(usbhid->ifnum);
382 usbhid->cr->wLength = cpu_to_le16(len);
383
384 dbg_hid("submitting ctrl urb: %s wValue=0x%04x wIndex=0x%04x wLength=%u\n",
385 usbhid->cr->bRequest == HID_REQ_SET_REPORT ? "Set_Report" :
386 "Get_Report",
387 usbhid->cr->wValue, usbhid->cr->wIndex, usbhid->cr->wLength);
388
389 r = usb_submit_urb(usbhid->urbctrl, GFP_ATOMIC);
390 if (r < 0) {
391 hid_err(hid, "usb_submit_urb(ctrl) failed: %d\n", r);
392 return r;
393 }
394 usbhid->last_ctrl = jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395 return 0;
396}
397
398/*
399 * Output interrupt completion handler.
400 */
401
Oliver Neukum8815bb02012-04-30 09:13:46 +0200402static int irq_out_pump_restart(struct hid_device *hid)
403{
404 struct usbhid_device *usbhid = hid->driver_data;
405
406 if (usbhid->outhead != usbhid->outtail)
407 return hid_submit_out(hid);
408 else
409 return -1;
410}
411
David Howells7d12e782006-10-05 14:55:46 +0100412static void hid_irq_out(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413{
414 struct hid_device *hid = urb->context;
Jiri Kosina4916b3a2006-12-08 18:41:03 +0100415 struct usbhid_device *usbhid = hid->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416 unsigned long flags;
417 int unplug = 0;
418
419 switch (urb->status) {
Jiri Slaby880d29f2008-06-18 23:55:41 +0200420 case 0: /* success */
421 break;
422 case -ESHUTDOWN: /* unplug */
423 unplug = 1;
424 case -EILSEQ: /* protocol error or unplug */
425 case -EPROTO: /* protocol error or unplug */
426 case -ECONNRESET: /* unlink */
427 case -ENOENT:
428 break;
429 default: /* error */
Joe Perches4291ee32010-12-09 19:29:03 -0800430 hid_warn(urb->dev, "output irq status %d received\n",
431 urb->status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 }
433
Oliver Neukum0361a282008-12-17 15:38:03 +0100434 spin_lock_irqsave(&usbhid->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435
436 if (unplug)
Jiri Kosina4916b3a2006-12-08 18:41:03 +0100437 usbhid->outtail = usbhid->outhead;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438 else
Jiri Kosina4916b3a2006-12-08 18:41:03 +0100439 usbhid->outtail = (usbhid->outtail + 1) & (HID_OUTPUT_FIFO_SIZE - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440
Oliver Neukum8815bb02012-04-30 09:13:46 +0200441 if (!irq_out_pump_restart(hid)) {
Daniel Kurtzf0befcd2011-11-17 19:23:49 +0800442 /* Successfully submitted next urb in queue */
Oliver Neukum0361a282008-12-17 15:38:03 +0100443 spin_unlock_irqrestore(&usbhid->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444 return;
445 }
446
Jiri Kosina4916b3a2006-12-08 18:41:03 +0100447 clear_bit(HID_OUT_RUNNING, &usbhid->iofl);
Oliver Neukum0361a282008-12-17 15:38:03 +0100448 spin_unlock_irqrestore(&usbhid->lock, flags);
Oliver Neukum68229682010-12-22 15:33:40 +0100449 usb_autopm_put_interface_async(usbhid->intf);
Jiri Slaby1d1bdd22008-03-19 21:55:04 +0100450 wake_up(&usbhid->wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451}
452
453/*
454 * Control pipe completion handler.
455 */
Oliver Neukum8815bb02012-04-30 09:13:46 +0200456static int ctrl_pump_restart(struct hid_device *hid)
457{
458 struct usbhid_device *usbhid = hid->driver_data;
459
460 if (usbhid->ctrlhead != usbhid->ctrltail)
461 return hid_submit_ctrl(hid);
462 else
463 return -1;
464}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465
David Howells7d12e782006-10-05 14:55:46 +0100466static void hid_ctrl(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467{
468 struct hid_device *hid = urb->context;
Jiri Kosina4916b3a2006-12-08 18:41:03 +0100469 struct usbhid_device *usbhid = hid->driver_data;
Oliver Neukum0361a282008-12-17 15:38:03 +0100470 int unplug = 0, status = urb->status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471
Oliver Neukum0361a282008-12-17 15:38:03 +0100472 spin_lock(&usbhid->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473
Oliver Neukum0361a282008-12-17 15:38:03 +0100474 switch (status) {
Jiri Slaby880d29f2008-06-18 23:55:41 +0200475 case 0: /* success */
476 if (usbhid->ctrl[usbhid->ctrltail].dir == USB_DIR_IN)
477 hid_input_report(urb->context,
478 usbhid->ctrl[usbhid->ctrltail].report->type,
479 urb->transfer_buffer, urb->actual_length, 0);
480 break;
481 case -ESHUTDOWN: /* unplug */
482 unplug = 1;
483 case -EILSEQ: /* protocol error or unplug */
484 case -EPROTO: /* protocol error or unplug */
485 case -ECONNRESET: /* unlink */
486 case -ENOENT:
487 case -EPIPE: /* report not available */
488 break;
489 default: /* error */
Joe Perches4291ee32010-12-09 19:29:03 -0800490 hid_warn(urb->dev, "ctrl urb status %d received\n", status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491 }
492
493 if (unplug)
Jiri Kosina4916b3a2006-12-08 18:41:03 +0100494 usbhid->ctrltail = usbhid->ctrlhead;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495 else
Jiri Kosina4916b3a2006-12-08 18:41:03 +0100496 usbhid->ctrltail = (usbhid->ctrltail + 1) & (HID_CONTROL_FIFO_SIZE - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497
Oliver Neukum8815bb02012-04-30 09:13:46 +0200498 if (!ctrl_pump_restart(hid)) {
Daniel Kurtzf0befcd2011-11-17 19:23:49 +0800499 /* Successfully submitted next urb in queue */
Oliver Neukum0361a282008-12-17 15:38:03 +0100500 spin_unlock(&usbhid->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501 return;
502 }
503
Jiri Kosina4916b3a2006-12-08 18:41:03 +0100504 clear_bit(HID_CTRL_RUNNING, &usbhid->iofl);
Oliver Neukum0361a282008-12-17 15:38:03 +0100505 spin_unlock(&usbhid->lock);
Oliver Neukum68229682010-12-22 15:33:40 +0100506 usb_autopm_put_interface_async(usbhid->intf);
Jiri Slaby1d1bdd22008-03-19 21:55:04 +0100507 wake_up(&usbhid->wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508}
509
H Hartley Sweeten52cfc61b2009-08-17 15:37:18 -0700510static void __usbhid_submit_report(struct hid_device *hid, struct hid_report *report,
511 unsigned char dir)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512{
513 int head;
Jiri Kosina4916b3a2006-12-08 18:41:03 +0100514 struct usbhid_device *usbhid = hid->driver_data;
Anssi Hannulaf129ea62008-10-04 14:44:06 +0200515 int len = ((report->size - 1) >> 3) + 1 + (report->id > 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516
517 if ((hid->quirks & HID_QUIRK_NOGET) && dir == USB_DIR_IN)
518 return;
519
Jiri Kosina4916b3a2006-12-08 18:41:03 +0100520 if (usbhid->urbout && dir == USB_DIR_OUT && report->type == HID_OUTPUT_REPORT) {
Jiri Kosina4916b3a2006-12-08 18:41:03 +0100521 if ((head = (usbhid->outhead + 1) & (HID_OUTPUT_FIFO_SIZE - 1)) == usbhid->outtail) {
Joe Perches4291ee32010-12-09 19:29:03 -0800522 hid_warn(hid, "output queue full\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523 return;
524 }
525
Anssi Hannulaf129ea62008-10-04 14:44:06 +0200526 usbhid->out[usbhid->outhead].raw_report = kmalloc(len, GFP_ATOMIC);
527 if (!usbhid->out[usbhid->outhead].raw_report) {
Joe Perches4291ee32010-12-09 19:29:03 -0800528 hid_warn(hid, "output queueing failed\n");
Anssi Hannulaf129ea62008-10-04 14:44:06 +0200529 return;
530 }
531 hid_output_report(report, usbhid->out[usbhid->outhead].raw_report);
532 usbhid->out[usbhid->outhead].report = report;
Jiri Kosina4916b3a2006-12-08 18:41:03 +0100533 usbhid->outhead = head;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534
Daniel Kurtzf0befcd2011-11-17 19:23:49 +0800535 /* Try to awake from autosuspend... */
536 if (usb_autopm_get_interface_async(usbhid->intf) < 0)
537 return;
538
539 /*
540 * But if still suspended, leave urb enqueued, don't submit.
541 * Submission will occur if/when resume() drains the queue.
542 */
543 if (test_bit(HID_REPORTED_IDLE, &usbhid->iofl))
544 return;
545
Oliver Neukum858155f2010-02-12 13:02:28 +0100546 if (!test_and_set_bit(HID_OUT_RUNNING, &usbhid->iofl)) {
Daniel Kurtzf0befcd2011-11-17 19:23:49 +0800547 if (hid_submit_out(hid)) {
Jiri Kosina4916b3a2006-12-08 18:41:03 +0100548 clear_bit(HID_OUT_RUNNING, &usbhid->iofl);
Daniel Kurtzf0befcd2011-11-17 19:23:49 +0800549 usb_autopm_put_interface_async(usbhid->intf);
550 }
551 wake_up(&usbhid->wait);
Oliver Neukum858155f2010-02-12 13:02:28 +0100552 } else {
553 /*
554 * the queue is known to run
555 * but an earlier request may be stuck
556 * we may need to time out
Oliver Neukum8815bb02012-04-30 09:13:46 +0200557 * no race because the URB is blocked under
Oliver Neukum858155f2010-02-12 13:02:28 +0100558 * spinlock
559 */
Oliver Neukum8815bb02012-04-30 09:13:46 +0200560 if (time_after(jiffies, usbhid->last_out + HZ * 5)) {
561 usb_block_urb(usbhid->urbout);
562 /* drop lock to not deadlock if the callback is called */
563 spin_unlock(&usbhid->lock);
Oliver Neukum858155f2010-02-12 13:02:28 +0100564 usb_unlink_urb(usbhid->urbout);
Oliver Neukum8815bb02012-04-30 09:13:46 +0200565 spin_lock(&usbhid->lock);
566 usb_unblock_urb(usbhid->urbout);
567 /*
568 * if the unlinking has already completed
569 * the pump will have been stopped
570 * it must be restarted now
571 */
572 if (!test_bit(HID_OUT_RUNNING, &usbhid->iofl))
573 if (!irq_out_pump_restart(hid))
574 set_bit(HID_OUT_RUNNING, &usbhid->iofl);
575
576
577 }
Oliver Neukum858155f2010-02-12 13:02:28 +0100578 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579 return;
580 }
581
Jiri Kosina4916b3a2006-12-08 18:41:03 +0100582 if ((head = (usbhid->ctrlhead + 1) & (HID_CONTROL_FIFO_SIZE - 1)) == usbhid->ctrltail) {
Joe Perches4291ee32010-12-09 19:29:03 -0800583 hid_warn(hid, "control queue full\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584 return;
585 }
586
Anssi Hannulaf129ea62008-10-04 14:44:06 +0200587 if (dir == USB_DIR_OUT) {
588 usbhid->ctrl[usbhid->ctrlhead].raw_report = kmalloc(len, GFP_ATOMIC);
589 if (!usbhid->ctrl[usbhid->ctrlhead].raw_report) {
Joe Perches4291ee32010-12-09 19:29:03 -0800590 hid_warn(hid, "control queueing failed\n");
Anssi Hannulaf129ea62008-10-04 14:44:06 +0200591 return;
592 }
593 hid_output_report(report, usbhid->ctrl[usbhid->ctrlhead].raw_report);
594 }
Jiri Kosina4916b3a2006-12-08 18:41:03 +0100595 usbhid->ctrl[usbhid->ctrlhead].report = report;
596 usbhid->ctrl[usbhid->ctrlhead].dir = dir;
597 usbhid->ctrlhead = head;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598
Daniel Kurtzf0befcd2011-11-17 19:23:49 +0800599 /* Try to awake from autosuspend... */
600 if (usb_autopm_get_interface_async(usbhid->intf) < 0)
601 return;
602
603 /*
604 * If already suspended, leave urb enqueued, but don't submit.
605 * Submission will occur if/when resume() drains the queue.
606 */
607 if (test_bit(HID_REPORTED_IDLE, &usbhid->iofl))
608 return;
609
Oliver Neukum858155f2010-02-12 13:02:28 +0100610 if (!test_and_set_bit(HID_CTRL_RUNNING, &usbhid->iofl)) {
Daniel Kurtzf0befcd2011-11-17 19:23:49 +0800611 if (hid_submit_ctrl(hid)) {
Jiri Kosina4916b3a2006-12-08 18:41:03 +0100612 clear_bit(HID_CTRL_RUNNING, &usbhid->iofl);
Daniel Kurtzf0befcd2011-11-17 19:23:49 +0800613 usb_autopm_put_interface_async(usbhid->intf);
614 }
615 wake_up(&usbhid->wait);
Oliver Neukum858155f2010-02-12 13:02:28 +0100616 } else {
617 /*
618 * the queue is known to run
619 * but an earlier request may be stuck
620 * we may need to time out
Oliver Neukum8815bb02012-04-30 09:13:46 +0200621 * no race because the URB is blocked under
Oliver Neukum858155f2010-02-12 13:02:28 +0100622 * spinlock
623 */
Oliver Neukum8815bb02012-04-30 09:13:46 +0200624 if (time_after(jiffies, usbhid->last_ctrl + HZ * 5)) {
625 usb_block_urb(usbhid->urbctrl);
626 /* drop lock to not deadlock if the callback is called */
627 spin_unlock(&usbhid->lock);
Oliver Neukum858155f2010-02-12 13:02:28 +0100628 usb_unlink_urb(usbhid->urbctrl);
Oliver Neukum8815bb02012-04-30 09:13:46 +0200629 spin_lock(&usbhid->lock);
630 usb_unblock_urb(usbhid->urbctrl);
631 /*
632 * if the unlinking has already completed
633 * the pump will have been stopped
634 * it must be restarted now
635 */
636 if (!test_bit(HID_CTRL_RUNNING, &usbhid->iofl))
637 if (!ctrl_pump_restart(hid))
638 set_bit(HID_CTRL_RUNNING, &usbhid->iofl);
639 }
Oliver Neukum858155f2010-02-12 13:02:28 +0100640 }
Oliver Neukum0361a282008-12-17 15:38:03 +0100641}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642
Oliver Neukum0361a282008-12-17 15:38:03 +0100643void usbhid_submit_report(struct hid_device *hid, struct hid_report *report, unsigned char dir)
644{
645 struct usbhid_device *usbhid = hid->driver_data;
646 unsigned long flags;
647
648 spin_lock_irqsave(&usbhid->lock, flags);
649 __usbhid_submit_report(hid, report, dir);
650 spin_unlock_irqrestore(&usbhid->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651}
Jiri Slaby606bd0a2008-07-04 23:06:45 +0200652EXPORT_SYMBOL_GPL(usbhid_submit_report);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653
Daniel Kurtz4371ea82011-11-17 19:23:50 +0800654/* Workqueue routine to send requests to change LEDs */
655static void hid_led(struct work_struct *work)
656{
657 struct usbhid_device *usbhid =
658 container_of(work, struct usbhid_device, led_work);
659 struct hid_device *hid = usbhid->hid;
660 struct hid_field *field;
661 unsigned long flags;
662
663 field = hidinput_get_led_field(hid);
664 if (!field) {
665 hid_warn(hid, "LED event field not found\n");
666 return;
667 }
668
669 spin_lock_irqsave(&usbhid->lock, flags);
670 if (!test_bit(HID_DISCONNECTED, &usbhid->iofl)) {
671 usbhid->ledcount = hidinput_count_leds(hid);
672 hid_dbg(usbhid->hid, "New ledcount = %u\n", usbhid->ledcount);
673 __usbhid_submit_report(hid, field->report, USB_DIR_OUT);
674 }
675 spin_unlock_irqrestore(&usbhid->lock, flags);
676}
677
Jiri Kosina229695e2006-12-08 18:40:53 +0100678static int usb_hidinput_input_event(struct input_dev *dev, unsigned int type, unsigned int code, int value)
Jiri Kosinadde58452006-12-08 18:40:44 +0100679{
Dmitry Torokhove0712982007-05-09 10:17:31 +0200680 struct hid_device *hid = input_get_drvdata(dev);
Oliver Neukum0361a282008-12-17 15:38:03 +0100681 struct usbhid_device *usbhid = hid->driver_data;
Jiri Kosinadde58452006-12-08 18:40:44 +0100682 struct hid_field *field;
Oliver Neukum0361a282008-12-17 15:38:03 +0100683 unsigned long flags;
Jiri Kosinadde58452006-12-08 18:40:44 +0100684 int offset;
685
686 if (type == EV_FF)
687 return input_ff_event(dev, type, code, value);
688
689 if (type != EV_LED)
690 return -1;
691
692 if ((offset = hidinput_find_field(hid, type, code, &field)) == -1) {
Joe Perches4291ee32010-12-09 19:29:03 -0800693 hid_warn(dev, "event field not found\n");
Jiri Kosinadde58452006-12-08 18:40:44 +0100694 return -1;
695 }
696
Daniel Kurtz4371ea82011-11-17 19:23:50 +0800697 spin_lock_irqsave(&usbhid->lock, flags);
Jiri Kosinadde58452006-12-08 18:40:44 +0100698 hid_set_field(field, offset, value);
Daniel Kurtz4371ea82011-11-17 19:23:50 +0800699 spin_unlock_irqrestore(&usbhid->lock, flags);
700
701 /*
702 * Defer performing requested LED action.
703 * This is more likely gather all LED changes into a single URB.
704 */
705 schedule_work(&usbhid->led_work);
Jiri Kosinadde58452006-12-08 18:40:44 +0100706
707 return 0;
708}
709
Jiri Kosina4916b3a2006-12-08 18:41:03 +0100710int usbhid_wait_io(struct hid_device *hid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711{
Jiri Kosina4916b3a2006-12-08 18:41:03 +0100712 struct usbhid_device *usbhid = hid->driver_data;
713
Jiri Slaby1d1bdd22008-03-19 21:55:04 +0100714 if (!wait_event_timeout(usbhid->wait,
715 (!test_bit(HID_CTRL_RUNNING, &usbhid->iofl) &&
716 !test_bit(HID_OUT_RUNNING, &usbhid->iofl)),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717 10*HZ)) {
Jiri Kosina58037eb2007-05-30 15:07:13 +0200718 dbg_hid("timeout waiting for ctrl or out queue to clear\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719 return -1;
720 }
721
722 return 0;
723}
Bruno Prémontb8c21cf2010-03-30 22:34:30 +0200724EXPORT_SYMBOL_GPL(usbhid_wait_io);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725
Vojtech Pavlik854561b2005-05-29 02:28:00 -0500726static int hid_set_idle(struct usb_device *dev, int ifnum, int report, int idle)
727{
Vojtech Pavlik71387bd2005-05-29 02:28:14 -0500728 return usb_control_msg(dev, usb_sndctrlpipe(dev, 0),
Vojtech Pavlik854561b2005-05-29 02:28:00 -0500729 HID_REQ_SET_IDLE, USB_TYPE_CLASS | USB_RECIP_INTERFACE, (idle << 8) | report,
730 ifnum, NULL, 0, USB_CTRL_SET_TIMEOUT);
731}
732
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733static int hid_get_class_descriptor(struct usb_device *dev, int ifnum,
734 unsigned char type, void *buf, int size)
735{
736 int result, retries = 4;
737
Jiri Kosina43c7bf02007-01-26 12:58:24 +0100738 memset(buf, 0, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739
740 do {
741 result = usb_control_msg(dev, usb_rcvctrlpipe(dev, 0),
742 USB_REQ_GET_DESCRIPTOR, USB_RECIP_INTERFACE | USB_DIR_IN,
743 (type << 8), ifnum, buf, size, USB_CTRL_GET_TIMEOUT);
744 retries--;
745 } while (result < size && retries);
746 return result;
747}
748
Jiri Kosina4916b3a2006-12-08 18:41:03 +0100749int usbhid_open(struct hid_device *hid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750{
Oliver Neukum933e3182007-07-11 14:48:58 +0200751 struct usbhid_device *usbhid = hid->driver_data;
752 int res;
753
Oliver Neukum0361a282008-12-17 15:38:03 +0100754 mutex_lock(&hid_open_mut);
Oliver Neukum933e3182007-07-11 14:48:58 +0200755 if (!hid->open++) {
756 res = usb_autopm_get_interface(usbhid->intf);
Oliver Neukum68229682010-12-22 15:33:40 +0100757 /* the device must be awake to reliably request remote wakeup */
Oliver Neukum933e3182007-07-11 14:48:58 +0200758 if (res < 0) {
759 hid->open--;
Oliver Neukum0361a282008-12-17 15:38:03 +0100760 mutex_unlock(&hid_open_mut);
Oliver Neukum933e3182007-07-11 14:48:58 +0200761 return -EIO;
762 }
Oliver Neukum0361a282008-12-17 15:38:03 +0100763 usbhid->intf->needs_remote_wakeup = 1;
764 if (hid_start_in(hid))
765 hid_io_error(hid);
766
767 usb_autopm_put_interface(usbhid->intf);
Oliver Neukum933e3182007-07-11 14:48:58 +0200768 }
Oliver Neukum0361a282008-12-17 15:38:03 +0100769 mutex_unlock(&hid_open_mut);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770 return 0;
771}
772
Jiri Kosina4916b3a2006-12-08 18:41:03 +0100773void usbhid_close(struct hid_device *hid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774{
Jiri Kosina4916b3a2006-12-08 18:41:03 +0100775 struct usbhid_device *usbhid = hid->driver_data;
776
Oliver Neukum0361a282008-12-17 15:38:03 +0100777 mutex_lock(&hid_open_mut);
778
779 /* protecting hid->open to make sure we don't restart
780 * data acquistion due to a resumption we no longer
781 * care about
782 */
783 spin_lock_irq(&usbhid->lock);
Oliver Neukum933e3182007-07-11 14:48:58 +0200784 if (!--hid->open) {
Oliver Neukum0361a282008-12-17 15:38:03 +0100785 spin_unlock_irq(&usbhid->lock);
Oliver Neukum89092dd2009-04-29 17:12:12 +0200786 hid_cancel_delayed_stuff(usbhid);
Jiri Kosina4916b3a2006-12-08 18:41:03 +0100787 usb_kill_urb(usbhid->urbin);
Oliver Neukum0361a282008-12-17 15:38:03 +0100788 usbhid->intf->needs_remote_wakeup = 0;
789 } else {
790 spin_unlock_irq(&usbhid->lock);
Oliver Neukum933e3182007-07-11 14:48:58 +0200791 }
Oliver Neukum0361a282008-12-17 15:38:03 +0100792 mutex_unlock(&hid_open_mut);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793}
794
795/*
796 * Initialize all reports
797 */
798
Jiri Kosina4916b3a2006-12-08 18:41:03 +0100799void usbhid_init_reports(struct hid_device *hid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800{
801 struct hid_report *report;
Jiri Kosina4916b3a2006-12-08 18:41:03 +0100802 struct usbhid_device *usbhid = hid->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803 int err, ret;
804
Michael Haboustakbf0964d2005-09-05 00:12:01 -0500805 list_for_each_entry(report, &hid->report_enum[HID_INPUT_REPORT].report_list, list)
Jiri Kosina4916b3a2006-12-08 18:41:03 +0100806 usbhid_submit_report(hid, report, USB_DIR_IN);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807
808 list_for_each_entry(report, &hid->report_enum[HID_FEATURE_REPORT].report_list, list)
Jiri Kosina4916b3a2006-12-08 18:41:03 +0100809 usbhid_submit_report(hid, report, USB_DIR_IN);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810
811 err = 0;
Jiri Kosina4916b3a2006-12-08 18:41:03 +0100812 ret = usbhid_wait_io(hid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813 while (ret) {
814 err |= ret;
Jiri Kosina4916b3a2006-12-08 18:41:03 +0100815 if (test_bit(HID_CTRL_RUNNING, &usbhid->iofl))
816 usb_kill_urb(usbhid->urbctrl);
817 if (test_bit(HID_OUT_RUNNING, &usbhid->iofl))
818 usb_kill_urb(usbhid->urbout);
819 ret = usbhid_wait_io(hid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820 }
821
822 if (err)
Joe Perches4291ee32010-12-09 19:29:03 -0800823 hid_warn(hid, "timeout initializing reports\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824}
825
Michael Haboustakbf0964d2005-09-05 00:12:01 -0500826/*
Pete Zaitcev713c8aa2007-04-06 14:33:18 +0200827 * Reset LEDs which BIOS might have left on. For now, just NumLock (0x01).
828 */
829static int hid_find_field_early(struct hid_device *hid, unsigned int page,
830 unsigned int hid_code, struct hid_field **pfield)
831{
832 struct hid_report *report;
833 struct hid_field *field;
834 struct hid_usage *usage;
835 int i, j;
836
837 list_for_each_entry(report, &hid->report_enum[HID_OUTPUT_REPORT].report_list, list) {
838 for (i = 0; i < report->maxfield; i++) {
839 field = report->field[i];
840 for (j = 0; j < field->maxusage; j++) {
841 usage = &field->usage[j];
842 if ((usage->hid & HID_USAGE_PAGE) == page &&
843 (usage->hid & 0xFFFF) == hid_code) {
844 *pfield = field;
845 return j;
846 }
847 }
848 }
849 }
850 return -1;
851}
852
Jiri Slaby6edfa8d2008-06-27 20:41:02 +0200853void usbhid_set_leds(struct hid_device *hid)
Pete Zaitcev713c8aa2007-04-06 14:33:18 +0200854{
855 struct hid_field *field;
856 int offset;
857
858 if ((offset = hid_find_field_early(hid, HID_UP_LED, 0x01, &field)) != -1) {
859 hid_set_field(field, offset, 0);
860 usbhid_submit_report(hid, field->report, USB_DIR_OUT);
861 }
862}
Jiri Slaby6edfa8d2008-06-27 20:41:02 +0200863EXPORT_SYMBOL_GPL(usbhid_set_leds);
Pete Zaitcev713c8aa2007-04-06 14:33:18 +0200864
865/*
Michael Haboustakbf0964d2005-09-05 00:12:01 -0500866 * Traverse the supplied list of reports and find the longest
867 */
Jiri Slaby282bfd42008-03-28 17:06:41 +0100868static void hid_find_max_report(struct hid_device *hid, unsigned int type,
869 unsigned int *max)
Michael Haboustakbf0964d2005-09-05 00:12:01 -0500870{
871 struct hid_report *report;
Jiri Slaby282bfd42008-03-28 17:06:41 +0100872 unsigned int size;
Michael Haboustakbf0964d2005-09-05 00:12:01 -0500873
874 list_for_each_entry(report, &hid->report_enum[type].report_list, list) {
Jiri Kosinaefc7ce12008-10-17 15:01:15 +0200875 size = ((report->size - 1) >> 3) + 1 + hid->report_enum[type].numbered;
Michael Haboustakbf0964d2005-09-05 00:12:01 -0500876 if (*max < size)
877 *max = size;
878 }
879}
880
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881static int hid_alloc_buffers(struct usb_device *dev, struct hid_device *hid)
882{
Jiri Kosina4916b3a2006-12-08 18:41:03 +0100883 struct usbhid_device *usbhid = hid->driver_data;
884
Daniel Mack997ea582010-04-12 13:17:25 +0200885 usbhid->inbuf = usb_alloc_coherent(dev, usbhid->bufsize, GFP_KERNEL,
Jiri Slaby898089d2008-11-24 16:20:06 +0100886 &usbhid->inbuf_dma);
Daniel Mack997ea582010-04-12 13:17:25 +0200887 usbhid->outbuf = usb_alloc_coherent(dev, usbhid->bufsize, GFP_KERNEL,
Jiri Slaby898089d2008-11-24 16:20:06 +0100888 &usbhid->outbuf_dma);
Alan Stern0ede76f2010-03-05 15:10:17 -0500889 usbhid->cr = kmalloc(sizeof(*usbhid->cr), GFP_KERNEL);
Daniel Mack997ea582010-04-12 13:17:25 +0200890 usbhid->ctrlbuf = usb_alloc_coherent(dev, usbhid->bufsize, GFP_KERNEL,
Jiri Slaby898089d2008-11-24 16:20:06 +0100891 &usbhid->ctrlbuf_dma);
892 if (!usbhid->inbuf || !usbhid->outbuf || !usbhid->cr ||
893 !usbhid->ctrlbuf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894 return -1;
895
896 return 0;
897}
898
Alan Ottb4dbde92011-01-18 03:04:39 -0500899static int usbhid_get_raw_report(struct hid_device *hid,
900 unsigned char report_number, __u8 *buf, size_t count,
901 unsigned char report_type)
902{
903 struct usbhid_device *usbhid = hid->driver_data;
904 struct usb_device *dev = hid_to_usb_dev(hid);
905 struct usb_interface *intf = usbhid->intf;
906 struct usb_host_interface *interface = intf->cur_altsetting;
907 int skipped_report_id = 0;
908 int ret;
909
910 /* Byte 0 is the report number. Report data starts at byte 1.*/
911 buf[0] = report_number;
912 if (report_number == 0x0) {
913 /* Offset the return buffer by 1, so that the report ID
914 will remain in byte 0. */
915 buf++;
916 count--;
917 skipped_report_id = 1;
918 }
919 ret = usb_control_msg(dev, usb_rcvctrlpipe(dev, 0),
920 HID_REQ_GET_REPORT,
921 USB_DIR_IN | USB_TYPE_CLASS | USB_RECIP_INTERFACE,
922 ((report_type + 1) << 8) | report_number,
923 interface->desc.bInterfaceNumber, buf, count,
924 USB_CTRL_SET_TIMEOUT);
925
926 /* count also the report id */
927 if (ret > 0 && skipped_report_id)
928 ret++;
929
930 return ret;
931}
932
Jiri Kosinad4bfa032010-01-29 15:03:36 +0100933static int usbhid_output_raw_report(struct hid_device *hid, __u8 *buf, size_t count,
934 unsigned char report_type)
Jiri Kosinaefc493f2007-05-14 09:54:30 +0200935{
936 struct usbhid_device *usbhid = hid->driver_data;
937 struct usb_device *dev = hid_to_usb_dev(hid);
938 struct usb_interface *intf = usbhid->intf;
939 struct usb_host_interface *interface = intf->cur_altsetting;
940 int ret;
941
Alan Ottfe2c91e2010-09-22 13:19:42 +0200942 if (usbhid->urbout && report_type != HID_FEATURE_REPORT) {
Alan Otta8ab5d52010-05-16 18:07:09 -0400943 int actual_length;
944 int skipped_report_id = 0;
Alan Ott12e52722010-09-22 13:33:20 +0200945
Alan Otta8ab5d52010-05-16 18:07:09 -0400946 if (buf[0] == 0x0) {
947 /* Don't send the Report ID */
948 buf++;
949 count--;
950 skipped_report_id = 1;
951 }
952 ret = usb_interrupt_msg(dev, usbhid->urbout->pipe,
953 buf, count, &actual_length,
954 USB_CTRL_SET_TIMEOUT);
955 /* return the number of bytes transferred */
956 if (ret == 0) {
957 ret = actual_length;
958 /* count also the report id */
959 if (skipped_report_id)
960 ret++;
961 }
962 } else {
Alan Ott29129a92010-06-30 09:50:36 -0400963 int skipped_report_id = 0;
Alan Ottc29771c2010-08-17 00:44:04 -0400964 int report_id = buf[0];
Alan Ott29129a92010-06-30 09:50:36 -0400965 if (buf[0] == 0x0) {
966 /* Don't send the Report ID */
967 buf++;
968 count--;
969 skipped_report_id = 1;
970 }
Alan Otta8ab5d52010-05-16 18:07:09 -0400971 ret = usb_control_msg(dev, usb_sndctrlpipe(dev, 0),
972 HID_REQ_SET_REPORT,
973 USB_DIR_OUT | USB_TYPE_CLASS | USB_RECIP_INTERFACE,
Alan Ottc29771c2010-08-17 00:44:04 -0400974 ((report_type + 1) << 8) | report_id,
Alan Ott29129a92010-06-30 09:50:36 -0400975 interface->desc.bInterfaceNumber, buf, count,
Alan Otta8ab5d52010-05-16 18:07:09 -0400976 USB_CTRL_SET_TIMEOUT);
Alan Ott29129a92010-06-30 09:50:36 -0400977 /* count also the report id, if this was a numbered report. */
978 if (ret > 0 && skipped_report_id)
Alan Otta8ab5d52010-05-16 18:07:09 -0400979 ret++;
980 }
Jiri Kosinaefc493f2007-05-14 09:54:30 +0200981
982 return ret;
983}
984
Oliver Neukum0361a282008-12-17 15:38:03 +0100985static void usbhid_restart_queues(struct usbhid_device *usbhid)
986{
987 if (usbhid->urbout)
988 usbhid_restart_out_queue(usbhid);
989 usbhid_restart_ctrl_queue(usbhid);
990}
991
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992static void hid_free_buffers(struct usb_device *dev, struct hid_device *hid)
993{
Jiri Kosina4916b3a2006-12-08 18:41:03 +0100994 struct usbhid_device *usbhid = hid->driver_data;
995
Daniel Mack997ea582010-04-12 13:17:25 +0200996 usb_free_coherent(dev, usbhid->bufsize, usbhid->inbuf, usbhid->inbuf_dma);
997 usb_free_coherent(dev, usbhid->bufsize, usbhid->outbuf, usbhid->outbuf_dma);
Alan Stern0ede76f2010-03-05 15:10:17 -0500998 kfree(usbhid->cr);
Daniel Mack997ea582010-04-12 13:17:25 +0200999 usb_free_coherent(dev, usbhid->bufsize, usbhid->ctrlbuf, usbhid->ctrlbuf_dma);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000}
1001
Jiri Slabyc500c972008-05-16 11:49:16 +02001002static int usbhid_parse(struct hid_device *hid)
1003{
1004 struct usb_interface *intf = to_usb_interface(hid->dev.parent);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005 struct usb_host_interface *interface = intf->cur_altsetting;
1006 struct usb_device *dev = interface_to_usbdev (intf);
1007 struct hid_descriptor *hdesc;
Paul Walmsley2eb5dc32007-04-19 13:27:04 +02001008 u32 quirks = 0;
Jiri Slabyc500c972008-05-16 11:49:16 +02001009 unsigned int rsize = 0;
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -05001010 char *rdesc;
Jiri Slabyc500c972008-05-16 11:49:16 +02001011 int ret, n;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012
Paul Walmsley2eb5dc32007-04-19 13:27:04 +02001013 quirks = usbhid_lookup_quirk(le16_to_cpu(dev->descriptor.idVendor),
1014 le16_to_cpu(dev->descriptor.idProduct));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015
Jiri Kosina6f4303f2009-01-29 00:15:51 +01001016 if (quirks & HID_QUIRK_IGNORE)
1017 return -ENODEV;
1018
Alan Stern0f28b552006-05-15 14:49:04 -04001019 /* Many keyboards and mice don't like to be polled for reports,
1020 * so we will always set the HID_QUIRK_NOGET flag for them. */
1021 if (interface->desc.bInterfaceSubClass == USB_INTERFACE_SUBCLASS_BOOT) {
1022 if (interface->desc.bInterfaceProtocol == USB_INTERFACE_PROTOCOL_KEYBOARD ||
1023 interface->desc.bInterfaceProtocol == USB_INTERFACE_PROTOCOL_MOUSE)
1024 quirks |= HID_QUIRK_NOGET;
1025 }
1026
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -05001027 if (usb_get_extra_descriptor(interface, HID_DT_HID, &hdesc) &&
1028 (!interface->desc.bNumEndpoints ||
1029 usb_get_extra_descriptor(&interface->endpoint[0], HID_DT_HID, &hdesc))) {
Jiri Kosina58037eb2007-05-30 15:07:13 +02001030 dbg_hid("class descriptor not present\n");
Jiri Slabyc500c972008-05-16 11:49:16 +02001031 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032 }
1033
Jiri Slabyc500c972008-05-16 11:49:16 +02001034 hid->version = le16_to_cpu(hdesc->bcdHID);
1035 hid->country = hdesc->bCountryCode;
1036
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037 for (n = 0; n < hdesc->bNumDescriptors; n++)
1038 if (hdesc->desc[n].bDescriptorType == HID_DT_REPORT)
1039 rsize = le16_to_cpu(hdesc->desc[n].wDescriptorLength);
1040
1041 if (!rsize || rsize > HID_MAX_DESCRIPTOR_SIZE) {
Jiri Kosina58037eb2007-05-30 15:07:13 +02001042 dbg_hid("weird size of report descriptor (%u)\n", rsize);
Jiri Slabyc500c972008-05-16 11:49:16 +02001043 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044 }
1045
1046 if (!(rdesc = kmalloc(rsize, GFP_KERNEL))) {
Jiri Kosina58037eb2007-05-30 15:07:13 +02001047 dbg_hid("couldn't allocate rdesc memory\n");
Jiri Slabyc500c972008-05-16 11:49:16 +02001048 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049 }
1050
Vojtech Pavlik854561b2005-05-29 02:28:00 -05001051 hid_set_idle(dev, interface->desc.bInterfaceNumber, 0, 0);
1052
Jiri Slabyc500c972008-05-16 11:49:16 +02001053 ret = hid_get_class_descriptor(dev, interface->desc.bInterfaceNumber,
1054 HID_DT_REPORT, rdesc, rsize);
1055 if (ret < 0) {
Jiri Kosina58037eb2007-05-30 15:07:13 +02001056 dbg_hid("reading report descriptor failed\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057 kfree(rdesc);
Jiri Slabyc500c972008-05-16 11:49:16 +02001058 goto err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059 }
1060
Jiri Slabyc500c972008-05-16 11:49:16 +02001061 ret = hid_parse_report(hid, rdesc, rsize);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062 kfree(rdesc);
Jiri Slabyc500c972008-05-16 11:49:16 +02001063 if (ret) {
1064 dbg_hid("parsing report descriptor failed\n");
1065 goto err;
1066 }
1067
Zoltan Karcagif5208992009-05-06 16:30:21 +02001068 hid->quirks |= quirks;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069
Jiri Slabyc500c972008-05-16 11:49:16 +02001070 return 0;
1071err:
1072 return ret;
1073}
1074
1075static int usbhid_start(struct hid_device *hid)
1076{
1077 struct usb_interface *intf = to_usb_interface(hid->dev.parent);
1078 struct usb_host_interface *interface = intf->cur_altsetting;
1079 struct usb_device *dev = interface_to_usbdev(intf);
Jiri Slaby3d5afd32008-10-27 12:16:15 +01001080 struct usbhid_device *usbhid = hid->driver_data;
Jiri Slabyc500c972008-05-16 11:49:16 +02001081 unsigned int n, insize = 0;
1082 int ret;
1083
Jiri Slabye3e14de2008-11-01 23:41:46 +01001084 clear_bit(HID_DISCONNECTED, &usbhid->iofl);
1085
Jiri Kosina4916b3a2006-12-08 18:41:03 +01001086 usbhid->bufsize = HID_MIN_BUFFER_SIZE;
1087 hid_find_max_report(hid, HID_INPUT_REPORT, &usbhid->bufsize);
1088 hid_find_max_report(hid, HID_OUTPUT_REPORT, &usbhid->bufsize);
1089 hid_find_max_report(hid, HID_FEATURE_REPORT, &usbhid->bufsize);
1090
1091 if (usbhid->bufsize > HID_MAX_BUFFER_SIZE)
1092 usbhid->bufsize = HID_MAX_BUFFER_SIZE;
Michael Haboustakbf0964d2005-09-05 00:12:01 -05001093
1094 hid_find_max_report(hid, HID_INPUT_REPORT, &insize);
1095
1096 if (insize > HID_MAX_BUFFER_SIZE)
1097 insize = HID_MAX_BUFFER_SIZE;
1098
Jiri Slabyc500c972008-05-16 11:49:16 +02001099 if (hid_alloc_buffers(dev, hid)) {
1100 ret = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001101 goto fail;
Pekka Sarnilaf345c372008-03-06 13:23:14 +01001102 }
1103
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104 for (n = 0; n < interface->desc.bNumEndpoints; n++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105 struct usb_endpoint_descriptor *endpoint;
1106 int pipe;
1107 int interval;
1108
1109 endpoint = &interface->endpoint[n].desc;
Jiri Slaby581a2732008-11-24 16:20:08 +01001110 if (!usb_endpoint_xfer_int(endpoint))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111 continue;
1112
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113 interval = endpoint->bInterval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114
Pekka Sarnilaf345c372008-03-06 13:23:14 +01001115 /* Some vendors give fullspeed interval on highspeed devides */
Jiri Slabyc500c972008-05-16 11:49:16 +02001116 if (hid->quirks & HID_QUIRK_FULLSPEED_INTERVAL &&
Pekka Sarnilaf345c372008-03-06 13:23:14 +01001117 dev->speed == USB_SPEED_HIGH) {
1118 interval = fls(endpoint->bInterval*8);
1119 printk(KERN_INFO "%s: Fixing fullspeed to highspeed interval: %d -> %d\n",
1120 hid->name, endpoint->bInterval, interval);
1121 }
1122
Linus Torvalds1da177e2005-04-16 15:20:36 -07001123 /* Change the polling interval of mice. */
1124 if (hid->collection->usage == HID_GD_MOUSE && hid_mousepoll_interval > 0)
1125 interval = hid_mousepoll_interval;
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -05001126
Jiri Slabyc500c972008-05-16 11:49:16 +02001127 ret = -ENOMEM;
Luiz Fernando N. Capitulino0f12aa02006-10-26 13:02:51 -03001128 if (usb_endpoint_dir_in(endpoint)) {
Jiri Kosina4916b3a2006-12-08 18:41:03 +01001129 if (usbhid->urbin)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130 continue;
Jiri Kosina4916b3a2006-12-08 18:41:03 +01001131 if (!(usbhid->urbin = usb_alloc_urb(0, GFP_KERNEL)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132 goto fail;
1133 pipe = usb_rcvintpipe(dev, endpoint->bEndpointAddress);
Jiri Kosina4916b3a2006-12-08 18:41:03 +01001134 usb_fill_int_urb(usbhid->urbin, dev, pipe, usbhid->inbuf, insize,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001135 hid_irq_in, hid, interval);
Jiri Kosina4916b3a2006-12-08 18:41:03 +01001136 usbhid->urbin->transfer_dma = usbhid->inbuf_dma;
1137 usbhid->urbin->transfer_flags |= URB_NO_TRANSFER_DMA_MAP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001138 } else {
Jiri Kosina4916b3a2006-12-08 18:41:03 +01001139 if (usbhid->urbout)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001140 continue;
Jiri Kosina4916b3a2006-12-08 18:41:03 +01001141 if (!(usbhid->urbout = usb_alloc_urb(0, GFP_KERNEL)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142 goto fail;
1143 pipe = usb_sndintpipe(dev, endpoint->bEndpointAddress);
Jiri Kosina4916b3a2006-12-08 18:41:03 +01001144 usb_fill_int_urb(usbhid->urbout, dev, pipe, usbhid->outbuf, 0,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145 hid_irq_out, hid, interval);
Jiri Kosina4916b3a2006-12-08 18:41:03 +01001146 usbhid->urbout->transfer_dma = usbhid->outbuf_dma;
1147 usbhid->urbout->transfer_flags |= URB_NO_TRANSFER_DMA_MAP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148 }
1149 }
1150
Jiri Kosina4916b3a2006-12-08 18:41:03 +01001151 usbhid->urbctrl = usb_alloc_urb(0, GFP_KERNEL);
Jiri Slabyc500c972008-05-16 11:49:16 +02001152 if (!usbhid->urbctrl) {
1153 ret = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001154 goto fail;
Jiri Slabyc500c972008-05-16 11:49:16 +02001155 }
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -05001156
Jiri Kosina4916b3a2006-12-08 18:41:03 +01001157 usb_fill_control_urb(usbhid->urbctrl, dev, 0, (void *) usbhid->cr,
1158 usbhid->ctrlbuf, 1, hid_ctrl, hid);
Jiri Kosina4916b3a2006-12-08 18:41:03 +01001159 usbhid->urbctrl->transfer_dma = usbhid->ctrlbuf_dma;
Alan Stern0ede76f2010-03-05 15:10:17 -05001160 usbhid->urbctrl->transfer_flags |= URB_NO_TRANSFER_DMA_MAP;
Jiri Slabyc500c972008-05-16 11:49:16 +02001161
Jiri Kosina5b915d92009-11-05 14:08:03 +01001162 if (!(hid->quirks & HID_QUIRK_NO_INIT_REPORTS))
1163 usbhid_init_reports(hid);
Jiri Slaby93c10132008-06-27 00:04:24 +02001164
Jiri Slaby3d5afd32008-10-27 12:16:15 +01001165 set_bit(HID_STARTED, &usbhid->iofl);
Jiri Slaby3d5afd32008-10-27 12:16:15 +01001166
Alan Stern08ef08e2008-10-30 23:58:51 +01001167 /* Some keyboards don't work until their LEDs have been set.
1168 * Since BIOSes do set the LEDs, it must be safe for any device
1169 * that supports the keyboard boot protocol.
Alan Stern3d615102010-04-02 13:21:58 -04001170 * In addition, enable remote wakeup by default for all keyboard
1171 * devices supporting the boot protocol.
Alan Stern08ef08e2008-10-30 23:58:51 +01001172 */
1173 if (interface->desc.bInterfaceSubClass == USB_INTERFACE_SUBCLASS_BOOT &&
1174 interface->desc.bInterfaceProtocol ==
Alan Stern3d615102010-04-02 13:21:58 -04001175 USB_INTERFACE_PROTOCOL_KEYBOARD) {
Alan Stern08ef08e2008-10-30 23:58:51 +01001176 usbhid_set_leds(hid);
Alan Stern3d615102010-04-02 13:21:58 -04001177 device_set_wakeup_enable(&dev->dev, 1);
1178 }
Jiri Slabyc500c972008-05-16 11:49:16 +02001179 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180
1181fail:
Jiri Kosina4916b3a2006-12-08 18:41:03 +01001182 usb_free_urb(usbhid->urbin);
1183 usb_free_urb(usbhid->urbout);
1184 usb_free_urb(usbhid->urbctrl);
Jiri Slabye3e14de2008-11-01 23:41:46 +01001185 usbhid->urbin = NULL;
1186 usbhid->urbout = NULL;
1187 usbhid->urbctrl = NULL;
Jiri Kosina22f675f2007-08-01 12:32:27 +02001188 hid_free_buffers(dev, hid);
Jiri Slabyc500c972008-05-16 11:49:16 +02001189 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190}
1191
Jiri Slabyc500c972008-05-16 11:49:16 +02001192static void usbhid_stop(struct hid_device *hid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001193{
Jiri Slabyc500c972008-05-16 11:49:16 +02001194 struct usbhid_device *usbhid = hid->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001195
Jiri Slabyc500c972008-05-16 11:49:16 +02001196 if (WARN_ON(!usbhid))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001197 return;
1198
Jiri Slaby3d5afd32008-10-27 12:16:15 +01001199 clear_bit(HID_STARTED, &usbhid->iofl);
Daniel Kurtz4371ea82011-11-17 19:23:50 +08001200 spin_lock_irq(&usbhid->lock); /* Sync with error and led handlers */
Oliver Neukum69626f22008-03-31 16:27:30 +02001201 set_bit(HID_DISCONNECTED, &usbhid->iofl);
Oliver Neukum0361a282008-12-17 15:38:03 +01001202 spin_unlock_irq(&usbhid->lock);
Jiri Kosina4916b3a2006-12-08 18:41:03 +01001203 usb_kill_urb(usbhid->urbin);
1204 usb_kill_urb(usbhid->urbout);
1205 usb_kill_urb(usbhid->urbctrl);
1206
Oliver Neukum0361a282008-12-17 15:38:03 +01001207 hid_cancel_delayed_stuff(usbhid);
Alan Sternaef4e262006-01-31 12:58:38 -05001208
Jiri Slabyc500c972008-05-16 11:49:16 +02001209 hid->claimed = 0;
1210
Jiri Kosina4916b3a2006-12-08 18:41:03 +01001211 usb_free_urb(usbhid->urbin);
1212 usb_free_urb(usbhid->urbctrl);
1213 usb_free_urb(usbhid->urbout);
Jiri Slabye3e14de2008-11-01 23:41:46 +01001214 usbhid->urbin = NULL; /* don't mess up next start */
1215 usbhid->urbctrl = NULL;
1216 usbhid->urbout = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001217
Anssi Hannulabe820972007-01-19 19:28:17 +02001218 hid_free_buffers(hid_to_usb_dev(hid), hid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219}
1220
Oliver Neukum0361a282008-12-17 15:38:03 +01001221static int usbhid_power(struct hid_device *hid, int lvl)
1222{
1223 int r = 0;
1224
1225 switch (lvl) {
1226 case PM_HINT_FULLON:
1227 r = usbhid_get_power(hid);
1228 break;
1229 case PM_HINT_NORMAL:
1230 usbhid_put_power(hid);
1231 break;
1232 }
1233 return r;
1234}
1235
Jiri Slabyc500c972008-05-16 11:49:16 +02001236static struct hid_ll_driver usb_hid_driver = {
1237 .parse = usbhid_parse,
1238 .start = usbhid_start,
1239 .stop = usbhid_stop,
1240 .open = usbhid_open,
1241 .close = usbhid_close,
Oliver Neukum0361a282008-12-17 15:38:03 +01001242 .power = usbhid_power,
Jiri Slabyc500c972008-05-16 11:49:16 +02001243 .hidinput_input_event = usb_hidinput_input_event,
1244};
1245
Jiri Kosinac4c259b2009-09-15 16:27:45 +02001246static int usbhid_probe(struct usb_interface *intf, const struct usb_device_id *id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247{
Jiri Slaby131d3a7a2008-11-14 12:03:47 +01001248 struct usb_host_interface *interface = intf->cur_altsetting;
Jiri Slabyc500c972008-05-16 11:49:16 +02001249 struct usb_device *dev = interface_to_usbdev(intf);
Jiri Slaby3d5afd32008-10-27 12:16:15 +01001250 struct usbhid_device *usbhid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001251 struct hid_device *hid;
Jiri Slaby131d3a7a2008-11-14 12:03:47 +01001252 unsigned int n, has_in = 0;
Jiri Slabyc500c972008-05-16 11:49:16 +02001253 size_t len;
1254 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255
Jiri Kosina58037eb2007-05-30 15:07:13 +02001256 dbg_hid("HID probe called for ifnum %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001257 intf->altsetting->desc.bInterfaceNumber);
1258
Jiri Slaby131d3a7a2008-11-14 12:03:47 +01001259 for (n = 0; n < interface->desc.bNumEndpoints; n++)
1260 if (usb_endpoint_is_int_in(&interface->endpoint[n].desc))
1261 has_in++;
1262 if (!has_in) {
Joe Perches4291ee32010-12-09 19:29:03 -08001263 hid_err(intf, "couldn't find an input interrupt endpoint\n");
Jiri Slaby131d3a7a2008-11-14 12:03:47 +01001264 return -ENODEV;
1265 }
1266
Jiri Slabyc500c972008-05-16 11:49:16 +02001267 hid = hid_allocate_device();
1268 if (IS_ERR(hid))
1269 return PTR_ERR(hid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270
1271 usb_set_intfdata(intf, hid);
Jiri Slabyc500c972008-05-16 11:49:16 +02001272 hid->ll_driver = &usb_hid_driver;
Alan Ottb4dbde92011-01-18 03:04:39 -05001273 hid->hid_get_raw_report = usbhid_get_raw_report;
Jiri Slabyc500c972008-05-16 11:49:16 +02001274 hid->hid_output_raw_report = usbhid_output_raw_report;
Jiri Slaby76483cf2008-09-18 12:23:33 +02001275 hid->ff_init = hid_pidff_init;
Jiri Slabyc500c972008-05-16 11:49:16 +02001276#ifdef CONFIG_USB_HIDDEV
Jiri Slaby93c10132008-06-27 00:04:24 +02001277 hid->hiddev_connect = hiddev_connect;
Jiri Kosinac4c259b2009-09-15 16:27:45 +02001278 hid->hiddev_disconnect = hiddev_disconnect;
Jiri Slabyc500c972008-05-16 11:49:16 +02001279 hid->hiddev_hid_event = hiddev_hid_event;
1280 hid->hiddev_report_event = hiddev_report_event;
1281#endif
1282 hid->dev.parent = &intf->dev;
1283 hid->bus = BUS_USB;
1284 hid->vendor = le16_to_cpu(dev->descriptor.idVendor);
1285 hid->product = le16_to_cpu(dev->descriptor.idProduct);
1286 hid->name[0] = 0;
Bastien Nocerab5e5a372010-04-16 17:19:50 +01001287 hid->quirks = usbhid_lookup_quirk(hid->vendor, hid->product);
Jiri Slabya73a6372008-10-22 14:45:11 +02001288 if (intf->cur_altsetting->desc.bInterfaceProtocol ==
1289 USB_INTERFACE_PROTOCOL_MOUSE)
1290 hid->type = HID_TYPE_USBMOUSE;
Tomoki Sekiyama6dc14182011-05-23 15:45:44 -07001291 else if (intf->cur_altsetting->desc.bInterfaceProtocol == 0)
1292 hid->type = HID_TYPE_USBNONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293
Jiri Slabyc500c972008-05-16 11:49:16 +02001294 if (dev->manufacturer)
1295 strlcpy(hid->name, dev->manufacturer, sizeof(hid->name));
1296
1297 if (dev->product) {
1298 if (dev->manufacturer)
1299 strlcat(hid->name, " ", sizeof(hid->name));
1300 strlcat(hid->name, dev->product, sizeof(hid->name));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001301 }
1302
Jiri Slabyc500c972008-05-16 11:49:16 +02001303 if (!strlen(hid->name))
1304 snprintf(hid->name, sizeof(hid->name), "HID %04x:%04x",
1305 le16_to_cpu(dev->descriptor.idVendor),
1306 le16_to_cpu(dev->descriptor.idProduct));
Jiri Kosina4916b3a2006-12-08 18:41:03 +01001307
Jiri Slabyc500c972008-05-16 11:49:16 +02001308 usb_make_path(dev, hid->phys, sizeof(hid->phys));
1309 strlcat(hid->phys, "/input", sizeof(hid->phys));
1310 len = strlen(hid->phys);
1311 if (len < sizeof(hid->phys) - 1)
1312 snprintf(hid->phys + len, sizeof(hid->phys) - len,
1313 "%d", intf->altsetting[0].desc.bInterfaceNumber);
Geoff Levand4a1a4d82007-01-15 20:11:52 -08001314
Jiri Slabyc500c972008-05-16 11:49:16 +02001315 if (usb_string(dev, dev->descriptor.iSerialNumber, hid->uniq, 64) <= 0)
1316 hid->uniq[0] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001317
Jiri Slaby3d5afd32008-10-27 12:16:15 +01001318 usbhid = kzalloc(sizeof(*usbhid), GFP_KERNEL);
1319 if (usbhid == NULL) {
1320 ret = -ENOMEM;
1321 goto err;
1322 }
1323
1324 hid->driver_data = usbhid;
1325 usbhid->hid = hid;
Jiri Kosina57ab12e2010-02-17 14:25:01 +01001326 usbhid->intf = intf;
1327 usbhid->ifnum = interface->desc.bInterfaceNumber;
Jiri Slaby3d5afd32008-10-27 12:16:15 +01001328
Alan Sternfde4e2f2010-05-07 10:41:10 -04001329 init_waitqueue_head(&usbhid->wait);
1330 INIT_WORK(&usbhid->reset_work, hid_reset);
Alan Sternfde4e2f2010-05-07 10:41:10 -04001331 setup_timer(&usbhid->io_retry, hid_retry_timeout, (unsigned long) hid);
1332 spin_lock_init(&usbhid->lock);
1333
Daniel Kurtz4371ea82011-11-17 19:23:50 +08001334 INIT_WORK(&usbhid->led_work, hid_led);
1335
Jiri Slaby85cdaf52008-05-16 11:49:15 +02001336 ret = hid_add_device(hid);
1337 if (ret) {
Jiri Slabyd458a9d2008-05-16 11:49:20 +02001338 if (ret != -ENODEV)
Joe Perches4291ee32010-12-09 19:29:03 -08001339 hid_err(intf, "can't add hid device: %d\n", ret);
Jiri Slaby3d5afd32008-10-27 12:16:15 +01001340 goto err_free;
Jiri Slaby85cdaf52008-05-16 11:49:15 +02001341 }
Jiri Slabyc500c972008-05-16 11:49:16 +02001342
1343 return 0;
Jiri Slaby3d5afd32008-10-27 12:16:15 +01001344err_free:
1345 kfree(usbhid);
Jiri Slabyc500c972008-05-16 11:49:16 +02001346err:
1347 hid_destroy_device(hid);
Jiri Slaby85cdaf52008-05-16 11:49:15 +02001348 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001349}
1350
Jiri Kosinac4c259b2009-09-15 16:27:45 +02001351static void usbhid_disconnect(struct usb_interface *intf)
Jiri Slabyc500c972008-05-16 11:49:16 +02001352{
1353 struct hid_device *hid = usb_get_intfdata(intf);
Jiri Slaby3d5afd32008-10-27 12:16:15 +01001354 struct usbhid_device *usbhid;
Jiri Slabyc500c972008-05-16 11:49:16 +02001355
1356 if (WARN_ON(!hid))
1357 return;
1358
Jiri Slaby3d5afd32008-10-27 12:16:15 +01001359 usbhid = hid->driver_data;
Jiri Slabyc500c972008-05-16 11:49:16 +02001360 hid_destroy_device(hid);
Jiri Slaby3d5afd32008-10-27 12:16:15 +01001361 kfree(usbhid);
Jiri Slabyc500c972008-05-16 11:49:16 +02001362}
1363
Oliver Neukum0361a282008-12-17 15:38:03 +01001364static void hid_cancel_delayed_stuff(struct usbhid_device *usbhid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001365{
Oliver Neukum0361a282008-12-17 15:38:03 +01001366 del_timer_sync(&usbhid->io_retry);
Oliver Neukum0361a282008-12-17 15:38:03 +01001367 cancel_work_sync(&usbhid->reset_work);
Daniel Kurtz4371ea82011-11-17 19:23:50 +08001368 cancel_work_sync(&usbhid->led_work);
Oliver Neukum0361a282008-12-17 15:38:03 +01001369}
1370
1371static void hid_cease_io(struct usbhid_device *usbhid)
1372{
Oliver Neukumfad9fbe2011-10-13 18:21:58 +02001373 del_timer_sync(&usbhid->io_retry);
Oliver Neukum0361a282008-12-17 15:38:03 +01001374 usb_kill_urb(usbhid->urbin);
1375 usb_kill_urb(usbhid->urbctrl);
1376 usb_kill_urb(usbhid->urbout);
Oliver Neukum0361a282008-12-17 15:38:03 +01001377}
1378
Jiri Kosinaae2f0072009-02-20 12:47:08 +01001379/* Treat USB reset pretty much the same as suspend/resume */
1380static int hid_pre_reset(struct usb_interface *intf)
1381{
1382 struct hid_device *hid = usb_get_intfdata(intf);
Jiri Kosina4916b3a2006-12-08 18:41:03 +01001383 struct usbhid_device *usbhid = hid->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384
Jiri Kosinaae2f0072009-02-20 12:47:08 +01001385 spin_lock_irq(&usbhid->lock);
1386 set_bit(HID_RESET_PENDING, &usbhid->iofl);
1387 spin_unlock_irq(&usbhid->lock);
1388 hid_cease_io(usbhid);
Jiri Slaby3d5afd32008-10-27 12:16:15 +01001389
Jiri Kosinaae2f0072009-02-20 12:47:08 +01001390 return 0;
1391}
1392
1393/* Same routine used for post_reset and reset_resume */
1394static int hid_post_reset(struct usb_interface *intf)
1395{
1396 struct usb_device *dev = interface_to_usbdev (intf);
1397 struct hid_device *hid = usb_get_intfdata(intf);
1398 struct usbhid_device *usbhid = hid->driver_data;
1399 int status;
Jiri Kosina70fa9f22009-06-04 15:48:38 +02001400
Jiri Kosinaae2f0072009-02-20 12:47:08 +01001401 spin_lock_irq(&usbhid->lock);
1402 clear_bit(HID_RESET_PENDING, &usbhid->iofl);
1403 spin_unlock_irq(&usbhid->lock);
1404 hid_set_idle(dev, intf->cur_altsetting->desc.bInterfaceNumber, 0, 0);
Jiri Kosinaae2f0072009-02-20 12:47:08 +01001405 status = hid_start_in(hid);
1406 if (status < 0)
1407 hid_io_error(hid);
1408 usbhid_restart_queues(usbhid);
1409
1410 return 0;
1411}
1412
1413int usbhid_get_power(struct hid_device *hid)
1414{
1415 struct usbhid_device *usbhid = hid->driver_data;
Jiri Kosina70fa9f22009-06-04 15:48:38 +02001416
Jiri Kosinaae2f0072009-02-20 12:47:08 +01001417 return usb_autopm_get_interface(usbhid->intf);
1418}
1419
1420void usbhid_put_power(struct hid_device *hid)
1421{
1422 struct usbhid_device *usbhid = hid->driver_data;
Jiri Kosina70fa9f22009-06-04 15:48:38 +02001423
Jiri Kosinaae2f0072009-02-20 12:47:08 +01001424 usb_autopm_put_interface(usbhid->intf);
1425}
1426
1427
Jiri Kosina0f6f1402009-01-19 09:17:18 +01001428#ifdef CONFIG_PM
Linus Torvalds1da177e2005-04-16 15:20:36 -07001429static int hid_suspend(struct usb_interface *intf, pm_message_t message)
1430{
Oliver Neukum0361a282008-12-17 15:38:03 +01001431 struct hid_device *hid = usb_get_intfdata(intf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001432 struct usbhid_device *usbhid = hid->driver_data;
Oliver Neukum0361a282008-12-17 15:38:03 +01001433 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001434
Alan Stern5b1b0b82011-08-19 23:49:48 +02001435 if (PMSG_IS_AUTO(message)) {
Oliver Neukum0361a282008-12-17 15:38:03 +01001436 spin_lock_irq(&usbhid->lock); /* Sync with error handler */
1437 if (!test_bit(HID_RESET_PENDING, &usbhid->iofl)
1438 && !test_bit(HID_CLEAR_HALT, &usbhid->iofl)
1439 && !test_bit(HID_OUT_RUNNING, &usbhid->iofl)
1440 && !test_bit(HID_CTRL_RUNNING, &usbhid->iofl)
1441 && !test_bit(HID_KEYS_PRESSED, &usbhid->iofl)
1442 && (!usbhid->ledcount || ignoreled))
1443 {
1444 set_bit(HID_REPORTED_IDLE, &usbhid->iofl);
1445 spin_unlock_irq(&usbhid->lock);
Bruno Prémont6a740aa2010-04-25 21:40:03 +02001446 if (hid->driver && hid->driver->suspend) {
1447 status = hid->driver->suspend(hid, message);
1448 if (status < 0)
1449 return status;
1450 }
Oliver Neukum0361a282008-12-17 15:38:03 +01001451 } else {
1452 usbhid_mark_busy(usbhid);
1453 spin_unlock_irq(&usbhid->lock);
1454 return -EBUSY;
1455 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001456
Oliver Neukum0361a282008-12-17 15:38:03 +01001457 } else {
Bruno Prémont6a740aa2010-04-25 21:40:03 +02001458 if (hid->driver && hid->driver->suspend) {
1459 status = hid->driver->suspend(hid, message);
1460 if (status < 0)
1461 return status;
1462 }
Oliver Neukum0361a282008-12-17 15:38:03 +01001463 spin_lock_irq(&usbhid->lock);
1464 set_bit(HID_REPORTED_IDLE, &usbhid->iofl);
1465 spin_unlock_irq(&usbhid->lock);
1466 if (usbhid_wait_io(hid) < 0)
1467 return -EIO;
1468 }
1469
Oliver Neukum0361a282008-12-17 15:38:03 +01001470 hid_cancel_delayed_stuff(usbhid);
1471 hid_cease_io(usbhid);
1472
Alan Stern5b1b0b82011-08-19 23:49:48 +02001473 if (PMSG_IS_AUTO(message) && test_bit(HID_KEYS_PRESSED, &usbhid->iofl)) {
Oliver Neukum0361a282008-12-17 15:38:03 +01001474 /* lost race against keypresses */
1475 status = hid_start_in(hid);
1476 if (status < 0)
1477 hid_io_error(hid);
1478 usbhid_mark_busy(usbhid);
1479 return -EBUSY;
1480 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001481 dev_dbg(&intf->dev, "suspend\n");
1482 return 0;
1483}
1484
1485static int hid_resume(struct usb_interface *intf)
1486{
1487 struct hid_device *hid = usb_get_intfdata (intf);
1488 struct usbhid_device *usbhid = hid->driver_data;
1489 int status;
1490
Jiri Slabyfde5be32008-11-23 12:03:20 +01001491 if (!test_bit(HID_STARTED, &usbhid->iofl))
Jiri Slaby3d5afd32008-10-27 12:16:15 +01001492 return 0;
Jiri Slaby3d5afd32008-10-27 12:16:15 +01001493
Oliver Neukum0361a282008-12-17 15:38:03 +01001494 clear_bit(HID_REPORTED_IDLE, &usbhid->iofl);
1495 usbhid_mark_busy(usbhid);
1496
1497 if (test_bit(HID_CLEAR_HALT, &usbhid->iofl) ||
1498 test_bit(HID_RESET_PENDING, &usbhid->iofl))
1499 schedule_work(&usbhid->reset_work);
Alan Sterndf9a1f42006-06-01 13:55:28 -04001500 usbhid->retry_delay = 0;
1501 status = hid_start_in(hid);
Oliver Neukum0361a282008-12-17 15:38:03 +01001502 if (status < 0)
1503 hid_io_error(hid);
1504 usbhid_restart_queues(usbhid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001505
Bruno Prémont6a740aa2010-04-25 21:40:03 +02001506 if (status >= 0 && hid->driver && hid->driver->resume) {
1507 int ret = hid->driver->resume(hid);
1508 if (ret < 0)
1509 status = ret;
1510 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001511 dev_dbg(&intf->dev, "resume status %d\n", status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001512 return 0;
1513}
1514
Oliver Neukum378a0ed2009-02-18 11:46:45 +01001515static int hid_reset_resume(struct usb_interface *intf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001516{
Oliver Neukum378a0ed2009-02-18 11:46:45 +01001517 struct hid_device *hid = usb_get_intfdata(intf);
1518 struct usbhid_device *usbhid = hid->driver_data;
Bruno Prémont6a740aa2010-04-25 21:40:03 +02001519 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001520
Oliver Neukum378a0ed2009-02-18 11:46:45 +01001521 clear_bit(HID_REPORTED_IDLE, &usbhid->iofl);
Bruno Prémont6a740aa2010-04-25 21:40:03 +02001522 status = hid_post_reset(intf);
1523 if (status >= 0 && hid->driver && hid->driver->reset_resume) {
1524 int ret = hid->driver->reset_resume(hid);
1525 if (ret < 0)
1526 status = ret;
1527 }
1528 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001529}
1530
Jiri Kosinaae2f0072009-02-20 12:47:08 +01001531#endif /* CONFIG_PM */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001532
Márton Némethd67dec52010-01-10 17:59:22 +01001533static const struct usb_device_id hid_usb_ids[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001534 { .match_flags = USB_DEVICE_ID_MATCH_INT_CLASS,
1535 .bInterfaceClass = USB_INTERFACE_CLASS_HID },
1536 { } /* Terminating entry */
1537};
1538
1539MODULE_DEVICE_TABLE (usb, hid_usb_ids);
1540
1541static struct usb_driver hid_driver = {
1542 .name = "usbhid",
Jiri Kosinac4c259b2009-09-15 16:27:45 +02001543 .probe = usbhid_probe,
1544 .disconnect = usbhid_disconnect,
Jiri Kosina0f6f1402009-01-19 09:17:18 +01001545#ifdef CONFIG_PM
Linus Torvalds1da177e2005-04-16 15:20:36 -07001546 .suspend = hid_suspend,
1547 .resume = hid_resume,
Oliver Neukum378a0ed2009-02-18 11:46:45 +01001548 .reset_resume = hid_reset_resume,
Jiri Kosina0f6f1402009-01-19 09:17:18 +01001549#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001550 .pre_reset = hid_pre_reset,
1551 .post_reset = hid_post_reset,
1552 .id_table = hid_usb_ids,
Oliver Neukum933e3182007-07-11 14:48:58 +02001553 .supports_autosuspend = 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001554};
1555
Jiri Slaby85cdaf52008-05-16 11:49:15 +02001556static const struct hid_device_id hid_usb_table[] = {
1557 { HID_USB_DEVICE(HID_ANY_ID, HID_ANY_ID) },
1558 { }
1559};
1560
Guillaume Chazarain8fe294c2010-09-12 21:32:35 +02001561struct usb_interface *usbhid_find_interface(int minor)
1562{
1563 return usb_find_interface(&hid_driver, minor);
1564}
1565
Jiri Slaby85cdaf52008-05-16 11:49:15 +02001566static struct hid_driver hid_usb_driver = {
1567 .name = "generic-usb",
1568 .id_table = hid_usb_table,
1569};
1570
Linus Torvalds1da177e2005-04-16 15:20:36 -07001571static int __init hid_init(void)
1572{
Oliver Neukum0361a282008-12-17 15:38:03 +01001573 int retval = -ENOMEM;
1574
Jiri Slaby85cdaf52008-05-16 11:49:15 +02001575 retval = hid_register_driver(&hid_usb_driver);
1576 if (retval)
1577 goto hid_register_fail;
Paul Walmsley876b9272007-04-19 14:56:12 +02001578 retval = usbhid_quirks_init(quirks_param);
1579 if (retval)
1580 goto usbhid_quirks_init_fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001581 retval = usb_register(&hid_driver);
1582 if (retval)
1583 goto usb_register_fail;
Jiri Kosinaccabcd22009-10-02 18:31:36 +02001584 printk(KERN_INFO KBUILD_MODNAME ": " DRIVER_DESC "\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001585
1586 return 0;
1587usb_register_fail:
Paul Walmsley876b9272007-04-19 14:56:12 +02001588 usbhid_quirks_exit();
1589usbhid_quirks_init_fail:
Jiri Slaby85cdaf52008-05-16 11:49:15 +02001590 hid_unregister_driver(&hid_usb_driver);
1591hid_register_fail:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001592 return retval;
1593}
1594
1595static void __exit hid_exit(void)
1596{
1597 usb_deregister(&hid_driver);
Paul Walmsley876b9272007-04-19 14:56:12 +02001598 usbhid_quirks_exit();
Jiri Slaby85cdaf52008-05-16 11:49:15 +02001599 hid_unregister_driver(&hid_usb_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001600}
1601
1602module_init(hid_init);
1603module_exit(hid_exit);
1604
Jiri Kosina88adb722009-10-02 18:29:34 +02001605MODULE_AUTHOR("Andreas Gal");
1606MODULE_AUTHOR("Vojtech Pavlik");
1607MODULE_AUTHOR("Jiri Kosina");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001608MODULE_DESCRIPTION(DRIVER_DESC);
1609MODULE_LICENSE(DRIVER_LICENSE);