Kconfig 9.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326
  1. #
  2. # Input core configuration
  3. #
  4. menuconfig INPUT_KEYBOARD
  5. bool "Keyboards" if EMBEDDED || !X86
  6. default y
  7. help
  8. Say Y here, and a list of supported keyboards will be displayed.
  9. This option doesn't affect the kernel.
  10. If unsure, say Y.
  11. if INPUT_KEYBOARD
  12. config KEYBOARD_ATKBD
  13. tristate "AT keyboard" if EMBEDDED || !X86_PC
  14. default y
  15. select SERIO
  16. select SERIO_LIBPS2
  17. select SERIO_I8042 if X86_PC
  18. select SERIO_GSCPS2 if GSC
  19. help
  20. Say Y here if you want to use a standard AT or PS/2 keyboard. Usually
  21. you'll need this, unless you have a different type keyboard (USB, ADB
  22. or other). This also works for AT and PS/2 keyboards connected over a
  23. PS/2 to serial converter.
  24. If unsure, say Y.
  25. To compile this driver as a module, choose M here: the
  26. module will be called atkbd.
  27. config KEYBOARD_ATKBD_HP_KEYCODES
  28. bool "Use HP keyboard scancodes"
  29. depends on PARISC && KEYBOARD_ATKBD
  30. default y
  31. help
  32. Say Y here if you have a PA-RISC machine and want to use an AT or
  33. PS/2 keyboard, and your keyboard uses keycodes that are specific to
  34. PA-RISC keyboards.
  35. Say N if you use a standard keyboard.
  36. config KEYBOARD_ATKBD_RDI_KEYCODES
  37. bool "Use PrecisionBook keyboard scancodes"
  38. depends on KEYBOARD_ATKBD_HP_KEYCODES
  39. default n
  40. help
  41. If you have an RDI PrecisionBook, say Y here if you want to use its
  42. built-in keyboard (as opposed to an external keyboard).
  43. The PrecisionBook has five keys that conflict with those used by most
  44. AT and PS/2 keyboards. These are as follows:
  45. PrecisionBook Standard AT or PS/2
  46. F1 F12
  47. Left Ctrl Left Alt
  48. Caps Lock Left Ctrl
  49. Right Ctrl Caps Lock
  50. Left 102nd key (the key to the right of Left Shift)
  51. If you say N here, and use the PrecisionBook keyboard, then each key
  52. in the left-hand column will be interpreted as the corresponding key
  53. in the right-hand column.
  54. If you say Y here, and use an external keyboard, then each key in the
  55. right-hand column will be interpreted as the key shown in the
  56. left-hand column.
  57. config KEYBOARD_SUNKBD
  58. tristate "Sun Type 4 and Type 5 keyboard"
  59. select SERIO
  60. help
  61. Say Y here if you want to use a Sun Type 4 or Type 5 keyboard,
  62. connected either to the Sun keyboard connector or to an serial
  63. (RS-232) port via a simple adapter.
  64. To compile this driver as a module, choose M here: the
  65. module will be called sunkbd.
  66. config KEYBOARD_LKKBD
  67. tristate "DECstation/VAXstation LK201/LK401 keyboard"
  68. select SERIO
  69. help
  70. Say Y here if you want to use a LK201 or LK401 style serial
  71. keyboard. This keyboard is also useable on PCs if you attach
  72. it with the inputattach program. The connector pinout is
  73. described within lkkbd.c.
  74. To compile this driver as a module, choose M here: the
  75. module will be called lkkbd.
  76. config KEYBOARD_LOCOMO
  77. tristate "LoCoMo Keyboard Support"
  78. depends on SHARP_LOCOMO && INPUT_KEYBOARD
  79. help
  80. Say Y here if you are running Linux on a Sharp Zaurus Collie or Poodle based PDA
  81. To compile this driver as a module, choose M here: the
  82. module will be called locomokbd.
  83. config KEYBOARD_XTKBD
  84. tristate "XT keyboard"
  85. select SERIO
  86. help
  87. Say Y here if you want to use the old IBM PC/XT keyboard (or
  88. compatible) on your system. This is only possible with a
  89. parallel port keyboard adapter, you cannot connect it to the
  90. keyboard port on a PC that runs Linux.
  91. To compile this driver as a module, choose M here: the
  92. module will be called xtkbd.
  93. config KEYBOARD_NEWTON
  94. tristate "Newton keyboard"
  95. select SERIO
  96. help
  97. Say Y here if you have a Newton keyboard on a serial port.
  98. To compile this driver as a module, choose M here: the
  99. module will be called newtonkbd.
  100. config KEYBOARD_STOWAWAY
  101. tristate "Stowaway keyboard"
  102. select SERIO
  103. help
  104. Say Y here if you have a Stowaway keyboard on a serial port.
  105. Stowaway compatible keyboards like Dicota Input-PDA keyboard
  106. are also supported by this driver.
  107. To compile this driver as a module, choose M here: the
  108. module will be called stowaway.
  109. config KEYBOARD_CORGI
  110. tristate "Corgi keyboard"
  111. depends on PXA_SHARPSL
  112. default y
  113. help
  114. Say Y here to enable the keyboard on the Sharp Zaurus SL-C7xx
  115. series of PDAs.
  116. To compile this driver as a module, choose M here: the
  117. module will be called corgikbd.
  118. config KEYBOARD_SPITZ
  119. tristate "Spitz keyboard"
  120. depends on PXA_SHARPSL
  121. default y
  122. help
  123. Say Y here to enable the keyboard on the Sharp Zaurus SL-C1000,
  124. SL-C3000 and Sl-C3100 series of PDAs.
  125. To compile this driver as a module, choose M here: the
  126. module will be called spitzkbd.
  127. config KEYBOARD_TOSA
  128. tristate "Tosa keyboard"
  129. depends on MACH_TOSA
  130. default y
  131. help
  132. Say Y here to enable the keyboard on the Sharp Zaurus SL-6000x (Tosa)
  133. To compile this driver as a module, choose M here: the
  134. module will be called tosakbd.
  135. config KEYBOARD_TOSA_USE_EXT_KEYCODES
  136. bool "Tosa keyboard: use extended keycodes"
  137. depends on KEYBOARD_TOSA
  138. default n
  139. help
  140. Say Y here to enable the tosa keyboard driver to generate extended
  141. (>= 127) keycodes. Be aware, that they can't be correctly interpreted
  142. by either console keyboard driver or by Kdrive keybd driver.
  143. Say Y only if you know, what you are doing!
  144. config KEYBOARD_AMIGA
  145. tristate "Amiga keyboard"
  146. depends on AMIGA
  147. help
  148. Say Y here if you are running Linux on any AMIGA and have a keyboard
  149. attached.
  150. To compile this driver as a module, choose M here: the
  151. module will be called amikbd.
  152. config ATARI_KBD_CORE
  153. bool
  154. config KEYBOARD_ATARI
  155. tristate "Atari keyboard"
  156. depends on ATARI
  157. select ATARI_KBD_CORE
  158. help
  159. Say Y here if you are running Linux on any Atari and have a keyboard
  160. attached.
  161. To compile this driver as a module, choose M here: the
  162. module will be called atakbd.
  163. config KEYBOARD_HIL_OLD
  164. tristate "HP HIL keyboard support (simple driver)"
  165. depends on GSC || HP300
  166. default y
  167. help
  168. The "Human Interface Loop" is a older, 8-channel USB-like
  169. controller used in several Hewlett Packard models. This driver
  170. was adapted from the one written for m68k/hp300, and implements
  171. support for a keyboard attached to the HIL port, but not for
  172. any other types of HIL input devices like mice or tablets.
  173. However, it has been thoroughly tested and is stable.
  174. If you want full HIL support including support for multiple
  175. keyboards, mice, and tablets, you have to enable the
  176. "HP System Device Controller i8042 Support" in the input/serio
  177. submenu.
  178. config KEYBOARD_HIL
  179. tristate "HP HIL keyboard support"
  180. depends on GSC || HP300
  181. default y
  182. select HP_SDC
  183. select HIL_MLC
  184. select SERIO
  185. help
  186. The "Human Interface Loop" is a older, 8-channel USB-like
  187. controller used in several Hewlett Packard models.
  188. This driver implements support for HIL-keyboards attached
  189. to your machine, so normally you should say Y here.
  190. config KEYBOARD_HP6XX
  191. tristate "HP Jornada 6xx keyboard"
  192. depends on SH_HP6XX
  193. select INPUT_POLLDEV
  194. help
  195. Say Y here if you have a HP Jornada 620/660/680/690 and want to
  196. support the built-in keyboard.
  197. To compile this driver as a module, choose M here: the
  198. module will be called jornada680_kbd.
  199. config KEYBOARD_HP7XX
  200. tristate "HP Jornada 7xx keyboard"
  201. depends on SA1100_JORNADA720_SSP && SA1100_SSP
  202. help
  203. Say Y here if you have a HP Jornada 710/720/728 and want to
  204. support the built-in keyboard.
  205. To compile this driver as a module, choose M here: the
  206. module will be called jornada720_kbd.
  207. config KEYBOARD_OMAP
  208. tristate "TI OMAP keypad support"
  209. depends on (ARCH_OMAP1 || ARCH_OMAP2)
  210. help
  211. Say Y here if you want to use the OMAP keypad.
  212. To compile this driver as a module, choose M here: the
  213. module will be called omap-keypad.
  214. config KEYBOARD_PXA27x
  215. tristate "PXA27x/PXA3xx keypad support"
  216. depends on PXA27x || PXA3xx
  217. help
  218. Enable support for PXA27x/PXA3xx keypad controller
  219. To compile this driver as a module, choose M here: the
  220. module will be called pxa27x_keypad.
  221. config KEYBOARD_AAED2000
  222. tristate "AAED-2000 keyboard"
  223. depends on MACH_AAED2000
  224. select INPUT_POLLDEV
  225. default y
  226. help
  227. Say Y here to enable the keyboard on the Agilent AAED-2000
  228. development board.
  229. To compile this driver as a module, choose M here: the
  230. module will be called aaed2000_kbd.
  231. config KEYBOARD_GPIO
  232. tristate "GPIO Buttons"
  233. depends on GENERIC_GPIO
  234. help
  235. This driver implements support for buttons connected
  236. to GPIO pins of various CPUs (and some other chips).
  237. Say Y here if your device has buttons connected
  238. directly to such GPIO pins. Your board-specific
  239. setup logic must also provide a platform device,
  240. with configuration data saying which GPIOs are used.
  241. To compile this driver as a module, choose M here: the
  242. module will be called gpio-keys.
  243. config KEYBOARD_MAPLE
  244. tristate "Maple bus keyboard"
  245. depends on SH_DREAMCAST && MAPLE
  246. help
  247. Say Y here if you have a Dreamcast console running Linux and have
  248. a keyboard attached to its Maple bus.
  249. To compile this driver as a module, choose M here: the
  250. module will be called maple_keyb.
  251. config KEYBOARD_BFIN
  252. tristate "Blackfin BF54x keypad support"
  253. depends on (BF54x && !BF544)
  254. help
  255. Say Y here if you want to use the BF54x keypad.
  256. To compile this driver as a module, choose M here: the
  257. module will be called bf54x-keys.
  258. config KEYBOARD_SH_KEYSC
  259. tristate "SuperH KEYSC keypad support"
  260. depends on SUPERH
  261. help
  262. Say Y here if you want to use a keypad attached to the KEYSC block
  263. on SuperH processors such as sh7722 and sh7343.
  264. To compile this driver as a module, choose M here: the
  265. module will be called sh_keysc.
  266. endif