Kconfig 10 KB

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