hid-core.c 48 KB

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