Kconfig 9.2 KB

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