blob: d2df1030675abc28c90866816da84f475a0e7073 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#
2# Input core configuration
3#
4menuconfig 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
11 If unsure, say Y.
12
13if INPUT_KEYBOARD
14
Dmitry Torokhovcb589522009-06-29 00:00:52 -070015config KEYBOARD_AAED2000
16 tristate "AAED-2000 keyboard"
17 depends on MACH_AAED2000
18 select INPUT_POLLDEV
19 default y
20 help
21 Say Y here to enable the keyboard on the Agilent AAED-2000
22 development board.
23
24 To compile this driver as a module, choose M here: the
25 module will be called aaed2000_kbd.
26
27config KEYBOARD_AMIGA
28 tristate "Amiga keyboard"
29 depends on AMIGA
30 help
31 Say Y here if you are running Linux on any AMIGA and have a keyboard
32 attached.
33
34 To compile this driver as a module, choose M here: the
35 module will be called amikbd.
36
37config ATARI_KBD_CORE
38 bool
39
40config KEYBOARD_ATARI
41 tristate "Atari keyboard"
42 depends on ATARI
43 select ATARI_KBD_CORE
44 help
45 Say Y here if you are running Linux on any Atari and have a keyboard
46 attached.
47
48 To compile this driver as a module, choose M here: the
49 module will be called atakbd.
50
Linus Torvalds1da177e2005-04-16 15:20:36 -070051config KEYBOARD_ATKBD
Yinghai Lu4272ebf2009-01-29 15:14:46 -080052 tristate "AT keyboard" if EMBEDDED || !X86
Linus Torvalds1da177e2005-04-16 15:20:36 -070053 default y
54 select SERIO
55 select SERIO_LIBPS2
Yinghai Lu4272ebf2009-01-29 15:14:46 -080056 select SERIO_I8042 if X86
Linus Torvalds1da177e2005-04-16 15:20:36 -070057 select SERIO_GSCPS2 if GSC
58 help
59 Say Y here if you want to use a standard AT or PS/2 keyboard. Usually
60 you'll need this, unless you have a different type keyboard (USB, ADB
61 or other). This also works for AT and PS/2 keyboards connected over a
62 PS/2 to serial converter.
63
64 If unsure, say Y.
65
66 To compile this driver as a module, choose M here: the
67 module will be called atkbd.
68
69config KEYBOARD_ATKBD_HP_KEYCODES
70 bool "Use HP keyboard scancodes"
71 depends on PARISC && KEYBOARD_ATKBD
72 default y
73 help
74 Say Y here if you have a PA-RISC machine and want to use an AT or
75 PS/2 keyboard, and your keyboard uses keycodes that are specific to
76 PA-RISC keyboards.
77
78 Say N if you use a standard keyboard.
79
80config KEYBOARD_ATKBD_RDI_KEYCODES
81 bool "Use PrecisionBook keyboard scancodes"
82 depends on KEYBOARD_ATKBD_HP_KEYCODES
83 default n
84 help
85 If you have an RDI PrecisionBook, say Y here if you want to use its
86 built-in keyboard (as opposed to an external keyboard).
87
88 The PrecisionBook has five keys that conflict with those used by most
89 AT and PS/2 keyboards. These are as follows:
90
91 PrecisionBook Standard AT or PS/2
92
93 F1 F12
94 Left Ctrl Left Alt
95 Caps Lock Left Ctrl
96 Right Ctrl Caps Lock
97 Left 102nd key (the key to the right of Left Shift)
98
99 If you say N here, and use the PrecisionBook keyboard, then each key
100 in the left-hand column will be interpreted as the corresponding key
101 in the right-hand column.
102
103 If you say Y here, and use an external keyboard, then each key in the
104 right-hand column will be interpreted as the key shown in the
105 left-hand column.
106
Dmitry Torokhovcb589522009-06-29 00:00:52 -0700107config KEYBOARD_BFIN
108 tristate "Blackfin BF54x keypad support"
109 depends on (BF54x && !BF544)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110 help
Dmitry Torokhovcb589522009-06-29 00:00:52 -0700111 Say Y here if you want to use the BF54x keypad.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112
113 To compile this driver as a module, choose M here: the
Dmitry Torokhovcb589522009-06-29 00:00:52 -0700114 module will be called bf54x-keys.
115
116config KEYBOARD_CORGI
117 tristate "Corgi keyboard"
118 depends on PXA_SHARPSL
119 default y
120 help
121 Say Y here to enable the keyboard on the Sharp Zaurus SL-C7xx
122 series of PDAs.
123
124 To compile this driver as a module, choose M here: the
125 module will be called corgikbd.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126
127config KEYBOARD_LKKBD
128 tristate "DECstation/VAXstation LK201/LK401 keyboard"
129 select SERIO
130 help
131 Say Y here if you want to use a LK201 or LK401 style serial
132 keyboard. This keyboard is also useable on PCs if you attach
133 it with the inputattach program. The connector pinout is
134 described within lkkbd.c.
135
136 To compile this driver as a module, choose M here: the
137 module will be called lkkbd.
138
Dmitry Torokhovcb589522009-06-29 00:00:52 -0700139config KEYBOARD_EP93XX
140 tristate "EP93xx Matrix Keypad support"
141 depends on ARCH_EP93XX
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142 help
Dmitry Torokhovcb589522009-06-29 00:00:52 -0700143 Say Y here to enable the matrix keypad on the Cirrus EP93XX.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144
145 To compile this driver as a module, choose M here: the
Dmitry Torokhovcb589522009-06-29 00:00:52 -0700146 module will be called ep93xx_keypad.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147
Dmitry Torokhovcb589522009-06-29 00:00:52 -0700148config KEYBOARD_GPIO
149 tristate "GPIO Buttons"
150 depends on GENERIC_GPIO
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151 help
Dmitry Torokhovcb589522009-06-29 00:00:52 -0700152 This driver implements support for buttons connected
153 to GPIO pins of various CPUs (and some other chips).
154
155 Say Y here if your device has buttons connected
156 directly to such GPIO pins. Your board-specific
157 setup logic must also provide a platform device,
158 with configuration data saying which GPIOs are used.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159
160 To compile this driver as a module, choose M here: the
Dmitry Torokhovcb589522009-06-29 00:00:52 -0700161 module will be called gpio-keys.
Michael Schmitzc04cb852007-05-01 22:32:38 +0200162
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163config KEYBOARD_HIL_OLD
164 tristate "HP HIL keyboard support (simple driver)"
Geert Uytterhoevenda96d0b2006-10-09 22:22:37 +0200165 depends on GSC || HP300
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166 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
175 If you want full HIL support including support for multiple
Matt LaPlante09509602006-10-03 22:31:37 +0200176 keyboards, mice, and tablets, you have to enable the
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177 "HP System Device Controller i8042 Support" in the input/serio
178 submenu.
179
180config KEYBOARD_HIL
181 tristate "HP HIL keyboard support"
Geert Uytterhoevenda96d0b2006-10-09 22:22:37 +0200182 depends on GSC || HP300
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183 default y
184 select HP_SDC
185 select HIL_MLC
186 select SERIO
187 help
188 The "Human Interface Loop" is a older, 8-channel USB-like
189 controller used in several Hewlett Packard models.
190 This driver implements support for HIL-keyboards attached
191 to your machine, so normally you should say Y here.
192
Kristoffer Ericson2aa2cb92007-09-26 00:02:35 -0400193config KEYBOARD_HP6XX
Kristoffer Ericson4ff891e2008-01-14 00:54:23 -0500194 tristate "HP Jornada 6xx keyboard"
Kristoffer Ericson2aa2cb92007-09-26 00:02:35 -0400195 depends on SH_HP6XX
196 select INPUT_POLLDEV
197 help
Kristoffer Ericson4ff891e2008-01-14 00:54:23 -0500198 Say Y here if you have a HP Jornada 620/660/680/690 and want to
199 support the built-in keyboard.
Kristoffer Ericson2aa2cb92007-09-26 00:02:35 -0400200
201 To compile this driver as a module, choose M here: the
202 module will be called jornada680_kbd.
203
Kristoffer Ericsonb0a4e1a2007-09-26 00:02:49 -0400204config KEYBOARD_HP7XX
Kristoffer Ericson4ff891e2008-01-14 00:54:23 -0500205 tristate "HP Jornada 7xx keyboard"
Kristoffer Ericsonb0a4e1a2007-09-26 00:02:49 -0400206 depends on SA1100_JORNADA720_SSP && SA1100_SSP
207 help
Kristoffer Ericson4ff891e2008-01-14 00:54:23 -0500208 Say Y here if you have a HP Jornada 710/720/728 and want to
209 support the built-in keyboard.
Kristoffer Ericsonb0a4e1a2007-09-26 00:02:49 -0400210
211 To compile this driver as a module, choose M here: the
212 module will be called jornada720_kbd.
213
Felipe Balbia48b2d42009-05-15 20:12:47 -0700214config KEYBOARD_LM8323
215 tristate "LM8323 keypad chip"
216 depends on I2C
217 depends on LEDS_CLASS
218 help
219 If you say yes here you get support for the National Semiconductor
220 LM8323 keypad controller.
221
222 To compile this driver as a module, choose M here: the
223 module will be called lm8323.
224
Dmitry Torokhovcb589522009-06-29 00:00:52 -0700225config KEYBOARD_LOCOMO
226 tristate "LoCoMo Keyboard Support"
227 depends on SHARP_LOCOMO
Komal Shahad4e09b2006-09-29 01:59:19 -0700228 help
Dmitry Torokhovcb589522009-06-29 00:00:52 -0700229 Say Y here if you are running Linux on a Sharp Zaurus Collie or Poodle based PDA
Komal Shahad4e09b2006-09-29 01:59:19 -0700230
231 To compile this driver as a module, choose M here: the
Dmitry Torokhovcb589522009-06-29 00:00:52 -0700232 module will be called locomokbd.
233
234config KEYBOARD_MAPLE
235 tristate "Maple bus keyboard"
236 depends on SH_DREAMCAST && MAPLE
237 help
238 Say Y here if you have a Dreamcast console running Linux and have
239 a keyboard attached to its Maple bus.
240
241 To compile this driver as a module, choose M here: the
242 module will be called maple_keyb.
243
244config KEYBOARD_NEWTON
245 tristate "Newton keyboard"
246 select SERIO
247 help
248 Say Y here if you have a Newton keyboard on a serial port.
249
250 To compile this driver as a module, choose M here: the
251 module will be called newtonkbd.
Komal Shahad4e09b2006-09-29 01:59:19 -0700252
Rodolfo Giometti5a90e5b2007-03-16 00:58:52 -0400253config KEYBOARD_PXA27x
Eric Miaoe0f26772008-01-31 00:59:31 -0500254 tristate "PXA27x/PXA3xx keypad support"
255 depends on PXA27x || PXA3xx
Rodolfo Giometti5a90e5b2007-03-16 00:58:52 -0400256 help
Eric Miaoe0f26772008-01-31 00:59:31 -0500257 Enable support for PXA27x/PXA3xx keypad controller
Rodolfo Giometti5a90e5b2007-03-16 00:58:52 -0400258
259 To compile this driver as a module, choose M here: the
Eric Miao0e5f11a2008-01-31 00:56:46 -0500260 module will be called pxa27x_keypad.
Rodolfo Giometti5a90e5b2007-03-16 00:58:52 -0400261
Yong Yaoe0ee6292008-12-29 04:00:02 -0800262config KEYBOARD_PXA930_ROTARY
263 tristate "PXA930/PXA935 Enhanced Rotary Controller Support"
264 depends on CPU_PXA930 || CPU_PXA935
265 help
266 Enable support for PXA930/PXA935 Enhanced Rotary Controller.
267
268 To compile this driver as a module, choose M here: the
269 module will be called pxa930_rotary.
270
Dmitry Torokhovcb589522009-06-29 00:00:52 -0700271config KEYBOARD_SPITZ
272 tristate "Spitz keyboard"
273 depends on PXA_SHARPSL
Nicolas Bellidof9705fc2006-11-24 00:42:50 -0500274 default y
275 help
Dmitry Torokhovcb589522009-06-29 00:00:52 -0700276 Say Y here to enable the keyboard on the Sharp Zaurus SL-C1000,
277 SL-C3000 and Sl-C3100 series of PDAs.
Nicolas Bellidof9705fc2006-11-24 00:42:50 -0500278
279 To compile this driver as a module, choose M here: the
Dmitry Torokhovcb589522009-06-29 00:00:52 -0700280 module will be called spitzkbd.
Nicolas Bellidof9705fc2006-11-24 00:42:50 -0500281
Dmitry Torokhovcb589522009-06-29 00:00:52 -0700282config KEYBOARD_STOWAWAY
283 tristate "Stowaway keyboard"
284 select SERIO
Phil Blundell78a56aa2007-01-18 00:44:09 -0500285 help
Dmitry Torokhovcb589522009-06-29 00:00:52 -0700286 Say Y here if you have a Stowaway keyboard on a serial port.
287 Stowaway compatible keyboards like Dicota Input-PDA keyboard
288 are also supported by this driver.
Phil Blundell78a56aa2007-01-18 00:44:09 -0500289
290 To compile this driver as a module, choose M here: the
Dmitry Torokhovcb589522009-06-29 00:00:52 -0700291 module will be called stowaway.
Phil Blundell78a56aa2007-01-18 00:44:09 -0500292
Dmitry Torokhovcb589522009-06-29 00:00:52 -0700293config KEYBOARD_SUNKBD
294 tristate "Sun Type 4 and Type 5 keyboard"
295 select SERIO
Adrian McMenaminb11d2122007-10-12 20:36:13 -0400296 help
Dmitry Torokhovcb589522009-06-29 00:00:52 -0700297 Say Y here if you want to use a Sun Type 4 or Type 5 keyboard,
298 connected either to the Sun keyboard connector or to an serial
299 (RS-232) port via a simple adapter.
Adrian McMenaminb11d2122007-10-12 20:36:13 -0400300
301 To compile this driver as a module, choose M here: the
Dmitry Torokhovcb589522009-06-29 00:00:52 -0700302 module will be called sunkbd.
Michael Hennerich8f740ef2007-10-13 00:36:46 -0400303
Magnus Damm795e6bf2008-03-04 15:23:45 -0800304config KEYBOARD_SH_KEYSC
305 tristate "SuperH KEYSC keypad support"
306 depends on SUPERH
307 help
308 Say Y here if you want to use a keypad attached to the KEYSC block
309 on SuperH processors such as sh7722 and sh7343.
310
311 To compile this driver as a module, choose M here: the
312 module will be called sh_keysc.
Felipe Balbia48b2d42009-05-15 20:12:47 -0700313
Dmitry Torokhovcb589522009-06-29 00:00:52 -0700314config KEYBOARD_OMAP
315 tristate "TI OMAP keypad support"
316 depends on (ARCH_OMAP1 || ARCH_OMAP2)
H Hartley Sweetene06003a2009-04-18 23:43:57 -0700317 help
Dmitry Torokhovcb589522009-06-29 00:00:52 -0700318 Say Y here if you want to use the OMAP keypad.
H Hartley Sweetene06003a2009-04-18 23:43:57 -0700319
320 To compile this driver as a module, choose M here: the
Dmitry Torokhovcb589522009-06-29 00:00:52 -0700321 module will be called omap-keypad.
322
323config KEYBOARD_TOSA
324 tristate "Tosa keyboard"
325 depends on MACH_TOSA
326 default y
327 help
328 Say Y here to enable the keyboard on the Sharp Zaurus SL-6000x (Tosa)
329
330 To compile this driver as a module, choose M here: the
331 module will be called tosakbd.
332
333config KEYBOARD_TOSA_USE_EXT_KEYCODES
334 bool "Tosa keyboard: use extended keycodes"
335 depends on KEYBOARD_TOSA
336 help
337 Say Y here to enable the tosa keyboard driver to generate extended
338 (>= 127) keycodes. Be aware, that they can't be correctly interpreted
339 by either console keyboard driver or by Kdrive keybd driver.
340
341 Say Y only if you know, what you are doing!
342
343config KEYBOARD_XTKBD
344 tristate "XT keyboard"
345 select SERIO
346 help
347 Say Y here if you want to use the old IBM PC/XT keyboard (or
348 compatible) on your system. This is only possible with a
349 parallel port keyboard adapter, you cannot connect it to the
350 keyboard port on a PC that runs Linux.
351
352 To compile this driver as a module, choose M here: the
353 module will be called xtkbd.
H Hartley Sweetene06003a2009-04-18 23:43:57 -0700354
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355endif