blob: a6f5bfbb777b646ae75047c3ba625a677ba3edc3 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#
2# Serial device configuration
3#
4# $Id: Kconfig,v 1.11 2004/03/11 18:08:04 lethal Exp $
5#
6
7menu "Serial drivers"
Martin Schwidefskye25df122007-05-10 15:45:57 +02008 depends on HAS_IOMEM
Linus Torvalds1da177e2005-04-16 15:20:36 -07009
10#
11# The new 8250/16550 serial drivers
12config SERIAL_8250
13 tristate "8250/16550 and compatible serial support"
Adrian Bunk0b57ee92005-12-22 21:03:47 -080014 depends on (BROKEN || !SPARC)
Linus Torvalds1da177e2005-04-16 15:20:36 -070015 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 McGrathdf7559d2006-01-23 09:50:09 +000027 module will be called 8250.
Linus Torvalds1da177e2005-04-16 15:20:36 -070028 [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
43config 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 King0cff2602006-03-29 22:03:38 +010067config SERIAL_8250_GSC
68 tristate
69 depends on SERIAL_8250 && GSC
70 default SERIAL_8250
71
72config 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 Helgaas7e92b4fc2007-05-08 00:36:07 -070077 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 King0cff2602006-03-29 22:03:38 +010081
82config 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 Helgaas7e92b4fc2007-05-08 00:36:07 -070087 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 King0cff2602006-03-29 22:03:38 +010092
93config SERIAL_8250_HP300
94 tristate
95 depends on SERIAL_8250 && HP300
96 default SERIAL_8250
97
Linus Torvalds1da177e2005-04-16 15:20:36 -070098config 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 Torvalds1da177e2005-04-16 15:20:36 -0700112config SERIAL_8250_NR_UARTS
Russell King026d02a2005-06-29 18:45:19 +0100113 int "Maximum number of 8250/16550 serial ports"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114 depends on SERIAL_8250
115 default "4"
Russell Kingec9f47c2005-06-27 11:12:54 +0100116 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 Torvalds1da177e2005-04-16 15:20:36 -0700121
Dave Jonesa61c2d72006-01-07 23:18:19 +0000122config SERIAL_8250_RUNTIME_UARTS
123 int "Number of 8250/16550 serial ports to register at runtime"
124 depends on SERIAL_8250
Russell King9a8ffcc2006-02-03 22:05:42 +0000125 range 0 SERIAL_8250_NR_UARTS
Dave Jonesa61c2d72006-01-07 23:18:19 +0000126 default "4"
127 help
128 Set this to the maximum number of serial ports you want
Matt LaPlante09509602006-10-03 22:31:37 +0200129 the kernel to register at boot time. This can be overridden
Dave Jonesa61c2d72006-01-07 23:18:19 +0000130 with the module parameter "nr_uarts", or boot-time parameter
131 8250.nr_uarts
132
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133config 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
146config 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 Kingec9f47c2005-06-27 11:12:54 +0100159#
160# Multi-port serial cards
161#
162
163config 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
172config 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 Kingec9f47c2005-06-27 11:12:54 +0100181config 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 LaPlante09509602006-10-03 22:31:37 +0200186 mini-HOWTO, available from <http://www.tldp.org/docs.html#howto>
Russell Kingec9f47c2005-06-27 11:12:54 +0100187
188 To compile this driver as a module, choose M here: the module
189 will be called 8250_boca.
190
Paul B Schroedere0980da2006-12-06 20:37:03 -0800191config 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 Kingec9f47c2005-06-27 11:12:54 +0100202config 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 Mullisbf4735a2006-12-10 02:18:37 -0800211config 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
219config 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
231config SERIAL_8250_RSA
232 bool "Support RSA serial ports"
233 depends on SERIAL_8250_EXTENDED
234 help
235 ::: To be written :::
236
Russell Kingec9f47c2005-06-27 11:12:54 +0100237config 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 Torvalds1da177e2005-04-16 15:20:36 -0700245
246config SERIAL_8250_ACORN
247 tristate "Acorn expansion card serial port support"
Russell Kingec9f47c2005-06-27 11:12:54 +0100248 depends on ARCH_ACORN && SERIAL_8250
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249 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 Antoniou21c614a2005-11-06 09:07:03 +0000254config 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 Koellerbd71c182007-05-06 14:48:47 -0700262config 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 Kingec9f47c2005-06-27 11:12:54 +0100271comment "Non-8250 serial port support"
272
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273config SERIAL_AMBA_PL010
274 tristate "ARM AMBA PL010 serial port support"
Al Viro84b6a232005-08-23 22:46:16 +0100275 depends on ARM_AMBA && (BROKEN || !ARCH_VERSATILE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276 select SERIAL_CORE
277 help
278 This selects the ARM(R) AMBA(R) PrimeCell PL010 UART. If you have
Lennert Buytenhek00584712007-02-05 16:10:22 -0800279 an Integrator/AP or Integrator/PP2 platform, or if you have a
280 Cirrus Logic EP93xx CPU, say Y or M here.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281
282 If unsure, say N.
283
284config 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
300config 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
311config 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 Korsgaardb22b4cd2006-09-29 02:00:23 -0700323 "console=ttyAMA0". (Try "man bootparam" or see the documentation of
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 your boot loader (lilo or loadlin) about how to pass options to the
325 kernel at boot time.)
326
Haavard Skinnemoen749c4e62006-10-04 16:02:02 +0200327config SERIAL_ATMEL
328 bool "AT91 / AT32 on-chip serial port support"
Haavard Skinnemoenacca9b82006-10-04 16:02:09 +0200329 depends on (ARM && ARCH_AT91) || AVR32
Andrew Victor1e6c9c22006-01-10 16:59:27 +0000330 select SERIAL_CORE
331 help
Andrew Victorafefc412006-06-19 19:53:19 +0100332 This enables the driver for the on-chip UARTs of the Atmel
Haavard Skinnemoenacca9b82006-10-04 16:02:09 +0200333 AT91 and AT32 processors.
Andrew Victor1e6c9c22006-01-10 16:59:27 +0000334
Haavard Skinnemoen749c4e62006-10-04 16:02:02 +0200335config SERIAL_ATMEL_CONSOLE
336 bool "Support for console on AT91 / AT32 serial port"
337 depends on SERIAL_ATMEL=y
Andrew Victor1e6c9c22006-01-10 16:59:27 +0000338 select SERIAL_CORE_CONSOLE
339 help
Haavard Skinnemoenacca9b82006-10-04 16:02:09 +0200340 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 Victor1e6c9c22006-01-10 16:59:27 +0000344
Haavard Skinnemoen749c4e62006-10-04 16:02:02 +0200345config SERIAL_ATMEL_TTYAT
Haavard Skinnemoenacca9b82006-10-04 16:02:09 +0200346 bool "Install as device ttyATn instead of ttySn"
Haavard Skinnemoen749c4e62006-10-04 16:02:02 +0200347 depends on SERIAL_ATMEL=y
Andrew Victor1e6c9c22006-01-10 16:59:27 +0000348 help
Haavard Skinnemoenacca9b82006-10-04 16:02:09 +0200349 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 Victor1e6c9c22006-01-10 16:59:27 +0000354 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
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362config SERIAL_CLPS711X
363 tristate "CLPS711X serial port support"
364 depends on ARM && ARCH_CLPS711X
365 select SERIAL_CORE
366 help
367 ::: To be written :::
368
369config SERIAL_CLPS711X_CONSOLE
370 bool "Support for console on CLPS711X serial port"
371 depends on SERIAL_CLPS711X=y
372 select SERIAL_CORE_CONSOLE
373 help
374 Even if you say Y here, the currently visible virtual console
375 (/dev/tty0) will still be used as the system console by default, but
376 you can alter that using a kernel command line option such as
377 "console=ttyCL1". (Try "man bootparam" or see the documentation of
378 your boot loader (lilo or loadlin) about how to pass options to the
379 kernel at boot time.)
380
381config SERIAL_S3C2410
Ben Dooks73e55cb2006-06-24 21:21:32 +0100382 tristate "Samsung S3C2410/S3C2440/S3C2442/S3C2412 Serial port support"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383 depends on ARM && ARCH_S3C2410
384 select SERIAL_CORE
385 help
Ben Dooks73e55cb2006-06-24 21:21:32 +0100386 Support for the on-chip UARTs on the Samsung S3C24XX series CPUs,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 providing /dev/ttySAC0, 1 and 2 (note, some machines may not
388 provide all of these ports, depending on how the serial port
389 pins are configured.
390
Ben Dooks73e55cb2006-06-24 21:21:32 +0100391 Currently this driver supports the UARTS on the S3C2410, S3C2440,
392 S3C2442, S3C2412 and S3C2413 CPUs.
393
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394config SERIAL_S3C2410_CONSOLE
395 bool "Support for console on S3C2410 serial port"
396 depends on SERIAL_S3C2410=y
397 select SERIAL_CORE_CONSOLE
398 help
Ben Dooks73e55cb2006-06-24 21:21:32 +0100399 Allow selection of the S3C24XX on-board serial ports for use as
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400 an virtual console.
401
402 Even if you say Y here, the currently visible virtual console
403 (/dev/tty0) will still be used as the system console by default, but
404 you can alter that using a kernel command line option such as
405 "console=ttySACx". (Try "man bootparam" or see the documentation of
406 your boot loader about how to pass options to the kernel at
407 boot time.)
408
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409config SERIAL_DZ
410 bool "DECstation DZ serial driver"
Ralf Baechle875d43e2005-09-03 15:56:16 -0700411 depends on MACH_DECSTATION && 32BIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412 select SERIAL_CORE
413 help
414 DZ11-family serial controllers for VAXstations, including the
415 DC7085, M7814, and M7819.
416
417config SERIAL_DZ_CONSOLE
418 bool "Support console on DECstation DZ serial driver"
419 depends on SERIAL_DZ=y
420 select SERIAL_CORE_CONSOLE
421 help
422 If you say Y here, it will be possible to use a serial port as the
423 system console (the system console is the device which receives all
424 kernel messages and warnings and which allows logins in single user
425 mode). Note that the firmware uses ttyS0 as the serial console on
426 the Maxine and ttyS2 on the others.
427
428 If unsure, say Y.
429
430config SERIAL_21285
431 tristate "DC21285 serial port support"
432 depends on ARM && FOOTBRIDGE
433 select SERIAL_CORE
434 help
435 If you have a machine based on a 21285 (Footbridge) StrongARM(R)/
436 PCI bridge you can enable its onboard serial port by enabling this
437 option.
438
439config SERIAL_21285_CONSOLE
440 bool "Console on DC21285 serial port"
441 depends on SERIAL_21285=y
442 select SERIAL_CORE_CONSOLE
443 help
444 If you have enabled the serial port on the 21285 footbridge you can
445 make it the console by answering Y to this option.
446
447 Even if you say Y here, the currently visible virtual console
448 (/dev/tty0) will still be used as the system console by default, but
449 you can alter that using a kernel command line option such as
450 "console=ttyFB". (Try "man bootparam" or see the documentation of
451 your boot loader (lilo or loadlin) about how to pass options to the
452 kernel at boot time.)
453
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454config SERIAL_MPSC
455 bool "Marvell MPSC serial port support"
456 depends on PPC32 && MV64X60
457 select SERIAL_CORE
458 help
459 Say Y here if you want to use the Marvell MPSC serial controller.
460
461config SERIAL_MPSC_CONSOLE
462 bool "Support for console on Marvell MPSC serial port"
463 depends on SERIAL_MPSC
464 select SERIAL_CORE_CONSOLE
465 help
466 Say Y here if you want to support a serial console on a Marvell MPSC.
467
468config SERIAL_PXA
469 bool "PXA serial port support"
470 depends on ARM && ARCH_PXA
471 select SERIAL_CORE
472 help
473 If you have a machine based on an Intel XScale PXA2xx CPU you
474 can enable its onboard serial ports by enabling this option.
475
476config SERIAL_PXA_CONSOLE
477 bool "Console on PXA serial port"
478 depends on SERIAL_PXA
479 select SERIAL_CORE_CONSOLE
480 help
481 If you have enabled the serial port on the Intel XScale PXA
482 CPU you can make it the console by answering Y to this option.
483
484 Even if you say Y here, the currently visible virtual console
485 (/dev/tty0) will still be used as the system console by default, but
486 you can alter that using a kernel command line option such as
487 "console=ttySA0". (Try "man bootparam" or see the documentation of
488 your boot loader (lilo or loadlin) about how to pass options to the
489 kernel at boot time.)
490
491config SERIAL_SA1100
492 bool "SA1100 serial port support"
493 depends on ARM && ARCH_SA1100
494 select SERIAL_CORE
495 help
496 If you have a machine based on a SA1100/SA1110 StrongARM(R) CPU you
497 can enable its onboard serial port by enabling this option.
498 Please read <file:Documentation/arm/SA1100/serial_UART> for further
499 info.
500
501config SERIAL_SA1100_CONSOLE
502 bool "Console on SA1100 serial port"
503 depends on SERIAL_SA1100
504 select SERIAL_CORE_CONSOLE
505 help
506 If you have enabled the serial port on the SA1100/SA1110 StrongARM
507 CPU you can make it the console by answering Y to this option.
508
509 Even if you say Y here, the currently visible virtual console
510 (/dev/tty0) will still be used as the system console by default, but
511 you can alter that using a kernel command line option such as
512 "console=ttySA0". (Try "man bootparam" or see the documentation of
513 your boot loader (lilo or loadlin) about how to pass options to the
514 kernel at boot time.)
515
Bryan Wu194de562007-05-06 14:50:30 -0700516config SERIAL_BFIN
517 tristate "Blackfin serial port support"
518 depends on BFIN
519 select SERIAL_CORE
520 select SERIAL_BFIN_UART0 if (BF531 || BF532 || BF533 || BF561)
521 help
522 Add support for the built-in UARTs on the Blackfin.
523
524 To compile this driver as a module, choose M here: the
525 module will be called bfin_5xx.
526
527config SERIAL_BFIN_CONSOLE
528 bool "Console on Blackfin serial port"
529 depends on SERIAL_BFIN
530 select SERIAL_CORE_CONSOLE
531
532choice
533 prompt "UART Mode"
534 depends on SERIAL_BFIN
535 default SERIAL_BFIN_DMA
536 help
537 This driver supports the built-in serial ports of the Blackfin family
538 of CPUs
539
540config SERIAL_BFIN_DMA
541 bool "DMA mode"
542 depends on DMA_UNCACHED_1M
543 help
544 This driver works under DMA mode. If this option is selected, the
545 blackfin simple dma driver is also enabled.
546
547config SERIAL_BFIN_PIO
548 bool "PIO mode"
549 help
550 This driver works under PIO mode.
551
552endchoice
553
554config SERIAL_BFIN_UART0
555 bool "Enable UART0"
556 depends on SERIAL_BFIN
557 help
558 Enable UART0
559
560config BFIN_UART0_CTSRTS
561 bool "Enable UART0 hardware flow control"
562 depends on SERIAL_BFIN_UART0
563 help
564 Enable hardware flow control in the driver. Using GPIO emulate the CTS/RTS
565 signal.
566
567config UART0_CTS_PIN
568 int "UART0 CTS pin"
569 depends on BFIN_UART0_CTSRTS
570 default 23
571 help
572 The default pin is GPIO_GP7.
573 Refer to ./include/asm-blackfin/gpio.h to see the GPIO map.
574
575config UART0_RTS_PIN
576 int "UART0 RTS pin"
577 depends on BFIN_UART0_CTSRTS
578 default 22
579 help
580 The default pin is GPIO_GP6.
581 Refer to ./include/asm-blackfin/gpio.h to see the GPIO map.
582
583config SERIAL_BFIN_UART1
584 bool "Enable UART1"
585 depends on SERIAL_BFIN && (BF534 || BF536 || BF537)
586 help
587 Enable UART1
588
589config BFIN_UART1_CTSRTS
590 bool "Enable UART1 hardware flow control"
591 depends on SERIAL_BFIN_UART1
592 help
593 Enable hardware flow control in the driver. Using GPIO emulate the CTS/RTS
594 signal.
595
596config UART1_CTS_PIN
597 int "UART1 CTS pin"
598 depends on BFIN_UART1_CTSRTS
599 default -1
600 help
601 Refer to ./include/asm-blackfin/gpio.h to see the GPIO map.
602
603config UART1_RTS_PIN
604 int "UART1 RTS pin"
605 depends on BFIN_UART1_CTSRTS
606 default -1
607 help
608 Refer to ./include/asm-blackfin/gpio.h to see the GPIO map.
609
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610config SERIAL_IMX
611 bool "IMX serial port support"
612 depends on ARM && ARCH_IMX
613 select SERIAL_CORE
614 help
615 If you have a machine based on a Motorola IMX CPU you
616 can enable its onboard serial port by enabling this option.
617
618config SERIAL_IMX_CONSOLE
619 bool "Console on IMX serial port"
620 depends on SERIAL_IMX
621 select SERIAL_CORE_CONSOLE
622 help
623 If you have enabled the serial port on the Motorola IMX
624 CPU you can make it the console by answering Y to this option.
625
626 Even if you say Y here, the currently visible virtual console
627 (/dev/tty0) will still be used as the system console by default, but
628 you can alter that using a kernel command line option such as
629 "console=ttySA0". (Try "man bootparam" or see the documentation of
630 your boot loader (lilo or loadlin) about how to pass options to the
631 kernel at boot time.)
632
Peter Korsgaard238b8722006-12-06 20:35:17 -0800633config SERIAL_UARTLITE
634 tristate "Xilinx uartlite serial port support"
635 depends on PPC32
636 select SERIAL_CORE
637 help
638 Say Y here if you want to use the Xilinx uartlite serial controller.
639
640 To compile this driver as a module, choose M here: the
641 module will be called uartlite.ko.
642
643config SERIAL_UARTLITE_CONSOLE
644 bool "Support for console on Xilinx uartlite serial port"
645 depends on SERIAL_UARTLITE=y
646 select SERIAL_CORE_CONSOLE
647 help
648 Say Y here if you wish to use a Xilinx uartlite as the system
649 console (the system console is the device which receives all kernel
650 messages and warnings and which allows logins in single user mode).
651
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652config SERIAL_SUNCORE
653 bool
Adrian Bunk0b57ee92005-12-22 21:03:47 -0800654 depends on SPARC
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655 select SERIAL_CORE
656 select SERIAL_CORE_CONSOLE
657 default y
658
659config SERIAL_SUNZILOG
660 tristate "Sun Zilog8530 serial support"
Adrian Bunk0b57ee92005-12-22 21:03:47 -0800661 depends on SPARC
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662 help
663 This driver supports the Zilog8530 serial ports found on many Sparc
664 systems. Say Y or M if you want to be able to these serial ports.
665
666config SERIAL_SUNZILOG_CONSOLE
667 bool "Console on Sun Zilog8530 serial port"
668 depends on SERIAL_SUNZILOG=y
669 help
670 If you would like to be able to use the Zilog8530 serial port
671 on your Sparc system as the console, you can do so by answering
672 Y to this option.
673
674config SERIAL_SUNSU
675 tristate "Sun SU serial support"
Adrian Bunk0b57ee92005-12-22 21:03:47 -0800676 depends on SPARC && PCI
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677 help
678 This driver supports the 8250 serial ports that run the keyboard and
679 mouse on (PCI) UltraSPARC systems. Say Y or M if you want to be able
680 to these serial ports.
681
682config SERIAL_SUNSU_CONSOLE
683 bool "Console on Sun SU serial port"
684 depends on SERIAL_SUNSU=y
685 help
686 If you would like to be able to use the SU serial port
687 on your Sparc system as the console, you can do so by answering
688 Y to this option.
689
690config SERIAL_MUX
691 tristate "Serial MUX support"
Matthew Wilcox305f5162005-11-18 16:17:50 -0500692 depends on GSC
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693 select SERIAL_CORE
694 default y
695 ---help---
696 Saying Y here will enable the hardware MUX serial driver for
Carlos O'Donelle45da352006-09-16 14:35:51 -0400697 the Nova, K class systems and D class with a 'remote control card'.
698 The hardware MUX is not 8250/16550 compatible therefore the
699 /dev/ttyB0 device is shared between the Serial MUX and the PDC
700 software console. The following steps need to be completed to use
701 the Serial MUX:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702
703 1. create the device entry (mknod /dev/ttyB0 c 11 0)
704 2. Edit the /etc/inittab to start a getty listening on /dev/ttyB0
705 3. Add device ttyB0 to /etc/securetty (if you want to log on as
706 root on this console.)
707 4. Change the kernel command console parameter to: console=ttyB0
708
709config SERIAL_MUX_CONSOLE
710 bool "Support for console on serial MUX"
711 depends on SERIAL_MUX
712 select SERIAL_CORE_CONSOLE
713 default y
714
715config PDC_CONSOLE
716 bool "PDC software console support"
717 depends on PARISC && !SERIAL_MUX && VT
718 default n
719 help
720 Saying Y here will enable the software based PDC console to be
721 used as the system console. This is useful for machines in
722 which the hardware based console has not been written yet. The
723 following steps must be competed to use the PDC console:
724
725 1. create the device entry (mknod /dev/ttyB0 c 11 0)
726 2. Edit the /etc/inittab to start a getty listening on /dev/ttyB0
727 3. Add device ttyB0 to /etc/securetty (if you want to log on as
728 root on this console.)
729 4. Change the kernel command console parameter to: console=ttyB0
730
731config SERIAL_SUNSAB
732 tristate "Sun Siemens SAB82532 serial support"
Adrian Bunk0b57ee92005-12-22 21:03:47 -0800733 depends on SPARC && PCI
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734 help
735 This driver supports the Siemens SAB82532 DUSCC serial ports on newer
736 (PCI) UltraSPARC systems. Say Y or M if you want to be able to these
737 serial ports.
738
739config SERIAL_SUNSAB_CONSOLE
740 bool "Console on Sun Siemens SAB82532 serial port"
741 depends on SERIAL_SUNSAB=y
742 help
743 If you would like to be able to use the SAB82532 serial port
744 on your Sparc system as the console, you can do so by answering
745 Y to this option.
746
David S. Miller02fd4732006-02-11 02:25:21 -0800747config SERIAL_SUNHV
748 bool "Sun4v Hypervisor Console support"
749 depends on SPARC64
750 help
751 This driver supports the console device found on SUN4V Sparc
752 systems. Say Y if you want to be able to use this device.
753
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754config SERIAL_IP22_ZILOG
755 tristate "IP22 Zilog8530 serial support"
756 depends on SGI_IP22
757 select SERIAL_CORE
758 help
759 This driver supports the Zilog8530 serial ports found on SGI IP22
760 systems. Say Y or M if you want to be able to these serial ports.
761
762config SERIAL_IP22_ZILOG_CONSOLE
763 bool "Console on IP22 Zilog8530 serial port"
764 depends on SERIAL_IP22_ZILOG=y
765 select SERIAL_CORE_CONSOLE
766
767config V850E_UART
768 bool "NEC V850E on-chip UART support"
769 depends on V850E_MA1 || V850E_ME2 || V850E_TEG || V850E2_ANNA || V850E_AS85EP1
770 select SERIAL_CORE
771 default y
772
773config V850E_UARTB
774 bool
Robert P. J. Daybef1f402006-12-12 20:04:19 +0100775 depends on V850E_UART && V850E_ME2
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776 default y
777
778config V850E_UART_CONSOLE
779 bool "Use NEC V850E on-chip UART for console"
780 depends on V850E_UART
781 select SERIAL_CORE_CONSOLE
782
783config SERIAL_SH_SCI
Paul Mundtecd95612006-09-27 17:32:30 +0900784 tristate "SuperH SCI(F) serial port support"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785 depends on SUPERH || H8300
786 select SERIAL_CORE
787
Paul Mundtecd95612006-09-27 17:32:30 +0900788config SERIAL_SH_SCI_NR_UARTS
789 int "Maximum number of SCI(F) serial ports"
790 depends on SERIAL_SH_SCI
791 default "2"
792
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793config SERIAL_SH_SCI_CONSOLE
Paul Mundtecd95612006-09-27 17:32:30 +0900794 bool "Support for console on SuperH SCI(F)"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795 depends on SERIAL_SH_SCI=y
796 select SERIAL_CORE_CONSOLE
797
Vitaly Woolde8211b2007-02-14 00:33:09 -0800798config SERIAL_PNX8XXX
799 bool "Enable PNX8XXX SoCs' UART Support"
800 depends on MIPS && SOC_PNX8550
801 select SERIAL_CORE
802 help
803 If you have a MIPS-based Philips SoC such as PNX8550 or PNX8330
804 and you want to use serial ports, say Y. Otherwise, say N.
805
806config SERIAL_PNX8XXX_CONSOLE
807 bool "Enable PNX8XX0 serial console"
808 depends on SERIAL_PNX8XXX
809 select SERIAL_CORE_CONSOLE
810 help
811 If you have a MIPS-based Philips SoC such as PNX8550 or PNX8330
812 and you want to use serial console, say Y. Otherwise, say N.
813
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814config SERIAL_CORE
815 tristate
816
817config SERIAL_CORE_CONSOLE
818 bool
819
820config SERIAL_68328
821 bool "68328 serial support"
822 depends on M68328 || M68EZ328 || M68VZ328
823 help
824 This driver supports the built-in serial port of the Motorola 68328
Matt LaPlante09509602006-10-03 22:31:37 +0200825 (standard, EZ and VZ varieties).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826
827config SERIAL_68328_RTS_CTS
828 bool "Support RTS/CTS on 68328 serial port"
829 depends on SERIAL_68328
830
831config SERIAL_COLDFIRE
832 bool "ColdFire serial support"
833 depends on COLDFIRE
834 help
835 This driver supports the built-in serial ports of the Motorola ColdFire
836 family of CPUs.
837
838config SERIAL_68360_SMC
839 bool "68360 SMC uart support"
840 depends on M68360
841 help
842 This driver supports the SMC serial ports of the Motorola 68360 CPU.
843
844config SERIAL_68360_SCC
845 bool "68360 SCC uart support"
846 depends on M68360
847 help
848 This driver supports the SCC serial ports of the Motorola 68360 CPU.
849
850config SERIAL_68360
851 bool
852 depends on SERIAL_68360_SMC || SERIAL_68360_SCC
853 default y
854
855config SERIAL_PMACZILOG
856 tristate "PowerMac z85c30 ESCC support"
857 depends on PPC_OF && PPC_PMAC
858 select SERIAL_CORE
859 help
860 This driver supports the Zilog z85C30 serial ports found on
861 PowerMac machines.
862 Say Y or M if you want to be able to these serial ports.
863
864config SERIAL_PMACZILOG_CONSOLE
865 bool "Console on PowerMac z85c30 serial port"
866 depends on SERIAL_PMACZILOG=y
867 select SERIAL_CORE_CONSOLE
868 help
869 If you would like to be able to use the z85c30 serial port
870 on your PowerMac as the console, you can do so by answering
871 Y to this option.
872
873config SERIAL_LH7A40X
874 tristate "Sharp LH7A40X embedded UART support"
875 depends on ARM && ARCH_LH7A40X
876 select SERIAL_CORE
877 help
878 This enables support for the three on-board UARTs of the
879 Sharp LH7A40X series CPUs. Choose Y or M.
880
881config SERIAL_LH7A40X_CONSOLE
882 bool "Support for console on Sharp LH7A40X serial port"
883 depends on SERIAL_LH7A40X=y
884 select SERIAL_CORE_CONSOLE
885 help
886 Say Y here if you wish to use one of the serial ports as the
887 system console--the system console is the device which
888 receives all kernel messages and warnings and which allows
889 logins in single user mode.
890
891 Even if you say Y here, the currently visible framebuffer console
892 (/dev/tty0) will still be used as the default system console, but
893 you can alter that using a kernel command line, for example
894 "console=ttyAM1".
895
896config SERIAL_CPM
897 tristate "CPM SCC/SMC serial port support"
898 depends on CPM2 || 8xx
899 select SERIAL_CORE
900 help
901 This driver supports the SCC and SMC serial ports on Motorola
902 embedded PowerPC that contain a CPM1 (8xx) or CPM2 (8xxx)
903
904config SERIAL_CPM_CONSOLE
905 bool "Support for console on CPM SCC/SMC serial port"
906 depends on SERIAL_CPM=y
907 select SERIAL_CORE_CONSOLE
908 help
909 Say Y here if you wish to use a SCC or SMC CPM UART as the system
910 console (the system console is the device which receives all kernel
911 messages and warnings and which allows logins in single user mode).
912
913 Even if you say Y here, the currently visible framebuffer console
914 (/dev/tty0) will still be used as the system console by default, but
915 you can alter that using a kernel command line option such as
916 "console=ttyCPM0". (Try "man bootparam" or see the documentation of
917 your boot loader (lilo or loadlin) about how to pass options to the
918 kernel at boot time.)
919
920config SERIAL_CPM_SCC1
921 bool "Support for SCC1 serial port"
922 depends on SERIAL_CPM=y
923 help
Randy Dunlap74e8b512006-10-19 23:28:26 -0700924 Select this option to use SCC1 as a serial port
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925
926config SERIAL_CPM_SCC2
927 bool "Support for SCC2 serial port"
928 depends on SERIAL_CPM=y
929 help
Randy Dunlap74e8b512006-10-19 23:28:26 -0700930 Select this option to use SCC2 as a serial port
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931
932config SERIAL_CPM_SCC3
933 bool "Support for SCC3 serial port"
934 depends on SERIAL_CPM=y
935 help
Randy Dunlap74e8b512006-10-19 23:28:26 -0700936 Select this option to use SCC3 as a serial port
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937
938config SERIAL_CPM_SCC4
939 bool "Support for SCC4 serial port"
940 depends on SERIAL_CPM=y
941 help
Randy Dunlap74e8b512006-10-19 23:28:26 -0700942 Select this option to use SCC4 as a serial port
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943
944config SERIAL_CPM_SMC1
945 bool "Support for SMC1 serial port"
946 depends on SERIAL_CPM=y
947 help
Randy Dunlap74e8b512006-10-19 23:28:26 -0700948 Select this option to use SMC1 as a serial port
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949
950config SERIAL_CPM_SMC2
951 bool "Support for SMC2 serial port"
952 depends on SERIAL_CPM=y
953 help
Randy Dunlap74e8b512006-10-19 23:28:26 -0700954 Select this option to use SMC2 as a serial port
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955
956config SERIAL_SGI_L1_CONSOLE
957 bool "SGI Altix L1 serial console support"
958 depends on IA64_GENERIC || IA64_SGI_SN2
959 select SERIAL_CORE
960 select SERIAL_CORE_CONSOLE
961 help
962 If you have an SGI Altix and you would like to use the system
963 controller serial port as your console (you want this!),
964 say Y. Otherwise, say N.
965
966config SERIAL_MPC52xx
967 tristate "Freescale MPC52xx family PSC serial support"
968 depends on PPC_MPC52xx
969 select SERIAL_CORE
970 help
971 This drivers support the MPC52xx PSC serial ports. If you would
972 like to use them, you must answer Y or M to this option. Not that
973 for use as console, it must be included in kernel and not as a
974 module.
975
976config SERIAL_MPC52xx_CONSOLE
977 bool "Console on a Freescale MPC52xx family PSC serial port"
978 depends on SERIAL_MPC52xx=y
979 select SERIAL_CORE_CONSOLE
980 help
981 Select this options if you'd like to use one of the PSC serial port
982 of the Freescale MPC52xx family as a console.
983
984config SERIAL_MPC52xx_CONSOLE_BAUD
985 int "Freescale MPC52xx family PSC serial port baud"
986 depends on SERIAL_MPC52xx_CONSOLE=y
987 default "9600"
988 help
989 Select the MPC52xx console baud rate.
990 This value is only used if the bootloader doesn't pass in the
991 console baudrate
992
993config SERIAL_ICOM
994 tristate "IBM Multiport Serial Adapter"
Stephen Rothwell145d01e2005-06-21 17:15:52 -0700995 depends on PCI && (PPC_ISERIES || PPC_PSERIES)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996 select SERIAL_CORE
maximilian attemscb2fc532006-03-25 17:44:20 +0000997 select FW_LOADER
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998 help
999 This driver is for a family of multiport serial adapters
1000 including 2 port RVX, 2 port internal modem, 4 port internal
1001 modem and a split 1 port RVX and 1 port internal modem.
1002
1003 This driver can also be built as a module. If so, the module
1004 will be called icom.
1005
1006config SERIAL_M32R_SIO
1007 bool "M32R SIO I/F"
1008 depends on M32R
1009 default y
1010 select SERIAL_CORE
1011 help
1012 Say Y here if you want to use the M32R serial controller.
1013
1014config SERIAL_M32R_SIO_CONSOLE
1015 bool "use SIO console"
1016 depends on SERIAL_M32R_SIO=y
1017 select SERIAL_CORE_CONSOLE
1018 help
1019 Say Y here if you want to support a serial console.
1020
1021 If you use an M3T-M32700UT or an OPSPUT platform,
1022 please say also y for SERIAL_M32R_PLDSIO.
1023
1024config SERIAL_M32R_PLDSIO
1025 bool "M32R SIO I/F on a PLD"
Adrian Bunkd600b972006-01-13 21:57:22 +00001026 depends on SERIAL_M32R_SIO=y && (PLAT_OPSPUT || PLAT_USRV || PLAT_M32700UT)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027 default n
1028 help
1029 Say Y here if you want to use the M32R serial controller
1030 on a PLD (Programmable Logic Device).
1031
1032 If you use an M3T-M32700UT or an OPSPUT platform,
1033 please say Y.
1034
1035config SERIAL_TXX9
1036 bool "TMPTX39XX/49XX SIO support"
Robert P. J. Daybef1f402006-12-12 20:04:19 +01001037 depends on HAS_TXX9_SERIAL
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038 select SERIAL_CORE
1039 default y
1040
1041config HAS_TXX9_SERIAL
1042 bool
1043
Atsushi Nemoto138c5d22007-02-10 01:45:05 -08001044config SERIAL_TXX9_NR_UARTS
1045 int "Maximum number of TMPTX39XX/49XX SIO ports"
1046 depends on SERIAL_TXX9
1047 default "6"
1048
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049config SERIAL_TXX9_CONSOLE
1050 bool "TMPTX39XX/49XX SIO Console support"
1051 depends on SERIAL_TXX9=y
1052 select SERIAL_CORE_CONSOLE
1053
1054config SERIAL_TXX9_STDSERIAL
1055 bool "TX39XX/49XX SIO act as standard serial"
1056 depends on !SERIAL_8250 && SERIAL_TXX9
1057
1058config SERIAL_VR41XX
1059 tristate "NEC VR4100 series Serial Interface Unit support"
1060 depends on CPU_VR41XX
1061 select SERIAL_CORE
1062 help
1063 If you have a NEC VR4100 series processor and you want to use
1064 Serial Interface Unit(SIU) or Debug Serial Interface Unit(DSIU)
1065 (not include VR4111/VR4121 DSIU), say Y. Otherwise, say N.
1066
1067config SERIAL_VR41XX_CONSOLE
1068 bool "Enable NEC VR4100 series Serial Interface Unit console"
1069 depends on SERIAL_VR41XX
1070 select SERIAL_CORE_CONSOLE
1071 help
1072 If you have a NEC VR4100 series processor and you want to use
1073 a console on a serial port, say Y. Otherwise, say N.
1074
1075config SERIAL_JSM
V. Ananda Krishnan0a577ce2006-02-03 03:04:30 -08001076 tristate "Digi International NEO PCI Support"
1077 depends on PCI
1078 select SERIAL_CORE
1079 help
1080 This is a driver for Digi International's Neo series
1081 of cards which provide multiple serial ports. You would need
1082 something like this to connect more than two modems to your Linux
1083 box, for instance in order to become a dial-in server. This driver
1084 supports PCI boards only.
Arthur Othienoa5f1e4e2006-02-15 09:52:46 +00001085
1086 If you have a card like this, say Y here, otherwise say N.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001087
V. Ananda Krishnan0a577ce2006-02-03 03:04:30 -08001088 To compile this driver as a module, choose M here: the
1089 module will be called jsm.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090
Brent Casavante5d310b2005-06-21 17:16:01 -07001091config SERIAL_SGI_IOC4
1092 tristate "SGI IOC4 controller serial support"
1093 depends on (IA64_GENERIC || IA64_SGI_SN2) && SGI_IOC4
1094 select SERIAL_CORE
1095 help
1096 If you have an SGI Altix with an IOC4 based Base IO card
1097 and wish to use the serial ports on this card, say Y.
1098 Otherwise, say N.
1099
Patrick Gefre2d0cfb52006-01-14 13:20:40 -08001100config SERIAL_SGI_IOC3
1101 tristate "SGI Altix IOC3 serial support"
1102 depends on (IA64_GENERIC || IA64_SGI_SN2) && SGI_IOC3
1103 select SERIAL_CORE
1104 help
1105 If you have an SGI Altix with an IOC3 serial card,
1106 say Y or M. Otherwise, say N.
1107
Sascha Hauerf8441e12006-06-19 13:29:07 +01001108config SERIAL_NETX
1109 bool "NetX serial port support"
1110 depends on ARM && ARCH_NETX
1111 select SERIAL_CORE
1112 help
1113 If you have a machine based on a Hilscher NetX SoC you
1114 can enable its onboard serial port by enabling this option.
1115
1116 To compile this driver as a module, choose M here: the
1117 module will be called netx-serial.
1118
1119config SERIAL_NETX_CONSOLE
1120 bool "Console on NetX serial port"
1121 depends on SERIAL_NETX
1122 select SERIAL_CORE_CONSOLE
1123 help
1124 If you have enabled the serial port on the Motorola IMX
1125 CPU you can make it the console by answering Y to this option.
1126
Arnd Bergmann8d38a5b2007-02-13 21:35:38 +01001127config SERIAL_OF_PLATFORM
1128 tristate "Serial port on Open Firmware platform bus"
1129 depends on PPC_OF
1130 depends on SERIAL_8250
1131 help
1132 If you have a PowerPC based system that has serial ports
1133 on a platform specific bus, you should enable this option.
1134 Currently, only 8250 compatible ports are supported, but
1135 others can easily be added.
1136
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137endmenu