xref: /linux/drivers/tty/Kconfig (revision 03ab8e6297acd1bc0eedaa050e2a1635c576fd11)
138c91d1dSGreg Kroah-Hartman# SPDX-License-Identifier: GPL-2.0
24f73bc4dSJoe Millenbachconfig TTY
34f73bc4dSJoe Millenbach	bool "Enable TTY" if EXPERT
44f73bc4dSJoe Millenbach	default y
5a7f7f624SMasahiro Yamada	help
64f73bc4dSJoe Millenbach	  Allows you to remove TTY support which can save space, and
74f73bc4dSJoe Millenbach	  blocks features that require TTY from inclusion in the kernel.
84f73bc4dSJoe Millenbach	  TTY is required for any text terminals or serial port
94f73bc4dSJoe Millenbach	  communication. Most users should leave this enabled.
104f73bc4dSJoe Millenbach
114f73bc4dSJoe Millenbachif TTY
124f73bc4dSJoe Millenbach
13bdcffc5aSGreg Kroah-Hartmanconfig VT
14bdcffc5aSGreg Kroah-Hartman	bool "Virtual terminal" if EXPERT
15bdcffc5aSGreg Kroah-Hartman	select INPUT
160bbadafdSJohannes Berg	default y if !UML
17a7f7f624SMasahiro Yamada	help
18bdcffc5aSGreg Kroah-Hartman	  If you say Y here, you will get support for terminal devices with
19bdcffc5aSGreg Kroah-Hartman	  display and keyboard devices. These are called "virtual" because you
20bdcffc5aSGreg Kroah-Hartman	  can run several virtual terminals (also called virtual consoles) on
21bdcffc5aSGreg Kroah-Hartman	  one physical terminal. This is rather useful, for example one
22bdcffc5aSGreg Kroah-Hartman	  virtual terminal can collect system messages and warnings, another
23bdcffc5aSGreg Kroah-Hartman	  one can be used for a text-mode user session, and a third could run
24bdcffc5aSGreg Kroah-Hartman	  an X session, all in parallel. Switching between virtual terminals
25bdcffc5aSGreg Kroah-Hartman	  is done with certain key combinations, usually Alt-<function key>.
26bdcffc5aSGreg Kroah-Hartman
27bdcffc5aSGreg Kroah-Hartman	  The setterm command ("man setterm") can be used to change the
28bdcffc5aSGreg Kroah-Hartman	  properties (such as colors or beeping) of a virtual terminal. The
29bdcffc5aSGreg Kroah-Hartman	  man page console_codes(4) ("man console_codes") contains the special
30bdcffc5aSGreg Kroah-Hartman	  character sequences that can be used to change those properties
31bdcffc5aSGreg Kroah-Hartman	  directly. The fonts used on virtual terminals can be changed with
32bdcffc5aSGreg Kroah-Hartman	  the setfont ("man setfont") command and the key bindings are defined
33bdcffc5aSGreg Kroah-Hartman	  with the loadkeys ("man loadkeys") command.
34bdcffc5aSGreg Kroah-Hartman
35bdcffc5aSGreg Kroah-Hartman	  You need at least one virtual terminal device in order to make use
36bdcffc5aSGreg Kroah-Hartman	  of your keyboard and monitor. Therefore, only people configuring an
37bdcffc5aSGreg Kroah-Hartman	  embedded system would want to say N here in order to save some
38bdcffc5aSGreg Kroah-Hartman	  memory; the only way to log into such a system is then via a serial
39bdcffc5aSGreg Kroah-Hartman	  or network connection.
40bdcffc5aSGreg Kroah-Hartman
41bdcffc5aSGreg Kroah-Hartman	  If unsure, say Y, or else you won't be able to do much with your new
42bdcffc5aSGreg Kroah-Hartman	  shiny Linux system :-)
43bdcffc5aSGreg Kroah-Hartman
44bdcffc5aSGreg Kroah-Hartmanconfig CONSOLE_TRANSLATIONS
45bdcffc5aSGreg Kroah-Hartman	depends on VT
46bdcffc5aSGreg Kroah-Hartman	default y
47bdcffc5aSGreg Kroah-Hartman	bool "Enable character translations in console" if EXPERT
48a7f7f624SMasahiro Yamada	help
49bdcffc5aSGreg Kroah-Hartman	  This enables support for font mapping and Unicode translation
50bdcffc5aSGreg Kroah-Hartman	  on virtual consoles.
51bdcffc5aSGreg Kroah-Hartman
52bdcffc5aSGreg Kroah-Hartmanconfig VT_CONSOLE
53bdcffc5aSGreg Kroah-Hartman	bool "Support for console on virtual terminal" if EXPERT
54bdcffc5aSGreg Kroah-Hartman	depends on VT
55bdcffc5aSGreg Kroah-Hartman	default y
56a7f7f624SMasahiro Yamada	help
57bdcffc5aSGreg Kroah-Hartman	  The system console is the device which receives all kernel messages
58bdcffc5aSGreg Kroah-Hartman	  and warnings and which allows logins in single user mode. If you
59bdcffc5aSGreg Kroah-Hartman	  answer Y here, a virtual terminal (the device used to interact with
60bdcffc5aSGreg Kroah-Hartman	  a physical terminal) can be used as system console. This is the most
61bdcffc5aSGreg Kroah-Hartman	  common mode of operations, so you should say Y here unless you want
62bdcffc5aSGreg Kroah-Hartman	  the kernel messages be output only to a serial port (in which case
63bdcffc5aSGreg Kroah-Hartman	  you should say Y to "Console on serial port", below).
64bdcffc5aSGreg Kroah-Hartman
65bdcffc5aSGreg Kroah-Hartman	  If you do say Y here, by default the currently visible virtual
66bdcffc5aSGreg Kroah-Hartman	  terminal (/dev/tty0) will be used as system console. You can change
67bdcffc5aSGreg Kroah-Hartman	  that with a kernel command line option such as "console=tty3" which
68bdcffc5aSGreg Kroah-Hartman	  would use the third virtual terminal as system console. (Try "man
69bdcffc5aSGreg Kroah-Hartman	  bootparam" or see the documentation of your boot loader (lilo or
70bdcffc5aSGreg Kroah-Hartman	  loadlin) about how to pass options to the kernel at boot time.)
71bdcffc5aSGreg Kroah-Hartman
72bdcffc5aSGreg Kroah-Hartman	  If unsure, say Y.
73bdcffc5aSGreg Kroah-Hartman
7437cce26bSH Hartley Sweetenconfig VT_CONSOLE_SLEEP
7537cce26bSH Hartley Sweeten	def_bool y
7637cce26bSH Hartley Sweeten	depends on VT_CONSOLE && PM_SLEEP
7737cce26bSH Hartley Sweeten
78bdcffc5aSGreg Kroah-Hartmanconfig HW_CONSOLE
79bdcffc5aSGreg Kroah-Hartman	bool
800bbadafdSJohannes Berg	depends on VT
81bdcffc5aSGreg Kroah-Hartman	default y
82bdcffc5aSGreg Kroah-Hartman
83bdcffc5aSGreg Kroah-Hartmanconfig VT_HW_CONSOLE_BINDING
84bdcffc5aSGreg Kroah-Hartman	bool "Support for binding and unbinding console drivers"
85bdcffc5aSGreg Kroah-Hartman	depends on HW_CONSOLE
86a7f7f624SMasahiro Yamada	help
87bdcffc5aSGreg Kroah-Hartman	  The virtual terminal is the device that interacts with the physical
88bdcffc5aSGreg Kroah-Hartman	  terminal through console drivers. On these systems, at least one
89bdcffc5aSGreg Kroah-Hartman	  console driver is loaded. In other configurations, additional console
90bdcffc5aSGreg Kroah-Hartman	  drivers may be enabled, such as the framebuffer console. If more than
91bdcffc5aSGreg Kroah-Hartman	  1 console driver is enabled, setting this to 'y' will allow you to
92bdcffc5aSGreg Kroah-Hartman	  select the console driver that will serve as the backend for the
93bdcffc5aSGreg Kroah-Hartman	  virtual terminals.
94bdcffc5aSGreg Kroah-Hartman
95baa293e9SMauro Carvalho Chehab	  See <file:Documentation/driver-api/console.rst> for more
96bdcffc5aSGreg Kroah-Hartman	  information. For framebuffer console users, please refer to
97ab42b818SMauro Carvalho Chehab	  <file:Documentation/fb/fbcon.rst>.
98bdcffc5aSGreg Kroah-Hartman
99bdcffc5aSGreg Kroah-Hartmanconfig UNIX98_PTYS
100bdcffc5aSGreg Kroah-Hartman	bool "Unix98 PTY support" if EXPERT
101bdcffc5aSGreg Kroah-Hartman	default y
102a7f7f624SMasahiro Yamada	help
103bdcffc5aSGreg Kroah-Hartman	  A pseudo terminal (PTY) is a software device consisting of two
104bdcffc5aSGreg Kroah-Hartman	  halves: a master and a slave. The slave device behaves identical to
105bdcffc5aSGreg Kroah-Hartman	  a physical terminal; the master device is used by a process to
106bdcffc5aSGreg Kroah-Hartman	  read data from and write data to the slave, thereby emulating a
107bdcffc5aSGreg Kroah-Hartman	  terminal. Typical programs for the master side are telnet servers
108bdcffc5aSGreg Kroah-Hartman	  and xterms.
109bdcffc5aSGreg Kroah-Hartman
110bdcffc5aSGreg Kroah-Hartman	  Linux has traditionally used the BSD-like names /dev/ptyxx for
111bdcffc5aSGreg Kroah-Hartman	  masters and /dev/ttyxx for slaves of pseudo terminals. This scheme
112bdcffc5aSGreg Kroah-Hartman	  has a number of problems. The GNU C library glibc 2.1 and later,
113bdcffc5aSGreg Kroah-Hartman	  however, supports the Unix98 naming standard: in order to acquire a
114bdcffc5aSGreg Kroah-Hartman	  pseudo terminal, a process opens /dev/ptmx; the number of the pseudo
115bdcffc5aSGreg Kroah-Hartman	  terminal is then made available to the process and the pseudo
116bdcffc5aSGreg Kroah-Hartman	  terminal slave can be accessed as /dev/pts/<number>. What was
117bdcffc5aSGreg Kroah-Hartman	  traditionally /dev/ttyp2 will then be /dev/pts/2, for example.
118bdcffc5aSGreg Kroah-Hartman
119bdcffc5aSGreg Kroah-Hartman	  All modern Linux systems use the Unix98 ptys.  Say Y unless
120bdcffc5aSGreg Kroah-Hartman	  you're on an embedded system and want to conserve memory.
121bdcffc5aSGreg Kroah-Hartman
122bdcffc5aSGreg Kroah-Hartmanconfig LEGACY_PTYS
123bdcffc5aSGreg Kroah-Hartman	bool "Legacy (BSD) PTY support"
124bdcffc5aSGreg Kroah-Hartman	default y
125a7f7f624SMasahiro Yamada	help
126bdcffc5aSGreg Kroah-Hartman	  A pseudo terminal (PTY) is a software device consisting of two
127bdcffc5aSGreg Kroah-Hartman	  halves: a master and a slave. The slave device behaves identical to
128bdcffc5aSGreg Kroah-Hartman	  a physical terminal; the master device is used by a process to
129bdcffc5aSGreg Kroah-Hartman	  read data from and write data to the slave, thereby emulating a
130bdcffc5aSGreg Kroah-Hartman	  terminal. Typical programs for the master side are telnet servers
131bdcffc5aSGreg Kroah-Hartman	  and xterms.
132bdcffc5aSGreg Kroah-Hartman
133bdcffc5aSGreg Kroah-Hartman	  Linux has traditionally used the BSD-like names /dev/ptyxx
134bdcffc5aSGreg Kroah-Hartman	  for masters and /dev/ttyxx for slaves of pseudo
135bdcffc5aSGreg Kroah-Hartman	  terminals. This scheme has a number of problems, including
136bdcffc5aSGreg Kroah-Hartman	  security.  This option enables these legacy devices; on most
137bdcffc5aSGreg Kroah-Hartman	  systems, it is safe to say N.
138bdcffc5aSGreg Kroah-Hartman
139bdcffc5aSGreg Kroah-Hartmanconfig LEGACY_PTY_COUNT
140bdcffc5aSGreg Kroah-Hartman	int "Maximum number of legacy PTY in use"
141bdcffc5aSGreg Kroah-Hartman	depends on LEGACY_PTYS
142bdcffc5aSGreg Kroah-Hartman	range 0 256
143bdcffc5aSGreg Kroah-Hartman	default "256"
144a7f7f624SMasahiro Yamada	help
145bdcffc5aSGreg Kroah-Hartman	  The maximum number of legacy PTYs that can be used at any one time.
146bdcffc5aSGreg Kroah-Hartman	  The default is 256, and should be more than enough.  Embedded
147bdcffc5aSGreg Kroah-Hartman	  systems may want to reduce this to save memory.
148bdcffc5aSGreg Kroah-Hartman
149bdcffc5aSGreg Kroah-Hartman	  When not in use, each legacy PTY occupies 12 bytes on 32-bit
150bdcffc5aSGreg Kroah-Hartman	  architectures and 24 bytes on 64-bit architectures.
151bdcffc5aSGreg Kroah-Hartman
1522cca608aSRandy Dunlapconfig LDISC_AUTOLOAD
1532cca608aSRandy Dunlap	bool "Automatically load TTY Line Disciplines"
1542cca608aSRandy Dunlap	default y
1552cca608aSRandy Dunlap	help
1562cca608aSRandy Dunlap	  Historically the kernel has always automatically loaded any
1572cca608aSRandy Dunlap	  line discipline that is in a kernel module when a user asks
1582cca608aSRandy Dunlap	  for it to be loaded with the TIOCSETD ioctl, or through other
1592cca608aSRandy Dunlap	  means.  This is not always the best thing to do on systems
1602cca608aSRandy Dunlap	  where you know you will not be using some of the more
1612cca608aSRandy Dunlap	  "ancient" line disciplines, so prevent the kernel from doing
1622cca608aSRandy Dunlap	  this unless the request is coming from a process with the
1632cca608aSRandy Dunlap	  CAP_SYS_MODULE permissions.
1642cca608aSRandy Dunlap
1652cca608aSRandy Dunlap	  Say 'Y' here if you trust your userspace users to do the right
1662cca608aSRandy Dunlap	  thing, or if you have only provided the line disciplines that
1672cca608aSRandy Dunlap	  you know you will be using, or if you wish to continue to use
1682cca608aSRandy Dunlap	  the traditional method of on-demand loading of these modules
1692cca608aSRandy Dunlap	  by any user.
1702cca608aSRandy Dunlap
1712cca608aSRandy Dunlap	  This functionality can be changed at runtime with the
1722cca608aSRandy Dunlap	  dev.tty.ldisc_autoload sysctl, this configuration option will
1732cca608aSRandy Dunlap	  only set the default value of this functionality.
1742cca608aSRandy Dunlap
1752cca608aSRandy Dunlapsource "drivers/tty/serial/Kconfig"
1762cca608aSRandy Dunlap
177a6afd9f3SGreg Kroah-Hartmanconfig SERIAL_NONSTANDARD
178a6afd9f3SGreg Kroah-Hartman	bool "Non-standard serial port support"
179a6afd9f3SGreg Kroah-Hartman	depends on HAS_IOMEM
180a7f7f624SMasahiro Yamada	help
181a6afd9f3SGreg Kroah-Hartman	  Say Y here if you have any non-standard serial boards -- boards
182a6afd9f3SGreg Kroah-Hartman	  which aren't supported using the standard "dumb" serial driver.
183f76edd8fSJiri Slaby	  This includes intelligent serial boards such as
184a6afd9f3SGreg Kroah-Hartman	  Digiboards, etc. These are usually used for systems that need many
185a6afd9f3SGreg Kroah-Hartman	  serial ports because they serve many terminals or dial-in
186a6afd9f3SGreg Kroah-Hartman	  connections.
187a6afd9f3SGreg Kroah-Hartman
188a6afd9f3SGreg Kroah-Hartman	  Note that the answer to this question won't directly affect the
189a6afd9f3SGreg Kroah-Hartman	  kernel: saying N will just cause the configurator to skip all
190a6afd9f3SGreg Kroah-Hartman	  the questions about non-standard serial boards.
191a6afd9f3SGreg Kroah-Hartman
192a6afd9f3SGreg Kroah-Hartman	  Most people can say N here.
193a6afd9f3SGreg Kroah-Hartman
194a6afd9f3SGreg Kroah-Hartmanconfig MOXA_INTELLIO
195a6afd9f3SGreg Kroah-Hartman	tristate "Moxa Intellio support"
196a6afd9f3SGreg Kroah-Hartman	depends on SERIAL_NONSTANDARD && (ISA || EISA || PCI)
197a6afd9f3SGreg Kroah-Hartman	select FW_LOADER
198a6afd9f3SGreg Kroah-Hartman	help
199a6afd9f3SGreg Kroah-Hartman	  Say Y here if you have a Moxa Intellio multiport serial card.
200a6afd9f3SGreg Kroah-Hartman
201a6afd9f3SGreg Kroah-Hartman	  To compile this driver as a module, choose M here: the
202a6afd9f3SGreg Kroah-Hartman	  module will be called moxa.
203a6afd9f3SGreg Kroah-Hartman
204a6afd9f3SGreg Kroah-Hartmanconfig MOXA_SMARTIO
205a6afd9f3SGreg Kroah-Hartman	tristate "Moxa SmartIO support v. 2.0"
20629134367SJiri Slaby	depends on SERIAL_NONSTANDARD && PCI
207a6afd9f3SGreg Kroah-Hartman	help
208a6afd9f3SGreg Kroah-Hartman	  Say Y here if you have a Moxa SmartIO multiport serial card and/or
209a6afd9f3SGreg Kroah-Hartman	  want to help develop a new version of this driver.
210a6afd9f3SGreg Kroah-Hartman
211a6afd9f3SGreg Kroah-Hartman	  This is upgraded (1.9.1) driver from original Moxa drivers with
212a6afd9f3SGreg Kroah-Hartman	  changes finally resulting in PCI probing.
213a6afd9f3SGreg Kroah-Hartman
214a6afd9f3SGreg Kroah-Hartman	  This driver can also be built as a module. The module will be called
215a6afd9f3SGreg Kroah-Hartman	  mxser. If you want to do that, say M here.
216a6afd9f3SGreg Kroah-Hartman
217a6afd9f3SGreg Kroah-Hartmanconfig SYNCLINK_GT
218a6afd9f3SGreg Kroah-Hartman	tristate "SyncLink GT/AC support"
219a6afd9f3SGreg Kroah-Hartman	depends on SERIAL_NONSTANDARD && PCI
220a6afd9f3SGreg Kroah-Hartman	help
221a6afd9f3SGreg Kroah-Hartman	  Support for SyncLink GT and SyncLink AC families of
222a6afd9f3SGreg Kroah-Hartman	  synchronous and asynchronous serial adapters
223a6afd9f3SGreg Kroah-Hartman	  manufactured by Microgate Systems, Ltd. (www.microgate.com)
224a6afd9f3SGreg Kroah-Hartman
225a6afd9f3SGreg Kroah-Hartmanconfig N_HDLC
226a6afd9f3SGreg Kroah-Hartman	tristate "HDLC line discipline support"
227a6afd9f3SGreg Kroah-Hartman	depends on SERIAL_NONSTANDARD
228a6afd9f3SGreg Kroah-Hartman	help
229a6afd9f3SGreg Kroah-Hartman	  Allows synchronous HDLC communications with tty device drivers that
230a6afd9f3SGreg Kroah-Hartman	  support synchronous HDLC such as the Microgate SyncLink adapter.
231a6afd9f3SGreg Kroah-Hartman
232a6afd9f3SGreg Kroah-Hartman	  This driver can be built as a module ( = code which can be
233a6afd9f3SGreg Kroah-Hartman	  inserted in and removed from the running kernel whenever you want).
234a6afd9f3SGreg Kroah-Hartman	  The module will be called n_hdlc. If you want to do that, say M
235a6afd9f3SGreg Kroah-Hartman	  here.
236a6afd9f3SGreg Kroah-Hartman
237dcd83aafSTimur Tabiconfig PPC_EPAPR_HV_BYTECHAN
238a183d3aeSAnton Blanchard	bool "ePAPR hypervisor byte channel driver"
239dcd83aafSTimur Tabi	depends on PPC
24040656397SStuart Yoder	select EPAPR_PARAVIRT
241dcd83aafSTimur Tabi	help
242dcd83aafSTimur Tabi	  This driver creates /dev entries for each ePAPR hypervisor byte
243dcd83aafSTimur Tabi	  channel, thereby allowing applications to communicate with byte
244dcd83aafSTimur Tabi	  channels as if they were serial ports.
245dcd83aafSTimur Tabi
246dcd83aafSTimur Tabiconfig PPC_EARLY_DEBUG_EHV_BC
247dcd83aafSTimur Tabi	bool "Early console (udbg) support for ePAPR hypervisors"
248f21c6d4aSStephen Rothwell	depends on PPC_EPAPR_HV_BYTECHAN=y
249dcd83aafSTimur Tabi	help
250dcd83aafSTimur Tabi	  Select this option to enable early console (a.k.a. "udbg") support
251dcd83aafSTimur Tabi	  via an ePAPR byte channel.  You also need to choose the byte channel
252dcd83aafSTimur Tabi	  handle below.
253dcd83aafSTimur Tabi
254dcd83aafSTimur Tabiconfig PPC_EARLY_DEBUG_EHV_BC_HANDLE
255dcd83aafSTimur Tabi	int "Byte channel handle for early console (udbg)"
256dcd83aafSTimur Tabi	depends on PPC_EARLY_DEBUG_EHV_BC
257dcd83aafSTimur Tabi	default 0
258dcd83aafSTimur Tabi	help
259dcd83aafSTimur Tabi	  If you want early console (udbg) output through a byte channel,
260dcd83aafSTimur Tabi	  specify the handle of the byte channel to use.
261dcd83aafSTimur Tabi
262dcd83aafSTimur Tabi	  For this to work, the byte channel driver must be compiled
263dcd83aafSTimur Tabi	  in-kernel, not as a module.
264dcd83aafSTimur Tabi
265dcd83aafSTimur Tabi	  Note that only one early console driver can be enabled, so don't
266dcd83aafSTimur Tabi	  enable any others if you enable this one.
267dcd83aafSTimur Tabi
268dcd83aafSTimur Tabi	  If the number you specify is not a valid byte channel handle, then
269dcd83aafSTimur Tabi	  there simply will be no early console output.  This is true also
270dcd83aafSTimur Tabi	  if you don't boot under a hypervisor at all.
2714f73bc4dSJoe Millenbach
272666b7793SArve Hjønnevågconfig GOLDFISH_TTY
273666b7793SArve Hjønnevåg	tristate "Goldfish TTY Driver"
274666b7793SArve Hjønnevåg	depends on GOLDFISH
2753840ed95SMiodrag Dinic	select SERIAL_CORE
2763840ed95SMiodrag Dinic	select SERIAL_CORE_CONSOLE
277666b7793SArve Hjønnevåg	help
278666b7793SArve Hjønnevåg	  Console and system TTY driver for the Goldfish virtual platform.
279666b7793SArve Hjønnevåg
2806a28fd2bSSebastian Andrzej Siewiorconfig GOLDFISH_TTY_EARLY_CONSOLE
2816a28fd2bSSebastian Andrzej Siewior	bool
2826a28fd2bSSebastian Andrzej Siewior	default y if GOLDFISH_TTY=y
2836a28fd2bSSebastian Andrzej Siewior	select SERIAL_EARLYCON
2846a28fd2bSSebastian Andrzej Siewior
2852cca608aSRandy Dunlapconfig N_GSM
2862cca608aSRandy Dunlap	tristate "GSM MUX line discipline support (EXPERIMENTAL)"
2872cca608aSRandy Dunlap	depends on NET
2882cca608aSRandy Dunlap	help
2892cca608aSRandy Dunlap	  This line discipline provides support for the GSM MUX protocol and
2902cca608aSRandy Dunlap	  presents the mux as a set of 61 individual tty devices.
2912cca608aSRandy Dunlap
2922cca608aSRandy Dunlapconfig NOZOMI
2932cca608aSRandy Dunlap	tristate "HSDPA Broadband Wireless Data Card - Globe Trotter"
2942cca608aSRandy Dunlap	depends on PCI
2952cca608aSRandy Dunlap	help
2962cca608aSRandy Dunlap	  If you have a HSDPA driver Broadband Wireless Data Card -
2972cca608aSRandy Dunlap	  Globe Trotter PCMCIA card, say Y here.
2982cca608aSRandy Dunlap
2992cca608aSRandy Dunlap	  To compile this driver as a module, choose M here, the module
3002cca608aSRandy Dunlap	  will be called nozomi.
3012cca608aSRandy Dunlap
3024cebec60SJames Hoganconfig MIPS_EJTAG_FDC_TTY
3034cebec60SJames Hogan	bool "MIPS EJTAG Fast Debug Channel TTY"
3044cebec60SJames Hogan	depends on MIPS_CDMM
3054cebec60SJames Hogan	help
3064cebec60SJames Hogan	  This enables a TTY and console on the MIPS EJTAG Fast Debug Channels,
3074cebec60SJames Hogan	  if they are present. This can be useful when working with an EJTAG
3084cebec60SJames Hogan	  probe which supports it, to get console output and a login prompt via
3094cebec60SJames Hogan	  EJTAG without needing to connect a serial cable.
3104cebec60SJames Hogan
3114cebec60SJames Hogan	  TTY devices are named e.g. ttyFDC3c2 (for FDC channel 2 of the FDC on
3124cebec60SJames Hogan	  CPU3).
3134cebec60SJames Hogan
3144cebec60SJames Hogan	  The console can be enabled with console=fdc1 (for FDC channel 1 on all
3154cebec60SJames Hogan	  CPUs). Do not use the console unless there is a debug probe attached
3164cebec60SJames Hogan	  to drain the FDC TX FIFO.
3174cebec60SJames Hogan
3184cebec60SJames Hogan	  If unsure, say N.
3194cebec60SJames Hogan
320e934945dSJames Hoganconfig MIPS_EJTAG_FDC_EARLYCON
321e934945dSJames Hogan	bool "Early FDC console"
322e934945dSJames Hogan	depends on MIPS_EJTAG_FDC_TTY
323e934945dSJames Hogan	help
324e934945dSJames Hogan	  This registers a console on FDC channel 1 very early during boot (from
325e934945dSJames Hogan	  MIPS arch code). This is useful for bring-up and debugging early boot
326e934945dSJames Hogan	  issues.
327e934945dSJames Hogan
328e934945dSJames Hogan	  Do not enable unless there is a debug probe attached to drain the FDC
329e934945dSJames Hogan	  TX FIFO.
330e934945dSJames Hogan
331e934945dSJames Hogan	  If unsure, say N.
332e934945dSJames Hogan
333c2d7ef51SJames Hoganconfig MIPS_EJTAG_FDC_KGDB
334c2d7ef51SJames Hogan	bool "Use KGDB over an FDC channel"
335c2d7ef51SJames Hogan	depends on MIPS_EJTAG_FDC_TTY && KGDB
336c2d7ef51SJames Hogan	default y
337c2d7ef51SJames Hogan	help
338c2d7ef51SJames Hogan	  This enables the use of KGDB over an FDC channel, allowing KGDB to be
339c2d7ef51SJames Hogan	  used remotely or when a serial port isn't available.
340c2d7ef51SJames Hogan
341c2d7ef51SJames Hoganconfig MIPS_EJTAG_FDC_KGDB_CHAN
342c2d7ef51SJames Hogan	int "KGDB FDC channel"
343c2d7ef51SJames Hogan	depends on MIPS_EJTAG_FDC_KGDB
344c2d7ef51SJames Hogan	range 2 15
345c2d7ef51SJames Hogan	default 3
346c2d7ef51SJames Hogan	help
347c2d7ef51SJames Hogan	  FDC channel number to use for KGDB.
348c2d7ef51SJames Hogan
349a91bd622SPetr Mladekconfig NULL_TTY
350a91bd622SPetr Mladek	tristate "NULL TTY driver"
351a91bd622SPetr Mladek	help
352a91bd622SPetr Mladek	  Say Y here if you want a NULL TTY which simply discards messages.
353a91bd622SPetr Mladek
354a91bd622SPetr Mladek	  This is useful to allow userspace applications which expect a console
355a91bd622SPetr Mladek	  device to work without modifications even when no console is
356a91bd622SPetr Mladek	  available or desired.
357a91bd622SPetr Mladek
358a91bd622SPetr Mladek	  In order to use this driver, you should redirect the console to this
359a91bd622SPetr Mladek	  TTY, or boot the kernel with console=ttynull.
360a91bd622SPetr Mladek
361a91bd622SPetr Mladek	  If unsure, say N.
362a91bd622SPetr Mladek
36355bd2133SJag Ramanconfig VCC
36455bd2133SJag Raman	tristate "Sun Virtual Console Concentrator"
36555bd2133SJag Raman	depends on SUN_LDOMS
36655bd2133SJag Raman	help
36755bd2133SJag Raman	  Support for Sun logical domain consoles.
3687c0cca7cSGreg Kroah-Hartman
36900e37543SRandy Dunlapsource "drivers/tty/hvc/Kconfig"
37000e37543SRandy Dunlap
371*7c0408d8SArnaud Pouliquenconfig RPMSG_TTY
372*7c0408d8SArnaud Pouliquen	tristate "RPMSG tty driver"
373*7c0408d8SArnaud Pouliquen	depends on RPMSG
374*7c0408d8SArnaud Pouliquen	help
375*7c0408d8SArnaud Pouliquen	  Say y here to export rpmsg endpoints as tty devices, usually found
376*7c0408d8SArnaud Pouliquen	  in /dev/ttyRPMSGx.
377*7c0408d8SArnaud Pouliquen	  This makes it possible for user-space programs to send and receive
378*7c0408d8SArnaud Pouliquen	  rpmsg messages as a standard tty protocol.
379*7c0408d8SArnaud Pouliquen
380*7c0408d8SArnaud Pouliquen	  To compile this driver as a module, choose M here: the module will be
381*7c0408d8SArnaud Pouliquen	  called rpmsg_tty.
382*7c0408d8SArnaud Pouliquen
3834f73bc4dSJoe Millenbachendif # TTY
38400e37543SRandy Dunlap
38500e37543SRandy Dunlapsource "drivers/tty/serdev/Kconfig"
386