Branch data Line data Source code
1 : : // SPDX-License-Identifier: GPL-2.0-or-later
2 : : /*
3 : : * USB HID support for Linux
4 : : *
5 : : * Copyright (c) 1999 Andreas Gal
6 : : * Copyright (c) 2000-2005 Vojtech Pavlik <vojtech@suse.cz>
7 : : * Copyright (c) 2005 Michael Haboustak <mike-@cinci.rr.com> for Concept2, Inc
8 : : * Copyright (c) 2007-2008 Oliver Neukum
9 : : * Copyright (c) 2006-2010 Jiri Kosina
10 : : */
11 : :
12 : : /*
13 : : */
14 : :
15 : : #include <linux/module.h>
16 : : #include <linux/slab.h>
17 : : #include <linux/init.h>
18 : : #include <linux/kernel.h>
19 : : #include <linux/list.h>
20 : : #include <linux/mm.h>
21 : : #include <linux/mutex.h>
22 : : #include <linux/spinlock.h>
23 : : #include <asm/unaligned.h>
24 : : #include <asm/byteorder.h>
25 : : #include <linux/input.h>
26 : : #include <linux/wait.h>
27 : : #include <linux/workqueue.h>
28 : : #include <linux/string.h>
29 : :
30 : : #include <linux/usb.h>
31 : :
32 : : #include <linux/hid.h>
33 : : #include <linux/hiddev.h>
34 : : #include <linux/hid-debug.h>
35 : : #include <linux/hidraw.h>
36 : : #include "usbhid.h"
37 : :
38 : : /*
39 : : * Version Information
40 : : */
41 : :
42 : : #define DRIVER_DESC "USB HID core driver"
43 : :
44 : : /*
45 : : * Module parameters.
46 : : */
47 : :
48 : : static unsigned int hid_mousepoll_interval;
49 : : module_param_named(mousepoll, hid_mousepoll_interval, uint, 0644);
50 : : MODULE_PARM_DESC(mousepoll, "Polling interval of mice");
51 : :
52 : : static unsigned int hid_jspoll_interval;
53 : : module_param_named(jspoll, hid_jspoll_interval, uint, 0644);
54 : : MODULE_PARM_DESC(jspoll, "Polling interval of joysticks");
55 : :
56 : : static unsigned int hid_kbpoll_interval;
57 : : module_param_named(kbpoll, hid_kbpoll_interval, uint, 0644);
58 : : MODULE_PARM_DESC(kbpoll, "Polling interval of keyboards");
59 : :
60 : : static unsigned int ignoreled;
61 : : module_param_named(ignoreled, ignoreled, uint, 0644);
62 : : MODULE_PARM_DESC(ignoreled, "Autosuspend with active leds");
63 : :
64 : : /* Quirks specified at module load time */
65 : : static char *quirks_param[MAX_USBHID_BOOT_QUIRKS];
66 : : module_param_array_named(quirks, quirks_param, charp, NULL, 0444);
67 : : MODULE_PARM_DESC(quirks, "Add/modify USB HID quirks by specifying "
68 : : " quirks=vendorID:productID:quirks"
69 : : " where vendorID, productID, and quirks are all in"
70 : : " 0x-prefixed hex");
71 : : /*
72 : : * Input submission and I/O error handler.
73 : : */
74 : : static void hid_io_error(struct hid_device *hid);
75 : : static int hid_submit_out(struct hid_device *hid);
76 : : static int hid_submit_ctrl(struct hid_device *hid);
77 : : static void hid_cancel_delayed_stuff(struct usbhid_device *usbhid);
78 : :
79 : : /* Start up the input URB */
80 : : static int hid_start_in(struct hid_device *hid)
81 : : {
82 : : unsigned long flags;
83 : : int rc = 0;
84 : : struct usbhid_device *usbhid = hid->driver_data;
85 : :
86 : : spin_lock_irqsave(&usbhid->lock, flags);
87 : : if (test_bit(HID_IN_POLLING, &usbhid->iofl) &&
88 : : !test_bit(HID_DISCONNECTED, &usbhid->iofl) &&
89 : : !test_bit(HID_SUSPENDED, &usbhid->iofl) &&
90 : : !test_and_set_bit(HID_IN_RUNNING, &usbhid->iofl)) {
91 : : rc = usb_submit_urb(usbhid->urbin, GFP_ATOMIC);
92 : : if (rc != 0) {
93 : : clear_bit(HID_IN_RUNNING, &usbhid->iofl);
94 : : if (rc == -ENOSPC)
95 : : set_bit(HID_NO_BANDWIDTH, &usbhid->iofl);
96 : : } else {
97 : : clear_bit(HID_NO_BANDWIDTH, &usbhid->iofl);
98 : : }
99 : : }
100 : : spin_unlock_irqrestore(&usbhid->lock, flags);
101 : : return rc;
102 : : }
103 : :
104 : : /* I/O retry timer routine */
105 : 0 : static void hid_retry_timeout(struct timer_list *t)
106 : : {
107 : 0 : struct usbhid_device *usbhid = from_timer(usbhid, t, io_retry);
108 : 0 : struct hid_device *hid = usbhid->hid;
109 : :
110 : 0 : dev_dbg(&usbhid->intf->dev, "retrying intr urb\n");
111 [ # # ]: 0 : if (hid_start_in(hid))
112 : 0 : hid_io_error(hid);
113 : 0 : }
114 : :
115 : : /* Workqueue routine to reset the device or clear a halt */
116 : 0 : static void hid_reset(struct work_struct *work)
117 : : {
118 : 0 : struct usbhid_device *usbhid =
119 : 0 : container_of(work, struct usbhid_device, reset_work);
120 : 0 : struct hid_device *hid = usbhid->hid;
121 : 0 : int rc;
122 : :
123 [ # # ]: 0 : if (test_bit(HID_CLEAR_HALT, &usbhid->iofl)) {
124 : 0 : dev_dbg(&usbhid->intf->dev, "clear halt\n");
125 : 0 : rc = usb_clear_halt(hid_to_usb_dev(hid), usbhid->urbin->pipe);
126 : 0 : clear_bit(HID_CLEAR_HALT, &usbhid->iofl);
127 [ # # ]: 0 : if (rc == 0) {
128 : 0 : hid_start_in(hid);
129 : : } else {
130 : 0 : dev_dbg(&usbhid->intf->dev,
131 : : "clear-halt failed: %d\n", rc);
132 : 0 : set_bit(HID_RESET_PENDING, &usbhid->iofl);
133 : : }
134 : : }
135 : :
136 [ # # ]: 0 : if (test_bit(HID_RESET_PENDING, &usbhid->iofl)) {
137 : 0 : dev_dbg(&usbhid->intf->dev, "resetting device\n");
138 : 0 : usb_queue_reset_device(usbhid->intf);
139 : : }
140 : 0 : }
141 : :
142 : : /* Main I/O error handler */
143 : : static void hid_io_error(struct hid_device *hid)
144 : : {
145 : : unsigned long flags;
146 : : struct usbhid_device *usbhid = hid->driver_data;
147 : :
148 : : spin_lock_irqsave(&usbhid->lock, flags);
149 : :
150 : : /* Stop when disconnected */
151 : : if (test_bit(HID_DISCONNECTED, &usbhid->iofl))
152 : : goto done;
153 : :
154 : : /* If it has been a while since the last error, we'll assume
155 : : * this a brand new error and reset the retry timeout. */
156 : : if (time_after(jiffies, usbhid->stop_retry + HZ/2))
157 : : usbhid->retry_delay = 0;
158 : :
159 : : /* When an error occurs, retry at increasing intervals */
160 : : if (usbhid->retry_delay == 0) {
161 : : usbhid->retry_delay = 13; /* Then 26, 52, 104, 104, ... */
162 : : usbhid->stop_retry = jiffies + msecs_to_jiffies(1000);
163 : : } else if (usbhid->retry_delay < 100)
164 : : usbhid->retry_delay *= 2;
165 : :
166 : : if (time_after(jiffies, usbhid->stop_retry)) {
167 : :
168 : : /* Retries failed, so do a port reset unless we lack bandwidth*/
169 : : if (!test_bit(HID_NO_BANDWIDTH, &usbhid->iofl)
170 : : && !test_and_set_bit(HID_RESET_PENDING, &usbhid->iofl)) {
171 : :
172 : : schedule_work(&usbhid->reset_work);
173 : : goto done;
174 : : }
175 : : }
176 : :
177 : : mod_timer(&usbhid->io_retry,
178 : : jiffies + msecs_to_jiffies(usbhid->retry_delay));
179 : : done:
180 : : spin_unlock_irqrestore(&usbhid->lock, flags);
181 : : }
182 : :
183 : 0 : static void usbhid_mark_busy(struct usbhid_device *usbhid)
184 : : {
185 : 0 : struct usb_interface *intf = usbhid->intf;
186 : :
187 : 0 : usb_mark_last_busy(interface_to_usbdev(intf));
188 : : }
189 : :
190 : 0 : static int usbhid_restart_out_queue(struct usbhid_device *usbhid)
191 : : {
192 [ # # ]: 0 : struct hid_device *hid = usb_get_intfdata(usbhid->intf);
193 : 0 : int kicked;
194 : 0 : int r;
195 : :
196 [ # # # # : 0 : if (!hid || test_bit(HID_RESET_PENDING, &usbhid->iofl) ||
# # ]
197 : : test_bit(HID_SUSPENDED, &usbhid->iofl))
198 : 0 : return 0;
199 : :
200 [ # # ]: 0 : if ((kicked = (usbhid->outhead != usbhid->outtail))) {
201 : 0 : hid_dbg(hid, "Kicking head %d tail %d", usbhid->outhead, usbhid->outtail);
202 : :
203 : : /* Try to wake up from autosuspend... */
204 : 0 : r = usb_autopm_get_interface_async(usbhid->intf);
205 [ # # ]: 0 : if (r < 0)
206 : : return r;
207 : :
208 : : /*
209 : : * If still suspended, don't submit. Submission will
210 : : * occur if/when resume drains the queue.
211 : : */
212 [ # # ]: 0 : if (test_bit(HID_SUSPENDED, &usbhid->iofl)) {
213 : 0 : usb_autopm_put_interface_no_suspend(usbhid->intf);
214 : 0 : return r;
215 : : }
216 : :
217 : : /* Asynchronously flush queue. */
218 : 0 : set_bit(HID_OUT_RUNNING, &usbhid->iofl);
219 [ # # ]: 0 : if (hid_submit_out(hid)) {
220 : 0 : clear_bit(HID_OUT_RUNNING, &usbhid->iofl);
221 : 0 : usb_autopm_put_interface_async(usbhid->intf);
222 : : }
223 : 0 : wake_up(&usbhid->wait);
224 : : }
225 : : return kicked;
226 : : }
227 : :
228 : 0 : static int usbhid_restart_ctrl_queue(struct usbhid_device *usbhid)
229 : : {
230 [ # # ]: 0 : struct hid_device *hid = usb_get_intfdata(usbhid->intf);
231 : 0 : int kicked;
232 : 0 : int r;
233 : :
234 [ # # ]: 0 : WARN_ON(hid == NULL);
235 [ # # # # : 0 : if (!hid || test_bit(HID_RESET_PENDING, &usbhid->iofl) ||
# # ]
236 : : test_bit(HID_SUSPENDED, &usbhid->iofl))
237 : 0 : return 0;
238 : :
239 [ # # ]: 0 : if ((kicked = (usbhid->ctrlhead != usbhid->ctrltail))) {
240 : 0 : hid_dbg(hid, "Kicking head %d tail %d", usbhid->ctrlhead, usbhid->ctrltail);
241 : :
242 : : /* Try to wake up from autosuspend... */
243 : 0 : r = usb_autopm_get_interface_async(usbhid->intf);
244 [ # # ]: 0 : if (r < 0)
245 : : return r;
246 : :
247 : : /*
248 : : * If still suspended, don't submit. Submission will
249 : : * occur if/when resume drains the queue.
250 : : */
251 [ # # ]: 0 : if (test_bit(HID_SUSPENDED, &usbhid->iofl)) {
252 : 0 : usb_autopm_put_interface_no_suspend(usbhid->intf);
253 : 0 : return r;
254 : : }
255 : :
256 : : /* Asynchronously flush queue. */
257 : 0 : set_bit(HID_CTRL_RUNNING, &usbhid->iofl);
258 [ # # ]: 0 : if (hid_submit_ctrl(hid)) {
259 : 0 : clear_bit(HID_CTRL_RUNNING, &usbhid->iofl);
260 : 0 : usb_autopm_put_interface_async(usbhid->intf);
261 : : }
262 : 0 : wake_up(&usbhid->wait);
263 : : }
264 : : return kicked;
265 : : }
266 : :
267 : : /*
268 : : * Input interrupt completion handler.
269 : : */
270 : :
271 : 0 : static void hid_irq_in(struct urb *urb)
272 : : {
273 : 0 : struct hid_device *hid = urb->context;
274 : 0 : struct usbhid_device *usbhid = hid->driver_data;
275 : 0 : int status;
276 : :
277 [ # # # # : 0 : switch (urb->status) {
# ]
278 : 0 : case 0: /* success */
279 : 0 : usbhid->retry_delay = 0;
280 [ # # ]: 0 : if (!test_bit(HID_OPENED, &usbhid->iofl))
281 : : break;
282 : 0 : usbhid_mark_busy(usbhid);
283 [ # # ]: 0 : if (!test_bit(HID_RESUME_RUNNING, &usbhid->iofl)) {
284 : 0 : hid_input_report(urb->context, HID_INPUT_REPORT,
285 : 0 : urb->transfer_buffer,
286 : : urb->actual_length, 1);
287 : : /*
288 : : * autosuspend refused while keys are pressed
289 : : * because most keyboards don't wake up when
290 : : * a key is released
291 : : */
292 [ # # ]: 0 : if (hid_check_keys_pressed(hid))
293 : 0 : set_bit(HID_KEYS_PRESSED, &usbhid->iofl);
294 : : else
295 : 0 : clear_bit(HID_KEYS_PRESSED, &usbhid->iofl);
296 : : }
297 : : break;
298 : 0 : case -EPIPE: /* stall */
299 : 0 : usbhid_mark_busy(usbhid);
300 : 0 : clear_bit(HID_IN_RUNNING, &usbhid->iofl);
301 : 0 : set_bit(HID_CLEAR_HALT, &usbhid->iofl);
302 : 0 : schedule_work(&usbhid->reset_work);
303 : : return;
304 : 0 : case -ECONNRESET: /* unlink */
305 : : case -ENOENT:
306 : : case -ESHUTDOWN: /* unplug */
307 : 0 : clear_bit(HID_IN_RUNNING, &usbhid->iofl);
308 : 0 : return;
309 : 0 : case -EILSEQ: /* protocol error or unplug */
310 : : case -EPROTO: /* protocol error or unplug */
311 : : case -ETIME: /* protocol error or unplug */
312 : : case -ETIMEDOUT: /* Should never happen, but... */
313 : 0 : usbhid_mark_busy(usbhid);
314 : 0 : clear_bit(HID_IN_RUNNING, &usbhid->iofl);
315 : 0 : hid_io_error(hid);
316 : 0 : return;
317 : 0 : default: /* error */
318 : 0 : hid_warn(urb->dev, "input irq status %d received\n",
319 : : urb->status);
320 : : }
321 : :
322 : 0 : status = usb_submit_urb(urb, GFP_ATOMIC);
323 [ # # ]: 0 : if (status) {
324 : 0 : clear_bit(HID_IN_RUNNING, &usbhid->iofl);
325 [ # # ]: 0 : if (status != -EPERM) {
326 : 0 : hid_err(hid, "can't resubmit intr, %s-%s/input%d, status %d\n",
327 : : hid_to_usb_dev(hid)->bus->bus_name,
328 : : hid_to_usb_dev(hid)->devpath,
329 : : usbhid->ifnum, status);
330 : 0 : hid_io_error(hid);
331 : : }
332 : : }
333 : : }
334 : :
335 : 0 : static int hid_submit_out(struct hid_device *hid)
336 : : {
337 : 0 : struct hid_report *report;
338 : 0 : char *raw_report;
339 : 0 : struct usbhid_device *usbhid = hid->driver_data;
340 : 0 : int r;
341 : :
342 : 0 : report = usbhid->out[usbhid->outtail].report;
343 : 0 : raw_report = usbhid->out[usbhid->outtail].raw_report;
344 : :
345 [ # # ]: 0 : usbhid->urbout->transfer_buffer_length = hid_report_len(report);
346 : 0 : usbhid->urbout->dev = hid_to_usb_dev(hid);
347 [ # # ]: 0 : if (raw_report) {
348 : 0 : memcpy(usbhid->outbuf, raw_report,
349 : 0 : usbhid->urbout->transfer_buffer_length);
350 : 0 : kfree(raw_report);
351 : 0 : usbhid->out[usbhid->outtail].raw_report = NULL;
352 : : }
353 : :
354 [ # # ]: 0 : dbg_hid("submitting out urb\n");
355 : :
356 : 0 : r = usb_submit_urb(usbhid->urbout, GFP_ATOMIC);
357 [ # # ]: 0 : if (r < 0) {
358 : 0 : hid_err(hid, "usb_submit_urb(out) failed: %d\n", r);
359 : 0 : return r;
360 : : }
361 : 0 : usbhid->last_out = jiffies;
362 : 0 : return 0;
363 : : }
364 : :
365 : 0 : static int hid_submit_ctrl(struct hid_device *hid)
366 : : {
367 : 0 : struct hid_report *report;
368 : 0 : unsigned char dir;
369 : 0 : char *raw_report;
370 : 0 : int len, r;
371 : 0 : struct usbhid_device *usbhid = hid->driver_data;
372 : :
373 : 0 : report = usbhid->ctrl[usbhid->ctrltail].report;
374 : 0 : raw_report = usbhid->ctrl[usbhid->ctrltail].raw_report;
375 : 0 : dir = usbhid->ctrl[usbhid->ctrltail].dir;
376 : :
377 : 0 : len = ((report->size - 1) >> 3) + 1 + (report->id > 0);
378 [ # # ]: 0 : if (dir == USB_DIR_OUT) {
379 [ # # ]: 0 : usbhid->urbctrl->pipe = usb_sndctrlpipe(hid_to_usb_dev(hid), 0);
380 : 0 : usbhid->urbctrl->transfer_buffer_length = len;
381 [ # # ]: 0 : if (raw_report) {
382 : 0 : memcpy(usbhid->ctrlbuf, raw_report, len);
383 : 0 : kfree(raw_report);
384 : 0 : usbhid->ctrl[usbhid->ctrltail].raw_report = NULL;
385 : : }
386 : : } else {
387 : 0 : int maxpacket, padlen;
388 : :
389 [ # # ]: 0 : usbhid->urbctrl->pipe = usb_rcvctrlpipe(hid_to_usb_dev(hid), 0);
390 : 0 : maxpacket = usb_maxpacket(hid_to_usb_dev(hid),
391 [ # # ]: 0 : usbhid->urbctrl->pipe, 0);
392 [ # # ]: 0 : if (maxpacket > 0) {
393 : 0 : padlen = DIV_ROUND_UP(len, maxpacket);
394 : 0 : padlen *= maxpacket;
395 [ # # ]: 0 : if (padlen > usbhid->bufsize)
396 : 0 : padlen = usbhid->bufsize;
397 : : } else
398 : : padlen = 0;
399 : 0 : usbhid->urbctrl->transfer_buffer_length = padlen;
400 : : }
401 : 0 : usbhid->urbctrl->dev = hid_to_usb_dev(hid);
402 : :
403 : 0 : usbhid->cr->bRequestType = USB_TYPE_CLASS | USB_RECIP_INTERFACE | dir;
404 [ # # ]: 0 : usbhid->cr->bRequest = (dir == USB_DIR_OUT) ? HID_REQ_SET_REPORT :
405 : : HID_REQ_GET_REPORT;
406 : 0 : usbhid->cr->wValue = cpu_to_le16(((report->type + 1) << 8) |
407 : : report->id);
408 : 0 : usbhid->cr->wIndex = cpu_to_le16(usbhid->ifnum);
409 : 0 : usbhid->cr->wLength = cpu_to_le16(len);
410 : :
411 [ # # # # ]: 0 : dbg_hid("submitting ctrl urb: %s wValue=0x%04x wIndex=0x%04x wLength=%u\n",
412 : : usbhid->cr->bRequest == HID_REQ_SET_REPORT ? "Set_Report" :
413 : : "Get_Report",
414 : : usbhid->cr->wValue, usbhid->cr->wIndex, usbhid->cr->wLength);
415 : :
416 : 0 : r = usb_submit_urb(usbhid->urbctrl, GFP_ATOMIC);
417 [ # # ]: 0 : if (r < 0) {
418 : 0 : hid_err(hid, "usb_submit_urb(ctrl) failed: %d\n", r);
419 : 0 : return r;
420 : : }
421 : 0 : usbhid->last_ctrl = jiffies;
422 : 0 : return 0;
423 : : }
424 : :
425 : : /*
426 : : * Output interrupt completion handler.
427 : : */
428 : :
429 : 0 : static void hid_irq_out(struct urb *urb)
430 : : {
431 : 0 : struct hid_device *hid = urb->context;
432 : 0 : struct usbhid_device *usbhid = hid->driver_data;
433 : 0 : unsigned long flags;
434 : 0 : int unplug = 0;
435 : :
436 [ # # # ]: 0 : switch (urb->status) {
437 : : case 0: /* success */
438 : : break;
439 : 0 : case -ESHUTDOWN: /* unplug */
440 : 0 : unplug = 1;
441 : : case -EILSEQ: /* protocol error or unplug */
442 : : case -EPROTO: /* protocol error or unplug */
443 : : case -ECONNRESET: /* unlink */
444 : : case -ENOENT:
445 : : break;
446 : 0 : default: /* error */
447 : 0 : hid_warn(urb->dev, "output irq status %d received\n",
448 : : urb->status);
449 : : }
450 : :
451 : 0 : spin_lock_irqsave(&usbhid->lock, flags);
452 : :
453 [ # # ]: 0 : if (unplug) {
454 : 0 : usbhid->outtail = usbhid->outhead;
455 : : } else {
456 : 0 : usbhid->outtail = (usbhid->outtail + 1) & (HID_OUTPUT_FIFO_SIZE - 1);
457 : :
458 [ # # # # ]: 0 : if (usbhid->outhead != usbhid->outtail &&
459 : 0 : hid_submit_out(hid) == 0) {
460 : : /* Successfully submitted next urb in queue */
461 : 0 : spin_unlock_irqrestore(&usbhid->lock, flags);
462 : 0 : return;
463 : : }
464 : : }
465 : :
466 : 0 : clear_bit(HID_OUT_RUNNING, &usbhid->iofl);
467 : 0 : spin_unlock_irqrestore(&usbhid->lock, flags);
468 : 0 : usb_autopm_put_interface_async(usbhid->intf);
469 : 0 : wake_up(&usbhid->wait);
470 : : }
471 : :
472 : : /*
473 : : * Control pipe completion handler.
474 : : */
475 : :
476 : 0 : static void hid_ctrl(struct urb *urb)
477 : : {
478 : 0 : struct hid_device *hid = urb->context;
479 : 0 : struct usbhid_device *usbhid = hid->driver_data;
480 : 0 : unsigned long flags;
481 : 0 : int unplug = 0, status = urb->status;
482 : :
483 [ # # # # ]: 0 : switch (status) {
484 : 0 : case 0: /* success */
485 [ # # ]: 0 : if (usbhid->ctrl[usbhid->ctrltail].dir == USB_DIR_IN)
486 : 0 : hid_input_report(urb->context,
487 : 0 : usbhid->ctrl[usbhid->ctrltail].report->type,
488 : 0 : urb->transfer_buffer, urb->actual_length, 0);
489 : : break;
490 : 0 : case -ESHUTDOWN: /* unplug */
491 : 0 : unplug = 1;
492 : : case -EILSEQ: /* protocol error or unplug */
493 : : case -EPROTO: /* protocol error or unplug */
494 : : case -ECONNRESET: /* unlink */
495 : : case -ENOENT:
496 : : case -EPIPE: /* report not available */
497 : : break;
498 : 0 : default: /* error */
499 : 0 : hid_warn(urb->dev, "ctrl urb status %d received\n", status);
500 : : }
501 : :
502 : 0 : spin_lock_irqsave(&usbhid->lock, flags);
503 : :
504 [ # # ]: 0 : if (unplug) {
505 : 0 : usbhid->ctrltail = usbhid->ctrlhead;
506 : : } else {
507 : 0 : usbhid->ctrltail = (usbhid->ctrltail + 1) & (HID_CONTROL_FIFO_SIZE - 1);
508 : :
509 [ # # # # ]: 0 : if (usbhid->ctrlhead != usbhid->ctrltail &&
510 : 0 : hid_submit_ctrl(hid) == 0) {
511 : : /* Successfully submitted next urb in queue */
512 : 0 : spin_unlock_irqrestore(&usbhid->lock, flags);
513 : 0 : return;
514 : : }
515 : : }
516 : :
517 : 0 : clear_bit(HID_CTRL_RUNNING, &usbhid->iofl);
518 : 0 : spin_unlock_irqrestore(&usbhid->lock, flags);
519 : 0 : usb_autopm_put_interface_async(usbhid->intf);
520 : 0 : wake_up(&usbhid->wait);
521 : : }
522 : :
523 : 0 : static void __usbhid_submit_report(struct hid_device *hid, struct hid_report *report,
524 : : unsigned char dir)
525 : : {
526 : 0 : int head;
527 : 0 : struct usbhid_device *usbhid = hid->driver_data;
528 : :
529 [ # # # # : 0 : if (((hid->quirks & HID_QUIRK_NOGET) && dir == USB_DIR_IN) ||
# # ]
530 : 0 : test_bit(HID_DISCONNECTED, &usbhid->iofl))
531 : 0 : return;
532 : :
533 [ # # # # : 0 : if (usbhid->urbout && dir == USB_DIR_OUT && report->type == HID_OUTPUT_REPORT) {
# # ]
534 [ # # ]: 0 : if ((head = (usbhid->outhead + 1) & (HID_OUTPUT_FIFO_SIZE - 1)) == usbhid->outtail) {
535 : 0 : hid_warn(hid, "output queue full\n");
536 : 0 : return;
537 : : }
538 : :
539 : 0 : usbhid->out[usbhid->outhead].raw_report = hid_alloc_report_buf(report, GFP_ATOMIC);
540 [ # # ]: 0 : if (!usbhid->out[usbhid->outhead].raw_report) {
541 : 0 : hid_warn(hid, "output queueing failed\n");
542 : 0 : return;
543 : : }
544 : 0 : hid_output_report(report, usbhid->out[usbhid->outhead].raw_report);
545 : 0 : usbhid->out[usbhid->outhead].report = report;
546 : 0 : usbhid->outhead = head;
547 : :
548 : : /* If the queue isn't running, restart it */
549 [ # # ]: 0 : if (!test_bit(HID_OUT_RUNNING, &usbhid->iofl)) {
550 : 0 : usbhid_restart_out_queue(usbhid);
551 : :
552 : : /* Otherwise see if an earlier request has timed out */
553 [ # # ]: 0 : } else if (time_after(jiffies, usbhid->last_out + HZ * 5)) {
554 : :
555 : : /* Prevent autosuspend following the unlink */
556 : 0 : usb_autopm_get_interface_no_resume(usbhid->intf);
557 : :
558 : : /*
559 : : * Prevent resubmission in case the URB completes
560 : : * before we can unlink it. We don't want to cancel
561 : : * the wrong transfer!
562 : : */
563 : 0 : usb_block_urb(usbhid->urbout);
564 : :
565 : : /* Drop lock to avoid deadlock if the callback runs */
566 : 0 : spin_unlock(&usbhid->lock);
567 : :
568 : 0 : usb_unlink_urb(usbhid->urbout);
569 : 0 : spin_lock(&usbhid->lock);
570 : 0 : usb_unblock_urb(usbhid->urbout);
571 : :
572 : : /* Unlink might have stopped the queue */
573 [ # # ]: 0 : if (!test_bit(HID_OUT_RUNNING, &usbhid->iofl))
574 : 0 : usbhid_restart_out_queue(usbhid);
575 : :
576 : : /* Now we can allow autosuspend again */
577 : 0 : usb_autopm_put_interface_async(usbhid->intf);
578 : : }
579 : 0 : return;
580 : : }
581 : :
582 [ # # ]: 0 : if ((head = (usbhid->ctrlhead + 1) & (HID_CONTROL_FIFO_SIZE - 1)) == usbhid->ctrltail) {
583 : 0 : hid_warn(hid, "control queue full\n");
584 : 0 : return;
585 : : }
586 : :
587 [ # # ]: 0 : if (dir == USB_DIR_OUT) {
588 : 0 : usbhid->ctrl[usbhid->ctrlhead].raw_report = hid_alloc_report_buf(report, GFP_ATOMIC);
589 [ # # ]: 0 : if (!usbhid->ctrl[usbhid->ctrlhead].raw_report) {
590 : 0 : hid_warn(hid, "control queueing failed\n");
591 : 0 : return;
592 : : }
593 : 0 : hid_output_report(report, usbhid->ctrl[usbhid->ctrlhead].raw_report);
594 : : }
595 : 0 : usbhid->ctrl[usbhid->ctrlhead].report = report;
596 : 0 : usbhid->ctrl[usbhid->ctrlhead].dir = dir;
597 : 0 : usbhid->ctrlhead = head;
598 : :
599 : : /* If the queue isn't running, restart it */
600 [ # # ]: 0 : if (!test_bit(HID_CTRL_RUNNING, &usbhid->iofl)) {
601 : 0 : usbhid_restart_ctrl_queue(usbhid);
602 : :
603 : : /* Otherwise see if an earlier request has timed out */
604 [ # # ]: 0 : } else if (time_after(jiffies, usbhid->last_ctrl + HZ * 5)) {
605 : :
606 : : /* Prevent autosuspend following the unlink */
607 : 0 : usb_autopm_get_interface_no_resume(usbhid->intf);
608 : :
609 : : /*
610 : : * Prevent resubmission in case the URB completes
611 : : * before we can unlink it. We don't want to cancel
612 : : * the wrong transfer!
613 : : */
614 : 0 : usb_block_urb(usbhid->urbctrl);
615 : :
616 : : /* Drop lock to avoid deadlock if the callback runs */
617 : 0 : spin_unlock(&usbhid->lock);
618 : :
619 : 0 : usb_unlink_urb(usbhid->urbctrl);
620 : 0 : spin_lock(&usbhid->lock);
621 : 0 : usb_unblock_urb(usbhid->urbctrl);
622 : :
623 : : /* Unlink might have stopped the queue */
624 [ # # ]: 0 : if (!test_bit(HID_CTRL_RUNNING, &usbhid->iofl))
625 : 0 : usbhid_restart_ctrl_queue(usbhid);
626 : :
627 : : /* Now we can allow autosuspend again */
628 : 0 : usb_autopm_put_interface_async(usbhid->intf);
629 : : }
630 : : }
631 : :
632 : 0 : static void usbhid_submit_report(struct hid_device *hid, struct hid_report *report, unsigned char dir)
633 : : {
634 : 0 : struct usbhid_device *usbhid = hid->driver_data;
635 : 0 : unsigned long flags;
636 : :
637 : 0 : spin_lock_irqsave(&usbhid->lock, flags);
638 : 0 : __usbhid_submit_report(hid, report, dir);
639 : 0 : spin_unlock_irqrestore(&usbhid->lock, flags);
640 : 0 : }
641 : :
642 : 0 : static int usbhid_wait_io(struct hid_device *hid)
643 : : {
644 : 0 : struct usbhid_device *usbhid = hid->driver_data;
645 : :
646 [ # # # # : 0 : if (!wait_event_timeout(usbhid->wait,
# # # # #
# # # #
# ]
647 : : (!test_bit(HID_CTRL_RUNNING, &usbhid->iofl) &&
648 : : !test_bit(HID_OUT_RUNNING, &usbhid->iofl)),
649 : : 10*HZ)) {
650 [ # # ]: 0 : dbg_hid("timeout waiting for ctrl or out queue to clear\n");
651 : 0 : return -1;
652 : : }
653 : :
654 : : return 0;
655 : : }
656 : :
657 : 0 : static int hid_set_idle(struct usb_device *dev, int ifnum, int report, int idle)
658 : : {
659 : 0 : return usb_control_msg(dev, usb_sndctrlpipe(dev, 0),
660 : 0 : HID_REQ_SET_IDLE, USB_TYPE_CLASS | USB_RECIP_INTERFACE, (idle << 8) | report,
661 : : ifnum, NULL, 0, USB_CTRL_SET_TIMEOUT);
662 : : }
663 : :
664 : 0 : static int hid_get_class_descriptor(struct usb_device *dev, int ifnum,
665 : : unsigned char type, void *buf, int size)
666 : : {
667 : 0 : int result, retries = 4;
668 : :
669 : 0 : memset(buf, 0, size);
670 : :
671 : 0 : do {
672 : 0 : result = usb_control_msg(dev, usb_rcvctrlpipe(dev, 0),
673 : : USB_REQ_GET_DESCRIPTOR, USB_RECIP_INTERFACE | USB_DIR_IN,
674 : 0 : (type << 8), ifnum, buf, size, USB_CTRL_GET_TIMEOUT);
675 : 0 : retries--;
676 [ # # ]: 0 : } while (result < size && retries);
677 : 0 : return result;
678 : : }
679 : :
680 : 0 : static int usbhid_open(struct hid_device *hid)
681 : : {
682 : 0 : struct usbhid_device *usbhid = hid->driver_data;
683 : 0 : int res;
684 : :
685 : 0 : set_bit(HID_OPENED, &usbhid->iofl);
686 : :
687 [ # # ]: 0 : if (hid->quirks & HID_QUIRK_ALWAYS_POLL)
688 : : return 0;
689 : :
690 : 0 : res = usb_autopm_get_interface(usbhid->intf);
691 : : /* the device must be awake to reliably request remote wakeup */
692 [ # # ]: 0 : if (res < 0) {
693 : 0 : clear_bit(HID_OPENED, &usbhid->iofl);
694 : 0 : return -EIO;
695 : : }
696 : :
697 : 0 : usbhid->intf->needs_remote_wakeup = 1;
698 : :
699 : 0 : set_bit(HID_RESUME_RUNNING, &usbhid->iofl);
700 : 0 : set_bit(HID_IN_POLLING, &usbhid->iofl);
701 : :
702 : 0 : res = hid_start_in(hid);
703 [ # # ]: 0 : if (res) {
704 [ # # ]: 0 : if (res != -ENOSPC) {
705 : 0 : hid_io_error(hid);
706 : 0 : res = 0;
707 : : } else {
708 : : /* no use opening if resources are insufficient */
709 : 0 : res = -EBUSY;
710 : 0 : clear_bit(HID_OPENED, &usbhid->iofl);
711 : 0 : clear_bit(HID_IN_POLLING, &usbhid->iofl);
712 : 0 : usbhid->intf->needs_remote_wakeup = 0;
713 : : }
714 : : }
715 : :
716 : 0 : usb_autopm_put_interface(usbhid->intf);
717 : :
718 : : /*
719 : : * In case events are generated while nobody was listening,
720 : : * some are released when the device is re-opened.
721 : : * Wait 50 msec for the queue to empty before allowing events
722 : : * to go through hid.
723 : : */
724 [ # # ]: 0 : if (res == 0)
725 : 0 : msleep(50);
726 : :
727 : 0 : clear_bit(HID_RESUME_RUNNING, &usbhid->iofl);
728 : 0 : return res;
729 : : }
730 : :
731 : 0 : static void usbhid_close(struct hid_device *hid)
732 : : {
733 : 0 : struct usbhid_device *usbhid = hid->driver_data;
734 : :
735 : : /*
736 : : * Make sure we don't restart data acquisition due to
737 : : * a resumption we no longer care about by avoiding racing
738 : : * with hid_start_in().
739 : : */
740 : 0 : spin_lock_irq(&usbhid->lock);
741 : 0 : clear_bit(HID_OPENED, &usbhid->iofl);
742 [ # # ]: 0 : if (!(hid->quirks & HID_QUIRK_ALWAYS_POLL))
743 : 0 : clear_bit(HID_IN_POLLING, &usbhid->iofl);
744 : 0 : spin_unlock_irq(&usbhid->lock);
745 : :
746 [ # # ]: 0 : if (hid->quirks & HID_QUIRK_ALWAYS_POLL)
747 : : return;
748 : :
749 : 0 : hid_cancel_delayed_stuff(usbhid);
750 : 0 : usb_kill_urb(usbhid->urbin);
751 : 0 : usbhid->intf->needs_remote_wakeup = 0;
752 : : }
753 : :
754 : : /*
755 : : * Initialize all reports
756 : : */
757 : :
758 : 0 : void usbhid_init_reports(struct hid_device *hid)
759 : : {
760 : 0 : struct hid_report *report;
761 : 0 : struct usbhid_device *usbhid = hid->driver_data;
762 : 0 : struct hid_report_enum *report_enum;
763 : 0 : int err, ret;
764 : :
765 : 0 : report_enum = &hid->report_enum[HID_INPUT_REPORT];
766 [ # # ]: 0 : list_for_each_entry(report, &report_enum->report_list, list)
767 : 0 : usbhid_submit_report(hid, report, USB_DIR_IN);
768 : :
769 : 0 : report_enum = &hid->report_enum[HID_FEATURE_REPORT];
770 [ # # ]: 0 : list_for_each_entry(report, &report_enum->report_list, list)
771 : 0 : usbhid_submit_report(hid, report, USB_DIR_IN);
772 : :
773 : 0 : err = 0;
774 : 0 : ret = usbhid_wait_io(hid);
775 [ # # ]: 0 : while (ret) {
776 : 0 : err |= ret;
777 [ # # ]: 0 : if (test_bit(HID_CTRL_RUNNING, &usbhid->iofl))
778 : 0 : usb_kill_urb(usbhid->urbctrl);
779 [ # # ]: 0 : if (test_bit(HID_OUT_RUNNING, &usbhid->iofl))
780 : 0 : usb_kill_urb(usbhid->urbout);
781 : 0 : ret = usbhid_wait_io(hid);
782 : : }
783 : :
784 [ # # ]: 0 : if (err)
785 : 0 : hid_warn(hid, "timeout initializing reports\n");
786 : 0 : }
787 : :
788 : : /*
789 : : * Reset LEDs which BIOS might have left on. For now, just NumLock (0x01).
790 : : */
791 : 0 : static int hid_find_field_early(struct hid_device *hid, unsigned int page,
792 : : unsigned int hid_code, struct hid_field **pfield)
793 : : {
794 : 0 : struct hid_report *report;
795 : 0 : struct hid_field *field;
796 : 0 : struct hid_usage *usage;
797 : 0 : int i, j;
798 : :
799 [ # # ]: 0 : list_for_each_entry(report, &hid->report_enum[HID_OUTPUT_REPORT].report_list, list) {
800 [ # # ]: 0 : for (i = 0; i < report->maxfield; i++) {
801 : 0 : field = report->field[i];
802 [ # # ]: 0 : for (j = 0; j < field->maxusage; j++) {
803 : 0 : usage = &field->usage[j];
804 [ # # ]: 0 : if ((usage->hid & HID_USAGE_PAGE) == page &&
805 [ # # ]: 0 : (usage->hid & 0xFFFF) == hid_code) {
806 : 0 : *pfield = field;
807 : 0 : return j;
808 : : }
809 : : }
810 : : }
811 : : }
812 : : return -1;
813 : : }
814 : :
815 : 0 : static void usbhid_set_leds(struct hid_device *hid)
816 : : {
817 : 0 : struct hid_field *field;
818 : 0 : int offset;
819 : :
820 [ # # ]: 0 : if ((offset = hid_find_field_early(hid, HID_UP_LED, 0x01, &field)) != -1) {
821 : 0 : hid_set_field(field, offset, 0);
822 : 0 : usbhid_submit_report(hid, field->report, USB_DIR_OUT);
823 : : }
824 : 0 : }
825 : :
826 : : /*
827 : : * Traverse the supplied list of reports and find the longest
828 : : */
829 : 0 : static void hid_find_max_report(struct hid_device *hid, unsigned int type,
830 : : unsigned int *max)
831 : : {
832 : 0 : struct hid_report *report;
833 : 0 : unsigned int size;
834 : :
835 [ # # # # : 0 : list_for_each_entry(report, &hid->report_enum[type].report_list, list) {
# # # # ]
836 : 0 : size = ((report->size - 1) >> 3) + 1 + hid->report_enum[type].numbered;
837 [ # # # # : 0 : if (*max < size)
# # ]
838 : 0 : *max = size;
839 : : }
840 : : }
841 : :
842 : : static int hid_alloc_buffers(struct usb_device *dev, struct hid_device *hid)
843 : : {
844 : : struct usbhid_device *usbhid = hid->driver_data;
845 : :
846 : : usbhid->inbuf = usb_alloc_coherent(dev, usbhid->bufsize, GFP_KERNEL,
847 : : &usbhid->inbuf_dma);
848 : : usbhid->outbuf = usb_alloc_coherent(dev, usbhid->bufsize, GFP_KERNEL,
849 : : &usbhid->outbuf_dma);
850 : : usbhid->cr = kmalloc(sizeof(*usbhid->cr), GFP_KERNEL);
851 : : usbhid->ctrlbuf = usb_alloc_coherent(dev, usbhid->bufsize, GFP_KERNEL,
852 : : &usbhid->ctrlbuf_dma);
853 : : if (!usbhid->inbuf || !usbhid->outbuf || !usbhid->cr ||
854 : : !usbhid->ctrlbuf)
855 : : return -1;
856 : :
857 : : return 0;
858 : : }
859 : :
860 : 0 : static int usbhid_get_raw_report(struct hid_device *hid,
861 : : unsigned char report_number, __u8 *buf, size_t count,
862 : : unsigned char report_type)
863 : : {
864 : 0 : struct usbhid_device *usbhid = hid->driver_data;
865 : 0 : struct usb_device *dev = hid_to_usb_dev(hid);
866 : 0 : struct usb_interface *intf = usbhid->intf;
867 : 0 : struct usb_host_interface *interface = intf->cur_altsetting;
868 : 0 : int skipped_report_id = 0;
869 : 0 : int ret;
870 : :
871 : : /* Byte 0 is the report number. Report data starts at byte 1.*/
872 : 0 : buf[0] = report_number;
873 [ # # ]: 0 : if (report_number == 0x0) {
874 : : /* Offset the return buffer by 1, so that the report ID
875 : : will remain in byte 0. */
876 : 0 : buf++;
877 : 0 : count--;
878 : 0 : skipped_report_id = 1;
879 : : }
880 : 0 : ret = usb_control_msg(dev, usb_rcvctrlpipe(dev, 0),
881 : : HID_REQ_GET_REPORT,
882 : : USB_DIR_IN | USB_TYPE_CLASS | USB_RECIP_INTERFACE,
883 : 0 : ((report_type + 1) << 8) | report_number,
884 : 0 : interface->desc.bInterfaceNumber, buf, count,
885 : : USB_CTRL_SET_TIMEOUT);
886 : :
887 : : /* count also the report id */
888 [ # # ]: 0 : if (ret > 0 && skipped_report_id)
889 : 0 : ret++;
890 : :
891 : 0 : return ret;
892 : : }
893 : :
894 : 0 : static int usbhid_set_raw_report(struct hid_device *hid, unsigned int reportnum,
895 : : __u8 *buf, size_t count, unsigned char rtype)
896 : : {
897 : 0 : struct usbhid_device *usbhid = hid->driver_data;
898 : 0 : struct usb_device *dev = hid_to_usb_dev(hid);
899 : 0 : struct usb_interface *intf = usbhid->intf;
900 : 0 : struct usb_host_interface *interface = intf->cur_altsetting;
901 : 0 : int ret, skipped_report_id = 0;
902 : :
903 : : /* Byte 0 is the report number. Report data starts at byte 1.*/
904 [ # # ]: 0 : if ((rtype == HID_OUTPUT_REPORT) &&
905 [ # # ]: 0 : (hid->quirks & HID_QUIRK_SKIP_OUTPUT_REPORT_ID))
906 : 0 : buf[0] = 0;
907 : : else
908 : 0 : buf[0] = reportnum;
909 : :
910 [ # # ]: 0 : if (buf[0] == 0x0) {
911 : : /* Don't send the Report ID */
912 : 0 : buf++;
913 : 0 : count--;
914 : 0 : skipped_report_id = 1;
915 : : }
916 : :
917 : 0 : ret = usb_control_msg(dev, usb_sndctrlpipe(dev, 0),
918 : : HID_REQ_SET_REPORT,
919 : : USB_DIR_OUT | USB_TYPE_CLASS | USB_RECIP_INTERFACE,
920 : 0 : ((rtype + 1) << 8) | reportnum,
921 : 0 : interface->desc.bInterfaceNumber, buf, count,
922 : : USB_CTRL_SET_TIMEOUT);
923 : : /* count also the report id, if this was a numbered report. */
924 [ # # ]: 0 : if (ret > 0 && skipped_report_id)
925 : 0 : ret++;
926 : :
927 : 0 : return ret;
928 : : }
929 : :
930 : 0 : static int usbhid_output_report(struct hid_device *hid, __u8 *buf, size_t count)
931 : : {
932 : 0 : struct usbhid_device *usbhid = hid->driver_data;
933 : 0 : struct usb_device *dev = hid_to_usb_dev(hid);
934 : 0 : int actual_length, skipped_report_id = 0, ret;
935 : :
936 [ # # ]: 0 : if (!usbhid->urbout)
937 : : return -ENOSYS;
938 : :
939 [ # # ]: 0 : if (buf[0] == 0x0) {
940 : : /* Don't send the Report ID */
941 : 0 : buf++;
942 : 0 : count--;
943 : 0 : skipped_report_id = 1;
944 : : }
945 : :
946 : 0 : ret = usb_interrupt_msg(dev, usbhid->urbout->pipe,
947 : : buf, count, &actual_length,
948 : : USB_CTRL_SET_TIMEOUT);
949 : : /* return the number of bytes transferred */
950 [ # # ]: 0 : if (ret == 0) {
951 : 0 : ret = actual_length;
952 : : /* count also the report id */
953 [ # # ]: 0 : if (skipped_report_id)
954 : 0 : ret++;
955 : : }
956 : :
957 : : return ret;
958 : : }
959 : :
960 : : static void hid_free_buffers(struct usb_device *dev, struct hid_device *hid)
961 : : {
962 : : struct usbhid_device *usbhid = hid->driver_data;
963 : :
964 : : usb_free_coherent(dev, usbhid->bufsize, usbhid->inbuf, usbhid->inbuf_dma);
965 : : usb_free_coherent(dev, usbhid->bufsize, usbhid->outbuf, usbhid->outbuf_dma);
966 : : kfree(usbhid->cr);
967 : : usb_free_coherent(dev, usbhid->bufsize, usbhid->ctrlbuf, usbhid->ctrlbuf_dma);
968 : : }
969 : :
970 : 0 : static int usbhid_parse(struct hid_device *hid)
971 : : {
972 : 0 : struct usb_interface *intf = to_usb_interface(hid->dev.parent);
973 : 0 : struct usb_host_interface *interface = intf->cur_altsetting;
974 : 0 : struct usb_device *dev = interface_to_usbdev (intf);
975 : 0 : struct hid_descriptor *hdesc;
976 : 0 : u32 quirks = 0;
977 : 0 : unsigned int rsize = 0;
978 : 0 : char *rdesc;
979 : 0 : int ret, n;
980 : 0 : int num_descriptors;
981 : 0 : size_t offset = offsetof(struct hid_descriptor, desc);
982 : :
983 : 0 : quirks = hid_lookup_quirk(hid);
984 : :
985 [ # # ]: 0 : if (quirks & HID_QUIRK_IGNORE)
986 : : return -ENODEV;
987 : :
988 : : /* Many keyboards and mice don't like to be polled for reports,
989 : : * so we will always set the HID_QUIRK_NOGET flag for them. */
990 [ # # ]: 0 : if (interface->desc.bInterfaceSubClass == USB_INTERFACE_SUBCLASS_BOOT) {
991 [ # # ]: 0 : if (interface->desc.bInterfaceProtocol == USB_INTERFACE_PROTOCOL_KEYBOARD ||
992 : : interface->desc.bInterfaceProtocol == USB_INTERFACE_PROTOCOL_MOUSE)
993 : 0 : quirks |= HID_QUIRK_NOGET;
994 : : }
995 : :
996 [ # # ]: 0 : if (usb_get_extra_descriptor(interface, HID_DT_HID, &hdesc) &&
997 [ # # # # ]: 0 : (!interface->desc.bNumEndpoints ||
998 : 0 : usb_get_extra_descriptor(&interface->endpoint[0], HID_DT_HID, &hdesc))) {
999 [ # # ]: 0 : dbg_hid("class descriptor not present\n");
1000 : 0 : return -ENODEV;
1001 : : }
1002 : :
1003 [ # # ]: 0 : if (hdesc->bLength < sizeof(struct hid_descriptor)) {
1004 [ # # ]: 0 : dbg_hid("hid descriptor is too short\n");
1005 : 0 : return -EINVAL;
1006 : : }
1007 : :
1008 : 0 : hid->version = le16_to_cpu(hdesc->bcdHID);
1009 : 0 : hid->country = hdesc->bCountryCode;
1010 : :
1011 : 0 : num_descriptors = min_t(int, hdesc->bNumDescriptors,
1012 : : (hdesc->bLength - offset) / sizeof(struct hid_class_descriptor));
1013 : :
1014 [ # # ]: 0 : for (n = 0; n < num_descriptors; n++)
1015 [ # # ]: 0 : if (hdesc->desc[n].bDescriptorType == HID_DT_REPORT)
1016 : 0 : rsize = le16_to_cpu(hdesc->desc[n].wDescriptorLength);
1017 : :
1018 [ # # ]: 0 : if (!rsize || rsize > HID_MAX_DESCRIPTOR_SIZE) {
1019 [ # # ]: 0 : dbg_hid("weird size of report descriptor (%u)\n", rsize);
1020 : 0 : return -EINVAL;
1021 : : }
1022 : :
1023 [ # # ]: 0 : rdesc = kmalloc(rsize, GFP_KERNEL);
1024 [ # # ]: 0 : if (!rdesc)
1025 : : return -ENOMEM;
1026 : :
1027 : 0 : hid_set_idle(dev, interface->desc.bInterfaceNumber, 0, 0);
1028 : :
1029 : 0 : ret = hid_get_class_descriptor(dev, interface->desc.bInterfaceNumber,
1030 : : HID_DT_REPORT, rdesc, rsize);
1031 [ # # ]: 0 : if (ret < 0) {
1032 [ # # ]: 0 : dbg_hid("reading report descriptor failed\n");
1033 : 0 : kfree(rdesc);
1034 : 0 : goto err;
1035 : : }
1036 : :
1037 : 0 : ret = hid_parse_report(hid, rdesc, rsize);
1038 : 0 : kfree(rdesc);
1039 [ # # ]: 0 : if (ret) {
1040 [ # # ]: 0 : dbg_hid("parsing report descriptor failed\n");
1041 : 0 : goto err;
1042 : : }
1043 : :
1044 : 0 : hid->quirks |= quirks;
1045 : :
1046 : 0 : return 0;
1047 : : err:
1048 : : return ret;
1049 : : }
1050 : :
1051 : 0 : static int usbhid_start(struct hid_device *hid)
1052 : : {
1053 : 0 : struct usb_interface *intf = to_usb_interface(hid->dev.parent);
1054 : 0 : struct usb_host_interface *interface = intf->cur_altsetting;
1055 : 0 : struct usb_device *dev = interface_to_usbdev(intf);
1056 : 0 : struct usbhid_device *usbhid = hid->driver_data;
1057 : 0 : unsigned int n, insize = 0;
1058 : 0 : int ret;
1059 : :
1060 : 0 : clear_bit(HID_DISCONNECTED, &usbhid->iofl);
1061 : :
1062 : 0 : usbhid->bufsize = HID_MIN_BUFFER_SIZE;
1063 : 0 : hid_find_max_report(hid, HID_INPUT_REPORT, &usbhid->bufsize);
1064 : 0 : hid_find_max_report(hid, HID_OUTPUT_REPORT, &usbhid->bufsize);
1065 : 0 : hid_find_max_report(hid, HID_FEATURE_REPORT, &usbhid->bufsize);
1066 : :
1067 [ # # ]: 0 : if (usbhid->bufsize > HID_MAX_BUFFER_SIZE)
1068 : 0 : usbhid->bufsize = HID_MAX_BUFFER_SIZE;
1069 : :
1070 : 0 : hid_find_max_report(hid, HID_INPUT_REPORT, &insize);
1071 : :
1072 : 0 : if (insize > HID_MAX_BUFFER_SIZE)
1073 : : insize = HID_MAX_BUFFER_SIZE;
1074 : :
1075 [ # # ]: 0 : if (hid_alloc_buffers(dev, hid)) {
1076 : 0 : ret = -ENOMEM;
1077 : 0 : goto fail;
1078 : : }
1079 : :
1080 [ # # ]: 0 : for (n = 0; n < interface->desc.bNumEndpoints; n++) {
1081 : 0 : struct usb_endpoint_descriptor *endpoint;
1082 : 0 : int pipe;
1083 : 0 : int interval;
1084 : :
1085 : 0 : endpoint = &interface->endpoint[n].desc;
1086 [ # # ]: 0 : if (!usb_endpoint_xfer_int(endpoint))
1087 : 0 : continue;
1088 : :
1089 : 0 : interval = endpoint->bInterval;
1090 : :
1091 : : /* Some vendors give fullspeed interval on highspeed devides */
1092 [ # # ]: 0 : if (hid->quirks & HID_QUIRK_FULLSPEED_INTERVAL &&
1093 [ # # ]: 0 : dev->speed == USB_SPEED_HIGH) {
1094 : 0 : interval = fls(endpoint->bInterval*8);
1095 : 0 : pr_info("%s: Fixing fullspeed to highspeed interval: %d -> %d\n",
1096 : : hid->name, endpoint->bInterval, interval);
1097 : : }
1098 : :
1099 : : /* Change the polling interval of mice, joysticks
1100 : : * and keyboards.
1101 : : */
1102 [ # # # # ]: 0 : switch (hid->collection->usage) {
1103 : 0 : case HID_GD_MOUSE:
1104 [ # # ]: 0 : if (hid_mousepoll_interval > 0)
1105 : 0 : interval = hid_mousepoll_interval;
1106 : : break;
1107 : 0 : case HID_GD_JOYSTICK:
1108 [ # # ]: 0 : if (hid_jspoll_interval > 0)
1109 : 0 : interval = hid_jspoll_interval;
1110 : : break;
1111 : 0 : case HID_GD_KEYBOARD:
1112 [ # # ]: 0 : if (hid_kbpoll_interval > 0)
1113 : 0 : interval = hid_kbpoll_interval;
1114 : : break;
1115 : : }
1116 : :
1117 : 0 : ret = -ENOMEM;
1118 [ # # ]: 0 : if (usb_endpoint_dir_in(endpoint)) {
1119 [ # # ]: 0 : if (usbhid->urbin)
1120 : 0 : continue;
1121 [ # # ]: 0 : if (!(usbhid->urbin = usb_alloc_urb(0, GFP_KERNEL)))
1122 : 0 : goto fail;
1123 [ # # ]: 0 : pipe = usb_rcvintpipe(dev, endpoint->bEndpointAddress);
1124 [ # # ]: 0 : usb_fill_int_urb(usbhid->urbin, dev, pipe, usbhid->inbuf, insize,
1125 : : hid_irq_in, hid, interval);
1126 : 0 : usbhid->urbin->transfer_dma = usbhid->inbuf_dma;
1127 : 0 : usbhid->urbin->transfer_flags |= URB_NO_TRANSFER_DMA_MAP;
1128 : : } else {
1129 [ # # ]: 0 : if (usbhid->urbout)
1130 : 0 : continue;
1131 [ # # ]: 0 : if (!(usbhid->urbout = usb_alloc_urb(0, GFP_KERNEL)))
1132 : 0 : goto fail;
1133 [ # # ]: 0 : pipe = usb_sndintpipe(dev, endpoint->bEndpointAddress);
1134 [ # # ]: 0 : usb_fill_int_urb(usbhid->urbout, dev, pipe, usbhid->outbuf, 0,
1135 : : hid_irq_out, hid, interval);
1136 : 0 : usbhid->urbout->transfer_dma = usbhid->outbuf_dma;
1137 : 0 : usbhid->urbout->transfer_flags |= URB_NO_TRANSFER_DMA_MAP;
1138 : : }
1139 : : }
1140 : :
1141 : 0 : usbhid->urbctrl = usb_alloc_urb(0, GFP_KERNEL);
1142 [ # # ]: 0 : if (!usbhid->urbctrl) {
1143 : 0 : ret = -ENOMEM;
1144 : 0 : goto fail;
1145 : : }
1146 : :
1147 : 0 : usb_fill_control_urb(usbhid->urbctrl, dev, 0, (void *) usbhid->cr,
1148 : 0 : usbhid->ctrlbuf, 1, hid_ctrl, hid);
1149 : 0 : usbhid->urbctrl->transfer_dma = usbhid->ctrlbuf_dma;
1150 : 0 : usbhid->urbctrl->transfer_flags |= URB_NO_TRANSFER_DMA_MAP;
1151 : :
1152 : 0 : set_bit(HID_STARTED, &usbhid->iofl);
1153 : :
1154 [ # # ]: 0 : if (hid->quirks & HID_QUIRK_ALWAYS_POLL) {
1155 : 0 : ret = usb_autopm_get_interface(usbhid->intf);
1156 [ # # ]: 0 : if (ret)
1157 : 0 : goto fail;
1158 : 0 : set_bit(HID_IN_POLLING, &usbhid->iofl);
1159 : 0 : usbhid->intf->needs_remote_wakeup = 1;
1160 : 0 : ret = hid_start_in(hid);
1161 [ # # ]: 0 : if (ret) {
1162 : 0 : dev_err(&hid->dev,
1163 : : "failed to start in urb: %d\n", ret);
1164 : : }
1165 : 0 : usb_autopm_put_interface(usbhid->intf);
1166 : : }
1167 : :
1168 : : /* Some keyboards don't work until their LEDs have been set.
1169 : : * Since BIOSes do set the LEDs, it must be safe for any device
1170 : : * that supports the keyboard boot protocol.
1171 : : * In addition, enable remote wakeup by default for all keyboard
1172 : : * devices supporting the boot protocol.
1173 : : */
1174 [ # # ]: 0 : if (interface->desc.bInterfaceSubClass == USB_INTERFACE_SUBCLASS_BOOT &&
1175 : : interface->desc.bInterfaceProtocol ==
1176 : : USB_INTERFACE_PROTOCOL_KEYBOARD) {
1177 : 0 : usbhid_set_leds(hid);
1178 : 0 : device_set_wakeup_enable(&dev->dev, 1);
1179 : : }
1180 : : return 0;
1181 : :
1182 : 0 : fail:
1183 : 0 : usb_free_urb(usbhid->urbin);
1184 : 0 : usb_free_urb(usbhid->urbout);
1185 : 0 : usb_free_urb(usbhid->urbctrl);
1186 : 0 : usbhid->urbin = NULL;
1187 : 0 : usbhid->urbout = NULL;
1188 : 0 : usbhid->urbctrl = NULL;
1189 : 0 : hid_free_buffers(dev, hid);
1190 : 0 : return ret;
1191 : : }
1192 : :
1193 : 0 : static void usbhid_stop(struct hid_device *hid)
1194 : : {
1195 : 0 : struct usbhid_device *usbhid = hid->driver_data;
1196 : :
1197 [ # # # # ]: 0 : if (WARN_ON(!usbhid))
1198 : : return;
1199 : :
1200 [ # # ]: 0 : if (hid->quirks & HID_QUIRK_ALWAYS_POLL) {
1201 : 0 : clear_bit(HID_IN_POLLING, &usbhid->iofl);
1202 : 0 : usbhid->intf->needs_remote_wakeup = 0;
1203 : : }
1204 : :
1205 : 0 : clear_bit(HID_STARTED, &usbhid->iofl);
1206 : 0 : spin_lock_irq(&usbhid->lock); /* Sync with error and led handlers */
1207 : 0 : set_bit(HID_DISCONNECTED, &usbhid->iofl);
1208 : 0 : spin_unlock_irq(&usbhid->lock);
1209 : 0 : usb_kill_urb(usbhid->urbin);
1210 : 0 : usb_kill_urb(usbhid->urbout);
1211 : 0 : usb_kill_urb(usbhid->urbctrl);
1212 : :
1213 : 0 : hid_cancel_delayed_stuff(usbhid);
1214 : :
1215 : 0 : hid->claimed = 0;
1216 : :
1217 : 0 : usb_free_urb(usbhid->urbin);
1218 : 0 : usb_free_urb(usbhid->urbctrl);
1219 : 0 : usb_free_urb(usbhid->urbout);
1220 : 0 : usbhid->urbin = NULL; /* don't mess up next start */
1221 : 0 : usbhid->urbctrl = NULL;
1222 : 0 : usbhid->urbout = NULL;
1223 : :
1224 : 0 : hid_free_buffers(hid_to_usb_dev(hid), hid);
1225 : : }
1226 : :
1227 : 0 : static int usbhid_power(struct hid_device *hid, int lvl)
1228 : : {
1229 : 0 : struct usbhid_device *usbhid = hid->driver_data;
1230 : 0 : int r = 0;
1231 : :
1232 [ # # # ]: 0 : switch (lvl) {
1233 : 0 : case PM_HINT_FULLON:
1234 : 0 : r = usb_autopm_get_interface(usbhid->intf);
1235 : 0 : break;
1236 : :
1237 : 0 : case PM_HINT_NORMAL:
1238 : 0 : usb_autopm_put_interface(usbhid->intf);
1239 : 0 : break;
1240 : : }
1241 : :
1242 : 0 : return r;
1243 : : }
1244 : :
1245 : 0 : static void usbhid_request(struct hid_device *hid, struct hid_report *rep, int reqtype)
1246 : : {
1247 [ # # # ]: 0 : switch (reqtype) {
1248 : 0 : case HID_REQ_GET_REPORT:
1249 : 0 : usbhid_submit_report(hid, rep, USB_DIR_IN);
1250 : 0 : break;
1251 : 0 : case HID_REQ_SET_REPORT:
1252 : 0 : usbhid_submit_report(hid, rep, USB_DIR_OUT);
1253 : 0 : break;
1254 : : }
1255 : 0 : }
1256 : :
1257 : 0 : static int usbhid_raw_request(struct hid_device *hid, unsigned char reportnum,
1258 : : __u8 *buf, size_t len, unsigned char rtype,
1259 : : int reqtype)
1260 : : {
1261 [ # # # ]: 0 : switch (reqtype) {
1262 : 0 : case HID_REQ_GET_REPORT:
1263 : 0 : return usbhid_get_raw_report(hid, reportnum, buf, len, rtype);
1264 : 0 : case HID_REQ_SET_REPORT:
1265 : 0 : return usbhid_set_raw_report(hid, reportnum, buf, len, rtype);
1266 : : default:
1267 : : return -EIO;
1268 : : }
1269 : : }
1270 : :
1271 : 0 : static int usbhid_idle(struct hid_device *hid, int report, int idle,
1272 : : int reqtype)
1273 : : {
1274 : 0 : struct usb_device *dev = hid_to_usb_dev(hid);
1275 : 0 : struct usb_interface *intf = to_usb_interface(hid->dev.parent);
1276 : 0 : struct usb_host_interface *interface = intf->cur_altsetting;
1277 : 0 : int ifnum = interface->desc.bInterfaceNumber;
1278 : :
1279 [ # # ]: 0 : if (reqtype != HID_REQ_SET_IDLE)
1280 : : return -EINVAL;
1281 : :
1282 : 0 : return hid_set_idle(dev, ifnum, report, idle);
1283 : : }
1284 : :
1285 : : struct hid_ll_driver usb_hid_driver = {
1286 : : .parse = usbhid_parse,
1287 : : .start = usbhid_start,
1288 : : .stop = usbhid_stop,
1289 : : .open = usbhid_open,
1290 : : .close = usbhid_close,
1291 : : .power = usbhid_power,
1292 : : .request = usbhid_request,
1293 : : .wait = usbhid_wait_io,
1294 : : .raw_request = usbhid_raw_request,
1295 : : .output_report = usbhid_output_report,
1296 : : .idle = usbhid_idle,
1297 : : };
1298 : : EXPORT_SYMBOL_GPL(usb_hid_driver);
1299 : :
1300 : 0 : static int usbhid_probe(struct usb_interface *intf, const struct usb_device_id *id)
1301 : : {
1302 : 0 : struct usb_host_interface *interface = intf->cur_altsetting;
1303 [ # # ]: 0 : struct usb_device *dev = interface_to_usbdev(intf);
1304 : 0 : struct usbhid_device *usbhid;
1305 : 0 : struct hid_device *hid;
1306 : 0 : unsigned int n, has_in = 0;
1307 : 0 : size_t len;
1308 : 0 : int ret;
1309 : :
1310 [ # # ]: 0 : dbg_hid("HID probe called for ifnum %d\n",
1311 : : intf->altsetting->desc.bInterfaceNumber);
1312 : :
1313 [ # # ]: 0 : for (n = 0; n < interface->desc.bNumEndpoints; n++)
1314 [ # # ]: 0 : if (usb_endpoint_is_int_in(&interface->endpoint[n].desc))
1315 : 0 : has_in++;
1316 [ # # ]: 0 : if (!has_in) {
1317 : 0 : hid_err(intf, "couldn't find an input interrupt endpoint\n");
1318 : 0 : return -ENODEV;
1319 : : }
1320 : :
1321 : 0 : hid = hid_allocate_device();
1322 [ # # ]: 0 : if (IS_ERR(hid))
1323 : 0 : return PTR_ERR(hid);
1324 : :
1325 [ # # ]: 0 : usb_set_intfdata(intf, hid);
1326 : 0 : hid->ll_driver = &usb_hid_driver;
1327 : 0 : hid->ff_init = hid_pidff_init;
1328 : : #ifdef CONFIG_USB_HIDDEV
1329 : 0 : hid->hiddev_connect = hiddev_connect;
1330 : 0 : hid->hiddev_disconnect = hiddev_disconnect;
1331 : 0 : hid->hiddev_hid_event = hiddev_hid_event;
1332 : 0 : hid->hiddev_report_event = hiddev_report_event;
1333 : : #endif
1334 : 0 : hid->dev.parent = &intf->dev;
1335 : 0 : hid->bus = BUS_USB;
1336 : 0 : hid->vendor = le16_to_cpu(dev->descriptor.idVendor);
1337 : 0 : hid->product = le16_to_cpu(dev->descriptor.idProduct);
1338 : 0 : hid->version = le16_to_cpu(dev->descriptor.bcdDevice);
1339 : 0 : hid->name[0] = 0;
1340 [ # # ]: 0 : if (intf->cur_altsetting->desc.bInterfaceProtocol ==
1341 : : USB_INTERFACE_PROTOCOL_MOUSE)
1342 : 0 : hid->type = HID_TYPE_USBMOUSE;
1343 [ # # ]: 0 : else if (intf->cur_altsetting->desc.bInterfaceProtocol == 0)
1344 : 0 : hid->type = HID_TYPE_USBNONE;
1345 : :
1346 [ # # ]: 0 : if (dev->manufacturer)
1347 : 0 : strlcpy(hid->name, dev->manufacturer, sizeof(hid->name));
1348 : :
1349 [ # # ]: 0 : if (dev->product) {
1350 [ # # ]: 0 : if (dev->manufacturer)
1351 : 0 : strlcat(hid->name, " ", sizeof(hid->name));
1352 : 0 : strlcat(hid->name, dev->product, sizeof(hid->name));
1353 : : }
1354 : :
1355 [ # # ]: 0 : if (!strlen(hid->name))
1356 : 0 : snprintf(hid->name, sizeof(hid->name), "HID %04x:%04x",
1357 : 0 : le16_to_cpu(dev->descriptor.idVendor),
1358 : 0 : le16_to_cpu(dev->descriptor.idProduct));
1359 : :
1360 : 0 : usb_make_path(dev, hid->phys, sizeof(hid->phys));
1361 : 0 : strlcat(hid->phys, "/input", sizeof(hid->phys));
1362 : 0 : len = strlen(hid->phys);
1363 [ # # ]: 0 : if (len < sizeof(hid->phys) - 1)
1364 : 0 : snprintf(hid->phys + len, sizeof(hid->phys) - len,
1365 : 0 : "%d", intf->altsetting[0].desc.bInterfaceNumber);
1366 : :
1367 [ # # ]: 0 : if (usb_string(dev, dev->descriptor.iSerialNumber, hid->uniq, 64) <= 0)
1368 : 0 : hid->uniq[0] = 0;
1369 : :
1370 : 0 : usbhid = kzalloc(sizeof(*usbhid), GFP_KERNEL);
1371 [ # # ]: 0 : if (usbhid == NULL) {
1372 : 0 : ret = -ENOMEM;
1373 : 0 : goto err;
1374 : : }
1375 : :
1376 : 0 : hid->driver_data = usbhid;
1377 : 0 : usbhid->hid = hid;
1378 : 0 : usbhid->intf = intf;
1379 : 0 : usbhid->ifnum = interface->desc.bInterfaceNumber;
1380 : :
1381 : 0 : init_waitqueue_head(&usbhid->wait);
1382 : 0 : INIT_WORK(&usbhid->reset_work, hid_reset);
1383 : 0 : timer_setup(&usbhid->io_retry, hid_retry_timeout, 0);
1384 : 0 : spin_lock_init(&usbhid->lock);
1385 : :
1386 : 0 : ret = hid_add_device(hid);
1387 [ # # ]: 0 : if (ret) {
1388 [ # # ]: 0 : if (ret != -ENODEV)
1389 : 0 : hid_err(intf, "can't add hid device: %d\n", ret);
1390 : 0 : goto err_free;
1391 : : }
1392 : :
1393 : : return 0;
1394 : : err_free:
1395 : 0 : kfree(usbhid);
1396 : 0 : err:
1397 : 0 : hid_destroy_device(hid);
1398 : 0 : return ret;
1399 : : }
1400 : :
1401 : 0 : static void usbhid_disconnect(struct usb_interface *intf)
1402 : : {
1403 [ # # ]: 0 : struct hid_device *hid = usb_get_intfdata(intf);
1404 : 0 : struct usbhid_device *usbhid;
1405 : :
1406 [ # # # # ]: 0 : if (WARN_ON(!hid))
1407 : : return;
1408 : :
1409 : 0 : usbhid = hid->driver_data;
1410 : 0 : spin_lock_irq(&usbhid->lock); /* Sync with error and led handlers */
1411 : 0 : set_bit(HID_DISCONNECTED, &usbhid->iofl);
1412 : 0 : spin_unlock_irq(&usbhid->lock);
1413 : 0 : hid_destroy_device(hid);
1414 : 0 : kfree(usbhid);
1415 : : }
1416 : :
1417 : 0 : static void hid_cancel_delayed_stuff(struct usbhid_device *usbhid)
1418 : : {
1419 : 0 : del_timer_sync(&usbhid->io_retry);
1420 : 0 : cancel_work_sync(&usbhid->reset_work);
1421 : : }
1422 : :
1423 : 0 : static void hid_cease_io(struct usbhid_device *usbhid)
1424 : : {
1425 : 0 : del_timer_sync(&usbhid->io_retry);
1426 : 0 : usb_kill_urb(usbhid->urbin);
1427 : 0 : usb_kill_urb(usbhid->urbctrl);
1428 : 0 : usb_kill_urb(usbhid->urbout);
1429 : 0 : }
1430 : :
1431 : 0 : static void hid_restart_io(struct hid_device *hid)
1432 : : {
1433 : 0 : struct usbhid_device *usbhid = hid->driver_data;
1434 : 0 : int clear_halt = test_bit(HID_CLEAR_HALT, &usbhid->iofl);
1435 : 0 : int reset_pending = test_bit(HID_RESET_PENDING, &usbhid->iofl);
1436 : :
1437 : 0 : spin_lock_irq(&usbhid->lock);
1438 : 0 : clear_bit(HID_SUSPENDED, &usbhid->iofl);
1439 : 0 : usbhid_mark_busy(usbhid);
1440 : :
1441 [ # # ]: 0 : if (clear_halt || reset_pending)
1442 : 0 : schedule_work(&usbhid->reset_work);
1443 : 0 : usbhid->retry_delay = 0;
1444 : 0 : spin_unlock_irq(&usbhid->lock);
1445 : :
1446 [ # # # # ]: 0 : if (reset_pending || !test_bit(HID_STARTED, &usbhid->iofl))
1447 : 0 : return;
1448 : :
1449 [ # # ]: 0 : if (!clear_halt) {
1450 [ # # ]: 0 : if (hid_start_in(hid) < 0)
1451 : 0 : hid_io_error(hid);
1452 : : }
1453 : :
1454 : 0 : spin_lock_irq(&usbhid->lock);
1455 [ # # # # ]: 0 : if (usbhid->urbout && !test_bit(HID_OUT_RUNNING, &usbhid->iofl))
1456 : 0 : usbhid_restart_out_queue(usbhid);
1457 [ # # ]: 0 : if (!test_bit(HID_CTRL_RUNNING, &usbhid->iofl))
1458 : 0 : usbhid_restart_ctrl_queue(usbhid);
1459 : 0 : spin_unlock_irq(&usbhid->lock);
1460 : : }
1461 : :
1462 : : /* Treat USB reset pretty much the same as suspend/resume */
1463 : 0 : static int hid_pre_reset(struct usb_interface *intf)
1464 : : {
1465 : 0 : struct hid_device *hid = usb_get_intfdata(intf);
1466 : 0 : struct usbhid_device *usbhid = hid->driver_data;
1467 : :
1468 : 0 : spin_lock_irq(&usbhid->lock);
1469 : 0 : set_bit(HID_RESET_PENDING, &usbhid->iofl);
1470 : 0 : spin_unlock_irq(&usbhid->lock);
1471 : 0 : hid_cease_io(usbhid);
1472 : :
1473 : 0 : return 0;
1474 : : }
1475 : :
1476 : : /* Same routine used for post_reset and reset_resume */
1477 : 0 : static int hid_post_reset(struct usb_interface *intf)
1478 : : {
1479 [ # # ]: 0 : struct usb_device *dev = interface_to_usbdev (intf);
1480 [ # # ]: 0 : struct hid_device *hid = usb_get_intfdata(intf);
1481 : 0 : struct usbhid_device *usbhid = hid->driver_data;
1482 : 0 : struct usb_host_interface *interface = intf->cur_altsetting;
1483 : 0 : int status;
1484 : 0 : char *rdesc;
1485 : :
1486 : : /* Fetch and examine the HID report descriptor. If this
1487 : : * has changed, then rebind. Since usbcore's check of the
1488 : : * configuration descriptors passed, we already know that
1489 : : * the size of the HID report descriptor has not changed.
1490 : : */
1491 [ # # ]: 0 : rdesc = kmalloc(hid->dev_rsize, GFP_KERNEL);
1492 [ # # ]: 0 : if (!rdesc)
1493 : : return -ENOMEM;
1494 : :
1495 : 0 : status = hid_get_class_descriptor(dev,
1496 : 0 : interface->desc.bInterfaceNumber,
1497 : 0 : HID_DT_REPORT, rdesc, hid->dev_rsize);
1498 [ # # ]: 0 : if (status < 0) {
1499 [ # # ]: 0 : dbg_hid("reading report descriptor failed (post_reset)\n");
1500 : 0 : kfree(rdesc);
1501 : 0 : return status;
1502 : : }
1503 : 0 : status = memcmp(rdesc, hid->dev_rdesc, hid->dev_rsize);
1504 : 0 : kfree(rdesc);
1505 [ # # ]: 0 : if (status != 0) {
1506 [ # # ]: 0 : dbg_hid("report descriptor changed\n");
1507 : 0 : return -EPERM;
1508 : : }
1509 : :
1510 : : /* No need to do another reset or clear a halted endpoint */
1511 : 0 : spin_lock_irq(&usbhid->lock);
1512 : 0 : clear_bit(HID_RESET_PENDING, &usbhid->iofl);
1513 : 0 : clear_bit(HID_CLEAR_HALT, &usbhid->iofl);
1514 : 0 : spin_unlock_irq(&usbhid->lock);
1515 : 0 : hid_set_idle(dev, intf->cur_altsetting->desc.bInterfaceNumber, 0, 0);
1516 : :
1517 : 0 : hid_restart_io(hid);
1518 : :
1519 : 0 : return 0;
1520 : : }
1521 : :
1522 : : #ifdef CONFIG_PM
1523 : 0 : static int hid_resume_common(struct hid_device *hid, bool driver_suspended)
1524 : : {
1525 : 0 : int status = 0;
1526 : :
1527 : 0 : hid_restart_io(hid);
1528 [ # # # # : 0 : if (driver_suspended && hid->driver && hid->driver->resume)
# # ]
1529 : 0 : status = hid->driver->resume(hid);
1530 : 0 : return status;
1531 : : }
1532 : :
1533 : 0 : static int hid_suspend(struct usb_interface *intf, pm_message_t message)
1534 : : {
1535 [ # # ]: 0 : struct hid_device *hid = usb_get_intfdata(intf);
1536 : 0 : struct usbhid_device *usbhid = hid->driver_data;
1537 : 0 : int status = 0;
1538 : 0 : bool driver_suspended = false;
1539 : 0 : unsigned int ledcount;
1540 : :
1541 [ # # ]: 0 : if (PMSG_IS_AUTO(message)) {
1542 : 0 : ledcount = hidinput_count_leds(hid);
1543 : 0 : spin_lock_irq(&usbhid->lock); /* Sync with error handler */
1544 [ # # ]: 0 : if (!test_bit(HID_RESET_PENDING, &usbhid->iofl)
1545 [ # # ]: 0 : && !test_bit(HID_CLEAR_HALT, &usbhid->iofl)
1546 [ # # ]: 0 : && !test_bit(HID_OUT_RUNNING, &usbhid->iofl)
1547 [ # # ]: 0 : && !test_bit(HID_CTRL_RUNNING, &usbhid->iofl)
1548 [ # # ]: 0 : && !test_bit(HID_KEYS_PRESSED, &usbhid->iofl)
1549 [ # # # # ]: 0 : && (!ledcount || ignoreled))
1550 : : {
1551 : 0 : set_bit(HID_SUSPENDED, &usbhid->iofl);
1552 : 0 : spin_unlock_irq(&usbhid->lock);
1553 [ # # # # ]: 0 : if (hid->driver && hid->driver->suspend) {
1554 : 0 : status = hid->driver->suspend(hid, message);
1555 [ # # ]: 0 : if (status < 0)
1556 : 0 : goto failed;
1557 : : }
1558 : : driver_suspended = true;
1559 : : } else {
1560 : 0 : usbhid_mark_busy(usbhid);
1561 : 0 : spin_unlock_irq(&usbhid->lock);
1562 : 0 : return -EBUSY;
1563 : : }
1564 : :
1565 : : } else {
1566 : : /* TODO: resume() might need to handle suspend failure */
1567 [ # # # # ]: 0 : if (hid->driver && hid->driver->suspend)
1568 : 0 : status = hid->driver->suspend(hid, message);
1569 : 0 : driver_suspended = true;
1570 : 0 : spin_lock_irq(&usbhid->lock);
1571 : 0 : set_bit(HID_SUSPENDED, &usbhid->iofl);
1572 : 0 : spin_unlock_irq(&usbhid->lock);
1573 [ # # ]: 0 : if (usbhid_wait_io(hid) < 0)
1574 : 0 : status = -EIO;
1575 : : }
1576 : :
1577 : 0 : hid_cancel_delayed_stuff(usbhid);
1578 : 0 : hid_cease_io(usbhid);
1579 : :
1580 [ # # # # ]: 0 : if (PMSG_IS_AUTO(message) && test_bit(HID_KEYS_PRESSED, &usbhid->iofl)) {
1581 : : /* lost race against keypresses */
1582 : 0 : status = -EBUSY;
1583 : 0 : goto failed;
1584 : : }
1585 : : dev_dbg(&intf->dev, "suspend\n");
1586 : : return status;
1587 : :
1588 : 0 : failed:
1589 : 0 : hid_resume_common(hid, driver_suspended);
1590 : 0 : return status;
1591 : : }
1592 : :
1593 : 0 : static int hid_resume(struct usb_interface *intf)
1594 : : {
1595 : 0 : struct hid_device *hid = usb_get_intfdata (intf);
1596 : 0 : int status;
1597 : :
1598 : 0 : status = hid_resume_common(hid, true);
1599 : 0 : dev_dbg(&intf->dev, "resume status %d\n", status);
1600 : 0 : return 0;
1601 : : }
1602 : :
1603 : 0 : static int hid_reset_resume(struct usb_interface *intf)
1604 : : {
1605 : 0 : struct hid_device *hid = usb_get_intfdata(intf);
1606 : 0 : int status;
1607 : :
1608 : 0 : status = hid_post_reset(intf);
1609 [ # # # # : 0 : if (status >= 0 && hid->driver && hid->driver->reset_resume) {
# # ]
1610 : 0 : int ret = hid->driver->reset_resume(hid);
1611 [ # # ]: 0 : if (ret < 0)
1612 : 0 : status = ret;
1613 : : }
1614 : 0 : return status;
1615 : : }
1616 : :
1617 : : #endif /* CONFIG_PM */
1618 : :
1619 : : static const struct usb_device_id hid_usb_ids[] = {
1620 : : { .match_flags = USB_DEVICE_ID_MATCH_INT_CLASS,
1621 : : .bInterfaceClass = USB_INTERFACE_CLASS_HID },
1622 : : { } /* Terminating entry */
1623 : : };
1624 : :
1625 : : MODULE_DEVICE_TABLE (usb, hid_usb_ids);
1626 : :
1627 : : static struct usb_driver hid_driver = {
1628 : : .name = "usbhid",
1629 : : .probe = usbhid_probe,
1630 : : .disconnect = usbhid_disconnect,
1631 : : #ifdef CONFIG_PM
1632 : : .suspend = hid_suspend,
1633 : : .resume = hid_resume,
1634 : : .reset_resume = hid_reset_resume,
1635 : : #endif
1636 : : .pre_reset = hid_pre_reset,
1637 : : .post_reset = hid_post_reset,
1638 : : .id_table = hid_usb_ids,
1639 : : .supports_autosuspend = 1,
1640 : : };
1641 : :
1642 : 0 : struct usb_interface *usbhid_find_interface(int minor)
1643 : : {
1644 : 0 : return usb_find_interface(&hid_driver, minor);
1645 : : }
1646 : :
1647 : 13 : static int __init hid_init(void)
1648 : : {
1649 : 13 : int retval = -ENOMEM;
1650 : :
1651 : 13 : retval = hid_quirks_init(quirks_param, BUS_USB, MAX_USBHID_BOOT_QUIRKS);
1652 [ - + ]: 13 : if (retval)
1653 : 0 : goto usbhid_quirks_init_fail;
1654 : 13 : retval = usb_register(&hid_driver);
1655 [ - + ]: 13 : if (retval)
1656 : 0 : goto usb_register_fail;
1657 : 13 : pr_info(KBUILD_MODNAME ": " DRIVER_DESC "\n");
1658 : :
1659 : 13 : return 0;
1660 : : usb_register_fail:
1661 : 0 : hid_quirks_exit(BUS_USB);
1662 : : usbhid_quirks_init_fail:
1663 : : return retval;
1664 : : }
1665 : :
1666 : 0 : static void __exit hid_exit(void)
1667 : : {
1668 : 0 : usb_deregister(&hid_driver);
1669 : 0 : hid_quirks_exit(BUS_USB);
1670 : 0 : }
1671 : :
1672 : : module_init(hid_init);
1673 : : module_exit(hid_exit);
1674 : :
1675 : : MODULE_AUTHOR("Andreas Gal");
1676 : : MODULE_AUTHOR("Vojtech Pavlik");
1677 : : MODULE_AUTHOR("Jiri Kosina");
1678 : : MODULE_DESCRIPTION(DRIVER_DESC);
1679 : : MODULE_LICENSE("GPL");
|