Kconfig 7.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273
  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 HID_DEBUG
  29. bool "HID debugging support"
  30. default y if !EMBEDDED
  31. depends on HID
  32. ---help---
  33. This option lets the HID layer output diagnostics about its internal
  34. state, resolve HID usages, dump HID fields, etc. Individual HID drivers
  35. use this debugging facility to output information about individual HID
  36. devices, etc.
  37. This feature is useful for those who are either debugging the HID parser
  38. or any HID hardware device.
  39. If unsure, say N
  40. config HIDRAW
  41. bool "/dev/hidraw raw HID device support"
  42. depends on HID
  43. ---help---
  44. Say Y here if you want to support HID devices (from the USB
  45. specification standpoint) that aren't strictly user interface
  46. devices, like monitor controls and Uninterruptable Power Supplies.
  47. This module supports these devices separately using a separate
  48. event interface on /dev/hidraw.
  49. There is also a /dev/hiddev configuration option in the USB HID
  50. configuration menu. In comparison to hiddev, this device does not process
  51. the hid events at all (no parsing, no lookups). This lets applications
  52. to work on raw hid events when they want to, and avoid using transport-specific
  53. userspace libhid/libusb libraries.
  54. If unsure, say Y.
  55. source "drivers/hid/usbhid/Kconfig"
  56. menu "Special HID drivers"
  57. depends on HID
  58. config HID_COMPAT
  59. bool "Load all HID drivers on hid core load"
  60. default y
  61. ---help---
  62. Compatible option for older userspace. If you have system without udev
  63. support of module loading through aliases and also old
  64. module-init-tools which can't handle hid bus, choose Y here. Otherwise
  65. say N. If you say N and your userspace is old enough, the only
  66. functionality you lose is modules autoloading.
  67. If unsure, say Y.
  68. config HID_A4TECH
  69. tristate "A4 tech" if EMBEDDED
  70. depends on USB_HID
  71. default !EMBEDDED
  72. ---help---
  73. Support for A4 tech X5 and WOP-35 / Trust 450L mice.
  74. config HID_APPLE
  75. tristate "Apple" if EMBEDDED
  76. depends on (USB_HID || BT_HIDP)
  77. default !EMBEDDED
  78. ---help---
  79. Support for some Apple devices which less or more break
  80. HID specification.
  81. Say Y here if you want support for keyboards of Apple iBooks, PowerBooks,
  82. MacBooks, MacBook Pros and Apple Aluminum.
  83. config HID_BELKIN
  84. tristate "Belkin" if EMBEDDED
  85. depends on USB_HID
  86. default !EMBEDDED
  87. ---help---
  88. Support for Belkin Flip KVM and Wireless keyboard.
  89. config HID_CHERRY
  90. tristate "Cherry" if EMBEDDED
  91. depends on USB_HID
  92. default !EMBEDDED
  93. ---help---
  94. Support for Cherry Cymotion keyboard.
  95. config HID_CHICONY
  96. tristate "Chicony" if EMBEDDED
  97. depends on USB_HID
  98. default !EMBEDDED
  99. ---help---
  100. Support for Chicony Tactical pad.
  101. config HID_CYPRESS
  102. tristate "Cypress" if EMBEDDED
  103. depends on USB_HID
  104. default !EMBEDDED
  105. ---help---
  106. Support for cypress mouse and barcode readers.
  107. config HID_EZKEY
  108. tristate "Ezkey" if EMBEDDED
  109. depends on USB_HID
  110. default !EMBEDDED
  111. ---help---
  112. Support for Ezkey BTC 8193 keyboard.
  113. config HID_GYRATION
  114. tristate "Gyration" if EMBEDDED
  115. depends on USB_HID
  116. default !EMBEDDED
  117. ---help---
  118. Support for Gyration remote control.
  119. config HID_LOGITECH
  120. tristate "Logitech" if EMBEDDED
  121. depends on USB_HID
  122. default !EMBEDDED
  123. ---help---
  124. Support for Logitech devices that are not fully compliant with HID standard.
  125. config LOGITECH_FF
  126. bool "Logitech force feedback"
  127. depends on HID_LOGITECH
  128. select INPUT_FF_MEMLESS
  129. help
  130. Say Y here if you have one of these devices:
  131. - Logitech WingMan Cordless RumblePad
  132. - Logitech WingMan Cordless RumblePad 2
  133. - Logitech WingMan Force 3D
  134. - Logitech Formula Force EX
  135. - Logitech MOMO Force wheel
  136. and if you want to enable force feedback for them.
  137. Note: if you say N here, this device will still be supported, but without
  138. force feedback.
  139. config LOGIRUMBLEPAD2_FF
  140. bool "Logitech Rumblepad 2 force feedback"
  141. depends on HID_LOGITECH
  142. select INPUT_FF_MEMLESS
  143. help
  144. Say Y here if you want to enable force feedback support for Logitech
  145. Rumblepad 2 devices.
  146. config HID_MICROSOFT
  147. tristate "Microsoft" if EMBEDDED
  148. depends on USB_HID
  149. default !EMBEDDED
  150. ---help---
  151. Support for Microsoft devices that are not fully compliant with HID standard.
  152. config HID_MONTEREY
  153. tristate "Monterey" if EMBEDDED
  154. depends on USB_HID
  155. default !EMBEDDED
  156. ---help---
  157. Support for Monterey Genius KB29E.
  158. config HID_NTRIG
  159. tristate "NTrig" if EMBEDDED
  160. depends on USB_HID
  161. default !EMBEDDED
  162. ---help---
  163. Support for N-Trig touch screen.
  164. config HID_PANTHERLORD
  165. tristate "Pantherlord devices support" if EMBEDDED
  166. depends on USB_HID
  167. default !EMBEDDED
  168. ---help---
  169. Support for PantherLord/GreenAsia based device support.
  170. config PANTHERLORD_FF
  171. bool "Pantherlord force feedback support"
  172. depends on HID_PANTHERLORD
  173. select INPUT_FF_MEMLESS
  174. help
  175. Say Y here if you have a PantherLord/GreenAsia based game controller
  176. or adapter and want to enable force feedback support for it.
  177. config HID_PETALYNX
  178. tristate "Petalynx" if EMBEDDED
  179. depends on USB_HID
  180. default !EMBEDDED
  181. ---help---
  182. Support for Petalynx Maxter remote control.
  183. config HID_SAMSUNG
  184. tristate "Samsung" if EMBEDDED
  185. depends on USB_HID
  186. default !EMBEDDED
  187. ---help---
  188. Support for Samsung InfraRed remote control.
  189. config HID_SONY
  190. tristate "Sony" if EMBEDDED
  191. depends on USB_HID
  192. default !EMBEDDED
  193. ---help---
  194. Support for Sony PS3 controller.
  195. config HID_SUNPLUS
  196. tristate "Sunplus" if EMBEDDED
  197. depends on USB_HID
  198. default !EMBEDDED
  199. ---help---
  200. Support for Sunplus wireless desktop.
  201. config GREENASIA_FF
  202. tristate "GreenAsia (Product ID 0x12) force feedback support"
  203. depends on USB_HID
  204. select INPUT_FF_MEMLESS
  205. ---help---
  206. Say Y here if you have a GreenAsia (Product ID 0x12) based game controller
  207. (like MANTA Warior MM816 and SpeedLink Strike2 SL-6635) or adapter
  208. and want to enable force feedback support for it.
  209. config HID_TOPSEED
  210. tristate "TopSeed Cyberlink remote control support" if EMBEDDED
  211. depends on USB_HID
  212. default !EMBEDDED
  213. ---help---
  214. Say Y if you have a TopSeed Cyberlink remote control.
  215. config THRUSTMASTER_FF
  216. tristate "ThrustMaster devices support"
  217. depends on USB_HID
  218. select INPUT_FF_MEMLESS
  219. help
  220. Say Y here if you have a THRUSTMASTER FireStore Dual Power 2 or
  221. a THRUSTMASTER Ferrari GT Rumble Force or Force Feedback Wheel.
  222. config ZEROPLUS_FF
  223. tristate "Zeroplus based game controller support"
  224. depends on USB_HID
  225. select INPUT_FF_MEMLESS
  226. help
  227. Say Y here if you have a Zeroplus based game controller.
  228. endmenu
  229. endif # HID_SUPPORT