Kconfig 4.6 KB

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