hid-core.c 47 KB

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