blob: bc2d47431bdc505eb83190af1c0a555737947c92 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#
2# Input core configuration
3#
4config SERIO
Tom Gundersenbcd26232013-10-31 00:38:30 -07005 tristate "Serial I/O support"
Linus Torvalds1da177e2005-04-16 15:20:36 -07006 default y
Dmitry Torokhovfed94542009-10-05 21:44:18 -07007 help
Linus Torvalds1da177e2005-04-16 15:20:36 -07008 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
14 If unsure, say Y.
15
16 To compile this driver as a module, choose M here: the
17 module will be called serio.
18
Mark Salter5cd3f8f2014-01-01 11:34:39 -080019config ARCH_MIGHT_HAVE_PC_SERIO
20 bool
21 help
22 Select this config option from the architecture Kconfig if
23 the architecture might use a PC serio device (i8042) to
24 communicate with keyboard, mouse, etc.
25
Linus Torvalds1da177e2005-04-16 15:20:36 -070026if SERIO
27
28config SERIO_I8042
Tom Gundersenbcd26232013-10-31 00:38:30 -070029 tristate "i8042 PC Keyboard controller"
Linus Torvalds1da177e2005-04-16 15:20:36 -070030 default y
Mark Salter5cd3f8f2014-01-01 11:34:39 -080031 depends on ARCH_MIGHT_HAVE_PC_SERIO
Dmitry Torokhovfed94542009-10-05 21:44:18 -070032 help
Linus Torvalds1da177e2005-04-16 15:20:36 -070033 i8042 is the chip over which the standard AT keyboard and PS/2
34 mouse are connected to the computer. If you use these devices,
35 you'll need to say Y here.
36
37 If unsure, say Y.
38
39 To compile this driver as a module, choose M here: the
40 module will be called i8042.
41
42config SERIO_SERPORT
43 tristate "Serial port line discipline"
44 default y
Joe Millenbach238d9f62013-02-05 17:58:34 -080045 depends on TTY
Dmitry Torokhovfed94542009-10-05 21:44:18 -070046 help
Linus Torvalds1da177e2005-04-16 15:20:36 -070047 Say Y here if you plan to use an input device (mouse, joystick,
48 tablet, 6dof) that communicates over the RS232 serial (COM) port.
49
50 More information is available: <file:Documentation/input/input.txt>
51
52 If unsure, say Y.
53
54 To compile this driver as a module, choose M here: the
55 module will be called serport.
56
57config SERIO_CT82C710
58 tristate "ct82c710 Aux port controller"
59 depends on X86
Dmitry Torokhovfed94542009-10-05 21:44:18 -070060 help
Linus Torvalds1da177e2005-04-16 15:20:36 -070061 Say Y here if you have a Texas Instruments TravelMate notebook
62 equipped with the ct82c710 chip and want to use a mouse connected
63 to the "QuickPort".
64
65 If unsure, say N.
66
67 To compile this driver as a module, choose M here: the
68 module will be called ct82c710.
69
70config SERIO_Q40KBD
71 tristate "Q40 keyboard controller"
72 depends on Q40
73
74config SERIO_PARKBD
75 tristate "Parallel port keyboard adapter"
76 depends on PARPORT
Dmitry Torokhovfed94542009-10-05 21:44:18 -070077 help
Linus Torvalds1da177e2005-04-16 15:20:36 -070078 Say Y here if you built a simple parallel port adapter to attach
79 an additional AT keyboard, XT keyboard or PS/2 mouse.
80
81 More information is available: <file:Documentation/input/input.txt>
82
83 If unsure, say N.
84
85 To compile this driver as a module, choose M here: the
86 module will be called parkbd.
87
88config SERIO_RPCKBD
89 tristate "Acorn RiscPC keyboard controller"
Russell King635f0252008-10-28 09:43:54 +000090 depends on ARCH_ACORN
Linus Torvalds1da177e2005-04-16 15:20:36 -070091 default y
92 help
93 Say Y here if you have the Acorn RiscPC and want to use an AT
94 keyboard connected to its keyboard controller.
95
96 To compile this driver as a module, choose M here: the
97 module will be called rpckbd.
98
Hans-Christian Egtvedt9f9439e2008-04-15 01:30:47 -040099config SERIO_AT32PSIF
100 tristate "AVR32 PSIF PS/2 keyboard and mouse controller"
101 depends on AVR32
102 help
103 Say Y here if you want to use the PSIF peripheral on AVR32 devices
104 and connect a PS/2 keyboard and/or mouse to it.
105
106 To compile this driver as a module, choose M here: the module will
107 be called at32psif.
108
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109config SERIO_AMBAKMI
110 tristate "AMBA KMI keyboard controller"
111 depends on ARM_AMBA
112
113config SERIO_SA1111
114 tristate "Intel SA1111 keyboard controller"
115 depends on SA1111
116
117config SERIO_GSCPS2
118 tristate "HP GSC PS/2 keyboard and PS/2 mouse controller"
119 depends on GSC
120 default y
121 help
122 This driver provides support for the PS/2 ports on PA-RISC machines
123 over which HP PS/2 keyboards and PS/2 mice may be connected.
124 If you use these devices, you'll need to say Y here.
125
126 It's safe to enable this driver, so if unsure, say Y.
127
128 To compile this driver as a module, choose M here: the
129 module will be called gscps2.
130
131config HP_SDC
132 tristate "HP System Device Controller i8042 Support"
Geert Uytterhoevenda96d0b2006-10-09 22:22:37 +0200133 depends on (GSC || HP300) && SERIO
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134 default y
Dmitry Torokhovfed94542009-10-05 21:44:18 -0700135 help
Matt LaPlante09509602006-10-03 22:31:37 +0200136 This option enables support for the "System Device
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137 Controller", an i8042 carrying microcode to manage a
Matt LaPlante09509602006-10-03 22:31:37 +0200138 few miscellaneous devices on some Hewlett Packard systems.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139 The SDC itself contains a 10ms resolution timer/clock capable
140 of delivering interrupts on a periodic and one-shot basis.
141 The SDC may also be connected to a battery-backed real-time
142 clock, a basic audio waveform generator, and an HP-HIL Master
143 Link Controller serving up to seven input devices.
144
145 By itself this option is rather useless, but enabling it will
146 enable selection of drivers for the abovementioned devices.
147 It is, however, incompatible with the old, reliable HIL keyboard
148 driver, and the new HIL driver is experimental, so if you plan
149 to use a HIL keyboard as your primary keyboard, you may wish
150 to keep using that driver until the new HIL drivers have had
151 more testing.
152
153config HIL_MLC
154 tristate "HIL MLC Support (needed for HIL input devices)"
155 depends on HP_SDC
156
157config SERIO_PCIPS2
158 tristate "PCI PS/2 keyboard and PS/2 mouse controller"
159 depends on PCI
160 help
161 Say Y here if you have a Mobility Docking station with PS/2
162 keyboard and mice ports.
163
164 To compile this driver as a module, choose M here: the
165 module will be called pcips2.
166
167config SERIO_MACEPS2
168 tristate "SGI O2 MACE PS/2 controller"
169 depends on SGI_IP32
170 help
171 Say Y here if you have SGI O2 workstation and want to use its
172 PS/2 ports.
173
174 To compile this driver as a module, choose M here: the
175 module will be called maceps2.
176
177config SERIO_LIBPS2
Tom Gundersenbcd26232013-10-31 00:38:30 -0700178 tristate "PS/2 driver library"
Dmitry Torokhovfed94542009-10-05 21:44:18 -0700179 depends on SERIO_I8042 || SERIO_I8042=n
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180 help
181 Say Y here if you are using a driver for device connected
182 to a PS/2 port, such as PS/2 mouse or standard AT keyboard.
183
184 To compile this driver as a module, choose M here: the
185 module will be called libps2.
186
187config SERIO_RAW
188 tristate "Raw access to serio ports"
189 help
190 Say Y here if you want to have raw access to serio ports, such as
191 AUX ports on i8042 keyboard controller. Each serio port that is
192 bound to this driver will be accessible via a char device with
193 major 10 and dynamically allocated minor. The driver will try
194 allocating minor 1 (that historically corresponds to /dev/psaux)
195 first. To bind this driver to a serio port use sysfs interface:
196
Neil Brownbef5a662005-07-11 01:05:47 -0500197 echo -n "serio_raw" > /sys/bus/serio/devices/serioX/drvctl
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198
199 To compile this driver as a module, choose M here: the
200 module will be called serio_raw.
201
John Linn11918282008-07-07 16:17:48 -0400202config SERIO_XILINX_XPS_PS2
203 tristate "Xilinx XPS PS/2 Controller Support"
Michal Simek6fa612b2009-05-11 15:49:12 +0200204 depends on PPC || MICROBLAZE
John Linn11918282008-07-07 16:17:48 -0400205 help
206 This driver supports XPS PS/2 IP from the Xilinx EDK on
207 PowerPC platform.
208
209 To compile this driver as a module, choose M here: the
210 module will be called xilinx_ps2.
211
Thomas Choufb5bbee2009-10-12 21:35:00 -0700212config SERIO_ALTERA_PS2
213 tristate "Altera UP PS/2 controller"
Ben Hutchings150e5922013-06-10 11:05:40 -0700214 depends on HAS_IOMEM
Thomas Choufb5bbee2009-10-12 21:35:00 -0700215 help
216 Say Y here if you have Altera University Program PS/2 ports.
217
218 To compile this driver as a module, choose M here: the
219 module will be called altera_ps2.
220
Janusz Krzysztofik29453932010-04-28 01:10:50 +0000221config SERIO_AMS_DELTA
222 tristate "Amstrad Delta (E3) mailboard support"
223 depends on MACH_AMS_DELTA
224 default y
Janusz Krzysztofik29453932010-04-28 01:10:50 +0000225 ---help---
226 Say Y here if you have an E3 and want to use its mailboard,
227 or any standard AT keyboard connected to the mailboard port.
228
229 When used for the E3 mailboard, a non-standard key table
230 must be loaded from userspace, possibly using udev extras
231 provided keymap helper utility.
232
233 To compile this driver as a module, choose M here;
234 the module will be called ams_delta_serio.
235
Dmitry Eremin-Solenikovfc58d122010-10-18 09:18:13 -0700236config SERIO_PS2MULT
237 tristate "TQC PS/2 multiplexer"
238 help
239 Say Y here if you have the PS/2 line multiplexer like the one
Michael Wittende7fd0f2010-10-27 23:11:10 +0000240 present on TQC boards.
Dmitry Eremin-Solenikovfc58d122010-10-18 09:18:13 -0700241
242 To compile this driver as a module, choose M here: the
243 module will be called ps2mult.
244
Mischa Jonkere4b29002012-10-22 22:48:08 -0700245config SERIO_ARC_PS2
246 tristate "ARC PS/2 support"
247 help
248 Say Y here if you have an ARC FPGA platform with a PS/2
249 controller in it.
250
251 To compile this driver as a module, choose M here; the module
252 will be called arc_ps2.
253
Daniel Hellstromb4a034d2013-02-25 22:51:37 -0800254config SERIO_APBPS2
255 tristate "GRLIB APBPS2 PS/2 keyboard/mouse controller"
256 depends on OF
257 help
258 Say Y here if you want support for GRLIB APBPS2 peripherals used
259 to connect to PS/2 keyboard and/or mouse.
260
261 To compile this driver as a module, choose M here: the module will
262 be called apbps2.
263
Daniel Drakeb56ece92013-06-30 18:37:24 -0700264config SERIO_OLPC_APSP
265 tristate "OLPC AP-SP input support"
Jean Delvare915a1222014-03-11 23:12:13 -0700266 depends on OLPC || COMPILE_TEST
Daniel Drakeb56ece92013-06-30 18:37:24 -0700267 help
268 Say Y here if you want support for the keyboard and touchpad included
269 in the OLPC XO-1.75 and XO-4 laptops.
270
271 To compile this driver as a module, choose M here: the module will
272 be called olpc_apsp.
273
K. Y. Srinivasanaed06b92013-09-18 12:50:42 -0700274config HYPERV_KEYBOARD
275 tristate "Microsoft Synthetic Keyboard driver"
276 depends on HYPERV
277 default HYPERV
278 help
279 Select this option to enable the Hyper-V Keyboard driver.
280
281 To compile this driver as a module, choose M here: the module will
282 be called hyperv_keyboard.
283
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284endif