Kconfig 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308
  1. #
  2. # USB Input driver configuration
  3. #
  4. comment "USB Input Devices"
  5. depends on USB
  6. config USB_HID
  7. tristate "USB Human Interface Device (full HID) support"
  8. depends on USB
  9. ---help---
  10. Say Y here if you want full HID support to connect keyboards,
  11. mice, joysticks, graphic tablets, or any other HID based devices
  12. to your computer via USB. You also need to select HID Input layer
  13. support (below) if you want to use keyboards, mice, joysticks and
  14. the like ... as well as Uninterruptible Power Supply (UPS) and
  15. monitor control devices.
  16. You can't use this driver and the HIDBP (Boot Protocol) keyboard
  17. and mouse drivers at the same time. More information is available:
  18. <file:Documentation/input/input.txt>.
  19. If unsure, say Y.
  20. To compile this driver as a module, choose M here: the
  21. module will be called usbhid.
  22. comment "Input core support is needed for USB HID input layer or HIDBP support"
  23. depends on USB_HID && INPUT=n
  24. config USB_HIDINPUT
  25. bool "HID input layer support"
  26. default y
  27. depends on INPUT && USB_HID
  28. help
  29. Say Y here if you want to use a USB keyboard, mouse or joystick,
  30. or any other HID input device.
  31. If unsure, say Y.
  32. config HID_FF
  33. bool "Force feedback support (EXPERIMENTAL)"
  34. depends on USB_HIDINPUT && EXPERIMENTAL
  35. help
  36. Say Y here is you want force feedback support for a few HID devices.
  37. See below for a list of supported devices.
  38. See <file:Documentation/input/ff.txt> for a description of the force
  39. feedback API.
  40. If unsure, say N.
  41. config HID_PID
  42. bool "PID Devices (Microsoft Sidewinder Force Feedback 2)"
  43. depends on HID_FF
  44. help
  45. Say Y here if you have a PID-compliant joystick and wish to enable force
  46. feedback for it. The Microsoft Sidewinder Force Feedback 2 is one such
  47. device.
  48. config LOGITECH_FF
  49. bool "Logitech WingMan *3D support"
  50. depends on HID_FF
  51. help
  52. Say Y here if you have one of these devices:
  53. - Logitech WingMan Cordless RumblePad
  54. - Logitech WingMan Force 3D
  55. and if you want to enable force feedback for them.
  56. Note: if you say N here, this device will still be supported, but without
  57. force feedback.
  58. config THRUSTMASTER_FF
  59. bool "ThrustMaster FireStorm Dual Power 2 support (EXPERIMENTAL)"
  60. depends on HID_FF && EXPERIMENTAL
  61. help
  62. Say Y here if you have a THRUSTMASTER FireStore Dual Power 2,
  63. and want to enable force feedback support for it.
  64. Note: if you say N here, this device will still be supported, but without
  65. force feedback.
  66. config USB_HIDDEV
  67. bool "/dev/hiddev raw HID device support"
  68. depends on USB_HID
  69. help
  70. Say Y here if you want to support HID devices (from the USB
  71. specification standpoint) that aren't strictly user interface
  72. devices, like monitor controls and Uninterruptable Power Supplies.
  73. This module supports these devices separately using a separate
  74. event interface on /dev/usb/hiddevX (char 180:96 to 180:111).
  75. If unsure, say Y.
  76. menu "USB HID Boot Protocol drivers"
  77. depends on USB!=n && USB_HID!=y
  78. config USB_KBD
  79. tristate "USB HIDBP Keyboard (simple Boot) support"
  80. depends on USB && INPUT
  81. ---help---
  82. Say Y here only if you are absolutely sure that you don't want
  83. to use the generic HID driver for your USB keyboard and prefer
  84. to use the keyboard in its limited Boot Protocol mode instead.
  85. This is almost certainly not what you want. This is mostly
  86. useful for embedded applications or simple keyboards.
  87. To compile this driver as a module, choose M here: the
  88. module will be called usbkbd.
  89. If even remotely unsure, say N.
  90. config USB_MOUSE
  91. tristate "USB HIDBP Mouse (simple Boot) support"
  92. depends on USB && INPUT
  93. ---help---
  94. Say Y here only if you are absolutely sure that you don't want
  95. to use the generic HID driver for your USB mouse and prefer
  96. to use the mouse in its limited Boot Protocol mode instead.
  97. This is almost certainly not what you want. This is mostly
  98. useful for embedded applications or simple mice.
  99. To compile this driver as a module, choose M here: the
  100. module will be called usbmouse.
  101. If even remotely unsure, say N.
  102. endmenu
  103. config USB_AIPTEK
  104. tristate "Aiptek 6000U/8000U tablet support"
  105. depends on USB && INPUT
  106. help
  107. Say Y here if you want to use the USB version of the Aiptek 6000U
  108. or Aiptek 8000U tablet. Make sure to say Y to "Mouse support"
  109. (CONFIG_INPUT_MOUSEDEV) and/or "Event interface support"
  110. (CONFIG_INPUT_EVDEV) as well.
  111. To compile this driver as a module, choose M here: the
  112. module will be called aiptek.
  113. config USB_WACOM
  114. tristate "Wacom Intuos/Graphire tablet support"
  115. depends on USB && INPUT
  116. help
  117. Say Y here if you want to use the USB version of the Wacom Intuos
  118. or Graphire tablet. Make sure to say Y to "Mouse support"
  119. (CONFIG_INPUT_MOUSEDEV) and/or "Event interface support"
  120. (CONFIG_INPUT_EVDEV) as well.
  121. To compile this driver as a module, choose M here: the
  122. module will be called wacom.
  123. config USB_ACECAD
  124. tristate "Acecad Flair tablet support"
  125. depends on USB && INPUT
  126. help
  127. Say Y here if you want to use the USB version of the Acecad Flair
  128. tablet. Make sure to say Y to "Mouse support"
  129. (CONFIG_INPUT_MOUSEDEV) and/or "Event interface support"
  130. (CONFIG_INPUT_EVDEV) as well.
  131. To compile this driver as a module, choose M here: the
  132. module will be called acecad.
  133. config USB_KBTAB
  134. tristate "KB Gear JamStudio tablet support"
  135. depends on USB && INPUT
  136. help
  137. Say Y here if you want to use the USB version of the KB Gear
  138. JamStudio tablet. Make sure to say Y to "Mouse support"
  139. (CONFIG_INPUT_MOUSEDEV) and/or "Event interface support"
  140. (CONFIG_INPUT_EVDEV) as well.
  141. To compile this driver as a module, choose M here: the
  142. module will be called kbtab.
  143. config USB_POWERMATE
  144. tristate "Griffin PowerMate and Contour Jog support"
  145. depends on USB && INPUT
  146. ---help---
  147. Say Y here if you want to use Griffin PowerMate or Contour Jog devices.
  148. These are aluminum dials which can measure clockwise and anticlockwise
  149. rotation. The dial also acts as a pushbutton. The base contains an LED
  150. which can be instructed to pulse or to switch to a particular intensity.
  151. You can download userspace tools from
  152. <http://sowerbutts.com/powermate/>.
  153. To compile this driver as a module, choose M here: the
  154. module will be called powermate.
  155. config USB_MTOUCH
  156. tristate "MicroTouch USB Touchscreen Driver"
  157. depends on USB && INPUT
  158. ---help---
  159. Say Y here if you want to use a MicroTouch (Now 3M) USB
  160. Touchscreen controller.
  161. See <file:Documentation/usb/mtouch.txt> for additional information.
  162. To compile this driver as a module, choose M here: the
  163. module will be called mtouchusb.
  164. config USB_ITMTOUCH
  165. tristate "ITM Touch USB Touchscreen Driver"
  166. depends on USB && INPUT
  167. ---help---
  168. Say Y here if you want to use a ITM Touch USB
  169. Touchscreen controller.
  170. This touchscreen is used in LG 1510SF monitors.
  171. To compile this driver as a module, choose M here: the
  172. module will be called itmtouch.
  173. config USB_EGALAX
  174. tristate "eGalax TouchKit USB Touchscreen Driver"
  175. depends on USB && INPUT
  176. ---help---
  177. Say Y here if you want to use a eGalax TouchKit USB
  178. Touchscreen controller.
  179. The driver has been tested on a Xenarc 700TSV monitor
  180. with eGalax touchscreen.
  181. Have a look at <http://linux.chapter7.ch/touchkit/> for
  182. a usage description and the required user-space stuff.
  183. To compile this driver as a module, choose M here: the
  184. module will be called touchkitusb.
  185. config USB_YEALINK
  186. tristate "Yealink usb-p1k voip phone"
  187. depends on USB && INPUT && EXPERIMENTAL
  188. ---help---
  189. Say Y here if you want to enable keyboard and LCD functions of the
  190. Yealink usb-p1k usb phones. The audio part is enabled by the generic
  191. usb sound driver, so you might want to enable that as well.
  192. For information about how to use these additional functions, see
  193. <file:Documentation/input/yealink.txt>.
  194. To compile this driver as a module, choose M here: the module will be
  195. called yealink.
  196. config USB_XPAD
  197. tristate "X-Box gamepad support"
  198. depends on USB && INPUT
  199. ---help---
  200. Say Y here if you want to use the X-Box pad with your computer.
  201. Make sure to say Y to "Joystick support" (CONFIG_INPUT_JOYDEV)
  202. and/or "Event interface support" (CONFIG_INPUT_EVDEV) as well.
  203. For information about how to connect the X-Box pad to USB, see
  204. <file:Documentation/input/xpad.txt>.
  205. To compile this driver as a module, choose M here: the
  206. module will be called xpad.
  207. config USB_ATI_REMOTE
  208. tristate "ATI / X10 USB RF remote control"
  209. depends on USB && INPUT
  210. ---help---
  211. Say Y here if you want to use an ATI or X10 "Lola" USB remote control.
  212. These are RF remotes with USB receivers.
  213. The ATI remote comes with many of ATI's All-In-Wonder video cards.
  214. The X10 "Lola" remote is available at:
  215. <http://www.x10.com/products/lola_sg1.htm>
  216. This driver provides mouse pointer, left and right mouse buttons,
  217. and maps all the other remote buttons to keypress events.
  218. To compile this driver as a module, choose M here: the module will be
  219. called ati_remote.
  220. config USB_KEYSPAN_REMOTE
  221. tristate "Keyspan DMR USB remote control (EXPERIMENTAL)"
  222. depends on USB && INPUT && EXPERIMENTAL
  223. ---help---
  224. Say Y here if you want to use a Keyspan DMR USB remote control.
  225. Currently only the UIA-11 type of receiver has been tested. The tag
  226. on the receiver that connects to the USB port should have a P/N that
  227. will tell you what type of DMR you have. The UIA-10 type is not
  228. supported at this time. This driver maps all buttons to keypress
  229. events.
  230. To compile this driver as a module, choose M here: the module will
  231. be called keyspan_remote.
  232. config USB_APPLETOUCH
  233. tristate "Apple USB Touchpad support"
  234. depends on USB && INPUT
  235. ---help---
  236. Say Y here if you want to use an Apple USB Touchpad.
  237. These are the touchpads that can be found on post-February 2005
  238. Apple Powerbooks (prior models have a Synaptics touchpad connected
  239. to the ADB bus).
  240. This driver provides a basic mouse driver but can be interfaced
  241. with the synaptics X11 driver to provide acceleration and
  242. scrolling in X11.
  243. For further information, see
  244. <file:Documentation/input/appletouch.txt>.
  245. To compile this driver as a module, choose M here: the
  246. module will be called appletouch.