Masahiro Yamada | 0b11dbf | 2015-07-26 02:46:26 +0900 | [diff] [blame] | 1 | # |
| 2 | # Serial device configuration |
| 3 | # |
| 4 | |
| 5 | menu "Serial drivers" |
| 6 | |
Philipp Tomsich | f40574e | 2017-03-17 20:34:53 +0100 | [diff] [blame] | 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 | |
Hans de Goede | 8c45858 | 2015-08-08 17:45:18 +0200 | [diff] [blame] | 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 | |
Tom Rini | 6f6b7cf | 2018-03-06 19:02:27 -0500 | [diff] [blame] | 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 | |
Simon Glass | 92c55b6 | 2015-12-13 21:36:58 -0700 | [diff] [blame] | 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" |
Adam Ford | a074667 | 2019-08-24 13:50:34 -0500 | [diff] [blame] | 48 | depends on DM_SERIAL && SPL |
Simon Glass | 92c55b6 | 2015-12-13 21:36:58 -0700 | [diff] [blame] | 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 | |
Simon Glass | aa0ffe8 | 2018-10-01 12:22:20 -0600 | [diff] [blame] | 56 | config TPL_SERIAL_PRESENT |
| 57 | bool "Provide a serial driver in TPL" |
Adam Ford | a074667 | 2019-08-24 13:50:34 -0500 | [diff] [blame] | 58 | depends on DM_SERIAL && TPL |
Simon Glass | aa0ffe8 | 2018-10-01 12:22:20 -0600 | [diff] [blame] | 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 | |
Tom Rini | 6f6b7cf | 2018-03-06 19:02:27 -0500 | [diff] [blame] | 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 | |
Mylène Josserand | 7095f86 | 2017-04-02 12:59:11 +0200 | [diff] [blame] | 86 | config CONS_INDEX |
| 87 | int "UART used for console" |
Tom Rini | 6f6b7cf | 2018-03-06 19:02:27 -0500 | [diff] [blame] | 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 |
Mylène Josserand | 7095f86 | 2017-04-02 12:59:11 +0200 | [diff] [blame] | 96 | default 1 |
| 97 | help |
Tom Rini | 6f6b7cf | 2018-03-06 19:02:27 -0500 | [diff] [blame] | 98 | Set this to match the UART number of the serial console. |
Mylène Josserand | 7095f86 | 2017-04-02 12:59:11 +0200 | [diff] [blame] | 99 | |
Masahiro Yamada | da333ae | 2014-10-23 22:26:09 +0900 | [diff] [blame] | 100 | config DM_SERIAL |
| 101 | bool "Enable Driver Model for serial drivers" |
| 102 | depends on DM |
Sean Anderson | 327bb3b | 2019-12-17 21:40:09 -0500 | [diff] [blame] | 103 | select SYS_MALLOC_F |
Masahiro Yamada | da333ae | 2014-10-23 22:26:09 +0900 | [diff] [blame] | 104 | help |
Simon Glass | f94a1be | 2015-02-05 21:41:35 -0700 | [diff] [blame] | 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. |
Masahiro Yamada | ff247b7 | 2014-10-23 22:26:11 +0900 | [diff] [blame] | 109 | |
Stefan Roese | 3ca7a06 | 2017-08-16 17:37:16 +0200 | [diff] [blame] | 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 | |
Alexander Graf | ae5326a | 2018-01-29 13:57:20 +0100 | [diff] [blame] | 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 | |
Simon Glass | 891f7ae | 2017-04-02 09:50:32 -0600 | [diff] [blame] | 137 | config SPL_DM_SERIAL |
Heiko Schocher | 0424990 | 2017-06-21 06:23:10 +0200 | [diff] [blame] | 138 | bool "Enable Driver Model for serial drivers in SPL" |
Tom Rini | 6f6b7cf | 2018-03-06 19:02:27 -0500 | [diff] [blame] | 139 | depends on DM_SERIAL && SPL_DM |
Sean Anderson | 327bb3b | 2019-12-17 21:40:09 -0500 | [diff] [blame] | 140 | select SYS_SPL_MALLOC_F |
Tom Rini | 6f6b7cf | 2018-03-06 19:02:27 -0500 | [diff] [blame] | 141 | default y |
Simon Glass | 891f7ae | 2017-04-02 09:50:32 -0600 | [diff] [blame] | 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 |
Heiko Schocher | 0424990 | 2017-06-21 06:23:10 +0200 | [diff] [blame] | 149 | bool "Enable Driver Model for serial drivers in TPL" |
Thomas Hebb | 6920f00 | 2019-11-10 08:23:55 -0800 | [diff] [blame] | 150 | depends on DM_SERIAL && TPL_DM |
Sean Anderson | 327bb3b | 2019-12-17 21:40:09 -0500 | [diff] [blame] | 151 | select SYS_TPL_MALLOC_F |
Simon Glass | 891f7ae | 2017-04-02 09:50:32 -0600 | [diff] [blame] | 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 | |
Simon Glass | 2f964aa | 2015-01-26 18:27:07 -0700 | [diff] [blame] | 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 | |
Simon Glass | 21d0043 | 2015-01-26 18:27:09 -0700 | [diff] [blame] | 185 | choice |
| 186 | prompt "Select which UART will provide the debug UART" |
| 187 | depends on DEBUG_UART |
Thomas Chou | b1e361b | 2015-11-19 21:48:03 +0800 | [diff] [blame] | 188 | default DEBUG_UART_NS16550 |
Simon Glass | 21d0043 | 2015-01-26 18:27:09 -0700 | [diff] [blame] | 189 | |
Thomas Chou | 220e802 | 2015-10-23 07:36:37 +0800 | [diff] [blame] | 190 | config DEBUG_UART_ALTERA_JTAGUART |
| 191 | bool "Altera JTAG UART" |
Michal Simek | 4cc24ae | 2020-05-28 12:05:12 +0200 | [diff] [blame] | 192 | depends on ALTERA_JTAG_UART |
Thomas Chou | 220e802 | 2015-10-23 07:36:37 +0800 | [diff] [blame] | 193 | help |
| 194 | Select this to enable a debug UART using the altera_jtag_uart driver. |
| 195 | You will need to provide parameters to make this work. The driver will |
| 196 | be available until the real driver model serial is running. |
| 197 | |
Thomas Chou | da2f838 | 2015-10-21 21:26:54 +0800 | [diff] [blame] | 198 | config DEBUG_UART_ALTERA_UART |
| 199 | bool "Altera UART" |
Michal Simek | 4cc24ae | 2020-05-28 12:05:12 +0200 | [diff] [blame] | 200 | depends on ALTERA_UART |
Thomas Chou | da2f838 | 2015-10-21 21:26:54 +0800 | [diff] [blame] | 201 | help |
| 202 | Select this to enable a debug UART using the altera_uart driver. |
| 203 | You will need to provide parameters to make this work. The driver will |
| 204 | be available until the real driver model serial is running. |
| 205 | |
Wills Wang | 60b4976 | 2016-03-16 16:59:57 +0800 | [diff] [blame] | 206 | config DEBUG_UART_AR933X |
| 207 | bool "QCA/Atheros ar933x" |
| 208 | depends on AR933X_UART |
| 209 | help |
| 210 | Select this to enable a debug UART using the ar933x uart driver. |
| 211 | You will need to provide parameters to make this work. The |
| 212 | driver will be available until the real driver model serial is |
| 213 | running. |
| 214 | |
Alexey Brodkin | 5470501 | 2018-05-21 16:42:07 +0300 | [diff] [blame] | 215 | config DEBUG_ARC_SERIAL |
| 216 | bool "ARC UART" |
| 217 | depends on ARC_SERIAL |
| 218 | help |
| 219 | Select this to enable a debug UART using the ARC UART driver. |
| 220 | You will need to provide parameters to make this work. The |
| 221 | driver will be available until the real driver model serial is |
| 222 | running. |
| 223 | |
Wenyou Yang | 998cf3c | 2016-10-17 09:49:55 +0800 | [diff] [blame] | 224 | config DEBUG_UART_ATMEL |
| 225 | bool "Atmel USART" |
Michal Simek | 4cc24ae | 2020-05-28 12:05:12 +0200 | [diff] [blame] | 226 | depends on ATMEL_USART |
Wenyou Yang | 998cf3c | 2016-10-17 09:49:55 +0800 | [diff] [blame] | 227 | help |
| 228 | Select this to enable a debug UART using the atmel usart driver. You |
| 229 | will need to provide parameters to make this work. The driver will |
| 230 | be available until the real driver-model serial is running. |
| 231 | |
Álvaro Fernández Rojas | 3058104 | 2017-04-25 00:39:16 +0200 | [diff] [blame] | 232 | config DEBUG_UART_BCM6345 |
| 233 | bool "BCM6345 UART" |
| 234 | depends on BCM6345_SERIAL |
| 235 | help |
| 236 | Select this to enable a debug UART on BCM6345 SoCs. You |
| 237 | will need to provide parameters to make this work. The driver will |
| 238 | be available until the real driver model serial is running. |
| 239 | |
Simon Glass | 21d0043 | 2015-01-26 18:27:09 -0700 | [diff] [blame] | 240 | config DEBUG_UART_NS16550 |
| 241 | bool "ns16550" |
Michal Simek | 4cc24ae | 2020-05-28 12:05:12 +0200 | [diff] [blame] | 242 | depends on SYS_NS16550 |
Simon Glass | 21d0043 | 2015-01-26 18:27:09 -0700 | [diff] [blame] | 243 | help |
| 244 | Select this to enable a debug UART using the ns16550 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 | |
Simon Glass | 275854b | 2015-08-04 12:33:40 -0600 | [diff] [blame] | 248 | config DEBUG_EFI_CONSOLE |
| 249 | bool "EFI" |
| 250 | depends on EFI_APP |
| 251 | help |
| 252 | Select this to enable a debug console which calls back to EFI to |
| 253 | output to the console. This can be useful for early debugging of |
| 254 | U-Boot when running on top of EFI (Extensive Firmware Interface). |
| 255 | This is a type of BIOS used by PCs. |
| 256 | |
Simon Glass | bf6e702 | 2015-07-02 18:15:54 -0600 | [diff] [blame] | 257 | config DEBUG_UART_S5P |
| 258 | bool "Samsung S5P" |
Michal Simek | 4cc24ae | 2020-05-28 12:05:12 +0200 | [diff] [blame] | 259 | depends on ARCH_EXYNOS || ARCH_S5PC1XX |
Simon Glass | bf6e702 | 2015-07-02 18:15:54 -0600 | [diff] [blame] | 260 | help |
| 261 | Select this to enable a debug UART using the serial_s5p 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 | |
Beniamino Galvani | bfcef28 | 2016-05-08 08:30:16 +0200 | [diff] [blame] | 265 | config DEBUG_UART_MESON |
| 266 | bool "Amlogic Meson" |
| 267 | depends on MESON_SERIAL |
| 268 | help |
| 269 | Select this to enable a debug UART using the serial_meson driver. 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 | |
Michal Simek | 4166ba3 | 2015-12-14 16:55:10 +0100 | [diff] [blame] | 273 | config DEBUG_UART_UARTLITE |
| 274 | bool "Xilinx Uartlite" |
Michal Simek | 4cc24ae | 2020-05-28 12:05:12 +0200 | [diff] [blame] | 275 | depends on XILINX_UARTLITE |
Michal Simek | 4166ba3 | 2015-12-14 16:55:10 +0100 | [diff] [blame] | 276 | help |
| 277 | Select this to enable a debug UART using the serial_uartlite driver. |
| 278 | You will need to provide parameters to make this work. The driver will |
| 279 | be available until the real driver-model serial is running. |
| 280 | |
Michal Simek | 966bfa7 | 2016-02-23 10:02:28 +0100 | [diff] [blame] | 281 | config DEBUG_UART_ARM_DCC |
| 282 | bool "ARM DCC" |
Michal Simek | 4cc24ae | 2020-05-28 12:05:12 +0200 | [diff] [blame] | 283 | depends on ARM_DCC |
Michal Simek | 966bfa7 | 2016-02-23 10:02:28 +0100 | [diff] [blame] | 284 | help |
| 285 | Select this to enable a debug UART using the ARM JTAG DCC port. |
| 286 | The DCC port can be used for very early debugging and doesn't require |
| 287 | any additional setting like address/baudrate/clock. On systems without |
| 288 | any serial interface this is the easiest way how to get console. |
| 289 | Every ARM core has own DCC port which is the part of debug interface. |
| 290 | This port is available at least on ARMv6, ARMv7, ARMv8 and XScale |
| 291 | architectures. |
| 292 | |
Stefan Roese | 6985d49 | 2016-05-17 16:36:00 +0200 | [diff] [blame] | 293 | config DEBUG_MVEBU_A3700_UART |
| 294 | bool "Marvell Armada 3700" |
Michal Simek | 4cc24ae | 2020-05-28 12:05:12 +0200 | [diff] [blame] | 295 | depends on MVEBU_A3700_UART |
Stefan Roese | 6985d49 | 2016-05-17 16:36:00 +0200 | [diff] [blame] | 296 | help |
| 297 | Select this to enable a debug UART using the serial_mvebu driver. You |
| 298 | will need to provide parameters to make this work. The driver will |
| 299 | be available until the real driver-model serial is running. |
| 300 | |
Simon Glass | c54c0a4 | 2015-10-17 19:41:22 -0600 | [diff] [blame] | 301 | config DEBUG_UART_ZYNQ |
| 302 | bool "Xilinx Zynq" |
Michal Simek | 4cc24ae | 2020-05-28 12:05:12 +0200 | [diff] [blame] | 303 | depends on ZYNQ_SERIAL |
Simon Glass | c54c0a4 | 2015-10-17 19:41:22 -0600 | [diff] [blame] | 304 | help |
Michal Simek | 6bf87da | 2015-12-01 14:29:34 +0100 | [diff] [blame] | 305 | Select this to enable a debug UART using the serial_zynq driver. You |
Simon Glass | c54c0a4 | 2015-10-17 19:41:22 -0600 | [diff] [blame] | 306 | will need to provide parameters to make this work. The driver will |
| 307 | be available until the real driver-model serial is running. |
| 308 | |
Francois Retief | e43ce3f | 2015-10-29 12:55:34 +0200 | [diff] [blame] | 309 | config DEBUG_UART_APBUART |
| 310 | depends on LEON3 |
| 311 | bool "Gaisler APBUART" |
| 312 | help |
| 313 | Select this to enable a debug UART using the serial_leon3 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 | |
Sergey Temerkhanov | 19de815 | 2015-10-14 09:54:24 -0700 | [diff] [blame] | 317 | config DEBUG_UART_PL010 |
| 318 | bool "pl010" |
Michal Simek | 4cc24ae | 2020-05-28 12:05:12 +0200 | [diff] [blame] | 319 | depends on PL01X_SERIAL |
Sergey Temerkhanov | 19de815 | 2015-10-14 09:54:24 -0700 | [diff] [blame] | 320 | help |
| 321 | Select this to enable a debug UART using the pl01x driver with the |
| 322 | PL010 UART type. You will need to provide parameters to make this |
| 323 | work. The driver will be available until the real driver model |
| 324 | serial is running. |
| 325 | |
| 326 | config DEBUG_UART_PL011 |
| 327 | bool "pl011" |
Michal Simek | 4cc24ae | 2020-05-28 12:05:12 +0200 | [diff] [blame] | 328 | depends on PL011_SERIAL |
Sergey Temerkhanov | 19de815 | 2015-10-14 09:54:24 -0700 | [diff] [blame] | 329 | help |
| 330 | Select this to enable a debug UART using the pl01x driver with the |
| 331 | PL011 UART type. You will need to provide parameters to make this |
| 332 | work. The driver will be available until the real driver model |
| 333 | serial is running. |
| 334 | |
Paul Thacker | 9e160ee | 2016-01-28 15:30:14 +0530 | [diff] [blame] | 335 | config DEBUG_UART_PIC32 |
| 336 | bool "Microchip PIC32" |
| 337 | depends on PIC32_SERIAL |
| 338 | help |
| 339 | Select this to enable a debug UART using the serial_pic32 driver. You |
| 340 | will need to provide parameters to make this work. The driver will |
| 341 | be available until the real driver model serial is running. |
| 342 | |
Jagan Teki | 61366b7 | 2017-06-06 05:31:51 +0000 | [diff] [blame] | 343 | config DEBUG_UART_MXC |
| 344 | bool "IMX Serial port" |
| 345 | depends on MXC_UART |
| 346 | help |
| 347 | Select this to enable a debug UART using the serial_mxc driver. You |
| 348 | will need to provide parameters to make this work. The driver will |
| 349 | be available until the real driver model serial is running. |
| 350 | |
Simon Glass | ee44176 | 2018-10-01 11:55:15 -0600 | [diff] [blame] | 351 | config DEBUG_UART_SANDBOX |
| 352 | bool "sandbox" |
| 353 | depends on SANDBOX_SERIAL |
| 354 | help |
| 355 | Select this to enable the debug UART using the sandbox driver. This |
| 356 | provides basic serial output from the console without needing to |
| 357 | start up driver model. The driver will be available until the real |
| 358 | driver model serial is running. |
| 359 | |
Anup Patel | e284249 | 2018-12-15 11:35:15 +0530 | [diff] [blame] | 360 | config DEBUG_UART_SIFIVE |
| 361 | bool "SiFive UART" |
Michal Simek | 27b4a4a | 2020-07-10 12:41:13 +0200 | [diff] [blame] | 362 | depends on SIFIVE_SERIAL |
Anup Patel | e284249 | 2018-12-15 11:35:15 +0530 | [diff] [blame] | 363 | help |
| 364 | Select this to enable a debug UART using the serial_sifive driver. You |
| 365 | will need to provide parameters to make this work. The driver will |
| 366 | be available until the real driver-model serial is running. |
| 367 | |
Patrick Delaunay | 215c8be | 2018-05-17 14:50:42 +0200 | [diff] [blame] | 368 | config DEBUG_UART_STM32 |
| 369 | bool "STMicroelectronics STM32" |
| 370 | depends on STM32_SERIAL |
| 371 | help |
| 372 | Select this to enable a debug UART using the serial_stm32 driver |
| 373 | You will need to provide parameters to make this work. |
| 374 | The driver will be available until the real driver model |
| 375 | serial is running. |
| 376 | |
Masahiro Yamada | d5cf329 | 2016-03-18 16:41:52 +0900 | [diff] [blame] | 377 | config DEBUG_UART_UNIPHIER |
| 378 | bool "UniPhier on-chip UART" |
| 379 | depends on ARCH_UNIPHIER |
| 380 | help |
| 381 | Select this to enable a debug UART using the UniPhier on-chip UART. |
| 382 | You will need to provide DEBUG_UART_BASE to make this work. The |
| 383 | driver will be available until the real driver-model serial is |
| 384 | running. |
| 385 | |
Lokesh Vutla | a52cf08 | 2017-04-22 15:57:25 +0530 | [diff] [blame] | 386 | config DEBUG_UART_OMAP |
| 387 | bool "OMAP uart" |
Michal Simek | 4cc24ae | 2020-05-28 12:05:12 +0200 | [diff] [blame] | 388 | depends on OMAP_SERIAL |
Lokesh Vutla | a52cf08 | 2017-04-22 15:57:25 +0530 | [diff] [blame] | 389 | help |
| 390 | Select this to enable a debug UART using the omap ns16550 driver. |
| 391 | You will need to provide parameters to make this work. The driver |
| 392 | will be available until the real driver model serial is running. |
| 393 | |
Ryder Lee | 849b116 | 2018-11-15 10:08:02 +0800 | [diff] [blame] | 394 | config DEBUG_UART_MTK |
| 395 | bool "MediaTek High-speed UART" |
| 396 | depends on MTK_SERIAL |
| 397 | help |
| 398 | Select this to enable a debug UART using the MediaTek High-speed |
| 399 | UART driver. |
| 400 | You will need to provide parameters to make this work. The |
| 401 | driver will be available until the real driver model serial is |
| 402 | running. |
| 403 | |
Simon Glass | 21d0043 | 2015-01-26 18:27:09 -0700 | [diff] [blame] | 404 | endchoice |
| 405 | |
Simon Glass | 2f964aa | 2015-01-26 18:27:07 -0700 | [diff] [blame] | 406 | config DEBUG_UART_BASE |
| 407 | hex "Base address of UART" |
| 408 | depends on DEBUG_UART |
Simon Glass | ee44176 | 2018-10-01 11:55:15 -0600 | [diff] [blame] | 409 | default 0 if DEBUG_UART_SANDBOX |
Simon Glass | 2f964aa | 2015-01-26 18:27:07 -0700 | [diff] [blame] | 410 | help |
| 411 | This is the base address of your UART for memory-mapped UARTs. |
| 412 | |
| 413 | A default should be provided by your board, but if not you will need |
| 414 | to use the correct value here. |
| 415 | |
| 416 | config DEBUG_UART_CLOCK |
| 417 | int "UART input clock" |
| 418 | depends on DEBUG_UART |
Simon Glass | ee44176 | 2018-10-01 11:55:15 -0600 | [diff] [blame] | 419 | default 0 if DEBUG_UART_SANDBOX |
Simon Glass | 2f964aa | 2015-01-26 18:27:07 -0700 | [diff] [blame] | 420 | help |
| 421 | The UART input clock determines the speed of the internal UART |
| 422 | circuitry. The baud rate is derived from this by dividing the input |
| 423 | clock down. |
| 424 | |
| 425 | A default should be provided by your board, but if not you will need |
| 426 | to use the correct value here. |
| 427 | |
Simon Glass | dd0b012 | 2015-02-27 22:06:25 -0700 | [diff] [blame] | 428 | config DEBUG_UART_SHIFT |
| 429 | int "UART register shift" |
| 430 | depends on DEBUG_UART |
| 431 | default 0 if DEBUG_UART |
| 432 | help |
| 433 | Some UARTs (notably ns16550) support different register layouts |
| 434 | where the registers are spaced either as bytes, words or some other |
| 435 | value. Use this value to specify the shift to use, where 0=byte |
| 436 | registers, 2=32-bit word registers, etc. |
| 437 | |
Simon Glass | 0e977bc | 2015-10-18 19:51:24 -0600 | [diff] [blame] | 438 | config DEBUG_UART_BOARD_INIT |
| 439 | bool "Enable board-specific debug UART init" |
| 440 | depends on DEBUG_UART |
| 441 | help |
| 442 | Some boards need to set things up before the debug UART can be used. |
| 443 | On these boards a call to debug_uart_init() is insufficient. When |
| 444 | this option is enabled, the function board_debug_uart_init() will |
| 445 | be called when debug_uart_init() is called. You can put any code |
| 446 | here that is needed to set up the UART ready for use, such as set |
| 447 | pin multiplexing or enable clocks. |
| 448 | |
Simon Glass | c7fefcb | 2015-10-18 19:51:25 -0600 | [diff] [blame] | 449 | config DEBUG_UART_ANNOUNCE |
| 450 | bool "Show a message when the debug UART starts up" |
| 451 | depends on DEBUG_UART |
| 452 | help |
| 453 | Enable this option to show a message when the debug UART is ready |
| 454 | for use. You will see a message like "<debug_uart> " as soon as |
| 455 | U-Boot has the UART ready for use (i.e. your code calls |
| 456 | debug_uart_init()). This can be useful just as a check that |
| 457 | everything is working. |
| 458 | |
Sergey Temerkhanov | 19de815 | 2015-10-14 09:54:24 -0700 | [diff] [blame] | 459 | config DEBUG_UART_SKIP_INIT |
| 460 | bool "Skip UART initialization" |
Simon Goldschmidt | 7828e3c | 2019-01-09 20:27:09 +0100 | [diff] [blame] | 461 | depends on DEBUG_UART |
Sergey Temerkhanov | 19de815 | 2015-10-14 09:54:24 -0700 | [diff] [blame] | 462 | help |
| 463 | Select this if the UART you want to use for debug output is already |
| 464 | initialized by the time U-Boot starts its execution. |
| 465 | |
Simon Goldschmidt | c4448bd | 2019-01-09 20:35:31 +0100 | [diff] [blame] | 466 | config DEBUG_UART_NS16550_CHECK_ENABLED |
| 467 | bool "Check if UART is enabled on output" |
| 468 | depends on DEBUG_UART |
| 469 | depends on DEBUG_UART_NS16550 |
| 470 | help |
| 471 | Select this if puts()/putc() might be called before the debug UART |
| 472 | has been initialized. If this is disabled, putc() might sit in a |
| 473 | tight loop if it is called before debug_uart_init() has been called. |
| 474 | |
| 475 | Note that this does not work for every ns16550-compatible UART and |
| 476 | so has to be enabled carefully or you might notice lost characters. |
| 477 | |
Thomas Chou | 220e802 | 2015-10-23 07:36:37 +0800 | [diff] [blame] | 478 | config ALTERA_JTAG_UART |
| 479 | bool "Altera JTAG UART support" |
| 480 | depends on DM_SERIAL |
| 481 | help |
| 482 | Select this to enable an JTAG UART for Altera devices.The JTAG UART |
| 483 | core implements a method to communicate serial character streams |
| 484 | between a host PC and a Qsys system on an Altera FPGA. Please find |
| 485 | details on the "Embedded Peripherals IP User Guide" of Altera. |
| 486 | |
| 487 | config ALTERA_JTAG_UART_BYPASS |
| 488 | bool "Bypass output when no connection" |
| 489 | depends on ALTERA_JTAG_UART |
| 490 | help |
| 491 | Bypass console output and keep going even if there is no JTAG |
| 492 | terminal connection with the host. The console output will resume |
| 493 | once the JTAG terminal is connected. Without the bypass, the console |
| 494 | output will wait forever until a JTAG terminal is connected. If you |
| 495 | not are sure, say Y. |
| 496 | |
Thomas Chou | da2f838 | 2015-10-21 21:26:54 +0800 | [diff] [blame] | 497 | config ALTERA_UART |
| 498 | bool "Altera UART support" |
| 499 | depends on DM_SERIAL |
| 500 | help |
| 501 | Select this to enable an UART for Altera devices. Please find |
| 502 | details on the "Embedded Peripherals IP User Guide" of Altera. |
| 503 | |
Wills Wang | 60b4976 | 2016-03-16 16:59:57 +0800 | [diff] [blame] | 504 | config AR933X_UART |
| 505 | bool "QCA/Atheros ar933x UART support" |
| 506 | depends on DM_SERIAL && SOC_AR933X |
| 507 | help |
| 508 | Select this to enable UART support for QCA/Atheros ar933x |
| 509 | devices. This driver uses driver model and requires a device |
| 510 | tree binding to operate, please refer to the document at |
| 511 | doc/device-tree-bindings/serial/qca,ar9330-uart.txt. |
| 512 | |
Alexey Brodkin | d7ac185 | 2018-05-21 16:40:05 +0300 | [diff] [blame] | 513 | config ARC_SERIAL |
| 514 | bool "ARC UART support" |
| 515 | depends on DM_SERIAL |
| 516 | help |
| 517 | Select this to enable support for ARC UART now typically |
| 518 | only used in Synopsys DesignWare ARC simulators like nSIM. |
| 519 | |
Tom Rini | c2a3841 | 2020-06-02 17:26:33 -0400 | [diff] [blame] | 520 | config ARM_DCC |
| 521 | bool "ARM Debug Communication Channel (DCC) as UART support" |
| 522 | depends on ARM |
| 523 | help |
| 524 | Select this to enable using the ARM DCC as a form of UART. |
| 525 | |
Wenyou Yang | 6ec739a | 2016-10-17 09:49:54 +0800 | [diff] [blame] | 526 | config ATMEL_USART |
| 527 | bool "Atmel USART support" |
| 528 | help |
| 529 | Select this to enable USART support for Atmel SoCs. It can be |
| 530 | configured in the device tree, and input clock frequency can |
| 531 | be got from the clk node. |
| 532 | |
Stefan Roese | e567dfb | 2019-04-03 15:24:19 +0200 | [diff] [blame] | 533 | config SPL_UART_CLOCK |
| 534 | int "SPL fixed UART input clock" |
| 535 | depends on ATMEL_USART && SPL && !SPL_CLK |
| 536 | default 132096000 if ARCH_AT91 |
| 537 | help |
| 538 | Provide a fixed clock value as input to the UART controller. This |
| 539 | might be needed on platforms which can't enable CONFIG_SPL_CLK |
| 540 | because of SPL image size restrictions. |
| 541 | |
Alexander Graf | fa48759 | 2018-01-25 12:05:53 +0100 | [diff] [blame] | 542 | config BCM283X_MU_SERIAL |
| 543 | bool "Support for BCM283x Mini-UART" |
| 544 | depends on DM_SERIAL && ARCH_BCM283X |
| 545 | default y |
| 546 | help |
| 547 | Select this to enable Mini-UART support on BCM283X family of SoCs. |
| 548 | |
Alexander Graf | 6001985 | 2018-01-25 12:05:55 +0100 | [diff] [blame] | 549 | config BCM283X_PL011_SERIAL |
| 550 | bool "Support for BCM283x PL011 UART" |
| 551 | depends on PL01X_SERIAL && ARCH_BCM283X |
| 552 | default y |
| 553 | help |
| 554 | Select this to enable an overriding PL011 driver for BCM283X SoCs |
| 555 | that supports automatic disable, so that it only gets used when |
| 556 | the UART is actually muxed. |
| 557 | |
Álvaro Fernández Rojas | 3058104 | 2017-04-25 00:39:16 +0200 | [diff] [blame] | 558 | config BCM6345_SERIAL |
| 559 | bool "Support for BCM6345 UART" |
Álvaro Fernández Rojas | e9e8d80 | 2018-12-01 18:42:09 +0100 | [diff] [blame] | 560 | depends on DM_SERIAL |
Álvaro Fernández Rojas | 3058104 | 2017-04-25 00:39:16 +0200 | [diff] [blame] | 561 | help |
| 562 | Select this to enable UART on BCM6345 SoCs. |
| 563 | |
Simon Glass | 44482e8 | 2019-12-19 17:58:20 -0700 | [diff] [blame] | 564 | config COREBOOT_SERIAL |
| 565 | bool "Coreboot UART support" |
| 566 | depends on DM_SERIAL |
| 567 | default y if SYS_COREBOOT |
| 568 | select SYS_NS16550 |
| 569 | help |
| 570 | Select this to enable a ns16550-style UART where the platform data |
| 571 | comes from the coreboot 'sysinfo' tables. This allows U-Boot to have |
| 572 | a serial console on any platform without needing to change the |
| 573 | device tree, etc. |
| 574 | |
Jason Li | 0de653d | 2020-01-30 12:34:58 -0800 | [diff] [blame] | 575 | config CORTINA_UART |
| 576 | bool "Cortina UART support" |
| 577 | depends on DM_SERIAL |
| 578 | help |
| 579 | Select this to enable UART support for Cortina-Access UART devices |
| 580 | found on CAxxxx SoCs. |
| 581 | |
Tuomas Tynkkynen | fac379e | 2018-04-09 04:34:34 +0300 | [diff] [blame] | 582 | config FSL_LINFLEXUART |
| 583 | bool "Freescale Linflex UART support" |
| 584 | depends on DM_SERIAL |
| 585 | help |
| 586 | Select this to enable the Linflex serial module found on some |
| 587 | NXP SoCs like S32V234. |
| 588 | |
Bin Meng | 5ed07cf | 2016-01-13 19:39:00 -0800 | [diff] [blame] | 589 | config FSL_LPUART |
| 590 | bool "Freescale LPUART support" |
| 591 | help |
| 592 | Select this to enable a Low Power UART for Freescale VF610 and |
| 593 | QorIQ Layerscape devices. |
| 594 | |
Stefan Roese | 6985d49 | 2016-05-17 16:36:00 +0200 | [diff] [blame] | 595 | config MVEBU_A3700_UART |
| 596 | bool "UART support for Armada 3700" |
| 597 | default n |
| 598 | help |
| 599 | Choose this option to add support for UART driver on the Marvell |
| 600 | Armada 3700 SoC. The base address is configured via DT. |
| 601 | |
Angelo Dureghello | 461ea07 | 2019-03-13 21:46:49 +0100 | [diff] [blame] | 602 | config MCFUART |
| 603 | bool "Freescale ColdFire UART support" |
| 604 | help |
| 605 | Choose this option to add support for UART driver on the ColdFire |
| 606 | SoC's family. The serial communication channel provides a full-duplex |
| 607 | asynchronous/synchronous receiver and transmitter deriving an |
| 608 | operating frequency from the internal bus clock or an external clock. |
| 609 | |
Jagan Teki | 8829e66 | 2016-10-08 18:00:08 +0530 | [diff] [blame] | 610 | config MXC_UART |
| 611 | bool "IMX serial port support" |
Tom Rini | e6676a3 | 2020-06-09 10:46:46 -0400 | [diff] [blame] | 612 | depends on ARCH_MX25 || ARCH_MX31 || TARGET_APF27 || TARGET_FLEA3 || TARGET_MX35PDK \ |
| 613 | || MX5 || MX6 || MX7 || IMX8M |
Jagan Teki | 8829e66 | 2016-10-08 18:00:08 +0530 | [diff] [blame] | 614 | help |
| 615 | If you have a machine based on a Motorola IMX CPU you |
| 616 | can enable its onboard serial port by enabling this option. |
| 617 | |
Keng Soon Cheah | cac73f2 | 2017-08-24 20:29:07 -0700 | [diff] [blame] | 618 | config NULLDEV_SERIAL |
| 619 | bool "Null serial device" |
| 620 | help |
| 621 | Select this to enable null serial device support. A null serial |
| 622 | device merely acts as a placeholder for a serial device and does |
| 623 | nothing for all it's operation. |
| 624 | |
Paul Thacker | 9e160ee | 2016-01-28 15:30:14 +0530 | [diff] [blame] | 625 | config PIC32_SERIAL |
| 626 | bool "Support for Microchip PIC32 on-chip UART" |
| 627 | depends on DM_SERIAL && MACH_PIC32 |
| 628 | default y |
| 629 | help |
| 630 | Support for the UART found on Microchip PIC32 SoC's. |
| 631 | |
Thomas Chou | 9e39003 | 2015-11-19 21:48:14 +0800 | [diff] [blame] | 632 | config SYS_NS16550 |
| 633 | bool "NS16550 UART or compatible" |
| 634 | help |
| 635 | Support NS16550 UART or compatible. This can be enabled in the |
| 636 | device tree with the correct input clock frequency. If the input |
| 637 | clock frequency is not defined in the device tree, the macro |
| 638 | CONFIG_SYS_NS16550_CLK defined in a legacy board header file will |
| 639 | be used. It can be a constant or a function to get clock, eg, |
| 640 | get_serial_clock(). |
| 641 | |
Simon Glass | 62cbde4 | 2019-12-19 17:58:18 -0700 | [diff] [blame] | 642 | config NS16550_DYNAMIC |
| 643 | bool "Allow NS16550 to be configured at runtime" |
| 644 | default y if SYS_COREBOOT || SYS_SLIMBOOTLOADER |
| 645 | help |
| 646 | Enable this option to allow device-tree control of the driver. |
| 647 | |
| 648 | Normally this driver is controlled by the following options: |
| 649 | |
| 650 | CONFIG_SYS_NS16550_PORT_MAPPED - indicates that port I/O is used for |
| 651 | access. If not enabled, then the UART is memory-mapped. |
| 652 | CONFIG_SYS_NS16550_MEM32 - if memory-mapped, indicates that 32-bit |
| 653 | access should be used (instead of 8-bit) |
| 654 | CONFIG_SYS_NS16550_REG_SIZE - indicates register width and also |
| 655 | endianness. If positive, big-endian access is used. If negative, |
| 656 | little-endian is used. |
| 657 | |
| 658 | It is not a good practice for a driver to be statically configured, |
| 659 | since it prevents the same driver being used for different types of |
| 660 | UARTs in a system. This option avoids this problem at the cost of a |
| 661 | slightly increased code size. |
| 662 | |
Andy Shevchenko | c5f8dd4 | 2017-02-28 14:04:10 +0200 | [diff] [blame] | 663 | config INTEL_MID_SERIAL |
| 664 | bool "Intel MID platform UART support" |
| 665 | depends on DM_SERIAL && OF_CONTROL |
| 666 | depends on INTEL_MID |
| 667 | select SYS_NS16550 |
| 668 | help |
| 669 | Select this to enable a UART for Intel MID platforms. |
| 670 | This uses the ns16550 driver as a library. |
| 671 | |
Alexander Graf | 884f901 | 2018-01-25 12:05:50 +0100 | [diff] [blame] | 672 | config PL010_SERIAL |
| 673 | bool "ARM PL010 driver" |
| 674 | depends on !DM_SERIAL |
| 675 | help |
| 676 | Select this to enable a UART for platforms using PL010. |
| 677 | |
Alexander Graf | d10fc50 | 2018-01-25 12:05:51 +0100 | [diff] [blame] | 678 | config PL011_SERIAL |
| 679 | bool "ARM PL011 driver" |
| 680 | depends on !DM_SERIAL |
| 681 | help |
| 682 | Select this to enable a UART for platforms using PL011. |
| 683 | |
Alexander Graf | cf2c778 | 2018-01-25 12:05:52 +0100 | [diff] [blame] | 684 | config PL01X_SERIAL |
| 685 | bool "ARM PL010 and PL011 driver" |
| 686 | depends on DM_SERIAL |
| 687 | help |
| 688 | Select this to enable a UART for platforms using PL010 or PL011. |
| 689 | |
Simon Glass | 2fc24d5 | 2016-07-04 11:58:24 -0600 | [diff] [blame] | 690 | config ROCKCHIP_SERIAL |
| 691 | bool "Rockchip on-chip UART support" |
| 692 | depends on DM_SERIAL && SPL_OF_PLATDATA |
| 693 | help |
| 694 | Select this to enable a debug UART for Rockchip devices when using |
Tom Rini | 7f73ca4 | 2017-01-14 12:20:23 -0500 | [diff] [blame] | 695 | CONFIG_SPL_OF_PLATDATA (i.e. a compiled-in device tree replacemenmt). |
Simon Glass | 2fc24d5 | 2016-07-04 11:58:24 -0600 | [diff] [blame] | 696 | This uses the ns16550 driver, converting the platdata from of-platdata |
| 697 | to the ns16550 format. |
| 698 | |
Simon Glass | af28224 | 2015-03-06 13:19:03 -0700 | [diff] [blame] | 699 | config SANDBOX_SERIAL |
| 700 | bool "Sandbox UART support" |
Masahiro Yamada | 2ea65f3 | 2015-08-28 20:14:21 +0900 | [diff] [blame] | 701 | depends on SANDBOX |
Simon Glass | af28224 | 2015-03-06 13:19:03 -0700 | [diff] [blame] | 702 | help |
| 703 | Select this to enable a seral UART for sandbox. This is required to |
| 704 | operate correctly, otherwise you will see no serial output from |
| 705 | sandbox. The emulated UART will display to the console and console |
| 706 | input will be fed into the UART. This allows you to interact with |
| 707 | U-Boot. |
| 708 | |
| 709 | The operation of the console is controlled by the -t command-line |
| 710 | flag. In raw mode, U-Boot sees all characters from the terminal |
| 711 | before they are processed, including Ctrl-C. In cooked mode, Ctrl-C |
| 712 | is processed by the terminal, and terminates U-Boot. Valid options |
| 713 | are: |
| 714 | |
| 715 | -t raw-with-sigs Raw mode, Ctrl-C will terminate U-Boot |
| 716 | -t raw Raw mode, Ctrl-C is processed by U-Boot |
| 717 | -t cooked Cooked mode, Ctrl-C terminates |
| 718 | |
Marek Vasut | 03a38a3 | 2017-07-21 23:18:46 +0200 | [diff] [blame] | 719 | config SCIF_CONSOLE |
| 720 | bool "Renesas SCIF UART support" |
| 721 | depends on SH || ARCH_RMOBILE |
| 722 | help |
| 723 | Select this to enable Renesas SCIF UART. To operate serial ports |
| 724 | on systems with RCar or SH SoCs, say Y to this option. If unsure, |
| 725 | say N. |
| 726 | |
Masahiro Yamada | ff247b7 | 2014-10-23 22:26:11 +0900 | [diff] [blame] | 727 | config UNIPHIER_SERIAL |
Masahiro Yamada | b6ef3a3 | 2015-05-29 17:30:01 +0900 | [diff] [blame] | 728 | bool "Support for UniPhier on-chip UART" |
Masahiro Yamada | 2ea65f3 | 2015-08-28 20:14:21 +0900 | [diff] [blame] | 729 | depends on ARCH_UNIPHIER |
Masahiro Yamada | 85dc2fe | 2016-08-25 19:00:37 +0900 | [diff] [blame] | 730 | default y |
Masahiro Yamada | ff247b7 | 2014-10-23 22:26:11 +0900 | [diff] [blame] | 731 | help |
Masahiro Yamada | b6ef3a3 | 2015-05-29 17:30:01 +0900 | [diff] [blame] | 732 | If you have a UniPhier based board and want to use the on-chip |
| 733 | serial ports, say Y to this option. If unsure, say N. |
Simon Glass | dcfe4a5 | 2015-07-27 15:47:23 -0600 | [diff] [blame] | 734 | |
Michal Simek | 54e24d3 | 2015-12-09 12:50:05 +0100 | [diff] [blame] | 735 | config XILINX_UARTLITE |
| 736 | bool "Xilinx Uarlite support" |
Ricardo Ribalda Delgado | 80cce26 | 2016-01-26 11:24:19 +0100 | [diff] [blame] | 737 | depends on DM_SERIAL && (MICROBLAZE || ARCH_ZYNQ || ARCH_ZYNQMP || 4xx) |
Michal Simek | 54e24d3 | 2015-12-09 12:50:05 +0100 | [diff] [blame] | 738 | help |
| 739 | If you have a Xilinx based board and want to use the uartlite |
| 740 | serial ports, say Y to this option. If unsure, say N. |
| 741 | |
Beniamino Galvani | bfcef28 | 2016-05-08 08:30:16 +0200 | [diff] [blame] | 742 | config MESON_SERIAL |
| 743 | bool "Support for Amlogic Meson UART" |
| 744 | depends on DM_SERIAL && ARCH_MESON |
| 745 | help |
| 746 | If you have an Amlogic Meson based board and want to use the on-chip |
| 747 | serial ports, say Y to this option. If unsure, say N. |
| 748 | |
Mateusz Kulikowski | 142a20c | 2016-03-31 23:12:14 +0200 | [diff] [blame] | 749 | config MSM_SERIAL |
| 750 | bool "Qualcomm on-chip UART" |
| 751 | depends on DM_SERIAL |
| 752 | help |
| 753 | Support Data Mover UART used on Qualcomm Snapdragon SoCs. |
| 754 | It should support all Qualcomm devices with UARTDM version 1.4, |
| 755 | for example APQ8016 and MSM8916. |
| 756 | Single baudrate is supported in current implementation (115200). |
Stefan Roese | 6985d49 | 2016-05-17 16:36:00 +0200 | [diff] [blame] | 757 | |
Lokesh Vutla | 5d75419 | 2018-08-27 15:55:24 +0530 | [diff] [blame] | 758 | config OMAP_SERIAL |
| 759 | bool "Support for OMAP specific UART" |
| 760 | depends on DM_SERIAL |
Lokesh Vutla | 586bde9 | 2018-08-27 15:57:08 +0530 | [diff] [blame] | 761 | default y if (ARCH_OMAP2PLUS || ARCH_K3) |
Lokesh Vutla | 5d75419 | 2018-08-27 15:55:24 +0530 | [diff] [blame] | 762 | select SYS_NS16550 |
| 763 | help |
| 764 | If you have an TI based SoC and want to use the on-chip serial |
| 765 | port, say Y to this option. If unsure say N. |
| 766 | |
Manivannan Sadhasivam | 6f9347f | 2018-06-14 23:38:38 +0530 | [diff] [blame] | 767 | config OWL_SERIAL |
| 768 | bool "Actions Semi OWL UART" |
| 769 | depends on DM_SERIAL && ARCH_OWL |
| 770 | help |
| 771 | If you have a Actions Semi OWL based board and want to use the on-chip |
| 772 | serial port, say Y to this option. If unsure, say N. |
| 773 | Single baudrate is supported in current implementation (115200). |
| 774 | |
Marcel Ziswiler | d804a5e | 2016-11-14 21:40:25 +0100 | [diff] [blame] | 775 | config PXA_SERIAL |
| 776 | bool "PXA serial port support" |
| 777 | help |
| 778 | If you have a machine based on a Marvell XScale PXA2xx CPU you |
| 779 | can enable its onboard serial ports by enabling this option. |
| 780 | |
Anup Patel | e284249 | 2018-12-15 11:35:15 +0530 | [diff] [blame] | 781 | config SIFIVE_SERIAL |
| 782 | bool "SiFive UART support" |
| 783 | depends on DM_SERIAL |
| 784 | help |
| 785 | This driver supports the SiFive UART. If unsure say N. |
| 786 | |
Patrice Chotard | 214a17e | 2017-02-21 13:37:07 +0100 | [diff] [blame] | 787 | config STI_ASC_SERIAL |
| 788 | bool "STMicroelectronics on-chip UART" |
| 789 | depends on DM_SERIAL && ARCH_STI |
| 790 | help |
| 791 | Select this to enable Asynchronous Serial Controller available |
| 792 | on STiH410 SoC. This is a basic implementation, it supports |
| 793 | following baudrate 9600, 19200, 38400, 57600 and 115200. |
| 794 | |
Patrice Chotard | ae74de0 | 2018-01-12 09:23:49 +0100 | [diff] [blame] | 795 | config STM32_SERIAL |
Patrice Chotard | 84e9dcc | 2017-07-26 15:48:39 +0200 | [diff] [blame] | 796 | bool "STMicroelectronics STM32 SoCs on-chip UART" |
Patrick Delaunay | 2514c2d | 2018-03-12 10:46:10 +0100 | [diff] [blame] | 797 | depends on DM_SERIAL && (STM32F4 || STM32F7 || STM32H7 || ARCH_STM32MP) |
Patrice Chotard | 84e9dcc | 2017-07-26 15:48:39 +0200 | [diff] [blame] | 798 | help |
Patrick Delaunay | 2514c2d | 2018-03-12 10:46:10 +0100 | [diff] [blame] | 799 | If you have a machine based on a STM32 F4, F7, H7 or MP1 SOC |
| 800 | you can enable its onboard serial ports, say Y to this option. |
Patrice Chotard | 776b2dd | 2017-09-13 18:00:05 +0200 | [diff] [blame] | 801 | If unsure, say N. |
Patrice Chotard | 84e9dcc | 2017-07-26 15:48:39 +0200 | [diff] [blame] | 802 | |
Michal Simek | 809704e | 2017-11-06 09:16:05 +0100 | [diff] [blame] | 803 | config ZYNQ_SERIAL |
| 804 | bool "Cadence (Xilinx Zynq) UART support" |
Michal Simek | 1d6c54e | 2018-04-12 17:39:46 +0200 | [diff] [blame] | 805 | depends on DM_SERIAL && (MICROBLAZE || ARCH_ZYNQ || ARCH_ZYNQMP || ARCH_ZYNQMP_R5) |
Michal Simek | 809704e | 2017-11-06 09:16:05 +0100 | [diff] [blame] | 806 | help |
| 807 | This driver supports the Cadence UART. It is found e.g. in Xilinx |
| 808 | Zynq/ZynqMP. |
| 809 | |
Ryder Lee | 849b116 | 2018-11-15 10:08:02 +0800 | [diff] [blame] | 810 | config MTK_SERIAL |
| 811 | bool "MediaTek High-speed UART support" |
| 812 | depends on DM_SERIAL |
| 813 | help |
| 814 | Select this to enable UART support for MediaTek High-speed UART |
| 815 | devices. This driver uses driver model and requires a device |
| 816 | tree binding to operate. |
| 817 | The High-speed UART is compatible with the ns16550a UART and have |
| 818 | its own high-speed registers. |
| 819 | |
Christophe Leroy | dd7ff47 | 2017-07-06 10:33:27 +0200 | [diff] [blame] | 820 | config MPC8XX_CONS |
| 821 | bool "Console driver for MPC8XX" |
Christophe Leroy | ee1e600 | 2018-03-16 17:20:41 +0100 | [diff] [blame] | 822 | depends on MPC8xx |
Christophe Leroy | dd7ff47 | 2017-07-06 10:33:27 +0200 | [diff] [blame] | 823 | default y |
| 824 | |
Peng Fan | 384d5cf | 2020-08-06 12:42:50 +0300 | [diff] [blame] | 825 | config XEN_SERIAL |
| 826 | bool "XEN serial support" |
| 827 | depends on XEN |
| 828 | help |
| 829 | If built without DM support, then requires Xen |
| 830 | to be built with CONFIG_VERBOSE_DEBUG. |
| 831 | |
Christophe Leroy | dd7ff47 | 2017-07-06 10:33:27 +0200 | [diff] [blame] | 832 | choice |
| 833 | prompt "Console port" |
| 834 | default 8xx_CONS_SMC1 |
| 835 | depends on MPC8XX_CONS |
| 836 | help |
| 837 | Depending on board, select one serial port |
| 838 | (CONFIG_8xx_CONS_SMC1 or CONFIG_8xx_CONS_SMC2) |
| 839 | |
| 840 | config 8xx_CONS_SMC1 |
| 841 | bool "SMC1" |
| 842 | |
| 843 | config 8xx_CONS_SMC2 |
| 844 | bool "SMC2" |
| 845 | |
| 846 | endchoice |
| 847 | |
| 848 | config SYS_SMC_RXBUFLEN |
| 849 | int "Console Rx buffer length" |
| 850 | depends on MPC8XX_CONS |
| 851 | default 1 |
| 852 | help |
| 853 | With CONFIG_SYS_SMC_RXBUFLEN it is possible to define |
| 854 | the maximum receive buffer length for the SMC. |
| 855 | This option is actual only for 8xx possible. |
| 856 | If using CONFIG_SYS_SMC_RXBUFLEN also CONFIG_SYS_MAXIDLE |
| 857 | must be defined, to setup the maximum idle timeout for |
| 858 | the SMC. |
| 859 | |
| 860 | config SYS_MAXIDLE |
| 861 | int "maximum idle timeout" |
| 862 | depends on MPC8XX_CONS |
| 863 | default 0 |
| 864 | |
| 865 | config SYS_BRGCLK_PRESCALE |
| 866 | int "BRG Clock Prescale" |
| 867 | depends on MPC8XX_CONS |
| 868 | default 1 |
| 869 | |
| 870 | config SYS_SDSR |
| 871 | hex "SDSR Value" |
| 872 | depends on MPC8XX_CONS |
| 873 | default 0x83 |
| 874 | |
| 875 | config SYS_SDMR |
| 876 | hex "SDMR Value" |
| 877 | depends on MPC8XX_CONS |
| 878 | default 0 |
| 879 | |
Masahiro Yamada | 0b11dbf | 2015-07-26 02:46:26 +0900 | [diff] [blame] | 880 | endmenu |