Kconfig 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166
  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_EZKEY
  110. tristate "Ezkey"
  111. default m
  112. depends on USB_HID
  113. ---help---
  114. Support for Ezkey mouse and barcodes.
  115. config HID_LOGITECH
  116. tristate "Logitech"
  117. default m
  118. depends on USB_HID
  119. ---help---
  120. Support for some Logitech devices which breaks less or more
  121. HID specification.
  122. config HID_MICROSOFT
  123. tristate "Microsoft"
  124. default m
  125. depends on USB_HID
  126. ---help---
  127. Support for some Microsoft devices which breaks less or more
  128. HID specification.
  129. config HID_SUNPLUS
  130. tristate "Sunplus"
  131. default m
  132. depends on USB_HID
  133. ---help---
  134. Support for Sunplus WDesktop input device.
  135. endmenu
  136. endif # HID_SUPPORT