Kconfig 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159
  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 USB_HIDINPUT_POWERBOOK
  22. bool "Enable support for Apple laptop/aluminum USB special keys"
  23. default n
  24. depends on USB_HID
  25. help
  26. Say Y here if you want support for the special keys (Fn, Numlock) on
  27. Apple iBooks, PowerBooks, MacBooks, MacBook Pros and aluminum USB
  28. keyboards.
  29. If unsure, say N.
  30. config HID_FF
  31. bool "Force feedback support (EXPERIMENTAL)"
  32. depends on USB_HID && EXPERIMENTAL
  33. help
  34. Say Y here is you want force feedback support for a few HID devices.
  35. See below for a list of supported devices.
  36. See <file:Documentation/input/ff.txt> for a description of the force
  37. feedback API.
  38. If unsure, say N.
  39. config HID_PID
  40. bool "PID device support"
  41. depends on HID_FF
  42. help
  43. Say Y here if you have a PID-compliant device and wish to enable force
  44. feedback for it. Microsoft Sidewinder Force Feedback 2 is one of such
  45. devices.
  46. config LOGITECH_FF
  47. bool "Logitech devices support"
  48. depends on HID_FF
  49. select INPUT_FF_MEMLESS if USB_HID
  50. help
  51. Say Y here if you have one of these devices:
  52. - Logitech WingMan Cordless RumblePad
  53. - Logitech WingMan Cordless RumblePad 2
  54. - Logitech WingMan Force 3D
  55. - Logitech Formula Force EX
  56. - Logitech MOMO Force wheel
  57. and if you want to enable force feedback for them.
  58. Note: if you say N here, this device will still be supported, but without
  59. force feedback.
  60. config LOGIRUMBLEPAD2_FF
  61. bool "Logitech Rumblepad 2 support"
  62. depends on HID_FF
  63. select INPUT_FF_MEMLESS if USB_HID
  64. help
  65. Say Y here if you want to enable force feedback support for Logitech
  66. Rumblepad 2 devices.
  67. config PANTHERLORD_FF
  68. bool "PantherLord/GreenAsia based device support"
  69. depends on HID_FF
  70. select INPUT_FF_MEMLESS if USB_HID
  71. help
  72. Say Y here if you have a PantherLord/GreenAsia based game controller
  73. or adapter and want to enable force feedback support for it.
  74. config THRUSTMASTER_FF
  75. bool "ThrustMaster devices support"
  76. depends on HID_FF
  77. select INPUT_FF_MEMLESS if USB_HID
  78. help
  79. Say Y here if you have a THRUSTMASTER FireStore Dual Power 2 or
  80. a THRUSTMASTER Ferrari GT Rumble Force or Force Feedback Wheel,
  81. and want to enable force feedback support for it.
  82. Note: if you say N here, this device will still be supported, but without
  83. force feedback.
  84. config ZEROPLUS_FF
  85. bool "Zeroplus based game controller support"
  86. depends on HID_FF
  87. select INPUT_FF_MEMLESS if USB_HID
  88. help
  89. Say Y here if you have a Zeroplus based game controller and want to
  90. enable force feedback for it.
  91. config USB_HIDDEV
  92. bool "/dev/hiddev raw HID device support"
  93. depends on USB_HID
  94. help
  95. Say Y here if you want to support HID devices (from the USB
  96. specification standpoint) that aren't strictly user interface
  97. devices, like monitor controls and Uninterruptable Power Supplies.
  98. This module supports these devices separately using a separate
  99. event interface on /dev/usb/hiddevX (char 180:96 to 180:111).
  100. If unsure, say Y.
  101. menu "USB HID Boot Protocol drivers"
  102. depends on USB!=n && USB_HID!=y
  103. config USB_KBD
  104. tristate "USB HIDBP Keyboard (simple Boot) support"
  105. depends on USB && INPUT
  106. ---help---
  107. Say Y here only if you are absolutely sure that you don't want
  108. to use the generic HID driver for your USB keyboard and prefer
  109. to use the keyboard in its limited Boot Protocol mode instead.
  110. This is almost certainly not what you want. This is mostly
  111. useful for embedded applications or simple keyboards.
  112. To compile this driver as a module, choose M here: the
  113. module will be called usbkbd.
  114. If even remotely unsure, say N.
  115. config USB_MOUSE
  116. tristate "USB HIDBP Mouse (simple Boot) support"
  117. depends on USB && INPUT
  118. ---help---
  119. Say Y here only if you are absolutely sure that you don't want
  120. to use the generic HID driver for your USB mouse and prefer
  121. to use the mouse in its limited Boot Protocol mode instead.
  122. This is almost certainly not what you want. This is mostly
  123. useful for embedded applications or simple mice.
  124. To compile this driver as a module, choose M here: the
  125. module will be called usbmouse.
  126. If even remotely unsure, say N.
  127. endmenu