Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * USB HID support for Linux |
| 3 | * |
| 4 | * Copyright (c) 1999 Andreas Gal |
Michael Haboustak | bf0964d | 2005-09-05 00:12:01 -0500 | [diff] [blame] | 5 | * Copyright (c) 2000-2005 Vojtech Pavlik <vojtech@suse.cz> |
| 6 | * Copyright (c) 2005 Michael Haboustak <mike-@cinci.rr.com> for Concept2, Inc |
Oliver Neukum | 0361a28 | 2008-12-17 15:38:03 +0100 | [diff] [blame] | 7 | * Copyright (c) 2007-2008 Oliver Neukum |
Jiri Kosina | 7d39e84 | 2010-02-02 20:46:34 +0100 | [diff] [blame] | 8 | * Copyright (c) 2006-2010 Jiri Kosina |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 9 | */ |
| 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 22 | #include <linux/list.h> |
| 23 | #include <linux/mm.h> |
Jiri Slaby | 3d5afd3 | 2008-10-27 12:16:15 +0100 | [diff] [blame] | 24 | #include <linux/mutex.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 25 | #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 Neukum | 0361a28 | 2008-12-17 15:38:03 +0100 | [diff] [blame] | 30 | #include <linux/workqueue.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 31 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 32 | #include <linux/usb.h> |
| 33 | |
Jiri Kosina | dde5845 | 2006-12-08 18:40:44 +0100 | [diff] [blame] | 34 | #include <linux/hid.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 35 | #include <linux/hiddev.h> |
Jiri Kosina | c080d89 | 2007-01-25 11:43:31 +0100 | [diff] [blame] | 36 | #include <linux/hid-debug.h> |
Jiri Kosina | 86166b7 | 2007-05-14 09:57:40 +0200 | [diff] [blame] | 37 | #include <linux/hidraw.h> |
Jiri Kosina | 4916b3a | 2006-12-08 18:41:03 +0100 | [diff] [blame] | 38 | #include "usbhid.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 39 | |
| 40 | /* |
| 41 | * Version Information |
| 42 | */ |
| 43 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 44 | #define DRIVER_DESC "USB HID core driver" |
| 45 | #define DRIVER_LICENSE "GPL" |
| 46 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 47 | /* |
| 48 | * Module parameters. |
| 49 | */ |
| 50 | |
| 51 | static unsigned int hid_mousepoll_interval; |
| 52 | module_param_named(mousepoll, hid_mousepoll_interval, uint, 0644); |
| 53 | MODULE_PARM_DESC(mousepoll, "Polling interval of mice"); |
| 54 | |
Oliver Neukum | 0361a28 | 2008-12-17 15:38:03 +0100 | [diff] [blame] | 55 | static unsigned int ignoreled; |
| 56 | module_param_named(ignoreled, ignoreled, uint, 0644); |
| 57 | MODULE_PARM_DESC(ignoreled, "Autosuspend with active leds"); |
| 58 | |
Paul Walmsley | 876b927 | 2007-04-19 14:56:12 +0200 | [diff] [blame] | 59 | /* Quirks specified at module load time */ |
| 60 | static char *quirks_param[MAX_USBHID_BOOT_QUIRKS] = { [ 0 ... (MAX_USBHID_BOOT_QUIRKS - 1) ] = NULL }; |
| 61 | module_param_array_named(quirks, quirks_param, charp, NULL, 0444); |
| 62 | MODULE_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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 66 | /* |
Alan Stern | aef4e26 | 2006-01-31 12:58:38 -0500 | [diff] [blame] | 67 | * Input submission and I/O error handler. |
| 68 | */ |
Oliver Neukum | 0361a28 | 2008-12-17 15:38:03 +0100 | [diff] [blame] | 69 | static DEFINE_MUTEX(hid_open_mut); |
| 70 | static struct workqueue_struct *resumption_waker; |
Alan Stern | aef4e26 | 2006-01-31 12:58:38 -0500 | [diff] [blame] | 71 | |
| 72 | static void hid_io_error(struct hid_device *hid); |
Oliver Neukum | 0361a28 | 2008-12-17 15:38:03 +0100 | [diff] [blame] | 73 | static int hid_submit_out(struct hid_device *hid); |
| 74 | static int hid_submit_ctrl(struct hid_device *hid); |
| 75 | static void hid_cancel_delayed_stuff(struct usbhid_device *usbhid); |
Alan Stern | aef4e26 | 2006-01-31 12:58:38 -0500 | [diff] [blame] | 76 | |
| 77 | /* Start up the input URB */ |
| 78 | static int hid_start_in(struct hid_device *hid) |
| 79 | { |
| 80 | unsigned long flags; |
| 81 | int rc = 0; |
Jiri Kosina | 4916b3a | 2006-12-08 18:41:03 +0100 | [diff] [blame] | 82 | struct usbhid_device *usbhid = hid->driver_data; |
Alan Stern | aef4e26 | 2006-01-31 12:58:38 -0500 | [diff] [blame] | 83 | |
Oliver Neukum | 0361a28 | 2008-12-17 15:38:03 +0100 | [diff] [blame] | 84 | spin_lock_irqsave(&usbhid->lock, flags); |
| 85 | if (hid->open > 0 && |
Oliver Neukum | 69626f2 | 2008-03-31 16:27:30 +0200 | [diff] [blame] | 86 | !test_bit(HID_DISCONNECTED, &usbhid->iofl) && |
Oliver Neukum | 0361a28 | 2008-12-17 15:38:03 +0100 | [diff] [blame] | 87 | !test_bit(HID_REPORTED_IDLE, &usbhid->iofl) && |
Jiri Kosina | 4916b3a | 2006-12-08 18:41:03 +0100 | [diff] [blame] | 88 | !test_and_set_bit(HID_IN_RUNNING, &usbhid->iofl)) { |
| 89 | rc = usb_submit_urb(usbhid->urbin, GFP_ATOMIC); |
Alan Stern | aef4e26 | 2006-01-31 12:58:38 -0500 | [diff] [blame] | 90 | if (rc != 0) |
Jiri Kosina | 4916b3a | 2006-12-08 18:41:03 +0100 | [diff] [blame] | 91 | clear_bit(HID_IN_RUNNING, &usbhid->iofl); |
Alan Stern | aef4e26 | 2006-01-31 12:58:38 -0500 | [diff] [blame] | 92 | } |
Oliver Neukum | 0361a28 | 2008-12-17 15:38:03 +0100 | [diff] [blame] | 93 | spin_unlock_irqrestore(&usbhid->lock, flags); |
Alan Stern | aef4e26 | 2006-01-31 12:58:38 -0500 | [diff] [blame] | 94 | return rc; |
| 95 | } |
| 96 | |
| 97 | /* I/O retry timer routine */ |
| 98 | static void hid_retry_timeout(unsigned long _hid) |
| 99 | { |
| 100 | struct hid_device *hid = (struct hid_device *) _hid; |
Jiri Kosina | 4916b3a | 2006-12-08 18:41:03 +0100 | [diff] [blame] | 101 | struct usbhid_device *usbhid = hid->driver_data; |
Alan Stern | aef4e26 | 2006-01-31 12:58:38 -0500 | [diff] [blame] | 102 | |
Jiri Kosina | 4916b3a | 2006-12-08 18:41:03 +0100 | [diff] [blame] | 103 | dev_dbg(&usbhid->intf->dev, "retrying intr urb\n"); |
Alan Stern | aef4e26 | 2006-01-31 12:58:38 -0500 | [diff] [blame] | 104 | if (hid_start_in(hid)) |
| 105 | hid_io_error(hid); |
| 106 | } |
| 107 | |
Alan Stern | 6d8fc4d | 2006-10-18 12:35:24 -0400 | [diff] [blame] | 108 | /* Workqueue routine to reset the device or clear a halt */ |
David Howells | c402895 | 2006-11-22 14:57:56 +0000 | [diff] [blame] | 109 | static void hid_reset(struct work_struct *work) |
Alan Stern | aef4e26 | 2006-01-31 12:58:38 -0500 | [diff] [blame] | 110 | { |
Jiri Kosina | 4916b3a | 2006-12-08 18:41:03 +0100 | [diff] [blame] | 111 | struct usbhid_device *usbhid = |
| 112 | container_of(work, struct usbhid_device, reset_work); |
| 113 | struct hid_device *hid = usbhid->hid; |
Alan Stern | 011b15d | 2008-11-04 11:29:27 -0500 | [diff] [blame] | 114 | int rc = 0; |
Alan Stern | aef4e26 | 2006-01-31 12:58:38 -0500 | [diff] [blame] | 115 | |
Jiri Kosina | 4916b3a | 2006-12-08 18:41:03 +0100 | [diff] [blame] | 116 | if (test_bit(HID_CLEAR_HALT, &usbhid->iofl)) { |
| 117 | dev_dbg(&usbhid->intf->dev, "clear halt\n"); |
Anssi Hannula | be82097 | 2007-01-19 19:28:17 +0200 | [diff] [blame] | 118 | rc = usb_clear_halt(hid_to_usb_dev(hid), usbhid->urbin->pipe); |
Jiri Kosina | 4916b3a | 2006-12-08 18:41:03 +0100 | [diff] [blame] | 119 | clear_bit(HID_CLEAR_HALT, &usbhid->iofl); |
Alan Stern | 6d8fc4d | 2006-10-18 12:35:24 -0400 | [diff] [blame] | 120 | hid_start_in(hid); |
Alan Stern | aef4e26 | 2006-01-31 12:58:38 -0500 | [diff] [blame] | 121 | } |
Alan Stern | 6d8fc4d | 2006-10-18 12:35:24 -0400 | [diff] [blame] | 122 | |
Jiri Kosina | 4916b3a | 2006-12-08 18:41:03 +0100 | [diff] [blame] | 123 | else if (test_bit(HID_RESET_PENDING, &usbhid->iofl)) { |
| 124 | dev_dbg(&usbhid->intf->dev, "resetting device\n"); |
Alan Stern | 011b15d | 2008-11-04 11:29:27 -0500 | [diff] [blame] | 125 | rc = usb_lock_device_for_reset(hid_to_usb_dev(hid), usbhid->intf); |
| 126 | if (rc == 0) { |
Ming Lei | 742120c | 2008-06-18 22:00:29 +0800 | [diff] [blame] | 127 | rc = usb_reset_device(hid_to_usb_dev(hid)); |
Alan Stern | 011b15d | 2008-11-04 11:29:27 -0500 | [diff] [blame] | 128 | usb_unlock_device(hid_to_usb_dev(hid)); |
Alan Stern | 6d8fc4d | 2006-10-18 12:35:24 -0400 | [diff] [blame] | 129 | } |
Jiri Kosina | 4916b3a | 2006-12-08 18:41:03 +0100 | [diff] [blame] | 130 | clear_bit(HID_RESET_PENDING, &usbhid->iofl); |
Alan Stern | 6d8fc4d | 2006-10-18 12:35:24 -0400 | [diff] [blame] | 131 | } |
Alan Stern | aef4e26 | 2006-01-31 12:58:38 -0500 | [diff] [blame] | 132 | |
Alan Stern | df9a1f4 | 2006-06-01 13:55:28 -0400 | [diff] [blame] | 133 | switch (rc) { |
| 134 | case 0: |
Jiri Kosina | 4916b3a | 2006-12-08 18:41:03 +0100 | [diff] [blame] | 135 | if (!test_bit(HID_IN_RUNNING, &usbhid->iofl)) |
Alan Stern | aef4e26 | 2006-01-31 12:58:38 -0500 | [diff] [blame] | 136 | hid_io_error(hid); |
Alan Stern | df9a1f4 | 2006-06-01 13:55:28 -0400 | [diff] [blame] | 137 | break; |
| 138 | default: |
Jiri Kosina | 58037eb | 2007-05-30 15:07:13 +0200 | [diff] [blame] | 139 | err_hid("can't reset device, %s-%s/input%d, status %d", |
Anssi Hannula | be82097 | 2007-01-19 19:28:17 +0200 | [diff] [blame] | 140 | hid_to_usb_dev(hid)->bus->bus_name, |
| 141 | hid_to_usb_dev(hid)->devpath, |
Jiri Kosina | 4916b3a | 2006-12-08 18:41:03 +0100 | [diff] [blame] | 142 | usbhid->ifnum, rc); |
Alan Stern | df9a1f4 | 2006-06-01 13:55:28 -0400 | [diff] [blame] | 143 | /* FALLTHROUGH */ |
| 144 | case -EHOSTUNREACH: |
| 145 | case -ENODEV: |
| 146 | case -EINTR: |
| 147 | break; |
| 148 | } |
Alan Stern | aef4e26 | 2006-01-31 12:58:38 -0500 | [diff] [blame] | 149 | } |
| 150 | |
| 151 | /* Main I/O error handler */ |
| 152 | static void hid_io_error(struct hid_device *hid) |
| 153 | { |
| 154 | unsigned long flags; |
Jiri Kosina | 4916b3a | 2006-12-08 18:41:03 +0100 | [diff] [blame] | 155 | struct usbhid_device *usbhid = hid->driver_data; |
Alan Stern | aef4e26 | 2006-01-31 12:58:38 -0500 | [diff] [blame] | 156 | |
Oliver Neukum | 0361a28 | 2008-12-17 15:38:03 +0100 | [diff] [blame] | 157 | spin_lock_irqsave(&usbhid->lock, flags); |
Alan Stern | aef4e26 | 2006-01-31 12:58:38 -0500 | [diff] [blame] | 158 | |
| 159 | /* Stop when disconnected */ |
Oliver Neukum | 69626f2 | 2008-03-31 16:27:30 +0200 | [diff] [blame] | 160 | if (test_bit(HID_DISCONNECTED, &usbhid->iofl)) |
Alan Stern | aef4e26 | 2006-01-31 12:58:38 -0500 | [diff] [blame] | 161 | goto done; |
| 162 | |
Alan Stern | 5e2a55f | 2007-03-20 19:03:31 +0100 | [diff] [blame] | 163 | /* If it has been a while since the last error, we'll assume |
| 164 | * this a brand new error and reset the retry timeout. */ |
| 165 | if (time_after(jiffies, usbhid->stop_retry + HZ/2)) |
| 166 | usbhid->retry_delay = 0; |
| 167 | |
Alan Stern | aef4e26 | 2006-01-31 12:58:38 -0500 | [diff] [blame] | 168 | /* When an error occurs, retry at increasing intervals */ |
Jiri Kosina | 4916b3a | 2006-12-08 18:41:03 +0100 | [diff] [blame] | 169 | if (usbhid->retry_delay == 0) { |
| 170 | usbhid->retry_delay = 13; /* Then 26, 52, 104, 104, ... */ |
| 171 | usbhid->stop_retry = jiffies + msecs_to_jiffies(1000); |
| 172 | } else if (usbhid->retry_delay < 100) |
| 173 | usbhid->retry_delay *= 2; |
Alan Stern | aef4e26 | 2006-01-31 12:58:38 -0500 | [diff] [blame] | 174 | |
Jiri Kosina | 4916b3a | 2006-12-08 18:41:03 +0100 | [diff] [blame] | 175 | if (time_after(jiffies, usbhid->stop_retry)) { |
Alan Stern | aef4e26 | 2006-01-31 12:58:38 -0500 | [diff] [blame] | 176 | |
| 177 | /* Retries failed, so do a port reset */ |
Jiri Kosina | 4916b3a | 2006-12-08 18:41:03 +0100 | [diff] [blame] | 178 | if (!test_and_set_bit(HID_RESET_PENDING, &usbhid->iofl)) { |
| 179 | schedule_work(&usbhid->reset_work); |
Alan Stern | 6d8fc4d | 2006-10-18 12:35:24 -0400 | [diff] [blame] | 180 | goto done; |
Alan Stern | aef4e26 | 2006-01-31 12:58:38 -0500 | [diff] [blame] | 181 | } |
| 182 | } |
| 183 | |
Jiri Kosina | 4916b3a | 2006-12-08 18:41:03 +0100 | [diff] [blame] | 184 | mod_timer(&usbhid->io_retry, |
| 185 | jiffies + msecs_to_jiffies(usbhid->retry_delay)); |
Alan Stern | aef4e26 | 2006-01-31 12:58:38 -0500 | [diff] [blame] | 186 | done: |
Oliver Neukum | 0361a28 | 2008-12-17 15:38:03 +0100 | [diff] [blame] | 187 | spin_unlock_irqrestore(&usbhid->lock, flags); |
| 188 | } |
| 189 | |
| 190 | static void usbhid_mark_busy(struct usbhid_device *usbhid) |
| 191 | { |
| 192 | struct usb_interface *intf = usbhid->intf; |
| 193 | |
| 194 | usb_mark_last_busy(interface_to_usbdev(intf)); |
| 195 | } |
| 196 | |
| 197 | static int usbhid_restart_out_queue(struct usbhid_device *usbhid) |
| 198 | { |
| 199 | struct hid_device *hid = usb_get_intfdata(usbhid->intf); |
| 200 | int kicked; |
| 201 | |
| 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); |
| 207 | if (hid_submit_out(hid)) { |
| 208 | clear_bit(HID_OUT_RUNNING, &usbhid->iofl); |
| 209 | wake_up(&usbhid->wait); |
| 210 | } |
| 211 | } |
| 212 | return kicked; |
| 213 | } |
| 214 | |
| 215 | static int usbhid_restart_ctrl_queue(struct usbhid_device *usbhid) |
| 216 | { |
| 217 | struct hid_device *hid = usb_get_intfdata(usbhid->intf); |
| 218 | int kicked; |
| 219 | |
| 220 | WARN_ON(hid == NULL); |
| 221 | if (!hid) |
| 222 | return 0; |
| 223 | |
| 224 | if ((kicked = (usbhid->ctrlhead != usbhid->ctrltail))) { |
| 225 | dbg("Kicking head %d tail %d", usbhid->ctrlhead, usbhid->ctrltail); |
| 226 | if (hid_submit_ctrl(hid)) { |
| 227 | clear_bit(HID_CTRL_RUNNING, &usbhid->iofl); |
| 228 | wake_up(&usbhid->wait); |
| 229 | } |
| 230 | } |
| 231 | return kicked; |
Alan Stern | aef4e26 | 2006-01-31 12:58:38 -0500 | [diff] [blame] | 232 | } |
| 233 | |
| 234 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 235 | * Input interrupt completion handler. |
| 236 | */ |
| 237 | |
David Howells | 7d12e78 | 2006-10-05 14:55:46 +0100 | [diff] [blame] | 238 | static void hid_irq_in(struct urb *urb) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 239 | { |
| 240 | struct hid_device *hid = urb->context; |
Jiri Kosina | 4916b3a | 2006-12-08 18:41:03 +0100 | [diff] [blame] | 241 | struct usbhid_device *usbhid = hid->driver_data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 242 | int status; |
| 243 | |
| 244 | switch (urb->status) { |
Jiri Slaby | 880d29f | 2008-06-18 23:55:41 +0200 | [diff] [blame] | 245 | case 0: /* success */ |
Oliver Neukum | 0361a28 | 2008-12-17 15:38:03 +0100 | [diff] [blame] | 246 | usbhid_mark_busy(usbhid); |
Jiri Slaby | 880d29f | 2008-06-18 23:55:41 +0200 | [diff] [blame] | 247 | usbhid->retry_delay = 0; |
| 248 | hid_input_report(urb->context, HID_INPUT_REPORT, |
| 249 | urb->transfer_buffer, |
| 250 | urb->actual_length, 1); |
Oliver Neukum | 0361a28 | 2008-12-17 15:38:03 +0100 | [diff] [blame] | 251 | /* |
| 252 | * autosuspend refused while keys are pressed |
| 253 | * because most keyboards don't wake up when |
| 254 | * a key is released |
| 255 | */ |
| 256 | if (hid_check_keys_pressed(hid)) |
| 257 | set_bit(HID_KEYS_PRESSED, &usbhid->iofl); |
| 258 | else |
| 259 | clear_bit(HID_KEYS_PRESSED, &usbhid->iofl); |
Jiri Slaby | 880d29f | 2008-06-18 23:55:41 +0200 | [diff] [blame] | 260 | break; |
| 261 | case -EPIPE: /* stall */ |
Oliver Neukum | 0361a28 | 2008-12-17 15:38:03 +0100 | [diff] [blame] | 262 | usbhid_mark_busy(usbhid); |
Jiri Slaby | 880d29f | 2008-06-18 23:55:41 +0200 | [diff] [blame] | 263 | clear_bit(HID_IN_RUNNING, &usbhid->iofl); |
| 264 | set_bit(HID_CLEAR_HALT, &usbhid->iofl); |
| 265 | schedule_work(&usbhid->reset_work); |
| 266 | return; |
| 267 | case -ECONNRESET: /* unlink */ |
| 268 | case -ENOENT: |
| 269 | case -ESHUTDOWN: /* unplug */ |
| 270 | clear_bit(HID_IN_RUNNING, &usbhid->iofl); |
| 271 | return; |
| 272 | case -EILSEQ: /* protocol error or unplug */ |
| 273 | case -EPROTO: /* protocol error or unplug */ |
| 274 | case -ETIME: /* protocol error or unplug */ |
| 275 | case -ETIMEDOUT: /* Should never happen, but... */ |
Oliver Neukum | 0361a28 | 2008-12-17 15:38:03 +0100 | [diff] [blame] | 276 | usbhid_mark_busy(usbhid); |
Jiri Slaby | 880d29f | 2008-06-18 23:55:41 +0200 | [diff] [blame] | 277 | clear_bit(HID_IN_RUNNING, &usbhid->iofl); |
| 278 | hid_io_error(hid); |
| 279 | return; |
| 280 | default: /* error */ |
From: Greg Kroah-Hartman | 7d89fe1 | 2008-10-12 00:25:51 +0200 | [diff] [blame] | 281 | dev_warn(&urb->dev->dev, "input irq status %d " |
| 282 | "received\n", urb->status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 283 | } |
| 284 | |
Christoph Lameter | 54e6ecb | 2006-12-06 20:33:16 -0800 | [diff] [blame] | 285 | status = usb_submit_urb(urb, GFP_ATOMIC); |
Alan Stern | aef4e26 | 2006-01-31 12:58:38 -0500 | [diff] [blame] | 286 | if (status) { |
Jiri Kosina | 4916b3a | 2006-12-08 18:41:03 +0100 | [diff] [blame] | 287 | clear_bit(HID_IN_RUNNING, &usbhid->iofl); |
Alan Stern | aef4e26 | 2006-01-31 12:58:38 -0500 | [diff] [blame] | 288 | if (status != -EPERM) { |
Jiri Kosina | 58037eb | 2007-05-30 15:07:13 +0200 | [diff] [blame] | 289 | err_hid("can't resubmit intr, %s-%s/input%d, status %d", |
Anssi Hannula | be82097 | 2007-01-19 19:28:17 +0200 | [diff] [blame] | 290 | hid_to_usb_dev(hid)->bus->bus_name, |
| 291 | hid_to_usb_dev(hid)->devpath, |
Jiri Kosina | 4916b3a | 2006-12-08 18:41:03 +0100 | [diff] [blame] | 292 | usbhid->ifnum, status); |
Alan Stern | aef4e26 | 2006-01-31 12:58:38 -0500 | [diff] [blame] | 293 | hid_io_error(hid); |
| 294 | } |
| 295 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 296 | } |
| 297 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 298 | static int hid_submit_out(struct hid_device *hid) |
| 299 | { |
| 300 | struct hid_report *report; |
Anssi Hannula | f129ea6 | 2008-10-04 14:44:06 +0200 | [diff] [blame] | 301 | char *raw_report; |
Jiri Kosina | 4916b3a | 2006-12-08 18:41:03 +0100 | [diff] [blame] | 302 | struct usbhid_device *usbhid = hid->driver_data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 303 | |
Anssi Hannula | f129ea6 | 2008-10-04 14:44:06 +0200 | [diff] [blame] | 304 | report = usbhid->out[usbhid->outtail].report; |
| 305 | raw_report = usbhid->out[usbhid->outtail].raw_report; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 306 | |
Oliver Neukum | 0361a28 | 2008-12-17 15:38:03 +0100 | [diff] [blame] | 307 | if (!test_bit(HID_REPORTED_IDLE, &usbhid->iofl)) { |
| 308 | usbhid->urbout->transfer_buffer_length = ((report->size - 1) >> 3) + 1 + (report->id > 0); |
| 309 | usbhid->urbout->dev = hid_to_usb_dev(hid); |
| 310 | memcpy(usbhid->outbuf, raw_report, usbhid->urbout->transfer_buffer_length); |
| 311 | kfree(raw_report); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 312 | |
Oliver Neukum | 0361a28 | 2008-12-17 15:38:03 +0100 | [diff] [blame] | 313 | dbg_hid("submitting out urb\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 314 | |
Oliver Neukum | 0361a28 | 2008-12-17 15:38:03 +0100 | [diff] [blame] | 315 | if (usb_submit_urb(usbhid->urbout, GFP_ATOMIC)) { |
| 316 | err_hid("usb_submit_urb(out) failed"); |
| 317 | return -1; |
| 318 | } |
Oliver Neukum | 858155f | 2010-02-12 13:02:28 +0100 | [diff] [blame] | 319 | usbhid->last_out = jiffies; |
Oliver Neukum | 0361a28 | 2008-12-17 15:38:03 +0100 | [diff] [blame] | 320 | } else { |
| 321 | /* |
| 322 | * queue work to wake up the device. |
| 323 | * as the work queue is freezeable, this is safe |
| 324 | * with respect to STD and STR |
| 325 | */ |
| 326 | queue_work(resumption_waker, &usbhid->restart_work); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 327 | } |
| 328 | |
| 329 | return 0; |
| 330 | } |
| 331 | |
| 332 | static int hid_submit_ctrl(struct hid_device *hid) |
| 333 | { |
| 334 | struct hid_report *report; |
| 335 | unsigned char dir; |
Anssi Hannula | f129ea6 | 2008-10-04 14:44:06 +0200 | [diff] [blame] | 336 | char *raw_report; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 337 | int len; |
Jiri Kosina | 4916b3a | 2006-12-08 18:41:03 +0100 | [diff] [blame] | 338 | struct usbhid_device *usbhid = hid->driver_data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 339 | |
Jiri Kosina | 4916b3a | 2006-12-08 18:41:03 +0100 | [diff] [blame] | 340 | report = usbhid->ctrl[usbhid->ctrltail].report; |
Anssi Hannula | f129ea6 | 2008-10-04 14:44:06 +0200 | [diff] [blame] | 341 | raw_report = usbhid->ctrl[usbhid->ctrltail].raw_report; |
Jiri Kosina | 4916b3a | 2006-12-08 18:41:03 +0100 | [diff] [blame] | 342 | dir = usbhid->ctrl[usbhid->ctrltail].dir; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 343 | |
Oliver Neukum | 0361a28 | 2008-12-17 15:38:03 +0100 | [diff] [blame] | 344 | if (!test_bit(HID_REPORTED_IDLE, &usbhid->iofl)) { |
| 345 | len = ((report->size - 1) >> 3) + 1 + (report->id > 0); |
| 346 | if (dir == USB_DIR_OUT) { |
| 347 | usbhid->urbctrl->pipe = usb_sndctrlpipe(hid_to_usb_dev(hid), 0); |
| 348 | usbhid->urbctrl->transfer_buffer_length = len; |
| 349 | memcpy(usbhid->ctrlbuf, raw_report, len); |
| 350 | kfree(raw_report); |
| 351 | } else { |
| 352 | int maxpacket, padlen; |
| 353 | |
| 354 | usbhid->urbctrl->pipe = usb_rcvctrlpipe(hid_to_usb_dev(hid), 0); |
| 355 | maxpacket = usb_maxpacket(hid_to_usb_dev(hid), usbhid->urbctrl->pipe, 0); |
| 356 | if (maxpacket > 0) { |
| 357 | padlen = DIV_ROUND_UP(len, maxpacket); |
| 358 | padlen *= maxpacket; |
| 359 | if (padlen > usbhid->bufsize) |
| 360 | padlen = usbhid->bufsize; |
| 361 | } else |
| 362 | padlen = 0; |
| 363 | usbhid->urbctrl->transfer_buffer_length = padlen; |
| 364 | } |
| 365 | usbhid->urbctrl->dev = hid_to_usb_dev(hid); |
| 366 | |
| 367 | usbhid->cr->bRequestType = USB_TYPE_CLASS | USB_RECIP_INTERFACE | dir; |
| 368 | usbhid->cr->bRequest = (dir == USB_DIR_OUT) ? HID_REQ_SET_REPORT : HID_REQ_GET_REPORT; |
| 369 | usbhid->cr->wValue = cpu_to_le16(((report->type + 1) << 8) | report->id); |
| 370 | usbhid->cr->wIndex = cpu_to_le16(usbhid->ifnum); |
| 371 | usbhid->cr->wLength = cpu_to_le16(len); |
| 372 | |
| 373 | dbg_hid("submitting ctrl urb: %s wValue=0x%04x wIndex=0x%04x wLength=%u\n", |
| 374 | usbhid->cr->bRequest == HID_REQ_SET_REPORT ? "Set_Report" : "Get_Report", |
| 375 | usbhid->cr->wValue, usbhid->cr->wIndex, usbhid->cr->wLength); |
| 376 | |
| 377 | if (usb_submit_urb(usbhid->urbctrl, GFP_ATOMIC)) { |
| 378 | err_hid("usb_submit_urb(ctrl) failed"); |
| 379 | return -1; |
| 380 | } |
Oliver Neukum | 858155f | 2010-02-12 13:02:28 +0100 | [diff] [blame] | 381 | usbhid->last_ctrl = jiffies; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 382 | } else { |
Oliver Neukum | 0361a28 | 2008-12-17 15:38:03 +0100 | [diff] [blame] | 383 | /* |
| 384 | * queue work to wake up the device. |
| 385 | * as the work queue is freezeable, this is safe |
| 386 | * with respect to STD and STR |
| 387 | */ |
| 388 | queue_work(resumption_waker, &usbhid->restart_work); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 389 | } |
| 390 | |
| 391 | return 0; |
| 392 | } |
| 393 | |
| 394 | /* |
| 395 | * Output interrupt completion handler. |
| 396 | */ |
| 397 | |
David Howells | 7d12e78 | 2006-10-05 14:55:46 +0100 | [diff] [blame] | 398 | static void hid_irq_out(struct urb *urb) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 399 | { |
| 400 | struct hid_device *hid = urb->context; |
Jiri Kosina | 4916b3a | 2006-12-08 18:41:03 +0100 | [diff] [blame] | 401 | struct usbhid_device *usbhid = hid->driver_data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 402 | unsigned long flags; |
| 403 | int unplug = 0; |
| 404 | |
| 405 | switch (urb->status) { |
Jiri Slaby | 880d29f | 2008-06-18 23:55:41 +0200 | [diff] [blame] | 406 | case 0: /* success */ |
| 407 | break; |
| 408 | case -ESHUTDOWN: /* unplug */ |
| 409 | unplug = 1; |
| 410 | case -EILSEQ: /* protocol error or unplug */ |
| 411 | case -EPROTO: /* protocol error or unplug */ |
| 412 | case -ECONNRESET: /* unlink */ |
| 413 | case -ENOENT: |
| 414 | break; |
| 415 | default: /* error */ |
From: Greg Kroah-Hartman | 7d89fe1 | 2008-10-12 00:25:51 +0200 | [diff] [blame] | 416 | dev_warn(&urb->dev->dev, "output irq status %d " |
| 417 | "received\n", urb->status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 418 | } |
| 419 | |
Oliver Neukum | 0361a28 | 2008-12-17 15:38:03 +0100 | [diff] [blame] | 420 | spin_lock_irqsave(&usbhid->lock, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 421 | |
| 422 | if (unplug) |
Jiri Kosina | 4916b3a | 2006-12-08 18:41:03 +0100 | [diff] [blame] | 423 | usbhid->outtail = usbhid->outhead; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 424 | else |
Jiri Kosina | 4916b3a | 2006-12-08 18:41:03 +0100 | [diff] [blame] | 425 | usbhid->outtail = (usbhid->outtail + 1) & (HID_OUTPUT_FIFO_SIZE - 1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 426 | |
Jiri Kosina | 4916b3a | 2006-12-08 18:41:03 +0100 | [diff] [blame] | 427 | if (usbhid->outhead != usbhid->outtail) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 428 | if (hid_submit_out(hid)) { |
Jiri Kosina | 4916b3a | 2006-12-08 18:41:03 +0100 | [diff] [blame] | 429 | clear_bit(HID_OUT_RUNNING, &usbhid->iofl); |
Jiri Slaby | 1d1bdd2 | 2008-03-19 21:55:04 +0100 | [diff] [blame] | 430 | wake_up(&usbhid->wait); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 431 | } |
Oliver Neukum | 0361a28 | 2008-12-17 15:38:03 +0100 | [diff] [blame] | 432 | spin_unlock_irqrestore(&usbhid->lock, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 433 | return; |
| 434 | } |
| 435 | |
Jiri Kosina | 4916b3a | 2006-12-08 18:41:03 +0100 | [diff] [blame] | 436 | clear_bit(HID_OUT_RUNNING, &usbhid->iofl); |
Oliver Neukum | 0361a28 | 2008-12-17 15:38:03 +0100 | [diff] [blame] | 437 | spin_unlock_irqrestore(&usbhid->lock, flags); |
Jiri Slaby | 1d1bdd2 | 2008-03-19 21:55:04 +0100 | [diff] [blame] | 438 | wake_up(&usbhid->wait); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 439 | } |
| 440 | |
| 441 | /* |
| 442 | * Control pipe completion handler. |
| 443 | */ |
| 444 | |
David Howells | 7d12e78 | 2006-10-05 14:55:46 +0100 | [diff] [blame] | 445 | static void hid_ctrl(struct urb *urb) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 446 | { |
| 447 | struct hid_device *hid = urb->context; |
Jiri Kosina | 4916b3a | 2006-12-08 18:41:03 +0100 | [diff] [blame] | 448 | struct usbhid_device *usbhid = hid->driver_data; |
Oliver Neukum | 0361a28 | 2008-12-17 15:38:03 +0100 | [diff] [blame] | 449 | int unplug = 0, status = urb->status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 450 | |
Oliver Neukum | 0361a28 | 2008-12-17 15:38:03 +0100 | [diff] [blame] | 451 | spin_lock(&usbhid->lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 452 | |
Oliver Neukum | 0361a28 | 2008-12-17 15:38:03 +0100 | [diff] [blame] | 453 | switch (status) { |
Jiri Slaby | 880d29f | 2008-06-18 23:55:41 +0200 | [diff] [blame] | 454 | case 0: /* success */ |
| 455 | if (usbhid->ctrl[usbhid->ctrltail].dir == USB_DIR_IN) |
| 456 | hid_input_report(urb->context, |
| 457 | usbhid->ctrl[usbhid->ctrltail].report->type, |
| 458 | urb->transfer_buffer, urb->actual_length, 0); |
| 459 | break; |
| 460 | case -ESHUTDOWN: /* unplug */ |
| 461 | unplug = 1; |
| 462 | case -EILSEQ: /* protocol error or unplug */ |
| 463 | case -EPROTO: /* protocol error or unplug */ |
| 464 | case -ECONNRESET: /* unlink */ |
| 465 | case -ENOENT: |
| 466 | case -EPIPE: /* report not available */ |
| 467 | break; |
| 468 | default: /* error */ |
From: Greg Kroah-Hartman | 7d89fe1 | 2008-10-12 00:25:51 +0200 | [diff] [blame] | 469 | dev_warn(&urb->dev->dev, "ctrl urb status %d " |
Oliver Neukum | 0361a28 | 2008-12-17 15:38:03 +0100 | [diff] [blame] | 470 | "received\n", status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 471 | } |
| 472 | |
| 473 | if (unplug) |
Jiri Kosina | 4916b3a | 2006-12-08 18:41:03 +0100 | [diff] [blame] | 474 | usbhid->ctrltail = usbhid->ctrlhead; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 475 | else |
Jiri Kosina | 4916b3a | 2006-12-08 18:41:03 +0100 | [diff] [blame] | 476 | usbhid->ctrltail = (usbhid->ctrltail + 1) & (HID_CONTROL_FIFO_SIZE - 1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 477 | |
Jiri Kosina | 4916b3a | 2006-12-08 18:41:03 +0100 | [diff] [blame] | 478 | if (usbhid->ctrlhead != usbhid->ctrltail) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 479 | if (hid_submit_ctrl(hid)) { |
Jiri Kosina | 4916b3a | 2006-12-08 18:41:03 +0100 | [diff] [blame] | 480 | clear_bit(HID_CTRL_RUNNING, &usbhid->iofl); |
Jiri Slaby | 1d1bdd2 | 2008-03-19 21:55:04 +0100 | [diff] [blame] | 481 | wake_up(&usbhid->wait); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 482 | } |
Oliver Neukum | 0361a28 | 2008-12-17 15:38:03 +0100 | [diff] [blame] | 483 | spin_unlock(&usbhid->lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 484 | return; |
| 485 | } |
| 486 | |
Jiri Kosina | 4916b3a | 2006-12-08 18:41:03 +0100 | [diff] [blame] | 487 | clear_bit(HID_CTRL_RUNNING, &usbhid->iofl); |
Oliver Neukum | 0361a28 | 2008-12-17 15:38:03 +0100 | [diff] [blame] | 488 | spin_unlock(&usbhid->lock); |
Jiri Slaby | 1d1bdd2 | 2008-03-19 21:55:04 +0100 | [diff] [blame] | 489 | wake_up(&usbhid->wait); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 490 | } |
| 491 | |
H Hartley Sweeten | 52cfc61b | 2009-08-17 15:37:18 -0700 | [diff] [blame] | 492 | static void __usbhid_submit_report(struct hid_device *hid, struct hid_report *report, |
| 493 | unsigned char dir) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 494 | { |
| 495 | int head; |
Jiri Kosina | 4916b3a | 2006-12-08 18:41:03 +0100 | [diff] [blame] | 496 | struct usbhid_device *usbhid = hid->driver_data; |
Anssi Hannula | f129ea6 | 2008-10-04 14:44:06 +0200 | [diff] [blame] | 497 | int len = ((report->size - 1) >> 3) + 1 + (report->id > 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 498 | |
| 499 | if ((hid->quirks & HID_QUIRK_NOGET) && dir == USB_DIR_IN) |
| 500 | return; |
| 501 | |
Jiri Kosina | 4916b3a | 2006-12-08 18:41:03 +0100 | [diff] [blame] | 502 | if (usbhid->urbout && dir == USB_DIR_OUT && report->type == HID_OUTPUT_REPORT) { |
Jiri Kosina | 4916b3a | 2006-12-08 18:41:03 +0100 | [diff] [blame] | 503 | if ((head = (usbhid->outhead + 1) & (HID_OUTPUT_FIFO_SIZE - 1)) == usbhid->outtail) { |
From: Greg Kroah-Hartman | 7d89fe1 | 2008-10-12 00:25:51 +0200 | [diff] [blame] | 504 | dev_warn(&hid->dev, "output queue full\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 505 | return; |
| 506 | } |
| 507 | |
Anssi Hannula | f129ea6 | 2008-10-04 14:44:06 +0200 | [diff] [blame] | 508 | usbhid->out[usbhid->outhead].raw_report = kmalloc(len, GFP_ATOMIC); |
| 509 | if (!usbhid->out[usbhid->outhead].raw_report) { |
Greg Kroah-Hartman | 46fcaec | 2008-10-15 11:30:07 -0700 | [diff] [blame] | 510 | dev_warn(&hid->dev, "output queueing failed\n"); |
Anssi Hannula | f129ea6 | 2008-10-04 14:44:06 +0200 | [diff] [blame] | 511 | return; |
| 512 | } |
| 513 | hid_output_report(report, usbhid->out[usbhid->outhead].raw_report); |
| 514 | usbhid->out[usbhid->outhead].report = report; |
Jiri Kosina | 4916b3a | 2006-12-08 18:41:03 +0100 | [diff] [blame] | 515 | usbhid->outhead = head; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 516 | |
Oliver Neukum | 858155f | 2010-02-12 13:02:28 +0100 | [diff] [blame] | 517 | if (!test_and_set_bit(HID_OUT_RUNNING, &usbhid->iofl)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 518 | if (hid_submit_out(hid)) |
Jiri Kosina | 4916b3a | 2006-12-08 18:41:03 +0100 | [diff] [blame] | 519 | clear_bit(HID_OUT_RUNNING, &usbhid->iofl); |
Oliver Neukum | 858155f | 2010-02-12 13:02:28 +0100 | [diff] [blame] | 520 | } else { |
| 521 | /* |
| 522 | * the queue is known to run |
| 523 | * but an earlier request may be stuck |
| 524 | * we may need to time out |
| 525 | * no race because this is called under |
| 526 | * spinlock |
| 527 | */ |
| 528 | if (time_after(jiffies, usbhid->last_out + HZ * 5)) |
| 529 | usb_unlink_urb(usbhid->urbout); |
| 530 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 531 | return; |
| 532 | } |
| 533 | |
Jiri Kosina | 4916b3a | 2006-12-08 18:41:03 +0100 | [diff] [blame] | 534 | if ((head = (usbhid->ctrlhead + 1) & (HID_CONTROL_FIFO_SIZE - 1)) == usbhid->ctrltail) { |
From: Greg Kroah-Hartman | 7d89fe1 | 2008-10-12 00:25:51 +0200 | [diff] [blame] | 535 | dev_warn(&hid->dev, "control queue full\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 536 | return; |
| 537 | } |
| 538 | |
Anssi Hannula | f129ea6 | 2008-10-04 14:44:06 +0200 | [diff] [blame] | 539 | if (dir == USB_DIR_OUT) { |
| 540 | usbhid->ctrl[usbhid->ctrlhead].raw_report = kmalloc(len, GFP_ATOMIC); |
| 541 | if (!usbhid->ctrl[usbhid->ctrlhead].raw_report) { |
Greg Kroah-Hartman | 46fcaec | 2008-10-15 11:30:07 -0700 | [diff] [blame] | 542 | dev_warn(&hid->dev, "control queueing failed\n"); |
Anssi Hannula | f129ea6 | 2008-10-04 14:44:06 +0200 | [diff] [blame] | 543 | return; |
| 544 | } |
| 545 | hid_output_report(report, usbhid->ctrl[usbhid->ctrlhead].raw_report); |
| 546 | } |
Jiri Kosina | 4916b3a | 2006-12-08 18:41:03 +0100 | [diff] [blame] | 547 | usbhid->ctrl[usbhid->ctrlhead].report = report; |
| 548 | usbhid->ctrl[usbhid->ctrlhead].dir = dir; |
| 549 | usbhid->ctrlhead = head; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 550 | |
Oliver Neukum | 858155f | 2010-02-12 13:02:28 +0100 | [diff] [blame] | 551 | if (!test_and_set_bit(HID_CTRL_RUNNING, &usbhid->iofl)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 552 | if (hid_submit_ctrl(hid)) |
Jiri Kosina | 4916b3a | 2006-12-08 18:41:03 +0100 | [diff] [blame] | 553 | clear_bit(HID_CTRL_RUNNING, &usbhid->iofl); |
Oliver Neukum | 858155f | 2010-02-12 13:02:28 +0100 | [diff] [blame] | 554 | } else { |
| 555 | /* |
| 556 | * the queue is known to run |
| 557 | * but an earlier request may be stuck |
| 558 | * we may need to time out |
| 559 | * no race because this is called under |
| 560 | * spinlock |
| 561 | */ |
| 562 | if (time_after(jiffies, usbhid->last_ctrl + HZ * 5)) |
| 563 | usb_unlink_urb(usbhid->urbctrl); |
| 564 | } |
Oliver Neukum | 0361a28 | 2008-12-17 15:38:03 +0100 | [diff] [blame] | 565 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 566 | |
Oliver Neukum | 0361a28 | 2008-12-17 15:38:03 +0100 | [diff] [blame] | 567 | void usbhid_submit_report(struct hid_device *hid, struct hid_report *report, unsigned char dir) |
| 568 | { |
| 569 | struct usbhid_device *usbhid = hid->driver_data; |
| 570 | unsigned long flags; |
| 571 | |
| 572 | spin_lock_irqsave(&usbhid->lock, flags); |
| 573 | __usbhid_submit_report(hid, report, dir); |
| 574 | spin_unlock_irqrestore(&usbhid->lock, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 575 | } |
Jiri Slaby | 606bd0a | 2008-07-04 23:06:45 +0200 | [diff] [blame] | 576 | EXPORT_SYMBOL_GPL(usbhid_submit_report); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 577 | |
Jiri Kosina | 229695e | 2006-12-08 18:40:53 +0100 | [diff] [blame] | 578 | static int usb_hidinput_input_event(struct input_dev *dev, unsigned int type, unsigned int code, int value) |
Jiri Kosina | dde5845 | 2006-12-08 18:40:44 +0100 | [diff] [blame] | 579 | { |
Dmitry Torokhov | e071298 | 2007-05-09 10:17:31 +0200 | [diff] [blame] | 580 | struct hid_device *hid = input_get_drvdata(dev); |
Oliver Neukum | 0361a28 | 2008-12-17 15:38:03 +0100 | [diff] [blame] | 581 | struct usbhid_device *usbhid = hid->driver_data; |
Jiri Kosina | dde5845 | 2006-12-08 18:40:44 +0100 | [diff] [blame] | 582 | struct hid_field *field; |
Oliver Neukum | 0361a28 | 2008-12-17 15:38:03 +0100 | [diff] [blame] | 583 | unsigned long flags; |
Jiri Kosina | dde5845 | 2006-12-08 18:40:44 +0100 | [diff] [blame] | 584 | int offset; |
| 585 | |
| 586 | if (type == EV_FF) |
| 587 | return input_ff_event(dev, type, code, value); |
| 588 | |
| 589 | if (type != EV_LED) |
| 590 | return -1; |
| 591 | |
| 592 | if ((offset = hidinput_find_field(hid, type, code, &field)) == -1) { |
From: Greg Kroah-Hartman | 7d89fe1 | 2008-10-12 00:25:51 +0200 | [diff] [blame] | 593 | dev_warn(&dev->dev, "event field not found\n"); |
Jiri Kosina | dde5845 | 2006-12-08 18:40:44 +0100 | [diff] [blame] | 594 | return -1; |
| 595 | } |
| 596 | |
| 597 | hid_set_field(field, offset, value); |
Oliver Neukum | 0361a28 | 2008-12-17 15:38:03 +0100 | [diff] [blame] | 598 | if (value) { |
| 599 | spin_lock_irqsave(&usbhid->lock, flags); |
| 600 | usbhid->ledcount++; |
| 601 | spin_unlock_irqrestore(&usbhid->lock, flags); |
| 602 | } else { |
| 603 | spin_lock_irqsave(&usbhid->lock, flags); |
| 604 | usbhid->ledcount--; |
| 605 | spin_unlock_irqrestore(&usbhid->lock, flags); |
| 606 | } |
Jiri Kosina | 4916b3a | 2006-12-08 18:41:03 +0100 | [diff] [blame] | 607 | usbhid_submit_report(hid, field->report, USB_DIR_OUT); |
Jiri Kosina | dde5845 | 2006-12-08 18:40:44 +0100 | [diff] [blame] | 608 | |
| 609 | return 0; |
| 610 | } |
| 611 | |
Jiri Kosina | 4916b3a | 2006-12-08 18:41:03 +0100 | [diff] [blame] | 612 | int usbhid_wait_io(struct hid_device *hid) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 613 | { |
Jiri Kosina | 4916b3a | 2006-12-08 18:41:03 +0100 | [diff] [blame] | 614 | struct usbhid_device *usbhid = hid->driver_data; |
| 615 | |
Jiri Slaby | 1d1bdd2 | 2008-03-19 21:55:04 +0100 | [diff] [blame] | 616 | if (!wait_event_timeout(usbhid->wait, |
| 617 | (!test_bit(HID_CTRL_RUNNING, &usbhid->iofl) && |
| 618 | !test_bit(HID_OUT_RUNNING, &usbhid->iofl)), |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 619 | 10*HZ)) { |
Jiri Kosina | 58037eb | 2007-05-30 15:07:13 +0200 | [diff] [blame] | 620 | dbg_hid("timeout waiting for ctrl or out queue to clear\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 621 | return -1; |
| 622 | } |
| 623 | |
| 624 | return 0; |
| 625 | } |
| 626 | |
Vojtech Pavlik | 854561b | 2005-05-29 02:28:00 -0500 | [diff] [blame] | 627 | static int hid_set_idle(struct usb_device *dev, int ifnum, int report, int idle) |
| 628 | { |
Vojtech Pavlik | 71387bd | 2005-05-29 02:28:14 -0500 | [diff] [blame] | 629 | return usb_control_msg(dev, usb_sndctrlpipe(dev, 0), |
Vojtech Pavlik | 854561b | 2005-05-29 02:28:00 -0500 | [diff] [blame] | 630 | HID_REQ_SET_IDLE, USB_TYPE_CLASS | USB_RECIP_INTERFACE, (idle << 8) | report, |
| 631 | ifnum, NULL, 0, USB_CTRL_SET_TIMEOUT); |
| 632 | } |
| 633 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 634 | static int hid_get_class_descriptor(struct usb_device *dev, int ifnum, |
| 635 | unsigned char type, void *buf, int size) |
| 636 | { |
| 637 | int result, retries = 4; |
| 638 | |
Jiri Kosina | 43c7bf0 | 2007-01-26 12:58:24 +0100 | [diff] [blame] | 639 | memset(buf, 0, size); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 640 | |
| 641 | do { |
| 642 | result = usb_control_msg(dev, usb_rcvctrlpipe(dev, 0), |
| 643 | USB_REQ_GET_DESCRIPTOR, USB_RECIP_INTERFACE | USB_DIR_IN, |
| 644 | (type << 8), ifnum, buf, size, USB_CTRL_GET_TIMEOUT); |
| 645 | retries--; |
| 646 | } while (result < size && retries); |
| 647 | return result; |
| 648 | } |
| 649 | |
Jiri Kosina | 4916b3a | 2006-12-08 18:41:03 +0100 | [diff] [blame] | 650 | int usbhid_open(struct hid_device *hid) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 651 | { |
Oliver Neukum | 933e318 | 2007-07-11 14:48:58 +0200 | [diff] [blame] | 652 | struct usbhid_device *usbhid = hid->driver_data; |
| 653 | int res; |
| 654 | |
Oliver Neukum | 0361a28 | 2008-12-17 15:38:03 +0100 | [diff] [blame] | 655 | mutex_lock(&hid_open_mut); |
Oliver Neukum | 933e318 | 2007-07-11 14:48:58 +0200 | [diff] [blame] | 656 | if (!hid->open++) { |
| 657 | res = usb_autopm_get_interface(usbhid->intf); |
Oliver Neukum | 0361a28 | 2008-12-17 15:38:03 +0100 | [diff] [blame] | 658 | /* the device must be awake to reliable request remote wakeup */ |
Oliver Neukum | 933e318 | 2007-07-11 14:48:58 +0200 | [diff] [blame] | 659 | if (res < 0) { |
| 660 | hid->open--; |
Oliver Neukum | 0361a28 | 2008-12-17 15:38:03 +0100 | [diff] [blame] | 661 | mutex_unlock(&hid_open_mut); |
Oliver Neukum | 933e318 | 2007-07-11 14:48:58 +0200 | [diff] [blame] | 662 | return -EIO; |
| 663 | } |
Oliver Neukum | 0361a28 | 2008-12-17 15:38:03 +0100 | [diff] [blame] | 664 | usbhid->intf->needs_remote_wakeup = 1; |
| 665 | if (hid_start_in(hid)) |
| 666 | hid_io_error(hid); |
| 667 | |
| 668 | usb_autopm_put_interface(usbhid->intf); |
Oliver Neukum | 933e318 | 2007-07-11 14:48:58 +0200 | [diff] [blame] | 669 | } |
Oliver Neukum | 0361a28 | 2008-12-17 15:38:03 +0100 | [diff] [blame] | 670 | mutex_unlock(&hid_open_mut); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 671 | return 0; |
| 672 | } |
| 673 | |
Jiri Kosina | 4916b3a | 2006-12-08 18:41:03 +0100 | [diff] [blame] | 674 | void usbhid_close(struct hid_device *hid) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 675 | { |
Jiri Kosina | 4916b3a | 2006-12-08 18:41:03 +0100 | [diff] [blame] | 676 | struct usbhid_device *usbhid = hid->driver_data; |
| 677 | |
Oliver Neukum | 0361a28 | 2008-12-17 15:38:03 +0100 | [diff] [blame] | 678 | mutex_lock(&hid_open_mut); |
| 679 | |
| 680 | /* protecting hid->open to make sure we don't restart |
| 681 | * data acquistion due to a resumption we no longer |
| 682 | * care about |
| 683 | */ |
| 684 | spin_lock_irq(&usbhid->lock); |
Oliver Neukum | 933e318 | 2007-07-11 14:48:58 +0200 | [diff] [blame] | 685 | if (!--hid->open) { |
Oliver Neukum | 0361a28 | 2008-12-17 15:38:03 +0100 | [diff] [blame] | 686 | spin_unlock_irq(&usbhid->lock); |
Oliver Neukum | 89092dd | 2009-04-29 17:12:12 +0200 | [diff] [blame] | 687 | hid_cancel_delayed_stuff(usbhid); |
Jiri Kosina | 4916b3a | 2006-12-08 18:41:03 +0100 | [diff] [blame] | 688 | usb_kill_urb(usbhid->urbin); |
Oliver Neukum | 0361a28 | 2008-12-17 15:38:03 +0100 | [diff] [blame] | 689 | usbhid->intf->needs_remote_wakeup = 0; |
| 690 | } else { |
| 691 | spin_unlock_irq(&usbhid->lock); |
Oliver Neukum | 933e318 | 2007-07-11 14:48:58 +0200 | [diff] [blame] | 692 | } |
Oliver Neukum | 0361a28 | 2008-12-17 15:38:03 +0100 | [diff] [blame] | 693 | mutex_unlock(&hid_open_mut); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 694 | } |
| 695 | |
| 696 | /* |
| 697 | * Initialize all reports |
| 698 | */ |
| 699 | |
Jiri Kosina | 4916b3a | 2006-12-08 18:41:03 +0100 | [diff] [blame] | 700 | void usbhid_init_reports(struct hid_device *hid) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 701 | { |
| 702 | struct hid_report *report; |
Jiri Kosina | 4916b3a | 2006-12-08 18:41:03 +0100 | [diff] [blame] | 703 | struct usbhid_device *usbhid = hid->driver_data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 704 | int err, ret; |
| 705 | |
Michael Haboustak | bf0964d | 2005-09-05 00:12:01 -0500 | [diff] [blame] | 706 | list_for_each_entry(report, &hid->report_enum[HID_INPUT_REPORT].report_list, list) |
Jiri Kosina | 4916b3a | 2006-12-08 18:41:03 +0100 | [diff] [blame] | 707 | usbhid_submit_report(hid, report, USB_DIR_IN); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 708 | |
| 709 | list_for_each_entry(report, &hid->report_enum[HID_FEATURE_REPORT].report_list, list) |
Jiri Kosina | 4916b3a | 2006-12-08 18:41:03 +0100 | [diff] [blame] | 710 | usbhid_submit_report(hid, report, USB_DIR_IN); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 711 | |
| 712 | err = 0; |
Jiri Kosina | 4916b3a | 2006-12-08 18:41:03 +0100 | [diff] [blame] | 713 | ret = usbhid_wait_io(hid); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 714 | while (ret) { |
| 715 | err |= ret; |
Jiri Kosina | 4916b3a | 2006-12-08 18:41:03 +0100 | [diff] [blame] | 716 | if (test_bit(HID_CTRL_RUNNING, &usbhid->iofl)) |
| 717 | usb_kill_urb(usbhid->urbctrl); |
| 718 | if (test_bit(HID_OUT_RUNNING, &usbhid->iofl)) |
| 719 | usb_kill_urb(usbhid->urbout); |
| 720 | ret = usbhid_wait_io(hid); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 721 | } |
| 722 | |
| 723 | if (err) |
From: Greg Kroah-Hartman | 7d89fe1 | 2008-10-12 00:25:51 +0200 | [diff] [blame] | 724 | dev_warn(&hid->dev, "timeout initializing reports\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 725 | } |
| 726 | |
Michael Haboustak | bf0964d | 2005-09-05 00:12:01 -0500 | [diff] [blame] | 727 | /* |
Pete Zaitcev | 713c8aa | 2007-04-06 14:33:18 +0200 | [diff] [blame] | 728 | * Reset LEDs which BIOS might have left on. For now, just NumLock (0x01). |
| 729 | */ |
| 730 | static int hid_find_field_early(struct hid_device *hid, unsigned int page, |
| 731 | unsigned int hid_code, struct hid_field **pfield) |
| 732 | { |
| 733 | struct hid_report *report; |
| 734 | struct hid_field *field; |
| 735 | struct hid_usage *usage; |
| 736 | int i, j; |
| 737 | |
| 738 | list_for_each_entry(report, &hid->report_enum[HID_OUTPUT_REPORT].report_list, list) { |
| 739 | for (i = 0; i < report->maxfield; i++) { |
| 740 | field = report->field[i]; |
| 741 | for (j = 0; j < field->maxusage; j++) { |
| 742 | usage = &field->usage[j]; |
| 743 | if ((usage->hid & HID_USAGE_PAGE) == page && |
| 744 | (usage->hid & 0xFFFF) == hid_code) { |
| 745 | *pfield = field; |
| 746 | return j; |
| 747 | } |
| 748 | } |
| 749 | } |
| 750 | } |
| 751 | return -1; |
| 752 | } |
| 753 | |
Jiri Slaby | 6edfa8d | 2008-06-27 20:41:02 +0200 | [diff] [blame] | 754 | void usbhid_set_leds(struct hid_device *hid) |
Pete Zaitcev | 713c8aa | 2007-04-06 14:33:18 +0200 | [diff] [blame] | 755 | { |
| 756 | struct hid_field *field; |
| 757 | int offset; |
| 758 | |
| 759 | if ((offset = hid_find_field_early(hid, HID_UP_LED, 0x01, &field)) != -1) { |
| 760 | hid_set_field(field, offset, 0); |
| 761 | usbhid_submit_report(hid, field->report, USB_DIR_OUT); |
| 762 | } |
| 763 | } |
Jiri Slaby | 6edfa8d | 2008-06-27 20:41:02 +0200 | [diff] [blame] | 764 | EXPORT_SYMBOL_GPL(usbhid_set_leds); |
Pete Zaitcev | 713c8aa | 2007-04-06 14:33:18 +0200 | [diff] [blame] | 765 | |
| 766 | /* |
Michael Haboustak | bf0964d | 2005-09-05 00:12:01 -0500 | [diff] [blame] | 767 | * Traverse the supplied list of reports and find the longest |
| 768 | */ |
Jiri Slaby | 282bfd4 | 2008-03-28 17:06:41 +0100 | [diff] [blame] | 769 | static void hid_find_max_report(struct hid_device *hid, unsigned int type, |
| 770 | unsigned int *max) |
Michael Haboustak | bf0964d | 2005-09-05 00:12:01 -0500 | [diff] [blame] | 771 | { |
| 772 | struct hid_report *report; |
Jiri Slaby | 282bfd4 | 2008-03-28 17:06:41 +0100 | [diff] [blame] | 773 | unsigned int size; |
Michael Haboustak | bf0964d | 2005-09-05 00:12:01 -0500 | [diff] [blame] | 774 | |
| 775 | list_for_each_entry(report, &hid->report_enum[type].report_list, list) { |
Jiri Kosina | efc7ce1 | 2008-10-17 15:01:15 +0200 | [diff] [blame] | 776 | size = ((report->size - 1) >> 3) + 1 + hid->report_enum[type].numbered; |
Michael Haboustak | bf0964d | 2005-09-05 00:12:01 -0500 | [diff] [blame] | 777 | if (*max < size) |
| 778 | *max = size; |
| 779 | } |
| 780 | } |
| 781 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 782 | static int hid_alloc_buffers(struct usb_device *dev, struct hid_device *hid) |
| 783 | { |
Jiri Kosina | 4916b3a | 2006-12-08 18:41:03 +0100 | [diff] [blame] | 784 | struct usbhid_device *usbhid = hid->driver_data; |
| 785 | |
Jiri Slaby | 898089d | 2008-11-24 16:20:06 +0100 | [diff] [blame] | 786 | usbhid->inbuf = usb_buffer_alloc(dev, usbhid->bufsize, GFP_KERNEL, |
| 787 | &usbhid->inbuf_dma); |
| 788 | usbhid->outbuf = usb_buffer_alloc(dev, usbhid->bufsize, GFP_KERNEL, |
| 789 | &usbhid->outbuf_dma); |
| 790 | usbhid->cr = usb_buffer_alloc(dev, sizeof(*usbhid->cr), GFP_KERNEL, |
| 791 | &usbhid->cr_dma); |
| 792 | usbhid->ctrlbuf = usb_buffer_alloc(dev, usbhid->bufsize, GFP_KERNEL, |
| 793 | &usbhid->ctrlbuf_dma); |
| 794 | if (!usbhid->inbuf || !usbhid->outbuf || !usbhid->cr || |
| 795 | !usbhid->ctrlbuf) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 796 | return -1; |
| 797 | |
| 798 | return 0; |
| 799 | } |
| 800 | |
Jiri Kosina | d4bfa03 | 2010-01-29 15:03:36 +0100 | [diff] [blame] | 801 | static int usbhid_output_raw_report(struct hid_device *hid, __u8 *buf, size_t count, |
| 802 | unsigned char report_type) |
Jiri Kosina | efc493f | 2007-05-14 09:54:30 +0200 | [diff] [blame] | 803 | { |
| 804 | struct usbhid_device *usbhid = hid->driver_data; |
| 805 | struct usb_device *dev = hid_to_usb_dev(hid); |
| 806 | struct usb_interface *intf = usbhid->intf; |
| 807 | struct usb_host_interface *interface = intf->cur_altsetting; |
| 808 | int ret; |
| 809 | |
Alan Ott | a8ab5d5 | 2010-05-16 18:07:09 -0400 | [diff] [blame^] | 810 | if (usbhid->urbout) { |
| 811 | int actual_length; |
| 812 | int skipped_report_id = 0; |
| 813 | if (buf[0] == 0x0) { |
| 814 | /* Don't send the Report ID */ |
| 815 | buf++; |
| 816 | count--; |
| 817 | skipped_report_id = 1; |
| 818 | } |
| 819 | ret = usb_interrupt_msg(dev, usbhid->urbout->pipe, |
| 820 | buf, count, &actual_length, |
| 821 | USB_CTRL_SET_TIMEOUT); |
| 822 | /* return the number of bytes transferred */ |
| 823 | if (ret == 0) { |
| 824 | ret = actual_length; |
| 825 | /* count also the report id */ |
| 826 | if (skipped_report_id) |
| 827 | ret++; |
| 828 | } |
| 829 | } else { |
| 830 | ret = usb_control_msg(dev, usb_sndctrlpipe(dev, 0), |
| 831 | HID_REQ_SET_REPORT, |
| 832 | USB_DIR_OUT | USB_TYPE_CLASS | USB_RECIP_INTERFACE, |
| 833 | ((report_type + 1) << 8) | *buf, |
| 834 | interface->desc.bInterfaceNumber, buf + 1, count - 1, |
| 835 | USB_CTRL_SET_TIMEOUT); |
| 836 | /* count also the report id */ |
| 837 | if (ret > 0) |
| 838 | ret++; |
| 839 | } |
Jiri Kosina | efc493f | 2007-05-14 09:54:30 +0200 | [diff] [blame] | 840 | |
| 841 | return ret; |
| 842 | } |
| 843 | |
Oliver Neukum | 0361a28 | 2008-12-17 15:38:03 +0100 | [diff] [blame] | 844 | static void usbhid_restart_queues(struct usbhid_device *usbhid) |
| 845 | { |
| 846 | if (usbhid->urbout) |
| 847 | usbhid_restart_out_queue(usbhid); |
| 848 | usbhid_restart_ctrl_queue(usbhid); |
| 849 | } |
| 850 | |
| 851 | static void __usbhid_restart_queues(struct work_struct *work) |
| 852 | { |
| 853 | struct usbhid_device *usbhid = |
| 854 | container_of(work, struct usbhid_device, restart_work); |
| 855 | int r; |
| 856 | |
| 857 | r = usb_autopm_get_interface(usbhid->intf); |
| 858 | if (r < 0) |
| 859 | return; |
| 860 | usb_autopm_put_interface(usbhid->intf); |
| 861 | } |
| 862 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 863 | static void hid_free_buffers(struct usb_device *dev, struct hid_device *hid) |
| 864 | { |
Jiri Kosina | 4916b3a | 2006-12-08 18:41:03 +0100 | [diff] [blame] | 865 | struct usbhid_device *usbhid = hid->driver_data; |
| 866 | |
Dmitry Torokhov | 6675c5b | 2007-05-03 01:04:52 -0400 | [diff] [blame] | 867 | usb_buffer_free(dev, usbhid->bufsize, usbhid->inbuf, usbhid->inbuf_dma); |
| 868 | usb_buffer_free(dev, usbhid->bufsize, usbhid->outbuf, usbhid->outbuf_dma); |
| 869 | usb_buffer_free(dev, sizeof(*(usbhid->cr)), usbhid->cr, usbhid->cr_dma); |
| 870 | usb_buffer_free(dev, usbhid->bufsize, usbhid->ctrlbuf, usbhid->ctrlbuf_dma); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 871 | } |
| 872 | |
Jiri Slaby | c500c97 | 2008-05-16 11:49:16 +0200 | [diff] [blame] | 873 | static int usbhid_parse(struct hid_device *hid) |
| 874 | { |
| 875 | struct usb_interface *intf = to_usb_interface(hid->dev.parent); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 876 | struct usb_host_interface *interface = intf->cur_altsetting; |
| 877 | struct usb_device *dev = interface_to_usbdev (intf); |
| 878 | struct hid_descriptor *hdesc; |
Paul Walmsley | 2eb5dc3 | 2007-04-19 13:27:04 +0200 | [diff] [blame] | 879 | u32 quirks = 0; |
Jiri Slaby | c500c97 | 2008-05-16 11:49:16 +0200 | [diff] [blame] | 880 | unsigned int rsize = 0; |
Dmitry Torokhov | c5b7c7c | 2005-09-15 02:01:47 -0500 | [diff] [blame] | 881 | char *rdesc; |
Jiri Slaby | c500c97 | 2008-05-16 11:49:16 +0200 | [diff] [blame] | 882 | int ret, n; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 883 | |
Paul Walmsley | 2eb5dc3 | 2007-04-19 13:27:04 +0200 | [diff] [blame] | 884 | quirks = usbhid_lookup_quirk(le16_to_cpu(dev->descriptor.idVendor), |
| 885 | le16_to_cpu(dev->descriptor.idProduct)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 886 | |
Jiri Kosina | 6f4303f | 2009-01-29 00:15:51 +0100 | [diff] [blame] | 887 | if (quirks & HID_QUIRK_IGNORE) |
| 888 | return -ENODEV; |
| 889 | |
Alan Stern | 0f28b55 | 2006-05-15 14:49:04 -0400 | [diff] [blame] | 890 | /* Many keyboards and mice don't like to be polled for reports, |
| 891 | * so we will always set the HID_QUIRK_NOGET flag for them. */ |
| 892 | if (interface->desc.bInterfaceSubClass == USB_INTERFACE_SUBCLASS_BOOT) { |
| 893 | if (interface->desc.bInterfaceProtocol == USB_INTERFACE_PROTOCOL_KEYBOARD || |
| 894 | interface->desc.bInterfaceProtocol == USB_INTERFACE_PROTOCOL_MOUSE) |
| 895 | quirks |= HID_QUIRK_NOGET; |
| 896 | } |
| 897 | |
Dmitry Torokhov | c5b7c7c | 2005-09-15 02:01:47 -0500 | [diff] [blame] | 898 | if (usb_get_extra_descriptor(interface, HID_DT_HID, &hdesc) && |
| 899 | (!interface->desc.bNumEndpoints || |
| 900 | usb_get_extra_descriptor(&interface->endpoint[0], HID_DT_HID, &hdesc))) { |
Jiri Kosina | 58037eb | 2007-05-30 15:07:13 +0200 | [diff] [blame] | 901 | dbg_hid("class descriptor not present\n"); |
Jiri Slaby | c500c97 | 2008-05-16 11:49:16 +0200 | [diff] [blame] | 902 | return -ENODEV; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 903 | } |
| 904 | |
Jiri Slaby | c500c97 | 2008-05-16 11:49:16 +0200 | [diff] [blame] | 905 | hid->version = le16_to_cpu(hdesc->bcdHID); |
| 906 | hid->country = hdesc->bCountryCode; |
| 907 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 908 | for (n = 0; n < hdesc->bNumDescriptors; n++) |
| 909 | if (hdesc->desc[n].bDescriptorType == HID_DT_REPORT) |
| 910 | rsize = le16_to_cpu(hdesc->desc[n].wDescriptorLength); |
| 911 | |
| 912 | if (!rsize || rsize > HID_MAX_DESCRIPTOR_SIZE) { |
Jiri Kosina | 58037eb | 2007-05-30 15:07:13 +0200 | [diff] [blame] | 913 | dbg_hid("weird size of report descriptor (%u)\n", rsize); |
Jiri Slaby | c500c97 | 2008-05-16 11:49:16 +0200 | [diff] [blame] | 914 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 915 | } |
| 916 | |
| 917 | if (!(rdesc = kmalloc(rsize, GFP_KERNEL))) { |
Jiri Kosina | 58037eb | 2007-05-30 15:07:13 +0200 | [diff] [blame] | 918 | dbg_hid("couldn't allocate rdesc memory\n"); |
Jiri Slaby | c500c97 | 2008-05-16 11:49:16 +0200 | [diff] [blame] | 919 | return -ENOMEM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 920 | } |
| 921 | |
Vojtech Pavlik | 854561b | 2005-05-29 02:28:00 -0500 | [diff] [blame] | 922 | hid_set_idle(dev, interface->desc.bInterfaceNumber, 0, 0); |
| 923 | |
Jiri Slaby | c500c97 | 2008-05-16 11:49:16 +0200 | [diff] [blame] | 924 | ret = hid_get_class_descriptor(dev, interface->desc.bInterfaceNumber, |
| 925 | HID_DT_REPORT, rdesc, rsize); |
| 926 | if (ret < 0) { |
Jiri Kosina | 58037eb | 2007-05-30 15:07:13 +0200 | [diff] [blame] | 927 | dbg_hid("reading report descriptor failed\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 928 | kfree(rdesc); |
Jiri Slaby | c500c97 | 2008-05-16 11:49:16 +0200 | [diff] [blame] | 929 | goto err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 930 | } |
| 931 | |
Jiri Slaby | c500c97 | 2008-05-16 11:49:16 +0200 | [diff] [blame] | 932 | ret = hid_parse_report(hid, rdesc, rsize); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 933 | kfree(rdesc); |
Jiri Slaby | c500c97 | 2008-05-16 11:49:16 +0200 | [diff] [blame] | 934 | if (ret) { |
| 935 | dbg_hid("parsing report descriptor failed\n"); |
| 936 | goto err; |
| 937 | } |
| 938 | |
Zoltan Karcagi | f520899 | 2009-05-06 16:30:21 +0200 | [diff] [blame] | 939 | hid->quirks |= quirks; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 940 | |
Jiri Slaby | c500c97 | 2008-05-16 11:49:16 +0200 | [diff] [blame] | 941 | return 0; |
| 942 | err: |
| 943 | return ret; |
| 944 | } |
| 945 | |
| 946 | static int usbhid_start(struct hid_device *hid) |
| 947 | { |
| 948 | struct usb_interface *intf = to_usb_interface(hid->dev.parent); |
| 949 | struct usb_host_interface *interface = intf->cur_altsetting; |
| 950 | struct usb_device *dev = interface_to_usbdev(intf); |
Jiri Slaby | 3d5afd3 | 2008-10-27 12:16:15 +0100 | [diff] [blame] | 951 | struct usbhid_device *usbhid = hid->driver_data; |
Jiri Slaby | c500c97 | 2008-05-16 11:49:16 +0200 | [diff] [blame] | 952 | unsigned int n, insize = 0; |
| 953 | int ret; |
| 954 | |
Jiri Slaby | e3e14de | 2008-11-01 23:41:46 +0100 | [diff] [blame] | 955 | clear_bit(HID_DISCONNECTED, &usbhid->iofl); |
| 956 | |
Jiri Kosina | 4916b3a | 2006-12-08 18:41:03 +0100 | [diff] [blame] | 957 | usbhid->bufsize = HID_MIN_BUFFER_SIZE; |
| 958 | hid_find_max_report(hid, HID_INPUT_REPORT, &usbhid->bufsize); |
| 959 | hid_find_max_report(hid, HID_OUTPUT_REPORT, &usbhid->bufsize); |
| 960 | hid_find_max_report(hid, HID_FEATURE_REPORT, &usbhid->bufsize); |
| 961 | |
| 962 | if (usbhid->bufsize > HID_MAX_BUFFER_SIZE) |
| 963 | usbhid->bufsize = HID_MAX_BUFFER_SIZE; |
Michael Haboustak | bf0964d | 2005-09-05 00:12:01 -0500 | [diff] [blame] | 964 | |
| 965 | hid_find_max_report(hid, HID_INPUT_REPORT, &insize); |
| 966 | |
| 967 | if (insize > HID_MAX_BUFFER_SIZE) |
| 968 | insize = HID_MAX_BUFFER_SIZE; |
| 969 | |
Jiri Slaby | c500c97 | 2008-05-16 11:49:16 +0200 | [diff] [blame] | 970 | if (hid_alloc_buffers(dev, hid)) { |
| 971 | ret = -ENOMEM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 972 | goto fail; |
Pekka Sarnila | f345c37 | 2008-03-06 13:23:14 +0100 | [diff] [blame] | 973 | } |
| 974 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 975 | for (n = 0; n < interface->desc.bNumEndpoints; n++) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 976 | struct usb_endpoint_descriptor *endpoint; |
| 977 | int pipe; |
| 978 | int interval; |
| 979 | |
| 980 | endpoint = &interface->endpoint[n].desc; |
Jiri Slaby | 581a273 | 2008-11-24 16:20:08 +0100 | [diff] [blame] | 981 | if (!usb_endpoint_xfer_int(endpoint)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 982 | continue; |
| 983 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 984 | interval = endpoint->bInterval; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 985 | |
Pekka Sarnila | f345c37 | 2008-03-06 13:23:14 +0100 | [diff] [blame] | 986 | /* Some vendors give fullspeed interval on highspeed devides */ |
Jiri Slaby | c500c97 | 2008-05-16 11:49:16 +0200 | [diff] [blame] | 987 | if (hid->quirks & HID_QUIRK_FULLSPEED_INTERVAL && |
Pekka Sarnila | f345c37 | 2008-03-06 13:23:14 +0100 | [diff] [blame] | 988 | dev->speed == USB_SPEED_HIGH) { |
| 989 | interval = fls(endpoint->bInterval*8); |
| 990 | printk(KERN_INFO "%s: Fixing fullspeed to highspeed interval: %d -> %d\n", |
| 991 | hid->name, endpoint->bInterval, interval); |
| 992 | } |
| 993 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 994 | /* Change the polling interval of mice. */ |
| 995 | if (hid->collection->usage == HID_GD_MOUSE && hid_mousepoll_interval > 0) |
| 996 | interval = hid_mousepoll_interval; |
Dmitry Torokhov | 05f091ab | 2005-05-29 02:29:01 -0500 | [diff] [blame] | 997 | |
Jiri Slaby | c500c97 | 2008-05-16 11:49:16 +0200 | [diff] [blame] | 998 | ret = -ENOMEM; |
Luiz Fernando N. Capitulino | 0f12aa0 | 2006-10-26 13:02:51 -0300 | [diff] [blame] | 999 | if (usb_endpoint_dir_in(endpoint)) { |
Jiri Kosina | 4916b3a | 2006-12-08 18:41:03 +0100 | [diff] [blame] | 1000 | if (usbhid->urbin) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1001 | continue; |
Jiri Kosina | 4916b3a | 2006-12-08 18:41:03 +0100 | [diff] [blame] | 1002 | if (!(usbhid->urbin = usb_alloc_urb(0, GFP_KERNEL))) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1003 | goto fail; |
| 1004 | pipe = usb_rcvintpipe(dev, endpoint->bEndpointAddress); |
Jiri Kosina | 4916b3a | 2006-12-08 18:41:03 +0100 | [diff] [blame] | 1005 | usb_fill_int_urb(usbhid->urbin, dev, pipe, usbhid->inbuf, insize, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1006 | hid_irq_in, hid, interval); |
Jiri Kosina | 4916b3a | 2006-12-08 18:41:03 +0100 | [diff] [blame] | 1007 | usbhid->urbin->transfer_dma = usbhid->inbuf_dma; |
| 1008 | usbhid->urbin->transfer_flags |= URB_NO_TRANSFER_DMA_MAP; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1009 | } else { |
Jiri Kosina | 4916b3a | 2006-12-08 18:41:03 +0100 | [diff] [blame] | 1010 | if (usbhid->urbout) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1011 | continue; |
Jiri Kosina | 4916b3a | 2006-12-08 18:41:03 +0100 | [diff] [blame] | 1012 | if (!(usbhid->urbout = usb_alloc_urb(0, GFP_KERNEL))) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1013 | goto fail; |
| 1014 | pipe = usb_sndintpipe(dev, endpoint->bEndpointAddress); |
Jiri Kosina | 4916b3a | 2006-12-08 18:41:03 +0100 | [diff] [blame] | 1015 | usb_fill_int_urb(usbhid->urbout, dev, pipe, usbhid->outbuf, 0, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1016 | hid_irq_out, hid, interval); |
Jiri Kosina | 4916b3a | 2006-12-08 18:41:03 +0100 | [diff] [blame] | 1017 | usbhid->urbout->transfer_dma = usbhid->outbuf_dma; |
| 1018 | usbhid->urbout->transfer_flags |= URB_NO_TRANSFER_DMA_MAP; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1019 | } |
| 1020 | } |
| 1021 | |
Jiri Slaby | 1d1bdd2 | 2008-03-19 21:55:04 +0100 | [diff] [blame] | 1022 | init_waitqueue_head(&usbhid->wait); |
Jiri Kosina | 4916b3a | 2006-12-08 18:41:03 +0100 | [diff] [blame] | 1023 | INIT_WORK(&usbhid->reset_work, hid_reset); |
Oliver Neukum | 0361a28 | 2008-12-17 15:38:03 +0100 | [diff] [blame] | 1024 | INIT_WORK(&usbhid->restart_work, __usbhid_restart_queues); |
Jiri Kosina | 4916b3a | 2006-12-08 18:41:03 +0100 | [diff] [blame] | 1025 | setup_timer(&usbhid->io_retry, hid_retry_timeout, (unsigned long) hid); |
Alan Stern | aef4e26 | 2006-01-31 12:58:38 -0500 | [diff] [blame] | 1026 | |
Oliver Neukum | 0361a28 | 2008-12-17 15:38:03 +0100 | [diff] [blame] | 1027 | spin_lock_init(&usbhid->lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1028 | |
Jiri Kosina | 4916b3a | 2006-12-08 18:41:03 +0100 | [diff] [blame] | 1029 | usbhid->urbctrl = usb_alloc_urb(0, GFP_KERNEL); |
Jiri Slaby | c500c97 | 2008-05-16 11:49:16 +0200 | [diff] [blame] | 1030 | if (!usbhid->urbctrl) { |
| 1031 | ret = -ENOMEM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1032 | goto fail; |
Jiri Slaby | c500c97 | 2008-05-16 11:49:16 +0200 | [diff] [blame] | 1033 | } |
Dmitry Torokhov | c5b7c7c | 2005-09-15 02:01:47 -0500 | [diff] [blame] | 1034 | |
Jiri Kosina | 4916b3a | 2006-12-08 18:41:03 +0100 | [diff] [blame] | 1035 | usb_fill_control_urb(usbhid->urbctrl, dev, 0, (void *) usbhid->cr, |
| 1036 | usbhid->ctrlbuf, 1, hid_ctrl, hid); |
| 1037 | usbhid->urbctrl->setup_dma = usbhid->cr_dma; |
| 1038 | usbhid->urbctrl->transfer_dma = usbhid->ctrlbuf_dma; |
| 1039 | usbhid->urbctrl->transfer_flags |= (URB_NO_TRANSFER_DMA_MAP | URB_NO_SETUP_DMA_MAP); |
Jiri Slaby | c500c97 | 2008-05-16 11:49:16 +0200 | [diff] [blame] | 1040 | |
Jiri Kosina | 5b915d9 | 2009-11-05 14:08:03 +0100 | [diff] [blame] | 1041 | if (!(hid->quirks & HID_QUIRK_NO_INIT_REPORTS)) |
| 1042 | usbhid_init_reports(hid); |
Jiri Slaby | 93c1013 | 2008-06-27 00:04:24 +0200 | [diff] [blame] | 1043 | |
Jiri Slaby | 3d5afd3 | 2008-10-27 12:16:15 +0100 | [diff] [blame] | 1044 | set_bit(HID_STARTED, &usbhid->iofl); |
Jiri Slaby | 3d5afd3 | 2008-10-27 12:16:15 +0100 | [diff] [blame] | 1045 | |
Alan Stern | 08ef08e | 2008-10-30 23:58:51 +0100 | [diff] [blame] | 1046 | /* Some keyboards don't work until their LEDs have been set. |
| 1047 | * Since BIOSes do set the LEDs, it must be safe for any device |
| 1048 | * that supports the keyboard boot protocol. |
Alan Stern | 3d61510 | 2010-04-02 13:21:58 -0400 | [diff] [blame] | 1049 | * In addition, enable remote wakeup by default for all keyboard |
| 1050 | * devices supporting the boot protocol. |
Alan Stern | 08ef08e | 2008-10-30 23:58:51 +0100 | [diff] [blame] | 1051 | */ |
| 1052 | if (interface->desc.bInterfaceSubClass == USB_INTERFACE_SUBCLASS_BOOT && |
| 1053 | interface->desc.bInterfaceProtocol == |
Alan Stern | 3d61510 | 2010-04-02 13:21:58 -0400 | [diff] [blame] | 1054 | USB_INTERFACE_PROTOCOL_KEYBOARD) { |
Alan Stern | 08ef08e | 2008-10-30 23:58:51 +0100 | [diff] [blame] | 1055 | usbhid_set_leds(hid); |
Alan Stern | 3d61510 | 2010-04-02 13:21:58 -0400 | [diff] [blame] | 1056 | device_set_wakeup_enable(&dev->dev, 1); |
| 1057 | } |
Jiri Slaby | c500c97 | 2008-05-16 11:49:16 +0200 | [diff] [blame] | 1058 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1059 | |
| 1060 | fail: |
Jiri Kosina | 4916b3a | 2006-12-08 18:41:03 +0100 | [diff] [blame] | 1061 | usb_free_urb(usbhid->urbin); |
| 1062 | usb_free_urb(usbhid->urbout); |
| 1063 | usb_free_urb(usbhid->urbctrl); |
Jiri Slaby | e3e14de | 2008-11-01 23:41:46 +0100 | [diff] [blame] | 1064 | usbhid->urbin = NULL; |
| 1065 | usbhid->urbout = NULL; |
| 1066 | usbhid->urbctrl = NULL; |
Jiri Kosina | 22f675f | 2007-08-01 12:32:27 +0200 | [diff] [blame] | 1067 | hid_free_buffers(dev, hid); |
Jiri Slaby | c500c97 | 2008-05-16 11:49:16 +0200 | [diff] [blame] | 1068 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1069 | } |
| 1070 | |
Jiri Slaby | c500c97 | 2008-05-16 11:49:16 +0200 | [diff] [blame] | 1071 | static void usbhid_stop(struct hid_device *hid) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1072 | { |
Jiri Slaby | c500c97 | 2008-05-16 11:49:16 +0200 | [diff] [blame] | 1073 | struct usbhid_device *usbhid = hid->driver_data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1074 | |
Jiri Slaby | c500c97 | 2008-05-16 11:49:16 +0200 | [diff] [blame] | 1075 | if (WARN_ON(!usbhid)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1076 | return; |
| 1077 | |
Jiri Slaby | 3d5afd3 | 2008-10-27 12:16:15 +0100 | [diff] [blame] | 1078 | clear_bit(HID_STARTED, &usbhid->iofl); |
Oliver Neukum | 0361a28 | 2008-12-17 15:38:03 +0100 | [diff] [blame] | 1079 | spin_lock_irq(&usbhid->lock); /* Sync with error handler */ |
Oliver Neukum | 69626f2 | 2008-03-31 16:27:30 +0200 | [diff] [blame] | 1080 | set_bit(HID_DISCONNECTED, &usbhid->iofl); |
Oliver Neukum | 0361a28 | 2008-12-17 15:38:03 +0100 | [diff] [blame] | 1081 | spin_unlock_irq(&usbhid->lock); |
Jiri Kosina | 4916b3a | 2006-12-08 18:41:03 +0100 | [diff] [blame] | 1082 | usb_kill_urb(usbhid->urbin); |
| 1083 | usb_kill_urb(usbhid->urbout); |
| 1084 | usb_kill_urb(usbhid->urbctrl); |
| 1085 | |
Oliver Neukum | 0361a28 | 2008-12-17 15:38:03 +0100 | [diff] [blame] | 1086 | hid_cancel_delayed_stuff(usbhid); |
Alan Stern | aef4e26 | 2006-01-31 12:58:38 -0500 | [diff] [blame] | 1087 | |
Jiri Slaby | c500c97 | 2008-05-16 11:49:16 +0200 | [diff] [blame] | 1088 | hid->claimed = 0; |
| 1089 | |
Jiri Kosina | 4916b3a | 2006-12-08 18:41:03 +0100 | [diff] [blame] | 1090 | usb_free_urb(usbhid->urbin); |
| 1091 | usb_free_urb(usbhid->urbctrl); |
| 1092 | usb_free_urb(usbhid->urbout); |
Jiri Slaby | e3e14de | 2008-11-01 23:41:46 +0100 | [diff] [blame] | 1093 | usbhid->urbin = NULL; /* don't mess up next start */ |
| 1094 | usbhid->urbctrl = NULL; |
| 1095 | usbhid->urbout = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1096 | |
Anssi Hannula | be82097 | 2007-01-19 19:28:17 +0200 | [diff] [blame] | 1097 | hid_free_buffers(hid_to_usb_dev(hid), hid); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1098 | } |
| 1099 | |
Oliver Neukum | 0361a28 | 2008-12-17 15:38:03 +0100 | [diff] [blame] | 1100 | static int usbhid_power(struct hid_device *hid, int lvl) |
| 1101 | { |
| 1102 | int r = 0; |
| 1103 | |
| 1104 | switch (lvl) { |
| 1105 | case PM_HINT_FULLON: |
| 1106 | r = usbhid_get_power(hid); |
| 1107 | break; |
| 1108 | case PM_HINT_NORMAL: |
| 1109 | usbhid_put_power(hid); |
| 1110 | break; |
| 1111 | } |
| 1112 | return r; |
| 1113 | } |
| 1114 | |
Jiri Slaby | c500c97 | 2008-05-16 11:49:16 +0200 | [diff] [blame] | 1115 | static struct hid_ll_driver usb_hid_driver = { |
| 1116 | .parse = usbhid_parse, |
| 1117 | .start = usbhid_start, |
| 1118 | .stop = usbhid_stop, |
| 1119 | .open = usbhid_open, |
| 1120 | .close = usbhid_close, |
Oliver Neukum | 0361a28 | 2008-12-17 15:38:03 +0100 | [diff] [blame] | 1121 | .power = usbhid_power, |
Jiri Slaby | c500c97 | 2008-05-16 11:49:16 +0200 | [diff] [blame] | 1122 | .hidinput_input_event = usb_hidinput_input_event, |
| 1123 | }; |
| 1124 | |
Jiri Kosina | c4c259b | 2009-09-15 16:27:45 +0200 | [diff] [blame] | 1125 | static int usbhid_probe(struct usb_interface *intf, const struct usb_device_id *id) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1126 | { |
Jiri Slaby | 131d3a7a | 2008-11-14 12:03:47 +0100 | [diff] [blame] | 1127 | struct usb_host_interface *interface = intf->cur_altsetting; |
Jiri Slaby | c500c97 | 2008-05-16 11:49:16 +0200 | [diff] [blame] | 1128 | struct usb_device *dev = interface_to_usbdev(intf); |
Jiri Slaby | 3d5afd3 | 2008-10-27 12:16:15 +0100 | [diff] [blame] | 1129 | struct usbhid_device *usbhid; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1130 | struct hid_device *hid; |
Jiri Slaby | 131d3a7a | 2008-11-14 12:03:47 +0100 | [diff] [blame] | 1131 | unsigned int n, has_in = 0; |
Jiri Slaby | c500c97 | 2008-05-16 11:49:16 +0200 | [diff] [blame] | 1132 | size_t len; |
| 1133 | int ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1134 | |
Jiri Kosina | 58037eb | 2007-05-30 15:07:13 +0200 | [diff] [blame] | 1135 | dbg_hid("HID probe called for ifnum %d\n", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1136 | intf->altsetting->desc.bInterfaceNumber); |
| 1137 | |
Jiri Slaby | 131d3a7a | 2008-11-14 12:03:47 +0100 | [diff] [blame] | 1138 | for (n = 0; n < interface->desc.bNumEndpoints; n++) |
| 1139 | if (usb_endpoint_is_int_in(&interface->endpoint[n].desc)) |
| 1140 | has_in++; |
| 1141 | if (!has_in) { |
| 1142 | dev_err(&intf->dev, "couldn't find an input interrupt " |
| 1143 | "endpoint\n"); |
| 1144 | return -ENODEV; |
| 1145 | } |
| 1146 | |
Jiri Slaby | c500c97 | 2008-05-16 11:49:16 +0200 | [diff] [blame] | 1147 | hid = hid_allocate_device(); |
| 1148 | if (IS_ERR(hid)) |
| 1149 | return PTR_ERR(hid); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1150 | |
| 1151 | usb_set_intfdata(intf, hid); |
Jiri Slaby | c500c97 | 2008-05-16 11:49:16 +0200 | [diff] [blame] | 1152 | hid->ll_driver = &usb_hid_driver; |
| 1153 | hid->hid_output_raw_report = usbhid_output_raw_report; |
Jiri Slaby | 76483cf | 2008-09-18 12:23:33 +0200 | [diff] [blame] | 1154 | hid->ff_init = hid_pidff_init; |
Jiri Slaby | c500c97 | 2008-05-16 11:49:16 +0200 | [diff] [blame] | 1155 | #ifdef CONFIG_USB_HIDDEV |
Jiri Slaby | 93c1013 | 2008-06-27 00:04:24 +0200 | [diff] [blame] | 1156 | hid->hiddev_connect = hiddev_connect; |
Jiri Kosina | c4c259b | 2009-09-15 16:27:45 +0200 | [diff] [blame] | 1157 | hid->hiddev_disconnect = hiddev_disconnect; |
Jiri Slaby | c500c97 | 2008-05-16 11:49:16 +0200 | [diff] [blame] | 1158 | hid->hiddev_hid_event = hiddev_hid_event; |
| 1159 | hid->hiddev_report_event = hiddev_report_event; |
| 1160 | #endif |
| 1161 | hid->dev.parent = &intf->dev; |
| 1162 | hid->bus = BUS_USB; |
| 1163 | hid->vendor = le16_to_cpu(dev->descriptor.idVendor); |
| 1164 | hid->product = le16_to_cpu(dev->descriptor.idProduct); |
| 1165 | hid->name[0] = 0; |
Bastien Nocera | b5e5a37 | 2010-04-16 17:19:50 +0100 | [diff] [blame] | 1166 | hid->quirks = usbhid_lookup_quirk(hid->vendor, hid->product); |
Jiri Slaby | a73a637 | 2008-10-22 14:45:11 +0200 | [diff] [blame] | 1167 | if (intf->cur_altsetting->desc.bInterfaceProtocol == |
| 1168 | USB_INTERFACE_PROTOCOL_MOUSE) |
| 1169 | hid->type = HID_TYPE_USBMOUSE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1170 | |
Jiri Slaby | c500c97 | 2008-05-16 11:49:16 +0200 | [diff] [blame] | 1171 | if (dev->manufacturer) |
| 1172 | strlcpy(hid->name, dev->manufacturer, sizeof(hid->name)); |
| 1173 | |
| 1174 | if (dev->product) { |
| 1175 | if (dev->manufacturer) |
| 1176 | strlcat(hid->name, " ", sizeof(hid->name)); |
| 1177 | strlcat(hid->name, dev->product, sizeof(hid->name)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1178 | } |
| 1179 | |
Jiri Slaby | c500c97 | 2008-05-16 11:49:16 +0200 | [diff] [blame] | 1180 | if (!strlen(hid->name)) |
| 1181 | snprintf(hid->name, sizeof(hid->name), "HID %04x:%04x", |
| 1182 | le16_to_cpu(dev->descriptor.idVendor), |
| 1183 | le16_to_cpu(dev->descriptor.idProduct)); |
Jiri Kosina | 4916b3a | 2006-12-08 18:41:03 +0100 | [diff] [blame] | 1184 | |
Jiri Slaby | c500c97 | 2008-05-16 11:49:16 +0200 | [diff] [blame] | 1185 | usb_make_path(dev, hid->phys, sizeof(hid->phys)); |
| 1186 | strlcat(hid->phys, "/input", sizeof(hid->phys)); |
| 1187 | len = strlen(hid->phys); |
| 1188 | if (len < sizeof(hid->phys) - 1) |
| 1189 | snprintf(hid->phys + len, sizeof(hid->phys) - len, |
| 1190 | "%d", intf->altsetting[0].desc.bInterfaceNumber); |
Geoff Levand | 4a1a4d8 | 2007-01-15 20:11:52 -0800 | [diff] [blame] | 1191 | |
Jiri Slaby | c500c97 | 2008-05-16 11:49:16 +0200 | [diff] [blame] | 1192 | if (usb_string(dev, dev->descriptor.iSerialNumber, hid->uniq, 64) <= 0) |
| 1193 | hid->uniq[0] = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1194 | |
Jiri Slaby | 3d5afd3 | 2008-10-27 12:16:15 +0100 | [diff] [blame] | 1195 | usbhid = kzalloc(sizeof(*usbhid), GFP_KERNEL); |
| 1196 | if (usbhid == NULL) { |
| 1197 | ret = -ENOMEM; |
| 1198 | goto err; |
| 1199 | } |
| 1200 | |
| 1201 | hid->driver_data = usbhid; |
| 1202 | usbhid->hid = hid; |
Jiri Kosina | 57ab12e | 2010-02-17 14:25:01 +0100 | [diff] [blame] | 1203 | usbhid->intf = intf; |
| 1204 | usbhid->ifnum = interface->desc.bInterfaceNumber; |
Jiri Slaby | 3d5afd3 | 2008-10-27 12:16:15 +0100 | [diff] [blame] | 1205 | |
Jiri Slaby | 85cdaf5 | 2008-05-16 11:49:15 +0200 | [diff] [blame] | 1206 | ret = hid_add_device(hid); |
| 1207 | if (ret) { |
Jiri Slaby | d458a9d | 2008-05-16 11:49:20 +0200 | [diff] [blame] | 1208 | if (ret != -ENODEV) |
| 1209 | dev_err(&intf->dev, "can't add hid device: %d\n", ret); |
Jiri Slaby | 3d5afd3 | 2008-10-27 12:16:15 +0100 | [diff] [blame] | 1210 | goto err_free; |
Jiri Slaby | 85cdaf5 | 2008-05-16 11:49:15 +0200 | [diff] [blame] | 1211 | } |
Jiri Slaby | c500c97 | 2008-05-16 11:49:16 +0200 | [diff] [blame] | 1212 | |
| 1213 | return 0; |
Jiri Slaby | 3d5afd3 | 2008-10-27 12:16:15 +0100 | [diff] [blame] | 1214 | err_free: |
| 1215 | kfree(usbhid); |
Jiri Slaby | c500c97 | 2008-05-16 11:49:16 +0200 | [diff] [blame] | 1216 | err: |
| 1217 | hid_destroy_device(hid); |
Jiri Slaby | 85cdaf5 | 2008-05-16 11:49:15 +0200 | [diff] [blame] | 1218 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1219 | } |
| 1220 | |
Jiri Kosina | c4c259b | 2009-09-15 16:27:45 +0200 | [diff] [blame] | 1221 | static void usbhid_disconnect(struct usb_interface *intf) |
Jiri Slaby | c500c97 | 2008-05-16 11:49:16 +0200 | [diff] [blame] | 1222 | { |
| 1223 | struct hid_device *hid = usb_get_intfdata(intf); |
Jiri Slaby | 3d5afd3 | 2008-10-27 12:16:15 +0100 | [diff] [blame] | 1224 | struct usbhid_device *usbhid; |
Jiri Slaby | c500c97 | 2008-05-16 11:49:16 +0200 | [diff] [blame] | 1225 | |
| 1226 | if (WARN_ON(!hid)) |
| 1227 | return; |
| 1228 | |
Jiri Slaby | 3d5afd3 | 2008-10-27 12:16:15 +0100 | [diff] [blame] | 1229 | usbhid = hid->driver_data; |
Jiri Slaby | c500c97 | 2008-05-16 11:49:16 +0200 | [diff] [blame] | 1230 | hid_destroy_device(hid); |
Jiri Slaby | 3d5afd3 | 2008-10-27 12:16:15 +0100 | [diff] [blame] | 1231 | kfree(usbhid); |
Jiri Slaby | c500c97 | 2008-05-16 11:49:16 +0200 | [diff] [blame] | 1232 | } |
| 1233 | |
Oliver Neukum | 0361a28 | 2008-12-17 15:38:03 +0100 | [diff] [blame] | 1234 | static void hid_cancel_delayed_stuff(struct usbhid_device *usbhid) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1235 | { |
Oliver Neukum | 0361a28 | 2008-12-17 15:38:03 +0100 | [diff] [blame] | 1236 | del_timer_sync(&usbhid->io_retry); |
| 1237 | cancel_work_sync(&usbhid->restart_work); |
| 1238 | cancel_work_sync(&usbhid->reset_work); |
| 1239 | } |
| 1240 | |
| 1241 | static void hid_cease_io(struct usbhid_device *usbhid) |
| 1242 | { |
| 1243 | del_timer(&usbhid->io_retry); |
| 1244 | usb_kill_urb(usbhid->urbin); |
| 1245 | usb_kill_urb(usbhid->urbctrl); |
| 1246 | usb_kill_urb(usbhid->urbout); |
Oliver Neukum | 0361a28 | 2008-12-17 15:38:03 +0100 | [diff] [blame] | 1247 | } |
| 1248 | |
Jiri Kosina | ae2f007 | 2009-02-20 12:47:08 +0100 | [diff] [blame] | 1249 | /* Treat USB reset pretty much the same as suspend/resume */ |
| 1250 | static int hid_pre_reset(struct usb_interface *intf) |
| 1251 | { |
| 1252 | struct hid_device *hid = usb_get_intfdata(intf); |
Jiri Kosina | 4916b3a | 2006-12-08 18:41:03 +0100 | [diff] [blame] | 1253 | struct usbhid_device *usbhid = hid->driver_data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1254 | |
Jiri Kosina | ae2f007 | 2009-02-20 12:47:08 +0100 | [diff] [blame] | 1255 | spin_lock_irq(&usbhid->lock); |
| 1256 | set_bit(HID_RESET_PENDING, &usbhid->iofl); |
| 1257 | spin_unlock_irq(&usbhid->lock); |
Oliver Neukum | 6d77976 | 2009-03-22 18:01:49 +0100 | [diff] [blame] | 1258 | cancel_work_sync(&usbhid->restart_work); |
Jiri Kosina | ae2f007 | 2009-02-20 12:47:08 +0100 | [diff] [blame] | 1259 | hid_cease_io(usbhid); |
Jiri Slaby | 3d5afd3 | 2008-10-27 12:16:15 +0100 | [diff] [blame] | 1260 | |
Jiri Kosina | ae2f007 | 2009-02-20 12:47:08 +0100 | [diff] [blame] | 1261 | return 0; |
| 1262 | } |
| 1263 | |
| 1264 | /* Same routine used for post_reset and reset_resume */ |
| 1265 | static int hid_post_reset(struct usb_interface *intf) |
| 1266 | { |
| 1267 | struct usb_device *dev = interface_to_usbdev (intf); |
| 1268 | struct hid_device *hid = usb_get_intfdata(intf); |
| 1269 | struct usbhid_device *usbhid = hid->driver_data; |
| 1270 | int status; |
Jiri Kosina | 70fa9f2 | 2009-06-04 15:48:38 +0200 | [diff] [blame] | 1271 | |
Jiri Kosina | ae2f007 | 2009-02-20 12:47:08 +0100 | [diff] [blame] | 1272 | spin_lock_irq(&usbhid->lock); |
| 1273 | clear_bit(HID_RESET_PENDING, &usbhid->iofl); |
| 1274 | spin_unlock_irq(&usbhid->lock); |
| 1275 | hid_set_idle(dev, intf->cur_altsetting->desc.bInterfaceNumber, 0, 0); |
Jiri Kosina | ae2f007 | 2009-02-20 12:47:08 +0100 | [diff] [blame] | 1276 | status = hid_start_in(hid); |
| 1277 | if (status < 0) |
| 1278 | hid_io_error(hid); |
| 1279 | usbhid_restart_queues(usbhid); |
| 1280 | |
| 1281 | return 0; |
| 1282 | } |
| 1283 | |
| 1284 | int usbhid_get_power(struct hid_device *hid) |
| 1285 | { |
| 1286 | struct usbhid_device *usbhid = hid->driver_data; |
Jiri Kosina | 70fa9f2 | 2009-06-04 15:48:38 +0200 | [diff] [blame] | 1287 | |
Jiri Kosina | ae2f007 | 2009-02-20 12:47:08 +0100 | [diff] [blame] | 1288 | return usb_autopm_get_interface(usbhid->intf); |
| 1289 | } |
| 1290 | |
| 1291 | void usbhid_put_power(struct hid_device *hid) |
| 1292 | { |
| 1293 | struct usbhid_device *usbhid = hid->driver_data; |
Jiri Kosina | 70fa9f2 | 2009-06-04 15:48:38 +0200 | [diff] [blame] | 1294 | |
Jiri Kosina | ae2f007 | 2009-02-20 12:47:08 +0100 | [diff] [blame] | 1295 | usb_autopm_put_interface(usbhid->intf); |
| 1296 | } |
| 1297 | |
| 1298 | |
Jiri Kosina | 0f6f140 | 2009-01-19 09:17:18 +0100 | [diff] [blame] | 1299 | #ifdef CONFIG_PM |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1300 | static int hid_suspend(struct usb_interface *intf, pm_message_t message) |
| 1301 | { |
Oliver Neukum | 0361a28 | 2008-12-17 15:38:03 +0100 | [diff] [blame] | 1302 | struct hid_device *hid = usb_get_intfdata(intf); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1303 | struct usbhid_device *usbhid = hid->driver_data; |
Oliver Neukum | 0361a28 | 2008-12-17 15:38:03 +0100 | [diff] [blame] | 1304 | int status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1305 | |
Alan Stern | fb34d53 | 2009-11-13 11:53:59 -0500 | [diff] [blame] | 1306 | if (message.event & PM_EVENT_AUTO) { |
Oliver Neukum | 0361a28 | 2008-12-17 15:38:03 +0100 | [diff] [blame] | 1307 | spin_lock_irq(&usbhid->lock); /* Sync with error handler */ |
| 1308 | if (!test_bit(HID_RESET_PENDING, &usbhid->iofl) |
| 1309 | && !test_bit(HID_CLEAR_HALT, &usbhid->iofl) |
| 1310 | && !test_bit(HID_OUT_RUNNING, &usbhid->iofl) |
| 1311 | && !test_bit(HID_CTRL_RUNNING, &usbhid->iofl) |
| 1312 | && !test_bit(HID_KEYS_PRESSED, &usbhid->iofl) |
| 1313 | && (!usbhid->ledcount || ignoreled)) |
| 1314 | { |
| 1315 | set_bit(HID_REPORTED_IDLE, &usbhid->iofl); |
| 1316 | spin_unlock_irq(&usbhid->lock); |
| 1317 | } else { |
| 1318 | usbhid_mark_busy(usbhid); |
| 1319 | spin_unlock_irq(&usbhid->lock); |
| 1320 | return -EBUSY; |
| 1321 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1322 | |
Oliver Neukum | 0361a28 | 2008-12-17 15:38:03 +0100 | [diff] [blame] | 1323 | } else { |
| 1324 | spin_lock_irq(&usbhid->lock); |
| 1325 | set_bit(HID_REPORTED_IDLE, &usbhid->iofl); |
| 1326 | spin_unlock_irq(&usbhid->lock); |
| 1327 | if (usbhid_wait_io(hid) < 0) |
| 1328 | return -EIO; |
| 1329 | } |
| 1330 | |
Alan Stern | fb34d53 | 2009-11-13 11:53:59 -0500 | [diff] [blame] | 1331 | if (!ignoreled && (message.event & PM_EVENT_AUTO)) { |
Oliver Neukum | 0361a28 | 2008-12-17 15:38:03 +0100 | [diff] [blame] | 1332 | spin_lock_irq(&usbhid->lock); |
| 1333 | if (test_bit(HID_LED_ON, &usbhid->iofl)) { |
| 1334 | spin_unlock_irq(&usbhid->lock); |
| 1335 | usbhid_mark_busy(usbhid); |
| 1336 | return -EBUSY; |
| 1337 | } |
| 1338 | spin_unlock_irq(&usbhid->lock); |
| 1339 | } |
| 1340 | |
| 1341 | hid_cancel_delayed_stuff(usbhid); |
| 1342 | hid_cease_io(usbhid); |
| 1343 | |
Alan Stern | fb34d53 | 2009-11-13 11:53:59 -0500 | [diff] [blame] | 1344 | if ((message.event & PM_EVENT_AUTO) && |
| 1345 | test_bit(HID_KEYS_PRESSED, &usbhid->iofl)) { |
Oliver Neukum | 0361a28 | 2008-12-17 15:38:03 +0100 | [diff] [blame] | 1346 | /* lost race against keypresses */ |
| 1347 | status = hid_start_in(hid); |
| 1348 | if (status < 0) |
| 1349 | hid_io_error(hid); |
| 1350 | usbhid_mark_busy(usbhid); |
| 1351 | return -EBUSY; |
| 1352 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1353 | dev_dbg(&intf->dev, "suspend\n"); |
| 1354 | return 0; |
| 1355 | } |
| 1356 | |
| 1357 | static int hid_resume(struct usb_interface *intf) |
| 1358 | { |
| 1359 | struct hid_device *hid = usb_get_intfdata (intf); |
| 1360 | struct usbhid_device *usbhid = hid->driver_data; |
| 1361 | int status; |
| 1362 | |
Jiri Slaby | fde5be3 | 2008-11-23 12:03:20 +0100 | [diff] [blame] | 1363 | if (!test_bit(HID_STARTED, &usbhid->iofl)) |
Jiri Slaby | 3d5afd3 | 2008-10-27 12:16:15 +0100 | [diff] [blame] | 1364 | return 0; |
Jiri Slaby | 3d5afd3 | 2008-10-27 12:16:15 +0100 | [diff] [blame] | 1365 | |
Oliver Neukum | 0361a28 | 2008-12-17 15:38:03 +0100 | [diff] [blame] | 1366 | clear_bit(HID_REPORTED_IDLE, &usbhid->iofl); |
| 1367 | usbhid_mark_busy(usbhid); |
| 1368 | |
| 1369 | if (test_bit(HID_CLEAR_HALT, &usbhid->iofl) || |
| 1370 | test_bit(HID_RESET_PENDING, &usbhid->iofl)) |
| 1371 | schedule_work(&usbhid->reset_work); |
Alan Stern | df9a1f4 | 2006-06-01 13:55:28 -0400 | [diff] [blame] | 1372 | usbhid->retry_delay = 0; |
| 1373 | status = hid_start_in(hid); |
Oliver Neukum | 0361a28 | 2008-12-17 15:38:03 +0100 | [diff] [blame] | 1374 | if (status < 0) |
| 1375 | hid_io_error(hid); |
| 1376 | usbhid_restart_queues(usbhid); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1377 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1378 | dev_dbg(&intf->dev, "resume status %d\n", status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1379 | return 0; |
| 1380 | } |
| 1381 | |
Oliver Neukum | 378a0ed | 2009-02-18 11:46:45 +0100 | [diff] [blame] | 1382 | static int hid_reset_resume(struct usb_interface *intf) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1383 | { |
Oliver Neukum | 378a0ed | 2009-02-18 11:46:45 +0100 | [diff] [blame] | 1384 | struct hid_device *hid = usb_get_intfdata(intf); |
| 1385 | struct usbhid_device *usbhid = hid->driver_data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1386 | |
Oliver Neukum | 378a0ed | 2009-02-18 11:46:45 +0100 | [diff] [blame] | 1387 | clear_bit(HID_REPORTED_IDLE, &usbhid->iofl); |
| 1388 | return hid_post_reset(intf); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1389 | } |
| 1390 | |
Jiri Kosina | ae2f007 | 2009-02-20 12:47:08 +0100 | [diff] [blame] | 1391 | #endif /* CONFIG_PM */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1392 | |
Márton Németh | d67dec5 | 2010-01-10 17:59:22 +0100 | [diff] [blame] | 1393 | static const struct usb_device_id hid_usb_ids[] = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1394 | { .match_flags = USB_DEVICE_ID_MATCH_INT_CLASS, |
| 1395 | .bInterfaceClass = USB_INTERFACE_CLASS_HID }, |
| 1396 | { } /* Terminating entry */ |
| 1397 | }; |
| 1398 | |
| 1399 | MODULE_DEVICE_TABLE (usb, hid_usb_ids); |
| 1400 | |
| 1401 | static struct usb_driver hid_driver = { |
| 1402 | .name = "usbhid", |
Jiri Kosina | c4c259b | 2009-09-15 16:27:45 +0200 | [diff] [blame] | 1403 | .probe = usbhid_probe, |
| 1404 | .disconnect = usbhid_disconnect, |
Jiri Kosina | 0f6f140 | 2009-01-19 09:17:18 +0100 | [diff] [blame] | 1405 | #ifdef CONFIG_PM |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1406 | .suspend = hid_suspend, |
| 1407 | .resume = hid_resume, |
Oliver Neukum | 378a0ed | 2009-02-18 11:46:45 +0100 | [diff] [blame] | 1408 | .reset_resume = hid_reset_resume, |
Jiri Kosina | 0f6f140 | 2009-01-19 09:17:18 +0100 | [diff] [blame] | 1409 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1410 | .pre_reset = hid_pre_reset, |
| 1411 | .post_reset = hid_post_reset, |
| 1412 | .id_table = hid_usb_ids, |
Oliver Neukum | 933e318 | 2007-07-11 14:48:58 +0200 | [diff] [blame] | 1413 | .supports_autosuspend = 1, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1414 | }; |
| 1415 | |
Jiri Slaby | 85cdaf5 | 2008-05-16 11:49:15 +0200 | [diff] [blame] | 1416 | static const struct hid_device_id hid_usb_table[] = { |
| 1417 | { HID_USB_DEVICE(HID_ANY_ID, HID_ANY_ID) }, |
| 1418 | { } |
| 1419 | }; |
| 1420 | |
| 1421 | static struct hid_driver hid_usb_driver = { |
| 1422 | .name = "generic-usb", |
| 1423 | .id_table = hid_usb_table, |
| 1424 | }; |
| 1425 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1426 | static int __init hid_init(void) |
| 1427 | { |
Oliver Neukum | 0361a28 | 2008-12-17 15:38:03 +0100 | [diff] [blame] | 1428 | int retval = -ENOMEM; |
| 1429 | |
| 1430 | resumption_waker = create_freezeable_workqueue("usbhid_resumer"); |
| 1431 | if (!resumption_waker) |
| 1432 | goto no_queue; |
Jiri Slaby | 85cdaf5 | 2008-05-16 11:49:15 +0200 | [diff] [blame] | 1433 | retval = hid_register_driver(&hid_usb_driver); |
| 1434 | if (retval) |
| 1435 | goto hid_register_fail; |
Paul Walmsley | 876b927 | 2007-04-19 14:56:12 +0200 | [diff] [blame] | 1436 | retval = usbhid_quirks_init(quirks_param); |
| 1437 | if (retval) |
| 1438 | goto usbhid_quirks_init_fail; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1439 | retval = hiddev_init(); |
| 1440 | if (retval) |
| 1441 | goto hiddev_init_fail; |
| 1442 | retval = usb_register(&hid_driver); |
| 1443 | if (retval) |
| 1444 | goto usb_register_fail; |
Jiri Kosina | ccabcd2 | 2009-10-02 18:31:36 +0200 | [diff] [blame] | 1445 | printk(KERN_INFO KBUILD_MODNAME ": " DRIVER_DESC "\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1446 | |
| 1447 | return 0; |
| 1448 | usb_register_fail: |
| 1449 | hiddev_exit(); |
| 1450 | hiddev_init_fail: |
Paul Walmsley | 876b927 | 2007-04-19 14:56:12 +0200 | [diff] [blame] | 1451 | usbhid_quirks_exit(); |
| 1452 | usbhid_quirks_init_fail: |
Jiri Slaby | 85cdaf5 | 2008-05-16 11:49:15 +0200 | [diff] [blame] | 1453 | hid_unregister_driver(&hid_usb_driver); |
| 1454 | hid_register_fail: |
Oliver Neukum | 0361a28 | 2008-12-17 15:38:03 +0100 | [diff] [blame] | 1455 | destroy_workqueue(resumption_waker); |
| 1456 | no_queue: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1457 | return retval; |
| 1458 | } |
| 1459 | |
| 1460 | static void __exit hid_exit(void) |
| 1461 | { |
| 1462 | usb_deregister(&hid_driver); |
| 1463 | hiddev_exit(); |
Paul Walmsley | 876b927 | 2007-04-19 14:56:12 +0200 | [diff] [blame] | 1464 | usbhid_quirks_exit(); |
Jiri Slaby | 85cdaf5 | 2008-05-16 11:49:15 +0200 | [diff] [blame] | 1465 | hid_unregister_driver(&hid_usb_driver); |
Oliver Neukum | 0361a28 | 2008-12-17 15:38:03 +0100 | [diff] [blame] | 1466 | destroy_workqueue(resumption_waker); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1467 | } |
| 1468 | |
| 1469 | module_init(hid_init); |
| 1470 | module_exit(hid_exit); |
| 1471 | |
Jiri Kosina | 88adb72 | 2009-10-02 18:29:34 +0200 | [diff] [blame] | 1472 | MODULE_AUTHOR("Andreas Gal"); |
| 1473 | MODULE_AUTHOR("Vojtech Pavlik"); |
| 1474 | MODULE_AUTHOR("Jiri Kosina"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1475 | MODULE_DESCRIPTION(DRIVER_DESC); |
| 1476 | MODULE_LICENSE(DRIVER_LICENSE); |