spi: nxp_fspi: Ensure width is respected in spi-mem operations
[platform/kernel/u-boot.git] / drivers / serial / Kconfig
1 #
2 # Serial device configuration
3 #
4
5 menu "Serial drivers"
6
7 config 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
16 config 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
27 config 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
36 config 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
46 config SPL_SERIAL_PRESENT
47         bool "Provide a serial driver in SPL"
48         depends on DM_SERIAL && SPL
49         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
56 config TPL_SERIAL_PRESENT
57         bool "Provide a serial driver in TPL"
58         depends on DM_SERIAL && TPL
59         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
66 # Logic to allow us to use the imply keyword to set what the default port
67 # should be.  The default is otherwise 1.
68 config CONS_INDEX_0
69         bool
70
71 config CONS_INDEX_2
72         bool
73
74 config CONS_INDEX_3
75         bool
76
77 config CONS_INDEX_4
78         bool
79
80 config CONS_INDEX_5
81         bool
82
83 config CONS_INDEX_6
84         bool
85
86 config CONS_INDEX
87         int "UART used for console"
88         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
96         default 1
97         help
98           Set this to match the UART number of the serial console.
99
100 config DM_SERIAL
101         bool "Enable Driver Model for serial drivers"
102         depends on DM
103         select SYS_MALLOC_F
104         help
105           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.
109
110 config 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
118 config 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
125 config 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
137 config SERIAL_PROBE_ALL
138         bool "Probe all available serial devices"
139         depends on DM_SERIAL
140         default n
141         help
142           The serial subsystem only probes for a single serial device,
143           but does not probe for other remaining serial devices.
144           With this option set, we make probing and searching for
145           all available devices optional.
146           Normally, U-Boot talks to one serial port at a time, but SBSA
147           compliant UART devices like PL011 require initialization
148           by firmware and to let the kernel use serial port for sending
149           and receiving the characters.
150
151           If unsure, say N.
152
153 config SPL_DM_SERIAL
154         bool "Enable Driver Model for serial drivers in SPL"
155         depends on DM_SERIAL && SPL_DM
156         select SYS_SPL_MALLOC_F
157         default y
158         help
159           Enable driver model for serial in SPL. This replaces
160           drivers/serial/serial.c with the serial uclass, which
161           implements serial_putc() etc. The uclass interface is
162           defined in include/serial.h.
163
164 config TPL_DM_SERIAL
165         bool "Enable Driver Model for serial drivers in TPL"
166         depends on DM_SERIAL && TPL_DM
167         select SYS_TPL_MALLOC_F
168         default y if TPL && DM_SERIAL
169         help
170           Enable driver model for serial in TPL. This replaces
171           drivers/serial/serial.c with the serial uclass, which
172           implements serial_putc() etc. The uclass interface is
173           defined in include/serial.h.
174
175 config DEBUG_UART
176         bool "Enable an early debug UART for debugging"
177         help
178           The debug UART is intended for use very early in U-Boot to debug
179           problems when an ICE or other debug mechanism is not available.
180
181           To use it you should:
182           - Make sure your UART supports this interface
183           - Enable CONFIG_DEBUG_UART
184           - Enable the CONFIG for your UART to tell it to provide this interface
185                 (e.g. CONFIG_DEBUG_UART_NS16550)
186           - Define the required settings as needed (see below)
187           - Call debug_uart_init() before use
188           - Call debug_uart_putc() to output a character
189
190           Depending on your platform it may be possible to use this UART before
191           a stack is available.
192
193           If your UART does not support this interface you can probably add
194           support quite easily. Remember that you cannot use driver model and
195           it is preferred to use no stack.
196
197           You must not use this UART once driver model is working and the
198           serial drivers are up and running (done in serial_init()). Otherwise
199           the drivers may conflict and you will get strange output.
200
201 choice
202         prompt "Select which UART will provide the debug UART"
203         depends on DEBUG_UART
204         default DEBUG_UART_NS16550
205
206 config DEBUG_UART_ALTERA_JTAGUART
207         bool "Altera JTAG UART"
208         depends on ALTERA_JTAG_UART
209         help
210           Select this to enable a debug UART using the altera_jtag_uart driver.
211           You will need to provide parameters to make this work. The driver will
212           be available until the real driver model serial is running.
213
214 config DEBUG_UART_ALTERA_UART
215         bool "Altera UART"
216         depends on ALTERA_UART
217         help
218           Select this to enable a debug UART using the altera_uart driver.
219           You will need to provide parameters to make this work. The driver will
220           be available until the real driver model serial is running.
221
222 config DEBUG_UART_AR933X
223         bool "QCA/Atheros ar933x"
224         depends on AR933X_UART
225         help
226           Select this to enable a debug UART using the ar933x uart driver.
227           You will need to provide parameters to make this work. The
228           driver will be available until the real driver model serial is
229           running.
230
231 config DEBUG_ARC_SERIAL
232         bool "ARC UART"
233         depends on ARC_SERIAL
234         help
235           Select this to enable a debug UART using the ARC UART driver.
236           You will need to provide parameters to make this work. The
237           driver will be available until the real driver model serial is
238           running.
239
240 config DEBUG_UART_ATMEL
241         bool "Atmel USART"
242         depends on ATMEL_USART
243         help
244           Select this to enable a debug UART using the atmel usart driver. You
245           will need to provide parameters to make this work. The driver will
246           be available until the real driver-model serial is running.
247
248 config DEBUG_UART_BCM6345
249         bool "BCM6345 UART"
250         depends on BCM6345_SERIAL
251         help
252           Select this to enable a debug UART on BCM6345 SoCs. You
253           will need to provide parameters to make this work. The driver will
254           be available until the real driver model serial is running.
255
256 config DEBUG_UART_NS16550
257         bool "ns16550"
258         depends on SYS_NS16550
259         help
260           Select this to enable a debug UART using the ns16550 driver. You
261           will need to provide parameters to make this work. The driver will
262           be available until the real driver model serial is running.
263
264 config DEBUG_EFI_CONSOLE
265         bool "EFI"
266         depends on EFI_APP
267         help
268           Select this to enable a debug console which calls back to EFI to
269           output to the console. This can be useful for early debugging of
270           U-Boot when running on top of EFI (Extensive Firmware Interface).
271           This is a type of BIOS used by PCs.
272
273 config DEBUG_UART_S5P
274         bool "Samsung S5P"
275         depends on ARCH_EXYNOS || ARCH_S5PC1XX
276         help
277           Select this to enable a debug UART using the serial_s5p 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
281 config DEBUG_UART_MESON
282         bool "Amlogic Meson"
283         depends on MESON_SERIAL
284         help
285           Select this to enable a debug UART using the serial_meson driver. You
286           will need to provide parameters to make this work. The driver will
287           be available until the real driver-model serial is running.
288
289 config DEBUG_UART_UARTLITE
290         bool "Xilinx Uartlite"
291         depends on XILINX_UARTLITE
292         help
293           Select this to enable a debug UART using the serial_uartlite driver.
294           You will need to provide parameters to make this work. The driver will
295           be available until the real driver-model serial is running.
296
297 config DEBUG_UART_ARM_DCC
298         bool "ARM DCC"
299         depends on ARM_DCC
300         help
301           Select this to enable a debug UART using the ARM JTAG DCC port.
302           The DCC port can be used for very early debugging and doesn't require
303           any additional setting like address/baudrate/clock. On systems without
304           any serial interface this is the easiest way how to get console.
305           Every ARM core has own DCC port which is the part of debug interface.
306           This port is available at least on ARMv6, ARMv7, ARMv8 and XScale
307           architectures.
308
309 config DEBUG_MVEBU_A3700_UART
310         bool "Marvell Armada 3700"
311         depends on MVEBU_A3700_UART
312         help
313           Select this to enable a debug UART using the serial_mvebu driver. You
314           will need to provide parameters to make this work. The driver will
315           be available until the real driver-model serial is running.
316
317 config DEBUG_UART_ZYNQ
318         bool "Xilinx Zynq"
319         depends on ZYNQ_SERIAL
320         help
321           Select this to enable a debug UART using the serial_zynq driver. You
322           will need to provide parameters to make this work. The driver will
323           be available until the real driver-model serial is running.
324
325 config DEBUG_UART_APBUART
326         depends on LEON3
327         bool "Gaisler APBUART"
328         help
329           Select this to enable a debug UART using the serial_leon3 driver. You
330           will need to provide parameters to make this work. The driver will
331           be available until the real driver model serial is running.
332
333 config DEBUG_UART_PL010
334         bool "pl010"
335         depends on PL01X_SERIAL
336         help
337           Select this to enable a debug UART using the pl01x driver with the
338           PL010 UART type. You will need to provide parameters to make this
339           work. The driver will be available until the real driver model
340           serial is running.
341
342 config DEBUG_UART_PL011
343         bool "pl011"
344         depends on PL01X_SERIAL || PL011_SERIAL
345         help
346           Select this to enable a debug UART using the pl01x driver with the
347           PL011 UART type. You will need to provide parameters to make this
348           work. The driver will be available until the real driver model
349           serial is running.
350
351 config DEBUG_UART_PIC32
352         bool "Microchip PIC32"
353         depends on PIC32_SERIAL
354         help
355           Select this to enable a debug UART using the serial_pic32 driver. You
356           will need to provide parameters to make this work. The driver will
357           be available until the real driver model serial is running.
358
359 config DEBUG_UART_MXC
360         bool "IMX Serial port"
361         depends on MXC_UART
362         help
363           Select this to enable a debug UART using the serial_mxc driver. You
364           will need to provide parameters to make this work. The driver will
365           be available until the real driver model serial is running.
366
367 config DEBUG_UART_SANDBOX
368         bool "sandbox"
369         depends on SANDBOX_SERIAL
370         help
371           Select this to enable the debug UART using the sandbox driver. This
372           provides basic serial output from the console without needing to
373           start up driver model. The driver will be available until the real
374           driver model serial is running.
375
376 config DEBUG_UART_SIFIVE
377         bool "SiFive UART"
378         depends on SIFIVE_SERIAL
379         help
380           Select this to enable a debug UART using the serial_sifive driver. You
381           will need to provide parameters to make this work. The driver will
382           be available until the real driver-model serial is running.
383
384 config DEBUG_UART_STM32
385         bool "STMicroelectronics STM32"
386         depends on STM32_SERIAL
387         help
388           Select this to enable a debug UART using the serial_stm32 driver
389           You will need to provide parameters to make this work.
390           The driver will be available until the real driver model
391           serial is running.
392
393 config DEBUG_UART_UNIPHIER
394         bool "UniPhier on-chip UART"
395         depends on ARCH_UNIPHIER
396         help
397           Select this to enable a debug UART using the UniPhier on-chip UART.
398           You will need to provide DEBUG_UART_BASE to make this work.  The
399           driver will be available until the real driver-model serial is
400           running.
401
402 config DEBUG_UART_OMAP
403         bool "OMAP uart"
404         depends on OMAP_SERIAL
405         help
406           Select this to enable a debug UART using the omap ns16550 driver.
407           You will need to provide parameters to make this work. The driver
408           will be available until the real driver model serial is running.
409
410 config DEBUG_UART_MTK
411         bool "MediaTek High-speed UART"
412         depends on MTK_SERIAL
413         help
414           Select this to enable a debug UART using the MediaTek High-speed
415           UART driver.
416           You will need to provide parameters to make this work. The
417           driver will be available until the real driver model serial is
418           running.
419
420 config DEBUG_UART_MT7620
421         bool "UART driver for MediaTek MT7620 and earlier SoCs"
422         depends on MT7620_SERIAL
423         help
424           Select this to enable a debug UART using the UART driver for
425           MediaTek MT7620 and earlier SoCs.
426           You will need to provide parameters to make this work. The
427           driver will be available until the real driver model serial is
428           running.
429
430 endchoice
431
432 config DEBUG_UART_BASE
433         hex "Base address of UART"
434         depends on DEBUG_UART
435         default 0 if DEBUG_UART_SANDBOX
436         help
437           This is the base address of your UART for memory-mapped UARTs.
438
439           A default should be provided by your board, but if not you will need
440           to use the correct value here.
441
442 config DEBUG_UART_CLOCK
443         int "UART input clock"
444         depends on DEBUG_UART
445         default 0 if DEBUG_UART_SANDBOX
446         default 0 if DEBUG_MVEBU_A3700_UART
447         help
448           The UART input clock determines the speed of the internal UART
449           circuitry. The baud rate is derived from this by dividing the input
450           clock down.
451
452           A default should be provided by your board, but if not you will need
453           to use the correct value here.
454
455 config DEBUG_UART_SHIFT
456         int "UART register shift"
457         depends on DEBUG_UART
458         default 0 if DEBUG_UART
459         help
460           Some UARTs (notably ns16550) support different register layouts
461           where the registers are spaced either as bytes, words or some other
462           value. Use this value to specify the shift to use, where 0=byte
463           registers, 2=32-bit word registers, etc.
464
465 config DEBUG_UART_BOARD_INIT
466         bool "Enable board-specific debug UART init"
467         depends on DEBUG_UART
468         help
469           Some boards need to set things up before the debug UART can be used.
470           On these boards a call to debug_uart_init() is insufficient. When
471           this option is enabled, the function board_debug_uart_init() will
472           be called when debug_uart_init() is called. You can put any code
473           here that is needed to set up the UART ready for use, such as set
474           pin multiplexing or enable clocks.
475
476 config DEBUG_UART_ANNOUNCE
477         bool "Show a message when the debug UART starts up"
478         depends on DEBUG_UART
479         help
480           Enable this option to show a message when the debug UART is ready
481           for use. You will see a message like "<debug_uart> " as soon as
482           U-Boot has the UART ready for use (i.e. your code calls
483           debug_uart_init()). This can be useful just as a check that
484           everything is working.
485
486 config DEBUG_UART_SKIP_INIT
487         bool "Skip UART initialization"
488         depends on DEBUG_UART
489         help
490           Select this if the UART you want to use for debug output is already
491           initialized by the time U-Boot starts its execution.
492
493 config DEBUG_UART_NS16550_CHECK_ENABLED
494         bool "Check if UART is enabled on output"
495         depends on DEBUG_UART
496         depends on DEBUG_UART_NS16550
497         help
498           Select this if puts()/putc() might be called before the debug UART
499           has been initialized. If this is disabled, putc() might sit in a
500           tight loop if it is called before debug_uart_init() has been called.
501
502           Note that this does not work for every ns16550-compatible UART and
503           so has to be enabled carefully or you might notice lost characters.
504
505 config ALTERA_JTAG_UART
506         bool "Altera JTAG UART support"
507         depends on DM_SERIAL
508         help
509           Select this to enable an JTAG UART for Altera devices.The JTAG UART
510           core implements a method to communicate serial character streams
511           between a host PC and a Qsys system on an Altera FPGA. Please find
512           details on the "Embedded Peripherals IP User Guide" of Altera.
513
514 config ALTERA_JTAG_UART_BYPASS
515         bool "Bypass output when no connection"
516         depends on ALTERA_JTAG_UART
517         help
518           Bypass console output and keep going even if there is no JTAG
519           terminal connection with the host. The console output will resume
520           once the JTAG terminal is connected. Without the bypass, the console
521           output will wait forever until a JTAG terminal is connected. If you
522           not are sure, say Y.
523
524 config ALTERA_UART
525         bool "Altera UART support"
526         depends on DM_SERIAL
527         help
528           Select this to enable an UART for Altera devices. Please find
529           details on the "Embedded Peripherals IP User Guide" of Altera.
530
531 config AR933X_UART
532         bool "QCA/Atheros ar933x UART support"
533         depends on DM_SERIAL && SOC_AR933X
534         help
535           Select this to enable UART support for QCA/Atheros ar933x
536           devices. This driver uses driver model and requires a device
537           tree binding to operate, please refer to the document at
538           doc/device-tree-bindings/serial/qca,ar9330-uart.txt.
539
540 config ARC_SERIAL
541         bool "ARC UART support"
542         depends on DM_SERIAL
543         help
544           Select this to enable support for ARC UART now typically
545           only used in Synopsys DesignWare ARC simulators like nSIM.
546
547 config ARM_DCC
548         bool "ARM Debug Communication Channel (DCC) as UART support"
549         depends on ARM
550         help
551           Select this to enable using the ARM DCC as a form of UART.
552
553 config ATMEL_USART
554         bool "Atmel USART support"
555         help
556           Select this to enable USART support for Atmel SoCs. It can be
557           configured in the device tree, and input clock frequency can
558           be got from the clk node.
559
560 config SPL_UART_CLOCK
561         int "SPL fixed UART input clock"
562         depends on ATMEL_USART && SPL && !SPL_CLK
563         default 132096000 if ARCH_AT91
564         help
565           Provide a fixed clock value as input to the UART controller. This
566           might be needed on platforms which can't enable CONFIG_SPL_CLK
567           because of SPL image size restrictions.
568
569 config BCM283X_MU_SERIAL
570         bool "Support for BCM283x Mini-UART"
571         depends on DM_SERIAL && ARCH_BCM283X
572         default y
573         help
574           Select this to enable Mini-UART support on BCM283X family of SoCs.
575
576 config BCM283X_PL011_SERIAL
577         bool "Support for BCM283x PL011 UART"
578         depends on PL01X_SERIAL && ARCH_BCM283X
579         default y
580         help
581           Select this to enable an overriding PL011 driver for BCM283X SoCs
582           that supports automatic disable, so that it only gets used when
583           the UART is actually muxed.
584
585 config BCM6345_SERIAL
586         bool "Support for BCM6345 UART"
587         depends on DM_SERIAL
588         help
589           Select this to enable UART on BCM6345 SoCs.
590
591 config COREBOOT_SERIAL
592         bool "Coreboot UART support"
593         depends on DM_SERIAL
594         default y if SYS_COREBOOT
595         select SYS_NS16550
596         help
597           Select this to enable a ns16550-style UART where the platform data
598           comes from the coreboot 'sysinfo' tables. This allows U-Boot to have
599           a serial console on any platform without needing to change the
600           device tree, etc.
601
602 config CORTINA_UART
603         bool "Cortina UART support"
604         depends on DM_SERIAL
605         help
606           Select this to enable UART support for Cortina-Access UART devices
607           found on CAxxxx SoCs.
608
609 config FSL_LINFLEXUART
610         bool "Freescale Linflex UART support"
611         depends on DM_SERIAL
612         help
613           Select this to enable the Linflex serial module found on some
614           NXP SoCs like S32V234.
615
616 config FSL_LPUART
617         bool "Freescale LPUART support"
618         help
619           Select this to enable a Low Power UART for Freescale VF610 and
620           QorIQ Layerscape devices.
621
622 config MVEBU_A3700_UART
623         bool "UART support for Armada 3700"
624         default n
625         help
626           Choose this option to add support for UART driver on the Marvell
627           Armada 3700 SoC. The base address is configured via DT.
628
629 config MCFUART
630         bool "Freescale ColdFire UART support"
631         help
632           Choose this option to add support for UART driver on the ColdFire
633           SoC's family. The serial communication channel provides a full-duplex
634           asynchronous/synchronous receiver and transmitter deriving an
635           operating frequency from the internal bus clock or an external clock.
636
637 config MXC_UART
638         bool "IMX serial port support"
639         depends on ARCH_MX25 || ARCH_MX31 || TARGET_FLEA3 \
640                 || MX5 || MX6 || MX7 || IMX8M
641         help
642           If you have a machine based on a Motorola IMX CPU you
643           can enable its onboard serial port by enabling this option.
644
645 config NULLDEV_SERIAL
646         bool "Null serial device"
647         help
648           Select this to enable null serial device support. A null serial
649           device merely acts as a placeholder for a serial device and does
650           nothing for all it's operation.
651
652 config PIC32_SERIAL
653         bool "Support for Microchip PIC32 on-chip UART"
654         depends on DM_SERIAL && MACH_PIC32
655         default y
656         help
657           Support for the UART found on Microchip PIC32 SoC's.
658
659 config SYS_NS16550
660         bool "NS16550 UART or compatible"
661         help
662           Support NS16550 UART or compatible. This can be enabled in the
663           device tree with the correct input clock frequency. If the input
664           clock frequency is not defined in the device tree, the macro
665           CONFIG_SYS_NS16550_CLK defined in a legacy board header file will
666           be used. It can be a constant or a function to get clock, eg,
667           get_serial_clock().
668
669 config NS16550_DYNAMIC
670         bool "Allow NS16550 to be configured at runtime"
671         default y if SYS_COREBOOT || SYS_SLIMBOOTLOADER
672         help
673           Enable this option to allow device-tree control of the driver.
674
675           Normally this driver is controlled by the following options:
676
677           CONFIG_SYS_NS16550_PORT_MAPPED - indicates that port I/O is used for
678              access. If not enabled, then the UART is memory-mapped.
679           CONFIG_SYS_NS16550_MEM32 - if memory-mapped, indicates that 32-bit
680              access should be used (instead of 8-bit)
681           CONFIG_SYS_NS16550_REG_SIZE - indicates register width and also
682              endianness. If positive, big-endian access is used. If negative,
683              little-endian is used.
684
685           It is not a good practice for a driver to be statically configured,
686           since it prevents the same driver being used for different types of
687           UARTs in a system. This option avoids this problem at the cost of a
688           slightly increased code size.
689
690 config INTEL_MID_SERIAL
691         bool "Intel MID platform UART support"
692         depends on DM_SERIAL && OF_CONTROL
693         depends on INTEL_MID
694         select SYS_NS16550
695         help
696           Select this to enable a UART for Intel MID platforms.
697           This uses the ns16550 driver as a library.
698
699 config PL011_SERIAL
700         bool "ARM PL011 driver"
701         depends on !DM_SERIAL
702         help
703           Select this to enable a UART for platforms using PL011.
704
705 config PL01X_SERIAL
706         bool "ARM PL010 and PL011 driver"
707         depends on DM_SERIAL
708         help
709           Select this to enable a UART for platforms using PL010 or PL011.
710
711 config ROCKCHIP_SERIAL
712         bool "Rockchip on-chip UART support"
713         depends on DM_SERIAL && SPL_OF_PLATDATA
714         help
715           Select this to enable a debug UART for Rockchip devices when using
716           CONFIG_SPL_OF_PLATDATA (i.e. a compiled-in device tree replacemenmt).
717           This uses the ns16550 driver, converting the platdata from of-platdata
718           to the ns16550 format.
719
720 config S5P_SERIAL
721         bool "Support for Samsung S5P UART"
722         depends on ARCH_EXYNOS || ARCH_S5PC1XX
723         default y
724         help
725           Select this to enable Samsung S5P UART support.
726
727 config SANDBOX_SERIAL
728         bool "Sandbox UART support"
729         depends on SANDBOX
730         help
731           Select this to enable a seral UART for sandbox. This is required to
732           operate correctly, otherwise you will see no serial output from
733           sandbox. The emulated UART will display to the console and console
734           input will be fed into the UART. This allows you to interact with
735           U-Boot.
736
737           The operation of the console is controlled by the -t command-line
738           flag. In raw mode, U-Boot sees all characters from the terminal
739           before they are processed, including Ctrl-C. In cooked mode, Ctrl-C
740           is processed by the terminal, and terminates U-Boot. Valid options
741           are:
742
743              -t raw-with-sigs   Raw mode, Ctrl-C will terminate U-Boot
744              -t raw             Raw mode, Ctrl-C is processed by U-Boot
745              -t cooked          Cooked mode, Ctrl-C terminates
746
747 config SCIF_CONSOLE
748         bool "Renesas SCIF UART support"
749         depends on SH || ARCH_RMOBILE
750         help
751           Select this to enable Renesas SCIF UART. To operate serial ports
752           on systems with RCar or SH SoCs, say Y to this option. If unsure,
753           say N.
754
755 config UNIPHIER_SERIAL
756         bool "Support for UniPhier on-chip UART"
757         depends on ARCH_UNIPHIER
758         default y
759         help
760           If you have a UniPhier based board and want to use the on-chip
761           serial ports, say Y to this option. If unsure, say N.
762
763 config XILINX_UARTLITE
764         bool "Xilinx Uarlite support"
765         depends on DM_SERIAL
766         help
767           If you have a Xilinx based board and want to use the uartlite
768           serial ports, say Y to this option. If unsure, say N.
769
770 config MESON_SERIAL
771         bool "Support for Amlogic Meson UART"
772         depends on DM_SERIAL && ARCH_MESON
773         help
774           If you have an Amlogic Meson based board and want to use the on-chip
775           serial ports, say Y to this option. If unsure, say N.
776
777 config MSM_SERIAL
778         bool "Qualcomm on-chip UART"
779         depends on DM_SERIAL
780         help
781           Support Data Mover UART used on Qualcomm Snapdragon SoCs.
782           It should support all Qualcomm devices with UARTDM version 1.4,
783           for example APQ8016 and MSM8916.
784           Single baudrate is supported in current implementation (115200).
785
786 config OCTEON_SERIAL_BOOTCMD
787         bool "MIPS Octeon PCI remote bootcmd input"
788         depends on ARCH_OCTEON
789         depends on DM_SERIAL
790         select SYS_IS_IN_ENV
791         select CONSOLE_MUX
792         help
793          This driver supports remote input over the PCIe bus from a host
794          to U-Boot for entering commands.  It is utilized by the host
795          commands 'oct-remote-load' and 'oct-remote-bootcmd'.
796
797 config OCTEON_SERIAL_PCIE_CONSOLE
798         bool "MIPS Octeon PCIe remote console"
799         depends on ARCH_OCTEON
800         depends on (DM_SERIAL && DM_STDIO)
801         select SYS_STDIO_DEREGISTER
802         select SYS_CONSOLE_IS_IN_ENV
803         select CONSOLE_MUX
804         help
805           This driver supports remote console over the PCIe bus when the
806           Octeon is running in PCIe target mode. The host program
807           'oct-remote-console' can be used to connect to this console.
808           The console number will likely be 0 or 1.
809
810 config OMAP_SERIAL
811         bool "Support for OMAP specific UART"
812         depends on DM_SERIAL
813         default y if (ARCH_OMAP2PLUS || ARCH_K3)
814         select SYS_NS16550
815         help
816           If you have an TI based SoC and want to use the on-chip serial
817           port, say Y to this option. If unsure say N.
818
819 config OWL_SERIAL
820         bool "Actions Semi OWL UART"
821         depends on DM_SERIAL && ARCH_OWL
822         help
823           If you have a Actions Semi OWL based board and want to use the on-chip
824           serial port, say Y to this option. If unsure, say N.
825           Single baudrate is supported in current implementation (115200).
826
827 config PXA_SERIAL
828         bool "PXA serial port support"
829         help
830           If you have a machine based on a Marvell XScale PXA2xx CPU you
831           can enable its onboard serial ports by enabling this option.
832
833 config SIFIVE_SERIAL
834         bool "SiFive UART support"
835         depends on DM_SERIAL
836         help
837           This driver supports the SiFive UART. If unsure say N.
838
839 config STI_ASC_SERIAL
840         bool "STMicroelectronics on-chip UART"
841         depends on DM_SERIAL && ARCH_STI
842         help
843           Select this to enable Asynchronous Serial Controller available
844           on STiH410 SoC. This is a basic implementation,  it supports
845           following baudrate 9600, 19200, 38400, 57600 and 115200.
846
847 config STM32_SERIAL
848         bool "STMicroelectronics STM32 SoCs on-chip UART"
849         depends on DM_SERIAL && (STM32F4 || STM32F7 || STM32H7 || ARCH_STM32MP)
850         help
851           If you have a machine based on a STM32 F4, F7, H7 or MP1 SOC
852           you can enable its onboard serial ports, say Y to this option.
853           If unsure, say N.
854
855 config ZYNQ_SERIAL
856         bool "Cadence (Xilinx Zynq) UART support"
857         depends on DM_SERIAL
858         help
859           This driver supports the Cadence UART. It is found e.g. in Xilinx
860           Zynq/ZynqMP.
861
862 config MTK_SERIAL
863         bool "MediaTek High-speed UART support"
864         depends on DM_SERIAL
865         help
866           Select this to enable UART support for MediaTek High-speed UART
867           devices. This driver uses driver model and requires a device
868           tree binding to operate.
869           The High-speed UART is compatible with the ns16550a UART and have
870           its own high-speed registers.
871
872 config MT7620_SERIAL
873         bool "UART driver for MediaTek MT7620 and earlier SoCs"
874         depends on DM_SERIAL
875         help
876           Select this to enable UART support for MediaTek MT7620 and earlier
877           SoCs. This driver uses driver model and requires a device tree
878           binding to operate.
879           The UART driver for MediaTek MT7620 and earlier SoCs is *NOT*
880           compatible with the ns16550a UART.
881
882 config MPC8XX_CONS
883         bool "Console driver for MPC8XX"
884         depends on MPC8xx
885         default y
886
887 config XEN_SERIAL
888         bool "XEN serial support"
889         depends on XEN
890         help
891           If built without DM support, then requires Xen
892           to be built with CONFIG_VERBOSE_DEBUG.
893
894 choice
895         prompt "Console port"
896         default 8xx_CONS_SMC1
897         depends on MPC8XX_CONS
898         help
899           Depending on board, select one serial port
900           (CONFIG_8xx_CONS_SMC1 or CONFIG_8xx_CONS_SMC2)
901
902 config 8xx_CONS_SMC1
903         bool "SMC1"
904
905 config 8xx_CONS_SMC2
906         bool "SMC2"
907
908 endchoice
909
910 config SYS_SMC_RXBUFLEN
911         int "Console Rx buffer length"
912         depends on MPC8XX_CONS
913         default 1
914         help
915           With CONFIG_SYS_SMC_RXBUFLEN it is possible to define
916           the maximum receive buffer length for the SMC.
917           This option is actual only for 8xx possible.
918           If using CONFIG_SYS_SMC_RXBUFLEN also CONFIG_SYS_MAXIDLE
919           must be defined, to setup the maximum idle timeout for
920           the SMC.
921
922 config SYS_MAXIDLE
923         int "maximum idle timeout"
924         depends on MPC8XX_CONS
925         default 0
926
927 config SYS_BRGCLK_PRESCALE
928         int "BRG Clock Prescale"
929         depends on MPC8XX_CONS
930         default 1
931
932 config SYS_SDSR
933         hex "SDSR Value"
934         depends on MPC8XX_CONS
935         default 0x83
936
937 config SYS_SDMR
938         hex "SDMR Value"
939         depends on MPC8XX_CONS
940         default 0
941
942 endmenu