blob: 719f6b02fab195c82d25bd26b8328f21509874b9 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * USB HID support for Linux
3 *
4 * Copyright (c) 1999 Andreas Gal
Michael Haboustakbf0964d2005-09-05 00:12:01 -05005 * Copyright (c) 2000-2005 Vojtech Pavlik <vojtech@suse.cz>
6 * Copyright (c) 2005 Michael Haboustak <mike-@cinci.rr.com> for Concept2, Inc
Oliver Neukum0361a282008-12-17 15:38:03 +01007 * Copyright (c) 2007-2008 Oliver Neukum
Jiri Kosina7d39e842010-02-02 20:46:34 +01008 * Copyright (c) 2006-2010 Jiri Kosina
Linus Torvalds1da177e2005-04-16 15:20:36 -07009 */
10
11/*
12 * This program is free software; you can redistribute it and/or modify it
13 * under the terms of the GNU General Public License as published by the Free
14 * Software Foundation; either version 2 of the License, or (at your option)
15 * any later version.
16 */
17
18#include <linux/module.h>
19#include <linux/slab.h>
20#include <linux/init.h>
21#include <linux/kernel.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include <linux/list.h>
23#include <linux/mm.h>
Jiri Slaby3d5afd32008-10-27 12:16:15 +010024#include <linux/mutex.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#include <linux/spinlock.h>
26#include <asm/unaligned.h>
27#include <asm/byteorder.h>
28#include <linux/input.h>
29#include <linux/wait.h>
Oliver Neukum0361a282008-12-17 15:38:03 +010030#include <linux/workqueue.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070031
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#include <linux/usb.h>
33
Jiri Kosinadde58452006-12-08 18:40:44 +010034#include <linux/hid.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070035#include <linux/hiddev.h>
Jiri Kosinac080d892007-01-25 11:43:31 +010036#include <linux/hid-debug.h>
Jiri Kosina86166b72007-05-14 09:57:40 +020037#include <linux/hidraw.h>
Jiri Kosina4916b3a2006-12-08 18:41:03 +010038#include "usbhid.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070039
40/*
41 * Version Information
42 */
43
Linus Torvalds1da177e2005-04-16 15:20:36 -070044#define DRIVER_DESC "USB HID core driver"
45#define DRIVER_LICENSE "GPL"
46
Linus Torvalds1da177e2005-04-16 15:20:36 -070047/*
48 * Module parameters.
49 */
50
51static unsigned int hid_mousepoll_interval;
52module_param_named(mousepoll, hid_mousepoll_interval, uint, 0644);
53MODULE_PARM_DESC(mousepoll, "Polling interval of mice");
54
Oliver Neukum0361a282008-12-17 15:38:03 +010055static unsigned int ignoreled;
56module_param_named(ignoreled, ignoreled, uint, 0644);
57MODULE_PARM_DESC(ignoreled, "Autosuspend with active leds");
58
Paul Walmsley876b9272007-04-19 14:56:12 +020059/* Quirks specified at module load time */
60static char *quirks_param[MAX_USBHID_BOOT_QUIRKS] = { [ 0 ... (MAX_USBHID_BOOT_QUIRKS - 1) ] = NULL };
61module_param_array_named(quirks, quirks_param, charp, NULL, 0444);
62MODULE_PARM_DESC(quirks, "Add/modify USB HID quirks by specifying "
63 " quirks=vendorID:productID:quirks"
64 " where vendorID, productID, and quirks are all in"
65 " 0x-prefixed hex");
Linus Torvalds1da177e2005-04-16 15:20:36 -070066/*
Alan Sternaef4e262006-01-31 12:58:38 -050067 * Input submission and I/O error handler.
68 */
Oliver Neukum0361a282008-12-17 15:38:03 +010069static DEFINE_MUTEX(hid_open_mut);
Alan Sternaef4e262006-01-31 12:58:38 -050070
71static void hid_io_error(struct hid_device *hid);
Oliver Neukum0361a282008-12-17 15:38:03 +010072static int hid_submit_out(struct hid_device *hid);
73static int hid_submit_ctrl(struct hid_device *hid);
74static void hid_cancel_delayed_stuff(struct usbhid_device *usbhid);
Alan Sternaef4e262006-01-31 12:58:38 -050075
76/* Start up the input URB */
77static int hid_start_in(struct hid_device *hid)
78{
79 unsigned long flags;
80 int rc = 0;
Jiri Kosina4916b3a2006-12-08 18:41:03 +010081 struct usbhid_device *usbhid = hid->driver_data;
Alan Sternaef4e262006-01-31 12:58:38 -050082
Oliver Neukum0361a282008-12-17 15:38:03 +010083 spin_lock_irqsave(&usbhid->lock, flags);
84 if (hid->open > 0 &&
Oliver Neukum69626f22008-03-31 16:27:30 +020085 !test_bit(HID_DISCONNECTED, &usbhid->iofl) &&
Oliver Neukum0361a282008-12-17 15:38:03 +010086 !test_bit(HID_REPORTED_IDLE, &usbhid->iofl) &&
Jiri Kosina4916b3a2006-12-08 18:41:03 +010087 !test_and_set_bit(HID_IN_RUNNING, &usbhid->iofl)) {
88 rc = usb_submit_urb(usbhid->urbin, GFP_ATOMIC);
Alan Sternaef4e262006-01-31 12:58:38 -050089 if (rc != 0)
Jiri Kosina4916b3a2006-12-08 18:41:03 +010090 clear_bit(HID_IN_RUNNING, &usbhid->iofl);
Alan Sternaef4e262006-01-31 12:58:38 -050091 }
Oliver Neukum0361a282008-12-17 15:38:03 +010092 spin_unlock_irqrestore(&usbhid->lock, flags);
Alan Sternaef4e262006-01-31 12:58:38 -050093 return rc;
94}
95
96/* I/O retry timer routine */
97static void hid_retry_timeout(unsigned long _hid)
98{
99 struct hid_device *hid = (struct hid_device *) _hid;
Jiri Kosina4916b3a2006-12-08 18:41:03 +0100100 struct usbhid_device *usbhid = hid->driver_data;
Alan Sternaef4e262006-01-31 12:58:38 -0500101
Jiri Kosina4916b3a2006-12-08 18:41:03 +0100102 dev_dbg(&usbhid->intf->dev, "retrying intr urb\n");
Alan Sternaef4e262006-01-31 12:58:38 -0500103 if (hid_start_in(hid))
104 hid_io_error(hid);
105}
106
Alan Stern6d8fc4d2006-10-18 12:35:24 -0400107/* Workqueue routine to reset the device or clear a halt */
David Howellsc4028952006-11-22 14:57:56 +0000108static void hid_reset(struct work_struct *work)
Alan Sternaef4e262006-01-31 12:58:38 -0500109{
Jiri Kosina4916b3a2006-12-08 18:41:03 +0100110 struct usbhid_device *usbhid =
111 container_of(work, struct usbhid_device, reset_work);
112 struct hid_device *hid = usbhid->hid;
Alan Stern011b15d2008-11-04 11:29:27 -0500113 int rc = 0;
Alan Sternaef4e262006-01-31 12:58:38 -0500114
Jiri Kosina4916b3a2006-12-08 18:41:03 +0100115 if (test_bit(HID_CLEAR_HALT, &usbhid->iofl)) {
116 dev_dbg(&usbhid->intf->dev, "clear halt\n");
Anssi Hannulabe820972007-01-19 19:28:17 +0200117 rc = usb_clear_halt(hid_to_usb_dev(hid), usbhid->urbin->pipe);
Jiri Kosina4916b3a2006-12-08 18:41:03 +0100118 clear_bit(HID_CLEAR_HALT, &usbhid->iofl);
Alan Stern6d8fc4d2006-10-18 12:35:24 -0400119 hid_start_in(hid);
Alan Sternaef4e262006-01-31 12:58:38 -0500120 }
Alan Stern6d8fc4d2006-10-18 12:35:24 -0400121
Jiri Kosina4916b3a2006-12-08 18:41:03 +0100122 else if (test_bit(HID_RESET_PENDING, &usbhid->iofl)) {
123 dev_dbg(&usbhid->intf->dev, "resetting device\n");
Alan Stern011b15d2008-11-04 11:29:27 -0500124 rc = usb_lock_device_for_reset(hid_to_usb_dev(hid), usbhid->intf);
125 if (rc == 0) {
Ming Lei742120c2008-06-18 22:00:29 +0800126 rc = usb_reset_device(hid_to_usb_dev(hid));
Alan Stern011b15d2008-11-04 11:29:27 -0500127 usb_unlock_device(hid_to_usb_dev(hid));
Alan Stern6d8fc4d2006-10-18 12:35:24 -0400128 }
Jiri Kosina4916b3a2006-12-08 18:41:03 +0100129 clear_bit(HID_RESET_PENDING, &usbhid->iofl);
Alan Stern6d8fc4d2006-10-18 12:35:24 -0400130 }
Alan Sternaef4e262006-01-31 12:58:38 -0500131
Alan Sterndf9a1f42006-06-01 13:55:28 -0400132 switch (rc) {
133 case 0:
Jiri Kosina4916b3a2006-12-08 18:41:03 +0100134 if (!test_bit(HID_IN_RUNNING, &usbhid->iofl))
Alan Sternaef4e262006-01-31 12:58:38 -0500135 hid_io_error(hid);
Alan Sterndf9a1f42006-06-01 13:55:28 -0400136 break;
137 default:
Joe Perches4291ee32010-12-09 19:29:03 -0800138 hid_err(hid, "can't reset device, %s-%s/input%d, status %d\n",
139 hid_to_usb_dev(hid)->bus->bus_name,
140 hid_to_usb_dev(hid)->devpath,
141 usbhid->ifnum, rc);
Alan Sterndf9a1f42006-06-01 13:55:28 -0400142 /* FALLTHROUGH */
143 case -EHOSTUNREACH:
144 case -ENODEV:
145 case -EINTR:
146 break;
147 }
Alan Sternaef4e262006-01-31 12:58:38 -0500148}
149
150/* Main I/O error handler */
151static void hid_io_error(struct hid_device *hid)
152{
153 unsigned long flags;
Jiri Kosina4916b3a2006-12-08 18:41:03 +0100154 struct usbhid_device *usbhid = hid->driver_data;
Alan Sternaef4e262006-01-31 12:58:38 -0500155
Oliver Neukum0361a282008-12-17 15:38:03 +0100156 spin_lock_irqsave(&usbhid->lock, flags);
Alan Sternaef4e262006-01-31 12:58:38 -0500157
158 /* Stop when disconnected */
Oliver Neukum69626f22008-03-31 16:27:30 +0200159 if (test_bit(HID_DISCONNECTED, &usbhid->iofl))
Alan Sternaef4e262006-01-31 12:58:38 -0500160 goto done;
161
Alan Stern5e2a55f2007-03-20 19:03:31 +0100162 /* If it has been a while since the last error, we'll assume
163 * this a brand new error and reset the retry timeout. */
164 if (time_after(jiffies, usbhid->stop_retry + HZ/2))
165 usbhid->retry_delay = 0;
166
Alan Sternaef4e262006-01-31 12:58:38 -0500167 /* When an error occurs, retry at increasing intervals */
Jiri Kosina4916b3a2006-12-08 18:41:03 +0100168 if (usbhid->retry_delay == 0) {
169 usbhid->retry_delay = 13; /* Then 26, 52, 104, 104, ... */
170 usbhid->stop_retry = jiffies + msecs_to_jiffies(1000);
171 } else if (usbhid->retry_delay < 100)
172 usbhid->retry_delay *= 2;
Alan Sternaef4e262006-01-31 12:58:38 -0500173
Jiri Kosina4916b3a2006-12-08 18:41:03 +0100174 if (time_after(jiffies, usbhid->stop_retry)) {
Alan Sternaef4e262006-01-31 12:58:38 -0500175
176 /* Retries failed, so do a port reset */
Jiri Kosina4916b3a2006-12-08 18:41:03 +0100177 if (!test_and_set_bit(HID_RESET_PENDING, &usbhid->iofl)) {
178 schedule_work(&usbhid->reset_work);
Alan Stern6d8fc4d2006-10-18 12:35:24 -0400179 goto done;
Alan Sternaef4e262006-01-31 12:58:38 -0500180 }
181 }
182
Jiri Kosina4916b3a2006-12-08 18:41:03 +0100183 mod_timer(&usbhid->io_retry,
184 jiffies + msecs_to_jiffies(usbhid->retry_delay));
Alan Sternaef4e262006-01-31 12:58:38 -0500185done:
Oliver Neukum0361a282008-12-17 15:38:03 +0100186 spin_unlock_irqrestore(&usbhid->lock, flags);
187}
188
189static void usbhid_mark_busy(struct usbhid_device *usbhid)
190{
191 struct usb_interface *intf = usbhid->intf;
192
193 usb_mark_last_busy(interface_to_usbdev(intf));
194}
195
196static int usbhid_restart_out_queue(struct usbhid_device *usbhid)
197{
198 struct hid_device *hid = usb_get_intfdata(usbhid->intf);
199 int kicked;
Daniel Kurtzf0befcd2011-11-17 19:23:49 +0800200 int r;
Oliver Neukum0361a282008-12-17 15:38:03 +0100201
202 if (!hid)
203 return 0;
204
205 if ((kicked = (usbhid->outhead != usbhid->outtail))) {
206 dbg("Kicking head %d tail %d", usbhid->outhead, usbhid->outtail);
Daniel Kurtzf0befcd2011-11-17 19:23:49 +0800207
208 r = usb_autopm_get_interface_async(usbhid->intf);
209 if (r < 0)
210 return r;
211 /* Asynchronously flush queue. */
212 set_bit(HID_OUT_RUNNING, &usbhid->iofl);
Oliver Neukum0361a282008-12-17 15:38:03 +0100213 if (hid_submit_out(hid)) {
214 clear_bit(HID_OUT_RUNNING, &usbhid->iofl);
Daniel Kurtzf0befcd2011-11-17 19:23:49 +0800215 usb_autopm_put_interface_async(usbhid->intf);
Oliver Neukum0361a282008-12-17 15:38:03 +0100216 }
Daniel Kurtzf0befcd2011-11-17 19:23:49 +0800217 wake_up(&usbhid->wait);
Oliver Neukum0361a282008-12-17 15:38:03 +0100218 }
219 return kicked;
220}
221
222static int usbhid_restart_ctrl_queue(struct usbhid_device *usbhid)
223{
224 struct hid_device *hid = usb_get_intfdata(usbhid->intf);
225 int kicked;
Daniel Kurtzf0befcd2011-11-17 19:23:49 +0800226 int r;
Oliver Neukum0361a282008-12-17 15:38:03 +0100227
228 WARN_ON(hid == NULL);
229 if (!hid)
230 return 0;
231
232 if ((kicked = (usbhid->ctrlhead != usbhid->ctrltail))) {
233 dbg("Kicking head %d tail %d", usbhid->ctrlhead, usbhid->ctrltail);
Daniel Kurtzf0befcd2011-11-17 19:23:49 +0800234
235 r = usb_autopm_get_interface_async(usbhid->intf);
236 if (r < 0)
237 return r;
238 /* Asynchronously flush queue. */
239 set_bit(HID_CTRL_RUNNING, &usbhid->iofl);
Oliver Neukum0361a282008-12-17 15:38:03 +0100240 if (hid_submit_ctrl(hid)) {
241 clear_bit(HID_CTRL_RUNNING, &usbhid->iofl);
Daniel Kurtzf0befcd2011-11-17 19:23:49 +0800242 usb_autopm_put_interface_async(usbhid->intf);
Oliver Neukum0361a282008-12-17 15:38:03 +0100243 }
Daniel Kurtzf0befcd2011-11-17 19:23:49 +0800244 wake_up(&usbhid->wait);
Oliver Neukum0361a282008-12-17 15:38:03 +0100245 }
246 return kicked;
Alan Sternaef4e262006-01-31 12:58:38 -0500247}
248
249/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250 * Input interrupt completion handler.
251 */
252
David Howells7d12e782006-10-05 14:55:46 +0100253static void hid_irq_in(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254{
255 struct hid_device *hid = urb->context;
Jiri Kosina4916b3a2006-12-08 18:41:03 +0100256 struct usbhid_device *usbhid = hid->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257 int status;
258
259 switch (urb->status) {
Jiri Slaby880d29f2008-06-18 23:55:41 +0200260 case 0: /* success */
Oliver Neukum0361a282008-12-17 15:38:03 +0100261 usbhid_mark_busy(usbhid);
Jiri Slaby880d29f2008-06-18 23:55:41 +0200262 usbhid->retry_delay = 0;
263 hid_input_report(urb->context, HID_INPUT_REPORT,
264 urb->transfer_buffer,
265 urb->actual_length, 1);
Oliver Neukum0361a282008-12-17 15:38:03 +0100266 /*
267 * autosuspend refused while keys are pressed
268 * because most keyboards don't wake up when
269 * a key is released
270 */
271 if (hid_check_keys_pressed(hid))
272 set_bit(HID_KEYS_PRESSED, &usbhid->iofl);
273 else
274 clear_bit(HID_KEYS_PRESSED, &usbhid->iofl);
Jiri Slaby880d29f2008-06-18 23:55:41 +0200275 break;
276 case -EPIPE: /* stall */
Oliver Neukum0361a282008-12-17 15:38:03 +0100277 usbhid_mark_busy(usbhid);
Jiri Slaby880d29f2008-06-18 23:55:41 +0200278 clear_bit(HID_IN_RUNNING, &usbhid->iofl);
279 set_bit(HID_CLEAR_HALT, &usbhid->iofl);
280 schedule_work(&usbhid->reset_work);
281 return;
282 case -ECONNRESET: /* unlink */
283 case -ENOENT:
284 case -ESHUTDOWN: /* unplug */
285 clear_bit(HID_IN_RUNNING, &usbhid->iofl);
286 return;
287 case -EILSEQ: /* protocol error or unplug */
288 case -EPROTO: /* protocol error or unplug */
289 case -ETIME: /* protocol error or unplug */
290 case -ETIMEDOUT: /* Should never happen, but... */
Oliver Neukum0361a282008-12-17 15:38:03 +0100291 usbhid_mark_busy(usbhid);
Jiri Slaby880d29f2008-06-18 23:55:41 +0200292 clear_bit(HID_IN_RUNNING, &usbhid->iofl);
293 hid_io_error(hid);
294 return;
295 default: /* error */
Joe Perches4291ee32010-12-09 19:29:03 -0800296 hid_warn(urb->dev, "input irq status %d received\n",
297 urb->status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298 }
299
Christoph Lameter54e6ecb2006-12-06 20:33:16 -0800300 status = usb_submit_urb(urb, GFP_ATOMIC);
Alan Sternaef4e262006-01-31 12:58:38 -0500301 if (status) {
Jiri Kosina4916b3a2006-12-08 18:41:03 +0100302 clear_bit(HID_IN_RUNNING, &usbhid->iofl);
Alan Sternaef4e262006-01-31 12:58:38 -0500303 if (status != -EPERM) {
Joe Perches4291ee32010-12-09 19:29:03 -0800304 hid_err(hid, "can't resubmit intr, %s-%s/input%d, status %d\n",
305 hid_to_usb_dev(hid)->bus->bus_name,
306 hid_to_usb_dev(hid)->devpath,
307 usbhid->ifnum, status);
Alan Sternaef4e262006-01-31 12:58:38 -0500308 hid_io_error(hid);
309 }
310 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311}
312
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313static int hid_submit_out(struct hid_device *hid)
314{
315 struct hid_report *report;
Anssi Hannulaf129ea62008-10-04 14:44:06 +0200316 char *raw_report;
Jiri Kosina4916b3a2006-12-08 18:41:03 +0100317 struct usbhid_device *usbhid = hid->driver_data;
Oliver Neukum68229682010-12-22 15:33:40 +0100318 int r;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319
Anssi Hannulaf129ea62008-10-04 14:44:06 +0200320 report = usbhid->out[usbhid->outtail].report;
321 raw_report = usbhid->out[usbhid->outtail].raw_report;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322
Daniel Kurtzf0befcd2011-11-17 19:23:49 +0800323 usbhid->urbout->transfer_buffer_length = ((report->size - 1) >> 3) +
324 1 + (report->id > 0);
325 usbhid->urbout->dev = hid_to_usb_dev(hid);
326 memcpy(usbhid->outbuf, raw_report,
327 usbhid->urbout->transfer_buffer_length);
328 kfree(raw_report);
Oliver Neukum68229682010-12-22 15:33:40 +0100329
Daniel Kurtzf0befcd2011-11-17 19:23:49 +0800330 dbg_hid("submitting out urb\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331
Daniel Kurtzf0befcd2011-11-17 19:23:49 +0800332 r = usb_submit_urb(usbhid->urbout, GFP_ATOMIC);
333 if (r < 0) {
334 hid_err(hid, "usb_submit_urb(out) failed: %d\n", r);
335 return r;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336 }
Daniel Kurtzf0befcd2011-11-17 19:23:49 +0800337 usbhid->last_out = jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338 return 0;
339}
340
341static int hid_submit_ctrl(struct hid_device *hid)
342{
343 struct hid_report *report;
344 unsigned char dir;
Anssi Hannulaf129ea62008-10-04 14:44:06 +0200345 char *raw_report;
Oliver Neukum68229682010-12-22 15:33:40 +0100346 int len, r;
Jiri Kosina4916b3a2006-12-08 18:41:03 +0100347 struct usbhid_device *usbhid = hid->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348
Jiri Kosina4916b3a2006-12-08 18:41:03 +0100349 report = usbhid->ctrl[usbhid->ctrltail].report;
Anssi Hannulaf129ea62008-10-04 14:44:06 +0200350 raw_report = usbhid->ctrl[usbhid->ctrltail].raw_report;
Jiri Kosina4916b3a2006-12-08 18:41:03 +0100351 dir = usbhid->ctrl[usbhid->ctrltail].dir;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352
Daniel Kurtzf0befcd2011-11-17 19:23:49 +0800353 len = ((report->size - 1) >> 3) + 1 + (report->id > 0);
354 if (dir == USB_DIR_OUT) {
355 usbhid->urbctrl->pipe = usb_sndctrlpipe(hid_to_usb_dev(hid), 0);
356 usbhid->urbctrl->transfer_buffer_length = len;
357 memcpy(usbhid->ctrlbuf, raw_report, len);
358 kfree(raw_report);
359 } else {
360 int maxpacket, padlen;
Oliver Neukum0361a282008-12-17 15:38:03 +0100361
Daniel Kurtzf0befcd2011-11-17 19:23:49 +0800362 usbhid->urbctrl->pipe = usb_rcvctrlpipe(hid_to_usb_dev(hid), 0);
363 maxpacket = usb_maxpacket(hid_to_usb_dev(hid),
364 usbhid->urbctrl->pipe, 0);
365 if (maxpacket > 0) {
366 padlen = DIV_ROUND_UP(len, maxpacket);
367 padlen *= maxpacket;
368 if (padlen > usbhid->bufsize)
369 padlen = usbhid->bufsize;
370 } else
371 padlen = 0;
372 usbhid->urbctrl->transfer_buffer_length = padlen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373 }
Daniel Kurtzf0befcd2011-11-17 19:23:49 +0800374 usbhid->urbctrl->dev = hid_to_usb_dev(hid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375
Daniel Kurtzf0befcd2011-11-17 19:23:49 +0800376 usbhid->cr->bRequestType = USB_TYPE_CLASS | USB_RECIP_INTERFACE | dir;
377 usbhid->cr->bRequest = (dir == USB_DIR_OUT) ? HID_REQ_SET_REPORT :
378 HID_REQ_GET_REPORT;
379 usbhid->cr->wValue = cpu_to_le16(((report->type + 1) << 8) |
380 report->id);
381 usbhid->cr->wIndex = cpu_to_le16(usbhid->ifnum);
382 usbhid->cr->wLength = cpu_to_le16(len);
383
384 dbg_hid("submitting ctrl urb: %s wValue=0x%04x wIndex=0x%04x wLength=%u\n",
385 usbhid->cr->bRequest == HID_REQ_SET_REPORT ? "Set_Report" :
386 "Get_Report",
387 usbhid->cr->wValue, usbhid->cr->wIndex, usbhid->cr->wLength);
388
389 r = usb_submit_urb(usbhid->urbctrl, GFP_ATOMIC);
390 if (r < 0) {
391 hid_err(hid, "usb_submit_urb(ctrl) failed: %d\n", r);
392 return r;
393 }
394 usbhid->last_ctrl = jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395 return 0;
396}
397
398/*
399 * Output interrupt completion handler.
400 */
401
David Howells7d12e782006-10-05 14:55:46 +0100402static void hid_irq_out(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403{
404 struct hid_device *hid = urb->context;
Jiri Kosina4916b3a2006-12-08 18:41:03 +0100405 struct usbhid_device *usbhid = hid->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406 unsigned long flags;
407 int unplug = 0;
408
409 switch (urb->status) {
Jiri Slaby880d29f2008-06-18 23:55:41 +0200410 case 0: /* success */
411 break;
412 case -ESHUTDOWN: /* unplug */
413 unplug = 1;
414 case -EILSEQ: /* protocol error or unplug */
415 case -EPROTO: /* protocol error or unplug */
416 case -ECONNRESET: /* unlink */
417 case -ENOENT:
418 break;
419 default: /* error */
Joe Perches4291ee32010-12-09 19:29:03 -0800420 hid_warn(urb->dev, "output irq status %d received\n",
421 urb->status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422 }
423
Oliver Neukum0361a282008-12-17 15:38:03 +0100424 spin_lock_irqsave(&usbhid->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425
426 if (unplug)
Jiri Kosina4916b3a2006-12-08 18:41:03 +0100427 usbhid->outtail = usbhid->outhead;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 else
Jiri Kosina4916b3a2006-12-08 18:41:03 +0100429 usbhid->outtail = (usbhid->outtail + 1) & (HID_OUTPUT_FIFO_SIZE - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430
Daniel Kurtzf0befcd2011-11-17 19:23:49 +0800431 if (usbhid->outhead != usbhid->outtail && !hid_submit_out(hid)) {
432 /* Successfully submitted next urb in queue */
Oliver Neukum0361a282008-12-17 15:38:03 +0100433 spin_unlock_irqrestore(&usbhid->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434 return;
435 }
436
Jiri Kosina4916b3a2006-12-08 18:41:03 +0100437 clear_bit(HID_OUT_RUNNING, &usbhid->iofl);
Oliver Neukum0361a282008-12-17 15:38:03 +0100438 spin_unlock_irqrestore(&usbhid->lock, flags);
Oliver Neukum68229682010-12-22 15:33:40 +0100439 usb_autopm_put_interface_async(usbhid->intf);
Jiri Slaby1d1bdd22008-03-19 21:55:04 +0100440 wake_up(&usbhid->wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441}
442
443/*
444 * Control pipe completion handler.
445 */
446
David Howells7d12e782006-10-05 14:55:46 +0100447static void hid_ctrl(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448{
449 struct hid_device *hid = urb->context;
Jiri Kosina4916b3a2006-12-08 18:41:03 +0100450 struct usbhid_device *usbhid = hid->driver_data;
Oliver Neukum0361a282008-12-17 15:38:03 +0100451 int unplug = 0, status = urb->status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452
Oliver Neukum0361a282008-12-17 15:38:03 +0100453 spin_lock(&usbhid->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454
Oliver Neukum0361a282008-12-17 15:38:03 +0100455 switch (status) {
Jiri Slaby880d29f2008-06-18 23:55:41 +0200456 case 0: /* success */
457 if (usbhid->ctrl[usbhid->ctrltail].dir == USB_DIR_IN)
458 hid_input_report(urb->context,
459 usbhid->ctrl[usbhid->ctrltail].report->type,
460 urb->transfer_buffer, urb->actual_length, 0);
461 break;
462 case -ESHUTDOWN: /* unplug */
463 unplug = 1;
464 case -EILSEQ: /* protocol error or unplug */
465 case -EPROTO: /* protocol error or unplug */
466 case -ECONNRESET: /* unlink */
467 case -ENOENT:
468 case -EPIPE: /* report not available */
469 break;
470 default: /* error */
Joe Perches4291ee32010-12-09 19:29:03 -0800471 hid_warn(urb->dev, "ctrl urb status %d received\n", status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472 }
473
474 if (unplug)
Jiri Kosina4916b3a2006-12-08 18:41:03 +0100475 usbhid->ctrltail = usbhid->ctrlhead;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476 else
Jiri Kosina4916b3a2006-12-08 18:41:03 +0100477 usbhid->ctrltail = (usbhid->ctrltail + 1) & (HID_CONTROL_FIFO_SIZE - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478
Daniel Kurtzf0befcd2011-11-17 19:23:49 +0800479 if (usbhid->ctrlhead != usbhid->ctrltail && !hid_submit_ctrl(hid)) {
480 /* Successfully submitted next urb in queue */
Oliver Neukum0361a282008-12-17 15:38:03 +0100481 spin_unlock(&usbhid->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482 return;
483 }
484
Jiri Kosina4916b3a2006-12-08 18:41:03 +0100485 clear_bit(HID_CTRL_RUNNING, &usbhid->iofl);
Oliver Neukum0361a282008-12-17 15:38:03 +0100486 spin_unlock(&usbhid->lock);
Oliver Neukum68229682010-12-22 15:33:40 +0100487 usb_autopm_put_interface_async(usbhid->intf);
Jiri Slaby1d1bdd22008-03-19 21:55:04 +0100488 wake_up(&usbhid->wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489}
490
H Hartley Sweeten52cfc612009-08-17 15:37:18 -0700491static void __usbhid_submit_report(struct hid_device *hid, struct hid_report *report,
492 unsigned char dir)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493{
494 int head;
Jiri Kosina4916b3a2006-12-08 18:41:03 +0100495 struct usbhid_device *usbhid = hid->driver_data;
Anssi Hannulaf129ea62008-10-04 14:44:06 +0200496 int len = ((report->size - 1) >> 3) + 1 + (report->id > 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497
498 if ((hid->quirks & HID_QUIRK_NOGET) && dir == USB_DIR_IN)
499 return;
500
Jiri Kosina4916b3a2006-12-08 18:41:03 +0100501 if (usbhid->urbout && dir == USB_DIR_OUT && report->type == HID_OUTPUT_REPORT) {
Jiri Kosina4916b3a2006-12-08 18:41:03 +0100502 if ((head = (usbhid->outhead + 1) & (HID_OUTPUT_FIFO_SIZE - 1)) == usbhid->outtail) {
Joe Perches4291ee32010-12-09 19:29:03 -0800503 hid_warn(hid, "output queue full\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504 return;
505 }
506
Anssi Hannulaf129ea62008-10-04 14:44:06 +0200507 usbhid->out[usbhid->outhead].raw_report = kmalloc(len, GFP_ATOMIC);
508 if (!usbhid->out[usbhid->outhead].raw_report) {
Joe Perches4291ee32010-12-09 19:29:03 -0800509 hid_warn(hid, "output queueing failed\n");
Anssi Hannulaf129ea62008-10-04 14:44:06 +0200510 return;
511 }
512 hid_output_report(report, usbhid->out[usbhid->outhead].raw_report);
513 usbhid->out[usbhid->outhead].report = report;
Jiri Kosina4916b3a2006-12-08 18:41:03 +0100514 usbhid->outhead = head;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515
Daniel Kurtzf0befcd2011-11-17 19:23:49 +0800516 /* Try to awake from autosuspend... */
517 if (usb_autopm_get_interface_async(usbhid->intf) < 0)
518 return;
519
520 /*
521 * But if still suspended, leave urb enqueued, don't submit.
522 * Submission will occur if/when resume() drains the queue.
523 */
524 if (test_bit(HID_REPORTED_IDLE, &usbhid->iofl))
525 return;
526
Oliver Neukum858155f2010-02-12 13:02:28 +0100527 if (!test_and_set_bit(HID_OUT_RUNNING, &usbhid->iofl)) {
Daniel Kurtzf0befcd2011-11-17 19:23:49 +0800528 if (hid_submit_out(hid)) {
Jiri Kosina4916b3a2006-12-08 18:41:03 +0100529 clear_bit(HID_OUT_RUNNING, &usbhid->iofl);
Daniel Kurtzf0befcd2011-11-17 19:23:49 +0800530 usb_autopm_put_interface_async(usbhid->intf);
531 }
532 wake_up(&usbhid->wait);
Oliver Neukum858155f2010-02-12 13:02:28 +0100533 } else {
534 /*
535 * the queue is known to run
536 * but an earlier request may be stuck
537 * we may need to time out
538 * no race because this is called under
539 * spinlock
540 */
541 if (time_after(jiffies, usbhid->last_out + HZ * 5))
542 usb_unlink_urb(usbhid->urbout);
543 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544 return;
545 }
546
Jiri Kosina4916b3a2006-12-08 18:41:03 +0100547 if ((head = (usbhid->ctrlhead + 1) & (HID_CONTROL_FIFO_SIZE - 1)) == usbhid->ctrltail) {
Joe Perches4291ee32010-12-09 19:29:03 -0800548 hid_warn(hid, "control queue full\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549 return;
550 }
551
Anssi Hannulaf129ea62008-10-04 14:44:06 +0200552 if (dir == USB_DIR_OUT) {
553 usbhid->ctrl[usbhid->ctrlhead].raw_report = kmalloc(len, GFP_ATOMIC);
554 if (!usbhid->ctrl[usbhid->ctrlhead].raw_report) {
Joe Perches4291ee32010-12-09 19:29:03 -0800555 hid_warn(hid, "control queueing failed\n");
Anssi Hannulaf129ea62008-10-04 14:44:06 +0200556 return;
557 }
558 hid_output_report(report, usbhid->ctrl[usbhid->ctrlhead].raw_report);
559 }
Jiri Kosina4916b3a2006-12-08 18:41:03 +0100560 usbhid->ctrl[usbhid->ctrlhead].report = report;
561 usbhid->ctrl[usbhid->ctrlhead].dir = dir;
562 usbhid->ctrlhead = head;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563
Daniel Kurtzf0befcd2011-11-17 19:23:49 +0800564 /* Try to awake from autosuspend... */
565 if (usb_autopm_get_interface_async(usbhid->intf) < 0)
566 return;
567
568 /*
569 * If already suspended, leave urb enqueued, but don't submit.
570 * Submission will occur if/when resume() drains the queue.
571 */
572 if (test_bit(HID_REPORTED_IDLE, &usbhid->iofl))
573 return;
574
Oliver Neukum858155f2010-02-12 13:02:28 +0100575 if (!test_and_set_bit(HID_CTRL_RUNNING, &usbhid->iofl)) {
Daniel Kurtzf0befcd2011-11-17 19:23:49 +0800576 if (hid_submit_ctrl(hid)) {
Jiri Kosina4916b3a2006-12-08 18:41:03 +0100577 clear_bit(HID_CTRL_RUNNING, &usbhid->iofl);
Daniel Kurtzf0befcd2011-11-17 19:23:49 +0800578 usb_autopm_put_interface_async(usbhid->intf);
579 }
580 wake_up(&usbhid->wait);
Oliver Neukum858155f2010-02-12 13:02:28 +0100581 } else {
582 /*
583 * the queue is known to run
584 * but an earlier request may be stuck
585 * we may need to time out
586 * no race because this is called under
587 * spinlock
588 */
589 if (time_after(jiffies, usbhid->last_ctrl + HZ * 5))
590 usb_unlink_urb(usbhid->urbctrl);
591 }
Oliver Neukum0361a282008-12-17 15:38:03 +0100592}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593
Oliver Neukum0361a282008-12-17 15:38:03 +0100594void usbhid_submit_report(struct hid_device *hid, struct hid_report *report, unsigned char dir)
595{
596 struct usbhid_device *usbhid = hid->driver_data;
597 unsigned long flags;
598
599 spin_lock_irqsave(&usbhid->lock, flags);
600 __usbhid_submit_report(hid, report, dir);
601 spin_unlock_irqrestore(&usbhid->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602}
Jiri Slaby606bd0a2008-07-04 23:06:45 +0200603EXPORT_SYMBOL_GPL(usbhid_submit_report);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604
Jiri Kosina229695e2006-12-08 18:40:53 +0100605static int usb_hidinput_input_event(struct input_dev *dev, unsigned int type, unsigned int code, int value)
Jiri Kosinadde58452006-12-08 18:40:44 +0100606{
Dmitry Torokhove0712982007-05-09 10:17:31 +0200607 struct hid_device *hid = input_get_drvdata(dev);
Oliver Neukum0361a282008-12-17 15:38:03 +0100608 struct usbhid_device *usbhid = hid->driver_data;
Jiri Kosinadde58452006-12-08 18:40:44 +0100609 struct hid_field *field;
Oliver Neukum0361a282008-12-17 15:38:03 +0100610 unsigned long flags;
Jiri Kosinadde58452006-12-08 18:40:44 +0100611 int offset;
612
613 if (type == EV_FF)
614 return input_ff_event(dev, type, code, value);
615
616 if (type != EV_LED)
617 return -1;
618
619 if ((offset = hidinput_find_field(hid, type, code, &field)) == -1) {
Joe Perches4291ee32010-12-09 19:29:03 -0800620 hid_warn(dev, "event field not found\n");
Jiri Kosinadde58452006-12-08 18:40:44 +0100621 return -1;
622 }
623
624 hid_set_field(field, offset, value);
Oliver Neukum0361a282008-12-17 15:38:03 +0100625 if (value) {
626 spin_lock_irqsave(&usbhid->lock, flags);
627 usbhid->ledcount++;
628 spin_unlock_irqrestore(&usbhid->lock, flags);
629 } else {
630 spin_lock_irqsave(&usbhid->lock, flags);
631 usbhid->ledcount--;
632 spin_unlock_irqrestore(&usbhid->lock, flags);
633 }
Jiri Kosina4916b3a2006-12-08 18:41:03 +0100634 usbhid_submit_report(hid, field->report, USB_DIR_OUT);
Jiri Kosinadde58452006-12-08 18:40:44 +0100635
636 return 0;
637}
638
Jiri Kosina4916b3a2006-12-08 18:41:03 +0100639int usbhid_wait_io(struct hid_device *hid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640{
Jiri Kosina4916b3a2006-12-08 18:41:03 +0100641 struct usbhid_device *usbhid = hid->driver_data;
642
Jiri Slaby1d1bdd22008-03-19 21:55:04 +0100643 if (!wait_event_timeout(usbhid->wait,
644 (!test_bit(HID_CTRL_RUNNING, &usbhid->iofl) &&
645 !test_bit(HID_OUT_RUNNING, &usbhid->iofl)),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646 10*HZ)) {
Jiri Kosina58037eb2007-05-30 15:07:13 +0200647 dbg_hid("timeout waiting for ctrl or out queue to clear\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648 return -1;
649 }
650
651 return 0;
652}
Bruno Prémontb8c21cf2010-03-30 22:34:30 +0200653EXPORT_SYMBOL_GPL(usbhid_wait_io);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654
Vojtech Pavlik854561b2005-05-29 02:28:00 -0500655static int hid_set_idle(struct usb_device *dev, int ifnum, int report, int idle)
656{
Vojtech Pavlik71387bd2005-05-29 02:28:14 -0500657 return usb_control_msg(dev, usb_sndctrlpipe(dev, 0),
Vojtech Pavlik854561b2005-05-29 02:28:00 -0500658 HID_REQ_SET_IDLE, USB_TYPE_CLASS | USB_RECIP_INTERFACE, (idle << 8) | report,
659 ifnum, NULL, 0, USB_CTRL_SET_TIMEOUT);
660}
661
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662static int hid_get_class_descriptor(struct usb_device *dev, int ifnum,
663 unsigned char type, void *buf, int size)
664{
665 int result, retries = 4;
666
Jiri Kosina43c7bf02007-01-26 12:58:24 +0100667 memset(buf, 0, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668
669 do {
670 result = usb_control_msg(dev, usb_rcvctrlpipe(dev, 0),
671 USB_REQ_GET_DESCRIPTOR, USB_RECIP_INTERFACE | USB_DIR_IN,
672 (type << 8), ifnum, buf, size, USB_CTRL_GET_TIMEOUT);
673 retries--;
674 } while (result < size && retries);
675 return result;
676}
677
Jiri Kosina4916b3a2006-12-08 18:41:03 +0100678int usbhid_open(struct hid_device *hid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679{
Oliver Neukum933e3182007-07-11 14:48:58 +0200680 struct usbhid_device *usbhid = hid->driver_data;
681 int res;
682
Oliver Neukum0361a282008-12-17 15:38:03 +0100683 mutex_lock(&hid_open_mut);
Oliver Neukum933e3182007-07-11 14:48:58 +0200684 if (!hid->open++) {
685 res = usb_autopm_get_interface(usbhid->intf);
Oliver Neukum68229682010-12-22 15:33:40 +0100686 /* the device must be awake to reliably request remote wakeup */
Oliver Neukum933e3182007-07-11 14:48:58 +0200687 if (res < 0) {
688 hid->open--;
Oliver Neukum0361a282008-12-17 15:38:03 +0100689 mutex_unlock(&hid_open_mut);
Oliver Neukum933e3182007-07-11 14:48:58 +0200690 return -EIO;
691 }
Oliver Neukum0361a282008-12-17 15:38:03 +0100692 usbhid->intf->needs_remote_wakeup = 1;
693 if (hid_start_in(hid))
694 hid_io_error(hid);
695
696 usb_autopm_put_interface(usbhid->intf);
Oliver Neukum933e3182007-07-11 14:48:58 +0200697 }
Oliver Neukum0361a282008-12-17 15:38:03 +0100698 mutex_unlock(&hid_open_mut);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699 return 0;
700}
701
Jiri Kosina4916b3a2006-12-08 18:41:03 +0100702void usbhid_close(struct hid_device *hid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703{
Jiri Kosina4916b3a2006-12-08 18:41:03 +0100704 struct usbhid_device *usbhid = hid->driver_data;
705
Oliver Neukum0361a282008-12-17 15:38:03 +0100706 mutex_lock(&hid_open_mut);
707
708 /* protecting hid->open to make sure we don't restart
709 * data acquistion due to a resumption we no longer
710 * care about
711 */
712 spin_lock_irq(&usbhid->lock);
Oliver Neukum933e3182007-07-11 14:48:58 +0200713 if (!--hid->open) {
Oliver Neukum0361a282008-12-17 15:38:03 +0100714 spin_unlock_irq(&usbhid->lock);
Oliver Neukum89092dd2009-04-29 17:12:12 +0200715 hid_cancel_delayed_stuff(usbhid);
Jiri Kosina4916b3a2006-12-08 18:41:03 +0100716 usb_kill_urb(usbhid->urbin);
Oliver Neukum0361a282008-12-17 15:38:03 +0100717 usbhid->intf->needs_remote_wakeup = 0;
718 } else {
719 spin_unlock_irq(&usbhid->lock);
Oliver Neukum933e3182007-07-11 14:48:58 +0200720 }
Oliver Neukum0361a282008-12-17 15:38:03 +0100721 mutex_unlock(&hid_open_mut);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722}
723
724/*
725 * Initialize all reports
726 */
727
Jiri Kosina4916b3a2006-12-08 18:41:03 +0100728void usbhid_init_reports(struct hid_device *hid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729{
730 struct hid_report *report;
Jiri Kosina4916b3a2006-12-08 18:41:03 +0100731 struct usbhid_device *usbhid = hid->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732 int err, ret;
733
Michael Haboustakbf0964d2005-09-05 00:12:01 -0500734 list_for_each_entry(report, &hid->report_enum[HID_INPUT_REPORT].report_list, list)
Jiri Kosina4916b3a2006-12-08 18:41:03 +0100735 usbhid_submit_report(hid, report, USB_DIR_IN);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736
737 list_for_each_entry(report, &hid->report_enum[HID_FEATURE_REPORT].report_list, list)
Jiri Kosina4916b3a2006-12-08 18:41:03 +0100738 usbhid_submit_report(hid, report, USB_DIR_IN);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739
740 err = 0;
Jiri Kosina4916b3a2006-12-08 18:41:03 +0100741 ret = usbhid_wait_io(hid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742 while (ret) {
743 err |= ret;
Jiri Kosina4916b3a2006-12-08 18:41:03 +0100744 if (test_bit(HID_CTRL_RUNNING, &usbhid->iofl))
745 usb_kill_urb(usbhid->urbctrl);
746 if (test_bit(HID_OUT_RUNNING, &usbhid->iofl))
747 usb_kill_urb(usbhid->urbout);
748 ret = usbhid_wait_io(hid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749 }
750
751 if (err)
Joe Perches4291ee32010-12-09 19:29:03 -0800752 hid_warn(hid, "timeout initializing reports\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753}
754
Michael Haboustakbf0964d2005-09-05 00:12:01 -0500755/*
Pete Zaitcev713c8aa2007-04-06 14:33:18 +0200756 * Reset LEDs which BIOS might have left on. For now, just NumLock (0x01).
757 */
758static int hid_find_field_early(struct hid_device *hid, unsigned int page,
759 unsigned int hid_code, struct hid_field **pfield)
760{
761 struct hid_report *report;
762 struct hid_field *field;
763 struct hid_usage *usage;
764 int i, j;
765
766 list_for_each_entry(report, &hid->report_enum[HID_OUTPUT_REPORT].report_list, list) {
767 for (i = 0; i < report->maxfield; i++) {
768 field = report->field[i];
769 for (j = 0; j < field->maxusage; j++) {
770 usage = &field->usage[j];
771 if ((usage->hid & HID_USAGE_PAGE) == page &&
772 (usage->hid & 0xFFFF) == hid_code) {
773 *pfield = field;
774 return j;
775 }
776 }
777 }
778 }
779 return -1;
780}
781
Jiri Slaby6edfa8d2008-06-27 20:41:02 +0200782void usbhid_set_leds(struct hid_device *hid)
Pete Zaitcev713c8aa2007-04-06 14:33:18 +0200783{
784 struct hid_field *field;
785 int offset;
786
787 if ((offset = hid_find_field_early(hid, HID_UP_LED, 0x01, &field)) != -1) {
788 hid_set_field(field, offset, 0);
789 usbhid_submit_report(hid, field->report, USB_DIR_OUT);
790 }
791}
Jiri Slaby6edfa8d2008-06-27 20:41:02 +0200792EXPORT_SYMBOL_GPL(usbhid_set_leds);
Pete Zaitcev713c8aa2007-04-06 14:33:18 +0200793
794/*
Michael Haboustakbf0964d2005-09-05 00:12:01 -0500795 * Traverse the supplied list of reports and find the longest
796 */
Jiri Slaby282bfd42008-03-28 17:06:41 +0100797static void hid_find_max_report(struct hid_device *hid, unsigned int type,
798 unsigned int *max)
Michael Haboustakbf0964d2005-09-05 00:12:01 -0500799{
800 struct hid_report *report;
Jiri Slaby282bfd42008-03-28 17:06:41 +0100801 unsigned int size;
Michael Haboustakbf0964d2005-09-05 00:12:01 -0500802
803 list_for_each_entry(report, &hid->report_enum[type].report_list, list) {
Jiri Kosinaefc7ce12008-10-17 15:01:15 +0200804 size = ((report->size - 1) >> 3) + 1 + hid->report_enum[type].numbered;
Michael Haboustakbf0964d2005-09-05 00:12:01 -0500805 if (*max < size)
806 *max = size;
807 }
808}
809
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810static int hid_alloc_buffers(struct usb_device *dev, struct hid_device *hid)
811{
Jiri Kosina4916b3a2006-12-08 18:41:03 +0100812 struct usbhid_device *usbhid = hid->driver_data;
813
Daniel Mack997ea582010-04-12 13:17:25 +0200814 usbhid->inbuf = usb_alloc_coherent(dev, usbhid->bufsize, GFP_KERNEL,
Jiri Slaby898089d2008-11-24 16:20:06 +0100815 &usbhid->inbuf_dma);
Daniel Mack997ea582010-04-12 13:17:25 +0200816 usbhid->outbuf = usb_alloc_coherent(dev, usbhid->bufsize, GFP_KERNEL,
Jiri Slaby898089d2008-11-24 16:20:06 +0100817 &usbhid->outbuf_dma);
Alan Stern0ede76f2010-03-05 15:10:17 -0500818 usbhid->cr = kmalloc(sizeof(*usbhid->cr), GFP_KERNEL);
Daniel Mack997ea582010-04-12 13:17:25 +0200819 usbhid->ctrlbuf = usb_alloc_coherent(dev, usbhid->bufsize, GFP_KERNEL,
Jiri Slaby898089d2008-11-24 16:20:06 +0100820 &usbhid->ctrlbuf_dma);
821 if (!usbhid->inbuf || !usbhid->outbuf || !usbhid->cr ||
822 !usbhid->ctrlbuf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823 return -1;
824
825 return 0;
826}
827
Alan Ottb4dbde92011-01-18 03:04:39 -0500828static int usbhid_get_raw_report(struct hid_device *hid,
829 unsigned char report_number, __u8 *buf, size_t count,
830 unsigned char report_type)
831{
832 struct usbhid_device *usbhid = hid->driver_data;
833 struct usb_device *dev = hid_to_usb_dev(hid);
834 struct usb_interface *intf = usbhid->intf;
835 struct usb_host_interface *interface = intf->cur_altsetting;
836 int skipped_report_id = 0;
837 int ret;
838
839 /* Byte 0 is the report number. Report data starts at byte 1.*/
840 buf[0] = report_number;
841 if (report_number == 0x0) {
842 /* Offset the return buffer by 1, so that the report ID
843 will remain in byte 0. */
844 buf++;
845 count--;
846 skipped_report_id = 1;
847 }
848 ret = usb_control_msg(dev, usb_rcvctrlpipe(dev, 0),
849 HID_REQ_GET_REPORT,
850 USB_DIR_IN | USB_TYPE_CLASS | USB_RECIP_INTERFACE,
851 ((report_type + 1) << 8) | report_number,
852 interface->desc.bInterfaceNumber, buf, count,
853 USB_CTRL_SET_TIMEOUT);
854
855 /* count also the report id */
856 if (ret > 0 && skipped_report_id)
857 ret++;
858
859 return ret;
860}
861
Jiri Kosinad4bfa032010-01-29 15:03:36 +0100862static int usbhid_output_raw_report(struct hid_device *hid, __u8 *buf, size_t count,
863 unsigned char report_type)
Jiri Kosinaefc493f2007-05-14 09:54:30 +0200864{
865 struct usbhid_device *usbhid = hid->driver_data;
866 struct usb_device *dev = hid_to_usb_dev(hid);
867 struct usb_interface *intf = usbhid->intf;
868 struct usb_host_interface *interface = intf->cur_altsetting;
869 int ret;
870
Alan Ottfe2c91e2010-09-22 13:19:42 +0200871 if (usbhid->urbout && report_type != HID_FEATURE_REPORT) {
Alan Otta8ab5d52010-05-16 18:07:09 -0400872 int actual_length;
873 int skipped_report_id = 0;
Alan Ott12e52722010-09-22 13:33:20 +0200874
Alan Otta8ab5d52010-05-16 18:07:09 -0400875 if (buf[0] == 0x0) {
876 /* Don't send the Report ID */
877 buf++;
878 count--;
879 skipped_report_id = 1;
880 }
881 ret = usb_interrupt_msg(dev, usbhid->urbout->pipe,
882 buf, count, &actual_length,
883 USB_CTRL_SET_TIMEOUT);
884 /* return the number of bytes transferred */
885 if (ret == 0) {
886 ret = actual_length;
887 /* count also the report id */
888 if (skipped_report_id)
889 ret++;
890 }
891 } else {
Alan Ott29129a92010-06-30 09:50:36 -0400892 int skipped_report_id = 0;
Alan Ottc29771c2010-08-17 00:44:04 -0400893 int report_id = buf[0];
Alan Ott29129a92010-06-30 09:50:36 -0400894 if (buf[0] == 0x0) {
895 /* Don't send the Report ID */
896 buf++;
897 count--;
898 skipped_report_id = 1;
899 }
Alan Otta8ab5d52010-05-16 18:07:09 -0400900 ret = usb_control_msg(dev, usb_sndctrlpipe(dev, 0),
901 HID_REQ_SET_REPORT,
902 USB_DIR_OUT | USB_TYPE_CLASS | USB_RECIP_INTERFACE,
Alan Ottc29771c2010-08-17 00:44:04 -0400903 ((report_type + 1) << 8) | report_id,
Alan Ott29129a92010-06-30 09:50:36 -0400904 interface->desc.bInterfaceNumber, buf, count,
Alan Otta8ab5d52010-05-16 18:07:09 -0400905 USB_CTRL_SET_TIMEOUT);
Alan Ott29129a92010-06-30 09:50:36 -0400906 /* count also the report id, if this was a numbered report. */
907 if (ret > 0 && skipped_report_id)
Alan Otta8ab5d52010-05-16 18:07:09 -0400908 ret++;
909 }
Jiri Kosinaefc493f2007-05-14 09:54:30 +0200910
911 return ret;
912}
913
Oliver Neukum0361a282008-12-17 15:38:03 +0100914static void usbhid_restart_queues(struct usbhid_device *usbhid)
915{
916 if (usbhid->urbout)
917 usbhid_restart_out_queue(usbhid);
918 usbhid_restart_ctrl_queue(usbhid);
919}
920
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921static void hid_free_buffers(struct usb_device *dev, struct hid_device *hid)
922{
Jiri Kosina4916b3a2006-12-08 18:41:03 +0100923 struct usbhid_device *usbhid = hid->driver_data;
924
Daniel Mack997ea582010-04-12 13:17:25 +0200925 usb_free_coherent(dev, usbhid->bufsize, usbhid->inbuf, usbhid->inbuf_dma);
926 usb_free_coherent(dev, usbhid->bufsize, usbhid->outbuf, usbhid->outbuf_dma);
Alan Stern0ede76f2010-03-05 15:10:17 -0500927 kfree(usbhid->cr);
Daniel Mack997ea582010-04-12 13:17:25 +0200928 usb_free_coherent(dev, usbhid->bufsize, usbhid->ctrlbuf, usbhid->ctrlbuf_dma);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929}
930
Jiri Slabyc500c972008-05-16 11:49:16 +0200931static int usbhid_parse(struct hid_device *hid)
932{
933 struct usb_interface *intf = to_usb_interface(hid->dev.parent);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934 struct usb_host_interface *interface = intf->cur_altsetting;
935 struct usb_device *dev = interface_to_usbdev (intf);
936 struct hid_descriptor *hdesc;
Paul Walmsley2eb5dc32007-04-19 13:27:04 +0200937 u32 quirks = 0;
Jiri Slabyc500c972008-05-16 11:49:16 +0200938 unsigned int rsize = 0;
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -0500939 char *rdesc;
Jiri Slabyc500c972008-05-16 11:49:16 +0200940 int ret, n;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941
Paul Walmsley2eb5dc32007-04-19 13:27:04 +0200942 quirks = usbhid_lookup_quirk(le16_to_cpu(dev->descriptor.idVendor),
943 le16_to_cpu(dev->descriptor.idProduct));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944
Jiri Kosina6f4303f2009-01-29 00:15:51 +0100945 if (quirks & HID_QUIRK_IGNORE)
946 return -ENODEV;
947
Alan Stern0f28b552006-05-15 14:49:04 -0400948 /* Many keyboards and mice don't like to be polled for reports,
949 * so we will always set the HID_QUIRK_NOGET flag for them. */
950 if (interface->desc.bInterfaceSubClass == USB_INTERFACE_SUBCLASS_BOOT) {
951 if (interface->desc.bInterfaceProtocol == USB_INTERFACE_PROTOCOL_KEYBOARD ||
952 interface->desc.bInterfaceProtocol == USB_INTERFACE_PROTOCOL_MOUSE)
953 quirks |= HID_QUIRK_NOGET;
954 }
955
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -0500956 if (usb_get_extra_descriptor(interface, HID_DT_HID, &hdesc) &&
957 (!interface->desc.bNumEndpoints ||
958 usb_get_extra_descriptor(&interface->endpoint[0], HID_DT_HID, &hdesc))) {
Jiri Kosina58037eb2007-05-30 15:07:13 +0200959 dbg_hid("class descriptor not present\n");
Jiri Slabyc500c972008-05-16 11:49:16 +0200960 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961 }
962
Jiri Slabyc500c972008-05-16 11:49:16 +0200963 hid->version = le16_to_cpu(hdesc->bcdHID);
964 hid->country = hdesc->bCountryCode;
965
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966 for (n = 0; n < hdesc->bNumDescriptors; n++)
967 if (hdesc->desc[n].bDescriptorType == HID_DT_REPORT)
968 rsize = le16_to_cpu(hdesc->desc[n].wDescriptorLength);
969
970 if (!rsize || rsize > HID_MAX_DESCRIPTOR_SIZE) {
Jiri Kosina58037eb2007-05-30 15:07:13 +0200971 dbg_hid("weird size of report descriptor (%u)\n", rsize);
Jiri Slabyc500c972008-05-16 11:49:16 +0200972 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973 }
974
975 if (!(rdesc = kmalloc(rsize, GFP_KERNEL))) {
Jiri Kosina58037eb2007-05-30 15:07:13 +0200976 dbg_hid("couldn't allocate rdesc memory\n");
Jiri Slabyc500c972008-05-16 11:49:16 +0200977 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978 }
979
Vojtech Pavlik854561b2005-05-29 02:28:00 -0500980 hid_set_idle(dev, interface->desc.bInterfaceNumber, 0, 0);
981
Jiri Slabyc500c972008-05-16 11:49:16 +0200982 ret = hid_get_class_descriptor(dev, interface->desc.bInterfaceNumber,
983 HID_DT_REPORT, rdesc, rsize);
984 if (ret < 0) {
Jiri Kosina58037eb2007-05-30 15:07:13 +0200985 dbg_hid("reading report descriptor failed\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986 kfree(rdesc);
Jiri Slabyc500c972008-05-16 11:49:16 +0200987 goto err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988 }
989
Jiri Slabyc500c972008-05-16 11:49:16 +0200990 ret = hid_parse_report(hid, rdesc, rsize);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991 kfree(rdesc);
Jiri Slabyc500c972008-05-16 11:49:16 +0200992 if (ret) {
993 dbg_hid("parsing report descriptor failed\n");
994 goto err;
995 }
996
Zoltan Karcagif5208992009-05-06 16:30:21 +0200997 hid->quirks |= quirks;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998
Jiri Slabyc500c972008-05-16 11:49:16 +0200999 return 0;
1000err:
1001 return ret;
1002}
1003
1004static int usbhid_start(struct hid_device *hid)
1005{
1006 struct usb_interface *intf = to_usb_interface(hid->dev.parent);
1007 struct usb_host_interface *interface = intf->cur_altsetting;
1008 struct usb_device *dev = interface_to_usbdev(intf);
Jiri Slaby3d5afd32008-10-27 12:16:15 +01001009 struct usbhid_device *usbhid = hid->driver_data;
Jiri Slabyc500c972008-05-16 11:49:16 +02001010 unsigned int n, insize = 0;
1011 int ret;
1012
Jiri Slabye3e14de2008-11-01 23:41:46 +01001013 clear_bit(HID_DISCONNECTED, &usbhid->iofl);
1014
Jiri Kosina4916b3a2006-12-08 18:41:03 +01001015 usbhid->bufsize = HID_MIN_BUFFER_SIZE;
1016 hid_find_max_report(hid, HID_INPUT_REPORT, &usbhid->bufsize);
1017 hid_find_max_report(hid, HID_OUTPUT_REPORT, &usbhid->bufsize);
1018 hid_find_max_report(hid, HID_FEATURE_REPORT, &usbhid->bufsize);
1019
1020 if (usbhid->bufsize > HID_MAX_BUFFER_SIZE)
1021 usbhid->bufsize = HID_MAX_BUFFER_SIZE;
Michael Haboustakbf0964d2005-09-05 00:12:01 -05001022
1023 hid_find_max_report(hid, HID_INPUT_REPORT, &insize);
1024
1025 if (insize > HID_MAX_BUFFER_SIZE)
1026 insize = HID_MAX_BUFFER_SIZE;
1027
Jiri Slabyc500c972008-05-16 11:49:16 +02001028 if (hid_alloc_buffers(dev, hid)) {
1029 ret = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030 goto fail;
Pekka Sarnilaf345c372008-03-06 13:23:14 +01001031 }
1032
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033 for (n = 0; n < interface->desc.bNumEndpoints; n++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034 struct usb_endpoint_descriptor *endpoint;
1035 int pipe;
1036 int interval;
1037
1038 endpoint = &interface->endpoint[n].desc;
Jiri Slaby581a2732008-11-24 16:20:08 +01001039 if (!usb_endpoint_xfer_int(endpoint))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040 continue;
1041
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042 interval = endpoint->bInterval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043
Pekka Sarnilaf345c372008-03-06 13:23:14 +01001044 /* Some vendors give fullspeed interval on highspeed devides */
Jiri Slabyc500c972008-05-16 11:49:16 +02001045 if (hid->quirks & HID_QUIRK_FULLSPEED_INTERVAL &&
Pekka Sarnilaf345c372008-03-06 13:23:14 +01001046 dev->speed == USB_SPEED_HIGH) {
1047 interval = fls(endpoint->bInterval*8);
1048 printk(KERN_INFO "%s: Fixing fullspeed to highspeed interval: %d -> %d\n",
1049 hid->name, endpoint->bInterval, interval);
1050 }
1051
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052 /* Change the polling interval of mice. */
1053 if (hid->collection->usage == HID_GD_MOUSE && hid_mousepoll_interval > 0)
1054 interval = hid_mousepoll_interval;
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -05001055
Jiri Slabyc500c972008-05-16 11:49:16 +02001056 ret = -ENOMEM;
Luiz Fernando N. Capitulino0f12aa02006-10-26 13:02:51 -03001057 if (usb_endpoint_dir_in(endpoint)) {
Jiri Kosina4916b3a2006-12-08 18:41:03 +01001058 if (usbhid->urbin)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059 continue;
Jiri Kosina4916b3a2006-12-08 18:41:03 +01001060 if (!(usbhid->urbin = usb_alloc_urb(0, GFP_KERNEL)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001061 goto fail;
1062 pipe = usb_rcvintpipe(dev, endpoint->bEndpointAddress);
Jiri Kosina4916b3a2006-12-08 18:41:03 +01001063 usb_fill_int_urb(usbhid->urbin, dev, pipe, usbhid->inbuf, insize,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064 hid_irq_in, hid, interval);
Jiri Kosina4916b3a2006-12-08 18:41:03 +01001065 usbhid->urbin->transfer_dma = usbhid->inbuf_dma;
1066 usbhid->urbin->transfer_flags |= URB_NO_TRANSFER_DMA_MAP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067 } else {
Jiri Kosina4916b3a2006-12-08 18:41:03 +01001068 if (usbhid->urbout)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069 continue;
Jiri Kosina4916b3a2006-12-08 18:41:03 +01001070 if (!(usbhid->urbout = usb_alloc_urb(0, GFP_KERNEL)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071 goto fail;
1072 pipe = usb_sndintpipe(dev, endpoint->bEndpointAddress);
Jiri Kosina4916b3a2006-12-08 18:41:03 +01001073 usb_fill_int_urb(usbhid->urbout, dev, pipe, usbhid->outbuf, 0,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074 hid_irq_out, hid, interval);
Jiri Kosina4916b3a2006-12-08 18:41:03 +01001075 usbhid->urbout->transfer_dma = usbhid->outbuf_dma;
1076 usbhid->urbout->transfer_flags |= URB_NO_TRANSFER_DMA_MAP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077 }
1078 }
1079
Jiri Kosina4916b3a2006-12-08 18:41:03 +01001080 usbhid->urbctrl = usb_alloc_urb(0, GFP_KERNEL);
Jiri Slabyc500c972008-05-16 11:49:16 +02001081 if (!usbhid->urbctrl) {
1082 ret = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083 goto fail;
Jiri Slabyc500c972008-05-16 11:49:16 +02001084 }
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -05001085
Jiri Kosina4916b3a2006-12-08 18:41:03 +01001086 usb_fill_control_urb(usbhid->urbctrl, dev, 0, (void *) usbhid->cr,
1087 usbhid->ctrlbuf, 1, hid_ctrl, hid);
Jiri Kosina4916b3a2006-12-08 18:41:03 +01001088 usbhid->urbctrl->transfer_dma = usbhid->ctrlbuf_dma;
Alan Stern0ede76f2010-03-05 15:10:17 -05001089 usbhid->urbctrl->transfer_flags |= URB_NO_TRANSFER_DMA_MAP;
Jiri Slabyc500c972008-05-16 11:49:16 +02001090
Jiri Kosina5b915d92009-11-05 14:08:03 +01001091 if (!(hid->quirks & HID_QUIRK_NO_INIT_REPORTS))
1092 usbhid_init_reports(hid);
Jiri Slaby93c10132008-06-27 00:04:24 +02001093
Jiri Slaby3d5afd32008-10-27 12:16:15 +01001094 set_bit(HID_STARTED, &usbhid->iofl);
Jiri Slaby3d5afd32008-10-27 12:16:15 +01001095
Alan Stern08ef08e2008-10-30 23:58:51 +01001096 /* Some keyboards don't work until their LEDs have been set.
1097 * Since BIOSes do set the LEDs, it must be safe for any device
1098 * that supports the keyboard boot protocol.
Alan Stern3d615102010-04-02 13:21:58 -04001099 * In addition, enable remote wakeup by default for all keyboard
1100 * devices supporting the boot protocol.
Alan Stern08ef08e2008-10-30 23:58:51 +01001101 */
1102 if (interface->desc.bInterfaceSubClass == USB_INTERFACE_SUBCLASS_BOOT &&
1103 interface->desc.bInterfaceProtocol ==
Alan Stern3d615102010-04-02 13:21:58 -04001104 USB_INTERFACE_PROTOCOL_KEYBOARD) {
Alan Stern08ef08e2008-10-30 23:58:51 +01001105 usbhid_set_leds(hid);
Alan Stern3d615102010-04-02 13:21:58 -04001106 device_set_wakeup_enable(&dev->dev, 1);
1107 }
Jiri Slabyc500c972008-05-16 11:49:16 +02001108 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109
1110fail:
Jiri Kosina4916b3a2006-12-08 18:41:03 +01001111 usb_free_urb(usbhid->urbin);
1112 usb_free_urb(usbhid->urbout);
1113 usb_free_urb(usbhid->urbctrl);
Jiri Slabye3e14de2008-11-01 23:41:46 +01001114 usbhid->urbin = NULL;
1115 usbhid->urbout = NULL;
1116 usbhid->urbctrl = NULL;
Jiri Kosina22f675f2007-08-01 12:32:27 +02001117 hid_free_buffers(dev, hid);
Jiri Slabyc500c972008-05-16 11:49:16 +02001118 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119}
1120
Jiri Slabyc500c972008-05-16 11:49:16 +02001121static void usbhid_stop(struct hid_device *hid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122{
Jiri Slabyc500c972008-05-16 11:49:16 +02001123 struct usbhid_device *usbhid = hid->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124
Jiri Slabyc500c972008-05-16 11:49:16 +02001125 if (WARN_ON(!usbhid))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126 return;
1127
Jiri Slaby3d5afd32008-10-27 12:16:15 +01001128 clear_bit(HID_STARTED, &usbhid->iofl);
Oliver Neukum0361a282008-12-17 15:38:03 +01001129 spin_lock_irq(&usbhid->lock); /* Sync with error handler */
Oliver Neukum69626f22008-03-31 16:27:30 +02001130 set_bit(HID_DISCONNECTED, &usbhid->iofl);
Oliver Neukum0361a282008-12-17 15:38:03 +01001131 spin_unlock_irq(&usbhid->lock);
Jiri Kosina4916b3a2006-12-08 18:41:03 +01001132 usb_kill_urb(usbhid->urbin);
1133 usb_kill_urb(usbhid->urbout);
1134 usb_kill_urb(usbhid->urbctrl);
1135
Oliver Neukum0361a282008-12-17 15:38:03 +01001136 hid_cancel_delayed_stuff(usbhid);
Alan Sternaef4e262006-01-31 12:58:38 -05001137
Jiri Slabyc500c972008-05-16 11:49:16 +02001138 hid->claimed = 0;
1139
Jiri Kosina4916b3a2006-12-08 18:41:03 +01001140 usb_free_urb(usbhid->urbin);
1141 usb_free_urb(usbhid->urbctrl);
1142 usb_free_urb(usbhid->urbout);
Jiri Slabye3e14de2008-11-01 23:41:46 +01001143 usbhid->urbin = NULL; /* don't mess up next start */
1144 usbhid->urbctrl = NULL;
1145 usbhid->urbout = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146
Anssi Hannulabe820972007-01-19 19:28:17 +02001147 hid_free_buffers(hid_to_usb_dev(hid), hid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148}
1149
Oliver Neukum0361a282008-12-17 15:38:03 +01001150static int usbhid_power(struct hid_device *hid, int lvl)
1151{
1152 int r = 0;
1153
1154 switch (lvl) {
1155 case PM_HINT_FULLON:
1156 r = usbhid_get_power(hid);
1157 break;
1158 case PM_HINT_NORMAL:
1159 usbhid_put_power(hid);
1160 break;
1161 }
1162 return r;
1163}
1164
Jiri Slabyc500c972008-05-16 11:49:16 +02001165static struct hid_ll_driver usb_hid_driver = {
1166 .parse = usbhid_parse,
1167 .start = usbhid_start,
1168 .stop = usbhid_stop,
1169 .open = usbhid_open,
1170 .close = usbhid_close,
Oliver Neukum0361a282008-12-17 15:38:03 +01001171 .power = usbhid_power,
Jiri Slabyc500c972008-05-16 11:49:16 +02001172 .hidinput_input_event = usb_hidinput_input_event,
1173};
1174
Jiri Kosinac4c259b2009-09-15 16:27:45 +02001175static int usbhid_probe(struct usb_interface *intf, const struct usb_device_id *id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001176{
Jiri Slaby131d3a7a2008-11-14 12:03:47 +01001177 struct usb_host_interface *interface = intf->cur_altsetting;
Jiri Slabyc500c972008-05-16 11:49:16 +02001178 struct usb_device *dev = interface_to_usbdev(intf);
Jiri Slaby3d5afd32008-10-27 12:16:15 +01001179 struct usbhid_device *usbhid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180 struct hid_device *hid;
Jiri Slaby131d3a7a2008-11-14 12:03:47 +01001181 unsigned int n, has_in = 0;
Jiri Slabyc500c972008-05-16 11:49:16 +02001182 size_t len;
1183 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001184
Jiri Kosina58037eb2007-05-30 15:07:13 +02001185 dbg_hid("HID probe called for ifnum %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001186 intf->altsetting->desc.bInterfaceNumber);
1187
Jiri Slaby131d3a7a2008-11-14 12:03:47 +01001188 for (n = 0; n < interface->desc.bNumEndpoints; n++)
1189 if (usb_endpoint_is_int_in(&interface->endpoint[n].desc))
1190 has_in++;
1191 if (!has_in) {
Joe Perches4291ee32010-12-09 19:29:03 -08001192 hid_err(intf, "couldn't find an input interrupt endpoint\n");
Jiri Slaby131d3a7a2008-11-14 12:03:47 +01001193 return -ENODEV;
1194 }
1195
Jiri Slabyc500c972008-05-16 11:49:16 +02001196 hid = hid_allocate_device();
1197 if (IS_ERR(hid))
1198 return PTR_ERR(hid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001199
1200 usb_set_intfdata(intf, hid);
Jiri Slabyc500c972008-05-16 11:49:16 +02001201 hid->ll_driver = &usb_hid_driver;
Alan Ottb4dbde92011-01-18 03:04:39 -05001202 hid->hid_get_raw_report = usbhid_get_raw_report;
Jiri Slabyc500c972008-05-16 11:49:16 +02001203 hid->hid_output_raw_report = usbhid_output_raw_report;
Jiri Slaby76483cf2008-09-18 12:23:33 +02001204 hid->ff_init = hid_pidff_init;
Jiri Slabyc500c972008-05-16 11:49:16 +02001205#ifdef CONFIG_USB_HIDDEV
Jiri Slaby93c10132008-06-27 00:04:24 +02001206 hid->hiddev_connect = hiddev_connect;
Jiri Kosinac4c259b2009-09-15 16:27:45 +02001207 hid->hiddev_disconnect = hiddev_disconnect;
Jiri Slabyc500c972008-05-16 11:49:16 +02001208 hid->hiddev_hid_event = hiddev_hid_event;
1209 hid->hiddev_report_event = hiddev_report_event;
1210#endif
1211 hid->dev.parent = &intf->dev;
1212 hid->bus = BUS_USB;
1213 hid->vendor = le16_to_cpu(dev->descriptor.idVendor);
1214 hid->product = le16_to_cpu(dev->descriptor.idProduct);
1215 hid->name[0] = 0;
Bastien Nocerab5e5a372010-04-16 17:19:50 +01001216 hid->quirks = usbhid_lookup_quirk(hid->vendor, hid->product);
Jiri Slabya73a6372008-10-22 14:45:11 +02001217 if (intf->cur_altsetting->desc.bInterfaceProtocol ==
1218 USB_INTERFACE_PROTOCOL_MOUSE)
1219 hid->type = HID_TYPE_USBMOUSE;
Tomoki Sekiyama6dc14182011-05-23 15:45:44 -07001220 else if (intf->cur_altsetting->desc.bInterfaceProtocol == 0)
1221 hid->type = HID_TYPE_USBNONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222
Jiri Slabyc500c972008-05-16 11:49:16 +02001223 if (dev->manufacturer)
1224 strlcpy(hid->name, dev->manufacturer, sizeof(hid->name));
1225
1226 if (dev->product) {
1227 if (dev->manufacturer)
1228 strlcat(hid->name, " ", sizeof(hid->name));
1229 strlcat(hid->name, dev->product, sizeof(hid->name));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230 }
1231
Jiri Slabyc500c972008-05-16 11:49:16 +02001232 if (!strlen(hid->name))
1233 snprintf(hid->name, sizeof(hid->name), "HID %04x:%04x",
1234 le16_to_cpu(dev->descriptor.idVendor),
1235 le16_to_cpu(dev->descriptor.idProduct));
Jiri Kosina4916b3a2006-12-08 18:41:03 +01001236
Jiri Slabyc500c972008-05-16 11:49:16 +02001237 usb_make_path(dev, hid->phys, sizeof(hid->phys));
1238 strlcat(hid->phys, "/input", sizeof(hid->phys));
1239 len = strlen(hid->phys);
1240 if (len < sizeof(hid->phys) - 1)
1241 snprintf(hid->phys + len, sizeof(hid->phys) - len,
1242 "%d", intf->altsetting[0].desc.bInterfaceNumber);
Geoff Levand4a1a4d82007-01-15 20:11:52 -08001243
Jiri Slabyc500c972008-05-16 11:49:16 +02001244 if (usb_string(dev, dev->descriptor.iSerialNumber, hid->uniq, 64) <= 0)
1245 hid->uniq[0] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001246
Jiri Slaby3d5afd32008-10-27 12:16:15 +01001247 usbhid = kzalloc(sizeof(*usbhid), GFP_KERNEL);
1248 if (usbhid == NULL) {
1249 ret = -ENOMEM;
1250 goto err;
1251 }
1252
1253 hid->driver_data = usbhid;
1254 usbhid->hid = hid;
Jiri Kosina57ab12e2010-02-17 14:25:01 +01001255 usbhid->intf = intf;
1256 usbhid->ifnum = interface->desc.bInterfaceNumber;
Jiri Slaby3d5afd32008-10-27 12:16:15 +01001257
Alan Sternfde4e2f2010-05-07 10:41:10 -04001258 init_waitqueue_head(&usbhid->wait);
1259 INIT_WORK(&usbhid->reset_work, hid_reset);
Alan Sternfde4e2f2010-05-07 10:41:10 -04001260 setup_timer(&usbhid->io_retry, hid_retry_timeout, (unsigned long) hid);
1261 spin_lock_init(&usbhid->lock);
1262
Jiri Slaby85cdaf52008-05-16 11:49:15 +02001263 ret = hid_add_device(hid);
1264 if (ret) {
Jiri Slabyd458a9d2008-05-16 11:49:20 +02001265 if (ret != -ENODEV)
Joe Perches4291ee32010-12-09 19:29:03 -08001266 hid_err(intf, "can't add hid device: %d\n", ret);
Jiri Slaby3d5afd32008-10-27 12:16:15 +01001267 goto err_free;
Jiri Slaby85cdaf52008-05-16 11:49:15 +02001268 }
Jiri Slabyc500c972008-05-16 11:49:16 +02001269
1270 return 0;
Jiri Slaby3d5afd32008-10-27 12:16:15 +01001271err_free:
1272 kfree(usbhid);
Jiri Slabyc500c972008-05-16 11:49:16 +02001273err:
1274 hid_destroy_device(hid);
Jiri Slaby85cdaf52008-05-16 11:49:15 +02001275 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001276}
1277
Jiri Kosinac4c259b2009-09-15 16:27:45 +02001278static void usbhid_disconnect(struct usb_interface *intf)
Jiri Slabyc500c972008-05-16 11:49:16 +02001279{
1280 struct hid_device *hid = usb_get_intfdata(intf);
Jiri Slaby3d5afd32008-10-27 12:16:15 +01001281 struct usbhid_device *usbhid;
Jiri Slabyc500c972008-05-16 11:49:16 +02001282
1283 if (WARN_ON(!hid))
1284 return;
1285
Jiri Slaby3d5afd32008-10-27 12:16:15 +01001286 usbhid = hid->driver_data;
Jiri Slabyc500c972008-05-16 11:49:16 +02001287 hid_destroy_device(hid);
Jiri Slaby3d5afd32008-10-27 12:16:15 +01001288 kfree(usbhid);
Jiri Slabyc500c972008-05-16 11:49:16 +02001289}
1290
Oliver Neukum0361a282008-12-17 15:38:03 +01001291static void hid_cancel_delayed_stuff(struct usbhid_device *usbhid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001292{
Oliver Neukum0361a282008-12-17 15:38:03 +01001293 del_timer_sync(&usbhid->io_retry);
Oliver Neukum0361a282008-12-17 15:38:03 +01001294 cancel_work_sync(&usbhid->reset_work);
1295}
1296
1297static void hid_cease_io(struct usbhid_device *usbhid)
1298{
Oliver Neukumfad9fbe2011-10-13 18:21:58 +02001299 del_timer_sync(&usbhid->io_retry);
Oliver Neukum0361a282008-12-17 15:38:03 +01001300 usb_kill_urb(usbhid->urbin);
1301 usb_kill_urb(usbhid->urbctrl);
1302 usb_kill_urb(usbhid->urbout);
Oliver Neukum0361a282008-12-17 15:38:03 +01001303}
1304
Jiri Kosinaae2f0072009-02-20 12:47:08 +01001305/* Treat USB reset pretty much the same as suspend/resume */
1306static int hid_pre_reset(struct usb_interface *intf)
1307{
1308 struct hid_device *hid = usb_get_intfdata(intf);
Jiri Kosina4916b3a2006-12-08 18:41:03 +01001309 struct usbhid_device *usbhid = hid->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001310
Jiri Kosinaae2f0072009-02-20 12:47:08 +01001311 spin_lock_irq(&usbhid->lock);
1312 set_bit(HID_RESET_PENDING, &usbhid->iofl);
1313 spin_unlock_irq(&usbhid->lock);
1314 hid_cease_io(usbhid);
Jiri Slaby3d5afd32008-10-27 12:16:15 +01001315
Jiri Kosinaae2f0072009-02-20 12:47:08 +01001316 return 0;
1317}
1318
1319/* Same routine used for post_reset and reset_resume */
1320static int hid_post_reset(struct usb_interface *intf)
1321{
1322 struct usb_device *dev = interface_to_usbdev (intf);
1323 struct hid_device *hid = usb_get_intfdata(intf);
1324 struct usbhid_device *usbhid = hid->driver_data;
1325 int status;
Jiri Kosina70fa9f22009-06-04 15:48:38 +02001326
Jiri Kosinaae2f0072009-02-20 12:47:08 +01001327 spin_lock_irq(&usbhid->lock);
1328 clear_bit(HID_RESET_PENDING, &usbhid->iofl);
1329 spin_unlock_irq(&usbhid->lock);
1330 hid_set_idle(dev, intf->cur_altsetting->desc.bInterfaceNumber, 0, 0);
Jiri Kosinaae2f0072009-02-20 12:47:08 +01001331 status = hid_start_in(hid);
1332 if (status < 0)
1333 hid_io_error(hid);
1334 usbhid_restart_queues(usbhid);
1335
1336 return 0;
1337}
1338
1339int usbhid_get_power(struct hid_device *hid)
1340{
1341 struct usbhid_device *usbhid = hid->driver_data;
Jiri Kosina70fa9f22009-06-04 15:48:38 +02001342
Jiri Kosinaae2f0072009-02-20 12:47:08 +01001343 return usb_autopm_get_interface(usbhid->intf);
1344}
1345
1346void usbhid_put_power(struct hid_device *hid)
1347{
1348 struct usbhid_device *usbhid = hid->driver_data;
Jiri Kosina70fa9f22009-06-04 15:48:38 +02001349
Jiri Kosinaae2f0072009-02-20 12:47:08 +01001350 usb_autopm_put_interface(usbhid->intf);
1351}
1352
1353
Jiri Kosina0f6f1402009-01-19 09:17:18 +01001354#ifdef CONFIG_PM
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355static int hid_suspend(struct usb_interface *intf, pm_message_t message)
1356{
Oliver Neukum0361a282008-12-17 15:38:03 +01001357 struct hid_device *hid = usb_get_intfdata(intf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001358 struct usbhid_device *usbhid = hid->driver_data;
Oliver Neukum0361a282008-12-17 15:38:03 +01001359 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001360
Alan Stern5b1b0b82011-08-19 23:49:48 +02001361 if (PMSG_IS_AUTO(message)) {
Oliver Neukum0361a282008-12-17 15:38:03 +01001362 spin_lock_irq(&usbhid->lock); /* Sync with error handler */
1363 if (!test_bit(HID_RESET_PENDING, &usbhid->iofl)
1364 && !test_bit(HID_CLEAR_HALT, &usbhid->iofl)
1365 && !test_bit(HID_OUT_RUNNING, &usbhid->iofl)
1366 && !test_bit(HID_CTRL_RUNNING, &usbhid->iofl)
1367 && !test_bit(HID_KEYS_PRESSED, &usbhid->iofl)
1368 && (!usbhid->ledcount || ignoreled))
1369 {
1370 set_bit(HID_REPORTED_IDLE, &usbhid->iofl);
1371 spin_unlock_irq(&usbhid->lock);
Bruno Prémont6a740aa2010-04-25 21:40:03 +02001372 if (hid->driver && hid->driver->suspend) {
1373 status = hid->driver->suspend(hid, message);
1374 if (status < 0)
1375 return status;
1376 }
Oliver Neukum0361a282008-12-17 15:38:03 +01001377 } else {
1378 usbhid_mark_busy(usbhid);
1379 spin_unlock_irq(&usbhid->lock);
1380 return -EBUSY;
1381 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001382
Oliver Neukum0361a282008-12-17 15:38:03 +01001383 } else {
Bruno Prémont6a740aa2010-04-25 21:40:03 +02001384 if (hid->driver && hid->driver->suspend) {
1385 status = hid->driver->suspend(hid, message);
1386 if (status < 0)
1387 return status;
1388 }
Oliver Neukum0361a282008-12-17 15:38:03 +01001389 spin_lock_irq(&usbhid->lock);
1390 set_bit(HID_REPORTED_IDLE, &usbhid->iofl);
1391 spin_unlock_irq(&usbhid->lock);
1392 if (usbhid_wait_io(hid) < 0)
1393 return -EIO;
1394 }
1395
Oliver Neukum0361a282008-12-17 15:38:03 +01001396 hid_cancel_delayed_stuff(usbhid);
1397 hid_cease_io(usbhid);
1398
Alan Stern5b1b0b82011-08-19 23:49:48 +02001399 if (PMSG_IS_AUTO(message) && test_bit(HID_KEYS_PRESSED, &usbhid->iofl)) {
Oliver Neukum0361a282008-12-17 15:38:03 +01001400 /* lost race against keypresses */
1401 status = hid_start_in(hid);
1402 if (status < 0)
1403 hid_io_error(hid);
1404 usbhid_mark_busy(usbhid);
1405 return -EBUSY;
1406 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001407 dev_dbg(&intf->dev, "suspend\n");
1408 return 0;
1409}
1410
1411static int hid_resume(struct usb_interface *intf)
1412{
1413 struct hid_device *hid = usb_get_intfdata (intf);
1414 struct usbhid_device *usbhid = hid->driver_data;
1415 int status;
1416
Jiri Slabyfde5be32008-11-23 12:03:20 +01001417 if (!test_bit(HID_STARTED, &usbhid->iofl))
Jiri Slaby3d5afd32008-10-27 12:16:15 +01001418 return 0;
Jiri Slaby3d5afd32008-10-27 12:16:15 +01001419
Oliver Neukum0361a282008-12-17 15:38:03 +01001420 clear_bit(HID_REPORTED_IDLE, &usbhid->iofl);
1421 usbhid_mark_busy(usbhid);
1422
1423 if (test_bit(HID_CLEAR_HALT, &usbhid->iofl) ||
1424 test_bit(HID_RESET_PENDING, &usbhid->iofl))
1425 schedule_work(&usbhid->reset_work);
Alan Sterndf9a1f42006-06-01 13:55:28 -04001426 usbhid->retry_delay = 0;
1427 status = hid_start_in(hid);
Oliver Neukum0361a282008-12-17 15:38:03 +01001428 if (status < 0)
1429 hid_io_error(hid);
1430 usbhid_restart_queues(usbhid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001431
Bruno Prémont6a740aa2010-04-25 21:40:03 +02001432 if (status >= 0 && hid->driver && hid->driver->resume) {
1433 int ret = hid->driver->resume(hid);
1434 if (ret < 0)
1435 status = ret;
1436 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001437 dev_dbg(&intf->dev, "resume status %d\n", status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001438 return 0;
1439}
1440
Oliver Neukum378a0ed2009-02-18 11:46:45 +01001441static int hid_reset_resume(struct usb_interface *intf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001442{
Oliver Neukum378a0ed2009-02-18 11:46:45 +01001443 struct hid_device *hid = usb_get_intfdata(intf);
1444 struct usbhid_device *usbhid = hid->driver_data;
Bruno Prémont6a740aa2010-04-25 21:40:03 +02001445 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001446
Oliver Neukum378a0ed2009-02-18 11:46:45 +01001447 clear_bit(HID_REPORTED_IDLE, &usbhid->iofl);
Bruno Prémont6a740aa2010-04-25 21:40:03 +02001448 status = hid_post_reset(intf);
1449 if (status >= 0 && hid->driver && hid->driver->reset_resume) {
1450 int ret = hid->driver->reset_resume(hid);
1451 if (ret < 0)
1452 status = ret;
1453 }
1454 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001455}
1456
Jiri Kosinaae2f0072009-02-20 12:47:08 +01001457#endif /* CONFIG_PM */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001458
Márton Némethd67dec52010-01-10 17:59:22 +01001459static const struct usb_device_id hid_usb_ids[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001460 { .match_flags = USB_DEVICE_ID_MATCH_INT_CLASS,
1461 .bInterfaceClass = USB_INTERFACE_CLASS_HID },
1462 { } /* Terminating entry */
1463};
1464
1465MODULE_DEVICE_TABLE (usb, hid_usb_ids);
1466
1467static struct usb_driver hid_driver = {
1468 .name = "usbhid",
Jiri Kosinac4c259b2009-09-15 16:27:45 +02001469 .probe = usbhid_probe,
1470 .disconnect = usbhid_disconnect,
Jiri Kosina0f6f1402009-01-19 09:17:18 +01001471#ifdef CONFIG_PM
Linus Torvalds1da177e2005-04-16 15:20:36 -07001472 .suspend = hid_suspend,
1473 .resume = hid_resume,
Oliver Neukum378a0ed2009-02-18 11:46:45 +01001474 .reset_resume = hid_reset_resume,
Jiri Kosina0f6f1402009-01-19 09:17:18 +01001475#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001476 .pre_reset = hid_pre_reset,
1477 .post_reset = hid_post_reset,
1478 .id_table = hid_usb_ids,
Oliver Neukum933e3182007-07-11 14:48:58 +02001479 .supports_autosuspend = 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001480};
1481
Jiri Slaby85cdaf52008-05-16 11:49:15 +02001482static const struct hid_device_id hid_usb_table[] = {
1483 { HID_USB_DEVICE(HID_ANY_ID, HID_ANY_ID) },
1484 { }
1485};
1486
Guillaume Chazarain8fe294c2010-09-12 21:32:35 +02001487struct usb_interface *usbhid_find_interface(int minor)
1488{
1489 return usb_find_interface(&hid_driver, minor);
1490}
1491
Jiri Slaby85cdaf52008-05-16 11:49:15 +02001492static struct hid_driver hid_usb_driver = {
1493 .name = "generic-usb",
1494 .id_table = hid_usb_table,
1495};
1496
Linus Torvalds1da177e2005-04-16 15:20:36 -07001497static int __init hid_init(void)
1498{
Oliver Neukum0361a282008-12-17 15:38:03 +01001499 int retval = -ENOMEM;
1500
Jiri Slaby85cdaf52008-05-16 11:49:15 +02001501 retval = hid_register_driver(&hid_usb_driver);
1502 if (retval)
1503 goto hid_register_fail;
Paul Walmsley876b9272007-04-19 14:56:12 +02001504 retval = usbhid_quirks_init(quirks_param);
1505 if (retval)
1506 goto usbhid_quirks_init_fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001507 retval = usb_register(&hid_driver);
1508 if (retval)
1509 goto usb_register_fail;
Jiri Kosinaccabcd22009-10-02 18:31:36 +02001510 printk(KERN_INFO KBUILD_MODNAME ": " DRIVER_DESC "\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001511
1512 return 0;
1513usb_register_fail:
Paul Walmsley876b9272007-04-19 14:56:12 +02001514 usbhid_quirks_exit();
1515usbhid_quirks_init_fail:
Jiri Slaby85cdaf52008-05-16 11:49:15 +02001516 hid_unregister_driver(&hid_usb_driver);
1517hid_register_fail:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001518 return retval;
1519}
1520
1521static void __exit hid_exit(void)
1522{
1523 usb_deregister(&hid_driver);
Paul Walmsley876b9272007-04-19 14:56:12 +02001524 usbhid_quirks_exit();
Jiri Slaby85cdaf52008-05-16 11:49:15 +02001525 hid_unregister_driver(&hid_usb_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001526}
1527
1528module_init(hid_init);
1529module_exit(hid_exit);
1530
Jiri Kosina88adb722009-10-02 18:29:34 +02001531MODULE_AUTHOR("Andreas Gal");
1532MODULE_AUTHOR("Vojtech Pavlik");
1533MODULE_AUTHOR("Jiri Kosina");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001534MODULE_DESCRIPTION(DRIVER_DESC);
1535MODULE_LICENSE(DRIVER_LICENSE);