Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | # |
| 2 | # Serial device configuration |
| 3 | # |
| 4 | # $Id: Kconfig,v 1.11 2004/03/11 18:08:04 lethal Exp $ |
| 5 | # |
| 6 | |
| 7 | menu "Serial drivers" |
Martin Schwidefsky | e25df12 | 2007-05-10 15:45:57 +0200 | [diff] [blame] | 8 | depends on HAS_IOMEM |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 9 | |
| 10 | # |
| 11 | # The new 8250/16550 serial drivers |
| 12 | config SERIAL_8250 |
| 13 | tristate "8250/16550 and compatible serial support" |
Adrian Bunk | 0b57ee9 | 2005-12-22 21:03:47 -0800 | [diff] [blame] | 14 | depends on (BROKEN || !SPARC) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 15 | select SERIAL_CORE |
| 16 | ---help--- |
| 17 | This selects whether you want to include the driver for the standard |
| 18 | serial ports. The standard answer is Y. People who might say N |
| 19 | here are those that are setting up dedicated Ethernet WWW/FTP |
| 20 | servers, or users that have one of the various bus mice instead of a |
| 21 | serial mouse and don't intend to use their machine's standard serial |
| 22 | port for anything. (Note that the Cyclades and Stallion multi |
| 23 | serial port drivers do not need this driver built in for them to |
| 24 | work.) |
| 25 | |
| 26 | To compile this driver as a module, choose M here: the |
Timothy Charles McGrath | df7559d | 2006-01-23 09:50:09 +0000 | [diff] [blame] | 27 | module will be called 8250. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 28 | [WARNING: Do not compile this driver as a module if you are using |
| 29 | non-standard serial ports, since the configuration information will |
| 30 | be lost when the driver is unloaded. This limitation may be lifted |
| 31 | in the future.] |
| 32 | |
| 33 | BTW1: If you have a mouseman serial mouse which is not recognized by |
| 34 | the X window system, try running gpm first. |
| 35 | |
| 36 | BTW2: If you intend to use a software modem (also called Winmodem) |
| 37 | under Linux, forget it. These modems are crippled and require |
| 38 | proprietary drivers which are only available under Windows. |
| 39 | |
| 40 | Most people will say Y or M here, so that they can use serial mice, |
| 41 | modems and similar devices connecting to the standard serial ports. |
| 42 | |
| 43 | config SERIAL_8250_CONSOLE |
| 44 | bool "Console on 8250/16550 and compatible serial port" |
| 45 | depends on SERIAL_8250=y |
| 46 | select SERIAL_CORE_CONSOLE |
| 47 | ---help--- |
| 48 | If you say Y here, it will be possible to use a serial port as the |
| 49 | system console (the system console is the device which receives all |
| 50 | kernel messages and warnings and which allows logins in single user |
| 51 | mode). This could be useful if some terminal or printer is connected |
| 52 | to that serial port. |
| 53 | |
| 54 | Even if you say Y here, the currently visible virtual console |
| 55 | (/dev/tty0) will still be used as the system console by default, but |
| 56 | you can alter that using a kernel command line option such as |
| 57 | "console=ttyS1". (Try "man bootparam" or see the documentation of |
| 58 | your boot loader (grub or lilo or loadlin) about how to pass options |
| 59 | to the kernel at boot time.) |
| 60 | |
| 61 | If you don't have a VGA card installed and you say Y here, the |
| 62 | kernel will automatically use the first serial line, /dev/ttyS0, as |
| 63 | system console. |
| 64 | |
| 65 | If unsure, say N. |
| 66 | |
Russell King | 0cff260 | 2006-03-29 22:03:38 +0100 | [diff] [blame] | 67 | config SERIAL_8250_GSC |
| 68 | tristate |
| 69 | depends on SERIAL_8250 && GSC |
| 70 | default SERIAL_8250 |
| 71 | |
| 72 | config SERIAL_8250_PCI |
| 73 | tristate "8250/16550 PCI device support" if EMBEDDED |
| 74 | depends on SERIAL_8250 && PCI |
| 75 | default SERIAL_8250 |
| 76 | help |
Bjorn Helgaas | 7e92b4fc | 2007-05-08 00:36:07 -0700 | [diff] [blame] | 77 | Say Y here if you have PCI serial ports. |
| 78 | |
| 79 | To compile this driver as a module, choose M here: the module |
| 80 | will be called 8250_pci. |
Russell King | 0cff260 | 2006-03-29 22:03:38 +0100 | [diff] [blame] | 81 | |
| 82 | config SERIAL_8250_PNP |
| 83 | tristate "8250/16550 PNP device support" if EMBEDDED |
| 84 | depends on SERIAL_8250 && PNP |
| 85 | default SERIAL_8250 |
| 86 | help |
Bjorn Helgaas | 7e92b4fc | 2007-05-08 00:36:07 -0700 | [diff] [blame] | 87 | Say Y here if you have serial ports described by PNPBIOS or ACPI. |
| 88 | These are typically ports built into the system board. |
| 89 | |
| 90 | To compile this driver as a module, choose M here: the module |
| 91 | will be called 8250_pnp. |
Russell King | 0cff260 | 2006-03-29 22:03:38 +0100 | [diff] [blame] | 92 | |
| 93 | config SERIAL_8250_HP300 |
| 94 | tristate |
| 95 | depends on SERIAL_8250 && HP300 |
| 96 | default SERIAL_8250 |
| 97 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 98 | config SERIAL_8250_CS |
| 99 | tristate "8250/16550 PCMCIA device support" |
| 100 | depends on PCMCIA && SERIAL_8250 |
| 101 | ---help--- |
| 102 | Say Y here to enable support for 16-bit PCMCIA serial devices, |
| 103 | including serial port cards, modems, and the modem functions of |
| 104 | multi-function Ethernet/modem cards. (PCMCIA- or PC-cards are |
| 105 | credit-card size devices often used with laptops.) |
| 106 | |
| 107 | To compile this driver as a module, choose M here: the |
| 108 | module will be called serial_cs. |
| 109 | |
| 110 | If unsure, say N. |
| 111 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 112 | config SERIAL_8250_NR_UARTS |
Russell King | 026d02a | 2005-06-29 18:45:19 +0100 | [diff] [blame] | 113 | int "Maximum number of 8250/16550 serial ports" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 114 | depends on SERIAL_8250 |
| 115 | default "4" |
Russell King | ec9f47c | 2005-06-27 11:12:54 +0100 | [diff] [blame] | 116 | help |
| 117 | Set this to the number of serial ports you want the driver |
| 118 | to support. This includes any ports discovered via ACPI or |
| 119 | PCI enumeration and any ports that may be added at run-time |
| 120 | via hot-plug, or any ISA multi-port serial cards. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 121 | |
Dave Jones | a61c2d7 | 2006-01-07 23:18:19 +0000 | [diff] [blame] | 122 | config SERIAL_8250_RUNTIME_UARTS |
| 123 | int "Number of 8250/16550 serial ports to register at runtime" |
| 124 | depends on SERIAL_8250 |
Russell King | 9a8ffcc | 2006-02-03 22:05:42 +0000 | [diff] [blame] | 125 | range 0 SERIAL_8250_NR_UARTS |
Dave Jones | a61c2d7 | 2006-01-07 23:18:19 +0000 | [diff] [blame] | 126 | default "4" |
| 127 | help |
| 128 | Set this to the maximum number of serial ports you want |
Matt LaPlante | 0950960 | 2006-10-03 22:31:37 +0200 | [diff] [blame] | 129 | the kernel to register at boot time. This can be overridden |
Dave Jones | a61c2d7 | 2006-01-07 23:18:19 +0000 | [diff] [blame] | 130 | with the module parameter "nr_uarts", or boot-time parameter |
| 131 | 8250.nr_uarts |
| 132 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 133 | config SERIAL_8250_EXTENDED |
| 134 | bool "Extended 8250/16550 serial driver options" |
| 135 | depends on SERIAL_8250 |
| 136 | help |
| 137 | If you wish to use any non-standard features of the standard "dumb" |
| 138 | driver, say Y here. This includes HUB6 support, shared serial |
| 139 | interrupts, special multiport support, support for more than the |
| 140 | four COM 1/2/3/4 boards, etc. |
| 141 | |
| 142 | Note that the answer to this question won't directly affect the |
| 143 | kernel: saying N will just cause the configurator to skip all |
| 144 | the questions about serial driver options. If unsure, say N. |
| 145 | |
| 146 | config SERIAL_8250_MANY_PORTS |
| 147 | bool "Support more than 4 legacy serial ports" |
| 148 | depends on SERIAL_8250_EXTENDED && !IA64 |
| 149 | help |
| 150 | Say Y here if you have dumb serial boards other than the four |
| 151 | standard COM 1/2/3/4 ports. This may happen if you have an AST |
| 152 | FourPort, Accent Async, Boca (read the Boca mini-HOWTO, available |
| 153 | from <http://www.tldp.org/docs.html#howto>), or other custom |
| 154 | serial port hardware which acts similar to standard serial port |
| 155 | hardware. If you only use the standard COM 1/2/3/4 ports, you can |
| 156 | say N here to save some memory. You can also say Y if you have an |
| 157 | "intelligent" multiport card such as Cyclades, Digiboards, etc. |
| 158 | |
Russell King | ec9f47c | 2005-06-27 11:12:54 +0100 | [diff] [blame] | 159 | # |
| 160 | # Multi-port serial cards |
| 161 | # |
| 162 | |
| 163 | config SERIAL_8250_FOURPORT |
| 164 | tristate "Support Fourport cards" |
| 165 | depends on SERIAL_8250 != n && ISA && SERIAL_8250_MANY_PORTS |
| 166 | help |
| 167 | Say Y here if you have an AST FourPort serial board. |
| 168 | |
| 169 | To compile this driver as a module, choose M here: the module |
| 170 | will be called 8250_fourport. |
| 171 | |
| 172 | config SERIAL_8250_ACCENT |
| 173 | tristate "Support Accent cards" |
| 174 | depends on SERIAL_8250 != n && ISA && SERIAL_8250_MANY_PORTS |
| 175 | help |
| 176 | Say Y here if you have an Accent Async serial board. |
| 177 | |
| 178 | To compile this driver as a module, choose M here: the module |
| 179 | will be called 8250_accent. |
| 180 | |
Russell King | ec9f47c | 2005-06-27 11:12:54 +0100 | [diff] [blame] | 181 | config SERIAL_8250_BOCA |
| 182 | tristate "Support Boca cards" |
| 183 | depends on SERIAL_8250 != n && ISA && SERIAL_8250_MANY_PORTS |
| 184 | help |
| 185 | Say Y here if you have a Boca serial board. Please read the Boca |
Matt LaPlante | 0950960 | 2006-10-03 22:31:37 +0200 | [diff] [blame] | 186 | mini-HOWTO, available from <http://www.tldp.org/docs.html#howto> |
Russell King | ec9f47c | 2005-06-27 11:12:54 +0100 | [diff] [blame] | 187 | |
| 188 | To compile this driver as a module, choose M here: the module |
| 189 | will be called 8250_boca. |
| 190 | |
Paul B Schroeder | e0980da | 2006-12-06 20:37:03 -0800 | [diff] [blame] | 191 | config SERIAL_8250_EXAR_ST16C554 |
| 192 | tristate "Support Exar ST16C554/554D Quad UART" |
| 193 | depends on SERIAL_8250 != n && ISA && SERIAL_8250_MANY_PORTS |
| 194 | help |
| 195 | The Uplogix Envoy TU301 uses this Exar Quad UART. If you are |
| 196 | tinkering with your Envoy TU301, or have a machine with this UART, |
| 197 | say Y here. |
| 198 | |
| 199 | To compile this driver as a module, choose M here: the module |
| 200 | will be called 8250_exar_st16c554. |
| 201 | |
Russell King | ec9f47c | 2005-06-27 11:12:54 +0100 | [diff] [blame] | 202 | config SERIAL_8250_HUB6 |
| 203 | tristate "Support Hub6 cards" |
| 204 | depends on SERIAL_8250 != n && ISA && SERIAL_8250_MANY_PORTS |
| 205 | help |
| 206 | Say Y here if you have a HUB6 serial board. |
| 207 | |
| 208 | To compile this driver as a module, choose M here: the module |
| 209 | will be called 8250_hub6. |
| 210 | |
Don Mullis | bf4735a | 2006-12-10 02:18:37 -0800 | [diff] [blame] | 211 | config SERIAL_8250_SHARE_IRQ |
| 212 | bool "Support for sharing serial interrupts" |
| 213 | depends on SERIAL_8250_EXTENDED |
| 214 | help |
| 215 | Some serial boards have hardware support which allows multiple dumb |
| 216 | serial ports on the same board to share a single IRQ. To enable |
| 217 | support for this in the serial driver, say Y here. |
| 218 | |
| 219 | config SERIAL_8250_DETECT_IRQ |
| 220 | bool "Autodetect IRQ on standard ports (unsafe)" |
| 221 | depends on SERIAL_8250_EXTENDED |
| 222 | help |
| 223 | Say Y here if you want the kernel to try to guess which IRQ |
| 224 | to use for your serial port. |
| 225 | |
| 226 | This is considered unsafe; it is far better to configure the IRQ in |
| 227 | a boot script using the setserial command. |
| 228 | |
| 229 | If unsure, say N. |
| 230 | |
| 231 | config SERIAL_8250_RSA |
| 232 | bool "Support RSA serial ports" |
| 233 | depends on SERIAL_8250_EXTENDED |
| 234 | help |
| 235 | ::: To be written ::: |
| 236 | |
Russell King | ec9f47c | 2005-06-27 11:12:54 +0100 | [diff] [blame] | 237 | config SERIAL_8250_MCA |
| 238 | tristate "Support 8250-type ports on MCA buses" |
| 239 | depends on SERIAL_8250 != n && MCA |
| 240 | help |
| 241 | Say Y here if you have a MCA serial ports. |
| 242 | |
| 243 | To compile this driver as a module, choose M here: the module |
| 244 | will be called 8250_mca. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 245 | |
| 246 | config SERIAL_8250_ACORN |
| 247 | tristate "Acorn expansion card serial port support" |
Russell King | ec9f47c | 2005-06-27 11:12:54 +0100 | [diff] [blame] | 248 | depends on ARCH_ACORN && SERIAL_8250 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 249 | help |
| 250 | If you have an Atomwide Serial card or Serial Port card for an Acorn |
| 251 | system, say Y to this option. The driver can handle 1, 2, or 3 port |
| 252 | cards. If unsure, say N. |
| 253 | |
Pantelis Antoniou | 21c614a | 2005-11-06 09:07:03 +0000 | [diff] [blame] | 254 | config SERIAL_8250_AU1X00 |
| 255 | bool "AU1X00 serial port support" |
| 256 | depends on SERIAL_8250 != n && SOC_AU1X00 |
| 257 | help |
| 258 | If you have an Au1x00 board and want to use the serial port, say Y |
| 259 | to this option. The driver can handle 1 or 2 serial ports. |
| 260 | If unsure, say N. |
| 261 | |
Thomas Koeller | bd71c18 | 2007-05-06 14:48:47 -0700 | [diff] [blame] | 262 | config SERIAL_8250_RM9K |
| 263 | bool "Support for MIPS RM9xxx integrated serial port" |
| 264 | depends on SERIAL_8250 != n && SERIAL_RM9000 |
| 265 | select SERIAL_8250_SHARE_IRQ |
| 266 | help |
| 267 | Selecting this option will add support for the integrated serial |
| 268 | port hardware found on MIPS RM9122 and similar processors. |
| 269 | If unsure, say N. |
| 270 | |
Russell King | ec9f47c | 2005-06-27 11:12:54 +0100 | [diff] [blame] | 271 | comment "Non-8250 serial port support" |
| 272 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 273 | config SERIAL_AMBA_PL010 |
| 274 | tristate "ARM AMBA PL010 serial port support" |
Al Viro | 84b6a23 | 2005-08-23 22:46:16 +0100 | [diff] [blame] | 275 | depends on ARM_AMBA && (BROKEN || !ARCH_VERSATILE) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 276 | select SERIAL_CORE |
| 277 | help |
| 278 | This selects the ARM(R) AMBA(R) PrimeCell PL010 UART. If you have |
Lennert Buytenhek | 0058471 | 2007-02-05 16:10:22 -0800 | [diff] [blame] | 279 | an Integrator/AP or Integrator/PP2 platform, or if you have a |
| 280 | Cirrus Logic EP93xx CPU, say Y or M here. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 281 | |
| 282 | If unsure, say N. |
| 283 | |
| 284 | config SERIAL_AMBA_PL010_CONSOLE |
| 285 | bool "Support for console on AMBA serial port" |
| 286 | depends on SERIAL_AMBA_PL010=y |
| 287 | select SERIAL_CORE_CONSOLE |
| 288 | ---help--- |
| 289 | Say Y here if you wish to use an AMBA PrimeCell UART as the system |
| 290 | console (the system console is the device which receives all kernel |
| 291 | messages and warnings and which allows logins in single user mode). |
| 292 | |
| 293 | Even if you say Y here, the currently visible framebuffer console |
| 294 | (/dev/tty0) will still be used as the system console by default, but |
| 295 | you can alter that using a kernel command line option such as |
| 296 | "console=ttyAM0". (Try "man bootparam" or see the documentation of |
| 297 | your boot loader (lilo or loadlin) about how to pass options to the |
| 298 | kernel at boot time.) |
| 299 | |
| 300 | config SERIAL_AMBA_PL011 |
| 301 | tristate "ARM AMBA PL011 serial port support" |
| 302 | depends on ARM_AMBA |
| 303 | select SERIAL_CORE |
| 304 | help |
| 305 | This selects the ARM(R) AMBA(R) PrimeCell PL011 UART. If you have |
| 306 | an Integrator/PP2, Integrator/CP or Versatile platform, say Y or M |
| 307 | here. |
| 308 | |
| 309 | If unsure, say N. |
| 310 | |
| 311 | config SERIAL_AMBA_PL011_CONSOLE |
| 312 | bool "Support for console on AMBA serial port" |
| 313 | depends on SERIAL_AMBA_PL011=y |
| 314 | select SERIAL_CORE_CONSOLE |
| 315 | ---help--- |
| 316 | Say Y here if you wish to use an AMBA PrimeCell UART as the system |
| 317 | console (the system console is the device which receives all kernel |
| 318 | messages and warnings and which allows logins in single user mode). |
| 319 | |
| 320 | Even if you say Y here, the currently visible framebuffer console |
| 321 | (/dev/tty0) will still be used as the system console by default, but |
| 322 | you can alter that using a kernel command line option such as |
Peter Korsgaard | b22b4cd | 2006-09-29 02:00:23 -0700 | [diff] [blame] | 323 | "console=ttyAMA0". (Try "man bootparam" or see the documentation of |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 324 | your boot loader (lilo or loadlin) about how to pass options to the |
| 325 | kernel at boot time.) |
| 326 | |
Haavard Skinnemoen | 749c4e6 | 2006-10-04 16:02:02 +0200 | [diff] [blame] | 327 | config SERIAL_ATMEL |
| 328 | bool "AT91 / AT32 on-chip serial port support" |
Haavard Skinnemoen | acca9b8 | 2006-10-04 16:02:09 +0200 | [diff] [blame] | 329 | depends on (ARM && ARCH_AT91) || AVR32 |
Andrew Victor | 1e6c9c2 | 2006-01-10 16:59:27 +0000 | [diff] [blame] | 330 | select SERIAL_CORE |
| 331 | help |
Andrew Victor | afefc41 | 2006-06-19 19:53:19 +0100 | [diff] [blame] | 332 | This enables the driver for the on-chip UARTs of the Atmel |
Haavard Skinnemoen | acca9b8 | 2006-10-04 16:02:09 +0200 | [diff] [blame] | 333 | AT91 and AT32 processors. |
Andrew Victor | 1e6c9c2 | 2006-01-10 16:59:27 +0000 | [diff] [blame] | 334 | |
Haavard Skinnemoen | 749c4e6 | 2006-10-04 16:02:02 +0200 | [diff] [blame] | 335 | config SERIAL_ATMEL_CONSOLE |
| 336 | bool "Support for console on AT91 / AT32 serial port" |
| 337 | depends on SERIAL_ATMEL=y |
Andrew Victor | 1e6c9c2 | 2006-01-10 16:59:27 +0000 | [diff] [blame] | 338 | select SERIAL_CORE_CONSOLE |
| 339 | help |
Haavard Skinnemoen | acca9b8 | 2006-10-04 16:02:09 +0200 | [diff] [blame] | 340 | Say Y here if you wish to use an on-chip UART on a Atmel |
| 341 | AT91 or AT32 processor as the system console (the system |
| 342 | console is the device which receives all kernel messages and |
| 343 | warnings and which allows logins in single user mode). |
Andrew Victor | 1e6c9c2 | 2006-01-10 16:59:27 +0000 | [diff] [blame] | 344 | |
Haavard Skinnemoen | 749c4e6 | 2006-10-04 16:02:02 +0200 | [diff] [blame] | 345 | config SERIAL_ATMEL_TTYAT |
Haavard Skinnemoen | acca9b8 | 2006-10-04 16:02:09 +0200 | [diff] [blame] | 346 | bool "Install as device ttyATn instead of ttySn" |
Haavard Skinnemoen | 749c4e6 | 2006-10-04 16:02:02 +0200 | [diff] [blame] | 347 | depends on SERIAL_ATMEL=y |
Andrew Victor | 1e6c9c2 | 2006-01-10 16:59:27 +0000 | [diff] [blame] | 348 | help |
Haavard Skinnemoen | acca9b8 | 2006-10-04 16:02:09 +0200 | [diff] [blame] | 349 | Say Y here if you wish to have the internal AT91 / AT32 UARTs |
| 350 | appear as /dev/ttyATn (major 204, minor starting at 154) |
| 351 | instead of the normal /dev/ttySn (major 4, minor starting at |
| 352 | 64). This is necessary if you also want other UARTs, such as |
| 353 | external 8250/16C550 compatible UARTs. |
Andrew Victor | 1e6c9c2 | 2006-01-10 16:59:27 +0000 | [diff] [blame] | 354 | The ttySn nodes are legally reserved for the 8250 serial driver |
| 355 | but are often misused by other serial drivers. |
| 356 | |
| 357 | To use this, you should create suitable ttyATn device nodes in |
| 358 | /dev/, and pass "console=ttyATn" to the kernel. |
| 359 | |
| 360 | Say Y if you have an external 8250/16C550 UART. If unsure, say N. |
| 361 | |
Andrew Victor | 2c7ee6a | 2007-05-11 21:37:25 +0100 | [diff] [blame] | 362 | config SERIAL_KS8695 |
| 363 | bool "Micrel KS8695 (Centaur) serial port support" |
| 364 | depends on ARCH_KS8695 |
| 365 | select SERIAL_CORE |
| 366 | help |
| 367 | This selects the Micrel Centaur KS8695 UART. Say Y here. |
| 368 | |
| 369 | config SERIAL_KS8695_CONSOLE |
| 370 | bool "Support for console on KS8695 (Centaur) serial port" |
| 371 | depends on SERIAL_KS8695=y |
| 372 | select SERIAL_CORE_CONSOLE |
| 373 | help |
| 374 | Say Y here if you wish to use a KS8695 (Centaur) UART as the |
| 375 | system console (the system console is the device which |
| 376 | receives all kernel messages and warnings and which allows |
| 377 | logins in single user mode). |
| 378 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 379 | config SERIAL_CLPS711X |
| 380 | tristate "CLPS711X serial port support" |
| 381 | depends on ARM && ARCH_CLPS711X |
| 382 | select SERIAL_CORE |
| 383 | help |
| 384 | ::: To be written ::: |
| 385 | |
| 386 | config SERIAL_CLPS711X_CONSOLE |
| 387 | bool "Support for console on CLPS711X serial port" |
| 388 | depends on SERIAL_CLPS711X=y |
| 389 | select SERIAL_CORE_CONSOLE |
| 390 | help |
| 391 | Even if you say Y here, the currently visible virtual console |
| 392 | (/dev/tty0) will still be used as the system console by default, but |
| 393 | you can alter that using a kernel command line option such as |
| 394 | "console=ttyCL1". (Try "man bootparam" or see the documentation of |
| 395 | your boot loader (lilo or loadlin) about how to pass options to the |
| 396 | kernel at boot time.) |
| 397 | |
| 398 | config SERIAL_S3C2410 |
Ben Dooks | 73e55cb | 2006-06-24 21:21:32 +0100 | [diff] [blame] | 399 | tristate "Samsung S3C2410/S3C2440/S3C2442/S3C2412 Serial port support" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 400 | depends on ARM && ARCH_S3C2410 |
| 401 | select SERIAL_CORE |
| 402 | help |
Ben Dooks | 73e55cb | 2006-06-24 21:21:32 +0100 | [diff] [blame] | 403 | Support for the on-chip UARTs on the Samsung S3C24XX series CPUs, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 404 | providing /dev/ttySAC0, 1 and 2 (note, some machines may not |
| 405 | provide all of these ports, depending on how the serial port |
| 406 | pins are configured. |
| 407 | |
Ben Dooks | 73e55cb | 2006-06-24 21:21:32 +0100 | [diff] [blame] | 408 | Currently this driver supports the UARTS on the S3C2410, S3C2440, |
| 409 | S3C2442, S3C2412 and S3C2413 CPUs. |
| 410 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 411 | config SERIAL_S3C2410_CONSOLE |
| 412 | bool "Support for console on S3C2410 serial port" |
| 413 | depends on SERIAL_S3C2410=y |
| 414 | select SERIAL_CORE_CONSOLE |
| 415 | help |
Ben Dooks | 73e55cb | 2006-06-24 21:21:32 +0100 | [diff] [blame] | 416 | Allow selection of the S3C24XX on-board serial ports for use as |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 417 | an virtual console. |
| 418 | |
| 419 | Even if you say Y here, the currently visible virtual console |
| 420 | (/dev/tty0) will still be used as the system console by default, but |
| 421 | you can alter that using a kernel command line option such as |
| 422 | "console=ttySACx". (Try "man bootparam" or see the documentation of |
| 423 | your boot loader about how to pass options to the kernel at |
| 424 | boot time.) |
| 425 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 426 | config SERIAL_DZ |
| 427 | bool "DECstation DZ serial driver" |
Ralf Baechle | 875d43e | 2005-09-03 15:56:16 -0700 | [diff] [blame] | 428 | depends on MACH_DECSTATION && 32BIT |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 429 | select SERIAL_CORE |
| 430 | help |
| 431 | DZ11-family serial controllers for VAXstations, including the |
| 432 | DC7085, M7814, and M7819. |
| 433 | |
| 434 | config SERIAL_DZ_CONSOLE |
| 435 | bool "Support console on DECstation DZ serial driver" |
| 436 | depends on SERIAL_DZ=y |
| 437 | select SERIAL_CORE_CONSOLE |
| 438 | help |
| 439 | If you say Y here, it will be possible to use a serial port as the |
| 440 | system console (the system console is the device which receives all |
| 441 | kernel messages and warnings and which allows logins in single user |
| 442 | mode). Note that the firmware uses ttyS0 as the serial console on |
| 443 | the Maxine and ttyS2 on the others. |
| 444 | |
| 445 | If unsure, say Y. |
| 446 | |
| 447 | config SERIAL_21285 |
| 448 | tristate "DC21285 serial port support" |
| 449 | depends on ARM && FOOTBRIDGE |
| 450 | select SERIAL_CORE |
| 451 | help |
| 452 | If you have a machine based on a 21285 (Footbridge) StrongARM(R)/ |
| 453 | PCI bridge you can enable its onboard serial port by enabling this |
| 454 | option. |
| 455 | |
| 456 | config SERIAL_21285_CONSOLE |
| 457 | bool "Console on DC21285 serial port" |
| 458 | depends on SERIAL_21285=y |
| 459 | select SERIAL_CORE_CONSOLE |
| 460 | help |
| 461 | If you have enabled the serial port on the 21285 footbridge you can |
| 462 | make it the console by answering Y to this option. |
| 463 | |
| 464 | Even if you say Y here, the currently visible virtual console |
| 465 | (/dev/tty0) will still be used as the system console by default, but |
| 466 | you can alter that using a kernel command line option such as |
| 467 | "console=ttyFB". (Try "man bootparam" or see the documentation of |
| 468 | your boot loader (lilo or loadlin) about how to pass options to the |
| 469 | kernel at boot time.) |
| 470 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 471 | config SERIAL_MPSC |
| 472 | bool "Marvell MPSC serial port support" |
| 473 | depends on PPC32 && MV64X60 |
| 474 | select SERIAL_CORE |
| 475 | help |
| 476 | Say Y here if you want to use the Marvell MPSC serial controller. |
| 477 | |
| 478 | config SERIAL_MPSC_CONSOLE |
| 479 | bool "Support for console on Marvell MPSC serial port" |
| 480 | depends on SERIAL_MPSC |
| 481 | select SERIAL_CORE_CONSOLE |
| 482 | help |
| 483 | Say Y here if you want to support a serial console on a Marvell MPSC. |
| 484 | |
| 485 | config SERIAL_PXA |
| 486 | bool "PXA serial port support" |
| 487 | depends on ARM && ARCH_PXA |
| 488 | select SERIAL_CORE |
| 489 | help |
| 490 | If you have a machine based on an Intel XScale PXA2xx CPU you |
| 491 | can enable its onboard serial ports by enabling this option. |
| 492 | |
| 493 | config SERIAL_PXA_CONSOLE |
| 494 | bool "Console on PXA serial port" |
| 495 | depends on SERIAL_PXA |
| 496 | select SERIAL_CORE_CONSOLE |
| 497 | help |
| 498 | If you have enabled the serial port on the Intel XScale PXA |
| 499 | CPU you can make it the console by answering Y to this option. |
| 500 | |
| 501 | Even if you say Y here, the currently visible virtual console |
| 502 | (/dev/tty0) will still be used as the system console by default, but |
| 503 | you can alter that using a kernel command line option such as |
| 504 | "console=ttySA0". (Try "man bootparam" or see the documentation of |
| 505 | your boot loader (lilo or loadlin) about how to pass options to the |
| 506 | kernel at boot time.) |
| 507 | |
| 508 | config SERIAL_SA1100 |
| 509 | bool "SA1100 serial port support" |
| 510 | depends on ARM && ARCH_SA1100 |
| 511 | select SERIAL_CORE |
| 512 | help |
| 513 | If you have a machine based on a SA1100/SA1110 StrongARM(R) CPU you |
| 514 | can enable its onboard serial port by enabling this option. |
| 515 | Please read <file:Documentation/arm/SA1100/serial_UART> for further |
| 516 | info. |
| 517 | |
| 518 | config SERIAL_SA1100_CONSOLE |
| 519 | bool "Console on SA1100 serial port" |
| 520 | depends on SERIAL_SA1100 |
| 521 | select SERIAL_CORE_CONSOLE |
| 522 | help |
| 523 | If you have enabled the serial port on the SA1100/SA1110 StrongARM |
| 524 | CPU you can make it the console by answering Y to this option. |
| 525 | |
| 526 | Even if you say Y here, the currently visible virtual console |
| 527 | (/dev/tty0) will still be used as the system console by default, but |
| 528 | you can alter that using a kernel command line option such as |
| 529 | "console=ttySA0". (Try "man bootparam" or see the documentation of |
| 530 | your boot loader (lilo or loadlin) about how to pass options to the |
| 531 | kernel at boot time.) |
| 532 | |
Bryan Wu | 194de56 | 2007-05-06 14:50:30 -0700 | [diff] [blame] | 533 | config SERIAL_BFIN |
| 534 | tristate "Blackfin serial port support" |
| 535 | depends on BFIN |
| 536 | select SERIAL_CORE |
| 537 | select SERIAL_BFIN_UART0 if (BF531 || BF532 || BF533 || BF561) |
| 538 | help |
| 539 | Add support for the built-in UARTs on the Blackfin. |
| 540 | |
| 541 | To compile this driver as a module, choose M here: the |
| 542 | module will be called bfin_5xx. |
| 543 | |
| 544 | config SERIAL_BFIN_CONSOLE |
| 545 | bool "Console on Blackfin serial port" |
| 546 | depends on SERIAL_BFIN |
| 547 | select SERIAL_CORE_CONSOLE |
| 548 | |
| 549 | choice |
| 550 | prompt "UART Mode" |
| 551 | depends on SERIAL_BFIN |
| 552 | default SERIAL_BFIN_DMA |
| 553 | help |
| 554 | This driver supports the built-in serial ports of the Blackfin family |
| 555 | of CPUs |
| 556 | |
| 557 | config SERIAL_BFIN_DMA |
| 558 | bool "DMA mode" |
| 559 | depends on DMA_UNCACHED_1M |
| 560 | help |
| 561 | This driver works under DMA mode. If this option is selected, the |
| 562 | blackfin simple dma driver is also enabled. |
| 563 | |
| 564 | config SERIAL_BFIN_PIO |
| 565 | bool "PIO mode" |
| 566 | help |
| 567 | This driver works under PIO mode. |
| 568 | |
| 569 | endchoice |
| 570 | |
| 571 | config SERIAL_BFIN_UART0 |
| 572 | bool "Enable UART0" |
| 573 | depends on SERIAL_BFIN |
| 574 | help |
| 575 | Enable UART0 |
| 576 | |
| 577 | config BFIN_UART0_CTSRTS |
| 578 | bool "Enable UART0 hardware flow control" |
| 579 | depends on SERIAL_BFIN_UART0 |
| 580 | help |
| 581 | Enable hardware flow control in the driver. Using GPIO emulate the CTS/RTS |
| 582 | signal. |
| 583 | |
| 584 | config UART0_CTS_PIN |
| 585 | int "UART0 CTS pin" |
| 586 | depends on BFIN_UART0_CTSRTS |
| 587 | default 23 |
| 588 | help |
| 589 | The default pin is GPIO_GP7. |
| 590 | Refer to ./include/asm-blackfin/gpio.h to see the GPIO map. |
| 591 | |
| 592 | config UART0_RTS_PIN |
| 593 | int "UART0 RTS pin" |
| 594 | depends on BFIN_UART0_CTSRTS |
| 595 | default 22 |
| 596 | help |
| 597 | The default pin is GPIO_GP6. |
| 598 | Refer to ./include/asm-blackfin/gpio.h to see the GPIO map. |
| 599 | |
| 600 | config SERIAL_BFIN_UART1 |
| 601 | bool "Enable UART1" |
| 602 | depends on SERIAL_BFIN && (BF534 || BF536 || BF537) |
| 603 | help |
| 604 | Enable UART1 |
| 605 | |
| 606 | config BFIN_UART1_CTSRTS |
| 607 | bool "Enable UART1 hardware flow control" |
| 608 | depends on SERIAL_BFIN_UART1 |
| 609 | help |
| 610 | Enable hardware flow control in the driver. Using GPIO emulate the CTS/RTS |
| 611 | signal. |
| 612 | |
| 613 | config UART1_CTS_PIN |
| 614 | int "UART1 CTS pin" |
| 615 | depends on BFIN_UART1_CTSRTS |
| 616 | default -1 |
| 617 | help |
| 618 | Refer to ./include/asm-blackfin/gpio.h to see the GPIO map. |
| 619 | |
| 620 | config UART1_RTS_PIN |
| 621 | int "UART1 RTS pin" |
| 622 | depends on BFIN_UART1_CTSRTS |
| 623 | default -1 |
| 624 | help |
| 625 | Refer to ./include/asm-blackfin/gpio.h to see the GPIO map. |
| 626 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 627 | config SERIAL_IMX |
| 628 | bool "IMX serial port support" |
| 629 | depends on ARM && ARCH_IMX |
| 630 | select SERIAL_CORE |
| 631 | help |
| 632 | If you have a machine based on a Motorola IMX CPU you |
| 633 | can enable its onboard serial port by enabling this option. |
| 634 | |
| 635 | config SERIAL_IMX_CONSOLE |
| 636 | bool "Console on IMX serial port" |
| 637 | depends on SERIAL_IMX |
| 638 | select SERIAL_CORE_CONSOLE |
| 639 | help |
| 640 | If you have enabled the serial port on the Motorola IMX |
| 641 | CPU you can make it the console by answering Y to this option. |
| 642 | |
| 643 | Even if you say Y here, the currently visible virtual console |
| 644 | (/dev/tty0) will still be used as the system console by default, but |
| 645 | you can alter that using a kernel command line option such as |
| 646 | "console=ttySA0". (Try "man bootparam" or see the documentation of |
| 647 | your boot loader (lilo or loadlin) about how to pass options to the |
| 648 | kernel at boot time.) |
| 649 | |
Peter Korsgaard | 238b872 | 2006-12-06 20:35:17 -0800 | [diff] [blame] | 650 | config SERIAL_UARTLITE |
| 651 | tristate "Xilinx uartlite serial port support" |
| 652 | depends on PPC32 |
| 653 | select SERIAL_CORE |
| 654 | help |
| 655 | Say Y here if you want to use the Xilinx uartlite serial controller. |
| 656 | |
| 657 | To compile this driver as a module, choose M here: the |
| 658 | module will be called uartlite.ko. |
| 659 | |
| 660 | config SERIAL_UARTLITE_CONSOLE |
| 661 | bool "Support for console on Xilinx uartlite serial port" |
| 662 | depends on SERIAL_UARTLITE=y |
| 663 | select SERIAL_CORE_CONSOLE |
| 664 | help |
| 665 | Say Y here if you wish to use a Xilinx uartlite as the system |
| 666 | console (the system console is the device which receives all kernel |
| 667 | messages and warnings and which allows logins in single user mode). |
| 668 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 669 | config SERIAL_SUNCORE |
| 670 | bool |
Adrian Bunk | 0b57ee9 | 2005-12-22 21:03:47 -0800 | [diff] [blame] | 671 | depends on SPARC |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 672 | select SERIAL_CORE |
| 673 | select SERIAL_CORE_CONSOLE |
| 674 | default y |
| 675 | |
| 676 | config SERIAL_SUNZILOG |
| 677 | tristate "Sun Zilog8530 serial support" |
Adrian Bunk | 0b57ee9 | 2005-12-22 21:03:47 -0800 | [diff] [blame] | 678 | depends on SPARC |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 679 | help |
| 680 | This driver supports the Zilog8530 serial ports found on many Sparc |
| 681 | systems. Say Y or M if you want to be able to these serial ports. |
| 682 | |
| 683 | config SERIAL_SUNZILOG_CONSOLE |
| 684 | bool "Console on Sun Zilog8530 serial port" |
| 685 | depends on SERIAL_SUNZILOG=y |
| 686 | help |
| 687 | If you would like to be able to use the Zilog8530 serial port |
| 688 | on your Sparc system as the console, you can do so by answering |
| 689 | Y to this option. |
| 690 | |
| 691 | config SERIAL_SUNSU |
| 692 | tristate "Sun SU serial support" |
Adrian Bunk | 0b57ee9 | 2005-12-22 21:03:47 -0800 | [diff] [blame] | 693 | depends on SPARC && PCI |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 694 | help |
| 695 | This driver supports the 8250 serial ports that run the keyboard and |
| 696 | mouse on (PCI) UltraSPARC systems. Say Y or M if you want to be able |
| 697 | to these serial ports. |
| 698 | |
| 699 | config SERIAL_SUNSU_CONSOLE |
| 700 | bool "Console on Sun SU serial port" |
| 701 | depends on SERIAL_SUNSU=y |
| 702 | help |
| 703 | If you would like to be able to use the SU serial port |
| 704 | on your Sparc system as the console, you can do so by answering |
| 705 | Y to this option. |
| 706 | |
| 707 | config SERIAL_MUX |
| 708 | tristate "Serial MUX support" |
Matthew Wilcox | 305f516 | 2005-11-18 16:17:50 -0500 | [diff] [blame] | 709 | depends on GSC |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 710 | select SERIAL_CORE |
| 711 | default y |
| 712 | ---help--- |
| 713 | Saying Y here will enable the hardware MUX serial driver for |
Carlos O'Donell | e45da35 | 2006-09-16 14:35:51 -0400 | [diff] [blame] | 714 | the Nova, K class systems and D class with a 'remote control card'. |
| 715 | The hardware MUX is not 8250/16550 compatible therefore the |
| 716 | /dev/ttyB0 device is shared between the Serial MUX and the PDC |
| 717 | software console. The following steps need to be completed to use |
| 718 | the Serial MUX: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 719 | |
| 720 | 1. create the device entry (mknod /dev/ttyB0 c 11 0) |
| 721 | 2. Edit the /etc/inittab to start a getty listening on /dev/ttyB0 |
| 722 | 3. Add device ttyB0 to /etc/securetty (if you want to log on as |
| 723 | root on this console.) |
| 724 | 4. Change the kernel command console parameter to: console=ttyB0 |
| 725 | |
| 726 | config SERIAL_MUX_CONSOLE |
| 727 | bool "Support for console on serial MUX" |
| 728 | depends on SERIAL_MUX |
| 729 | select SERIAL_CORE_CONSOLE |
| 730 | default y |
| 731 | |
| 732 | config PDC_CONSOLE |
| 733 | bool "PDC software console support" |
| 734 | depends on PARISC && !SERIAL_MUX && VT |
| 735 | default n |
| 736 | help |
| 737 | Saying Y here will enable the software based PDC console to be |
| 738 | used as the system console. This is useful for machines in |
| 739 | which the hardware based console has not been written yet. The |
| 740 | following steps must be competed to use the PDC console: |
| 741 | |
| 742 | 1. create the device entry (mknod /dev/ttyB0 c 11 0) |
| 743 | 2. Edit the /etc/inittab to start a getty listening on /dev/ttyB0 |
| 744 | 3. Add device ttyB0 to /etc/securetty (if you want to log on as |
| 745 | root on this console.) |
| 746 | 4. Change the kernel command console parameter to: console=ttyB0 |
| 747 | |
| 748 | config SERIAL_SUNSAB |
| 749 | tristate "Sun Siemens SAB82532 serial support" |
Adrian Bunk | 0b57ee9 | 2005-12-22 21:03:47 -0800 | [diff] [blame] | 750 | depends on SPARC && PCI |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 751 | help |
| 752 | This driver supports the Siemens SAB82532 DUSCC serial ports on newer |
| 753 | (PCI) UltraSPARC systems. Say Y or M if you want to be able to these |
| 754 | serial ports. |
| 755 | |
| 756 | config SERIAL_SUNSAB_CONSOLE |
| 757 | bool "Console on Sun Siemens SAB82532 serial port" |
| 758 | depends on SERIAL_SUNSAB=y |
| 759 | help |
| 760 | If you would like to be able to use the SAB82532 serial port |
| 761 | on your Sparc system as the console, you can do so by answering |
| 762 | Y to this option. |
| 763 | |
David S. Miller | 02fd473 | 2006-02-11 02:25:21 -0800 | [diff] [blame] | 764 | config SERIAL_SUNHV |
| 765 | bool "Sun4v Hypervisor Console support" |
| 766 | depends on SPARC64 |
| 767 | help |
| 768 | This driver supports the console device found on SUN4V Sparc |
| 769 | systems. Say Y if you want to be able to use this device. |
| 770 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 771 | config SERIAL_IP22_ZILOG |
| 772 | tristate "IP22 Zilog8530 serial support" |
| 773 | depends on SGI_IP22 |
| 774 | select SERIAL_CORE |
| 775 | help |
| 776 | This driver supports the Zilog8530 serial ports found on SGI IP22 |
| 777 | systems. Say Y or M if you want to be able to these serial ports. |
| 778 | |
| 779 | config SERIAL_IP22_ZILOG_CONSOLE |
| 780 | bool "Console on IP22 Zilog8530 serial port" |
| 781 | depends on SERIAL_IP22_ZILOG=y |
| 782 | select SERIAL_CORE_CONSOLE |
| 783 | |
| 784 | config V850E_UART |
| 785 | bool "NEC V850E on-chip UART support" |
| 786 | depends on V850E_MA1 || V850E_ME2 || V850E_TEG || V850E2_ANNA || V850E_AS85EP1 |
| 787 | select SERIAL_CORE |
| 788 | default y |
| 789 | |
| 790 | config V850E_UARTB |
| 791 | bool |
Robert P. J. Day | bef1f40 | 2006-12-12 20:04:19 +0100 | [diff] [blame] | 792 | depends on V850E_UART && V850E_ME2 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 793 | default y |
| 794 | |
| 795 | config V850E_UART_CONSOLE |
| 796 | bool "Use NEC V850E on-chip UART for console" |
| 797 | depends on V850E_UART |
| 798 | select SERIAL_CORE_CONSOLE |
| 799 | |
| 800 | config SERIAL_SH_SCI |
Paul Mundt | ecd9561 | 2006-09-27 17:32:30 +0900 | [diff] [blame] | 801 | tristate "SuperH SCI(F) serial port support" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 802 | depends on SUPERH || H8300 |
| 803 | select SERIAL_CORE |
| 804 | |
Paul Mundt | ecd9561 | 2006-09-27 17:32:30 +0900 | [diff] [blame] | 805 | config SERIAL_SH_SCI_NR_UARTS |
| 806 | int "Maximum number of SCI(F) serial ports" |
| 807 | depends on SERIAL_SH_SCI |
| 808 | default "2" |
| 809 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 810 | config SERIAL_SH_SCI_CONSOLE |
Paul Mundt | ecd9561 | 2006-09-27 17:32:30 +0900 | [diff] [blame] | 811 | bool "Support for console on SuperH SCI(F)" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 812 | depends on SERIAL_SH_SCI=y |
| 813 | select SERIAL_CORE_CONSOLE |
| 814 | |
Vitaly Wool | de8211b | 2007-02-14 00:33:09 -0800 | [diff] [blame] | 815 | config SERIAL_PNX8XXX |
| 816 | bool "Enable PNX8XXX SoCs' UART Support" |
| 817 | depends on MIPS && SOC_PNX8550 |
| 818 | select SERIAL_CORE |
| 819 | help |
| 820 | If you have a MIPS-based Philips SoC such as PNX8550 or PNX8330 |
| 821 | and you want to use serial ports, say Y. Otherwise, say N. |
| 822 | |
| 823 | config SERIAL_PNX8XXX_CONSOLE |
| 824 | bool "Enable PNX8XX0 serial console" |
| 825 | depends on SERIAL_PNX8XXX |
| 826 | select SERIAL_CORE_CONSOLE |
| 827 | help |
| 828 | If you have a MIPS-based Philips SoC such as PNX8550 or PNX8330 |
| 829 | and you want to use serial console, say Y. Otherwise, say N. |
| 830 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 831 | config SERIAL_CORE |
| 832 | tristate |
| 833 | |
| 834 | config SERIAL_CORE_CONSOLE |
| 835 | bool |
| 836 | |
| 837 | config SERIAL_68328 |
| 838 | bool "68328 serial support" |
| 839 | depends on M68328 || M68EZ328 || M68VZ328 |
| 840 | help |
| 841 | This driver supports the built-in serial port of the Motorola 68328 |
Matt LaPlante | 0950960 | 2006-10-03 22:31:37 +0200 | [diff] [blame] | 842 | (standard, EZ and VZ varieties). |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 843 | |
| 844 | config SERIAL_68328_RTS_CTS |
| 845 | bool "Support RTS/CTS on 68328 serial port" |
| 846 | depends on SERIAL_68328 |
| 847 | |
| 848 | config SERIAL_COLDFIRE |
| 849 | bool "ColdFire serial support" |
| 850 | depends on COLDFIRE |
| 851 | help |
| 852 | This driver supports the built-in serial ports of the Motorola ColdFire |
| 853 | family of CPUs. |
| 854 | |
| 855 | config SERIAL_68360_SMC |
| 856 | bool "68360 SMC uart support" |
| 857 | depends on M68360 |
| 858 | help |
| 859 | This driver supports the SMC serial ports of the Motorola 68360 CPU. |
| 860 | |
| 861 | config SERIAL_68360_SCC |
| 862 | bool "68360 SCC uart support" |
| 863 | depends on M68360 |
| 864 | help |
| 865 | This driver supports the SCC serial ports of the Motorola 68360 CPU. |
| 866 | |
| 867 | config SERIAL_68360 |
| 868 | bool |
| 869 | depends on SERIAL_68360_SMC || SERIAL_68360_SCC |
| 870 | default y |
| 871 | |
| 872 | config SERIAL_PMACZILOG |
| 873 | tristate "PowerMac z85c30 ESCC support" |
| 874 | depends on PPC_OF && PPC_PMAC |
| 875 | select SERIAL_CORE |
| 876 | help |
| 877 | This driver supports the Zilog z85C30 serial ports found on |
| 878 | PowerMac machines. |
| 879 | Say Y or M if you want to be able to these serial ports. |
| 880 | |
| 881 | config SERIAL_PMACZILOG_CONSOLE |
| 882 | bool "Console on PowerMac z85c30 serial port" |
| 883 | depends on SERIAL_PMACZILOG=y |
| 884 | select SERIAL_CORE_CONSOLE |
| 885 | help |
| 886 | If you would like to be able to use the z85c30 serial port |
| 887 | on your PowerMac as the console, you can do so by answering |
| 888 | Y to this option. |
| 889 | |
| 890 | config SERIAL_LH7A40X |
| 891 | tristate "Sharp LH7A40X embedded UART support" |
| 892 | depends on ARM && ARCH_LH7A40X |
| 893 | select SERIAL_CORE |
| 894 | help |
| 895 | This enables support for the three on-board UARTs of the |
| 896 | Sharp LH7A40X series CPUs. Choose Y or M. |
| 897 | |
| 898 | config SERIAL_LH7A40X_CONSOLE |
| 899 | bool "Support for console on Sharp LH7A40X serial port" |
| 900 | depends on SERIAL_LH7A40X=y |
| 901 | select SERIAL_CORE_CONSOLE |
| 902 | help |
| 903 | Say Y here if you wish to use one of the serial ports as the |
| 904 | system console--the system console is the device which |
| 905 | receives all kernel messages and warnings and which allows |
| 906 | logins in single user mode. |
| 907 | |
| 908 | Even if you say Y here, the currently visible framebuffer console |
| 909 | (/dev/tty0) will still be used as the default system console, but |
| 910 | you can alter that using a kernel command line, for example |
| 911 | "console=ttyAM1". |
| 912 | |
| 913 | config SERIAL_CPM |
| 914 | tristate "CPM SCC/SMC serial port support" |
| 915 | depends on CPM2 || 8xx |
| 916 | select SERIAL_CORE |
| 917 | help |
| 918 | This driver supports the SCC and SMC serial ports on Motorola |
| 919 | embedded PowerPC that contain a CPM1 (8xx) or CPM2 (8xxx) |
| 920 | |
| 921 | config SERIAL_CPM_CONSOLE |
| 922 | bool "Support for console on CPM SCC/SMC serial port" |
| 923 | depends on SERIAL_CPM=y |
| 924 | select SERIAL_CORE_CONSOLE |
| 925 | help |
| 926 | Say Y here if you wish to use a SCC or SMC CPM UART as the system |
| 927 | console (the system console is the device which receives all kernel |
| 928 | messages and warnings and which allows logins in single user mode). |
| 929 | |
| 930 | Even if you say Y here, the currently visible framebuffer console |
| 931 | (/dev/tty0) will still be used as the system console by default, but |
| 932 | you can alter that using a kernel command line option such as |
| 933 | "console=ttyCPM0". (Try "man bootparam" or see the documentation of |
| 934 | your boot loader (lilo or loadlin) about how to pass options to the |
| 935 | kernel at boot time.) |
| 936 | |
| 937 | config SERIAL_CPM_SCC1 |
| 938 | bool "Support for SCC1 serial port" |
| 939 | depends on SERIAL_CPM=y |
| 940 | help |
Randy Dunlap | 74e8b51 | 2006-10-19 23:28:26 -0700 | [diff] [blame] | 941 | Select this option to use SCC1 as a serial port |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 942 | |
| 943 | config SERIAL_CPM_SCC2 |
| 944 | bool "Support for SCC2 serial port" |
| 945 | depends on SERIAL_CPM=y |
| 946 | help |
Randy Dunlap | 74e8b51 | 2006-10-19 23:28:26 -0700 | [diff] [blame] | 947 | Select this option to use SCC2 as a serial port |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 948 | |
| 949 | config SERIAL_CPM_SCC3 |
| 950 | bool "Support for SCC3 serial port" |
| 951 | depends on SERIAL_CPM=y |
| 952 | help |
Randy Dunlap | 74e8b51 | 2006-10-19 23:28:26 -0700 | [diff] [blame] | 953 | Select this option to use SCC3 as a serial port |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 954 | |
| 955 | config SERIAL_CPM_SCC4 |
| 956 | bool "Support for SCC4 serial port" |
| 957 | depends on SERIAL_CPM=y |
| 958 | help |
Randy Dunlap | 74e8b51 | 2006-10-19 23:28:26 -0700 | [diff] [blame] | 959 | Select this option to use SCC4 as a serial port |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 960 | |
| 961 | config SERIAL_CPM_SMC1 |
| 962 | bool "Support for SMC1 serial port" |
| 963 | depends on SERIAL_CPM=y |
| 964 | help |
Randy Dunlap | 74e8b51 | 2006-10-19 23:28:26 -0700 | [diff] [blame] | 965 | Select this option to use SMC1 as a serial port |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 966 | |
| 967 | config SERIAL_CPM_SMC2 |
| 968 | bool "Support for SMC2 serial port" |
| 969 | depends on SERIAL_CPM=y |
| 970 | help |
Randy Dunlap | 74e8b51 | 2006-10-19 23:28:26 -0700 | [diff] [blame] | 971 | Select this option to use SMC2 as a serial port |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 972 | |
| 973 | config SERIAL_SGI_L1_CONSOLE |
| 974 | bool "SGI Altix L1 serial console support" |
| 975 | depends on IA64_GENERIC || IA64_SGI_SN2 |
| 976 | select SERIAL_CORE |
| 977 | select SERIAL_CORE_CONSOLE |
| 978 | help |
| 979 | If you have an SGI Altix and you would like to use the system |
| 980 | controller serial port as your console (you want this!), |
| 981 | say Y. Otherwise, say N. |
| 982 | |
| 983 | config SERIAL_MPC52xx |
| 984 | tristate "Freescale MPC52xx family PSC serial support" |
| 985 | depends on PPC_MPC52xx |
| 986 | select SERIAL_CORE |
| 987 | help |
| 988 | This drivers support the MPC52xx PSC serial ports. If you would |
| 989 | like to use them, you must answer Y or M to this option. Not that |
| 990 | for use as console, it must be included in kernel and not as a |
| 991 | module. |
| 992 | |
| 993 | config SERIAL_MPC52xx_CONSOLE |
| 994 | bool "Console on a Freescale MPC52xx family PSC serial port" |
| 995 | depends on SERIAL_MPC52xx=y |
| 996 | select SERIAL_CORE_CONSOLE |
| 997 | help |
| 998 | Select this options if you'd like to use one of the PSC serial port |
| 999 | of the Freescale MPC52xx family as a console. |
| 1000 | |
| 1001 | config SERIAL_MPC52xx_CONSOLE_BAUD |
| 1002 | int "Freescale MPC52xx family PSC serial port baud" |
| 1003 | depends on SERIAL_MPC52xx_CONSOLE=y |
| 1004 | default "9600" |
| 1005 | help |
| 1006 | Select the MPC52xx console baud rate. |
| 1007 | This value is only used if the bootloader doesn't pass in the |
| 1008 | console baudrate |
| 1009 | |
| 1010 | config SERIAL_ICOM |
| 1011 | tristate "IBM Multiport Serial Adapter" |
Stephen Rothwell | 145d01e | 2005-06-21 17:15:52 -0700 | [diff] [blame] | 1012 | depends on PCI && (PPC_ISERIES || PPC_PSERIES) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1013 | select SERIAL_CORE |
maximilian attems | cb2fc53 | 2006-03-25 17:44:20 +0000 | [diff] [blame] | 1014 | select FW_LOADER |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1015 | help |
| 1016 | This driver is for a family of multiport serial adapters |
| 1017 | including 2 port RVX, 2 port internal modem, 4 port internal |
| 1018 | modem and a split 1 port RVX and 1 port internal modem. |
| 1019 | |
| 1020 | This driver can also be built as a module. If so, the module |
| 1021 | will be called icom. |
| 1022 | |
| 1023 | config SERIAL_M32R_SIO |
| 1024 | bool "M32R SIO I/F" |
| 1025 | depends on M32R |
| 1026 | default y |
| 1027 | select SERIAL_CORE |
| 1028 | help |
| 1029 | Say Y here if you want to use the M32R serial controller. |
| 1030 | |
| 1031 | config SERIAL_M32R_SIO_CONSOLE |
| 1032 | bool "use SIO console" |
| 1033 | depends on SERIAL_M32R_SIO=y |
| 1034 | select SERIAL_CORE_CONSOLE |
| 1035 | help |
| 1036 | Say Y here if you want to support a serial console. |
| 1037 | |
| 1038 | If you use an M3T-M32700UT or an OPSPUT platform, |
| 1039 | please say also y for SERIAL_M32R_PLDSIO. |
| 1040 | |
| 1041 | config SERIAL_M32R_PLDSIO |
| 1042 | bool "M32R SIO I/F on a PLD" |
Adrian Bunk | d600b97 | 2006-01-13 21:57:22 +0000 | [diff] [blame] | 1043 | depends on SERIAL_M32R_SIO=y && (PLAT_OPSPUT || PLAT_USRV || PLAT_M32700UT) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1044 | default n |
| 1045 | help |
| 1046 | Say Y here if you want to use the M32R serial controller |
| 1047 | on a PLD (Programmable Logic Device). |
| 1048 | |
| 1049 | If you use an M3T-M32700UT or an OPSPUT platform, |
| 1050 | please say Y. |
| 1051 | |
| 1052 | config SERIAL_TXX9 |
| 1053 | bool "TMPTX39XX/49XX SIO support" |
Robert P. J. Day | bef1f40 | 2006-12-12 20:04:19 +0100 | [diff] [blame] | 1054 | depends on HAS_TXX9_SERIAL |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1055 | select SERIAL_CORE |
| 1056 | default y |
| 1057 | |
| 1058 | config HAS_TXX9_SERIAL |
| 1059 | bool |
| 1060 | |
Atsushi Nemoto | 138c5d2 | 2007-02-10 01:45:05 -0800 | [diff] [blame] | 1061 | config SERIAL_TXX9_NR_UARTS |
| 1062 | int "Maximum number of TMPTX39XX/49XX SIO ports" |
| 1063 | depends on SERIAL_TXX9 |
| 1064 | default "6" |
| 1065 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1066 | config SERIAL_TXX9_CONSOLE |
| 1067 | bool "TMPTX39XX/49XX SIO Console support" |
| 1068 | depends on SERIAL_TXX9=y |
| 1069 | select SERIAL_CORE_CONSOLE |
| 1070 | |
| 1071 | config SERIAL_TXX9_STDSERIAL |
| 1072 | bool "TX39XX/49XX SIO act as standard serial" |
| 1073 | depends on !SERIAL_8250 && SERIAL_TXX9 |
| 1074 | |
| 1075 | config SERIAL_VR41XX |
| 1076 | tristate "NEC VR4100 series Serial Interface Unit support" |
| 1077 | depends on CPU_VR41XX |
| 1078 | select SERIAL_CORE |
| 1079 | help |
| 1080 | If you have a NEC VR4100 series processor and you want to use |
| 1081 | Serial Interface Unit(SIU) or Debug Serial Interface Unit(DSIU) |
| 1082 | (not include VR4111/VR4121 DSIU), say Y. Otherwise, say N. |
| 1083 | |
| 1084 | config SERIAL_VR41XX_CONSOLE |
| 1085 | bool "Enable NEC VR4100 series Serial Interface Unit console" |
| 1086 | depends on SERIAL_VR41XX |
| 1087 | select SERIAL_CORE_CONSOLE |
| 1088 | help |
| 1089 | If you have a NEC VR4100 series processor and you want to use |
| 1090 | a console on a serial port, say Y. Otherwise, say N. |
| 1091 | |
| 1092 | config SERIAL_JSM |
V. Ananda Krishnan | 0a577ce | 2006-02-03 03:04:30 -0800 | [diff] [blame] | 1093 | tristate "Digi International NEO PCI Support" |
| 1094 | depends on PCI |
| 1095 | select SERIAL_CORE |
| 1096 | help |
| 1097 | This is a driver for Digi International's Neo series |
| 1098 | of cards which provide multiple serial ports. You would need |
| 1099 | something like this to connect more than two modems to your Linux |
| 1100 | box, for instance in order to become a dial-in server. This driver |
| 1101 | supports PCI boards only. |
Arthur Othieno | a5f1e4e | 2006-02-15 09:52:46 +0000 | [diff] [blame] | 1102 | |
| 1103 | If you have a card like this, say Y here, otherwise say N. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1104 | |
V. Ananda Krishnan | 0a577ce | 2006-02-03 03:04:30 -0800 | [diff] [blame] | 1105 | To compile this driver as a module, choose M here: the |
| 1106 | module will be called jsm. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1107 | |
Brent Casavant | e5d310b | 2005-06-21 17:16:01 -0700 | [diff] [blame] | 1108 | config SERIAL_SGI_IOC4 |
| 1109 | tristate "SGI IOC4 controller serial support" |
| 1110 | depends on (IA64_GENERIC || IA64_SGI_SN2) && SGI_IOC4 |
| 1111 | select SERIAL_CORE |
| 1112 | help |
| 1113 | If you have an SGI Altix with an IOC4 based Base IO card |
| 1114 | and wish to use the serial ports on this card, say Y. |
| 1115 | Otherwise, say N. |
| 1116 | |
Patrick Gefre | 2d0cfb5 | 2006-01-14 13:20:40 -0800 | [diff] [blame] | 1117 | config SERIAL_SGI_IOC3 |
| 1118 | tristate "SGI Altix IOC3 serial support" |
| 1119 | depends on (IA64_GENERIC || IA64_SGI_SN2) && SGI_IOC3 |
| 1120 | select SERIAL_CORE |
| 1121 | help |
| 1122 | If you have an SGI Altix with an IOC3 serial card, |
| 1123 | say Y or M. Otherwise, say N. |
| 1124 | |
Sascha Hauer | f8441e1 | 2006-06-19 13:29:07 +0100 | [diff] [blame] | 1125 | config SERIAL_NETX |
| 1126 | bool "NetX serial port support" |
| 1127 | depends on ARM && ARCH_NETX |
| 1128 | select SERIAL_CORE |
| 1129 | help |
| 1130 | If you have a machine based on a Hilscher NetX SoC you |
| 1131 | can enable its onboard serial port by enabling this option. |
| 1132 | |
| 1133 | To compile this driver as a module, choose M here: the |
| 1134 | module will be called netx-serial. |
| 1135 | |
| 1136 | config SERIAL_NETX_CONSOLE |
| 1137 | bool "Console on NetX serial port" |
| 1138 | depends on SERIAL_NETX |
| 1139 | select SERIAL_CORE_CONSOLE |
| 1140 | help |
| 1141 | If you have enabled the serial port on the Motorola IMX |
| 1142 | CPU you can make it the console by answering Y to this option. |
| 1143 | |
Arnd Bergmann | 8d38a5b | 2007-02-13 21:35:38 +0100 | [diff] [blame] | 1144 | config SERIAL_OF_PLATFORM |
| 1145 | tristate "Serial port on Open Firmware platform bus" |
| 1146 | depends on PPC_OF |
| 1147 | depends on SERIAL_8250 |
| 1148 | help |
| 1149 | If you have a PowerPC based system that has serial ports |
| 1150 | on a platform specific bus, you should enable this option. |
| 1151 | Currently, only 8250 compatible ports are supported, but |
| 1152 | others can easily be added. |
| 1153 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1154 | endmenu |