hid-core.c 49 KB

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