blob: 3bb5b02eabb3e6d637303c87d0eb374f504f36fc [file] [log] [blame]
Masahiro Yamada0b11dbf2015-07-26 02:46:26 +09001#
2# Serial device configuration
3#
4
Simon Glass52510482021-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 Yamada0b11dbf2015-07-26 02:46:26 +090017
Philipp Tomsichf40574e2017-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 Goede8c458582015-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 Rini6f6b7cf2018-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 Glass92c55b62015-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 Forda0746672019-08-24 13:50:34 -050059 depends on DM_SERIAL && SPL
Simon Glass92c55b62015-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 Glassaa0ffe82018-10-01 12:22:20 -060067config TPL_SERIAL_PRESENT
68 bool "Provide a serial driver in TPL"
Adam Forda0746672019-08-24 13:50:34 -050069 depends on DM_SERIAL && TPL
Simon Glassaa0ffe82018-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
Tom Rini6f6b7cf2018-03-06 19:02:27 -050077# Logic to allow us to use the imply keyword to set what the default port
78# should be. The default is otherwise 1.
79config CONS_INDEX_0
80 bool
81
82config CONS_INDEX_2
83 bool
84
85config CONS_INDEX_3
86 bool
87
88config CONS_INDEX_4
89 bool
90
91config CONS_INDEX_5
92 bool
93
94config CONS_INDEX_6
95 bool
96
Mylène Josserand7095f862017-04-02 12:59:11 +020097config CONS_INDEX
98 int "UART used for console"
Tom Rini6f6b7cf2018-03-06 19:02:27 -050099 depends on SPECIFY_CONSOLE_INDEX
100 range 0 6
101 default 0 if CONS_INDEX_0
102 default 2 if CONS_INDEX_2
103 default 3 if CONS_INDEX_3
104 default 4 if CONS_INDEX_4
105 default 5 if CONS_INDEX_5
106 default 6 if CONS_INDEX_6
Mylène Josserand7095f862017-04-02 12:59:11 +0200107 default 1
108 help
Tom Rini6f6b7cf2018-03-06 19:02:27 -0500109 Set this to match the UART number of the serial console.
Mylène Josserand7095f862017-04-02 12:59:11 +0200110
Masahiro Yamadada333ae2014-10-23 22:26:09 +0900111config DM_SERIAL
112 bool "Enable Driver Model for serial drivers"
113 depends on DM
Sean Anderson327bb3b2019-12-17 21:40:09 -0500114 select SYS_MALLOC_F
Masahiro Yamadada333ae2014-10-23 22:26:09 +0900115 help
Simon Glassf94a1be2015-02-05 21:41:35 -0700116 Enable driver model for serial. This replaces
117 drivers/serial/serial.c with the serial uclass, which
118 implements serial_putc() etc. The uclass interface is
119 defined in include/serial.h.
Masahiro Yamadaff247b72014-10-23 22:26:11 +0900120
Stefan Roese3ca7a062017-08-16 17:37:16 +0200121config SERIAL_RX_BUFFER
122 bool "Enable RX buffer for serial input"
123 depends on DM_SERIAL
124 help
125 Enable RX buffer support for the serial driver. This enables
126 pasting longer strings, even when the RX FIFO of the UART is
127 not big enough (e.g. 16 bytes on the normal NS16550).
128
129config SERIAL_RX_BUFFER_SIZE
130 int "RX buffer size"
131 depends on SERIAL_RX_BUFFER
132 default 256
133 help
134 The size of the RX buffer (needs to be power of 2)
135
Alexander Grafae5326a2018-01-29 13:57:20 +0100136config SERIAL_SEARCH_ALL
137 bool "Search for serial devices after default one failed"
138 depends on DM_SERIAL
139 help
140 The serial subsystem only searches for a single serial device
141 that was instantiated, but does not check whether it was probed
142 correctly. With this option set, we make successful probing
143 mandatory and search for fallback serial devices if the default
144 device does not work.
145
146 If unsure, say N.
147
Vabhav Sharma67b2ed02020-12-09 10:42:04 +0530148config SERIAL_PROBE_ALL
149 bool "Probe all available serial devices"
150 depends on DM_SERIAL
Vabhav Sharma67b2ed02020-12-09 10:42:04 +0530151 help
152 The serial subsystem only probes for a single serial device,
153 but does not probe for other remaining serial devices.
154 With this option set, we make probing and searching for
155 all available devices optional.
156 Normally, U-Boot talks to one serial port at a time, but SBSA
157 compliant UART devices like PL011 require initialization
158 by firmware and to let the kernel use serial port for sending
159 and receiving the characters.
160
161 If unsure, say N.
162
Simon Glass891f7ae2017-04-02 09:50:32 -0600163config SPL_DM_SERIAL
Heiko Schocher04249902017-06-21 06:23:10 +0200164 bool "Enable Driver Model for serial drivers in SPL"
Tom Rini6f6b7cf2018-03-06 19:02:27 -0500165 depends on DM_SERIAL && SPL_DM
Sean Anderson327bb3b2019-12-17 21:40:09 -0500166 select SYS_SPL_MALLOC_F
Tom Rini6f6b7cf2018-03-06 19:02:27 -0500167 default y
Simon Glass891f7ae2017-04-02 09:50:32 -0600168 help
169 Enable driver model for serial in SPL. This replaces
170 drivers/serial/serial.c with the serial uclass, which
171 implements serial_putc() etc. The uclass interface is
172 defined in include/serial.h.
173
174config TPL_DM_SERIAL
Heiko Schocher04249902017-06-21 06:23:10 +0200175 bool "Enable Driver Model for serial drivers in TPL"
Thomas Hebb6920f002019-11-10 08:23:55 -0800176 depends on DM_SERIAL && TPL_DM
Sean Anderson327bb3b2019-12-17 21:40:09 -0500177 select SYS_TPL_MALLOC_F
Simon Glass891f7ae2017-04-02 09:50:32 -0600178 default y if TPL && DM_SERIAL
179 help
180 Enable driver model for serial in TPL. This replaces
181 drivers/serial/serial.c with the serial uclass, which
182 implements serial_putc() etc. The uclass interface is
183 defined in include/serial.h.
184
Simon Glass2f964aa2015-01-26 18:27:07 -0700185config DEBUG_UART
186 bool "Enable an early debug UART for debugging"
187 help
188 The debug UART is intended for use very early in U-Boot to debug
189 problems when an ICE or other debug mechanism is not available.
190
191 To use it you should:
192 - Make sure your UART supports this interface
193 - Enable CONFIG_DEBUG_UART
194 - Enable the CONFIG for your UART to tell it to provide this interface
195 (e.g. CONFIG_DEBUG_UART_NS16550)
196 - Define the required settings as needed (see below)
197 - Call debug_uart_init() before use
198 - Call debug_uart_putc() to output a character
199
200 Depending on your platform it may be possible to use this UART before
201 a stack is available.
202
203 If your UART does not support this interface you can probably add
204 support quite easily. Remember that you cannot use driver model and
205 it is preferred to use no stack.
206
207 You must not use this UART once driver model is working and the
208 serial drivers are up and running (done in serial_init()). Otherwise
209 the drivers may conflict and you will get strange output.
210
Simon Glass21d00432015-01-26 18:27:09 -0700211choice
212 prompt "Select which UART will provide the debug UART"
213 depends on DEBUG_UART
Thomas Choub1e361b2015-11-19 21:48:03 +0800214 default DEBUG_UART_NS16550
Simon Glass21d00432015-01-26 18:27:09 -0700215
Thomas Chou220e8022015-10-23 07:36:37 +0800216config DEBUG_UART_ALTERA_JTAGUART
217 bool "Altera JTAG UART"
Michal Simek4cc24ae2020-05-28 12:05:12 +0200218 depends on ALTERA_JTAG_UART
Thomas Chou220e8022015-10-23 07:36:37 +0800219 help
220 Select this to enable a debug UART using the altera_jtag_uart driver.
221 You will need to provide parameters to make this work. The driver will
222 be available until the real driver model serial is running.
223
Thomas Chouda2f8382015-10-21 21:26:54 +0800224config DEBUG_UART_ALTERA_UART
225 bool "Altera UART"
Michal Simek4cc24ae2020-05-28 12:05:12 +0200226 depends on ALTERA_UART
Thomas Chouda2f8382015-10-21 21:26:54 +0800227 help
228 Select this to enable a debug UART using the altera_uart driver.
229 You will need to provide parameters to make this work. The driver will
230 be available until the real driver model serial is running.
231
Wills Wang60b49762016-03-16 16:59:57 +0800232config DEBUG_UART_AR933X
233 bool "QCA/Atheros ar933x"
234 depends on AR933X_UART
235 help
236 Select this to enable a debug UART using the ar933x uart driver.
237 You will need to provide parameters to make this work. The
238 driver will be available until the real driver model serial is
239 running.
240
Alexey Brodkin54705012018-05-21 16:42:07 +0300241config DEBUG_ARC_SERIAL
242 bool "ARC UART"
243 depends on ARC_SERIAL
244 help
245 Select this to enable a debug UART using the ARC UART driver.
246 You will need to provide parameters to make this work. The
247 driver will be available until the real driver model serial is
248 running.
249
Wenyou Yang998cf3c2016-10-17 09:49:55 +0800250config DEBUG_UART_ATMEL
251 bool "Atmel USART"
Michal Simek4cc24ae2020-05-28 12:05:12 +0200252 depends on ATMEL_USART
Wenyou Yang998cf3c2016-10-17 09:49:55 +0800253 help
254 Select this to enable a debug UART using the atmel usart driver. You
255 will need to provide parameters to make this work. The driver will
256 be available until the real driver-model serial is running.
257
Álvaro Fernández Rojas30581042017-04-25 00:39:16 +0200258config DEBUG_UART_BCM6345
259 bool "BCM6345 UART"
260 depends on BCM6345_SERIAL
261 help
262 Select this to enable a debug UART on BCM6345 SoCs. You
263 will need to provide parameters to make this work. The driver will
264 be available until the real driver model serial is running.
265
Simon Glass21d00432015-01-26 18:27:09 -0700266config DEBUG_UART_NS16550
267 bool "ns16550"
Michal Simek4cc24ae2020-05-28 12:05:12 +0200268 depends on SYS_NS16550
Simon Glass21d00432015-01-26 18:27:09 -0700269 help
270 Select this to enable a debug UART using the ns16550 driver. You
271 will need to provide parameters to make this work. The driver will
272 be available until the real driver model serial is running.
273
Simon Glass275854b2015-08-04 12:33:40 -0600274config DEBUG_EFI_CONSOLE
275 bool "EFI"
276 depends on EFI_APP
277 help
278 Select this to enable a debug console which calls back to EFI to
279 output to the console. This can be useful for early debugging of
280 U-Boot when running on top of EFI (Extensive Firmware Interface).
281 This is a type of BIOS used by PCs.
282
Simon Glassbf6e7022015-07-02 18:15:54 -0600283config DEBUG_UART_S5P
284 bool "Samsung S5P"
Michal Simek4cc24ae2020-05-28 12:05:12 +0200285 depends on ARCH_EXYNOS || ARCH_S5PC1XX
Simon Glassbf6e7022015-07-02 18:15:54 -0600286 help
287 Select this to enable a debug UART using the serial_s5p 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
Beniamino Galvanibfcef282016-05-08 08:30:16 +0200291config DEBUG_UART_MESON
292 bool "Amlogic Meson"
293 depends on MESON_SERIAL
294 help
295 Select this to enable a debug UART using the serial_meson driver. 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
Michal Simek4166ba32015-12-14 16:55:10 +0100299config DEBUG_UART_UARTLITE
300 bool "Xilinx Uartlite"
Michal Simek4cc24ae2020-05-28 12:05:12 +0200301 depends on XILINX_UARTLITE
Michal Simek4166ba32015-12-14 16:55:10 +0100302 help
303 Select this to enable a debug UART using the serial_uartlite driver.
304 You will need to provide parameters to make this work. The driver will
305 be available until the real driver-model serial is running.
306
Michal Simek966bfa72016-02-23 10:02:28 +0100307config DEBUG_UART_ARM_DCC
308 bool "ARM DCC"
Michal Simek4cc24ae2020-05-28 12:05:12 +0200309 depends on ARM_DCC
Michal Simek966bfa72016-02-23 10:02:28 +0100310 help
311 Select this to enable a debug UART using the ARM JTAG DCC port.
312 The DCC port can be used for very early debugging and doesn't require
313 any additional setting like address/baudrate/clock. On systems without
314 any serial interface this is the easiest way how to get console.
315 Every ARM core has own DCC port which is the part of debug interface.
316 This port is available at least on ARMv6, ARMv7, ARMv8 and XScale
317 architectures.
318
Stefan Roese6985d492016-05-17 16:36:00 +0200319config DEBUG_MVEBU_A3700_UART
320 bool "Marvell Armada 3700"
Michal Simek4cc24ae2020-05-28 12:05:12 +0200321 depends on MVEBU_A3700_UART
Stefan Roese6985d492016-05-17 16:36:00 +0200322 help
323 Select this to enable a debug UART using the serial_mvebu driver. You
324 will need to provide parameters to make this work. The driver will
325 be available until the real driver-model serial is running.
326
Simon Glassc54c0a42015-10-17 19:41:22 -0600327config DEBUG_UART_ZYNQ
328 bool "Xilinx Zynq"
Michal Simek4cc24ae2020-05-28 12:05:12 +0200329 depends on ZYNQ_SERIAL
Simon Glassc54c0a42015-10-17 19:41:22 -0600330 help
Michal Simek6bf87da2015-12-01 14:29:34 +0100331 Select this to enable a debug UART using the serial_zynq driver. You
Simon Glassc54c0a42015-10-17 19:41:22 -0600332 will need to provide parameters to make this work. The driver will
333 be available until the real driver-model serial is running.
334
Francois Retiefe43ce3f2015-10-29 12:55:34 +0200335config DEBUG_UART_APBUART
336 depends on LEON3
337 bool "Gaisler APBUART"
338 help
339 Select this to enable a debug UART using the serial_leon3 driver. You
340 will need to provide parameters to make this work. The driver will
341 be available until the real driver model serial is running.
342
Sergey Temerkhanov19de8152015-10-14 09:54:24 -0700343config DEBUG_UART_PL010
344 bool "pl010"
Tom Rinibc08dc52021-05-22 08:47:08 -0400345 depends on PL01X_SERIAL
Sergey Temerkhanov19de8152015-10-14 09:54:24 -0700346 help
347 Select this to enable a debug UART using the pl01x driver with the
348 PL010 UART type. You will need to provide parameters to make this
349 work. The driver will be available until the real driver model
350 serial is running.
351
352config DEBUG_UART_PL011
353 bool "pl011"
Michal Simek5e9d2832021-06-24 13:36:23 +0200354 depends on PL01X_SERIAL || PL011_SERIAL
Sergey Temerkhanov19de8152015-10-14 09:54:24 -0700355 help
356 Select this to enable a debug UART using the pl01x driver with the
357 PL011 UART type. You will need to provide parameters to make this
358 work. The driver will be available until the real driver model
359 serial is running.
360
Paul Thacker9e160ee2016-01-28 15:30:14 +0530361config DEBUG_UART_PIC32
362 bool "Microchip PIC32"
363 depends on PIC32_SERIAL
364 help
365 Select this to enable a debug UART using the serial_pic32 driver. You
366 will need to provide parameters to make this work. The driver will
367 be available until the real driver model serial is running.
368
Jagan Teki61366b72017-06-06 05:31:51 +0000369config DEBUG_UART_MXC
370 bool "IMX Serial port"
371 depends on MXC_UART
372 help
373 Select this to enable a debug UART using the serial_mxc driver. You
374 will need to provide parameters to make this work. The driver will
375 be available until the real driver model serial is running.
376
Simon Glassee441762018-10-01 11:55:15 -0600377config DEBUG_UART_SANDBOX
378 bool "sandbox"
379 depends on SANDBOX_SERIAL
380 help
381 Select this to enable the debug UART using the sandbox driver. This
382 provides basic serial output from the console without needing to
383 start up driver model. The driver will be available until the real
384 driver model serial is running.
385
Anup Patele2842492018-12-15 11:35:15 +0530386config DEBUG_UART_SIFIVE
387 bool "SiFive UART"
Michal Simek27b4a4a2020-07-10 12:41:13 +0200388 depends on SIFIVE_SERIAL
Anup Patele2842492018-12-15 11:35:15 +0530389 help
390 Select this to enable a debug UART using the serial_sifive driver. You
391 will need to provide parameters to make this work. The driver will
392 be available until the real driver-model serial is running.
393
Patrick Delaunay215c8be2018-05-17 14:50:42 +0200394config DEBUG_UART_STM32
395 bool "STMicroelectronics STM32"
396 depends on STM32_SERIAL
397 help
398 Select this to enable a debug UART using the serial_stm32 driver
399 You will need to provide parameters to make this work.
400 The driver will be available until the real driver model
401 serial is running.
402
Masahiro Yamadad5cf3292016-03-18 16:41:52 +0900403config DEBUG_UART_UNIPHIER
404 bool "UniPhier on-chip UART"
405 depends on ARCH_UNIPHIER
406 help
407 Select this to enable a debug UART using the UniPhier on-chip UART.
408 You will need to provide DEBUG_UART_BASE to make this work. The
409 driver will be available until the real driver-model serial is
410 running.
411
Lokesh Vutlaa52cf082017-04-22 15:57:25 +0530412config DEBUG_UART_OMAP
413 bool "OMAP uart"
Michal Simek4cc24ae2020-05-28 12:05:12 +0200414 depends on OMAP_SERIAL
Lokesh Vutlaa52cf082017-04-22 15:57:25 +0530415 help
416 Select this to enable a debug UART using the omap ns16550 driver.
417 You will need to provide parameters to make this work. The driver
418 will be available until the real driver model serial is running.
419
Ryder Lee849b1162018-11-15 10:08:02 +0800420config DEBUG_UART_MTK
421 bool "MediaTek High-speed UART"
422 depends on MTK_SERIAL
423 help
424 Select this to enable a debug UART using the MediaTek High-speed
425 UART driver.
426 You will need to provide parameters to make this work. The
427 driver will be available until the real driver model serial is
428 running.
429
Weijie Gao2161f1f2020-11-12 16:36:05 +0800430config DEBUG_UART_MT7620
431 bool "UART driver for MediaTek MT7620 and earlier SoCs"
432 depends on MT7620_SERIAL
433 help
434 Select this to enable a debug UART using the UART driver for
435 MediaTek MT7620 and earlier SoCs.
436 You will need to provide parameters to make this work. The
437 driver will be available until the real driver model serial is
438 running.
439
Simon Glass21d00432015-01-26 18:27:09 -0700440endchoice
441
Simon Glass2f964aa2015-01-26 18:27:07 -0700442config DEBUG_UART_BASE
443 hex "Base address of UART"
Tom Rini467591b2020-10-23 09:15:55 -0400444 depends on DEBUG_UART
Simon Glassee441762018-10-01 11:55:15 -0600445 default 0 if DEBUG_UART_SANDBOX
Simon Glass2f964aa2015-01-26 18:27:07 -0700446 help
447 This is the base address of your UART for memory-mapped UARTs.
448
449 A default should be provided by your board, but if not you will need
450 to use the correct value here.
451
452config DEBUG_UART_CLOCK
453 int "UART input clock"
Tom Rini467591b2020-10-23 09:15:55 -0400454 depends on DEBUG_UART
Simon Glassee441762018-10-01 11:55:15 -0600455 default 0 if DEBUG_UART_SANDBOX
Marek Behún4a8ad582021-07-09 17:40:59 +0200456 default 0 if DEBUG_MVEBU_A3700_UART
Simon Glass2f964aa2015-01-26 18:27:07 -0700457 help
458 The UART input clock determines the speed of the internal UART
459 circuitry. The baud rate is derived from this by dividing the input
460 clock down.
461
462 A default should be provided by your board, but if not you will need
463 to use the correct value here.
464
Simon Glassdd0b0122015-02-27 22:06:25 -0700465config DEBUG_UART_SHIFT
466 int "UART register shift"
Tom Rini467591b2020-10-23 09:15:55 -0400467 depends on DEBUG_UART
Simon Glassdd0b0122015-02-27 22:06:25 -0700468 default 0 if DEBUG_UART
469 help
470 Some UARTs (notably ns16550) support different register layouts
471 where the registers are spaced either as bytes, words or some other
472 value. Use this value to specify the shift to use, where 0=byte
473 registers, 2=32-bit word registers, etc.
474
Simon Glass0e977bc2015-10-18 19:51:24 -0600475config DEBUG_UART_BOARD_INIT
476 bool "Enable board-specific debug UART init"
477 depends on DEBUG_UART
478 help
479 Some boards need to set things up before the debug UART can be used.
480 On these boards a call to debug_uart_init() is insufficient. When
481 this option is enabled, the function board_debug_uart_init() will
482 be called when debug_uart_init() is called. You can put any code
483 here that is needed to set up the UART ready for use, such as set
484 pin multiplexing or enable clocks.
485
Simon Glassc7fefcb2015-10-18 19:51:25 -0600486config DEBUG_UART_ANNOUNCE
487 bool "Show a message when the debug UART starts up"
488 depends on DEBUG_UART
489 help
490 Enable this option to show a message when the debug UART is ready
491 for use. You will see a message like "<debug_uart> " as soon as
492 U-Boot has the UART ready for use (i.e. your code calls
493 debug_uart_init()). This can be useful just as a check that
494 everything is working.
495
Sergey Temerkhanov19de8152015-10-14 09:54:24 -0700496config DEBUG_UART_SKIP_INIT
497 bool "Skip UART initialization"
Simon Goldschmidt7828e3c2019-01-09 20:27:09 +0100498 depends on DEBUG_UART
Sergey Temerkhanov19de8152015-10-14 09:54:24 -0700499 help
500 Select this if the UART you want to use for debug output is already
501 initialized by the time U-Boot starts its execution.
502
Simon Goldschmidtc4448bd2019-01-09 20:35:31 +0100503config DEBUG_UART_NS16550_CHECK_ENABLED
504 bool "Check if UART is enabled on output"
505 depends on DEBUG_UART
506 depends on DEBUG_UART_NS16550
507 help
508 Select this if puts()/putc() might be called before the debug UART
509 has been initialized. If this is disabled, putc() might sit in a
510 tight loop if it is called before debug_uart_init() has been called.
511
512 Note that this does not work for every ns16550-compatible UART and
513 so has to be enabled carefully or you might notice lost characters.
514
Thomas Chou220e8022015-10-23 07:36:37 +0800515config ALTERA_JTAG_UART
516 bool "Altera JTAG UART support"
517 depends on DM_SERIAL
518 help
519 Select this to enable an JTAG UART for Altera devices.The JTAG UART
520 core implements a method to communicate serial character streams
521 between a host PC and a Qsys system on an Altera FPGA. Please find
522 details on the "Embedded Peripherals IP User Guide" of Altera.
523
524config ALTERA_JTAG_UART_BYPASS
525 bool "Bypass output when no connection"
526 depends on ALTERA_JTAG_UART
527 help
528 Bypass console output and keep going even if there is no JTAG
529 terminal connection with the host. The console output will resume
530 once the JTAG terminal is connected. Without the bypass, the console
531 output will wait forever until a JTAG terminal is connected. If you
532 not are sure, say Y.
533
Thomas Chouda2f8382015-10-21 21:26:54 +0800534config ALTERA_UART
535 bool "Altera UART support"
536 depends on DM_SERIAL
537 help
538 Select this to enable an UART for Altera devices. Please find
539 details on the "Embedded Peripherals IP User Guide" of Altera.
540
Wills Wang60b49762016-03-16 16:59:57 +0800541config AR933X_UART
542 bool "QCA/Atheros ar933x UART support"
543 depends on DM_SERIAL && SOC_AR933X
544 help
545 Select this to enable UART support for QCA/Atheros ar933x
546 devices. This driver uses driver model and requires a device
547 tree binding to operate, please refer to the document at
548 doc/device-tree-bindings/serial/qca,ar9330-uart.txt.
549
Alexey Brodkind7ac1852018-05-21 16:40:05 +0300550config ARC_SERIAL
551 bool "ARC UART support"
552 depends on DM_SERIAL
553 help
554 Select this to enable support for ARC UART now typically
555 only used in Synopsys DesignWare ARC simulators like nSIM.
556
Tom Rinic2a38412020-06-02 17:26:33 -0400557config ARM_DCC
558 bool "ARM Debug Communication Channel (DCC) as UART support"
559 depends on ARM
560 help
561 Select this to enable using the ARM DCC as a form of UART.
562
Wenyou Yang6ec739a2016-10-17 09:49:54 +0800563config ATMEL_USART
564 bool "Atmel USART support"
565 help
566 Select this to enable USART support for Atmel SoCs. It can be
567 configured in the device tree, and input clock frequency can
568 be got from the clk node.
569
Stefan Roesee567dfb2019-04-03 15:24:19 +0200570config SPL_UART_CLOCK
571 int "SPL fixed UART input clock"
572 depends on ATMEL_USART && SPL && !SPL_CLK
573 default 132096000 if ARCH_AT91
574 help
575 Provide a fixed clock value as input to the UART controller. This
576 might be needed on platforms which can't enable CONFIG_SPL_CLK
577 because of SPL image size restrictions.
578
Alexander Graffa487592018-01-25 12:05:53 +0100579config BCM283X_MU_SERIAL
580 bool "Support for BCM283x Mini-UART"
581 depends on DM_SERIAL && ARCH_BCM283X
582 default y
583 help
584 Select this to enable Mini-UART support on BCM283X family of SoCs.
585
Alexander Graf60019852018-01-25 12:05:55 +0100586config BCM283X_PL011_SERIAL
587 bool "Support for BCM283x PL011 UART"
588 depends on PL01X_SERIAL && ARCH_BCM283X
589 default y
590 help
591 Select this to enable an overriding PL011 driver for BCM283X SoCs
592 that supports automatic disable, so that it only gets used when
593 the UART is actually muxed.
594
Álvaro Fernández Rojas30581042017-04-25 00:39:16 +0200595config BCM6345_SERIAL
596 bool "Support for BCM6345 UART"
Álvaro Fernández Rojase9e8d802018-12-01 18:42:09 +0100597 depends on DM_SERIAL
Álvaro Fernández Rojas30581042017-04-25 00:39:16 +0200598 help
599 Select this to enable UART on BCM6345 SoCs.
600
Simon Glass44482e82019-12-19 17:58:20 -0700601config COREBOOT_SERIAL
602 bool "Coreboot UART support"
603 depends on DM_SERIAL
604 default y if SYS_COREBOOT
605 select SYS_NS16550
606 help
607 Select this to enable a ns16550-style UART where the platform data
608 comes from the coreboot 'sysinfo' tables. This allows U-Boot to have
609 a serial console on any platform without needing to change the
610 device tree, etc.
611
Jason Li0de653d2020-01-30 12:34:58 -0800612config CORTINA_UART
613 bool "Cortina UART support"
614 depends on DM_SERIAL
615 help
616 Select this to enable UART support for Cortina-Access UART devices
617 found on CAxxxx SoCs.
618
Tuomas Tynkkynenfac379e2018-04-09 04:34:34 +0300619config FSL_LINFLEXUART
620 bool "Freescale Linflex UART support"
621 depends on DM_SERIAL
622 help
623 Select this to enable the Linflex serial module found on some
624 NXP SoCs like S32V234.
625
Bin Meng5ed07cf2016-01-13 19:39:00 -0800626config FSL_LPUART
627 bool "Freescale LPUART support"
628 help
629 Select this to enable a Low Power UART for Freescale VF610 and
630 QorIQ Layerscape devices.
631
Stefan Roese6985d492016-05-17 16:36:00 +0200632config MVEBU_A3700_UART
633 bool "UART support for Armada 3700"
Stefan Roese6985d492016-05-17 16:36:00 +0200634 help
635 Choose this option to add support for UART driver on the Marvell
636 Armada 3700 SoC. The base address is configured via DT.
637
Angelo Dureghello461ea072019-03-13 21:46:49 +0100638config MCFUART
639 bool "Freescale ColdFire UART support"
640 help
641 Choose this option to add support for UART driver on the ColdFire
642 SoC's family. The serial communication channel provides a full-duplex
643 asynchronous/synchronous receiver and transmitter deriving an
644 operating frequency from the internal bus clock or an external clock.
645
Jagan Teki8829e662016-10-08 18:00:08 +0530646config MXC_UART
647 bool "IMX serial port support"
Tom Rini8ba59602021-09-09 07:54:50 -0400648 depends on ARCH_MX31 || MX5 || MX6 || MX7 || IMX8M
Jagan Teki8829e662016-10-08 18:00:08 +0530649 help
650 If you have a machine based on a Motorola IMX CPU you
651 can enable its onboard serial port by enabling this option.
652
Keng Soon Cheahcac73f22017-08-24 20:29:07 -0700653config NULLDEV_SERIAL
654 bool "Null serial device"
655 help
656 Select this to enable null serial device support. A null serial
657 device merely acts as a placeholder for a serial device and does
658 nothing for all it's operation.
659
Paul Thacker9e160ee2016-01-28 15:30:14 +0530660config PIC32_SERIAL
661 bool "Support for Microchip PIC32 on-chip UART"
662 depends on DM_SERIAL && MACH_PIC32
663 default y
664 help
665 Support for the UART found on Microchip PIC32 SoC's.
666
Thomas Chou9e390032015-11-19 21:48:14 +0800667config SYS_NS16550
668 bool "NS16550 UART or compatible"
669 help
670 Support NS16550 UART or compatible. This can be enabled in the
671 device tree with the correct input clock frequency. If the input
672 clock frequency is not defined in the device tree, the macro
673 CONFIG_SYS_NS16550_CLK defined in a legacy board header file will
674 be used. It can be a constant or a function to get clock, eg,
675 get_serial_clock().
676
Simon Glass62cbde42019-12-19 17:58:18 -0700677config NS16550_DYNAMIC
678 bool "Allow NS16550 to be configured at runtime"
679 default y if SYS_COREBOOT || SYS_SLIMBOOTLOADER
680 help
681 Enable this option to allow device-tree control of the driver.
682
683 Normally this driver is controlled by the following options:
684
685 CONFIG_SYS_NS16550_PORT_MAPPED - indicates that port I/O is used for
686 access. If not enabled, then the UART is memory-mapped.
687 CONFIG_SYS_NS16550_MEM32 - if memory-mapped, indicates that 32-bit
688 access should be used (instead of 8-bit)
689 CONFIG_SYS_NS16550_REG_SIZE - indicates register width and also
690 endianness. If positive, big-endian access is used. If negative,
691 little-endian is used.
692
693 It is not a good practice for a driver to be statically configured,
694 since it prevents the same driver being used for different types of
695 UARTs in a system. This option avoids this problem at the cost of a
696 slightly increased code size.
697
Andy Shevchenkoc5f8dd42017-02-28 14:04:10 +0200698config INTEL_MID_SERIAL
699 bool "Intel MID platform UART support"
700 depends on DM_SERIAL && OF_CONTROL
701 depends on INTEL_MID
702 select SYS_NS16550
703 help
704 Select this to enable a UART for Intel MID platforms.
705 This uses the ns16550 driver as a library.
706
Alexander Grafd10fc502018-01-25 12:05:51 +0100707config PL011_SERIAL
708 bool "ARM PL011 driver"
709 depends on !DM_SERIAL
710 help
711 Select this to enable a UART for platforms using PL011.
712
Alexander Grafcf2c7782018-01-25 12:05:52 +0100713config PL01X_SERIAL
714 bool "ARM PL010 and PL011 driver"
715 depends on DM_SERIAL
716 help
717 Select this to enable a UART for platforms using PL010 or PL011.
718
Simon Glass2fc24d52016-07-04 11:58:24 -0600719config ROCKCHIP_SERIAL
720 bool "Rockchip on-chip UART support"
721 depends on DM_SERIAL && SPL_OF_PLATDATA
722 help
723 Select this to enable a debug UART for Rockchip devices when using
Tom Rini7f73ca42017-01-14 12:20:23 -0500724 CONFIG_SPL_OF_PLATDATA (i.e. a compiled-in device tree replacemenmt).
Simon Glass2fc24d52016-07-04 11:58:24 -0600725 This uses the ns16550 driver, converting the platdata from of-platdata
726 to the ns16550 format.
727
Mark Kettenis0d9ff952021-02-12 23:22:18 +0100728config S5P_SERIAL
729 bool "Support for Samsung S5P UART"
730 depends on ARCH_EXYNOS || ARCH_S5PC1XX
731 default y
732 help
733 Select this to enable Samsung S5P UART support.
734
Simon Glassaf282242015-03-06 13:19:03 -0700735config SANDBOX_SERIAL
736 bool "Sandbox UART support"
Masahiro Yamada2ea65f32015-08-28 20:14:21 +0900737 depends on SANDBOX
Simon Glassaf282242015-03-06 13:19:03 -0700738 help
739 Select this to enable a seral UART for sandbox. This is required to
740 operate correctly, otherwise you will see no serial output from
741 sandbox. The emulated UART will display to the console and console
742 input will be fed into the UART. This allows you to interact with
743 U-Boot.
744
745 The operation of the console is controlled by the -t command-line
746 flag. In raw mode, U-Boot sees all characters from the terminal
747 before they are processed, including Ctrl-C. In cooked mode, Ctrl-C
748 is processed by the terminal, and terminates U-Boot. Valid options
749 are:
750
751 -t raw-with-sigs Raw mode, Ctrl-C will terminate U-Boot
752 -t raw Raw mode, Ctrl-C is processed by U-Boot
753 -t cooked Cooked mode, Ctrl-C terminates
754
Marek Vasut03a38a32017-07-21 23:18:46 +0200755config SCIF_CONSOLE
756 bool "Renesas SCIF UART support"
757 depends on SH || ARCH_RMOBILE
758 help
759 Select this to enable Renesas SCIF UART. To operate serial ports
760 on systems with RCar or SH SoCs, say Y to this option. If unsure,
761 say N.
762
Masahiro Yamadaff247b72014-10-23 22:26:11 +0900763config UNIPHIER_SERIAL
Masahiro Yamadab6ef3a32015-05-29 17:30:01 +0900764 bool "Support for UniPhier on-chip UART"
Masahiro Yamada2ea65f32015-08-28 20:14:21 +0900765 depends on ARCH_UNIPHIER
Masahiro Yamada85dc2fe2016-08-25 19:00:37 +0900766 default y
Masahiro Yamadaff247b72014-10-23 22:26:11 +0900767 help
Masahiro Yamadab6ef3a32015-05-29 17:30:01 +0900768 If you have a UniPhier based board and want to use the on-chip
769 serial ports, say Y to this option. If unsure, say N.
Simon Glassdcfe4a52015-07-27 15:47:23 -0600770
Michal Simek54e24d32015-12-09 12:50:05 +0100771config XILINX_UARTLITE
772 bool "Xilinx Uarlite support"
Michal Simek54fdef22020-08-24 14:41:51 +0200773 depends on DM_SERIAL
Michal Simek54e24d32015-12-09 12:50:05 +0100774 help
775 If you have a Xilinx based board and want to use the uartlite
776 serial ports, say Y to this option. If unsure, say N.
777
Beniamino Galvanibfcef282016-05-08 08:30:16 +0200778config MESON_SERIAL
779 bool "Support for Amlogic Meson UART"
780 depends on DM_SERIAL && ARCH_MESON
781 help
782 If you have an Amlogic Meson based board and want to use the on-chip
783 serial ports, say Y to this option. If unsure, say N.
784
Mateusz Kulikowski142a20c2016-03-31 23:12:14 +0200785config MSM_SERIAL
786 bool "Qualcomm on-chip UART"
787 depends on DM_SERIAL
788 help
789 Support Data Mover UART used on Qualcomm Snapdragon SoCs.
790 It should support all Qualcomm devices with UARTDM version 1.4,
791 for example APQ8016 and MSM8916.
792 Single baudrate is supported in current implementation (115200).
Stefan Roese6985d492016-05-17 16:36:00 +0200793
Stefan Roesef1054662021-04-07 09:12:31 +0200794config OCTEON_SERIAL_BOOTCMD
795 bool "MIPS Octeon PCI remote bootcmd input"
796 depends on ARCH_OCTEON
797 depends on DM_SERIAL
798 select SYS_IS_IN_ENV
799 select CONSOLE_MUX
800 help
801 This driver supports remote input over the PCIe bus from a host
802 to U-Boot for entering commands. It is utilized by the host
803 commands 'oct-remote-load' and 'oct-remote-bootcmd'.
804
Stefan Roese4dead102021-04-07 09:12:30 +0200805config OCTEON_SERIAL_PCIE_CONSOLE
806 bool "MIPS Octeon PCIe remote console"
807 depends on ARCH_OCTEON
808 depends on (DM_SERIAL && DM_STDIO)
809 select SYS_STDIO_DEREGISTER
810 select SYS_CONSOLE_IS_IN_ENV
811 select CONSOLE_MUX
812 help
813 This driver supports remote console over the PCIe bus when the
814 Octeon is running in PCIe target mode. The host program
815 'oct-remote-console' can be used to connect to this console.
816 The console number will likely be 0 or 1.
817
Lokesh Vutla5d754192018-08-27 15:55:24 +0530818config OMAP_SERIAL
819 bool "Support for OMAP specific UART"
820 depends on DM_SERIAL
Lokesh Vutla586bde92018-08-27 15:57:08 +0530821 default y if (ARCH_OMAP2PLUS || ARCH_K3)
Lokesh Vutla5d754192018-08-27 15:55:24 +0530822 select SYS_NS16550
823 help
824 If you have an TI based SoC and want to use the on-chip serial
825 port, say Y to this option. If unsure say N.
826
Manivannan Sadhasivam6f9347f2018-06-14 23:38:38 +0530827config OWL_SERIAL
828 bool "Actions Semi OWL UART"
829 depends on DM_SERIAL && ARCH_OWL
830 help
831 If you have a Actions Semi OWL based board and want to use the on-chip
832 serial port, say Y to this option. If unsure, say N.
833 Single baudrate is supported in current implementation (115200).
834
Marcel Ziswilerd804a5e2016-11-14 21:40:25 +0100835config PXA_SERIAL
836 bool "PXA serial port support"
837 help
838 If you have a machine based on a Marvell XScale PXA2xx CPU you
839 can enable its onboard serial ports by enabling this option.
840
Anup Patele2842492018-12-15 11:35:15 +0530841config SIFIVE_SERIAL
842 bool "SiFive UART support"
843 depends on DM_SERIAL
844 help
845 This driver supports the SiFive UART. If unsure say N.
846
Patrice Chotard214a17e2017-02-21 13:37:07 +0100847config STI_ASC_SERIAL
848 bool "STMicroelectronics on-chip UART"
849 depends on DM_SERIAL && ARCH_STI
850 help
851 Select this to enable Asynchronous Serial Controller available
852 on STiH410 SoC. This is a basic implementation, it supports
853 following baudrate 9600, 19200, 38400, 57600 and 115200.
854
Patrice Chotardae74de02018-01-12 09:23:49 +0100855config STM32_SERIAL
Patrice Chotard84e9dcc2017-07-26 15:48:39 +0200856 bool "STMicroelectronics STM32 SoCs on-chip UART"
Patrick Delaunay2514c2d2018-03-12 10:46:10 +0100857 depends on DM_SERIAL && (STM32F4 || STM32F7 || STM32H7 || ARCH_STM32MP)
Patrice Chotard84e9dcc2017-07-26 15:48:39 +0200858 help
Patrick Delaunay2514c2d2018-03-12 10:46:10 +0100859 If you have a machine based on a STM32 F4, F7, H7 or MP1 SOC
860 you can enable its onboard serial ports, say Y to this option.
Patrice Chotard776b2dd2017-09-13 18:00:05 +0200861 If unsure, say N.
Patrice Chotard84e9dcc2017-07-26 15:48:39 +0200862
Michal Simek809704e2017-11-06 09:16:05 +0100863config ZYNQ_SERIAL
864 bool "Cadence (Xilinx Zynq) UART support"
Michal Simek54fdef22020-08-24 14:41:51 +0200865 depends on DM_SERIAL
Michal Simek809704e2017-11-06 09:16:05 +0100866 help
867 This driver supports the Cadence UART. It is found e.g. in Xilinx
868 Zynq/ZynqMP.
869
Ryder Lee849b1162018-11-15 10:08:02 +0800870config MTK_SERIAL
871 bool "MediaTek High-speed UART support"
872 depends on DM_SERIAL
873 help
874 Select this to enable UART support for MediaTek High-speed UART
875 devices. This driver uses driver model and requires a device
876 tree binding to operate.
877 The High-speed UART is compatible with the ns16550a UART and have
878 its own high-speed registers.
879
Weijie Gao2161f1f2020-11-12 16:36:05 +0800880config MT7620_SERIAL
881 bool "UART driver for MediaTek MT7620 and earlier SoCs"
882 depends on DM_SERIAL
883 help
884 Select this to enable UART support for MediaTek MT7620 and earlier
885 SoCs. This driver uses driver model and requires a device tree
886 binding to operate.
887 The UART driver for MediaTek MT7620 and earlier SoCs is *NOT*
888 compatible with the ns16550a UART.
889
Christophe Leroydd7ff472017-07-06 10:33:27 +0200890config MPC8XX_CONS
891 bool "Console driver for MPC8XX"
Christophe Leroyee1e6002018-03-16 17:20:41 +0100892 depends on MPC8xx
Christophe Leroydd7ff472017-07-06 10:33:27 +0200893 default y
894
Peng Fan384d5cf2020-08-06 12:42:50 +0300895config XEN_SERIAL
896 bool "XEN serial support"
897 depends on XEN
898 help
899 If built without DM support, then requires Xen
900 to be built with CONFIG_VERBOSE_DEBUG.
901
Christophe Leroydd7ff472017-07-06 10:33:27 +0200902choice
903 prompt "Console port"
904 default 8xx_CONS_SMC1
905 depends on MPC8XX_CONS
906 help
907 Depending on board, select one serial port
908 (CONFIG_8xx_CONS_SMC1 or CONFIG_8xx_CONS_SMC2)
909
910config 8xx_CONS_SMC1
911 bool "SMC1"
912
913config 8xx_CONS_SMC2
914 bool "SMC2"
915
916endchoice
917
918config SYS_SMC_RXBUFLEN
919 int "Console Rx buffer length"
920 depends on MPC8XX_CONS
921 default 1
922 help
923 With CONFIG_SYS_SMC_RXBUFLEN it is possible to define
924 the maximum receive buffer length for the SMC.
925 This option is actual only for 8xx possible.
926 If using CONFIG_SYS_SMC_RXBUFLEN also CONFIG_SYS_MAXIDLE
927 must be defined, to setup the maximum idle timeout for
928 the SMC.
929
930config SYS_MAXIDLE
931 int "maximum idle timeout"
932 depends on MPC8XX_CONS
933 default 0
934
935config SYS_BRGCLK_PRESCALE
936 int "BRG Clock Prescale"
937 depends on MPC8XX_CONS
938 default 1
939
940config SYS_SDSR
941 hex "SDSR Value"
942 depends on MPC8XX_CONS
943 default 0x83
944
945config SYS_SDMR
946 hex "SDMR Value"
947 depends on MPC8XX_CONS
948 default 0
949
Simon Glass52510482021-08-08 12:20:13 -0600950endif