Simon Glass | ee2b243 | 2015-03-02 17:04:37 -0700 | [diff] [blame] | 1 | menu "Boot timing" |
| 2 | |
| 3 | config BOOTSTAGE |
| 4 | bool "Boot timing and reporting" |
| 5 | help |
| 6 | Enable recording of boot time while booting. To use it, insert |
| 7 | calls to bootstage_mark() with a suitable BOOTSTAGE_ID from |
| 8 | bootstage.h. Only a single entry is recorded for each ID. You can |
| 9 | give the entry a name with bootstage_mark_name(). You can also |
| 10 | record elapsed time in a particular stage using bootstage_start() |
| 11 | before starting and bootstage_accum() when finished. Bootstage will |
Robert P. J. Day | 57247d9 | 2016-08-31 12:49:13 -0400 | [diff] [blame] | 12 | add up all the accumulated time and report it. |
Simon Glass | ee2b243 | 2015-03-02 17:04:37 -0700 | [diff] [blame] | 13 | |
| 14 | Normally, IDs are defined in bootstage.h but a small number of |
Robert P. J. Day | 57247d9 | 2016-08-31 12:49:13 -0400 | [diff] [blame] | 15 | additional 'user' IDs can be used by passing BOOTSTAGE_ID_ALLOC |
Simon Glass | ee2b243 | 2015-03-02 17:04:37 -0700 | [diff] [blame] | 16 | as the ID. |
| 17 | |
Robert P. J. Day | 57247d9 | 2016-08-31 12:49:13 -0400 | [diff] [blame] | 18 | Calls to show_boot_progress() will also result in log entries but |
Simon Glass | ee2b243 | 2015-03-02 17:04:37 -0700 | [diff] [blame] | 19 | these will not have names. |
| 20 | |
Simon Glass | 824bb1b | 2017-05-22 05:05:35 -0600 | [diff] [blame] | 21 | config SPL_BOOTSTAGE |
| 22 | bool "Boot timing and reported in SPL" |
| 23 | depends on BOOTSTAGE |
| 24 | help |
| 25 | Enable recording of boot time in SPL. To make this visible to U-Boot |
| 26 | proper, enable BOOTSTAGE_STASH as well. This will stash the timing |
| 27 | information when SPL finishes and load it when U-Boot proper starts |
| 28 | up. |
| 29 | |
Simon Glass | c0126bd | 2018-11-06 15:21:28 -0700 | [diff] [blame] | 30 | config TPL_BOOTSTAGE |
| 31 | bool "Boot timing and reported in TPL" |
| 32 | depends on BOOTSTAGE |
| 33 | help |
| 34 | Enable recording of boot time in SPL. To make this visible to U-Boot |
| 35 | proper, enable BOOTSTAGE_STASH as well. This will stash the timing |
| 36 | information when TPL finishes and load it when U-Boot proper starts |
| 37 | up. |
| 38 | |
Simon Glass | ee2b243 | 2015-03-02 17:04:37 -0700 | [diff] [blame] | 39 | config BOOTSTAGE_REPORT |
| 40 | bool "Display a detailed boot timing report before booting the OS" |
| 41 | depends on BOOTSTAGE |
| 42 | help |
| 43 | Enable output of a boot time report just before the OS is booted. |
| 44 | This shows how long it took U-Boot to go through each stage of the |
| 45 | boot process. The report looks something like this: |
| 46 | |
| 47 | Timer summary in microseconds: |
| 48 | Mark Elapsed Stage |
| 49 | 0 0 reset |
| 50 | 3,575,678 3,575,678 board_init_f start |
| 51 | 3,575,695 17 arch_cpu_init A9 |
| 52 | 3,575,777 82 arch_cpu_init done |
| 53 | 3,659,598 83,821 board_init_r start |
| 54 | 3,910,375 250,777 main_loop |
| 55 | 29,916,167 26,005,792 bootm_start |
| 56 | 30,361,327 445,160 start_kernel |
| 57 | |
Simon Glass | 03ecac3 | 2017-05-22 05:05:27 -0600 | [diff] [blame] | 58 | config BOOTSTAGE_RECORD_COUNT |
| 59 | int "Number of boot stage records to store" |
| 60 | default 30 |
| 61 | help |
| 62 | This is the size of the bootstage record list and is the maximum |
| 63 | number of bootstage records that can be recorded. |
| 64 | |
Simon Glass | d69bb0e | 2017-09-05 19:49:49 -0600 | [diff] [blame] | 65 | config SPL_BOOTSTAGE_RECORD_COUNT |
| 66 | int "Number of boot stage records to store for SPL" |
| 67 | default 5 |
| 68 | help |
| 69 | This is the size of the bootstage record list and is the maximum |
| 70 | number of bootstage records that can be recorded. |
| 71 | |
Simon Glass | 59d0452 | 2019-05-18 11:59:52 -0600 | [diff] [blame] | 72 | config TPL_BOOTSTAGE_RECORD_COUNT |
| 73 | int "Number of boot stage records to store for TPL" |
| 74 | default 5 |
| 75 | help |
| 76 | This is the size of the bootstage record list and is the maximum |
| 77 | number of bootstage records that can be recorded. |
| 78 | |
Simon Glass | ee2b243 | 2015-03-02 17:04:37 -0700 | [diff] [blame] | 79 | config BOOTSTAGE_FDT |
| 80 | bool "Store boot timing information in the OS device tree" |
| 81 | depends on BOOTSTAGE |
| 82 | help |
| 83 | Stash the bootstage information in the FDT. A root 'bootstage' |
| 84 | node is created with each bootstage id as a child. Each child |
| 85 | has a 'name' property and either 'mark' containing the |
Robert P. J. Day | 57247d9 | 2016-08-31 12:49:13 -0400 | [diff] [blame] | 86 | mark time in microseconds, or 'accum' containing the |
Simon Glass | ee2b243 | 2015-03-02 17:04:37 -0700 | [diff] [blame] | 87 | accumulated time for that bootstage id in microseconds. |
| 88 | For example: |
| 89 | |
| 90 | bootstage { |
| 91 | 154 { |
| 92 | name = "board_init_f"; |
| 93 | mark = <3575678>; |
| 94 | }; |
| 95 | 170 { |
| 96 | name = "lcd"; |
| 97 | accum = <33482>; |
| 98 | }; |
| 99 | }; |
| 100 | |
| 101 | Code in the Linux kernel can find this in /proc/devicetree. |
| 102 | |
| 103 | config BOOTSTAGE_STASH |
| 104 | bool "Stash the boot timing information in memory before booting OS" |
| 105 | depends on BOOTSTAGE |
| 106 | help |
| 107 | Some OSes do not support device tree. Bootstage can instead write |
| 108 | the boot timing information in a binary format at a given address. |
| 109 | This happens through a call to bootstage_stash(), typically in |
| 110 | the CPU's cleanup_before_linux() function. You can use the |
| 111 | 'bootstage stash' and 'bootstage unstash' commands to do this on |
| 112 | the command line. |
| 113 | |
| 114 | config BOOTSTAGE_STASH_ADDR |
| 115 | hex "Address to stash boot timing information" |
| 116 | default 0 |
| 117 | help |
| 118 | Provide an address which will not be overwritten by the OS when it |
| 119 | starts, so that it can read this information when ready. |
| 120 | |
| 121 | config BOOTSTAGE_STASH_SIZE |
| 122 | hex "Size of boot timing stash region" |
Nobuhiro Iwamatsu | fad6a2b | 2017-04-02 07:48:12 +0900 | [diff] [blame] | 123 | default 0x1000 |
Simon Glass | ee2b243 | 2015-03-02 17:04:37 -0700 | [diff] [blame] | 124 | help |
| 125 | This should be large enough to hold the bootstage stash. A value of |
| 126 | 4096 (4KiB) is normally plenty. |
| 127 | |
| 128 | endmenu |
| 129 | |
Peng Fan | d14739f | 2016-06-17 17:39:50 +0800 | [diff] [blame] | 130 | menu "Boot media" |
| 131 | |
| 132 | config NOR_BOOT |
| 133 | bool "Support for booting from NOR flash" |
| 134 | depends on NOR |
| 135 | help |
| 136 | Enabling this will make a U-Boot binary that is capable of being |
| 137 | booted via NOR. In this case we will enable certain pinmux early |
| 138 | as the ROM only partially sets up pinmux. We also default to using |
| 139 | NOR for environment. |
| 140 | |
Peng Fan | faaef73 | 2016-06-17 17:39:51 +0800 | [diff] [blame] | 141 | config NAND_BOOT |
| 142 | bool "Support for booting from NAND flash" |
| 143 | default n |
Adam Ford | 9d04b5f | 2018-07-08 07:28:10 -0500 | [diff] [blame] | 144 | imply NAND |
Peng Fan | faaef73 | 2016-06-17 17:39:51 +0800 | [diff] [blame] | 145 | help |
| 146 | Enabling this will make a U-Boot binary that is capable of being |
| 147 | booted via NAND flash. This is not a must, some SoCs need this, |
Robert P. J. Day | 57247d9 | 2016-08-31 12:49:13 -0400 | [diff] [blame] | 148 | some not. |
Peng Fan | faaef73 | 2016-06-17 17:39:51 +0800 | [diff] [blame] | 149 | |
| 150 | config ONENAND_BOOT |
| 151 | bool "Support for booting from ONENAND" |
| 152 | default n |
Adam Ford | 9d04b5f | 2018-07-08 07:28:10 -0500 | [diff] [blame] | 153 | imply NAND |
Peng Fan | faaef73 | 2016-06-17 17:39:51 +0800 | [diff] [blame] | 154 | help |
| 155 | Enabling this will make a U-Boot binary that is capable of being |
| 156 | booted via ONENAND. This is not a must, some SoCs need this, |
Robert P. J. Day | 57247d9 | 2016-08-31 12:49:13 -0400 | [diff] [blame] | 157 | some not. |
Peng Fan | faaef73 | 2016-06-17 17:39:51 +0800 | [diff] [blame] | 158 | |
| 159 | config QSPI_BOOT |
| 160 | bool "Support for booting from QSPI flash" |
| 161 | default n |
| 162 | help |
| 163 | Enabling this will make a U-Boot binary that is capable of being |
| 164 | booted via QSPI flash. This is not a must, some SoCs need this, |
Robert P. J. Day | 57247d9 | 2016-08-31 12:49:13 -0400 | [diff] [blame] | 165 | some not. |
Peng Fan | faaef73 | 2016-06-17 17:39:51 +0800 | [diff] [blame] | 166 | |
| 167 | config SATA_BOOT |
| 168 | bool "Support for booting from SATA" |
| 169 | default n |
| 170 | help |
| 171 | Enabling this will make a U-Boot binary that is capable of being |
| 172 | booted via SATA. This is not a must, some SoCs need this, |
Robert P. J. Day | 57247d9 | 2016-08-31 12:49:13 -0400 | [diff] [blame] | 173 | some not. |
Peng Fan | faaef73 | 2016-06-17 17:39:51 +0800 | [diff] [blame] | 174 | |
| 175 | config SD_BOOT |
| 176 | bool "Support for booting from SD/EMMC" |
| 177 | default n |
| 178 | help |
| 179 | Enabling this will make a U-Boot binary that is capable of being |
| 180 | booted via SD/EMMC. This is not a must, some SoCs need this, |
Robert P. J. Day | 57247d9 | 2016-08-31 12:49:13 -0400 | [diff] [blame] | 181 | some not. |
Peng Fan | faaef73 | 2016-06-17 17:39:51 +0800 | [diff] [blame] | 182 | |
| 183 | config SPI_BOOT |
| 184 | bool "Support for booting from SPI flash" |
| 185 | default n |
| 186 | help |
| 187 | Enabling this will make a U-Boot binary that is capable of being |
| 188 | booted via SPI flash. This is not a must, some SoCs need this, |
Robert P. J. Day | 57247d9 | 2016-08-31 12:49:13 -0400 | [diff] [blame] | 189 | some not. |
Peng Fan | faaef73 | 2016-06-17 17:39:51 +0800 | [diff] [blame] | 190 | |
Peng Fan | d14739f | 2016-06-17 17:39:50 +0800 | [diff] [blame] | 191 | endmenu |
| 192 | |
Heiko Schocher | bb597c0 | 2016-06-07 08:31:14 +0200 | [diff] [blame] | 193 | config BOOTDELAY |
| 194 | int "delay in seconds before automatically booting" |
Tom Rini | 5e4e874 | 2016-06-13 09:00:30 -0400 | [diff] [blame] | 195 | default 2 |
Masahiro Yamada | 41598c8 | 2016-06-20 17:33:39 +0900 | [diff] [blame] | 196 | depends on AUTOBOOT |
Heiko Schocher | bb597c0 | 2016-06-07 08:31:14 +0200 | [diff] [blame] | 197 | help |
| 198 | Delay before automatically running bootcmd; |
Masahiro Yamada | 2fbb846 | 2016-06-27 16:23:01 +0900 | [diff] [blame] | 199 | set to 0 to autoboot with no delay, but you can stop it by key input. |
Heiko Schocher | bb597c0 | 2016-06-07 08:31:14 +0200 | [diff] [blame] | 200 | set to -1 to disable autoboot. |
| 201 | set to -2 to autoboot with no delay and not check for abort |
Heiko Schocher | bb597c0 | 2016-06-07 08:31:14 +0200 | [diff] [blame] | 202 | |
Alex Kiernan | b27dc8e | 2018-07-05 12:38:16 +0000 | [diff] [blame] | 203 | If this value is >= 0 then it is also used for the default delay |
| 204 | before starting the default entry in bootmenu. If it is < 0 then |
| 205 | a default value of 10s is used. |
| 206 | |
Masahiro Yamada | 9060970 | 2016-06-27 16:23:00 +0900 | [diff] [blame] | 207 | See doc/README.autoboot for details. |
| 208 | |
Sam Protsenko | 5abc1a4 | 2017-08-14 20:22:17 +0300 | [diff] [blame] | 209 | config USE_BOOTARGS |
| 210 | bool "Enable boot arguments" |
| 211 | help |
| 212 | Provide boot arguments to bootm command. Boot arguments are specified |
| 213 | in CONFIG_BOOTARGS option. Enable this option to be able to specify |
| 214 | CONFIG_BOOTARGS string. If this option is disabled, CONFIG_BOOTARGS |
| 215 | will be undefined and won't take any space in U-Boot image. |
| 216 | |
| 217 | config BOOTARGS |
| 218 | string "Boot arguments" |
| 219 | depends on USE_BOOTARGS |
| 220 | help |
| 221 | This can be used to pass arguments to the bootm command. The value of |
| 222 | CONFIG_BOOTARGS goes into the environment value "bootargs". Note that |
| 223 | this value will also override the "chosen" node in FDT blob. |
| 224 | |
Tom Rini | b6251db | 2017-11-06 18:15:11 -0500 | [diff] [blame] | 225 | config USE_BOOTCOMMAND |
| 226 | bool "Enable a default value for bootcmd" |
| 227 | help |
| 228 | Provide a default value for the bootcmd entry in the environment. If |
| 229 | autoboot is enabled this is what will be run automatically. Enable |
| 230 | this option to be able to specify CONFIG_BOOTCOMMAND as a string. If |
| 231 | this option is disabled, CONFIG_BOOTCOMMAND will be undefined and |
| 232 | won't take any space in U-Boot image. |
| 233 | |
| 234 | config BOOTCOMMAND |
| 235 | string "bootcmd value" |
| 236 | depends on USE_BOOTCOMMAND |
| 237 | default "run distro_bootcmd" if DISTRO_DEFAULTS |
| 238 | help |
| 239 | This is the string of commands that will be used as bootcmd and if |
| 240 | AUTOBOOT is set, automatically run. |
| 241 | |
Masahiro Yamada | 607d06d | 2019-02-14 11:05:33 +0900 | [diff] [blame] | 242 | config USE_PREBOOT |
| 243 | bool "Enable preboot" |
| 244 | help |
| 245 | When this option is enabled, the existence of the environment |
| 246 | variable "preboot" will be checked immediately before starting the |
| 247 | CONFIG_BOOTDELAY countdown and/or running the auto-boot command resp. |
| 248 | entering interactive mode. |
| 249 | |
| 250 | This feature is especially useful when "preboot" is automatically |
| 251 | generated or modified. For example, the boot code can modify the |
| 252 | "preboot" when a user holds down a certain combination of keys. |
| 253 | |
| 254 | config PREBOOT |
| 255 | string "preboot default value" |
| 256 | depends on USE_PREBOOT |
Patrick Delaunay | ce3772c | 2019-04-18 17:32:38 +0200 | [diff] [blame] | 257 | default "" |
Masahiro Yamada | 607d06d | 2019-02-14 11:05:33 +0900 | [diff] [blame] | 258 | help |
| 259 | This is the default of "preboot" environment variable. |
| 260 | |
Simon Glass | 98af879 | 2016-10-17 20:12:35 -0600 | [diff] [blame] | 261 | menu "Console" |
| 262 | |
Tom Rini | 4880b02 | 2016-11-29 09:14:56 -0500 | [diff] [blame] | 263 | config MENU |
| 264 | bool |
| 265 | help |
| 266 | This is the library functionality to provide a text-based menu of |
| 267 | choices for the user to make choices with. |
| 268 | |
Simon Glass | 9854a87 | 2015-11-08 23:47:48 -0700 | [diff] [blame] | 269 | config CONSOLE_RECORD |
| 270 | bool "Console recording" |
| 271 | help |
| 272 | This provides a way to record console output (and provide console |
Robert P. J. Day | 57247d9 | 2016-08-31 12:49:13 -0400 | [diff] [blame] | 273 | input) through circular buffers. This is mostly useful for testing. |
Simon Glass | 9854a87 | 2015-11-08 23:47:48 -0700 | [diff] [blame] | 274 | Console output is recorded even when the console is silent. |
| 275 | To enable console recording, call console_record_reset_enable() |
| 276 | from your code. |
| 277 | |
| 278 | config CONSOLE_RECORD_OUT_SIZE |
| 279 | hex "Output buffer size" |
| 280 | depends on CONSOLE_RECORD |
| 281 | default 0x400 if CONSOLE_RECORD |
| 282 | help |
| 283 | Set the size of the console output buffer. When this fills up, no |
| 284 | more data will be recorded until some is removed. The buffer is |
| 285 | allocated immediately after the malloc() region is ready. |
| 286 | |
| 287 | config CONSOLE_RECORD_IN_SIZE |
| 288 | hex "Input buffer size" |
| 289 | depends on CONSOLE_RECORD |
| 290 | default 0x100 if CONSOLE_RECORD |
| 291 | help |
| 292 | Set the size of the console input buffer. When this contains data, |
| 293 | tstc() and getc() will use this in preference to real device input. |
| 294 | The buffer is allocated immediately after the malloc() region is |
| 295 | ready. |
Siva Durga Prasad Paladugu | 4d25507 | 2016-07-19 10:42:22 +0530 | [diff] [blame] | 296 | |
Christian Gmeiner | 83f6f60 | 2018-09-10 12:43:16 +0200 | [diff] [blame] | 297 | config DISABLE_CONSOLE |
| 298 | bool "Add functionality to disable console completely" |
| 299 | help |
| 300 | Disable console (in & out). |
| 301 | |
Siva Durga Prasad Paladugu | a4d8892 | 2016-07-29 15:31:47 +0530 | [diff] [blame] | 302 | config IDENT_STRING |
| 303 | string "Board specific string to be added to uboot version string" |
| 304 | help |
| 305 | This options adds the board specific name to u-boot version. |
| 306 | |
Masahiro Yamada | b44b302 | 2017-09-16 14:10:40 +0900 | [diff] [blame] | 307 | config LOGLEVEL |
| 308 | int "loglevel" |
Tom Rini | 6a3e65d | 2017-10-04 16:44:30 -0400 | [diff] [blame] | 309 | default 4 |
Masahiro Yamada | b44b302 | 2017-09-16 14:10:40 +0900 | [diff] [blame] | 310 | range 0 8 |
| 311 | help |
| 312 | All Messages with a loglevel smaller than the console loglevel will |
| 313 | be compiled in. The loglevels are defined as follows: |
| 314 | |
Simon Glass | 6fc7e93 | 2019-02-16 20:24:34 -0700 | [diff] [blame] | 315 | 0 - emergency |
| 316 | 1 - alert |
| 317 | 2 - critical |
| 318 | 3 - error |
| 319 | 4 - warning |
| 320 | 5 - note |
| 321 | 6 - info |
| 322 | 7 - debug |
| 323 | 8 - debug content |
| 324 | 9 - debug hardware I/O |
Masahiro Yamada | b44b302 | 2017-09-16 14:10:40 +0900 | [diff] [blame] | 325 | |
| 326 | config SPL_LOGLEVEL |
| 327 | int |
| 328 | default LOGLEVEL |
| 329 | |
Simon Glass | 4d8d305 | 2018-11-15 18:43:49 -0700 | [diff] [blame] | 330 | config TPL_LOGLEVEL |
| 331 | int |
| 332 | default LOGLEVEL |
| 333 | |
Simon Glass | 98af879 | 2016-10-17 20:12:35 -0600 | [diff] [blame] | 334 | config SILENT_CONSOLE |
| 335 | bool "Support a silent console" |
| 336 | help |
| 337 | This option allows the console to be silenced, meaning that no |
| 338 | output will appear on the console devices. This is controlled by |
Chris Packham | f759773 | 2019-01-11 15:30:50 +1300 | [diff] [blame] | 339 | setting the environment variable 'silent' to a non-empty value. |
Simon Glass | 98af879 | 2016-10-17 20:12:35 -0600 | [diff] [blame] | 340 | Note this also silences the console when booting Linux. |
| 341 | |
| 342 | When the console is set up, the variable is checked, and the |
| 343 | GD_FLG_SILENT flag is set. Changing the environment variable later |
| 344 | will update the flag. |
| 345 | |
| 346 | config SILENT_U_BOOT_ONLY |
| 347 | bool "Only silence the U-Boot console" |
| 348 | depends on SILENT_CONSOLE |
| 349 | help |
| 350 | Normally when the U-Boot console is silenced, Linux's console is |
| 351 | also silenced (assuming the board boots into Linux). This option |
| 352 | allows the linux console to operate normally, even if U-Boot's |
| 353 | is silenced. |
| 354 | |
| 355 | config SILENT_CONSOLE_UPDATE_ON_SET |
| 356 | bool "Changes to the 'silent' environment variable update immediately" |
| 357 | depends on SILENT_CONSOLE |
| 358 | default y if SILENT_CONSOLE |
| 359 | help |
| 360 | When the 'silent' environment variable is changed, update the |
| 361 | console silence flag immediately. This allows 'setenv' to be used |
| 362 | to silence or un-silence the console. |
| 363 | |
| 364 | The effect is that any change to the variable will affect the |
| 365 | GD_FLG_SILENT flag. |
| 366 | |
| 367 | config SILENT_CONSOLE_UPDATE_ON_RELOC |
| 368 | bool "Allow flags to take effect on relocation" |
| 369 | depends on SILENT_CONSOLE |
| 370 | help |
| 371 | In some cases the environment is not available until relocation |
| 372 | (e.g. NAND). This option makes the value of the 'silent' |
| 373 | environment variable take effect at relocation. |
| 374 | |
Simon Glass | 8f92558 | 2016-10-17 20:12:36 -0600 | [diff] [blame] | 375 | config PRE_CONSOLE_BUFFER |
| 376 | bool "Buffer characters before the console is available" |
| 377 | help |
| 378 | Prior to the console being initialised (i.e. serial UART |
| 379 | initialised etc) all console output is silently discarded. |
| 380 | Defining CONFIG_PRE_CONSOLE_BUFFER will cause U-Boot to |
| 381 | buffer any console messages prior to the console being |
| 382 | initialised to a buffer. The buffer is a circular buffer, so |
| 383 | if it overflows, earlier output is discarded. |
| 384 | |
| 385 | Note that this is not currently supported in SPL. It would be |
| 386 | useful to be able to share the pre-console buffer with SPL. |
| 387 | |
| 388 | config PRE_CON_BUF_SZ |
| 389 | int "Sets the size of the pre-console buffer" |
| 390 | depends on PRE_CONSOLE_BUFFER |
| 391 | default 4096 |
| 392 | help |
| 393 | The size of the pre-console buffer affects how much console output |
| 394 | can be held before it overflows and starts discarding earlier |
| 395 | output. Normally there is very little output at this early stage, |
| 396 | unless debugging is enabled, so allow enough for ~10 lines of |
| 397 | text. |
| 398 | |
| 399 | This is a useful feature if you are using a video console and |
| 400 | want to see the full boot output on the console. Without this |
| 401 | option only the post-relocation output will be displayed. |
| 402 | |
| 403 | config PRE_CON_BUF_ADDR |
| 404 | hex "Address of the pre-console buffer" |
| 405 | depends on PRE_CONSOLE_BUFFER |
| 406 | default 0x2f000000 if ARCH_SUNXI && MACH_SUN9I |
| 407 | default 0x4f000000 if ARCH_SUNXI && !MACH_SUN9I |
| 408 | help |
| 409 | This sets the start address of the pre-console buffer. This must |
| 410 | be in available memory and is accessed before relocation and |
| 411 | possibly before DRAM is set up. Therefore choose an address |
| 412 | carefully. |
| 413 | |
| 414 | We should consider removing this option and allocating the memory |
| 415 | in board_init_f_init_reserve() instead. |
| 416 | |
Simon Glass | ef26d60 | 2016-10-17 20:12:37 -0600 | [diff] [blame] | 417 | config CONSOLE_MUX |
| 418 | bool "Enable console multiplexing" |
| 419 | default y if DM_VIDEO || VIDEO || LCD |
| 420 | help |
| 421 | This allows multiple devices to be used for each console 'file'. |
| 422 | For example, stdout can be set to go to serial and video. |
| 423 | Similarly, stdin can be set to come from serial and keyboard. |
| 424 | Input can be provided from either source. Console multiplexing |
| 425 | adds a small amount of size to U-Boot. Changes to the environment |
| 426 | variables stdout, stdin and stderr will take effect immediately. |
| 427 | |
| 428 | config SYS_CONSOLE_IS_IN_ENV |
| 429 | bool "Select console devices from the environment" |
| 430 | default y if CONSOLE_MUX |
| 431 | help |
| 432 | This allows multiple input/output devices to be set at boot time. |
| 433 | For example, if stdout is set to "serial,video" then output will |
| 434 | be sent to both the serial and video devices on boot. The |
| 435 | environment variables can be updated after boot to change the |
| 436 | input/output devices. |
| 437 | |
Simon Glass | 84f2a5d | 2016-10-17 20:12:59 -0600 | [diff] [blame] | 438 | config SYS_CONSOLE_OVERWRITE_ROUTINE |
| 439 | bool "Allow board control over console overwriting" |
| 440 | help |
| 441 | If this is enabled, and the board-specific function |
| 442 | overwrite_console() returns 1, the stdin, stderr and stdout are |
| 443 | switched to the serial port, else the settings in the environment |
| 444 | are used. If this is not enabled, the console will not be switched |
| 445 | to serial. |
| 446 | |
Simon Glass | 3505bc5 | 2016-10-17 20:12:58 -0600 | [diff] [blame] | 447 | config SYS_CONSOLE_ENV_OVERWRITE |
| 448 | bool "Update environment variables during console init" |
| 449 | help |
| 450 | The console environment variables (stdout, stdin, stderr) can be |
| 451 | used to determine the correct console devices on start-up. This |
| 452 | option writes the console devices to these variables on console |
| 453 | start-up (after relocation). This causes the environment to be |
| 454 | updated to match the console devices actually chosen. |
| 455 | |
Simon Glass | f3f3eff | 2016-10-17 20:13:00 -0600 | [diff] [blame] | 456 | config SYS_CONSOLE_INFO_QUIET |
| 457 | bool "Don't display the console devices on boot" |
| 458 | help |
| 459 | Normally U-Boot displays the current settings for stdout, stdin |
| 460 | and stderr on boot when the post-relocation console is set up. |
Chris Packham | f759773 | 2019-01-11 15:30:50 +1300 | [diff] [blame] | 461 | Enable this option to suppress this output. It can be obtained by |
Simon Glass | f3f3eff | 2016-10-17 20:13:00 -0600 | [diff] [blame] | 462 | calling stdio_print_current_devices() from board code. |
| 463 | |
Simon Glass | 869588d | 2016-10-17 20:13:02 -0600 | [diff] [blame] | 464 | config SYS_STDIO_DEREGISTER |
| 465 | bool "Allow deregistering stdio devices" |
| 466 | default y if USB_KEYBOARD |
| 467 | help |
| 468 | Generally there is no need to deregister stdio devices since they |
| 469 | are never deactivated. But if a stdio device is used which can be |
| 470 | removed (for example a USB keyboard) then this option can be |
| 471 | enabled to ensure this is handled correctly. |
| 472 | |
Simon Glass | 98af879 | 2016-10-17 20:12:35 -0600 | [diff] [blame] | 473 | endmenu |
| 474 | |
Simon Glass | e9c8d49 | 2017-12-04 13:48:24 -0700 | [diff] [blame] | 475 | menu "Logging" |
| 476 | |
| 477 | config LOG |
| 478 | bool "Enable logging support" |
Michal Simek | 563273d | 2018-07-23 15:55:11 +0200 | [diff] [blame] | 479 | depends on DM |
Simon Glass | e9c8d49 | 2017-12-04 13:48:24 -0700 | [diff] [blame] | 480 | help |
| 481 | This enables support for logging of status and debug messages. These |
| 482 | can be displayed on the console, recorded in a memory buffer, or |
| 483 | discarded if not needed. Logging supports various categories and |
| 484 | levels of severity. |
| 485 | |
| 486 | config SPL_LOG |
| 487 | bool "Enable logging support in SPL" |
Simon Glass | c0126bd | 2018-11-06 15:21:28 -0700 | [diff] [blame] | 488 | depends on LOG |
| 489 | help |
| 490 | This enables support for logging of status and debug messages. These |
| 491 | can be displayed on the console, recorded in a memory buffer, or |
| 492 | discarded if not needed. Logging supports various categories and |
| 493 | levels of severity. |
| 494 | |
| 495 | config TPL_LOG |
| 496 | bool "Enable logging support in TPL" |
| 497 | depends on LOG |
Simon Glass | e9c8d49 | 2017-12-04 13:48:24 -0700 | [diff] [blame] | 498 | help |
| 499 | This enables support for logging of status and debug messages. These |
| 500 | can be displayed on the console, recorded in a memory buffer, or |
| 501 | discarded if not needed. Logging supports various categories and |
| 502 | levels of severity. |
| 503 | |
| 504 | config LOG_MAX_LEVEL |
| 505 | int "Maximum log level to record" |
| 506 | depends on LOG |
| 507 | default 5 |
| 508 | help |
| 509 | This selects the maximum log level that will be recorded. Any value |
| 510 | higher than this will be ignored. If possible log statements below |
| 511 | this level will be discarded at build time. Levels: |
| 512 | |
Simon Glass | 6fc7e93 | 2019-02-16 20:24:34 -0700 | [diff] [blame] | 513 | 0 - emergency |
| 514 | 1 - alert |
| 515 | 2 - critical |
| 516 | 3 - error |
| 517 | 4 - warning |
| 518 | 5 - note |
| 519 | 6 - info |
Simon Glass | e9c8d49 | 2017-12-04 13:48:24 -0700 | [diff] [blame] | 520 | 7 - debug |
Simon Glass | 6fc7e93 | 2019-02-16 20:24:34 -0700 | [diff] [blame] | 521 | 8 - debug content |
| 522 | 9 - debug hardware I/O |
Simon Glass | e9c8d49 | 2017-12-04 13:48:24 -0700 | [diff] [blame] | 523 | |
| 524 | config SPL_LOG_MAX_LEVEL |
| 525 | int "Maximum log level to record in SPL" |
| 526 | depends on SPL_LOG |
| 527 | default 3 |
| 528 | help |
| 529 | This selects the maximum log level that will be recorded. Any value |
| 530 | higher than this will be ignored. If possible log statements below |
| 531 | this level will be discarded at build time. Levels: |
| 532 | |
Simon Glass | 6fc7e93 | 2019-02-16 20:24:34 -0700 | [diff] [blame] | 533 | 0 - emergency |
| 534 | 1 - alert |
| 535 | 2 - critical |
| 536 | 3 - error |
| 537 | 4 - warning |
| 538 | 5 - note |
| 539 | 6 - info |
Simon Glass | e9c8d49 | 2017-12-04 13:48:24 -0700 | [diff] [blame] | 540 | 7 - debug |
Simon Glass | 6fc7e93 | 2019-02-16 20:24:34 -0700 | [diff] [blame] | 541 | 8 - debug content |
| 542 | 9 - debug hardware I/O |
Simon Glass | e9c8d49 | 2017-12-04 13:48:24 -0700 | [diff] [blame] | 543 | |
Simon Glass | 4d8d305 | 2018-11-15 18:43:49 -0700 | [diff] [blame] | 544 | config TPL_LOG_MAX_LEVEL |
| 545 | int "Maximum log level to record in TPL" |
| 546 | depends on TPL_LOG |
| 547 | default 3 |
| 548 | help |
| 549 | This selects the maximum log level that will be recorded. Any value |
| 550 | higher than this will be ignored. If possible log statements below |
| 551 | this level will be discarded at build time. Levels: |
| 552 | |
Simon Glass | 6fc7e93 | 2019-02-16 20:24:34 -0700 | [diff] [blame] | 553 | 0 - emergency |
| 554 | 1 - alert |
| 555 | 2 - critical |
| 556 | 3 - error |
| 557 | 4 - warning |
| 558 | 5 - note |
| 559 | 6 - info |
Simon Glass | 4d8d305 | 2018-11-15 18:43:49 -0700 | [diff] [blame] | 560 | 7 - debug |
Simon Glass | 6fc7e93 | 2019-02-16 20:24:34 -0700 | [diff] [blame] | 561 | 8 - debug content |
| 562 | 9 - debug hardware I/O |
Simon Glass | 4d8d305 | 2018-11-15 18:43:49 -0700 | [diff] [blame] | 563 | |
Simon Glass | f0b05c9 | 2019-02-16 20:24:35 -0700 | [diff] [blame] | 564 | config LOG_DEFAULT_LEVEL |
| 565 | int "Default logging level to display" |
| 566 | default 6 |
| 567 | help |
| 568 | This is the default logging level set when U-Boot starts. It can |
| 569 | be adjusted later using the 'log level' command. Note that setting |
Andy Shevchenko | 69264f4 | 2019-06-12 15:35:24 +0300 | [diff] [blame] | 570 | this to a value above LOG_MAX_LEVEL will be ineffective, since the |
Simon Glass | f0b05c9 | 2019-02-16 20:24:35 -0700 | [diff] [blame] | 571 | higher levels are not compiled in to U-Boot. |
| 572 | |
| 573 | 0 - emergency |
| 574 | 1 - alert |
| 575 | 2 - critical |
| 576 | 3 - error |
| 577 | 4 - warning |
| 578 | 5 - note |
| 579 | 6 - info |
| 580 | 7 - debug |
| 581 | 8 - debug content |
| 582 | 9 - debug hardware I/O |
| 583 | |
Simon Glass | c6d4753 | 2017-12-04 13:48:25 -0700 | [diff] [blame] | 584 | config LOG_CONSOLE |
| 585 | bool "Allow log output to the console" |
| 586 | depends on LOG |
| 587 | default y |
| 588 | help |
| 589 | Enables a log driver which writes log records to the console. |
| 590 | Generally the console is the serial port or LCD display. Only the |
| 591 | log message is shown - other details like level, category, file and |
| 592 | line number are omitted. |
| 593 | |
Simon Glass | 4d8d305 | 2018-11-15 18:43:49 -0700 | [diff] [blame] | 594 | config SPL_LOG_CONSOLE |
Simon Glass | c6d4753 | 2017-12-04 13:48:25 -0700 | [diff] [blame] | 595 | bool "Allow log output to the console in SPL" |
Simon Glass | 4d8d305 | 2018-11-15 18:43:49 -0700 | [diff] [blame] | 596 | depends on SPL_LOG |
| 597 | default y |
| 598 | help |
| 599 | Enables a log driver which writes log records to the console. |
| 600 | Generally the console is the serial port or LCD display. Only the |
| 601 | log message is shown - other details like level, category, file and |
| 602 | line number are omitted. |
| 603 | |
| 604 | config TPL_LOG_CONSOLE |
| 605 | bool "Allow log output to the console in SPL" |
| 606 | depends on TPL_LOG |
Simon Glass | c6d4753 | 2017-12-04 13:48:25 -0700 | [diff] [blame] | 607 | default y |
| 608 | help |
| 609 | Enables a log driver which writes log records to the console. |
| 610 | Generally the console is the serial port or LCD display. Only the |
| 611 | log message is shown - other details like level, category, file and |
| 612 | line number are omitted. |
| 613 | |
Simon Glass | ef11ed8 | 2017-12-04 13:48:27 -0700 | [diff] [blame] | 614 | config LOG_TEST |
| 615 | bool "Provide a test for logging" |
| 616 | depends on LOG |
| 617 | default y if SANDBOX |
| 618 | help |
| 619 | This enables a 'log test' command to test logging. It is normally |
| 620 | executed from a pytest and simply outputs logging information |
| 621 | in various different ways to test that the logging system works |
Chris Packham | f759773 | 2019-01-11 15:30:50 +1300 | [diff] [blame] | 622 | correctly with various settings. |
Simon Glass | ef11ed8 | 2017-12-04 13:48:27 -0700 | [diff] [blame] | 623 | |
Simon Glass | 3707c6e | 2017-12-28 13:14:23 -0700 | [diff] [blame] | 624 | config LOG_ERROR_RETURN |
| 625 | bool "Log all functions which return an error" |
| 626 | depends on LOG |
| 627 | help |
| 628 | When an error is returned in U-Boot it is sometimes difficult to |
Chris Packham | f759773 | 2019-01-11 15:30:50 +1300 | [diff] [blame] | 629 | figure out the root cause. For example, reading from SPI flash may |
Simon Glass | 3707c6e | 2017-12-28 13:14:23 -0700 | [diff] [blame] | 630 | fail due to a problem in the SPI controller or due to the flash part |
| 631 | not returning the expected information. This option changes |
| 632 | log_ret() to log any errors it sees. With this option disabled, |
| 633 | log_ret() is a nop. |
| 634 | |
| 635 | You can add log_ret() to all functions which return an error code. |
| 636 | |
Simon Glass | e9c8d49 | 2017-12-04 13:48:24 -0700 | [diff] [blame] | 637 | endmenu |
| 638 | |
Adam Ford | d021e94 | 2018-02-06 07:58:59 -0600 | [diff] [blame] | 639 | config SUPPORT_RAW_INITRD |
| 640 | bool "Enable raw initrd images" |
| 641 | help |
| 642 | Note, defining the SUPPORT_RAW_INITRD allows user to supply |
| 643 | kernel with raw initrd images. The syntax is slightly different, the |
| 644 | address of the initrd must be augmented by it's size, in the following |
| 645 | format: "<initrd address>:<initrd size>". |
| 646 | |
Jagan Teki | d259c00 | 2016-10-08 18:00:10 +0530 | [diff] [blame] | 647 | config DEFAULT_FDT_FILE |
| 648 | string "Default fdt file" |
| 649 | help |
| 650 | This option is used to set the default fdt file to boot OS. |
| 651 | |
Adam Ford | 8ccf98b | 2018-07-29 13:13:29 -0500 | [diff] [blame] | 652 | config MISC_INIT_R |
| 653 | bool "Execute Misc Init" |
| 654 | default y if ARCH_KEYSTONE || ARCH_SUNXI || MPC85xx |
| 655 | default y if ARCH_OMAP2PLUS && !AM33XX |
| 656 | help |
| 657 | Enabling this option calls 'misc_init_r' function |
| 658 | |
Heiko Schocher | 9dd1d0a | 2016-09-09 08:12:49 +0200 | [diff] [blame] | 659 | config VERSION_VARIABLE |
| 660 | bool "add U-Boot environment variable vers" |
| 661 | default n |
| 662 | help |
| 663 | If this variable is defined, an environment variable |
| 664 | named "ver" is created by U-Boot showing the U-Boot |
| 665 | version as printed by the "version" command. |
| 666 | Any change to this variable will be reverted at the |
| 667 | next reset. |
Simon Glass | c2ae7d8 | 2016-09-12 23:18:22 -0600 | [diff] [blame] | 668 | |
Jagan Teki | de70fef | 2017-01-21 11:48:32 +0100 | [diff] [blame] | 669 | config BOARD_LATE_INIT |
Michal Simek | 8eb55e1 | 2018-08-20 08:24:14 +0200 | [diff] [blame] | 670 | bool "Execute Board late init" |
Jagan Teki | de70fef | 2017-01-21 11:48:32 +0100 | [diff] [blame] | 671 | help |
| 672 | Sometimes board require some initialization code that might |
| 673 | require once the actual init done, example saving board specific env, |
| 674 | boot-modes etc. which eventually done at late. |
| 675 | |
| 676 | So this config enable the late init code with the help of board_late_init |
| 677 | function which should defined on respective boards. |
| 678 | |
Lokesh Vutla | 19a9747 | 2016-10-08 14:41:44 -0400 | [diff] [blame] | 679 | config DISPLAY_CPUINFO |
| 680 | bool "Display information about the CPU during start up" |
Alexey Brodkin | f31414a | 2018-10-02 11:43:28 +0300 | [diff] [blame] | 681 | default y if ARC|| ARM || NIOS2 || X86 || XTENSA || M68K |
Lokesh Vutla | 19a9747 | 2016-10-08 14:41:44 -0400 | [diff] [blame] | 682 | help |
| 683 | Display information about the CPU that U-Boot is running on |
| 684 | when U-Boot starts up. The function print_cpuinfo() is called |
| 685 | to do this. |
| 686 | |
Lokesh Vutla | 8435179 | 2016-10-11 21:33:46 -0400 | [diff] [blame] | 687 | config DISPLAY_BOARDINFO |
Mario Six | 78eba69 | 2018-03-28 14:38:17 +0200 | [diff] [blame] | 688 | bool "Display information about the board during early start up" |
Alexey Brodkin | f31414a | 2018-10-02 11:43:28 +0300 | [diff] [blame] | 689 | default y if ARC || ARM || M68K || MIPS || PPC || SANDBOX || XTENSA |
Lokesh Vutla | 8435179 | 2016-10-11 21:33:46 -0400 | [diff] [blame] | 690 | help |
| 691 | Display information about the board that U-Boot is running on |
| 692 | when U-Boot starts up. The board function checkboard() is called |
| 693 | to do this. |
| 694 | |
Mario Six | 78eba69 | 2018-03-28 14:38:17 +0200 | [diff] [blame] | 695 | config DISPLAY_BOARDINFO_LATE |
| 696 | bool "Display information about the board during late start up" |
| 697 | help |
| 698 | Display information about the board that U-Boot is running on after |
| 699 | the relocation phase. The board function checkboard() is called to do |
| 700 | this. |
| 701 | |
Philipp Tomsich | 2acc24f | 2018-11-30 22:13:25 +0100 | [diff] [blame] | 702 | config BOUNCE_BUFFER |
| 703 | bool "Include bounce buffer API" |
| 704 | help |
| 705 | Some peripherals support DMA from a subset of physically |
| 706 | addressable memory only. To support such peripherals, the |
| 707 | bounce buffer API uses a temporary buffer: it copies data |
| 708 | to/from DMA regions while managing cache operations. |
| 709 | |
| 710 | A second possible use of bounce buffers is their ability to |
| 711 | provide aligned buffers for DMA operations. |
| 712 | |
Simon Glass | bed44f4 | 2019-01-11 18:37:06 -0700 | [diff] [blame] | 713 | config BOARD_TYPES |
| 714 | bool "Call get_board_type() to get and display the board type" |
| 715 | help |
| 716 | If this option is enabled, checkboard() will call get_board_type() |
| 717 | to get a string containing the board type and this will be |
| 718 | displayed immediately after the model is shown on the console |
| 719 | early in boot. |
| 720 | |
Simon Glass | a421192 | 2017-01-23 13:31:19 -0700 | [diff] [blame] | 721 | menu "Start-up hooks" |
| 722 | |
| 723 | config ARCH_EARLY_INIT_R |
| 724 | bool "Call arch-specific init soon after relocation" |
Simon Glass | a421192 | 2017-01-23 13:31:19 -0700 | [diff] [blame] | 725 | help |
| 726 | With this option U-Boot will call arch_early_init_r() soon after |
| 727 | relocation. Driver model is running by this point, and the cache |
| 728 | is on. Note that board_early_init_r() is called first, if |
| 729 | enabled. This can be used to set up architecture-specific devices. |
| 730 | |
Simon Glass | 4585601 | 2017-01-23 13:31:21 -0700 | [diff] [blame] | 731 | config ARCH_MISC_INIT |
| 732 | bool "Call arch-specific init after relocation, when console is ready" |
| 733 | help |
| 734 | With this option U-Boot will call arch_misc_init() after |
| 735 | relocation to allow miscellaneous arch-dependent initialisation |
| 736 | to be performed. This function should be defined by the board |
Chris Packham | f759773 | 2019-01-11 15:30:50 +1300 | [diff] [blame] | 737 | and will be called after the console is set up, after relocation. |
Simon Glass | 4585601 | 2017-01-23 13:31:21 -0700 | [diff] [blame] | 738 | |
Simon Glass | a5d6754 | 2017-01-23 13:31:20 -0700 | [diff] [blame] | 739 | config BOARD_EARLY_INIT_F |
| 740 | bool "Call board-specific init before relocation" |
Simon Glass | a5d6754 | 2017-01-23 13:31:20 -0700 | [diff] [blame] | 741 | help |
| 742 | Some boards need to perform initialisation as soon as possible |
| 743 | after boot. With this option, U-Boot calls board_early_init_f() |
| 744 | after driver model is ready in the pre-relocation init sequence. |
| 745 | Note that the normal serial console is not yet set up, but the |
| 746 | debug UART will be available if enabled. |
| 747 | |
Mario Six | 02ddc14 | 2018-03-28 14:38:15 +0200 | [diff] [blame] | 748 | config BOARD_EARLY_INIT_R |
| 749 | bool "Call board-specific init after relocation" |
| 750 | help |
| 751 | Some boards need to perform initialisation as directly after |
| 752 | relocation. With this option, U-Boot calls board_early_init_r() |
| 753 | in the post-relocation init sequence. |
| 754 | |
Mario Six | 2aeb22d | 2018-03-28 14:38:16 +0200 | [diff] [blame] | 755 | config LAST_STAGE_INIT |
| 756 | bool "Call board-specific as last setup step" |
| 757 | help |
| 758 | Some boards need to perform initialisation immediately before control |
| 759 | is passed to the command-line interpreter (e.g. for initializations |
| 760 | that depend on later phases in the init sequence). With this option, |
| 761 | U-Boot calls last_stage_init() before the command-line interpreter is |
| 762 | started. |
| 763 | |
Simon Glass | a421192 | 2017-01-23 13:31:19 -0700 | [diff] [blame] | 764 | endmenu |
| 765 | |
Simon Glass | d70f919 | 2017-05-17 09:05:34 -0600 | [diff] [blame] | 766 | menu "Security support" |
| 767 | |
| 768 | config HASH |
| 769 | bool # "Support hashing API (SHA1, SHA256, etc.)" |
| 770 | help |
| 771 | This provides a way to hash data in memory using various supported |
| 772 | algorithms (such as SHA1, MD5, CRC32). The API is defined in hash.h |
| 773 | and the algorithms it supports are defined in common/hash.c. See |
| 774 | also CMD_HASH for command-line access. |
| 775 | |
Igor Opaniuk | b0aa74a | 2018-07-17 14:33:25 +0300 | [diff] [blame] | 776 | config AVB_VERIFY |
| 777 | bool "Build Android Verified Boot operations" |
| 778 | depends on LIBAVB && FASTBOOT |
Eugeniu Rosca | 87c814d | 2018-08-14 02:43:05 +0200 | [diff] [blame] | 779 | depends on PARTITION_UUIDS |
Igor Opaniuk | b0aa74a | 2018-07-17 14:33:25 +0300 | [diff] [blame] | 780 | help |
| 781 | This option enables compilation of bootloader-dependent operations, |
| 782 | used by Android Verified Boot 2.0 library (libavb). Includes: |
| 783 | * Helpers to process strings in order to build OS bootargs. |
| 784 | * Helpers to access MMC, similar to drivers/fastboot/fb_mmc.c. |
| 785 | * Helpers to alloc/init/free avb ops. |
| 786 | |
Simon Glass | c0126bd | 2018-11-06 15:21:28 -0700 | [diff] [blame] | 787 | config SPL_HASH |
| 788 | bool # "Support hashing API (SHA1, SHA256, etc.)" |
| 789 | help |
| 790 | This provides a way to hash data in memory using various supported |
| 791 | algorithms (such as SHA1, MD5, CRC32). The API is defined in hash.h |
| 792 | and the algorithms it supports are defined in common/hash.c. See |
| 793 | also CMD_HASH for command-line access. |
| 794 | |
| 795 | config TPL_HASH |
| 796 | bool # "Support hashing API (SHA1, SHA256, etc.)" |
| 797 | help |
| 798 | This provides a way to hash data in memory using various supported |
| 799 | algorithms (such as SHA1, MD5, CRC32). The API is defined in hash.h |
| 800 | and the algorithms it supports are defined in common/hash.c. See |
| 801 | also CMD_HASH for command-line access. |
| 802 | |
Simon Glass | d70f919 | 2017-05-17 09:05:34 -0600 | [diff] [blame] | 803 | endmenu |
| 804 | |
Marek Vasut | b254c52 | 2018-02-10 16:22:06 +0100 | [diff] [blame] | 805 | menu "Update support" |
| 806 | |
| 807 | config UPDATE_TFTP |
| 808 | bool "Auto-update using fitImage via TFTP" |
| 809 | depends on FIT |
| 810 | help |
| 811 | This option allows performing update of NOR with data in fitImage |
| 812 | sent via TFTP boot. |
| 813 | |
| 814 | config UPDATE_TFTP_CNT_MAX |
| 815 | int "The number of connection retries during auto-update" |
| 816 | default 0 |
| 817 | depends on UPDATE_TFTP |
| 818 | |
| 819 | config UPDATE_TFTP_MSEC_MAX |
| 820 | int "Delay in mSec to wait for the TFTP server during auto-update" |
| 821 | default 100 |
| 822 | depends on UPDATE_TFTP |
| 823 | |
Ruslan Trofymenko | d65e8da | 2019-07-05 15:37:32 +0300 | [diff] [blame] | 824 | config ANDROID_AB |
| 825 | bool "Android A/B updates" |
| 826 | default n |
| 827 | help |
| 828 | If enabled, adds support for the new Android A/B update model. This |
| 829 | allows the bootloader to select which slot to boot from based on the |
| 830 | information provided by userspace via the Android boot_ctrl HAL. This |
| 831 | allows a bootloader to try a new version of the system but roll back |
| 832 | to previous version if the new one didn't boot all the way. |
| 833 | |
Marek Vasut | b254c52 | 2018-02-10 16:22:06 +0100 | [diff] [blame] | 834 | endmenu |
| 835 | |
Simon Glass | 9f407d4 | 2018-11-15 18:43:50 -0700 | [diff] [blame] | 836 | menu "Blob list" |
| 837 | |
| 838 | config BLOBLIST |
| 839 | bool "Support for a bloblist" |
| 840 | help |
| 841 | This enables support for a bloblist in U-Boot, which can be passed |
| 842 | from TPL to SPL to U-Boot proper (and potentially to Linux). The |
| 843 | blob list supports multiple binary blobs of data, each with a tag, |
| 844 | so that different U-Boot components can store data which can survive |
| 845 | through to the next stage of the boot. |
| 846 | |
| 847 | config SPL_BLOBLIST |
| 848 | bool "Support for a bloblist in SPL" |
| 849 | depends on BLOBLIST |
| 850 | default y if SPL |
| 851 | help |
| 852 | This enables a bloblist in SPL. If this is the first part of U-Boot |
| 853 | to run, then the bloblist is set up in SPL and passed to U-Boot |
| 854 | proper. If TPL also has a bloblist, then SPL uses the one from there. |
| 855 | |
| 856 | config TPL_BLOBLIST |
| 857 | bool "Support for a bloblist in TPL" |
| 858 | depends on BLOBLIST |
| 859 | default y if TPL |
| 860 | help |
| 861 | This enables a bloblist in TPL. The bloblist is set up in TPL and |
| 862 | passed to SPL and U-Boot proper. |
| 863 | |
| 864 | config BLOBLIST_SIZE |
| 865 | hex "Size of bloblist" |
| 866 | depends on BLOBLIST |
| 867 | default 0x400 |
| 868 | help |
| 869 | Sets the size of the bloblist in bytes. This must include all |
| 870 | overhead (alignment, bloblist header, record header). The bloblist |
| 871 | is set up in the first part of U-Boot to run (TPL, SPL or U-Boot |
| 872 | proper), and this sane bloblist is used for subsequent stages. |
| 873 | |
| 874 | config BLOBLIST_ADDR |
| 875 | hex "Address of bloblist" |
| 876 | depends on BLOBLIST |
| 877 | default 0xe000 if SANDBOX |
| 878 | help |
| 879 | Sets the address of the bloblist, set up by the first part of U-Boot |
| 880 | which runs. Subsequent U-Boot stages typically use the same address. |
| 881 | |
| 882 | endmenu |
| 883 | |
Simon Glass | c2ae7d8 | 2016-09-12 23:18:22 -0600 | [diff] [blame] | 884 | source "common/spl/Kconfig" |