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