blob: a07fab225fd457f44b216d024807818e72b0f268 [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
Tom Rinie69ba982018-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 Josserand80b96442017-04-02 12:59:11 +020097config CONS_INDEX
98 int "UART used for console"
Tom Rinie69ba982018-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 Josserand80b96442017-04-02 12:59:11 +0200107 default 1
108 help
Tom Rinie69ba982018-03-06 19:02:27 -0500109 Set this to match the UART number of the serial console.
Mylène Josserand80b96442017-04-02 12:59:11 +0200110
Masahiro Yamada57ad8ee2014-10-23 22:26:09 +0900111config DM_SERIAL
112 bool "Enable Driver Model for serial drivers"
113 depends on DM
Sean Anderson08c854a2019-12-17 21:40:09 -0500114 select SYS_MALLOC_F
Masahiro Yamada57ad8ee2014-10-23 22:26:09 +0900115 help
Simon Glassd8b771d2015-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 Yamada4261c642014-10-23 22:26:11 +0900120
Stefan Roese02072832017-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 Grafc8bda542018-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 Sharma42149c92020-12-09 10:42:04 +0530148config SERIAL_PROBE_ALL
149 bool "Probe all available serial devices"
150 depends on DM_SERIAL
Vabhav Sharma42149c92020-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 Glassf9512aa2017-04-02 09:50:32 -0600163config SPL_DM_SERIAL
Heiko Schocherb0b588f2017-06-21 06:23:10 +0200164 bool "Enable Driver Model for serial drivers in SPL"
Tom Rinie69ba982018-03-06 19:02:27 -0500165 depends on DM_SERIAL && SPL_DM
Sean Anderson08c854a2019-12-17 21:40:09 -0500166 select SYS_SPL_MALLOC_F
Tom Rinie69ba982018-03-06 19:02:27 -0500167 default y
Simon Glassf9512aa2017-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 Schocherb0b588f2017-06-21 06:23:10 +0200175 bool "Enable Driver Model for serial drivers in TPL"
Thomas Hebbc850c6a2019-11-10 08:23:55 -0800176 depends on DM_SERIAL && TPL_DM
Sean Anderson08c854a2019-12-17 21:40:09 -0500177 select SYS_TPL_MALLOC_F
Simon Glassf9512aa2017-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 Glassbac6fd82015-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 Glass27afb522015-01-26 18:27:09 -0700211choice
212 prompt "Select which UART will provide the debug UART"
213 depends on DEBUG_UART
Thomas Choud0738412015-11-19 21:48:03 +0800214 default DEBUG_UART_NS16550
Simon Glass27afb522015-01-26 18:27:09 -0700215
Thomas Chou26066df2015-10-23 07:36:37 +0800216config DEBUG_UART_ALTERA_JTAGUART
217 bool "Altera JTAG UART"
Michal Simek8da3a6b2020-05-28 12:05:12 +0200218 depends on ALTERA_JTAG_UART
Thomas Chou26066df2015-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 Chou6917a5d2015-10-21 21:26:54 +0800224config DEBUG_UART_ALTERA_UART
225 bool "Altera UART"
Michal Simek8da3a6b2020-05-28 12:05:12 +0200226 depends on ALTERA_UART
Thomas Chou6917a5d2015-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 Wangcb48c6d2016-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 Brodkineede1672018-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 Yang6b611e62016-10-17 09:49:55 +0800250config DEBUG_UART_ATMEL
251 bool "Atmel USART"
Michal Simek8da3a6b2020-05-28 12:05:12 +0200252 depends on ATMEL_USART
Wenyou Yang6b611e62016-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 Rojas842cfaf2017-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 Glass27afb522015-01-26 18:27:09 -0700266config DEBUG_UART_NS16550
267 bool "ns16550"
Michal Simek8da3a6b2020-05-28 12:05:12 +0200268 depends on SYS_NS16550
Simon Glass27afb522015-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 Glass5a991bd2015-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
Samuel Holland4c33c262021-09-12 10:56:09 -0500283config DEBUG_SBI_CONSOLE
284 bool "SBI"
285 depends on SBI_V01
286 help
287 Select this to enable a debug console which calls back to SBI to
288 output to the console. This can be useful for early debugging of
289 U-Boot when running on top of SBI (Supervisor Binary Interface).
290
Simon Glass74afb292015-07-02 18:15:54 -0600291config DEBUG_UART_S5P
292 bool "Samsung S5P"
Mark Kettenis835cb5d2021-10-23 16:58:04 +0200293 depends on ARCH_APPLE || ARCH_EXYNOS || ARCH_S5PC1XX
Simon Glass74afb292015-07-02 18:15:54 -0600294 help
295 Select this to enable a debug UART using the serial_s5p 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
Dzmitry Sankouskif5be5c82021-10-17 13:44:27 +0300299config DEBUG_UART_MSM_GENI
300 bool "Qualcomm snapdragon"
301 depends on ARCH_SNAPDRAGON
302 help
303 Select this to enable a debug UART using the serial_msm 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
Beniamino Galvanid1037e42016-05-08 08:30:16 +0200307config DEBUG_UART_MESON
308 bool "Amlogic Meson"
309 depends on MESON_SERIAL
310 help
311 Select this to enable a debug UART using the serial_meson driver. You
312 will need to provide parameters to make this work. The driver will
313 be available until the real driver-model serial is running.
314
Michal Simek8af618b2015-12-14 16:55:10 +0100315config DEBUG_UART_UARTLITE
316 bool "Xilinx Uartlite"
Michal Simek8da3a6b2020-05-28 12:05:12 +0200317 depends on XILINX_UARTLITE
Michal Simek8af618b2015-12-14 16:55:10 +0100318 help
319 Select this to enable a debug UART using the serial_uartlite driver.
320 You will need to provide parameters to make this work. The driver will
321 be available until the real driver-model serial is running.
322
Michal Simekb3cc2602016-02-23 10:02:28 +0100323config DEBUG_UART_ARM_DCC
324 bool "ARM DCC"
Michal Simek8da3a6b2020-05-28 12:05:12 +0200325 depends on ARM_DCC
Michal Simekb3cc2602016-02-23 10:02:28 +0100326 help
327 Select this to enable a debug UART using the ARM JTAG DCC port.
328 The DCC port can be used for very early debugging and doesn't require
329 any additional setting like address/baudrate/clock. On systems without
330 any serial interface this is the easiest way how to get console.
331 Every ARM core has own DCC port which is the part of debug interface.
332 This port is available at least on ARMv6, ARMv7, ARMv8 and XScale
333 architectures.
334
Stefan Roese027276a2016-05-17 16:36:00 +0200335config DEBUG_MVEBU_A3700_UART
336 bool "Marvell Armada 3700"
Michal Simek8da3a6b2020-05-28 12:05:12 +0200337 depends on MVEBU_A3700_UART
Stefan Roese027276a2016-05-17 16:36:00 +0200338 help
339 Select this to enable a debug UART using the serial_mvebu 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
Simon Glass091f6a32015-10-17 19:41:22 -0600343config DEBUG_UART_ZYNQ
344 bool "Xilinx Zynq"
Michal Simek8da3a6b2020-05-28 12:05:12 +0200345 depends on ZYNQ_SERIAL
Simon Glass091f6a32015-10-17 19:41:22 -0600346 help
Michal Simek49e12762015-12-01 14:29:34 +0100347 Select this to enable a debug UART using the serial_zynq driver. You
Simon Glass091f6a32015-10-17 19:41:22 -0600348 will need to provide parameters to make this work. The driver will
349 be available until the real driver-model serial is running.
350
Francois Retiefd18eb7b2015-10-29 12:55:34 +0200351config DEBUG_UART_APBUART
352 depends on LEON3
353 bool "Gaisler APBUART"
354 help
355 Select this to enable a debug UART using the serial_leon3 driver. You
356 will need to provide parameters to make this work. The driver will
357 be available until the real driver model serial is running.
358
Sergey Temerkhanov5710d7e2015-10-14 09:54:24 -0700359config DEBUG_UART_PL010
360 bool "pl010"
Tom Rini0ba2f372021-05-22 08:47:08 -0400361 depends on PL01X_SERIAL
Sergey Temerkhanov5710d7e2015-10-14 09:54:24 -0700362 help
363 Select this to enable a debug UART using the pl01x driver with the
364 PL010 UART type. You will need to provide parameters to make this
365 work. The driver will be available until the real driver model
366 serial is running.
367
368config DEBUG_UART_PL011
369 bool "pl011"
Michal Simekceedd3a2021-06-24 13:36:23 +0200370 depends on PL01X_SERIAL || PL011_SERIAL
Sergey Temerkhanov5710d7e2015-10-14 09:54:24 -0700371 help
372 Select this to enable a debug UART using the pl01x driver with the
373 PL011 UART type. You will need to provide parameters to make this
374 work. The driver will be available until the real driver model
375 serial is running.
376
Paul Thacker1dc42832016-01-28 15:30:14 +0530377config DEBUG_UART_PIC32
378 bool "Microchip PIC32"
379 depends on PIC32_SERIAL
380 help
381 Select this to enable a debug UART using the serial_pic32 driver. You
382 will need to provide parameters to make this work. The driver will
383 be available until the real driver model serial is running.
384
Jagan Tekicf6db162017-06-06 05:31:51 +0000385config DEBUG_UART_MXC
386 bool "IMX Serial port"
387 depends on MXC_UART
388 help
389 Select this to enable a debug UART using the serial_mxc driver. You
390 will need to provide parameters to make this work. The driver will
391 be available until the real driver model serial is running.
392
Simon Glasse3057f32018-10-01 11:55:15 -0600393config DEBUG_UART_SANDBOX
394 bool "sandbox"
395 depends on SANDBOX_SERIAL
396 help
397 Select this to enable the debug UART using the sandbox driver. This
398 provides basic serial output from the console without needing to
399 start up driver model. The driver will be available until the real
400 driver model serial is running.
401
Sean Andersond4f131a2022-03-22 16:59:24 -0400402config DEBUG_UART_SEMIHOSTING
403 bool "semihosting"
404 depends on SEMIHOSTING_SERIAL
405 help
406 Select this to enable the debug UART using the semihosting driver.
407 This provides basic serial output from the console without needing to
408 start up driver model. The driver will be available until the real
409 driver model serial is running.
410
Anup Patel4b1d68f2018-12-15 11:35:15 +0530411config DEBUG_UART_SIFIVE
412 bool "SiFive UART"
Michal Simekf0410172020-07-10 12:41:13 +0200413 depends on SIFIVE_SERIAL
Anup Patel4b1d68f2018-12-15 11:35:15 +0530414 help
415 Select this to enable a debug UART using the serial_sifive driver. You
416 will need to provide parameters to make this work. The driver will
417 be available until the real driver-model serial is running.
418
Patrick Delaunayab8e5d22018-05-17 14:50:42 +0200419config DEBUG_UART_STM32
420 bool "STMicroelectronics STM32"
421 depends on STM32_SERIAL
422 help
423 Select this to enable a debug UART using the serial_stm32 driver
424 You will need to provide parameters to make this work.
425 The driver will be available until the real driver model
426 serial is running.
427
Masahiro Yamada52f0c512016-03-18 16:41:52 +0900428config DEBUG_UART_UNIPHIER
429 bool "UniPhier on-chip UART"
430 depends on ARCH_UNIPHIER
431 help
432 Select this to enable a debug UART using the UniPhier on-chip UART.
433 You will need to provide DEBUG_UART_BASE to make this work. The
434 driver will be available until the real driver-model serial is
435 running.
436
Lokesh Vutla771d69c2017-04-22 15:57:25 +0530437config DEBUG_UART_OMAP
438 bool "OMAP uart"
Michal Simek8da3a6b2020-05-28 12:05:12 +0200439 depends on OMAP_SERIAL
Lokesh Vutla771d69c2017-04-22 15:57:25 +0530440 help
441 Select this to enable a debug UART using the omap ns16550 driver.
442 You will need to provide parameters to make this work. The driver
443 will be available until the real driver model serial is running.
444
developer90af58f2018-11-15 10:08:02 +0800445config DEBUG_UART_MTK
446 bool "MediaTek High-speed UART"
447 depends on MTK_SERIAL
448 help
449 Select this to enable a debug UART using the MediaTek High-speed
450 UART driver.
451 You will need to provide parameters to make this work. The
452 driver will be available until the real driver model serial is
453 running.
454
developere076b9e2020-11-12 16:36:05 +0800455config DEBUG_UART_MT7620
456 bool "UART driver for MediaTek MT7620 and earlier SoCs"
457 depends on MT7620_SERIAL
458 help
459 Select this to enable a debug UART using the UART driver for
460 MediaTek MT7620 and earlier SoCs.
461 You will need to provide parameters to make this work. The
462 driver will be available until the real driver model serial is
463 running.
464
Simon Glass27afb522015-01-26 18:27:09 -0700465endchoice
466
Simon Glassbac6fd82015-01-26 18:27:07 -0700467config DEBUG_UART_BASE
468 hex "Base address of UART"
Tom Riniae965f22020-10-23 09:15:55 -0400469 depends on DEBUG_UART
Samuel Holland4c33c262021-09-12 10:56:09 -0500470 default 0 if DEBUG_SBI_CONSOLE
Simon Glasse3057f32018-10-01 11:55:15 -0600471 default 0 if DEBUG_UART_SANDBOX
Simon Glassbac6fd82015-01-26 18:27:07 -0700472 help
473 This is the base address of your UART for memory-mapped UARTs.
474
475 A default should be provided by your board, but if not you will need
476 to use the correct value here.
477
478config DEBUG_UART_CLOCK
479 int "UART input clock"
Tom Riniae965f22020-10-23 09:15:55 -0400480 depends on DEBUG_UART
Samuel Holland4c33c262021-09-12 10:56:09 -0500481 default 0 if DEBUG_SBI_CONSOLE
Simon Glasse3057f32018-10-01 11:55:15 -0600482 default 0 if DEBUG_UART_SANDBOX
Marek Behún6e0e23c2021-07-09 17:40:59 +0200483 default 0 if DEBUG_MVEBU_A3700_UART
Simon Glassbac6fd82015-01-26 18:27:07 -0700484 help
485 The UART input clock determines the speed of the internal UART
486 circuitry. The baud rate is derived from this by dividing the input
487 clock down.
488
489 A default should be provided by your board, but if not you will need
490 to use the correct value here.
491
Simon Glass54111292015-02-27 22:06:25 -0700492config DEBUG_UART_SHIFT
493 int "UART register shift"
Tom Riniae965f22020-10-23 09:15:55 -0400494 depends on DEBUG_UART
Simon Glass54111292015-02-27 22:06:25 -0700495 default 0 if DEBUG_UART
496 help
497 Some UARTs (notably ns16550) support different register layouts
498 where the registers are spaced either as bytes, words or some other
499 value. Use this value to specify the shift to use, where 0=byte
500 registers, 2=32-bit word registers, etc.
501
Simon Glassc52be122015-10-18 19:51:24 -0600502config DEBUG_UART_BOARD_INIT
503 bool "Enable board-specific debug UART init"
504 depends on DEBUG_UART
505 help
506 Some boards need to set things up before the debug UART can be used.
507 On these boards a call to debug_uart_init() is insufficient. When
508 this option is enabled, the function board_debug_uart_init() will
509 be called when debug_uart_init() is called. You can put any code
510 here that is needed to set up the UART ready for use, such as set
511 pin multiplexing or enable clocks.
512
Simon Glass1f7338a2015-10-18 19:51:25 -0600513config DEBUG_UART_ANNOUNCE
514 bool "Show a message when the debug UART starts up"
515 depends on DEBUG_UART
516 help
517 Enable this option to show a message when the debug UART is ready
518 for use. You will see a message like "<debug_uart> " as soon as
519 U-Boot has the UART ready for use (i.e. your code calls
520 debug_uart_init()). This can be useful just as a check that
521 everything is working.
522
Sergey Temerkhanov5710d7e2015-10-14 09:54:24 -0700523config DEBUG_UART_SKIP_INIT
524 bool "Skip UART initialization"
Simon Goldschmidt03a96832019-01-09 20:27:09 +0100525 depends on DEBUG_UART
Sergey Temerkhanov5710d7e2015-10-14 09:54:24 -0700526 help
527 Select this if the UART you want to use for debug output is already
528 initialized by the time U-Boot starts its execution.
529
Simon Goldschmidte03ad212019-01-09 20:35:31 +0100530config DEBUG_UART_NS16550_CHECK_ENABLED
531 bool "Check if UART is enabled on output"
532 depends on DEBUG_UART
533 depends on DEBUG_UART_NS16550
534 help
535 Select this if puts()/putc() might be called before the debug UART
536 has been initialized. If this is disabled, putc() might sit in a
537 tight loop if it is called before debug_uart_init() has been called.
538
539 Note that this does not work for every ns16550-compatible UART and
540 so has to be enabled carefully or you might notice lost characters.
541
Thomas Chou26066df2015-10-23 07:36:37 +0800542config ALTERA_JTAG_UART
543 bool "Altera JTAG UART support"
544 depends on DM_SERIAL
545 help
546 Select this to enable an JTAG UART for Altera devices.The JTAG UART
547 core implements a method to communicate serial character streams
548 between a host PC and a Qsys system on an Altera FPGA. Please find
549 details on the "Embedded Peripherals IP User Guide" of Altera.
550
551config ALTERA_JTAG_UART_BYPASS
552 bool "Bypass output when no connection"
553 depends on ALTERA_JTAG_UART
554 help
555 Bypass console output and keep going even if there is no JTAG
556 terminal connection with the host. The console output will resume
557 once the JTAG terminal is connected. Without the bypass, the console
558 output will wait forever until a JTAG terminal is connected. If you
559 not are sure, say Y.
560
Thomas Chou6917a5d2015-10-21 21:26:54 +0800561config ALTERA_UART
562 bool "Altera UART support"
563 depends on DM_SERIAL
564 help
565 Select this to enable an UART for Altera devices. Please find
566 details on the "Embedded Peripherals IP User Guide" of Altera.
567
Wills Wangcb48c6d2016-03-16 16:59:57 +0800568config AR933X_UART
569 bool "QCA/Atheros ar933x UART support"
570 depends on DM_SERIAL && SOC_AR933X
571 help
572 Select this to enable UART support for QCA/Atheros ar933x
573 devices. This driver uses driver model and requires a device
574 tree binding to operate, please refer to the document at
575 doc/device-tree-bindings/serial/qca,ar9330-uart.txt.
576
Alexey Brodkinb9a0a422018-05-21 16:40:05 +0300577config ARC_SERIAL
578 bool "ARC UART support"
579 depends on DM_SERIAL
580 help
581 Select this to enable support for ARC UART now typically
582 only used in Synopsys DesignWare ARC simulators like nSIM.
583
Tom Rini0f73ac62020-06-02 17:26:33 -0400584config ARM_DCC
585 bool "ARM Debug Communication Channel (DCC) as UART support"
586 depends on ARM
587 help
588 Select this to enable using the ARM DCC as a form of UART.
589
Wenyou Yang58d44482016-10-17 09:49:54 +0800590config ATMEL_USART
591 bool "Atmel USART support"
592 help
593 Select this to enable USART support for Atmel SoCs. It can be
594 configured in the device tree, and input clock frequency can
595 be got from the clk node.
596
Stefan Roeseb1f3da82019-04-03 15:24:19 +0200597config SPL_UART_CLOCK
598 int "SPL fixed UART input clock"
599 depends on ATMEL_USART && SPL && !SPL_CLK
600 default 132096000 if ARCH_AT91
601 help
602 Provide a fixed clock value as input to the UART controller. This
603 might be needed on platforms which can't enable CONFIG_SPL_CLK
604 because of SPL image size restrictions.
605
Alexander Graf1b442952018-01-25 12:05:53 +0100606config BCM283X_MU_SERIAL
607 bool "Support for BCM283x Mini-UART"
608 depends on DM_SERIAL && ARCH_BCM283X
609 default y
610 help
611 Select this to enable Mini-UART support on BCM283X family of SoCs.
612
Alexander Grafa73b0ec2018-01-25 12:05:55 +0100613config BCM283X_PL011_SERIAL
614 bool "Support for BCM283x PL011 UART"
615 depends on PL01X_SERIAL && ARCH_BCM283X
616 default y
617 help
618 Select this to enable an overriding PL011 driver for BCM283X SoCs
619 that supports automatic disable, so that it only gets used when
620 the UART is actually muxed.
621
Álvaro Fernández Rojas842cfaf2017-04-25 00:39:16 +0200622config BCM6345_SERIAL
623 bool "Support for BCM6345 UART"
Álvaro Fernández Rojas4ab29872018-12-01 18:42:09 +0100624 depends on DM_SERIAL
Álvaro Fernández Rojas842cfaf2017-04-25 00:39:16 +0200625 help
626 Select this to enable UART on BCM6345 SoCs.
627
Simon Glass4d221072019-12-19 17:58:20 -0700628config COREBOOT_SERIAL
629 bool "Coreboot UART support"
630 depends on DM_SERIAL
631 default y if SYS_COREBOOT
632 select SYS_NS16550
633 help
634 Select this to enable a ns16550-style UART where the platform data
635 comes from the coreboot 'sysinfo' tables. This allows U-Boot to have
636 a serial console on any platform without needing to change the
637 device tree, etc.
638
Jason Liadca83a2020-01-30 12:34:58 -0800639config CORTINA_UART
640 bool "Cortina UART support"
641 depends on DM_SERIAL
642 help
643 Select this to enable UART support for Cortina-Access UART devices
644 found on CAxxxx SoCs.
645
Tuomas Tynkkynenf2c84702018-04-09 04:34:34 +0300646config FSL_LINFLEXUART
647 bool "Freescale Linflex UART support"
648 depends on DM_SERIAL
649 help
650 Select this to enable the Linflex serial module found on some
651 NXP SoCs like S32V234.
652
Bin Meng4409dcf2016-01-13 19:39:00 -0800653config FSL_LPUART
654 bool "Freescale LPUART support"
655 help
656 Select this to enable a Low Power UART for Freescale VF610 and
657 QorIQ Layerscape devices.
658
Tom Rini037415a2022-03-23 17:20:00 -0400659config LPUART
660 bool "Use the LPUART as console"
661 depends on FSL_LPUART
662
Stefan Roese027276a2016-05-17 16:36:00 +0200663config MVEBU_A3700_UART
664 bool "UART support for Armada 3700"
Stefan Roese027276a2016-05-17 16:36:00 +0200665 help
666 Choose this option to add support for UART driver on the Marvell
667 Armada 3700 SoC. The base address is configured via DT.
668
Angelo Dureghello6d542f32019-03-13 21:46:49 +0100669config MCFUART
670 bool "Freescale ColdFire UART support"
671 help
672 Choose this option to add support for UART driver on the ColdFire
673 SoC's family. The serial communication channel provides a full-duplex
674 asynchronous/synchronous receiver and transmitter deriving an
675 operating frequency from the internal bus clock or an external clock.
676
Jagan Tekia73597a2016-10-08 18:00:08 +0530677config MXC_UART
678 bool "IMX serial port support"
Tom Rinieac76b82021-09-09 07:54:50 -0400679 depends on ARCH_MX31 || MX5 || MX6 || MX7 || IMX8M
Jagan Tekia73597a2016-10-08 18:00:08 +0530680 help
681 If you have a machine based on a Motorola IMX CPU you
682 can enable its onboard serial port by enabling this option.
683
Keng Soon Cheah755e2d02017-08-24 20:29:07 -0700684config NULLDEV_SERIAL
685 bool "Null serial device"
686 help
687 Select this to enable null serial device support. A null serial
688 device merely acts as a placeholder for a serial device and does
689 nothing for all it's operation.
690
Paul Thacker1dc42832016-01-28 15:30:14 +0530691config PIC32_SERIAL
692 bool "Support for Microchip PIC32 on-chip UART"
693 depends on DM_SERIAL && MACH_PIC32
694 default y
695 help
696 Support for the UART found on Microchip PIC32 SoC's.
697
Thomas Choua6cec012015-11-19 21:48:14 +0800698config SYS_NS16550
699 bool "NS16550 UART or compatible"
700 help
701 Support NS16550 UART or compatible. This can be enabled in the
702 device tree with the correct input clock frequency. If the input
703 clock frequency is not defined in the device tree, the macro
704 CONFIG_SYS_NS16550_CLK defined in a legacy board header file will
705 be used. It can be a constant or a function to get clock, eg,
706 get_serial_clock().
707
Simon Glassf8b1a242019-12-19 17:58:18 -0700708config NS16550_DYNAMIC
709 bool "Allow NS16550 to be configured at runtime"
710 default y if SYS_COREBOOT || SYS_SLIMBOOTLOADER
711 help
712 Enable this option to allow device-tree control of the driver.
713
714 Normally this driver is controlled by the following options:
715
716 CONFIG_SYS_NS16550_PORT_MAPPED - indicates that port I/O is used for
717 access. If not enabled, then the UART is memory-mapped.
718 CONFIG_SYS_NS16550_MEM32 - if memory-mapped, indicates that 32-bit
719 access should be used (instead of 8-bit)
720 CONFIG_SYS_NS16550_REG_SIZE - indicates register width and also
721 endianness. If positive, big-endian access is used. If negative,
722 little-endian is used.
723
724 It is not a good practice for a driver to be statically configured,
725 since it prevents the same driver being used for different types of
726 UARTs in a system. This option avoids this problem at the cost of a
727 slightly increased code size.
728
Andy Shevchenkoc65a7fe2017-02-28 14:04:10 +0200729config INTEL_MID_SERIAL
730 bool "Intel MID platform UART support"
731 depends on DM_SERIAL && OF_CONTROL
732 depends on INTEL_MID
733 select SYS_NS16550
734 help
735 Select this to enable a UART for Intel MID platforms.
736 This uses the ns16550 driver as a library.
737
Alexander Graf65bfb422018-01-25 12:05:51 +0100738config PL011_SERIAL
739 bool "ARM PL011 driver"
740 depends on !DM_SERIAL
741 help
742 Select this to enable a UART for platforms using PL011.
743
Alexander Graf633ef892018-01-25 12:05:52 +0100744config PL01X_SERIAL
745 bool "ARM PL010 and PL011 driver"
746 depends on DM_SERIAL
747 help
748 Select this to enable a UART for platforms using PL010 or PL011.
749
Simon Glassb3068ad2016-07-04 11:58:24 -0600750config ROCKCHIP_SERIAL
751 bool "Rockchip on-chip UART support"
752 depends on DM_SERIAL && SPL_OF_PLATDATA
753 help
754 Select this to enable a debug UART for Rockchip devices when using
Tom Rini9732f792017-01-14 12:20:23 -0500755 CONFIG_SPL_OF_PLATDATA (i.e. a compiled-in device tree replacemenmt).
Simon Glassb3068ad2016-07-04 11:58:24 -0600756 This uses the ns16550 driver, converting the platdata from of-platdata
757 to the ns16550 format.
758
Mark Kettenis3b9ad302021-02-12 23:22:18 +0100759config S5P_SERIAL
760 bool "Support for Samsung S5P UART"
Mark Kettenis835cb5d2021-10-23 16:58:04 +0200761 depends on ARCH_APPLE || ARCH_EXYNOS || ARCH_S5PC1XX
Mark Kettenis3b9ad302021-02-12 23:22:18 +0100762 default y
763 help
764 Select this to enable Samsung S5P UART support.
765
Simon Glass8579a512015-03-06 13:19:03 -0700766config SANDBOX_SERIAL
767 bool "Sandbox UART support"
Masahiro Yamadaa8318672015-08-28 20:14:21 +0900768 depends on SANDBOX
Simon Glass8579a512015-03-06 13:19:03 -0700769 help
770 Select this to enable a seral UART for sandbox. This is required to
771 operate correctly, otherwise you will see no serial output from
772 sandbox. The emulated UART will display to the console and console
773 input will be fed into the UART. This allows you to interact with
774 U-Boot.
775
776 The operation of the console is controlled by the -t command-line
777 flag. In raw mode, U-Boot sees all characters from the terminal
778 before they are processed, including Ctrl-C. In cooked mode, Ctrl-C
779 is processed by the terminal, and terminates U-Boot. Valid options
780 are:
781
782 -t raw-with-sigs Raw mode, Ctrl-C will terminate U-Boot
783 -t raw Raw mode, Ctrl-C is processed by U-Boot
784 -t cooked Cooked mode, Ctrl-C terminates
785
Marek Vasut2b2e4832017-07-21 23:18:46 +0200786config SCIF_CONSOLE
787 bool "Renesas SCIF UART support"
788 depends on SH || ARCH_RMOBILE
789 help
790 Select this to enable Renesas SCIF UART. To operate serial ports
791 on systems with RCar or SH SoCs, say Y to this option. If unsure,
792 say N.
793
Sean Andersond4f131a2022-03-22 16:59:24 -0400794config SEMIHOSTING_SERIAL
795 bool "Semihosting UART support"
796 depends on SEMIHOSTING && !SERIAL_RX_BUFFER
797 help
798 Select this to enable a serial UART using semihosting. Special halt
799 instructions will be issued which an external debugger (such as a
800 JTAG emulator) may interpret. The debugger will display U-Boot's
801 console output on the host system.
802
803 Enable this option only if you are using a debugger which supports
804 semihosting. If you are not using a debugger, this driver will halt
805 the boot.
806
Masahiro Yamada4261c642014-10-23 22:26:11 +0900807config UNIPHIER_SERIAL
Masahiro Yamada563ee4c2015-05-29 17:30:01 +0900808 bool "Support for UniPhier on-chip UART"
Masahiro Yamadaa8318672015-08-28 20:14:21 +0900809 depends on ARCH_UNIPHIER
Masahiro Yamadadf5fda02016-08-25 19:00:37 +0900810 default y
Masahiro Yamada4261c642014-10-23 22:26:11 +0900811 help
Masahiro Yamada563ee4c2015-05-29 17:30:01 +0900812 If you have a UniPhier based board and want to use the on-chip
813 serial ports, say Y to this option. If unsure, say N.
Simon Glass1c32bdb2015-07-27 15:47:23 -0600814
Michal Simek93ce5052015-12-09 12:50:05 +0100815config XILINX_UARTLITE
816 bool "Xilinx Uarlite support"
Michal Simek3239d712020-08-24 14:41:51 +0200817 depends on DM_SERIAL
Michal Simek93ce5052015-12-09 12:50:05 +0100818 help
819 If you have a Xilinx based board and want to use the uartlite
820 serial ports, say Y to this option. If unsure, say N.
821
Beniamino Galvanid1037e42016-05-08 08:30:16 +0200822config MESON_SERIAL
823 bool "Support for Amlogic Meson UART"
824 depends on DM_SERIAL && ARCH_MESON
825 help
826 If you have an Amlogic Meson based board and want to use the on-chip
827 serial ports, say Y to this option. If unsure, say N.
828
Mateusz Kulikowski8aac6972016-03-31 23:12:14 +0200829config MSM_SERIAL
830 bool "Qualcomm on-chip UART"
831 depends on DM_SERIAL
832 help
833 Support Data Mover UART used on Qualcomm Snapdragon SoCs.
834 It should support all Qualcomm devices with UARTDM version 1.4,
835 for example APQ8016 and MSM8916.
836 Single baudrate is supported in current implementation (115200).
Stefan Roese027276a2016-05-17 16:36:00 +0200837
Dzmitry Sankouskif5be5c82021-10-17 13:44:27 +0300838config MSM_GENI_SERIAL
839 bool "Qualcomm on-chip GENI UART"
840 help
841 Support UART based on Generic Interface (GENI) Serial Engine (SE),
842 used on Qualcomm Snapdragon SoCs. Should support all qualcomm SOCs
843 with Qualcomm Universal Peripheral (QUP) Wrapper cores,
844 i.e. newer ones, starting from SDM845.
845 Driver works in FIFO mode.
846 Multiple baudrates supported.
847
Stefan Roese09e90762021-04-07 09:12:31 +0200848config OCTEON_SERIAL_BOOTCMD
849 bool "MIPS Octeon PCI remote bootcmd input"
850 depends on ARCH_OCTEON
851 depends on DM_SERIAL
852 select SYS_IS_IN_ENV
853 select CONSOLE_MUX
854 help
855 This driver supports remote input over the PCIe bus from a host
856 to U-Boot for entering commands. It is utilized by the host
857 commands 'oct-remote-load' and 'oct-remote-bootcmd'.
858
Stefan Roese01452252021-04-07 09:12:30 +0200859config OCTEON_SERIAL_PCIE_CONSOLE
860 bool "MIPS Octeon PCIe remote console"
861 depends on ARCH_OCTEON
862 depends on (DM_SERIAL && DM_STDIO)
863 select SYS_STDIO_DEREGISTER
864 select SYS_CONSOLE_IS_IN_ENV
865 select CONSOLE_MUX
866 help
867 This driver supports remote console over the PCIe bus when the
868 Octeon is running in PCIe target mode. The host program
869 'oct-remote-console' can be used to connect to this console.
870 The console number will likely be 0 or 1.
871
Lokesh Vutla42cb4b82018-08-27 15:55:24 +0530872config OMAP_SERIAL
873 bool "Support for OMAP specific UART"
874 depends on DM_SERIAL
Lokesh Vutla9bdec002018-08-27 15:57:08 +0530875 default y if (ARCH_OMAP2PLUS || ARCH_K3)
Lokesh Vutla42cb4b82018-08-27 15:55:24 +0530876 select SYS_NS16550
877 help
878 If you have an TI based SoC and want to use the on-chip serial
879 port, say Y to this option. If unsure say N.
880
Manivannan Sadhasivam01e47392018-06-14 23:38:38 +0530881config OWL_SERIAL
882 bool "Actions Semi OWL UART"
883 depends on DM_SERIAL && ARCH_OWL
884 help
885 If you have a Actions Semi OWL based board and want to use the on-chip
886 serial port, say Y to this option. If unsure, say N.
887 Single baudrate is supported in current implementation (115200).
888
Marcel Ziswilercd22bf62016-11-14 21:40:25 +0100889config PXA_SERIAL
890 bool "PXA serial port support"
891 help
892 If you have a machine based on a Marvell XScale PXA2xx CPU you
893 can enable its onboard serial ports by enabling this option.
894
Anup Patelc0fe2842022-01-27 11:41:07 +0530895config HTIF_CONSOLE
896 bool "RISC-V HTIF console support"
897 depends on DM_SERIAL && 64BIT
898 help
899 Select this to enable host transfer interface (HTIF) based serial
900 console. The HTIF device is quite common in RISC-V emulators and
901 RISC-V ISS so this driver allows using U-Boot on such platforms.
902
Anup Patel4b1d68f2018-12-15 11:35:15 +0530903config SIFIVE_SERIAL
904 bool "SiFive UART support"
905 depends on DM_SERIAL
906 help
907 This driver supports the SiFive UART. If unsure say N.
908
Patrice Chotard42d742b2017-02-21 13:37:07 +0100909config STI_ASC_SERIAL
910 bool "STMicroelectronics on-chip UART"
911 depends on DM_SERIAL && ARCH_STI
912 help
913 Select this to enable Asynchronous Serial Controller available
914 on STiH410 SoC. This is a basic implementation, it supports
915 following baudrate 9600, 19200, 38400, 57600 and 115200.
916
Patrice Chotard9e276502018-01-12 09:23:49 +0100917config STM32_SERIAL
Patrice Chotard72cefd52017-07-26 15:48:39 +0200918 bool "STMicroelectronics STM32 SoCs on-chip UART"
Patrick Delaunay85b53972018-03-12 10:46:10 +0100919 depends on DM_SERIAL && (STM32F4 || STM32F7 || STM32H7 || ARCH_STM32MP)
Patrice Chotard72cefd52017-07-26 15:48:39 +0200920 help
Patrick Delaunay85b53972018-03-12 10:46:10 +0100921 If you have a machine based on a STM32 F4, F7, H7 or MP1 SOC
922 you can enable its onboard serial ports, say Y to this option.
Patrice Chotard3b2a14f2017-09-13 18:00:05 +0200923 If unsure, say N.
Patrice Chotard72cefd52017-07-26 15:48:39 +0200924
Michal Simekab754532017-11-06 09:16:05 +0100925config ZYNQ_SERIAL
926 bool "Cadence (Xilinx Zynq) UART support"
Michal Simek3239d712020-08-24 14:41:51 +0200927 depends on DM_SERIAL
Michal Simekab754532017-11-06 09:16:05 +0100928 help
929 This driver supports the Cadence UART. It is found e.g. in Xilinx
930 Zynq/ZynqMP.
931
developer90af58f2018-11-15 10:08:02 +0800932config MTK_SERIAL
933 bool "MediaTek High-speed UART support"
934 depends on DM_SERIAL
935 help
936 Select this to enable UART support for MediaTek High-speed UART
937 devices. This driver uses driver model and requires a device
938 tree binding to operate.
939 The High-speed UART is compatible with the ns16550a UART and have
940 its own high-speed registers.
941
developere076b9e2020-11-12 16:36:05 +0800942config MT7620_SERIAL
943 bool "UART driver for MediaTek MT7620 and earlier SoCs"
944 depends on DM_SERIAL
945 help
946 Select this to enable UART support for MediaTek MT7620 and earlier
947 SoCs. This driver uses driver model and requires a device tree
948 binding to operate.
949 The UART driver for MediaTek MT7620 and earlier SoCs is *NOT*
950 compatible with the ns16550a UART.
951
Christophe Leroy9ac4a542017-07-06 10:33:27 +0200952config MPC8XX_CONS
953 bool "Console driver for MPC8XX"
Christophe Leroyb3510fb2018-03-16 17:20:41 +0100954 depends on MPC8xx
Christophe Leroy9ac4a542017-07-06 10:33:27 +0200955 default y
956
Peng Fan8162f8f2020-08-06 12:42:50 +0300957config XEN_SERIAL
958 bool "XEN serial support"
959 depends on XEN
960 help
961 If built without DM support, then requires Xen
962 to be built with CONFIG_VERBOSE_DEBUG.
963
Christophe Leroy9ac4a542017-07-06 10:33:27 +0200964choice
965 prompt "Console port"
966 default 8xx_CONS_SMC1
967 depends on MPC8XX_CONS
968 help
969 Depending on board, select one serial port
970 (CONFIG_8xx_CONS_SMC1 or CONFIG_8xx_CONS_SMC2)
971
972config 8xx_CONS_SMC1
973 bool "SMC1"
974
975config 8xx_CONS_SMC2
976 bool "SMC2"
977
978endchoice
979
980config SYS_SMC_RXBUFLEN
981 int "Console Rx buffer length"
982 depends on MPC8XX_CONS
983 default 1
984 help
985 With CONFIG_SYS_SMC_RXBUFLEN it is possible to define
986 the maximum receive buffer length for the SMC.
987 This option is actual only for 8xx possible.
988 If using CONFIG_SYS_SMC_RXBUFLEN also CONFIG_SYS_MAXIDLE
989 must be defined, to setup the maximum idle timeout for
990 the SMC.
991
992config SYS_MAXIDLE
993 int "maximum idle timeout"
994 depends on MPC8XX_CONS
995 default 0
996
997config SYS_BRGCLK_PRESCALE
998 int "BRG Clock Prescale"
999 depends on MPC8XX_CONS
1000 default 1
1001
1002config SYS_SDSR
1003 hex "SDSR Value"
1004 depends on MPC8XX_CONS
1005 default 0x83
1006
1007config SYS_SDMR
1008 hex "SDMR Value"
1009 depends on MPC8XX_CONS
1010 default 0
1011
Simon Glass388f78e2021-08-08 12:20:13 -06001012endif