Masahiro Yamada | cc85b7b | 2015-07-26 02:46:26 +0900 | [diff] [blame] | 1 | # |
| 2 | # Serial device configuration |
| 3 | # |
| 4 | |
Simon Glass | 388f78e | 2021-08-08 12:20:13 -0600 | [diff] [blame] | 5 | menuconfig SERIAL |
| 6 | bool "Serial" |
| 7 | default y |
| 8 | help |
| 9 | Enable support for serial drivers. This allows use of a serial UART |
| 10 | for displaying messages while U-Boot is running. It also brings in |
| 11 | printf() and panic() functions. This should normally be enabled |
| 12 | unless there are space reasons not to. If you just need to disable |
| 13 | the console you can adjust the stdout environment variable or use |
| 14 | SILENT_CONSOLE. |
| 15 | |
| 16 | if SERIAL |
Masahiro Yamada | cc85b7b | 2015-07-26 02:46:26 +0900 | [diff] [blame] | 17 | |
Philipp Tomsich | 29c8bc0 | 2017-03-17 20:34:53 +0100 | [diff] [blame] | 18 | config BAUDRATE |
| 19 | int "Default baudrate" |
| 20 | default 115200 |
| 21 | help |
| 22 | Select a default baudrate, where "default" has a driver-specific |
| 23 | meaning of either setting the baudrate for the early debug UART |
| 24 | in the SPL stage (most drivers) or for choosing a default baudrate |
| 25 | in the absence of an environment setting (serial_mxc.c). |
| 26 | |
Hans de Goede | 04f8094 | 2015-08-08 17:45:18 +0200 | [diff] [blame] | 27 | config REQUIRE_SERIAL_CONSOLE |
| 28 | bool "Require a serial port for console" |
| 29 | # Running without a serial console is not supported by the |
| 30 | # non-dm serial code |
| 31 | depends on DM_SERIAL |
| 32 | default y |
| 33 | help |
| 34 | Require a serial port for the console, and panic if none is found |
| 35 | during serial port initialization (default y). Set this to n on |
| 36 | boards which have no debug serial port whatsoever. |
| 37 | |
Tom Rini | e69ba98 | 2018-03-06 19:02:27 -0500 | [diff] [blame] | 38 | config SPECIFY_CONSOLE_INDEX |
| 39 | bool "Specify the port number used for console" |
| 40 | default y if !DM_SERIAL || (SPL && !SPL_DM_SERIAL) || \ |
| 41 | (TPL && !TPL_DM_SERIAL) |
| 42 | help |
| 43 | In various cases, we need to specify which of the UART devices that |
| 44 | a board or SoC has available are to be used for the console device |
| 45 | in U-Boot. |
| 46 | |
Simon Glass | 30a1349 | 2015-12-13 21:36:58 -0700 | [diff] [blame] | 47 | config SERIAL_PRESENT |
| 48 | bool "Provide a serial driver" |
| 49 | depends on DM_SERIAL |
| 50 | default y |
| 51 | help |
| 52 | In very space-constrained devices even the full UART driver is too |
| 53 | large. In this case the debug UART can still be used in some cases. |
| 54 | This option enables the full UART in U-Boot, so if is it disabled, |
| 55 | the full UART driver will be omitted, thus saving space. |
| 56 | |
| 57 | config SPL_SERIAL_PRESENT |
| 58 | bool "Provide a serial driver in SPL" |
Adam Ford | ac4d80e | 2019-08-24 13:50:34 -0500 | [diff] [blame] | 59 | depends on DM_SERIAL && SPL |
Simon Glass | 30a1349 | 2015-12-13 21:36:58 -0700 | [diff] [blame] | 60 | default y |
| 61 | help |
| 62 | In very space-constrained devices even the full UART driver is too |
| 63 | large. In this case the debug UART can still be used in some cases. |
| 64 | This option enables the full UART in SPL, so if is it disabled, |
| 65 | the full UART driver will be omitted, thus saving space. |
| 66 | |
Simon Glass | 6057392 | 2018-10-01 12:22:20 -0600 | [diff] [blame] | 67 | config TPL_SERIAL_PRESENT |
| 68 | bool "Provide a serial driver in TPL" |
Adam Ford | ac4d80e | 2019-08-24 13:50:34 -0500 | [diff] [blame] | 69 | depends on DM_SERIAL && TPL |
Simon Glass | 6057392 | 2018-10-01 12:22:20 -0600 | [diff] [blame] | 70 | default y |
| 71 | help |
| 72 | In very space-constrained devices even the full UART driver is too |
| 73 | large. In this case the debug UART can still be used in some cases. |
| 74 | This option enables the full UART in TPL, so if is it disabled, |
| 75 | the full UART driver will be omitted, thus saving space. |
| 76 | |
Tom Rini | e69ba98 | 2018-03-06 19:02:27 -0500 | [diff] [blame] | 77 | # Logic to allow us to use the imply keyword to set what the default port |
| 78 | # should be. The default is otherwise 1. |
| 79 | config CONS_INDEX_0 |
| 80 | bool |
| 81 | |
| 82 | config CONS_INDEX_2 |
| 83 | bool |
| 84 | |
| 85 | config CONS_INDEX_3 |
| 86 | bool |
| 87 | |
| 88 | config CONS_INDEX_4 |
| 89 | bool |
| 90 | |
| 91 | config CONS_INDEX_5 |
| 92 | bool |
| 93 | |
| 94 | config CONS_INDEX_6 |
| 95 | bool |
| 96 | |
Mylène Josserand | 80b9644 | 2017-04-02 12:59:11 +0200 | [diff] [blame] | 97 | config CONS_INDEX |
| 98 | int "UART used for console" |
Tom Rini | e69ba98 | 2018-03-06 19:02:27 -0500 | [diff] [blame] | 99 | depends on SPECIFY_CONSOLE_INDEX |
| 100 | range 0 6 |
| 101 | default 0 if CONS_INDEX_0 |
| 102 | default 2 if CONS_INDEX_2 |
| 103 | default 3 if CONS_INDEX_3 |
| 104 | default 4 if CONS_INDEX_4 |
| 105 | default 5 if CONS_INDEX_5 |
| 106 | default 6 if CONS_INDEX_6 |
Mylène Josserand | 80b9644 | 2017-04-02 12:59:11 +0200 | [diff] [blame] | 107 | default 1 |
| 108 | help |
Tom Rini | e69ba98 | 2018-03-06 19:02:27 -0500 | [diff] [blame] | 109 | Set this to match the UART number of the serial console. |
Mylène Josserand | 80b9644 | 2017-04-02 12:59:11 +0200 | [diff] [blame] | 110 | |
Masahiro Yamada | 57ad8ee | 2014-10-23 22:26:09 +0900 | [diff] [blame] | 111 | config DM_SERIAL |
| 112 | bool "Enable Driver Model for serial drivers" |
| 113 | depends on DM |
Sean Anderson | 08c854a | 2019-12-17 21:40:09 -0500 | [diff] [blame] | 114 | select SYS_MALLOC_F |
Masahiro Yamada | 57ad8ee | 2014-10-23 22:26:09 +0900 | [diff] [blame] | 115 | help |
Simon Glass | d8b771d | 2015-02-05 21:41:35 -0700 | [diff] [blame] | 116 | Enable driver model for serial. This replaces |
| 117 | drivers/serial/serial.c with the serial uclass, which |
| 118 | implements serial_putc() etc. The uclass interface is |
| 119 | defined in include/serial.h. |
Masahiro Yamada | 4261c64 | 2014-10-23 22:26:11 +0900 | [diff] [blame] | 120 | |
Stefan Roese | 0207283 | 2017-08-16 17:37:16 +0200 | [diff] [blame] | 121 | config SERIAL_RX_BUFFER |
| 122 | bool "Enable RX buffer for serial input" |
| 123 | depends on DM_SERIAL |
| 124 | help |
| 125 | Enable RX buffer support for the serial driver. This enables |
| 126 | pasting longer strings, even when the RX FIFO of the UART is |
| 127 | not big enough (e.g. 16 bytes on the normal NS16550). |
| 128 | |
| 129 | config SERIAL_RX_BUFFER_SIZE |
| 130 | int "RX buffer size" |
| 131 | depends on SERIAL_RX_BUFFER |
| 132 | default 256 |
| 133 | help |
| 134 | The size of the RX buffer (needs to be power of 2) |
| 135 | |
Alexander Graf | c8bda54 | 2018-01-29 13:57:20 +0100 | [diff] [blame] | 136 | config SERIAL_SEARCH_ALL |
| 137 | bool "Search for serial devices after default one failed" |
| 138 | depends on DM_SERIAL |
| 139 | help |
| 140 | The serial subsystem only searches for a single serial device |
| 141 | that was instantiated, but does not check whether it was probed |
| 142 | correctly. With this option set, we make successful probing |
| 143 | mandatory and search for fallback serial devices if the default |
| 144 | device does not work. |
| 145 | |
| 146 | If unsure, say N. |
| 147 | |
Vabhav Sharma | 42149c9 | 2020-12-09 10:42:04 +0530 | [diff] [blame] | 148 | config SERIAL_PROBE_ALL |
| 149 | bool "Probe all available serial devices" |
| 150 | depends on DM_SERIAL |
Vabhav Sharma | 42149c9 | 2020-12-09 10:42:04 +0530 | [diff] [blame] | 151 | help |
| 152 | The serial subsystem only probes for a single serial device, |
| 153 | but does not probe for other remaining serial devices. |
| 154 | With this option set, we make probing and searching for |
| 155 | all available devices optional. |
| 156 | Normally, U-Boot talks to one serial port at a time, but SBSA |
| 157 | compliant UART devices like PL011 require initialization |
| 158 | by firmware and to let the kernel use serial port for sending |
| 159 | and receiving the characters. |
| 160 | |
| 161 | If unsure, say N. |
| 162 | |
Simon Glass | f9512aa | 2017-04-02 09:50:32 -0600 | [diff] [blame] | 163 | config SPL_DM_SERIAL |
Heiko Schocher | b0b588f | 2017-06-21 06:23:10 +0200 | [diff] [blame] | 164 | bool "Enable Driver Model for serial drivers in SPL" |
Tom Rini | e69ba98 | 2018-03-06 19:02:27 -0500 | [diff] [blame] | 165 | depends on DM_SERIAL && SPL_DM |
Sean Anderson | 08c854a | 2019-12-17 21:40:09 -0500 | [diff] [blame] | 166 | select SYS_SPL_MALLOC_F |
Tom Rini | e69ba98 | 2018-03-06 19:02:27 -0500 | [diff] [blame] | 167 | default y |
Simon Glass | f9512aa | 2017-04-02 09:50:32 -0600 | [diff] [blame] | 168 | help |
| 169 | Enable driver model for serial in SPL. This replaces |
| 170 | drivers/serial/serial.c with the serial uclass, which |
| 171 | implements serial_putc() etc. The uclass interface is |
| 172 | defined in include/serial.h. |
| 173 | |
| 174 | config TPL_DM_SERIAL |
Heiko Schocher | b0b588f | 2017-06-21 06:23:10 +0200 | [diff] [blame] | 175 | bool "Enable Driver Model for serial drivers in TPL" |
Thomas Hebb | c850c6a | 2019-11-10 08:23:55 -0800 | [diff] [blame] | 176 | depends on DM_SERIAL && TPL_DM |
Sean Anderson | 08c854a | 2019-12-17 21:40:09 -0500 | [diff] [blame] | 177 | select SYS_TPL_MALLOC_F |
Simon Glass | f9512aa | 2017-04-02 09:50:32 -0600 | [diff] [blame] | 178 | default y if TPL && DM_SERIAL |
| 179 | help |
| 180 | Enable driver model for serial in TPL. This replaces |
| 181 | drivers/serial/serial.c with the serial uclass, which |
| 182 | implements serial_putc() etc. The uclass interface is |
| 183 | defined in include/serial.h. |
| 184 | |
Simon Glass | bac6fd8 | 2015-01-26 18:27:07 -0700 | [diff] [blame] | 185 | config DEBUG_UART |
| 186 | bool "Enable an early debug UART for debugging" |
| 187 | help |
| 188 | The debug UART is intended for use very early in U-Boot to debug |
| 189 | problems when an ICE or other debug mechanism is not available. |
| 190 | |
| 191 | To use it you should: |
| 192 | - Make sure your UART supports this interface |
| 193 | - Enable CONFIG_DEBUG_UART |
| 194 | - Enable the CONFIG for your UART to tell it to provide this interface |
| 195 | (e.g. CONFIG_DEBUG_UART_NS16550) |
| 196 | - Define the required settings as needed (see below) |
| 197 | - Call debug_uart_init() before use |
| 198 | - Call debug_uart_putc() to output a character |
| 199 | |
| 200 | Depending on your platform it may be possible to use this UART before |
| 201 | a stack is available. |
| 202 | |
| 203 | If your UART does not support this interface you can probably add |
| 204 | support quite easily. Remember that you cannot use driver model and |
| 205 | it is preferred to use no stack. |
| 206 | |
| 207 | You must not use this UART once driver model is working and the |
| 208 | serial drivers are up and running (done in serial_init()). Otherwise |
| 209 | the drivers may conflict and you will get strange output. |
| 210 | |
Simon Glass | 27afb52 | 2015-01-26 18:27:09 -0700 | [diff] [blame] | 211 | choice |
| 212 | prompt "Select which UART will provide the debug UART" |
| 213 | depends on DEBUG_UART |
Thomas Chou | d073841 | 2015-11-19 21:48:03 +0800 | [diff] [blame] | 214 | default DEBUG_UART_NS16550 |
Simon Glass | 27afb52 | 2015-01-26 18:27:09 -0700 | [diff] [blame] | 215 | |
Thomas Chou | 26066df | 2015-10-23 07:36:37 +0800 | [diff] [blame] | 216 | config DEBUG_UART_ALTERA_JTAGUART |
| 217 | bool "Altera JTAG UART" |
Michal Simek | 8da3a6b | 2020-05-28 12:05:12 +0200 | [diff] [blame] | 218 | depends on ALTERA_JTAG_UART |
Thomas Chou | 26066df | 2015-10-23 07:36:37 +0800 | [diff] [blame] | 219 | help |
| 220 | Select this to enable a debug UART using the altera_jtag_uart driver. |
| 221 | You will need to provide parameters to make this work. The driver will |
| 222 | be available until the real driver model serial is running. |
| 223 | |
Thomas Chou | 6917a5d | 2015-10-21 21:26:54 +0800 | [diff] [blame] | 224 | config DEBUG_UART_ALTERA_UART |
| 225 | bool "Altera UART" |
Michal Simek | 8da3a6b | 2020-05-28 12:05:12 +0200 | [diff] [blame] | 226 | depends on ALTERA_UART |
Thomas Chou | 6917a5d | 2015-10-21 21:26:54 +0800 | [diff] [blame] | 227 | help |
| 228 | Select this to enable a debug UART using the altera_uart driver. |
| 229 | You will need to provide parameters to make this work. The driver will |
| 230 | be available until the real driver model serial is running. |
| 231 | |
Wills Wang | cb48c6d | 2016-03-16 16:59:57 +0800 | [diff] [blame] | 232 | config DEBUG_UART_AR933X |
| 233 | bool "QCA/Atheros ar933x" |
| 234 | depends on AR933X_UART |
| 235 | help |
| 236 | Select this to enable a debug UART using the ar933x uart driver. |
| 237 | You will need to provide parameters to make this work. The |
| 238 | driver will be available until the real driver model serial is |
| 239 | running. |
| 240 | |
Alexey Brodkin | eede167 | 2018-05-21 16:42:07 +0300 | [diff] [blame] | 241 | config DEBUG_ARC_SERIAL |
| 242 | bool "ARC UART" |
| 243 | depends on ARC_SERIAL |
| 244 | help |
| 245 | Select this to enable a debug UART using the ARC UART driver. |
| 246 | You will need to provide parameters to make this work. The |
| 247 | driver will be available until the real driver model serial is |
| 248 | running. |
| 249 | |
Wenyou Yang | 6b611e6 | 2016-10-17 09:49:55 +0800 | [diff] [blame] | 250 | config DEBUG_UART_ATMEL |
| 251 | bool "Atmel USART" |
Michal Simek | 8da3a6b | 2020-05-28 12:05:12 +0200 | [diff] [blame] | 252 | depends on ATMEL_USART |
Wenyou Yang | 6b611e6 | 2016-10-17 09:49:55 +0800 | [diff] [blame] | 253 | help |
| 254 | Select this to enable a debug UART using the atmel usart driver. You |
| 255 | will need to provide parameters to make this work. The driver will |
| 256 | be available until the real driver-model serial is running. |
| 257 | |
Álvaro Fernández Rojas | 842cfaf | 2017-04-25 00:39:16 +0200 | [diff] [blame] | 258 | config DEBUG_UART_BCM6345 |
| 259 | bool "BCM6345 UART" |
| 260 | depends on BCM6345_SERIAL |
| 261 | help |
| 262 | Select this to enable a debug UART on BCM6345 SoCs. You |
| 263 | will need to provide parameters to make this work. The driver will |
| 264 | be available until the real driver model serial is running. |
| 265 | |
Simon Glass | 27afb52 | 2015-01-26 18:27:09 -0700 | [diff] [blame] | 266 | config DEBUG_UART_NS16550 |
| 267 | bool "ns16550" |
Michal Simek | 8da3a6b | 2020-05-28 12:05:12 +0200 | [diff] [blame] | 268 | depends on SYS_NS16550 |
Simon Glass | 27afb52 | 2015-01-26 18:27:09 -0700 | [diff] [blame] | 269 | help |
| 270 | Select this to enable a debug UART using the ns16550 driver. You |
| 271 | will need to provide parameters to make this work. The driver will |
| 272 | be available until the real driver model serial is running. |
| 273 | |
Simon Glass | 5a991bd | 2015-08-04 12:33:40 -0600 | [diff] [blame] | 274 | config DEBUG_EFI_CONSOLE |
| 275 | bool "EFI" |
| 276 | depends on EFI_APP |
| 277 | help |
| 278 | Select this to enable a debug console which calls back to EFI to |
| 279 | output to the console. This can be useful for early debugging of |
| 280 | U-Boot when running on top of EFI (Extensive Firmware Interface). |
| 281 | This is a type of BIOS used by PCs. |
| 282 | |
Samuel Holland | 4c33c26 | 2021-09-12 10:56:09 -0500 | [diff] [blame^] | 283 | config DEBUG_SBI_CONSOLE |
| 284 | bool "SBI" |
| 285 | depends on SBI_V01 |
| 286 | help |
| 287 | Select this to enable a debug console which calls back to SBI to |
| 288 | output to the console. This can be useful for early debugging of |
| 289 | U-Boot when running on top of SBI (Supervisor Binary Interface). |
| 290 | |
Simon Glass | 74afb29 | 2015-07-02 18:15:54 -0600 | [diff] [blame] | 291 | config DEBUG_UART_S5P |
| 292 | bool "Samsung S5P" |
Michal Simek | 8da3a6b | 2020-05-28 12:05:12 +0200 | [diff] [blame] | 293 | depends on ARCH_EXYNOS || ARCH_S5PC1XX |
Simon Glass | 74afb29 | 2015-07-02 18:15:54 -0600 | [diff] [blame] | 294 | help |
| 295 | Select this to enable a debug UART using the serial_s5p driver. You |
| 296 | will need to provide parameters to make this work. The driver will |
| 297 | be available until the real driver-model serial is running. |
| 298 | |
Beniamino Galvani | d1037e4 | 2016-05-08 08:30:16 +0200 | [diff] [blame] | 299 | config DEBUG_UART_MESON |
| 300 | bool "Amlogic Meson" |
| 301 | depends on MESON_SERIAL |
| 302 | help |
| 303 | Select this to enable a debug UART using the serial_meson driver. You |
| 304 | will need to provide parameters to make this work. The driver will |
| 305 | be available until the real driver-model serial is running. |
| 306 | |
Michal Simek | 8af618b | 2015-12-14 16:55:10 +0100 | [diff] [blame] | 307 | config DEBUG_UART_UARTLITE |
| 308 | bool "Xilinx Uartlite" |
Michal Simek | 8da3a6b | 2020-05-28 12:05:12 +0200 | [diff] [blame] | 309 | depends on XILINX_UARTLITE |
Michal Simek | 8af618b | 2015-12-14 16:55:10 +0100 | [diff] [blame] | 310 | help |
| 311 | Select this to enable a debug UART using the serial_uartlite driver. |
| 312 | You will need to provide parameters to make this work. The driver will |
| 313 | be available until the real driver-model serial is running. |
| 314 | |
Michal Simek | b3cc260 | 2016-02-23 10:02:28 +0100 | [diff] [blame] | 315 | config DEBUG_UART_ARM_DCC |
| 316 | bool "ARM DCC" |
Michal Simek | 8da3a6b | 2020-05-28 12:05:12 +0200 | [diff] [blame] | 317 | depends on ARM_DCC |
Michal Simek | b3cc260 | 2016-02-23 10:02:28 +0100 | [diff] [blame] | 318 | help |
| 319 | Select this to enable a debug UART using the ARM JTAG DCC port. |
| 320 | The DCC port can be used for very early debugging and doesn't require |
| 321 | any additional setting like address/baudrate/clock. On systems without |
| 322 | any serial interface this is the easiest way how to get console. |
| 323 | Every ARM core has own DCC port which is the part of debug interface. |
| 324 | This port is available at least on ARMv6, ARMv7, ARMv8 and XScale |
| 325 | architectures. |
| 326 | |
Stefan Roese | 027276a | 2016-05-17 16:36:00 +0200 | [diff] [blame] | 327 | config DEBUG_MVEBU_A3700_UART |
| 328 | bool "Marvell Armada 3700" |
Michal Simek | 8da3a6b | 2020-05-28 12:05:12 +0200 | [diff] [blame] | 329 | depends on MVEBU_A3700_UART |
Stefan Roese | 027276a | 2016-05-17 16:36:00 +0200 | [diff] [blame] | 330 | help |
| 331 | Select this to enable a debug UART using the serial_mvebu driver. You |
| 332 | will need to provide parameters to make this work. The driver will |
| 333 | be available until the real driver-model serial is running. |
| 334 | |
Simon Glass | 091f6a3 | 2015-10-17 19:41:22 -0600 | [diff] [blame] | 335 | config DEBUG_UART_ZYNQ |
| 336 | bool "Xilinx Zynq" |
Michal Simek | 8da3a6b | 2020-05-28 12:05:12 +0200 | [diff] [blame] | 337 | depends on ZYNQ_SERIAL |
Simon Glass | 091f6a3 | 2015-10-17 19:41:22 -0600 | [diff] [blame] | 338 | help |
Michal Simek | 49e1276 | 2015-12-01 14:29:34 +0100 | [diff] [blame] | 339 | Select this to enable a debug UART using the serial_zynq driver. You |
Simon Glass | 091f6a3 | 2015-10-17 19:41:22 -0600 | [diff] [blame] | 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 | |
Francois Retief | d18eb7b | 2015-10-29 12:55:34 +0200 | [diff] [blame] | 343 | config DEBUG_UART_APBUART |
| 344 | depends on LEON3 |
| 345 | bool "Gaisler APBUART" |
| 346 | help |
| 347 | Select this to enable a debug UART using the serial_leon3 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 | |
Sergey Temerkhanov | 5710d7e | 2015-10-14 09:54:24 -0700 | [diff] [blame] | 351 | config DEBUG_UART_PL010 |
| 352 | bool "pl010" |
Tom Rini | 0ba2f37 | 2021-05-22 08:47:08 -0400 | [diff] [blame] | 353 | depends on PL01X_SERIAL |
Sergey Temerkhanov | 5710d7e | 2015-10-14 09:54:24 -0700 | [diff] [blame] | 354 | help |
| 355 | Select this to enable a debug UART using the pl01x driver with the |
| 356 | PL010 UART type. You will need to provide parameters to make this |
| 357 | work. The driver will be available until the real driver model |
| 358 | serial is running. |
| 359 | |
| 360 | config DEBUG_UART_PL011 |
| 361 | bool "pl011" |
Michal Simek | ceedd3a | 2021-06-24 13:36:23 +0200 | [diff] [blame] | 362 | depends on PL01X_SERIAL || PL011_SERIAL |
Sergey Temerkhanov | 5710d7e | 2015-10-14 09:54:24 -0700 | [diff] [blame] | 363 | help |
| 364 | Select this to enable a debug UART using the pl01x driver with the |
| 365 | PL011 UART type. You will need to provide parameters to make this |
| 366 | work. The driver will be available until the real driver model |
| 367 | serial is running. |
| 368 | |
Paul Thacker | 1dc4283 | 2016-01-28 15:30:14 +0530 | [diff] [blame] | 369 | config DEBUG_UART_PIC32 |
| 370 | bool "Microchip PIC32" |
| 371 | depends on PIC32_SERIAL |
| 372 | help |
| 373 | Select this to enable a debug UART using the serial_pic32 driver. You |
| 374 | will need to provide parameters to make this work. The driver will |
| 375 | be available until the real driver model serial is running. |
| 376 | |
Jagan Teki | cf6db16 | 2017-06-06 05:31:51 +0000 | [diff] [blame] | 377 | config DEBUG_UART_MXC |
| 378 | bool "IMX Serial port" |
| 379 | depends on MXC_UART |
| 380 | help |
| 381 | Select this to enable a debug UART using the serial_mxc driver. You |
| 382 | will need to provide parameters to make this work. The driver will |
| 383 | be available until the real driver model serial is running. |
| 384 | |
Simon Glass | e3057f3 | 2018-10-01 11:55:15 -0600 | [diff] [blame] | 385 | config DEBUG_UART_SANDBOX |
| 386 | bool "sandbox" |
| 387 | depends on SANDBOX_SERIAL |
| 388 | help |
| 389 | Select this to enable the debug UART using the sandbox driver. This |
| 390 | provides basic serial output from the console without needing to |
| 391 | start up driver model. The driver will be available until the real |
| 392 | driver model serial is running. |
| 393 | |
Anup Patel | 4b1d68f | 2018-12-15 11:35:15 +0530 | [diff] [blame] | 394 | config DEBUG_UART_SIFIVE |
| 395 | bool "SiFive UART" |
Michal Simek | f041017 | 2020-07-10 12:41:13 +0200 | [diff] [blame] | 396 | depends on SIFIVE_SERIAL |
Anup Patel | 4b1d68f | 2018-12-15 11:35:15 +0530 | [diff] [blame] | 397 | help |
| 398 | Select this to enable a debug UART using the serial_sifive driver. You |
| 399 | will need to provide parameters to make this work. The driver will |
| 400 | be available until the real driver-model serial is running. |
| 401 | |
Patrick Delaunay | ab8e5d2 | 2018-05-17 14:50:42 +0200 | [diff] [blame] | 402 | config DEBUG_UART_STM32 |
| 403 | bool "STMicroelectronics STM32" |
| 404 | depends on STM32_SERIAL |
| 405 | help |
| 406 | Select this to enable a debug UART using the serial_stm32 driver |
| 407 | You will need to provide parameters to make this work. |
| 408 | The driver will be available until the real driver model |
| 409 | serial is running. |
| 410 | |
Masahiro Yamada | 52f0c51 | 2016-03-18 16:41:52 +0900 | [diff] [blame] | 411 | config DEBUG_UART_UNIPHIER |
| 412 | bool "UniPhier on-chip UART" |
| 413 | depends on ARCH_UNIPHIER |
| 414 | help |
| 415 | Select this to enable a debug UART using the UniPhier on-chip UART. |
| 416 | You will need to provide DEBUG_UART_BASE to make this work. The |
| 417 | driver will be available until the real driver-model serial is |
| 418 | running. |
| 419 | |
Lokesh Vutla | 771d69c | 2017-04-22 15:57:25 +0530 | [diff] [blame] | 420 | config DEBUG_UART_OMAP |
| 421 | bool "OMAP uart" |
Michal Simek | 8da3a6b | 2020-05-28 12:05:12 +0200 | [diff] [blame] | 422 | depends on OMAP_SERIAL |
Lokesh Vutla | 771d69c | 2017-04-22 15:57:25 +0530 | [diff] [blame] | 423 | help |
| 424 | Select this to enable a debug UART using the omap ns16550 driver. |
| 425 | You will need to provide parameters to make this work. The driver |
| 426 | will be available until the real driver model serial is running. |
| 427 | |
developer | 90af58f | 2018-11-15 10:08:02 +0800 | [diff] [blame] | 428 | config DEBUG_UART_MTK |
| 429 | bool "MediaTek High-speed UART" |
| 430 | depends on MTK_SERIAL |
| 431 | help |
| 432 | Select this to enable a debug UART using the MediaTek High-speed |
| 433 | UART driver. |
| 434 | You will need to provide parameters to make this work. The |
| 435 | driver will be available until the real driver model serial is |
| 436 | running. |
| 437 | |
developer | e076b9e | 2020-11-12 16:36:05 +0800 | [diff] [blame] | 438 | config DEBUG_UART_MT7620 |
| 439 | bool "UART driver for MediaTek MT7620 and earlier SoCs" |
| 440 | depends on MT7620_SERIAL |
| 441 | help |
| 442 | Select this to enable a debug UART using the UART driver for |
| 443 | MediaTek MT7620 and earlier SoCs. |
| 444 | You will need to provide parameters to make this work. The |
| 445 | driver will be available until the real driver model serial is |
| 446 | running. |
| 447 | |
Simon Glass | 27afb52 | 2015-01-26 18:27:09 -0700 | [diff] [blame] | 448 | endchoice |
| 449 | |
Simon Glass | bac6fd8 | 2015-01-26 18:27:07 -0700 | [diff] [blame] | 450 | config DEBUG_UART_BASE |
| 451 | hex "Base address of UART" |
Tom Rini | ae965f2 | 2020-10-23 09:15:55 -0400 | [diff] [blame] | 452 | depends on DEBUG_UART |
Samuel Holland | 4c33c26 | 2021-09-12 10:56:09 -0500 | [diff] [blame^] | 453 | default 0 if DEBUG_SBI_CONSOLE |
Simon Glass | e3057f3 | 2018-10-01 11:55:15 -0600 | [diff] [blame] | 454 | default 0 if DEBUG_UART_SANDBOX |
Simon Glass | bac6fd8 | 2015-01-26 18:27:07 -0700 | [diff] [blame] | 455 | help |
| 456 | This is the base address of your UART for memory-mapped UARTs. |
| 457 | |
| 458 | A default should be provided by your board, but if not you will need |
| 459 | to use the correct value here. |
| 460 | |
| 461 | config DEBUG_UART_CLOCK |
| 462 | int "UART input clock" |
Tom Rini | ae965f2 | 2020-10-23 09:15:55 -0400 | [diff] [blame] | 463 | depends on DEBUG_UART |
Samuel Holland | 4c33c26 | 2021-09-12 10:56:09 -0500 | [diff] [blame^] | 464 | default 0 if DEBUG_SBI_CONSOLE |
Simon Glass | e3057f3 | 2018-10-01 11:55:15 -0600 | [diff] [blame] | 465 | default 0 if DEBUG_UART_SANDBOX |
Marek Behún | 6e0e23c | 2021-07-09 17:40:59 +0200 | [diff] [blame] | 466 | default 0 if DEBUG_MVEBU_A3700_UART |
Simon Glass | bac6fd8 | 2015-01-26 18:27:07 -0700 | [diff] [blame] | 467 | help |
| 468 | The UART input clock determines the speed of the internal UART |
| 469 | circuitry. The baud rate is derived from this by dividing the input |
| 470 | clock down. |
| 471 | |
| 472 | A default should be provided by your board, but if not you will need |
| 473 | to use the correct value here. |
| 474 | |
Simon Glass | 5411129 | 2015-02-27 22:06:25 -0700 | [diff] [blame] | 475 | config DEBUG_UART_SHIFT |
| 476 | int "UART register shift" |
Tom Rini | ae965f2 | 2020-10-23 09:15:55 -0400 | [diff] [blame] | 477 | depends on DEBUG_UART |
Simon Glass | 5411129 | 2015-02-27 22:06:25 -0700 | [diff] [blame] | 478 | default 0 if DEBUG_UART |
| 479 | help |
| 480 | Some UARTs (notably ns16550) support different register layouts |
| 481 | where the registers are spaced either as bytes, words or some other |
| 482 | value. Use this value to specify the shift to use, where 0=byte |
| 483 | registers, 2=32-bit word registers, etc. |
| 484 | |
Simon Glass | c52be12 | 2015-10-18 19:51:24 -0600 | [diff] [blame] | 485 | config DEBUG_UART_BOARD_INIT |
| 486 | bool "Enable board-specific debug UART init" |
| 487 | depends on DEBUG_UART |
| 488 | help |
| 489 | Some boards need to set things up before the debug UART can be used. |
| 490 | On these boards a call to debug_uart_init() is insufficient. When |
| 491 | this option is enabled, the function board_debug_uart_init() will |
| 492 | be called when debug_uart_init() is called. You can put any code |
| 493 | here that is needed to set up the UART ready for use, such as set |
| 494 | pin multiplexing or enable clocks. |
| 495 | |
Simon Glass | 1f7338a | 2015-10-18 19:51:25 -0600 | [diff] [blame] | 496 | config DEBUG_UART_ANNOUNCE |
| 497 | bool "Show a message when the debug UART starts up" |
| 498 | depends on DEBUG_UART |
| 499 | help |
| 500 | Enable this option to show a message when the debug UART is ready |
| 501 | for use. You will see a message like "<debug_uart> " as soon as |
| 502 | U-Boot has the UART ready for use (i.e. your code calls |
| 503 | debug_uart_init()). This can be useful just as a check that |
| 504 | everything is working. |
| 505 | |
Sergey Temerkhanov | 5710d7e | 2015-10-14 09:54:24 -0700 | [diff] [blame] | 506 | config DEBUG_UART_SKIP_INIT |
| 507 | bool "Skip UART initialization" |
Simon Goldschmidt | 03a9683 | 2019-01-09 20:27:09 +0100 | [diff] [blame] | 508 | depends on DEBUG_UART |
Sergey Temerkhanov | 5710d7e | 2015-10-14 09:54:24 -0700 | [diff] [blame] | 509 | help |
| 510 | Select this if the UART you want to use for debug output is already |
| 511 | initialized by the time U-Boot starts its execution. |
| 512 | |
Simon Goldschmidt | e03ad21 | 2019-01-09 20:35:31 +0100 | [diff] [blame] | 513 | config DEBUG_UART_NS16550_CHECK_ENABLED |
| 514 | bool "Check if UART is enabled on output" |
| 515 | depends on DEBUG_UART |
| 516 | depends on DEBUG_UART_NS16550 |
| 517 | help |
| 518 | Select this if puts()/putc() might be called before the debug UART |
| 519 | has been initialized. If this is disabled, putc() might sit in a |
| 520 | tight loop if it is called before debug_uart_init() has been called. |
| 521 | |
| 522 | Note that this does not work for every ns16550-compatible UART and |
| 523 | so has to be enabled carefully or you might notice lost characters. |
| 524 | |
Thomas Chou | 26066df | 2015-10-23 07:36:37 +0800 | [diff] [blame] | 525 | config ALTERA_JTAG_UART |
| 526 | bool "Altera JTAG UART support" |
| 527 | depends on DM_SERIAL |
| 528 | help |
| 529 | Select this to enable an JTAG UART for Altera devices.The JTAG UART |
| 530 | core implements a method to communicate serial character streams |
| 531 | between a host PC and a Qsys system on an Altera FPGA. Please find |
| 532 | details on the "Embedded Peripherals IP User Guide" of Altera. |
| 533 | |
| 534 | config ALTERA_JTAG_UART_BYPASS |
| 535 | bool "Bypass output when no connection" |
| 536 | depends on ALTERA_JTAG_UART |
| 537 | help |
| 538 | Bypass console output and keep going even if there is no JTAG |
| 539 | terminal connection with the host. The console output will resume |
| 540 | once the JTAG terminal is connected. Without the bypass, the console |
| 541 | output will wait forever until a JTAG terminal is connected. If you |
| 542 | not are sure, say Y. |
| 543 | |
Thomas Chou | 6917a5d | 2015-10-21 21:26:54 +0800 | [diff] [blame] | 544 | config ALTERA_UART |
| 545 | bool "Altera UART support" |
| 546 | depends on DM_SERIAL |
| 547 | help |
| 548 | Select this to enable an UART for Altera devices. Please find |
| 549 | details on the "Embedded Peripherals IP User Guide" of Altera. |
| 550 | |
Wills Wang | cb48c6d | 2016-03-16 16:59:57 +0800 | [diff] [blame] | 551 | config AR933X_UART |
| 552 | bool "QCA/Atheros ar933x UART support" |
| 553 | depends on DM_SERIAL && SOC_AR933X |
| 554 | help |
| 555 | Select this to enable UART support for QCA/Atheros ar933x |
| 556 | devices. This driver uses driver model and requires a device |
| 557 | tree binding to operate, please refer to the document at |
| 558 | doc/device-tree-bindings/serial/qca,ar9330-uart.txt. |
| 559 | |
Alexey Brodkin | b9a0a42 | 2018-05-21 16:40:05 +0300 | [diff] [blame] | 560 | config ARC_SERIAL |
| 561 | bool "ARC UART support" |
| 562 | depends on DM_SERIAL |
| 563 | help |
| 564 | Select this to enable support for ARC UART now typically |
| 565 | only used in Synopsys DesignWare ARC simulators like nSIM. |
| 566 | |
Tom Rini | 0f73ac6 | 2020-06-02 17:26:33 -0400 | [diff] [blame] | 567 | config ARM_DCC |
| 568 | bool "ARM Debug Communication Channel (DCC) as UART support" |
| 569 | depends on ARM |
| 570 | help |
| 571 | Select this to enable using the ARM DCC as a form of UART. |
| 572 | |
Wenyou Yang | 58d4448 | 2016-10-17 09:49:54 +0800 | [diff] [blame] | 573 | config ATMEL_USART |
| 574 | bool "Atmel USART support" |
| 575 | help |
| 576 | Select this to enable USART support for Atmel SoCs. It can be |
| 577 | configured in the device tree, and input clock frequency can |
| 578 | be got from the clk node. |
| 579 | |
Stefan Roese | b1f3da8 | 2019-04-03 15:24:19 +0200 | [diff] [blame] | 580 | config SPL_UART_CLOCK |
| 581 | int "SPL fixed UART input clock" |
| 582 | depends on ATMEL_USART && SPL && !SPL_CLK |
| 583 | default 132096000 if ARCH_AT91 |
| 584 | help |
| 585 | Provide a fixed clock value as input to the UART controller. This |
| 586 | might be needed on platforms which can't enable CONFIG_SPL_CLK |
| 587 | because of SPL image size restrictions. |
| 588 | |
Alexander Graf | 1b44295 | 2018-01-25 12:05:53 +0100 | [diff] [blame] | 589 | config BCM283X_MU_SERIAL |
| 590 | bool "Support for BCM283x Mini-UART" |
| 591 | depends on DM_SERIAL && ARCH_BCM283X |
| 592 | default y |
| 593 | help |
| 594 | Select this to enable Mini-UART support on BCM283X family of SoCs. |
| 595 | |
Alexander Graf | a73b0ec | 2018-01-25 12:05:55 +0100 | [diff] [blame] | 596 | config BCM283X_PL011_SERIAL |
| 597 | bool "Support for BCM283x PL011 UART" |
| 598 | depends on PL01X_SERIAL && ARCH_BCM283X |
| 599 | default y |
| 600 | help |
| 601 | Select this to enable an overriding PL011 driver for BCM283X SoCs |
| 602 | that supports automatic disable, so that it only gets used when |
| 603 | the UART is actually muxed. |
| 604 | |
Álvaro Fernández Rojas | 842cfaf | 2017-04-25 00:39:16 +0200 | [diff] [blame] | 605 | config BCM6345_SERIAL |
| 606 | bool "Support for BCM6345 UART" |
Álvaro Fernández Rojas | 4ab2987 | 2018-12-01 18:42:09 +0100 | [diff] [blame] | 607 | depends on DM_SERIAL |
Álvaro Fernández Rojas | 842cfaf | 2017-04-25 00:39:16 +0200 | [diff] [blame] | 608 | help |
| 609 | Select this to enable UART on BCM6345 SoCs. |
| 610 | |
Simon Glass | 4d22107 | 2019-12-19 17:58:20 -0700 | [diff] [blame] | 611 | config COREBOOT_SERIAL |
| 612 | bool "Coreboot UART support" |
| 613 | depends on DM_SERIAL |
| 614 | default y if SYS_COREBOOT |
| 615 | select SYS_NS16550 |
| 616 | help |
| 617 | Select this to enable a ns16550-style UART where the platform data |
| 618 | comes from the coreboot 'sysinfo' tables. This allows U-Boot to have |
| 619 | a serial console on any platform without needing to change the |
| 620 | device tree, etc. |
| 621 | |
Jason Li | adca83a | 2020-01-30 12:34:58 -0800 | [diff] [blame] | 622 | config CORTINA_UART |
| 623 | bool "Cortina UART support" |
| 624 | depends on DM_SERIAL |
| 625 | help |
| 626 | Select this to enable UART support for Cortina-Access UART devices |
| 627 | found on CAxxxx SoCs. |
| 628 | |
Tuomas Tynkkynen | f2c8470 | 2018-04-09 04:34:34 +0300 | [diff] [blame] | 629 | config FSL_LINFLEXUART |
| 630 | bool "Freescale Linflex UART support" |
| 631 | depends on DM_SERIAL |
| 632 | help |
| 633 | Select this to enable the Linflex serial module found on some |
| 634 | NXP SoCs like S32V234. |
| 635 | |
Bin Meng | 4409dcf | 2016-01-13 19:39:00 -0800 | [diff] [blame] | 636 | config FSL_LPUART |
| 637 | bool "Freescale LPUART support" |
| 638 | help |
| 639 | Select this to enable a Low Power UART for Freescale VF610 and |
| 640 | QorIQ Layerscape devices. |
| 641 | |
Stefan Roese | 027276a | 2016-05-17 16:36:00 +0200 | [diff] [blame] | 642 | config MVEBU_A3700_UART |
| 643 | bool "UART support for Armada 3700" |
Stefan Roese | 027276a | 2016-05-17 16:36:00 +0200 | [diff] [blame] | 644 | help |
| 645 | Choose this option to add support for UART driver on the Marvell |
| 646 | Armada 3700 SoC. The base address is configured via DT. |
| 647 | |
Angelo Dureghello | 6d542f3 | 2019-03-13 21:46:49 +0100 | [diff] [blame] | 648 | config MCFUART |
| 649 | bool "Freescale ColdFire UART support" |
| 650 | help |
| 651 | Choose this option to add support for UART driver on the ColdFire |
| 652 | SoC's family. The serial communication channel provides a full-duplex |
| 653 | asynchronous/synchronous receiver and transmitter deriving an |
| 654 | operating frequency from the internal bus clock or an external clock. |
| 655 | |
Jagan Teki | a73597a | 2016-10-08 18:00:08 +0530 | [diff] [blame] | 656 | config MXC_UART |
| 657 | bool "IMX serial port support" |
Tom Rini | eac76b8 | 2021-09-09 07:54:50 -0400 | [diff] [blame] | 658 | depends on ARCH_MX31 || MX5 || MX6 || MX7 || IMX8M |
Jagan Teki | a73597a | 2016-10-08 18:00:08 +0530 | [diff] [blame] | 659 | help |
| 660 | If you have a machine based on a Motorola IMX CPU you |
| 661 | can enable its onboard serial port by enabling this option. |
| 662 | |
Keng Soon Cheah | 755e2d0 | 2017-08-24 20:29:07 -0700 | [diff] [blame] | 663 | config NULLDEV_SERIAL |
| 664 | bool "Null serial device" |
| 665 | help |
| 666 | Select this to enable null serial device support. A null serial |
| 667 | device merely acts as a placeholder for a serial device and does |
| 668 | nothing for all it's operation. |
| 669 | |
Paul Thacker | 1dc4283 | 2016-01-28 15:30:14 +0530 | [diff] [blame] | 670 | config PIC32_SERIAL |
| 671 | bool "Support for Microchip PIC32 on-chip UART" |
| 672 | depends on DM_SERIAL && MACH_PIC32 |
| 673 | default y |
| 674 | help |
| 675 | Support for the UART found on Microchip PIC32 SoC's. |
| 676 | |
Thomas Chou | a6cec01 | 2015-11-19 21:48:14 +0800 | [diff] [blame] | 677 | config SYS_NS16550 |
| 678 | bool "NS16550 UART or compatible" |
| 679 | help |
| 680 | Support NS16550 UART or compatible. This can be enabled in the |
| 681 | device tree with the correct input clock frequency. If the input |
| 682 | clock frequency is not defined in the device tree, the macro |
| 683 | CONFIG_SYS_NS16550_CLK defined in a legacy board header file will |
| 684 | be used. It can be a constant or a function to get clock, eg, |
| 685 | get_serial_clock(). |
| 686 | |
Simon Glass | f8b1a24 | 2019-12-19 17:58:18 -0700 | [diff] [blame] | 687 | config NS16550_DYNAMIC |
| 688 | bool "Allow NS16550 to be configured at runtime" |
| 689 | default y if SYS_COREBOOT || SYS_SLIMBOOTLOADER |
| 690 | help |
| 691 | Enable this option to allow device-tree control of the driver. |
| 692 | |
| 693 | Normally this driver is controlled by the following options: |
| 694 | |
| 695 | CONFIG_SYS_NS16550_PORT_MAPPED - indicates that port I/O is used for |
| 696 | access. If not enabled, then the UART is memory-mapped. |
| 697 | CONFIG_SYS_NS16550_MEM32 - if memory-mapped, indicates that 32-bit |
| 698 | access should be used (instead of 8-bit) |
| 699 | CONFIG_SYS_NS16550_REG_SIZE - indicates register width and also |
| 700 | endianness. If positive, big-endian access is used. If negative, |
| 701 | little-endian is used. |
| 702 | |
| 703 | It is not a good practice for a driver to be statically configured, |
| 704 | since it prevents the same driver being used for different types of |
| 705 | UARTs in a system. This option avoids this problem at the cost of a |
| 706 | slightly increased code size. |
| 707 | |
Andy Shevchenko | c65a7fe | 2017-02-28 14:04:10 +0200 | [diff] [blame] | 708 | config INTEL_MID_SERIAL |
| 709 | bool "Intel MID platform UART support" |
| 710 | depends on DM_SERIAL && OF_CONTROL |
| 711 | depends on INTEL_MID |
| 712 | select SYS_NS16550 |
| 713 | help |
| 714 | Select this to enable a UART for Intel MID platforms. |
| 715 | This uses the ns16550 driver as a library. |
| 716 | |
Alexander Graf | 65bfb42 | 2018-01-25 12:05:51 +0100 | [diff] [blame] | 717 | config PL011_SERIAL |
| 718 | bool "ARM PL011 driver" |
| 719 | depends on !DM_SERIAL |
| 720 | help |
| 721 | Select this to enable a UART for platforms using PL011. |
| 722 | |
Alexander Graf | 633ef89 | 2018-01-25 12:05:52 +0100 | [diff] [blame] | 723 | config PL01X_SERIAL |
| 724 | bool "ARM PL010 and PL011 driver" |
| 725 | depends on DM_SERIAL |
| 726 | help |
| 727 | Select this to enable a UART for platforms using PL010 or PL011. |
| 728 | |
Simon Glass | b3068ad | 2016-07-04 11:58:24 -0600 | [diff] [blame] | 729 | config ROCKCHIP_SERIAL |
| 730 | bool "Rockchip on-chip UART support" |
| 731 | depends on DM_SERIAL && SPL_OF_PLATDATA |
| 732 | help |
| 733 | Select this to enable a debug UART for Rockchip devices when using |
Tom Rini | 9732f79 | 2017-01-14 12:20:23 -0500 | [diff] [blame] | 734 | CONFIG_SPL_OF_PLATDATA (i.e. a compiled-in device tree replacemenmt). |
Simon Glass | b3068ad | 2016-07-04 11:58:24 -0600 | [diff] [blame] | 735 | This uses the ns16550 driver, converting the platdata from of-platdata |
| 736 | to the ns16550 format. |
| 737 | |
Mark Kettenis | 3b9ad30 | 2021-02-12 23:22:18 +0100 | [diff] [blame] | 738 | config S5P_SERIAL |
| 739 | bool "Support for Samsung S5P UART" |
| 740 | depends on ARCH_EXYNOS || ARCH_S5PC1XX |
| 741 | default y |
| 742 | help |
| 743 | Select this to enable Samsung S5P UART support. |
| 744 | |
Simon Glass | 8579a51 | 2015-03-06 13:19:03 -0700 | [diff] [blame] | 745 | config SANDBOX_SERIAL |
| 746 | bool "Sandbox UART support" |
Masahiro Yamada | a831867 | 2015-08-28 20:14:21 +0900 | [diff] [blame] | 747 | depends on SANDBOX |
Simon Glass | 8579a51 | 2015-03-06 13:19:03 -0700 | [diff] [blame] | 748 | help |
| 749 | Select this to enable a seral UART for sandbox. This is required to |
| 750 | operate correctly, otherwise you will see no serial output from |
| 751 | sandbox. The emulated UART will display to the console and console |
| 752 | input will be fed into the UART. This allows you to interact with |
| 753 | U-Boot. |
| 754 | |
| 755 | The operation of the console is controlled by the -t command-line |
| 756 | flag. In raw mode, U-Boot sees all characters from the terminal |
| 757 | before they are processed, including Ctrl-C. In cooked mode, Ctrl-C |
| 758 | is processed by the terminal, and terminates U-Boot. Valid options |
| 759 | are: |
| 760 | |
| 761 | -t raw-with-sigs Raw mode, Ctrl-C will terminate U-Boot |
| 762 | -t raw Raw mode, Ctrl-C is processed by U-Boot |
| 763 | -t cooked Cooked mode, Ctrl-C terminates |
| 764 | |
Marek Vasut | 2b2e483 | 2017-07-21 23:18:46 +0200 | [diff] [blame] | 765 | config SCIF_CONSOLE |
| 766 | bool "Renesas SCIF UART support" |
| 767 | depends on SH || ARCH_RMOBILE |
| 768 | help |
| 769 | Select this to enable Renesas SCIF UART. To operate serial ports |
| 770 | on systems with RCar or SH SoCs, say Y to this option. If unsure, |
| 771 | say N. |
| 772 | |
Masahiro Yamada | 4261c64 | 2014-10-23 22:26:11 +0900 | [diff] [blame] | 773 | config UNIPHIER_SERIAL |
Masahiro Yamada | 563ee4c | 2015-05-29 17:30:01 +0900 | [diff] [blame] | 774 | bool "Support for UniPhier on-chip UART" |
Masahiro Yamada | a831867 | 2015-08-28 20:14:21 +0900 | [diff] [blame] | 775 | depends on ARCH_UNIPHIER |
Masahiro Yamada | df5fda0 | 2016-08-25 19:00:37 +0900 | [diff] [blame] | 776 | default y |
Masahiro Yamada | 4261c64 | 2014-10-23 22:26:11 +0900 | [diff] [blame] | 777 | help |
Masahiro Yamada | 563ee4c | 2015-05-29 17:30:01 +0900 | [diff] [blame] | 778 | If you have a UniPhier based board and want to use the on-chip |
| 779 | serial ports, say Y to this option. If unsure, say N. |
Simon Glass | 1c32bdb | 2015-07-27 15:47:23 -0600 | [diff] [blame] | 780 | |
Michal Simek | 93ce505 | 2015-12-09 12:50:05 +0100 | [diff] [blame] | 781 | config XILINX_UARTLITE |
| 782 | bool "Xilinx Uarlite support" |
Michal Simek | 3239d71 | 2020-08-24 14:41:51 +0200 | [diff] [blame] | 783 | depends on DM_SERIAL |
Michal Simek | 93ce505 | 2015-12-09 12:50:05 +0100 | [diff] [blame] | 784 | help |
| 785 | If you have a Xilinx based board and want to use the uartlite |
| 786 | serial ports, say Y to this option. If unsure, say N. |
| 787 | |
Beniamino Galvani | d1037e4 | 2016-05-08 08:30:16 +0200 | [diff] [blame] | 788 | config MESON_SERIAL |
| 789 | bool "Support for Amlogic Meson UART" |
| 790 | depends on DM_SERIAL && ARCH_MESON |
| 791 | help |
| 792 | If you have an Amlogic Meson based board and want to use the on-chip |
| 793 | serial ports, say Y to this option. If unsure, say N. |
| 794 | |
Mateusz Kulikowski | 8aac697 | 2016-03-31 23:12:14 +0200 | [diff] [blame] | 795 | config MSM_SERIAL |
| 796 | bool "Qualcomm on-chip UART" |
| 797 | depends on DM_SERIAL |
| 798 | help |
| 799 | Support Data Mover UART used on Qualcomm Snapdragon SoCs. |
| 800 | It should support all Qualcomm devices with UARTDM version 1.4, |
| 801 | for example APQ8016 and MSM8916. |
| 802 | Single baudrate is supported in current implementation (115200). |
Stefan Roese | 027276a | 2016-05-17 16:36:00 +0200 | [diff] [blame] | 803 | |
Stefan Roese | 09e9076 | 2021-04-07 09:12:31 +0200 | [diff] [blame] | 804 | config OCTEON_SERIAL_BOOTCMD |
| 805 | bool "MIPS Octeon PCI remote bootcmd input" |
| 806 | depends on ARCH_OCTEON |
| 807 | depends on DM_SERIAL |
| 808 | select SYS_IS_IN_ENV |
| 809 | select CONSOLE_MUX |
| 810 | help |
| 811 | This driver supports remote input over the PCIe bus from a host |
| 812 | to U-Boot for entering commands. It is utilized by the host |
| 813 | commands 'oct-remote-load' and 'oct-remote-bootcmd'. |
| 814 | |
Stefan Roese | 0145225 | 2021-04-07 09:12:30 +0200 | [diff] [blame] | 815 | config OCTEON_SERIAL_PCIE_CONSOLE |
| 816 | bool "MIPS Octeon PCIe remote console" |
| 817 | depends on ARCH_OCTEON |
| 818 | depends on (DM_SERIAL && DM_STDIO) |
| 819 | select SYS_STDIO_DEREGISTER |
| 820 | select SYS_CONSOLE_IS_IN_ENV |
| 821 | select CONSOLE_MUX |
| 822 | help |
| 823 | This driver supports remote console over the PCIe bus when the |
| 824 | Octeon is running in PCIe target mode. The host program |
| 825 | 'oct-remote-console' can be used to connect to this console. |
| 826 | The console number will likely be 0 or 1. |
| 827 | |
Lokesh Vutla | 42cb4b8 | 2018-08-27 15:55:24 +0530 | [diff] [blame] | 828 | config OMAP_SERIAL |
| 829 | bool "Support for OMAP specific UART" |
| 830 | depends on DM_SERIAL |
Lokesh Vutla | 9bdec00 | 2018-08-27 15:57:08 +0530 | [diff] [blame] | 831 | default y if (ARCH_OMAP2PLUS || ARCH_K3) |
Lokesh Vutla | 42cb4b8 | 2018-08-27 15:55:24 +0530 | [diff] [blame] | 832 | select SYS_NS16550 |
| 833 | help |
| 834 | If you have an TI based SoC and want to use the on-chip serial |
| 835 | port, say Y to this option. If unsure say N. |
| 836 | |
Manivannan Sadhasivam | 01e4739 | 2018-06-14 23:38:38 +0530 | [diff] [blame] | 837 | config OWL_SERIAL |
| 838 | bool "Actions Semi OWL UART" |
| 839 | depends on DM_SERIAL && ARCH_OWL |
| 840 | help |
| 841 | If you have a Actions Semi OWL based board and want to use the on-chip |
| 842 | serial port, say Y to this option. If unsure, say N. |
| 843 | Single baudrate is supported in current implementation (115200). |
| 844 | |
Marcel Ziswiler | cd22bf6 | 2016-11-14 21:40:25 +0100 | [diff] [blame] | 845 | config PXA_SERIAL |
| 846 | bool "PXA serial port support" |
| 847 | help |
| 848 | If you have a machine based on a Marvell XScale PXA2xx CPU you |
| 849 | can enable its onboard serial ports by enabling this option. |
| 850 | |
Anup Patel | 4b1d68f | 2018-12-15 11:35:15 +0530 | [diff] [blame] | 851 | config SIFIVE_SERIAL |
| 852 | bool "SiFive UART support" |
| 853 | depends on DM_SERIAL |
| 854 | help |
| 855 | This driver supports the SiFive UART. If unsure say N. |
| 856 | |
Patrice Chotard | 42d742b | 2017-02-21 13:37:07 +0100 | [diff] [blame] | 857 | config STI_ASC_SERIAL |
| 858 | bool "STMicroelectronics on-chip UART" |
| 859 | depends on DM_SERIAL && ARCH_STI |
| 860 | help |
| 861 | Select this to enable Asynchronous Serial Controller available |
| 862 | on STiH410 SoC. This is a basic implementation, it supports |
| 863 | following baudrate 9600, 19200, 38400, 57600 and 115200. |
| 864 | |
Patrice Chotard | 9e27650 | 2018-01-12 09:23:49 +0100 | [diff] [blame] | 865 | config STM32_SERIAL |
Patrice Chotard | 72cefd5 | 2017-07-26 15:48:39 +0200 | [diff] [blame] | 866 | bool "STMicroelectronics STM32 SoCs on-chip UART" |
Patrick Delaunay | 85b5397 | 2018-03-12 10:46:10 +0100 | [diff] [blame] | 867 | depends on DM_SERIAL && (STM32F4 || STM32F7 || STM32H7 || ARCH_STM32MP) |
Patrice Chotard | 72cefd5 | 2017-07-26 15:48:39 +0200 | [diff] [blame] | 868 | help |
Patrick Delaunay | 85b5397 | 2018-03-12 10:46:10 +0100 | [diff] [blame] | 869 | If you have a machine based on a STM32 F4, F7, H7 or MP1 SOC |
| 870 | you can enable its onboard serial ports, say Y to this option. |
Patrice Chotard | 3b2a14f | 2017-09-13 18:00:05 +0200 | [diff] [blame] | 871 | If unsure, say N. |
Patrice Chotard | 72cefd5 | 2017-07-26 15:48:39 +0200 | [diff] [blame] | 872 | |
Michal Simek | ab75453 | 2017-11-06 09:16:05 +0100 | [diff] [blame] | 873 | config ZYNQ_SERIAL |
| 874 | bool "Cadence (Xilinx Zynq) UART support" |
Michal Simek | 3239d71 | 2020-08-24 14:41:51 +0200 | [diff] [blame] | 875 | depends on DM_SERIAL |
Michal Simek | ab75453 | 2017-11-06 09:16:05 +0100 | [diff] [blame] | 876 | help |
| 877 | This driver supports the Cadence UART. It is found e.g. in Xilinx |
| 878 | Zynq/ZynqMP. |
| 879 | |
developer | 90af58f | 2018-11-15 10:08:02 +0800 | [diff] [blame] | 880 | config MTK_SERIAL |
| 881 | bool "MediaTek High-speed UART support" |
| 882 | depends on DM_SERIAL |
| 883 | help |
| 884 | Select this to enable UART support for MediaTek High-speed UART |
| 885 | devices. This driver uses driver model and requires a device |
| 886 | tree binding to operate. |
| 887 | The High-speed UART is compatible with the ns16550a UART and have |
| 888 | its own high-speed registers. |
| 889 | |
developer | e076b9e | 2020-11-12 16:36:05 +0800 | [diff] [blame] | 890 | config MT7620_SERIAL |
| 891 | bool "UART driver for MediaTek MT7620 and earlier SoCs" |
| 892 | depends on DM_SERIAL |
| 893 | help |
| 894 | Select this to enable UART support for MediaTek MT7620 and earlier |
| 895 | SoCs. This driver uses driver model and requires a device tree |
| 896 | binding to operate. |
| 897 | The UART driver for MediaTek MT7620 and earlier SoCs is *NOT* |
| 898 | compatible with the ns16550a UART. |
| 899 | |
Christophe Leroy | 9ac4a54 | 2017-07-06 10:33:27 +0200 | [diff] [blame] | 900 | config MPC8XX_CONS |
| 901 | bool "Console driver for MPC8XX" |
Christophe Leroy | b3510fb | 2018-03-16 17:20:41 +0100 | [diff] [blame] | 902 | depends on MPC8xx |
Christophe Leroy | 9ac4a54 | 2017-07-06 10:33:27 +0200 | [diff] [blame] | 903 | default y |
| 904 | |
Peng Fan | 8162f8f | 2020-08-06 12:42:50 +0300 | [diff] [blame] | 905 | config XEN_SERIAL |
| 906 | bool "XEN serial support" |
| 907 | depends on XEN |
| 908 | help |
| 909 | If built without DM support, then requires Xen |
| 910 | to be built with CONFIG_VERBOSE_DEBUG. |
| 911 | |
Christophe Leroy | 9ac4a54 | 2017-07-06 10:33:27 +0200 | [diff] [blame] | 912 | choice |
| 913 | prompt "Console port" |
| 914 | default 8xx_CONS_SMC1 |
| 915 | depends on MPC8XX_CONS |
| 916 | help |
| 917 | Depending on board, select one serial port |
| 918 | (CONFIG_8xx_CONS_SMC1 or CONFIG_8xx_CONS_SMC2) |
| 919 | |
| 920 | config 8xx_CONS_SMC1 |
| 921 | bool "SMC1" |
| 922 | |
| 923 | config 8xx_CONS_SMC2 |
| 924 | bool "SMC2" |
| 925 | |
| 926 | endchoice |
| 927 | |
| 928 | config SYS_SMC_RXBUFLEN |
| 929 | int "Console Rx buffer length" |
| 930 | depends on MPC8XX_CONS |
| 931 | default 1 |
| 932 | help |
| 933 | With CONFIG_SYS_SMC_RXBUFLEN it is possible to define |
| 934 | the maximum receive buffer length for the SMC. |
| 935 | This option is actual only for 8xx possible. |
| 936 | If using CONFIG_SYS_SMC_RXBUFLEN also CONFIG_SYS_MAXIDLE |
| 937 | must be defined, to setup the maximum idle timeout for |
| 938 | the SMC. |
| 939 | |
| 940 | config SYS_MAXIDLE |
| 941 | int "maximum idle timeout" |
| 942 | depends on MPC8XX_CONS |
| 943 | default 0 |
| 944 | |
| 945 | config SYS_BRGCLK_PRESCALE |
| 946 | int "BRG Clock Prescale" |
| 947 | depends on MPC8XX_CONS |
| 948 | default 1 |
| 949 | |
| 950 | config SYS_SDSR |
| 951 | hex "SDSR Value" |
| 952 | depends on MPC8XX_CONS |
| 953 | default 0x83 |
| 954 | |
| 955 | config SYS_SDMR |
| 956 | hex "SDMR Value" |
| 957 | depends on MPC8XX_CONS |
| 958 | default 0 |
| 959 | |
Simon Glass | 388f78e | 2021-08-08 12:20:13 -0600 | [diff] [blame] | 960 | endif |