Kconfig 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404
  1. #
  2. # HID driver configuration
  3. #
  4. menuconfig HID_SUPPORT
  5. bool "HID Devices"
  6. depends on INPUT
  7. default y
  8. ---help---
  9. Say Y here to get to see options for various computer-human interface
  10. device drivers. This option alone does not add any kernel code.
  11. If you say N, all options in this submenu will be skipped and disabled.
  12. if HID_SUPPORT
  13. config HID
  14. tristate "Generic HID support"
  15. depends on INPUT
  16. default y
  17. ---help---
  18. A human interface device (HID) is a type of computer device that
  19. interacts directly with and takes input from humans. The term "HID"
  20. most commonly used to refer to the USB-HID specification, but other
  21. devices (such as, but not strictly limited to, Bluetooth) are
  22. designed using HID specification (this involves certain keyboards,
  23. mice, tablets, etc). This option compiles into kernel the generic
  24. HID layer code (parser, usages, etc.), which can then be used by
  25. transport-specific HID implementation (like USB or Bluetooth).
  26. For docs and specs, see http://www.usb.org/developers/hidpage/
  27. If unsure, say Y.
  28. config HIDRAW
  29. bool "/dev/hidraw raw HID device support"
  30. depends on HID
  31. ---help---
  32. Say Y here if you want to support HID devices (from the USB
  33. specification standpoint) that aren't strictly user interface
  34. devices, like monitor controls and Uninterruptable Power Supplies.
  35. This module supports these devices separately using a separate
  36. event interface on /dev/hidraw.
  37. There is also a /dev/hiddev configuration option in the USB HID
  38. configuration menu. In comparison to hiddev, this device does not process
  39. the hid events at all (no parsing, no lookups). This lets applications
  40. to work on raw hid events when they want to, and avoid using transport-specific
  41. userspace libhid/libusb libraries.
  42. If unsure, say Y.
  43. source "drivers/hid/usbhid/Kconfig"
  44. menu "Special HID drivers"
  45. depends on HID
  46. config HID_3M_PCT
  47. tristate "3M PCT"
  48. depends on USB_HID
  49. ---help---
  50. Support for 3M PCT touch screens.
  51. config HID_A4TECH
  52. tristate "A4 tech" if EMBEDDED
  53. depends on USB_HID
  54. default !EMBEDDED
  55. ---help---
  56. Support for A4 tech X5 and WOP-35 / Trust 450L mice.
  57. config HID_APPLE
  58. tristate "Apple" if EMBEDDED
  59. depends on (USB_HID || BT_HIDP)
  60. default !EMBEDDED
  61. ---help---
  62. Support for some Apple devices which less or more break
  63. HID specification.
  64. Say Y here if you want support for keyboards of Apple iBooks, PowerBooks,
  65. MacBooks, MacBook Pros and Apple Aluminum.
  66. config HID_BELKIN
  67. tristate "Belkin" if EMBEDDED
  68. depends on USB_HID
  69. default !EMBEDDED
  70. ---help---
  71. Support for Belkin Flip KVM and Wireless keyboard.
  72. config HID_CANDO
  73. tristate "Cando dual touch panel"
  74. depends on USB_HID
  75. ---help---
  76. Support for Cando dual touch panel.
  77. config HID_CHERRY
  78. tristate "Cherry" if EMBEDDED
  79. depends on USB_HID
  80. default !EMBEDDED
  81. ---help---
  82. Support for Cherry Cymotion keyboard.
  83. config HID_CHICONY
  84. tristate "Chicony" if EMBEDDED
  85. depends on USB_HID
  86. default !EMBEDDED
  87. ---help---
  88. Support for Chicony Tactical pad.
  89. config HID_CYPRESS
  90. tristate "Cypress" if EMBEDDED
  91. depends on USB_HID
  92. default !EMBEDDED
  93. ---help---
  94. Support for cypress mouse and barcode readers.
  95. config HID_DRAGONRISE
  96. tristate "DragonRise Inc. support" if EMBEDDED
  97. depends on USB_HID
  98. default !EMBEDDED
  99. ---help---
  100. Say Y here if you have DragonRise Inc.game controllers.
  101. config DRAGONRISE_FF
  102. bool "DragonRise Inc. force feedback support"
  103. depends on HID_DRAGONRISE
  104. select INPUT_FF_MEMLESS
  105. ---help---
  106. Say Y here if you want to enable force feedback support for DragonRise Inc.
  107. game controllers.
  108. config HID_EGALAX
  109. tristate "eGalax multi-touch panel"
  110. depends on USB_HID
  111. ---help---
  112. Support for the eGalax dual-touch panel
  113. config HID_EZKEY
  114. tristate "Ezkey" if EMBEDDED
  115. depends on USB_HID
  116. default !EMBEDDED
  117. ---help---
  118. Support for Ezkey BTC 8193 keyboard.
  119. config HID_KYE
  120. tristate "Kye" if EMBEDDED
  121. depends on USB_HID
  122. default !EMBEDDED
  123. ---help---
  124. Support for Kye/Genius Ergo Mouse.
  125. config HID_GYRATION
  126. tristate "Gyration" if EMBEDDED
  127. depends on USB_HID
  128. default !EMBEDDED
  129. ---help---
  130. Support for Gyration remote control.
  131. config HID_TWINHAN
  132. tristate "Twinhan" if EMBEDDED
  133. depends on USB_HID
  134. default !EMBEDDED
  135. ---help---
  136. Support for Twinhan IR remote control.
  137. config HID_KENSINGTON
  138. tristate "Kensington" if EMBEDDED
  139. depends on USB_HID
  140. default !EMBEDDED
  141. ---help---
  142. Support for Kensington Slimblade Trackball.
  143. config HID_LOGITECH
  144. tristate "Logitech" if EMBEDDED
  145. depends on USB_HID
  146. default !EMBEDDED
  147. ---help---
  148. Support for Logitech devices that are not fully compliant with HID standard.
  149. config LOGITECH_FF
  150. bool "Logitech force feedback support"
  151. depends on HID_LOGITECH
  152. select INPUT_FF_MEMLESS
  153. help
  154. Say Y here if you have one of these devices:
  155. - Logitech WingMan Cordless RumblePad
  156. - Logitech WingMan Cordless RumblePad 2
  157. - Logitech WingMan Force 3D
  158. - Logitech Formula Force EX
  159. - Logitech WingMan Formula Force GP
  160. - Logitech MOMO Force wheel
  161. and if you want to enable force feedback for them.
  162. Note: if you say N here, this device will still be supported, but without
  163. force feedback.
  164. config LOGIRUMBLEPAD2_FF
  165. bool "Logitech Rumblepad 2 force feedback support"
  166. depends on HID_LOGITECH
  167. select INPUT_FF_MEMLESS
  168. help
  169. Say Y here if you want to enable force feedback support for Logitech
  170. Rumblepad 2 devices.
  171. config LOGIG940_FF
  172. bool "Logitech Flight System G940 force feedback support"
  173. depends on HID_LOGITECH
  174. select INPUT_FF_MEMLESS
  175. help
  176. Say Y here if you want to enable force feedback support for Logitech
  177. Flight System G940 devices.
  178. config HID_MAGICMOUSE
  179. tristate "Apple MagicMouse multi-touch support"
  180. depends on BT_HIDP
  181. ---help---
  182. Support for the Apple Magic Mouse multi-touch.
  183. Say Y here if you want support for the multi-touch features of the
  184. Apple Wireless "Magic" Mouse.
  185. config HID_MICROSOFT
  186. tristate "Microsoft" if EMBEDDED
  187. depends on USB_HID
  188. default !EMBEDDED
  189. ---help---
  190. Support for Microsoft devices that are not fully compliant with HID standard.
  191. config HID_MOSART
  192. tristate "MosArt"
  193. depends on USB_HID
  194. ---help---
  195. Support for MosArt dual-touch panels.
  196. config HID_MONTEREY
  197. tristate "Monterey" if EMBEDDED
  198. depends on USB_HID
  199. default !EMBEDDED
  200. ---help---
  201. Support for Monterey Genius KB29E.
  202. config HID_NTRIG
  203. tristate "NTrig"
  204. depends on USB_HID
  205. ---help---
  206. Support for N-Trig touch screen.
  207. config HID_ORTEK
  208. tristate "Ortek" if EMBEDDED
  209. depends on USB_HID
  210. default !EMBEDDED
  211. ---help---
  212. Support for Ortek WKB-2000 wireless keyboard + mouse trackpad.
  213. config HID_PANTHERLORD
  214. tristate "Pantherlord support" if EMBEDDED
  215. depends on USB_HID
  216. default !EMBEDDED
  217. ---help---
  218. Say Y here if you have a PantherLord/GreenAsia based game controller
  219. or adapter.
  220. config PANTHERLORD_FF
  221. bool "Pantherlord force feedback support"
  222. depends on HID_PANTHERLORD
  223. select INPUT_FF_MEMLESS
  224. ---help---
  225. Say Y here if you have a PantherLord/GreenAsia based game controller
  226. or adapter and want to enable force feedback support for it.
  227. config HID_PETALYNX
  228. tristate "Petalynx" if EMBEDDED
  229. depends on USB_HID
  230. default !EMBEDDED
  231. ---help---
  232. Support for Petalynx Maxter remote control.
  233. config HID_QUANTA
  234. tristate "Quanta Optical Touch"
  235. depends on USB_HID
  236. ---help---
  237. Support for Quanta Optical Touch dual-touch panels.
  238. config HID_SAMSUNG
  239. tristate "Samsung" if EMBEDDED
  240. depends on USB_HID
  241. default !EMBEDDED
  242. ---help---
  243. Support for Samsung InfraRed remote control or keyboards.
  244. config HID_SONY
  245. tristate "Sony" if EMBEDDED
  246. depends on USB_HID
  247. default !EMBEDDED
  248. ---help---
  249. Support for Sony PS3 controller.
  250. config HID_STANTUM
  251. tristate "Stantum"
  252. depends on USB_HID
  253. ---help---
  254. Support for Stantum multitouch panel.
  255. config HID_SUNPLUS
  256. tristate "Sunplus" if EMBEDDED
  257. depends on USB_HID
  258. default !EMBEDDED
  259. ---help---
  260. Support for Sunplus wireless desktop.
  261. config HID_GREENASIA
  262. tristate "GreenAsia (Product ID 0x12) support" if EMBEDDED
  263. depends on USB_HID
  264. default !EMBEDDED
  265. ---help---
  266. Say Y here if you have a GreenAsia (Product ID 0x12) based game
  267. controller or adapter.
  268. config GREENASIA_FF
  269. bool "GreenAsia (Product ID 0x12) force feedback support"
  270. depends on HID_GREENASIA
  271. select INPUT_FF_MEMLESS
  272. ---help---
  273. Say Y here if you have a GreenAsia (Product ID 0x12) based game controller
  274. (like MANTA Warrior MM816 and SpeedLink Strike2 SL-6635) or adapter
  275. and want to enable force feedback support for it.
  276. config HID_SMARTJOYPLUS
  277. tristate "SmartJoy PLUS PS2/USB adapter support" if EMBEDDED
  278. depends on USB_HID
  279. default !EMBEDDED
  280. ---help---
  281. Support for SmartJoy PLUS PS2/USB adapter.
  282. config SMARTJOYPLUS_FF
  283. bool "SmartJoy PLUS PS2/USB adapter force feedback support"
  284. depends on HID_SMARTJOYPLUS
  285. select INPUT_FF_MEMLESS
  286. ---help---
  287. Say Y here if you have a SmartJoy PLUS PS2/USB adapter and want to
  288. enable force feedback support for it.
  289. config HID_TOPSEED
  290. tristate "TopSeed Cyberlink remote control support" if EMBEDDED
  291. depends on USB_HID
  292. default !EMBEDDED
  293. ---help---
  294. Say Y if you have a TopSeed Cyberlink or BTC Emprex remote control.
  295. config HID_THRUSTMASTER
  296. tristate "ThrustMaster devices support" if EMBEDDED
  297. depends on USB_HID
  298. default !EMBEDDED
  299. ---help---
  300. Say Y here if you have a THRUSTMASTER FireStore Dual Power 2 or
  301. a THRUSTMASTER Ferrari GT Rumble Wheel.
  302. config THRUSTMASTER_FF
  303. bool "ThrustMaster devices force feedback support"
  304. depends on HID_THRUSTMASTER
  305. select INPUT_FF_MEMLESS
  306. ---help---
  307. Say Y here if you have a THRUSTMASTER FireStore Dual Power 2 or 3,
  308. a THRUSTMASTER Dual Trigger 3-in-1 or a THRUSTMASTER Ferrari GT
  309. Rumble Force or Force Feedback Wheel.
  310. config HID_WACOM
  311. tristate "Wacom Bluetooth devices support"
  312. depends on BT_HIDP
  313. ---help---
  314. Support for Wacom Graphire Bluetooth tablet.
  315. config HID_WACOM_POWER_SUPPLY
  316. bool "Wacom Bluetooth devices power supply status support"
  317. depends on HID_WACOM
  318. select POWER_SUPPLY
  319. ---help---
  320. Say Y here if you want to enable power supply status monitoring for
  321. Wacom Bluetooth devices.
  322. config HID_ZEROPLUS
  323. tristate "Zeroplus based game controller support" if EMBEDDED
  324. depends on USB_HID
  325. default !EMBEDDED
  326. ---help---
  327. Say Y here if you have a Zeroplus based game controller.
  328. config ZEROPLUS_FF
  329. bool "Zeroplus based game controller force feedback support"
  330. depends on HID_ZEROPLUS
  331. select INPUT_FF_MEMLESS
  332. ---help---
  333. Say Y here if you have a Zeroplus based game controller and want
  334. to have force feedback support for it.
  335. config HID_ZYDACRON
  336. tristate "Zydacron remote control support" if EMBEDDED
  337. depends on USB_HID
  338. default !EMBEDDED
  339. ---help---
  340. Support for Zydacron remote control.
  341. endmenu
  342. endif # HID_SUPPORT