Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | # |
| 2 | # Input core configuration |
| 3 | # |
| 4 | config SERIO |
| 5 | tristate "Serial I/O support" if EMBEDDED || !X86 |
| 6 | default y |
Dmitry Torokhov | fed9454 | 2009-10-05 21:44:18 -0700 | [diff] [blame] | 7 | help |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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 | |
| 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 | |
| 19 | if SERIO |
| 20 | |
| 21 | config SERIO_I8042 |
| 22 | tristate "i8042 PC Keyboard controller" if EMBEDDED || !X86 |
| 23 | default y |
Mike Frysinger | 529a73f | 2007-11-23 14:28:44 +0800 | [diff] [blame] | 24 | depends on !PARISC && (!ARM || ARCH_SHARK || FOOTBRIDGE_HOST) && !M68K && !BLACKFIN |
Dmitry Torokhov | fed9454 | 2009-10-05 21:44:18 -0700 | [diff] [blame] | 25 | help |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 26 | i8042 is the chip over which the standard AT keyboard and PS/2 |
| 27 | mouse are connected to the computer. If you use these devices, |
| 28 | you'll need to say Y here. |
| 29 | |
| 30 | If unsure, say Y. |
| 31 | |
| 32 | To compile this driver as a module, choose M here: the |
| 33 | module will be called i8042. |
| 34 | |
| 35 | config SERIO_SERPORT |
| 36 | tristate "Serial port line discipline" |
| 37 | default y |
Dmitry Torokhov | fed9454 | 2009-10-05 21:44:18 -0700 | [diff] [blame] | 38 | help |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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 | |
| 42 | More information is available: <file:Documentation/input/input.txt> |
| 43 | |
| 44 | If unsure, say Y. |
| 45 | |
| 46 | To compile this driver as a module, choose M here: the |
| 47 | module will be called serport. |
| 48 | |
| 49 | config SERIO_CT82C710 |
| 50 | tristate "ct82c710 Aux port controller" |
| 51 | depends on X86 |
Dmitry Torokhov | fed9454 | 2009-10-05 21:44:18 -0700 | [diff] [blame] | 52 | help |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 53 | Say Y here if you have a Texas Instruments TravelMate notebook |
| 54 | equipped with the ct82c710 chip and want to use a mouse connected |
| 55 | to the "QuickPort". |
| 56 | |
| 57 | If unsure, say N. |
| 58 | |
| 59 | To compile this driver as a module, choose M here: the |
| 60 | module will be called ct82c710. |
| 61 | |
| 62 | config SERIO_Q40KBD |
| 63 | tristate "Q40 keyboard controller" |
| 64 | depends on Q40 |
| 65 | |
| 66 | config SERIO_PARKBD |
| 67 | tristate "Parallel port keyboard adapter" |
| 68 | depends on PARPORT |
Dmitry Torokhov | fed9454 | 2009-10-05 21:44:18 -0700 | [diff] [blame] | 69 | help |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 70 | Say Y here if you built a simple parallel port adapter to attach |
| 71 | an additional AT keyboard, XT keyboard or PS/2 mouse. |
| 72 | |
| 73 | More information is available: <file:Documentation/input/input.txt> |
| 74 | |
| 75 | If unsure, say N. |
| 76 | |
| 77 | To compile this driver as a module, choose M here: the |
| 78 | module will be called parkbd. |
| 79 | |
| 80 | config SERIO_RPCKBD |
| 81 | tristate "Acorn RiscPC keyboard controller" |
Russell King | 635f025 | 2008-10-28 09:43:54 +0000 | [diff] [blame] | 82 | depends on ARCH_ACORN |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 83 | default y |
| 84 | help |
| 85 | Say Y here if you have the Acorn RiscPC and want to use an AT |
| 86 | keyboard connected to its keyboard controller. |
| 87 | |
| 88 | To compile this driver as a module, choose M here: the |
| 89 | module will be called rpckbd. |
| 90 | |
Hans-Christian Egtvedt | 9f9439e | 2008-04-15 01:30:47 -0400 | [diff] [blame] | 91 | config SERIO_AT32PSIF |
| 92 | tristate "AVR32 PSIF PS/2 keyboard and mouse controller" |
| 93 | depends on AVR32 |
| 94 | help |
| 95 | Say Y here if you want to use the PSIF peripheral on AVR32 devices |
| 96 | and connect a PS/2 keyboard and/or mouse to it. |
| 97 | |
| 98 | To compile this driver as a module, choose M here: the module will |
| 99 | be called at32psif. |
| 100 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 101 | config SERIO_AMBAKMI |
| 102 | tristate "AMBA KMI keyboard controller" |
| 103 | depends on ARM_AMBA |
| 104 | |
| 105 | config SERIO_SA1111 |
| 106 | tristate "Intel SA1111 keyboard controller" |
| 107 | depends on SA1111 |
| 108 | |
| 109 | config SERIO_GSCPS2 |
| 110 | tristate "HP GSC PS/2 keyboard and PS/2 mouse controller" |
| 111 | depends on GSC |
| 112 | default y |
| 113 | help |
| 114 | This driver provides support for the PS/2 ports on PA-RISC machines |
| 115 | over which HP PS/2 keyboards and PS/2 mice may be connected. |
| 116 | If you use these devices, you'll need to say Y here. |
| 117 | |
| 118 | It's safe to enable this driver, so if unsure, say Y. |
| 119 | |
| 120 | To compile this driver as a module, choose M here: the |
| 121 | module will be called gscps2. |
| 122 | |
| 123 | config HP_SDC |
| 124 | tristate "HP System Device Controller i8042 Support" |
Geert Uytterhoeven | da96d0b | 2006-10-09 22:22:37 +0200 | [diff] [blame] | 125 | depends on (GSC || HP300) && SERIO |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 126 | default y |
Dmitry Torokhov | fed9454 | 2009-10-05 21:44:18 -0700 | [diff] [blame] | 127 | help |
Matt LaPlante | 0950960 | 2006-10-03 22:31:37 +0200 | [diff] [blame] | 128 | This option enables support for the "System Device |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 129 | Controller", an i8042 carrying microcode to manage a |
Matt LaPlante | 0950960 | 2006-10-03 22:31:37 +0200 | [diff] [blame] | 130 | few miscellaneous devices on some Hewlett Packard systems. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 131 | The SDC itself contains a 10ms resolution timer/clock capable |
| 132 | of delivering interrupts on a periodic and one-shot basis. |
| 133 | The SDC may also be connected to a battery-backed real-time |
| 134 | clock, a basic audio waveform generator, and an HP-HIL Master |
| 135 | Link Controller serving up to seven input devices. |
| 136 | |
| 137 | By itself this option is rather useless, but enabling it will |
| 138 | enable selection of drivers for the abovementioned devices. |
| 139 | It is, however, incompatible with the old, reliable HIL keyboard |
| 140 | driver, and the new HIL driver is experimental, so if you plan |
| 141 | to use a HIL keyboard as your primary keyboard, you may wish |
| 142 | to keep using that driver until the new HIL drivers have had |
| 143 | more testing. |
| 144 | |
| 145 | config HIL_MLC |
| 146 | tristate "HIL MLC Support (needed for HIL input devices)" |
| 147 | depends on HP_SDC |
| 148 | |
| 149 | config SERIO_PCIPS2 |
| 150 | tristate "PCI PS/2 keyboard and PS/2 mouse controller" |
| 151 | depends on PCI |
| 152 | help |
| 153 | Say Y here if you have a Mobility Docking station with PS/2 |
| 154 | keyboard and mice ports. |
| 155 | |
| 156 | To compile this driver as a module, choose M here: the |
| 157 | module will be called pcips2. |
| 158 | |
| 159 | config SERIO_MACEPS2 |
| 160 | tristate "SGI O2 MACE PS/2 controller" |
| 161 | depends on SGI_IP32 |
| 162 | help |
| 163 | Say Y here if you have SGI O2 workstation and want to use its |
| 164 | PS/2 ports. |
| 165 | |
| 166 | To compile this driver as a module, choose M here: the |
| 167 | module will be called maceps2. |
| 168 | |
| 169 | config SERIO_LIBPS2 |
| 170 | tristate "PS/2 driver library" if EMBEDDED |
Dmitry Torokhov | fed9454 | 2009-10-05 21:44:18 -0700 | [diff] [blame] | 171 | depends on SERIO_I8042 || SERIO_I8042=n |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 172 | help |
| 173 | Say Y here if you are using a driver for device connected |
| 174 | to a PS/2 port, such as PS/2 mouse or standard AT keyboard. |
| 175 | |
| 176 | To compile this driver as a module, choose M here: the |
| 177 | module will be called libps2. |
| 178 | |
| 179 | config SERIO_RAW |
| 180 | tristate "Raw access to serio ports" |
| 181 | help |
| 182 | Say Y here if you want to have raw access to serio ports, such as |
| 183 | AUX ports on i8042 keyboard controller. Each serio port that is |
| 184 | bound to this driver will be accessible via a char device with |
| 185 | major 10 and dynamically allocated minor. The driver will try |
| 186 | allocating minor 1 (that historically corresponds to /dev/psaux) |
| 187 | first. To bind this driver to a serio port use sysfs interface: |
| 188 | |
Neil Brown | bef5a66 | 2005-07-11 01:05:47 -0500 | [diff] [blame] | 189 | echo -n "serio_raw" > /sys/bus/serio/devices/serioX/drvctl |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 190 | |
| 191 | To compile this driver as a module, choose M here: the |
| 192 | module will be called serio_raw. |
| 193 | |
John Linn | 1191828 | 2008-07-07 16:17:48 -0400 | [diff] [blame] | 194 | config SERIO_XILINX_XPS_PS2 |
| 195 | tristate "Xilinx XPS PS/2 Controller Support" |
Michal Simek | 6fa612b | 2009-05-11 15:49:12 +0200 | [diff] [blame] | 196 | depends on PPC || MICROBLAZE |
John Linn | 1191828 | 2008-07-07 16:17:48 -0400 | [diff] [blame] | 197 | help |
| 198 | This driver supports XPS PS/2 IP from the Xilinx EDK on |
| 199 | PowerPC platform. |
| 200 | |
| 201 | To compile this driver as a module, choose M here: the |
| 202 | module will be called xilinx_ps2. |
| 203 | |
Thomas Chou | fb5bbee | 2009-10-12 21:35:00 -0700 | [diff] [blame] | 204 | config SERIO_ALTERA_PS2 |
| 205 | tristate "Altera UP PS/2 controller" |
| 206 | help |
| 207 | Say Y here if you have Altera University Program PS/2 ports. |
| 208 | |
| 209 | To compile this driver as a module, choose M here: the |
| 210 | module will be called altera_ps2. |
| 211 | |
Janusz Krzysztofik | 2945393 | 2010-04-28 01:10:50 +0000 | [diff] [blame^] | 212 | config SERIO_AMS_DELTA |
| 213 | tristate "Amstrad Delta (E3) mailboard support" |
| 214 | depends on MACH_AMS_DELTA |
| 215 | default y |
| 216 | select AMS_DELTA_FIQ |
| 217 | ---help--- |
| 218 | Say Y here if you have an E3 and want to use its mailboard, |
| 219 | or any standard AT keyboard connected to the mailboard port. |
| 220 | |
| 221 | When used for the E3 mailboard, a non-standard key table |
| 222 | must be loaded from userspace, possibly using udev extras |
| 223 | provided keymap helper utility. |
| 224 | |
| 225 | To compile this driver as a module, choose M here; |
| 226 | the module will be called ams_delta_serio. |
| 227 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 228 | endif |