net: zynq_gem: Use ulong instead of u32 data type
[oweals/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 SPL_DM_SERIAL
138         bool "Enable Driver Model for serial drivers in SPL"
139         depends on DM_SERIAL && SPL_DM
140         select SYS_SPL_MALLOC_F
141         default y
142         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
148 config TPL_DM_SERIAL
149         bool "Enable Driver Model for serial drivers in TPL"
150         depends on DM_SERIAL && TPL_DM
151         select SYS_TPL_MALLOC_F
152         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
159 config 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
185 choice
186         prompt "Select which UART will provide the debug UART"
187         depends on DEBUG_UART
188         default DEBUG_UART_NS16550
189
190 config 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
197 config 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
204 config 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
213 config 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
222 config 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
229 config 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
237 config 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
244 config 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
253 config 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
260 config 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
268 config 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
275 config 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
286 config 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
293 config DEBUG_UART_ZYNQ
294         bool "Xilinx Zynq"
295         help
296           Select this to enable a debug UART using the serial_zynq driver. You
297           will need to provide parameters to make this work. The driver will
298           be available until the real driver-model serial is running.
299
300 config 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
308 config 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
316 config 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
324 config 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
332 config 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
340 config 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
349 config 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
356 config 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
365 config 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
374 config 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
381 config 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
391 endchoice
392
393 config DEBUG_UART_BASE
394         hex "Base address of UART"
395         depends on DEBUG_UART
396         default 0 if DEBUG_UART_SANDBOX
397         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
403 config DEBUG_UART_CLOCK
404         int "UART input clock"
405         depends on DEBUG_UART
406         default 0 if DEBUG_UART_SANDBOX
407         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
415 config 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
425 config 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
436 config 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
446 config DEBUG_UART_SKIP_INIT
447         bool "Skip UART initialization"
448         depends on DEBUG_UART
449         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
453 config 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
465 config 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
474 config 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
484 config 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
491 config 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
500 config 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
507 config ATMEL_USART
508         bool "Atmel USART support"
509         help
510           Select this to enable USART support for Atmel SoCs. It can be
511           configured in the device tree, and input clock frequency can
512           be got from the clk node.
513
514 config SPL_UART_CLOCK
515         int "SPL fixed UART input clock"
516         depends on ATMEL_USART && SPL && !SPL_CLK
517         default 132096000 if ARCH_AT91
518         help
519           Provide a fixed clock value as input to the UART controller. This
520           might be needed on platforms which can't enable CONFIG_SPL_CLK
521           because of SPL image size restrictions.
522
523 config BCM283X_MU_SERIAL
524         bool "Support for BCM283x Mini-UART"
525         depends on DM_SERIAL && ARCH_BCM283X
526         default y
527         help
528           Select this to enable Mini-UART support on BCM283X family of SoCs.
529
530 config BCM283X_PL011_SERIAL
531         bool "Support for BCM283x PL011 UART"
532         depends on PL01X_SERIAL && ARCH_BCM283X
533         default y
534         help
535           Select this to enable an overriding PL011 driver for BCM283X SoCs
536           that supports automatic disable, so that it only gets used when
537           the UART is actually muxed.
538
539 config BCM6345_SERIAL
540         bool "Support for BCM6345 UART"
541         depends on DM_SERIAL
542         help
543           Select this to enable UART on BCM6345 SoCs.
544
545 config COREBOOT_SERIAL
546         bool "Coreboot UART support"
547         depends on DM_SERIAL
548         default y if SYS_COREBOOT
549         select SYS_NS16550
550         help
551           Select this to enable a ns16550-style UART where the platform data
552           comes from the coreboot 'sysinfo' tables. This allows U-Boot to have
553           a serial console on any platform without needing to change the
554           device tree, etc.
555
556 config CORTINA_UART
557         bool "Cortina UART support"
558         depends on DM_SERIAL
559         help
560           Select this to enable UART support for Cortina-Access UART devices
561           found on CAxxxx SoCs.
562
563 config FSL_LINFLEXUART
564         bool "Freescale Linflex UART support"
565         depends on DM_SERIAL
566         help
567           Select this to enable the Linflex serial module found on some
568           NXP SoCs like S32V234.
569
570 config FSL_LPUART
571         bool "Freescale LPUART support"
572         help
573           Select this to enable a Low Power UART for Freescale VF610 and
574           QorIQ Layerscape devices.
575
576 config MVEBU_A3700_UART
577         bool "UART support for Armada 3700"
578         default n
579         help
580           Choose this option to add support for UART driver on the Marvell
581           Armada 3700 SoC. The base address is configured via DT.
582
583 config MCFUART
584         bool "Freescale ColdFire UART support"
585         help
586           Choose this option to add support for UART driver on the ColdFire
587           SoC's family. The serial communication channel provides a full-duplex
588           asynchronous/synchronous receiver and transmitter deriving an
589           operating frequency from the internal bus clock or an external clock.
590
591 config MXC_UART
592         bool "IMX serial port support"
593         depends on MX5 || MX6 || MX7 || IMX8M
594         help
595           If you have a machine based on a Motorola IMX CPU you
596           can enable its onboard serial port by enabling this option.
597
598 config NULLDEV_SERIAL
599         bool "Null serial device"
600         help
601           Select this to enable null serial device support. A null serial
602           device merely acts as a placeholder for a serial device and does
603           nothing for all it's operation.
604
605 config PIC32_SERIAL
606         bool "Support for Microchip PIC32 on-chip UART"
607         depends on DM_SERIAL && MACH_PIC32
608         default y
609         help
610           Support for the UART found on Microchip PIC32 SoC's.
611
612 config SYS_NS16550
613         bool "NS16550 UART or compatible"
614         help
615           Support NS16550 UART or compatible. This can be enabled in the
616           device tree with the correct input clock frequency. If the input
617           clock frequency is not defined in the device tree, the macro
618           CONFIG_SYS_NS16550_CLK defined in a legacy board header file will
619           be used. It can be a constant or a function to get clock, eg,
620           get_serial_clock().
621
622 config NS16550_DYNAMIC
623         bool "Allow NS16550 to be configured at runtime"
624         default y if SYS_COREBOOT || SYS_SLIMBOOTLOADER
625         help
626           Enable this option to allow device-tree control of the driver.
627
628           Normally this driver is controlled by the following options:
629
630           CONFIG_SYS_NS16550_PORT_MAPPED - indicates that port I/O is used for
631              access. If not enabled, then the UART is memory-mapped.
632           CONFIG_SYS_NS16550_MEM32 - if memory-mapped, indicates that 32-bit
633              access should be used (instead of 8-bit)
634           CONFIG_SYS_NS16550_REG_SIZE - indicates register width and also
635              endianness. If positive, big-endian access is used. If negative,
636              little-endian is used.
637
638           It is not a good practice for a driver to be statically configured,
639           since it prevents the same driver being used for different types of
640           UARTs in a system. This option avoids this problem at the cost of a
641           slightly increased code size.
642
643 config INTEL_MID_SERIAL
644         bool "Intel MID platform UART support"
645         depends on DM_SERIAL && OF_CONTROL
646         depends on INTEL_MID
647         select SYS_NS16550
648         help
649           Select this to enable a UART for Intel MID platforms.
650           This uses the ns16550 driver as a library.
651
652 config PL010_SERIAL
653         bool "ARM PL010 driver"
654         depends on !DM_SERIAL
655         help
656           Select this to enable a UART for platforms using PL010.
657
658 config PL011_SERIAL
659         bool "ARM PL011 driver"
660         depends on !DM_SERIAL
661         help
662           Select this to enable a UART for platforms using PL011.
663
664 config PL01X_SERIAL
665         bool "ARM PL010 and PL011 driver"
666         depends on DM_SERIAL
667         help
668           Select this to enable a UART for platforms using PL010 or PL011.
669
670 config ROCKCHIP_SERIAL
671         bool "Rockchip on-chip UART support"
672         depends on DM_SERIAL && SPL_OF_PLATDATA
673         help
674           Select this to enable a debug UART for Rockchip devices when using
675           CONFIG_SPL_OF_PLATDATA (i.e. a compiled-in device tree replacemenmt).
676           This uses the ns16550 driver, converting the platdata from of-platdata
677           to the ns16550 format.
678
679 config SANDBOX_SERIAL
680         bool "Sandbox UART support"
681         depends on SANDBOX
682         help
683           Select this to enable a seral UART for sandbox. This is required to
684           operate correctly, otherwise you will see no serial output from
685           sandbox. The emulated UART will display to the console and console
686           input will be fed into the UART. This allows you to interact with
687           U-Boot.
688
689           The operation of the console is controlled by the -t command-line
690           flag. In raw mode, U-Boot sees all characters from the terminal
691           before they are processed, including Ctrl-C. In cooked mode, Ctrl-C
692           is processed by the terminal, and terminates U-Boot. Valid options
693           are:
694
695              -t raw-with-sigs   Raw mode, Ctrl-C will terminate U-Boot
696              -t raw             Raw mode, Ctrl-C is processed by U-Boot
697              -t cooked          Cooked mode, Ctrl-C terminates
698
699 config SCIF_CONSOLE
700         bool "Renesas SCIF UART support"
701         depends on SH || ARCH_RMOBILE
702         help
703           Select this to enable Renesas SCIF UART. To operate serial ports
704           on systems with RCar or SH SoCs, say Y to this option. If unsure,
705           say N.
706
707 config UNIPHIER_SERIAL
708         bool "Support for UniPhier on-chip UART"
709         depends on ARCH_UNIPHIER
710         default y
711         help
712           If you have a UniPhier based board and want to use the on-chip
713           serial ports, say Y to this option. If unsure, say N.
714
715 config XILINX_UARTLITE
716         bool "Xilinx Uarlite support"
717         depends on DM_SERIAL && (MICROBLAZE || ARCH_ZYNQ || ARCH_ZYNQMP || 4xx)
718         help
719           If you have a Xilinx based board and want to use the uartlite
720           serial ports, say Y to this option. If unsure, say N.
721
722 config MESON_SERIAL
723         bool "Support for Amlogic Meson UART"
724         depends on DM_SERIAL && ARCH_MESON
725         help
726           If you have an Amlogic Meson based board and want to use the on-chip
727           serial ports, say Y to this option. If unsure, say N.
728
729 config MSM_SERIAL
730         bool "Qualcomm on-chip UART"
731         depends on DM_SERIAL
732         help
733           Support Data Mover UART used on Qualcomm Snapdragon SoCs.
734           It should support all Qualcomm devices with UARTDM version 1.4,
735           for example APQ8016 and MSM8916.
736           Single baudrate is supported in current implementation (115200).
737
738 config OMAP_SERIAL
739         bool "Support for OMAP specific UART"
740         depends on DM_SERIAL
741         default y if (ARCH_OMAP2PLUS || ARCH_K3)
742         select SYS_NS16550
743         help
744           If you have an TI based SoC and want to use the on-chip serial
745           port, say Y to this option. If unsure say N.
746
747 config OWL_SERIAL
748         bool "Actions Semi OWL UART"
749         depends on DM_SERIAL && ARCH_OWL
750         help
751           If you have a Actions Semi OWL based board and want to use the on-chip
752           serial port, say Y to this option. If unsure, say N.
753           Single baudrate is supported in current implementation (115200).
754
755 config PXA_SERIAL
756         bool "PXA serial port support"
757         help
758           If you have a machine based on a Marvell XScale PXA2xx CPU you
759           can enable its onboard serial ports by enabling this option.
760
761 config SIFIVE_SERIAL
762         bool "SiFive UART support"
763         depends on DM_SERIAL
764         help
765           This driver supports the SiFive UART. If unsure say N.
766
767 config STI_ASC_SERIAL
768         bool "STMicroelectronics on-chip UART"
769         depends on DM_SERIAL && ARCH_STI
770         help
771           Select this to enable Asynchronous Serial Controller available
772           on STiH410 SoC. This is a basic implementation,  it supports
773           following baudrate 9600, 19200, 38400, 57600 and 115200.
774
775 config STM32_SERIAL
776         bool "STMicroelectronics STM32 SoCs on-chip UART"
777         depends on DM_SERIAL && (STM32F4 || STM32F7 || STM32H7 || ARCH_STM32MP)
778         help
779           If you have a machine based on a STM32 F4, F7, H7 or MP1 SOC
780           you can enable its onboard serial ports, say Y to this option.
781           If unsure, say N.
782
783 config ZYNQ_SERIAL
784         bool "Cadence (Xilinx Zynq) UART support"
785         depends on DM_SERIAL && (MICROBLAZE || ARCH_ZYNQ || ARCH_ZYNQMP || ARCH_ZYNQMP_R5)
786         help
787           This driver supports the Cadence UART. It is found e.g. in Xilinx
788           Zynq/ZynqMP.
789
790 config MTK_SERIAL
791         bool "MediaTek High-speed UART support"
792         depends on DM_SERIAL
793         help
794           Select this to enable UART support for MediaTek High-speed UART
795           devices. This driver uses driver model and requires a device
796           tree binding to operate.
797           The High-speed UART is compatible with the ns16550a UART and have
798           its own high-speed registers.
799
800 config MPC8XX_CONS
801         bool "Console driver for MPC8XX"
802         depends on MPC8xx
803         default y
804
805 choice
806         prompt "Console port"
807         default 8xx_CONS_SMC1
808         depends on MPC8XX_CONS
809         help
810           Depending on board, select one serial port
811           (CONFIG_8xx_CONS_SMC1 or CONFIG_8xx_CONS_SMC2)
812
813 config 8xx_CONS_SMC1
814         bool "SMC1"
815
816 config 8xx_CONS_SMC2
817         bool "SMC2"
818
819 endchoice
820
821 config SYS_SMC_RXBUFLEN
822         int "Console Rx buffer length"
823         depends on MPC8XX_CONS
824         default 1
825         help
826           With CONFIG_SYS_SMC_RXBUFLEN it is possible to define
827           the maximum receive buffer length for the SMC.
828           This option is actual only for 8xx possible.
829           If using CONFIG_SYS_SMC_RXBUFLEN also CONFIG_SYS_MAXIDLE
830           must be defined, to setup the maximum idle timeout for
831           the SMC.
832
833 config SYS_MAXIDLE
834         int "maximum idle timeout"
835         depends on MPC8XX_CONS
836         default 0
837
838 config SYS_BRGCLK_PRESCALE
839         int "BRG Clock Prescale"
840         depends on MPC8XX_CONS
841         default 1
842
843 config SYS_SDSR
844         hex "SDSR Value"
845         depends on MPC8XX_CONS
846         default 0x83
847
848 config SYS_SDMR
849         hex "SDMR Value"
850         depends on MPC8XX_CONS
851         default 0
852
853 endmenu