Kconfig 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148
  1. comment "USB Input Devices"
  2. depends on USB
  3. config USB_HID
  4. tristate "USB Human Interface Device (full HID) support"
  5. default y
  6. depends on USB && INPUT
  7. select HID
  8. ---help---
  9. Say Y here if you want full HID support to connect USB keyboards,
  10. mice, joysticks, graphic tablets, or any other HID based devices
  11. to your computer via USB, as well as Uninterruptible Power Supply
  12. (UPS) and monitor control devices.
  13. You can't use this driver and the HIDBP (Boot Protocol) keyboard
  14. and mouse drivers at the same time. More information is available:
  15. <file:Documentation/input/input.txt>.
  16. If unsure, say Y.
  17. To compile this driver as a module, choose M here: the
  18. module will be called usbhid.
  19. comment "Input core support is needed for USB HID input layer or HIDBP support"
  20. depends on USB_HID && INPUT=n
  21. config HID_FF
  22. bool "Force feedback support (EXPERIMENTAL)"
  23. depends on USB_HID && EXPERIMENTAL
  24. help
  25. Say Y here is you want force feedback support for a few HID devices.
  26. See below for a list of supported devices.
  27. See <file:Documentation/input/ff.txt> for a description of the force
  28. feedback API.
  29. If unsure, say N.
  30. config HID_PID
  31. bool "PID device support"
  32. depends on HID_FF
  33. help
  34. Say Y here if you have a PID-compliant device and wish to enable force
  35. feedback for it. Microsoft Sidewinder Force Feedback 2 is one of such
  36. devices.
  37. config LOGITECH_FF
  38. bool "Logitech devices support"
  39. depends on HID_FF
  40. select INPUT_FF_MEMLESS if USB_HID
  41. help
  42. Say Y here if you have one of these devices:
  43. - Logitech WingMan Cordless RumblePad
  44. - Logitech WingMan Cordless RumblePad 2
  45. - Logitech WingMan Force 3D
  46. - Logitech Formula Force EX
  47. - Logitech MOMO Force wheel
  48. and if you want to enable force feedback for them.
  49. Note: if you say N here, this device will still be supported, but without
  50. force feedback.
  51. config LOGIRUMBLEPAD2_FF
  52. bool "Logitech Rumblepad 2 support"
  53. depends on HID_FF
  54. select INPUT_FF_MEMLESS if USB_HID
  55. help
  56. Say Y here if you want to enable force feedback support for Logitech
  57. Rumblepad 2 devices.
  58. config PANTHERLORD_FF
  59. bool "PantherLord/GreenAsia based device support"
  60. depends on HID_FF
  61. select INPUT_FF_MEMLESS if USB_HID
  62. help
  63. Say Y here if you have a PantherLord/GreenAsia based game controller
  64. or adapter and want to enable force feedback support for it.
  65. config THRUSTMASTER_FF
  66. bool "ThrustMaster devices support"
  67. depends on HID_FF
  68. select INPUT_FF_MEMLESS if USB_HID
  69. help
  70. Say Y here if you have a THRUSTMASTER FireStore Dual Power 2 or
  71. a THRUSTMASTER Ferrari GT Rumble Force or Force Feedback Wheel,
  72. and want to enable force feedback support for it.
  73. Note: if you say N here, this device will still be supported, but without
  74. force feedback.
  75. config ZEROPLUS_FF
  76. bool "Zeroplus based game controller support"
  77. depends on HID_FF
  78. select INPUT_FF_MEMLESS if USB_HID
  79. help
  80. Say Y here if you have a Zeroplus based game controller and want to
  81. enable force feedback for it.
  82. config USB_HIDDEV
  83. bool "/dev/hiddev raw HID device support"
  84. depends on USB_HID
  85. help
  86. Say Y here if you want to support HID devices (from the USB
  87. specification standpoint) that aren't strictly user interface
  88. devices, like monitor controls and Uninterruptable Power Supplies.
  89. This module supports these devices separately using a separate
  90. event interface on /dev/usb/hiddevX (char 180:96 to 180:111).
  91. If unsure, say Y.
  92. menu "USB HID Boot Protocol drivers"
  93. depends on USB!=n && USB_HID!=y
  94. config USB_KBD
  95. tristate "USB HIDBP Keyboard (simple Boot) support"
  96. depends on USB && INPUT
  97. ---help---
  98. Say Y here only if you are absolutely sure that you don't want
  99. to use the generic HID driver for your USB keyboard and prefer
  100. to use the keyboard in its limited Boot Protocol mode instead.
  101. This is almost certainly not what you want. This is mostly
  102. useful for embedded applications or simple keyboards.
  103. To compile this driver as a module, choose M here: the
  104. module will be called usbkbd.
  105. If even remotely unsure, say N.
  106. config USB_MOUSE
  107. tristate "USB HIDBP Mouse (simple Boot) support"
  108. depends on USB && INPUT
  109. ---help---
  110. Say Y here only if you are absolutely sure that you don't want
  111. to use the generic HID driver for your USB mouse and prefer
  112. to use the mouse in its limited Boot Protocol mode instead.
  113. This is almost certainly not what you want. This is mostly
  114. useful for embedded applications or simple mice.
  115. To compile this driver as a module, choose M here: the
  116. module will be called usbmouse.
  117. If even remotely unsure, say N.
  118. endmenu