blob: 8e0c4bf94ebc44b8a3cf214bfd82b9000a7b874a [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>
Simon Haggettdc3c78e2012-04-03 16:04:15 +010031#include <linux/string.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070032
Linus Torvalds1da177e2005-04-16 15:20:36 -070033#include <linux/usb.h>
34
Jiri Kosinadde58452006-12-08 18:40:44 +010035#include <linux/hid.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070036#include <linux/hiddev.h>
Jiri Kosinac080d892007-01-25 11:43:31 +010037#include <linux/hid-debug.h>
Jiri Kosina86166b72007-05-14 09:57:40 +020038#include <linux/hidraw.h>
Jiri Kosina4916b3a2006-12-08 18:41:03 +010039#include "usbhid.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070040
41/*
42 * Version Information
43 */
44
Linus Torvalds1da177e2005-04-16 15:20:36 -070045#define DRIVER_DESC "USB HID core driver"
46#define DRIVER_LICENSE "GPL"
47
Linus Torvalds1da177e2005-04-16 15:20:36 -070048/*
49 * Module parameters.
50 */
51
52static unsigned int hid_mousepoll_interval;
53module_param_named(mousepoll, hid_mousepoll_interval, uint, 0644);
54MODULE_PARM_DESC(mousepoll, "Polling interval of mice");
55
Oliver Neukum0361a282008-12-17 15:38:03 +010056static unsigned int ignoreled;
57module_param_named(ignoreled, ignoreled, uint, 0644);
58MODULE_PARM_DESC(ignoreled, "Autosuspend with active leds");
59
Paul Walmsley876b9272007-04-19 14:56:12 +020060/* Quirks specified at module load time */
61static char *quirks_param[MAX_USBHID_BOOT_QUIRKS] = { [ 0 ... (MAX_USBHID_BOOT_QUIRKS - 1) ] = NULL };
62module_param_array_named(quirks, quirks_param, charp, NULL, 0444);
63MODULE_PARM_DESC(quirks, "Add/modify USB HID quirks by specifying "
64 " quirks=vendorID:productID:quirks"
65 " where vendorID, productID, and quirks are all in"
66 " 0x-prefixed hex");
Linus Torvalds1da177e2005-04-16 15:20:36 -070067/*
Alan Sternaef4e262006-01-31 12:58:38 -050068 * Input submission and I/O error handler.
69 */
Oliver Neukum0361a282008-12-17 15:38:03 +010070static DEFINE_MUTEX(hid_open_mut);
Alan Sternaef4e262006-01-31 12:58:38 -050071
72static void hid_io_error(struct hid_device *hid);
Oliver Neukum0361a282008-12-17 15:38:03 +010073static int hid_submit_out(struct hid_device *hid);
74static int hid_submit_ctrl(struct hid_device *hid);
75static void hid_cancel_delayed_stuff(struct usbhid_device *usbhid);
Alan Sternaef4e262006-01-31 12:58:38 -050076
77/* Start up the input URB */
78static int hid_start_in(struct hid_device *hid)
79{
80 unsigned long flags;
81 int rc = 0;
Jiri Kosina4916b3a2006-12-08 18:41:03 +010082 struct usbhid_device *usbhid = hid->driver_data;
Alan Sternaef4e262006-01-31 12:58:38 -050083
Oliver Neukum0361a282008-12-17 15:38:03 +010084 spin_lock_irqsave(&usbhid->lock, flags);
85 if (hid->open > 0 &&
Oliver Neukum69626f22008-03-31 16:27:30 +020086 !test_bit(HID_DISCONNECTED, &usbhid->iofl) &&
Alan Sternf2b52642012-07-19 16:08:45 -040087 !test_bit(HID_SUSPENDED, &usbhid->iofl) &&
Jiri Kosina4916b3a2006-12-08 18:41:03 +010088 !test_and_set_bit(HID_IN_RUNNING, &usbhid->iofl)) {
89 rc = usb_submit_urb(usbhid->urbin, GFP_ATOMIC);
Oliver Neukuma8c52b62012-03-28 13:16:19 +020090 if (rc != 0) {
Jiri Kosina4916b3a2006-12-08 18:41:03 +010091 clear_bit(HID_IN_RUNNING, &usbhid->iofl);
Oliver Neukuma8c52b62012-03-28 13:16:19 +020092 if (rc == -ENOSPC)
93 set_bit(HID_NO_BANDWIDTH, &usbhid->iofl);
94 } else {
95 clear_bit(HID_NO_BANDWIDTH, &usbhid->iofl);
96 }
Alan Sternaef4e262006-01-31 12:58:38 -050097 }
Oliver Neukum0361a282008-12-17 15:38:03 +010098 spin_unlock_irqrestore(&usbhid->lock, flags);
Alan Sternaef4e262006-01-31 12:58:38 -050099 return rc;
100}
101
102/* I/O retry timer routine */
103static void hid_retry_timeout(unsigned long _hid)
104{
105 struct hid_device *hid = (struct hid_device *) _hid;
Jiri Kosina4916b3a2006-12-08 18:41:03 +0100106 struct usbhid_device *usbhid = hid->driver_data;
Alan Sternaef4e262006-01-31 12:58:38 -0500107
Jiri Kosina4916b3a2006-12-08 18:41:03 +0100108 dev_dbg(&usbhid->intf->dev, "retrying intr urb\n");
Alan Sternaef4e262006-01-31 12:58:38 -0500109 if (hid_start_in(hid))
110 hid_io_error(hid);
111}
112
Alan Stern6d8fc4d2006-10-18 12:35:24 -0400113/* Workqueue routine to reset the device or clear a halt */
David Howellsc4028952006-11-22 14:57:56 +0000114static void hid_reset(struct work_struct *work)
Alan Sternaef4e262006-01-31 12:58:38 -0500115{
Jiri Kosina4916b3a2006-12-08 18:41:03 +0100116 struct usbhid_device *usbhid =
117 container_of(work, struct usbhid_device, reset_work);
118 struct hid_device *hid = usbhid->hid;
Alan Stern011b15d2008-11-04 11:29:27 -0500119 int rc = 0;
Alan Sternaef4e262006-01-31 12:58:38 -0500120
Jiri Kosina4916b3a2006-12-08 18:41:03 +0100121 if (test_bit(HID_CLEAR_HALT, &usbhid->iofl)) {
122 dev_dbg(&usbhid->intf->dev, "clear halt\n");
Anssi Hannulabe820972007-01-19 19:28:17 +0200123 rc = usb_clear_halt(hid_to_usb_dev(hid), usbhid->urbin->pipe);
Jiri Kosina4916b3a2006-12-08 18:41:03 +0100124 clear_bit(HID_CLEAR_HALT, &usbhid->iofl);
Alan Stern6d8fc4d2006-10-18 12:35:24 -0400125 hid_start_in(hid);
Alan Sternaef4e262006-01-31 12:58:38 -0500126 }
Alan Stern6d8fc4d2006-10-18 12:35:24 -0400127
Jiri Kosina4916b3a2006-12-08 18:41:03 +0100128 else if (test_bit(HID_RESET_PENDING, &usbhid->iofl)) {
129 dev_dbg(&usbhid->intf->dev, "resetting device\n");
Alan Stern011b15d2008-11-04 11:29:27 -0500130 rc = usb_lock_device_for_reset(hid_to_usb_dev(hid), usbhid->intf);
131 if (rc == 0) {
Ming Lei742120c2008-06-18 22:00:29 +0800132 rc = usb_reset_device(hid_to_usb_dev(hid));
Alan Stern011b15d2008-11-04 11:29:27 -0500133 usb_unlock_device(hid_to_usb_dev(hid));
Alan Stern6d8fc4d2006-10-18 12:35:24 -0400134 }
Jiri Kosina4916b3a2006-12-08 18:41:03 +0100135 clear_bit(HID_RESET_PENDING, &usbhid->iofl);
Alan Stern6d8fc4d2006-10-18 12:35:24 -0400136 }
Alan Sternaef4e262006-01-31 12:58:38 -0500137
Alan Sterndf9a1f42006-06-01 13:55:28 -0400138 switch (rc) {
139 case 0:
Jiri Kosina4916b3a2006-12-08 18:41:03 +0100140 if (!test_bit(HID_IN_RUNNING, &usbhid->iofl))
Alan Sternaef4e262006-01-31 12:58:38 -0500141 hid_io_error(hid);
Alan Sterndf9a1f42006-06-01 13:55:28 -0400142 break;
143 default:
Joe Perches4291ee32010-12-09 19:29:03 -0800144 hid_err(hid, "can't reset device, %s-%s/input%d, status %d\n",
145 hid_to_usb_dev(hid)->bus->bus_name,
146 hid_to_usb_dev(hid)->devpath,
147 usbhid->ifnum, rc);
Alan Sterndf9a1f42006-06-01 13:55:28 -0400148 /* FALLTHROUGH */
149 case -EHOSTUNREACH:
150 case -ENODEV:
151 case -EINTR:
152 break;
153 }
Alan Sternaef4e262006-01-31 12:58:38 -0500154}
155
156/* Main I/O error handler */
157static void hid_io_error(struct hid_device *hid)
158{
159 unsigned long flags;
Jiri Kosina4916b3a2006-12-08 18:41:03 +0100160 struct usbhid_device *usbhid = hid->driver_data;
Alan Sternaef4e262006-01-31 12:58:38 -0500161
Oliver Neukum0361a282008-12-17 15:38:03 +0100162 spin_lock_irqsave(&usbhid->lock, flags);
Alan Sternaef4e262006-01-31 12:58:38 -0500163
164 /* Stop when disconnected */
Oliver Neukum69626f22008-03-31 16:27:30 +0200165 if (test_bit(HID_DISCONNECTED, &usbhid->iofl))
Alan Sternaef4e262006-01-31 12:58:38 -0500166 goto done;
167
Alan Stern5e2a55f2007-03-20 19:03:31 +0100168 /* If it has been a while since the last error, we'll assume
169 * this a brand new error and reset the retry timeout. */
170 if (time_after(jiffies, usbhid->stop_retry + HZ/2))
171 usbhid->retry_delay = 0;
172
Alan Sternaef4e262006-01-31 12:58:38 -0500173 /* When an error occurs, retry at increasing intervals */
Jiri Kosina4916b3a2006-12-08 18:41:03 +0100174 if (usbhid->retry_delay == 0) {
175 usbhid->retry_delay = 13; /* Then 26, 52, 104, 104, ... */
176 usbhid->stop_retry = jiffies + msecs_to_jiffies(1000);
177 } else if (usbhid->retry_delay < 100)
178 usbhid->retry_delay *= 2;
Alan Sternaef4e262006-01-31 12:58:38 -0500179
Jiri Kosina4916b3a2006-12-08 18:41:03 +0100180 if (time_after(jiffies, usbhid->stop_retry)) {
Alan Sternaef4e262006-01-31 12:58:38 -0500181
Oliver Neukuma8c52b62012-03-28 13:16:19 +0200182 /* Retries failed, so do a port reset unless we lack bandwidth*/
183 if (test_bit(HID_NO_BANDWIDTH, &usbhid->iofl)
184 && !test_and_set_bit(HID_RESET_PENDING, &usbhid->iofl)) {
185
Jiri Kosina4916b3a2006-12-08 18:41:03 +0100186 schedule_work(&usbhid->reset_work);
Alan Stern6d8fc4d2006-10-18 12:35:24 -0400187 goto done;
Alan Sternaef4e262006-01-31 12:58:38 -0500188 }
189 }
190
Jiri Kosina4916b3a2006-12-08 18:41:03 +0100191 mod_timer(&usbhid->io_retry,
192 jiffies + msecs_to_jiffies(usbhid->retry_delay));
Alan Sternaef4e262006-01-31 12:58:38 -0500193done:
Oliver Neukum0361a282008-12-17 15:38:03 +0100194 spin_unlock_irqrestore(&usbhid->lock, flags);
195}
196
197static void usbhid_mark_busy(struct usbhid_device *usbhid)
198{
199 struct usb_interface *intf = usbhid->intf;
200
201 usb_mark_last_busy(interface_to_usbdev(intf));
202}
203
204static int usbhid_restart_out_queue(struct usbhid_device *usbhid)
205{
206 struct hid_device *hid = usb_get_intfdata(usbhid->intf);
207 int kicked;
Daniel Kurtzf0befcd2011-11-17 19:23:49 +0800208 int r;
Oliver Neukum0361a282008-12-17 15:38:03 +0100209
Alan Sternd4150c82012-07-19 16:08:54 -0400210 if (!hid || test_bit(HID_RESET_PENDING, &usbhid->iofl) ||
211 test_bit(HID_SUSPENDED, &usbhid->iofl))
Oliver Neukum0361a282008-12-17 15:38:03 +0100212 return 0;
213
214 if ((kicked = (usbhid->outhead != usbhid->outtail))) {
Greg Kroah-Hartman6cc203d2012-05-01 21:32:55 -0700215 hid_dbg(hid, "Kicking head %d tail %d", usbhid->outhead, usbhid->outtail);
Daniel Kurtzf0befcd2011-11-17 19:23:49 +0800216
Alan Stern01a7c982012-07-19 16:08:31 -0400217 /* Try to wake up from autosuspend... */
Daniel Kurtzf0befcd2011-11-17 19:23:49 +0800218 r = usb_autopm_get_interface_async(usbhid->intf);
219 if (r < 0)
220 return r;
Alan Stern01a7c982012-07-19 16:08:31 -0400221
222 /*
223 * If still suspended, don't submit. Submission will
224 * occur if/when resume drains the queue.
225 */
Alan Sternf2b52642012-07-19 16:08:45 -0400226 if (test_bit(HID_SUSPENDED, &usbhid->iofl)) {
Alan Stern01a7c982012-07-19 16:08:31 -0400227 usb_autopm_put_interface_no_suspend(usbhid->intf);
228 return r;
229 }
230
Daniel Kurtzf0befcd2011-11-17 19:23:49 +0800231 /* Asynchronously flush queue. */
232 set_bit(HID_OUT_RUNNING, &usbhid->iofl);
Oliver Neukum0361a282008-12-17 15:38:03 +0100233 if (hid_submit_out(hid)) {
234 clear_bit(HID_OUT_RUNNING, &usbhid->iofl);
Daniel Kurtzf0befcd2011-11-17 19:23:49 +0800235 usb_autopm_put_interface_async(usbhid->intf);
Oliver Neukum0361a282008-12-17 15:38:03 +0100236 }
Daniel Kurtzf0befcd2011-11-17 19:23:49 +0800237 wake_up(&usbhid->wait);
Oliver Neukum0361a282008-12-17 15:38:03 +0100238 }
239 return kicked;
240}
241
242static int usbhid_restart_ctrl_queue(struct usbhid_device *usbhid)
243{
244 struct hid_device *hid = usb_get_intfdata(usbhid->intf);
245 int kicked;
Daniel Kurtzf0befcd2011-11-17 19:23:49 +0800246 int r;
Oliver Neukum0361a282008-12-17 15:38:03 +0100247
248 WARN_ON(hid == NULL);
Alan Sternd4150c82012-07-19 16:08:54 -0400249 if (!hid || test_bit(HID_RESET_PENDING, &usbhid->iofl) ||
250 test_bit(HID_SUSPENDED, &usbhid->iofl))
Oliver Neukum0361a282008-12-17 15:38:03 +0100251 return 0;
252
253 if ((kicked = (usbhid->ctrlhead != usbhid->ctrltail))) {
Greg Kroah-Hartman6cc203d2012-05-01 21:32:55 -0700254 hid_dbg(hid, "Kicking head %d tail %d", usbhid->ctrlhead, usbhid->ctrltail);
Daniel Kurtzf0befcd2011-11-17 19:23:49 +0800255
Alan Stern01a7c982012-07-19 16:08:31 -0400256 /* Try to wake up from autosuspend... */
Daniel Kurtzf0befcd2011-11-17 19:23:49 +0800257 r = usb_autopm_get_interface_async(usbhid->intf);
258 if (r < 0)
259 return r;
Alan Stern01a7c982012-07-19 16:08:31 -0400260
261 /*
262 * If still suspended, don't submit. Submission will
263 * occur if/when resume drains the queue.
264 */
Alan Sternf2b52642012-07-19 16:08:45 -0400265 if (test_bit(HID_SUSPENDED, &usbhid->iofl)) {
Alan Stern01a7c982012-07-19 16:08:31 -0400266 usb_autopm_put_interface_no_suspend(usbhid->intf);
267 return r;
268 }
269
Daniel Kurtzf0befcd2011-11-17 19:23:49 +0800270 /* Asynchronously flush queue. */
271 set_bit(HID_CTRL_RUNNING, &usbhid->iofl);
Oliver Neukum0361a282008-12-17 15:38:03 +0100272 if (hid_submit_ctrl(hid)) {
273 clear_bit(HID_CTRL_RUNNING, &usbhid->iofl);
Daniel Kurtzf0befcd2011-11-17 19:23:49 +0800274 usb_autopm_put_interface_async(usbhid->intf);
Oliver Neukum0361a282008-12-17 15:38:03 +0100275 }
Daniel Kurtzf0befcd2011-11-17 19:23:49 +0800276 wake_up(&usbhid->wait);
Oliver Neukum0361a282008-12-17 15:38:03 +0100277 }
278 return kicked;
Alan Sternaef4e262006-01-31 12:58:38 -0500279}
280
281/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282 * Input interrupt completion handler.
283 */
284
David Howells7d12e782006-10-05 14:55:46 +0100285static void hid_irq_in(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286{
287 struct hid_device *hid = urb->context;
Jiri Kosina4916b3a2006-12-08 18:41:03 +0100288 struct usbhid_device *usbhid = hid->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289 int status;
290
291 switch (urb->status) {
Jiri Slaby880d29f2008-06-18 23:55:41 +0200292 case 0: /* success */
Oliver Neukum0361a282008-12-17 15:38:03 +0100293 usbhid_mark_busy(usbhid);
Jiri Slaby880d29f2008-06-18 23:55:41 +0200294 usbhid->retry_delay = 0;
295 hid_input_report(urb->context, HID_INPUT_REPORT,
296 urb->transfer_buffer,
297 urb->actual_length, 1);
Oliver Neukum0361a282008-12-17 15:38:03 +0100298 /*
299 * autosuspend refused while keys are pressed
300 * because most keyboards don't wake up when
301 * a key is released
302 */
303 if (hid_check_keys_pressed(hid))
304 set_bit(HID_KEYS_PRESSED, &usbhid->iofl);
305 else
306 clear_bit(HID_KEYS_PRESSED, &usbhid->iofl);
Jiri Slaby880d29f2008-06-18 23:55:41 +0200307 break;
308 case -EPIPE: /* stall */
Oliver Neukum0361a282008-12-17 15:38:03 +0100309 usbhid_mark_busy(usbhid);
Jiri Slaby880d29f2008-06-18 23:55:41 +0200310 clear_bit(HID_IN_RUNNING, &usbhid->iofl);
311 set_bit(HID_CLEAR_HALT, &usbhid->iofl);
312 schedule_work(&usbhid->reset_work);
313 return;
314 case -ECONNRESET: /* unlink */
315 case -ENOENT:
316 case -ESHUTDOWN: /* unplug */
317 clear_bit(HID_IN_RUNNING, &usbhid->iofl);
318 return;
319 case -EILSEQ: /* protocol error or unplug */
320 case -EPROTO: /* protocol error or unplug */
321 case -ETIME: /* protocol error or unplug */
322 case -ETIMEDOUT: /* Should never happen, but... */
Oliver Neukum0361a282008-12-17 15:38:03 +0100323 usbhid_mark_busy(usbhid);
Jiri Slaby880d29f2008-06-18 23:55:41 +0200324 clear_bit(HID_IN_RUNNING, &usbhid->iofl);
325 hid_io_error(hid);
326 return;
327 default: /* error */
Joe Perches4291ee32010-12-09 19:29:03 -0800328 hid_warn(urb->dev, "input irq status %d received\n",
329 urb->status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330 }
331
Christoph Lameter54e6ecb2006-12-06 20:33:16 -0800332 status = usb_submit_urb(urb, GFP_ATOMIC);
Alan Sternaef4e262006-01-31 12:58:38 -0500333 if (status) {
Jiri Kosina4916b3a2006-12-08 18:41:03 +0100334 clear_bit(HID_IN_RUNNING, &usbhid->iofl);
Alan Sternaef4e262006-01-31 12:58:38 -0500335 if (status != -EPERM) {
Joe Perches4291ee32010-12-09 19:29:03 -0800336 hid_err(hid, "can't resubmit intr, %s-%s/input%d, status %d\n",
337 hid_to_usb_dev(hid)->bus->bus_name,
338 hid_to_usb_dev(hid)->devpath,
339 usbhid->ifnum, status);
Alan Sternaef4e262006-01-31 12:58:38 -0500340 hid_io_error(hid);
341 }
342 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343}
344
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345static int hid_submit_out(struct hid_device *hid)
346{
347 struct hid_report *report;
Anssi Hannulaf129ea62008-10-04 14:44:06 +0200348 char *raw_report;
Jiri Kosina4916b3a2006-12-08 18:41:03 +0100349 struct usbhid_device *usbhid = hid->driver_data;
Oliver Neukum68229682010-12-22 15:33:40 +0100350 int r;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351
Anssi Hannulaf129ea62008-10-04 14:44:06 +0200352 report = usbhid->out[usbhid->outtail].report;
353 raw_report = usbhid->out[usbhid->outtail].raw_report;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354
Daniel Kurtzf0befcd2011-11-17 19:23:49 +0800355 usbhid->urbout->transfer_buffer_length = ((report->size - 1) >> 3) +
356 1 + (report->id > 0);
357 usbhid->urbout->dev = hid_to_usb_dev(hid);
Alan Stern668160e2012-07-19 16:08:21 -0400358 if (raw_report) {
359 memcpy(usbhid->outbuf, raw_report,
360 usbhid->urbout->transfer_buffer_length);
361 kfree(raw_report);
362 usbhid->out[usbhid->outtail].raw_report = NULL;
363 }
Oliver Neukum68229682010-12-22 15:33:40 +0100364
Daniel Kurtzf0befcd2011-11-17 19:23:49 +0800365 dbg_hid("submitting out urb\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366
Daniel Kurtzf0befcd2011-11-17 19:23:49 +0800367 r = usb_submit_urb(usbhid->urbout, GFP_ATOMIC);
368 if (r < 0) {
369 hid_err(hid, "usb_submit_urb(out) failed: %d\n", r);
370 return r;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 }
Daniel Kurtzf0befcd2011-11-17 19:23:49 +0800372 usbhid->last_out = jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373 return 0;
374}
375
376static int hid_submit_ctrl(struct hid_device *hid)
377{
378 struct hid_report *report;
379 unsigned char dir;
Anssi Hannulaf129ea62008-10-04 14:44:06 +0200380 char *raw_report;
Oliver Neukum68229682010-12-22 15:33:40 +0100381 int len, r;
Jiri Kosina4916b3a2006-12-08 18:41:03 +0100382 struct usbhid_device *usbhid = hid->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383
Jiri Kosina4916b3a2006-12-08 18:41:03 +0100384 report = usbhid->ctrl[usbhid->ctrltail].report;
Anssi Hannulaf129ea62008-10-04 14:44:06 +0200385 raw_report = usbhid->ctrl[usbhid->ctrltail].raw_report;
Jiri Kosina4916b3a2006-12-08 18:41:03 +0100386 dir = usbhid->ctrl[usbhid->ctrltail].dir;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387
Daniel Kurtzf0befcd2011-11-17 19:23:49 +0800388 len = ((report->size - 1) >> 3) + 1 + (report->id > 0);
389 if (dir == USB_DIR_OUT) {
390 usbhid->urbctrl->pipe = usb_sndctrlpipe(hid_to_usb_dev(hid), 0);
391 usbhid->urbctrl->transfer_buffer_length = len;
Alan Stern668160e2012-07-19 16:08:21 -0400392 if (raw_report) {
393 memcpy(usbhid->ctrlbuf, raw_report, len);
394 kfree(raw_report);
395 usbhid->ctrl[usbhid->ctrltail].raw_report = NULL;
396 }
Daniel Kurtzf0befcd2011-11-17 19:23:49 +0800397 } else {
398 int maxpacket, padlen;
Oliver Neukum0361a282008-12-17 15:38:03 +0100399
Daniel Kurtzf0befcd2011-11-17 19:23:49 +0800400 usbhid->urbctrl->pipe = usb_rcvctrlpipe(hid_to_usb_dev(hid), 0);
401 maxpacket = usb_maxpacket(hid_to_usb_dev(hid),
402 usbhid->urbctrl->pipe, 0);
403 if (maxpacket > 0) {
404 padlen = DIV_ROUND_UP(len, maxpacket);
405 padlen *= maxpacket;
406 if (padlen > usbhid->bufsize)
407 padlen = usbhid->bufsize;
408 } else
409 padlen = 0;
410 usbhid->urbctrl->transfer_buffer_length = padlen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411 }
Daniel Kurtzf0befcd2011-11-17 19:23:49 +0800412 usbhid->urbctrl->dev = hid_to_usb_dev(hid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413
Daniel Kurtzf0befcd2011-11-17 19:23:49 +0800414 usbhid->cr->bRequestType = USB_TYPE_CLASS | USB_RECIP_INTERFACE | dir;
415 usbhid->cr->bRequest = (dir == USB_DIR_OUT) ? HID_REQ_SET_REPORT :
416 HID_REQ_GET_REPORT;
417 usbhid->cr->wValue = cpu_to_le16(((report->type + 1) << 8) |
418 report->id);
419 usbhid->cr->wIndex = cpu_to_le16(usbhid->ifnum);
420 usbhid->cr->wLength = cpu_to_le16(len);
421
422 dbg_hid("submitting ctrl urb: %s wValue=0x%04x wIndex=0x%04x wLength=%u\n",
423 usbhid->cr->bRequest == HID_REQ_SET_REPORT ? "Set_Report" :
424 "Get_Report",
425 usbhid->cr->wValue, usbhid->cr->wIndex, usbhid->cr->wLength);
426
427 r = usb_submit_urb(usbhid->urbctrl, GFP_ATOMIC);
428 if (r < 0) {
429 hid_err(hid, "usb_submit_urb(ctrl) failed: %d\n", r);
430 return r;
431 }
432 usbhid->last_ctrl = jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 return 0;
434}
435
436/*
437 * Output interrupt completion handler.
438 */
439
David Howells7d12e782006-10-05 14:55:46 +0100440static void hid_irq_out(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441{
442 struct hid_device *hid = urb->context;
Jiri Kosina4916b3a2006-12-08 18:41:03 +0100443 struct usbhid_device *usbhid = hid->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444 unsigned long flags;
445 int unplug = 0;
446
447 switch (urb->status) {
Jiri Slaby880d29f2008-06-18 23:55:41 +0200448 case 0: /* success */
449 break;
450 case -ESHUTDOWN: /* unplug */
451 unplug = 1;
452 case -EILSEQ: /* protocol error or unplug */
453 case -EPROTO: /* protocol error or unplug */
454 case -ECONNRESET: /* unlink */
455 case -ENOENT:
456 break;
457 default: /* error */
Joe Perches4291ee32010-12-09 19:29:03 -0800458 hid_warn(urb->dev, "output irq status %d received\n",
459 urb->status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460 }
461
Oliver Neukum0361a282008-12-17 15:38:03 +0100462 spin_lock_irqsave(&usbhid->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463
Alan Stern93101af2012-07-19 16:08:39 -0400464 if (unplug) {
Jiri Kosina4916b3a2006-12-08 18:41:03 +0100465 usbhid->outtail = usbhid->outhead;
Alan Stern93101af2012-07-19 16:08:39 -0400466 } else {
Jiri Kosina4916b3a2006-12-08 18:41:03 +0100467 usbhid->outtail = (usbhid->outtail + 1) & (HID_OUTPUT_FIFO_SIZE - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468
Alan Stern93101af2012-07-19 16:08:39 -0400469 if (usbhid->outhead != usbhid->outtail &&
470 hid_submit_out(hid) == 0) {
471 /* Successfully submitted next urb in queue */
472 spin_unlock_irqrestore(&usbhid->lock, flags);
473 return;
474 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475 }
476
Jiri Kosina4916b3a2006-12-08 18:41:03 +0100477 clear_bit(HID_OUT_RUNNING, &usbhid->iofl);
Oliver Neukum0361a282008-12-17 15:38:03 +0100478 spin_unlock_irqrestore(&usbhid->lock, flags);
Oliver Neukum68229682010-12-22 15:33:40 +0100479 usb_autopm_put_interface_async(usbhid->intf);
Jiri Slaby1d1bdd22008-03-19 21:55:04 +0100480 wake_up(&usbhid->wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481}
482
483/*
484 * Control pipe completion handler.
485 */
486
David Howells7d12e782006-10-05 14:55:46 +0100487static void hid_ctrl(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488{
489 struct hid_device *hid = urb->context;
Jiri Kosina4916b3a2006-12-08 18:41:03 +0100490 struct usbhid_device *usbhid = hid->driver_data;
Oliver Neukum0361a282008-12-17 15:38:03 +0100491 int unplug = 0, status = urb->status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492
Oliver Neukum0361a282008-12-17 15:38:03 +0100493 spin_lock(&usbhid->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494
Oliver Neukum0361a282008-12-17 15:38:03 +0100495 switch (status) {
Jiri Slaby880d29f2008-06-18 23:55:41 +0200496 case 0: /* success */
497 if (usbhid->ctrl[usbhid->ctrltail].dir == USB_DIR_IN)
498 hid_input_report(urb->context,
499 usbhid->ctrl[usbhid->ctrltail].report->type,
500 urb->transfer_buffer, urb->actual_length, 0);
501 break;
502 case -ESHUTDOWN: /* unplug */
503 unplug = 1;
504 case -EILSEQ: /* protocol error or unplug */
505 case -EPROTO: /* protocol error or unplug */
506 case -ECONNRESET: /* unlink */
507 case -ENOENT:
508 case -EPIPE: /* report not available */
509 break;
510 default: /* error */
Joe Perches4291ee32010-12-09 19:29:03 -0800511 hid_warn(urb->dev, "ctrl urb status %d received\n", status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512 }
513
Alan Stern93101af2012-07-19 16:08:39 -0400514 if (unplug) {
Jiri Kosina4916b3a2006-12-08 18:41:03 +0100515 usbhid->ctrltail = usbhid->ctrlhead;
Alan Stern93101af2012-07-19 16:08:39 -0400516 } else {
Jiri Kosina4916b3a2006-12-08 18:41:03 +0100517 usbhid->ctrltail = (usbhid->ctrltail + 1) & (HID_CONTROL_FIFO_SIZE - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518
Alan Stern93101af2012-07-19 16:08:39 -0400519 if (usbhid->ctrlhead != usbhid->ctrltail &&
520 hid_submit_ctrl(hid) == 0) {
521 /* Successfully submitted next urb in queue */
522 spin_unlock(&usbhid->lock);
523 return;
524 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525 }
526
Jiri Kosina4916b3a2006-12-08 18:41:03 +0100527 clear_bit(HID_CTRL_RUNNING, &usbhid->iofl);
Oliver Neukum0361a282008-12-17 15:38:03 +0100528 spin_unlock(&usbhid->lock);
Oliver Neukum68229682010-12-22 15:33:40 +0100529 usb_autopm_put_interface_async(usbhid->intf);
Jiri Slaby1d1bdd22008-03-19 21:55:04 +0100530 wake_up(&usbhid->wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531}
532
H Hartley Sweeten52cfc612009-08-17 15:37:18 -0700533static void __usbhid_submit_report(struct hid_device *hid, struct hid_report *report,
534 unsigned char dir)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535{
536 int head;
Jiri Kosina4916b3a2006-12-08 18:41:03 +0100537 struct usbhid_device *usbhid = hid->driver_data;
Anssi Hannulaf129ea62008-10-04 14:44:06 +0200538 int len = ((report->size - 1) >> 3) + 1 + (report->id > 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539
540 if ((hid->quirks & HID_QUIRK_NOGET) && dir == USB_DIR_IN)
541 return;
542
Jiri Kosina4916b3a2006-12-08 18:41:03 +0100543 if (usbhid->urbout && dir == USB_DIR_OUT && report->type == HID_OUTPUT_REPORT) {
Jiri Kosina4916b3a2006-12-08 18:41:03 +0100544 if ((head = (usbhid->outhead + 1) & (HID_OUTPUT_FIFO_SIZE - 1)) == usbhid->outtail) {
Joe Perches4291ee32010-12-09 19:29:03 -0800545 hid_warn(hid, "output queue full\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546 return;
547 }
548
Anssi Hannulaf129ea62008-10-04 14:44:06 +0200549 usbhid->out[usbhid->outhead].raw_report = kmalloc(len, GFP_ATOMIC);
550 if (!usbhid->out[usbhid->outhead].raw_report) {
Joe Perches4291ee32010-12-09 19:29:03 -0800551 hid_warn(hid, "output queueing failed\n");
Anssi Hannulaf129ea62008-10-04 14:44:06 +0200552 return;
553 }
554 hid_output_report(report, usbhid->out[usbhid->outhead].raw_report);
555 usbhid->out[usbhid->outhead].report = report;
Jiri Kosina4916b3a2006-12-08 18:41:03 +0100556 usbhid->outhead = head;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557
Alan Stern01a7c982012-07-19 16:08:31 -0400558 /* If the queue isn't running, restart it */
559 if (!test_bit(HID_OUT_RUNNING, &usbhid->iofl)) {
560 usbhid_restart_out_queue(usbhid);
Daniel Kurtzf0befcd2011-11-17 19:23:49 +0800561
Alan Stern01a7c982012-07-19 16:08:31 -0400562 /* Otherwise see if an earlier request has timed out */
563 } else if (time_after(jiffies, usbhid->last_out + HZ * 5)) {
Daniel Kurtzf0befcd2011-11-17 19:23:49 +0800564
Alan Stern01a7c982012-07-19 16:08:31 -0400565 /* Prevent autosuspend following the unlink */
566 usb_autopm_get_interface_no_resume(usbhid->intf);
567
Oliver Neukum858155f2010-02-12 13:02:28 +0100568 /*
Alan Stern01a7c982012-07-19 16:08:31 -0400569 * Prevent resubmission in case the URB completes
570 * before we can unlink it. We don't want to cancel
571 * the wrong transfer!
Oliver Neukum858155f2010-02-12 13:02:28 +0100572 */
Alan Stern01a7c982012-07-19 16:08:31 -0400573 usb_block_urb(usbhid->urbout);
Oliver Neukum8815bb02012-04-30 09:13:46 +0200574
Alan Stern01a7c982012-07-19 16:08:31 -0400575 /* Drop lock to avoid deadlock if the callback runs */
576 spin_unlock(&usbhid->lock);
Oliver Neukum8815bb02012-04-30 09:13:46 +0200577
Alan Stern01a7c982012-07-19 16:08:31 -0400578 usb_unlink_urb(usbhid->urbout);
579 spin_lock(&usbhid->lock);
580 usb_unblock_urb(usbhid->urbout);
581
582 /* Unlink might have stopped the queue */
583 if (!test_bit(HID_OUT_RUNNING, &usbhid->iofl))
584 usbhid_restart_out_queue(usbhid);
585
586 /* Now we can allow autosuspend again */
587 usb_autopm_put_interface_async(usbhid->intf);
Oliver Neukum858155f2010-02-12 13:02:28 +0100588 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589 return;
590 }
591
Jiri Kosina4916b3a2006-12-08 18:41:03 +0100592 if ((head = (usbhid->ctrlhead + 1) & (HID_CONTROL_FIFO_SIZE - 1)) == usbhid->ctrltail) {
Joe Perches4291ee32010-12-09 19:29:03 -0800593 hid_warn(hid, "control queue full\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594 return;
595 }
596
Anssi Hannulaf129ea62008-10-04 14:44:06 +0200597 if (dir == USB_DIR_OUT) {
598 usbhid->ctrl[usbhid->ctrlhead].raw_report = kmalloc(len, GFP_ATOMIC);
599 if (!usbhid->ctrl[usbhid->ctrlhead].raw_report) {
Joe Perches4291ee32010-12-09 19:29:03 -0800600 hid_warn(hid, "control queueing failed\n");
Anssi Hannulaf129ea62008-10-04 14:44:06 +0200601 return;
602 }
603 hid_output_report(report, usbhid->ctrl[usbhid->ctrlhead].raw_report);
604 }
Jiri Kosina4916b3a2006-12-08 18:41:03 +0100605 usbhid->ctrl[usbhid->ctrlhead].report = report;
606 usbhid->ctrl[usbhid->ctrlhead].dir = dir;
607 usbhid->ctrlhead = head;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608
Alan Stern01a7c982012-07-19 16:08:31 -0400609 /* If the queue isn't running, restart it */
610 if (!test_bit(HID_CTRL_RUNNING, &usbhid->iofl)) {
611 usbhid_restart_ctrl_queue(usbhid);
Daniel Kurtzf0befcd2011-11-17 19:23:49 +0800612
Alan Stern01a7c982012-07-19 16:08:31 -0400613 /* Otherwise see if an earlier request has timed out */
614 } else if (time_after(jiffies, usbhid->last_ctrl + HZ * 5)) {
Daniel Kurtzf0befcd2011-11-17 19:23:49 +0800615
Alan Stern01a7c982012-07-19 16:08:31 -0400616 /* Prevent autosuspend following the unlink */
617 usb_autopm_get_interface_no_resume(usbhid->intf);
618
Oliver Neukum858155f2010-02-12 13:02:28 +0100619 /*
Alan Stern01a7c982012-07-19 16:08:31 -0400620 * Prevent resubmission in case the URB completes
621 * before we can unlink it. We don't want to cancel
622 * the wrong transfer!
Oliver Neukum858155f2010-02-12 13:02:28 +0100623 */
Alan Stern01a7c982012-07-19 16:08:31 -0400624 usb_block_urb(usbhid->urbctrl);
625
626 /* Drop lock to avoid deadlock if the callback runs */
627 spin_unlock(&usbhid->lock);
628
629 usb_unlink_urb(usbhid->urbctrl);
630 spin_lock(&usbhid->lock);
631 usb_unblock_urb(usbhid->urbctrl);
632
633 /* Unlink might have stopped the queue */
634 if (!test_bit(HID_CTRL_RUNNING, &usbhid->iofl))
635 usbhid_restart_ctrl_queue(usbhid);
636
637 /* Now we can allow autosuspend again */
638 usb_autopm_put_interface_async(usbhid->intf);
Oliver Neukum858155f2010-02-12 13:02:28 +0100639 }
Oliver Neukum0361a282008-12-17 15:38:03 +0100640}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641
Oliver Neukum0361a282008-12-17 15:38:03 +0100642void usbhid_submit_report(struct hid_device *hid, struct hid_report *report, unsigned char dir)
643{
644 struct usbhid_device *usbhid = hid->driver_data;
645 unsigned long flags;
646
647 spin_lock_irqsave(&usbhid->lock, flags);
648 __usbhid_submit_report(hid, report, dir);
649 spin_unlock_irqrestore(&usbhid->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650}
Jiri Slaby606bd0a2008-07-04 23:06:45 +0200651EXPORT_SYMBOL_GPL(usbhid_submit_report);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652
Daniel Kurtz4371ea82011-11-17 19:23:50 +0800653/* Workqueue routine to send requests to change LEDs */
654static void hid_led(struct work_struct *work)
655{
656 struct usbhid_device *usbhid =
657 container_of(work, struct usbhid_device, led_work);
658 struct hid_device *hid = usbhid->hid;
659 struct hid_field *field;
660 unsigned long flags;
661
662 field = hidinput_get_led_field(hid);
663 if (!field) {
664 hid_warn(hid, "LED event field not found\n");
665 return;
666 }
667
668 spin_lock_irqsave(&usbhid->lock, flags);
669 if (!test_bit(HID_DISCONNECTED, &usbhid->iofl)) {
670 usbhid->ledcount = hidinput_count_leds(hid);
671 hid_dbg(usbhid->hid, "New ledcount = %u\n", usbhid->ledcount);
672 __usbhid_submit_report(hid, field->report, USB_DIR_OUT);
673 }
674 spin_unlock_irqrestore(&usbhid->lock, flags);
675}
676
Jiri Kosina229695e2006-12-08 18:40:53 +0100677static int usb_hidinput_input_event(struct input_dev *dev, unsigned int type, unsigned int code, int value)
Jiri Kosinadde58452006-12-08 18:40:44 +0100678{
Dmitry Torokhove0712982007-05-09 10:17:31 +0200679 struct hid_device *hid = input_get_drvdata(dev);
Oliver Neukum0361a282008-12-17 15:38:03 +0100680 struct usbhid_device *usbhid = hid->driver_data;
Jiri Kosinadde58452006-12-08 18:40:44 +0100681 struct hid_field *field;
Oliver Neukum0361a282008-12-17 15:38:03 +0100682 unsigned long flags;
Jiri Kosinadde58452006-12-08 18:40:44 +0100683 int offset;
684
685 if (type == EV_FF)
686 return input_ff_event(dev, type, code, value);
687
688 if (type != EV_LED)
689 return -1;
690
691 if ((offset = hidinput_find_field(hid, type, code, &field)) == -1) {
Joe Perches4291ee32010-12-09 19:29:03 -0800692 hid_warn(dev, "event field not found\n");
Jiri Kosinadde58452006-12-08 18:40:44 +0100693 return -1;
694 }
695
Daniel Kurtz4371ea82011-11-17 19:23:50 +0800696 spin_lock_irqsave(&usbhid->lock, flags);
Jiri Kosinadde58452006-12-08 18:40:44 +0100697 hid_set_field(field, offset, value);
Daniel Kurtz4371ea82011-11-17 19:23:50 +0800698 spin_unlock_irqrestore(&usbhid->lock, flags);
699
700 /*
701 * Defer performing requested LED action.
702 * This is more likely gather all LED changes into a single URB.
703 */
704 schedule_work(&usbhid->led_work);
Jiri Kosinadde58452006-12-08 18:40:44 +0100705
706 return 0;
707}
708
Jiri Kosina4916b3a2006-12-08 18:41:03 +0100709int usbhid_wait_io(struct hid_device *hid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710{
Jiri Kosina4916b3a2006-12-08 18:41:03 +0100711 struct usbhid_device *usbhid = hid->driver_data;
712
Jiri Slaby1d1bdd22008-03-19 21:55:04 +0100713 if (!wait_event_timeout(usbhid->wait,
714 (!test_bit(HID_CTRL_RUNNING, &usbhid->iofl) &&
715 !test_bit(HID_OUT_RUNNING, &usbhid->iofl)),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716 10*HZ)) {
Jiri Kosina58037eb2007-05-30 15:07:13 +0200717 dbg_hid("timeout waiting for ctrl or out queue to clear\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718 return -1;
719 }
720
721 return 0;
722}
Bruno Prémontb8c21cf2010-03-30 22:34:30 +0200723EXPORT_SYMBOL_GPL(usbhid_wait_io);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724
Vojtech Pavlik854561b2005-05-29 02:28:00 -0500725static int hid_set_idle(struct usb_device *dev, int ifnum, int report, int idle)
726{
Vojtech Pavlik71387bd72005-05-29 02:28:14 -0500727 return usb_control_msg(dev, usb_sndctrlpipe(dev, 0),
Vojtech Pavlik854561b2005-05-29 02:28:00 -0500728 HID_REQ_SET_IDLE, USB_TYPE_CLASS | USB_RECIP_INTERFACE, (idle << 8) | report,
729 ifnum, NULL, 0, USB_CTRL_SET_TIMEOUT);
730}
731
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732static int hid_get_class_descriptor(struct usb_device *dev, int ifnum,
733 unsigned char type, void *buf, int size)
734{
735 int result, retries = 4;
736
Jiri Kosina43c7bf02007-01-26 12:58:24 +0100737 memset(buf, 0, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738
739 do {
740 result = usb_control_msg(dev, usb_rcvctrlpipe(dev, 0),
741 USB_REQ_GET_DESCRIPTOR, USB_RECIP_INTERFACE | USB_DIR_IN,
742 (type << 8), ifnum, buf, size, USB_CTRL_GET_TIMEOUT);
743 retries--;
744 } while (result < size && retries);
745 return result;
746}
747
Jiri Kosina4916b3a2006-12-08 18:41:03 +0100748int usbhid_open(struct hid_device *hid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749{
Oliver Neukum933e3182007-07-11 14:48:58 +0200750 struct usbhid_device *usbhid = hid->driver_data;
Oliver Neukuma8c52b62012-03-28 13:16:19 +0200751 int res = 0;
Oliver Neukum933e3182007-07-11 14:48:58 +0200752
Oliver Neukum0361a282008-12-17 15:38:03 +0100753 mutex_lock(&hid_open_mut);
Oliver Neukum933e3182007-07-11 14:48:58 +0200754 if (!hid->open++) {
755 res = usb_autopm_get_interface(usbhid->intf);
Oliver Neukum68229682010-12-22 15:33:40 +0100756 /* the device must be awake to reliably request remote wakeup */
Oliver Neukum933e3182007-07-11 14:48:58 +0200757 if (res < 0) {
758 hid->open--;
Oliver Neukuma8c52b62012-03-28 13:16:19 +0200759 res = -EIO;
760 goto done;
Oliver Neukum933e3182007-07-11 14:48:58 +0200761 }
Oliver Neukum0361a282008-12-17 15:38:03 +0100762 usbhid->intf->needs_remote_wakeup = 1;
Oliver Neukuma8c52b62012-03-28 13:16:19 +0200763 res = hid_start_in(hid);
764 if (res) {
765 if (res != -ENOSPC) {
766 hid_io_error(hid);
767 res = 0;
768 } else {
769 /* no use opening if resources are insufficient */
770 hid->open--;
771 res = -EBUSY;
772 usbhid->intf->needs_remote_wakeup = 0;
773 }
774 }
Oliver Neukum0361a282008-12-17 15:38:03 +0100775 usb_autopm_put_interface(usbhid->intf);
Oliver Neukum933e3182007-07-11 14:48:58 +0200776 }
Oliver Neukuma8c52b62012-03-28 13:16:19 +0200777done:
Oliver Neukum0361a282008-12-17 15:38:03 +0100778 mutex_unlock(&hid_open_mut);
Oliver Neukuma8c52b62012-03-28 13:16:19 +0200779 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780}
781
Jiri Kosina4916b3a2006-12-08 18:41:03 +0100782void usbhid_close(struct hid_device *hid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783{
Jiri Kosina4916b3a2006-12-08 18:41:03 +0100784 struct usbhid_device *usbhid = hid->driver_data;
785
Oliver Neukum0361a282008-12-17 15:38:03 +0100786 mutex_lock(&hid_open_mut);
787
788 /* protecting hid->open to make sure we don't restart
789 * data acquistion due to a resumption we no longer
790 * care about
791 */
792 spin_lock_irq(&usbhid->lock);
Oliver Neukum933e3182007-07-11 14:48:58 +0200793 if (!--hid->open) {
Oliver Neukum0361a282008-12-17 15:38:03 +0100794 spin_unlock_irq(&usbhid->lock);
Oliver Neukum89092dd2009-04-29 17:12:12 +0200795 hid_cancel_delayed_stuff(usbhid);
Jiri Kosina4916b3a2006-12-08 18:41:03 +0100796 usb_kill_urb(usbhid->urbin);
Oliver Neukum0361a282008-12-17 15:38:03 +0100797 usbhid->intf->needs_remote_wakeup = 0;
798 } else {
799 spin_unlock_irq(&usbhid->lock);
Oliver Neukum933e3182007-07-11 14:48:58 +0200800 }
Oliver Neukum0361a282008-12-17 15:38:03 +0100801 mutex_unlock(&hid_open_mut);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802}
803
804/*
805 * Initialize all reports
806 */
807
Jiri Kosina4916b3a2006-12-08 18:41:03 +0100808void usbhid_init_reports(struct hid_device *hid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809{
810 struct hid_report *report;
Jiri Kosina4916b3a2006-12-08 18:41:03 +0100811 struct usbhid_device *usbhid = hid->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812 int err, ret;
813
Michael Haboustakbf0964d2005-09-05 00:12:01 -0500814 list_for_each_entry(report, &hid->report_enum[HID_INPUT_REPORT].report_list, list)
Jiri Kosina4916b3a2006-12-08 18:41:03 +0100815 usbhid_submit_report(hid, report, USB_DIR_IN);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816
817 list_for_each_entry(report, &hid->report_enum[HID_FEATURE_REPORT].report_list, list)
Jiri Kosina4916b3a2006-12-08 18:41:03 +0100818 usbhid_submit_report(hid, report, USB_DIR_IN);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819
820 err = 0;
Jiri Kosina4916b3a2006-12-08 18:41:03 +0100821 ret = usbhid_wait_io(hid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822 while (ret) {
823 err |= ret;
Jiri Kosina4916b3a2006-12-08 18:41:03 +0100824 if (test_bit(HID_CTRL_RUNNING, &usbhid->iofl))
825 usb_kill_urb(usbhid->urbctrl);
826 if (test_bit(HID_OUT_RUNNING, &usbhid->iofl))
827 usb_kill_urb(usbhid->urbout);
828 ret = usbhid_wait_io(hid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829 }
830
831 if (err)
Joe Perches4291ee32010-12-09 19:29:03 -0800832 hid_warn(hid, "timeout initializing reports\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833}
834
Michael Haboustakbf0964d2005-09-05 00:12:01 -0500835/*
Pete Zaitcev713c8aa2007-04-06 14:33:18 +0200836 * Reset LEDs which BIOS might have left on. For now, just NumLock (0x01).
837 */
838static int hid_find_field_early(struct hid_device *hid, unsigned int page,
839 unsigned int hid_code, struct hid_field **pfield)
840{
841 struct hid_report *report;
842 struct hid_field *field;
843 struct hid_usage *usage;
844 int i, j;
845
846 list_for_each_entry(report, &hid->report_enum[HID_OUTPUT_REPORT].report_list, list) {
847 for (i = 0; i < report->maxfield; i++) {
848 field = report->field[i];
849 for (j = 0; j < field->maxusage; j++) {
850 usage = &field->usage[j];
851 if ((usage->hid & HID_USAGE_PAGE) == page &&
852 (usage->hid & 0xFFFF) == hid_code) {
853 *pfield = field;
854 return j;
855 }
856 }
857 }
858 }
859 return -1;
860}
861
Jiri Slaby6edfa8d2008-06-27 20:41:02 +0200862void usbhid_set_leds(struct hid_device *hid)
Pete Zaitcev713c8aa2007-04-06 14:33:18 +0200863{
864 struct hid_field *field;
865 int offset;
866
867 if ((offset = hid_find_field_early(hid, HID_UP_LED, 0x01, &field)) != -1) {
868 hid_set_field(field, offset, 0);
869 usbhid_submit_report(hid, field->report, USB_DIR_OUT);
870 }
871}
Jiri Slaby6edfa8d2008-06-27 20:41:02 +0200872EXPORT_SYMBOL_GPL(usbhid_set_leds);
Pete Zaitcev713c8aa2007-04-06 14:33:18 +0200873
874/*
Michael Haboustakbf0964d2005-09-05 00:12:01 -0500875 * Traverse the supplied list of reports and find the longest
876 */
Jiri Slaby282bfd42008-03-28 17:06:41 +0100877static void hid_find_max_report(struct hid_device *hid, unsigned int type,
878 unsigned int *max)
Michael Haboustakbf0964d2005-09-05 00:12:01 -0500879{
880 struct hid_report *report;
Jiri Slaby282bfd42008-03-28 17:06:41 +0100881 unsigned int size;
Michael Haboustakbf0964d2005-09-05 00:12:01 -0500882
883 list_for_each_entry(report, &hid->report_enum[type].report_list, list) {
Jiri Kosinaefc7ce12008-10-17 15:01:15 +0200884 size = ((report->size - 1) >> 3) + 1 + hid->report_enum[type].numbered;
Michael Haboustakbf0964d2005-09-05 00:12:01 -0500885 if (*max < size)
886 *max = size;
887 }
888}
889
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890static int hid_alloc_buffers(struct usb_device *dev, struct hid_device *hid)
891{
Jiri Kosina4916b3a2006-12-08 18:41:03 +0100892 struct usbhid_device *usbhid = hid->driver_data;
893
Daniel Mack997ea582010-04-12 13:17:25 +0200894 usbhid->inbuf = usb_alloc_coherent(dev, usbhid->bufsize, GFP_KERNEL,
Jiri Slaby898089d2008-11-24 16:20:06 +0100895 &usbhid->inbuf_dma);
Daniel Mack997ea582010-04-12 13:17:25 +0200896 usbhid->outbuf = usb_alloc_coherent(dev, usbhid->bufsize, GFP_KERNEL,
Jiri Slaby898089d2008-11-24 16:20:06 +0100897 &usbhid->outbuf_dma);
Alan Stern0ede76f2010-03-05 15:10:17 -0500898 usbhid->cr = kmalloc(sizeof(*usbhid->cr), GFP_KERNEL);
Daniel Mack997ea582010-04-12 13:17:25 +0200899 usbhid->ctrlbuf = usb_alloc_coherent(dev, usbhid->bufsize, GFP_KERNEL,
Jiri Slaby898089d2008-11-24 16:20:06 +0100900 &usbhid->ctrlbuf_dma);
901 if (!usbhid->inbuf || !usbhid->outbuf || !usbhid->cr ||
902 !usbhid->ctrlbuf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903 return -1;
904
905 return 0;
906}
907
Alan Ottb4dbde92011-01-18 03:04:39 -0500908static int usbhid_get_raw_report(struct hid_device *hid,
909 unsigned char report_number, __u8 *buf, size_t count,
910 unsigned char report_type)
911{
912 struct usbhid_device *usbhid = hid->driver_data;
913 struct usb_device *dev = hid_to_usb_dev(hid);
914 struct usb_interface *intf = usbhid->intf;
915 struct usb_host_interface *interface = intf->cur_altsetting;
916 int skipped_report_id = 0;
917 int ret;
918
919 /* Byte 0 is the report number. Report data starts at byte 1.*/
920 buf[0] = report_number;
921 if (report_number == 0x0) {
922 /* Offset the return buffer by 1, so that the report ID
923 will remain in byte 0. */
924 buf++;
925 count--;
926 skipped_report_id = 1;
927 }
928 ret = usb_control_msg(dev, usb_rcvctrlpipe(dev, 0),
929 HID_REQ_GET_REPORT,
930 USB_DIR_IN | USB_TYPE_CLASS | USB_RECIP_INTERFACE,
931 ((report_type + 1) << 8) | report_number,
932 interface->desc.bInterfaceNumber, buf, count,
933 USB_CTRL_SET_TIMEOUT);
934
935 /* count also the report id */
936 if (ret > 0 && skipped_report_id)
937 ret++;
938
939 return ret;
940}
941
Jiri Kosinad4bfa032010-01-29 15:03:36 +0100942static int usbhid_output_raw_report(struct hid_device *hid, __u8 *buf, size_t count,
943 unsigned char report_type)
Jiri Kosinaefc493f2007-05-14 09:54:30 +0200944{
945 struct usbhid_device *usbhid = hid->driver_data;
946 struct usb_device *dev = hid_to_usb_dev(hid);
947 struct usb_interface *intf = usbhid->intf;
948 struct usb_host_interface *interface = intf->cur_altsetting;
949 int ret;
950
Alan Ottfe2c91e2010-09-22 13:19:42 +0200951 if (usbhid->urbout && report_type != HID_FEATURE_REPORT) {
Alan Otta8ab5d52010-05-16 18:07:09 -0400952 int actual_length;
953 int skipped_report_id = 0;
Alan Ott12e52722010-09-22 13:33:20 +0200954
Alan Otta8ab5d52010-05-16 18:07:09 -0400955 if (buf[0] == 0x0) {
956 /* Don't send the Report ID */
957 buf++;
958 count--;
959 skipped_report_id = 1;
960 }
961 ret = usb_interrupt_msg(dev, usbhid->urbout->pipe,
962 buf, count, &actual_length,
963 USB_CTRL_SET_TIMEOUT);
964 /* return the number of bytes transferred */
965 if (ret == 0) {
966 ret = actual_length;
967 /* count also the report id */
968 if (skipped_report_id)
969 ret++;
970 }
971 } else {
Alan Ott29129a92010-06-30 09:50:36 -0400972 int skipped_report_id = 0;
Alan Ottc29771c2010-08-17 00:44:04 -0400973 int report_id = buf[0];
Alan Ott29129a92010-06-30 09:50:36 -0400974 if (buf[0] == 0x0) {
975 /* Don't send the Report ID */
976 buf++;
977 count--;
978 skipped_report_id = 1;
979 }
Alan Otta8ab5d52010-05-16 18:07:09 -0400980 ret = usb_control_msg(dev, usb_sndctrlpipe(dev, 0),
981 HID_REQ_SET_REPORT,
982 USB_DIR_OUT | USB_TYPE_CLASS | USB_RECIP_INTERFACE,
Alan Ottc29771c2010-08-17 00:44:04 -0400983 ((report_type + 1) << 8) | report_id,
Alan Ott29129a92010-06-30 09:50:36 -0400984 interface->desc.bInterfaceNumber, buf, count,
Alan Otta8ab5d52010-05-16 18:07:09 -0400985 USB_CTRL_SET_TIMEOUT);
Alan Ott29129a92010-06-30 09:50:36 -0400986 /* count also the report id, if this was a numbered report. */
987 if (ret > 0 && skipped_report_id)
Alan Otta8ab5d52010-05-16 18:07:09 -0400988 ret++;
989 }
Jiri Kosinaefc493f2007-05-14 09:54:30 +0200990
991 return ret;
992}
993
Oliver Neukum0361a282008-12-17 15:38:03 +0100994static void usbhid_restart_queues(struct usbhid_device *usbhid)
995{
Alan Sterneb055fd2012-07-19 16:09:01 -0400996 if (usbhid->urbout && !test_bit(HID_OUT_RUNNING, &usbhid->iofl))
Oliver Neukum0361a282008-12-17 15:38:03 +0100997 usbhid_restart_out_queue(usbhid);
Alan Sterneb055fd2012-07-19 16:09:01 -0400998 if (!test_bit(HID_CTRL_RUNNING, &usbhid->iofl))
999 usbhid_restart_ctrl_queue(usbhid);
Oliver Neukum0361a282008-12-17 15:38:03 +01001000}
1001
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002static void hid_free_buffers(struct usb_device *dev, struct hid_device *hid)
1003{
Jiri Kosina4916b3a2006-12-08 18:41:03 +01001004 struct usbhid_device *usbhid = hid->driver_data;
1005
Daniel Mack997ea582010-04-12 13:17:25 +02001006 usb_free_coherent(dev, usbhid->bufsize, usbhid->inbuf, usbhid->inbuf_dma);
1007 usb_free_coherent(dev, usbhid->bufsize, usbhid->outbuf, usbhid->outbuf_dma);
Alan Stern0ede76f2010-03-05 15:10:17 -05001008 kfree(usbhid->cr);
Daniel Mack997ea582010-04-12 13:17:25 +02001009 usb_free_coherent(dev, usbhid->bufsize, usbhid->ctrlbuf, usbhid->ctrlbuf_dma);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010}
1011
Jiri Slabyc500c972008-05-16 11:49:16 +02001012static int usbhid_parse(struct hid_device *hid)
1013{
1014 struct usb_interface *intf = to_usb_interface(hid->dev.parent);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015 struct usb_host_interface *interface = intf->cur_altsetting;
1016 struct usb_device *dev = interface_to_usbdev (intf);
1017 struct hid_descriptor *hdesc;
Paul Walmsley2eb5dc32007-04-19 13:27:04 +02001018 u32 quirks = 0;
Jiri Slabyc500c972008-05-16 11:49:16 +02001019 unsigned int rsize = 0;
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -05001020 char *rdesc;
Jiri Slabyc500c972008-05-16 11:49:16 +02001021 int ret, n;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022
Paul Walmsley2eb5dc32007-04-19 13:27:04 +02001023 quirks = usbhid_lookup_quirk(le16_to_cpu(dev->descriptor.idVendor),
1024 le16_to_cpu(dev->descriptor.idProduct));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025
Jiri Kosina6f4303f2009-01-29 00:15:51 +01001026 if (quirks & HID_QUIRK_IGNORE)
1027 return -ENODEV;
1028
Alan Stern0f28b552006-05-15 14:49:04 -04001029 /* Many keyboards and mice don't like to be polled for reports,
1030 * so we will always set the HID_QUIRK_NOGET flag for them. */
1031 if (interface->desc.bInterfaceSubClass == USB_INTERFACE_SUBCLASS_BOOT) {
1032 if (interface->desc.bInterfaceProtocol == USB_INTERFACE_PROTOCOL_KEYBOARD ||
1033 interface->desc.bInterfaceProtocol == USB_INTERFACE_PROTOCOL_MOUSE)
1034 quirks |= HID_QUIRK_NOGET;
1035 }
1036
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -05001037 if (usb_get_extra_descriptor(interface, HID_DT_HID, &hdesc) &&
1038 (!interface->desc.bNumEndpoints ||
1039 usb_get_extra_descriptor(&interface->endpoint[0], HID_DT_HID, &hdesc))) {
Jiri Kosina58037eb2007-05-30 15:07:13 +02001040 dbg_hid("class descriptor not present\n");
Jiri Slabyc500c972008-05-16 11:49:16 +02001041 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042 }
1043
Jiri Slabyc500c972008-05-16 11:49:16 +02001044 hid->version = le16_to_cpu(hdesc->bcdHID);
1045 hid->country = hdesc->bCountryCode;
1046
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047 for (n = 0; n < hdesc->bNumDescriptors; n++)
1048 if (hdesc->desc[n].bDescriptorType == HID_DT_REPORT)
1049 rsize = le16_to_cpu(hdesc->desc[n].wDescriptorLength);
1050
1051 if (!rsize || rsize > HID_MAX_DESCRIPTOR_SIZE) {
Jiri Kosina58037eb2007-05-30 15:07:13 +02001052 dbg_hid("weird size of report descriptor (%u)\n", rsize);
Jiri Slabyc500c972008-05-16 11:49:16 +02001053 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054 }
1055
1056 if (!(rdesc = kmalloc(rsize, GFP_KERNEL))) {
Jiri Kosina58037eb2007-05-30 15:07:13 +02001057 dbg_hid("couldn't allocate rdesc memory\n");
Jiri Slabyc500c972008-05-16 11:49:16 +02001058 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059 }
1060
Vojtech Pavlik854561b2005-05-29 02:28:00 -05001061 hid_set_idle(dev, interface->desc.bInterfaceNumber, 0, 0);
1062
Jiri Slabyc500c972008-05-16 11:49:16 +02001063 ret = hid_get_class_descriptor(dev, interface->desc.bInterfaceNumber,
1064 HID_DT_REPORT, rdesc, rsize);
1065 if (ret < 0) {
Jiri Kosina58037eb2007-05-30 15:07:13 +02001066 dbg_hid("reading report descriptor failed\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067 kfree(rdesc);
Jiri Slabyc500c972008-05-16 11:49:16 +02001068 goto err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069 }
1070
Jiri Slabyc500c972008-05-16 11:49:16 +02001071 ret = hid_parse_report(hid, rdesc, rsize);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072 kfree(rdesc);
Jiri Slabyc500c972008-05-16 11:49:16 +02001073 if (ret) {
1074 dbg_hid("parsing report descriptor failed\n");
1075 goto err;
1076 }
1077
Zoltan Karcagif5208992009-05-06 16:30:21 +02001078 hid->quirks |= quirks;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079
Jiri Slabyc500c972008-05-16 11:49:16 +02001080 return 0;
1081err:
1082 return ret;
1083}
1084
1085static int usbhid_start(struct hid_device *hid)
1086{
1087 struct usb_interface *intf = to_usb_interface(hid->dev.parent);
1088 struct usb_host_interface *interface = intf->cur_altsetting;
1089 struct usb_device *dev = interface_to_usbdev(intf);
Jiri Slaby3d5afd32008-10-27 12:16:15 +01001090 struct usbhid_device *usbhid = hid->driver_data;
Jiri Slabyc500c972008-05-16 11:49:16 +02001091 unsigned int n, insize = 0;
1092 int ret;
1093
Jiri Slabye3e14de2008-11-01 23:41:46 +01001094 clear_bit(HID_DISCONNECTED, &usbhid->iofl);
1095
Jiri Kosina4916b3a2006-12-08 18:41:03 +01001096 usbhid->bufsize = HID_MIN_BUFFER_SIZE;
1097 hid_find_max_report(hid, HID_INPUT_REPORT, &usbhid->bufsize);
1098 hid_find_max_report(hid, HID_OUTPUT_REPORT, &usbhid->bufsize);
1099 hid_find_max_report(hid, HID_FEATURE_REPORT, &usbhid->bufsize);
1100
1101 if (usbhid->bufsize > HID_MAX_BUFFER_SIZE)
1102 usbhid->bufsize = HID_MAX_BUFFER_SIZE;
Michael Haboustakbf0964d2005-09-05 00:12:01 -05001103
1104 hid_find_max_report(hid, HID_INPUT_REPORT, &insize);
1105
1106 if (insize > HID_MAX_BUFFER_SIZE)
1107 insize = HID_MAX_BUFFER_SIZE;
1108
Jiri Slabyc500c972008-05-16 11:49:16 +02001109 if (hid_alloc_buffers(dev, hid)) {
1110 ret = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111 goto fail;
Pekka Sarnilaf345c372008-03-06 13:23:14 +01001112 }
1113
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114 for (n = 0; n < interface->desc.bNumEndpoints; n++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115 struct usb_endpoint_descriptor *endpoint;
1116 int pipe;
1117 int interval;
1118
1119 endpoint = &interface->endpoint[n].desc;
Jiri Slaby581a2732008-11-24 16:20:08 +01001120 if (!usb_endpoint_xfer_int(endpoint))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121 continue;
1122
Linus Torvalds1da177e2005-04-16 15:20:36 -07001123 interval = endpoint->bInterval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124
Pekka Sarnilaf345c372008-03-06 13:23:14 +01001125 /* Some vendors give fullspeed interval on highspeed devides */
Jiri Slabyc500c972008-05-16 11:49:16 +02001126 if (hid->quirks & HID_QUIRK_FULLSPEED_INTERVAL &&
Pekka Sarnilaf345c372008-03-06 13:23:14 +01001127 dev->speed == USB_SPEED_HIGH) {
1128 interval = fls(endpoint->bInterval*8);
1129 printk(KERN_INFO "%s: Fixing fullspeed to highspeed interval: %d -> %d\n",
1130 hid->name, endpoint->bInterval, interval);
1131 }
1132
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133 /* Change the polling interval of mice. */
1134 if (hid->collection->usage == HID_GD_MOUSE && hid_mousepoll_interval > 0)
1135 interval = hid_mousepoll_interval;
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -05001136
Jiri Slabyc500c972008-05-16 11:49:16 +02001137 ret = -ENOMEM;
Luiz Fernando N. Capitulino0f12aa02006-10-26 13:02:51 -03001138 if (usb_endpoint_dir_in(endpoint)) {
Jiri Kosina4916b3a2006-12-08 18:41:03 +01001139 if (usbhid->urbin)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001140 continue;
Jiri Kosina4916b3a2006-12-08 18:41:03 +01001141 if (!(usbhid->urbin = usb_alloc_urb(0, GFP_KERNEL)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142 goto fail;
1143 pipe = usb_rcvintpipe(dev, endpoint->bEndpointAddress);
Jiri Kosina4916b3a2006-12-08 18:41:03 +01001144 usb_fill_int_urb(usbhid->urbin, dev, pipe, usbhid->inbuf, insize,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145 hid_irq_in, hid, interval);
Jiri Kosina4916b3a2006-12-08 18:41:03 +01001146 usbhid->urbin->transfer_dma = usbhid->inbuf_dma;
1147 usbhid->urbin->transfer_flags |= URB_NO_TRANSFER_DMA_MAP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148 } else {
Jiri Kosina4916b3a2006-12-08 18:41:03 +01001149 if (usbhid->urbout)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001150 continue;
Jiri Kosina4916b3a2006-12-08 18:41:03 +01001151 if (!(usbhid->urbout = usb_alloc_urb(0, GFP_KERNEL)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001152 goto fail;
1153 pipe = usb_sndintpipe(dev, endpoint->bEndpointAddress);
Jiri Kosina4916b3a2006-12-08 18:41:03 +01001154 usb_fill_int_urb(usbhid->urbout, dev, pipe, usbhid->outbuf, 0,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155 hid_irq_out, hid, interval);
Jiri Kosina4916b3a2006-12-08 18:41:03 +01001156 usbhid->urbout->transfer_dma = usbhid->outbuf_dma;
1157 usbhid->urbout->transfer_flags |= URB_NO_TRANSFER_DMA_MAP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001158 }
1159 }
1160
Jiri Kosina4916b3a2006-12-08 18:41:03 +01001161 usbhid->urbctrl = usb_alloc_urb(0, GFP_KERNEL);
Jiri Slabyc500c972008-05-16 11:49:16 +02001162 if (!usbhid->urbctrl) {
1163 ret = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164 goto fail;
Jiri Slabyc500c972008-05-16 11:49:16 +02001165 }
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -05001166
Jiri Kosina4916b3a2006-12-08 18:41:03 +01001167 usb_fill_control_urb(usbhid->urbctrl, dev, 0, (void *) usbhid->cr,
1168 usbhid->ctrlbuf, 1, hid_ctrl, hid);
Jiri Kosina4916b3a2006-12-08 18:41:03 +01001169 usbhid->urbctrl->transfer_dma = usbhid->ctrlbuf_dma;
Alan Stern0ede76f2010-03-05 15:10:17 -05001170 usbhid->urbctrl->transfer_flags |= URB_NO_TRANSFER_DMA_MAP;
Jiri Slabyc500c972008-05-16 11:49:16 +02001171
Jiri Kosina5b915d92009-11-05 14:08:03 +01001172 if (!(hid->quirks & HID_QUIRK_NO_INIT_REPORTS))
1173 usbhid_init_reports(hid);
Jiri Slaby93c10132008-06-27 00:04:24 +02001174
Jiri Slaby3d5afd32008-10-27 12:16:15 +01001175 set_bit(HID_STARTED, &usbhid->iofl);
Jiri Slaby3d5afd32008-10-27 12:16:15 +01001176
Alan Stern08ef08e2008-10-30 23:58:51 +01001177 /* Some keyboards don't work until their LEDs have been set.
1178 * Since BIOSes do set the LEDs, it must be safe for any device
1179 * that supports the keyboard boot protocol.
Alan Stern3d615102010-04-02 13:21:58 -04001180 * In addition, enable remote wakeup by default for all keyboard
1181 * devices supporting the boot protocol.
Alan Stern08ef08e2008-10-30 23:58:51 +01001182 */
1183 if (interface->desc.bInterfaceSubClass == USB_INTERFACE_SUBCLASS_BOOT &&
1184 interface->desc.bInterfaceProtocol ==
Alan Stern3d615102010-04-02 13:21:58 -04001185 USB_INTERFACE_PROTOCOL_KEYBOARD) {
Alan Stern08ef08e2008-10-30 23:58:51 +01001186 usbhid_set_leds(hid);
Alan Stern3d615102010-04-02 13:21:58 -04001187 device_set_wakeup_enable(&dev->dev, 1);
1188 }
Jiri Slabyc500c972008-05-16 11:49:16 +02001189 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190
1191fail:
Jiri Kosina4916b3a2006-12-08 18:41:03 +01001192 usb_free_urb(usbhid->urbin);
1193 usb_free_urb(usbhid->urbout);
1194 usb_free_urb(usbhid->urbctrl);
Jiri Slabye3e14de2008-11-01 23:41:46 +01001195 usbhid->urbin = NULL;
1196 usbhid->urbout = NULL;
1197 usbhid->urbctrl = NULL;
Jiri Kosina22f675f2007-08-01 12:32:27 +02001198 hid_free_buffers(dev, hid);
Jiri Slabyc500c972008-05-16 11:49:16 +02001199 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200}
1201
Jiri Slabyc500c972008-05-16 11:49:16 +02001202static void usbhid_stop(struct hid_device *hid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001203{
Jiri Slabyc500c972008-05-16 11:49:16 +02001204 struct usbhid_device *usbhid = hid->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001205
Jiri Slabyc500c972008-05-16 11:49:16 +02001206 if (WARN_ON(!usbhid))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207 return;
1208
Jiri Slaby3d5afd32008-10-27 12:16:15 +01001209 clear_bit(HID_STARTED, &usbhid->iofl);
Daniel Kurtz4371ea82011-11-17 19:23:50 +08001210 spin_lock_irq(&usbhid->lock); /* Sync with error and led handlers */
Oliver Neukum69626f22008-03-31 16:27:30 +02001211 set_bit(HID_DISCONNECTED, &usbhid->iofl);
Oliver Neukum0361a282008-12-17 15:38:03 +01001212 spin_unlock_irq(&usbhid->lock);
Jiri Kosina4916b3a2006-12-08 18:41:03 +01001213 usb_kill_urb(usbhid->urbin);
1214 usb_kill_urb(usbhid->urbout);
1215 usb_kill_urb(usbhid->urbctrl);
1216
Oliver Neukum0361a282008-12-17 15:38:03 +01001217 hid_cancel_delayed_stuff(usbhid);
Alan Sternaef4e262006-01-31 12:58:38 -05001218
Jiri Slabyc500c972008-05-16 11:49:16 +02001219 hid->claimed = 0;
1220
Jiri Kosina4916b3a2006-12-08 18:41:03 +01001221 usb_free_urb(usbhid->urbin);
1222 usb_free_urb(usbhid->urbctrl);
1223 usb_free_urb(usbhid->urbout);
Jiri Slabye3e14de2008-11-01 23:41:46 +01001224 usbhid->urbin = NULL; /* don't mess up next start */
1225 usbhid->urbctrl = NULL;
1226 usbhid->urbout = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001227
Anssi Hannulabe820972007-01-19 19:28:17 +02001228 hid_free_buffers(hid_to_usb_dev(hid), hid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001229}
1230
Oliver Neukum0361a282008-12-17 15:38:03 +01001231static int usbhid_power(struct hid_device *hid, int lvl)
1232{
1233 int r = 0;
1234
1235 switch (lvl) {
1236 case PM_HINT_FULLON:
1237 r = usbhid_get_power(hid);
1238 break;
1239 case PM_HINT_NORMAL:
1240 usbhid_put_power(hid);
1241 break;
1242 }
1243 return r;
1244}
1245
Jiri Slabyc500c972008-05-16 11:49:16 +02001246static struct hid_ll_driver usb_hid_driver = {
1247 .parse = usbhid_parse,
1248 .start = usbhid_start,
1249 .stop = usbhid_stop,
1250 .open = usbhid_open,
1251 .close = usbhid_close,
Oliver Neukum0361a282008-12-17 15:38:03 +01001252 .power = usbhid_power,
Jiri Slabyc500c972008-05-16 11:49:16 +02001253 .hidinput_input_event = usb_hidinput_input_event,
1254};
1255
Jiri Kosinac4c259b2009-09-15 16:27:45 +02001256static int usbhid_probe(struct usb_interface *intf, const struct usb_device_id *id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001257{
Jiri Slaby131d3a7a2008-11-14 12:03:47 +01001258 struct usb_host_interface *interface = intf->cur_altsetting;
Jiri Slabyc500c972008-05-16 11:49:16 +02001259 struct usb_device *dev = interface_to_usbdev(intf);
Jiri Slaby3d5afd32008-10-27 12:16:15 +01001260 struct usbhid_device *usbhid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261 struct hid_device *hid;
Jiri Slaby131d3a7a2008-11-14 12:03:47 +01001262 unsigned int n, has_in = 0;
Jiri Slabyc500c972008-05-16 11:49:16 +02001263 size_t len;
1264 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001265
Jiri Kosina58037eb2007-05-30 15:07:13 +02001266 dbg_hid("HID probe called for ifnum %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001267 intf->altsetting->desc.bInterfaceNumber);
1268
Jiri Slaby131d3a7a2008-11-14 12:03:47 +01001269 for (n = 0; n < interface->desc.bNumEndpoints; n++)
1270 if (usb_endpoint_is_int_in(&interface->endpoint[n].desc))
1271 has_in++;
1272 if (!has_in) {
Joe Perches4291ee32010-12-09 19:29:03 -08001273 hid_err(intf, "couldn't find an input interrupt endpoint\n");
Jiri Slaby131d3a7a2008-11-14 12:03:47 +01001274 return -ENODEV;
1275 }
1276
Jiri Slabyc500c972008-05-16 11:49:16 +02001277 hid = hid_allocate_device();
1278 if (IS_ERR(hid))
1279 return PTR_ERR(hid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280
1281 usb_set_intfdata(intf, hid);
Jiri Slabyc500c972008-05-16 11:49:16 +02001282 hid->ll_driver = &usb_hid_driver;
Alan Ottb4dbde92011-01-18 03:04:39 -05001283 hid->hid_get_raw_report = usbhid_get_raw_report;
Jiri Slabyc500c972008-05-16 11:49:16 +02001284 hid->hid_output_raw_report = usbhid_output_raw_report;
Jiri Slaby76483cf2008-09-18 12:23:33 +02001285 hid->ff_init = hid_pidff_init;
Jiri Slabyc500c972008-05-16 11:49:16 +02001286#ifdef CONFIG_USB_HIDDEV
Jiri Slaby93c10132008-06-27 00:04:24 +02001287 hid->hiddev_connect = hiddev_connect;
Jiri Kosinac4c259b2009-09-15 16:27:45 +02001288 hid->hiddev_disconnect = hiddev_disconnect;
Jiri Slabyc500c972008-05-16 11:49:16 +02001289 hid->hiddev_hid_event = hiddev_hid_event;
1290 hid->hiddev_report_event = hiddev_report_event;
1291#endif
1292 hid->dev.parent = &intf->dev;
1293 hid->bus = BUS_USB;
1294 hid->vendor = le16_to_cpu(dev->descriptor.idVendor);
1295 hid->product = le16_to_cpu(dev->descriptor.idProduct);
1296 hid->name[0] = 0;
Bastien Nocerab5e5a372010-04-16 17:19:50 +01001297 hid->quirks = usbhid_lookup_quirk(hid->vendor, hid->product);
Jiri Slabya73a6372008-10-22 14:45:11 +02001298 if (intf->cur_altsetting->desc.bInterfaceProtocol ==
1299 USB_INTERFACE_PROTOCOL_MOUSE)
1300 hid->type = HID_TYPE_USBMOUSE;
Tomoki Sekiyama6dc14182011-05-23 15:45:44 -07001301 else if (intf->cur_altsetting->desc.bInterfaceProtocol == 0)
1302 hid->type = HID_TYPE_USBNONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001303
Jiri Slabyc500c972008-05-16 11:49:16 +02001304 if (dev->manufacturer)
1305 strlcpy(hid->name, dev->manufacturer, sizeof(hid->name));
1306
1307 if (dev->product) {
1308 if (dev->manufacturer)
1309 strlcat(hid->name, " ", sizeof(hid->name));
1310 strlcat(hid->name, dev->product, sizeof(hid->name));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001311 }
1312
Jiri Slabyc500c972008-05-16 11:49:16 +02001313 if (!strlen(hid->name))
1314 snprintf(hid->name, sizeof(hid->name), "HID %04x:%04x",
1315 le16_to_cpu(dev->descriptor.idVendor),
1316 le16_to_cpu(dev->descriptor.idProduct));
Jiri Kosina4916b3a2006-12-08 18:41:03 +01001317
Jiri Slabyc500c972008-05-16 11:49:16 +02001318 usb_make_path(dev, hid->phys, sizeof(hid->phys));
1319 strlcat(hid->phys, "/input", sizeof(hid->phys));
1320 len = strlen(hid->phys);
1321 if (len < sizeof(hid->phys) - 1)
1322 snprintf(hid->phys + len, sizeof(hid->phys) - len,
1323 "%d", intf->altsetting[0].desc.bInterfaceNumber);
Geoff Levand4a1a4d82007-01-15 20:11:52 -08001324
Jiri Slabyc500c972008-05-16 11:49:16 +02001325 if (usb_string(dev, dev->descriptor.iSerialNumber, hid->uniq, 64) <= 0)
1326 hid->uniq[0] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001327
Jiri Slaby3d5afd32008-10-27 12:16:15 +01001328 usbhid = kzalloc(sizeof(*usbhid), GFP_KERNEL);
1329 if (usbhid == NULL) {
1330 ret = -ENOMEM;
1331 goto err;
1332 }
1333
1334 hid->driver_data = usbhid;
1335 usbhid->hid = hid;
Jiri Kosina57ab12e2010-02-17 14:25:01 +01001336 usbhid->intf = intf;
1337 usbhid->ifnum = interface->desc.bInterfaceNumber;
Jiri Slaby3d5afd32008-10-27 12:16:15 +01001338
Alan Sternfde4e2f2010-05-07 10:41:10 -04001339 init_waitqueue_head(&usbhid->wait);
1340 INIT_WORK(&usbhid->reset_work, hid_reset);
Alan Sternfde4e2f2010-05-07 10:41:10 -04001341 setup_timer(&usbhid->io_retry, hid_retry_timeout, (unsigned long) hid);
1342 spin_lock_init(&usbhid->lock);
1343
Daniel Kurtz4371ea82011-11-17 19:23:50 +08001344 INIT_WORK(&usbhid->led_work, hid_led);
1345
Jiri Slaby85cdaf52008-05-16 11:49:15 +02001346 ret = hid_add_device(hid);
1347 if (ret) {
Jiri Slabyd458a9d2008-05-16 11:49:20 +02001348 if (ret != -ENODEV)
Joe Perches4291ee32010-12-09 19:29:03 -08001349 hid_err(intf, "can't add hid device: %d\n", ret);
Jiri Slaby3d5afd32008-10-27 12:16:15 +01001350 goto err_free;
Jiri Slaby85cdaf52008-05-16 11:49:15 +02001351 }
Jiri Slabyc500c972008-05-16 11:49:16 +02001352
1353 return 0;
Jiri Slaby3d5afd32008-10-27 12:16:15 +01001354err_free:
1355 kfree(usbhid);
Jiri Slabyc500c972008-05-16 11:49:16 +02001356err:
1357 hid_destroy_device(hid);
Jiri Slaby85cdaf52008-05-16 11:49:15 +02001358 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001359}
1360
Jiri Kosinac4c259b2009-09-15 16:27:45 +02001361static void usbhid_disconnect(struct usb_interface *intf)
Jiri Slabyc500c972008-05-16 11:49:16 +02001362{
1363 struct hid_device *hid = usb_get_intfdata(intf);
Jiri Slaby3d5afd32008-10-27 12:16:15 +01001364 struct usbhid_device *usbhid;
Jiri Slabyc500c972008-05-16 11:49:16 +02001365
1366 if (WARN_ON(!hid))
1367 return;
1368
Jiri Slaby3d5afd32008-10-27 12:16:15 +01001369 usbhid = hid->driver_data;
Jiri Slabyc500c972008-05-16 11:49:16 +02001370 hid_destroy_device(hid);
Jiri Slaby3d5afd32008-10-27 12:16:15 +01001371 kfree(usbhid);
Jiri Slabyc500c972008-05-16 11:49:16 +02001372}
1373
Oliver Neukum0361a282008-12-17 15:38:03 +01001374static void hid_cancel_delayed_stuff(struct usbhid_device *usbhid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001375{
Oliver Neukum0361a282008-12-17 15:38:03 +01001376 del_timer_sync(&usbhid->io_retry);
Oliver Neukum0361a282008-12-17 15:38:03 +01001377 cancel_work_sync(&usbhid->reset_work);
Daniel Kurtz4371ea82011-11-17 19:23:50 +08001378 cancel_work_sync(&usbhid->led_work);
Oliver Neukum0361a282008-12-17 15:38:03 +01001379}
1380
1381static void hid_cease_io(struct usbhid_device *usbhid)
1382{
Oliver Neukumfad9fbe2011-10-13 18:21:58 +02001383 del_timer_sync(&usbhid->io_retry);
Oliver Neukum0361a282008-12-17 15:38:03 +01001384 usb_kill_urb(usbhid->urbin);
1385 usb_kill_urb(usbhid->urbctrl);
1386 usb_kill_urb(usbhid->urbout);
Oliver Neukum0361a282008-12-17 15:38:03 +01001387}
1388
Jiri Kosinaae2f0072009-02-20 12:47:08 +01001389/* Treat USB reset pretty much the same as suspend/resume */
1390static int hid_pre_reset(struct usb_interface *intf)
1391{
1392 struct hid_device *hid = usb_get_intfdata(intf);
Jiri Kosina4916b3a2006-12-08 18:41:03 +01001393 struct usbhid_device *usbhid = hid->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001394
Jiri Kosinaae2f0072009-02-20 12:47:08 +01001395 spin_lock_irq(&usbhid->lock);
1396 set_bit(HID_RESET_PENDING, &usbhid->iofl);
1397 spin_unlock_irq(&usbhid->lock);
1398 hid_cease_io(usbhid);
Jiri Slaby3d5afd32008-10-27 12:16:15 +01001399
Jiri Kosinaae2f0072009-02-20 12:47:08 +01001400 return 0;
1401}
1402
1403/* Same routine used for post_reset and reset_resume */
1404static int hid_post_reset(struct usb_interface *intf)
1405{
1406 struct usb_device *dev = interface_to_usbdev (intf);
1407 struct hid_device *hid = usb_get_intfdata(intf);
1408 struct usbhid_device *usbhid = hid->driver_data;
Simon Haggettdc3c78e2012-04-03 16:04:15 +01001409 struct usb_host_interface *interface = intf->cur_altsetting;
Jiri Kosinaae2f0072009-02-20 12:47:08 +01001410 int status;
Simon Haggettdc3c78e2012-04-03 16:04:15 +01001411 char *rdesc;
1412
1413 /* Fetch and examine the HID report descriptor. If this
1414 * has changed, then rebind. Since usbcore's check of the
1415 * configuration descriptors passed, we already know that
1416 * the size of the HID report descriptor has not changed.
1417 */
Kevin Daughtridge86e6b772012-09-20 12:00:32 -07001418 rdesc = kmalloc(hid->dev_rsize, GFP_KERNEL);
Simon Haggettdc3c78e2012-04-03 16:04:15 +01001419 if (!rdesc) {
1420 dbg_hid("couldn't allocate rdesc memory (post_reset)\n");
1421 return 1;
1422 }
1423 status = hid_get_class_descriptor(dev,
1424 interface->desc.bInterfaceNumber,
Kevin Daughtridge86e6b772012-09-20 12:00:32 -07001425 HID_DT_REPORT, rdesc, hid->dev_rsize);
Simon Haggettdc3c78e2012-04-03 16:04:15 +01001426 if (status < 0) {
1427 dbg_hid("reading report descriptor failed (post_reset)\n");
1428 kfree(rdesc);
1429 return 1;
1430 }
Kevin Daughtridge86e6b772012-09-20 12:00:32 -07001431 status = memcmp(rdesc, hid->dev_rdesc, hid->dev_rsize);
Simon Haggettdc3c78e2012-04-03 16:04:15 +01001432 kfree(rdesc);
1433 if (status != 0) {
1434 dbg_hid("report descriptor changed\n");
1435 return 1;
1436 }
Jiri Kosina70fa9f22009-06-04 15:48:38 +02001437
Jiri Kosinaae2f0072009-02-20 12:47:08 +01001438 spin_lock_irq(&usbhid->lock);
1439 clear_bit(HID_RESET_PENDING, &usbhid->iofl);
1440 spin_unlock_irq(&usbhid->lock);
1441 hid_set_idle(dev, intf->cur_altsetting->desc.bInterfaceNumber, 0, 0);
Jiri Kosinaae2f0072009-02-20 12:47:08 +01001442 status = hid_start_in(hid);
1443 if (status < 0)
1444 hid_io_error(hid);
1445 usbhid_restart_queues(usbhid);
1446
1447 return 0;
1448}
1449
1450int usbhid_get_power(struct hid_device *hid)
1451{
1452 struct usbhid_device *usbhid = hid->driver_data;
Jiri Kosina70fa9f22009-06-04 15:48:38 +02001453
Jiri Kosinaae2f0072009-02-20 12:47:08 +01001454 return usb_autopm_get_interface(usbhid->intf);
1455}
1456
1457void usbhid_put_power(struct hid_device *hid)
1458{
1459 struct usbhid_device *usbhid = hid->driver_data;
Jiri Kosina70fa9f22009-06-04 15:48:38 +02001460
Jiri Kosinaae2f0072009-02-20 12:47:08 +01001461 usb_autopm_put_interface(usbhid->intf);
1462}
1463
1464
Jiri Kosina0f6f1402009-01-19 09:17:18 +01001465#ifdef CONFIG_PM
Alan Sterneb055fd2012-07-19 16:09:01 -04001466static int hid_resume_common(struct hid_device *hid, bool driver_suspended)
1467{
1468 struct usbhid_device *usbhid = hid->driver_data;
1469 int status;
1470
1471 spin_lock_irq(&usbhid->lock);
1472 clear_bit(HID_SUSPENDED, &usbhid->iofl);
1473 usbhid_mark_busy(usbhid);
1474
1475 if (test_bit(HID_CLEAR_HALT, &usbhid->iofl) ||
1476 test_bit(HID_RESET_PENDING, &usbhid->iofl))
1477 schedule_work(&usbhid->reset_work);
1478 usbhid->retry_delay = 0;
1479
1480 usbhid_restart_queues(usbhid);
1481 spin_unlock_irq(&usbhid->lock);
1482
1483 status = hid_start_in(hid);
1484 if (status < 0)
1485 hid_io_error(hid);
1486
1487 if (driver_suspended && hid->driver && hid->driver->resume)
1488 status = hid->driver->resume(hid);
1489 return status;
1490}
1491
Linus Torvalds1da177e2005-04-16 15:20:36 -07001492static int hid_suspend(struct usb_interface *intf, pm_message_t message)
1493{
Oliver Neukum0361a282008-12-17 15:38:03 +01001494 struct hid_device *hid = usb_get_intfdata(intf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001495 struct usbhid_device *usbhid = hid->driver_data;
Oliver Neukum0361a282008-12-17 15:38:03 +01001496 int status;
Alan Sterneb055fd2012-07-19 16:09:01 -04001497 bool driver_suspended = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001498
Alan Stern5b1b0b82011-08-19 23:49:48 +02001499 if (PMSG_IS_AUTO(message)) {
Oliver Neukum0361a282008-12-17 15:38:03 +01001500 spin_lock_irq(&usbhid->lock); /* Sync with error handler */
1501 if (!test_bit(HID_RESET_PENDING, &usbhid->iofl)
1502 && !test_bit(HID_CLEAR_HALT, &usbhid->iofl)
1503 && !test_bit(HID_OUT_RUNNING, &usbhid->iofl)
1504 && !test_bit(HID_CTRL_RUNNING, &usbhid->iofl)
1505 && !test_bit(HID_KEYS_PRESSED, &usbhid->iofl)
1506 && (!usbhid->ledcount || ignoreled))
1507 {
Alan Sternf2b52642012-07-19 16:08:45 -04001508 set_bit(HID_SUSPENDED, &usbhid->iofl);
Oliver Neukum0361a282008-12-17 15:38:03 +01001509 spin_unlock_irq(&usbhid->lock);
Bruno Prémont6a740aa2010-04-25 21:40:03 +02001510 if (hid->driver && hid->driver->suspend) {
1511 status = hid->driver->suspend(hid, message);
1512 if (status < 0)
Alan Sterneb055fd2012-07-19 16:09:01 -04001513 goto failed;
Bruno Prémont6a740aa2010-04-25 21:40:03 +02001514 }
Alan Sterneb055fd2012-07-19 16:09:01 -04001515 driver_suspended = true;
Oliver Neukum0361a282008-12-17 15:38:03 +01001516 } else {
1517 usbhid_mark_busy(usbhid);
1518 spin_unlock_irq(&usbhid->lock);
1519 return -EBUSY;
1520 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001521
Oliver Neukum0361a282008-12-17 15:38:03 +01001522 } else {
Bruno Prémont6a740aa2010-04-25 21:40:03 +02001523 if (hid->driver && hid->driver->suspend) {
1524 status = hid->driver->suspend(hid, message);
1525 if (status < 0)
1526 return status;
1527 }
Alan Sterneb055fd2012-07-19 16:09:01 -04001528 driver_suspended = true;
Oliver Neukum0361a282008-12-17 15:38:03 +01001529 spin_lock_irq(&usbhid->lock);
Alan Sternf2b52642012-07-19 16:08:45 -04001530 set_bit(HID_SUSPENDED, &usbhid->iofl);
Oliver Neukum0361a282008-12-17 15:38:03 +01001531 spin_unlock_irq(&usbhid->lock);
Alan Sterneb055fd2012-07-19 16:09:01 -04001532 if (usbhid_wait_io(hid) < 0) {
1533 status = -EIO;
1534 goto failed;
1535 }
Oliver Neukum0361a282008-12-17 15:38:03 +01001536 }
1537
Oliver Neukum0361a282008-12-17 15:38:03 +01001538 hid_cancel_delayed_stuff(usbhid);
1539 hid_cease_io(usbhid);
1540
Alan Stern5b1b0b82011-08-19 23:49:48 +02001541 if (PMSG_IS_AUTO(message) && test_bit(HID_KEYS_PRESSED, &usbhid->iofl)) {
Oliver Neukum0361a282008-12-17 15:38:03 +01001542 /* lost race against keypresses */
Alan Sterneb055fd2012-07-19 16:09:01 -04001543 status = -EBUSY;
1544 goto failed;
Oliver Neukum0361a282008-12-17 15:38:03 +01001545 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001546 dev_dbg(&intf->dev, "suspend\n");
1547 return 0;
Alan Sterneb055fd2012-07-19 16:09:01 -04001548
1549 failed:
1550 hid_resume_common(hid, driver_suspended);
1551 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001552}
1553
1554static int hid_resume(struct usb_interface *intf)
1555{
1556 struct hid_device *hid = usb_get_intfdata (intf);
1557 struct usbhid_device *usbhid = hid->driver_data;
1558 int status;
1559
Jiri Slabyfde5be32008-11-23 12:03:20 +01001560 if (!test_bit(HID_STARTED, &usbhid->iofl))
Jiri Slaby3d5afd32008-10-27 12:16:15 +01001561 return 0;
Jiri Slaby3d5afd32008-10-27 12:16:15 +01001562
Alan Sterneb055fd2012-07-19 16:09:01 -04001563 status = hid_resume_common(hid, true);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001564 dev_dbg(&intf->dev, "resume status %d\n", status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001565 return 0;
1566}
1567
Oliver Neukum378a0ed2009-02-18 11:46:45 +01001568static int hid_reset_resume(struct usb_interface *intf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001569{
Oliver Neukum378a0ed2009-02-18 11:46:45 +01001570 struct hid_device *hid = usb_get_intfdata(intf);
1571 struct usbhid_device *usbhid = hid->driver_data;
Bruno Prémont6a740aa2010-04-25 21:40:03 +02001572 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001573
Alan Sternf2b52642012-07-19 16:08:45 -04001574 clear_bit(HID_SUSPENDED, &usbhid->iofl);
Bruno Prémont6a740aa2010-04-25 21:40:03 +02001575 status = hid_post_reset(intf);
1576 if (status >= 0 && hid->driver && hid->driver->reset_resume) {
1577 int ret = hid->driver->reset_resume(hid);
1578 if (ret < 0)
1579 status = ret;
1580 }
1581 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001582}
1583
Jiri Kosinaae2f0072009-02-20 12:47:08 +01001584#endif /* CONFIG_PM */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001585
Márton Némethd67dec52010-01-10 17:59:22 +01001586static const struct usb_device_id hid_usb_ids[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001587 { .match_flags = USB_DEVICE_ID_MATCH_INT_CLASS,
1588 .bInterfaceClass = USB_INTERFACE_CLASS_HID },
1589 { } /* Terminating entry */
1590};
1591
1592MODULE_DEVICE_TABLE (usb, hid_usb_ids);
1593
1594static struct usb_driver hid_driver = {
1595 .name = "usbhid",
Jiri Kosinac4c259b2009-09-15 16:27:45 +02001596 .probe = usbhid_probe,
1597 .disconnect = usbhid_disconnect,
Jiri Kosina0f6f1402009-01-19 09:17:18 +01001598#ifdef CONFIG_PM
Linus Torvalds1da177e2005-04-16 15:20:36 -07001599 .suspend = hid_suspend,
1600 .resume = hid_resume,
Oliver Neukum378a0ed2009-02-18 11:46:45 +01001601 .reset_resume = hid_reset_resume,
Jiri Kosina0f6f1402009-01-19 09:17:18 +01001602#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001603 .pre_reset = hid_pre_reset,
1604 .post_reset = hid_post_reset,
1605 .id_table = hid_usb_ids,
Oliver Neukum933e3182007-07-11 14:48:58 +02001606 .supports_autosuspend = 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001607};
1608
Guillaume Chazarain8fe294c2010-09-12 21:32:35 +02001609struct usb_interface *usbhid_find_interface(int minor)
1610{
1611 return usb_find_interface(&hid_driver, minor);
1612}
1613
Linus Torvalds1da177e2005-04-16 15:20:36 -07001614static int __init hid_init(void)
1615{
Oliver Neukum0361a282008-12-17 15:38:03 +01001616 int retval = -ENOMEM;
1617
Paul Walmsley876b9272007-04-19 14:56:12 +02001618 retval = usbhid_quirks_init(quirks_param);
1619 if (retval)
1620 goto usbhid_quirks_init_fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001621 retval = usb_register(&hid_driver);
1622 if (retval)
1623 goto usb_register_fail;
Jiri Kosinaccabcd22009-10-02 18:31:36 +02001624 printk(KERN_INFO KBUILD_MODNAME ": " DRIVER_DESC "\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001625
1626 return 0;
1627usb_register_fail:
Paul Walmsley876b9272007-04-19 14:56:12 +02001628 usbhid_quirks_exit();
1629usbhid_quirks_init_fail:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001630 return retval;
1631}
1632
1633static void __exit hid_exit(void)
1634{
1635 usb_deregister(&hid_driver);
Paul Walmsley876b9272007-04-19 14:56:12 +02001636 usbhid_quirks_exit();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001637}
1638
1639module_init(hid_init);
1640module_exit(hid_exit);
1641
Jiri Kosina88adb722009-10-02 18:29:34 +02001642MODULE_AUTHOR("Andreas Gal");
1643MODULE_AUTHOR("Vojtech Pavlik");
1644MODULE_AUTHOR("Jiri Kosina");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001645MODULE_DESCRIPTION(DRIVER_DESC);
1646MODULE_LICENSE(DRIVER_LICENSE);