Kconfig 8.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269
  1. #
  2. # Input core configuration
  3. #
  4. config SERIO
  5. tristate "Serial I/O support" if EXPERT || !X86
  6. default y
  7. help
  8. Say Yes here if you have any input device that uses serial I/O to
  9. communicate with the system. This includes the
  10. * standard AT keyboard and PS/2 mouse *
  11. as well as serial mice, Sun keyboards, some joysticks and 6dof
  12. devices and more.
  13. If unsure, say Y.
  14. To compile this driver as a module, choose M here: the
  15. module will be called serio.
  16. if SERIO
  17. config SERIO_I8042
  18. tristate "i8042 PC Keyboard controller" if EXPERT || !X86
  19. default y
  20. depends on !PARISC && (!ARM || ARCH_SHARK || FOOTBRIDGE_HOST) && \
  21. (!SUPERH || SH_CAYMAN) && !M68K && !BLACKFIN && !S390 && \
  22. !ARC
  23. help
  24. i8042 is the chip over which the standard AT keyboard and PS/2
  25. mouse are connected to the computer. If you use these devices,
  26. you'll need to say Y here.
  27. If unsure, say Y.
  28. To compile this driver as a module, choose M here: the
  29. module will be called i8042.
  30. config SERIO_SERPORT
  31. tristate "Serial port line discipline"
  32. default y
  33. depends on TTY
  34. help
  35. Say Y here if you plan to use an input device (mouse, joystick,
  36. tablet, 6dof) that communicates over the RS232 serial (COM) port.
  37. More information is available: <file:Documentation/input/input.txt>
  38. If unsure, say Y.
  39. To compile this driver as a module, choose M here: the
  40. module will be called serport.
  41. config SERIO_CT82C710
  42. tristate "ct82c710 Aux port controller"
  43. depends on X86
  44. help
  45. Say Y here if you have a Texas Instruments TravelMate notebook
  46. equipped with the ct82c710 chip and want to use a mouse connected
  47. to the "QuickPort".
  48. If unsure, say N.
  49. To compile this driver as a module, choose M here: the
  50. module will be called ct82c710.
  51. config SERIO_Q40KBD
  52. tristate "Q40 keyboard controller"
  53. depends on Q40
  54. config SERIO_PARKBD
  55. tristate "Parallel port keyboard adapter"
  56. depends on PARPORT
  57. help
  58. Say Y here if you built a simple parallel port adapter to attach
  59. an additional AT keyboard, XT keyboard or PS/2 mouse.
  60. More information is available: <file:Documentation/input/input.txt>
  61. If unsure, say N.
  62. To compile this driver as a module, choose M here: the
  63. module will be called parkbd.
  64. config SERIO_RPCKBD
  65. tristate "Acorn RiscPC keyboard controller"
  66. depends on ARCH_ACORN
  67. default y
  68. help
  69. Say Y here if you have the Acorn RiscPC and want to use an AT
  70. keyboard connected to its keyboard controller.
  71. To compile this driver as a module, choose M here: the
  72. module will be called rpckbd.
  73. config SERIO_AT32PSIF
  74. tristate "AVR32 PSIF PS/2 keyboard and mouse controller"
  75. depends on AVR32
  76. help
  77. Say Y here if you want to use the PSIF peripheral on AVR32 devices
  78. and connect a PS/2 keyboard and/or mouse to it.
  79. To compile this driver as a module, choose M here: the module will
  80. be called at32psif.
  81. config SERIO_AMBAKMI
  82. tristate "AMBA KMI keyboard controller"
  83. depends on ARM_AMBA
  84. config SERIO_SA1111
  85. tristate "Intel SA1111 keyboard controller"
  86. depends on SA1111
  87. config SERIO_GSCPS2
  88. tristate "HP GSC PS/2 keyboard and PS/2 mouse controller"
  89. depends on GSC
  90. default y
  91. help
  92. This driver provides support for the PS/2 ports on PA-RISC machines
  93. over which HP PS/2 keyboards and PS/2 mice may be connected.
  94. If you use these devices, you'll need to say Y here.
  95. It's safe to enable this driver, so if unsure, say Y.
  96. To compile this driver as a module, choose M here: the
  97. module will be called gscps2.
  98. config HP_SDC
  99. tristate "HP System Device Controller i8042 Support"
  100. depends on (GSC || HP300) && SERIO
  101. default y
  102. help
  103. This option enables support for the "System Device
  104. Controller", an i8042 carrying microcode to manage a
  105. few miscellaneous devices on some Hewlett Packard systems.
  106. The SDC itself contains a 10ms resolution timer/clock capable
  107. of delivering interrupts on a periodic and one-shot basis.
  108. The SDC may also be connected to a battery-backed real-time
  109. clock, a basic audio waveform generator, and an HP-HIL Master
  110. Link Controller serving up to seven input devices.
  111. By itself this option is rather useless, but enabling it will
  112. enable selection of drivers for the abovementioned devices.
  113. It is, however, incompatible with the old, reliable HIL keyboard
  114. driver, and the new HIL driver is experimental, so if you plan
  115. to use a HIL keyboard as your primary keyboard, you may wish
  116. to keep using that driver until the new HIL drivers have had
  117. more testing.
  118. config HIL_MLC
  119. tristate "HIL MLC Support (needed for HIL input devices)"
  120. depends on HP_SDC
  121. config SERIO_PCIPS2
  122. tristate "PCI PS/2 keyboard and PS/2 mouse controller"
  123. depends on PCI
  124. help
  125. Say Y here if you have a Mobility Docking station with PS/2
  126. keyboard and mice ports.
  127. To compile this driver as a module, choose M here: the
  128. module will be called pcips2.
  129. config SERIO_MACEPS2
  130. tristate "SGI O2 MACE PS/2 controller"
  131. depends on SGI_IP32
  132. help
  133. Say Y here if you have SGI O2 workstation and want to use its
  134. PS/2 ports.
  135. To compile this driver as a module, choose M here: the
  136. module will be called maceps2.
  137. config SERIO_LIBPS2
  138. tristate "PS/2 driver library" if EXPERT
  139. depends on SERIO_I8042 || SERIO_I8042=n
  140. help
  141. Say Y here if you are using a driver for device connected
  142. to a PS/2 port, such as PS/2 mouse or standard AT keyboard.
  143. To compile this driver as a module, choose M here: the
  144. module will be called libps2.
  145. config SERIO_RAW
  146. tristate "Raw access to serio ports"
  147. help
  148. Say Y here if you want to have raw access to serio ports, such as
  149. AUX ports on i8042 keyboard controller. Each serio port that is
  150. bound to this driver will be accessible via a char device with
  151. major 10 and dynamically allocated minor. The driver will try
  152. allocating minor 1 (that historically corresponds to /dev/psaux)
  153. first. To bind this driver to a serio port use sysfs interface:
  154. echo -n "serio_raw" > /sys/bus/serio/devices/serioX/drvctl
  155. To compile this driver as a module, choose M here: the
  156. module will be called serio_raw.
  157. config SERIO_XILINX_XPS_PS2
  158. tristate "Xilinx XPS PS/2 Controller Support"
  159. depends on PPC || MICROBLAZE
  160. help
  161. This driver supports XPS PS/2 IP from the Xilinx EDK on
  162. PowerPC platform.
  163. To compile this driver as a module, choose M here: the
  164. module will be called xilinx_ps2.
  165. config SERIO_ALTERA_PS2
  166. tristate "Altera UP PS/2 controller"
  167. depends on HAS_IOMEM
  168. help
  169. Say Y here if you have Altera University Program PS/2 ports.
  170. To compile this driver as a module, choose M here: the
  171. module will be called altera_ps2.
  172. config SERIO_AMS_DELTA
  173. tristate "Amstrad Delta (E3) mailboard support"
  174. depends on MACH_AMS_DELTA
  175. default y
  176. ---help---
  177. Say Y here if you have an E3 and want to use its mailboard,
  178. or any standard AT keyboard connected to the mailboard port.
  179. When used for the E3 mailboard, a non-standard key table
  180. must be loaded from userspace, possibly using udev extras
  181. provided keymap helper utility.
  182. To compile this driver as a module, choose M here;
  183. the module will be called ams_delta_serio.
  184. config SERIO_PS2MULT
  185. tristate "TQC PS/2 multiplexer"
  186. help
  187. Say Y here if you have the PS/2 line multiplexer like the one
  188. present on TQC boards.
  189. To compile this driver as a module, choose M here: the
  190. module will be called ps2mult.
  191. config SERIO_ARC_PS2
  192. tristate "ARC PS/2 support"
  193. help
  194. Say Y here if you have an ARC FPGA platform with a PS/2
  195. controller in it.
  196. To compile this driver as a module, choose M here; the module
  197. will be called arc_ps2.
  198. config SERIO_APBPS2
  199. tristate "GRLIB APBPS2 PS/2 keyboard/mouse controller"
  200. depends on OF
  201. help
  202. Say Y here if you want support for GRLIB APBPS2 peripherals used
  203. to connect to PS/2 keyboard and/or mouse.
  204. To compile this driver as a module, choose M here: the module will
  205. be called apbps2.
  206. config SERIO_OLPC_APSP
  207. tristate "OLPC AP-SP input support"
  208. depends on OF
  209. help
  210. Say Y here if you want support for the keyboard and touchpad included
  211. in the OLPC XO-1.75 and XO-4 laptops.
  212. To compile this driver as a module, choose M here: the module will
  213. be called olpc_apsp.
  214. endif