151631259SMasahiro Yamada# 251631259SMasahiro Yamada# For a description of the syntax of this configuration file, 359d7c34bSRobert P. J. Day# see the file Documentation/kbuild/kconfig-language.txt in the 459d7c34bSRobert P. J. Day# Linux kernel source tree. 551631259SMasahiro Yamada# 651631259SMasahiro Yamadamainmenu "U-Boot $UBOOTVERSION Configuration" 751631259SMasahiro Yamada 851631259SMasahiro Yamadaconfig UBOOTVERSION 951631259SMasahiro Yamada string 1051631259SMasahiro Yamada option env="UBOOTVERSION" 1151631259SMasahiro Yamada 1266afaef2SSimon Glass# Allow defaults in arch-specific code to override any given here 1366afaef2SSimon Glasssource "arch/Kconfig" 1466afaef2SSimon Glass 1551631259SMasahiro Yamadamenu "General setup" 1651631259SMasahiro Yamada 17f0573858SHeinrich Schuchardtconfig BROKEN 18f0573858SHeinrich Schuchardt bool 19f0573858SHeinrich Schuchardt help 20f0573858SHeinrich Schuchardt This option cannot be enabled. It is used as dependency 21f0573858SHeinrich Schuchardt for broken and incomplete features. 22f0573858SHeinrich Schuchardt 23e91c3c33SMasahiro Yamadaconfig LOCALVERSION 24e91c3c33SMasahiro Yamada string "Local version - append to U-Boot release" 25e91c3c33SMasahiro Yamada help 26e91c3c33SMasahiro Yamada Append an extra string to the end of your U-Boot version. 2759d7c34bSRobert P. J. Day This will show up in your boot log, for example. 28e91c3c33SMasahiro Yamada The string you set here will be appended after the contents of 29e91c3c33SMasahiro Yamada any files with a filename matching localversion* in your 30e91c3c33SMasahiro Yamada object and source tree, in that order. Your total string can 31e91c3c33SMasahiro Yamada be a maximum of 64 characters. 32e91c3c33SMasahiro Yamada 33e91c3c33SMasahiro Yamadaconfig LOCALVERSION_AUTO 34e91c3c33SMasahiro Yamada bool "Automatically append version information to the version string" 35e91c3c33SMasahiro Yamada default y 36e91c3c33SMasahiro Yamada help 37e91c3c33SMasahiro Yamada This will try to automatically determine if the current tree is a 3859d7c34bSRobert P. J. Day release tree by looking for Git tags that belong to the current 39e91c3c33SMasahiro Yamada top of tree revision. 40e91c3c33SMasahiro Yamada 41e91c3c33SMasahiro Yamada A string of the format -gxxxxxxxx will be added to the localversion 4259d7c34bSRobert P. J. Day if a Git-based tree is found. The string generated by this will be 43e91c3c33SMasahiro Yamada appended after any matching localversion* files, and after the value 44e91c3c33SMasahiro Yamada set in CONFIG_LOCALVERSION. 45e91c3c33SMasahiro Yamada 46e91c3c33SMasahiro Yamada (The actual string used here is the first eight characters produced 47e91c3c33SMasahiro Yamada by running the command: 48e91c3c33SMasahiro Yamada 49e91c3c33SMasahiro Yamada $ git rev-parse --verify HEAD 50e91c3c33SMasahiro Yamada 51e91c3c33SMasahiro Yamada which is done within the script "scripts/setlocalversion".) 52e91c3c33SMasahiro Yamada 534a8ed8e2SMasahiro Yamadaconfig CC_OPTIMIZE_FOR_SIZE 544a8ed8e2SMasahiro Yamada bool "Optimize for size" 554a8ed8e2SMasahiro Yamada default y 564a8ed8e2SMasahiro Yamada help 574a8ed8e2SMasahiro Yamada Enabling this option will pass "-Os" instead of "-O2" to gcc 584a8ed8e2SMasahiro Yamada resulting in a smaller U-Boot image. 594a8ed8e2SMasahiro Yamada 604a8ed8e2SMasahiro Yamada This option is enabled by default for U-Boot. 614a8ed8e2SMasahiro Yamada 629f823615SHans de Goedeconfig DISTRO_DEFAULTS 639f823615SHans de Goede bool "Select defaults suitable for booting general purpose Linux distributions" 643337e3afSTom Rini default y if ARCH_SUNXI || TEGRA 65b99ebaf9SAlexander Graf default y if ARCH_LS2080A 6670b8bd7dSAndreas Färber default y if ARCH_MESON 677bdedf11SRomain Perier default y if ARCH_ROCKCHIP 689f823615SHans de Goede default n 69a391d500STom Rini select CMD_BOOTZ if ARM && !ARM64 7026959271SMasahiro Yamada select CMD_BOOTI if ARM64 719f823615SHans de Goede select CMD_DHCP 72e127f2d0SDavid Wu imply CMD_PXE 739f823615SHans de Goede select CMD_EXT2 749f823615SHans de Goede select CMD_EXT4 759f823615SHans de Goede select CMD_FAT 769f823615SHans de Goede select CMD_FS_GENERIC 77e127f2d0SDavid Wu imply CMD_MII 789f823615SHans de Goede select CMD_PING 79b331cd62SPatrick Delaunay select CMD_PART 809f823615SHans de Goede select HUSH_PARSER 819f823615SHans de Goede help 829f823615SHans de Goede Select this to enable various options and commands which are suitable 839f823615SHans de Goede for building u-boot for booting general purpose Linux distributions. 849f823615SHans de Goede 85b724bd7dSSimon Glassconfig SYS_MALLOC_F 86b724bd7dSSimon Glass bool "Enable malloc() pool before relocation" 87326a6823SMasahiro Yamada default y if DM 88b724bd7dSSimon Glass help 8959d7c34bSRobert P. J. Day Before relocation, memory is very limited on many platforms. Still, 90b724bd7dSSimon Glass we can provide a small malloc() pool if needed. Driver model in 91b724bd7dSSimon Glass particular needs this to operate, so that it can allocate the 92b724bd7dSSimon Glass initial serial device and any others that are needed. 93b724bd7dSSimon Glass 94b724bd7dSSimon Glassconfig SYS_MALLOC_F_LEN 95b724bd7dSSimon Glass hex "Size of malloc() pool before relocation" 96b724bd7dSSimon Glass depends on SYS_MALLOC_F 97b724bd7dSSimon Glass default 0x400 98b724bd7dSSimon Glass help 9959d7c34bSRobert P. J. Day Before relocation, memory is very limited on many platforms. Still, 100b724bd7dSSimon Glass we can provide a small malloc() pool if needed. Driver model in 101b724bd7dSSimon Glass particular needs this to operate, so that it can allocate the 102b724bd7dSSimon Glass initial serial device and any others that are needed. 103b724bd7dSSimon Glass 104f1896c45SAndy Yanconfig SPL_SYS_MALLOC_F_LEN 105ae2cee2eSPhilipp Tomsich hex "Size of malloc() pool in SPL before relocation" 106ae2cee2eSPhilipp Tomsich depends on SYS_MALLOC_F 107ae2cee2eSPhilipp Tomsich default SYS_MALLOC_F_LEN 108ae2cee2eSPhilipp Tomsich help 109ae2cee2eSPhilipp Tomsich Before relocation, memory is very limited on many platforms. Still, 110ae2cee2eSPhilipp Tomsich we can provide a small malloc() pool if needed. Driver model in 111ae2cee2eSPhilipp Tomsich particular needs this to operate, so that it can allocate the 112ae2cee2eSPhilipp Tomsich initial serial device and any others that are needed. 113ae2cee2eSPhilipp Tomsich 114ae2cee2eSPhilipp Tomsichconfig TPL_SYS_MALLOC_F_LEN 115ae2cee2eSPhilipp Tomsich hex "Size of malloc() pool in TPL before relocation" 116f1896c45SAndy Yan depends on SYS_MALLOC_F 117f1896c45SAndy Yan default SYS_MALLOC_F_LEN 118f1896c45SAndy Yan help 119f1896c45SAndy Yan Before relocation, memory is very limited on many platforms. Still, 120f1896c45SAndy Yan we can provide a small malloc() pool if needed. Driver model in 121f1896c45SAndy Yan particular needs this to operate, so that it can allocate the 122f1896c45SAndy Yan initial serial device and any others that are needed. 123f1896c45SAndy Yan 1241bf0979fSTom Rinimenuconfig EXPERT 1251bf0979fSTom Rini bool "Configure standard U-Boot features (expert users)" 1260aa8a4adSPrzemyslaw Marczak default y 1271bf0979fSTom Rini help 1281bf0979fSTom Rini This option allows certain base U-Boot options and settings 1291bf0979fSTom Rini to be disabled or tweaked. This is for specialized 1301bf0979fSTom Rini environments which can tolerate a "non-standard" U-Boot. 13159d7c34bSRobert P. J. Day Use this only if you really know what you are doing. 1321bf0979fSTom Rini 1330aa8a4adSPrzemyslaw Marczakif EXPERT 1340aa8a4adSPrzemyslaw Marczak config SYS_MALLOC_CLEAR_ON_INIT 1350aa8a4adSPrzemyslaw Marczak bool "Init with zeros the memory reserved for malloc (slow)" 1364f110867SJoseph Chen default y if !ARCH_ROCKCHIP 1370aa8a4adSPrzemyslaw Marczak help 1380aa8a4adSPrzemyslaw Marczak This setting is enabled by default. The reserved malloc 1390aa8a4adSPrzemyslaw Marczak memory is initialized with zeros, so first malloc calls 1400aa8a4adSPrzemyslaw Marczak will return the pointer to the zeroed memory. But this 1410aa8a4adSPrzemyslaw Marczak slows the boot time. 1420aa8a4adSPrzemyslaw Marczak 1430aa8a4adSPrzemyslaw Marczak It is recommended to disable it, when CONFIG_SYS_MALLOC_LEN 1440aa8a4adSPrzemyslaw Marczak value, has more than few MiB, e.g. when uses bzip2 or bmp logo. 1450aa8a4adSPrzemyslaw Marczak Then the boot time can be significantly reduced. 1460aa8a4adSPrzemyslaw Marczak Warning: 1470aa8a4adSPrzemyslaw Marczak When disabling this, please check if malloc calls, maybe 14859d7c34bSRobert P. J. Day should be replaced by calloc - if one expects zeroed memory. 149022885cbSSimon Glass 150022885cbSSimon Glassconfig TOOLS_DEBUG 151022885cbSSimon Glass bool "Enable debug information for tools" 152022885cbSSimon Glass help 153022885cbSSimon Glass Enable generation of debug information for tools such as mkimage. 154022885cbSSimon Glass This can be used for debugging purposes. With debug information 155022885cbSSimon Glass it is possible to set breakpoints on particular lines, single-step 156022885cbSSimon Glass debug through the source code, etc. 157022885cbSSimon Glass 158266aa86bSRobert P. J. Dayendif # EXPERT 159bb6b142fSMasahiro Yamada 160bb6b142fSMasahiro Yamadaconfig PHYS_64BIT 161bb6b142fSMasahiro Yamada bool "64bit physical address support" 162bb6b142fSMasahiro Yamada help 163bb6b142fSMasahiro Yamada Say Y here to support 64bit physical memory address. 164bb6b142fSMasahiro Yamada This can be used not only for 64bit SoCs, but also for 165bb6b142fSMasahiro Yamada large physical address extention on 32bit SoCs. 166bb6b142fSMasahiro Yamada 16740ad4c4bSMasahiro Yamadaendmenu # General setup 16840ad4c4bSMasahiro Yamada 169e91c3c33SMasahiro Yamadamenu "Boot images" 170e91c3c33SMasahiro Yamada 171*eb9bba83SJoseph Chenconfig IMAGE_GZIP 172*eb9bba83SJoseph Chen bool "U-Boot Image with gzip compression" 173*eb9bba83SJoseph Chen default n 174*eb9bba83SJoseph Chen help 175*eb9bba83SJoseph Chen This enables gzip compression on U-Boot Image. 176*eb9bba83SJoseph Chen 17748f6232eSTom Riniconfig ANDROID_BOOT_IMAGE 17848f6232eSTom Rini bool "Enable support for Android Boot Images" 17948f6232eSTom Rini default y if FASTBOOT 18048f6232eSTom Rini help 18148f6232eSTom Rini This enables support for booting images which use the Android 18248f6232eSTom Rini image format header. 18348f6232eSTom Rini 184b6cf4439SMasahiro Yamadaconfig FIT 185b6cf4439SMasahiro Yamada bool "Support Flattened Image Tree" 186b6cf4439SMasahiro Yamada help 187266aa86bSRobert P. J. Day This option allows you to boot the new uImage structure, 188b6cf4439SMasahiro Yamada Flattened Image Tree. FIT is formally a FDT, which can include 189b6cf4439SMasahiro Yamada images of various types (kernel, FDT blob, ramdisk, etc.) 190b6cf4439SMasahiro Yamada in a single blob. To boot this new uImage structure, 1911f9ac4a4SIgor Grinberg pass the address of the blob to the "bootm" command. 19273223f0eSSimon Glass FIT is very flexible, supporting compression, multiple images, 19373223f0eSSimon Glass multiple configurations, verification through hashing and also 194266aa86bSRobert P. J. Day verified boot (secure boot using RSA). 195b6cf4439SMasahiro Yamada 196266aa86bSRobert P. J. Dayif FIT 197b6cf4439SMasahiro Yamada 1980db7f685STom Riniconfig FIT_ENABLE_SHA256_SUPPORT 1990db7f685STom Rini bool "Support SHA256 checksum of FIT image contents" 2003674c884SJoseph Chen select SHA256 if !DM_CRYPTO 2010db7f685STom Rini default y 2020db7f685STom Rini help 2030db7f685STom Rini Enable this to support SHA256 checksum of FIT image contents. A 2040db7f685STom Rini SHA256 checksum is a 256-bit (32-byte) hash value used to check that 2050db7f685STom Rini the image contents have not been corrupted. SHA256 is recommended 2060db7f685STom Rini for use in secure applications since (as at 2016) there is no known 2070db7f685STom Rini feasible attack that could produce a 'collision' with differing 2080db7f685STom Rini input data. Use this for the highest security. Note that only the 2090db7f685STom Rini SHA256 variant is supported: SHA512 and others are not currently 2100db7f685STom Rini supported in U-Boot. 2110db7f685STom Rini 212c9e2e133SXuhui Linconfig FIT_ENABLE_RSA4096_SUPPORT 213c9e2e133SXuhui Lin bool "Support RSA4096 verification of FIT image contents" 214c9e2e133SXuhui Lin select RSA_SOFTWARE_EXP if !DM_CRYPTO 215c9e2e133SXuhui Lin default n 216c9e2e133SXuhui Lin help 217c9e2e133SXuhui Lin Enable this to support RSA4096 checksum of FIT image contents. A 218c9e2e133SXuhui Lin RSA4096 is a 4096-bit (512-byte) key used to check that 219c9e2e133SXuhui Lin check if the content comes from an encryption party. RSA4096 is one 220c9e2e133SXuhui Lin of algorithms recommended for use in secure applications since (as at 2016) 221c9e2e133SXuhui Lin there is no known feasible attack that could produce a 'collision' with differing 222c9e2e133SXuhui Lin input data. Use this for the higher security than RSA2048 in default. 223c9e2e133SXuhui Lin 224b6cf4439SMasahiro Yamadaconfig FIT_SIGNATURE 225c4beb22fSRuchika Gupta bool "Enable signature verification of FIT uImages" 2269009798dSChris Kuethe depends on DM 227c4beb22fSRuchika Gupta select RSA 228e7be2a07SJoseph Chen select CONSOLE_DISABLE_CLI 229b6cf4439SMasahiro Yamada help 230b6cf4439SMasahiro Yamada This option enables signature verification of FIT uImages, 23194e3c8c4Sgaurav rana using a hash signed and verified using RSA. If 23294e3c8c4Sgaurav rana CONFIG_SHA_PROG_HW_ACCEL is defined, i.e support for progressive 233266aa86bSRobert P. J. Day hashing is available using hardware, then the RSA library will use 23473223f0eSSimon Glass it. See doc/uImage.FIT/signature.txt for more details. 23573223f0eSSimon Glass 23673223f0eSSimon Glass WARNING: When relying on signed FIT images with a required signature 23773223f0eSSimon Glass check the legacy image format is disabled by default, so that 23873223f0eSSimon Glass unsigned images cannot be loaded. If a board needs the legacy image 23973223f0eSSimon Glass format support in this case, enable it using 24073223f0eSSimon Glass CONFIG_IMAGE_FORMAT_LEGACY. 24173223f0eSSimon Glass 24283c56efbSJoseph Chenconfig FIT_ROLLBACK_PROTECT 24383c56efbSJoseph Chen bool "Enable rollback-index protection for FIT image" 24483c56efbSJoseph Chen depends on FIT_SIGNATURE 24583c56efbSJoseph Chen help 24683c56efbSJoseph Chen Enable rollback-index protection for FIT image 24783c56efbSJoseph Chen 24885289e9dSPhilippe Reynesconfig FIT_ENABLE_RSASSA_PSS_SUPPORT 24985289e9dSPhilippe Reynes bool "Support rsassa-pss signature scheme of FIT image contents" 25085289e9dSPhilippe Reynes depends on FIT_SIGNATURE 25185289e9dSPhilippe Reynes default y 25285289e9dSPhilippe Reynes help 25385289e9dSPhilippe Reynes Enable this to support the pss padding algorithm as described 25485289e9dSPhilippe Reynes in the rfc8017 (https://tools.ietf.org/html/rfc8017). 25585289e9dSPhilippe Reynes 256266aa86bSRobert P. J. Dayconfig FIT_VERBOSE 257266aa86bSRobert P. J. Day bool "Show verbose messages when FIT images fail" 258266aa86bSRobert P. J. Day help 259266aa86bSRobert P. J. Day Generally a system will have valid FIT images so debug messages 260266aa86bSRobert P. J. Day are a waste of code space. If you are debugging your images then 261266aa86bSRobert P. J. Day you can enable this option to get more verbose information about 262266aa86bSRobert P. J. Day failures. 26351c14cd1STeddy Reed 26473223f0eSSimon Glassconfig FIT_BEST_MATCH 26573223f0eSSimon Glass bool "Select the best match for the kernel device tree" 26673223f0eSSimon Glass help 26773223f0eSSimon Glass When no configuration is explicitly selected, default to the 26873223f0eSSimon Glass one whose fdt's compatibility field best matches that of 26973223f0eSSimon Glass U-Boot itself. A match is considered "best" if it matches the 27073223f0eSSimon Glass most specific compatibility entry of U-Boot's fdt's root node. 27173223f0eSSimon Glass The order of entries in the configuration's fdt is ignored. 27273223f0eSSimon Glass 273266aa86bSRobert P. J. Dayconfig FIT_IMAGE_POST_PROCESS 274266aa86bSRobert P. J. Day bool "Enable post-processing of FIT artifacts after loading by U-Boot" 27573223f0eSSimon Glass help 276266aa86bSRobert P. J. Day Allows doing any sort of manipulation to blobs after they got extracted 277266aa86bSRobert P. J. Day from FIT images like stripping off headers or modifying the size of the 278266aa86bSRobert P. J. Day blob, verification, authentication, decryption etc. in a platform or 279266aa86bSRobert P. J. Day board specific way. In order to use this feature a platform or board- 280266aa86bSRobert P. J. Day specific implementation of board_fit_image_post_process() must be 281266aa86bSRobert P. J. Day provided. Also, anything done during this post-processing step would 282266aa86bSRobert P. J. Day need to be comprehended in how the images were prepared before being 283266aa86bSRobert P. J. Day injected into the FIT creation (i.e. the blobs would have been pre- 284266aa86bSRobert P. J. Day processed before being added to the FIT image). 285266aa86bSRobert P. J. Day 286008ec9b4SJoseph Chenconfig FIT_HW_CRYPTO 287008ec9b4SJoseph Chen bool "Enable hardware crypto for FIT image checksum and rsa verify" 288008ec9b4SJoseph Chen depends on DM_CRYPTO 289008ec9b4SJoseph Chen help 290008ec9b4SJoseph Chen Enable hardware crypto for FIT image checksum and rsa verify. 291008ec9b4SJoseph Chen 292dced238bSJoseph Chenconfig FIT_PRINT 293dced238bSJoseph Chen bool "Enable fit image structure and data print" 294dced238bSJoseph Chen default y 295dced238bSJoseph Chen help 296dced238bSJoseph Chen Say y here if you want to enable fit image structure and data 297dced238bSJoseph Chen print. 298dced238bSJoseph Chen 29960b1c11dSJoseph Chenconfig FIT_OMIT_UBOOT 30060b1c11dSJoseph Chen bool "Omit u-boot-nodtb.bin and u-boot.dtb when output uboot.itb" 30160b1c11dSJoseph Chen 30271139113STom Riniif SPL 30371139113STom Rini 304266aa86bSRobert P. J. Dayconfig SPL_FIT 305266aa86bSRobert P. J. Day bool "Support Flattened Image Tree within SPL" 306266aa86bSRobert P. J. Day depends on SPL 30785c07a5aSAndre Przywara select SPL_OF_LIBFDT 308266aa86bSRobert P. J. Day 309266aa86bSRobert P. J. Dayconfig SPL_FIT_SIGNATURE 310266aa86bSRobert P. J. Day bool "Enable signature verification of FIT firmware within SPL" 311266aa86bSRobert P. J. Day depends on SPL_DM 31285c07a5aSAndre Przywara select SPL_FIT 313266aa86bSRobert P. J. Day select SPL_RSA 314266aa86bSRobert P. J. Day 31583c56efbSJoseph Chenconfig SPL_FIT_ROLLBACK_PROTECT 31683c56efbSJoseph Chen bool "Enable SPL rollback-index protection for FIT image" 31783c56efbSJoseph Chen depends on SPL_FIT_SIGNATURE 31883c56efbSJoseph Chen help 31983c56efbSJoseph Chen Enable SPL rollback-index protection for FIT image 32083c56efbSJoseph Chen 321266aa86bSRobert P. J. Dayconfig SPL_LOAD_FIT 322266aa86bSRobert P. J. Day bool "Enable SPL loading U-Boot as a FIT" 32385c07a5aSAndre Przywara select SPL_FIT 324266aa86bSRobert P. J. Day help 325266aa86bSRobert P. J. Day Normally with the SPL framework a legacy image is generated as part 326266aa86bSRobert P. J. Day of the build. This contains U-Boot along with information as to 327266aa86bSRobert P. J. Day where it should be loaded. This option instead enables generation 328266aa86bSRobert P. J. Day of a FIT (Flat Image Tree) which provides more flexibility. In 329266aa86bSRobert P. J. Day particular it can handle selecting from multiple device tree 330266aa86bSRobert P. J. Day and passing the correct one to U-Boot. 331266aa86bSRobert P. J. Day 332266aa86bSRobert P. J. Dayconfig SPL_FIT_IMAGE_POST_PROCESS 333266aa86bSRobert P. J. Day bool "Enable post-processing of FIT artifacts after loading by the SPL" 33436ac5eeaSext-vasily.gurevich@vaisala.com depends on SPL_LOAD_FIT 335266aa86bSRobert P. J. Day help 336266aa86bSRobert P. J. Day Allows doing any sort of manipulation to blobs after they got extracted 337266aa86bSRobert P. J. Day from the U-Boot FIT image like stripping off headers or modifying the 338266aa86bSRobert P. J. Day size of the blob, verification, authentication, decryption etc. in a 339266aa86bSRobert P. J. Day platform or board specific way. In order to use this feature a platform 340266aa86bSRobert P. J. Day or board-specific implementation of board_fit_image_post_process() must 341266aa86bSRobert P. J. Day be provided. Also, anything done during this post-processing step would 342266aa86bSRobert P. J. Day need to be comprehended in how the images were prepared before being 343266aa86bSRobert P. J. Day injected into the FIT creation (i.e. the blobs would have been pre- 344266aa86bSRobert P. J. Day processed before being added to the FIT image). 345266aa86bSRobert P. J. Day 346008ec9b4SJoseph Chenconfig SPL_FIT_HW_CRYPTO 347008ec9b4SJoseph Chen bool "Enable SPL hardware crypto for FIT image checksum and rsa verify" 348008ec9b4SJoseph Chen depends on SPL_DM_CRYPTO 349008ec9b4SJoseph Chen help 350008ec9b4SJoseph Chen Enable SPL hardware crypto for FIT image checksum and rsa verify. 351008ec9b4SJoseph Chen 352594e14a4SJoseph Chenconfig SPL_SYS_DCACHE_OFF 353594e14a4SJoseph Chen bool "Disable SPL dcache" 354594e14a4SJoseph Chen default y 355594e14a4SJoseph Chen help 356594e14a4SJoseph Chen Disable SPL dcache. Please make sure CONFIG_SPL_SYS_MALLOC_F_LEN 357594e14a4SJoseph Chen is large enough to malloc TLB and bd_t buffer while enabling dcache. 358594e14a4SJoseph Chen 359dced238bSJoseph Chenconfig SPL_FIT_PRINT 360dced238bSJoseph Chen bool "Enable fit image structure and data print in SPL" 361dced238bSJoseph Chen default n 362dced238bSJoseph Chen help 363dced238bSJoseph Chen Say y here if you want to enable fit image structure and data 364dced238bSJoseph Chen print in SPL. 365dced238bSJoseph Chen 36671139113STom Riniendif # SPL 36771139113STom Rini 36889031de1SJoseph Chenconfig SPL_FIT_SOURCE 36989031de1SJoseph Chen string ".its source file for U-Boot FIT image" 37089031de1SJoseph Chen depends on SPL_FIT || FIT 37189031de1SJoseph Chen help 37289031de1SJoseph Chen Specifies a (platform specific) FIT source file to generate the 37389031de1SJoseph Chen U-Boot FIT image. This could specify further image to load and/or 37489031de1SJoseph Chen execute. 37589031de1SJoseph Chen 37689031de1SJoseph Chenconfig SPL_FIT_GENERATOR 37789031de1SJoseph Chen string ".its file generator script for U-Boot FIT image" 37889031de1SJoseph Chen depends on SPL_FIT || FIT 37989031de1SJoseph Chen default "board/sunxi/mksunxi_fit_atf.sh" if SPL_LOAD_FIT && ARCH_SUNXI 38089031de1SJoseph Chen help 38189031de1SJoseph Chen Specifies a (platform specific) script file to generate the FIT 38289031de1SJoseph Chen source file used to build the U-Boot FIT image file. This gets 38389031de1SJoseph Chen passed a list of supported device tree file stub names to 38489031de1SJoseph Chen include in the generated image. 38589031de1SJoseph Chen 38689031de1SJoseph Chenconfig SPL_FIT_IMAGE_KB 38789031de1SJoseph Chen int "SPL FIT image size in KiB" 38889031de1SJoseph Chen depends on SPL_FIT || FIT 38989031de1SJoseph Chen default 2048 39089031de1SJoseph Chen help 39189031de1SJoseph Chen SPL FIT image size in KiB, default 2048KB = 1024KB(u-boot) + 1024KB(tee/atf + others). 39289031de1SJoseph Chen 39389031de1SJoseph Chenconfig SPL_FIT_IMAGE_MULTIPLE 39489031de1SJoseph Chen int "SPL FIT image multiple number" 39589031de1SJoseph Chen depends on SPL_FIT || FIT 39689031de1SJoseph Chen default 2 39789031de1SJoseph Chen help 39889031de1SJoseph Chen SPL FIT image multiple number. 39989031de1SJoseph Chen 400266aa86bSRobert P. J. Dayendif # FIT 40173223f0eSSimon Glass 40273223f0eSSimon Glassconfig OF_BOARD_SETUP 40373223f0eSSimon Glass bool "Set up board-specific details in device tree before boot" 40473223f0eSSimon Glass depends on OF_LIBFDT 40573223f0eSSimon Glass help 40673223f0eSSimon Glass This causes U-Boot to call ft_board_setup() before booting into 40773223f0eSSimon Glass the Operating System. This function can set up various 40873223f0eSSimon Glass board-specific information in the device tree for use by the OS. 40973223f0eSSimon Glass The device tree is then passed to the OS. 41073223f0eSSimon Glass 41173223f0eSSimon Glassconfig OF_SYSTEM_SETUP 41273223f0eSSimon Glass bool "Set up system-specific details in device tree before boot" 41373223f0eSSimon Glass depends on OF_LIBFDT 41473223f0eSSimon Glass help 41573223f0eSSimon Glass This causes U-Boot to call ft_system_setup() before booting into 41673223f0eSSimon Glass the Operating System. This function can set up various 41773223f0eSSimon Glass system-specific information in the device tree for use by the OS. 41873223f0eSSimon Glass The device tree is then passed to the OS. 41973223f0eSSimon Glass 42073223f0eSSimon Glassconfig OF_STDOUT_VIA_ALIAS 42173223f0eSSimon Glass bool "Update the device-tree stdout alias from U-Boot" 42273223f0eSSimon Glass depends on OF_LIBFDT 42373223f0eSSimon Glass help 42473223f0eSSimon Glass This uses U-Boot's serial alias from the aliases node to update 42573223f0eSSimon Glass the device tree passed to the OS. The "linux,stdout-path" property 42673223f0eSSimon Glass in the chosen node is set to point to the correct serial node. 42773223f0eSSimon Glass This option currently references CONFIG_CONS_INDEX, which is 42873223f0eSSimon Glass incorrect when used with device tree as this option does not 42973223f0eSSimon Glass exist / should not be used. 430b6cf4439SMasahiro Yamada 43151631259SMasahiro Yamadaconfig SYS_EXTRA_OPTIONS 43251631259SMasahiro Yamada string "Extra Options (DEPRECATED)" 43351631259SMasahiro Yamada help 43451631259SMasahiro Yamada The old configuration infrastructure (= mkconfig + boards.cfg) 435ed36323fSMasahiro Yamada provided the extra options field. If you have something like 43651631259SMasahiro Yamada "HAS_BAR,BAZ=64", the optional options 43751631259SMasahiro Yamada #define CONFIG_HAS 43851631259SMasahiro Yamada #define CONFIG_BAZ 64 43951631259SMasahiro Yamada will be defined in include/config.h. 44051631259SMasahiro Yamada This option was prepared for the smooth migration from the old 44151631259SMasahiro Yamada configuration to Kconfig. Since this option will be removed sometime, 44251631259SMasahiro Yamada new boards should not use this option. 44351631259SMasahiro Yamada 4447f7563ceSMasahiro Yamadaconfig SYS_TEXT_BASE 445936478e7STom Rini depends on ARC || X86 || ARCH_UNIPHIER || ARCH_ZYNQMP || \ 4466ebf8a4aSMichal Simek (M68K && !TARGET_ASTRO_MCF5373L) || MICROBLAZE || MIPS || \ 4477e0ed13fSAdam Ford ARCH_ZYNQ || ARCH_KEYSTONE || ARCH_OMAP2PLUS 448484cce0dSBen Stoltz depends on !EFI_APP 4497f7563ceSMasahiro Yamada hex "Text Base" 4507f7563ceSMasahiro Yamada help 4517f7563ceSMasahiro Yamada TODO: Move CONFIG_SYS_TEXT_BASE for all the architecture 4527f7563ceSMasahiro Yamada 4537e0ed13fSAdam Ford default 0x80800000 if ARCH_OMAP2PLUS 4547e0ed13fSAdam Ford 455eba3fbd6SAndreas Dannenberg 45633d88183SAlexey Brodkinconfig SYS_CLK_FREQ 457e71b422bSIain Paton depends on ARC || ARCH_SUNXI 45833d88183SAlexey Brodkin int "CPU clock frequency" 45933d88183SAlexey Brodkin help 46033d88183SAlexey Brodkin TODO: Move CONFIG_SYS_CLK_FREQ for all the architecture 46133d88183SAlexey Brodkin 46263c09417SMasahiro Yamadaconfig ARCH_FIXUP_FDT_MEMORY 46363c09417SMasahiro Yamada bool "Enable arch_fixup_memory_banks() call" 464e2f88dfdSMichal Simek default y 465e2f88dfdSMichal Simek help 466e2f88dfdSMichal Simek Enable FDT memory map syncup before OS boot. This feature can be 467e2f88dfdSMichal Simek used for booting OS with different memory setup where the part of 468e2f88dfdSMichal Simek the memory location should be used for different purpose. 469e2f88dfdSMichal Simek 470e91c3c33SMasahiro Yamadaendmenu # Boot images 47151631259SMasahiro Yamada 4724db98d3dSEmmanuel Vadotsource "api/Kconfig" 4734db98d3dSEmmanuel Vadot 474ed36323fSMasahiro Yamadasource "common/Kconfig" 475ed36323fSMasahiro Yamada 47672a8cf8dSSimon Glasssource "cmd/Kconfig" 47772a8cf8dSSimon Glass 478e274ef6bSPatrick Delaunaysource "disk/Kconfig" 479e274ef6bSPatrick Delaunay 480783e6a72SMasahiro Yamadasource "dts/Kconfig" 481783e6a72SMasahiro Yamada 4820649cd0dSSimon Glasssource "env/Kconfig" 4830649cd0dSSimon Glass 484ed36323fSMasahiro Yamadasource "net/Kconfig" 485ed36323fSMasahiro Yamada 486ed36323fSMasahiro Yamadasource "drivers/Kconfig" 487ed36323fSMasahiro Yamada 488ed36323fSMasahiro Yamadasource "fs/Kconfig" 489ed36323fSMasahiro Yamada 490ed36323fSMasahiro Yamadasource "lib/Kconfig" 4911967982aSSimon Glass 4921967982aSSimon Glasssource "test/Kconfig" 493