1menu "Boot timing" 2 3config 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 12 add up all the accumulated time and report it. 13 14 Normally, IDs are defined in bootstage.h but a small number of 15 additional 'user' IDs can be used by passing BOOTSTAGE_ID_ALLOC 16 as the ID. 17 18 Calls to show_boot_progress() will also result in log entries but 19 these will not have names. 20 21config 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 30config 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 39config 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 58config 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 65config 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 72config 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 79config 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 86 mark time in microseconds, or 'accum' containing the 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 103config 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 114config 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 121config BOOTSTAGE_STASH_SIZE 122 hex "Size of boot timing stash region" 123 default 0x1000 124 help 125 This should be large enough to hold the bootstage stash. A value of 126 4096 (4KiB) is normally plenty. 127 128config SHOW_BOOT_PROGRESS 129 bool "Show boot progress in a board-specific manner" 130 help 131 Defining this option allows to add some board-specific code (calling 132 a user-provided function show_boot_progress(int) that enables you to 133 show the system's boot progress on some display (for example, some 134 LEDs) on your board. At the moment, the following checkpoints are 135 implemented: 136 137 Legacy uImage format: 138 139 Arg Where When 140 1 common/cmd_bootm.c before attempting to boot an image 141 -1 common/cmd_bootm.c Image header has bad magic number 142 2 common/cmd_bootm.c Image header has correct magic number 143 -2 common/cmd_bootm.c Image header has bad checksum 144 3 common/cmd_bootm.c Image header has correct checksum 145 -3 common/cmd_bootm.c Image data has bad checksum 146 4 common/cmd_bootm.c Image data has correct checksum 147 -4 common/cmd_bootm.c Image is for unsupported architecture 148 5 common/cmd_bootm.c Architecture check OK 149 -5 common/cmd_bootm.c Wrong Image Type (not kernel, multi) 150 6 common/cmd_bootm.c Image Type check OK 151 -6 common/cmd_bootm.c gunzip uncompression error 152 -7 common/cmd_bootm.c Unimplemented compression type 153 7 common/cmd_bootm.c Uncompression OK 154 8 common/cmd_bootm.c No uncompress/copy overwrite error 155 -9 common/cmd_bootm.c Unsupported OS (not Linux, BSD, VxWorks, QNX) 156 157 9 common/image.c Start initial ramdisk verification 158 -10 common/image.c Ramdisk header has bad magic number 159 -11 common/image.c Ramdisk header has bad checksum 160 10 common/image.c Ramdisk header is OK 161 -12 common/image.c Ramdisk data has bad checksum 162 11 common/image.c Ramdisk data has correct checksum 163 12 common/image.c Ramdisk verification complete, start loading 164 -13 common/image.c Wrong Image Type (not PPC Linux ramdisk) 165 13 common/image.c Start multifile image verification 166 14 common/image.c No initial ramdisk, no multifile, continue. 167 168 15 arch/<arch>/lib/bootm.c All preparation done, transferring control to OS 169 170 -30 arch/powerpc/lib/board.c Fatal error, hang the system 171 -31 post/post.c POST test failed, detected by post_output_backlog() 172 -32 post/post.c POST test failed, detected by post_run_single() 173 174 34 common/cmd_doc.c before loading a Image from a DOC device 175 -35 common/cmd_doc.c Bad usage of "doc" command 176 35 common/cmd_doc.c correct usage of "doc" command 177 -36 common/cmd_doc.c No boot device 178 36 common/cmd_doc.c correct boot device 179 -37 common/cmd_doc.c Unknown Chip ID on boot device 180 37 common/cmd_doc.c correct chip ID found, device available 181 -38 common/cmd_doc.c Read Error on boot device 182 38 common/cmd_doc.c reading Image header from DOC device OK 183 -39 common/cmd_doc.c Image header has bad magic number 184 39 common/cmd_doc.c Image header has correct magic number 185 -40 common/cmd_doc.c Error reading Image from DOC device 186 40 common/cmd_doc.c Image header has correct magic number 187 41 common/cmd_ide.c before loading a Image from a IDE device 188 -42 common/cmd_ide.c Bad usage of "ide" command 189 42 common/cmd_ide.c correct usage of "ide" command 190 -43 common/cmd_ide.c No boot device 191 43 common/cmd_ide.c boot device found 192 -44 common/cmd_ide.c Device not available 193 44 common/cmd_ide.c Device available 194 -45 common/cmd_ide.c wrong partition selected 195 45 common/cmd_ide.c partition selected 196 -46 common/cmd_ide.c Unknown partition table 197 46 common/cmd_ide.c valid partition table found 198 -47 common/cmd_ide.c Invalid partition type 199 47 common/cmd_ide.c correct partition type 200 -48 common/cmd_ide.c Error reading Image Header on boot device 201 48 common/cmd_ide.c reading Image Header from IDE device OK 202 -49 common/cmd_ide.c Image header has bad magic number 203 49 common/cmd_ide.c Image header has correct magic number 204 -50 common/cmd_ide.c Image header has bad checksum 205 50 common/cmd_ide.c Image header has correct checksum 206 -51 common/cmd_ide.c Error reading Image from IDE device 207 51 common/cmd_ide.c reading Image from IDE device OK 208 52 common/cmd_nand.c before loading a Image from a NAND device 209 -53 common/cmd_nand.c Bad usage of "nand" command 210 53 common/cmd_nand.c correct usage of "nand" command 211 -54 common/cmd_nand.c No boot device 212 54 common/cmd_nand.c boot device found 213 -55 common/cmd_nand.c Unknown Chip ID on boot device 214 55 common/cmd_nand.c correct chip ID found, device available 215 -56 common/cmd_nand.c Error reading Image Header on boot device 216 56 common/cmd_nand.c reading Image Header from NAND device OK 217 -57 common/cmd_nand.c Image header has bad magic number 218 57 common/cmd_nand.c Image header has correct magic number 219 -58 common/cmd_nand.c Error reading Image from NAND device 220 58 common/cmd_nand.c reading Image from NAND device OK 221 222 -60 common/env_common.c Environment has a bad CRC, using default 223 224 64 net/eth.c starting with Ethernet configuration. 225 -64 net/eth.c no Ethernet found. 226 65 net/eth.c Ethernet found. 227 228 -80 common/cmd_net.c usage wrong 229 80 common/cmd_net.c before calling net_loop() 230 -81 common/cmd_net.c some error in net_loop() occurred 231 81 common/cmd_net.c net_loop() back without error 232 -82 common/cmd_net.c size == 0 (File with size 0 loaded) 233 82 common/cmd_net.c trying automatic boot 234 83 common/cmd_net.c running "source" command 235 -83 common/cmd_net.c some error in automatic boot or "source" command 236 84 common/cmd_net.c end without errors 237 238 FIT uImage format: 239 240 Arg Where When 241 100 common/cmd_bootm.c Kernel FIT Image has correct format 242 -100 common/cmd_bootm.c Kernel FIT Image has incorrect format 243 101 common/cmd_bootm.c No Kernel subimage unit name, using configuration 244 -101 common/cmd_bootm.c Can't get configuration for kernel subimage 245 102 common/cmd_bootm.c Kernel unit name specified 246 -103 common/cmd_bootm.c Can't get kernel subimage node offset 247 103 common/cmd_bootm.c Found configuration node 248 104 common/cmd_bootm.c Got kernel subimage node offset 249 -104 common/cmd_bootm.c Kernel subimage hash verification failed 250 105 common/cmd_bootm.c Kernel subimage hash verification OK 251 -105 common/cmd_bootm.c Kernel subimage is for unsupported architecture 252 106 common/cmd_bootm.c Architecture check OK 253 -106 common/cmd_bootm.c Kernel subimage has wrong type 254 107 common/cmd_bootm.c Kernel subimage type OK 255 -107 common/cmd_bootm.c Can't get kernel subimage data/size 256 108 common/cmd_bootm.c Got kernel subimage data/size 257 -108 common/cmd_bootm.c Wrong image type (not legacy, FIT) 258 -109 common/cmd_bootm.c Can't get kernel subimage type 259 -110 common/cmd_bootm.c Can't get kernel subimage comp 260 -111 common/cmd_bootm.c Can't get kernel subimage os 261 -112 common/cmd_bootm.c Can't get kernel subimage load address 262 -113 common/cmd_bootm.c Image uncompress/copy overwrite error 263 264 120 common/image.c Start initial ramdisk verification 265 -120 common/image.c Ramdisk FIT image has incorrect format 266 121 common/image.c Ramdisk FIT image has correct format 267 122 common/image.c No ramdisk subimage unit name, using configuration 268 -122 common/image.c Can't get configuration for ramdisk subimage 269 123 common/image.c Ramdisk unit name specified 270 -124 common/image.c Can't get ramdisk subimage node offset 271 125 common/image.c Got ramdisk subimage node offset 272 -125 common/image.c Ramdisk subimage hash verification failed 273 126 common/image.c Ramdisk subimage hash verification OK 274 -126 common/image.c Ramdisk subimage for unsupported architecture 275 127 common/image.c Architecture check OK 276 -127 common/image.c Can't get ramdisk subimage data/size 277 128 common/image.c Got ramdisk subimage data/size 278 129 common/image.c Can't get ramdisk load address 279 -129 common/image.c Got ramdisk load address 280 281 -130 common/cmd_doc.c Incorrect FIT image format 282 131 common/cmd_doc.c FIT image format OK 283 284 -140 common/cmd_ide.c Incorrect FIT image format 285 141 common/cmd_ide.c FIT image format OK 286 287 -150 common/cmd_nand.c Incorrect FIT image format 288 151 common/cmd_nand.c FIT image format OK 289 290endmenu 291 292menu "Boot media" 293 294config NOR_BOOT 295 bool "Support for booting from NOR flash" 296 depends on NOR 297 help 298 Enabling this will make a U-Boot binary that is capable of being 299 booted via NOR. In this case we will enable certain pinmux early 300 as the ROM only partially sets up pinmux. We also default to using 301 NOR for environment. 302 303config NAND_BOOT 304 bool "Support for booting from NAND flash" 305 default n 306 imply MTD_RAW_NAND 307 help 308 Enabling this will make a U-Boot binary that is capable of being 309 booted via NAND flash. This is not a must, some SoCs need this, 310 some not. 311 312config ONENAND_BOOT 313 bool "Support for booting from ONENAND" 314 default n 315 imply MTD_RAW_NAND 316 help 317 Enabling this will make a U-Boot binary that is capable of being 318 booted via ONENAND. This is not a must, some SoCs need this, 319 some not. 320 321config QSPI_BOOT 322 bool "Support for booting from QSPI flash" 323 default n 324 help 325 Enabling this will make a U-Boot binary that is capable of being 326 booted via QSPI flash. This is not a must, some SoCs need this, 327 some not. 328 329config SATA_BOOT 330 bool "Support for booting from SATA" 331 default n 332 help 333 Enabling this will make a U-Boot binary that is capable of being 334 booted via SATA. This is not a must, some SoCs need this, 335 some not. 336 337config SD_BOOT 338 bool "Support for booting from SD/EMMC" 339 default n 340 help 341 Enabling this will make a U-Boot binary that is capable of being 342 booted via SD/EMMC. This is not a must, some SoCs need this, 343 some not. 344 345config SPI_BOOT 346 bool "Support for booting from SPI flash" 347 default n 348 help 349 Enabling this will make a U-Boot binary that is capable of being 350 booted via SPI flash. This is not a must, some SoCs need this, 351 some not. 352 353endmenu 354 355config BOOTDELAY 356 int "delay in seconds before automatically booting" 357 default 2 358 depends on AUTOBOOT 359 help 360 Delay before automatically running bootcmd; 361 set to 0 to autoboot with no delay, but you can stop it by key input. 362 set to -1 to disable autoboot. 363 set to -2 to autoboot with no delay and not check for abort 364 365 If this value is >= 0 then it is also used for the default delay 366 before starting the default entry in bootmenu. If it is < 0 then 367 a default value of 10s is used. 368 369 See doc/README.autoboot for details. 370 371menu "hisi_setup" 372 373config HISI_MC 374 bool "Hisilicon mc platform solution" 375 default n 376 help 377 support for Hisilicon mc platform solution 378 379config HISI_SPIFLASH_SPEED 380 bool "Hisilicon spinor and spinand speed " 381 default n 382 depends on HIFMC_SPI_NAND || HIFMC_SPI_NOR || HIFMC_NAND 383 help 384 Support for flash speed testing. 385 386config HISI_UPGRADE_BY_SEGMENT 387 bool "Hisilicon Upgrade by segment write" 388 default n 389 help 390 Support for upgrade by segment,this option is used only when the memory 391 is small and the upgrade file is large. If you are not sure, select n by default. 392 393config HISI_DISABLE_CONSOLE 394 bool "Hisilicon disable console" 395 default n 396 help 397 The console in uboot is not secure. In formal commercial products, 398 the input and output of the console should be turned off to avoid being attacked. 399 Only during debugging, enable the input and output functions of the console. 400 401config HISI_DISABLE_DOWNLOAD 402 bool "Hisilicon disable chip download" 403 default n 404 help 405 The bare chip download programming function and the network download programming 406 function are not safe in a commercial environment and may be used by hackers. 407 Therefore, it needs to be disabled in the official product. 408 409endmenu 410 411config USE_BOOTARGS 412 bool "Enable boot arguments" 413 help 414 Provide boot arguments to bootm command. Boot arguments are specified 415 in CONFIG_BOOTARGS option. Enable this option to be able to specify 416 CONFIG_BOOTARGS string. If this option is disabled, CONFIG_BOOTARGS 417 will be undefined and won't take any space in U-Boot image. 418 419config BOOTARGS 420 string "Boot arguments" 421 depends on USE_BOOTARGS 422 help 423 This can be used to pass arguments to the bootm command. The value of 424 CONFIG_BOOTARGS goes into the environment value "bootargs". Note that 425 this value will also override the "chosen" node in FDT blob. 426 427config USE_BOOTCOMMAND 428 bool "Enable a default value for bootcmd" 429 help 430 Provide a default value for the bootcmd entry in the environment. If 431 autoboot is enabled this is what will be run automatically. Enable 432 this option to be able to specify CONFIG_BOOTCOMMAND as a string. If 433 this option is disabled, CONFIG_BOOTCOMMAND will be undefined and 434 won't take any space in U-Boot image. 435 436config BOOTCOMMAND 437 string "bootcmd value" 438 depends on USE_BOOTCOMMAND 439 default "run distro_bootcmd" if DISTRO_DEFAULTS 440 help 441 This is the string of commands that will be used as bootcmd and if 442 AUTOBOOT is set, automatically run. 443 444config USE_PREBOOT 445 bool "Enable preboot" 446 help 447 When this option is enabled, the existence of the environment 448 variable "preboot" will be checked immediately before starting the 449 CONFIG_BOOTDELAY countdown and/or running the auto-boot command resp. 450 entering interactive mode. 451 452 This feature is especially useful when "preboot" is automatically 453 generated or modified. For example, the boot code can modify the 454 "preboot" when a user holds down a certain combination of keys. 455 456config PREBOOT 457 string "preboot default value" 458 depends on USE_PREBOOT 459 default "" 460 help 461 This is the default of "preboot" environment variable. 462 463menu "Console" 464 465config MENU 466 bool 467 help 468 This is the library functionality to provide a text-based menu of 469 choices for the user to make choices with. 470 471config CONSOLE_RECORD 472 bool "Console recording" 473 help 474 This provides a way to record console output (and provide console 475 input) through circular buffers. This is mostly useful for testing. 476 Console output is recorded even when the console is silent. 477 To enable console recording, call console_record_reset_enable() 478 from your code. 479 480config CONSOLE_RECORD_OUT_SIZE 481 hex "Output buffer size" 482 depends on CONSOLE_RECORD 483 default 0x400 if CONSOLE_RECORD 484 help 485 Set the size of the console output buffer. When this fills up, no 486 more data will be recorded until some is removed. The buffer is 487 allocated immediately after the malloc() region is ready. 488 489config CONSOLE_RECORD_IN_SIZE 490 hex "Input buffer size" 491 depends on CONSOLE_RECORD 492 default 0x100 if CONSOLE_RECORD 493 help 494 Set the size of the console input buffer. When this contains data, 495 tstc() and getc() will use this in preference to real device input. 496 The buffer is allocated immediately after the malloc() region is 497 ready. 498 499config DISABLE_CONSOLE 500 bool "Add functionality to disable console completely" 501 help 502 Disable console (in & out). 503 504config IDENT_STRING 505 string "Board specific string to be added to uboot version string" 506 help 507 This options adds the board specific name to u-boot version. 508 509config LOGLEVEL 510 int "loglevel" 511 default 4 512 range 0 8 513 help 514 All Messages with a loglevel smaller than the console loglevel will 515 be compiled in. The loglevels are defined as follows: 516 517 0 - emergency 518 1 - alert 519 2 - critical 520 3 - error 521 4 - warning 522 5 - note 523 6 - info 524 7 - debug 525 8 - debug content 526 9 - debug hardware I/O 527 528config SPL_LOGLEVEL 529 int 530 default LOGLEVEL 531 532config TPL_LOGLEVEL 533 int 534 default LOGLEVEL 535 536config SILENT_CONSOLE 537 bool "Support a silent console" 538 help 539 This option allows the console to be silenced, meaning that no 540 output will appear on the console devices. This is controlled by 541 setting the environment variable 'silent' to a non-empty value. 542 Note this also silences the console when booting Linux. 543 544 When the console is set up, the variable is checked, and the 545 GD_FLG_SILENT flag is set. Changing the environment variable later 546 will update the flag. 547 548config SILENT_U_BOOT_ONLY 549 bool "Only silence the U-Boot console" 550 depends on SILENT_CONSOLE 551 help 552 Normally when the U-Boot console is silenced, Linux's console is 553 also silenced (assuming the board boots into Linux). This option 554 allows the linux console to operate normally, even if U-Boot's 555 is silenced. 556 557config SILENT_CONSOLE_UPDATE_ON_SET 558 bool "Changes to the 'silent' environment variable update immediately" 559 depends on SILENT_CONSOLE 560 default y if SILENT_CONSOLE 561 help 562 When the 'silent' environment variable is changed, update the 563 console silence flag immediately. This allows 'setenv' to be used 564 to silence or un-silence the console. 565 566 The effect is that any change to the variable will affect the 567 GD_FLG_SILENT flag. 568 569config SILENT_CONSOLE_UPDATE_ON_RELOC 570 bool "Allow flags to take effect on relocation" 571 depends on SILENT_CONSOLE 572 help 573 In some cases the environment is not available until relocation 574 (e.g. NAND). This option makes the value of the 'silent' 575 environment variable take effect at relocation. 576 577config PRE_CONSOLE_BUFFER 578 bool "Buffer characters before the console is available" 579 help 580 Prior to the console being initialised (i.e. serial UART 581 initialised etc) all console output is silently discarded. 582 Defining CONFIG_PRE_CONSOLE_BUFFER will cause U-Boot to 583 buffer any console messages prior to the console being 584 initialised to a buffer. The buffer is a circular buffer, so 585 if it overflows, earlier output is discarded. 586 587 Note that this is not currently supported in SPL. It would be 588 useful to be able to share the pre-console buffer with SPL. 589 590config PRE_CON_BUF_SZ 591 int "Sets the size of the pre-console buffer" 592 depends on PRE_CONSOLE_BUFFER 593 default 4096 594 help 595 The size of the pre-console buffer affects how much console output 596 can be held before it overflows and starts discarding earlier 597 output. Normally there is very little output at this early stage, 598 unless debugging is enabled, so allow enough for ~10 lines of 599 text. 600 601 This is a useful feature if you are using a video console and 602 want to see the full boot output on the console. Without this 603 option only the post-relocation output will be displayed. 604 605config PRE_CON_BUF_ADDR 606 hex "Address of the pre-console buffer" 607 depends on PRE_CONSOLE_BUFFER 608 default 0x2f000000 if ARCH_SUNXI && MACH_SUN9I 609 default 0x4f000000 if ARCH_SUNXI && !MACH_SUN9I 610 help 611 This sets the start address of the pre-console buffer. This must 612 be in available memory and is accessed before relocation and 613 possibly before DRAM is set up. Therefore choose an address 614 carefully. 615 616 We should consider removing this option and allocating the memory 617 in board_init_f_init_reserve() instead. 618 619config CONSOLE_MUX 620 bool "Enable console multiplexing" 621 default y if DM_VIDEO || VIDEO || LCD 622 help 623 This allows multiple devices to be used for each console 'file'. 624 For example, stdout can be set to go to serial and video. 625 Similarly, stdin can be set to come from serial and keyboard. 626 Input can be provided from either source. Console multiplexing 627 adds a small amount of size to U-Boot. Changes to the environment 628 variables stdout, stdin and stderr will take effect immediately. 629 630config SYS_CONSOLE_IS_IN_ENV 631 bool "Select console devices from the environment" 632 default y if CONSOLE_MUX 633 help 634 This allows multiple input/output devices to be set at boot time. 635 For example, if stdout is set to "serial,video" then output will 636 be sent to both the serial and video devices on boot. The 637 environment variables can be updated after boot to change the 638 input/output devices. 639 640config SYS_CONSOLE_OVERWRITE_ROUTINE 641 bool "Allow board control over console overwriting" 642 help 643 If this is enabled, and the board-specific function 644 overwrite_console() returns 1, the stdin, stderr and stdout are 645 switched to the serial port, else the settings in the environment 646 are used. If this is not enabled, the console will not be switched 647 to serial. 648 649config SYS_CONSOLE_ENV_OVERWRITE 650 bool "Update environment variables during console init" 651 help 652 The console environment variables (stdout, stdin, stderr) can be 653 used to determine the correct console devices on start-up. This 654 option writes the console devices to these variables on console 655 start-up (after relocation). This causes the environment to be 656 updated to match the console devices actually chosen. 657 658config SYS_CONSOLE_INFO_QUIET 659 bool "Don't display the console devices on boot" 660 help 661 Normally U-Boot displays the current settings for stdout, stdin 662 and stderr on boot when the post-relocation console is set up. 663 Enable this option to suppress this output. It can be obtained by 664 calling stdio_print_current_devices() from board code. 665 666config SYS_STDIO_DEREGISTER 667 bool "Allow deregistering stdio devices" 668 default y if USB_KEYBOARD 669 help 670 Generally there is no need to deregister stdio devices since they 671 are never deactivated. But if a stdio device is used which can be 672 removed (for example a USB keyboard) then this option can be 673 enabled to ensure this is handled correctly. 674 675endmenu 676 677menu "Logging" 678 679config LOG 680 bool "Enable logging support" 681 depends on DM 682 help 683 This enables support for logging of status and debug messages. These 684 can be displayed on the console, recorded in a memory buffer, or 685 discarded if not needed. Logging supports various categories and 686 levels of severity. 687 688config SPL_LOG 689 bool "Enable logging support in SPL" 690 depends on LOG 691 help 692 This enables support for logging of status and debug messages. These 693 can be displayed on the console, recorded in a memory buffer, or 694 discarded if not needed. Logging supports various categories and 695 levels of severity. 696 697config TPL_LOG 698 bool "Enable logging support in TPL" 699 depends on LOG 700 help 701 This enables support for logging of status and debug messages. These 702 can be displayed on the console, recorded in a memory buffer, or 703 discarded if not needed. Logging supports various categories and 704 levels of severity. 705 706config LOG_MAX_LEVEL 707 int "Maximum log level to record" 708 depends on LOG 709 default 5 710 help 711 This selects the maximum log level that will be recorded. Any value 712 higher than this will be ignored. If possible log statements below 713 this level will be discarded at build time. Levels: 714 715 0 - emergency 716 1 - alert 717 2 - critical 718 3 - error 719 4 - warning 720 5 - note 721 6 - info 722 7 - debug 723 8 - debug content 724 9 - debug hardware I/O 725 726config SPL_LOG_MAX_LEVEL 727 int "Maximum log level to record in SPL" 728 depends on SPL_LOG 729 default 3 730 help 731 This selects the maximum log level that will be recorded. Any value 732 higher than this will be ignored. If possible log statements below 733 this level will be discarded at build time. Levels: 734 735 0 - emergency 736 1 - alert 737 2 - critical 738 3 - error 739 4 - warning 740 5 - note 741 6 - info 742 7 - debug 743 8 - debug content 744 9 - debug hardware I/O 745 746config TPL_LOG_MAX_LEVEL 747 int "Maximum log level to record in TPL" 748 depends on TPL_LOG 749 default 3 750 help 751 This selects the maximum log level that will be recorded. Any value 752 higher than this will be ignored. If possible log statements below 753 this level will be discarded at build time. Levels: 754 755 0 - emergency 756 1 - alert 757 2 - critical 758 3 - error 759 4 - warning 760 5 - note 761 6 - info 762 7 - debug 763 8 - debug content 764 9 - debug hardware I/O 765 766config LOG_DEFAULT_LEVEL 767 int "Default logging level to display" 768 default 6 769 help 770 This is the default logging level set when U-Boot starts. It can 771 be adjusted later using the 'log level' command. Note that setting 772 this to a value above LOG_MAX_LEVEL will be ineffective, since the 773 higher levels are not compiled in to U-Boot. 774 775 0 - emergency 776 1 - alert 777 2 - critical 778 3 - error 779 4 - warning 780 5 - note 781 6 - info 782 7 - debug 783 8 - debug content 784 9 - debug hardware I/O 785 786config LOG_CONSOLE 787 bool "Allow log output to the console" 788 depends on LOG 789 default y 790 help 791 Enables a log driver which writes log records to the console. 792 Generally the console is the serial port or LCD display. Only the 793 log message is shown - other details like level, category, file and 794 line number are omitted. 795 796config SPL_LOG_CONSOLE 797 bool "Allow log output to the console in SPL" 798 depends on SPL_LOG 799 default y 800 help 801 Enables a log driver which writes log records to the console. 802 Generally the console is the serial port or LCD display. Only the 803 log message is shown - other details like level, category, file and 804 line number are omitted. 805 806config TPL_LOG_CONSOLE 807 bool "Allow log output to the console in TPL" 808 depends on TPL_LOG 809 default y 810 help 811 Enables a log driver which writes log records to the console. 812 Generally the console is the serial port or LCD display. Only the 813 log message is shown - other details like level, category, file and 814 line number are omitted. 815 816config LOG_TEST 817 bool "Provide a test for logging" 818 depends on LOG 819 default y if SANDBOX 820 help 821 This enables a 'log test' command to test logging. It is normally 822 executed from a pytest and simply outputs logging information 823 in various different ways to test that the logging system works 824 correctly with various settings. 825 826config LOG_ERROR_RETURN 827 bool "Log all functions which return an error" 828 depends on LOG 829 help 830 When an error is returned in U-Boot it is sometimes difficult to 831 figure out the root cause. For example, reading from SPI flash may 832 fail due to a problem in the SPI controller or due to the flash part 833 not returning the expected information. This option changes 834 log_ret() to log any errors it sees. With this option disabled, 835 log_ret() is a nop. 836 837 You can add log_ret() to all functions which return an error code. 838 839endmenu 840 841config SUPPORT_RAW_INITRD 842 bool "Enable raw initrd images" 843 help 844 Note, defining the SUPPORT_RAW_INITRD allows user to supply 845 kernel with raw initrd images. The syntax is slightly different, the 846 address of the initrd must be augmented by it's size, in the following 847 format: "<initrd address>:<initrd size>". 848 849config DEFAULT_FDT_FILE 850 string "Default fdt file" 851 help 852 This option is used to set the default fdt file to boot OS. 853config KERNEL_LOAD_ADDR 854 hex "Set kernel load address" 855 default 0x42080000 856 help 857 Set the address of kernel to be loaded, because the single and 858 big-little kernel should be loaded at diffrent address. 859 860config MISC_INIT_R 861 bool "Execute Misc Init" 862 default y if ARCH_KEYSTONE || ARCH_SUNXI || MPC85xx 863 default y if ARCH_OMAP2PLUS && !AM33XX 864 help 865 Enabling this option calls 'misc_init_r' function 866 867config VERSION_VARIABLE 868 bool "add U-Boot environment variable vers" 869 default n 870 help 871 If this variable is defined, an environment variable 872 named "ver" is created by U-Boot showing the U-Boot 873 version as printed by the "version" command. 874 Any change to this variable will be reverted at the 875 next reset. 876 877config BOARD_LATE_INIT 878 bool "Execute Board late init" 879 help 880 Sometimes board require some initialization code that might 881 require once the actual init done, example saving board specific env, 882 boot-modes etc. which eventually done at late. 883 884 So this config enable the late init code with the help of board_late_init 885 function which should defined on respective boards. 886 887config DISPLAY_CPUINFO 888 bool "Display information about the CPU during start up" 889 default y if ARC|| ARM || NIOS2 || X86 || XTENSA || M68K 890 help 891 Display information about the CPU that U-Boot is running on 892 when U-Boot starts up. The function print_cpuinfo() is called 893 to do this. 894 895config DISPLAY_BOARDINFO 896 bool "Display information about the board during early start up" 897 default y if ARC || ARM || M68K || MIPS || PPC || SANDBOX || XTENSA 898 help 899 Display information about the board that U-Boot is running on 900 when U-Boot starts up. The board function checkboard() is called 901 to do this. 902 903config DISPLAY_BOARDINFO_LATE 904 bool "Display information about the board during late start up" 905 help 906 Display information about the board that U-Boot is running on after 907 the relocation phase. The board function checkboard() is called to do 908 this. 909 910config BOUNCE_BUFFER 911 bool "Include bounce buffer API" 912 help 913 Some peripherals support DMA from a subset of physically 914 addressable memory only. To support such peripherals, the 915 bounce buffer API uses a temporary buffer: it copies data 916 to/from DMA regions while managing cache operations. 917 918 A second possible use of bounce buffers is their ability to 919 provide aligned buffers for DMA operations. 920 921config BOARD_TYPES 922 bool "Call get_board_type() to get and display the board type" 923 help 924 If this option is enabled, checkboard() will call get_board_type() 925 to get a string containing the board type and this will be 926 displayed immediately after the model is shown on the console 927 early in boot. 928 929menu "Start-up hooks" 930 931config ARCH_EARLY_INIT_R 932 bool "Call arch-specific init soon after relocation" 933 help 934 With this option U-Boot will call arch_early_init_r() soon after 935 relocation. Driver model is running by this point, and the cache 936 is on. Note that board_early_init_r() is called first, if 937 enabled. This can be used to set up architecture-specific devices. 938 939config ARCH_MISC_INIT 940 bool "Call arch-specific init after relocation, when console is ready" 941 help 942 With this option U-Boot will call arch_misc_init() after 943 relocation to allow miscellaneous arch-dependent initialisation 944 to be performed. This function should be defined by the board 945 and will be called after the console is set up, after relocation. 946 947config BOARD_EARLY_INIT_F 948 bool "Call board-specific init before relocation" 949 help 950 Some boards need to perform initialisation as soon as possible 951 after boot. With this option, U-Boot calls board_early_init_f() 952 after driver model is ready in the pre-relocation init sequence. 953 Note that the normal serial console is not yet set up, but the 954 debug UART will be available if enabled. 955 956config BOARD_EARLY_INIT_R 957 bool "Call board-specific init after relocation" 958 help 959 Some boards need to perform initialisation as directly after 960 relocation. With this option, U-Boot calls board_early_init_r() 961 in the post-relocation init sequence. 962 963config LAST_STAGE_INIT 964 bool "Call board-specific as last setup step" 965 help 966 Some boards need to perform initialisation immediately before control 967 is passed to the command-line interpreter (e.g. for initializations 968 that depend on later phases in the init sequence). With this option, 969 U-Boot calls last_stage_init() before the command-line interpreter is 970 started. 971 972endmenu 973 974menu "Security support" 975 976config HASH 977 bool # "Support hashing API (SHA1, SHA256, etc.)" 978 help 979 This provides a way to hash data in memory using various supported 980 algorithms (such as SHA1, MD5, CRC32). The API is defined in hash.h 981 and the algorithms it supports are defined in common/hash.c. See 982 also CMD_HASH for command-line access. 983 984config AVB_VERIFY 985 bool "Build Android Verified Boot operations" 986 depends on LIBAVB && FASTBOOT 987 depends on PARTITION_UUIDS 988 help 989 This option enables compilation of bootloader-dependent operations, 990 used by Android Verified Boot 2.0 library (libavb). Includes: 991 * Helpers to process strings in order to build OS bootargs. 992 * Helpers to access MMC, similar to drivers/fastboot/fb_mmc.c. 993 * Helpers to alloc/init/free avb ops. 994 995config SPL_HASH 996 bool # "Support hashing API (SHA1, SHA256, etc.)" 997 help 998 This provides a way to hash data in memory using various supported 999 algorithms (such as SHA1, MD5, CRC32). The API is defined in hash.h 1000 and the algorithms it supports are defined in common/hash.c. See 1001 also CMD_HASH for command-line access. 1002 1003config TPL_HASH 1004 bool # "Support hashing API (SHA1, SHA256, etc.)" 1005 default n if HISI_MC 1006 help 1007 This provides a way to hash data in memory using various supported 1008 algorithms (such as SHA1, MD5, CRC32). The API is defined in hash.h 1009 and the algorithms it supports are defined in common/hash.c. See 1010 also CMD_HASH for command-line access. 1011 1012endmenu 1013 1014menu "Update support" 1015 1016config UPDATE_TFTP 1017 bool "Auto-update using fitImage via TFTP" 1018 depends on FIT 1019 help 1020 This option allows performing update of NOR with data in fitImage 1021 sent via TFTP boot. 1022 1023config UPDATE_TFTP_CNT_MAX 1024 int "The number of connection retries during auto-update" 1025 default 0 1026 depends on UPDATE_TFTP 1027 1028config UPDATE_TFTP_MSEC_MAX 1029 int "Delay in mSec to wait for the TFTP server during auto-update" 1030 default 100 1031 depends on UPDATE_TFTP 1032 1033config ANDROID_AB 1034 bool "Android A/B updates" 1035 default n 1036 help 1037 If enabled, adds support for the new Android A/B update model. This 1038 allows the bootloader to select which slot to boot from based on the 1039 information provided by userspace via the Android boot_ctrl HAL. This 1040 allows a bootloader to try a new version of the system but roll back 1041 to previous version if the new one didn't boot all the way. 1042 1043endmenu 1044 1045menu "Blob list" 1046 1047config BLOBLIST 1048 bool "Support for a bloblist" 1049 help 1050 This enables support for a bloblist in U-Boot, which can be passed 1051 from TPL to SPL to U-Boot proper (and potentially to Linux). The 1052 blob list supports multiple binary blobs of data, each with a tag, 1053 so that different U-Boot components can store data which can survive 1054 through to the next stage of the boot. 1055 1056config SPL_BLOBLIST 1057 bool "Support for a bloblist in SPL" 1058 depends on BLOBLIST 1059 default y if SPL 1060 help 1061 This enables a bloblist in SPL. If this is the first part of U-Boot 1062 to run, then the bloblist is set up in SPL and passed to U-Boot 1063 proper. If TPL also has a bloblist, then SPL uses the one from there. 1064 1065config TPL_BLOBLIST 1066 bool "Support for a bloblist in TPL" 1067 depends on BLOBLIST 1068 default y if TPL 1069 help 1070 This enables a bloblist in TPL. The bloblist is set up in TPL and 1071 passed to SPL and U-Boot proper. 1072 1073config BLOBLIST_SIZE 1074 hex "Size of bloblist" 1075 depends on BLOBLIST 1076 default 0x400 1077 help 1078 Sets the size of the bloblist in bytes. This must include all 1079 overhead (alignment, bloblist header, record header). The bloblist 1080 is set up in the first part of U-Boot to run (TPL, SPL or U-Boot 1081 proper), and this sane bloblist is used for subsequent stages. 1082 1083config BLOBLIST_ADDR 1084 hex "Address of bloblist" 1085 depends on BLOBLIST 1086 default 0xe000 if SANDBOX 1087 help 1088 Sets the address of the bloblist, set up by the first part of U-Boot 1089 which runs. Subsequent U-Boot stages typically use the same address. 1090 1091config CMD_CREAD 1092 bool "Enable cycle read function" 1093 default y if CONFIG_TARGET_HI3556AV100 || CONFIG_TARGET_HI3519AV100 1094 help 1095 Enable the function for cycle read. 1096 1097endmenu 1098 1099source "common/spl/Kconfig" 1100