home *** CD-ROM | disk | FTP | other *** search
/ PC Welt 2006 November (DVD) / PCWELT_11_2006.ISO / casper / filesystem.squashfs / usr / src / linux-headers-2.6.17-6 / drivers / serial / Kconfig next >
Encoding:
Text File  |  2006-08-11  |  30.7 KB  |  948 lines

  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.       This builds standard PCI serial support. You may be able to
  77.       disable this feature if you only need legacy serial support.
  78.       Saves about 9K.
  79.  
  80. config SERIAL_8250_PNP
  81.     tristate "8250/16550 PNP device support" if EMBEDDED
  82.     depends on SERIAL_8250 && PNP
  83.     default SERIAL_8250
  84.     help
  85.       This builds standard PNP serial support. You may be able to
  86.       disable this feature if you only need legacy serial support.
  87.  
  88. config SERIAL_8250_HP300
  89.     tristate
  90.     depends on SERIAL_8250 && HP300
  91.     default SERIAL_8250
  92.  
  93. config SERIAL_8250_CS
  94.     tristate "8250/16550 PCMCIA device support"
  95.     depends on PCMCIA && SERIAL_8250
  96.     ---help---
  97.       Say Y here to enable support for 16-bit PCMCIA serial devices,
  98.       including serial port cards, modems, and the modem functions of
  99.       multi-function Ethernet/modem cards. (PCMCIA- or PC-cards are
  100.       credit-card size devices often used with laptops.)
  101.  
  102.       To compile this driver as a module, choose M here: the
  103.       module will be called serial_cs.
  104.  
  105.       If unsure, say N.
  106.  
  107. config SERIAL_WACOM_ACPI
  108.     tristate "Enable a wacom digitizer on an HP TC1100"
  109.     depends on ACPI_BUS && SERIAL_8250
  110.         default n
  111.     ---help---
  112.       This driver will enable the wacom digitizer on a serial port
  113.           for an HP TC1100 TabletPC.
  114.  
  115. config SERIAL_8250_NR_UARTS
  116.     int "Maximum number of 8250/16550 serial ports"
  117.     depends on SERIAL_8250
  118.     default "4"
  119.     help
  120.       Set this to the number of serial ports you want the driver
  121.       to support.  This includes any ports discovered via ACPI or
  122.       PCI enumeration and any ports that may be added at run-time
  123.       via hot-plug, or any ISA multi-port serial cards.
  124.  
  125. config SERIAL_8250_RUNTIME_UARTS
  126.     int "Number of 8250/16550 serial ports to register at runtime"
  127.     depends on SERIAL_8250
  128.     range 0 SERIAL_8250_NR_UARTS
  129.     default "4"
  130.     help
  131.       Set this to the maximum number of serial ports you want
  132.       the kernel to register at boot time.  This can be overriden
  133.       with the module parameter "nr_uarts", or boot-time parameter
  134.       8250.nr_uarts
  135.  
  136. config SERIAL_8250_EXTENDED
  137.     bool "Extended 8250/16550 serial driver options"
  138.     depends on SERIAL_8250
  139.     help
  140.       If you wish to use any non-standard features of the standard "dumb"
  141.       driver, say Y here. This includes HUB6 support, shared serial
  142.       interrupts, special multiport support, support for more than the
  143.       four COM 1/2/3/4 boards, etc.
  144.  
  145.       Note that the answer to this question won't directly affect the
  146.       kernel: saying N will just cause the configurator to skip all
  147.       the questions about serial driver options. If unsure, say N.
  148.  
  149. config SERIAL_8250_MANY_PORTS
  150.     bool "Support more than 4 legacy serial ports"
  151.     depends on SERIAL_8250_EXTENDED && !IA64
  152.     help
  153.       Say Y here if you have dumb serial boards other than the four
  154.       standard COM 1/2/3/4 ports. This may happen if you have an AST
  155.       FourPort, Accent Async, Boca (read the Boca mini-HOWTO, available
  156.       from <http://www.tldp.org/docs.html#howto>), or other custom
  157.       serial port hardware which acts similar to standard serial port
  158.       hardware. If you only use the standard COM 1/2/3/4 ports, you can
  159.       say N here to save some memory. You can also say Y if you have an
  160.       "intelligent" multiport card such as Cyclades, Digiboards, etc.
  161.  
  162. config SERIAL_8250_SHARE_IRQ
  163.     bool "Support for sharing serial interrupts"
  164.     depends on SERIAL_8250_EXTENDED
  165.     help
  166.       Some serial boards have hardware support which allows multiple dumb
  167.       serial ports on the same board to share a single IRQ. To enable
  168.       support for this in the serial driver, say Y here.
  169.  
  170. config SERIAL_8250_DETECT_IRQ
  171.     bool "Autodetect IRQ on standard ports (unsafe)"
  172.     depends on SERIAL_8250_EXTENDED
  173.     help
  174.       Say Y here if you want the kernel to try to guess which IRQ
  175.       to use for your serial port.
  176.  
  177.       This is considered unsafe; it is far better to configure the IRQ in
  178.       a boot script using the setserial command.
  179.  
  180.       If unsure, say N.
  181.  
  182. config SERIAL_8250_RSA
  183.     bool "Support RSA serial ports"
  184.     depends on SERIAL_8250_EXTENDED
  185.     help
  186.       ::: To be written :::
  187.  
  188. #
  189. # Multi-port serial cards
  190. #
  191.  
  192. config SERIAL_8250_FOURPORT
  193.     tristate "Support Fourport cards"
  194.     depends on SERIAL_8250 != n && ISA && SERIAL_8250_MANY_PORTS
  195.     help
  196.       Say Y here if you have an AST FourPort serial board.
  197.  
  198.       To compile this driver as a module, choose M here: the module
  199.       will be called 8250_fourport.
  200.  
  201. config SERIAL_8250_ACCENT
  202.     tristate "Support Accent cards"
  203.     depends on SERIAL_8250 != n && ISA && SERIAL_8250_MANY_PORTS
  204.     help
  205.       Say Y here if you have an Accent Async serial board.
  206.  
  207.       To compile this driver as a module, choose M here: the module
  208.       will be called 8250_accent.
  209.  
  210.  
  211. config SERIAL_8250_BOCA
  212.     tristate "Support Boca cards"
  213.     depends on SERIAL_8250 != n && ISA && SERIAL_8250_MANY_PORTS
  214.     help
  215.       Say Y here if you have a Boca serial board.  Please read the Boca
  216.       mini-HOWTO, avaialble from <http://www.tldp.org/docs.html#howto>
  217.  
  218.       To compile this driver as a module, choose M here: the module
  219.       will be called 8250_boca.
  220.  
  221. config SERIAL_8250_HUB6
  222.     tristate "Support Hub6 cards"
  223.     depends on SERIAL_8250 != n && ISA && SERIAL_8250_MANY_PORTS
  224.     help
  225.       Say Y here if you have a HUB6 serial board.
  226.  
  227.       To compile this driver as a module, choose M here: the module
  228.       will be called 8250_hub6.
  229.  
  230. config SERIAL_8250_MCA
  231.     tristate "Support 8250-type ports on MCA buses"
  232.     depends on SERIAL_8250 != n && MCA
  233.     help
  234.       Say Y here if you have a MCA serial ports.
  235.  
  236.       To compile this driver as a module, choose M here: the module
  237.       will be called 8250_mca.
  238.  
  239. config SERIAL_8250_ACORN
  240.     tristate "Acorn expansion card serial port support"
  241.     depends on ARCH_ACORN && SERIAL_8250
  242.     help
  243.       If you have an Atomwide Serial card or Serial Port card for an Acorn
  244.       system, say Y to this option.  The driver can handle 1, 2, or 3 port
  245.       cards.  If unsure, say N.
  246.  
  247. config SERIAL_8250_AU1X00
  248.     bool "AU1X00 serial port support"
  249.     depends on SERIAL_8250 != n && SOC_AU1X00
  250.     help
  251.       If you have an Au1x00 board and want to use the serial port, say Y
  252.       to this option.  The driver can handle 1 or 2 serial ports.
  253.       If unsure, say N.
  254.  
  255. comment "Non-8250 serial port support"
  256.  
  257. config SERIAL_AMBA_PL010
  258.     tristate "ARM AMBA PL010 serial port support"
  259.     depends on ARM_AMBA && (BROKEN || !ARCH_VERSATILE)
  260.     select SERIAL_CORE
  261.     help
  262.       This selects the ARM(R) AMBA(R) PrimeCell PL010 UART.  If you have
  263.       an Integrator/AP or Integrator/PP2 platform, say Y or M here.
  264.  
  265.       If unsure, say N.
  266.  
  267. config SERIAL_AMBA_PL010_CONSOLE
  268.     bool "Support for console on AMBA serial port"
  269.     depends on SERIAL_AMBA_PL010=y
  270.     select SERIAL_CORE_CONSOLE
  271.     ---help---
  272.       Say Y here if you wish to use an AMBA PrimeCell UART as the system
  273.       console (the system console is the device which receives all kernel
  274.       messages and warnings and which allows logins in single user mode).
  275.  
  276.       Even if you say Y here, the currently visible framebuffer console
  277.       (/dev/tty0) will still be used as the system console by default, but
  278.       you can alter that using a kernel command line option such as
  279.       "console=ttyAM0". (Try "man bootparam" or see the documentation of
  280.       your boot loader (lilo or loadlin) about how to pass options to the
  281.       kernel at boot time.)
  282.  
  283. config SERIAL_AMBA_PL011
  284.     tristate "ARM AMBA PL011 serial port support"
  285.     depends on ARM_AMBA
  286.     select SERIAL_CORE
  287.     help
  288.       This selects the ARM(R) AMBA(R) PrimeCell PL011 UART.  If you have
  289.       an Integrator/PP2, Integrator/CP or Versatile platform, say Y or M
  290.       here.
  291.  
  292.       If unsure, say N.
  293.  
  294. config SERIAL_AMBA_PL011_CONSOLE
  295.     bool "Support for console on AMBA serial port"
  296.     depends on SERIAL_AMBA_PL011=y
  297.     select SERIAL_CORE_CONSOLE
  298.     ---help---
  299.       Say Y here if you wish to use an AMBA PrimeCell UART as the system
  300.       console (the system console is the device which receives all kernel
  301.       messages and warnings and which allows logins in single user mode).
  302.  
  303.       Even if you say Y here, the currently visible framebuffer console
  304.       (/dev/tty0) will still be used as the system console by default, but
  305.       you can alter that using a kernel command line option such as
  306.       "console=ttyAM0". (Try "man bootparam" or see the documentation of
  307.       your boot loader (lilo or loadlin) about how to pass options to the
  308.       kernel at boot time.)
  309.  
  310. config SERIAL_AT91
  311.     bool "AT91RM9200 serial port support"
  312.     depends on ARM && ARCH_AT91RM9200
  313.     select SERIAL_CORE
  314.     help
  315.       This enables the driver for the on-chip UARTs of the AT91RM9200
  316.       processor.
  317.  
  318. config SERIAL_AT91_CONSOLE
  319.     bool "Support for console on AT91RM9200 serial port"
  320.     depends on SERIAL_AT91=y
  321.     select SERIAL_CORE_CONSOLE
  322.     help
  323.       Say Y here if you wish to use a UART on the AT91RM9200 as the system
  324.       console (the system console is the device which receives all kernel
  325.       messages and warnings and which allows logins in single user mode).
  326.  
  327. config SERIAL_AT91_TTYAT
  328.     bool "Install as device ttyAT0-4 instead of ttyS0-4"
  329.     depends on SERIAL_AT91=y
  330.     help
  331.       Say Y here if you wish to have the five internal AT91RM9200 UARTs
  332.       appear as /dev/ttyAT0-4 (major 204, minor 154-158) instead of the
  333.       normal /dev/ttyS0-4 (major 4, minor 64-68). This is necessary if
  334.       you also want other UARTs, such as external 8250/16C550 compatible
  335.       UARTs.
  336.       The ttySn nodes are legally reserved for the 8250 serial driver
  337.       but are often misused by other serial drivers.
  338.  
  339.       To use this, you should create suitable ttyATn device nodes in
  340.       /dev/, and pass "console=ttyATn" to the kernel.
  341.  
  342.       Say Y if you have an external 8250/16C550 UART.  If unsure, say N.
  343.  
  344. config SERIAL_CLPS711X
  345.     tristate "CLPS711X serial port support"
  346.     depends on ARM && ARCH_CLPS711X
  347.     select SERIAL_CORE
  348.     help
  349.       ::: To be written :::
  350.  
  351. config SERIAL_CLPS711X_CONSOLE
  352.     bool "Support for console on CLPS711X serial port"
  353.     depends on SERIAL_CLPS711X=y
  354.     select SERIAL_CORE_CONSOLE
  355.     help
  356.       Even if you say Y here, the currently visible virtual console
  357.       (/dev/tty0) will still be used as the system console by default, but
  358.       you can alter that using a kernel command line option such as
  359.       "console=ttyCL1". (Try "man bootparam" or see the documentation of
  360.       your boot loader (lilo or loadlin) about how to pass options to the
  361.       kernel at boot time.)
  362.  
  363. config SERIAL_S3C2410
  364.     tristate "Samsung S3C2410 Serial port support"
  365.     depends on ARM && ARCH_S3C2410
  366.     select SERIAL_CORE
  367.     help
  368.       Support for the on-chip UARTs on the Samsung S3C2410X CPU,
  369.       providing /dev/ttySAC0, 1 and 2 (note, some machines may not
  370.       provide all of these ports, depending on how the serial port
  371.       pins are configured.
  372.  
  373. config SERIAL_S3C2410_CONSOLE
  374.     bool "Support for console on S3C2410 serial port"
  375.     depends on SERIAL_S3C2410=y
  376.     select SERIAL_CORE_CONSOLE
  377.     help
  378.       Allow selection of the S3C2410 on-board serial ports for use as
  379.       an virtual console.
  380.  
  381.       Even if you say Y here, the currently visible virtual console
  382.       (/dev/tty0) will still be used as the system console by default, but
  383.       you can alter that using a kernel command line option such as
  384.       "console=ttySACx". (Try "man bootparam" or see the documentation of
  385.       your boot loader about how to pass options to the kernel at
  386.       boot time.)
  387.  
  388. config SERIAL_DZ
  389.     bool "DECstation DZ serial driver"
  390.     depends on MACH_DECSTATION && 32BIT
  391.     select SERIAL_CORE
  392.     help
  393.       DZ11-family serial controllers for VAXstations, including the
  394.       DC7085, M7814, and M7819.
  395.  
  396. config SERIAL_DZ_CONSOLE
  397.     bool "Support console on DECstation DZ serial driver"
  398.     depends on SERIAL_DZ=y
  399.     select SERIAL_CORE_CONSOLE
  400.     help
  401.       If you say Y here, it will be possible to use a serial port as the
  402.       system console (the system console is the device which receives all
  403.       kernel messages and warnings and which allows logins in single user
  404.       mode).  Note that the firmware uses ttyS0 as the serial console on
  405.       the Maxine and ttyS2 on the others.
  406.  
  407.       If unsure, say Y.
  408.  
  409. config SERIAL_21285
  410.     tristate "DC21285 serial port support"
  411.     depends on ARM && FOOTBRIDGE
  412.     select SERIAL_CORE
  413.     help
  414.       If you have a machine based on a 21285 (Footbridge) StrongARM(R)/
  415.       PCI bridge you can enable its onboard serial port by enabling this
  416.       option.
  417.  
  418. config SERIAL_21285_CONSOLE
  419.     bool "Console on DC21285 serial port"
  420.     depends on SERIAL_21285=y
  421.     select SERIAL_CORE_CONSOLE
  422.     help
  423.       If you have enabled the serial port on the 21285 footbridge you can
  424.       make it the console by answering Y to this option.
  425.  
  426.       Even if you say Y here, the currently visible virtual console
  427.       (/dev/tty0) will still be used as the system console by default, but
  428.       you can alter that using a kernel command line option such as
  429.       "console=ttyFB". (Try "man bootparam" or see the documentation of
  430.       your boot loader (lilo or loadlin) about how to pass options to the
  431.       kernel at boot time.)
  432.  
  433. config SERIAL_MPSC
  434.     bool "Marvell MPSC serial port support"
  435.     depends on PPC32 && MV64X60
  436.     select SERIAL_CORE
  437.     help
  438.       Say Y here if you want to use the Marvell MPSC serial controller.
  439.  
  440. config SERIAL_MPSC_CONSOLE
  441.     bool "Support for console on Marvell MPSC serial port"
  442.     depends on SERIAL_MPSC
  443.     select SERIAL_CORE_CONSOLE
  444.     help
  445.       Say Y here if you want to support a serial console on a Marvell MPSC.
  446.  
  447. config SERIAL_PXA
  448.     bool "PXA serial port support"
  449.     depends on ARM && ARCH_PXA
  450.     select SERIAL_CORE
  451.     help
  452.       If you have a machine based on an Intel XScale PXA2xx CPU you
  453.       can enable its onboard serial ports by enabling this option.
  454.  
  455. config SERIAL_PXA_CONSOLE
  456.     bool "Console on PXA serial port"
  457.     depends on SERIAL_PXA
  458.     select SERIAL_CORE_CONSOLE
  459.     help
  460.       If you have enabled the serial port on the Intel XScale PXA
  461.       CPU you can make it the console by answering Y to this option.
  462.  
  463.       Even if you say Y here, the currently visible virtual console
  464.       (/dev/tty0) will still be used as the system console by default, but
  465.       you can alter that using a kernel command line option such as
  466.       "console=ttySA0". (Try "man bootparam" or see the documentation of
  467.       your boot loader (lilo or loadlin) about how to pass options to the
  468.       kernel at boot time.)
  469.  
  470. config SERIAL_SA1100
  471.     bool "SA1100 serial port support"
  472.     depends on ARM && ARCH_SA1100
  473.     select SERIAL_CORE
  474.     help
  475.       If you have a machine based on a SA1100/SA1110 StrongARM(R) CPU you
  476.       can enable its onboard serial port by enabling this option.
  477.       Please read <file:Documentation/arm/SA1100/serial_UART> for further
  478.       info.
  479.  
  480. config SERIAL_SA1100_CONSOLE
  481.     bool "Console on SA1100 serial port"
  482.     depends on SERIAL_SA1100
  483.     select SERIAL_CORE_CONSOLE
  484.     help
  485.       If you have enabled the serial port on the SA1100/SA1110 StrongARM
  486.       CPU you can make it the console by answering Y to this option.
  487.  
  488.       Even if you say Y here, the currently visible virtual console
  489.       (/dev/tty0) will still be used as the system console by default, but
  490.       you can alter that using a kernel command line option such as
  491.       "console=ttySA0". (Try "man bootparam" or see the documentation of
  492.       your boot loader (lilo or loadlin) about how to pass options to the
  493.       kernel at boot time.)
  494.  
  495. config SERIAL_IMX
  496.     bool "IMX serial port support"
  497.     depends on ARM && ARCH_IMX
  498.     select SERIAL_CORE
  499.     help
  500.       If you have a machine based on a Motorola IMX CPU you
  501.       can enable its onboard serial port by enabling this option.
  502.  
  503. config SERIAL_IMX_CONSOLE
  504.     bool "Console on IMX serial port"
  505.     depends on SERIAL_IMX
  506.     select SERIAL_CORE_CONSOLE
  507.     help
  508.       If you have enabled the serial port on the Motorola IMX
  509.       CPU you can make it the console by answering Y to this option.
  510.  
  511.       Even if you say Y here, the currently visible virtual console
  512.       (/dev/tty0) will still be used as the system console by default, but
  513.       you can alter that using a kernel command line option such as
  514.       "console=ttySA0". (Try "man bootparam" or see the documentation of
  515.       your boot loader (lilo or loadlin) about how to pass options to the
  516.       kernel at boot time.)
  517.  
  518. config SERIAL_SUNCORE
  519.     bool
  520.     depends on SPARC
  521.     select SERIAL_CORE
  522.     select SERIAL_CORE_CONSOLE
  523.     default y
  524.  
  525. config SERIAL_SUNZILOG
  526.     tristate "Sun Zilog8530 serial support"
  527.     depends on SPARC
  528.     help
  529.       This driver supports the Zilog8530 serial ports found on many Sparc
  530.       systems.  Say Y or M if you want to be able to these serial ports.
  531.  
  532. config SERIAL_SUNZILOG_CONSOLE
  533.     bool "Console on Sun Zilog8530 serial port"
  534.     depends on SERIAL_SUNZILOG=y
  535.     help
  536.       If you would like to be able to use the Zilog8530 serial port
  537.       on your Sparc system as the console, you can do so by answering
  538.       Y to this option.
  539.  
  540. config SERIAL_SUNSU
  541.     tristate "Sun SU serial support"
  542.     depends on SPARC && PCI
  543.     help
  544.       This driver supports the 8250 serial ports that run the keyboard and
  545.       mouse on (PCI) UltraSPARC systems.  Say Y or M if you want to be able
  546.       to these serial ports.
  547.  
  548. config SERIAL_SUNSU_CONSOLE
  549.     bool "Console on Sun SU serial port"
  550.     depends on SERIAL_SUNSU=y
  551.     help
  552.       If you would like to be able to use the SU serial port
  553.       on your Sparc system as the console, you can do so by answering
  554.       Y to this option.
  555.  
  556. config SERIAL_MUX
  557.     tristate "Serial MUX support"
  558.     depends on GSC
  559.     select SERIAL_CORE
  560.     default y
  561.     ---help---
  562.       Saying Y here will enable the hardware MUX serial driver for
  563.       the Nova and K class systems.  The hardware MUX is not 8250/16550 
  564.       compatible therefore the /dev/ttyB0 device is shared between the 
  565.       Serial MUX and the PDC software console.  The following steps 
  566.       need to be completed to use the Serial MUX:
  567.  
  568.         1. create the device entry (mknod /dev/ttyB0 c 11 0)
  569.         2. Edit the /etc/inittab to start a getty listening on /dev/ttyB0
  570.         3. Add device ttyB0 to /etc/securetty (if you want to log on as
  571.          root on this console.)
  572.         4. Change the kernel command console parameter to: console=ttyB0
  573.  
  574. config SERIAL_MUX_CONSOLE
  575.         bool "Support for console on serial MUX"
  576.         depends on SERIAL_MUX
  577.     select SERIAL_CORE_CONSOLE
  578.         default y
  579.  
  580. config PDC_CONSOLE
  581.     bool "PDC software console support"
  582.     depends on PARISC && !SERIAL_MUX && VT
  583.     default n
  584.     help
  585.       Saying Y here will enable the software based PDC console to be 
  586.       used as the system console.  This is useful for machines in 
  587.       which the hardware based console has not been written yet.  The
  588.       following steps must be competed to use the PDC console:
  589.  
  590.         1. create the device entry (mknod /dev/ttyB0 c 11 0)
  591.         2. Edit the /etc/inittab to start a getty listening on /dev/ttyB0
  592.         3. Add device ttyB0 to /etc/securetty (if you want to log on as
  593.          root on this console.)
  594.         4. Change the kernel command console parameter to: console=ttyB0
  595.  
  596. config SERIAL_SUNSAB
  597.     tristate "Sun Siemens SAB82532 serial support"
  598.     depends on SPARC && PCI
  599.     help
  600.       This driver supports the Siemens SAB82532 DUSCC serial ports on newer
  601.       (PCI) UltraSPARC systems.  Say Y or M if you want to be able to these
  602.       serial ports.
  603.  
  604. config SERIAL_SUNSAB_CONSOLE
  605.     bool "Console on Sun Siemens SAB82532 serial port"
  606.     depends on SERIAL_SUNSAB=y
  607.     help
  608.       If you would like to be able to use the SAB82532 serial port
  609.       on your Sparc system as the console, you can do so by answering
  610.       Y to this option.
  611.  
  612. config SERIAL_SUNHV
  613.     bool "Sun4v Hypervisor Console support"
  614.     depends on SPARC64
  615.     help
  616.       This driver supports the console device found on SUN4V Sparc
  617.       systems.  Say Y if you want to be able to use this device.
  618.  
  619. config SERIAL_IP22_ZILOG
  620.     tristate "IP22 Zilog8530 serial support"
  621.     depends on SGI_IP22
  622.     select SERIAL_CORE
  623.     help
  624.       This driver supports the Zilog8530 serial ports found on SGI IP22
  625.       systems.  Say Y or M if you want to be able to these serial ports.
  626.  
  627. config SERIAL_IP22_ZILOG_CONSOLE
  628.     bool "Console on IP22 Zilog8530 serial port"
  629.     depends on SERIAL_IP22_ZILOG=y
  630.     select SERIAL_CORE_CONSOLE
  631.  
  632. config V850E_UART
  633.     bool "NEC V850E on-chip UART support"
  634.     depends on V850E_MA1 || V850E_ME2 || V850E_TEG || V850E2_ANNA || V850E_AS85EP1
  635.     select SERIAL_CORE
  636.     default y
  637.  
  638. config V850E_UARTB
  639.         bool
  640.     depends V850E_UART && V850E_ME2
  641.     default y
  642.  
  643. config V850E_UART_CONSOLE
  644.     bool "Use NEC V850E on-chip UART for console"
  645.     depends on V850E_UART
  646.     select SERIAL_CORE_CONSOLE
  647.  
  648. config SERIAL_SH_SCI
  649.     tristate "SH SCI(F) serial port support"
  650.     depends on SUPERH || H8300
  651.     select SERIAL_CORE
  652.  
  653. config SERIAL_SH_SCI_CONSOLE
  654.     bool "Support for console on SH SCI(F)"
  655.     depends on SERIAL_SH_SCI=y
  656.     select SERIAL_CORE_CONSOLE
  657.  
  658. config SERIAL_CORE
  659.     tristate
  660.  
  661. config SERIAL_CORE_CONSOLE
  662.     bool
  663.  
  664. config SERIAL_68328
  665.     bool "68328 serial support"
  666.     depends on M68328 || M68EZ328 || M68VZ328
  667.     help
  668.       This driver supports the built-in serial port of the Motorola 68328
  669.       (standard, EZ and VZ varities).
  670.  
  671. config SERIAL_68328_RTS_CTS
  672.     bool "Support RTS/CTS on 68328 serial port"
  673.     depends on SERIAL_68328
  674.  
  675. config SERIAL_COLDFIRE
  676.     bool "ColdFire serial support"
  677.     depends on COLDFIRE
  678.     help
  679.       This driver supports the built-in serial ports of the Motorola ColdFire
  680.       family of CPUs.
  681.  
  682. config SERIAL_68360_SMC
  683.     bool "68360 SMC uart support"
  684.     depends on M68360
  685.     help
  686.       This driver supports the SMC serial ports of the Motorola 68360 CPU.
  687.  
  688. config SERIAL_68360_SCC
  689.     bool "68360 SCC uart support"
  690.     depends on M68360
  691.     help
  692.       This driver supports the SCC serial ports of the Motorola 68360 CPU.
  693.  
  694. config SERIAL_68360
  695.     bool
  696.     depends on SERIAL_68360_SMC || SERIAL_68360_SCC
  697.     default y
  698.  
  699. config SERIAL_PMACZILOG
  700.     tristate "PowerMac z85c30 ESCC support"
  701.     depends on PPC_OF && PPC_PMAC
  702.     select SERIAL_CORE
  703.     help
  704.       This driver supports the Zilog z85C30 serial ports found on
  705.       PowerMac machines.
  706.       Say Y or M if you want to be able to these serial ports.
  707.  
  708. config SERIAL_PMACZILOG_CONSOLE
  709.     bool "Console on PowerMac z85c30 serial port"
  710.     depends on SERIAL_PMACZILOG=y
  711.     select SERIAL_CORE_CONSOLE
  712.     help
  713.       If you would like to be able to use the z85c30 serial port
  714.       on your PowerMac as the console, you can do so by answering
  715.       Y to this option.
  716.  
  717. config SERIAL_LH7A40X
  718.     tristate "Sharp LH7A40X embedded UART support"
  719.     depends on ARM && ARCH_LH7A40X
  720.     select SERIAL_CORE
  721.     help
  722.       This enables support for the three on-board UARTs of the
  723.       Sharp LH7A40X series CPUs.  Choose Y or M.
  724.  
  725. config SERIAL_LH7A40X_CONSOLE
  726.     bool "Support for console on Sharp LH7A40X serial port"
  727.     depends on SERIAL_LH7A40X=y
  728.     select SERIAL_CORE_CONSOLE
  729.     help
  730.       Say Y here if you wish to use one of the serial ports as the
  731.       system console--the system console is the device which
  732.       receives all kernel messages and warnings and which allows
  733.       logins in single user mode.
  734.  
  735.       Even if you say Y here, the currently visible framebuffer console
  736.       (/dev/tty0) will still be used as the default system console, but
  737.       you can alter that using a kernel command line, for example
  738.       "console=ttyAM1".
  739.  
  740. config SERIAL_CPM
  741.     tristate "CPM SCC/SMC serial port support"
  742.     depends on CPM2 || 8xx
  743.     select SERIAL_CORE
  744.     help
  745.       This driver supports the SCC and SMC serial ports on Motorola 
  746.       embedded PowerPC that contain a CPM1 (8xx) or CPM2 (8xxx)
  747.  
  748. config SERIAL_CPM_CONSOLE
  749.     bool "Support for console on CPM SCC/SMC serial port"
  750.     depends on SERIAL_CPM=y
  751.     select SERIAL_CORE_CONSOLE
  752.     help
  753.       Say Y here if you wish to use a SCC or SMC CPM UART as the system
  754.       console (the system console is the device which receives all kernel
  755.       messages and warnings and which allows logins in single user mode).
  756.  
  757.       Even if you say Y here, the currently visible framebuffer console
  758.       (/dev/tty0) will still be used as the system console by default, but
  759.       you can alter that using a kernel command line option such as
  760.       "console=ttyCPM0". (Try "man bootparam" or see the documentation of
  761.       your boot loader (lilo or loadlin) about how to pass options to the
  762.       kernel at boot time.)
  763.  
  764. config SERIAL_CPM_SCC1
  765.     bool "Support for SCC1 serial port"
  766.     depends on SERIAL_CPM=y
  767.     help
  768.       Select the is option to use SCC1 as a serial port
  769.  
  770. config SERIAL_CPM_SCC2
  771.     bool "Support for SCC2 serial port"
  772.     depends on SERIAL_CPM=y
  773.     help
  774.       Select the is option to use SCC2 as a serial port
  775.  
  776. config SERIAL_CPM_SCC3
  777.     bool "Support for SCC3 serial port"
  778.     depends on SERIAL_CPM=y
  779.     help
  780.       Select the is option to use SCC3 as a serial port
  781.  
  782. config SERIAL_CPM_SCC4
  783.     bool "Support for SCC4 serial port"
  784.     depends on SERIAL_CPM=y
  785.     help
  786.       Select the is option to use SCC4 as a serial port
  787.  
  788. config SERIAL_CPM_SMC1
  789.     bool "Support for SMC1 serial port"
  790.     depends on SERIAL_CPM=y
  791.     help
  792.       Select the is option to use SMC1 as a serial port
  793.  
  794. config SERIAL_CPM_SMC2
  795.     bool "Support for SMC2 serial port"
  796.     depends on SERIAL_CPM=y
  797.     help
  798.       Select the is option to use SMC2 as a serial port
  799.  
  800. config SERIAL_SGI_L1_CONSOLE
  801.     bool "SGI Altix L1 serial console support"
  802.     depends on IA64_GENERIC || IA64_SGI_SN2
  803.     select SERIAL_CORE
  804.     select SERIAL_CORE_CONSOLE
  805.     help
  806.         If you have an SGI Altix and you would like to use the system
  807.         controller serial port as your console (you want this!),
  808.         say Y.  Otherwise, say N.
  809.  
  810. config SERIAL_MPC52xx
  811.     tristate "Freescale MPC52xx family PSC serial support"
  812.     depends on PPC_MPC52xx
  813.     select SERIAL_CORE
  814.     help
  815.       This drivers support the MPC52xx PSC serial ports. If you would
  816.       like to use them, you must answer Y or M to this option. Not that
  817.       for use as console, it must be included in kernel and not as a
  818.       module.
  819.  
  820. config SERIAL_MPC52xx_CONSOLE
  821.     bool "Console on a Freescale MPC52xx family PSC serial port"
  822.     depends on SERIAL_MPC52xx=y
  823.     select SERIAL_CORE_CONSOLE
  824.     help
  825.       Select this options if you'd like to use one of the PSC serial port
  826.       of the Freescale MPC52xx family as a console.
  827.  
  828. config SERIAL_MPC52xx_CONSOLE_BAUD
  829.     int "Freescale MPC52xx family PSC serial port baud"
  830.     depends on SERIAL_MPC52xx_CONSOLE=y
  831.     default "9600"
  832.     help
  833.       Select the MPC52xx console baud rate.
  834.       This value is only used if the bootloader doesn't pass in the
  835.       console baudrate
  836.  
  837. config SERIAL_ICOM
  838.     tristate "IBM Multiport Serial Adapter"
  839.     depends on PCI && (PPC_ISERIES || PPC_PSERIES)
  840.     select SERIAL_CORE
  841.     select FW_LOADER
  842.     help
  843.       This driver is for a family of multiport serial adapters
  844.       including 2 port RVX, 2 port internal modem, 4 port internal
  845.       modem and a split 1 port RVX and 1 port internal modem.
  846.  
  847.       This driver can also be built as a module.  If so, the module
  848.       will be called icom.
  849.  
  850. config SERIAL_M32R_SIO
  851.     bool "M32R SIO I/F"
  852.     depends on M32R
  853.     default y
  854.     select SERIAL_CORE
  855.     help
  856.       Say Y here if you want to use the M32R serial controller.
  857.  
  858. config SERIAL_M32R_SIO_CONSOLE
  859.     bool "use SIO console"
  860.     depends on SERIAL_M32R_SIO=y
  861.     select SERIAL_CORE_CONSOLE
  862.     help
  863.       Say Y here if you want to support a serial console.
  864.  
  865.       If you use an M3T-M32700UT or an OPSPUT platform,
  866.       please say also y for SERIAL_M32R_PLDSIO.
  867.  
  868. config SERIAL_M32R_PLDSIO
  869.     bool "M32R SIO I/F on a PLD"
  870.     depends on SERIAL_M32R_SIO=y && (PLAT_OPSPUT || PLAT_USRV || PLAT_M32700UT)
  871.     default n
  872.     help
  873.       Say Y here if you want to use the M32R serial controller
  874.       on a PLD (Programmable Logic Device).
  875.  
  876.       If you use an M3T-M32700UT or an OPSPUT platform,
  877.       please say Y.
  878.  
  879. config SERIAL_TXX9
  880.     bool "TMPTX39XX/49XX SIO support"
  881.     depends HAS_TXX9_SERIAL
  882.     select SERIAL_CORE
  883.     default y
  884.  
  885. config HAS_TXX9_SERIAL
  886.     bool
  887.  
  888. config SERIAL_TXX9_CONSOLE
  889.     bool "TMPTX39XX/49XX SIO Console support"
  890.     depends on SERIAL_TXX9=y
  891.     select SERIAL_CORE_CONSOLE
  892.  
  893. config SERIAL_TXX9_STDSERIAL
  894.     bool "TX39XX/49XX SIO act as standard serial"
  895.     depends on !SERIAL_8250 && SERIAL_TXX9
  896.  
  897. config SERIAL_VR41XX
  898.     tristate "NEC VR4100 series Serial Interface Unit support"
  899.     depends on CPU_VR41XX
  900.     select SERIAL_CORE
  901.     help
  902.       If you have a NEC VR4100 series processor and you want to use
  903.       Serial Interface Unit(SIU) or Debug Serial Interface Unit(DSIU)
  904.       (not include VR4111/VR4121 DSIU), say Y.  Otherwise, say N.
  905.  
  906. config SERIAL_VR41XX_CONSOLE
  907.     bool "Enable NEC VR4100 series Serial Interface Unit console"
  908.     depends on SERIAL_VR41XX
  909.     select SERIAL_CORE_CONSOLE
  910.     help
  911.       If you have a NEC VR4100 series processor and you want to use
  912.       a console on a serial port, say Y.  Otherwise, say N.
  913.  
  914. config SERIAL_JSM
  915.     tristate "Digi International NEO PCI Support"
  916.     depends on PCI
  917.     select SERIAL_CORE
  918.     help
  919.       This is a driver for Digi International's Neo series
  920.       of cards which provide multiple serial ports. You would need
  921.       something like this to connect more than two modems to your Linux
  922.       box, for instance in order to become a dial-in server. This driver
  923.       supports PCI boards only.
  924.  
  925.       If you have a card like this, say Y here, otherwise say N.
  926.  
  927.       To compile this driver as a module, choose M here: the
  928.       module will be called jsm.
  929.  
  930. config SERIAL_SGI_IOC4
  931.     tristate "SGI IOC4 controller serial support"
  932.     depends on (IA64_GENERIC || IA64_SGI_SN2) && SGI_IOC4
  933.     select SERIAL_CORE
  934.     help
  935.         If you have an SGI Altix with an IOC4 based Base IO card
  936.         and wish to use the serial ports on this card, say Y.
  937.         Otherwise, say N.
  938.  
  939. config SERIAL_SGI_IOC3
  940.     tristate "SGI Altix IOC3 serial support"
  941.     depends on (IA64_GENERIC || IA64_SGI_SN2) && SGI_IOC3
  942.     select SERIAL_CORE
  943.     help
  944.       If you have an SGI Altix with an IOC3 serial card,
  945.       say Y or M.  Otherwise, say N.
  946.  
  947. endmenu
  948.