blob: 45c284a408d82fb3152f7600f813f83b5bc8f422 [file] [log] [blame]
Masahiro Yamadacc85b7b2015-07-26 02:46:26 +09001#
2# Serial device configuration
3#
4
Simon Glass388f78e2021-08-08 12:20:13 -06005menuconfig SERIAL
6 bool "Serial"
7 default y
8 help
9 Enable support for serial drivers. This allows use of a serial UART
10 for displaying messages while U-Boot is running. It also brings in
11 printf() and panic() functions. This should normally be enabled
12 unless there are space reasons not to. If you just need to disable
13 the console you can adjust the stdout environment variable or use
14 SILENT_CONSOLE.
15
16if SERIAL
Masahiro Yamadacc85b7b2015-07-26 02:46:26 +090017
Philipp Tomsich29c8bc02017-03-17 20:34:53 +010018config BAUDRATE
19 int "Default baudrate"
20 default 115200
21 help
22 Select a default baudrate, where "default" has a driver-specific
23 meaning of either setting the baudrate for the early debug UART
24 in the SPL stage (most drivers) or for choosing a default baudrate
25 in the absence of an environment setting (serial_mxc.c).
26
Hans de Goede04f80942015-08-08 17:45:18 +020027config REQUIRE_SERIAL_CONSOLE
28 bool "Require a serial port for console"
29 # Running without a serial console is not supported by the
30 # non-dm serial code
31 depends on DM_SERIAL
32 default y
33 help
34 Require a serial port for the console, and panic if none is found
35 during serial port initialization (default y). Set this to n on
36 boards which have no debug serial port whatsoever.
37
Tom Rinie69ba982018-03-06 19:02:27 -050038config SPECIFY_CONSOLE_INDEX
39 bool "Specify the port number used for console"
40 default y if !DM_SERIAL || (SPL && !SPL_DM_SERIAL) || \
41 (TPL && !TPL_DM_SERIAL)
42 help
43 In various cases, we need to specify which of the UART devices that
44 a board or SoC has available are to be used for the console device
45 in U-Boot.
46
Simon Glass30a13492015-12-13 21:36:58 -070047config SERIAL_PRESENT
48 bool "Provide a serial driver"
49 depends on DM_SERIAL
50 default y
51 help
52 In very space-constrained devices even the full UART driver is too
53 large. In this case the debug UART can still be used in some cases.
54 This option enables the full UART in U-Boot, so if is it disabled,
55 the full UART driver will be omitted, thus saving space.
56
57config SPL_SERIAL_PRESENT
58 bool "Provide a serial driver in SPL"
Adam Fordac4d80e2019-08-24 13:50:34 -050059 depends on DM_SERIAL && SPL
Simon Glass30a13492015-12-13 21:36:58 -070060 default y
61 help
62 In very space-constrained devices even the full UART driver is too
63 large. In this case the debug UART can still be used in some cases.
64 This option enables the full UART in SPL, so if is it disabled,
65 the full UART driver will be omitted, thus saving space.
66
Simon Glass60573922018-10-01 12:22:20 -060067config TPL_SERIAL_PRESENT
68 bool "Provide a serial driver in TPL"
Adam Fordac4d80e2019-08-24 13:50:34 -050069 depends on DM_SERIAL && TPL
Simon Glass60573922018-10-01 12:22:20 -060070 default y
71 help
72 In very space-constrained devices even the full UART driver is too
73 large. In this case the debug UART can still be used in some cases.
74 This option enables the full UART in TPL, so if is it disabled,
75 the full UART driver will be omitted, thus saving space.
76
Simon Glasse7ca7da2022-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 Josserand80b96442017-04-02 12:59:11 +020087config CONS_INDEX
88 int "UART used for console"
Tom Rinie69ba982018-03-06 19:02:27 -050089 depends on SPECIFY_CONSOLE_INDEX
90 range 0 6
Mylène Josserand80b96442017-04-02 12:59:11 +020091 default 1
92 help
Tom Rinie69ba982018-03-06 19:02:27 -050093 Set this to match the UART number of the serial console.
Mylène Josserand80b96442017-04-02 12:59:11 +020094
Masahiro Yamada57ad8ee2014-10-23 22:26:09 +090095config DM_SERIAL
96 bool "Enable Driver Model for serial drivers"
97 depends on DM
Sean Anderson08c854a2019-12-17 21:40:09 -050098 select SYS_MALLOC_F
Masahiro Yamada57ad8ee2014-10-23 22:26:09 +090099 help
Simon Glassd8b771d2015-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 Yamada4261c642014-10-23 22:26:11 +0900104
Stefan Roese02072832017-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 Andersonaa22f972022-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 Grafc8bda542018-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 Sharma42149c92020-12-09 10:42:04 +0530145config SERIAL_PROBE_ALL
146 bool "Probe all available serial devices"
147 depends on DM_SERIAL
Vabhav Sharma42149c92020-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 Glassf9512aa2017-04-02 09:50:32 -0600160config SPL_DM_SERIAL
Heiko Schocherb0b588f2017-06-21 06:23:10 +0200161 bool "Enable Driver Model for serial drivers in SPL"
Tom Rinie69ba982018-03-06 19:02:27 -0500162 depends on DM_SERIAL && SPL_DM
Sean Anderson08c854a2019-12-17 21:40:09 -0500163 select SYS_SPL_MALLOC_F
Tom Rinie69ba982018-03-06 19:02:27 -0500164 default y
Simon Glassf9512aa2017-04-02 09:50:32 -0600165 help
166 Enable driver model for serial in SPL. This replaces
167 drivers/serial/serial.c with the serial uclass, which
168 implements serial_putc() etc. The uclass interface is
169 defined in include/serial.h.
170
171config TPL_DM_SERIAL
Heiko Schocherb0b588f2017-06-21 06:23:10 +0200172 bool "Enable Driver Model for serial drivers in TPL"
Thomas Hebbc850c6a2019-11-10 08:23:55 -0800173 depends on DM_SERIAL && TPL_DM
Sean Anderson08c854a2019-12-17 21:40:09 -0500174 select SYS_TPL_MALLOC_F
Simon Glassf9512aa2017-04-02 09:50:32 -0600175 default y if TPL && DM_SERIAL
176 help
177 Enable driver model for serial in TPL. This replaces
178 drivers/serial/serial.c with the serial uclass, which
179 implements serial_putc() etc. The uclass interface is
180 defined in include/serial.h.
181
Simon Glasse7ca7da2022-04-30 00:56:53 -0600182config VPL_DM_SERIAL
183 bool "Enable Driver Model for serial drivers in VPL"
184 depends on DM_SERIAL
185 default y if VPL && DM_SERIAL
186 help
187 Enable driver model for serial in VPL. This replaces
188 drivers/serial/serial.c with the serial uclass, which
189 implements serial_putc() etc. The uclass interface is
190 defined in include/serial.h.
191
Simon Glassbac6fd82015-01-26 18:27:07 -0700192config DEBUG_UART
193 bool "Enable an early debug UART for debugging"
194 help
195 The debug UART is intended for use very early in U-Boot to debug
196 problems when an ICE or other debug mechanism is not available.
197
198 To use it you should:
199 - Make sure your UART supports this interface
200 - Enable CONFIG_DEBUG_UART
201 - Enable the CONFIG for your UART to tell it to provide this interface
202 (e.g. CONFIG_DEBUG_UART_NS16550)
203 - Define the required settings as needed (see below)
204 - Call debug_uart_init() before use
205 - Call debug_uart_putc() to output a character
206
207 Depending on your platform it may be possible to use this UART before
208 a stack is available.
209
210 If your UART does not support this interface you can probably add
211 support quite easily. Remember that you cannot use driver model and
212 it is preferred to use no stack.
213
214 You must not use this UART once driver model is working and the
215 serial drivers are up and running (done in serial_init()). Otherwise
216 the drivers may conflict and you will get strange output.
217
Simon Glass27afb522015-01-26 18:27:09 -0700218choice
219 prompt "Select which UART will provide the debug UART"
220 depends on DEBUG_UART
Thomas Choud0738412015-11-19 21:48:03 +0800221 default DEBUG_UART_NS16550
Simon Glass27afb522015-01-26 18:27:09 -0700222
Thomas Chou26066df2015-10-23 07:36:37 +0800223config DEBUG_UART_ALTERA_JTAGUART
224 bool "Altera JTAG UART"
Michal Simek8da3a6b2020-05-28 12:05:12 +0200225 depends on ALTERA_JTAG_UART
Thomas Chou26066df2015-10-23 07:36:37 +0800226 help
227 Select this to enable a debug UART using the altera_jtag_uart driver.
228 You will need to provide parameters to make this work. The driver will
229 be available until the real driver model serial is running.
230
Thomas Chou6917a5d2015-10-21 21:26:54 +0800231config DEBUG_UART_ALTERA_UART
232 bool "Altera UART"
Michal Simek8da3a6b2020-05-28 12:05:12 +0200233 depends on ALTERA_UART
Thomas Chou6917a5d2015-10-21 21:26:54 +0800234 help
235 Select this to enable a debug UART using the altera_uart driver.
236 You will need to provide parameters to make this work. The driver will
237 be available until the real driver model serial is running.
238
Wills Wangcb48c6d2016-03-16 16:59:57 +0800239config DEBUG_UART_AR933X
240 bool "QCA/Atheros ar933x"
241 depends on AR933X_UART
242 help
243 Select this to enable a debug UART using the ar933x uart driver.
244 You will need to provide parameters to make this work. The
245 driver will be available until the real driver model serial is
246 running.
247
Alexey Brodkineede1672018-05-21 16:42:07 +0300248config DEBUG_ARC_SERIAL
249 bool "ARC UART"
250 depends on ARC_SERIAL
251 help
252 Select this to enable a debug UART using the ARC UART driver.
253 You will need to provide parameters to make this work. The
254 driver will be available until the real driver model serial is
255 running.
256
Wenyou Yang6b611e62016-10-17 09:49:55 +0800257config DEBUG_UART_ATMEL
258 bool "Atmel USART"
Michal Simek8da3a6b2020-05-28 12:05:12 +0200259 depends on ATMEL_USART
Wenyou Yang6b611e62016-10-17 09:49:55 +0800260 help
261 Select this to enable a debug UART using the atmel usart driver. You
262 will need to provide parameters to make this work. The driver will
263 be available until the real driver-model serial is running.
264
Álvaro Fernández Rojas842cfaf2017-04-25 00:39:16 +0200265config DEBUG_UART_BCM6345
266 bool "BCM6345 UART"
267 depends on BCM6345_SERIAL
268 help
269 Select this to enable a debug UART on BCM6345 SoCs. You
270 will need to provide parameters to make this work. The driver will
271 be available until the real driver model serial is running.
272
Simon Glass27afb522015-01-26 18:27:09 -0700273config DEBUG_UART_NS16550
274 bool "ns16550"
Michal Simek8da3a6b2020-05-28 12:05:12 +0200275 depends on SYS_NS16550
Simon Glass27afb522015-01-26 18:27:09 -0700276 help
277 Select this to enable a debug UART using the ns16550 driver. You
278 will need to provide parameters to make this work. The driver will
279 be available until the real driver model serial is running.
280
Simon Glass5a991bd2015-08-04 12:33:40 -0600281config DEBUG_EFI_CONSOLE
282 bool "EFI"
283 depends on EFI_APP
284 help
285 Select this to enable a debug console which calls back to EFI to
286 output to the console. This can be useful for early debugging of
287 U-Boot when running on top of EFI (Extensive Firmware Interface).
288 This is a type of BIOS used by PCs.
289
Samuel Holland4c33c262021-09-12 10:56:09 -0500290config DEBUG_SBI_CONSOLE
291 bool "SBI"
292 depends on SBI_V01
293 help
294 Select this to enable a debug console which calls back to SBI to
295 output to the console. This can be useful for early debugging of
296 U-Boot when running on top of SBI (Supervisor Binary Interface).
297
Simon Glass74afb292015-07-02 18:15:54 -0600298config DEBUG_UART_S5P
299 bool "Samsung S5P"
Mark Kettenis835cb5d2021-10-23 16:58:04 +0200300 depends on ARCH_APPLE || ARCH_EXYNOS || ARCH_S5PC1XX
Simon Glass74afb292015-07-02 18:15:54 -0600301 help
302 Select this to enable a debug UART using the serial_s5p driver. You
303 will need to provide parameters to make this work. The driver will
304 be available until the real driver-model serial is running.
305
Dzmitry Sankouskif5be5c82021-10-17 13:44:27 +0300306config DEBUG_UART_MSM_GENI
307 bool "Qualcomm snapdragon"
308 depends on ARCH_SNAPDRAGON
309 help
310 Select this to enable a debug UART using the serial_msm driver. You
311 will need to provide parameters to make this work. The driver will
312 be available until the real driver-model serial is running.
313
Beniamino Galvanid1037e42016-05-08 08:30:16 +0200314config DEBUG_UART_MESON
315 bool "Amlogic Meson"
316 depends on MESON_SERIAL
317 help
318 Select this to enable a debug UART using the serial_meson driver. You
319 will need to provide parameters to make this work. The driver will
320 be available until the real driver-model serial is running.
321
Michal Simek8af618b2015-12-14 16:55:10 +0100322config DEBUG_UART_UARTLITE
323 bool "Xilinx Uartlite"
Michal Simek8da3a6b2020-05-28 12:05:12 +0200324 depends on XILINX_UARTLITE
Michal Simek8af618b2015-12-14 16:55:10 +0100325 help
326 Select this to enable a debug UART using the serial_uartlite driver.
327 You will need to provide parameters to make this work. The driver will
328 be available until the real driver-model serial is running.
329
Michal Simekb3cc2602016-02-23 10:02:28 +0100330config DEBUG_UART_ARM_DCC
331 bool "ARM DCC"
Michal Simek8da3a6b2020-05-28 12:05:12 +0200332 depends on ARM_DCC
Michal Simekb3cc2602016-02-23 10:02:28 +0100333 help
334 Select this to enable a debug UART using the ARM JTAG DCC port.
335 The DCC port can be used for very early debugging and doesn't require
336 any additional setting like address/baudrate/clock. On systems without
337 any serial interface this is the easiest way how to get console.
338 Every ARM core has own DCC port which is the part of debug interface.
339 This port is available at least on ARMv6, ARMv7, ARMv8 and XScale
340 architectures.
341
Stefan Roese027276a2016-05-17 16:36:00 +0200342config DEBUG_MVEBU_A3700_UART
343 bool "Marvell Armada 3700"
Michal Simek8da3a6b2020-05-28 12:05:12 +0200344 depends on MVEBU_A3700_UART
Stefan Roese027276a2016-05-17 16:36:00 +0200345 help
346 Select this to enable a debug UART using the serial_mvebu driver. You
347 will need to provide parameters to make this work. The driver will
348 be available until the real driver-model serial is running.
349
Simon Glass091f6a32015-10-17 19:41:22 -0600350config DEBUG_UART_ZYNQ
351 bool "Xilinx Zynq"
Michal Simek8da3a6b2020-05-28 12:05:12 +0200352 depends on ZYNQ_SERIAL
Simon Glass091f6a32015-10-17 19:41:22 -0600353 help
Michal Simek49e12762015-12-01 14:29:34 +0100354 Select this to enable a debug UART using the serial_zynq driver. You
Simon Glass091f6a32015-10-17 19:41:22 -0600355 will need to provide parameters to make this work. The driver will
356 be available until the real driver-model serial is running.
357
Francois Retiefd18eb7b2015-10-29 12:55:34 +0200358config DEBUG_UART_APBUART
359 depends on LEON3
360 bool "Gaisler APBUART"
361 help
362 Select this to enable a debug UART using the serial_leon3 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
Sergey Temerkhanov5710d7e2015-10-14 09:54:24 -0700366config DEBUG_UART_PL010
367 bool "pl010"
Tom Rini0ba2f372021-05-22 08:47:08 -0400368 depends on PL01X_SERIAL
Sergey Temerkhanov5710d7e2015-10-14 09:54:24 -0700369 help
370 Select this to enable a debug UART using the pl01x driver with the
371 PL010 UART type. You will need to provide parameters to make this
372 work. The driver will be available until the real driver model
373 serial is running.
374
375config DEBUG_UART_PL011
376 bool "pl011"
Michal Simekceedd3a2021-06-24 13:36:23 +0200377 depends on PL01X_SERIAL || PL011_SERIAL
Sergey Temerkhanov5710d7e2015-10-14 09:54:24 -0700378 help
379 Select this to enable a debug UART using the pl01x driver with the
380 PL011 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
Paul Thacker1dc42832016-01-28 15:30:14 +0530384config DEBUG_UART_PIC32
385 bool "Microchip PIC32"
386 depends on PIC32_SERIAL
387 help
388 Select this to enable a debug UART using the serial_pic32 driver. You
389 will need to provide parameters to make this work. The driver will
390 be available until the real driver model serial is running.
391
Jagan Tekicf6db162017-06-06 05:31:51 +0000392config DEBUG_UART_MXC
393 bool "IMX Serial port"
394 depends on MXC_UART
395 help
396 Select this to enable a debug UART using the serial_mxc driver. You
397 will need to provide parameters to make this work. The driver will
398 be available until the real driver model serial is running.
399
Simon Glasse3057f32018-10-01 11:55:15 -0600400config DEBUG_UART_SANDBOX
401 bool "sandbox"
402 depends on SANDBOX_SERIAL
403 help
404 Select this to enable the debug UART using the sandbox driver. This
405 provides basic serial output from the console without needing to
406 start up driver model. The driver will be available until the real
407 driver model serial is running.
408
Sean Andersond4f131a2022-03-22 16:59:24 -0400409config DEBUG_UART_SEMIHOSTING
410 bool "semihosting"
411 depends on SEMIHOSTING_SERIAL
412 help
413 Select this to enable the debug UART using the semihosting driver.
414 This 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
Anup Patel4b1d68f2018-12-15 11:35:15 +0530418config DEBUG_UART_SIFIVE
419 bool "SiFive UART"
Michal Simekf0410172020-07-10 12:41:13 +0200420 depends on SIFIVE_SERIAL
Anup Patel4b1d68f2018-12-15 11:35:15 +0530421 help
422 Select this to enable a debug UART using the serial_sifive driver. You
423 will need to provide parameters to make this work. The driver will
424 be available until the real driver-model serial is running.
425
Patrick Delaunayab8e5d22018-05-17 14:50:42 +0200426config DEBUG_UART_STM32
427 bool "STMicroelectronics STM32"
428 depends on STM32_SERIAL
429 help
430 Select this to enable a debug UART using the serial_stm32 driver
431 You will need to provide parameters to make this work.
432 The driver will be available until the real driver model
433 serial is running.
434
Masahiro Yamada52f0c512016-03-18 16:41:52 +0900435config DEBUG_UART_UNIPHIER
436 bool "UniPhier on-chip UART"
437 depends on ARCH_UNIPHIER
438 help
439 Select this to enable a debug UART using the UniPhier on-chip UART.
440 You will need to provide DEBUG_UART_BASE to make this work. The
441 driver will be available until the real driver-model serial is
442 running.
443
Lokesh Vutla771d69c2017-04-22 15:57:25 +0530444config DEBUG_UART_OMAP
445 bool "OMAP uart"
Michal Simek8da3a6b2020-05-28 12:05:12 +0200446 depends on OMAP_SERIAL
Lokesh Vutla771d69c2017-04-22 15:57:25 +0530447 help
448 Select this to enable a debug UART using the omap ns16550 driver.
449 You will need to provide parameters to make this work. The driver
450 will be available until the real driver model serial is running.
451
developer90af58f2018-11-15 10:08:02 +0800452config DEBUG_UART_MTK
453 bool "MediaTek High-speed UART"
454 depends on MTK_SERIAL
455 help
456 Select this to enable a debug UART using the MediaTek High-speed
457 UART driver.
458 You will need to provide parameters to make this work. The
459 driver will be available until the real driver model serial is
460 running.
461
developere076b9e2020-11-12 16:36:05 +0800462config DEBUG_UART_MT7620
463 bool "UART driver for MediaTek MT7620 and earlier SoCs"
464 depends on MT7620_SERIAL
465 help
466 Select this to enable a debug UART using the UART driver for
467 MediaTek MT7620 and earlier SoCs.
468 You will need to provide parameters to make this work. The
469 driver will be available until the real driver model serial is
470 running.
471
Simon Glass27afb522015-01-26 18:27:09 -0700472endchoice
473
Simon Glassbac6fd82015-01-26 18:27:07 -0700474config DEBUG_UART_BASE
475 hex "Base address of UART"
Tom Riniae965f22020-10-23 09:15:55 -0400476 depends on DEBUG_UART
Samuel Holland4c33c262021-09-12 10:56:09 -0500477 default 0 if DEBUG_SBI_CONSOLE
Simon Glasse3057f32018-10-01 11:55:15 -0600478 default 0 if DEBUG_UART_SANDBOX
Simon Glassbac6fd82015-01-26 18:27:07 -0700479 help
480 This is the base address of your UART for memory-mapped UARTs.
481
482 A default should be provided by your board, but if not you will need
483 to use the correct value here.
484
Pali Rohárb4e29802022-05-06 11:05:15 +0200485config SPL_DEBUG_UART_BASE
486 hex "Base address of UART for SPL"
487 depends on SPL && DEBUG_UART
488 default DEBUG_UART_BASE
489 help
490 This is the base address of your UART for memory-mapped UARTs for SPL.
491
Pali Rohár784f5692022-05-16 18:49:09 +0200492config TPL_DEBUG_UART_BASE
493 hex "Base address of UART for TPL"
494 depends on TPL && DEBUG_UART
495 default DEBUG_UART_BASE
496 help
497 This is the base address of your UART for memory-mapped UARTs for TPL.
498
Simon Glassbac6fd82015-01-26 18:27:07 -0700499config DEBUG_UART_CLOCK
500 int "UART input clock"
Tom Riniae965f22020-10-23 09:15:55 -0400501 depends on DEBUG_UART
Samuel Holland4c33c262021-09-12 10:56:09 -0500502 default 0 if DEBUG_SBI_CONSOLE
Simon Glasse3057f32018-10-01 11:55:15 -0600503 default 0 if DEBUG_UART_SANDBOX
Marek Behún6e0e23c2021-07-09 17:40:59 +0200504 default 0 if DEBUG_MVEBU_A3700_UART
Simon Glassbac6fd82015-01-26 18:27:07 -0700505 help
506 The UART input clock determines the speed of the internal UART
507 circuitry. The baud rate is derived from this by dividing the input
508 clock down.
509
510 A default should be provided by your board, but if not you will need
511 to use the correct value here.
512
Simon Glass54111292015-02-27 22:06:25 -0700513config DEBUG_UART_SHIFT
514 int "UART register shift"
Tom Riniae965f22020-10-23 09:15:55 -0400515 depends on DEBUG_UART
Simon Glass54111292015-02-27 22:06:25 -0700516 default 0 if DEBUG_UART
517 help
518 Some UARTs (notably ns16550) support different register layouts
519 where the registers are spaced either as bytes, words or some other
520 value. Use this value to specify the shift to use, where 0=byte
521 registers, 2=32-bit word registers, etc.
522
Simon Glassc52be122015-10-18 19:51:24 -0600523config DEBUG_UART_BOARD_INIT
524 bool "Enable board-specific debug UART init"
525 depends on DEBUG_UART
526 help
527 Some boards need to set things up before the debug UART can be used.
528 On these boards a call to debug_uart_init() is insufficient. When
529 this option is enabled, the function board_debug_uart_init() will
530 be called when debug_uart_init() is called. You can put any code
531 here that is needed to set up the UART ready for use, such as set
532 pin multiplexing or enable clocks.
533
Simon Glass1f7338a2015-10-18 19:51:25 -0600534config DEBUG_UART_ANNOUNCE
535 bool "Show a message when the debug UART starts up"
536 depends on DEBUG_UART
537 help
538 Enable this option to show a message when the debug UART is ready
539 for use. You will see a message like "<debug_uart> " as soon as
540 U-Boot has the UART ready for use (i.e. your code calls
541 debug_uart_init()). This can be useful just as a check that
542 everything is working.
543
Sergey Temerkhanov5710d7e2015-10-14 09:54:24 -0700544config DEBUG_UART_SKIP_INIT
545 bool "Skip UART initialization"
Simon Goldschmidt03a96832019-01-09 20:27:09 +0100546 depends on DEBUG_UART
Sergey Temerkhanov5710d7e2015-10-14 09:54:24 -0700547 help
548 Select this if the UART you want to use for debug output is already
549 initialized by the time U-Boot starts its execution.
550
Simon Goldschmidte03ad212019-01-09 20:35:31 +0100551config DEBUG_UART_NS16550_CHECK_ENABLED
552 bool "Check if UART is enabled on output"
553 depends on DEBUG_UART
554 depends on DEBUG_UART_NS16550
555 help
556 Select this if puts()/putc() might be called before the debug UART
557 has been initialized. If this is disabled, putc() might sit in a
558 tight loop if it is called before debug_uart_init() has been called.
559
560 Note that this does not work for every ns16550-compatible UART and
561 so has to be enabled carefully or you might notice lost characters.
562
Thomas Chou26066df2015-10-23 07:36:37 +0800563config ALTERA_JTAG_UART
564 bool "Altera JTAG UART support"
565 depends on DM_SERIAL
566 help
567 Select this to enable an JTAG UART for Altera devices.The JTAG UART
568 core implements a method to communicate serial character streams
569 between a host PC and a Qsys system on an Altera FPGA. Please find
570 details on the "Embedded Peripherals IP User Guide" of Altera.
571
572config ALTERA_JTAG_UART_BYPASS
573 bool "Bypass output when no connection"
574 depends on ALTERA_JTAG_UART
575 help
576 Bypass console output and keep going even if there is no JTAG
577 terminal connection with the host. The console output will resume
578 once the JTAG terminal is connected. Without the bypass, the console
579 output will wait forever until a JTAG terminal is connected. If you
580 not are sure, say Y.
581
Thomas Chou6917a5d2015-10-21 21:26:54 +0800582config ALTERA_UART
583 bool "Altera UART support"
584 depends on DM_SERIAL
585 help
586 Select this to enable an UART for Altera devices. Please find
587 details on the "Embedded Peripherals IP User Guide" of Altera.
588
Wills Wangcb48c6d2016-03-16 16:59:57 +0800589config AR933X_UART
590 bool "QCA/Atheros ar933x UART support"
591 depends on DM_SERIAL && SOC_AR933X
592 help
593 Select this to enable UART support for QCA/Atheros ar933x
594 devices. This driver uses driver model and requires a device
595 tree binding to operate, please refer to the document at
596 doc/device-tree-bindings/serial/qca,ar9330-uart.txt.
597
Alexey Brodkinb9a0a422018-05-21 16:40:05 +0300598config ARC_SERIAL
599 bool "ARC UART support"
600 depends on DM_SERIAL
601 help
602 Select this to enable support for ARC UART now typically
603 only used in Synopsys DesignWare ARC simulators like nSIM.
604
Tom Rini0f73ac62020-06-02 17:26:33 -0400605config ARM_DCC
606 bool "ARM Debug Communication Channel (DCC) as UART support"
607 depends on ARM
608 help
609 Select this to enable using the ARM DCC as a form of UART.
610
Wenyou Yang58d44482016-10-17 09:49:54 +0800611config ATMEL_USART
612 bool "Atmel USART support"
613 help
614 Select this to enable USART support for Atmel SoCs. It can be
615 configured in the device tree, and input clock frequency can
616 be got from the clk node.
617
Stefan Roeseb1f3da82019-04-03 15:24:19 +0200618config SPL_UART_CLOCK
619 int "SPL fixed UART input clock"
620 depends on ATMEL_USART && SPL && !SPL_CLK
621 default 132096000 if ARCH_AT91
622 help
623 Provide a fixed clock value as input to the UART controller. This
624 might be needed on platforms which can't enable CONFIG_SPL_CLK
625 because of SPL image size restrictions.
626
Alexander Graf1b442952018-01-25 12:05:53 +0100627config BCM283X_MU_SERIAL
628 bool "Support for BCM283x Mini-UART"
629 depends on DM_SERIAL && ARCH_BCM283X
630 default y
631 help
632 Select this to enable Mini-UART support on BCM283X family of SoCs.
633
Alexander Grafa73b0ec2018-01-25 12:05:55 +0100634config BCM283X_PL011_SERIAL
635 bool "Support for BCM283x PL011 UART"
636 depends on PL01X_SERIAL && ARCH_BCM283X
637 default y
638 help
639 Select this to enable an overriding PL011 driver for BCM283X SoCs
640 that supports automatic disable, so that it only gets used when
641 the UART is actually muxed.
642
Álvaro Fernández Rojas842cfaf2017-04-25 00:39:16 +0200643config BCM6345_SERIAL
644 bool "Support for BCM6345 UART"
Álvaro Fernández Rojas4ab29872018-12-01 18:42:09 +0100645 depends on DM_SERIAL
Álvaro Fernández Rojas842cfaf2017-04-25 00:39:16 +0200646 help
647 Select this to enable UART on BCM6345 SoCs.
648
Simon Glass4d221072019-12-19 17:58:20 -0700649config COREBOOT_SERIAL
650 bool "Coreboot UART support"
651 depends on DM_SERIAL
652 default y if SYS_COREBOOT
653 select SYS_NS16550
654 help
655 Select this to enable a ns16550-style UART where the platform data
656 comes from the coreboot 'sysinfo' tables. This allows U-Boot to have
657 a serial console on any platform without needing to change the
658 device tree, etc.
659
Jason Liadca83a2020-01-30 12:34:58 -0800660config CORTINA_UART
661 bool "Cortina UART support"
662 depends on DM_SERIAL
663 help
664 Select this to enable UART support for Cortina-Access UART devices
665 found on CAxxxx SoCs.
666
Tuomas Tynkkynenf2c84702018-04-09 04:34:34 +0300667config FSL_LINFLEXUART
668 bool "Freescale Linflex UART support"
669 depends on DM_SERIAL
670 help
671 Select this to enable the Linflex serial module found on some
672 NXP SoCs like S32V234.
673
Bin Meng4409dcf2016-01-13 19:39:00 -0800674config FSL_LPUART
675 bool "Freescale LPUART support"
676 help
677 Select this to enable a Low Power UART for Freescale VF610 and
678 QorIQ Layerscape devices.
679
Tom Rini037415a2022-03-23 17:20:00 -0400680config LPUART
681 bool "Use the LPUART as console"
682 depends on FSL_LPUART
683
Stefan Roese027276a2016-05-17 16:36:00 +0200684config MVEBU_A3700_UART
685 bool "UART support for Armada 3700"
Stefan Roese027276a2016-05-17 16:36:00 +0200686 help
687 Choose this option to add support for UART driver on the Marvell
688 Armada 3700 SoC. The base address is configured via DT.
689
Angelo Dureghello6d542f32019-03-13 21:46:49 +0100690config MCFUART
691 bool "Freescale ColdFire UART support"
692 help
693 Choose this option to add support for UART driver on the ColdFire
694 SoC's family. The serial communication channel provides a full-duplex
695 asynchronous/synchronous receiver and transmitter deriving an
696 operating frequency from the internal bus clock or an external clock.
697
Jagan Tekia73597a2016-10-08 18:00:08 +0530698config MXC_UART
699 bool "IMX serial port support"
Tom Rinieac76b82021-09-09 07:54:50 -0400700 depends on ARCH_MX31 || MX5 || MX6 || MX7 || IMX8M
Jagan Tekia73597a2016-10-08 18:00:08 +0530701 help
702 If you have a machine based on a Motorola IMX CPU you
703 can enable its onboard serial port by enabling this option.
704
Keng Soon Cheah755e2d02017-08-24 20:29:07 -0700705config NULLDEV_SERIAL
706 bool "Null serial device"
707 help
708 Select this to enable null serial device support. A null serial
709 device merely acts as a placeholder for a serial device and does
710 nothing for all it's operation.
711
Paul Thacker1dc42832016-01-28 15:30:14 +0530712config PIC32_SERIAL
713 bool "Support for Microchip PIC32 on-chip UART"
714 depends on DM_SERIAL && MACH_PIC32
715 default y
716 help
717 Support for the UART found on Microchip PIC32 SoC's.
718
Thomas Choua6cec012015-11-19 21:48:14 +0800719config SYS_NS16550
720 bool "NS16550 UART or compatible"
721 help
722 Support NS16550 UART or compatible. This can be enabled in the
723 device tree with the correct input clock frequency. If the input
724 clock frequency is not defined in the device tree, the macro
725 CONFIG_SYS_NS16550_CLK defined in a legacy board header file will
726 be used. It can be a constant or a function to get clock, eg,
727 get_serial_clock().
728
Simon Glassf8b1a242019-12-19 17:58:18 -0700729config NS16550_DYNAMIC
730 bool "Allow NS16550 to be configured at runtime"
731 default y if SYS_COREBOOT || SYS_SLIMBOOTLOADER
732 help
733 Enable this option to allow device-tree control of the driver.
734
735 Normally this driver is controlled by the following options:
736
737 CONFIG_SYS_NS16550_PORT_MAPPED - indicates that port I/O is used for
738 access. If not enabled, then the UART is memory-mapped.
739 CONFIG_SYS_NS16550_MEM32 - if memory-mapped, indicates that 32-bit
740 access should be used (instead of 8-bit)
741 CONFIG_SYS_NS16550_REG_SIZE - indicates register width and also
742 endianness. If positive, big-endian access is used. If negative,
743 little-endian is used.
744
745 It is not a good practice for a driver to be statically configured,
746 since it prevents the same driver being used for different types of
747 UARTs in a system. This option avoids this problem at the cost of a
748 slightly increased code size.
749
Andy Shevchenkoc65a7fe2017-02-28 14:04:10 +0200750config INTEL_MID_SERIAL
751 bool "Intel MID platform UART support"
752 depends on DM_SERIAL && OF_CONTROL
753 depends on INTEL_MID
754 select SYS_NS16550
755 help
756 Select this to enable a UART for Intel MID platforms.
757 This uses the ns16550 driver as a library.
758
Alexander Graf65bfb422018-01-25 12:05:51 +0100759config PL011_SERIAL
760 bool "ARM PL011 driver"
761 depends on !DM_SERIAL
762 help
763 Select this to enable a UART for platforms using PL011.
764
Alexander Graf633ef892018-01-25 12:05:52 +0100765config PL01X_SERIAL
766 bool "ARM PL010 and PL011 driver"
767 depends on DM_SERIAL
768 help
769 Select this to enable a UART for platforms using PL010 or PL011.
770
Simon Glassb3068ad2016-07-04 11:58:24 -0600771config ROCKCHIP_SERIAL
772 bool "Rockchip on-chip UART support"
Johan Jonkere5adbb22022-04-09 18:55:14 +0200773 depends on DM_SERIAL
Johan Jonker40cb6612022-04-09 18:55:13 +0200774 select SYS_NS16550
Simon Glassb3068ad2016-07-04 11:58:24 -0600775 help
776 Select this to enable a debug UART for Rockchip devices when using
Johan Jonkere5adbb22022-04-09 18:55:14 +0200777 OF_PLATDATA (i.e. a compiled-in device tree replacemenmt).
Simon Glassb3068ad2016-07-04 11:58:24 -0600778 This uses the ns16550 driver, converting the platdata from of-platdata
779 to the ns16550 format.
780
Mark Kettenis3b9ad302021-02-12 23:22:18 +0100781config S5P_SERIAL
782 bool "Support for Samsung S5P UART"
Mark Kettenis835cb5d2021-10-23 16:58:04 +0200783 depends on ARCH_APPLE || ARCH_EXYNOS || ARCH_S5PC1XX
Mark Kettenis3b9ad302021-02-12 23:22:18 +0100784 default y
785 help
786 Select this to enable Samsung S5P UART support.
787
Simon Glass8579a512015-03-06 13:19:03 -0700788config SANDBOX_SERIAL
789 bool "Sandbox UART support"
Masahiro Yamadaa8318672015-08-28 20:14:21 +0900790 depends on SANDBOX
Sean Anderson85898852022-04-04 14:17:58 -0400791 imply SERIAL_PUTS
Simon Glass8579a512015-03-06 13:19:03 -0700792 help
793 Select this to enable a seral UART for sandbox. This is required to
794 operate correctly, otherwise you will see no serial output from
795 sandbox. The emulated UART will display to the console and console
796 input will be fed into the UART. This allows you to interact with
797 U-Boot.
798
799 The operation of the console is controlled by the -t command-line
800 flag. In raw mode, U-Boot sees all characters from the terminal
801 before they are processed, including Ctrl-C. In cooked mode, Ctrl-C
802 is processed by the terminal, and terminates U-Boot. Valid options
803 are:
804
805 -t raw-with-sigs Raw mode, Ctrl-C will terminate U-Boot
806 -t raw Raw mode, Ctrl-C is processed by U-Boot
807 -t cooked Cooked mode, Ctrl-C terminates
808
Marek Vasut2b2e4832017-07-21 23:18:46 +0200809config SCIF_CONSOLE
810 bool "Renesas SCIF UART support"
811 depends on SH || ARCH_RMOBILE
812 help
813 Select this to enable Renesas SCIF UART. To operate serial ports
814 on systems with RCar or SH SoCs, say Y to this option. If unsure,
815 say N.
816
Tom Rini83038892022-03-30 18:07:21 -0400817choice
818 prompt "SCIF console port"
819 depends on SCIF_CONSOLE && (!DM_SERIAL || (SPL && !SPL_DM_SERIAL))
820
821config CONS_SCIF0
822 bool "SCIF0"
823
824config CONS_SCIF1
825 bool "SCIF1"
826
827config CONS_SCIF2
828 bool "SCIF2"
829
830config CONS_SCIF4
831 bool "SCIF4"
832
833config CONS_SCIFA0
834 bool "SCIFA0"
835
836endchoice
837
Tom Rinica57d3b2022-03-30 18:07:22 -0400838config SH_SCIF_CLK_FREQ
839 int "SCIF console clock frequency"
840 depends on SCIF_CONSOLE && (!DM_SERIAL || (SPL && !SPL_DM_SERIAL))
841 default 65000000
842
Sean Andersond4f131a2022-03-22 16:59:24 -0400843config SEMIHOSTING_SERIAL
844 bool "Semihosting UART support"
845 depends on SEMIHOSTING && !SERIAL_RX_BUFFER
Sean Anderson760089a2022-04-04 14:18:00 -0400846 imply SERIAL_PUTS
Sean Andersond4f131a2022-03-22 16:59:24 -0400847 help
848 Select this to enable a serial UART using semihosting. Special halt
849 instructions will be issued which an external debugger (such as a
850 JTAG emulator) may interpret. The debugger will display U-Boot's
851 console output on the host system.
852
853 Enable this option only if you are using a debugger which supports
854 semihosting. If you are not using a debugger, this driver will halt
855 the boot.
856
Masahiro Yamada4261c642014-10-23 22:26:11 +0900857config UNIPHIER_SERIAL
Masahiro Yamada563ee4c2015-05-29 17:30:01 +0900858 bool "Support for UniPhier on-chip UART"
Masahiro Yamadaa8318672015-08-28 20:14:21 +0900859 depends on ARCH_UNIPHIER
Masahiro Yamadadf5fda02016-08-25 19:00:37 +0900860 default y
Masahiro Yamada4261c642014-10-23 22:26:11 +0900861 help
Masahiro Yamada563ee4c2015-05-29 17:30:01 +0900862 If you have a UniPhier based board and want to use the on-chip
863 serial ports, say Y to this option. If unsure, say N.
Simon Glass1c32bdb2015-07-27 15:47:23 -0600864
Michal Simek93ce5052015-12-09 12:50:05 +0100865config XILINX_UARTLITE
866 bool "Xilinx Uarlite support"
Michal Simek3239d712020-08-24 14:41:51 +0200867 depends on DM_SERIAL
Michal Simek93ce5052015-12-09 12:50:05 +0100868 help
869 If you have a Xilinx based board and want to use the uartlite
870 serial ports, say Y to this option. If unsure, say N.
871
Beniamino Galvanid1037e42016-05-08 08:30:16 +0200872config MESON_SERIAL
873 bool "Support for Amlogic Meson UART"
874 depends on DM_SERIAL && ARCH_MESON
875 help
876 If you have an Amlogic Meson based board and want to use the on-chip
877 serial ports, say Y to this option. If unsure, say N.
878
Mateusz Kulikowski8aac6972016-03-31 23:12:14 +0200879config MSM_SERIAL
880 bool "Qualcomm on-chip UART"
881 depends on DM_SERIAL
882 help
883 Support Data Mover UART used on Qualcomm Snapdragon SoCs.
884 It should support all Qualcomm devices with UARTDM version 1.4,
885 for example APQ8016 and MSM8916.
886 Single baudrate is supported in current implementation (115200).
Stefan Roese027276a2016-05-17 16:36:00 +0200887
Dzmitry Sankouskif5be5c82021-10-17 13:44:27 +0300888config MSM_GENI_SERIAL
889 bool "Qualcomm on-chip GENI UART"
890 help
891 Support UART based on Generic Interface (GENI) Serial Engine (SE),
892 used on Qualcomm Snapdragon SoCs. Should support all qualcomm SOCs
893 with Qualcomm Universal Peripheral (QUP) Wrapper cores,
894 i.e. newer ones, starting from SDM845.
895 Driver works in FIFO mode.
896 Multiple baudrates supported.
897
Stefan Roese09e90762021-04-07 09:12:31 +0200898config OCTEON_SERIAL_BOOTCMD
899 bool "MIPS Octeon PCI remote bootcmd input"
900 depends on ARCH_OCTEON
901 depends on DM_SERIAL
902 select SYS_IS_IN_ENV
903 select CONSOLE_MUX
904 help
905 This driver supports remote input over the PCIe bus from a host
906 to U-Boot for entering commands. It is utilized by the host
907 commands 'oct-remote-load' and 'oct-remote-bootcmd'.
908
Stefan Roese01452252021-04-07 09:12:30 +0200909config OCTEON_SERIAL_PCIE_CONSOLE
910 bool "MIPS Octeon PCIe remote console"
911 depends on ARCH_OCTEON
912 depends on (DM_SERIAL && DM_STDIO)
913 select SYS_STDIO_DEREGISTER
914 select SYS_CONSOLE_IS_IN_ENV
915 select CONSOLE_MUX
916 help
917 This driver supports remote console over the PCIe bus when the
918 Octeon is running in PCIe target mode. The host program
919 'oct-remote-console' can be used to connect to this console.
920 The console number will likely be 0 or 1.
921
Lokesh Vutla42cb4b82018-08-27 15:55:24 +0530922config OMAP_SERIAL
923 bool "Support for OMAP specific UART"
924 depends on DM_SERIAL
Lokesh Vutla9bdec002018-08-27 15:57:08 +0530925 default y if (ARCH_OMAP2PLUS || ARCH_K3)
Lokesh Vutla42cb4b82018-08-27 15:55:24 +0530926 select SYS_NS16550
927 help
928 If you have an TI based SoC and want to use the on-chip serial
929 port, say Y to this option. If unsure say N.
930
Manivannan Sadhasivam01e47392018-06-14 23:38:38 +0530931config OWL_SERIAL
932 bool "Actions Semi OWL UART"
933 depends on DM_SERIAL && ARCH_OWL
934 help
935 If you have a Actions Semi OWL based board and want to use the on-chip
936 serial port, say Y to this option. If unsure, say N.
937 Single baudrate is supported in current implementation (115200).
938
Marcel Ziswilercd22bf62016-11-14 21:40:25 +0100939config PXA_SERIAL
940 bool "PXA serial port support"
941 help
942 If you have a machine based on a Marvell XScale PXA2xx CPU you
943 can enable its onboard serial ports by enabling this option.
944
Anup Patelc0fe2842022-01-27 11:41:07 +0530945config HTIF_CONSOLE
946 bool "RISC-V HTIF console support"
947 depends on DM_SERIAL && 64BIT
948 help
949 Select this to enable host transfer interface (HTIF) based serial
950 console. The HTIF device is quite common in RISC-V emulators and
951 RISC-V ISS so this driver allows using U-Boot on such platforms.
952
Anup Patel4b1d68f2018-12-15 11:35:15 +0530953config SIFIVE_SERIAL
954 bool "SiFive UART support"
955 depends on DM_SERIAL
956 help
957 This driver supports the SiFive UART. If unsure say N.
958
Patrice Chotard42d742b2017-02-21 13:37:07 +0100959config STI_ASC_SERIAL
960 bool "STMicroelectronics on-chip UART"
961 depends on DM_SERIAL && ARCH_STI
962 help
963 Select this to enable Asynchronous Serial Controller available
964 on STiH410 SoC. This is a basic implementation, it supports
965 following baudrate 9600, 19200, 38400, 57600 and 115200.
966
Patrice Chotard9e276502018-01-12 09:23:49 +0100967config STM32_SERIAL
Patrice Chotard72cefd52017-07-26 15:48:39 +0200968 bool "STMicroelectronics STM32 SoCs on-chip UART"
Patrick Delaunay85b53972018-03-12 10:46:10 +0100969 depends on DM_SERIAL && (STM32F4 || STM32F7 || STM32H7 || ARCH_STM32MP)
Patrice Chotard72cefd52017-07-26 15:48:39 +0200970 help
Patrick Delaunay85b53972018-03-12 10:46:10 +0100971 If you have a machine based on a STM32 F4, F7, H7 or MP1 SOC
972 you can enable its onboard serial ports, say Y to this option.
Patrice Chotard3b2a14f2017-09-13 18:00:05 +0200973 If unsure, say N.
Patrice Chotard72cefd52017-07-26 15:48:39 +0200974
Michal Simekab754532017-11-06 09:16:05 +0100975config ZYNQ_SERIAL
976 bool "Cadence (Xilinx Zynq) UART support"
Michal Simek3239d712020-08-24 14:41:51 +0200977 depends on DM_SERIAL
Michal Simekab754532017-11-06 09:16:05 +0100978 help
979 This driver supports the Cadence UART. It is found e.g. in Xilinx
980 Zynq/ZynqMP.
981
developer90af58f2018-11-15 10:08:02 +0800982config MTK_SERIAL
983 bool "MediaTek High-speed UART support"
984 depends on DM_SERIAL
985 help
986 Select this to enable UART support for MediaTek High-speed UART
987 devices. This driver uses driver model and requires a device
988 tree binding to operate.
989 The High-speed UART is compatible with the ns16550a UART and have
990 its own high-speed registers.
991
developere076b9e2020-11-12 16:36:05 +0800992config MT7620_SERIAL
993 bool "UART driver for MediaTek MT7620 and earlier SoCs"
994 depends on DM_SERIAL
995 help
996 Select this to enable UART support for MediaTek MT7620 and earlier
997 SoCs. This driver uses driver model and requires a device tree
998 binding to operate.
999 The UART driver for MediaTek MT7620 and earlier SoCs is *NOT*
1000 compatible with the ns16550a UART.
1001
Christophe Leroy9ac4a542017-07-06 10:33:27 +02001002config MPC8XX_CONS
1003 bool "Console driver for MPC8XX"
Christophe Leroyb3510fb2018-03-16 17:20:41 +01001004 depends on MPC8xx
Christophe Leroy9ac4a542017-07-06 10:33:27 +02001005 default y
1006
Jim Liu1a2abf62022-04-19 13:32:21 +08001007config NPCM_SERIAL
1008 bool "Nuvoton NPCM UART driver"
1009 depends on DM_SERIAL
1010 help
1011 Select this to enable UART support for Nuvoton BMCs
1012 (NPCM7xx and NPCM8xx).
1013 The driver enables the onboard serial port with 8-N-1
1014 configuration.
1015
Peng Fan8162f8f2020-08-06 12:42:50 +03001016config XEN_SERIAL
1017 bool "XEN serial support"
1018 depends on XEN
1019 help
1020 If built without DM support, then requires Xen
1021 to be built with CONFIG_VERBOSE_DEBUG.
1022
Christophe Leroy9ac4a542017-07-06 10:33:27 +02001023choice
1024 prompt "Console port"
1025 default 8xx_CONS_SMC1
1026 depends on MPC8XX_CONS
1027 help
1028 Depending on board, select one serial port
1029 (CONFIG_8xx_CONS_SMC1 or CONFIG_8xx_CONS_SMC2)
1030
1031config 8xx_CONS_SMC1
1032 bool "SMC1"
1033
1034config 8xx_CONS_SMC2
1035 bool "SMC2"
1036
1037endchoice
1038
1039config SYS_SMC_RXBUFLEN
1040 int "Console Rx buffer length"
1041 depends on MPC8XX_CONS
1042 default 1
1043 help
1044 With CONFIG_SYS_SMC_RXBUFLEN it is possible to define
1045 the maximum receive buffer length for the SMC.
1046 This option is actual only for 8xx possible.
1047 If using CONFIG_SYS_SMC_RXBUFLEN also CONFIG_SYS_MAXIDLE
1048 must be defined, to setup the maximum idle timeout for
1049 the SMC.
1050
1051config SYS_MAXIDLE
1052 int "maximum idle timeout"
1053 depends on MPC8XX_CONS
1054 default 0
1055
1056config SYS_BRGCLK_PRESCALE
1057 int "BRG Clock Prescale"
1058 depends on MPC8XX_CONS
1059 default 1
1060
1061config SYS_SDSR
1062 hex "SDSR Value"
1063 depends on MPC8XX_CONS
1064 default 0x83
1065
1066config SYS_SDMR
1067 hex "SDMR Value"
1068 depends on MPC8XX_CONS
1069 default 0
1070
Simon Glass388f78e2021-08-08 12:20:13 -06001071endif