blob: 6d1e47cc34ca895191326a3b00a543b1b41851a4 [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
Simon Glassf9512aa2017-04-02 09:50:32 -0600137config SPL_DM_SERIAL
Heiko Schocherb0b588f2017-06-21 06:23:10 +0200138 bool "Enable Driver Model for serial drivers in SPL"
Tom Rinie69ba982018-03-06 19:02:27 -0500139 depends on DM_SERIAL && SPL_DM
Sean Anderson08c854a2019-12-17 21:40:09 -0500140 select SYS_SPL_MALLOC_F
Tom Rinie69ba982018-03-06 19:02:27 -0500141 default y
Simon Glassf9512aa2017-04-02 09:50:32 -0600142 help
143 Enable driver model for serial in SPL. This replaces
144 drivers/serial/serial.c with the serial uclass, which
145 implements serial_putc() etc. The uclass interface is
146 defined in include/serial.h.
147
148config TPL_DM_SERIAL
Heiko Schocherb0b588f2017-06-21 06:23:10 +0200149 bool "Enable Driver Model for serial drivers in TPL"
Thomas Hebbc850c6a2019-11-10 08:23:55 -0800150 depends on DM_SERIAL && TPL_DM
Sean Anderson08c854a2019-12-17 21:40:09 -0500151 select SYS_TPL_MALLOC_F
Simon Glassf9512aa2017-04-02 09:50:32 -0600152 default y if TPL && DM_SERIAL
153 help
154 Enable driver model for serial in TPL. This replaces
155 drivers/serial/serial.c with the serial uclass, which
156 implements serial_putc() etc. The uclass interface is
157 defined in include/serial.h.
158
Simon Glassbac6fd82015-01-26 18:27:07 -0700159config DEBUG_UART
160 bool "Enable an early debug UART for debugging"
161 help
162 The debug UART is intended for use very early in U-Boot to debug
163 problems when an ICE or other debug mechanism is not available.
164
165 To use it you should:
166 - Make sure your UART supports this interface
167 - Enable CONFIG_DEBUG_UART
168 - Enable the CONFIG for your UART to tell it to provide this interface
169 (e.g. CONFIG_DEBUG_UART_NS16550)
170 - Define the required settings as needed (see below)
171 - Call debug_uart_init() before use
172 - Call debug_uart_putc() to output a character
173
174 Depending on your platform it may be possible to use this UART before
175 a stack is available.
176
177 If your UART does not support this interface you can probably add
178 support quite easily. Remember that you cannot use driver model and
179 it is preferred to use no stack.
180
181 You must not use this UART once driver model is working and the
182 serial drivers are up and running (done in serial_init()). Otherwise
183 the drivers may conflict and you will get strange output.
184
Simon Glass27afb522015-01-26 18:27:09 -0700185choice
186 prompt "Select which UART will provide the debug UART"
187 depends on DEBUG_UART
Thomas Choud0738412015-11-19 21:48:03 +0800188 default DEBUG_UART_NS16550
Simon Glass27afb522015-01-26 18:27:09 -0700189
Thomas Chou26066df2015-10-23 07:36:37 +0800190config DEBUG_UART_ALTERA_JTAGUART
191 bool "Altera JTAG UART"
192 help
193 Select this to enable a debug UART using the altera_jtag_uart driver.
194 You will need to provide parameters to make this work. The driver will
195 be available until the real driver model serial is running.
196
Thomas Chou6917a5d2015-10-21 21:26:54 +0800197config DEBUG_UART_ALTERA_UART
198 bool "Altera UART"
199 help
200 Select this to enable a debug UART using the altera_uart driver.
201 You will need to provide parameters to make this work. The driver will
202 be available until the real driver model serial is running.
203
Wills Wangcb48c6d2016-03-16 16:59:57 +0800204config DEBUG_UART_AR933X
205 bool "QCA/Atheros ar933x"
206 depends on AR933X_UART
207 help
208 Select this to enable a debug UART using the ar933x uart driver.
209 You will need to provide parameters to make this work. The
210 driver will be available until the real driver model serial is
211 running.
212
Alexey Brodkineede1672018-05-21 16:42:07 +0300213config DEBUG_ARC_SERIAL
214 bool "ARC UART"
215 depends on ARC_SERIAL
216 help
217 Select this to enable a debug UART using the ARC UART driver.
218 You will need to provide parameters to make this work. The
219 driver will be available until the real driver model serial is
220 running.
221
Wenyou Yang6b611e62016-10-17 09:49:55 +0800222config DEBUG_UART_ATMEL
223 bool "Atmel USART"
224 help
225 Select this to enable a debug UART using the atmel usart driver. You
226 will need to provide parameters to make this work. The driver will
227 be available until the real driver-model serial is running.
228
Álvaro Fernández Rojas842cfaf2017-04-25 00:39:16 +0200229config DEBUG_UART_BCM6345
230 bool "BCM6345 UART"
231 depends on BCM6345_SERIAL
232 help
233 Select this to enable a debug UART on BCM6345 SoCs. You
234 will need to provide parameters to make this work. The driver will
235 be available until the real driver model serial is running.
236
Simon Glass27afb522015-01-26 18:27:09 -0700237config DEBUG_UART_NS16550
238 bool "ns16550"
239 help
240 Select this to enable a debug UART using the ns16550 driver. You
241 will need to provide parameters to make this work. The driver will
242 be available until the real driver model serial is running.
243
Simon Glass5a991bd2015-08-04 12:33:40 -0600244config DEBUG_EFI_CONSOLE
245 bool "EFI"
246 depends on EFI_APP
247 help
248 Select this to enable a debug console which calls back to EFI to
249 output to the console. This can be useful for early debugging of
250 U-Boot when running on top of EFI (Extensive Firmware Interface).
251 This is a type of BIOS used by PCs.
252
Simon Glass74afb292015-07-02 18:15:54 -0600253config DEBUG_UART_S5P
254 bool "Samsung S5P"
255 help
256 Select this to enable a debug UART using the serial_s5p driver. You
257 will need to provide parameters to make this work. The driver will
258 be available until the real driver-model serial is running.
259
Beniamino Galvanid1037e42016-05-08 08:30:16 +0200260config DEBUG_UART_MESON
261 bool "Amlogic Meson"
262 depends on MESON_SERIAL
263 help
264 Select this to enable a debug UART using the serial_meson driver. You
265 will need to provide parameters to make this work. The driver will
266 be available until the real driver-model serial is running.
267
Michal Simek8af618b2015-12-14 16:55:10 +0100268config DEBUG_UART_UARTLITE
269 bool "Xilinx Uartlite"
270 help
271 Select this to enable a debug UART using the serial_uartlite driver.
272 You will need to provide parameters to make this work. The driver will
273 be available until the real driver-model serial is running.
274
Michal Simekb3cc2602016-02-23 10:02:28 +0100275config DEBUG_UART_ARM_DCC
276 bool "ARM DCC"
277 help
278 Select this to enable a debug UART using the ARM JTAG DCC port.
279 The DCC port can be used for very early debugging and doesn't require
280 any additional setting like address/baudrate/clock. On systems without
281 any serial interface this is the easiest way how to get console.
282 Every ARM core has own DCC port which is the part of debug interface.
283 This port is available at least on ARMv6, ARMv7, ARMv8 and XScale
284 architectures.
285
Stefan Roese027276a2016-05-17 16:36:00 +0200286config DEBUG_MVEBU_A3700_UART
287 bool "Marvell Armada 3700"
288 help
289 Select this to enable a debug UART using the serial_mvebu driver. You
290 will need to provide parameters to make this work. The driver will
291 be available until the real driver-model serial is running.
292
Simon Glass091f6a32015-10-17 19:41:22 -0600293config DEBUG_UART_ZYNQ
294 bool "Xilinx Zynq"
295 help
Michal Simek49e12762015-12-01 14:29:34 +0100296 Select this to enable a debug UART using the serial_zynq driver. You
Simon Glass091f6a32015-10-17 19:41:22 -0600297 will need to provide parameters to make this work. The driver will
298 be available until the real driver-model serial is running.
299
Francois Retiefd18eb7b2015-10-29 12:55:34 +0200300config DEBUG_UART_APBUART
301 depends on LEON3
302 bool "Gaisler APBUART"
303 help
304 Select this to enable a debug UART using the serial_leon3 driver. You
305 will need to provide parameters to make this work. The driver will
306 be available until the real driver model serial is running.
307
Sergey Temerkhanov5710d7e2015-10-14 09:54:24 -0700308config DEBUG_UART_PL010
309 bool "pl010"
310 help
311 Select this to enable a debug UART using the pl01x driver with the
312 PL010 UART type. You will need to provide parameters to make this
313 work. The driver will be available until the real driver model
314 serial is running.
315
316config DEBUG_UART_PL011
317 bool "pl011"
318 help
319 Select this to enable a debug UART using the pl01x driver with the
320 PL011 UART type. You will need to provide parameters to make this
321 work. The driver will be available until the real driver model
322 serial is running.
323
Paul Thacker1dc42832016-01-28 15:30:14 +0530324config DEBUG_UART_PIC32
325 bool "Microchip PIC32"
326 depends on PIC32_SERIAL
327 help
328 Select this to enable a debug UART using the serial_pic32 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
Jagan Tekicf6db162017-06-06 05:31:51 +0000332config DEBUG_UART_MXC
333 bool "IMX Serial port"
334 depends on MXC_UART
335 help
336 Select this to enable a debug UART using the serial_mxc driver. You
337 will need to provide parameters to make this work. The driver will
338 be available until the real driver model serial is running.
339
Simon Glasse3057f32018-10-01 11:55:15 -0600340config DEBUG_UART_SANDBOX
341 bool "sandbox"
342 depends on SANDBOX_SERIAL
343 help
344 Select this to enable the debug UART using the sandbox driver. This
345 provides basic serial output from the console without needing to
346 start up driver model. The driver will be available until the real
347 driver model serial is running.
348
Anup Patel4b1d68f2018-12-15 11:35:15 +0530349config DEBUG_UART_SIFIVE
350 bool "SiFive UART"
351 help
352 Select this to enable a debug UART using the serial_sifive driver. You
353 will need to provide parameters to make this work. The driver will
354 be available until the real driver-model serial is running.
355
Patrick Delaunayab8e5d22018-05-17 14:50:42 +0200356config DEBUG_UART_STM32
357 bool "STMicroelectronics STM32"
358 depends on STM32_SERIAL
359 help
360 Select this to enable a debug UART using the serial_stm32 driver
361 You will need to provide parameters to make this work.
362 The driver will be available until the real driver model
363 serial is running.
364
Masahiro Yamada52f0c512016-03-18 16:41:52 +0900365config DEBUG_UART_UNIPHIER
366 bool "UniPhier on-chip UART"
367 depends on ARCH_UNIPHIER
368 help
369 Select this to enable a debug UART using the UniPhier on-chip UART.
370 You will need to provide DEBUG_UART_BASE to make this work. The
371 driver will be available until the real driver-model serial is
372 running.
373
Lokesh Vutla771d69c2017-04-22 15:57:25 +0530374config DEBUG_UART_OMAP
375 bool "OMAP uart"
376 help
377 Select this to enable a debug UART using the omap ns16550 driver.
378 You will need to provide parameters to make this work. The driver
379 will be available until the real driver model serial is running.
380
developer90af58f2018-11-15 10:08:02 +0800381config DEBUG_UART_MTK
382 bool "MediaTek High-speed UART"
383 depends on MTK_SERIAL
384 help
385 Select this to enable a debug UART using the MediaTek High-speed
386 UART driver.
387 You will need to provide parameters to make this work. The
388 driver will be available until the real driver model serial is
389 running.
390
Simon Glass27afb522015-01-26 18:27:09 -0700391endchoice
392
Simon Glassbac6fd82015-01-26 18:27:07 -0700393config DEBUG_UART_BASE
394 hex "Base address of UART"
395 depends on DEBUG_UART
Simon Glasse3057f32018-10-01 11:55:15 -0600396 default 0 if DEBUG_UART_SANDBOX
Simon Glassbac6fd82015-01-26 18:27:07 -0700397 help
398 This is the base address of your UART for memory-mapped UARTs.
399
400 A default should be provided by your board, but if not you will need
401 to use the correct value here.
402
403config DEBUG_UART_CLOCK
404 int "UART input clock"
405 depends on DEBUG_UART
Simon Glasse3057f32018-10-01 11:55:15 -0600406 default 0 if DEBUG_UART_SANDBOX
Simon Glassbac6fd82015-01-26 18:27:07 -0700407 help
408 The UART input clock determines the speed of the internal UART
409 circuitry. The baud rate is derived from this by dividing the input
410 clock down.
411
412 A default should be provided by your board, but if not you will need
413 to use the correct value here.
414
Simon Glass54111292015-02-27 22:06:25 -0700415config DEBUG_UART_SHIFT
416 int "UART register shift"
417 depends on DEBUG_UART
418 default 0 if DEBUG_UART
419 help
420 Some UARTs (notably ns16550) support different register layouts
421 where the registers are spaced either as bytes, words or some other
422 value. Use this value to specify the shift to use, where 0=byte
423 registers, 2=32-bit word registers, etc.
424
Simon Glassc52be122015-10-18 19:51:24 -0600425config DEBUG_UART_BOARD_INIT
426 bool "Enable board-specific debug UART init"
427 depends on DEBUG_UART
428 help
429 Some boards need to set things up before the debug UART can be used.
430 On these boards a call to debug_uart_init() is insufficient. When
431 this option is enabled, the function board_debug_uart_init() will
432 be called when debug_uart_init() is called. You can put any code
433 here that is needed to set up the UART ready for use, such as set
434 pin multiplexing or enable clocks.
435
Simon Glass1f7338a2015-10-18 19:51:25 -0600436config DEBUG_UART_ANNOUNCE
437 bool "Show a message when the debug UART starts up"
438 depends on DEBUG_UART
439 help
440 Enable this option to show a message when the debug UART is ready
441 for use. You will see a message like "<debug_uart> " as soon as
442 U-Boot has the UART ready for use (i.e. your code calls
443 debug_uart_init()). This can be useful just as a check that
444 everything is working.
445
Sergey Temerkhanov5710d7e2015-10-14 09:54:24 -0700446config DEBUG_UART_SKIP_INIT
447 bool "Skip UART initialization"
Simon Goldschmidt03a96832019-01-09 20:27:09 +0100448 depends on DEBUG_UART
Sergey Temerkhanov5710d7e2015-10-14 09:54:24 -0700449 help
450 Select this if the UART you want to use for debug output is already
451 initialized by the time U-Boot starts its execution.
452
Simon Goldschmidte03ad212019-01-09 20:35:31 +0100453config DEBUG_UART_NS16550_CHECK_ENABLED
454 bool "Check if UART is enabled on output"
455 depends on DEBUG_UART
456 depends on DEBUG_UART_NS16550
457 help
458 Select this if puts()/putc() might be called before the debug UART
459 has been initialized. If this is disabled, putc() might sit in a
460 tight loop if it is called before debug_uart_init() has been called.
461
462 Note that this does not work for every ns16550-compatible UART and
463 so has to be enabled carefully or you might notice lost characters.
464
Thomas Chou26066df2015-10-23 07:36:37 +0800465config ALTERA_JTAG_UART
466 bool "Altera JTAG UART support"
467 depends on DM_SERIAL
468 help
469 Select this to enable an JTAG UART for Altera devices.The JTAG UART
470 core implements a method to communicate serial character streams
471 between a host PC and a Qsys system on an Altera FPGA. Please find
472 details on the "Embedded Peripherals IP User Guide" of Altera.
473
474config ALTERA_JTAG_UART_BYPASS
475 bool "Bypass output when no connection"
476 depends on ALTERA_JTAG_UART
477 help
478 Bypass console output and keep going even if there is no JTAG
479 terminal connection with the host. The console output will resume
480 once the JTAG terminal is connected. Without the bypass, the console
481 output will wait forever until a JTAG terminal is connected. If you
482 not are sure, say Y.
483
Thomas Chou6917a5d2015-10-21 21:26:54 +0800484config ALTERA_UART
485 bool "Altera UART support"
486 depends on DM_SERIAL
487 help
488 Select this to enable an UART for Altera devices. Please find
489 details on the "Embedded Peripherals IP User Guide" of Altera.
490
Wills Wangcb48c6d2016-03-16 16:59:57 +0800491config AR933X_UART
492 bool "QCA/Atheros ar933x UART support"
493 depends on DM_SERIAL && SOC_AR933X
494 help
495 Select this to enable UART support for QCA/Atheros ar933x
496 devices. This driver uses driver model and requires a device
497 tree binding to operate, please refer to the document at
498 doc/device-tree-bindings/serial/qca,ar9330-uart.txt.
499
Alexey Brodkinb9a0a422018-05-21 16:40:05 +0300500config ARC_SERIAL
501 bool "ARC UART support"
502 depends on DM_SERIAL
503 help
504 Select this to enable support for ARC UART now typically
505 only used in Synopsys DesignWare ARC simulators like nSIM.
506
Tom Rini0f73ac62020-06-02 17:26:33 -0400507config ARM_DCC
508 bool "ARM Debug Communication Channel (DCC) as UART support"
509 depends on ARM
510 help
511 Select this to enable using the ARM DCC as a form of UART.
512
Wenyou Yang58d44482016-10-17 09:49:54 +0800513config ATMEL_USART
514 bool "Atmel USART support"
515 help
516 Select this to enable USART support for Atmel SoCs. It can be
517 configured in the device tree, and input clock frequency can
518 be got from the clk node.
519
Stefan Roeseb1f3da82019-04-03 15:24:19 +0200520config SPL_UART_CLOCK
521 int "SPL fixed UART input clock"
522 depends on ATMEL_USART && SPL && !SPL_CLK
523 default 132096000 if ARCH_AT91
524 help
525 Provide a fixed clock value as input to the UART controller. This
526 might be needed on platforms which can't enable CONFIG_SPL_CLK
527 because of SPL image size restrictions.
528
Alexander Graf1b442952018-01-25 12:05:53 +0100529config BCM283X_MU_SERIAL
530 bool "Support for BCM283x Mini-UART"
531 depends on DM_SERIAL && ARCH_BCM283X
532 default y
533 help
534 Select this to enable Mini-UART support on BCM283X family of SoCs.
535
Alexander Grafa73b0ec2018-01-25 12:05:55 +0100536config BCM283X_PL011_SERIAL
537 bool "Support for BCM283x PL011 UART"
538 depends on PL01X_SERIAL && ARCH_BCM283X
539 default y
540 help
541 Select this to enable an overriding PL011 driver for BCM283X SoCs
542 that supports automatic disable, so that it only gets used when
543 the UART is actually muxed.
544
Álvaro Fernández Rojas842cfaf2017-04-25 00:39:16 +0200545config BCM6345_SERIAL
546 bool "Support for BCM6345 UART"
Álvaro Fernández Rojas4ab29872018-12-01 18:42:09 +0100547 depends on DM_SERIAL
Álvaro Fernández Rojas842cfaf2017-04-25 00:39:16 +0200548 help
549 Select this to enable UART on BCM6345 SoCs.
550
Simon Glass4d221072019-12-19 17:58:20 -0700551config COREBOOT_SERIAL
552 bool "Coreboot UART support"
553 depends on DM_SERIAL
554 default y if SYS_COREBOOT
555 select SYS_NS16550
556 help
557 Select this to enable a ns16550-style UART where the platform data
558 comes from the coreboot 'sysinfo' tables. This allows U-Boot to have
559 a serial console on any platform without needing to change the
560 device tree, etc.
561
Jason Liadca83a2020-01-30 12:34:58 -0800562config CORTINA_UART
563 bool "Cortina UART support"
564 depends on DM_SERIAL
565 help
566 Select this to enable UART support for Cortina-Access UART devices
567 found on CAxxxx SoCs.
568
Tuomas Tynkkynenf2c84702018-04-09 04:34:34 +0300569config FSL_LINFLEXUART
570 bool "Freescale Linflex UART support"
571 depends on DM_SERIAL
572 help
573 Select this to enable the Linflex serial module found on some
574 NXP SoCs like S32V234.
575
Bin Meng4409dcf2016-01-13 19:39:00 -0800576config FSL_LPUART
577 bool "Freescale LPUART support"
578 help
579 Select this to enable a Low Power UART for Freescale VF610 and
580 QorIQ Layerscape devices.
581
Stefan Roese027276a2016-05-17 16:36:00 +0200582config MVEBU_A3700_UART
583 bool "UART support for Armada 3700"
584 default n
585 help
586 Choose this option to add support for UART driver on the Marvell
587 Armada 3700 SoC. The base address is configured via DT.
588
Angelo Dureghello6d542f32019-03-13 21:46:49 +0100589config MCFUART
590 bool "Freescale ColdFire UART support"
591 help
592 Choose this option to add support for UART driver on the ColdFire
593 SoC's family. The serial communication channel provides a full-duplex
594 asynchronous/synchronous receiver and transmitter deriving an
595 operating frequency from the internal bus clock or an external clock.
596
Jagan Tekia73597a2016-10-08 18:00:08 +0530597config MXC_UART
598 bool "IMX serial port support"
Peng Fanb3c1da52019-08-07 06:49:39 +0000599 depends on MX5 || MX6 || MX7 || IMX8M
Jagan Tekia73597a2016-10-08 18:00:08 +0530600 help
601 If you have a machine based on a Motorola IMX CPU you
602 can enable its onboard serial port by enabling this option.
603
Keng Soon Cheah755e2d02017-08-24 20:29:07 -0700604config NULLDEV_SERIAL
605 bool "Null serial device"
606 help
607 Select this to enable null serial device support. A null serial
608 device merely acts as a placeholder for a serial device and does
609 nothing for all it's operation.
610
Paul Thacker1dc42832016-01-28 15:30:14 +0530611config PIC32_SERIAL
612 bool "Support for Microchip PIC32 on-chip UART"
613 depends on DM_SERIAL && MACH_PIC32
614 default y
615 help
616 Support for the UART found on Microchip PIC32 SoC's.
617
Thomas Choua6cec012015-11-19 21:48:14 +0800618config SYS_NS16550
619 bool "NS16550 UART or compatible"
620 help
621 Support NS16550 UART or compatible. This can be enabled in the
622 device tree with the correct input clock frequency. If the input
623 clock frequency is not defined in the device tree, the macro
624 CONFIG_SYS_NS16550_CLK defined in a legacy board header file will
625 be used. It can be a constant or a function to get clock, eg,
626 get_serial_clock().
627
Simon Glassf8b1a242019-12-19 17:58:18 -0700628config NS16550_DYNAMIC
629 bool "Allow NS16550 to be configured at runtime"
630 default y if SYS_COREBOOT || SYS_SLIMBOOTLOADER
631 help
632 Enable this option to allow device-tree control of the driver.
633
634 Normally this driver is controlled by the following options:
635
636 CONFIG_SYS_NS16550_PORT_MAPPED - indicates that port I/O is used for
637 access. If not enabled, then the UART is memory-mapped.
638 CONFIG_SYS_NS16550_MEM32 - if memory-mapped, indicates that 32-bit
639 access should be used (instead of 8-bit)
640 CONFIG_SYS_NS16550_REG_SIZE - indicates register width and also
641 endianness. If positive, big-endian access is used. If negative,
642 little-endian is used.
643
644 It is not a good practice for a driver to be statically configured,
645 since it prevents the same driver being used for different types of
646 UARTs in a system. This option avoids this problem at the cost of a
647 slightly increased code size.
648
Andy Shevchenkoc65a7fe2017-02-28 14:04:10 +0200649config INTEL_MID_SERIAL
650 bool "Intel MID platform UART support"
651 depends on DM_SERIAL && OF_CONTROL
652 depends on INTEL_MID
653 select SYS_NS16550
654 help
655 Select this to enable a UART for Intel MID platforms.
656 This uses the ns16550 driver as a library.
657
Alexander Graf2184ccd2018-01-25 12:05:50 +0100658config PL010_SERIAL
659 bool "ARM PL010 driver"
660 depends on !DM_SERIAL
661 help
662 Select this to enable a UART for platforms using PL010.
663
Alexander Graf65bfb422018-01-25 12:05:51 +0100664config PL011_SERIAL
665 bool "ARM PL011 driver"
666 depends on !DM_SERIAL
667 help
668 Select this to enable a UART for platforms using PL011.
669
Alexander Graf633ef892018-01-25 12:05:52 +0100670config PL01X_SERIAL
671 bool "ARM PL010 and PL011 driver"
672 depends on DM_SERIAL
673 help
674 Select this to enable a UART for platforms using PL010 or PL011.
675
Simon Glassb3068ad2016-07-04 11:58:24 -0600676config ROCKCHIP_SERIAL
677 bool "Rockchip on-chip UART support"
678 depends on DM_SERIAL && SPL_OF_PLATDATA
679 help
680 Select this to enable a debug UART for Rockchip devices when using
Tom Rini9732f792017-01-14 12:20:23 -0500681 CONFIG_SPL_OF_PLATDATA (i.e. a compiled-in device tree replacemenmt).
Simon Glassb3068ad2016-07-04 11:58:24 -0600682 This uses the ns16550 driver, converting the platdata from of-platdata
683 to the ns16550 format.
684
Simon Glass8579a512015-03-06 13:19:03 -0700685config SANDBOX_SERIAL
686 bool "Sandbox UART support"
Masahiro Yamadaa8318672015-08-28 20:14:21 +0900687 depends on SANDBOX
Simon Glass8579a512015-03-06 13:19:03 -0700688 help
689 Select this to enable a seral UART for sandbox. This is required to
690 operate correctly, otherwise you will see no serial output from
691 sandbox. The emulated UART will display to the console and console
692 input will be fed into the UART. This allows you to interact with
693 U-Boot.
694
695 The operation of the console is controlled by the -t command-line
696 flag. In raw mode, U-Boot sees all characters from the terminal
697 before they are processed, including Ctrl-C. In cooked mode, Ctrl-C
698 is processed by the terminal, and terminates U-Boot. Valid options
699 are:
700
701 -t raw-with-sigs Raw mode, Ctrl-C will terminate U-Boot
702 -t raw Raw mode, Ctrl-C is processed by U-Boot
703 -t cooked Cooked mode, Ctrl-C terminates
704
Marek Vasut2b2e4832017-07-21 23:18:46 +0200705config SCIF_CONSOLE
706 bool "Renesas SCIF UART support"
707 depends on SH || ARCH_RMOBILE
708 help
709 Select this to enable Renesas SCIF UART. To operate serial ports
710 on systems with RCar or SH SoCs, say Y to this option. If unsure,
711 say N.
712
Masahiro Yamada4261c642014-10-23 22:26:11 +0900713config UNIPHIER_SERIAL
Masahiro Yamada563ee4c2015-05-29 17:30:01 +0900714 bool "Support for UniPhier on-chip UART"
Masahiro Yamadaa8318672015-08-28 20:14:21 +0900715 depends on ARCH_UNIPHIER
Masahiro Yamadadf5fda02016-08-25 19:00:37 +0900716 default y
Masahiro Yamada4261c642014-10-23 22:26:11 +0900717 help
Masahiro Yamada563ee4c2015-05-29 17:30:01 +0900718 If you have a UniPhier based board and want to use the on-chip
719 serial ports, say Y to this option. If unsure, say N.
Simon Glass1c32bdb2015-07-27 15:47:23 -0600720
Michal Simek93ce5052015-12-09 12:50:05 +0100721config XILINX_UARTLITE
722 bool "Xilinx Uarlite support"
Ricardo Ribalda Delgado4f40e132016-01-26 11:24:19 +0100723 depends on DM_SERIAL && (MICROBLAZE || ARCH_ZYNQ || ARCH_ZYNQMP || 4xx)
Michal Simek93ce5052015-12-09 12:50:05 +0100724 help
725 If you have a Xilinx based board and want to use the uartlite
726 serial ports, say Y to this option. If unsure, say N.
727
Beniamino Galvanid1037e42016-05-08 08:30:16 +0200728config MESON_SERIAL
729 bool "Support for Amlogic Meson UART"
730 depends on DM_SERIAL && ARCH_MESON
731 help
732 If you have an Amlogic Meson based board and want to use the on-chip
733 serial ports, say Y to this option. If unsure, say N.
734
Mateusz Kulikowski8aac6972016-03-31 23:12:14 +0200735config MSM_SERIAL
736 bool "Qualcomm on-chip UART"
737 depends on DM_SERIAL
738 help
739 Support Data Mover UART used on Qualcomm Snapdragon SoCs.
740 It should support all Qualcomm devices with UARTDM version 1.4,
741 for example APQ8016 and MSM8916.
742 Single baudrate is supported in current implementation (115200).
Stefan Roese027276a2016-05-17 16:36:00 +0200743
Lokesh Vutla42cb4b82018-08-27 15:55:24 +0530744config OMAP_SERIAL
745 bool "Support for OMAP specific UART"
746 depends on DM_SERIAL
Lokesh Vutla9bdec002018-08-27 15:57:08 +0530747 default y if (ARCH_OMAP2PLUS || ARCH_K3)
Lokesh Vutla42cb4b82018-08-27 15:55:24 +0530748 select SYS_NS16550
749 help
750 If you have an TI based SoC and want to use the on-chip serial
751 port, say Y to this option. If unsure say N.
752
Manivannan Sadhasivam01e47392018-06-14 23:38:38 +0530753config OWL_SERIAL
754 bool "Actions Semi OWL UART"
755 depends on DM_SERIAL && ARCH_OWL
756 help
757 If you have a Actions Semi OWL based board and want to use the on-chip
758 serial port, say Y to this option. If unsure, say N.
759 Single baudrate is supported in current implementation (115200).
760
Marcel Ziswilercd22bf62016-11-14 21:40:25 +0100761config PXA_SERIAL
762 bool "PXA serial port support"
763 help
764 If you have a machine based on a Marvell XScale PXA2xx CPU you
765 can enable its onboard serial ports by enabling this option.
766
Anup Patel4b1d68f2018-12-15 11:35:15 +0530767config SIFIVE_SERIAL
768 bool "SiFive UART support"
769 depends on DM_SERIAL
770 help
771 This driver supports the SiFive UART. If unsure say N.
772
Patrice Chotard42d742b2017-02-21 13:37:07 +0100773config STI_ASC_SERIAL
774 bool "STMicroelectronics on-chip UART"
775 depends on DM_SERIAL && ARCH_STI
776 help
777 Select this to enable Asynchronous Serial Controller available
778 on STiH410 SoC. This is a basic implementation, it supports
779 following baudrate 9600, 19200, 38400, 57600 and 115200.
780
Patrice Chotard9e276502018-01-12 09:23:49 +0100781config STM32_SERIAL
Patrice Chotard72cefd52017-07-26 15:48:39 +0200782 bool "STMicroelectronics STM32 SoCs on-chip UART"
Patrick Delaunay85b53972018-03-12 10:46:10 +0100783 depends on DM_SERIAL && (STM32F4 || STM32F7 || STM32H7 || ARCH_STM32MP)
Patrice Chotard72cefd52017-07-26 15:48:39 +0200784 help
Patrick Delaunay85b53972018-03-12 10:46:10 +0100785 If you have a machine based on a STM32 F4, F7, H7 or MP1 SOC
786 you can enable its onboard serial ports, say Y to this option.
Patrice Chotard3b2a14f2017-09-13 18:00:05 +0200787 If unsure, say N.
Patrice Chotard72cefd52017-07-26 15:48:39 +0200788
Michal Simekab754532017-11-06 09:16:05 +0100789config ZYNQ_SERIAL
790 bool "Cadence (Xilinx Zynq) UART support"
Michal Simekb513bcd2018-04-12 17:39:46 +0200791 depends on DM_SERIAL && (MICROBLAZE || ARCH_ZYNQ || ARCH_ZYNQMP || ARCH_ZYNQMP_R5)
Michal Simekab754532017-11-06 09:16:05 +0100792 help
793 This driver supports the Cadence UART. It is found e.g. in Xilinx
794 Zynq/ZynqMP.
795
developer90af58f2018-11-15 10:08:02 +0800796config MTK_SERIAL
797 bool "MediaTek High-speed UART support"
798 depends on DM_SERIAL
799 help
800 Select this to enable UART support for MediaTek High-speed UART
801 devices. This driver uses driver model and requires a device
802 tree binding to operate.
803 The High-speed UART is compatible with the ns16550a UART and have
804 its own high-speed registers.
805
Christophe Leroy9ac4a542017-07-06 10:33:27 +0200806config MPC8XX_CONS
807 bool "Console driver for MPC8XX"
Christophe Leroyb3510fb2018-03-16 17:20:41 +0100808 depends on MPC8xx
Christophe Leroy9ac4a542017-07-06 10:33:27 +0200809 default y
810
811choice
812 prompt "Console port"
813 default 8xx_CONS_SMC1
814 depends on MPC8XX_CONS
815 help
816 Depending on board, select one serial port
817 (CONFIG_8xx_CONS_SMC1 or CONFIG_8xx_CONS_SMC2)
818
819config 8xx_CONS_SMC1
820 bool "SMC1"
821
822config 8xx_CONS_SMC2
823 bool "SMC2"
824
825endchoice
826
827config SYS_SMC_RXBUFLEN
828 int "Console Rx buffer length"
829 depends on MPC8XX_CONS
830 default 1
831 help
832 With CONFIG_SYS_SMC_RXBUFLEN it is possible to define
833 the maximum receive buffer length for the SMC.
834 This option is actual only for 8xx possible.
835 If using CONFIG_SYS_SMC_RXBUFLEN also CONFIG_SYS_MAXIDLE
836 must be defined, to setup the maximum idle timeout for
837 the SMC.
838
839config SYS_MAXIDLE
840 int "maximum idle timeout"
841 depends on MPC8XX_CONS
842 default 0
843
844config SYS_BRGCLK_PRESCALE
845 int "BRG Clock Prescale"
846 depends on MPC8XX_CONS
847 default 1
848
849config SYS_SDSR
850 hex "SDSR Value"
851 depends on MPC8XX_CONS
852 default 0x83
853
854config SYS_SDMR
855 hex "SDMR Value"
856 depends on MPC8XX_CONS
857 default 0
858
Masahiro Yamadacc85b7b2015-07-26 02:46:26 +0900859endmenu