Masahiro Yamada | 0b11dbf | 2015-07-26 02:46:26 +0900 | [diff] [blame] | 1 | # |
| 2 | # Serial device configuration |
| 3 | # |
| 4 | |
Simon Glass | 5251048 | 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 | 0b11dbf | 2015-07-26 02:46:26 +0900 | [diff] [blame] | 17 | |
Philipp Tomsich | f40574e | 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 | 8c45858 | 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 | 6f6b7cf | 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 | 92c55b6 | 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 | a074667 | 2019-08-24 13:50:34 -0500 | [diff] [blame] | 59 | depends on DM_SERIAL && SPL |
Simon Glass | 92c55b6 | 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 | aa0ffe8 | 2018-10-01 12:22:20 -0600 | [diff] [blame] | 67 | config TPL_SERIAL_PRESENT |
| 68 | bool "Provide a serial driver in TPL" |
Adam Ford | a074667 | 2019-08-24 13:50:34 -0500 | [diff] [blame] | 69 | depends on DM_SERIAL && TPL |
Simon Glass | aa0ffe8 | 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 | |
Simon Glass | 747093d | 2022-04-30 00:56:53 -0600 | [diff] [blame] | 77 | config VPL_SERIAL_PRESENT |
| 78 | bool "Provide a serial driver in VPL" |
| 79 | depends on DM_SERIAL && VPL |
| 80 | default y |
| 81 | help |
| 82 | In very space-constrained devices even the full UART driver is too |
| 83 | large. In this case the debug UART can still be used in some cases. |
| 84 | This option enables the full UART in TPL, so if is it disabled, |
| 85 | the full UART driver will be omitted, thus saving space. |
| 86 | |
Mylène Josserand | 7095f86 | 2017-04-02 12:59:11 +0200 | [diff] [blame] | 87 | config CONS_INDEX |
| 88 | int "UART used for console" |
Tom Rini | 6f6b7cf | 2018-03-06 19:02:27 -0500 | [diff] [blame] | 89 | depends on SPECIFY_CONSOLE_INDEX |
| 90 | range 0 6 |
Mylène Josserand | 7095f86 | 2017-04-02 12:59:11 +0200 | [diff] [blame] | 91 | default 1 |
| 92 | help |
Tom Rini | 6f6b7cf | 2018-03-06 19:02:27 -0500 | [diff] [blame] | 93 | Set this to match the UART number of the serial console. |
Mylène Josserand | 7095f86 | 2017-04-02 12:59:11 +0200 | [diff] [blame] | 94 | |
Masahiro Yamada | da333ae | 2014-10-23 22:26:09 +0900 | [diff] [blame] | 95 | config DM_SERIAL |
| 96 | bool "Enable Driver Model for serial drivers" |
| 97 | depends on DM |
Sean Anderson | 327bb3b | 2019-12-17 21:40:09 -0500 | [diff] [blame] | 98 | select SYS_MALLOC_F |
Masahiro Yamada | da333ae | 2014-10-23 22:26:09 +0900 | [diff] [blame] | 99 | help |
Simon Glass | f94a1be | 2015-02-05 21:41:35 -0700 | [diff] [blame] | 100 | Enable driver model for serial. This replaces |
| 101 | drivers/serial/serial.c with the serial uclass, which |
| 102 | implements serial_putc() etc. The uclass interface is |
| 103 | defined in include/serial.h. |
Masahiro Yamada | ff247b7 | 2014-10-23 22:26:11 +0900 | [diff] [blame] | 104 | |
Stefan Roese | 3ca7a06 | 2017-08-16 17:37:16 +0200 | [diff] [blame] | 105 | config SERIAL_RX_BUFFER |
| 106 | bool "Enable RX buffer for serial input" |
| 107 | depends on DM_SERIAL |
| 108 | help |
| 109 | Enable RX buffer support for the serial driver. This enables |
| 110 | pasting longer strings, even when the RX FIFO of the UART is |
| 111 | not big enough (e.g. 16 bytes on the normal NS16550). |
| 112 | |
| 113 | config SERIAL_RX_BUFFER_SIZE |
| 114 | int "RX buffer size" |
| 115 | depends on SERIAL_RX_BUFFER |
| 116 | default 256 |
| 117 | help |
| 118 | The size of the RX buffer (needs to be power of 2) |
| 119 | |
Sean Anderson | 7a76347 | 2022-03-22 16:59:34 -0400 | [diff] [blame] | 120 | config SERIAL_PUTS |
| 121 | bool "Enable printing strings all at once" |
| 122 | depends on DM_SERIAL |
| 123 | help |
| 124 | Some serial drivers are much more efficient when printing multiple |
| 125 | characters at once rather than printing characters individually. This |
| 126 | can be because they can load a fifo, or because individual print |
| 127 | calls have a constant overhead. With this option set, the serial |
| 128 | subsystem will try to provide serial drivers with as many characters |
| 129 | at once as possible, instead of printing characters one by one. Most |
| 130 | serial drivers do not need this config to print efficiently. If |
| 131 | unsure, say N. |
| 132 | |
Alexander Graf | ae5326a | 2018-01-29 13:57:20 +0100 | [diff] [blame] | 133 | config SERIAL_SEARCH_ALL |
| 134 | bool "Search for serial devices after default one failed" |
| 135 | depends on DM_SERIAL |
| 136 | help |
| 137 | The serial subsystem only searches for a single serial device |
| 138 | that was instantiated, but does not check whether it was probed |
| 139 | correctly. With this option set, we make successful probing |
| 140 | mandatory and search for fallback serial devices if the default |
| 141 | device does not work. |
| 142 | |
| 143 | If unsure, say N. |
| 144 | |
Vabhav Sharma | 67b2ed0 | 2020-12-09 10:42:04 +0530 | [diff] [blame] | 145 | config SERIAL_PROBE_ALL |
| 146 | bool "Probe all available serial devices" |
| 147 | depends on DM_SERIAL |
Vabhav Sharma | 67b2ed0 | 2020-12-09 10:42:04 +0530 | [diff] [blame] | 148 | help |
| 149 | The serial subsystem only probes for a single serial device, |
| 150 | but does not probe for other remaining serial devices. |
| 151 | With this option set, we make probing and searching for |
| 152 | all available devices optional. |
| 153 | Normally, U-Boot talks to one serial port at a time, but SBSA |
| 154 | compliant UART devices like PL011 require initialization |
| 155 | by firmware and to let the kernel use serial port for sending |
| 156 | and receiving the characters. |
| 157 | |
| 158 | If unsure, say N. |
| 159 | |
Simon Glass | 891f7ae | 2017-04-02 09:50:32 -0600 | [diff] [blame] | 160 | config SPL_DM_SERIAL |
Heiko Schocher | 0424990 | 2017-06-21 06:23:10 +0200 | [diff] [blame] | 161 | bool "Enable Driver Model for serial drivers in SPL" |
Tom Rini | 6f6b7cf | 2018-03-06 19:02:27 -0500 | [diff] [blame] | 162 | depends on DM_SERIAL && SPL_DM |
Sean Anderson | 327bb3b | 2019-12-17 21:40:09 -0500 | [diff] [blame] | 163 | select SYS_SPL_MALLOC_F |
Tom Rini | 6f6b7cf | 2018-03-06 19:02:27 -0500 | [diff] [blame] | 164 | default y |
Simon Glass | 891f7ae | 2017-04-02 09:50:32 -0600 | [diff] [blame] | 165 | help |
| 166 | Enable driver model for serial in SPL. This replaces |
| 167 | drivers/serial/serial.c with the serial uclass, which |
| 168 | implements serial_putc() etc. The uclass interface is |
| 169 | defined in include/serial.h. |
| 170 | |
| 171 | config TPL_DM_SERIAL |
Heiko Schocher | 0424990 | 2017-06-21 06:23:10 +0200 | [diff] [blame] | 172 | bool "Enable Driver Model for serial drivers in TPL" |
Thomas Hebb | 6920f00 | 2019-11-10 08:23:55 -0800 | [diff] [blame] | 173 | depends on DM_SERIAL && TPL_DM |
Sean Anderson | 327bb3b | 2019-12-17 21:40:09 -0500 | [diff] [blame] | 174 | select SYS_TPL_MALLOC_F |
Simon Glass | 891f7ae | 2017-04-02 09:50:32 -0600 | [diff] [blame] | 175 | default y if TPL && DM_SERIAL |
| 176 | help |
| 177 | Enable driver model for serial in TPL. This replaces |
| 178 | drivers/serial/serial.c with the serial uclass, which |
| 179 | implements serial_putc() etc. The uclass interface is |
| 180 | defined in include/serial.h. |
| 181 | |
Simon Glass | 747093d | 2022-04-30 00:56:53 -0600 | [diff] [blame] | 182 | config VPL_DM_SERIAL |
| 183 | bool "Enable Driver Model for serial drivers in VPL" |
| 184 | depends on DM_SERIAL |
| 185 | default y if VPL && DM_SERIAL |
| 186 | help |
| 187 | Enable driver model for serial in VPL. This replaces |
| 188 | drivers/serial/serial.c with the serial uclass, which |
| 189 | implements serial_putc() etc. The uclass interface is |
| 190 | defined in include/serial.h. |
| 191 | |
Simon Glass | 2f964aa | 2015-01-26 18:27:07 -0700 | [diff] [blame] | 192 | config DEBUG_UART |
| 193 | bool "Enable an early debug UART for debugging" |
| 194 | help |
| 195 | The debug UART is intended for use very early in U-Boot to debug |
| 196 | problems when an ICE or other debug mechanism is not available. |
| 197 | |
| 198 | To use it you should: |
| 199 | - Make sure your UART supports this interface |
| 200 | - Enable CONFIG_DEBUG_UART |
| 201 | - Enable the CONFIG for your UART to tell it to provide this interface |
| 202 | (e.g. CONFIG_DEBUG_UART_NS16550) |
| 203 | - Define the required settings as needed (see below) |
| 204 | - Call debug_uart_init() before use |
| 205 | - Call debug_uart_putc() to output a character |
| 206 | |
| 207 | Depending on your platform it may be possible to use this UART before |
| 208 | a stack is available. |
| 209 | |
| 210 | If your UART does not support this interface you can probably add |
| 211 | support quite easily. Remember that you cannot use driver model and |
| 212 | it is preferred to use no stack. |
| 213 | |
| 214 | You must not use this UART once driver model is working and the |
| 215 | serial drivers are up and running (done in serial_init()). Otherwise |
| 216 | the drivers may conflict and you will get strange output. |
| 217 | |
Simon Glass | 21d0043 | 2015-01-26 18:27:09 -0700 | [diff] [blame] | 218 | choice |
| 219 | prompt "Select which UART will provide the debug UART" |
| 220 | depends on DEBUG_UART |
Thomas Chou | b1e361b | 2015-11-19 21:48:03 +0800 | [diff] [blame] | 221 | default DEBUG_UART_NS16550 |
Simon Glass | 21d0043 | 2015-01-26 18:27:09 -0700 | [diff] [blame] | 222 | |
Thomas Chou | 220e802 | 2015-10-23 07:36:37 +0800 | [diff] [blame] | 223 | config DEBUG_UART_ALTERA_JTAGUART |
| 224 | bool "Altera JTAG UART" |
Michal Simek | 4cc24ae | 2020-05-28 12:05:12 +0200 | [diff] [blame] | 225 | depends on ALTERA_JTAG_UART |
Thomas Chou | 220e802 | 2015-10-23 07:36:37 +0800 | [diff] [blame] | 226 | help |
| 227 | Select this to enable a debug UART using the altera_jtag_uart driver. |
| 228 | You will need to provide parameters to make this work. The driver will |
| 229 | be available until the real driver model serial is running. |
| 230 | |
Thomas Chou | da2f838 | 2015-10-21 21:26:54 +0800 | [diff] [blame] | 231 | config DEBUG_UART_ALTERA_UART |
| 232 | bool "Altera UART" |
Michal Simek | 4cc24ae | 2020-05-28 12:05:12 +0200 | [diff] [blame] | 233 | depends on ALTERA_UART |
Thomas Chou | da2f838 | 2015-10-21 21:26:54 +0800 | [diff] [blame] | 234 | help |
| 235 | Select this to enable a debug UART using the altera_uart driver. |
| 236 | You will need to provide parameters to make this work. The driver will |
| 237 | be available until the real driver model serial is running. |
| 238 | |
Wills Wang | 60b4976 | 2016-03-16 16:59:57 +0800 | [diff] [blame] | 239 | config DEBUG_UART_AR933X |
| 240 | bool "QCA/Atheros ar933x" |
| 241 | depends on AR933X_UART |
| 242 | help |
| 243 | Select this to enable a debug UART using the ar933x uart driver. |
| 244 | You will need to provide parameters to make this work. The |
| 245 | driver will be available until the real driver model serial is |
| 246 | running. |
| 247 | |
Alexey Brodkin | 5470501 | 2018-05-21 16:42:07 +0300 | [diff] [blame] | 248 | config DEBUG_ARC_SERIAL |
| 249 | bool "ARC UART" |
| 250 | depends on ARC_SERIAL |
| 251 | help |
| 252 | Select this to enable a debug UART using the ARC UART driver. |
| 253 | You will need to provide parameters to make this work. The |
| 254 | driver will be available until the real driver model serial is |
| 255 | running. |
| 256 | |
Wenyou Yang | 998cf3c | 2016-10-17 09:49:55 +0800 | [diff] [blame] | 257 | config DEBUG_UART_ATMEL |
| 258 | bool "Atmel USART" |
Michal Simek | 4cc24ae | 2020-05-28 12:05:12 +0200 | [diff] [blame] | 259 | depends on ATMEL_USART |
Wenyou Yang | 998cf3c | 2016-10-17 09:49:55 +0800 | [diff] [blame] | 260 | help |
| 261 | Select this to enable a debug UART using the atmel usart driver. You |
| 262 | will need to provide parameters to make this work. The driver will |
| 263 | be available until the real driver-model serial is running. |
| 264 | |
Álvaro Fernández Rojas | 3058104 | 2017-04-25 00:39:16 +0200 | [diff] [blame] | 265 | config DEBUG_UART_BCM6345 |
| 266 | bool "BCM6345 UART" |
| 267 | depends on BCM6345_SERIAL |
| 268 | help |
| 269 | Select this to enable a debug UART on BCM6345 SoCs. You |
| 270 | will need to provide parameters to make this work. The driver will |
| 271 | be available until the real driver model serial is running. |
| 272 | |
Simon Glass | 21d0043 | 2015-01-26 18:27:09 -0700 | [diff] [blame] | 273 | config DEBUG_UART_NS16550 |
| 274 | bool "ns16550" |
Michal Simek | 4cc24ae | 2020-05-28 12:05:12 +0200 | [diff] [blame] | 275 | depends on SYS_NS16550 |
Simon Glass | 21d0043 | 2015-01-26 18:27:09 -0700 | [diff] [blame] | 276 | help |
| 277 | Select this to enable a debug UART using the ns16550 driver. You |
| 278 | will need to provide parameters to make this work. The driver will |
| 279 | be available until the real driver model serial is running. |
| 280 | |
Simon Glass | 275854b | 2015-08-04 12:33:40 -0600 | [diff] [blame] | 281 | config DEBUG_EFI_CONSOLE |
| 282 | bool "EFI" |
| 283 | depends on EFI_APP |
| 284 | help |
| 285 | Select this to enable a debug console which calls back to EFI to |
| 286 | output to the console. This can be useful for early debugging of |
| 287 | U-Boot when running on top of EFI (Extensive Firmware Interface). |
| 288 | This is a type of BIOS used by PCs. |
| 289 | |
Samuel Holland | 41f7be7 | 2021-09-12 10:56:09 -0500 | [diff] [blame] | 290 | config DEBUG_SBI_CONSOLE |
| 291 | bool "SBI" |
| 292 | depends on SBI_V01 |
| 293 | help |
| 294 | Select this to enable a debug console which calls back to SBI to |
| 295 | output to the console. This can be useful for early debugging of |
| 296 | U-Boot when running on top of SBI (Supervisor Binary Interface). |
| 297 | |
Simon Glass | bf6e702 | 2015-07-02 18:15:54 -0600 | [diff] [blame] | 298 | config DEBUG_UART_S5P |
| 299 | bool "Samsung S5P" |
Mark Kettenis | d520e1f | 2021-10-23 16:58:04 +0200 | [diff] [blame] | 300 | depends on ARCH_APPLE || ARCH_EXYNOS || ARCH_S5PC1XX |
Simon Glass | bf6e702 | 2015-07-02 18:15:54 -0600 | [diff] [blame] | 301 | help |
| 302 | Select this to enable a debug UART using the serial_s5p driver. You |
| 303 | will need to provide parameters to make this work. The driver will |
| 304 | be available until the real driver-model serial is running. |
| 305 | |
Dzmitry Sankouski | 324df15 | 2021-10-17 13:44:27 +0300 | [diff] [blame] | 306 | config DEBUG_UART_MSM_GENI |
| 307 | bool "Qualcomm snapdragon" |
| 308 | depends on ARCH_SNAPDRAGON |
| 309 | help |
| 310 | Select this to enable a debug UART using the serial_msm driver. You |
| 311 | will need to provide parameters to make this work. The driver will |
| 312 | be available until the real driver-model serial is running. |
| 313 | |
Beniamino Galvani | bfcef28 | 2016-05-08 08:30:16 +0200 | [diff] [blame] | 314 | config DEBUG_UART_MESON |
| 315 | bool "Amlogic Meson" |
| 316 | depends on MESON_SERIAL |
| 317 | help |
| 318 | Select this to enable a debug UART using the serial_meson driver. You |
| 319 | will need to provide parameters to make this work. The driver will |
| 320 | be available until the real driver-model serial is running. |
| 321 | |
Michal Simek | 4166ba3 | 2015-12-14 16:55:10 +0100 | [diff] [blame] | 322 | config DEBUG_UART_UARTLITE |
| 323 | bool "Xilinx Uartlite" |
Michal Simek | 4cc24ae | 2020-05-28 12:05:12 +0200 | [diff] [blame] | 324 | depends on XILINX_UARTLITE |
Michal Simek | 4166ba3 | 2015-12-14 16:55:10 +0100 | [diff] [blame] | 325 | help |
| 326 | Select this to enable a debug UART using the serial_uartlite driver. |
| 327 | You will need to provide parameters to make this work. The driver will |
| 328 | be available until the real driver-model serial is running. |
| 329 | |
Michal Simek | 966bfa7 | 2016-02-23 10:02:28 +0100 | [diff] [blame] | 330 | config DEBUG_UART_ARM_DCC |
| 331 | bool "ARM DCC" |
Michal Simek | 4cc24ae | 2020-05-28 12:05:12 +0200 | [diff] [blame] | 332 | depends on ARM_DCC |
Michal Simek | 966bfa7 | 2016-02-23 10:02:28 +0100 | [diff] [blame] | 333 | help |
| 334 | Select this to enable a debug UART using the ARM JTAG DCC port. |
| 335 | The DCC port can be used for very early debugging and doesn't require |
| 336 | any additional setting like address/baudrate/clock. On systems without |
| 337 | any serial interface this is the easiest way how to get console. |
| 338 | Every ARM core has own DCC port which is the part of debug interface. |
| 339 | This port is available at least on ARMv6, ARMv7, ARMv8 and XScale |
| 340 | architectures. |
| 341 | |
Stefan Roese | 6985d49 | 2016-05-17 16:36:00 +0200 | [diff] [blame] | 342 | config DEBUG_MVEBU_A3700_UART |
| 343 | bool "Marvell Armada 3700" |
Michal Simek | 4cc24ae | 2020-05-28 12:05:12 +0200 | [diff] [blame] | 344 | depends on MVEBU_A3700_UART |
Stefan Roese | 6985d49 | 2016-05-17 16:36:00 +0200 | [diff] [blame] | 345 | help |
| 346 | Select this to enable a debug UART using the serial_mvebu driver. You |
| 347 | will need to provide parameters to make this work. The driver will |
| 348 | be available until the real driver-model serial is running. |
| 349 | |
Simon Glass | c54c0a4 | 2015-10-17 19:41:22 -0600 | [diff] [blame] | 350 | config DEBUG_UART_ZYNQ |
| 351 | bool "Xilinx Zynq" |
Michal Simek | 4cc24ae | 2020-05-28 12:05:12 +0200 | [diff] [blame] | 352 | depends on ZYNQ_SERIAL |
Simon Glass | c54c0a4 | 2015-10-17 19:41:22 -0600 | [diff] [blame] | 353 | help |
Michal Simek | 6bf87da | 2015-12-01 14:29:34 +0100 | [diff] [blame] | 354 | 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] | 355 | will need to provide parameters to make this work. The driver will |
| 356 | be available until the real driver-model serial is running. |
| 357 | |
Francois Retief | e43ce3f | 2015-10-29 12:55:34 +0200 | [diff] [blame] | 358 | config DEBUG_UART_APBUART |
| 359 | depends on LEON3 |
| 360 | bool "Gaisler APBUART" |
| 361 | help |
| 362 | Select this to enable a debug UART using the serial_leon3 driver. You |
| 363 | will need to provide parameters to make this work. The driver will |
| 364 | be available until the real driver model serial is running. |
| 365 | |
Sergey Temerkhanov | 19de815 | 2015-10-14 09:54:24 -0700 | [diff] [blame] | 366 | config DEBUG_UART_PL010 |
| 367 | bool "pl010" |
Tom Rini | bc08dc5 | 2021-05-22 08:47:08 -0400 | [diff] [blame] | 368 | depends on PL01X_SERIAL |
Sergey Temerkhanov | 19de815 | 2015-10-14 09:54:24 -0700 | [diff] [blame] | 369 | help |
| 370 | Select this to enable a debug UART using the pl01x driver with the |
| 371 | PL010 UART type. You will need to provide parameters to make this |
| 372 | work. The driver will be available until the real driver model |
| 373 | serial is running. |
| 374 | |
| 375 | config DEBUG_UART_PL011 |
| 376 | bool "pl011" |
Michal Simek | 5e9d283 | 2021-06-24 13:36:23 +0200 | [diff] [blame] | 377 | depends on PL01X_SERIAL || PL011_SERIAL |
Sergey Temerkhanov | 19de815 | 2015-10-14 09:54:24 -0700 | [diff] [blame] | 378 | help |
| 379 | Select this to enable a debug UART using the pl01x driver with the |
| 380 | PL011 UART type. You will need to provide parameters to make this |
| 381 | work. The driver will be available until the real driver model |
| 382 | serial is running. |
| 383 | |
Paul Thacker | 9e160ee | 2016-01-28 15:30:14 +0530 | [diff] [blame] | 384 | config DEBUG_UART_PIC32 |
| 385 | bool "Microchip PIC32" |
| 386 | depends on PIC32_SERIAL |
| 387 | help |
| 388 | Select this to enable a debug UART using the serial_pic32 driver. You |
| 389 | will need to provide parameters to make this work. The driver will |
| 390 | be available until the real driver model serial is running. |
| 391 | |
Jagan Teki | 61366b7 | 2017-06-06 05:31:51 +0000 | [diff] [blame] | 392 | config DEBUG_UART_MXC |
| 393 | bool "IMX Serial port" |
| 394 | depends on MXC_UART |
| 395 | help |
| 396 | Select this to enable a debug UART using the serial_mxc driver. You |
| 397 | will need to provide parameters to make this work. The driver will |
| 398 | be available until the real driver model serial is running. |
| 399 | |
Simon Glass | ee44176 | 2018-10-01 11:55:15 -0600 | [diff] [blame] | 400 | config DEBUG_UART_SANDBOX |
| 401 | bool "sandbox" |
| 402 | depends on SANDBOX_SERIAL |
| 403 | help |
| 404 | Select this to enable the debug UART using the sandbox driver. This |
| 405 | provides basic serial output from the console without needing to |
| 406 | start up driver model. The driver will be available until the real |
| 407 | driver model serial is running. |
| 408 | |
Sean Anderson | 74d11d3 | 2022-03-22 16:59:24 -0400 | [diff] [blame] | 409 | config DEBUG_UART_SEMIHOSTING |
| 410 | bool "semihosting" |
| 411 | depends on SEMIHOSTING_SERIAL |
| 412 | help |
| 413 | Select this to enable the debug UART using the semihosting driver. |
| 414 | This provides basic serial output from the console without needing to |
| 415 | start up driver model. The driver will be available until the real |
| 416 | driver model serial is running. |
| 417 | |
Marek Vasut | 836d1bf | 2023-02-28 22:17:22 +0100 | [diff] [blame] | 418 | config DEBUG_UART_SCIF |
| 419 | bool "Renesas SCIF UART" |
| 420 | depends on SH || ARCH_RMOBILE |
| 421 | help |
| 422 | Select this to enable a debug UART using the serial_sh driver. You |
| 423 | will need to provide parameters to make this work. The driver will |
| 424 | be available until the real driver-model serial is running. |
| 425 | |
Anup Patel | e284249 | 2018-12-15 11:35:15 +0530 | [diff] [blame] | 426 | config DEBUG_UART_SIFIVE |
| 427 | bool "SiFive UART" |
Michal Simek | 27b4a4a | 2020-07-10 12:41:13 +0200 | [diff] [blame] | 428 | depends on SIFIVE_SERIAL |
Anup Patel | e284249 | 2018-12-15 11:35:15 +0530 | [diff] [blame] | 429 | help |
| 430 | Select this to enable a debug UART using the serial_sifive driver. You |
| 431 | will need to provide parameters to make this work. The driver will |
| 432 | be available until the real driver-model serial is running. |
| 433 | |
Patrick Delaunay | 215c8be | 2018-05-17 14:50:42 +0200 | [diff] [blame] | 434 | config DEBUG_UART_STM32 |
| 435 | bool "STMicroelectronics STM32" |
| 436 | depends on STM32_SERIAL |
| 437 | help |
| 438 | Select this to enable a debug UART using the serial_stm32 driver |
| 439 | You will need to provide parameters to make this work. |
| 440 | The driver will be available until the real driver model |
| 441 | serial is running. |
| 442 | |
Masahiro Yamada | d5cf329 | 2016-03-18 16:41:52 +0900 | [diff] [blame] | 443 | config DEBUG_UART_UNIPHIER |
| 444 | bool "UniPhier on-chip UART" |
| 445 | depends on ARCH_UNIPHIER |
| 446 | help |
| 447 | Select this to enable a debug UART using the UniPhier on-chip UART. |
| 448 | You will need to provide DEBUG_UART_BASE to make this work. The |
| 449 | driver will be available until the real driver-model serial is |
| 450 | running. |
| 451 | |
Lokesh Vutla | a52cf08 | 2017-04-22 15:57:25 +0530 | [diff] [blame] | 452 | config DEBUG_UART_OMAP |
| 453 | bool "OMAP uart" |
Michal Simek | 4cc24ae | 2020-05-28 12:05:12 +0200 | [diff] [blame] | 454 | depends on OMAP_SERIAL |
Lokesh Vutla | a52cf08 | 2017-04-22 15:57:25 +0530 | [diff] [blame] | 455 | help |
| 456 | Select this to enable a debug UART using the omap ns16550 driver. |
| 457 | You will need to provide parameters to make this work. The driver |
| 458 | will be available until the real driver model serial is running. |
| 459 | |
Ryder Lee | 849b116 | 2018-11-15 10:08:02 +0800 | [diff] [blame] | 460 | config DEBUG_UART_MTK |
| 461 | bool "MediaTek High-speed UART" |
| 462 | depends on MTK_SERIAL |
| 463 | help |
| 464 | Select this to enable a debug UART using the MediaTek High-speed |
| 465 | UART driver. |
| 466 | You will need to provide parameters to make this work. The |
| 467 | driver will be available until the real driver model serial is |
| 468 | running. |
| 469 | |
Weijie Gao | 2161f1f | 2020-11-12 16:36:05 +0800 | [diff] [blame] | 470 | config DEBUG_UART_MT7620 |
| 471 | bool "UART driver for MediaTek MT7620 and earlier SoCs" |
| 472 | depends on MT7620_SERIAL |
| 473 | help |
| 474 | Select this to enable a debug UART using the UART driver for |
| 475 | MediaTek MT7620 and earlier SoCs. |
| 476 | You will need to provide parameters to make this work. The |
| 477 | driver will be available until the real driver model serial is |
| 478 | running. |
| 479 | |
Simon Glass | 21d0043 | 2015-01-26 18:27:09 -0700 | [diff] [blame] | 480 | endchoice |
| 481 | |
Simon Glass | 2f964aa | 2015-01-26 18:27:07 -0700 | [diff] [blame] | 482 | config DEBUG_UART_BASE |
| 483 | hex "Base address of UART" |
Tom Rini | 467591b | 2020-10-23 09:15:55 -0400 | [diff] [blame] | 484 | depends on DEBUG_UART |
Samuel Holland | 41f7be7 | 2021-09-12 10:56:09 -0500 | [diff] [blame] | 485 | default 0 if DEBUG_SBI_CONSOLE |
Simon Glass | ee44176 | 2018-10-01 11:55:15 -0600 | [diff] [blame] | 486 | default 0 if DEBUG_UART_SANDBOX |
Michal Simek | ad55d99 | 2022-06-06 09:44:01 +0200 | [diff] [blame] | 487 | default 0xff000000 if DEBUG_UART_ZYNQ && ARCH_ZYNQMP |
| 488 | default 0xe0000000 if DEBUG_UART_ZYNQ && ARCH_ZYNQ |
Simon Glass | 2f964aa | 2015-01-26 18:27:07 -0700 | [diff] [blame] | 489 | help |
| 490 | This is the base address of your UART for memory-mapped UARTs. |
| 491 | |
| 492 | A default should be provided by your board, but if not you will need |
| 493 | to use the correct value here. |
| 494 | |
Pali Rohár | 9f971ff | 2022-05-06 11:05:15 +0200 | [diff] [blame] | 495 | config SPL_DEBUG_UART_BASE |
| 496 | hex "Base address of UART for SPL" |
| 497 | depends on SPL && DEBUG_UART |
| 498 | default DEBUG_UART_BASE |
| 499 | help |
| 500 | This is the base address of your UART for memory-mapped UARTs for SPL. |
| 501 | |
Pali Rohár | 958789f | 2022-05-16 18:49:09 +0200 | [diff] [blame] | 502 | config TPL_DEBUG_UART_BASE |
| 503 | hex "Base address of UART for TPL" |
| 504 | depends on TPL && DEBUG_UART |
| 505 | default DEBUG_UART_BASE |
| 506 | help |
| 507 | This is the base address of your UART for memory-mapped UARTs for TPL. |
| 508 | |
Simon Glass | 2f964aa | 2015-01-26 18:27:07 -0700 | [diff] [blame] | 509 | config DEBUG_UART_CLOCK |
| 510 | int "UART input clock" |
Tom Rini | 467591b | 2020-10-23 09:15:55 -0400 | [diff] [blame] | 511 | depends on DEBUG_UART |
Samuel Holland | 41f7be7 | 2021-09-12 10:56:09 -0500 | [diff] [blame] | 512 | default 0 if DEBUG_SBI_CONSOLE |
Simon Glass | ee44176 | 2018-10-01 11:55:15 -0600 | [diff] [blame] | 513 | default 0 if DEBUG_UART_SANDBOX |
Marek Behún | 4a8ad58 | 2021-07-09 17:40:59 +0200 | [diff] [blame] | 514 | default 0 if DEBUG_MVEBU_A3700_UART |
Michal Simek | ad55d99 | 2022-06-06 09:44:01 +0200 | [diff] [blame] | 515 | default 100000000 if DEBUG_UART_ZYNQ && ARCH_ZYNQMP |
| 516 | default 50000000 if DEBUG_UART_ZYNQ && ARCH_ZYNQ |
Simon Glass | 2f964aa | 2015-01-26 18:27:07 -0700 | [diff] [blame] | 517 | help |
| 518 | The UART input clock determines the speed of the internal UART |
| 519 | circuitry. The baud rate is derived from this by dividing the input |
| 520 | clock down. |
| 521 | |
| 522 | A default should be provided by your board, but if not you will need |
| 523 | to use the correct value here. |
| 524 | |
Simon Glass | dd0b012 | 2015-02-27 22:06:25 -0700 | [diff] [blame] | 525 | config DEBUG_UART_SHIFT |
| 526 | int "UART register shift" |
Tom Rini | 467591b | 2020-10-23 09:15:55 -0400 | [diff] [blame] | 527 | depends on DEBUG_UART |
Simon Glass | dd0b012 | 2015-02-27 22:06:25 -0700 | [diff] [blame] | 528 | default 0 if DEBUG_UART |
| 529 | help |
| 530 | Some UARTs (notably ns16550) support different register layouts |
| 531 | where the registers are spaced either as bytes, words or some other |
| 532 | value. Use this value to specify the shift to use, where 0=byte |
| 533 | registers, 2=32-bit word registers, etc. |
| 534 | |
Simon Glass | 0e977bc | 2015-10-18 19:51:24 -0600 | [diff] [blame] | 535 | config DEBUG_UART_BOARD_INIT |
| 536 | bool "Enable board-specific debug UART init" |
| 537 | depends on DEBUG_UART |
| 538 | help |
| 539 | Some boards need to set things up before the debug UART can be used. |
| 540 | On these boards a call to debug_uart_init() is insufficient. When |
| 541 | this option is enabled, the function board_debug_uart_init() will |
| 542 | be called when debug_uart_init() is called. You can put any code |
| 543 | here that is needed to set up the UART ready for use, such as set |
| 544 | pin multiplexing or enable clocks. |
| 545 | |
Simon Glass | c7fefcb | 2015-10-18 19:51:25 -0600 | [diff] [blame] | 546 | config DEBUG_UART_ANNOUNCE |
| 547 | bool "Show a message when the debug UART starts up" |
| 548 | depends on DEBUG_UART |
| 549 | help |
| 550 | Enable this option to show a message when the debug UART is ready |
| 551 | for use. You will see a message like "<debug_uart> " as soon as |
| 552 | U-Boot has the UART ready for use (i.e. your code calls |
| 553 | debug_uart_init()). This can be useful just as a check that |
| 554 | everything is working. |
| 555 | |
Sergey Temerkhanov | 19de815 | 2015-10-14 09:54:24 -0700 | [diff] [blame] | 556 | config DEBUG_UART_SKIP_INIT |
| 557 | bool "Skip UART initialization" |
Simon Goldschmidt | 7828e3c | 2019-01-09 20:27:09 +0100 | [diff] [blame] | 558 | depends on DEBUG_UART |
Sergey Temerkhanov | 19de815 | 2015-10-14 09:54:24 -0700 | [diff] [blame] | 559 | help |
| 560 | Select this if the UART you want to use for debug output is already |
| 561 | initialized by the time U-Boot starts its execution. |
| 562 | |
Simon Goldschmidt | c4448bd | 2019-01-09 20:35:31 +0100 | [diff] [blame] | 563 | config DEBUG_UART_NS16550_CHECK_ENABLED |
| 564 | bool "Check if UART is enabled on output" |
| 565 | depends on DEBUG_UART |
| 566 | depends on DEBUG_UART_NS16550 |
| 567 | help |
| 568 | Select this if puts()/putc() might be called before the debug UART |
| 569 | has been initialized. If this is disabled, putc() might sit in a |
| 570 | tight loop if it is called before debug_uart_init() has been called. |
| 571 | |
| 572 | Note that this does not work for every ns16550-compatible UART and |
| 573 | so has to be enabled carefully or you might notice lost characters. |
| 574 | |
Thomas Chou | 220e802 | 2015-10-23 07:36:37 +0800 | [diff] [blame] | 575 | config ALTERA_JTAG_UART |
| 576 | bool "Altera JTAG UART support" |
| 577 | depends on DM_SERIAL |
| 578 | help |
| 579 | Select this to enable an JTAG UART for Altera devices.The JTAG UART |
| 580 | core implements a method to communicate serial character streams |
| 581 | between a host PC and a Qsys system on an Altera FPGA. Please find |
| 582 | details on the "Embedded Peripherals IP User Guide" of Altera. |
| 583 | |
| 584 | config ALTERA_JTAG_UART_BYPASS |
| 585 | bool "Bypass output when no connection" |
| 586 | depends on ALTERA_JTAG_UART |
| 587 | help |
| 588 | Bypass console output and keep going even if there is no JTAG |
| 589 | terminal connection with the host. The console output will resume |
| 590 | once the JTAG terminal is connected. Without the bypass, the console |
| 591 | output will wait forever until a JTAG terminal is connected. If you |
| 592 | not are sure, say Y. |
| 593 | |
Thomas Chou | da2f838 | 2015-10-21 21:26:54 +0800 | [diff] [blame] | 594 | config ALTERA_UART |
| 595 | bool "Altera UART support" |
| 596 | depends on DM_SERIAL |
| 597 | help |
| 598 | Select this to enable an UART for Altera devices. Please find |
| 599 | details on the "Embedded Peripherals IP User Guide" of Altera. |
| 600 | |
Wills Wang | 60b4976 | 2016-03-16 16:59:57 +0800 | [diff] [blame] | 601 | config AR933X_UART |
| 602 | bool "QCA/Atheros ar933x UART support" |
| 603 | depends on DM_SERIAL && SOC_AR933X |
| 604 | help |
| 605 | Select this to enable UART support for QCA/Atheros ar933x |
| 606 | devices. This driver uses driver model and requires a device |
| 607 | tree binding to operate, please refer to the document at |
| 608 | doc/device-tree-bindings/serial/qca,ar9330-uart.txt. |
| 609 | |
Alexey Brodkin | d7ac185 | 2018-05-21 16:40:05 +0300 | [diff] [blame] | 610 | config ARC_SERIAL |
| 611 | bool "ARC UART support" |
| 612 | depends on DM_SERIAL |
| 613 | help |
| 614 | Select this to enable support for ARC UART now typically |
| 615 | only used in Synopsys DesignWare ARC simulators like nSIM. |
| 616 | |
Tom Rini | c2a3841 | 2020-06-02 17:26:33 -0400 | [diff] [blame] | 617 | config ARM_DCC |
| 618 | bool "ARM Debug Communication Channel (DCC) as UART support" |
| 619 | depends on ARM |
| 620 | help |
| 621 | Select this to enable using the ARM DCC as a form of UART. |
| 622 | |
Wenyou Yang | 6ec739a | 2016-10-17 09:49:54 +0800 | [diff] [blame] | 623 | config ATMEL_USART |
| 624 | bool "Atmel USART support" |
| 625 | help |
| 626 | Select this to enable USART support for Atmel SoCs. It can be |
| 627 | configured in the device tree, and input clock frequency can |
| 628 | be got from the clk node. |
| 629 | |
Stefan Roese | e567dfb | 2019-04-03 15:24:19 +0200 | [diff] [blame] | 630 | config SPL_UART_CLOCK |
| 631 | int "SPL fixed UART input clock" |
| 632 | depends on ATMEL_USART && SPL && !SPL_CLK |
| 633 | default 132096000 if ARCH_AT91 |
| 634 | help |
| 635 | Provide a fixed clock value as input to the UART controller. This |
| 636 | might be needed on platforms which can't enable CONFIG_SPL_CLK |
| 637 | because of SPL image size restrictions. |
| 638 | |
Alexander Graf | fa48759 | 2018-01-25 12:05:53 +0100 | [diff] [blame] | 639 | config BCM283X_MU_SERIAL |
| 640 | bool "Support for BCM283x Mini-UART" |
| 641 | depends on DM_SERIAL && ARCH_BCM283X |
| 642 | default y |
| 643 | help |
| 644 | Select this to enable Mini-UART support on BCM283X family of SoCs. |
| 645 | |
Alexander Graf | 6001985 | 2018-01-25 12:05:55 +0100 | [diff] [blame] | 646 | config BCM283X_PL011_SERIAL |
| 647 | bool "Support for BCM283x PL011 UART" |
| 648 | depends on PL01X_SERIAL && ARCH_BCM283X |
| 649 | default y |
| 650 | help |
| 651 | Select this to enable an overriding PL011 driver for BCM283X SoCs |
| 652 | that supports automatic disable, so that it only gets used when |
| 653 | the UART is actually muxed. |
| 654 | |
Álvaro Fernández Rojas | 3058104 | 2017-04-25 00:39:16 +0200 | [diff] [blame] | 655 | config BCM6345_SERIAL |
| 656 | bool "Support for BCM6345 UART" |
Álvaro Fernández Rojas | e9e8d80 | 2018-12-01 18:42:09 +0100 | [diff] [blame] | 657 | depends on DM_SERIAL |
Álvaro Fernández Rojas | 3058104 | 2017-04-25 00:39:16 +0200 | [diff] [blame] | 658 | help |
| 659 | Select this to enable UART on BCM6345 SoCs. |
| 660 | |
Simon Glass | 44482e8 | 2019-12-19 17:58:20 -0700 | [diff] [blame] | 661 | config COREBOOT_SERIAL |
| 662 | bool "Coreboot UART support" |
| 663 | depends on DM_SERIAL |
| 664 | default y if SYS_COREBOOT |
| 665 | select SYS_NS16550 |
| 666 | help |
| 667 | Select this to enable a ns16550-style UART where the platform data |
| 668 | comes from the coreboot 'sysinfo' tables. This allows U-Boot to have |
| 669 | a serial console on any platform without needing to change the |
| 670 | device tree, etc. |
| 671 | |
Jason Li | 0de653d | 2020-01-30 12:34:58 -0800 | [diff] [blame] | 672 | config CORTINA_UART |
| 673 | bool "Cortina UART support" |
| 674 | depends on DM_SERIAL |
| 675 | help |
| 676 | Select this to enable UART support for Cortina-Access UART devices |
| 677 | found on CAxxxx SoCs. |
| 678 | |
Tuomas Tynkkynen | fac379e | 2018-04-09 04:34:34 +0300 | [diff] [blame] | 679 | config FSL_LINFLEXUART |
| 680 | bool "Freescale Linflex UART support" |
| 681 | depends on DM_SERIAL |
| 682 | help |
| 683 | Select this to enable the Linflex serial module found on some |
| 684 | NXP SoCs like S32V234. |
| 685 | |
Bin Meng | 5ed07cf | 2016-01-13 19:39:00 -0800 | [diff] [blame] | 686 | config FSL_LPUART |
| 687 | bool "Freescale LPUART support" |
| 688 | help |
| 689 | Select this to enable a Low Power UART for Freescale VF610 and |
| 690 | QorIQ Layerscape devices. |
| 691 | |
Tom Rini | db48e52 | 2022-03-23 17:20:00 -0400 | [diff] [blame] | 692 | config LPUART |
| 693 | bool "Use the LPUART as console" |
| 694 | depends on FSL_LPUART |
| 695 | |
Stefan Roese | 6985d49 | 2016-05-17 16:36:00 +0200 | [diff] [blame] | 696 | config MVEBU_A3700_UART |
| 697 | bool "UART support for Armada 3700" |
Stefan Roese | 6985d49 | 2016-05-17 16:36:00 +0200 | [diff] [blame] | 698 | help |
| 699 | Choose this option to add support for UART driver on the Marvell |
| 700 | Armada 3700 SoC. The base address is configured via DT. |
| 701 | |
Angelo Dureghello | 461ea07 | 2019-03-13 21:46:49 +0100 | [diff] [blame] | 702 | config MCFUART |
| 703 | bool "Freescale ColdFire UART support" |
| 704 | help |
| 705 | Choose this option to add support for UART driver on the ColdFire |
| 706 | SoC's family. The serial communication channel provides a full-duplex |
| 707 | asynchronous/synchronous receiver and transmitter deriving an |
| 708 | operating frequency from the internal bus clock or an external clock. |
| 709 | |
Jagan Teki | 8829e66 | 2016-10-08 18:00:08 +0530 | [diff] [blame] | 710 | config MXC_UART |
| 711 | bool "IMX serial port support" |
Tom Rini | 8ba5960 | 2021-09-09 07:54:50 -0400 | [diff] [blame] | 712 | depends on ARCH_MX31 || MX5 || MX6 || MX7 || IMX8M |
Jagan Teki | 8829e66 | 2016-10-08 18:00:08 +0530 | [diff] [blame] | 713 | help |
| 714 | If you have a machine based on a Motorola IMX CPU you |
| 715 | can enable its onboard serial port by enabling this option. |
| 716 | |
Keng Soon Cheah | cac73f2 | 2017-08-24 20:29:07 -0700 | [diff] [blame] | 717 | config NULLDEV_SERIAL |
| 718 | bool "Null serial device" |
| 719 | help |
| 720 | Select this to enable null serial device support. A null serial |
| 721 | device merely acts as a placeholder for a serial device and does |
| 722 | nothing for all it's operation. |
| 723 | |
Paul Thacker | 9e160ee | 2016-01-28 15:30:14 +0530 | [diff] [blame] | 724 | config PIC32_SERIAL |
| 725 | bool "Support for Microchip PIC32 on-chip UART" |
| 726 | depends on DM_SERIAL && MACH_PIC32 |
| 727 | default y |
| 728 | help |
| 729 | Support for the UART found on Microchip PIC32 SoC's. |
| 730 | |
Tom Rini | 9591b63 | 2022-12-04 09:39:03 -0500 | [diff] [blame] | 731 | config SYS_NS16550_SERIAL |
| 732 | bool "NS16550 UART or compatible legacy driver" |
| 733 | depends on !DM_SERIAL |
| 734 | select SYS_NS16550 |
| 735 | |
| 736 | config SPL_SYS_NS16550_SERIAL |
| 737 | bool "NS16550 UART or compatible legacy driver in SPL" |
| 738 | depends on SPL && !SPL_DM_SERIAL |
| 739 | default y if SYS_NS16550_SERIAL || ARCH_SUNXI || ARCH_OMAP2PLUS |
| 740 | select SYS_NS16550 |
| 741 | |
Thomas Chou | 9e39003 | 2015-11-19 21:48:14 +0800 | [diff] [blame] | 742 | config SYS_NS16550 |
| 743 | bool "NS16550 UART or compatible" |
| 744 | help |
| 745 | Support NS16550 UART or compatible. This can be enabled in the |
| 746 | device tree with the correct input clock frequency. If the input |
| 747 | clock frequency is not defined in the device tree, the macro |
Tom Rini | 9109213 | 2022-11-16 13:10:28 -0500 | [diff] [blame] | 748 | CFG_SYS_NS16550_CLK defined in a legacy board header file will |
Thomas Chou | 9e39003 | 2015-11-19 21:48:14 +0800 | [diff] [blame] | 749 | be used. It can be a constant or a function to get clock, eg, |
| 750 | get_serial_clock(). |
| 751 | |
Simon Glass | 62cbde4 | 2019-12-19 17:58:18 -0700 | [diff] [blame] | 752 | config NS16550_DYNAMIC |
| 753 | bool "Allow NS16550 to be configured at runtime" |
Tom Rini | 9591b63 | 2022-12-04 09:39:03 -0500 | [diff] [blame] | 754 | depends on SYS_NS16550 |
Simon Glass | 62cbde4 | 2019-12-19 17:58:18 -0700 | [diff] [blame] | 755 | default y if SYS_COREBOOT || SYS_SLIMBOOTLOADER |
| 756 | help |
| 757 | Enable this option to allow device-tree control of the driver. |
| 758 | |
| 759 | Normally this driver is controlled by the following options: |
| 760 | |
Simon Glass | 62cbde4 | 2019-12-19 17:58:18 -0700 | [diff] [blame] | 761 | It is not a good practice for a driver to be statically configured, |
| 762 | since it prevents the same driver being used for different types of |
| 763 | UARTs in a system. This option avoids this problem at the cost of a |
| 764 | slightly increased code size. |
| 765 | |
Tom Rini | 9591b63 | 2022-12-04 09:39:03 -0500 | [diff] [blame] | 766 | config SYS_NS16550_MEM32 |
| 767 | bool "If memory-mapped, 32bit access is needed for ns16550 register access" |
| 768 | depends on SYS_NS16550 |
| 769 | help |
| 770 | If enabled, if memory-mapped, indicates that 32-bit access should be |
| 771 | used (instead of 8-bit) for register access. |
| 772 | |
| 773 | config SYS_NS16550_PORT_MAPPED |
| 774 | bool "Port I/O is used for ns16550 register access" |
| 775 | depends on SYS_NS16550 |
| 776 | help |
| 777 | If enabled, port I/O is used for ns16550 register access. If not |
| 778 | enabled, then the UART is memory-mapped. |
| 779 | |
| 780 | config SYS_NS16550_REG_SIZE |
| 781 | int "ns16550 register width and endianness" |
| 782 | depends on SYS_NS16550_SERIAL || SPL_SYS_NS16550_SERIAL |
| 783 | range -4 4 |
| 784 | default -4 if ARCH_OMAP2PLUS || ARCH_SUNXI |
| 785 | default 1 |
| 786 | help |
| 787 | Indicates register width and also endianness. If positive, big-endian |
| 788 | access is used. If negative, little-endian is used. |
| 789 | |
| 790 | config SPL_NS16550_MIN_FUNCTIONS |
| 791 | bool "Only provide NS16550_init and NS16550_putc in SPL" |
| 792 | depends on SPL_SYS_NS16550_SERIAL && PPC |
| 793 | help |
| 794 | Enable this if you desire to only have use of the NS16550_init and |
| 795 | NS16550_putc functions for the serial driver located at |
| 796 | drivers/serial/ns16550.c. This option is useful for saving space for |
| 797 | already greatly restricted images, including but not limited to |
| 798 | NAND_SPL configurations. |
| 799 | |
Andy Shevchenko | c5f8dd4 | 2017-02-28 14:04:10 +0200 | [diff] [blame] | 800 | config INTEL_MID_SERIAL |
| 801 | bool "Intel MID platform UART support" |
| 802 | depends on DM_SERIAL && OF_CONTROL |
| 803 | depends on INTEL_MID |
| 804 | select SYS_NS16550 |
| 805 | help |
| 806 | Select this to enable a UART for Intel MID platforms. |
| 807 | This uses the ns16550 driver as a library. |
| 808 | |
Alexander Graf | d10fc50 | 2018-01-25 12:05:51 +0100 | [diff] [blame] | 809 | config PL011_SERIAL |
| 810 | bool "ARM PL011 driver" |
| 811 | depends on !DM_SERIAL |
| 812 | help |
| 813 | Select this to enable a UART for platforms using PL011. |
| 814 | |
Alexander Graf | cf2c778 | 2018-01-25 12:05:52 +0100 | [diff] [blame] | 815 | config PL01X_SERIAL |
| 816 | bool "ARM PL010 and PL011 driver" |
| 817 | depends on DM_SERIAL |
| 818 | help |
| 819 | Select this to enable a UART for platforms using PL010 or PL011. |
| 820 | |
Simon Glass | 2fc24d5 | 2016-07-04 11:58:24 -0600 | [diff] [blame] | 821 | config ROCKCHIP_SERIAL |
| 822 | bool "Rockchip on-chip UART support" |
Johan Jonker | 9ee6c07 | 2022-04-09 18:55:14 +0200 | [diff] [blame] | 823 | depends on DM_SERIAL |
Johan Jonker | 6dcaf2d | 2022-04-09 18:55:13 +0200 | [diff] [blame] | 824 | select SYS_NS16550 |
Simon Glass | 2fc24d5 | 2016-07-04 11:58:24 -0600 | [diff] [blame] | 825 | help |
| 826 | Select this to enable a debug UART for Rockchip devices when using |
Johan Jonker | 9ee6c07 | 2022-04-09 18:55:14 +0200 | [diff] [blame] | 827 | OF_PLATDATA (i.e. a compiled-in device tree replacemenmt). |
Simon Glass | 2fc24d5 | 2016-07-04 11:58:24 -0600 | [diff] [blame] | 828 | This uses the ns16550 driver, converting the platdata from of-platdata |
| 829 | to the ns16550 format. |
| 830 | |
Mark Kettenis | 0d9ff95 | 2021-02-12 23:22:18 +0100 | [diff] [blame] | 831 | config S5P_SERIAL |
| 832 | bool "Support for Samsung S5P UART" |
Mark Kettenis | d520e1f | 2021-10-23 16:58:04 +0200 | [diff] [blame] | 833 | depends on ARCH_APPLE || ARCH_EXYNOS || ARCH_S5PC1XX |
Mark Kettenis | 0d9ff95 | 2021-02-12 23:22:18 +0100 | [diff] [blame] | 834 | default y |
| 835 | help |
| 836 | Select this to enable Samsung S5P UART support. |
| 837 | |
Stefan Bosch | 5745de2 | 2022-12-18 12:25:33 +0000 | [diff] [blame] | 838 | config S5P4418_PL011_SERIAL |
| 839 | bool "Extended PL011 driver for S5P4418" |
| 840 | depends on DM_SERIAL && PL01X_SERIAL && ARCH_NEXELL |
| 841 | default y |
| 842 | help |
| 843 | Select this to enable support of the PL011 UARTs in the S5P4418 SOC. |
| 844 | With this driver the UART-clocks are set to the appropriate rate |
| 845 | (if not 'skip-init'). |
| 846 | |
Simon Glass | af28224 | 2015-03-06 13:19:03 -0700 | [diff] [blame] | 847 | config SANDBOX_SERIAL |
| 848 | bool "Sandbox UART support" |
Masahiro Yamada | 2ea65f3 | 2015-08-28 20:14:21 +0900 | [diff] [blame] | 849 | depends on SANDBOX |
Sean Anderson | efa51f2 | 2022-04-04 14:17:58 -0400 | [diff] [blame] | 850 | imply SERIAL_PUTS |
Simon Glass | af28224 | 2015-03-06 13:19:03 -0700 | [diff] [blame] | 851 | help |
| 852 | Select this to enable a seral UART for sandbox. This is required to |
| 853 | operate correctly, otherwise you will see no serial output from |
| 854 | sandbox. The emulated UART will display to the console and console |
| 855 | input will be fed into the UART. This allows you to interact with |
| 856 | U-Boot. |
| 857 | |
| 858 | The operation of the console is controlled by the -t command-line |
| 859 | flag. In raw mode, U-Boot sees all characters from the terminal |
| 860 | before they are processed, including Ctrl-C. In cooked mode, Ctrl-C |
| 861 | is processed by the terminal, and terminates U-Boot. Valid options |
| 862 | are: |
| 863 | |
| 864 | -t raw-with-sigs Raw mode, Ctrl-C will terminate U-Boot |
| 865 | -t raw Raw mode, Ctrl-C is processed by U-Boot |
| 866 | -t cooked Cooked mode, Ctrl-C terminates |
| 867 | |
Marek Vasut | 03a38a3 | 2017-07-21 23:18:46 +0200 | [diff] [blame] | 868 | config SCIF_CONSOLE |
| 869 | bool "Renesas SCIF UART support" |
| 870 | depends on SH || ARCH_RMOBILE |
| 871 | help |
| 872 | Select this to enable Renesas SCIF UART. To operate serial ports |
| 873 | on systems with RCar or SH SoCs, say Y to this option. If unsure, |
| 874 | say N. |
| 875 | |
Tom Rini | f9f3209 | 2022-03-30 18:07:21 -0400 | [diff] [blame] | 876 | choice |
| 877 | prompt "SCIF console port" |
| 878 | depends on SCIF_CONSOLE && (!DM_SERIAL || (SPL && !SPL_DM_SERIAL)) |
| 879 | |
| 880 | config CONS_SCIF0 |
| 881 | bool "SCIF0" |
| 882 | |
| 883 | config CONS_SCIF1 |
| 884 | bool "SCIF1" |
| 885 | |
| 886 | config CONS_SCIF2 |
| 887 | bool "SCIF2" |
| 888 | |
| 889 | config CONS_SCIF4 |
| 890 | bool "SCIF4" |
| 891 | |
| 892 | config CONS_SCIFA0 |
| 893 | bool "SCIFA0" |
| 894 | |
| 895 | endchoice |
| 896 | |
Tom Rini | 5d14c33 | 2022-03-30 18:07:22 -0400 | [diff] [blame] | 897 | config SH_SCIF_CLK_FREQ |
| 898 | int "SCIF console clock frequency" |
| 899 | depends on SCIF_CONSOLE && (!DM_SERIAL || (SPL && !SPL_DM_SERIAL)) |
| 900 | default 65000000 |
| 901 | |
Sean Anderson | 74d11d3 | 2022-03-22 16:59:24 -0400 | [diff] [blame] | 902 | config SEMIHOSTING_SERIAL |
| 903 | bool "Semihosting UART support" |
| 904 | depends on SEMIHOSTING && !SERIAL_RX_BUFFER |
Sean Anderson | 34855b3 | 2022-04-04 14:18:00 -0400 | [diff] [blame] | 905 | imply SERIAL_PUTS |
Sean Anderson | 74d11d3 | 2022-03-22 16:59:24 -0400 | [diff] [blame] | 906 | help |
| 907 | Select this to enable a serial UART using semihosting. Special halt |
| 908 | instructions will be issued which an external debugger (such as a |
| 909 | JTAG emulator) may interpret. The debugger will display U-Boot's |
| 910 | console output on the host system. |
| 911 | |
| 912 | Enable this option only if you are using a debugger which supports |
| 913 | semihosting. If you are not using a debugger, this driver will halt |
| 914 | the boot. |
| 915 | |
Masahiro Yamada | ff247b7 | 2014-10-23 22:26:11 +0900 | [diff] [blame] | 916 | config UNIPHIER_SERIAL |
Masahiro Yamada | b6ef3a3 | 2015-05-29 17:30:01 +0900 | [diff] [blame] | 917 | bool "Support for UniPhier on-chip UART" |
Masahiro Yamada | 2ea65f3 | 2015-08-28 20:14:21 +0900 | [diff] [blame] | 918 | depends on ARCH_UNIPHIER |
Masahiro Yamada | 85dc2fe | 2016-08-25 19:00:37 +0900 | [diff] [blame] | 919 | default y |
Masahiro Yamada | ff247b7 | 2014-10-23 22:26:11 +0900 | [diff] [blame] | 920 | help |
Masahiro Yamada | b6ef3a3 | 2015-05-29 17:30:01 +0900 | [diff] [blame] | 921 | If you have a UniPhier based board and want to use the on-chip |
| 922 | serial ports, say Y to this option. If unsure, say N. |
Simon Glass | dcfe4a5 | 2015-07-27 15:47:23 -0600 | [diff] [blame] | 923 | |
Michal Simek | 54e24d3 | 2015-12-09 12:50:05 +0100 | [diff] [blame] | 924 | config XILINX_UARTLITE |
| 925 | bool "Xilinx Uarlite support" |
Michal Simek | 54fdef2 | 2020-08-24 14:41:51 +0200 | [diff] [blame] | 926 | depends on DM_SERIAL |
Michal Simek | 54e24d3 | 2015-12-09 12:50:05 +0100 | [diff] [blame] | 927 | help |
| 928 | If you have a Xilinx based board and want to use the uartlite |
| 929 | serial ports, say Y to this option. If unsure, say N. |
| 930 | |
Beniamino Galvani | bfcef28 | 2016-05-08 08:30:16 +0200 | [diff] [blame] | 931 | config MESON_SERIAL |
| 932 | bool "Support for Amlogic Meson UART" |
| 933 | depends on DM_SERIAL && ARCH_MESON |
| 934 | help |
| 935 | If you have an Amlogic Meson based board and want to use the on-chip |
| 936 | serial ports, say Y to this option. If unsure, say N. |
| 937 | |
Mateusz Kulikowski | 142a20c | 2016-03-31 23:12:14 +0200 | [diff] [blame] | 938 | config MSM_SERIAL |
| 939 | bool "Qualcomm on-chip UART" |
| 940 | depends on DM_SERIAL |
| 941 | help |
| 942 | Support Data Mover UART used on Qualcomm Snapdragon SoCs. |
| 943 | It should support all Qualcomm devices with UARTDM version 1.4, |
| 944 | for example APQ8016 and MSM8916. |
| 945 | Single baudrate is supported in current implementation (115200). |
Stefan Roese | 6985d49 | 2016-05-17 16:36:00 +0200 | [diff] [blame] | 946 | |
Dzmitry Sankouski | 324df15 | 2021-10-17 13:44:27 +0300 | [diff] [blame] | 947 | config MSM_GENI_SERIAL |
| 948 | bool "Qualcomm on-chip GENI UART" |
| 949 | help |
| 950 | Support UART based on Generic Interface (GENI) Serial Engine (SE), |
| 951 | used on Qualcomm Snapdragon SoCs. Should support all qualcomm SOCs |
| 952 | with Qualcomm Universal Peripheral (QUP) Wrapper cores, |
| 953 | i.e. newer ones, starting from SDM845. |
| 954 | Driver works in FIFO mode. |
| 955 | Multiple baudrates supported. |
| 956 | |
Stefan Roese | f105466 | 2021-04-07 09:12:31 +0200 | [diff] [blame] | 957 | config OCTEON_SERIAL_BOOTCMD |
| 958 | bool "MIPS Octeon PCI remote bootcmd input" |
| 959 | depends on ARCH_OCTEON |
| 960 | depends on DM_SERIAL |
| 961 | select SYS_IS_IN_ENV |
| 962 | select CONSOLE_MUX |
| 963 | help |
| 964 | This driver supports remote input over the PCIe bus from a host |
| 965 | to U-Boot for entering commands. It is utilized by the host |
| 966 | commands 'oct-remote-load' and 'oct-remote-bootcmd'. |
| 967 | |
Stefan Roese | 4dead10 | 2021-04-07 09:12:30 +0200 | [diff] [blame] | 968 | config OCTEON_SERIAL_PCIE_CONSOLE |
| 969 | bool "MIPS Octeon PCIe remote console" |
| 970 | depends on ARCH_OCTEON |
| 971 | depends on (DM_SERIAL && DM_STDIO) |
| 972 | select SYS_STDIO_DEREGISTER |
| 973 | select SYS_CONSOLE_IS_IN_ENV |
| 974 | select CONSOLE_MUX |
| 975 | help |
| 976 | This driver supports remote console over the PCIe bus when the |
| 977 | Octeon is running in PCIe target mode. The host program |
| 978 | 'oct-remote-console' can be used to connect to this console. |
| 979 | The console number will likely be 0 or 1. |
| 980 | |
Lokesh Vutla | 5d75419 | 2018-08-27 15:55:24 +0530 | [diff] [blame] | 981 | config OMAP_SERIAL |
| 982 | bool "Support for OMAP specific UART" |
| 983 | depends on DM_SERIAL |
Lokesh Vutla | 586bde9 | 2018-08-27 15:57:08 +0530 | [diff] [blame] | 984 | default y if (ARCH_OMAP2PLUS || ARCH_K3) |
Lokesh Vutla | 5d75419 | 2018-08-27 15:55:24 +0530 | [diff] [blame] | 985 | select SYS_NS16550 |
| 986 | help |
| 987 | If you have an TI based SoC and want to use the on-chip serial |
| 988 | port, say Y to this option. If unsure say N. |
| 989 | |
Manivannan Sadhasivam | 6f9347f | 2018-06-14 23:38:38 +0530 | [diff] [blame] | 990 | config OWL_SERIAL |
| 991 | bool "Actions Semi OWL UART" |
| 992 | depends on DM_SERIAL && ARCH_OWL |
| 993 | help |
| 994 | If you have a Actions Semi OWL based board and want to use the on-chip |
| 995 | serial port, say Y to this option. If unsure, say N. |
| 996 | Single baudrate is supported in current implementation (115200). |
| 997 | |
Anup Patel | d6ba787 | 2022-01-27 11:41:07 +0530 | [diff] [blame] | 998 | config HTIF_CONSOLE |
| 999 | bool "RISC-V HTIF console support" |
| 1000 | depends on DM_SERIAL && 64BIT |
| 1001 | help |
| 1002 | Select this to enable host transfer interface (HTIF) based serial |
| 1003 | console. The HTIF device is quite common in RISC-V emulators and |
| 1004 | RISC-V ISS so this driver allows using U-Boot on such platforms. |
| 1005 | |
Anup Patel | e284249 | 2018-12-15 11:35:15 +0530 | [diff] [blame] | 1006 | config SIFIVE_SERIAL |
| 1007 | bool "SiFive UART support" |
| 1008 | depends on DM_SERIAL |
| 1009 | help |
| 1010 | This driver supports the SiFive UART. If unsure say N. |
| 1011 | |
Patrice Chotard | 214a17e | 2017-02-21 13:37:07 +0100 | [diff] [blame] | 1012 | config STI_ASC_SERIAL |
| 1013 | bool "STMicroelectronics on-chip UART" |
| 1014 | depends on DM_SERIAL && ARCH_STI |
| 1015 | help |
| 1016 | Select this to enable Asynchronous Serial Controller available |
| 1017 | on STiH410 SoC. This is a basic implementation, it supports |
| 1018 | following baudrate 9600, 19200, 38400, 57600 and 115200. |
| 1019 | |
Patrice Chotard | ae74de0 | 2018-01-12 09:23:49 +0100 | [diff] [blame] | 1020 | config STM32_SERIAL |
Patrice Chotard | 84e9dcc | 2017-07-26 15:48:39 +0200 | [diff] [blame] | 1021 | bool "STMicroelectronics STM32 SoCs on-chip UART" |
Patrick Delaunay | 2514c2d | 2018-03-12 10:46:10 +0100 | [diff] [blame] | 1022 | depends on DM_SERIAL && (STM32F4 || STM32F7 || STM32H7 || ARCH_STM32MP) |
Patrice Chotard | 84e9dcc | 2017-07-26 15:48:39 +0200 | [diff] [blame] | 1023 | help |
Patrick Delaunay | 2514c2d | 2018-03-12 10:46:10 +0100 | [diff] [blame] | 1024 | If you have a machine based on a STM32 F4, F7, H7 or MP1 SOC |
| 1025 | you can enable its onboard serial ports, say Y to this option. |
Patrice Chotard | 776b2dd | 2017-09-13 18:00:05 +0200 | [diff] [blame] | 1026 | If unsure, say N. |
Patrice Chotard | 84e9dcc | 2017-07-26 15:48:39 +0200 | [diff] [blame] | 1027 | |
Michal Simek | 809704e | 2017-11-06 09:16:05 +0100 | [diff] [blame] | 1028 | config ZYNQ_SERIAL |
| 1029 | bool "Cadence (Xilinx Zynq) UART support" |
Michal Simek | 54fdef2 | 2020-08-24 14:41:51 +0200 | [diff] [blame] | 1030 | depends on DM_SERIAL |
Michal Simek | 809704e | 2017-11-06 09:16:05 +0100 | [diff] [blame] | 1031 | help |
| 1032 | This driver supports the Cadence UART. It is found e.g. in Xilinx |
| 1033 | Zynq/ZynqMP. |
| 1034 | |
Ryder Lee | 849b116 | 2018-11-15 10:08:02 +0800 | [diff] [blame] | 1035 | config MTK_SERIAL |
| 1036 | bool "MediaTek High-speed UART support" |
| 1037 | depends on DM_SERIAL |
| 1038 | help |
| 1039 | Select this to enable UART support for MediaTek High-speed UART |
| 1040 | devices. This driver uses driver model and requires a device |
| 1041 | tree binding to operate. |
| 1042 | The High-speed UART is compatible with the ns16550a UART and have |
| 1043 | its own high-speed registers. |
| 1044 | |
Weijie Gao | 2161f1f | 2020-11-12 16:36:05 +0800 | [diff] [blame] | 1045 | config MT7620_SERIAL |
| 1046 | bool "UART driver for MediaTek MT7620 and earlier SoCs" |
| 1047 | depends on DM_SERIAL |
| 1048 | help |
| 1049 | Select this to enable UART support for MediaTek MT7620 and earlier |
| 1050 | SoCs. This driver uses driver model and requires a device tree |
| 1051 | binding to operate. |
| 1052 | The UART driver for MediaTek MT7620 and earlier SoCs is *NOT* |
| 1053 | compatible with the ns16550a UART. |
| 1054 | |
Christophe Leroy | dd7ff47 | 2017-07-06 10:33:27 +0200 | [diff] [blame] | 1055 | config MPC8XX_CONS |
| 1056 | bool "Console driver for MPC8XX" |
Christophe Leroy | ee1e600 | 2018-03-16 17:20:41 +0100 | [diff] [blame] | 1057 | depends on MPC8xx |
Christophe Leroy | dd7ff47 | 2017-07-06 10:33:27 +0200 | [diff] [blame] | 1058 | default y |
| 1059 | |
Jim Liu | 6f6a0b7 | 2022-04-19 13:32:21 +0800 | [diff] [blame] | 1060 | config NPCM_SERIAL |
| 1061 | bool "Nuvoton NPCM UART driver" |
| 1062 | depends on DM_SERIAL |
| 1063 | help |
| 1064 | Select this to enable UART support for Nuvoton BMCs |
| 1065 | (NPCM7xx and NPCM8xx). |
| 1066 | The driver enables the onboard serial port with 8-N-1 |
| 1067 | configuration. |
| 1068 | |
Peng Fan | 384d5cf | 2020-08-06 12:42:50 +0300 | [diff] [blame] | 1069 | config XEN_SERIAL |
| 1070 | bool "XEN serial support" |
| 1071 | depends on XEN |
| 1072 | help |
| 1073 | If built without DM support, then requires Xen |
| 1074 | to be built with CONFIG_VERBOSE_DEBUG. |
| 1075 | |
Christophe Leroy | dd7ff47 | 2017-07-06 10:33:27 +0200 | [diff] [blame] | 1076 | choice |
| 1077 | prompt "Console port" |
| 1078 | default 8xx_CONS_SMC1 |
| 1079 | depends on MPC8XX_CONS |
| 1080 | help |
| 1081 | Depending on board, select one serial port |
| 1082 | (CONFIG_8xx_CONS_SMC1 or CONFIG_8xx_CONS_SMC2) |
| 1083 | |
| 1084 | config 8xx_CONS_SMC1 |
| 1085 | bool "SMC1" |
| 1086 | |
| 1087 | config 8xx_CONS_SMC2 |
| 1088 | bool "SMC2" |
| 1089 | |
| 1090 | endchoice |
| 1091 | |
| 1092 | config SYS_SMC_RXBUFLEN |
| 1093 | int "Console Rx buffer length" |
| 1094 | depends on MPC8XX_CONS |
| 1095 | default 1 |
| 1096 | help |
| 1097 | With CONFIG_SYS_SMC_RXBUFLEN it is possible to define |
| 1098 | the maximum receive buffer length for the SMC. |
| 1099 | This option is actual only for 8xx possible. |
| 1100 | If using CONFIG_SYS_SMC_RXBUFLEN also CONFIG_SYS_MAXIDLE |
| 1101 | must be defined, to setup the maximum idle timeout for |
| 1102 | the SMC. |
| 1103 | |
| 1104 | config SYS_MAXIDLE |
| 1105 | int "maximum idle timeout" |
| 1106 | depends on MPC8XX_CONS |
| 1107 | default 0 |
| 1108 | |
| 1109 | config SYS_BRGCLK_PRESCALE |
| 1110 | int "BRG Clock Prescale" |
| 1111 | depends on MPC8XX_CONS |
| 1112 | default 1 |
| 1113 | |
| 1114 | config SYS_SDSR |
| 1115 | hex "SDSR Value" |
| 1116 | depends on MPC8XX_CONS |
| 1117 | default 0x83 |
| 1118 | |
| 1119 | config SYS_SDMR |
| 1120 | hex "SDMR Value" |
| 1121 | depends on MPC8XX_CONS |
| 1122 | default 0 |
| 1123 | |
Simon Glass | 5251048 | 2021-08-08 12:20:13 -0600 | [diff] [blame] | 1124 | endif |