blob: 20713812c839e71f49ff2120c79325b7439fea13 [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
Simon Glass747093d2022-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
Mylène Josserand7095f862017-04-02 12:59:11 +020087config CONS_INDEX
88 int "UART used for console"
Tom Rini6f6b7cf2018-03-06 19:02:27 -050089 depends on SPECIFY_CONSOLE_INDEX
90 range 0 6
Mylène Josserand7095f862017-04-02 12:59:11 +020091 default 1
92 help
Tom Rini6f6b7cf2018-03-06 19:02:27 -050093 Set this to match the UART number of the serial console.
Mylène Josserand7095f862017-04-02 12:59:11 +020094
Masahiro Yamadada333ae2014-10-23 22:26:09 +090095config DM_SERIAL
96 bool "Enable Driver Model for serial drivers"
97 depends on DM
Sean Anderson327bb3b2019-12-17 21:40:09 -050098 select SYS_MALLOC_F
Masahiro Yamadada333ae2014-10-23 22:26:09 +090099 help
Simon Glassf94a1be2015-02-05 21:41:35 -0700100 Enable driver model for serial. This replaces
101 drivers/serial/serial.c with the serial uclass, which
102 implements serial_putc() etc. The uclass interface is
103 defined in include/serial.h.
Masahiro Yamadaff247b72014-10-23 22:26:11 +0900104
Stefan Roese3ca7a062017-08-16 17:37:16 +0200105config SERIAL_RX_BUFFER
106 bool "Enable RX buffer for serial input"
107 depends on DM_SERIAL
108 help
109 Enable RX buffer support for the serial driver. This enables
110 pasting longer strings, even when the RX FIFO of the UART is
111 not big enough (e.g. 16 bytes on the normal NS16550).
112
113config SERIAL_RX_BUFFER_SIZE
114 int "RX buffer size"
115 depends on SERIAL_RX_BUFFER
116 default 256
117 help
118 The size of the RX buffer (needs to be power of 2)
119
Sean Anderson7a763472022-03-22 16:59:34 -0400120config SERIAL_PUTS
121 bool "Enable printing strings all at once"
122 depends on DM_SERIAL
123 help
124 Some serial drivers are much more efficient when printing multiple
125 characters at once rather than printing characters individually. This
126 can be because they can load a fifo, or because individual print
127 calls have a constant overhead. With this option set, the serial
128 subsystem will try to provide serial drivers with as many characters
129 at once as possible, instead of printing characters one by one. Most
130 serial drivers do not need this config to print efficiently. If
131 unsure, say N.
132
Alexander Grafae5326a2018-01-29 13:57:20 +0100133config SERIAL_SEARCH_ALL
134 bool "Search for serial devices after default one failed"
135 depends on DM_SERIAL
136 help
137 The serial subsystem only searches for a single serial device
138 that was instantiated, but does not check whether it was probed
139 correctly. With this option set, we make successful probing
140 mandatory and search for fallback serial devices if the default
141 device does not work.
142
143 If unsure, say N.
144
Vabhav Sharma67b2ed02020-12-09 10:42:04 +0530145config SERIAL_PROBE_ALL
146 bool "Probe all available serial devices"
147 depends on DM_SERIAL
Vabhav Sharma67b2ed02020-12-09 10:42:04 +0530148 help
149 The serial subsystem only probes for a single serial device,
150 but does not probe for other remaining serial devices.
151 With this option set, we make probing and searching for
152 all available devices optional.
153 Normally, U-Boot talks to one serial port at a time, but SBSA
154 compliant UART devices like PL011 require initialization
155 by firmware and to let the kernel use serial port for sending
156 and receiving the characters.
157
158 If unsure, say N.
159
Simon Glass891f7ae2017-04-02 09:50:32 -0600160config SPL_DM_SERIAL
Heiko Schocher04249902017-06-21 06:23:10 +0200161 bool "Enable Driver Model for serial drivers in SPL"
Tom Rini6f6b7cf2018-03-06 19:02:27 -0500162 depends on DM_SERIAL && SPL_DM
163 default y
Simon Glass891f7ae2017-04-02 09:50:32 -0600164 help
165 Enable driver model for serial in SPL. This replaces
166 drivers/serial/serial.c with the serial uclass, which
167 implements serial_putc() etc. The uclass interface is
168 defined in include/serial.h.
169
170config TPL_DM_SERIAL
Heiko Schocher04249902017-06-21 06:23:10 +0200171 bool "Enable Driver Model for serial drivers in TPL"
Thomas Hebb6920f002019-11-10 08:23:55 -0800172 depends on DM_SERIAL && TPL_DM
Simon Glass891f7ae2017-04-02 09:50:32 -0600173 default y if TPL && DM_SERIAL
174 help
175 Enable driver model for serial in TPL. This replaces
176 drivers/serial/serial.c with the serial uclass, which
177 implements serial_putc() etc. The uclass interface is
178 defined in include/serial.h.
179
Simon Glass747093d2022-04-30 00:56:53 -0600180config VPL_DM_SERIAL
181 bool "Enable Driver Model for serial drivers in VPL"
182 depends on DM_SERIAL
183 default y if VPL && DM_SERIAL
184 help
185 Enable driver model for serial in VPL. This replaces
186 drivers/serial/serial.c with the serial uclass, which
187 implements serial_putc() etc. The uclass interface is
188 defined in include/serial.h.
189
Simon Glass2f964aa2015-01-26 18:27:07 -0700190config DEBUG_UART
191 bool "Enable an early debug UART for debugging"
192 help
193 The debug UART is intended for use very early in U-Boot to debug
194 problems when an ICE or other debug mechanism is not available.
195
196 To use it you should:
197 - Make sure your UART supports this interface
198 - Enable CONFIG_DEBUG_UART
199 - Enable the CONFIG for your UART to tell it to provide this interface
200 (e.g. CONFIG_DEBUG_UART_NS16550)
201 - Define the required settings as needed (see below)
202 - Call debug_uart_init() before use
203 - Call debug_uart_putc() to output a character
204
205 Depending on your platform it may be possible to use this UART before
206 a stack is available.
207
208 If your UART does not support this interface you can probably add
209 support quite easily. Remember that you cannot use driver model and
210 it is preferred to use no stack.
211
212 You must not use this UART once driver model is working and the
213 serial drivers are up and running (done in serial_init()). Otherwise
214 the drivers may conflict and you will get strange output.
215
Simon Glass21d00432015-01-26 18:27:09 -0700216choice
217 prompt "Select which UART will provide the debug UART"
218 depends on DEBUG_UART
Heinrich Schuchardtdfe08372023-09-04 13:24:04 +0200219 default DEBUG_SBI_CONSOLE if RISCV_SMODE
Thomas Choub1e361b2015-11-19 21:48:03 +0800220 default DEBUG_UART_NS16550
Simon Glass21d00432015-01-26 18:27:09 -0700221
Thomas Chou220e8022015-10-23 07:36:37 +0800222config DEBUG_UART_ALTERA_JTAGUART
223 bool "Altera JTAG UART"
Michal Simek4cc24ae2020-05-28 12:05:12 +0200224 depends on ALTERA_JTAG_UART
Thomas Chou220e8022015-10-23 07:36:37 +0800225 help
226 Select this to enable a debug UART using the altera_jtag_uart driver.
227 You will need to provide parameters to make this work. The driver will
228 be available until the real driver model serial is running.
229
Thomas Chouda2f8382015-10-21 21:26:54 +0800230config DEBUG_UART_ALTERA_UART
231 bool "Altera UART"
Michal Simek4cc24ae2020-05-28 12:05:12 +0200232 depends on ALTERA_UART
Thomas Chouda2f8382015-10-21 21:26:54 +0800233 help
234 Select this to enable a debug UART using the altera_uart driver.
235 You will need to provide parameters to make this work. The driver will
236 be available until the real driver model serial is running.
237
Wills Wang60b49762016-03-16 16:59:57 +0800238config DEBUG_UART_AR933X
239 bool "QCA/Atheros ar933x"
240 depends on AR933X_UART
241 help
242 Select this to enable a debug UART using the ar933x uart driver.
243 You will need to provide parameters to make this work. The
244 driver will be available until the real driver model serial is
245 running.
246
Alexey Brodkin54705012018-05-21 16:42:07 +0300247config DEBUG_ARC_SERIAL
248 bool "ARC UART"
249 depends on ARC_SERIAL
250 help
251 Select this to enable a debug UART using the ARC UART driver.
252 You will need to provide parameters to make this work. The
253 driver will be available until the real driver model serial is
254 running.
255
Wenyou Yang998cf3c2016-10-17 09:49:55 +0800256config DEBUG_UART_ATMEL
257 bool "Atmel USART"
Michal Simek4cc24ae2020-05-28 12:05:12 +0200258 depends on ATMEL_USART
Wenyou Yang998cf3c2016-10-17 09:49:55 +0800259 help
260 Select this to enable a debug UART using the atmel usart driver. You
261 will need to provide parameters to make this work. The driver will
262 be available until the real driver-model serial is running.
263
Álvaro Fernández Rojas30581042017-04-25 00:39:16 +0200264config DEBUG_UART_BCM6345
265 bool "BCM6345 UART"
266 depends on BCM6345_SERIAL
267 help
268 Select this to enable a debug UART on BCM6345 SoCs. You
269 will need to provide parameters to make this work. The driver will
270 be available until the real driver model serial is running.
271
Simon Glass21d00432015-01-26 18:27:09 -0700272config DEBUG_UART_NS16550
273 bool "ns16550"
Michal Simek4cc24ae2020-05-28 12:05:12 +0200274 depends on SYS_NS16550
Simon Glass21d00432015-01-26 18:27:09 -0700275 help
276 Select this to enable a debug UART using the ns16550 driver. You
277 will need to provide parameters to make this work. The driver will
278 be available until the real driver model serial is running.
279
Simon Glass275854b2015-08-04 12:33:40 -0600280config DEBUG_EFI_CONSOLE
281 bool "EFI"
282 depends on EFI_APP
283 help
284 Select this to enable a debug console which calls back to EFI to
285 output to the console. This can be useful for early debugging of
286 U-Boot when running on top of EFI (Extensive Firmware Interface).
287 This is a type of BIOS used by PCs.
288
Samuel Holland41f7be72021-09-12 10:56:09 -0500289config DEBUG_SBI_CONSOLE
290 bool "SBI"
Heinrich Schuchardtdfe08372023-09-04 13:24:04 +0200291 depends on RISCV_SMODE
Samuel Holland41f7be72021-09-12 10:56:09 -0500292 help
293 Select this to enable a debug console which calls back to SBI to
294 output to the console. This can be useful for early debugging of
295 U-Boot when running on top of SBI (Supervisor Binary Interface).
Heinrich Schuchardtdfe08372023-09-04 13:24:04 +0200296 This implementation of the debug UART is not available while in
297 M-mode (e.g. during SPL).
Samuel Holland41f7be72021-09-12 10:56:09 -0500298
Simon Glassbf6e7022015-07-02 18:15:54 -0600299config DEBUG_UART_S5P
300 bool "Samsung S5P"
Mark Kettenisd520e1f2021-10-23 16:58:04 +0200301 depends on ARCH_APPLE || ARCH_EXYNOS || ARCH_S5PC1XX
Simon Glassbf6e7022015-07-02 18:15:54 -0600302 help
303 Select this to enable a debug UART using the serial_s5p 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
Caleb Connolly4dbf4f72023-11-14 19:42:20 +0000307config DEBUG_UART_MSM
308 bool "Qualcomm QUP UART debug"
309 depends on ARCH_SNAPDRAGON
310 help
311 Select this to enable a debug UART using the serial_msm 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
Dzmitry Sankouski324df152021-10-17 13:44:27 +0300315config DEBUG_UART_MSM_GENI
316 bool "Qualcomm snapdragon"
317 depends on ARCH_SNAPDRAGON
318 help
319 Select this to enable a debug UART using the serial_msm driver. You
320 will need to provide parameters to make this work. The driver will
321 be available until the real driver-model serial is running.
322
Beniamino Galvanibfcef282016-05-08 08:30:16 +0200323config DEBUG_UART_MESON
324 bool "Amlogic Meson"
325 depends on MESON_SERIAL
326 help
327 Select this to enable a debug UART using the serial_meson driver. You
328 will need to provide parameters to make this work. The driver will
329 be available until the real driver-model serial is running.
330
Michal Simek4166ba32015-12-14 16:55:10 +0100331config DEBUG_UART_UARTLITE
332 bool "Xilinx Uartlite"
Michal Simek4cc24ae2020-05-28 12:05:12 +0200333 depends on XILINX_UARTLITE
Michal Simek4166ba32015-12-14 16:55:10 +0100334 help
335 Select this to enable a debug UART using the serial_uartlite driver.
336 You will need to provide parameters to make this work. The driver will
337 be available until the real driver-model serial is running.
338
Michal Simek966bfa72016-02-23 10:02:28 +0100339config DEBUG_UART_ARM_DCC
340 bool "ARM DCC"
Michal Simek4cc24ae2020-05-28 12:05:12 +0200341 depends on ARM_DCC
Michal Simek966bfa72016-02-23 10:02:28 +0100342 help
343 Select this to enable a debug UART using the ARM JTAG DCC port.
344 The DCC port can be used for very early debugging and doesn't require
345 any additional setting like address/baudrate/clock. On systems without
346 any serial interface this is the easiest way how to get console.
347 Every ARM core has own DCC port which is the part of debug interface.
348 This port is available at least on ARMv6, ARMv7, ARMv8 and XScale
349 architectures.
350
Stefan Roese6985d492016-05-17 16:36:00 +0200351config DEBUG_MVEBU_A3700_UART
352 bool "Marvell Armada 3700"
Michal Simek4cc24ae2020-05-28 12:05:12 +0200353 depends on MVEBU_A3700_UART
Stefan Roese6985d492016-05-17 16:36:00 +0200354 help
355 Select this to enable a debug UART using the serial_mvebu 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
Simon Glassc54c0a42015-10-17 19:41:22 -0600359config DEBUG_UART_ZYNQ
360 bool "Xilinx Zynq"
Michal Simek4cc24ae2020-05-28 12:05:12 +0200361 depends on ZYNQ_SERIAL
Simon Glassc54c0a42015-10-17 19:41:22 -0600362 help
Michal Simek6bf87da2015-12-01 14:29:34 +0100363 Select this to enable a debug UART using the serial_zynq driver. You
Simon Glassc54c0a42015-10-17 19:41:22 -0600364 will need to provide parameters to make this work. The driver will
365 be available until the real driver-model serial is running.
366
Francois Retiefe43ce3f2015-10-29 12:55:34 +0200367config DEBUG_UART_APBUART
368 depends on LEON3
369 bool "Gaisler APBUART"
370 help
371 Select this to enable a debug UART using the serial_leon3 driver. You
372 will need to provide parameters to make this work. The driver will
373 be available until the real driver model serial is running.
374
Sergey Temerkhanov19de8152015-10-14 09:54:24 -0700375config DEBUG_UART_PL010
376 bool "pl010"
Tom Rinibc08dc52021-05-22 08:47:08 -0400377 depends on PL01X_SERIAL
Sergey Temerkhanov19de8152015-10-14 09:54:24 -0700378 help
379 Select this to enable a debug UART using the pl01x driver with the
380 PL010 UART type. You will need to provide parameters to make this
381 work. The driver will be available until the real driver model
382 serial is running.
383
384config DEBUG_UART_PL011
385 bool "pl011"
Michal Simek5e9d2832021-06-24 13:36:23 +0200386 depends on PL01X_SERIAL || PL011_SERIAL
Sergey Temerkhanov19de8152015-10-14 09:54:24 -0700387 help
388 Select this to enable a debug UART using the pl01x driver with the
389 PL011 UART type. You will need to provide parameters to make this
390 work. The driver will be available until the real driver model
391 serial is running.
392
Paul Thacker9e160ee2016-01-28 15:30:14 +0530393config DEBUG_UART_PIC32
394 bool "Microchip PIC32"
395 depends on PIC32_SERIAL
396 help
397 Select this to enable a debug UART using the serial_pic32 driver. You
398 will need to provide parameters to make this work. The driver will
399 be available until the real driver model serial is running.
400
Jagan Teki61366b72017-06-06 05:31:51 +0000401config DEBUG_UART_MXC
402 bool "IMX Serial port"
403 depends on MXC_UART
404 help
405 Select this to enable a debug UART using the serial_mxc driver. You
406 will need to provide parameters to make this work. The driver will
407 be available until the real driver model serial is running.
408
Simon Glassee441762018-10-01 11:55:15 -0600409config DEBUG_UART_SANDBOX
410 bool "sandbox"
411 depends on SANDBOX_SERIAL
412 help
413 Select this to enable the debug UART using the sandbox driver. This
414 provides basic serial output from the console without needing to
415 start up driver model. The driver will be available until the real
416 driver model serial is running.
417
Sean Anderson74d11d32022-03-22 16:59:24 -0400418config DEBUG_UART_SEMIHOSTING
419 bool "semihosting"
420 depends on SEMIHOSTING_SERIAL
421 help
422 Select this to enable the debug UART using the semihosting driver.
423 This provides basic serial output from the console without needing to
424 start up driver model. The driver will be available until the real
425 driver model serial is running.
426
Marek Vasut836d1bf2023-02-28 22:17:22 +0100427config DEBUG_UART_SCIF
428 bool "Renesas SCIF UART"
429 depends on SH || ARCH_RMOBILE
430 help
431 Select this to enable a debug UART using the serial_sh driver. You
432 will need to provide parameters to make this work. The driver will
433 be available until the real driver-model serial is running.
434
Anup Patele2842492018-12-15 11:35:15 +0530435config DEBUG_UART_SIFIVE
436 bool "SiFive UART"
Michal Simek27b4a4a2020-07-10 12:41:13 +0200437 depends on SIFIVE_SERIAL
Anup Patele2842492018-12-15 11:35:15 +0530438 help
439 Select this to enable a debug UART using the serial_sifive driver. You
440 will need to provide parameters to make this work. The driver will
441 be available until the real driver-model serial is running.
442
Patrick Delaunay215c8be2018-05-17 14:50:42 +0200443config DEBUG_UART_STM32
444 bool "STMicroelectronics STM32"
445 depends on STM32_SERIAL
446 help
447 Select this to enable a debug UART using the serial_stm32 driver
448 You will need to provide parameters to make this work.
449 The driver will be available until the real driver model
450 serial is running.
451
Masahiro Yamadad5cf3292016-03-18 16:41:52 +0900452config DEBUG_UART_UNIPHIER
453 bool "UniPhier on-chip UART"
454 depends on ARCH_UNIPHIER
455 help
456 Select this to enable a debug UART using the UniPhier on-chip UART.
457 You will need to provide DEBUG_UART_BASE to make this work. The
458 driver will be available until the real driver-model serial is
459 running.
460
Lokesh Vutlaa52cf082017-04-22 15:57:25 +0530461config DEBUG_UART_OMAP
462 bool "OMAP uart"
Michal Simek4cc24ae2020-05-28 12:05:12 +0200463 depends on OMAP_SERIAL
Lokesh Vutlaa52cf082017-04-22 15:57:25 +0530464 help
465 Select this to enable a debug UART using the omap ns16550 driver.
466 You will need to provide parameters to make this work. The driver
467 will be available until the real driver model serial is running.
468
Ryder Lee849b1162018-11-15 10:08:02 +0800469config DEBUG_UART_MTK
470 bool "MediaTek High-speed UART"
471 depends on MTK_SERIAL
472 help
473 Select this to enable a debug UART using the MediaTek High-speed
474 UART driver.
475 You will need to provide parameters to make this work. The
476 driver will be available until the real driver model serial is
477 running.
478
Weijie Gao2161f1f2020-11-12 16:36:05 +0800479config DEBUG_UART_MT7620
480 bool "UART driver for MediaTek MT7620 and earlier SoCs"
481 depends on MT7620_SERIAL
482 help
483 Select this to enable a debug UART using the UART driver for
484 MediaTek MT7620 and earlier SoCs.
485 You will need to provide parameters to make this work. The
486 driver will be available until the real driver model serial is
487 running.
488
Simon Glass21d00432015-01-26 18:27:09 -0700489endchoice
490
Simon Glass2f964aa2015-01-26 18:27:07 -0700491config DEBUG_UART_BASE
492 hex "Base address of UART"
Tom Rini467591b2020-10-23 09:15:55 -0400493 depends on DEBUG_UART
Tom Rinia077ac12023-08-02 11:09:43 -0400494 default 0x0 if DEBUG_SBI_CONSOLE
495 default 0x0 if DEBUG_UART_SANDBOX
Michal Simekad55d992022-06-06 09:44:01 +0200496 default 0xff000000 if DEBUG_UART_ZYNQ && ARCH_ZYNQMP
497 default 0xe0000000 if DEBUG_UART_ZYNQ && ARCH_ZYNQ
Simon Glass2f964aa2015-01-26 18:27:07 -0700498 help
499 This is the base address of your UART for memory-mapped UARTs.
500
501 A default should be provided by your board, but if not you will need
502 to use the correct value here.
503
Pali Rohár9f971ff2022-05-06 11:05:15 +0200504config SPL_DEBUG_UART_BASE
505 hex "Base address of UART for SPL"
506 depends on SPL && DEBUG_UART
507 default DEBUG_UART_BASE
508 help
509 This is the base address of your UART for memory-mapped UARTs for SPL.
510
Pali Rohár958789f2022-05-16 18:49:09 +0200511config TPL_DEBUG_UART_BASE
512 hex "Base address of UART for TPL"
513 depends on TPL && DEBUG_UART
514 default DEBUG_UART_BASE
515 help
516 This is the base address of your UART for memory-mapped UARTs for TPL.
517
Simon Glass2f964aa2015-01-26 18:27:07 -0700518config DEBUG_UART_CLOCK
519 int "UART input clock"
Tom Rini467591b2020-10-23 09:15:55 -0400520 depends on DEBUG_UART
Samuel Holland41f7be72021-09-12 10:56:09 -0500521 default 0 if DEBUG_SBI_CONSOLE
Simon Glassee441762018-10-01 11:55:15 -0600522 default 0 if DEBUG_UART_SANDBOX
Marek Behún4a8ad582021-07-09 17:40:59 +0200523 default 0 if DEBUG_MVEBU_A3700_UART
Michal Simekad55d992022-06-06 09:44:01 +0200524 default 100000000 if DEBUG_UART_ZYNQ && ARCH_ZYNQMP
525 default 50000000 if DEBUG_UART_ZYNQ && ARCH_ZYNQ
Simon Glass2f964aa2015-01-26 18:27:07 -0700526 help
527 The UART input clock determines the speed of the internal UART
528 circuitry. The baud rate is derived from this by dividing the input
529 clock down.
530
531 A default should be provided by your board, but if not you will need
532 to use the correct value here.
533
Simon Glassdd0b0122015-02-27 22:06:25 -0700534config DEBUG_UART_SHIFT
535 int "UART register shift"
Tom Rini467591b2020-10-23 09:15:55 -0400536 depends on DEBUG_UART
Simon Glassdd0b0122015-02-27 22:06:25 -0700537 default 0 if DEBUG_UART
538 help
539 Some UARTs (notably ns16550) support different register layouts
540 where the registers are spaced either as bytes, words or some other
541 value. Use this value to specify the shift to use, where 0=byte
542 registers, 2=32-bit word registers, etc.
543
Simon Glass0e977bc2015-10-18 19:51:24 -0600544config DEBUG_UART_BOARD_INIT
545 bool "Enable board-specific debug UART init"
546 depends on DEBUG_UART
547 help
548 Some boards need to set things up before the debug UART can be used.
549 On these boards a call to debug_uart_init() is insufficient. When
550 this option is enabled, the function board_debug_uart_init() will
551 be called when debug_uart_init() is called. You can put any code
552 here that is needed to set up the UART ready for use, such as set
553 pin multiplexing or enable clocks.
554
Simon Glassc7fefcb2015-10-18 19:51:25 -0600555config DEBUG_UART_ANNOUNCE
556 bool "Show a message when the debug UART starts up"
557 depends on DEBUG_UART
558 help
559 Enable this option to show a message when the debug UART is ready
560 for use. You will see a message like "<debug_uart> " as soon as
561 U-Boot has the UART ready for use (i.e. your code calls
562 debug_uart_init()). This can be useful just as a check that
563 everything is working.
564
Sergey Temerkhanov19de8152015-10-14 09:54:24 -0700565config DEBUG_UART_SKIP_INIT
566 bool "Skip UART initialization"
Simon Goldschmidt7828e3c2019-01-09 20:27:09 +0100567 depends on DEBUG_UART
Sergey Temerkhanov19de8152015-10-14 09:54:24 -0700568 help
569 Select this if the UART you want to use for debug output is already
570 initialized by the time U-Boot starts its execution.
571
Simon Goldschmidtc4448bd2019-01-09 20:35:31 +0100572config DEBUG_UART_NS16550_CHECK_ENABLED
573 bool "Check if UART is enabled on output"
574 depends on DEBUG_UART
575 depends on DEBUG_UART_NS16550
576 help
577 Select this if puts()/putc() might be called before the debug UART
578 has been initialized. If this is disabled, putc() might sit in a
579 tight loop if it is called before debug_uart_init() has been called.
580
581 Note that this does not work for every ns16550-compatible UART and
582 so has to be enabled carefully or you might notice lost characters.
583
Thomas Chou220e8022015-10-23 07:36:37 +0800584config ALTERA_JTAG_UART
585 bool "Altera JTAG UART support"
586 depends on DM_SERIAL
587 help
588 Select this to enable an JTAG UART for Altera devices.The JTAG UART
589 core implements a method to communicate serial character streams
590 between a host PC and a Qsys system on an Altera FPGA. Please find
591 details on the "Embedded Peripherals IP User Guide" of Altera.
592
593config ALTERA_JTAG_UART_BYPASS
594 bool "Bypass output when no connection"
595 depends on ALTERA_JTAG_UART
596 help
597 Bypass console output and keep going even if there is no JTAG
598 terminal connection with the host. The console output will resume
599 once the JTAG terminal is connected. Without the bypass, the console
600 output will wait forever until a JTAG terminal is connected. If you
601 not are sure, say Y.
602
Thomas Chouda2f8382015-10-21 21:26:54 +0800603config ALTERA_UART
604 bool "Altera UART support"
605 depends on DM_SERIAL
606 help
607 Select this to enable an UART for Altera devices. Please find
608 details on the "Embedded Peripherals IP User Guide" of Altera.
609
Wills Wang60b49762016-03-16 16:59:57 +0800610config AR933X_UART
611 bool "QCA/Atheros ar933x UART support"
612 depends on DM_SERIAL && SOC_AR933X
613 help
614 Select this to enable UART support for QCA/Atheros ar933x
615 devices. This driver uses driver model and requires a device
616 tree binding to operate, please refer to the document at
617 doc/device-tree-bindings/serial/qca,ar9330-uart.txt.
618
Alexey Brodkind7ac1852018-05-21 16:40:05 +0300619config ARC_SERIAL
620 bool "ARC UART support"
621 depends on DM_SERIAL
622 help
623 Select this to enable support for ARC UART now typically
624 only used in Synopsys DesignWare ARC simulators like nSIM.
625
Tom Rinic2a38412020-06-02 17:26:33 -0400626config ARM_DCC
627 bool "ARM Debug Communication Channel (DCC) as UART support"
628 depends on ARM
629 help
630 Select this to enable using the ARM DCC as a form of UART.
631
Wenyou Yang6ec739a2016-10-17 09:49:54 +0800632config ATMEL_USART
633 bool "Atmel USART support"
634 help
635 Select this to enable USART support for Atmel SoCs. It can be
636 configured in the device tree, and input clock frequency can
637 be got from the clk node.
638
Stefan Roesee567dfb2019-04-03 15:24:19 +0200639config SPL_UART_CLOCK
640 int "SPL fixed UART input clock"
641 depends on ATMEL_USART && SPL && !SPL_CLK
642 default 132096000 if ARCH_AT91
643 help
644 Provide a fixed clock value as input to the UART controller. This
645 might be needed on platforms which can't enable CONFIG_SPL_CLK
646 because of SPL image size restrictions.
647
Alexander Graffa487592018-01-25 12:05:53 +0100648config BCM283X_MU_SERIAL
649 bool "Support for BCM283x Mini-UART"
650 depends on DM_SERIAL && ARCH_BCM283X
651 default y
652 help
653 Select this to enable Mini-UART support on BCM283X family of SoCs.
654
Alexander Graf60019852018-01-25 12:05:55 +0100655config BCM283X_PL011_SERIAL
656 bool "Support for BCM283x PL011 UART"
657 depends on PL01X_SERIAL && ARCH_BCM283X
658 default y
659 help
660 Select this to enable an overriding PL011 driver for BCM283X SoCs
661 that supports automatic disable, so that it only gets used when
662 the UART is actually muxed.
663
Álvaro Fernández Rojas30581042017-04-25 00:39:16 +0200664config BCM6345_SERIAL
665 bool "Support for BCM6345 UART"
Álvaro Fernández Rojase9e8d802018-12-01 18:42:09 +0100666 depends on DM_SERIAL
Álvaro Fernández Rojas30581042017-04-25 00:39:16 +0200667 help
668 Select this to enable UART on BCM6345 SoCs.
669
Simon Glass44482e82019-12-19 17:58:20 -0700670config COREBOOT_SERIAL
671 bool "Coreboot UART support"
672 depends on DM_SERIAL
673 default y if SYS_COREBOOT
674 select SYS_NS16550
675 help
676 Select this to enable a ns16550-style UART where the platform data
677 comes from the coreboot 'sysinfo' tables. This allows U-Boot to have
678 a serial console on any platform without needing to change the
679 device tree, etc.
680
Simon Glassb29dbf92023-05-04 16:55:00 -0600681config COREBOOT_SERIAL_FROM_DBG2
682 bool "Obtain UART from ACPI tables"
683 depends on COREBOOT_SERIAL
Simon Glassb1350632023-09-19 21:00:07 -0600684 default y
Simon Glassb29dbf92023-05-04 16:55:00 -0600685 help
686 Select this to try to find a DBG2 record in the ACPI tables, in the
687 event that coreboot does not provide information about the UART in the
688 normal sysinfo tables. This provides a useful fallback when serial
689 is not enabled in coreboot.
690
Jason Li0de653d2020-01-30 12:34:58 -0800691config CORTINA_UART
692 bool "Cortina UART support"
693 depends on DM_SERIAL
694 help
695 Select this to enable UART support for Cortina-Access UART devices
696 found on CAxxxx SoCs.
697
Tuomas Tynkkynenfac379e2018-04-09 04:34:34 +0300698config FSL_LINFLEXUART
699 bool "Freescale Linflex UART support"
700 depends on DM_SERIAL
701 help
702 Select this to enable the Linflex serial module found on some
703 NXP SoCs like S32V234.
704
Bin Meng5ed07cf2016-01-13 19:39:00 -0800705config FSL_LPUART
706 bool "Freescale LPUART support"
707 help
708 Select this to enable a Low Power UART for Freescale VF610 and
709 QorIQ Layerscape devices.
710
Tom Rinidb48e522022-03-23 17:20:00 -0400711config LPUART
712 bool "Use the LPUART as console"
713 depends on FSL_LPUART
714
Stefan Roese6985d492016-05-17 16:36:00 +0200715config MVEBU_A3700_UART
716 bool "UART support for Armada 3700"
Stefan Roese6985d492016-05-17 16:36:00 +0200717 help
718 Choose this option to add support for UART driver on the Marvell
719 Armada 3700 SoC. The base address is configured via DT.
720
Angelo Dureghello461ea072019-03-13 21:46:49 +0100721config MCFUART
722 bool "Freescale ColdFire UART support"
723 help
724 Choose this option to add support for UART driver on the ColdFire
725 SoC's family. The serial communication channel provides a full-duplex
726 asynchronous/synchronous receiver and transmitter deriving an
727 operating frequency from the internal bus clock or an external clock.
728
Jagan Teki8829e662016-10-08 18:00:08 +0530729config MXC_UART
730 bool "IMX serial port support"
Tom Rini8ba59602021-09-09 07:54:50 -0400731 depends on ARCH_MX31 || MX5 || MX6 || MX7 || IMX8M
Jagan Teki8829e662016-10-08 18:00:08 +0530732 help
733 If you have a machine based on a Motorola IMX CPU you
734 can enable its onboard serial port by enabling this option.
735
Keng Soon Cheahcac73f22017-08-24 20:29:07 -0700736config NULLDEV_SERIAL
737 bool "Null serial device"
738 help
739 Select this to enable null serial device support. A null serial
740 device merely acts as a placeholder for a serial device and does
741 nothing for all it's operation.
742
Paul Thacker9e160ee2016-01-28 15:30:14 +0530743config PIC32_SERIAL
744 bool "Support for Microchip PIC32 on-chip UART"
745 depends on DM_SERIAL && MACH_PIC32
746 default y
747 help
748 Support for the UART found on Microchip PIC32 SoC's.
749
Tom Rini9591b632022-12-04 09:39:03 -0500750config SYS_NS16550_SERIAL
751 bool "NS16550 UART or compatible legacy driver"
752 depends on !DM_SERIAL
753 select SYS_NS16550
754
755config SPL_SYS_NS16550_SERIAL
756 bool "NS16550 UART or compatible legacy driver in SPL"
757 depends on SPL && !SPL_DM_SERIAL
758 default y if SYS_NS16550_SERIAL || ARCH_SUNXI || ARCH_OMAP2PLUS
759 select SYS_NS16550
760
Thomas Chou9e390032015-11-19 21:48:14 +0800761config SYS_NS16550
762 bool "NS16550 UART or compatible"
763 help
764 Support NS16550 UART or compatible. This can be enabled in the
765 device tree with the correct input clock frequency. If the input
766 clock frequency is not defined in the device tree, the macro
Tom Rini91092132022-11-16 13:10:28 -0500767 CFG_SYS_NS16550_CLK defined in a legacy board header file will
Thomas Chou9e390032015-11-19 21:48:14 +0800768 be used. It can be a constant or a function to get clock, eg,
769 get_serial_clock().
770
Simon Glass62cbde42019-12-19 17:58:18 -0700771config NS16550_DYNAMIC
772 bool "Allow NS16550 to be configured at runtime"
Tom Rini9591b632022-12-04 09:39:03 -0500773 depends on SYS_NS16550
Simon Glass62cbde42019-12-19 17:58:18 -0700774 default y if SYS_COREBOOT || SYS_SLIMBOOTLOADER
775 help
776 Enable this option to allow device-tree control of the driver.
777
778 Normally this driver is controlled by the following options:
779
Simon Glass62cbde42019-12-19 17:58:18 -0700780 It is not a good practice for a driver to be statically configured,
781 since it prevents the same driver being used for different types of
782 UARTs in a system. This option avoids this problem at the cost of a
783 slightly increased code size.
784
Tom Rini9591b632022-12-04 09:39:03 -0500785config SYS_NS16550_MEM32
786 bool "If memory-mapped, 32bit access is needed for ns16550 register access"
787 depends on SYS_NS16550
788 help
789 If enabled, if memory-mapped, indicates that 32-bit access should be
790 used (instead of 8-bit) for register access.
791
792config SYS_NS16550_PORT_MAPPED
793 bool "Port I/O is used for ns16550 register access"
794 depends on SYS_NS16550
795 help
796 If enabled, port I/O is used for ns16550 register access. If not
797 enabled, then the UART is memory-mapped.
798
799config SYS_NS16550_REG_SIZE
800 int "ns16550 register width and endianness"
801 depends on SYS_NS16550_SERIAL || SPL_SYS_NS16550_SERIAL
802 range -4 4
803 default -4 if ARCH_OMAP2PLUS || ARCH_SUNXI
804 default 1
805 help
806 Indicates register width and also endianness. If positive, big-endian
807 access is used. If negative, little-endian is used.
808
809config SPL_NS16550_MIN_FUNCTIONS
810 bool "Only provide NS16550_init and NS16550_putc in SPL"
811 depends on SPL_SYS_NS16550_SERIAL && PPC
812 help
813 Enable this if you desire to only have use of the NS16550_init and
814 NS16550_putc functions for the serial driver located at
815 drivers/serial/ns16550.c. This option is useful for saving space for
816 already greatly restricted images, including but not limited to
817 NAND_SPL configurations.
818
Andy Shevchenkoc5f8dd42017-02-28 14:04:10 +0200819config INTEL_MID_SERIAL
820 bool "Intel MID platform UART support"
821 depends on DM_SERIAL && OF_CONTROL
822 depends on INTEL_MID
823 select SYS_NS16550
824 help
825 Select this to enable a UART for Intel MID platforms.
826 This uses the ns16550 driver as a library.
827
Alexander Grafd10fc502018-01-25 12:05:51 +0100828config PL011_SERIAL
829 bool "ARM PL011 driver"
830 depends on !DM_SERIAL
831 help
832 Select this to enable a UART for platforms using PL011.
833
Alexander Grafcf2c7782018-01-25 12:05:52 +0100834config PL01X_SERIAL
835 bool "ARM PL010 and PL011 driver"
836 depends on DM_SERIAL
837 help
838 Select this to enable a UART for platforms using PL010 or PL011.
839
Simon Glass2fc24d52016-07-04 11:58:24 -0600840config ROCKCHIP_SERIAL
841 bool "Rockchip on-chip UART support"
Johan Jonker9ee6c072022-04-09 18:55:14 +0200842 depends on DM_SERIAL
Johan Jonker6dcaf2d2022-04-09 18:55:13 +0200843 select SYS_NS16550
Simon Glass2fc24d52016-07-04 11:58:24 -0600844 help
845 Select this to enable a debug UART for Rockchip devices when using
Johan Jonker9ee6c072022-04-09 18:55:14 +0200846 OF_PLATDATA (i.e. a compiled-in device tree replacemenmt).
Simon Glass2fc24d52016-07-04 11:58:24 -0600847 This uses the ns16550 driver, converting the platdata from of-platdata
848 to the ns16550 format.
849
Mark Kettenis0d9ff952021-02-12 23:22:18 +0100850config S5P_SERIAL
851 bool "Support for Samsung S5P UART"
Mark Kettenisd520e1f2021-10-23 16:58:04 +0200852 depends on ARCH_APPLE || ARCH_EXYNOS || ARCH_S5PC1XX
Mark Kettenis0d9ff952021-02-12 23:22:18 +0100853 default y
854 help
855 Select this to enable Samsung S5P UART support.
856
Stefan Bosch5745de22022-12-18 12:25:33 +0000857config S5P4418_PL011_SERIAL
858 bool "Extended PL011 driver for S5P4418"
859 depends on DM_SERIAL && PL01X_SERIAL && ARCH_NEXELL
860 default y
861 help
862 Select this to enable support of the PL011 UARTs in the S5P4418 SOC.
863 With this driver the UART-clocks are set to the appropriate rate
864 (if not 'skip-init').
865
Simon Glassaf282242015-03-06 13:19:03 -0700866config SANDBOX_SERIAL
867 bool "Sandbox UART support"
Masahiro Yamada2ea65f32015-08-28 20:14:21 +0900868 depends on SANDBOX
Sean Andersonefa51f22022-04-04 14:17:58 -0400869 imply SERIAL_PUTS
Simon Glassaf282242015-03-06 13:19:03 -0700870 help
871 Select this to enable a seral UART for sandbox. This is required to
872 operate correctly, otherwise you will see no serial output from
873 sandbox. The emulated UART will display to the console and console
874 input will be fed into the UART. This allows you to interact with
875 U-Boot.
876
877 The operation of the console is controlled by the -t command-line
878 flag. In raw mode, U-Boot sees all characters from the terminal
879 before they are processed, including Ctrl-C. In cooked mode, Ctrl-C
880 is processed by the terminal, and terminates U-Boot. Valid options
881 are:
882
883 -t raw-with-sigs Raw mode, Ctrl-C will terminate U-Boot
884 -t raw Raw mode, Ctrl-C is processed by U-Boot
885 -t cooked Cooked mode, Ctrl-C terminates
886
Marek Vasut03a38a32017-07-21 23:18:46 +0200887config SCIF_CONSOLE
888 bool "Renesas SCIF UART support"
889 depends on SH || ARCH_RMOBILE
890 help
891 Select this to enable Renesas SCIF UART. To operate serial ports
892 on systems with RCar or SH SoCs, say Y to this option. If unsure,
893 say N.
894
Tom Rinif9f32092022-03-30 18:07:21 -0400895choice
896 prompt "SCIF console port"
897 depends on SCIF_CONSOLE && (!DM_SERIAL || (SPL && !SPL_DM_SERIAL))
898
899config CONS_SCIF0
900 bool "SCIF0"
901
902config CONS_SCIF1
903 bool "SCIF1"
904
905config CONS_SCIF2
906 bool "SCIF2"
907
908config CONS_SCIF4
909 bool "SCIF4"
910
911config CONS_SCIFA0
912 bool "SCIFA0"
913
914endchoice
915
Tom Rini5d14c332022-03-30 18:07:22 -0400916config SH_SCIF_CLK_FREQ
917 int "SCIF console clock frequency"
918 depends on SCIF_CONSOLE && (!DM_SERIAL || (SPL && !SPL_DM_SERIAL))
919 default 65000000
920
Sean Anderson74d11d32022-03-22 16:59:24 -0400921config SEMIHOSTING_SERIAL
922 bool "Semihosting UART support"
923 depends on SEMIHOSTING && !SERIAL_RX_BUFFER
Sean Anderson34855b32022-04-04 14:18:00 -0400924 imply SERIAL_PUTS
Sean Anderson74d11d32022-03-22 16:59:24 -0400925 help
926 Select this to enable a serial UART using semihosting. Special halt
927 instructions will be issued which an external debugger (such as a
928 JTAG emulator) may interpret. The debugger will display U-Boot's
929 console output on the host system.
930
931 Enable this option only if you are using a debugger which supports
932 semihosting. If you are not using a debugger, this driver will halt
933 the boot.
934
Masahiro Yamadaff247b72014-10-23 22:26:11 +0900935config UNIPHIER_SERIAL
Masahiro Yamadab6ef3a32015-05-29 17:30:01 +0900936 bool "Support for UniPhier on-chip UART"
Masahiro Yamada2ea65f32015-08-28 20:14:21 +0900937 depends on ARCH_UNIPHIER
Masahiro Yamada85dc2fe2016-08-25 19:00:37 +0900938 default y
Masahiro Yamadaff247b72014-10-23 22:26:11 +0900939 help
Masahiro Yamadab6ef3a32015-05-29 17:30:01 +0900940 If you have a UniPhier based board and want to use the on-chip
941 serial ports, say Y to this option. If unsure, say N.
Simon Glassdcfe4a52015-07-27 15:47:23 -0600942
Michal Simek54e24d32015-12-09 12:50:05 +0100943config XILINX_UARTLITE
944 bool "Xilinx Uarlite support"
Michal Simek54fdef22020-08-24 14:41:51 +0200945 depends on DM_SERIAL
Michal Simek54e24d32015-12-09 12:50:05 +0100946 help
947 If you have a Xilinx based board and want to use the uartlite
948 serial ports, say Y to this option. If unsure, say N.
949
Beniamino Galvanibfcef282016-05-08 08:30:16 +0200950config MESON_SERIAL
951 bool "Support for Amlogic Meson UART"
952 depends on DM_SERIAL && ARCH_MESON
953 help
954 If you have an Amlogic Meson based board and want to use the on-chip
955 serial ports, say Y to this option. If unsure, say N.
956
Mateusz Kulikowski142a20c2016-03-31 23:12:14 +0200957config MSM_SERIAL
958 bool "Qualcomm on-chip UART"
959 depends on DM_SERIAL
960 help
961 Support Data Mover UART used on Qualcomm Snapdragon SoCs.
962 It should support all Qualcomm devices with UARTDM version 1.4,
963 for example APQ8016 and MSM8916.
964 Single baudrate is supported in current implementation (115200).
Stefan Roese6985d492016-05-17 16:36:00 +0200965
Dzmitry Sankouski324df152021-10-17 13:44:27 +0300966config MSM_GENI_SERIAL
967 bool "Qualcomm on-chip GENI UART"
968 help
969 Support UART based on Generic Interface (GENI) Serial Engine (SE),
970 used on Qualcomm Snapdragon SoCs. Should support all qualcomm SOCs
971 with Qualcomm Universal Peripheral (QUP) Wrapper cores,
972 i.e. newer ones, starting from SDM845.
973 Driver works in FIFO mode.
974 Multiple baudrates supported.
975
Marek Vasutff476892023-05-06 16:43:31 +0200976config MXS_AUART_SERIAL
977 bool "MXS AUART"
978 depends on DM_SERIAL
979 help
980 Support for Freescale i.MX23 / i.MX28 AUART or Application UART IP.
981 This IP is present in the aforementioned SoCs, however this is not
982 the IP used to drive the Debug UART port, for that see PL01X_SERIAL .
983
Stefan Roesef1054662021-04-07 09:12:31 +0200984config OCTEON_SERIAL_BOOTCMD
985 bool "MIPS Octeon PCI remote bootcmd input"
986 depends on ARCH_OCTEON
987 depends on DM_SERIAL
988 select SYS_IS_IN_ENV
989 select CONSOLE_MUX
990 help
991 This driver supports remote input over the PCIe bus from a host
992 to U-Boot for entering commands. It is utilized by the host
993 commands 'oct-remote-load' and 'oct-remote-bootcmd'.
994
Stefan Roese4dead102021-04-07 09:12:30 +0200995config OCTEON_SERIAL_PCIE_CONSOLE
996 bool "MIPS Octeon PCIe remote console"
997 depends on ARCH_OCTEON
998 depends on (DM_SERIAL && DM_STDIO)
999 select SYS_STDIO_DEREGISTER
1000 select SYS_CONSOLE_IS_IN_ENV
1001 select CONSOLE_MUX
1002 help
1003 This driver supports remote console over the PCIe bus when the
1004 Octeon is running in PCIe target mode. The host program
1005 'oct-remote-console' can be used to connect to this console.
1006 The console number will likely be 0 or 1.
1007
Lokesh Vutla5d754192018-08-27 15:55:24 +05301008config OMAP_SERIAL
1009 bool "Support for OMAP specific UART"
1010 depends on DM_SERIAL
Lokesh Vutla586bde92018-08-27 15:57:08 +05301011 default y if (ARCH_OMAP2PLUS || ARCH_K3)
Lokesh Vutla5d754192018-08-27 15:55:24 +05301012 select SYS_NS16550
1013 help
1014 If you have an TI based SoC and want to use the on-chip serial
1015 port, say Y to this option. If unsure say N.
1016
Manivannan Sadhasivam6f9347f2018-06-14 23:38:38 +05301017config OWL_SERIAL
1018 bool "Actions Semi OWL UART"
1019 depends on DM_SERIAL && ARCH_OWL
1020 help
1021 If you have a Actions Semi OWL based board and want to use the on-chip
1022 serial port, say Y to this option. If unsure, say N.
1023 Single baudrate is supported in current implementation (115200).
1024
Anup Pateld6ba7872022-01-27 11:41:07 +05301025config HTIF_CONSOLE
1026 bool "RISC-V HTIF console support"
1027 depends on DM_SERIAL && 64BIT
1028 help
1029 Select this to enable host transfer interface (HTIF) based serial
1030 console. The HTIF device is quite common in RISC-V emulators and
1031 RISC-V ISS so this driver allows using U-Boot on such platforms.
1032
Anup Patele2842492018-12-15 11:35:15 +05301033config SIFIVE_SERIAL
1034 bool "SiFive UART support"
1035 depends on DM_SERIAL
1036 help
1037 This driver supports the SiFive UART. If unsure say N.
1038
Patrice Chotard214a17e2017-02-21 13:37:07 +01001039config STI_ASC_SERIAL
1040 bool "STMicroelectronics on-chip UART"
1041 depends on DM_SERIAL && ARCH_STI
1042 help
1043 Select this to enable Asynchronous Serial Controller available
1044 on STiH410 SoC. This is a basic implementation, it supports
1045 following baudrate 9600, 19200, 38400, 57600 and 115200.
1046
Patrice Chotardae74de02018-01-12 09:23:49 +01001047config STM32_SERIAL
Patrice Chotard84e9dcc2017-07-26 15:48:39 +02001048 bool "STMicroelectronics STM32 SoCs on-chip UART"
Patrick Delaunay2514c2d2018-03-12 10:46:10 +01001049 depends on DM_SERIAL && (STM32F4 || STM32F7 || STM32H7 || ARCH_STM32MP)
Patrice Chotard84e9dcc2017-07-26 15:48:39 +02001050 help
Patrick Delaunay2514c2d2018-03-12 10:46:10 +01001051 If you have a machine based on a STM32 F4, F7, H7 or MP1 SOC
1052 you can enable its onboard serial ports, say Y to this option.
Patrice Chotard776b2dd2017-09-13 18:00:05 +02001053 If unsure, say N.
Patrice Chotard84e9dcc2017-07-26 15:48:39 +02001054
Michal Simek809704e2017-11-06 09:16:05 +01001055config ZYNQ_SERIAL
1056 bool "Cadence (Xilinx Zynq) UART support"
Michal Simek54fdef22020-08-24 14:41:51 +02001057 depends on DM_SERIAL
Michal Simek809704e2017-11-06 09:16:05 +01001058 help
1059 This driver supports the Cadence UART. It is found e.g. in Xilinx
1060 Zynq/ZynqMP.
1061
Ryder Lee849b1162018-11-15 10:08:02 +08001062config MTK_SERIAL
1063 bool "MediaTek High-speed UART support"
1064 depends on DM_SERIAL
1065 help
1066 Select this to enable UART support for MediaTek High-speed UART
1067 devices. This driver uses driver model and requires a device
1068 tree binding to operate.
1069 The High-speed UART is compatible with the ns16550a UART and have
1070 its own high-speed registers.
1071
Weijie Gao2161f1f2020-11-12 16:36:05 +08001072config MT7620_SERIAL
1073 bool "UART driver for MediaTek MT7620 and earlier SoCs"
1074 depends on DM_SERIAL
1075 help
1076 Select this to enable UART support for MediaTek MT7620 and earlier
1077 SoCs. This driver uses driver model and requires a device tree
1078 binding to operate.
1079 The UART driver for MediaTek MT7620 and earlier SoCs is *NOT*
1080 compatible with the ns16550a UART.
1081
Christophe Leroydd7ff472017-07-06 10:33:27 +02001082config MPC8XX_CONS
1083 bool "Console driver for MPC8XX"
Christophe Leroyee1e6002018-03-16 17:20:41 +01001084 depends on MPC8xx
Christophe Leroydd7ff472017-07-06 10:33:27 +02001085 default y
1086
Jim Liu6f6a0b72022-04-19 13:32:21 +08001087config NPCM_SERIAL
1088 bool "Nuvoton NPCM UART driver"
1089 depends on DM_SERIAL
1090 help
1091 Select this to enable UART support for Nuvoton BMCs
1092 (NPCM7xx and NPCM8xx).
1093 The driver enables the onboard serial port with 8-N-1
1094 configuration.
1095
Peng Fan384d5cf2020-08-06 12:42:50 +03001096config XEN_SERIAL
1097 bool "XEN serial support"
1098 depends on XEN
1099 help
1100 If built without DM support, then requires Xen
1101 to be built with CONFIG_VERBOSE_DEBUG.
1102
Christophe Leroydd7ff472017-07-06 10:33:27 +02001103choice
1104 prompt "Console port"
1105 default 8xx_CONS_SMC1
1106 depends on MPC8XX_CONS
1107 help
1108 Depending on board, select one serial port
1109 (CONFIG_8xx_CONS_SMC1 or CONFIG_8xx_CONS_SMC2)
1110
1111config 8xx_CONS_SMC1
1112 bool "SMC1"
1113
1114config 8xx_CONS_SMC2
1115 bool "SMC2"
1116
1117endchoice
1118
1119config SYS_SMC_RXBUFLEN
1120 int "Console Rx buffer length"
1121 depends on MPC8XX_CONS
1122 default 1
1123 help
1124 With CONFIG_SYS_SMC_RXBUFLEN it is possible to define
1125 the maximum receive buffer length for the SMC.
1126 This option is actual only for 8xx possible.
1127 If using CONFIG_SYS_SMC_RXBUFLEN also CONFIG_SYS_MAXIDLE
1128 must be defined, to setup the maximum idle timeout for
1129 the SMC.
1130
1131config SYS_MAXIDLE
1132 int "maximum idle timeout"
1133 depends on MPC8XX_CONS
1134 default 0
1135
1136config SYS_BRGCLK_PRESCALE
1137 int "BRG Clock Prescale"
1138 depends on MPC8XX_CONS
1139 default 1
1140
1141config SYS_SDSR
1142 hex "SDSR Value"
1143 depends on MPC8XX_CONS
1144 default 0x83
1145
1146config SYS_SDMR
1147 hex "SDMR Value"
1148 depends on MPC8XX_CONS
Tom Rinia077ac12023-08-02 11:09:43 -04001149 default 0x0
Christophe Leroydd7ff472017-07-06 10:33:27 +02001150
Simon Glass52510482021-08-08 12:20:13 -06001151endif