blob: c972408826767a768e4e4fbfdc6b7e81d3a04eea [file] [log] [blame]
Masahiro Yamadacc85b7b2015-07-26 02:46:26 +09001#
2# Serial device configuration
3#
4
5menu "Serial drivers"
6
Philipp Tomsich29c8bc02017-03-17 20:34:53 +01007config BAUDRATE
8 int "Default baudrate"
9 default 115200
10 help
11 Select a default baudrate, where "default" has a driver-specific
12 meaning of either setting the baudrate for the early debug UART
13 in the SPL stage (most drivers) or for choosing a default baudrate
14 in the absence of an environment setting (serial_mxc.c).
15
Hans de Goede04f80942015-08-08 17:45:18 +020016config REQUIRE_SERIAL_CONSOLE
17 bool "Require a serial port for console"
18 # Running without a serial console is not supported by the
19 # non-dm serial code
20 depends on DM_SERIAL
21 default y
22 help
23 Require a serial port for the console, and panic if none is found
24 during serial port initialization (default y). Set this to n on
25 boards which have no debug serial port whatsoever.
26
Tom Rinie69ba982018-03-06 19:02:27 -050027config SPECIFY_CONSOLE_INDEX
28 bool "Specify the port number used for console"
29 default y if !DM_SERIAL || (SPL && !SPL_DM_SERIAL) || \
30 (TPL && !TPL_DM_SERIAL)
31 help
32 In various cases, we need to specify which of the UART devices that
33 a board or SoC has available are to be used for the console device
34 in U-Boot.
35
Simon Glass30a13492015-12-13 21:36:58 -070036config SERIAL_PRESENT
37 bool "Provide a serial driver"
38 depends on DM_SERIAL
39 default y
40 help
41 In very space-constrained devices even the full UART driver is too
42 large. In this case the debug UART can still be used in some cases.
43 This option enables the full UART in U-Boot, so if is it disabled,
44 the full UART driver will be omitted, thus saving space.
45
46config SPL_SERIAL_PRESENT
47 bool "Provide a serial driver in SPL"
Adam Fordac4d80e2019-08-24 13:50:34 -050048 depends on DM_SERIAL && SPL
Simon Glass30a13492015-12-13 21:36:58 -070049 default y
50 help
51 In very space-constrained devices even the full UART driver is too
52 large. In this case the debug UART can still be used in some cases.
53 This option enables the full UART in SPL, so if is it disabled,
54 the full UART driver will be omitted, thus saving space.
55
Simon Glass60573922018-10-01 12:22:20 -060056config TPL_SERIAL_PRESENT
57 bool "Provide a serial driver in TPL"
Adam Fordac4d80e2019-08-24 13:50:34 -050058 depends on DM_SERIAL && TPL
Simon Glass60573922018-10-01 12:22:20 -060059 default y
60 help
61 In very space-constrained devices even the full UART driver is too
62 large. In this case the debug UART can still be used in some cases.
63 This option enables the full UART in TPL, so if is it disabled,
64 the full UART driver will be omitted, thus saving space.
65
Tom Rinie69ba982018-03-06 19:02:27 -050066# Logic to allow us to use the imply keyword to set what the default port
67# should be. The default is otherwise 1.
68config CONS_INDEX_0
69 bool
70
71config CONS_INDEX_2
72 bool
73
74config CONS_INDEX_3
75 bool
76
77config CONS_INDEX_4
78 bool
79
80config CONS_INDEX_5
81 bool
82
83config CONS_INDEX_6
84 bool
85
Mylène Josserand80b96442017-04-02 12:59:11 +020086config CONS_INDEX
87 int "UART used for console"
Tom Rinie69ba982018-03-06 19:02:27 -050088 depends on SPECIFY_CONSOLE_INDEX
89 range 0 6
90 default 0 if CONS_INDEX_0
91 default 2 if CONS_INDEX_2
92 default 3 if CONS_INDEX_3
93 default 4 if CONS_INDEX_4
94 default 5 if CONS_INDEX_5
95 default 6 if CONS_INDEX_6
Mylène Josserand80b96442017-04-02 12:59:11 +020096 default 1
97 help
Tom Rinie69ba982018-03-06 19:02:27 -050098 Set this to match the UART number of the serial console.
Mylène Josserand80b96442017-04-02 12:59:11 +020099
Masahiro Yamada57ad8ee2014-10-23 22:26:09 +0900100config DM_SERIAL
101 bool "Enable Driver Model for serial drivers"
102 depends on DM
Sean Anderson08c854a2019-12-17 21:40:09 -0500103 select SYS_MALLOC_F
Masahiro Yamada57ad8ee2014-10-23 22:26:09 +0900104 help
Simon Glassd8b771d2015-02-05 21:41:35 -0700105 Enable driver model for serial. This replaces
106 drivers/serial/serial.c with the serial uclass, which
107 implements serial_putc() etc. The uclass interface is
108 defined in include/serial.h.
Masahiro Yamada4261c642014-10-23 22:26:11 +0900109
Stefan Roese02072832017-08-16 17:37:16 +0200110config SERIAL_RX_BUFFER
111 bool "Enable RX buffer for serial input"
112 depends on DM_SERIAL
113 help
114 Enable RX buffer support for the serial driver. This enables
115 pasting longer strings, even when the RX FIFO of the UART is
116 not big enough (e.g. 16 bytes on the normal NS16550).
117
118config SERIAL_RX_BUFFER_SIZE
119 int "RX buffer size"
120 depends on SERIAL_RX_BUFFER
121 default 256
122 help
123 The size of the RX buffer (needs to be power of 2)
124
Alexander Grafc8bda542018-01-29 13:57:20 +0100125config SERIAL_SEARCH_ALL
126 bool "Search for serial devices after default one failed"
127 depends on DM_SERIAL
128 help
129 The serial subsystem only searches for a single serial device
130 that was instantiated, but does not check whether it was probed
131 correctly. With this option set, we make successful probing
132 mandatory and search for fallback serial devices if the default
133 device does not work.
134
135 If unsure, say N.
136
Vabhav Sharma42149c92020-12-09 10:42:04 +0530137config SERIAL_PROBE_ALL
138 bool "Probe all available serial devices"
139 depends on DM_SERIAL
Vabhav Sharma42149c92020-12-09 10:42:04 +0530140 help
141 The serial subsystem only probes for a single serial device,
142 but does not probe for other remaining serial devices.
143 With this option set, we make probing and searching for
144 all available devices optional.
145 Normally, U-Boot talks to one serial port at a time, but SBSA
146 compliant UART devices like PL011 require initialization
147 by firmware and to let the kernel use serial port for sending
148 and receiving the characters.
149
150 If unsure, say N.
151
Simon Glassf9512aa2017-04-02 09:50:32 -0600152config SPL_DM_SERIAL
Heiko Schocherb0b588f2017-06-21 06:23:10 +0200153 bool "Enable Driver Model for serial drivers in SPL"
Tom Rinie69ba982018-03-06 19:02:27 -0500154 depends on DM_SERIAL && SPL_DM
Sean Anderson08c854a2019-12-17 21:40:09 -0500155 select SYS_SPL_MALLOC_F
Tom Rinie69ba982018-03-06 19:02:27 -0500156 default y
Simon Glassf9512aa2017-04-02 09:50:32 -0600157 help
158 Enable driver model for serial in SPL. This replaces
159 drivers/serial/serial.c with the serial uclass, which
160 implements serial_putc() etc. The uclass interface is
161 defined in include/serial.h.
162
163config TPL_DM_SERIAL
Heiko Schocherb0b588f2017-06-21 06:23:10 +0200164 bool "Enable Driver Model for serial drivers in TPL"
Thomas Hebbc850c6a2019-11-10 08:23:55 -0800165 depends on DM_SERIAL && TPL_DM
Sean Anderson08c854a2019-12-17 21:40:09 -0500166 select SYS_TPL_MALLOC_F
Simon Glassf9512aa2017-04-02 09:50:32 -0600167 default y if TPL && DM_SERIAL
168 help
169 Enable driver model for serial in TPL. 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
Simon Glassbac6fd82015-01-26 18:27:07 -0700174config DEBUG_UART
175 bool "Enable an early debug UART for debugging"
176 help
177 The debug UART is intended for use very early in U-Boot to debug
178 problems when an ICE or other debug mechanism is not available.
179
180 To use it you should:
181 - Make sure your UART supports this interface
182 - Enable CONFIG_DEBUG_UART
183 - Enable the CONFIG for your UART to tell it to provide this interface
184 (e.g. CONFIG_DEBUG_UART_NS16550)
185 - Define the required settings as needed (see below)
186 - Call debug_uart_init() before use
187 - Call debug_uart_putc() to output a character
188
189 Depending on your platform it may be possible to use this UART before
190 a stack is available.
191
192 If your UART does not support this interface you can probably add
193 support quite easily. Remember that you cannot use driver model and
194 it is preferred to use no stack.
195
196 You must not use this UART once driver model is working and the
197 serial drivers are up and running (done in serial_init()). Otherwise
198 the drivers may conflict and you will get strange output.
199
Simon Glass27afb522015-01-26 18:27:09 -0700200choice
201 prompt "Select which UART will provide the debug UART"
202 depends on DEBUG_UART
Thomas Choud0738412015-11-19 21:48:03 +0800203 default DEBUG_UART_NS16550
Simon Glass27afb522015-01-26 18:27:09 -0700204
Thomas Chou26066df2015-10-23 07:36:37 +0800205config DEBUG_UART_ALTERA_JTAGUART
206 bool "Altera JTAG UART"
Michal Simek8da3a6b2020-05-28 12:05:12 +0200207 depends on ALTERA_JTAG_UART
Thomas Chou26066df2015-10-23 07:36:37 +0800208 help
209 Select this to enable a debug UART using the altera_jtag_uart driver.
210 You will need to provide parameters to make this work. The driver will
211 be available until the real driver model serial is running.
212
Thomas Chou6917a5d2015-10-21 21:26:54 +0800213config DEBUG_UART_ALTERA_UART
214 bool "Altera UART"
Michal Simek8da3a6b2020-05-28 12:05:12 +0200215 depends on ALTERA_UART
Thomas Chou6917a5d2015-10-21 21:26:54 +0800216 help
217 Select this to enable a debug UART using the altera_uart driver.
218 You will need to provide parameters to make this work. The driver will
219 be available until the real driver model serial is running.
220
Wills Wangcb48c6d2016-03-16 16:59:57 +0800221config DEBUG_UART_AR933X
222 bool "QCA/Atheros ar933x"
223 depends on AR933X_UART
224 help
225 Select this to enable a debug UART using the ar933x uart driver.
226 You will need to provide parameters to make this work. The
227 driver will be available until the real driver model serial is
228 running.
229
Alexey Brodkineede1672018-05-21 16:42:07 +0300230config DEBUG_ARC_SERIAL
231 bool "ARC UART"
232 depends on ARC_SERIAL
233 help
234 Select this to enable a debug UART using the ARC UART driver.
235 You will need to provide parameters to make this work. The
236 driver will be available until the real driver model serial is
237 running.
238
Wenyou Yang6b611e62016-10-17 09:49:55 +0800239config DEBUG_UART_ATMEL
240 bool "Atmel USART"
Michal Simek8da3a6b2020-05-28 12:05:12 +0200241 depends on ATMEL_USART
Wenyou Yang6b611e62016-10-17 09:49:55 +0800242 help
243 Select this to enable a debug UART using the atmel usart driver. You
244 will need to provide parameters to make this work. The driver will
245 be available until the real driver-model serial is running.
246
Álvaro Fernández Rojas842cfaf2017-04-25 00:39:16 +0200247config DEBUG_UART_BCM6345
248 bool "BCM6345 UART"
249 depends on BCM6345_SERIAL
250 help
251 Select this to enable a debug UART on BCM6345 SoCs. You
252 will need to provide parameters to make this work. The driver will
253 be available until the real driver model serial is running.
254
Simon Glass27afb522015-01-26 18:27:09 -0700255config DEBUG_UART_NS16550
256 bool "ns16550"
Michal Simek8da3a6b2020-05-28 12:05:12 +0200257 depends on SYS_NS16550
Simon Glass27afb522015-01-26 18:27:09 -0700258 help
259 Select this to enable a debug UART using the ns16550 driver. You
260 will need to provide parameters to make this work. The driver will
261 be available until the real driver model serial is running.
262
Simon Glass5a991bd2015-08-04 12:33:40 -0600263config DEBUG_EFI_CONSOLE
264 bool "EFI"
265 depends on EFI_APP
266 help
267 Select this to enable a debug console which calls back to EFI to
268 output to the console. This can be useful for early debugging of
269 U-Boot when running on top of EFI (Extensive Firmware Interface).
270 This is a type of BIOS used by PCs.
271
Simon Glass74afb292015-07-02 18:15:54 -0600272config DEBUG_UART_S5P
273 bool "Samsung S5P"
Michal Simek8da3a6b2020-05-28 12:05:12 +0200274 depends on ARCH_EXYNOS || ARCH_S5PC1XX
Simon Glass74afb292015-07-02 18:15:54 -0600275 help
276 Select this to enable a debug UART using the serial_s5p 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
Beniamino Galvanid1037e42016-05-08 08:30:16 +0200280config DEBUG_UART_MESON
281 bool "Amlogic Meson"
282 depends on MESON_SERIAL
283 help
284 Select this to enable a debug UART using the serial_meson driver. You
285 will need to provide parameters to make this work. The driver will
286 be available until the real driver-model serial is running.
287
Michal Simek8af618b2015-12-14 16:55:10 +0100288config DEBUG_UART_UARTLITE
289 bool "Xilinx Uartlite"
Michal Simek8da3a6b2020-05-28 12:05:12 +0200290 depends on XILINX_UARTLITE
Michal Simek8af618b2015-12-14 16:55:10 +0100291 help
292 Select this to enable a debug UART using the serial_uartlite driver.
293 You will need to provide parameters to make this work. The driver will
294 be available until the real driver-model serial is running.
295
Michal Simekb3cc2602016-02-23 10:02:28 +0100296config DEBUG_UART_ARM_DCC
297 bool "ARM DCC"
Michal Simek8da3a6b2020-05-28 12:05:12 +0200298 depends on ARM_DCC
Michal Simekb3cc2602016-02-23 10:02:28 +0100299 help
300 Select this to enable a debug UART using the ARM JTAG DCC port.
301 The DCC port can be used for very early debugging and doesn't require
302 any additional setting like address/baudrate/clock. On systems without
303 any serial interface this is the easiest way how to get console.
304 Every ARM core has own DCC port which is the part of debug interface.
305 This port is available at least on ARMv6, ARMv7, ARMv8 and XScale
306 architectures.
307
Stefan Roese027276a2016-05-17 16:36:00 +0200308config DEBUG_MVEBU_A3700_UART
309 bool "Marvell Armada 3700"
Michal Simek8da3a6b2020-05-28 12:05:12 +0200310 depends on MVEBU_A3700_UART
Stefan Roese027276a2016-05-17 16:36:00 +0200311 help
312 Select this to enable a debug UART using the serial_mvebu driver. You
313 will need to provide parameters to make this work. The driver will
314 be available until the real driver-model serial is running.
315
Simon Glass091f6a32015-10-17 19:41:22 -0600316config DEBUG_UART_ZYNQ
317 bool "Xilinx Zynq"
Michal Simek8da3a6b2020-05-28 12:05:12 +0200318 depends on ZYNQ_SERIAL
Simon Glass091f6a32015-10-17 19:41:22 -0600319 help
Michal Simek49e12762015-12-01 14:29:34 +0100320 Select this to enable a debug UART using the serial_zynq driver. You
Simon Glass091f6a32015-10-17 19:41:22 -0600321 will need to provide parameters to make this work. The driver will
322 be available until the real driver-model serial is running.
323
Francois Retiefd18eb7b2015-10-29 12:55:34 +0200324config DEBUG_UART_APBUART
325 depends on LEON3
326 bool "Gaisler APBUART"
327 help
328 Select this to enable a debug UART using the serial_leon3 driver. You
329 will need to provide parameters to make this work. The driver will
330 be available until the real driver model serial is running.
331
Sergey Temerkhanov5710d7e2015-10-14 09:54:24 -0700332config DEBUG_UART_PL010
333 bool "pl010"
Tom Rini0ba2f372021-05-22 08:47:08 -0400334 depends on PL01X_SERIAL
Sergey Temerkhanov5710d7e2015-10-14 09:54:24 -0700335 help
336 Select this to enable a debug UART using the pl01x driver with the
337 PL010 UART type. You will need to provide parameters to make this
338 work. The driver will be available until the real driver model
339 serial is running.
340
341config DEBUG_UART_PL011
342 bool "pl011"
Michal Simekceedd3a2021-06-24 13:36:23 +0200343 depends on PL01X_SERIAL || PL011_SERIAL
Sergey Temerkhanov5710d7e2015-10-14 09:54:24 -0700344 help
345 Select this to enable a debug UART using the pl01x driver with the
346 PL011 UART type. You will need to provide parameters to make this
347 work. The driver will be available until the real driver model
348 serial is running.
349
Paul Thacker1dc42832016-01-28 15:30:14 +0530350config DEBUG_UART_PIC32
351 bool "Microchip PIC32"
352 depends on PIC32_SERIAL
353 help
354 Select this to enable a debug UART using the serial_pic32 driver. You
355 will need to provide parameters to make this work. The driver will
356 be available until the real driver model serial is running.
357
Jagan Tekicf6db162017-06-06 05:31:51 +0000358config DEBUG_UART_MXC
359 bool "IMX Serial port"
360 depends on MXC_UART
361 help
362 Select this to enable a debug UART using the serial_mxc driver. You
363 will need to provide parameters to make this work. The driver will
364 be available until the real driver model serial is running.
365
Simon Glasse3057f32018-10-01 11:55:15 -0600366config DEBUG_UART_SANDBOX
367 bool "sandbox"
368 depends on SANDBOX_SERIAL
369 help
370 Select this to enable the debug UART using the sandbox driver. This
371 provides basic serial output from the console without needing to
372 start up driver model. The driver will be available until the real
373 driver model serial is running.
374
Anup Patel4b1d68f2018-12-15 11:35:15 +0530375config DEBUG_UART_SIFIVE
376 bool "SiFive UART"
Michal Simekf0410172020-07-10 12:41:13 +0200377 depends on SIFIVE_SERIAL
Anup Patel4b1d68f2018-12-15 11:35:15 +0530378 help
379 Select this to enable a debug UART using the serial_sifive driver. You
380 will need to provide parameters to make this work. The driver will
381 be available until the real driver-model serial is running.
382
Patrick Delaunayab8e5d22018-05-17 14:50:42 +0200383config DEBUG_UART_STM32
384 bool "STMicroelectronics STM32"
385 depends on STM32_SERIAL
386 help
387 Select this to enable a debug UART using the serial_stm32 driver
388 You will need to provide parameters to make this work.
389 The driver will be available until the real driver model
390 serial is running.
391
Masahiro Yamada52f0c512016-03-18 16:41:52 +0900392config DEBUG_UART_UNIPHIER
393 bool "UniPhier on-chip UART"
394 depends on ARCH_UNIPHIER
395 help
396 Select this to enable a debug UART using the UniPhier on-chip UART.
397 You will need to provide DEBUG_UART_BASE to make this work. The
398 driver will be available until the real driver-model serial is
399 running.
400
Lokesh Vutla771d69c2017-04-22 15:57:25 +0530401config DEBUG_UART_OMAP
402 bool "OMAP uart"
Michal Simek8da3a6b2020-05-28 12:05:12 +0200403 depends on OMAP_SERIAL
Lokesh Vutla771d69c2017-04-22 15:57:25 +0530404 help
405 Select this to enable a debug UART using the omap ns16550 driver.
406 You will need to provide parameters to make this work. The driver
407 will be available until the real driver model serial is running.
408
developer90af58f2018-11-15 10:08:02 +0800409config DEBUG_UART_MTK
410 bool "MediaTek High-speed UART"
411 depends on MTK_SERIAL
412 help
413 Select this to enable a debug UART using the MediaTek High-speed
414 UART driver.
415 You will need to provide parameters to make this work. The
416 driver will be available until the real driver model serial is
417 running.
418
developere076b9e2020-11-12 16:36:05 +0800419config DEBUG_UART_MT7620
420 bool "UART driver for MediaTek MT7620 and earlier SoCs"
421 depends on MT7620_SERIAL
422 help
423 Select this to enable a debug UART using the UART driver for
424 MediaTek MT7620 and earlier SoCs.
425 You will need to provide parameters to make this work. The
426 driver will be available until the real driver model serial is
427 running.
428
Simon Glass27afb522015-01-26 18:27:09 -0700429endchoice
430
Simon Glassbac6fd82015-01-26 18:27:07 -0700431config DEBUG_UART_BASE
432 hex "Base address of UART"
Tom Riniae965f22020-10-23 09:15:55 -0400433 depends on DEBUG_UART
Simon Glasse3057f32018-10-01 11:55:15 -0600434 default 0 if DEBUG_UART_SANDBOX
Simon Glassbac6fd82015-01-26 18:27:07 -0700435 help
436 This is the base address of your UART for memory-mapped UARTs.
437
438 A default should be provided by your board, but if not you will need
439 to use the correct value here.
440
441config DEBUG_UART_CLOCK
442 int "UART input clock"
Tom Riniae965f22020-10-23 09:15:55 -0400443 depends on DEBUG_UART
Simon Glasse3057f32018-10-01 11:55:15 -0600444 default 0 if DEBUG_UART_SANDBOX
Marek Behún6e0e23c2021-07-09 17:40:59 +0200445 default 0 if DEBUG_MVEBU_A3700_UART
Simon Glassbac6fd82015-01-26 18:27:07 -0700446 help
447 The UART input clock determines the speed of the internal UART
448 circuitry. The baud rate is derived from this by dividing the input
449 clock down.
450
451 A default should be provided by your board, but if not you will need
452 to use the correct value here.
453
Simon Glass54111292015-02-27 22:06:25 -0700454config DEBUG_UART_SHIFT
455 int "UART register shift"
Tom Riniae965f22020-10-23 09:15:55 -0400456 depends on DEBUG_UART
Simon Glass54111292015-02-27 22:06:25 -0700457 default 0 if DEBUG_UART
458 help
459 Some UARTs (notably ns16550) support different register layouts
460 where the registers are spaced either as bytes, words or some other
461 value. Use this value to specify the shift to use, where 0=byte
462 registers, 2=32-bit word registers, etc.
463
Simon Glassc52be122015-10-18 19:51:24 -0600464config DEBUG_UART_BOARD_INIT
465 bool "Enable board-specific debug UART init"
466 depends on DEBUG_UART
467 help
468 Some boards need to set things up before the debug UART can be used.
469 On these boards a call to debug_uart_init() is insufficient. When
470 this option is enabled, the function board_debug_uart_init() will
471 be called when debug_uart_init() is called. You can put any code
472 here that is needed to set up the UART ready for use, such as set
473 pin multiplexing or enable clocks.
474
Simon Glass1f7338a2015-10-18 19:51:25 -0600475config DEBUG_UART_ANNOUNCE
476 bool "Show a message when the debug UART starts up"
477 depends on DEBUG_UART
478 help
479 Enable this option to show a message when the debug UART is ready
480 for use. You will see a message like "<debug_uart> " as soon as
481 U-Boot has the UART ready for use (i.e. your code calls
482 debug_uart_init()). This can be useful just as a check that
483 everything is working.
484
Sergey Temerkhanov5710d7e2015-10-14 09:54:24 -0700485config DEBUG_UART_SKIP_INIT
486 bool "Skip UART initialization"
Simon Goldschmidt03a96832019-01-09 20:27:09 +0100487 depends on DEBUG_UART
Sergey Temerkhanov5710d7e2015-10-14 09:54:24 -0700488 help
489 Select this if the UART you want to use for debug output is already
490 initialized by the time U-Boot starts its execution.
491
Simon Goldschmidte03ad212019-01-09 20:35:31 +0100492config DEBUG_UART_NS16550_CHECK_ENABLED
493 bool "Check if UART is enabled on output"
494 depends on DEBUG_UART
495 depends on DEBUG_UART_NS16550
496 help
497 Select this if puts()/putc() might be called before the debug UART
498 has been initialized. If this is disabled, putc() might sit in a
499 tight loop if it is called before debug_uart_init() has been called.
500
501 Note that this does not work for every ns16550-compatible UART and
502 so has to be enabled carefully or you might notice lost characters.
503
Thomas Chou26066df2015-10-23 07:36:37 +0800504config ALTERA_JTAG_UART
505 bool "Altera JTAG UART support"
506 depends on DM_SERIAL
507 help
508 Select this to enable an JTAG UART for Altera devices.The JTAG UART
509 core implements a method to communicate serial character streams
510 between a host PC and a Qsys system on an Altera FPGA. Please find
511 details on the "Embedded Peripherals IP User Guide" of Altera.
512
513config ALTERA_JTAG_UART_BYPASS
514 bool "Bypass output when no connection"
515 depends on ALTERA_JTAG_UART
516 help
517 Bypass console output and keep going even if there is no JTAG
518 terminal connection with the host. The console output will resume
519 once the JTAG terminal is connected. Without the bypass, the console
520 output will wait forever until a JTAG terminal is connected. If you
521 not are sure, say Y.
522
Thomas Chou6917a5d2015-10-21 21:26:54 +0800523config ALTERA_UART
524 bool "Altera UART support"
525 depends on DM_SERIAL
526 help
527 Select this to enable an UART for Altera devices. Please find
528 details on the "Embedded Peripherals IP User Guide" of Altera.
529
Wills Wangcb48c6d2016-03-16 16:59:57 +0800530config AR933X_UART
531 bool "QCA/Atheros ar933x UART support"
532 depends on DM_SERIAL && SOC_AR933X
533 help
534 Select this to enable UART support for QCA/Atheros ar933x
535 devices. This driver uses driver model and requires a device
536 tree binding to operate, please refer to the document at
537 doc/device-tree-bindings/serial/qca,ar9330-uart.txt.
538
Alexey Brodkinb9a0a422018-05-21 16:40:05 +0300539config ARC_SERIAL
540 bool "ARC UART support"
541 depends on DM_SERIAL
542 help
543 Select this to enable support for ARC UART now typically
544 only used in Synopsys DesignWare ARC simulators like nSIM.
545
Tom Rini0f73ac62020-06-02 17:26:33 -0400546config ARM_DCC
547 bool "ARM Debug Communication Channel (DCC) as UART support"
548 depends on ARM
549 help
550 Select this to enable using the ARM DCC as a form of UART.
551
Wenyou Yang58d44482016-10-17 09:49:54 +0800552config ATMEL_USART
553 bool "Atmel USART support"
554 help
555 Select this to enable USART support for Atmel SoCs. It can be
556 configured in the device tree, and input clock frequency can
557 be got from the clk node.
558
Stefan Roeseb1f3da82019-04-03 15:24:19 +0200559config SPL_UART_CLOCK
560 int "SPL fixed UART input clock"
561 depends on ATMEL_USART && SPL && !SPL_CLK
562 default 132096000 if ARCH_AT91
563 help
564 Provide a fixed clock value as input to the UART controller. This
565 might be needed on platforms which can't enable CONFIG_SPL_CLK
566 because of SPL image size restrictions.
567
Alexander Graf1b442952018-01-25 12:05:53 +0100568config BCM283X_MU_SERIAL
569 bool "Support for BCM283x Mini-UART"
570 depends on DM_SERIAL && ARCH_BCM283X
571 default y
572 help
573 Select this to enable Mini-UART support on BCM283X family of SoCs.
574
Alexander Grafa73b0ec2018-01-25 12:05:55 +0100575config BCM283X_PL011_SERIAL
576 bool "Support for BCM283x PL011 UART"
577 depends on PL01X_SERIAL && ARCH_BCM283X
578 default y
579 help
580 Select this to enable an overriding PL011 driver for BCM283X SoCs
581 that supports automatic disable, so that it only gets used when
582 the UART is actually muxed.
583
Álvaro Fernández Rojas842cfaf2017-04-25 00:39:16 +0200584config BCM6345_SERIAL
585 bool "Support for BCM6345 UART"
Álvaro Fernández Rojas4ab29872018-12-01 18:42:09 +0100586 depends on DM_SERIAL
Álvaro Fernández Rojas842cfaf2017-04-25 00:39:16 +0200587 help
588 Select this to enable UART on BCM6345 SoCs.
589
Simon Glass4d221072019-12-19 17:58:20 -0700590config COREBOOT_SERIAL
591 bool "Coreboot UART support"
592 depends on DM_SERIAL
593 default y if SYS_COREBOOT
594 select SYS_NS16550
595 help
596 Select this to enable a ns16550-style UART where the platform data
597 comes from the coreboot 'sysinfo' tables. This allows U-Boot to have
598 a serial console on any platform without needing to change the
599 device tree, etc.
600
Jason Liadca83a2020-01-30 12:34:58 -0800601config CORTINA_UART
602 bool "Cortina UART support"
603 depends on DM_SERIAL
604 help
605 Select this to enable UART support for Cortina-Access UART devices
606 found on CAxxxx SoCs.
607
Tuomas Tynkkynenf2c84702018-04-09 04:34:34 +0300608config FSL_LINFLEXUART
609 bool "Freescale Linflex UART support"
610 depends on DM_SERIAL
611 help
612 Select this to enable the Linflex serial module found on some
613 NXP SoCs like S32V234.
614
Bin Meng4409dcf2016-01-13 19:39:00 -0800615config FSL_LPUART
616 bool "Freescale LPUART support"
617 help
618 Select this to enable a Low Power UART for Freescale VF610 and
619 QorIQ Layerscape devices.
620
Stefan Roese027276a2016-05-17 16:36:00 +0200621config MVEBU_A3700_UART
622 bool "UART support for Armada 3700"
Stefan Roese027276a2016-05-17 16:36:00 +0200623 help
624 Choose this option to add support for UART driver on the Marvell
625 Armada 3700 SoC. The base address is configured via DT.
626
Angelo Dureghello6d542f32019-03-13 21:46:49 +0100627config MCFUART
628 bool "Freescale ColdFire UART support"
629 help
630 Choose this option to add support for UART driver on the ColdFire
631 SoC's family. The serial communication channel provides a full-duplex
632 asynchronous/synchronous receiver and transmitter deriving an
633 operating frequency from the internal bus clock or an external clock.
634
Jagan Tekia73597a2016-10-08 18:00:08 +0530635config MXC_UART
636 bool "IMX serial port support"
Tom Rini80b14972021-02-20 20:05:43 -0500637 depends on ARCH_MX25 || ARCH_MX31 || TARGET_FLEA3 \
Tom Rinid0193802020-06-09 10:46:46 -0400638 || MX5 || MX6 || MX7 || IMX8M
Jagan Tekia73597a2016-10-08 18:00:08 +0530639 help
640 If you have a machine based on a Motorola IMX CPU you
641 can enable its onboard serial port by enabling this option.
642
Keng Soon Cheah755e2d02017-08-24 20:29:07 -0700643config NULLDEV_SERIAL
644 bool "Null serial device"
645 help
646 Select this to enable null serial device support. A null serial
647 device merely acts as a placeholder for a serial device and does
648 nothing for all it's operation.
649
Paul Thacker1dc42832016-01-28 15:30:14 +0530650config PIC32_SERIAL
651 bool "Support for Microchip PIC32 on-chip UART"
652 depends on DM_SERIAL && MACH_PIC32
653 default y
654 help
655 Support for the UART found on Microchip PIC32 SoC's.
656
Thomas Choua6cec012015-11-19 21:48:14 +0800657config SYS_NS16550
658 bool "NS16550 UART or compatible"
659 help
660 Support NS16550 UART or compatible. This can be enabled in the
661 device tree with the correct input clock frequency. If the input
662 clock frequency is not defined in the device tree, the macro
663 CONFIG_SYS_NS16550_CLK defined in a legacy board header file will
664 be used. It can be a constant or a function to get clock, eg,
665 get_serial_clock().
666
Simon Glassf8b1a242019-12-19 17:58:18 -0700667config NS16550_DYNAMIC
668 bool "Allow NS16550 to be configured at runtime"
669 default y if SYS_COREBOOT || SYS_SLIMBOOTLOADER
670 help
671 Enable this option to allow device-tree control of the driver.
672
673 Normally this driver is controlled by the following options:
674
675 CONFIG_SYS_NS16550_PORT_MAPPED - indicates that port I/O is used for
676 access. If not enabled, then the UART is memory-mapped.
677 CONFIG_SYS_NS16550_MEM32 - if memory-mapped, indicates that 32-bit
678 access should be used (instead of 8-bit)
679 CONFIG_SYS_NS16550_REG_SIZE - indicates register width and also
680 endianness. If positive, big-endian access is used. If negative,
681 little-endian is used.
682
683 It is not a good practice for a driver to be statically configured,
684 since it prevents the same driver being used for different types of
685 UARTs in a system. This option avoids this problem at the cost of a
686 slightly increased code size.
687
Andy Shevchenkoc65a7fe2017-02-28 14:04:10 +0200688config INTEL_MID_SERIAL
689 bool "Intel MID platform UART support"
690 depends on DM_SERIAL && OF_CONTROL
691 depends on INTEL_MID
692 select SYS_NS16550
693 help
694 Select this to enable a UART for Intel MID platforms.
695 This uses the ns16550 driver as a library.
696
Alexander Graf65bfb422018-01-25 12:05:51 +0100697config PL011_SERIAL
698 bool "ARM PL011 driver"
699 depends on !DM_SERIAL
700 help
701 Select this to enable a UART for platforms using PL011.
702
Alexander Graf633ef892018-01-25 12:05:52 +0100703config PL01X_SERIAL
704 bool "ARM PL010 and PL011 driver"
705 depends on DM_SERIAL
706 help
707 Select this to enable a UART for platforms using PL010 or PL011.
708
Simon Glassb3068ad2016-07-04 11:58:24 -0600709config ROCKCHIP_SERIAL
710 bool "Rockchip on-chip UART support"
711 depends on DM_SERIAL && SPL_OF_PLATDATA
712 help
713 Select this to enable a debug UART for Rockchip devices when using
Tom Rini9732f792017-01-14 12:20:23 -0500714 CONFIG_SPL_OF_PLATDATA (i.e. a compiled-in device tree replacemenmt).
Simon Glassb3068ad2016-07-04 11:58:24 -0600715 This uses the ns16550 driver, converting the platdata from of-platdata
716 to the ns16550 format.
717
Mark Kettenis3b9ad302021-02-12 23:22:18 +0100718config S5P_SERIAL
719 bool "Support for Samsung S5P UART"
720 depends on ARCH_EXYNOS || ARCH_S5PC1XX
721 default y
722 help
723 Select this to enable Samsung S5P UART support.
724
Simon Glass8579a512015-03-06 13:19:03 -0700725config SANDBOX_SERIAL
726 bool "Sandbox UART support"
Masahiro Yamadaa8318672015-08-28 20:14:21 +0900727 depends on SANDBOX
Simon Glass8579a512015-03-06 13:19:03 -0700728 help
729 Select this to enable a seral UART for sandbox. This is required to
730 operate correctly, otherwise you will see no serial output from
731 sandbox. The emulated UART will display to the console and console
732 input will be fed into the UART. This allows you to interact with
733 U-Boot.
734
735 The operation of the console is controlled by the -t command-line
736 flag. In raw mode, U-Boot sees all characters from the terminal
737 before they are processed, including Ctrl-C. In cooked mode, Ctrl-C
738 is processed by the terminal, and terminates U-Boot. Valid options
739 are:
740
741 -t raw-with-sigs Raw mode, Ctrl-C will terminate U-Boot
742 -t raw Raw mode, Ctrl-C is processed by U-Boot
743 -t cooked Cooked mode, Ctrl-C terminates
744
Marek Vasut2b2e4832017-07-21 23:18:46 +0200745config SCIF_CONSOLE
746 bool "Renesas SCIF UART support"
747 depends on SH || ARCH_RMOBILE
748 help
749 Select this to enable Renesas SCIF UART. To operate serial ports
750 on systems with RCar or SH SoCs, say Y to this option. If unsure,
751 say N.
752
Masahiro Yamada4261c642014-10-23 22:26:11 +0900753config UNIPHIER_SERIAL
Masahiro Yamada563ee4c2015-05-29 17:30:01 +0900754 bool "Support for UniPhier on-chip UART"
Masahiro Yamadaa8318672015-08-28 20:14:21 +0900755 depends on ARCH_UNIPHIER
Masahiro Yamadadf5fda02016-08-25 19:00:37 +0900756 default y
Masahiro Yamada4261c642014-10-23 22:26:11 +0900757 help
Masahiro Yamada563ee4c2015-05-29 17:30:01 +0900758 If you have a UniPhier based board and want to use the on-chip
759 serial ports, say Y to this option. If unsure, say N.
Simon Glass1c32bdb2015-07-27 15:47:23 -0600760
Michal Simek93ce5052015-12-09 12:50:05 +0100761config XILINX_UARTLITE
762 bool "Xilinx Uarlite support"
Michal Simek3239d712020-08-24 14:41:51 +0200763 depends on DM_SERIAL
Michal Simek93ce5052015-12-09 12:50:05 +0100764 help
765 If you have a Xilinx based board and want to use the uartlite
766 serial ports, say Y to this option. If unsure, say N.
767
Beniamino Galvanid1037e42016-05-08 08:30:16 +0200768config MESON_SERIAL
769 bool "Support for Amlogic Meson UART"
770 depends on DM_SERIAL && ARCH_MESON
771 help
772 If you have an Amlogic Meson based board and want to use the on-chip
773 serial ports, say Y to this option. If unsure, say N.
774
Mateusz Kulikowski8aac6972016-03-31 23:12:14 +0200775config MSM_SERIAL
776 bool "Qualcomm on-chip UART"
777 depends on DM_SERIAL
778 help
779 Support Data Mover UART used on Qualcomm Snapdragon SoCs.
780 It should support all Qualcomm devices with UARTDM version 1.4,
781 for example APQ8016 and MSM8916.
782 Single baudrate is supported in current implementation (115200).
Stefan Roese027276a2016-05-17 16:36:00 +0200783
Stefan Roese09e90762021-04-07 09:12:31 +0200784config OCTEON_SERIAL_BOOTCMD
785 bool "MIPS Octeon PCI remote bootcmd input"
786 depends on ARCH_OCTEON
787 depends on DM_SERIAL
788 select SYS_IS_IN_ENV
789 select CONSOLE_MUX
790 help
791 This driver supports remote input over the PCIe bus from a host
792 to U-Boot for entering commands. It is utilized by the host
793 commands 'oct-remote-load' and 'oct-remote-bootcmd'.
794
Stefan Roese01452252021-04-07 09:12:30 +0200795config OCTEON_SERIAL_PCIE_CONSOLE
796 bool "MIPS Octeon PCIe remote console"
797 depends on ARCH_OCTEON
798 depends on (DM_SERIAL && DM_STDIO)
799 select SYS_STDIO_DEREGISTER
800 select SYS_CONSOLE_IS_IN_ENV
801 select CONSOLE_MUX
802 help
803 This driver supports remote console over the PCIe bus when the
804 Octeon is running in PCIe target mode. The host program
805 'oct-remote-console' can be used to connect to this console.
806 The console number will likely be 0 or 1.
807
Lokesh Vutla42cb4b82018-08-27 15:55:24 +0530808config OMAP_SERIAL
809 bool "Support for OMAP specific UART"
810 depends on DM_SERIAL
Lokesh Vutla9bdec002018-08-27 15:57:08 +0530811 default y if (ARCH_OMAP2PLUS || ARCH_K3)
Lokesh Vutla42cb4b82018-08-27 15:55:24 +0530812 select SYS_NS16550
813 help
814 If you have an TI based SoC and want to use the on-chip serial
815 port, say Y to this option. If unsure say N.
816
Manivannan Sadhasivam01e47392018-06-14 23:38:38 +0530817config OWL_SERIAL
818 bool "Actions Semi OWL UART"
819 depends on DM_SERIAL && ARCH_OWL
820 help
821 If you have a Actions Semi OWL based board and want to use the on-chip
822 serial port, say Y to this option. If unsure, say N.
823 Single baudrate is supported in current implementation (115200).
824
Marcel Ziswilercd22bf62016-11-14 21:40:25 +0100825config PXA_SERIAL
826 bool "PXA serial port support"
827 help
828 If you have a machine based on a Marvell XScale PXA2xx CPU you
829 can enable its onboard serial ports by enabling this option.
830
Anup Patel4b1d68f2018-12-15 11:35:15 +0530831config SIFIVE_SERIAL
832 bool "SiFive UART support"
833 depends on DM_SERIAL
834 help
835 This driver supports the SiFive UART. If unsure say N.
836
Patrice Chotard42d742b2017-02-21 13:37:07 +0100837config STI_ASC_SERIAL
838 bool "STMicroelectronics on-chip UART"
839 depends on DM_SERIAL && ARCH_STI
840 help
841 Select this to enable Asynchronous Serial Controller available
842 on STiH410 SoC. This is a basic implementation, it supports
843 following baudrate 9600, 19200, 38400, 57600 and 115200.
844
Patrice Chotard9e276502018-01-12 09:23:49 +0100845config STM32_SERIAL
Patrice Chotard72cefd52017-07-26 15:48:39 +0200846 bool "STMicroelectronics STM32 SoCs on-chip UART"
Patrick Delaunay85b53972018-03-12 10:46:10 +0100847 depends on DM_SERIAL && (STM32F4 || STM32F7 || STM32H7 || ARCH_STM32MP)
Patrice Chotard72cefd52017-07-26 15:48:39 +0200848 help
Patrick Delaunay85b53972018-03-12 10:46:10 +0100849 If you have a machine based on a STM32 F4, F7, H7 or MP1 SOC
850 you can enable its onboard serial ports, say Y to this option.
Patrice Chotard3b2a14f2017-09-13 18:00:05 +0200851 If unsure, say N.
Patrice Chotard72cefd52017-07-26 15:48:39 +0200852
Michal Simekab754532017-11-06 09:16:05 +0100853config ZYNQ_SERIAL
854 bool "Cadence (Xilinx Zynq) UART support"
Michal Simek3239d712020-08-24 14:41:51 +0200855 depends on DM_SERIAL
Michal Simekab754532017-11-06 09:16:05 +0100856 help
857 This driver supports the Cadence UART. It is found e.g. in Xilinx
858 Zynq/ZynqMP.
859
developer90af58f2018-11-15 10:08:02 +0800860config MTK_SERIAL
861 bool "MediaTek High-speed UART support"
862 depends on DM_SERIAL
863 help
864 Select this to enable UART support for MediaTek High-speed UART
865 devices. This driver uses driver model and requires a device
866 tree binding to operate.
867 The High-speed UART is compatible with the ns16550a UART and have
868 its own high-speed registers.
869
developere076b9e2020-11-12 16:36:05 +0800870config MT7620_SERIAL
871 bool "UART driver for MediaTek MT7620 and earlier SoCs"
872 depends on DM_SERIAL
873 help
874 Select this to enable UART support for MediaTek MT7620 and earlier
875 SoCs. This driver uses driver model and requires a device tree
876 binding to operate.
877 The UART driver for MediaTek MT7620 and earlier SoCs is *NOT*
878 compatible with the ns16550a UART.
879
Christophe Leroy9ac4a542017-07-06 10:33:27 +0200880config MPC8XX_CONS
881 bool "Console driver for MPC8XX"
Christophe Leroyb3510fb2018-03-16 17:20:41 +0100882 depends on MPC8xx
Christophe Leroy9ac4a542017-07-06 10:33:27 +0200883 default y
884
Peng Fan8162f8f2020-08-06 12:42:50 +0300885config XEN_SERIAL
886 bool "XEN serial support"
887 depends on XEN
888 help
889 If built without DM support, then requires Xen
890 to be built with CONFIG_VERBOSE_DEBUG.
891
Christophe Leroy9ac4a542017-07-06 10:33:27 +0200892choice
893 prompt "Console port"
894 default 8xx_CONS_SMC1
895 depends on MPC8XX_CONS
896 help
897 Depending on board, select one serial port
898 (CONFIG_8xx_CONS_SMC1 or CONFIG_8xx_CONS_SMC2)
899
900config 8xx_CONS_SMC1
901 bool "SMC1"
902
903config 8xx_CONS_SMC2
904 bool "SMC2"
905
906endchoice
907
908config SYS_SMC_RXBUFLEN
909 int "Console Rx buffer length"
910 depends on MPC8XX_CONS
911 default 1
912 help
913 With CONFIG_SYS_SMC_RXBUFLEN it is possible to define
914 the maximum receive buffer length for the SMC.
915 This option is actual only for 8xx possible.
916 If using CONFIG_SYS_SMC_RXBUFLEN also CONFIG_SYS_MAXIDLE
917 must be defined, to setup the maximum idle timeout for
918 the SMC.
919
920config SYS_MAXIDLE
921 int "maximum idle timeout"
922 depends on MPC8XX_CONS
923 default 0
924
925config SYS_BRGCLK_PRESCALE
926 int "BRG Clock Prescale"
927 depends on MPC8XX_CONS
928 default 1
929
930config SYS_SDSR
931 hex "SDSR Value"
932 depends on MPC8XX_CONS
933 default 0x83
934
935config SYS_SDMR
936 hex "SDMR Value"
937 depends on MPC8XX_CONS
938 default 0
939
Masahiro Yamadacc85b7b2015-07-26 02:46:26 +0900940endmenu