blob: 4309c03038f6cf8b3acd4f692ebbd0f8c07432c3 [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 Pavlik71387bd2005-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{
996 if (usbhid->urbout)
997 usbhid_restart_out_queue(usbhid);
998 usbhid_restart_ctrl_queue(usbhid);
999}
1000
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001static void hid_free_buffers(struct usb_device *dev, struct hid_device *hid)
1002{
Jiri Kosina4916b3a2006-12-08 18:41:03 +01001003 struct usbhid_device *usbhid = hid->driver_data;
1004
Daniel Mack997ea582010-04-12 13:17:25 +02001005 usb_free_coherent(dev, usbhid->bufsize, usbhid->inbuf, usbhid->inbuf_dma);
1006 usb_free_coherent(dev, usbhid->bufsize, usbhid->outbuf, usbhid->outbuf_dma);
Alan Stern0ede76f2010-03-05 15:10:17 -05001007 kfree(usbhid->cr);
Daniel Mack997ea582010-04-12 13:17:25 +02001008 usb_free_coherent(dev, usbhid->bufsize, usbhid->ctrlbuf, usbhid->ctrlbuf_dma);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009}
1010
Jiri Slabyc500c972008-05-16 11:49:16 +02001011static int usbhid_parse(struct hid_device *hid)
1012{
1013 struct usb_interface *intf = to_usb_interface(hid->dev.parent);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014 struct usb_host_interface *interface = intf->cur_altsetting;
1015 struct usb_device *dev = interface_to_usbdev (intf);
1016 struct hid_descriptor *hdesc;
Paul Walmsley2eb5dc32007-04-19 13:27:04 +02001017 u32 quirks = 0;
Jiri Slabyc500c972008-05-16 11:49:16 +02001018 unsigned int rsize = 0;
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -05001019 char *rdesc;
Jiri Slabyc500c972008-05-16 11:49:16 +02001020 int ret, n;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021
Paul Walmsley2eb5dc32007-04-19 13:27:04 +02001022 quirks = usbhid_lookup_quirk(le16_to_cpu(dev->descriptor.idVendor),
1023 le16_to_cpu(dev->descriptor.idProduct));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024
Jiri Kosina6f4303f2009-01-29 00:15:51 +01001025 if (quirks & HID_QUIRK_IGNORE)
1026 return -ENODEV;
1027
Alan Stern0f28b552006-05-15 14:49:04 -04001028 /* Many keyboards and mice don't like to be polled for reports,
1029 * so we will always set the HID_QUIRK_NOGET flag for them. */
1030 if (interface->desc.bInterfaceSubClass == USB_INTERFACE_SUBCLASS_BOOT) {
1031 if (interface->desc.bInterfaceProtocol == USB_INTERFACE_PROTOCOL_KEYBOARD ||
1032 interface->desc.bInterfaceProtocol == USB_INTERFACE_PROTOCOL_MOUSE)
1033 quirks |= HID_QUIRK_NOGET;
1034 }
1035
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -05001036 if (usb_get_extra_descriptor(interface, HID_DT_HID, &hdesc) &&
1037 (!interface->desc.bNumEndpoints ||
1038 usb_get_extra_descriptor(&interface->endpoint[0], HID_DT_HID, &hdesc))) {
Jiri Kosina58037eb2007-05-30 15:07:13 +02001039 dbg_hid("class descriptor not present\n");
Jiri Slabyc500c972008-05-16 11:49:16 +02001040 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041 }
1042
Jiri Slabyc500c972008-05-16 11:49:16 +02001043 hid->version = le16_to_cpu(hdesc->bcdHID);
1044 hid->country = hdesc->bCountryCode;
1045
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046 for (n = 0; n < hdesc->bNumDescriptors; n++)
1047 if (hdesc->desc[n].bDescriptorType == HID_DT_REPORT)
1048 rsize = le16_to_cpu(hdesc->desc[n].wDescriptorLength);
1049
1050 if (!rsize || rsize > HID_MAX_DESCRIPTOR_SIZE) {
Jiri Kosina58037eb2007-05-30 15:07:13 +02001051 dbg_hid("weird size of report descriptor (%u)\n", rsize);
Jiri Slabyc500c972008-05-16 11:49:16 +02001052 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053 }
1054
1055 if (!(rdesc = kmalloc(rsize, GFP_KERNEL))) {
Jiri Kosina58037eb2007-05-30 15:07:13 +02001056 dbg_hid("couldn't allocate rdesc memory\n");
Jiri Slabyc500c972008-05-16 11:49:16 +02001057 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058 }
1059
Vojtech Pavlik854561b2005-05-29 02:28:00 -05001060 hid_set_idle(dev, interface->desc.bInterfaceNumber, 0, 0);
1061
Jiri Slabyc500c972008-05-16 11:49:16 +02001062 ret = hid_get_class_descriptor(dev, interface->desc.bInterfaceNumber,
1063 HID_DT_REPORT, rdesc, rsize);
1064 if (ret < 0) {
Jiri Kosina58037eb2007-05-30 15:07:13 +02001065 dbg_hid("reading report descriptor failed\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001066 kfree(rdesc);
Jiri Slabyc500c972008-05-16 11:49:16 +02001067 goto err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068 }
1069
Jiri Slabyc500c972008-05-16 11:49:16 +02001070 ret = hid_parse_report(hid, rdesc, rsize);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071 kfree(rdesc);
Jiri Slabyc500c972008-05-16 11:49:16 +02001072 if (ret) {
1073 dbg_hid("parsing report descriptor failed\n");
1074 goto err;
1075 }
1076
Zoltan Karcagif5208992009-05-06 16:30:21 +02001077 hid->quirks |= quirks;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078
Jiri Slabyc500c972008-05-16 11:49:16 +02001079 return 0;
1080err:
1081 return ret;
1082}
1083
1084static int usbhid_start(struct hid_device *hid)
1085{
1086 struct usb_interface *intf = to_usb_interface(hid->dev.parent);
1087 struct usb_host_interface *interface = intf->cur_altsetting;
1088 struct usb_device *dev = interface_to_usbdev(intf);
Jiri Slaby3d5afd32008-10-27 12:16:15 +01001089 struct usbhid_device *usbhid = hid->driver_data;
Jiri Slabyc500c972008-05-16 11:49:16 +02001090 unsigned int n, insize = 0;
1091 int ret;
1092
Jiri Slabye3e14de2008-11-01 23:41:46 +01001093 clear_bit(HID_DISCONNECTED, &usbhid->iofl);
1094
Jiri Kosina4916b3a2006-12-08 18:41:03 +01001095 usbhid->bufsize = HID_MIN_BUFFER_SIZE;
1096 hid_find_max_report(hid, HID_INPUT_REPORT, &usbhid->bufsize);
1097 hid_find_max_report(hid, HID_OUTPUT_REPORT, &usbhid->bufsize);
1098 hid_find_max_report(hid, HID_FEATURE_REPORT, &usbhid->bufsize);
1099
1100 if (usbhid->bufsize > HID_MAX_BUFFER_SIZE)
1101 usbhid->bufsize = HID_MAX_BUFFER_SIZE;
Michael Haboustakbf0964d2005-09-05 00:12:01 -05001102
1103 hid_find_max_report(hid, HID_INPUT_REPORT, &insize);
1104
1105 if (insize > HID_MAX_BUFFER_SIZE)
1106 insize = HID_MAX_BUFFER_SIZE;
1107
Jiri Slabyc500c972008-05-16 11:49:16 +02001108 if (hid_alloc_buffers(dev, hid)) {
1109 ret = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110 goto fail;
Pekka Sarnilaf345c372008-03-06 13:23:14 +01001111 }
1112
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113 for (n = 0; n < interface->desc.bNumEndpoints; n++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114 struct usb_endpoint_descriptor *endpoint;
1115 int pipe;
1116 int interval;
1117
1118 endpoint = &interface->endpoint[n].desc;
Jiri Slaby581a2732008-11-24 16:20:08 +01001119 if (!usb_endpoint_xfer_int(endpoint))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120 continue;
1121
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122 interval = endpoint->bInterval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001123
Pekka Sarnilaf345c372008-03-06 13:23:14 +01001124 /* Some vendors give fullspeed interval on highspeed devides */
Jiri Slabyc500c972008-05-16 11:49:16 +02001125 if (hid->quirks & HID_QUIRK_FULLSPEED_INTERVAL &&
Pekka Sarnilaf345c372008-03-06 13:23:14 +01001126 dev->speed == USB_SPEED_HIGH) {
1127 interval = fls(endpoint->bInterval*8);
1128 printk(KERN_INFO "%s: Fixing fullspeed to highspeed interval: %d -> %d\n",
1129 hid->name, endpoint->bInterval, interval);
1130 }
1131
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132 /* Change the polling interval of mice. */
1133 if (hid->collection->usage == HID_GD_MOUSE && hid_mousepoll_interval > 0)
1134 interval = hid_mousepoll_interval;
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -05001135
Jiri Slabyc500c972008-05-16 11:49:16 +02001136 ret = -ENOMEM;
Luiz Fernando N. Capitulino0f12aa02006-10-26 13:02:51 -03001137 if (usb_endpoint_dir_in(endpoint)) {
Jiri Kosina4916b3a2006-12-08 18:41:03 +01001138 if (usbhid->urbin)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139 continue;
Jiri Kosina4916b3a2006-12-08 18:41:03 +01001140 if (!(usbhid->urbin = usb_alloc_urb(0, GFP_KERNEL)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001141 goto fail;
1142 pipe = usb_rcvintpipe(dev, endpoint->bEndpointAddress);
Jiri Kosina4916b3a2006-12-08 18:41:03 +01001143 usb_fill_int_urb(usbhid->urbin, dev, pipe, usbhid->inbuf, insize,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144 hid_irq_in, hid, interval);
Jiri Kosina4916b3a2006-12-08 18:41:03 +01001145 usbhid->urbin->transfer_dma = usbhid->inbuf_dma;
1146 usbhid->urbin->transfer_flags |= URB_NO_TRANSFER_DMA_MAP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147 } else {
Jiri Kosina4916b3a2006-12-08 18:41:03 +01001148 if (usbhid->urbout)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001149 continue;
Jiri Kosina4916b3a2006-12-08 18:41:03 +01001150 if (!(usbhid->urbout = usb_alloc_urb(0, GFP_KERNEL)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001151 goto fail;
1152 pipe = usb_sndintpipe(dev, endpoint->bEndpointAddress);
Jiri Kosina4916b3a2006-12-08 18:41:03 +01001153 usb_fill_int_urb(usbhid->urbout, dev, pipe, usbhid->outbuf, 0,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001154 hid_irq_out, hid, interval);
Jiri Kosina4916b3a2006-12-08 18:41:03 +01001155 usbhid->urbout->transfer_dma = usbhid->outbuf_dma;
1156 usbhid->urbout->transfer_flags |= URB_NO_TRANSFER_DMA_MAP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001157 }
1158 }
1159
Jiri Kosina4916b3a2006-12-08 18:41:03 +01001160 usbhid->urbctrl = usb_alloc_urb(0, GFP_KERNEL);
Jiri Slabyc500c972008-05-16 11:49:16 +02001161 if (!usbhid->urbctrl) {
1162 ret = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163 goto fail;
Jiri Slabyc500c972008-05-16 11:49:16 +02001164 }
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -05001165
Jiri Kosina4916b3a2006-12-08 18:41:03 +01001166 usb_fill_control_urb(usbhid->urbctrl, dev, 0, (void *) usbhid->cr,
1167 usbhid->ctrlbuf, 1, hid_ctrl, hid);
Jiri Kosina4916b3a2006-12-08 18:41:03 +01001168 usbhid->urbctrl->transfer_dma = usbhid->ctrlbuf_dma;
Alan Stern0ede76f2010-03-05 15:10:17 -05001169 usbhid->urbctrl->transfer_flags |= URB_NO_TRANSFER_DMA_MAP;
Jiri Slabyc500c972008-05-16 11:49:16 +02001170
Jiri Kosina5b915d92009-11-05 14:08:03 +01001171 if (!(hid->quirks & HID_QUIRK_NO_INIT_REPORTS))
1172 usbhid_init_reports(hid);
Jiri Slaby93c10132008-06-27 00:04:24 +02001173
Jiri Slaby3d5afd32008-10-27 12:16:15 +01001174 set_bit(HID_STARTED, &usbhid->iofl);
Jiri Slaby3d5afd32008-10-27 12:16:15 +01001175
Alan Stern08ef08e2008-10-30 23:58:51 +01001176 /* Some keyboards don't work until their LEDs have been set.
1177 * Since BIOSes do set the LEDs, it must be safe for any device
1178 * that supports the keyboard boot protocol.
Alan Stern3d615102010-04-02 13:21:58 -04001179 * In addition, enable remote wakeup by default for all keyboard
1180 * devices supporting the boot protocol.
Alan Stern08ef08e2008-10-30 23:58:51 +01001181 */
1182 if (interface->desc.bInterfaceSubClass == USB_INTERFACE_SUBCLASS_BOOT &&
1183 interface->desc.bInterfaceProtocol ==
Alan Stern3d615102010-04-02 13:21:58 -04001184 USB_INTERFACE_PROTOCOL_KEYBOARD) {
Alan Stern08ef08e2008-10-30 23:58:51 +01001185 usbhid_set_leds(hid);
Alan Stern3d615102010-04-02 13:21:58 -04001186 device_set_wakeup_enable(&dev->dev, 1);
1187 }
Jiri Slabyc500c972008-05-16 11:49:16 +02001188 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189
1190fail:
Jiri Kosina4916b3a2006-12-08 18:41:03 +01001191 usb_free_urb(usbhid->urbin);
1192 usb_free_urb(usbhid->urbout);
1193 usb_free_urb(usbhid->urbctrl);
Jiri Slabye3e14de2008-11-01 23:41:46 +01001194 usbhid->urbin = NULL;
1195 usbhid->urbout = NULL;
1196 usbhid->urbctrl = NULL;
Jiri Kosina22f675f2007-08-01 12:32:27 +02001197 hid_free_buffers(dev, hid);
Jiri Slabyc500c972008-05-16 11:49:16 +02001198 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001199}
1200
Jiri Slabyc500c972008-05-16 11:49:16 +02001201static void usbhid_stop(struct hid_device *hid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001202{
Jiri Slabyc500c972008-05-16 11:49:16 +02001203 struct usbhid_device *usbhid = hid->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204
Jiri Slabyc500c972008-05-16 11:49:16 +02001205 if (WARN_ON(!usbhid))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206 return;
1207
Jiri Slaby3d5afd32008-10-27 12:16:15 +01001208 clear_bit(HID_STARTED, &usbhid->iofl);
Daniel Kurtz4371ea82011-11-17 19:23:50 +08001209 spin_lock_irq(&usbhid->lock); /* Sync with error and led handlers */
Oliver Neukum69626f22008-03-31 16:27:30 +02001210 set_bit(HID_DISCONNECTED, &usbhid->iofl);
Oliver Neukum0361a282008-12-17 15:38:03 +01001211 spin_unlock_irq(&usbhid->lock);
Jiri Kosina4916b3a2006-12-08 18:41:03 +01001212 usb_kill_urb(usbhid->urbin);
1213 usb_kill_urb(usbhid->urbout);
1214 usb_kill_urb(usbhid->urbctrl);
1215
Oliver Neukum0361a282008-12-17 15:38:03 +01001216 hid_cancel_delayed_stuff(usbhid);
Alan Sternaef4e262006-01-31 12:58:38 -05001217
Jiri Slabyc500c972008-05-16 11:49:16 +02001218 hid->claimed = 0;
1219
Jiri Kosina4916b3a2006-12-08 18:41:03 +01001220 usb_free_urb(usbhid->urbin);
1221 usb_free_urb(usbhid->urbctrl);
1222 usb_free_urb(usbhid->urbout);
Jiri Slabye3e14de2008-11-01 23:41:46 +01001223 usbhid->urbin = NULL; /* don't mess up next start */
1224 usbhid->urbctrl = NULL;
1225 usbhid->urbout = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001226
Anssi Hannulabe820972007-01-19 19:28:17 +02001227 hid_free_buffers(hid_to_usb_dev(hid), hid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228}
1229
Oliver Neukum0361a282008-12-17 15:38:03 +01001230static int usbhid_power(struct hid_device *hid, int lvl)
1231{
1232 int r = 0;
1233
1234 switch (lvl) {
1235 case PM_HINT_FULLON:
1236 r = usbhid_get_power(hid);
1237 break;
1238 case PM_HINT_NORMAL:
1239 usbhid_put_power(hid);
1240 break;
1241 }
1242 return r;
1243}
1244
Jiri Slabyc500c972008-05-16 11:49:16 +02001245static struct hid_ll_driver usb_hid_driver = {
1246 .parse = usbhid_parse,
1247 .start = usbhid_start,
1248 .stop = usbhid_stop,
1249 .open = usbhid_open,
1250 .close = usbhid_close,
Oliver Neukum0361a282008-12-17 15:38:03 +01001251 .power = usbhid_power,
Jiri Slabyc500c972008-05-16 11:49:16 +02001252 .hidinput_input_event = usb_hidinput_input_event,
1253};
1254
Jiri Kosinac4c259b2009-09-15 16:27:45 +02001255static int usbhid_probe(struct usb_interface *intf, const struct usb_device_id *id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256{
Jiri Slaby131d3a7a2008-11-14 12:03:47 +01001257 struct usb_host_interface *interface = intf->cur_altsetting;
Jiri Slabyc500c972008-05-16 11:49:16 +02001258 struct usb_device *dev = interface_to_usbdev(intf);
Jiri Slaby3d5afd32008-10-27 12:16:15 +01001259 struct usbhid_device *usbhid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001260 struct hid_device *hid;
Jiri Slaby131d3a7a2008-11-14 12:03:47 +01001261 unsigned int n, has_in = 0;
Jiri Slabyc500c972008-05-16 11:49:16 +02001262 size_t len;
1263 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264
Jiri Kosina58037eb2007-05-30 15:07:13 +02001265 dbg_hid("HID probe called for ifnum %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001266 intf->altsetting->desc.bInterfaceNumber);
1267
Jiri Slaby131d3a7a2008-11-14 12:03:47 +01001268 for (n = 0; n < interface->desc.bNumEndpoints; n++)
1269 if (usb_endpoint_is_int_in(&interface->endpoint[n].desc))
1270 has_in++;
1271 if (!has_in) {
Joe Perches4291ee32010-12-09 19:29:03 -08001272 hid_err(intf, "couldn't find an input interrupt endpoint\n");
Jiri Slaby131d3a7a2008-11-14 12:03:47 +01001273 return -ENODEV;
1274 }
1275
Jiri Slabyc500c972008-05-16 11:49:16 +02001276 hid = hid_allocate_device();
1277 if (IS_ERR(hid))
1278 return PTR_ERR(hid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001279
1280 usb_set_intfdata(intf, hid);
Jiri Slabyc500c972008-05-16 11:49:16 +02001281 hid->ll_driver = &usb_hid_driver;
Alan Ottb4dbde92011-01-18 03:04:39 -05001282 hid->hid_get_raw_report = usbhid_get_raw_report;
Jiri Slabyc500c972008-05-16 11:49:16 +02001283 hid->hid_output_raw_report = usbhid_output_raw_report;
Jiri Slaby76483cf2008-09-18 12:23:33 +02001284 hid->ff_init = hid_pidff_init;
Jiri Slabyc500c972008-05-16 11:49:16 +02001285#ifdef CONFIG_USB_HIDDEV
Jiri Slaby93c10132008-06-27 00:04:24 +02001286 hid->hiddev_connect = hiddev_connect;
Jiri Kosinac4c259b2009-09-15 16:27:45 +02001287 hid->hiddev_disconnect = hiddev_disconnect;
Jiri Slabyc500c972008-05-16 11:49:16 +02001288 hid->hiddev_hid_event = hiddev_hid_event;
1289 hid->hiddev_report_event = hiddev_report_event;
1290#endif
1291 hid->dev.parent = &intf->dev;
1292 hid->bus = BUS_USB;
1293 hid->vendor = le16_to_cpu(dev->descriptor.idVendor);
1294 hid->product = le16_to_cpu(dev->descriptor.idProduct);
1295 hid->name[0] = 0;
Bastien Nocerab5e5a372010-04-16 17:19:50 +01001296 hid->quirks = usbhid_lookup_quirk(hid->vendor, hid->product);
Jiri Slabya73a6372008-10-22 14:45:11 +02001297 if (intf->cur_altsetting->desc.bInterfaceProtocol ==
1298 USB_INTERFACE_PROTOCOL_MOUSE)
1299 hid->type = HID_TYPE_USBMOUSE;
Tomoki Sekiyama6dc14182011-05-23 15:45:44 -07001300 else if (intf->cur_altsetting->desc.bInterfaceProtocol == 0)
1301 hid->type = HID_TYPE_USBNONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302
Jiri Slabyc500c972008-05-16 11:49:16 +02001303 if (dev->manufacturer)
1304 strlcpy(hid->name, dev->manufacturer, sizeof(hid->name));
1305
1306 if (dev->product) {
1307 if (dev->manufacturer)
1308 strlcat(hid->name, " ", sizeof(hid->name));
1309 strlcat(hid->name, dev->product, sizeof(hid->name));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001310 }
1311
Jiri Slabyc500c972008-05-16 11:49:16 +02001312 if (!strlen(hid->name))
1313 snprintf(hid->name, sizeof(hid->name), "HID %04x:%04x",
1314 le16_to_cpu(dev->descriptor.idVendor),
1315 le16_to_cpu(dev->descriptor.idProduct));
Jiri Kosina4916b3a2006-12-08 18:41:03 +01001316
Jiri Slabyc500c972008-05-16 11:49:16 +02001317 usb_make_path(dev, hid->phys, sizeof(hid->phys));
1318 strlcat(hid->phys, "/input", sizeof(hid->phys));
1319 len = strlen(hid->phys);
1320 if (len < sizeof(hid->phys) - 1)
1321 snprintf(hid->phys + len, sizeof(hid->phys) - len,
1322 "%d", intf->altsetting[0].desc.bInterfaceNumber);
Geoff Levand4a1a4d82007-01-15 20:11:52 -08001323
Jiri Slabyc500c972008-05-16 11:49:16 +02001324 if (usb_string(dev, dev->descriptor.iSerialNumber, hid->uniq, 64) <= 0)
1325 hid->uniq[0] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326
Jiri Slaby3d5afd32008-10-27 12:16:15 +01001327 usbhid = kzalloc(sizeof(*usbhid), GFP_KERNEL);
1328 if (usbhid == NULL) {
1329 ret = -ENOMEM;
1330 goto err;
1331 }
1332
1333 hid->driver_data = usbhid;
1334 usbhid->hid = hid;
Jiri Kosina57ab12e2010-02-17 14:25:01 +01001335 usbhid->intf = intf;
1336 usbhid->ifnum = interface->desc.bInterfaceNumber;
Jiri Slaby3d5afd32008-10-27 12:16:15 +01001337
Alan Sternfde4e2f2010-05-07 10:41:10 -04001338 init_waitqueue_head(&usbhid->wait);
1339 INIT_WORK(&usbhid->reset_work, hid_reset);
Alan Sternfde4e2f2010-05-07 10:41:10 -04001340 setup_timer(&usbhid->io_retry, hid_retry_timeout, (unsigned long) hid);
1341 spin_lock_init(&usbhid->lock);
1342
Daniel Kurtz4371ea82011-11-17 19:23:50 +08001343 INIT_WORK(&usbhid->led_work, hid_led);
1344
Jiri Slaby85cdaf52008-05-16 11:49:15 +02001345 ret = hid_add_device(hid);
1346 if (ret) {
Jiri Slabyd458a9d2008-05-16 11:49:20 +02001347 if (ret != -ENODEV)
Joe Perches4291ee32010-12-09 19:29:03 -08001348 hid_err(intf, "can't add hid device: %d\n", ret);
Jiri Slaby3d5afd32008-10-27 12:16:15 +01001349 goto err_free;
Jiri Slaby85cdaf52008-05-16 11:49:15 +02001350 }
Jiri Slabyc500c972008-05-16 11:49:16 +02001351
1352 return 0;
Jiri Slaby3d5afd32008-10-27 12:16:15 +01001353err_free:
1354 kfree(usbhid);
Jiri Slabyc500c972008-05-16 11:49:16 +02001355err:
1356 hid_destroy_device(hid);
Jiri Slaby85cdaf52008-05-16 11:49:15 +02001357 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001358}
1359
Jiri Kosinac4c259b2009-09-15 16:27:45 +02001360static void usbhid_disconnect(struct usb_interface *intf)
Jiri Slabyc500c972008-05-16 11:49:16 +02001361{
1362 struct hid_device *hid = usb_get_intfdata(intf);
Jiri Slaby3d5afd32008-10-27 12:16:15 +01001363 struct usbhid_device *usbhid;
Jiri Slabyc500c972008-05-16 11:49:16 +02001364
1365 if (WARN_ON(!hid))
1366 return;
1367
Jiri Slaby3d5afd32008-10-27 12:16:15 +01001368 usbhid = hid->driver_data;
Jiri Slabyc500c972008-05-16 11:49:16 +02001369 hid_destroy_device(hid);
Jiri Slaby3d5afd32008-10-27 12:16:15 +01001370 kfree(usbhid);
Jiri Slabyc500c972008-05-16 11:49:16 +02001371}
1372
Oliver Neukum0361a282008-12-17 15:38:03 +01001373static void hid_cancel_delayed_stuff(struct usbhid_device *usbhid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001374{
Oliver Neukum0361a282008-12-17 15:38:03 +01001375 del_timer_sync(&usbhid->io_retry);
Oliver Neukum0361a282008-12-17 15:38:03 +01001376 cancel_work_sync(&usbhid->reset_work);
Daniel Kurtz4371ea82011-11-17 19:23:50 +08001377 cancel_work_sync(&usbhid->led_work);
Oliver Neukum0361a282008-12-17 15:38:03 +01001378}
1379
1380static void hid_cease_io(struct usbhid_device *usbhid)
1381{
Oliver Neukumfad9fbe2011-10-13 18:21:58 +02001382 del_timer_sync(&usbhid->io_retry);
Oliver Neukum0361a282008-12-17 15:38:03 +01001383 usb_kill_urb(usbhid->urbin);
1384 usb_kill_urb(usbhid->urbctrl);
1385 usb_kill_urb(usbhid->urbout);
Oliver Neukum0361a282008-12-17 15:38:03 +01001386}
1387
Jiri Kosinaae2f0072009-02-20 12:47:08 +01001388/* Treat USB reset pretty much the same as suspend/resume */
1389static int hid_pre_reset(struct usb_interface *intf)
1390{
1391 struct hid_device *hid = usb_get_intfdata(intf);
Jiri Kosina4916b3a2006-12-08 18:41:03 +01001392 struct usbhid_device *usbhid = hid->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001393
Jiri Kosinaae2f0072009-02-20 12:47:08 +01001394 spin_lock_irq(&usbhid->lock);
1395 set_bit(HID_RESET_PENDING, &usbhid->iofl);
1396 spin_unlock_irq(&usbhid->lock);
1397 hid_cease_io(usbhid);
Jiri Slaby3d5afd32008-10-27 12:16:15 +01001398
Jiri Kosinaae2f0072009-02-20 12:47:08 +01001399 return 0;
1400}
1401
1402/* Same routine used for post_reset and reset_resume */
1403static int hid_post_reset(struct usb_interface *intf)
1404{
1405 struct usb_device *dev = interface_to_usbdev (intf);
1406 struct hid_device *hid = usb_get_intfdata(intf);
1407 struct usbhid_device *usbhid = hid->driver_data;
Simon Haggettdc3c78e2012-04-03 16:04:15 +01001408 struct usb_host_interface *interface = intf->cur_altsetting;
Jiri Kosinaae2f0072009-02-20 12:47:08 +01001409 int status;
Simon Haggettdc3c78e2012-04-03 16:04:15 +01001410 char *rdesc;
1411
1412 /* Fetch and examine the HID report descriptor. If this
1413 * has changed, then rebind. Since usbcore's check of the
1414 * configuration descriptors passed, we already know that
1415 * the size of the HID report descriptor has not changed.
1416 */
1417 rdesc = kmalloc(hid->rsize, GFP_KERNEL);
1418 if (!rdesc) {
1419 dbg_hid("couldn't allocate rdesc memory (post_reset)\n");
1420 return 1;
1421 }
1422 status = hid_get_class_descriptor(dev,
1423 interface->desc.bInterfaceNumber,
1424 HID_DT_REPORT, rdesc, hid->rsize);
1425 if (status < 0) {
1426 dbg_hid("reading report descriptor failed (post_reset)\n");
1427 kfree(rdesc);
1428 return 1;
1429 }
1430 status = memcmp(rdesc, hid->rdesc, hid->rsize);
1431 kfree(rdesc);
1432 if (status != 0) {
1433 dbg_hid("report descriptor changed\n");
1434 return 1;
1435 }
Jiri Kosina70fa9f22009-06-04 15:48:38 +02001436
Jiri Kosinaae2f0072009-02-20 12:47:08 +01001437 spin_lock_irq(&usbhid->lock);
1438 clear_bit(HID_RESET_PENDING, &usbhid->iofl);
1439 spin_unlock_irq(&usbhid->lock);
1440 hid_set_idle(dev, intf->cur_altsetting->desc.bInterfaceNumber, 0, 0);
Jiri Kosinaae2f0072009-02-20 12:47:08 +01001441 status = hid_start_in(hid);
1442 if (status < 0)
1443 hid_io_error(hid);
1444 usbhid_restart_queues(usbhid);
1445
1446 return 0;
1447}
1448
1449int usbhid_get_power(struct hid_device *hid)
1450{
1451 struct usbhid_device *usbhid = hid->driver_data;
Jiri Kosina70fa9f22009-06-04 15:48:38 +02001452
Jiri Kosinaae2f0072009-02-20 12:47:08 +01001453 return usb_autopm_get_interface(usbhid->intf);
1454}
1455
1456void usbhid_put_power(struct hid_device *hid)
1457{
1458 struct usbhid_device *usbhid = hid->driver_data;
Jiri Kosina70fa9f22009-06-04 15:48:38 +02001459
Jiri Kosinaae2f0072009-02-20 12:47:08 +01001460 usb_autopm_put_interface(usbhid->intf);
1461}
1462
1463
Jiri Kosina0f6f1402009-01-19 09:17:18 +01001464#ifdef CONFIG_PM
Linus Torvalds1da177e2005-04-16 15:20:36 -07001465static int hid_suspend(struct usb_interface *intf, pm_message_t message)
1466{
Oliver Neukum0361a282008-12-17 15:38:03 +01001467 struct hid_device *hid = usb_get_intfdata(intf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001468 struct usbhid_device *usbhid = hid->driver_data;
Oliver Neukum0361a282008-12-17 15:38:03 +01001469 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001470
Alan Stern5b1b0b82011-08-19 23:49:48 +02001471 if (PMSG_IS_AUTO(message)) {
Oliver Neukum0361a282008-12-17 15:38:03 +01001472 spin_lock_irq(&usbhid->lock); /* Sync with error handler */
1473 if (!test_bit(HID_RESET_PENDING, &usbhid->iofl)
1474 && !test_bit(HID_CLEAR_HALT, &usbhid->iofl)
1475 && !test_bit(HID_OUT_RUNNING, &usbhid->iofl)
1476 && !test_bit(HID_CTRL_RUNNING, &usbhid->iofl)
1477 && !test_bit(HID_KEYS_PRESSED, &usbhid->iofl)
1478 && (!usbhid->ledcount || ignoreled))
1479 {
Alan Sternf2b52642012-07-19 16:08:45 -04001480 set_bit(HID_SUSPENDED, &usbhid->iofl);
Oliver Neukum0361a282008-12-17 15:38:03 +01001481 spin_unlock_irq(&usbhid->lock);
Bruno Prémont6a740aa2010-04-25 21:40:03 +02001482 if (hid->driver && hid->driver->suspend) {
1483 status = hid->driver->suspend(hid, message);
1484 if (status < 0)
1485 return status;
1486 }
Oliver Neukum0361a282008-12-17 15:38:03 +01001487 } else {
1488 usbhid_mark_busy(usbhid);
1489 spin_unlock_irq(&usbhid->lock);
1490 return -EBUSY;
1491 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001492
Oliver Neukum0361a282008-12-17 15:38:03 +01001493 } else {
Bruno Prémont6a740aa2010-04-25 21:40:03 +02001494 if (hid->driver && hid->driver->suspend) {
1495 status = hid->driver->suspend(hid, message);
1496 if (status < 0)
1497 return status;
1498 }
Oliver Neukum0361a282008-12-17 15:38:03 +01001499 spin_lock_irq(&usbhid->lock);
Alan Sternf2b52642012-07-19 16:08:45 -04001500 set_bit(HID_SUSPENDED, &usbhid->iofl);
Oliver Neukum0361a282008-12-17 15:38:03 +01001501 spin_unlock_irq(&usbhid->lock);
1502 if (usbhid_wait_io(hid) < 0)
1503 return -EIO;
1504 }
1505
Oliver Neukum0361a282008-12-17 15:38:03 +01001506 hid_cancel_delayed_stuff(usbhid);
1507 hid_cease_io(usbhid);
1508
Alan Stern5b1b0b82011-08-19 23:49:48 +02001509 if (PMSG_IS_AUTO(message) && test_bit(HID_KEYS_PRESSED, &usbhid->iofl)) {
Oliver Neukum0361a282008-12-17 15:38:03 +01001510 /* lost race against keypresses */
1511 status = hid_start_in(hid);
1512 if (status < 0)
1513 hid_io_error(hid);
1514 usbhid_mark_busy(usbhid);
1515 return -EBUSY;
1516 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001517 dev_dbg(&intf->dev, "suspend\n");
1518 return 0;
1519}
1520
1521static int hid_resume(struct usb_interface *intf)
1522{
1523 struct hid_device *hid = usb_get_intfdata (intf);
1524 struct usbhid_device *usbhid = hid->driver_data;
1525 int status;
1526
Jiri Slabyfde5be32008-11-23 12:03:20 +01001527 if (!test_bit(HID_STARTED, &usbhid->iofl))
Jiri Slaby3d5afd32008-10-27 12:16:15 +01001528 return 0;
Jiri Slaby3d5afd32008-10-27 12:16:15 +01001529
Alan Sternf2b52642012-07-19 16:08:45 -04001530 clear_bit(HID_SUSPENDED, &usbhid->iofl);
Oliver Neukum0361a282008-12-17 15:38:03 +01001531 usbhid_mark_busy(usbhid);
1532
1533 if (test_bit(HID_CLEAR_HALT, &usbhid->iofl) ||
1534 test_bit(HID_RESET_PENDING, &usbhid->iofl))
1535 schedule_work(&usbhid->reset_work);
Alan Sterndf9a1f42006-06-01 13:55:28 -04001536 usbhid->retry_delay = 0;
1537 status = hid_start_in(hid);
Oliver Neukum0361a282008-12-17 15:38:03 +01001538 if (status < 0)
1539 hid_io_error(hid);
1540 usbhid_restart_queues(usbhid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001541
Bruno Prémont6a740aa2010-04-25 21:40:03 +02001542 if (status >= 0 && hid->driver && hid->driver->resume) {
1543 int ret = hid->driver->resume(hid);
1544 if (ret < 0)
1545 status = ret;
1546 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001547 dev_dbg(&intf->dev, "resume status %d\n", status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001548 return 0;
1549}
1550
Oliver Neukum378a0ed2009-02-18 11:46:45 +01001551static int hid_reset_resume(struct usb_interface *intf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001552{
Oliver Neukum378a0ed2009-02-18 11:46:45 +01001553 struct hid_device *hid = usb_get_intfdata(intf);
1554 struct usbhid_device *usbhid = hid->driver_data;
Bruno Prémont6a740aa2010-04-25 21:40:03 +02001555 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001556
Alan Sternf2b52642012-07-19 16:08:45 -04001557 clear_bit(HID_SUSPENDED, &usbhid->iofl);
Bruno Prémont6a740aa2010-04-25 21:40:03 +02001558 status = hid_post_reset(intf);
1559 if (status >= 0 && hid->driver && hid->driver->reset_resume) {
1560 int ret = hid->driver->reset_resume(hid);
1561 if (ret < 0)
1562 status = ret;
1563 }
1564 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001565}
1566
Jiri Kosinaae2f0072009-02-20 12:47:08 +01001567#endif /* CONFIG_PM */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001568
Márton Némethd67dec52010-01-10 17:59:22 +01001569static const struct usb_device_id hid_usb_ids[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001570 { .match_flags = USB_DEVICE_ID_MATCH_INT_CLASS,
1571 .bInterfaceClass = USB_INTERFACE_CLASS_HID },
1572 { } /* Terminating entry */
1573};
1574
1575MODULE_DEVICE_TABLE (usb, hid_usb_ids);
1576
1577static struct usb_driver hid_driver = {
1578 .name = "usbhid",
Jiri Kosinac4c259b2009-09-15 16:27:45 +02001579 .probe = usbhid_probe,
1580 .disconnect = usbhid_disconnect,
Jiri Kosina0f6f1402009-01-19 09:17:18 +01001581#ifdef CONFIG_PM
Linus Torvalds1da177e2005-04-16 15:20:36 -07001582 .suspend = hid_suspend,
1583 .resume = hid_resume,
Oliver Neukum378a0ed2009-02-18 11:46:45 +01001584 .reset_resume = hid_reset_resume,
Jiri Kosina0f6f1402009-01-19 09:17:18 +01001585#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001586 .pre_reset = hid_pre_reset,
1587 .post_reset = hid_post_reset,
1588 .id_table = hid_usb_ids,
Oliver Neukum933e3182007-07-11 14:48:58 +02001589 .supports_autosuspend = 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001590};
1591
Guillaume Chazarain8fe294c2010-09-12 21:32:35 +02001592struct usb_interface *usbhid_find_interface(int minor)
1593{
1594 return usb_find_interface(&hid_driver, minor);
1595}
1596
Linus Torvalds1da177e2005-04-16 15:20:36 -07001597static int __init hid_init(void)
1598{
Oliver Neukum0361a282008-12-17 15:38:03 +01001599 int retval = -ENOMEM;
1600
Paul Walmsley876b9272007-04-19 14:56:12 +02001601 retval = usbhid_quirks_init(quirks_param);
1602 if (retval)
1603 goto usbhid_quirks_init_fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001604 retval = usb_register(&hid_driver);
1605 if (retval)
1606 goto usb_register_fail;
Jiri Kosinaccabcd22009-10-02 18:31:36 +02001607 printk(KERN_INFO KBUILD_MODNAME ": " DRIVER_DESC "\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001608
1609 return 0;
1610usb_register_fail:
Paul Walmsley876b9272007-04-19 14:56:12 +02001611 usbhid_quirks_exit();
1612usbhid_quirks_init_fail:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001613 return retval;
1614}
1615
1616static void __exit hid_exit(void)
1617{
1618 usb_deregister(&hid_driver);
Paul Walmsley876b9272007-04-19 14:56:12 +02001619 usbhid_quirks_exit();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001620}
1621
1622module_init(hid_init);
1623module_exit(hid_exit);
1624
Jiri Kosina88adb722009-10-02 18:29:34 +02001625MODULE_AUTHOR("Andreas Gal");
1626MODULE_AUTHOR("Vojtech Pavlik");
1627MODULE_AUTHOR("Jiri Kosina");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001628MODULE_DESCRIPTION(DRIVER_DESC);
1629MODULE_LICENSE(DRIVER_LICENSE);