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 |
Jiri Kosina | dde5845 | 2006-12-08 18:40:44 +0100 | [diff] [blame] | 7 | * Copyright (c) 2006 Jiri Kosina |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 8 | */ |
| 9 | |
| 10 | /* |
| 11 | * This program is free software; you can redistribute it and/or modify it |
| 12 | * under the terms of the GNU General Public License as published by the Free |
| 13 | * Software Foundation; either version 2 of the License, or (at your option) |
| 14 | * any later version. |
| 15 | */ |
| 16 | |
| 17 | #include <linux/module.h> |
| 18 | #include <linux/slab.h> |
| 19 | #include <linux/init.h> |
| 20 | #include <linux/kernel.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 21 | #include <linux/list.h> |
| 22 | #include <linux/mm.h> |
| 23 | #include <linux/smp_lock.h> |
| 24 | #include <linux/spinlock.h> |
| 25 | #include <asm/unaligned.h> |
| 26 | #include <asm/byteorder.h> |
| 27 | #include <linux/input.h> |
| 28 | #include <linux/wait.h> |
| 29 | |
| 30 | #undef DEBUG |
| 31 | #undef DEBUG_DATA |
| 32 | |
| 33 | #include <linux/usb.h> |
| 34 | |
Jiri Kosina | dde5845 | 2006-12-08 18:40:44 +0100 | [diff] [blame] | 35 | #include <linux/hid.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 36 | #include <linux/hiddev.h> |
Jiri Kosina | c080d89 | 2007-01-25 11:43:31 +0100 | [diff] [blame] | 37 | #include <linux/hid-debug.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 | |
Michael Haboustak | bf0964d | 2005-09-05 00:12:01 -0500 | [diff] [blame] | 44 | #define DRIVER_VERSION "v2.6" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 45 | #define DRIVER_AUTHOR "Andreas Gal, Vojtech Pavlik" |
| 46 | #define DRIVER_DESC "USB HID core driver" |
| 47 | #define DRIVER_LICENSE "GPL" |
| 48 | |
| 49 | static char *hid_types[] = {"Device", "Pointer", "Mouse", "Device", "Joystick", |
| 50 | "Gamepad", "Keyboard", "Keypad", "Multi-Axis Controller"}; |
| 51 | /* |
| 52 | * Module parameters. |
| 53 | */ |
| 54 | |
| 55 | static unsigned int hid_mousepoll_interval; |
| 56 | module_param_named(mousepoll, hid_mousepoll_interval, uint, 0644); |
| 57 | MODULE_PARM_DESC(mousepoll, "Polling interval of mice"); |
| 58 | |
| 59 | /* |
Alan Stern | aef4e26 | 2006-01-31 12:58:38 -0500 | [diff] [blame] | 60 | * Input submission and I/O error handler. |
| 61 | */ |
| 62 | |
| 63 | static void hid_io_error(struct hid_device *hid); |
| 64 | |
| 65 | /* Start up the input URB */ |
| 66 | static int hid_start_in(struct hid_device *hid) |
| 67 | { |
| 68 | unsigned long flags; |
| 69 | int rc = 0; |
Jiri Kosina | 4916b3a | 2006-12-08 18:41:03 +0100 | [diff] [blame] | 70 | struct usbhid_device *usbhid = hid->driver_data; |
Alan Stern | aef4e26 | 2006-01-31 12:58:38 -0500 | [diff] [blame] | 71 | |
Jiri Kosina | 4916b3a | 2006-12-08 18:41:03 +0100 | [diff] [blame] | 72 | spin_lock_irqsave(&usbhid->inlock, flags); |
| 73 | if (hid->open > 0 && !test_bit(HID_SUSPENDED, &usbhid->iofl) && |
| 74 | !test_and_set_bit(HID_IN_RUNNING, &usbhid->iofl)) { |
| 75 | rc = usb_submit_urb(usbhid->urbin, GFP_ATOMIC); |
Alan Stern | aef4e26 | 2006-01-31 12:58:38 -0500 | [diff] [blame] | 76 | if (rc != 0) |
Jiri Kosina | 4916b3a | 2006-12-08 18:41:03 +0100 | [diff] [blame] | 77 | clear_bit(HID_IN_RUNNING, &usbhid->iofl); |
Alan Stern | aef4e26 | 2006-01-31 12:58:38 -0500 | [diff] [blame] | 78 | } |
Jiri Kosina | 4916b3a | 2006-12-08 18:41:03 +0100 | [diff] [blame] | 79 | spin_unlock_irqrestore(&usbhid->inlock, flags); |
Alan Stern | aef4e26 | 2006-01-31 12:58:38 -0500 | [diff] [blame] | 80 | return rc; |
| 81 | } |
| 82 | |
| 83 | /* I/O retry timer routine */ |
| 84 | static void hid_retry_timeout(unsigned long _hid) |
| 85 | { |
| 86 | struct hid_device *hid = (struct hid_device *) _hid; |
Jiri Kosina | 4916b3a | 2006-12-08 18:41:03 +0100 | [diff] [blame] | 87 | struct usbhid_device *usbhid = hid->driver_data; |
Alan Stern | aef4e26 | 2006-01-31 12:58:38 -0500 | [diff] [blame] | 88 | |
Jiri Kosina | 4916b3a | 2006-12-08 18:41:03 +0100 | [diff] [blame] | 89 | dev_dbg(&usbhid->intf->dev, "retrying intr urb\n"); |
Alan Stern | aef4e26 | 2006-01-31 12:58:38 -0500 | [diff] [blame] | 90 | if (hid_start_in(hid)) |
| 91 | hid_io_error(hid); |
| 92 | } |
| 93 | |
Alan Stern | 6d8fc4d | 2006-10-18 12:35:24 -0400 | [diff] [blame] | 94 | /* Workqueue routine to reset the device or clear a halt */ |
David Howells | c402895 | 2006-11-22 14:57:56 +0000 | [diff] [blame] | 95 | static void hid_reset(struct work_struct *work) |
Alan Stern | aef4e26 | 2006-01-31 12:58:38 -0500 | [diff] [blame] | 96 | { |
Jiri Kosina | 4916b3a | 2006-12-08 18:41:03 +0100 | [diff] [blame] | 97 | struct usbhid_device *usbhid = |
| 98 | container_of(work, struct usbhid_device, reset_work); |
| 99 | struct hid_device *hid = usbhid->hid; |
Alan Stern | 6d8fc4d | 2006-10-18 12:35:24 -0400 | [diff] [blame] | 100 | int rc_lock, rc = 0; |
Alan Stern | aef4e26 | 2006-01-31 12:58:38 -0500 | [diff] [blame] | 101 | |
Jiri Kosina | 4916b3a | 2006-12-08 18:41:03 +0100 | [diff] [blame] | 102 | if (test_bit(HID_CLEAR_HALT, &usbhid->iofl)) { |
| 103 | dev_dbg(&usbhid->intf->dev, "clear halt\n"); |
Anssi Hannula | be82097 | 2007-01-19 19:28:17 +0200 | [diff] [blame] | 104 | rc = usb_clear_halt(hid_to_usb_dev(hid), usbhid->urbin->pipe); |
Jiri Kosina | 4916b3a | 2006-12-08 18:41:03 +0100 | [diff] [blame] | 105 | clear_bit(HID_CLEAR_HALT, &usbhid->iofl); |
Alan Stern | 6d8fc4d | 2006-10-18 12:35:24 -0400 | [diff] [blame] | 106 | hid_start_in(hid); |
Alan Stern | aef4e26 | 2006-01-31 12:58:38 -0500 | [diff] [blame] | 107 | } |
Alan Stern | 6d8fc4d | 2006-10-18 12:35:24 -0400 | [diff] [blame] | 108 | |
Jiri Kosina | 4916b3a | 2006-12-08 18:41:03 +0100 | [diff] [blame] | 109 | else if (test_bit(HID_RESET_PENDING, &usbhid->iofl)) { |
| 110 | dev_dbg(&usbhid->intf->dev, "resetting device\n"); |
Anssi Hannula | be82097 | 2007-01-19 19:28:17 +0200 | [diff] [blame] | 111 | rc = rc_lock = usb_lock_device_for_reset(hid_to_usb_dev(hid), usbhid->intf); |
Alan Stern | 6d8fc4d | 2006-10-18 12:35:24 -0400 | [diff] [blame] | 112 | if (rc_lock >= 0) { |
Anssi Hannula | be82097 | 2007-01-19 19:28:17 +0200 | [diff] [blame] | 113 | rc = usb_reset_composite_device(hid_to_usb_dev(hid), usbhid->intf); |
Alan Stern | 6d8fc4d | 2006-10-18 12:35:24 -0400 | [diff] [blame] | 114 | if (rc_lock) |
Anssi Hannula | be82097 | 2007-01-19 19:28:17 +0200 | [diff] [blame] | 115 | usb_unlock_device(hid_to_usb_dev(hid)); |
Alan Stern | 6d8fc4d | 2006-10-18 12:35:24 -0400 | [diff] [blame] | 116 | } |
Jiri Kosina | 4916b3a | 2006-12-08 18:41:03 +0100 | [diff] [blame] | 117 | clear_bit(HID_RESET_PENDING, &usbhid->iofl); |
Alan Stern | 6d8fc4d | 2006-10-18 12:35:24 -0400 | [diff] [blame] | 118 | } |
Alan Stern | aef4e26 | 2006-01-31 12:58:38 -0500 | [diff] [blame] | 119 | |
Alan Stern | df9a1f4 | 2006-06-01 13:55:28 -0400 | [diff] [blame] | 120 | switch (rc) { |
| 121 | case 0: |
Jiri Kosina | 4916b3a | 2006-12-08 18:41:03 +0100 | [diff] [blame] | 122 | if (!test_bit(HID_IN_RUNNING, &usbhid->iofl)) |
Alan Stern | aef4e26 | 2006-01-31 12:58:38 -0500 | [diff] [blame] | 123 | hid_io_error(hid); |
Alan Stern | df9a1f4 | 2006-06-01 13:55:28 -0400 | [diff] [blame] | 124 | break; |
| 125 | default: |
Alan Stern | aef4e26 | 2006-01-31 12:58:38 -0500 | [diff] [blame] | 126 | err("can't reset device, %s-%s/input%d, status %d", |
Anssi Hannula | be82097 | 2007-01-19 19:28:17 +0200 | [diff] [blame] | 127 | hid_to_usb_dev(hid)->bus->bus_name, |
| 128 | hid_to_usb_dev(hid)->devpath, |
Jiri Kosina | 4916b3a | 2006-12-08 18:41:03 +0100 | [diff] [blame] | 129 | usbhid->ifnum, rc); |
Alan Stern | df9a1f4 | 2006-06-01 13:55:28 -0400 | [diff] [blame] | 130 | /* FALLTHROUGH */ |
| 131 | case -EHOSTUNREACH: |
| 132 | case -ENODEV: |
| 133 | case -EINTR: |
| 134 | break; |
| 135 | } |
Alan Stern | aef4e26 | 2006-01-31 12:58:38 -0500 | [diff] [blame] | 136 | } |
| 137 | |
| 138 | /* Main I/O error handler */ |
| 139 | static void hid_io_error(struct hid_device *hid) |
| 140 | { |
| 141 | unsigned long flags; |
Jiri Kosina | 4916b3a | 2006-12-08 18:41:03 +0100 | [diff] [blame] | 142 | struct usbhid_device *usbhid = hid->driver_data; |
Alan Stern | aef4e26 | 2006-01-31 12:58:38 -0500 | [diff] [blame] | 143 | |
Jiri Kosina | 4916b3a | 2006-12-08 18:41:03 +0100 | [diff] [blame] | 144 | spin_lock_irqsave(&usbhid->inlock, flags); |
Alan Stern | aef4e26 | 2006-01-31 12:58:38 -0500 | [diff] [blame] | 145 | |
| 146 | /* Stop when disconnected */ |
Jiri Kosina | 4916b3a | 2006-12-08 18:41:03 +0100 | [diff] [blame] | 147 | if (usb_get_intfdata(usbhid->intf) == NULL) |
Alan Stern | aef4e26 | 2006-01-31 12:58:38 -0500 | [diff] [blame] | 148 | goto done; |
| 149 | |
| 150 | /* When an error occurs, retry at increasing intervals */ |
Jiri Kosina | 4916b3a | 2006-12-08 18:41:03 +0100 | [diff] [blame] | 151 | if (usbhid->retry_delay == 0) { |
| 152 | usbhid->retry_delay = 13; /* Then 26, 52, 104, 104, ... */ |
| 153 | usbhid->stop_retry = jiffies + msecs_to_jiffies(1000); |
| 154 | } else if (usbhid->retry_delay < 100) |
| 155 | usbhid->retry_delay *= 2; |
Alan Stern | aef4e26 | 2006-01-31 12:58:38 -0500 | [diff] [blame] | 156 | |
Jiri Kosina | 4916b3a | 2006-12-08 18:41:03 +0100 | [diff] [blame] | 157 | if (time_after(jiffies, usbhid->stop_retry)) { |
Alan Stern | aef4e26 | 2006-01-31 12:58:38 -0500 | [diff] [blame] | 158 | |
| 159 | /* Retries failed, so do a port reset */ |
Jiri Kosina | 4916b3a | 2006-12-08 18:41:03 +0100 | [diff] [blame] | 160 | if (!test_and_set_bit(HID_RESET_PENDING, &usbhid->iofl)) { |
| 161 | schedule_work(&usbhid->reset_work); |
Alan Stern | 6d8fc4d | 2006-10-18 12:35:24 -0400 | [diff] [blame] | 162 | goto done; |
Alan Stern | aef4e26 | 2006-01-31 12:58:38 -0500 | [diff] [blame] | 163 | } |
| 164 | } |
| 165 | |
Jiri Kosina | 4916b3a | 2006-12-08 18:41:03 +0100 | [diff] [blame] | 166 | mod_timer(&usbhid->io_retry, |
| 167 | jiffies + msecs_to_jiffies(usbhid->retry_delay)); |
Alan Stern | aef4e26 | 2006-01-31 12:58:38 -0500 | [diff] [blame] | 168 | done: |
Jiri Kosina | 4916b3a | 2006-12-08 18:41:03 +0100 | [diff] [blame] | 169 | spin_unlock_irqrestore(&usbhid->inlock, flags); |
Alan Stern | aef4e26 | 2006-01-31 12:58:38 -0500 | [diff] [blame] | 170 | } |
| 171 | |
| 172 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 173 | * Input interrupt completion handler. |
| 174 | */ |
| 175 | |
David Howells | 7d12e78 | 2006-10-05 14:55:46 +0100 | [diff] [blame] | 176 | static void hid_irq_in(struct urb *urb) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 177 | { |
| 178 | struct hid_device *hid = urb->context; |
Jiri Kosina | 4916b3a | 2006-12-08 18:41:03 +0100 | [diff] [blame] | 179 | struct usbhid_device *usbhid = hid->driver_data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 180 | int status; |
| 181 | |
| 182 | switch (urb->status) { |
| 183 | case 0: /* success */ |
Jiri Kosina | 4916b3a | 2006-12-08 18:41:03 +0100 | [diff] [blame] | 184 | usbhid->retry_delay = 0; |
Jiri Kosina | aa8de2f | 2006-12-08 18:41:17 +0100 | [diff] [blame] | 185 | hid_input_report(urb->context, HID_INPUT_REPORT, |
| 186 | urb->transfer_buffer, |
| 187 | urb->actual_length, 1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 188 | break; |
Alan Stern | 6d8fc4d | 2006-10-18 12:35:24 -0400 | [diff] [blame] | 189 | case -EPIPE: /* stall */ |
Jiri Kosina | 4916b3a | 2006-12-08 18:41:03 +0100 | [diff] [blame] | 190 | clear_bit(HID_IN_RUNNING, &usbhid->iofl); |
| 191 | set_bit(HID_CLEAR_HALT, &usbhid->iofl); |
| 192 | schedule_work(&usbhid->reset_work); |
Alan Stern | 6d8fc4d | 2006-10-18 12:35:24 -0400 | [diff] [blame] | 193 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 194 | case -ECONNRESET: /* unlink */ |
| 195 | case -ENOENT: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 196 | case -ESHUTDOWN: /* unplug */ |
Jiri Kosina | 4916b3a | 2006-12-08 18:41:03 +0100 | [diff] [blame] | 197 | clear_bit(HID_IN_RUNNING, &usbhid->iofl); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 198 | return; |
Alan Stern | aef4e26 | 2006-01-31 12:58:38 -0500 | [diff] [blame] | 199 | case -EILSEQ: /* protocol error or unplug */ |
| 200 | case -EPROTO: /* protocol error or unplug */ |
Pete Zaitcev | 38e2bfc | 2006-09-18 22:49:02 -0700 | [diff] [blame] | 201 | case -ETIME: /* protocol error or unplug */ |
| 202 | case -ETIMEDOUT: /* Should never happen, but... */ |
Jiri Kosina | 4916b3a | 2006-12-08 18:41:03 +0100 | [diff] [blame] | 203 | clear_bit(HID_IN_RUNNING, &usbhid->iofl); |
Alan Stern | aef4e26 | 2006-01-31 12:58:38 -0500 | [diff] [blame] | 204 | hid_io_error(hid); |
| 205 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 206 | default: /* error */ |
| 207 | warn("input irq status %d received", urb->status); |
| 208 | } |
| 209 | |
Christoph Lameter | 54e6ecb | 2006-12-06 20:33:16 -0800 | [diff] [blame] | 210 | status = usb_submit_urb(urb, GFP_ATOMIC); |
Alan Stern | aef4e26 | 2006-01-31 12:58:38 -0500 | [diff] [blame] | 211 | if (status) { |
Jiri Kosina | 4916b3a | 2006-12-08 18:41:03 +0100 | [diff] [blame] | 212 | clear_bit(HID_IN_RUNNING, &usbhid->iofl); |
Alan Stern | aef4e26 | 2006-01-31 12:58:38 -0500 | [diff] [blame] | 213 | if (status != -EPERM) { |
| 214 | err("can't resubmit intr, %s-%s/input%d, status %d", |
Anssi Hannula | be82097 | 2007-01-19 19:28:17 +0200 | [diff] [blame] | 215 | hid_to_usb_dev(hid)->bus->bus_name, |
| 216 | hid_to_usb_dev(hid)->devpath, |
Jiri Kosina | 4916b3a | 2006-12-08 18:41:03 +0100 | [diff] [blame] | 217 | usbhid->ifnum, status); |
Alan Stern | aef4e26 | 2006-01-31 12:58:38 -0500 | [diff] [blame] | 218 | hid_io_error(hid); |
| 219 | } |
| 220 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 221 | } |
| 222 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 223 | static int hid_submit_out(struct hid_device *hid) |
| 224 | { |
| 225 | struct hid_report *report; |
Jiri Kosina | 4916b3a | 2006-12-08 18:41:03 +0100 | [diff] [blame] | 226 | struct usbhid_device *usbhid = hid->driver_data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 227 | |
Jiri Kosina | 4916b3a | 2006-12-08 18:41:03 +0100 | [diff] [blame] | 228 | report = usbhid->out[usbhid->outtail]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 229 | |
Jiri Kosina | 4916b3a | 2006-12-08 18:41:03 +0100 | [diff] [blame] | 230 | hid_output_report(report, usbhid->outbuf); |
| 231 | usbhid->urbout->transfer_buffer_length = ((report->size - 1) >> 3) + 1 + (report->id > 0); |
Anssi Hannula | be82097 | 2007-01-19 19:28:17 +0200 | [diff] [blame] | 232 | usbhid->urbout->dev = hid_to_usb_dev(hid); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 233 | |
| 234 | dbg("submitting out urb"); |
| 235 | |
Jiri Kosina | 4916b3a | 2006-12-08 18:41:03 +0100 | [diff] [blame] | 236 | if (usb_submit_urb(usbhid->urbout, GFP_ATOMIC)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 237 | err("usb_submit_urb(out) failed"); |
| 238 | return -1; |
| 239 | } |
| 240 | |
| 241 | return 0; |
| 242 | } |
| 243 | |
| 244 | static int hid_submit_ctrl(struct hid_device *hid) |
| 245 | { |
| 246 | struct hid_report *report; |
| 247 | unsigned char dir; |
| 248 | int len; |
Jiri Kosina | 4916b3a | 2006-12-08 18:41:03 +0100 | [diff] [blame] | 249 | struct usbhid_device *usbhid = hid->driver_data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 250 | |
Jiri Kosina | 4916b3a | 2006-12-08 18:41:03 +0100 | [diff] [blame] | 251 | report = usbhid->ctrl[usbhid->ctrltail].report; |
| 252 | dir = usbhid->ctrl[usbhid->ctrltail].dir; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 253 | |
| 254 | len = ((report->size - 1) >> 3) + 1 + (report->id > 0); |
| 255 | if (dir == USB_DIR_OUT) { |
Jiri Kosina | 4916b3a | 2006-12-08 18:41:03 +0100 | [diff] [blame] | 256 | hid_output_report(report, usbhid->ctrlbuf); |
Anssi Hannula | be82097 | 2007-01-19 19:28:17 +0200 | [diff] [blame] | 257 | usbhid->urbctrl->pipe = usb_sndctrlpipe(hid_to_usb_dev(hid), 0); |
Jiri Kosina | 4916b3a | 2006-12-08 18:41:03 +0100 | [diff] [blame] | 258 | usbhid->urbctrl->transfer_buffer_length = len; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 259 | } else { |
| 260 | int maxpacket, padlen; |
| 261 | |
Anssi Hannula | be82097 | 2007-01-19 19:28:17 +0200 | [diff] [blame] | 262 | usbhid->urbctrl->pipe = usb_rcvctrlpipe(hid_to_usb_dev(hid), 0); |
| 263 | maxpacket = usb_maxpacket(hid_to_usb_dev(hid), usbhid->urbctrl->pipe, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 264 | if (maxpacket > 0) { |
| 265 | padlen = (len + maxpacket - 1) / maxpacket; |
| 266 | padlen *= maxpacket; |
Jiri Kosina | 4916b3a | 2006-12-08 18:41:03 +0100 | [diff] [blame] | 267 | if (padlen > usbhid->bufsize) |
| 268 | padlen = usbhid->bufsize; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 269 | } else |
| 270 | padlen = 0; |
Jiri Kosina | 4916b3a | 2006-12-08 18:41:03 +0100 | [diff] [blame] | 271 | usbhid->urbctrl->transfer_buffer_length = padlen; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 272 | } |
Anssi Hannula | be82097 | 2007-01-19 19:28:17 +0200 | [diff] [blame] | 273 | usbhid->urbctrl->dev = hid_to_usb_dev(hid); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 274 | |
Jiri Kosina | 4916b3a | 2006-12-08 18:41:03 +0100 | [diff] [blame] | 275 | usbhid->cr->bRequestType = USB_TYPE_CLASS | USB_RECIP_INTERFACE | dir; |
| 276 | usbhid->cr->bRequest = (dir == USB_DIR_OUT) ? HID_REQ_SET_REPORT : HID_REQ_GET_REPORT; |
| 277 | usbhid->cr->wValue = cpu_to_le16(((report->type + 1) << 8) | report->id); |
| 278 | usbhid->cr->wIndex = cpu_to_le16(usbhid->ifnum); |
| 279 | usbhid->cr->wLength = cpu_to_le16(len); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 280 | |
| 281 | dbg("submitting ctrl urb: %s wValue=0x%04x wIndex=0x%04x wLength=%u", |
Jiri Kosina | 4916b3a | 2006-12-08 18:41:03 +0100 | [diff] [blame] | 282 | usbhid->cr->bRequest == HID_REQ_SET_REPORT ? "Set_Report" : "Get_Report", |
| 283 | usbhid->cr->wValue, usbhid->cr->wIndex, usbhid->cr->wLength); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 284 | |
Jiri Kosina | 4916b3a | 2006-12-08 18:41:03 +0100 | [diff] [blame] | 285 | if (usb_submit_urb(usbhid->urbctrl, GFP_ATOMIC)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 286 | err("usb_submit_urb(ctrl) failed"); |
| 287 | return -1; |
| 288 | } |
| 289 | |
| 290 | return 0; |
| 291 | } |
| 292 | |
| 293 | /* |
| 294 | * Output interrupt completion handler. |
| 295 | */ |
| 296 | |
David Howells | 7d12e78 | 2006-10-05 14:55:46 +0100 | [diff] [blame] | 297 | static void hid_irq_out(struct urb *urb) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 298 | { |
| 299 | struct hid_device *hid = urb->context; |
Jiri Kosina | 4916b3a | 2006-12-08 18:41:03 +0100 | [diff] [blame] | 300 | struct usbhid_device *usbhid = hid->driver_data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 301 | unsigned long flags; |
| 302 | int unplug = 0; |
| 303 | |
| 304 | switch (urb->status) { |
| 305 | case 0: /* success */ |
Vojtech Pavlik | c4786ca | 2005-09-05 00:13:03 -0500 | [diff] [blame] | 306 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 307 | case -ESHUTDOWN: /* unplug */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 308 | unplug = 1; |
Alan Stern | aef4e26 | 2006-01-31 12:58:38 -0500 | [diff] [blame] | 309 | case -EILSEQ: /* protocol error or unplug */ |
| 310 | case -EPROTO: /* protocol error or unplug */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 311 | case -ECONNRESET: /* unlink */ |
| 312 | case -ENOENT: |
| 313 | break; |
| 314 | default: /* error */ |
| 315 | warn("output irq status %d received", urb->status); |
| 316 | } |
| 317 | |
Jiri Kosina | 4916b3a | 2006-12-08 18:41:03 +0100 | [diff] [blame] | 318 | spin_lock_irqsave(&usbhid->outlock, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 319 | |
| 320 | if (unplug) |
Jiri Kosina | 4916b3a | 2006-12-08 18:41:03 +0100 | [diff] [blame] | 321 | usbhid->outtail = usbhid->outhead; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 322 | else |
Jiri Kosina | 4916b3a | 2006-12-08 18:41:03 +0100 | [diff] [blame] | 323 | usbhid->outtail = (usbhid->outtail + 1) & (HID_OUTPUT_FIFO_SIZE - 1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 324 | |
Jiri Kosina | 4916b3a | 2006-12-08 18:41:03 +0100 | [diff] [blame] | 325 | if (usbhid->outhead != usbhid->outtail) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 326 | if (hid_submit_out(hid)) { |
Jiri Kosina | 4916b3a | 2006-12-08 18:41:03 +0100 | [diff] [blame] | 327 | clear_bit(HID_OUT_RUNNING, &usbhid->iofl); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 328 | wake_up(&hid->wait); |
| 329 | } |
Jiri Kosina | 4916b3a | 2006-12-08 18:41:03 +0100 | [diff] [blame] | 330 | spin_unlock_irqrestore(&usbhid->outlock, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 331 | return; |
| 332 | } |
| 333 | |
Jiri Kosina | 4916b3a | 2006-12-08 18:41:03 +0100 | [diff] [blame] | 334 | clear_bit(HID_OUT_RUNNING, &usbhid->iofl); |
| 335 | spin_unlock_irqrestore(&usbhid->outlock, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 336 | wake_up(&hid->wait); |
| 337 | } |
| 338 | |
| 339 | /* |
| 340 | * Control pipe completion handler. |
| 341 | */ |
| 342 | |
David Howells | 7d12e78 | 2006-10-05 14:55:46 +0100 | [diff] [blame] | 343 | static void hid_ctrl(struct urb *urb) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 344 | { |
| 345 | struct hid_device *hid = urb->context; |
Jiri Kosina | 4916b3a | 2006-12-08 18:41:03 +0100 | [diff] [blame] | 346 | struct usbhid_device *usbhid = hid->driver_data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 347 | unsigned long flags; |
| 348 | int unplug = 0; |
| 349 | |
Jiri Kosina | 4916b3a | 2006-12-08 18:41:03 +0100 | [diff] [blame] | 350 | spin_lock_irqsave(&usbhid->ctrllock, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 351 | |
| 352 | switch (urb->status) { |
| 353 | case 0: /* success */ |
Jiri Kosina | 4916b3a | 2006-12-08 18:41:03 +0100 | [diff] [blame] | 354 | if (usbhid->ctrl[usbhid->ctrltail].dir == USB_DIR_IN) |
Jiri Kosina | aa8de2f | 2006-12-08 18:41:17 +0100 | [diff] [blame] | 355 | hid_input_report(urb->context, usbhid->ctrl[usbhid->ctrltail].report->type, |
| 356 | urb->transfer_buffer, urb->actual_length, 0); |
Vojtech Pavlik | c4786ca | 2005-09-05 00:13:03 -0500 | [diff] [blame] | 357 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 358 | case -ESHUTDOWN: /* unplug */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 359 | unplug = 1; |
Alan Stern | aef4e26 | 2006-01-31 12:58:38 -0500 | [diff] [blame] | 360 | case -EILSEQ: /* protocol error or unplug */ |
| 361 | case -EPROTO: /* protocol error or unplug */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 362 | case -ECONNRESET: /* unlink */ |
| 363 | case -ENOENT: |
| 364 | case -EPIPE: /* report not available */ |
| 365 | break; |
| 366 | default: /* error */ |
| 367 | warn("ctrl urb status %d received", urb->status); |
| 368 | } |
| 369 | |
| 370 | if (unplug) |
Jiri Kosina | 4916b3a | 2006-12-08 18:41:03 +0100 | [diff] [blame] | 371 | usbhid->ctrltail = usbhid->ctrlhead; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 372 | else |
Jiri Kosina | 4916b3a | 2006-12-08 18:41:03 +0100 | [diff] [blame] | 373 | usbhid->ctrltail = (usbhid->ctrltail + 1) & (HID_CONTROL_FIFO_SIZE - 1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 374 | |
Jiri Kosina | 4916b3a | 2006-12-08 18:41:03 +0100 | [diff] [blame] | 375 | if (usbhid->ctrlhead != usbhid->ctrltail) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 376 | if (hid_submit_ctrl(hid)) { |
Jiri Kosina | 4916b3a | 2006-12-08 18:41:03 +0100 | [diff] [blame] | 377 | clear_bit(HID_CTRL_RUNNING, &usbhid->iofl); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 378 | wake_up(&hid->wait); |
| 379 | } |
Jiri Kosina | 4916b3a | 2006-12-08 18:41:03 +0100 | [diff] [blame] | 380 | spin_unlock_irqrestore(&usbhid->ctrllock, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 381 | return; |
| 382 | } |
| 383 | |
Jiri Kosina | 4916b3a | 2006-12-08 18:41:03 +0100 | [diff] [blame] | 384 | clear_bit(HID_CTRL_RUNNING, &usbhid->iofl); |
| 385 | spin_unlock_irqrestore(&usbhid->ctrllock, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 386 | wake_up(&hid->wait); |
| 387 | } |
| 388 | |
Jiri Kosina | 4916b3a | 2006-12-08 18:41:03 +0100 | [diff] [blame] | 389 | void usbhid_submit_report(struct hid_device *hid, struct hid_report *report, unsigned char dir) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 390 | { |
| 391 | int head; |
| 392 | unsigned long flags; |
Jiri Kosina | 4916b3a | 2006-12-08 18:41:03 +0100 | [diff] [blame] | 393 | struct usbhid_device *usbhid = hid->driver_data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 394 | |
| 395 | if ((hid->quirks & HID_QUIRK_NOGET) && dir == USB_DIR_IN) |
| 396 | return; |
| 397 | |
Jiri Kosina | 4916b3a | 2006-12-08 18:41:03 +0100 | [diff] [blame] | 398 | if (usbhid->urbout && dir == USB_DIR_OUT && report->type == HID_OUTPUT_REPORT) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 399 | |
Jiri Kosina | 4916b3a | 2006-12-08 18:41:03 +0100 | [diff] [blame] | 400 | spin_lock_irqsave(&usbhid->outlock, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 401 | |
Jiri Kosina | 4916b3a | 2006-12-08 18:41:03 +0100 | [diff] [blame] | 402 | if ((head = (usbhid->outhead + 1) & (HID_OUTPUT_FIFO_SIZE - 1)) == usbhid->outtail) { |
| 403 | spin_unlock_irqrestore(&usbhid->outlock, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 404 | warn("output queue full"); |
| 405 | return; |
| 406 | } |
| 407 | |
Jiri Kosina | 4916b3a | 2006-12-08 18:41:03 +0100 | [diff] [blame] | 408 | usbhid->out[usbhid->outhead] = report; |
| 409 | usbhid->outhead = head; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 410 | |
Jiri Kosina | 4916b3a | 2006-12-08 18:41:03 +0100 | [diff] [blame] | 411 | if (!test_and_set_bit(HID_OUT_RUNNING, &usbhid->iofl)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 412 | if (hid_submit_out(hid)) |
Jiri Kosina | 4916b3a | 2006-12-08 18:41:03 +0100 | [diff] [blame] | 413 | clear_bit(HID_OUT_RUNNING, &usbhid->iofl); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 414 | |
Jiri Kosina | 4916b3a | 2006-12-08 18:41:03 +0100 | [diff] [blame] | 415 | spin_unlock_irqrestore(&usbhid->outlock, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 416 | return; |
| 417 | } |
| 418 | |
Jiri Kosina | 4916b3a | 2006-12-08 18:41:03 +0100 | [diff] [blame] | 419 | spin_lock_irqsave(&usbhid->ctrllock, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 420 | |
Jiri Kosina | 4916b3a | 2006-12-08 18:41:03 +0100 | [diff] [blame] | 421 | if ((head = (usbhid->ctrlhead + 1) & (HID_CONTROL_FIFO_SIZE - 1)) == usbhid->ctrltail) { |
| 422 | spin_unlock_irqrestore(&usbhid->ctrllock, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 423 | warn("control queue full"); |
| 424 | return; |
| 425 | } |
| 426 | |
Jiri Kosina | 4916b3a | 2006-12-08 18:41:03 +0100 | [diff] [blame] | 427 | usbhid->ctrl[usbhid->ctrlhead].report = report; |
| 428 | usbhid->ctrl[usbhid->ctrlhead].dir = dir; |
| 429 | usbhid->ctrlhead = head; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 430 | |
Jiri Kosina | 4916b3a | 2006-12-08 18:41:03 +0100 | [diff] [blame] | 431 | if (!test_and_set_bit(HID_CTRL_RUNNING, &usbhid->iofl)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 432 | if (hid_submit_ctrl(hid)) |
Jiri Kosina | 4916b3a | 2006-12-08 18:41:03 +0100 | [diff] [blame] | 433 | clear_bit(HID_CTRL_RUNNING, &usbhid->iofl); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 434 | |
Jiri Kosina | 4916b3a | 2006-12-08 18:41:03 +0100 | [diff] [blame] | 435 | spin_unlock_irqrestore(&usbhid->ctrllock, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 436 | } |
| 437 | |
Jiri Kosina | 229695e | 2006-12-08 18:40:53 +0100 | [diff] [blame] | 438 | 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] | 439 | { |
| 440 | struct hid_device *hid = dev->private; |
| 441 | struct hid_field *field; |
| 442 | int offset; |
| 443 | |
| 444 | if (type == EV_FF) |
| 445 | return input_ff_event(dev, type, code, value); |
| 446 | |
| 447 | if (type != EV_LED) |
| 448 | return -1; |
| 449 | |
| 450 | if ((offset = hidinput_find_field(hid, type, code, &field)) == -1) { |
| 451 | warn("event field not found"); |
| 452 | return -1; |
| 453 | } |
| 454 | |
| 455 | hid_set_field(field, offset, value); |
Jiri Kosina | 4916b3a | 2006-12-08 18:41:03 +0100 | [diff] [blame] | 456 | usbhid_submit_report(hid, field->report, USB_DIR_OUT); |
Jiri Kosina | dde5845 | 2006-12-08 18:40:44 +0100 | [diff] [blame] | 457 | |
| 458 | return 0; |
| 459 | } |
| 460 | |
Jiri Kosina | 4916b3a | 2006-12-08 18:41:03 +0100 | [diff] [blame] | 461 | int usbhid_wait_io(struct hid_device *hid) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 462 | { |
Jiri Kosina | 4916b3a | 2006-12-08 18:41:03 +0100 | [diff] [blame] | 463 | struct usbhid_device *usbhid = hid->driver_data; |
| 464 | |
| 465 | if (!wait_event_timeout(hid->wait, (!test_bit(HID_CTRL_RUNNING, &usbhid->iofl) && |
| 466 | !test_bit(HID_OUT_RUNNING, &usbhid->iofl)), |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 467 | 10*HZ)) { |
| 468 | dbg("timeout waiting for ctrl or out queue to clear"); |
| 469 | return -1; |
| 470 | } |
| 471 | |
| 472 | return 0; |
| 473 | } |
| 474 | |
Vojtech Pavlik | 854561b | 2005-05-29 02:28:00 -0500 | [diff] [blame] | 475 | static int hid_set_idle(struct usb_device *dev, int ifnum, int report, int idle) |
| 476 | { |
Vojtech Pavlik | 71387bd | 2005-05-29 02:28:14 -0500 | [diff] [blame] | 477 | return usb_control_msg(dev, usb_sndctrlpipe(dev, 0), |
Vojtech Pavlik | 854561b | 2005-05-29 02:28:00 -0500 | [diff] [blame] | 478 | HID_REQ_SET_IDLE, USB_TYPE_CLASS | USB_RECIP_INTERFACE, (idle << 8) | report, |
| 479 | ifnum, NULL, 0, USB_CTRL_SET_TIMEOUT); |
| 480 | } |
| 481 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 482 | static int hid_get_class_descriptor(struct usb_device *dev, int ifnum, |
| 483 | unsigned char type, void *buf, int size) |
| 484 | { |
| 485 | int result, retries = 4; |
| 486 | |
Jiri Kosina | 43c7bf0 | 2007-01-26 12:58:24 +0100 | [diff] [blame] | 487 | memset(buf, 0, size); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 488 | |
| 489 | do { |
| 490 | result = usb_control_msg(dev, usb_rcvctrlpipe(dev, 0), |
| 491 | USB_REQ_GET_DESCRIPTOR, USB_RECIP_INTERFACE | USB_DIR_IN, |
| 492 | (type << 8), ifnum, buf, size, USB_CTRL_GET_TIMEOUT); |
| 493 | retries--; |
| 494 | } while (result < size && retries); |
| 495 | return result; |
| 496 | } |
| 497 | |
Jiri Kosina | 4916b3a | 2006-12-08 18:41:03 +0100 | [diff] [blame] | 498 | int usbhid_open(struct hid_device *hid) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 499 | { |
Alan Stern | aef4e26 | 2006-01-31 12:58:38 -0500 | [diff] [blame] | 500 | ++hid->open; |
| 501 | if (hid_start_in(hid)) |
| 502 | hid_io_error(hid); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 503 | return 0; |
| 504 | } |
| 505 | |
Jiri Kosina | 4916b3a | 2006-12-08 18:41:03 +0100 | [diff] [blame] | 506 | void usbhid_close(struct hid_device *hid) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 507 | { |
Jiri Kosina | 4916b3a | 2006-12-08 18:41:03 +0100 | [diff] [blame] | 508 | struct usbhid_device *usbhid = hid->driver_data; |
| 509 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 510 | if (!--hid->open) |
Jiri Kosina | 4916b3a | 2006-12-08 18:41:03 +0100 | [diff] [blame] | 511 | usb_kill_urb(usbhid->urbin); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 512 | } |
| 513 | |
Daniel Ritz | 1d3e202 | 2006-03-29 22:41:07 +0200 | [diff] [blame] | 514 | #define USB_VENDOR_ID_PANJIT 0x134c |
| 515 | |
Ben Collins | d57cdcf | 2006-10-18 08:47:37 -0400 | [diff] [blame] | 516 | #define USB_VENDOR_ID_TURBOX 0x062a |
| 517 | #define USB_DEVICE_ID_TURBOX_KEYBOARD 0x0201 |
Zheng XiaoJun | 3f9b407 | 2007-02-05 16:40:57 -0800 | [diff] [blame] | 518 | #define USB_VENDOR_ID_CIDC 0x1677 |
Ben Collins | d57cdcf | 2006-10-18 08:47:37 -0400 | [diff] [blame] | 519 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 520 | /* |
| 521 | * Initialize all reports |
| 522 | */ |
| 523 | |
Jiri Kosina | 4916b3a | 2006-12-08 18:41:03 +0100 | [diff] [blame] | 524 | void usbhid_init_reports(struct hid_device *hid) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 525 | { |
| 526 | struct hid_report *report; |
Jiri Kosina | 4916b3a | 2006-12-08 18:41:03 +0100 | [diff] [blame] | 527 | struct usbhid_device *usbhid = hid->driver_data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 528 | int err, ret; |
| 529 | |
Michael Haboustak | bf0964d | 2005-09-05 00:12:01 -0500 | [diff] [blame] | 530 | 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] | 531 | usbhid_submit_report(hid, report, USB_DIR_IN); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 532 | |
| 533 | 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] | 534 | usbhid_submit_report(hid, report, USB_DIR_IN); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 535 | |
| 536 | err = 0; |
Jiri Kosina | 4916b3a | 2006-12-08 18:41:03 +0100 | [diff] [blame] | 537 | ret = usbhid_wait_io(hid); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 538 | while (ret) { |
| 539 | err |= ret; |
Jiri Kosina | 4916b3a | 2006-12-08 18:41:03 +0100 | [diff] [blame] | 540 | if (test_bit(HID_CTRL_RUNNING, &usbhid->iofl)) |
| 541 | usb_kill_urb(usbhid->urbctrl); |
| 542 | if (test_bit(HID_OUT_RUNNING, &usbhid->iofl)) |
| 543 | usb_kill_urb(usbhid->urbout); |
| 544 | ret = usbhid_wait_io(hid); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 545 | } |
| 546 | |
| 547 | if (err) |
Olaf Hering | de289fd | 2006-01-06 12:45:28 +0100 | [diff] [blame] | 548 | warn("timeout initializing reports"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 549 | } |
| 550 | |
Jeremy Roberson | 6f8d9e2 | 2006-08-28 19:58:28 -0700 | [diff] [blame] | 551 | #define USB_VENDOR_ID_GTCO 0x078c |
| 552 | #define USB_DEVICE_ID_GTCO_90 0x0090 |
| 553 | #define USB_DEVICE_ID_GTCO_100 0x0100 |
| 554 | #define USB_DEVICE_ID_GTCO_101 0x0101 |
| 555 | #define USB_DEVICE_ID_GTCO_103 0x0103 |
| 556 | #define USB_DEVICE_ID_GTCO_104 0x0104 |
| 557 | #define USB_DEVICE_ID_GTCO_105 0x0105 |
| 558 | #define USB_DEVICE_ID_GTCO_106 0x0106 |
| 559 | #define USB_DEVICE_ID_GTCO_107 0x0107 |
| 560 | #define USB_DEVICE_ID_GTCO_108 0x0108 |
| 561 | #define USB_DEVICE_ID_GTCO_200 0x0200 |
| 562 | #define USB_DEVICE_ID_GTCO_201 0x0201 |
| 563 | #define USB_DEVICE_ID_GTCO_202 0x0202 |
| 564 | #define USB_DEVICE_ID_GTCO_203 0x0203 |
| 565 | #define USB_DEVICE_ID_GTCO_204 0x0204 |
| 566 | #define USB_DEVICE_ID_GTCO_205 0x0205 |
| 567 | #define USB_DEVICE_ID_GTCO_206 0x0206 |
| 568 | #define USB_DEVICE_ID_GTCO_207 0x0207 |
| 569 | #define USB_DEVICE_ID_GTCO_300 0x0300 |
| 570 | #define USB_DEVICE_ID_GTCO_301 0x0301 |
| 571 | #define USB_DEVICE_ID_GTCO_302 0x0302 |
| 572 | #define USB_DEVICE_ID_GTCO_303 0x0303 |
| 573 | #define USB_DEVICE_ID_GTCO_304 0x0304 |
| 574 | #define USB_DEVICE_ID_GTCO_305 0x0305 |
| 575 | #define USB_DEVICE_ID_GTCO_306 0x0306 |
| 576 | #define USB_DEVICE_ID_GTCO_307 0x0307 |
| 577 | #define USB_DEVICE_ID_GTCO_308 0x0308 |
| 578 | #define USB_DEVICE_ID_GTCO_309 0x0309 |
| 579 | #define USB_DEVICE_ID_GTCO_400 0x0400 |
| 580 | #define USB_DEVICE_ID_GTCO_401 0x0401 |
| 581 | #define USB_DEVICE_ID_GTCO_402 0x0402 |
| 582 | #define USB_DEVICE_ID_GTCO_403 0x0403 |
| 583 | #define USB_DEVICE_ID_GTCO_404 0x0404 |
Adrian Bunk | f064902 | 2006-09-04 13:41:10 +0200 | [diff] [blame] | 584 | #define USB_DEVICE_ID_GTCO_405 0x0405 |
Jeremy Roberson | 6f8d9e2 | 2006-08-28 19:58:28 -0700 | [diff] [blame] | 585 | #define USB_DEVICE_ID_GTCO_500 0x0500 |
| 586 | #define USB_DEVICE_ID_GTCO_501 0x0501 |
| 587 | #define USB_DEVICE_ID_GTCO_502 0x0502 |
| 588 | #define USB_DEVICE_ID_GTCO_503 0x0503 |
| 589 | #define USB_DEVICE_ID_GTCO_504 0x0504 |
| 590 | #define USB_DEVICE_ID_GTCO_1000 0x1000 |
| 591 | #define USB_DEVICE_ID_GTCO_1001 0x1001 |
| 592 | #define USB_DEVICE_ID_GTCO_1002 0x1002 |
| 593 | #define USB_DEVICE_ID_GTCO_1003 0x1003 |
| 594 | #define USB_DEVICE_ID_GTCO_1004 0x1004 |
| 595 | #define USB_DEVICE_ID_GTCO_1005 0x1005 |
| 596 | #define USB_DEVICE_ID_GTCO_1006 0x1006 |
| 597 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 598 | #define USB_VENDOR_ID_WACOM 0x056a |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 599 | |
Stephane VOLTZ | 5388054 | 2005-06-06 02:22:37 -0500 | [diff] [blame] | 600 | #define USB_VENDOR_ID_ACECAD 0x0460 |
| 601 | #define USB_DEVICE_ID_ACECAD_FLAIR 0x0004 |
| 602 | #define USB_DEVICE_ID_ACECAD_302 0x0008 |
| 603 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 604 | #define USB_VENDOR_ID_KBGEAR 0x084e |
| 605 | #define USB_DEVICE_ID_KBGEAR_JAMSTUDIO 0x1001 |
| 606 | |
| 607 | #define USB_VENDOR_ID_AIPTEK 0x08ca |
| 608 | #define USB_DEVICE_ID_AIPTEK_01 0x0001 |
| 609 | #define USB_DEVICE_ID_AIPTEK_10 0x0010 |
| 610 | #define USB_DEVICE_ID_AIPTEK_20 0x0020 |
| 611 | #define USB_DEVICE_ID_AIPTEK_21 0x0021 |
| 612 | #define USB_DEVICE_ID_AIPTEK_22 0x0022 |
| 613 | #define USB_DEVICE_ID_AIPTEK_23 0x0023 |
| 614 | #define USB_DEVICE_ID_AIPTEK_24 0x0024 |
| 615 | |
| 616 | #define USB_VENDOR_ID_GRIFFIN 0x077d |
| 617 | #define USB_DEVICE_ID_POWERMATE 0x0410 |
| 618 | #define USB_DEVICE_ID_SOUNDKNOB 0x04AA |
| 619 | |
| 620 | #define USB_VENDOR_ID_ATEN 0x0557 |
| 621 | #define USB_DEVICE_ID_ATEN_UC100KM 0x2004 |
| 622 | #define USB_DEVICE_ID_ATEN_CS124U 0x2202 |
| 623 | #define USB_DEVICE_ID_ATEN_2PORTKVM 0x2204 |
| 624 | #define USB_DEVICE_ID_ATEN_4PORTKVM 0x2205 |
| 625 | #define USB_DEVICE_ID_ATEN_4PORTKVMC 0x2208 |
| 626 | |
| 627 | #define USB_VENDOR_ID_TOPMAX 0x0663 |
| 628 | #define USB_DEVICE_ID_TOPMAX_COBRAPAD 0x0103 |
| 629 | |
| 630 | #define USB_VENDOR_ID_HAPP 0x078b |
| 631 | #define USB_DEVICE_ID_UGCI_DRIVING 0x0010 |
| 632 | #define USB_DEVICE_ID_UGCI_FLYING 0x0020 |
| 633 | #define USB_DEVICE_ID_UGCI_FIGHTING 0x0030 |
| 634 | |
| 635 | #define USB_VENDOR_ID_MGE 0x0463 |
| 636 | #define USB_DEVICE_ID_MGE_UPS 0xffff |
| 637 | #define USB_DEVICE_ID_MGE_UPS1 0x0001 |
| 638 | |
| 639 | #define USB_VENDOR_ID_ONTRAK 0x0a07 |
| 640 | #define USB_DEVICE_ID_ONTRAK_ADU100 0x0064 |
| 641 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 642 | #define USB_VENDOR_ID_ESSENTIAL_REALITY 0x0d7f |
| 643 | #define USB_DEVICE_ID_ESSENTIAL_REALITY_P5 0x0100 |
| 644 | |
| 645 | #define USB_VENDOR_ID_A4TECH 0x09da |
| 646 | #define USB_DEVICE_ID_A4TECH_WCP32PU 0x0006 |
| 647 | |
Vojtech Pavlik | 61cdecd | 2005-09-05 00:13:32 -0500 | [diff] [blame] | 648 | #define USB_VENDOR_ID_AASHIMA 0x06d6 |
Luca T | 6345fdf | 2005-07-11 01:08:40 -0500 | [diff] [blame] | 649 | #define USB_DEVICE_ID_AASHIMA_GAMEPAD 0x0025 |
Vojtech Pavlik | 61cdecd | 2005-09-05 00:13:32 -0500 | [diff] [blame] | 650 | #define USB_DEVICE_ID_AASHIMA_PREDATOR 0x0026 |
Luca T | 6345fdf | 2005-07-11 01:08:40 -0500 | [diff] [blame] | 651 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 652 | #define USB_VENDOR_ID_CYPRESS 0x04b4 |
| 653 | #define USB_DEVICE_ID_CYPRESS_MOUSE 0x0001 |
| 654 | #define USB_DEVICE_ID_CYPRESS_HIDCOM 0x5500 |
Brian Schau | 7d25258 | 2005-09-05 01:57:41 -0500 | [diff] [blame] | 655 | #define USB_DEVICE_ID_CYPRESS_ULTRAMOUSE 0x7417 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 656 | |
| 657 | #define USB_VENDOR_ID_BERKSHIRE 0x0c98 |
| 658 | #define USB_DEVICE_ID_BERKSHIRE_PCWD 0x1140 |
| 659 | |
| 660 | #define USB_VENDOR_ID_ALPS 0x0433 |
| 661 | #define USB_DEVICE_ID_IBM_GAMEPAD 0x1101 |
| 662 | |
| 663 | #define USB_VENDOR_ID_SAITEK 0x06a3 |
| 664 | #define USB_DEVICE_ID_SAITEK_RUMBLEPAD 0xff17 |
| 665 | |
| 666 | #define USB_VENDOR_ID_NEC 0x073e |
| 667 | #define USB_DEVICE_ID_NEC_USB_GAME_PAD 0x0301 |
| 668 | |
| 669 | #define USB_VENDOR_ID_CHIC 0x05fe |
| 670 | #define USB_DEVICE_ID_CHIC_GAMEPAD 0x0014 |
| 671 | |
| 672 | #define USB_VENDOR_ID_GLAB 0x06c2 |
| 673 | #define USB_DEVICE_ID_4_PHIDGETSERVO_30 0x0038 |
| 674 | #define USB_DEVICE_ID_1_PHIDGETSERVO_30 0x0039 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 675 | #define USB_DEVICE_ID_0_0_4_IF_KIT 0x0040 |
Sean Young | d5176b4 | 2006-07-09 13:01:02 +0000 | [diff] [blame] | 676 | #define USB_DEVICE_ID_0_16_16_IF_KIT 0x0044 |
| 677 | #define USB_DEVICE_ID_8_8_8_IF_KIT 0x0045 |
| 678 | #define USB_DEVICE_ID_0_8_7_IF_KIT 0x0051 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 679 | #define USB_DEVICE_ID_0_8_8_IF_KIT 0x0053 |
Sean Young | d5176b4 | 2006-07-09 13:01:02 +0000 | [diff] [blame] | 680 | #define USB_DEVICE_ID_PHIDGET_MOTORCONTROL 0x0058 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 681 | |
| 682 | #define USB_VENDOR_ID_WISEGROUP 0x0925 |
| 683 | #define USB_DEVICE_ID_1_PHIDGETSERVO_20 0x8101 |
| 684 | #define USB_DEVICE_ID_4_PHIDGETSERVO_20 0x8104 |
Sean Young | d5176b4 | 2006-07-09 13:01:02 +0000 | [diff] [blame] | 685 | #define USB_DEVICE_ID_8_8_4_IF_KIT 0x8201 |
Andrew Fuller | e65335e | 2006-02-25 09:52:27 -0500 | [diff] [blame] | 686 | #define USB_DEVICE_ID_DUAL_USB_JOYPAD 0x8866 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 687 | |
Navaho Gunleg | b857c65 | 2006-06-30 09:44:03 +0200 | [diff] [blame] | 688 | #define USB_VENDOR_ID_WISEGROUP_LTD 0x6677 |
| 689 | #define USB_DEVICE_ID_SMARTJOY_DUAL_PLUS 0x8802 |
| 690 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 691 | #define USB_VENDOR_ID_CODEMERCS 0x07c0 |
Robert Marquardt | 5ddc322 | 2007-03-02 16:01:52 +0100 | [diff] [blame^] | 692 | #define USB_DEVICE_ID_CODEMERCS_IOW_FIRST 0x1500 |
| 693 | #define USB_DEVICE_ID_CODEMERCS_IOW_LAST 0x15ff |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 694 | |
| 695 | #define USB_VENDOR_ID_DELORME 0x1163 |
| 696 | #define USB_DEVICE_ID_DELORME_EARTHMATE 0x0100 |
Lonnie Mendez | dc1d100 | 2005-05-10 00:17:17 -0500 | [diff] [blame] | 697 | #define USB_DEVICE_ID_DELORME_EM_LT20 0x0200 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 698 | |
| 699 | #define USB_VENDOR_ID_MCC 0x09db |
| 700 | #define USB_DEVICE_ID_MCC_PMD1024LS 0x0076 |
| 701 | #define USB_DEVICE_ID_MCC_PMD1208LS 0x007a |
| 702 | |
Greg Kroah-Hartman | 4871d3b | 2005-06-02 22:18:12 -0700 | [diff] [blame] | 703 | #define USB_VENDOR_ID_VERNIER 0x08f7 |
| 704 | #define USB_DEVICE_ID_VERNIER_LABPRO 0x0001 |
| 705 | #define USB_DEVICE_ID_VERNIER_GOTEMP 0x0002 |
| 706 | #define USB_DEVICE_ID_VERNIER_SKIP 0x0003 |
| 707 | #define USB_DEVICE_ID_VERNIER_CYCLOPS 0x0004 |
| 708 | |
Michael Hund | 8fd6db4 | 2005-06-27 22:44:22 +0200 | [diff] [blame] | 709 | #define USB_VENDOR_ID_LD 0x0f11 |
Michael Hund | ba3e66e | 2006-02-02 09:36:43 +0100 | [diff] [blame] | 710 | #define USB_DEVICE_ID_LD_CASSY 0x1000 |
| 711 | #define USB_DEVICE_ID_LD_POCKETCASSY 0x1010 |
| 712 | #define USB_DEVICE_ID_LD_MOBILECASSY 0x1020 |
| 713 | #define USB_DEVICE_ID_LD_JWM 0x1080 |
| 714 | #define USB_DEVICE_ID_LD_DMMP 0x1081 |
| 715 | #define USB_DEVICE_ID_LD_UMIP 0x1090 |
| 716 | #define USB_DEVICE_ID_LD_XRAY1 0x1100 |
| 717 | #define USB_DEVICE_ID_LD_XRAY2 0x1101 |
| 718 | #define USB_DEVICE_ID_LD_VIDEOCOM 0x1200 |
| 719 | #define USB_DEVICE_ID_LD_COM3LAB 0x2000 |
| 720 | #define USB_DEVICE_ID_LD_TELEPORT 0x2010 |
| 721 | #define USB_DEVICE_ID_LD_NETWORKANALYSER 0x2020 |
| 722 | #define USB_DEVICE_ID_LD_POWERCONTROL 0x2030 |
| 723 | #define USB_DEVICE_ID_LD_MACHINETEST 0x2040 |
Michael Hund | 8fd6db4 | 2005-06-27 22:44:22 +0200 | [diff] [blame] | 724 | |
Vojtech Pavlik | c58de6d | 2005-09-05 00:13:15 -0500 | [diff] [blame] | 725 | #define USB_VENDOR_ID_APPLE 0x05ac |
Bart Massey | a82e49b | 2006-05-08 14:40:13 -0700 | [diff] [blame] | 726 | #define USB_DEVICE_ID_APPLE_MIGHTYMOUSE 0x0304 |
Julien BLACHE | afd21ee | 2006-11-15 00:00:17 -0500 | [diff] [blame] | 727 | #define USB_DEVICE_ID_APPLE_FOUNTAIN_ANSI 0x020e |
| 728 | #define USB_DEVICE_ID_APPLE_FOUNTAIN_ISO 0x020f |
| 729 | #define USB_DEVICE_ID_APPLE_GEYSER_ANSI 0x0214 |
| 730 | #define USB_DEVICE_ID_APPLE_GEYSER_ISO 0x0215 |
| 731 | #define USB_DEVICE_ID_APPLE_GEYSER_JIS 0x0216 |
| 732 | #define USB_DEVICE_ID_APPLE_GEYSER3_ANSI 0x0217 |
| 733 | #define USB_DEVICE_ID_APPLE_GEYSER3_ISO 0x0218 |
| 734 | #define USB_DEVICE_ID_APPLE_GEYSER3_JIS 0x0219 |
| 735 | #define USB_DEVICE_ID_APPLE_GEYSER4_ANSI 0x021a |
| 736 | #define USB_DEVICE_ID_APPLE_GEYSER4_ISO 0x021b |
| 737 | #define USB_DEVICE_ID_APPLE_GEYSER4_JIS 0x021c |
| 738 | #define USB_DEVICE_ID_APPLE_FOUNTAIN_TP_ONLY 0x030a |
| 739 | #define USB_DEVICE_ID_APPLE_GEYSER1_TP_ONLY 0x030b |
Soeren Sonnenburg | a417a21 | 2007-02-05 10:06:01 +0100 | [diff] [blame] | 740 | #define USB_DEVICE_ID_APPLE_IR 0x8240 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 741 | |
Vojtech Pavlik | 940824b | 2006-01-14 00:25:39 -0500 | [diff] [blame] | 742 | #define USB_VENDOR_ID_CHERRY 0x046a |
| 743 | #define USB_DEVICE_ID_CHERRY_CYMOTION 0x0023 |
| 744 | |
Henk Vergonet | 5cd330f | 2006-05-15 12:34:43 +0200 | [diff] [blame] | 745 | #define USB_VENDOR_ID_YEALINK 0x6993 |
| 746 | #define USB_DEVICE_ID_YEALINK_P1K_P4K_B2K 0xb001 |
Johannes Steingraeber | 8fd8013 | 2006-09-16 16:17:34 +0200 | [diff] [blame] | 747 | |
| 748 | #define USB_VENDOR_ID_ALCOR 0x058f |
| 749 | #define USB_DEVICE_ID_ALCOR_USBRS232 0x9720 |
| 750 | |
Raghavendra Biligiri | 931e24b | 2006-09-15 19:53:35 +0530 | [diff] [blame] | 751 | #define USB_VENDOR_ID_SUN 0x0430 |
| 752 | #define USB_DEVICE_ID_RARITAN_KVM_DONGLE 0xcdab |
| 753 | |
Naranjo Manuel Francisco | 23b0d96 | 2006-10-27 16:08:54 -0300 | [diff] [blame] | 754 | #define USB_VENDOR_ID_AIRCABLE 0x16CA |
| 755 | #define USB_DEVICE_ID_AIRCABLE1 0x1502 |
| 756 | |
Anssi Hannula | 41ad5fb | 2006-11-04 22:49:53 -0500 | [diff] [blame] | 757 | #define USB_VENDOR_ID_LOGITECH 0x046d |
| 758 | #define USB_DEVICE_ID_LOGITECH_USB_RECEIVER 0xc101 |
| 759 | |
Oliver Neukum | 8d2bad8 | 2007-01-11 10:14:33 +0100 | [diff] [blame] | 760 | #define USB_VENDOR_ID_IMATION 0x0718 |
| 761 | #define USB_DEVICE_ID_DISC_STAKKA 0xd000 |
| 762 | |
Anssi Hannula | 5556fea | 2007-01-11 16:51:17 +0200 | [diff] [blame] | 763 | #define USB_VENDOR_ID_PANTHERLORD 0x0810 |
| 764 | #define USB_DEVICE_ID_PANTHERLORD_TWIN_USB_JOYSTICK 0x0001 |
| 765 | |
Geoff Levand | 4a1a4d8 | 2007-01-15 20:11:52 -0800 | [diff] [blame] | 766 | #define USB_VENDOR_ID_SONY 0x054c |
| 767 | #define USB_DEVICE_ID_SONY_PS3_CONTROLLER 0x0268 |
| 768 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 769 | /* |
| 770 | * Alphabetically sorted blacklist by quirk type. |
| 771 | */ |
| 772 | |
Arjan van de Ven | 4c4c943 | 2005-11-29 09:43:42 +0100 | [diff] [blame] | 773 | static const struct hid_blacklist { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 774 | __u16 idVendor; |
| 775 | __u16 idProduct; |
| 776 | unsigned quirks; |
| 777 | } hid_blacklist[] = { |
| 778 | |
| 779 | { USB_VENDOR_ID_AIPTEK, USB_DEVICE_ID_AIPTEK_01, HID_QUIRK_IGNORE }, |
| 780 | { USB_VENDOR_ID_AIPTEK, USB_DEVICE_ID_AIPTEK_10, HID_QUIRK_IGNORE }, |
| 781 | { USB_VENDOR_ID_AIPTEK, USB_DEVICE_ID_AIPTEK_20, HID_QUIRK_IGNORE }, |
| 782 | { USB_VENDOR_ID_AIPTEK, USB_DEVICE_ID_AIPTEK_21, HID_QUIRK_IGNORE }, |
| 783 | { USB_VENDOR_ID_AIPTEK, USB_DEVICE_ID_AIPTEK_22, HID_QUIRK_IGNORE }, |
| 784 | { USB_VENDOR_ID_AIPTEK, USB_DEVICE_ID_AIPTEK_23, HID_QUIRK_IGNORE }, |
| 785 | { USB_VENDOR_ID_AIPTEK, USB_DEVICE_ID_AIPTEK_24, HID_QUIRK_IGNORE }, |
Naranjo Manuel Francisco | 23b0d96 | 2006-10-27 16:08:54 -0300 | [diff] [blame] | 786 | { USB_VENDOR_ID_AIRCABLE, USB_DEVICE_ID_AIRCABLE1, HID_QUIRK_IGNORE }, |
Johannes Steingraeber | 8fd8013 | 2006-09-16 16:17:34 +0200 | [diff] [blame] | 787 | { USB_VENDOR_ID_ALCOR, USB_DEVICE_ID_ALCOR_USBRS232, HID_QUIRK_IGNORE }, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 788 | { USB_VENDOR_ID_BERKSHIRE, USB_DEVICE_ID_BERKSHIRE_PCWD, HID_QUIRK_IGNORE }, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 789 | { USB_VENDOR_ID_CYPRESS, USB_DEVICE_ID_CYPRESS_HIDCOM, HID_QUIRK_IGNORE }, |
Brian Schau | 7d25258 | 2005-09-05 01:57:41 -0500 | [diff] [blame] | 790 | { USB_VENDOR_ID_CYPRESS, USB_DEVICE_ID_CYPRESS_ULTRAMOUSE, HID_QUIRK_IGNORE }, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 791 | { USB_VENDOR_ID_DELORME, USB_DEVICE_ID_DELORME_EARTHMATE, HID_QUIRK_IGNORE }, |
Lonnie Mendez | dc1d100 | 2005-05-10 00:17:17 -0500 | [diff] [blame] | 792 | { USB_VENDOR_ID_DELORME, USB_DEVICE_ID_DELORME_EM_LT20, HID_QUIRK_IGNORE }, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 793 | { USB_VENDOR_ID_ESSENTIAL_REALITY, USB_DEVICE_ID_ESSENTIAL_REALITY_P5, HID_QUIRK_IGNORE }, |
| 794 | { USB_VENDOR_ID_GLAB, USB_DEVICE_ID_4_PHIDGETSERVO_30, HID_QUIRK_IGNORE }, |
| 795 | { USB_VENDOR_ID_GLAB, USB_DEVICE_ID_1_PHIDGETSERVO_30, HID_QUIRK_IGNORE }, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 796 | { USB_VENDOR_ID_GLAB, USB_DEVICE_ID_0_0_4_IF_KIT, HID_QUIRK_IGNORE }, |
Sean Young | d5176b4 | 2006-07-09 13:01:02 +0000 | [diff] [blame] | 797 | { USB_VENDOR_ID_GLAB, USB_DEVICE_ID_0_16_16_IF_KIT, HID_QUIRK_IGNORE }, |
| 798 | { USB_VENDOR_ID_GLAB, USB_DEVICE_ID_8_8_8_IF_KIT, HID_QUIRK_IGNORE }, |
| 799 | { USB_VENDOR_ID_GLAB, USB_DEVICE_ID_0_8_7_IF_KIT, HID_QUIRK_IGNORE }, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 800 | { USB_VENDOR_ID_GLAB, USB_DEVICE_ID_0_8_8_IF_KIT, HID_QUIRK_IGNORE }, |
Sean Young | d5176b4 | 2006-07-09 13:01:02 +0000 | [diff] [blame] | 801 | { USB_VENDOR_ID_GLAB, USB_DEVICE_ID_PHIDGET_MOTORCONTROL, HID_QUIRK_IGNORE }, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 802 | { USB_VENDOR_ID_GRIFFIN, USB_DEVICE_ID_POWERMATE, HID_QUIRK_IGNORE }, |
| 803 | { USB_VENDOR_ID_GRIFFIN, USB_DEVICE_ID_SOUNDKNOB, HID_QUIRK_IGNORE }, |
Jeremy Roberson | 6f8d9e2 | 2006-08-28 19:58:28 -0700 | [diff] [blame] | 804 | { USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_90, HID_QUIRK_IGNORE }, |
| 805 | { USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_100, HID_QUIRK_IGNORE }, |
| 806 | { USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_101, HID_QUIRK_IGNORE }, |
| 807 | { USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_103, HID_QUIRK_IGNORE }, |
| 808 | { USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_104, HID_QUIRK_IGNORE }, |
| 809 | { USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_105, HID_QUIRK_IGNORE }, |
| 810 | { USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_106, HID_QUIRK_IGNORE }, |
| 811 | { USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_107, HID_QUIRK_IGNORE }, |
| 812 | { USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_108, HID_QUIRK_IGNORE }, |
| 813 | { USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_200, HID_QUIRK_IGNORE }, |
| 814 | { USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_201, HID_QUIRK_IGNORE }, |
| 815 | { USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_202, HID_QUIRK_IGNORE }, |
| 816 | { USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_203, HID_QUIRK_IGNORE }, |
| 817 | { USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_204, HID_QUIRK_IGNORE }, |
| 818 | { USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_205, HID_QUIRK_IGNORE }, |
| 819 | { USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_206, HID_QUIRK_IGNORE }, |
| 820 | { USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_207, HID_QUIRK_IGNORE }, |
| 821 | { USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_300, HID_QUIRK_IGNORE }, |
| 822 | { USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_301, HID_QUIRK_IGNORE }, |
| 823 | { USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_302, HID_QUIRK_IGNORE }, |
| 824 | { USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_303, HID_QUIRK_IGNORE }, |
| 825 | { USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_304, HID_QUIRK_IGNORE }, |
| 826 | { USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_305, HID_QUIRK_IGNORE }, |
| 827 | { USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_306, HID_QUIRK_IGNORE }, |
| 828 | { USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_307, HID_QUIRK_IGNORE }, |
| 829 | { USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_308, HID_QUIRK_IGNORE }, |
| 830 | { USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_309, HID_QUIRK_IGNORE }, |
| 831 | { USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_400, HID_QUIRK_IGNORE }, |
| 832 | { USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_401, HID_QUIRK_IGNORE }, |
| 833 | { USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_402, HID_QUIRK_IGNORE }, |
| 834 | { USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_403, HID_QUIRK_IGNORE }, |
| 835 | { USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_404, HID_QUIRK_IGNORE }, |
Adrian Bunk | f064902 | 2006-09-04 13:41:10 +0200 | [diff] [blame] | 836 | { USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_405, HID_QUIRK_IGNORE }, |
Jeremy Roberson | 6f8d9e2 | 2006-08-28 19:58:28 -0700 | [diff] [blame] | 837 | { USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_500, HID_QUIRK_IGNORE }, |
| 838 | { USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_501, HID_QUIRK_IGNORE }, |
| 839 | { USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_502, HID_QUIRK_IGNORE }, |
| 840 | { USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_503, HID_QUIRK_IGNORE }, |
| 841 | { USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_504, HID_QUIRK_IGNORE }, |
| 842 | { USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_1000, HID_QUIRK_IGNORE }, |
| 843 | { USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_1001, HID_QUIRK_IGNORE }, |
| 844 | { USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_1002, HID_QUIRK_IGNORE }, |
| 845 | { USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_1003, HID_QUIRK_IGNORE }, |
| 846 | { USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_1004, HID_QUIRK_IGNORE }, |
| 847 | { USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_1005, HID_QUIRK_IGNORE }, |
| 848 | { USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_1006, HID_QUIRK_IGNORE }, |
Oliver Neukum | 8d2bad8 | 2007-01-11 10:14:33 +0100 | [diff] [blame] | 849 | { USB_VENDOR_ID_IMATION, USB_DEVICE_ID_DISC_STAKKA, HID_QUIRK_IGNORE }, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 850 | { USB_VENDOR_ID_KBGEAR, USB_DEVICE_ID_KBGEAR_JAMSTUDIO, HID_QUIRK_IGNORE }, |
Michael Hund | ba3e66e | 2006-02-02 09:36:43 +0100 | [diff] [blame] | 851 | { USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_CASSY, HID_QUIRK_IGNORE }, |
| 852 | { USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_POCKETCASSY, HID_QUIRK_IGNORE }, |
| 853 | { USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_MOBILECASSY, HID_QUIRK_IGNORE }, |
| 854 | { USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_JWM, HID_QUIRK_IGNORE }, |
| 855 | { USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_DMMP, HID_QUIRK_IGNORE }, |
| 856 | { USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_UMIP, HID_QUIRK_IGNORE }, |
| 857 | { USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_XRAY1, HID_QUIRK_IGNORE }, |
| 858 | { USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_XRAY2, HID_QUIRK_IGNORE }, |
| 859 | { USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_VIDEOCOM, HID_QUIRK_IGNORE }, |
| 860 | { USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_COM3LAB, HID_QUIRK_IGNORE }, |
| 861 | { USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_TELEPORT, HID_QUIRK_IGNORE }, |
| 862 | { USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_NETWORKANALYSER, HID_QUIRK_IGNORE }, |
| 863 | { USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_POWERCONTROL, HID_QUIRK_IGNORE }, |
| 864 | { USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_MACHINETEST, HID_QUIRK_IGNORE }, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 865 | { USB_VENDOR_ID_MCC, USB_DEVICE_ID_MCC_PMD1024LS, HID_QUIRK_IGNORE }, |
| 866 | { USB_VENDOR_ID_MCC, USB_DEVICE_ID_MCC_PMD1208LS, HID_QUIRK_IGNORE }, |
| 867 | { USB_VENDOR_ID_MGE, USB_DEVICE_ID_MGE_UPS, HID_QUIRK_IGNORE }, |
| 868 | { USB_VENDOR_ID_MGE, USB_DEVICE_ID_MGE_UPS1, HID_QUIRK_IGNORE }, |
| 869 | { USB_VENDOR_ID_ONTRAK, USB_DEVICE_ID_ONTRAK_ADU100, HID_QUIRK_IGNORE }, |
Steven Haigh | 0327063 | 2006-08-09 07:42:06 +1000 | [diff] [blame] | 870 | { USB_VENDOR_ID_ONTRAK, USB_DEVICE_ID_ONTRAK_ADU100 + 20, HID_QUIRK_IGNORE }, |
| 871 | { USB_VENDOR_ID_ONTRAK, USB_DEVICE_ID_ONTRAK_ADU100 + 30, HID_QUIRK_IGNORE }, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 872 | { USB_VENDOR_ID_ONTRAK, USB_DEVICE_ID_ONTRAK_ADU100 + 100, HID_QUIRK_IGNORE }, |
Steven Haigh | 0327063 | 2006-08-09 07:42:06 +1000 | [diff] [blame] | 873 | { USB_VENDOR_ID_ONTRAK, USB_DEVICE_ID_ONTRAK_ADU100 + 108, HID_QUIRK_IGNORE }, |
| 874 | { USB_VENDOR_ID_ONTRAK, USB_DEVICE_ID_ONTRAK_ADU100 + 118, HID_QUIRK_IGNORE }, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 875 | { USB_VENDOR_ID_ONTRAK, USB_DEVICE_ID_ONTRAK_ADU100 + 200, HID_QUIRK_IGNORE }, |
| 876 | { USB_VENDOR_ID_ONTRAK, USB_DEVICE_ID_ONTRAK_ADU100 + 300, HID_QUIRK_IGNORE }, |
| 877 | { USB_VENDOR_ID_ONTRAK, USB_DEVICE_ID_ONTRAK_ADU100 + 400, HID_QUIRK_IGNORE }, |
| 878 | { USB_VENDOR_ID_ONTRAK, USB_DEVICE_ID_ONTRAK_ADU100 + 500, HID_QUIRK_IGNORE }, |
Greg Kroah-Hartman | 4871d3b | 2005-06-02 22:18:12 -0700 | [diff] [blame] | 879 | { USB_VENDOR_ID_VERNIER, USB_DEVICE_ID_VERNIER_LABPRO, HID_QUIRK_IGNORE }, |
| 880 | { USB_VENDOR_ID_VERNIER, USB_DEVICE_ID_VERNIER_GOTEMP, HID_QUIRK_IGNORE }, |
| 881 | { USB_VENDOR_ID_VERNIER, USB_DEVICE_ID_VERNIER_SKIP, HID_QUIRK_IGNORE }, |
| 882 | { USB_VENDOR_ID_VERNIER, USB_DEVICE_ID_VERNIER_CYCLOPS, HID_QUIRK_IGNORE }, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 883 | { USB_VENDOR_ID_WISEGROUP, USB_DEVICE_ID_4_PHIDGETSERVO_20, HID_QUIRK_IGNORE }, |
| 884 | { USB_VENDOR_ID_WISEGROUP, USB_DEVICE_ID_1_PHIDGETSERVO_20, HID_QUIRK_IGNORE }, |
Sean Young | d5176b4 | 2006-07-09 13:01:02 +0000 | [diff] [blame] | 885 | { USB_VENDOR_ID_WISEGROUP, USB_DEVICE_ID_8_8_4_IF_KIT, HID_QUIRK_IGNORE }, |
Henk Vergonet | 5cd330f | 2006-05-15 12:34:43 +0200 | [diff] [blame] | 886 | { USB_VENDOR_ID_YEALINK, USB_DEVICE_ID_YEALINK_P1K_P4K_B2K, HID_QUIRK_IGNORE }, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 887 | |
Stephane VOLTZ | 5388054 | 2005-06-06 02:22:37 -0500 | [diff] [blame] | 888 | { USB_VENDOR_ID_ACECAD, USB_DEVICE_ID_ACECAD_FLAIR, HID_QUIRK_IGNORE }, |
| 889 | { USB_VENDOR_ID_ACECAD, USB_DEVICE_ID_ACECAD_302, HID_QUIRK_IGNORE }, |
| 890 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 891 | { USB_VENDOR_ID_ATEN, USB_DEVICE_ID_ATEN_UC100KM, HID_QUIRK_NOGET }, |
| 892 | { USB_VENDOR_ID_ATEN, USB_DEVICE_ID_ATEN_CS124U, HID_QUIRK_NOGET }, |
| 893 | { USB_VENDOR_ID_ATEN, USB_DEVICE_ID_ATEN_2PORTKVM, HID_QUIRK_NOGET }, |
| 894 | { USB_VENDOR_ID_ATEN, USB_DEVICE_ID_ATEN_4PORTKVM, HID_QUIRK_NOGET }, |
| 895 | { USB_VENDOR_ID_ATEN, USB_DEVICE_ID_ATEN_4PORTKVMC, HID_QUIRK_NOGET }, |
Raghavendra Biligiri | 931e24b | 2006-09-15 19:53:35 +0530 | [diff] [blame] | 896 | { USB_VENDOR_ID_SUN, USB_DEVICE_ID_RARITAN_KVM_DONGLE, HID_QUIRK_NOGET }, |
Andrew Fuller | e65335e | 2006-02-25 09:52:27 -0500 | [diff] [blame] | 897 | { USB_VENDOR_ID_WISEGROUP, USB_DEVICE_ID_DUAL_USB_JOYPAD, HID_QUIRK_NOGET | HID_QUIRK_MULTI_INPUT }, |
Navaho Gunleg | b857c65 | 2006-06-30 09:44:03 +0200 | [diff] [blame] | 898 | { USB_VENDOR_ID_WISEGROUP_LTD, USB_DEVICE_ID_SMARTJOY_DUAL_PLUS, HID_QUIRK_NOGET | HID_QUIRK_MULTI_INPUT }, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 899 | |
Bart Massey | a82e49b | 2006-05-08 14:40:13 -0700 | [diff] [blame] | 900 | { USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_MIGHTYMOUSE, HID_QUIRK_MIGHTYMOUSE | HID_QUIRK_INVERT_HWHEEL }, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 901 | { USB_VENDOR_ID_A4TECH, USB_DEVICE_ID_A4TECH_WCP32PU, HID_QUIRK_2WHEEL_MOUSE_HACK_7 }, |
| 902 | { USB_VENDOR_ID_CYPRESS, USB_DEVICE_ID_CYPRESS_MOUSE, HID_QUIRK_2WHEEL_MOUSE_HACK_5 }, |
| 903 | |
Luca T | 6345fdf | 2005-07-11 01:08:40 -0500 | [diff] [blame] | 904 | { USB_VENDOR_ID_AASHIMA, USB_DEVICE_ID_AASHIMA_GAMEPAD, HID_QUIRK_BADPAD }, |
Vojtech Pavlik | 61cdecd | 2005-09-05 00:13:32 -0500 | [diff] [blame] | 905 | { USB_VENDOR_ID_AASHIMA, USB_DEVICE_ID_AASHIMA_PREDATOR, HID_QUIRK_BADPAD }, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 906 | { USB_VENDOR_ID_ALPS, USB_DEVICE_ID_IBM_GAMEPAD, HID_QUIRK_BADPAD }, |
| 907 | { USB_VENDOR_ID_CHIC, USB_DEVICE_ID_CHIC_GAMEPAD, HID_QUIRK_BADPAD }, |
| 908 | { USB_VENDOR_ID_HAPP, USB_DEVICE_ID_UGCI_DRIVING, HID_QUIRK_BADPAD | HID_QUIRK_MULTI_INPUT }, |
| 909 | { USB_VENDOR_ID_HAPP, USB_DEVICE_ID_UGCI_FLYING, HID_QUIRK_BADPAD | HID_QUIRK_MULTI_INPUT }, |
| 910 | { USB_VENDOR_ID_HAPP, USB_DEVICE_ID_UGCI_FIGHTING, HID_QUIRK_BADPAD | HID_QUIRK_MULTI_INPUT }, |
| 911 | { USB_VENDOR_ID_NEC, USB_DEVICE_ID_NEC_USB_GAME_PAD, HID_QUIRK_BADPAD }, |
| 912 | { USB_VENDOR_ID_SAITEK, USB_DEVICE_ID_SAITEK_RUMBLEPAD, HID_QUIRK_BADPAD }, |
| 913 | { USB_VENDOR_ID_TOPMAX, USB_DEVICE_ID_TOPMAX_COBRAPAD, HID_QUIRK_BADPAD }, |
| 914 | |
Vojtech Pavlik | 940824b | 2006-01-14 00:25:39 -0500 | [diff] [blame] | 915 | { USB_VENDOR_ID_CHERRY, USB_DEVICE_ID_CHERRY_CYMOTION, HID_QUIRK_CYMOTION }, |
| 916 | |
Soeren Sonnenburg | a417a21 | 2007-02-05 10:06:01 +0100 | [diff] [blame] | 917 | { USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_FOUNTAIN_ANSI, HID_QUIRK_POWERBOOK_HAS_FN | HID_QUIRK_IGNORE_MOUSE }, |
| 918 | { USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_FOUNTAIN_ISO, HID_QUIRK_POWERBOOK_HAS_FN | HID_QUIRK_IGNORE_MOUSE }, |
| 919 | { USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_GEYSER_ANSI, HID_QUIRK_POWERBOOK_HAS_FN | HID_QUIRK_IGNORE_MOUSE }, |
| 920 | { USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_GEYSER_ISO, HID_QUIRK_POWERBOOK_HAS_FN | HID_QUIRK_IGNORE_MOUSE | HID_QUIRK_POWERBOOK_ISO_KEYBOARD}, |
| 921 | { USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_GEYSER_JIS, HID_QUIRK_POWERBOOK_HAS_FN | HID_QUIRK_IGNORE_MOUSE }, |
| 922 | { USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_GEYSER3_ANSI, HID_QUIRK_POWERBOOK_HAS_FN | HID_QUIRK_IGNORE_MOUSE }, |
| 923 | { USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_GEYSER3_ISO, HID_QUIRK_POWERBOOK_HAS_FN | HID_QUIRK_IGNORE_MOUSE | HID_QUIRK_POWERBOOK_ISO_KEYBOARD}, |
| 924 | { USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_GEYSER3_JIS, HID_QUIRK_POWERBOOK_HAS_FN | HID_QUIRK_IGNORE_MOUSE }, |
| 925 | { USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_GEYSER4_ANSI, HID_QUIRK_POWERBOOK_HAS_FN | HID_QUIRK_IGNORE_MOUSE }, |
| 926 | { USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_GEYSER4_ISO, HID_QUIRK_POWERBOOK_HAS_FN | HID_QUIRK_IGNORE_MOUSE | HID_QUIRK_POWERBOOK_ISO_KEYBOARD}, |
| 927 | { USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_GEYSER4_JIS, HID_QUIRK_POWERBOOK_HAS_FN | HID_QUIRK_IGNORE_MOUSE }, |
| 928 | { USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_FOUNTAIN_TP_ONLY, HID_QUIRK_POWERBOOK_HAS_FN | HID_QUIRK_IGNORE_MOUSE }, |
| 929 | { USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_GEYSER1_TP_ONLY, HID_QUIRK_POWERBOOK_HAS_FN | HID_QUIRK_IGNORE_MOUSE }, |
| 930 | |
| 931 | { USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_IR, HID_QUIRK_IGNORE }, |
Michael Hanselmann | eab9edd | 2006-01-14 10:08:06 -0500 | [diff] [blame] | 932 | |
Daniel Ritz | 1d3e202 | 2006-03-29 22:41:07 +0200 | [diff] [blame] | 933 | { USB_VENDOR_ID_PANJIT, 0x0001, HID_QUIRK_IGNORE }, |
| 934 | { USB_VENDOR_ID_PANJIT, 0x0002, HID_QUIRK_IGNORE }, |
| 935 | { USB_VENDOR_ID_PANJIT, 0x0003, HID_QUIRK_IGNORE }, |
| 936 | { USB_VENDOR_ID_PANJIT, 0x0004, HID_QUIRK_IGNORE }, |
| 937 | |
Ben Collins | d57cdcf | 2006-10-18 08:47:37 -0400 | [diff] [blame] | 938 | { USB_VENDOR_ID_TURBOX, USB_DEVICE_ID_TURBOX_KEYBOARD, HID_QUIRK_NOGET }, |
Anssi Hannula | 41ad5fb | 2006-11-04 22:49:53 -0500 | [diff] [blame] | 939 | |
| 940 | { USB_VENDOR_ID_LOGITECH, USB_DEVICE_ID_LOGITECH_USB_RECEIVER, HID_QUIRK_BAD_RELATIVE_KEYS }, |
| 941 | |
Anssi Hannula | 5556fea | 2007-01-11 16:51:17 +0200 | [diff] [blame] | 942 | { USB_VENDOR_ID_PANTHERLORD, USB_DEVICE_ID_PANTHERLORD_TWIN_USB_JOYSTICK, HID_QUIRK_MULTI_INPUT | HID_QUIRK_SKIP_OUTPUT_REPORTS }, |
| 943 | |
Geoff Levand | 4a1a4d8 | 2007-01-15 20:11:52 -0800 | [diff] [blame] | 944 | { USB_VENDOR_ID_SONY, USB_DEVICE_ID_SONY_PS3_CONTROLLER, HID_QUIRK_SONY_PS3_CONTROLLER }, |
| 945 | |
Zheng XiaoJun | 3f9b407 | 2007-02-05 16:40:57 -0800 | [diff] [blame] | 946 | { USB_VENDOR_ID_CIDC, 0x0103, HID_QUIRK_IGNORE }, |
| 947 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 948 | { 0, 0 } |
| 949 | }; |
| 950 | |
Michael Haboustak | bf0964d | 2005-09-05 00:12:01 -0500 | [diff] [blame] | 951 | /* |
| 952 | * Traverse the supplied list of reports and find the longest |
| 953 | */ |
| 954 | static void hid_find_max_report(struct hid_device *hid, unsigned int type, int *max) |
| 955 | { |
| 956 | struct hid_report *report; |
| 957 | int size; |
| 958 | |
| 959 | list_for_each_entry(report, &hid->report_enum[type].report_list, list) { |
| 960 | size = ((report->size - 1) >> 3) + 1; |
| 961 | if (type == HID_INPUT_REPORT && hid->report_enum[type].numbered) |
| 962 | size++; |
| 963 | if (*max < size) |
| 964 | *max = size; |
| 965 | } |
| 966 | } |
| 967 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 968 | static int hid_alloc_buffers(struct usb_device *dev, struct hid_device *hid) |
| 969 | { |
Jiri Kosina | 4916b3a | 2006-12-08 18:41:03 +0100 | [diff] [blame] | 970 | struct usbhid_device *usbhid = hid->driver_data; |
| 971 | |
| 972 | if (!(usbhid->inbuf = usb_buffer_alloc(dev, usbhid->bufsize, GFP_ATOMIC, &usbhid->inbuf_dma))) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 973 | return -1; |
Jiri Kosina | 4916b3a | 2006-12-08 18:41:03 +0100 | [diff] [blame] | 974 | if (!(usbhid->outbuf = usb_buffer_alloc(dev, usbhid->bufsize, GFP_ATOMIC, &usbhid->outbuf_dma))) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 975 | return -1; |
Jiri Kosina | 4916b3a | 2006-12-08 18:41:03 +0100 | [diff] [blame] | 976 | if (!(usbhid->cr = usb_buffer_alloc(dev, sizeof(*(usbhid->cr)), GFP_ATOMIC, &usbhid->cr_dma))) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 977 | return -1; |
Jiri Kosina | 4916b3a | 2006-12-08 18:41:03 +0100 | [diff] [blame] | 978 | if (!(usbhid->ctrlbuf = usb_buffer_alloc(dev, usbhid->bufsize, GFP_ATOMIC, &usbhid->ctrlbuf_dma))) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 979 | return -1; |
| 980 | |
| 981 | return 0; |
| 982 | } |
| 983 | |
| 984 | static void hid_free_buffers(struct usb_device *dev, struct hid_device *hid) |
| 985 | { |
Jiri Kosina | 4916b3a | 2006-12-08 18:41:03 +0100 | [diff] [blame] | 986 | struct usbhid_device *usbhid = hid->driver_data; |
| 987 | |
| 988 | if (usbhid->inbuf) |
| 989 | usb_buffer_free(dev, usbhid->bufsize, usbhid->inbuf, usbhid->inbuf_dma); |
| 990 | if (usbhid->outbuf) |
| 991 | usb_buffer_free(dev, usbhid->bufsize, usbhid->outbuf, usbhid->outbuf_dma); |
| 992 | if (usbhid->cr) |
| 993 | usb_buffer_free(dev, sizeof(*(usbhid->cr)), usbhid->cr, usbhid->cr_dma); |
| 994 | if (usbhid->ctrlbuf) |
| 995 | usb_buffer_free(dev, usbhid->bufsize, usbhid->ctrlbuf, usbhid->ctrlbuf_dma); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 996 | } |
| 997 | |
Vojtech Pavlik | 940824b | 2006-01-14 00:25:39 -0500 | [diff] [blame] | 998 | /* |
| 999 | * Cherry Cymotion keyboard have an invalid HID report descriptor, |
| 1000 | * that needs fixing before we can parse it. |
| 1001 | */ |
| 1002 | |
| 1003 | static void hid_fixup_cymotion_descriptor(char *rdesc, int rsize) |
| 1004 | { |
| 1005 | if (rsize >= 17 && rdesc[11] == 0x3c && rdesc[12] == 0x02) { |
| 1006 | info("Fixing up Cherry Cymotion report descriptor"); |
| 1007 | rdesc[11] = rdesc[16] = 0xff; |
| 1008 | rdesc[12] = rdesc[17] = 0x03; |
| 1009 | } |
| 1010 | } |
| 1011 | |
Geoff Levand | 4a1a4d8 | 2007-01-15 20:11:52 -0800 | [diff] [blame] | 1012 | /* |
| 1013 | * Sending HID_REQ_GET_REPORT changes the operation mode of the ps3 controller |
| 1014 | * to "operational". Without this, the ps3 controller will not report any |
| 1015 | * events. |
| 1016 | */ |
| 1017 | static void hid_fixup_sony_ps3_controller(struct usb_device *dev, int ifnum) |
| 1018 | { |
| 1019 | int result; |
| 1020 | char *buf = kmalloc(18, GFP_KERNEL); |
| 1021 | |
| 1022 | if (!buf) |
| 1023 | return; |
| 1024 | |
| 1025 | result = usb_control_msg(dev, usb_rcvctrlpipe(dev, 0), |
| 1026 | HID_REQ_GET_REPORT, |
| 1027 | USB_DIR_IN | USB_TYPE_CLASS | |
| 1028 | USB_RECIP_INTERFACE, |
| 1029 | (3 << 8) | 0xf2, ifnum, buf, 17, |
| 1030 | USB_CTRL_GET_TIMEOUT); |
| 1031 | |
| 1032 | if (result < 0) |
| 1033 | err("%s failed: %d\n", __func__, result); |
| 1034 | |
| 1035 | kfree(buf); |
| 1036 | } |
| 1037 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1038 | static struct hid_device *usb_hid_configure(struct usb_interface *intf) |
| 1039 | { |
| 1040 | struct usb_host_interface *interface = intf->cur_altsetting; |
| 1041 | struct usb_device *dev = interface_to_usbdev (intf); |
| 1042 | struct hid_descriptor *hdesc; |
| 1043 | struct hid_device *hid; |
| 1044 | unsigned quirks = 0, rsize = 0; |
Dmitry Torokhov | c5b7c7c | 2005-09-15 02:01:47 -0500 | [diff] [blame] | 1045 | char *rdesc; |
| 1046 | int n, len, insize = 0; |
Jiri Kosina | 4916b3a | 2006-12-08 18:41:03 +0100 | [diff] [blame] | 1047 | struct usbhid_device *usbhid; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1048 | |
Robert Marquardt | 5ddc322 | 2007-03-02 16:01:52 +0100 | [diff] [blame^] | 1049 | /* Ignore all Wacom devices */ |
| 1050 | if (le16_to_cpu(dev->descriptor.idVendor) == USB_VENDOR_ID_WACOM) |
| 1051 | return NULL; |
| 1052 | /* ignore all Code Mercenaries IOWarrior devices */ |
| 1053 | if (le16_to_cpu(dev->descriptor.idVendor) == USB_VENDOR_ID_CODEMERCS) |
| 1054 | if (le16_to_cpu(dev->descriptor.idProduct) >= USB_DEVICE_ID_CODEMERCS_IOW_FIRST && |
| 1055 | le16_to_cpu(dev->descriptor.idProduct) <= USB_DEVICE_ID_CODEMERCS_IOW_LAST) |
| 1056 | return NULL; |
Ping Cheng | ea18665 | 2006-07-14 16:50:04 -0700 | [diff] [blame] | 1057 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1058 | for (n = 0; hid_blacklist[n].idVendor; n++) |
| 1059 | if ((hid_blacklist[n].idVendor == le16_to_cpu(dev->descriptor.idVendor)) && |
| 1060 | (hid_blacklist[n].idProduct == le16_to_cpu(dev->descriptor.idProduct))) |
| 1061 | quirks = hid_blacklist[n].quirks; |
| 1062 | |
Alan Stern | 0f28b55 | 2006-05-15 14:49:04 -0400 | [diff] [blame] | 1063 | /* Many keyboards and mice don't like to be polled for reports, |
| 1064 | * so we will always set the HID_QUIRK_NOGET flag for them. */ |
| 1065 | if (interface->desc.bInterfaceSubClass == USB_INTERFACE_SUBCLASS_BOOT) { |
| 1066 | if (interface->desc.bInterfaceProtocol == USB_INTERFACE_PROTOCOL_KEYBOARD || |
| 1067 | interface->desc.bInterfaceProtocol == USB_INTERFACE_PROTOCOL_MOUSE) |
| 1068 | quirks |= HID_QUIRK_NOGET; |
| 1069 | } |
| 1070 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1071 | if (quirks & HID_QUIRK_IGNORE) |
| 1072 | return NULL; |
| 1073 | |
Soeren Sonnenburg | a417a21 | 2007-02-05 10:06:01 +0100 | [diff] [blame] | 1074 | if ((quirks & HID_QUIRK_IGNORE_MOUSE) && |
| 1075 | (interface->desc.bInterfaceProtocol == USB_INTERFACE_PROTOCOL_MOUSE)) |
| 1076 | return NULL; |
| 1077 | |
| 1078 | |
Dmitry Torokhov | c5b7c7c | 2005-09-15 02:01:47 -0500 | [diff] [blame] | 1079 | if (usb_get_extra_descriptor(interface, HID_DT_HID, &hdesc) && |
| 1080 | (!interface->desc.bNumEndpoints || |
| 1081 | usb_get_extra_descriptor(&interface->endpoint[0], HID_DT_HID, &hdesc))) { |
| 1082 | dbg("class descriptor not present\n"); |
| 1083 | return NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1084 | } |
| 1085 | |
| 1086 | for (n = 0; n < hdesc->bNumDescriptors; n++) |
| 1087 | if (hdesc->desc[n].bDescriptorType == HID_DT_REPORT) |
| 1088 | rsize = le16_to_cpu(hdesc->desc[n].wDescriptorLength); |
| 1089 | |
| 1090 | if (!rsize || rsize > HID_MAX_DESCRIPTOR_SIZE) { |
| 1091 | dbg("weird size of report descriptor (%u)", rsize); |
| 1092 | return NULL; |
| 1093 | } |
| 1094 | |
| 1095 | if (!(rdesc = kmalloc(rsize, GFP_KERNEL))) { |
| 1096 | dbg("couldn't allocate rdesc memory"); |
| 1097 | return NULL; |
| 1098 | } |
| 1099 | |
Vojtech Pavlik | 854561b | 2005-05-29 02:28:00 -0500 | [diff] [blame] | 1100 | hid_set_idle(dev, interface->desc.bInterfaceNumber, 0, 0); |
| 1101 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1102 | if ((n = hid_get_class_descriptor(dev, interface->desc.bInterfaceNumber, HID_DT_REPORT, rdesc, rsize)) < 0) { |
| 1103 | dbg("reading report descriptor failed"); |
| 1104 | kfree(rdesc); |
| 1105 | return NULL; |
| 1106 | } |
| 1107 | |
Vojtech Pavlik | 940824b | 2006-01-14 00:25:39 -0500 | [diff] [blame] | 1108 | if ((quirks & HID_QUIRK_CYMOTION)) |
| 1109 | hid_fixup_cymotion_descriptor(rdesc, rsize); |
| 1110 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1111 | #ifdef DEBUG_DATA |
| 1112 | printk(KERN_DEBUG __FILE__ ": report descriptor (size %u, read %d) = ", rsize, n); |
| 1113 | for (n = 0; n < rsize; n++) |
| 1114 | printk(" %02x", (unsigned char) rdesc[n]); |
| 1115 | printk("\n"); |
| 1116 | #endif |
| 1117 | |
| 1118 | if (!(hid = hid_parse_report(rdesc, n))) { |
| 1119 | dbg("parsing report descriptor failed"); |
| 1120 | kfree(rdesc); |
| 1121 | return NULL; |
| 1122 | } |
| 1123 | |
| 1124 | kfree(rdesc); |
| 1125 | hid->quirks = quirks; |
| 1126 | |
Jiri Kosina | 4916b3a | 2006-12-08 18:41:03 +0100 | [diff] [blame] | 1127 | if (!(usbhid = kzalloc(sizeof(struct usbhid_device), GFP_KERNEL))) |
| 1128 | goto fail; |
Michael Haboustak | bf0964d | 2005-09-05 00:12:01 -0500 | [diff] [blame] | 1129 | |
Jiri Kosina | 4916b3a | 2006-12-08 18:41:03 +0100 | [diff] [blame] | 1130 | hid->driver_data = usbhid; |
| 1131 | usbhid->hid = hid; |
| 1132 | |
| 1133 | usbhid->bufsize = HID_MIN_BUFFER_SIZE; |
| 1134 | hid_find_max_report(hid, HID_INPUT_REPORT, &usbhid->bufsize); |
| 1135 | hid_find_max_report(hid, HID_OUTPUT_REPORT, &usbhid->bufsize); |
| 1136 | hid_find_max_report(hid, HID_FEATURE_REPORT, &usbhid->bufsize); |
| 1137 | |
| 1138 | if (usbhid->bufsize > HID_MAX_BUFFER_SIZE) |
| 1139 | usbhid->bufsize = HID_MAX_BUFFER_SIZE; |
Michael Haboustak | bf0964d | 2005-09-05 00:12:01 -0500 | [diff] [blame] | 1140 | |
| 1141 | hid_find_max_report(hid, HID_INPUT_REPORT, &insize); |
| 1142 | |
| 1143 | if (insize > HID_MAX_BUFFER_SIZE) |
| 1144 | insize = HID_MAX_BUFFER_SIZE; |
| 1145 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1146 | if (hid_alloc_buffers(dev, hid)) { |
| 1147 | hid_free_buffers(dev, hid); |
| 1148 | goto fail; |
| 1149 | } |
| 1150 | |
| 1151 | for (n = 0; n < interface->desc.bNumEndpoints; n++) { |
| 1152 | |
| 1153 | struct usb_endpoint_descriptor *endpoint; |
| 1154 | int pipe; |
| 1155 | int interval; |
| 1156 | |
| 1157 | endpoint = &interface->endpoint[n].desc; |
| 1158 | if ((endpoint->bmAttributes & 3) != 3) /* Not an interrupt endpoint */ |
| 1159 | continue; |
| 1160 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1161 | interval = endpoint->bInterval; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1162 | |
| 1163 | /* Change the polling interval of mice. */ |
| 1164 | if (hid->collection->usage == HID_GD_MOUSE && hid_mousepoll_interval > 0) |
| 1165 | interval = hid_mousepoll_interval; |
Dmitry Torokhov | 05f091ab | 2005-05-29 02:29:01 -0500 | [diff] [blame] | 1166 | |
Luiz Fernando N. Capitulino | 0f12aa0 | 2006-10-26 13:02:51 -0300 | [diff] [blame] | 1167 | if (usb_endpoint_dir_in(endpoint)) { |
Jiri Kosina | 4916b3a | 2006-12-08 18:41:03 +0100 | [diff] [blame] | 1168 | if (usbhid->urbin) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1169 | continue; |
Jiri Kosina | 4916b3a | 2006-12-08 18:41:03 +0100 | [diff] [blame] | 1170 | if (!(usbhid->urbin = usb_alloc_urb(0, GFP_KERNEL))) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1171 | goto fail; |
| 1172 | pipe = usb_rcvintpipe(dev, endpoint->bEndpointAddress); |
Jiri Kosina | 4916b3a | 2006-12-08 18:41:03 +0100 | [diff] [blame] | 1173 | usb_fill_int_urb(usbhid->urbin, dev, pipe, usbhid->inbuf, insize, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1174 | hid_irq_in, hid, interval); |
Jiri Kosina | 4916b3a | 2006-12-08 18:41:03 +0100 | [diff] [blame] | 1175 | usbhid->urbin->transfer_dma = usbhid->inbuf_dma; |
| 1176 | usbhid->urbin->transfer_flags |= URB_NO_TRANSFER_DMA_MAP; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1177 | } else { |
Jiri Kosina | 4916b3a | 2006-12-08 18:41:03 +0100 | [diff] [blame] | 1178 | if (usbhid->urbout) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1179 | continue; |
Jiri Kosina | 4916b3a | 2006-12-08 18:41:03 +0100 | [diff] [blame] | 1180 | if (!(usbhid->urbout = usb_alloc_urb(0, GFP_KERNEL))) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1181 | goto fail; |
| 1182 | pipe = usb_sndintpipe(dev, endpoint->bEndpointAddress); |
Jiri Kosina | 4916b3a | 2006-12-08 18:41:03 +0100 | [diff] [blame] | 1183 | usb_fill_int_urb(usbhid->urbout, dev, pipe, usbhid->outbuf, 0, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1184 | hid_irq_out, hid, interval); |
Jiri Kosina | 4916b3a | 2006-12-08 18:41:03 +0100 | [diff] [blame] | 1185 | usbhid->urbout->transfer_dma = usbhid->outbuf_dma; |
| 1186 | usbhid->urbout->transfer_flags |= URB_NO_TRANSFER_DMA_MAP; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1187 | } |
| 1188 | } |
| 1189 | |
Jiri Kosina | 4916b3a | 2006-12-08 18:41:03 +0100 | [diff] [blame] | 1190 | if (!usbhid->urbin) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1191 | err("couldn't find an input interrupt endpoint"); |
| 1192 | goto fail; |
| 1193 | } |
| 1194 | |
| 1195 | init_waitqueue_head(&hid->wait); |
| 1196 | |
Jiri Kosina | 4916b3a | 2006-12-08 18:41:03 +0100 | [diff] [blame] | 1197 | INIT_WORK(&usbhid->reset_work, hid_reset); |
| 1198 | setup_timer(&usbhid->io_retry, hid_retry_timeout, (unsigned long) hid); |
Alan Stern | aef4e26 | 2006-01-31 12:58:38 -0500 | [diff] [blame] | 1199 | |
Jiri Kosina | 4916b3a | 2006-12-08 18:41:03 +0100 | [diff] [blame] | 1200 | spin_lock_init(&usbhid->inlock); |
| 1201 | spin_lock_init(&usbhid->outlock); |
| 1202 | spin_lock_init(&usbhid->ctrllock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1203 | |
| 1204 | hid->version = le16_to_cpu(hdesc->bcdHID); |
| 1205 | hid->country = hdesc->bCountryCode; |
Anssi Hannula | be82097 | 2007-01-19 19:28:17 +0200 | [diff] [blame] | 1206 | hid->dev = &intf->dev; |
Jiri Kosina | 4916b3a | 2006-12-08 18:41:03 +0100 | [diff] [blame] | 1207 | usbhid->intf = intf; |
| 1208 | usbhid->ifnum = interface->desc.bInterfaceNumber; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1209 | |
| 1210 | hid->name[0] = 0; |
| 1211 | |
Dmitry Torokhov | c5b7c7c | 2005-09-15 02:01:47 -0500 | [diff] [blame] | 1212 | if (dev->manufacturer) |
| 1213 | strlcpy(hid->name, dev->manufacturer, sizeof(hid->name)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1214 | |
Dmitry Torokhov | c5b7c7c | 2005-09-15 02:01:47 -0500 | [diff] [blame] | 1215 | if (dev->product) { |
| 1216 | if (dev->manufacturer) |
| 1217 | strlcat(hid->name, " ", sizeof(hid->name)); |
| 1218 | strlcat(hid->name, dev->product, sizeof(hid->name)); |
| 1219 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1220 | |
Dmitry Torokhov | c5b7c7c | 2005-09-15 02:01:47 -0500 | [diff] [blame] | 1221 | if (!strlen(hid->name)) |
| 1222 | snprintf(hid->name, sizeof(hid->name), "HID %04x:%04x", |
| 1223 | le16_to_cpu(dev->descriptor.idVendor), |
| 1224 | le16_to_cpu(dev->descriptor.idProduct)); |
| 1225 | |
Jiri Kosina | 229695e | 2006-12-08 18:40:53 +0100 | [diff] [blame] | 1226 | hid->bus = BUS_USB; |
| 1227 | hid->vendor = dev->descriptor.idVendor; |
| 1228 | hid->product = dev->descriptor.idProduct; |
| 1229 | |
Dmitry Torokhov | c5b7c7c | 2005-09-15 02:01:47 -0500 | [diff] [blame] | 1230 | usb_make_path(dev, hid->phys, sizeof(hid->phys)); |
| 1231 | strlcat(hid->phys, "/input", sizeof(hid->phys)); |
| 1232 | len = strlen(hid->phys); |
| 1233 | if (len < sizeof(hid->phys) - 1) |
| 1234 | snprintf(hid->phys + len, sizeof(hid->phys) - len, |
| 1235 | "%d", intf->altsetting[0].desc.bInterfaceNumber); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1236 | |
| 1237 | if (usb_string(dev, dev->descriptor.iSerialNumber, hid->uniq, 64) <= 0) |
| 1238 | hid->uniq[0] = 0; |
| 1239 | |
Jiri Kosina | 4916b3a | 2006-12-08 18:41:03 +0100 | [diff] [blame] | 1240 | usbhid->urbctrl = usb_alloc_urb(0, GFP_KERNEL); |
| 1241 | if (!usbhid->urbctrl) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1242 | goto fail; |
Dmitry Torokhov | c5b7c7c | 2005-09-15 02:01:47 -0500 | [diff] [blame] | 1243 | |
Jiri Kosina | 4916b3a | 2006-12-08 18:41:03 +0100 | [diff] [blame] | 1244 | usb_fill_control_urb(usbhid->urbctrl, dev, 0, (void *) usbhid->cr, |
| 1245 | usbhid->ctrlbuf, 1, hid_ctrl, hid); |
| 1246 | usbhid->urbctrl->setup_dma = usbhid->cr_dma; |
| 1247 | usbhid->urbctrl->transfer_dma = usbhid->ctrlbuf_dma; |
| 1248 | usbhid->urbctrl->transfer_flags |= (URB_NO_TRANSFER_DMA_MAP | URB_NO_SETUP_DMA_MAP); |
Jiri Kosina | 229695e | 2006-12-08 18:40:53 +0100 | [diff] [blame] | 1249 | hid->hidinput_input_event = usb_hidinput_input_event; |
Jiri Kosina | 7c37914 | 2007-01-24 11:54:19 +0100 | [diff] [blame] | 1250 | hid->hid_open = usbhid_open; |
| 1251 | hid->hid_close = usbhid_close; |
Jiri Kosina | aa938f7 | 2006-12-08 18:41:10 +0100 | [diff] [blame] | 1252 | #ifdef CONFIG_USB_HIDDEV |
| 1253 | hid->hiddev_hid_event = hiddev_hid_event; |
Jiri Kosina | aa8de2f | 2006-12-08 18:41:17 +0100 | [diff] [blame] | 1254 | hid->hiddev_report_event = hiddev_report_event; |
Jiri Kosina | aa938f7 | 2006-12-08 18:41:10 +0100 | [diff] [blame] | 1255 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1256 | return hid; |
| 1257 | |
| 1258 | fail: |
Jiri Kosina | 4916b3a | 2006-12-08 18:41:03 +0100 | [diff] [blame] | 1259 | usb_free_urb(usbhid->urbin); |
| 1260 | usb_free_urb(usbhid->urbout); |
| 1261 | usb_free_urb(usbhid->urbctrl); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1262 | hid_free_buffers(dev, hid); |
| 1263 | hid_free_device(hid); |
| 1264 | |
| 1265 | return NULL; |
| 1266 | } |
| 1267 | |
| 1268 | static void hid_disconnect(struct usb_interface *intf) |
| 1269 | { |
| 1270 | struct hid_device *hid = usb_get_intfdata (intf); |
Jiri Kosina | 4916b3a | 2006-12-08 18:41:03 +0100 | [diff] [blame] | 1271 | struct usbhid_device *usbhid; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1272 | |
| 1273 | if (!hid) |
| 1274 | return; |
| 1275 | |
Jiri Kosina | 4916b3a | 2006-12-08 18:41:03 +0100 | [diff] [blame] | 1276 | usbhid = hid->driver_data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1277 | |
Jiri Kosina | 4916b3a | 2006-12-08 18:41:03 +0100 | [diff] [blame] | 1278 | spin_lock_irq(&usbhid->inlock); /* Sync with error handler */ |
| 1279 | usb_set_intfdata(intf, NULL); |
| 1280 | spin_unlock_irq(&usbhid->inlock); |
| 1281 | usb_kill_urb(usbhid->urbin); |
| 1282 | usb_kill_urb(usbhid->urbout); |
| 1283 | usb_kill_urb(usbhid->urbctrl); |
| 1284 | |
| 1285 | del_timer_sync(&usbhid->io_retry); |
Alan Stern | aef4e26 | 2006-01-31 12:58:38 -0500 | [diff] [blame] | 1286 | flush_scheduled_work(); |
| 1287 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1288 | if (hid->claimed & HID_CLAIMED_INPUT) |
| 1289 | hidinput_disconnect(hid); |
| 1290 | if (hid->claimed & HID_CLAIMED_HIDDEV) |
| 1291 | hiddev_disconnect(hid); |
| 1292 | |
Jiri Kosina | 4916b3a | 2006-12-08 18:41:03 +0100 | [diff] [blame] | 1293 | usb_free_urb(usbhid->urbin); |
| 1294 | usb_free_urb(usbhid->urbctrl); |
| 1295 | usb_free_urb(usbhid->urbout); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1296 | |
Anssi Hannula | be82097 | 2007-01-19 19:28:17 +0200 | [diff] [blame] | 1297 | hid_free_buffers(hid_to_usb_dev(hid), hid); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1298 | hid_free_device(hid); |
| 1299 | } |
| 1300 | |
| 1301 | static int hid_probe(struct usb_interface *intf, const struct usb_device_id *id) |
| 1302 | { |
| 1303 | struct hid_device *hid; |
| 1304 | char path[64]; |
| 1305 | int i; |
| 1306 | char *c; |
| 1307 | |
| 1308 | dbg("HID probe called for ifnum %d", |
| 1309 | intf->altsetting->desc.bInterfaceNumber); |
| 1310 | |
| 1311 | if (!(hid = usb_hid_configure(intf))) |
Stelian Pop | 479f6ea | 2005-06-22 17:53:28 +0200 | [diff] [blame] | 1312 | return -ENODEV; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1313 | |
Jiri Kosina | 4916b3a | 2006-12-08 18:41:03 +0100 | [diff] [blame] | 1314 | usbhid_init_reports(hid); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1315 | hid_dump_device(hid); |
| 1316 | |
| 1317 | if (!hidinput_connect(hid)) |
| 1318 | hid->claimed |= HID_CLAIMED_INPUT; |
| 1319 | if (!hiddev_connect(hid)) |
| 1320 | hid->claimed |= HID_CLAIMED_HIDDEV; |
| 1321 | |
| 1322 | usb_set_intfdata(intf, hid); |
| 1323 | |
| 1324 | if (!hid->claimed) { |
| 1325 | printk ("HID device not claimed by input or hiddev\n"); |
| 1326 | hid_disconnect(intf); |
Stelian Pop | 479f6ea | 2005-06-22 17:53:28 +0200 | [diff] [blame] | 1327 | return -ENODEV; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1328 | } |
| 1329 | |
Anssi Hannula | c414606 | 2007-01-11 16:51:16 +0200 | [diff] [blame] | 1330 | if ((hid->claimed & HID_CLAIMED_INPUT)) |
Jiri Kosina | 4916b3a | 2006-12-08 18:41:03 +0100 | [diff] [blame] | 1331 | hid_ff_init(hid); |
| 1332 | |
Geoff Levand | 4a1a4d8 | 2007-01-15 20:11:52 -0800 | [diff] [blame] | 1333 | if (hid->quirks & HID_QUIRK_SONY_PS3_CONTROLLER) |
| 1334 | hid_fixup_sony_ps3_controller(interface_to_usbdev(intf), |
| 1335 | intf->cur_altsetting->desc.bInterfaceNumber); |
| 1336 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1337 | printk(KERN_INFO); |
| 1338 | |
| 1339 | if (hid->claimed & HID_CLAIMED_INPUT) |
| 1340 | printk("input"); |
| 1341 | if (hid->claimed == (HID_CLAIMED_INPUT | HID_CLAIMED_HIDDEV)) |
| 1342 | printk(","); |
| 1343 | if (hid->claimed & HID_CLAIMED_HIDDEV) |
| 1344 | printk("hiddev%d", hid->minor); |
| 1345 | |
| 1346 | c = "Device"; |
| 1347 | for (i = 0; i < hid->maxcollection; i++) { |
| 1348 | if (hid->collection[i].type == HID_COLLECTION_APPLICATION && |
| 1349 | (hid->collection[i].usage & HID_USAGE_PAGE) == HID_UP_GENDESK && |
| 1350 | (hid->collection[i].usage & 0xffff) < ARRAY_SIZE(hid_types)) { |
| 1351 | c = hid_types[hid->collection[i].usage & 0xffff]; |
| 1352 | break; |
| 1353 | } |
| 1354 | } |
| 1355 | |
| 1356 | usb_make_path(interface_to_usbdev(intf), path, 63); |
| 1357 | |
| 1358 | printk(": USB HID v%x.%02x %s [%s] on %s\n", |
| 1359 | hid->version >> 8, hid->version & 0xff, c, hid->name, path); |
| 1360 | |
| 1361 | return 0; |
| 1362 | } |
| 1363 | |
David Brownell | 27d72e8 | 2005-04-18 17:39:22 -0700 | [diff] [blame] | 1364 | static int hid_suspend(struct usb_interface *intf, pm_message_t message) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1365 | { |
| 1366 | struct hid_device *hid = usb_get_intfdata (intf); |
Jiri Kosina | 4916b3a | 2006-12-08 18:41:03 +0100 | [diff] [blame] | 1367 | struct usbhid_device *usbhid = hid->driver_data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1368 | |
Jiri Kosina | 4916b3a | 2006-12-08 18:41:03 +0100 | [diff] [blame] | 1369 | spin_lock_irq(&usbhid->inlock); /* Sync with error handler */ |
| 1370 | set_bit(HID_SUSPENDED, &usbhid->iofl); |
| 1371 | spin_unlock_irq(&usbhid->inlock); |
| 1372 | del_timer(&usbhid->io_retry); |
| 1373 | usb_kill_urb(usbhid->urbin); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1374 | dev_dbg(&intf->dev, "suspend\n"); |
| 1375 | return 0; |
| 1376 | } |
| 1377 | |
| 1378 | static int hid_resume(struct usb_interface *intf) |
| 1379 | { |
| 1380 | struct hid_device *hid = usb_get_intfdata (intf); |
Jiri Kosina | 4916b3a | 2006-12-08 18:41:03 +0100 | [diff] [blame] | 1381 | struct usbhid_device *usbhid = hid->driver_data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1382 | int status; |
| 1383 | |
Jiri Kosina | 4916b3a | 2006-12-08 18:41:03 +0100 | [diff] [blame] | 1384 | clear_bit(HID_SUSPENDED, &usbhid->iofl); |
| 1385 | usbhid->retry_delay = 0; |
Alan Stern | aef4e26 | 2006-01-31 12:58:38 -0500 | [diff] [blame] | 1386 | status = hid_start_in(hid); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1387 | dev_dbg(&intf->dev, "resume status %d\n", status); |
| 1388 | return status; |
| 1389 | } |
| 1390 | |
Alan Stern | df9a1f4 | 2006-06-01 13:55:28 -0400 | [diff] [blame] | 1391 | /* Treat USB reset pretty much the same as suspend/resume */ |
| 1392 | static void hid_pre_reset(struct usb_interface *intf) |
| 1393 | { |
| 1394 | /* FIXME: What if the interface is already suspended? */ |
| 1395 | hid_suspend(intf, PMSG_ON); |
| 1396 | } |
| 1397 | |
| 1398 | static void hid_post_reset(struct usb_interface *intf) |
| 1399 | { |
| 1400 | struct usb_device *dev = interface_to_usbdev (intf); |
| 1401 | |
| 1402 | hid_set_idle(dev, intf->cur_altsetting->desc.bInterfaceNumber, 0, 0); |
| 1403 | /* FIXME: Any more reinitialization needed? */ |
| 1404 | |
| 1405 | hid_resume(intf); |
| 1406 | } |
| 1407 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1408 | static struct usb_device_id hid_usb_ids [] = { |
| 1409 | { .match_flags = USB_DEVICE_ID_MATCH_INT_CLASS, |
| 1410 | .bInterfaceClass = USB_INTERFACE_CLASS_HID }, |
| 1411 | { } /* Terminating entry */ |
| 1412 | }; |
| 1413 | |
| 1414 | MODULE_DEVICE_TABLE (usb, hid_usb_ids); |
| 1415 | |
| 1416 | static struct usb_driver hid_driver = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1417 | .name = "usbhid", |
| 1418 | .probe = hid_probe, |
| 1419 | .disconnect = hid_disconnect, |
| 1420 | .suspend = hid_suspend, |
| 1421 | .resume = hid_resume, |
Alan Stern | df9a1f4 | 2006-06-01 13:55:28 -0400 | [diff] [blame] | 1422 | .pre_reset = hid_pre_reset, |
| 1423 | .post_reset = hid_post_reset, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1424 | .id_table = hid_usb_ids, |
| 1425 | }; |
| 1426 | |
| 1427 | static int __init hid_init(void) |
| 1428 | { |
| 1429 | int retval; |
| 1430 | retval = hiddev_init(); |
| 1431 | if (retval) |
| 1432 | goto hiddev_init_fail; |
| 1433 | retval = usb_register(&hid_driver); |
| 1434 | if (retval) |
| 1435 | goto usb_register_fail; |
| 1436 | info(DRIVER_VERSION ":" DRIVER_DESC); |
| 1437 | |
| 1438 | return 0; |
| 1439 | usb_register_fail: |
| 1440 | hiddev_exit(); |
| 1441 | hiddev_init_fail: |
| 1442 | return retval; |
| 1443 | } |
| 1444 | |
| 1445 | static void __exit hid_exit(void) |
| 1446 | { |
| 1447 | usb_deregister(&hid_driver); |
| 1448 | hiddev_exit(); |
| 1449 | } |
| 1450 | |
| 1451 | module_init(hid_init); |
| 1452 | module_exit(hid_exit); |
| 1453 | |
| 1454 | MODULE_AUTHOR(DRIVER_AUTHOR); |
| 1455 | MODULE_DESCRIPTION(DRIVER_DESC); |
| 1456 | MODULE_LICENSE(DRIVER_LICENSE); |