blob: f6425a530e57afcbe667088ae08a4fc634a91383 [file] [log] [blame]
Masahiro Yamadacc85b7b2015-07-26 02:46:26 +09001#
2# Serial device configuration
3#
4
Simon Glass388f78e2021-08-08 12:20:13 -06005menuconfig SERIAL
6 bool "Serial"
7 default y
8 help
9 Enable support for serial drivers. This allows use of a serial UART
10 for displaying messages while U-Boot is running. It also brings in
11 printf() and panic() functions. This should normally be enabled
12 unless there are space reasons not to. If you just need to disable
13 the console you can adjust the stdout environment variable or use
14 SILENT_CONSOLE.
15
16if SERIAL
Masahiro Yamadacc85b7b2015-07-26 02:46:26 +090017
Philipp Tomsich29c8bc02017-03-17 20:34:53 +010018config BAUDRATE
19 int "Default baudrate"
20 default 115200
21 help
22 Select a default baudrate, where "default" has a driver-specific
23 meaning of either setting the baudrate for the early debug UART
24 in the SPL stage (most drivers) or for choosing a default baudrate
25 in the absence of an environment setting (serial_mxc.c).
26
Hans de Goede04f80942015-08-08 17:45:18 +020027config REQUIRE_SERIAL_CONSOLE
28 bool "Require a serial port for console"
29 # Running without a serial console is not supported by the
30 # non-dm serial code
31 depends on DM_SERIAL
32 default y
33 help
34 Require a serial port for the console, and panic if none is found
35 during serial port initialization (default y). Set this to n on
36 boards which have no debug serial port whatsoever.
37
Tom Rinie69ba982018-03-06 19:02:27 -050038config SPECIFY_CONSOLE_INDEX
39 bool "Specify the port number used for console"
40 default y if !DM_SERIAL || (SPL && !SPL_DM_SERIAL) || \
41 (TPL && !TPL_DM_SERIAL)
42 help
43 In various cases, we need to specify which of the UART devices that
44 a board or SoC has available are to be used for the console device
45 in U-Boot.
46
Simon Glass30a13492015-12-13 21:36:58 -070047config SERIAL_PRESENT
48 bool "Provide a serial driver"
49 depends on DM_SERIAL
50 default y
51 help
52 In very space-constrained devices even the full UART driver is too
53 large. In this case the debug UART can still be used in some cases.
54 This option enables the full UART in U-Boot, so if is it disabled,
55 the full UART driver will be omitted, thus saving space.
56
57config SPL_SERIAL_PRESENT
58 bool "Provide a serial driver in SPL"
Adam Fordac4d80e2019-08-24 13:50:34 -050059 depends on DM_SERIAL && SPL
Simon Glass30a13492015-12-13 21:36:58 -070060 default y
61 help
62 In very space-constrained devices even the full UART driver is too
63 large. In this case the debug UART can still be used in some cases.
64 This option enables the full UART in SPL, so if is it disabled,
65 the full UART driver will be omitted, thus saving space.
66
Simon Glass60573922018-10-01 12:22:20 -060067config TPL_SERIAL_PRESENT
68 bool "Provide a serial driver in TPL"
Adam Fordac4d80e2019-08-24 13:50:34 -050069 depends on DM_SERIAL && TPL
Simon Glass60573922018-10-01 12:22:20 -060070 default y
71 help
72 In very space-constrained devices even the full UART driver is too
73 large. In this case the debug UART can still be used in some cases.
74 This option enables the full UART in TPL, so if is it disabled,
75 the full UART driver will be omitted, thus saving space.
76
Simon Glasse7ca7da2022-04-30 00:56:53 -060077config VPL_SERIAL_PRESENT
78 bool "Provide a serial driver in VPL"
79 depends on DM_SERIAL && VPL
80 default y
81 help
82 In very space-constrained devices even the full UART driver is too
83 large. In this case the debug UART can still be used in some cases.
84 This option enables the full UART in TPL, so if is it disabled,
85 the full UART driver will be omitted, thus saving space.
86
Tom Rinie69ba982018-03-06 19:02:27 -050087# Logic to allow us to use the imply keyword to set what the default port
88# should be. The default is otherwise 1.
89config CONS_INDEX_0
90 bool
91
92config CONS_INDEX_2
93 bool
94
95config CONS_INDEX_3
96 bool
97
98config CONS_INDEX_4
99 bool
100
101config CONS_INDEX_5
102 bool
103
104config CONS_INDEX_6
105 bool
106
Mylène Josserand80b96442017-04-02 12:59:11 +0200107config CONS_INDEX
108 int "UART used for console"
Tom Rinie69ba982018-03-06 19:02:27 -0500109 depends on SPECIFY_CONSOLE_INDEX
110 range 0 6
111 default 0 if CONS_INDEX_0
112 default 2 if CONS_INDEX_2
113 default 3 if CONS_INDEX_3
114 default 4 if CONS_INDEX_4
115 default 5 if CONS_INDEX_5
116 default 6 if CONS_INDEX_6
Mylène Josserand80b96442017-04-02 12:59:11 +0200117 default 1
118 help
Tom Rinie69ba982018-03-06 19:02:27 -0500119 Set this to match the UART number of the serial console.
Mylène Josserand80b96442017-04-02 12:59:11 +0200120
Masahiro Yamada57ad8ee2014-10-23 22:26:09 +0900121config DM_SERIAL
122 bool "Enable Driver Model for serial drivers"
123 depends on DM
Sean Anderson08c854a2019-12-17 21:40:09 -0500124 select SYS_MALLOC_F
Masahiro Yamada57ad8ee2014-10-23 22:26:09 +0900125 help
Simon Glassd8b771d2015-02-05 21:41:35 -0700126 Enable driver model for serial. This replaces
127 drivers/serial/serial.c with the serial uclass, which
128 implements serial_putc() etc. The uclass interface is
129 defined in include/serial.h.
Masahiro Yamada4261c642014-10-23 22:26:11 +0900130
Stefan Roese02072832017-08-16 17:37:16 +0200131config SERIAL_RX_BUFFER
132 bool "Enable RX buffer for serial input"
133 depends on DM_SERIAL
134 help
135 Enable RX buffer support for the serial driver. This enables
136 pasting longer strings, even when the RX FIFO of the UART is
137 not big enough (e.g. 16 bytes on the normal NS16550).
138
139config SERIAL_RX_BUFFER_SIZE
140 int "RX buffer size"
141 depends on SERIAL_RX_BUFFER
142 default 256
143 help
144 The size of the RX buffer (needs to be power of 2)
145
Sean Andersonaa22f972022-03-22 16:59:34 -0400146config SERIAL_PUTS
147 bool "Enable printing strings all at once"
148 depends on DM_SERIAL
149 help
150 Some serial drivers are much more efficient when printing multiple
151 characters at once rather than printing characters individually. This
152 can be because they can load a fifo, or because individual print
153 calls have a constant overhead. With this option set, the serial
154 subsystem will try to provide serial drivers with as many characters
155 at once as possible, instead of printing characters one by one. Most
156 serial drivers do not need this config to print efficiently. If
157 unsure, say N.
158
Alexander Grafc8bda542018-01-29 13:57:20 +0100159config SERIAL_SEARCH_ALL
160 bool "Search for serial devices after default one failed"
161 depends on DM_SERIAL
162 help
163 The serial subsystem only searches for a single serial device
164 that was instantiated, but does not check whether it was probed
165 correctly. With this option set, we make successful probing
166 mandatory and search for fallback serial devices if the default
167 device does not work.
168
169 If unsure, say N.
170
Vabhav Sharma42149c92020-12-09 10:42:04 +0530171config SERIAL_PROBE_ALL
172 bool "Probe all available serial devices"
173 depends on DM_SERIAL
Vabhav Sharma42149c92020-12-09 10:42:04 +0530174 help
175 The serial subsystem only probes for a single serial device,
176 but does not probe for other remaining serial devices.
177 With this option set, we make probing and searching for
178 all available devices optional.
179 Normally, U-Boot talks to one serial port at a time, but SBSA
180 compliant UART devices like PL011 require initialization
181 by firmware and to let the kernel use serial port for sending
182 and receiving the characters.
183
184 If unsure, say N.
185
Simon Glassf9512aa2017-04-02 09:50:32 -0600186config SPL_DM_SERIAL
Heiko Schocherb0b588f2017-06-21 06:23:10 +0200187 bool "Enable Driver Model for serial drivers in SPL"
Tom Rinie69ba982018-03-06 19:02:27 -0500188 depends on DM_SERIAL && SPL_DM
Sean Anderson08c854a2019-12-17 21:40:09 -0500189 select SYS_SPL_MALLOC_F
Tom Rinie69ba982018-03-06 19:02:27 -0500190 default y
Simon Glassf9512aa2017-04-02 09:50:32 -0600191 help
192 Enable driver model for serial in SPL. This replaces
193 drivers/serial/serial.c with the serial uclass, which
194 implements serial_putc() etc. The uclass interface is
195 defined in include/serial.h.
196
197config TPL_DM_SERIAL
Heiko Schocherb0b588f2017-06-21 06:23:10 +0200198 bool "Enable Driver Model for serial drivers in TPL"
Thomas Hebbc850c6a2019-11-10 08:23:55 -0800199 depends on DM_SERIAL && TPL_DM
Sean Anderson08c854a2019-12-17 21:40:09 -0500200 select SYS_TPL_MALLOC_F
Simon Glassf9512aa2017-04-02 09:50:32 -0600201 default y if TPL && DM_SERIAL
202 help
203 Enable driver model for serial in TPL. This replaces
204 drivers/serial/serial.c with the serial uclass, which
205 implements serial_putc() etc. The uclass interface is
206 defined in include/serial.h.
207
Simon Glasse7ca7da2022-04-30 00:56:53 -0600208config VPL_DM_SERIAL
209 bool "Enable Driver Model for serial drivers in VPL"
210 depends on DM_SERIAL
211 default y if VPL && DM_SERIAL
212 help
213 Enable driver model for serial in VPL. This replaces
214 drivers/serial/serial.c with the serial uclass, which
215 implements serial_putc() etc. The uclass interface is
216 defined in include/serial.h.
217
Simon Glassbac6fd82015-01-26 18:27:07 -0700218config DEBUG_UART
219 bool "Enable an early debug UART for debugging"
220 help
221 The debug UART is intended for use very early in U-Boot to debug
222 problems when an ICE or other debug mechanism is not available.
223
224 To use it you should:
225 - Make sure your UART supports this interface
226 - Enable CONFIG_DEBUG_UART
227 - Enable the CONFIG for your UART to tell it to provide this interface
228 (e.g. CONFIG_DEBUG_UART_NS16550)
229 - Define the required settings as needed (see below)
230 - Call debug_uart_init() before use
231 - Call debug_uart_putc() to output a character
232
233 Depending on your platform it may be possible to use this UART before
234 a stack is available.
235
236 If your UART does not support this interface you can probably add
237 support quite easily. Remember that you cannot use driver model and
238 it is preferred to use no stack.
239
240 You must not use this UART once driver model is working and the
241 serial drivers are up and running (done in serial_init()). Otherwise
242 the drivers may conflict and you will get strange output.
243
Simon Glass27afb522015-01-26 18:27:09 -0700244choice
245 prompt "Select which UART will provide the debug UART"
246 depends on DEBUG_UART
Thomas Choud0738412015-11-19 21:48:03 +0800247 default DEBUG_UART_NS16550
Simon Glass27afb522015-01-26 18:27:09 -0700248
Thomas Chou26066df2015-10-23 07:36:37 +0800249config DEBUG_UART_ALTERA_JTAGUART
250 bool "Altera JTAG UART"
Michal Simek8da3a6b2020-05-28 12:05:12 +0200251 depends on ALTERA_JTAG_UART
Thomas Chou26066df2015-10-23 07:36:37 +0800252 help
253 Select this to enable a debug UART using the altera_jtag_uart driver.
254 You will need to provide parameters to make this work. The driver will
255 be available until the real driver model serial is running.
256
Thomas Chou6917a5d2015-10-21 21:26:54 +0800257config DEBUG_UART_ALTERA_UART
258 bool "Altera UART"
Michal Simek8da3a6b2020-05-28 12:05:12 +0200259 depends on ALTERA_UART
Thomas Chou6917a5d2015-10-21 21:26:54 +0800260 help
261 Select this to enable a debug UART using the altera_uart driver.
262 You will need to provide parameters to make this work. The driver will
263 be available until the real driver model serial is running.
264
Wills Wangcb48c6d2016-03-16 16:59:57 +0800265config DEBUG_UART_AR933X
266 bool "QCA/Atheros ar933x"
267 depends on AR933X_UART
268 help
269 Select this to enable a debug UART using the ar933x uart driver.
270 You will need to provide parameters to make this work. The
271 driver will be available until the real driver model serial is
272 running.
273
Alexey Brodkineede1672018-05-21 16:42:07 +0300274config DEBUG_ARC_SERIAL
275 bool "ARC UART"
276 depends on ARC_SERIAL
277 help
278 Select this to enable a debug UART using the ARC UART driver.
279 You will need to provide parameters to make this work. The
280 driver will be available until the real driver model serial is
281 running.
282
Wenyou Yang6b611e62016-10-17 09:49:55 +0800283config DEBUG_UART_ATMEL
284 bool "Atmel USART"
Michal Simek8da3a6b2020-05-28 12:05:12 +0200285 depends on ATMEL_USART
Wenyou Yang6b611e62016-10-17 09:49:55 +0800286 help
287 Select this to enable a debug UART using the atmel usart driver. You
288 will need to provide parameters to make this work. The driver will
289 be available until the real driver-model serial is running.
290
Álvaro Fernández Rojas842cfaf2017-04-25 00:39:16 +0200291config DEBUG_UART_BCM6345
292 bool "BCM6345 UART"
293 depends on BCM6345_SERIAL
294 help
295 Select this to enable a debug UART on BCM6345 SoCs. You
296 will need to provide parameters to make this work. The driver will
297 be available until the real driver model serial is running.
298
Simon Glass27afb522015-01-26 18:27:09 -0700299config DEBUG_UART_NS16550
300 bool "ns16550"
Michal Simek8da3a6b2020-05-28 12:05:12 +0200301 depends on SYS_NS16550
Simon Glass27afb522015-01-26 18:27:09 -0700302 help
303 Select this to enable a debug UART using the ns16550 driver. You
304 will need to provide parameters to make this work. The driver will
305 be available until the real driver model serial is running.
306
Simon Glass5a991bd2015-08-04 12:33:40 -0600307config DEBUG_EFI_CONSOLE
308 bool "EFI"
309 depends on EFI_APP
310 help
311 Select this to enable a debug console which calls back to EFI to
312 output to the console. This can be useful for early debugging of
313 U-Boot when running on top of EFI (Extensive Firmware Interface).
314 This is a type of BIOS used by PCs.
315
Samuel Holland4c33c262021-09-12 10:56:09 -0500316config DEBUG_SBI_CONSOLE
317 bool "SBI"
318 depends on SBI_V01
319 help
320 Select this to enable a debug console which calls back to SBI to
321 output to the console. This can be useful for early debugging of
322 U-Boot when running on top of SBI (Supervisor Binary Interface).
323
Simon Glass74afb292015-07-02 18:15:54 -0600324config DEBUG_UART_S5P
325 bool "Samsung S5P"
Mark Kettenis835cb5d2021-10-23 16:58:04 +0200326 depends on ARCH_APPLE || ARCH_EXYNOS || ARCH_S5PC1XX
Simon Glass74afb292015-07-02 18:15:54 -0600327 help
328 Select this to enable a debug UART using the serial_s5p driver. You
329 will need to provide parameters to make this work. The driver will
330 be available until the real driver-model serial is running.
331
Dzmitry Sankouskif5be5c82021-10-17 13:44:27 +0300332config DEBUG_UART_MSM_GENI
333 bool "Qualcomm snapdragon"
334 depends on ARCH_SNAPDRAGON
335 help
336 Select this to enable a debug UART using the serial_msm driver. You
337 will need to provide parameters to make this work. The driver will
338 be available until the real driver-model serial is running.
339
Beniamino Galvanid1037e42016-05-08 08:30:16 +0200340config DEBUG_UART_MESON
341 bool "Amlogic Meson"
342 depends on MESON_SERIAL
343 help
344 Select this to enable a debug UART using the serial_meson driver. You
345 will need to provide parameters to make this work. The driver will
346 be available until the real driver-model serial is running.
347
Michal Simek8af618b2015-12-14 16:55:10 +0100348config DEBUG_UART_UARTLITE
349 bool "Xilinx Uartlite"
Michal Simek8da3a6b2020-05-28 12:05:12 +0200350 depends on XILINX_UARTLITE
Michal Simek8af618b2015-12-14 16:55:10 +0100351 help
352 Select this to enable a debug UART using the serial_uartlite driver.
353 You will need to provide parameters to make this work. The driver will
354 be available until the real driver-model serial is running.
355
Michal Simekb3cc2602016-02-23 10:02:28 +0100356config DEBUG_UART_ARM_DCC
357 bool "ARM DCC"
Michal Simek8da3a6b2020-05-28 12:05:12 +0200358 depends on ARM_DCC
Michal Simekb3cc2602016-02-23 10:02:28 +0100359 help
360 Select this to enable a debug UART using the ARM JTAG DCC port.
361 The DCC port can be used for very early debugging and doesn't require
362 any additional setting like address/baudrate/clock. On systems without
363 any serial interface this is the easiest way how to get console.
364 Every ARM core has own DCC port which is the part of debug interface.
365 This port is available at least on ARMv6, ARMv7, ARMv8 and XScale
366 architectures.
367
Stefan Roese027276a2016-05-17 16:36:00 +0200368config DEBUG_MVEBU_A3700_UART
369 bool "Marvell Armada 3700"
Michal Simek8da3a6b2020-05-28 12:05:12 +0200370 depends on MVEBU_A3700_UART
Stefan Roese027276a2016-05-17 16:36:00 +0200371 help
372 Select this to enable a debug UART using the serial_mvebu driver. You
373 will need to provide parameters to make this work. The driver will
374 be available until the real driver-model serial is running.
375
Simon Glass091f6a32015-10-17 19:41:22 -0600376config DEBUG_UART_ZYNQ
377 bool "Xilinx Zynq"
Michal Simek8da3a6b2020-05-28 12:05:12 +0200378 depends on ZYNQ_SERIAL
Simon Glass091f6a32015-10-17 19:41:22 -0600379 help
Michal Simek49e12762015-12-01 14:29:34 +0100380 Select this to enable a debug UART using the serial_zynq driver. You
Simon Glass091f6a32015-10-17 19:41:22 -0600381 will need to provide parameters to make this work. The driver will
382 be available until the real driver-model serial is running.
383
Francois Retiefd18eb7b2015-10-29 12:55:34 +0200384config DEBUG_UART_APBUART
385 depends on LEON3
386 bool "Gaisler APBUART"
387 help
388 Select this to enable a debug UART using the serial_leon3 driver. You
389 will need to provide parameters to make this work. The driver will
390 be available until the real driver model serial is running.
391
Sergey Temerkhanov5710d7e2015-10-14 09:54:24 -0700392config DEBUG_UART_PL010
393 bool "pl010"
Tom Rini0ba2f372021-05-22 08:47:08 -0400394 depends on PL01X_SERIAL
Sergey Temerkhanov5710d7e2015-10-14 09:54:24 -0700395 help
396 Select this to enable a debug UART using the pl01x driver with the
397 PL010 UART type. You will need to provide parameters to make this
398 work. The driver will be available until the real driver model
399 serial is running.
400
401config DEBUG_UART_PL011
402 bool "pl011"
Michal Simekceedd3a2021-06-24 13:36:23 +0200403 depends on PL01X_SERIAL || PL011_SERIAL
Sergey Temerkhanov5710d7e2015-10-14 09:54:24 -0700404 help
405 Select this to enable a debug UART using the pl01x driver with the
406 PL011 UART type. You will need to provide parameters to make this
407 work. The driver will be available until the real driver model
408 serial is running.
409
Paul Thacker1dc42832016-01-28 15:30:14 +0530410config DEBUG_UART_PIC32
411 bool "Microchip PIC32"
412 depends on PIC32_SERIAL
413 help
414 Select this to enable a debug UART using the serial_pic32 driver. You
415 will need to provide parameters to make this work. The driver will
416 be available until the real driver model serial is running.
417
Jagan Tekicf6db162017-06-06 05:31:51 +0000418config DEBUG_UART_MXC
419 bool "IMX Serial port"
420 depends on MXC_UART
421 help
422 Select this to enable a debug UART using the serial_mxc driver. You
423 will need to provide parameters to make this work. The driver will
424 be available until the real driver model serial is running.
425
Simon Glasse3057f32018-10-01 11:55:15 -0600426config DEBUG_UART_SANDBOX
427 bool "sandbox"
428 depends on SANDBOX_SERIAL
429 help
430 Select this to enable the debug UART using the sandbox driver. This
431 provides basic serial output from the console without needing to
432 start up driver model. The driver will be available until the real
433 driver model serial is running.
434
Sean Andersond4f131a2022-03-22 16:59:24 -0400435config DEBUG_UART_SEMIHOSTING
436 bool "semihosting"
437 depends on SEMIHOSTING_SERIAL
438 help
439 Select this to enable the debug UART using the semihosting driver.
440 This provides basic serial output from the console without needing to
441 start up driver model. The driver will be available until the real
442 driver model serial is running.
443
Anup Patel4b1d68f2018-12-15 11:35:15 +0530444config DEBUG_UART_SIFIVE
445 bool "SiFive UART"
Michal Simekf0410172020-07-10 12:41:13 +0200446 depends on SIFIVE_SERIAL
Anup Patel4b1d68f2018-12-15 11:35:15 +0530447 help
448 Select this to enable a debug UART using the serial_sifive driver. You
449 will need to provide parameters to make this work. The driver will
450 be available until the real driver-model serial is running.
451
Patrick Delaunayab8e5d22018-05-17 14:50:42 +0200452config DEBUG_UART_STM32
453 bool "STMicroelectronics STM32"
454 depends on STM32_SERIAL
455 help
456 Select this to enable a debug UART using the serial_stm32 driver
457 You will need to provide parameters to make this work.
458 The driver will be available until the real driver model
459 serial is running.
460
Masahiro Yamada52f0c512016-03-18 16:41:52 +0900461config DEBUG_UART_UNIPHIER
462 bool "UniPhier on-chip UART"
463 depends on ARCH_UNIPHIER
464 help
465 Select this to enable a debug UART using the UniPhier on-chip UART.
466 You will need to provide DEBUG_UART_BASE to make this work. The
467 driver will be available until the real driver-model serial is
468 running.
469
Lokesh Vutla771d69c2017-04-22 15:57:25 +0530470config DEBUG_UART_OMAP
471 bool "OMAP uart"
Michal Simek8da3a6b2020-05-28 12:05:12 +0200472 depends on OMAP_SERIAL
Lokesh Vutla771d69c2017-04-22 15:57:25 +0530473 help
474 Select this to enable a debug UART using the omap ns16550 driver.
475 You will need to provide parameters to make this work. The driver
476 will be available until the real driver model serial is running.
477
developer90af58f2018-11-15 10:08:02 +0800478config DEBUG_UART_MTK
479 bool "MediaTek High-speed UART"
480 depends on MTK_SERIAL
481 help
482 Select this to enable a debug UART using the MediaTek High-speed
483 UART driver.
484 You will need to provide parameters to make this work. The
485 driver will be available until the real driver model serial is
486 running.
487
developere076b9e2020-11-12 16:36:05 +0800488config DEBUG_UART_MT7620
489 bool "UART driver for MediaTek MT7620 and earlier SoCs"
490 depends on MT7620_SERIAL
491 help
492 Select this to enable a debug UART using the UART driver for
493 MediaTek MT7620 and earlier SoCs.
494 You will need to provide parameters to make this work. The
495 driver will be available until the real driver model serial is
496 running.
497
Simon Glass27afb522015-01-26 18:27:09 -0700498endchoice
499
Simon Glassbac6fd82015-01-26 18:27:07 -0700500config DEBUG_UART_BASE
501 hex "Base address of UART"
Tom Riniae965f22020-10-23 09:15:55 -0400502 depends on DEBUG_UART
Samuel Holland4c33c262021-09-12 10:56:09 -0500503 default 0 if DEBUG_SBI_CONSOLE
Simon Glasse3057f32018-10-01 11:55:15 -0600504 default 0 if DEBUG_UART_SANDBOX
Simon Glassbac6fd82015-01-26 18:27:07 -0700505 help
506 This is the base address of your UART for memory-mapped UARTs.
507
508 A default should be provided by your board, but if not you will need
509 to use the correct value here.
510
Pali Rohárb4e29802022-05-06 11:05:15 +0200511config SPL_DEBUG_UART_BASE
512 hex "Base address of UART for SPL"
513 depends on SPL && DEBUG_UART
514 default DEBUG_UART_BASE
515 help
516 This is the base address of your UART for memory-mapped UARTs for SPL.
517
Pali Rohár784f5692022-05-16 18:49:09 +0200518config TPL_DEBUG_UART_BASE
519 hex "Base address of UART for TPL"
520 depends on TPL && DEBUG_UART
521 default DEBUG_UART_BASE
522 help
523 This is the base address of your UART for memory-mapped UARTs for TPL.
524
Simon Glassbac6fd82015-01-26 18:27:07 -0700525config DEBUG_UART_CLOCK
526 int "UART input clock"
Tom Riniae965f22020-10-23 09:15:55 -0400527 depends on DEBUG_UART
Samuel Holland4c33c262021-09-12 10:56:09 -0500528 default 0 if DEBUG_SBI_CONSOLE
Simon Glasse3057f32018-10-01 11:55:15 -0600529 default 0 if DEBUG_UART_SANDBOX
Marek Behún6e0e23c2021-07-09 17:40:59 +0200530 default 0 if DEBUG_MVEBU_A3700_UART
Simon Glassbac6fd82015-01-26 18:27:07 -0700531 help
532 The UART input clock determines the speed of the internal UART
533 circuitry. The baud rate is derived from this by dividing the input
534 clock down.
535
536 A default should be provided by your board, but if not you will need
537 to use the correct value here.
538
Simon Glass54111292015-02-27 22:06:25 -0700539config DEBUG_UART_SHIFT
540 int "UART register shift"
Tom Riniae965f22020-10-23 09:15:55 -0400541 depends on DEBUG_UART
Simon Glass54111292015-02-27 22:06:25 -0700542 default 0 if DEBUG_UART
543 help
544 Some UARTs (notably ns16550) support different register layouts
545 where the registers are spaced either as bytes, words or some other
546 value. Use this value to specify the shift to use, where 0=byte
547 registers, 2=32-bit word registers, etc.
548
Simon Glassc52be122015-10-18 19:51:24 -0600549config DEBUG_UART_BOARD_INIT
550 bool "Enable board-specific debug UART init"
551 depends on DEBUG_UART
552 help
553 Some boards need to set things up before the debug UART can be used.
554 On these boards a call to debug_uart_init() is insufficient. When
555 this option is enabled, the function board_debug_uart_init() will
556 be called when debug_uart_init() is called. You can put any code
557 here that is needed to set up the UART ready for use, such as set
558 pin multiplexing or enable clocks.
559
Simon Glass1f7338a2015-10-18 19:51:25 -0600560config DEBUG_UART_ANNOUNCE
561 bool "Show a message when the debug UART starts up"
562 depends on DEBUG_UART
563 help
564 Enable this option to show a message when the debug UART is ready
565 for use. You will see a message like "<debug_uart> " as soon as
566 U-Boot has the UART ready for use (i.e. your code calls
567 debug_uart_init()). This can be useful just as a check that
568 everything is working.
569
Sergey Temerkhanov5710d7e2015-10-14 09:54:24 -0700570config DEBUG_UART_SKIP_INIT
571 bool "Skip UART initialization"
Simon Goldschmidt03a96832019-01-09 20:27:09 +0100572 depends on DEBUG_UART
Sergey Temerkhanov5710d7e2015-10-14 09:54:24 -0700573 help
574 Select this if the UART you want to use for debug output is already
575 initialized by the time U-Boot starts its execution.
576
Simon Goldschmidte03ad212019-01-09 20:35:31 +0100577config DEBUG_UART_NS16550_CHECK_ENABLED
578 bool "Check if UART is enabled on output"
579 depends on DEBUG_UART
580 depends on DEBUG_UART_NS16550
581 help
582 Select this if puts()/putc() might be called before the debug UART
583 has been initialized. If this is disabled, putc() might sit in a
584 tight loop if it is called before debug_uart_init() has been called.
585
586 Note that this does not work for every ns16550-compatible UART and
587 so has to be enabled carefully or you might notice lost characters.
588
Thomas Chou26066df2015-10-23 07:36:37 +0800589config ALTERA_JTAG_UART
590 bool "Altera JTAG UART support"
591 depends on DM_SERIAL
592 help
593 Select this to enable an JTAG UART for Altera devices.The JTAG UART
594 core implements a method to communicate serial character streams
595 between a host PC and a Qsys system on an Altera FPGA. Please find
596 details on the "Embedded Peripherals IP User Guide" of Altera.
597
598config ALTERA_JTAG_UART_BYPASS
599 bool "Bypass output when no connection"
600 depends on ALTERA_JTAG_UART
601 help
602 Bypass console output and keep going even if there is no JTAG
603 terminal connection with the host. The console output will resume
604 once the JTAG terminal is connected. Without the bypass, the console
605 output will wait forever until a JTAG terminal is connected. If you
606 not are sure, say Y.
607
Thomas Chou6917a5d2015-10-21 21:26:54 +0800608config ALTERA_UART
609 bool "Altera UART support"
610 depends on DM_SERIAL
611 help
612 Select this to enable an UART for Altera devices. Please find
613 details on the "Embedded Peripherals IP User Guide" of Altera.
614
Wills Wangcb48c6d2016-03-16 16:59:57 +0800615config AR933X_UART
616 bool "QCA/Atheros ar933x UART support"
617 depends on DM_SERIAL && SOC_AR933X
618 help
619 Select this to enable UART support for QCA/Atheros ar933x
620 devices. This driver uses driver model and requires a device
621 tree binding to operate, please refer to the document at
622 doc/device-tree-bindings/serial/qca,ar9330-uart.txt.
623
Alexey Brodkinb9a0a422018-05-21 16:40:05 +0300624config ARC_SERIAL
625 bool "ARC UART support"
626 depends on DM_SERIAL
627 help
628 Select this to enable support for ARC UART now typically
629 only used in Synopsys DesignWare ARC simulators like nSIM.
630
Tom Rini0f73ac62020-06-02 17:26:33 -0400631config ARM_DCC
632 bool "ARM Debug Communication Channel (DCC) as UART support"
633 depends on ARM
634 help
635 Select this to enable using the ARM DCC as a form of UART.
636
Wenyou Yang58d44482016-10-17 09:49:54 +0800637config ATMEL_USART
638 bool "Atmel USART support"
639 help
640 Select this to enable USART support for Atmel SoCs. It can be
641 configured in the device tree, and input clock frequency can
642 be got from the clk node.
643
Stefan Roeseb1f3da82019-04-03 15:24:19 +0200644config SPL_UART_CLOCK
645 int "SPL fixed UART input clock"
646 depends on ATMEL_USART && SPL && !SPL_CLK
647 default 132096000 if ARCH_AT91
648 help
649 Provide a fixed clock value as input to the UART controller. This
650 might be needed on platforms which can't enable CONFIG_SPL_CLK
651 because of SPL image size restrictions.
652
Alexander Graf1b442952018-01-25 12:05:53 +0100653config BCM283X_MU_SERIAL
654 bool "Support for BCM283x Mini-UART"
655 depends on DM_SERIAL && ARCH_BCM283X
656 default y
657 help
658 Select this to enable Mini-UART support on BCM283X family of SoCs.
659
Alexander Grafa73b0ec2018-01-25 12:05:55 +0100660config BCM283X_PL011_SERIAL
661 bool "Support for BCM283x PL011 UART"
662 depends on PL01X_SERIAL && ARCH_BCM283X
663 default y
664 help
665 Select this to enable an overriding PL011 driver for BCM283X SoCs
666 that supports automatic disable, so that it only gets used when
667 the UART is actually muxed.
668
Álvaro Fernández Rojas842cfaf2017-04-25 00:39:16 +0200669config BCM6345_SERIAL
670 bool "Support for BCM6345 UART"
Álvaro Fernández Rojas4ab29872018-12-01 18:42:09 +0100671 depends on DM_SERIAL
Álvaro Fernández Rojas842cfaf2017-04-25 00:39:16 +0200672 help
673 Select this to enable UART on BCM6345 SoCs.
674
Simon Glass4d221072019-12-19 17:58:20 -0700675config COREBOOT_SERIAL
676 bool "Coreboot UART support"
677 depends on DM_SERIAL
678 default y if SYS_COREBOOT
679 select SYS_NS16550
680 help
681 Select this to enable a ns16550-style UART where the platform data
682 comes from the coreboot 'sysinfo' tables. This allows U-Boot to have
683 a serial console on any platform without needing to change the
684 device tree, etc.
685
Jason Liadca83a2020-01-30 12:34:58 -0800686config CORTINA_UART
687 bool "Cortina UART support"
688 depends on DM_SERIAL
689 help
690 Select this to enable UART support for Cortina-Access UART devices
691 found on CAxxxx SoCs.
692
Tuomas Tynkkynenf2c84702018-04-09 04:34:34 +0300693config FSL_LINFLEXUART
694 bool "Freescale Linflex UART support"
695 depends on DM_SERIAL
696 help
697 Select this to enable the Linflex serial module found on some
698 NXP SoCs like S32V234.
699
Bin Meng4409dcf2016-01-13 19:39:00 -0800700config FSL_LPUART
701 bool "Freescale LPUART support"
702 help
703 Select this to enable a Low Power UART for Freescale VF610 and
704 QorIQ Layerscape devices.
705
Tom Rini037415a2022-03-23 17:20:00 -0400706config LPUART
707 bool "Use the LPUART as console"
708 depends on FSL_LPUART
709
Stefan Roese027276a2016-05-17 16:36:00 +0200710config MVEBU_A3700_UART
711 bool "UART support for Armada 3700"
Stefan Roese027276a2016-05-17 16:36:00 +0200712 help
713 Choose this option to add support for UART driver on the Marvell
714 Armada 3700 SoC. The base address is configured via DT.
715
Angelo Dureghello6d542f32019-03-13 21:46:49 +0100716config MCFUART
717 bool "Freescale ColdFire UART support"
718 help
719 Choose this option to add support for UART driver on the ColdFire
720 SoC's family. The serial communication channel provides a full-duplex
721 asynchronous/synchronous receiver and transmitter deriving an
722 operating frequency from the internal bus clock or an external clock.
723
Jagan Tekia73597a2016-10-08 18:00:08 +0530724config MXC_UART
725 bool "IMX serial port support"
Tom Rinieac76b82021-09-09 07:54:50 -0400726 depends on ARCH_MX31 || MX5 || MX6 || MX7 || IMX8M
Jagan Tekia73597a2016-10-08 18:00:08 +0530727 help
728 If you have a machine based on a Motorola IMX CPU you
729 can enable its onboard serial port by enabling this option.
730
Keng Soon Cheah755e2d02017-08-24 20:29:07 -0700731config NULLDEV_SERIAL
732 bool "Null serial device"
733 help
734 Select this to enable null serial device support. A null serial
735 device merely acts as a placeholder for a serial device and does
736 nothing for all it's operation.
737
Paul Thacker1dc42832016-01-28 15:30:14 +0530738config PIC32_SERIAL
739 bool "Support for Microchip PIC32 on-chip UART"
740 depends on DM_SERIAL && MACH_PIC32
741 default y
742 help
743 Support for the UART found on Microchip PIC32 SoC's.
744
Thomas Choua6cec012015-11-19 21:48:14 +0800745config SYS_NS16550
746 bool "NS16550 UART or compatible"
747 help
748 Support NS16550 UART or compatible. This can be enabled in the
749 device tree with the correct input clock frequency. If the input
750 clock frequency is not defined in the device tree, the macro
751 CONFIG_SYS_NS16550_CLK defined in a legacy board header file will
752 be used. It can be a constant or a function to get clock, eg,
753 get_serial_clock().
754
Simon Glassf8b1a242019-12-19 17:58:18 -0700755config NS16550_DYNAMIC
756 bool "Allow NS16550 to be configured at runtime"
757 default y if SYS_COREBOOT || SYS_SLIMBOOTLOADER
758 help
759 Enable this option to allow device-tree control of the driver.
760
761 Normally this driver is controlled by the following options:
762
763 CONFIG_SYS_NS16550_PORT_MAPPED - indicates that port I/O is used for
764 access. If not enabled, then the UART is memory-mapped.
765 CONFIG_SYS_NS16550_MEM32 - if memory-mapped, indicates that 32-bit
766 access should be used (instead of 8-bit)
767 CONFIG_SYS_NS16550_REG_SIZE - indicates register width and also
768 endianness. If positive, big-endian access is used. If negative,
769 little-endian is used.
770
771 It is not a good practice for a driver to be statically configured,
772 since it prevents the same driver being used for different types of
773 UARTs in a system. This option avoids this problem at the cost of a
774 slightly increased code size.
775
Andy Shevchenkoc65a7fe2017-02-28 14:04:10 +0200776config INTEL_MID_SERIAL
777 bool "Intel MID platform UART support"
778 depends on DM_SERIAL && OF_CONTROL
779 depends on INTEL_MID
780 select SYS_NS16550
781 help
782 Select this to enable a UART for Intel MID platforms.
783 This uses the ns16550 driver as a library.
784
Alexander Graf65bfb422018-01-25 12:05:51 +0100785config PL011_SERIAL
786 bool "ARM PL011 driver"
787 depends on !DM_SERIAL
788 help
789 Select this to enable a UART for platforms using PL011.
790
Alexander Graf633ef892018-01-25 12:05:52 +0100791config PL01X_SERIAL
792 bool "ARM PL010 and PL011 driver"
793 depends on DM_SERIAL
794 help
795 Select this to enable a UART for platforms using PL010 or PL011.
796
Simon Glassb3068ad2016-07-04 11:58:24 -0600797config ROCKCHIP_SERIAL
798 bool "Rockchip on-chip UART support"
Johan Jonkere5adbb22022-04-09 18:55:14 +0200799 depends on DM_SERIAL
Johan Jonker40cb6612022-04-09 18:55:13 +0200800 select SYS_NS16550
Simon Glassb3068ad2016-07-04 11:58:24 -0600801 help
802 Select this to enable a debug UART for Rockchip devices when using
Johan Jonkere5adbb22022-04-09 18:55:14 +0200803 OF_PLATDATA (i.e. a compiled-in device tree replacemenmt).
Simon Glassb3068ad2016-07-04 11:58:24 -0600804 This uses the ns16550 driver, converting the platdata from of-platdata
805 to the ns16550 format.
806
Mark Kettenis3b9ad302021-02-12 23:22:18 +0100807config S5P_SERIAL
808 bool "Support for Samsung S5P UART"
Mark Kettenis835cb5d2021-10-23 16:58:04 +0200809 depends on ARCH_APPLE || ARCH_EXYNOS || ARCH_S5PC1XX
Mark Kettenis3b9ad302021-02-12 23:22:18 +0100810 default y
811 help
812 Select this to enable Samsung S5P UART support.
813
Simon Glass8579a512015-03-06 13:19:03 -0700814config SANDBOX_SERIAL
815 bool "Sandbox UART support"
Masahiro Yamadaa8318672015-08-28 20:14:21 +0900816 depends on SANDBOX
Sean Anderson85898852022-04-04 14:17:58 -0400817 imply SERIAL_PUTS
Simon Glass8579a512015-03-06 13:19:03 -0700818 help
819 Select this to enable a seral UART for sandbox. This is required to
820 operate correctly, otherwise you will see no serial output from
821 sandbox. The emulated UART will display to the console and console
822 input will be fed into the UART. This allows you to interact with
823 U-Boot.
824
825 The operation of the console is controlled by the -t command-line
826 flag. In raw mode, U-Boot sees all characters from the terminal
827 before they are processed, including Ctrl-C. In cooked mode, Ctrl-C
828 is processed by the terminal, and terminates U-Boot. Valid options
829 are:
830
831 -t raw-with-sigs Raw mode, Ctrl-C will terminate U-Boot
832 -t raw Raw mode, Ctrl-C is processed by U-Boot
833 -t cooked Cooked mode, Ctrl-C terminates
834
Marek Vasut2b2e4832017-07-21 23:18:46 +0200835config SCIF_CONSOLE
836 bool "Renesas SCIF UART support"
837 depends on SH || ARCH_RMOBILE
838 help
839 Select this to enable Renesas SCIF UART. To operate serial ports
840 on systems with RCar or SH SoCs, say Y to this option. If unsure,
841 say N.
842
Tom Rini83038892022-03-30 18:07:21 -0400843choice
844 prompt "SCIF console port"
845 depends on SCIF_CONSOLE && (!DM_SERIAL || (SPL && !SPL_DM_SERIAL))
846
847config CONS_SCIF0
848 bool "SCIF0"
849
850config CONS_SCIF1
851 bool "SCIF1"
852
853config CONS_SCIF2
854 bool "SCIF2"
855
856config CONS_SCIF4
857 bool "SCIF4"
858
859config CONS_SCIFA0
860 bool "SCIFA0"
861
862endchoice
863
Tom Rinica57d3b2022-03-30 18:07:22 -0400864config SH_SCIF_CLK_FREQ
865 int "SCIF console clock frequency"
866 depends on SCIF_CONSOLE && (!DM_SERIAL || (SPL && !SPL_DM_SERIAL))
867 default 65000000
868
Sean Andersond4f131a2022-03-22 16:59:24 -0400869config SEMIHOSTING_SERIAL
870 bool "Semihosting UART support"
871 depends on SEMIHOSTING && !SERIAL_RX_BUFFER
Sean Anderson760089a2022-04-04 14:18:00 -0400872 imply SERIAL_PUTS
Sean Andersond4f131a2022-03-22 16:59:24 -0400873 help
874 Select this to enable a serial UART using semihosting. Special halt
875 instructions will be issued which an external debugger (such as a
876 JTAG emulator) may interpret. The debugger will display U-Boot's
877 console output on the host system.
878
879 Enable this option only if you are using a debugger which supports
880 semihosting. If you are not using a debugger, this driver will halt
881 the boot.
882
Masahiro Yamada4261c642014-10-23 22:26:11 +0900883config UNIPHIER_SERIAL
Masahiro Yamada563ee4c2015-05-29 17:30:01 +0900884 bool "Support for UniPhier on-chip UART"
Masahiro Yamadaa8318672015-08-28 20:14:21 +0900885 depends on ARCH_UNIPHIER
Masahiro Yamadadf5fda02016-08-25 19:00:37 +0900886 default y
Masahiro Yamada4261c642014-10-23 22:26:11 +0900887 help
Masahiro Yamada563ee4c2015-05-29 17:30:01 +0900888 If you have a UniPhier based board and want to use the on-chip
889 serial ports, say Y to this option. If unsure, say N.
Simon Glass1c32bdb2015-07-27 15:47:23 -0600890
Michal Simek93ce5052015-12-09 12:50:05 +0100891config XILINX_UARTLITE
892 bool "Xilinx Uarlite support"
Michal Simek3239d712020-08-24 14:41:51 +0200893 depends on DM_SERIAL
Michal Simek93ce5052015-12-09 12:50:05 +0100894 help
895 If you have a Xilinx based board and want to use the uartlite
896 serial ports, say Y to this option. If unsure, say N.
897
Beniamino Galvanid1037e42016-05-08 08:30:16 +0200898config MESON_SERIAL
899 bool "Support for Amlogic Meson UART"
900 depends on DM_SERIAL && ARCH_MESON
901 help
902 If you have an Amlogic Meson based board and want to use the on-chip
903 serial ports, say Y to this option. If unsure, say N.
904
Mateusz Kulikowski8aac6972016-03-31 23:12:14 +0200905config MSM_SERIAL
906 bool "Qualcomm on-chip UART"
907 depends on DM_SERIAL
908 help
909 Support Data Mover UART used on Qualcomm Snapdragon SoCs.
910 It should support all Qualcomm devices with UARTDM version 1.4,
911 for example APQ8016 and MSM8916.
912 Single baudrate is supported in current implementation (115200).
Stefan Roese027276a2016-05-17 16:36:00 +0200913
Dzmitry Sankouskif5be5c82021-10-17 13:44:27 +0300914config MSM_GENI_SERIAL
915 bool "Qualcomm on-chip GENI UART"
916 help
917 Support UART based on Generic Interface (GENI) Serial Engine (SE),
918 used on Qualcomm Snapdragon SoCs. Should support all qualcomm SOCs
919 with Qualcomm Universal Peripheral (QUP) Wrapper cores,
920 i.e. newer ones, starting from SDM845.
921 Driver works in FIFO mode.
922 Multiple baudrates supported.
923
Stefan Roese09e90762021-04-07 09:12:31 +0200924config OCTEON_SERIAL_BOOTCMD
925 bool "MIPS Octeon PCI remote bootcmd input"
926 depends on ARCH_OCTEON
927 depends on DM_SERIAL
928 select SYS_IS_IN_ENV
929 select CONSOLE_MUX
930 help
931 This driver supports remote input over the PCIe bus from a host
932 to U-Boot for entering commands. It is utilized by the host
933 commands 'oct-remote-load' and 'oct-remote-bootcmd'.
934
Stefan Roese01452252021-04-07 09:12:30 +0200935config OCTEON_SERIAL_PCIE_CONSOLE
936 bool "MIPS Octeon PCIe remote console"
937 depends on ARCH_OCTEON
938 depends on (DM_SERIAL && DM_STDIO)
939 select SYS_STDIO_DEREGISTER
940 select SYS_CONSOLE_IS_IN_ENV
941 select CONSOLE_MUX
942 help
943 This driver supports remote console over the PCIe bus when the
944 Octeon is running in PCIe target mode. The host program
945 'oct-remote-console' can be used to connect to this console.
946 The console number will likely be 0 or 1.
947
Lokesh Vutla42cb4b82018-08-27 15:55:24 +0530948config OMAP_SERIAL
949 bool "Support for OMAP specific UART"
950 depends on DM_SERIAL
Lokesh Vutla9bdec002018-08-27 15:57:08 +0530951 default y if (ARCH_OMAP2PLUS || ARCH_K3)
Lokesh Vutla42cb4b82018-08-27 15:55:24 +0530952 select SYS_NS16550
953 help
954 If you have an TI based SoC and want to use the on-chip serial
955 port, say Y to this option. If unsure say N.
956
Manivannan Sadhasivam01e47392018-06-14 23:38:38 +0530957config OWL_SERIAL
958 bool "Actions Semi OWL UART"
959 depends on DM_SERIAL && ARCH_OWL
960 help
961 If you have a Actions Semi OWL based board and want to use the on-chip
962 serial port, say Y to this option. If unsure, say N.
963 Single baudrate is supported in current implementation (115200).
964
Marcel Ziswilercd22bf62016-11-14 21:40:25 +0100965config PXA_SERIAL
966 bool "PXA serial port support"
967 help
968 If you have a machine based on a Marvell XScale PXA2xx CPU you
969 can enable its onboard serial ports by enabling this option.
970
Anup Patelc0fe2842022-01-27 11:41:07 +0530971config HTIF_CONSOLE
972 bool "RISC-V HTIF console support"
973 depends on DM_SERIAL && 64BIT
974 help
975 Select this to enable host transfer interface (HTIF) based serial
976 console. The HTIF device is quite common in RISC-V emulators and
977 RISC-V ISS so this driver allows using U-Boot on such platforms.
978
Anup Patel4b1d68f2018-12-15 11:35:15 +0530979config SIFIVE_SERIAL
980 bool "SiFive UART support"
981 depends on DM_SERIAL
982 help
983 This driver supports the SiFive UART. If unsure say N.
984
Patrice Chotard42d742b2017-02-21 13:37:07 +0100985config STI_ASC_SERIAL
986 bool "STMicroelectronics on-chip UART"
987 depends on DM_SERIAL && ARCH_STI
988 help
989 Select this to enable Asynchronous Serial Controller available
990 on STiH410 SoC. This is a basic implementation, it supports
991 following baudrate 9600, 19200, 38400, 57600 and 115200.
992
Patrice Chotard9e276502018-01-12 09:23:49 +0100993config STM32_SERIAL
Patrice Chotard72cefd52017-07-26 15:48:39 +0200994 bool "STMicroelectronics STM32 SoCs on-chip UART"
Patrick Delaunay85b53972018-03-12 10:46:10 +0100995 depends on DM_SERIAL && (STM32F4 || STM32F7 || STM32H7 || ARCH_STM32MP)
Patrice Chotard72cefd52017-07-26 15:48:39 +0200996 help
Patrick Delaunay85b53972018-03-12 10:46:10 +0100997 If you have a machine based on a STM32 F4, F7, H7 or MP1 SOC
998 you can enable its onboard serial ports, say Y to this option.
Patrice Chotard3b2a14f2017-09-13 18:00:05 +0200999 If unsure, say N.
Patrice Chotard72cefd52017-07-26 15:48:39 +02001000
Michal Simekab754532017-11-06 09:16:05 +01001001config ZYNQ_SERIAL
1002 bool "Cadence (Xilinx Zynq) UART support"
Michal Simek3239d712020-08-24 14:41:51 +02001003 depends on DM_SERIAL
Michal Simekab754532017-11-06 09:16:05 +01001004 help
1005 This driver supports the Cadence UART. It is found e.g. in Xilinx
1006 Zynq/ZynqMP.
1007
developer90af58f2018-11-15 10:08:02 +08001008config MTK_SERIAL
1009 bool "MediaTek High-speed UART support"
1010 depends on DM_SERIAL
1011 help
1012 Select this to enable UART support for MediaTek High-speed UART
1013 devices. This driver uses driver model and requires a device
1014 tree binding to operate.
1015 The High-speed UART is compatible with the ns16550a UART and have
1016 its own high-speed registers.
1017
developere076b9e2020-11-12 16:36:05 +08001018config MT7620_SERIAL
1019 bool "UART driver for MediaTek MT7620 and earlier SoCs"
1020 depends on DM_SERIAL
1021 help
1022 Select this to enable UART support for MediaTek MT7620 and earlier
1023 SoCs. This driver uses driver model and requires a device tree
1024 binding to operate.
1025 The UART driver for MediaTek MT7620 and earlier SoCs is *NOT*
1026 compatible with the ns16550a UART.
1027
Christophe Leroy9ac4a542017-07-06 10:33:27 +02001028config MPC8XX_CONS
1029 bool "Console driver for MPC8XX"
Christophe Leroyb3510fb2018-03-16 17:20:41 +01001030 depends on MPC8xx
Christophe Leroy9ac4a542017-07-06 10:33:27 +02001031 default y
1032
Jim Liu1a2abf62022-04-19 13:32:21 +08001033config NPCM_SERIAL
1034 bool "Nuvoton NPCM UART driver"
1035 depends on DM_SERIAL
1036 help
1037 Select this to enable UART support for Nuvoton BMCs
1038 (NPCM7xx and NPCM8xx).
1039 The driver enables the onboard serial port with 8-N-1
1040 configuration.
1041
Peng Fan8162f8f2020-08-06 12:42:50 +03001042config XEN_SERIAL
1043 bool "XEN serial support"
1044 depends on XEN
1045 help
1046 If built without DM support, then requires Xen
1047 to be built with CONFIG_VERBOSE_DEBUG.
1048
Christophe Leroy9ac4a542017-07-06 10:33:27 +02001049choice
1050 prompt "Console port"
1051 default 8xx_CONS_SMC1
1052 depends on MPC8XX_CONS
1053 help
1054 Depending on board, select one serial port
1055 (CONFIG_8xx_CONS_SMC1 or CONFIG_8xx_CONS_SMC2)
1056
1057config 8xx_CONS_SMC1
1058 bool "SMC1"
1059
1060config 8xx_CONS_SMC2
1061 bool "SMC2"
1062
1063endchoice
1064
1065config SYS_SMC_RXBUFLEN
1066 int "Console Rx buffer length"
1067 depends on MPC8XX_CONS
1068 default 1
1069 help
1070 With CONFIG_SYS_SMC_RXBUFLEN it is possible to define
1071 the maximum receive buffer length for the SMC.
1072 This option is actual only for 8xx possible.
1073 If using CONFIG_SYS_SMC_RXBUFLEN also CONFIG_SYS_MAXIDLE
1074 must be defined, to setup the maximum idle timeout for
1075 the SMC.
1076
1077config SYS_MAXIDLE
1078 int "maximum idle timeout"
1079 depends on MPC8XX_CONS
1080 default 0
1081
1082config SYS_BRGCLK_PRESCALE
1083 int "BRG Clock Prescale"
1084 depends on MPC8XX_CONS
1085 default 1
1086
1087config SYS_SDSR
1088 hex "SDSR Value"
1089 depends on MPC8XX_CONS
1090 default 0x83
1091
1092config SYS_SDMR
1093 hex "SDMR Value"
1094 depends on MPC8XX_CONS
1095 default 0
1096
Simon Glass388f78e2021-08-08 12:20:13 -06001097endif