Kconfig 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232
  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 loose is modules autoloading.
  67. If unsure, say Y.
  68. config HID_A4TECH
  69. tristate "A4 tech"
  70. default m
  71. depends on USB_HID
  72. ---help---
  73. Support for A4 tech X5 and WOP-35 / Trust 450L mice.
  74. config HID_APPLE
  75. tristate "Apple"
  76. default m
  77. depends on (USB_HID || BT_HIDP)
  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 the special keys (Fn, Numlock) on
  82. Apple iBooks, PowerBooks, MacBooks, MacBook Pros and aluminum USB
  83. keyboards.
  84. If unsure, say M.
  85. config HID_BELKIN
  86. tristate "Belkin"
  87. default m
  88. depends on USB_HID
  89. ---help---
  90. Support for Belkin Flip KVM and Wireless keyboard.
  91. config HID_CHERRY
  92. tristate "Cherry"
  93. default m
  94. depends on USB_HID
  95. ---help---
  96. Support for Cherry Cymotion.
  97. config HID_CHICONY
  98. tristate "Chicony"
  99. default m
  100. depends on USB_HID
  101. ---help---
  102. Support for Chicony Tactical pad.
  103. config HID_CYPRESS
  104. tristate "Cypress"
  105. default m
  106. depends on USB_HID
  107. ---help---
  108. Support for Cypress mouse and barcodes.
  109. config HID_DELL
  110. tristate "Dell"
  111. default m
  112. depends on USB_HID
  113. ---help---
  114. Support for Dell W7658.
  115. config HID_EZKEY
  116. tristate "Ezkey"
  117. default m
  118. depends on USB_HID
  119. ---help---
  120. Support for Ezkey mouse and barcodes.
  121. config HID_GYRATION
  122. tristate "Gyration"
  123. default m
  124. depends on USB_HID
  125. ---help---
  126. Support for Gyration remote.
  127. config HID_LOGITECH
  128. tristate "Logitech"
  129. default m
  130. depends on USB_HID
  131. ---help---
  132. Support for some Logitech devices which breaks less or more
  133. HID specification.
  134. config LOGITECH_FF
  135. bool "Logitech force feedback"
  136. depends on HID_LOGITECH
  137. select INPUT_FF_MEMLESS
  138. help
  139. Say Y here if you have one of these devices:
  140. - Logitech WingMan Cordless RumblePad
  141. - Logitech WingMan Cordless RumblePad 2
  142. - Logitech WingMan Force 3D
  143. - Logitech Formula Force EX
  144. - Logitech MOMO Force wheel
  145. and if you want to enable force feedback for them.
  146. Note: if you say N here, this device will still be supported, but without
  147. force feedback.
  148. config LOGIRUMBLEPAD2_FF
  149. bool "Logitech Rumblepad 2 force feedback"
  150. depends on HID_LOGITECH
  151. select INPUT_FF_MEMLESS
  152. help
  153. Say Y here if you want to enable force feedback support for Logitech
  154. Rumblepad 2 devices.
  155. config HID_MICROSOFT
  156. tristate "Microsoft"
  157. default m
  158. depends on USB_HID
  159. ---help---
  160. Support for some Microsoft devices which breaks less or more
  161. HID specification.
  162. config HID_MONTEREY
  163. tristate "Monterey"
  164. default m
  165. depends on USB_HID
  166. ---help---
  167. Support for Monterey Genius KB29E.
  168. config HID_PETALYNX
  169. tristate "Petalynx"
  170. default m
  171. depends on USB_HID
  172. ---help---
  173. Support for Petalynx Maxter remote.
  174. config HID_SAMSUNG
  175. tristate "Samsung"
  176. default m
  177. depends on USB_HID
  178. ---help---
  179. Support for Samsung IR remote.
  180. config HID_SONY
  181. tristate "Sony"
  182. default m
  183. depends on USB_HID
  184. ---help---
  185. Support for Sony PS3 controller.
  186. config HID_SUNPLUS
  187. tristate "Sunplus"
  188. default m
  189. depends on USB_HID
  190. ---help---
  191. Support for Sunplus WDesktop input device.
  192. endmenu
  193. endif # HID_SUPPORT