111bde1cdSSimon Glassmenu "SPL / TPL" 211bde1cdSSimon Glass 3c2ae7d82SSimon Glassconfig SUPPORT_SPL 4c2ae7d82SSimon Glass bool 5c2ae7d82SSimon Glass 6c2ae7d82SSimon Glassconfig SUPPORT_TPL 7c2ae7d82SSimon Glass bool 8c2ae7d82SSimon Glass 966928afbSB, Raviconfig SPL_DFU_NO_RESET 1066928afbSB, Ravi bool 1166928afbSB, Ravi 12c2ae7d82SSimon Glassconfig SPL 13c2ae7d82SSimon Glass bool 14c2ae7d82SSimon Glass depends on SUPPORT_SPL 15c2ae7d82SSimon Glass prompt "Enable SPL" 16c2ae7d82SSimon Glass help 17c2ae7d82SSimon Glass If you want to build SPL as well as the normal image, say Y. 18c2ae7d82SSimon Glass 19226498b8STom Riniif SPL 20226498b8STom Rini 212d7c904fSJason Zhuconfig SPL_ADC_SUPPORT 222d7c904fSJason Zhu bool "Support ADC driver in SPL" 232d7c904fSJason Zhu depends on SPL 242d7c904fSJason Zhu help 252d7c904fSJason Zhu The adc drive can be used to measure voltage in spl if need. 262d7c904fSJason Zhu 27dd6fbcb9SPhilipp Tomsichconfig SPL_LDSCRIPT 28dd6fbcb9SPhilipp Tomsich string "Linker script for the SPL stage" 29dd6fbcb9SPhilipp Tomsich default "arch/$(ARCH)/cpu/u-boot-spl.lds" 30dd6fbcb9SPhilipp Tomsich depends on SPL 31dd6fbcb9SPhilipp Tomsich help 32dd6fbcb9SPhilipp Tomsich The SPL stage will usually require a different linker-script 33dd6fbcb9SPhilipp Tomsich (as it runs from a different memory region) than the regular 34dd6fbcb9SPhilipp Tomsich U-Boot stage. Set this to the path of the linker-script to 35dd6fbcb9SPhilipp Tomsich be used for SPL. 36dd6fbcb9SPhilipp Tomsich 370680f1b1SLey Foon Tanconfig SPL_BOARD_INIT 380680f1b1SLey Foon Tan bool "Call board-specific initialization in SPL" 390680f1b1SLey Foon Tan help 400680f1b1SLey Foon Tan If this option is enabled, U-Boot will call the function 410680f1b1SLey Foon Tan spl_board_init() from board_init_r(). This function should be 420680f1b1SLey Foon Tan provided by the board. 430680f1b1SLey Foon Tan 44225d30b7SPhilipp Tomsichconfig SPL_BOOTROM_SUPPORT 45225d30b7SPhilipp Tomsich bool "Support returning to the BOOTROM" 46225d30b7SPhilipp Tomsich help 47225d30b7SPhilipp Tomsich Some platforms (e.g. the Rockchip RK3368) provide support in their 48225d30b7SPhilipp Tomsich ROM for loading the next boot-stage after performing basic setup 49225d30b7SPhilipp Tomsich from the SPL stage. 50225d30b7SPhilipp Tomsich 51225d30b7SPhilipp Tomsich Enable this option, to return to the BOOTROM through the 52225d30b7SPhilipp Tomsich BOOT_DEVICE_BOOTROM (or fall-through to the next boot device in the 53225d30b7SPhilipp Tomsich boot device list, if not implemented for a given board) 54225d30b7SPhilipp Tomsich 5524eb39b5SAndrew F. Davisconfig SPL_RAW_IMAGE_SUPPORT 5624eb39b5SAndrew F. Davis bool "Support SPL loading and booting of RAW images" 5724eb39b5SAndrew F. Davis default n if (ARCH_MX6 && (SPL_MMC_SUPPORT || SPL_SATA_SUPPORT)) 58ae9b57b5SAndrew F. Davis default y if !TI_SECURE_DEVICE 5924eb39b5SAndrew F. Davis help 6024eb39b5SAndrew F. Davis SPL will support loading and booting a RAW image when this option 6124eb39b5SAndrew F. Davis is y. If this is not set, SPL will move on to other available 6224eb39b5SAndrew F. Davis boot media to find a suitable image. 6324eb39b5SAndrew F. Davis 64722a6b17SAndrew F. Davisconfig SPL_LEGACY_IMAGE_SUPPORT 65722a6b17SAndrew F. Davis bool "Support SPL loading and booting of Legacy images" 66ae9b57b5SAndrew F. Davis default y if !TI_SECURE_DEVICE 67722a6b17SAndrew F. Davis help 68722a6b17SAndrew F. Davis SPL will support loading and booting Legacy images when this option 69722a6b17SAndrew F. Davis is y. If this is not set, SPL will move on to other available 70722a6b17SAndrew F. Davis boot media to find a suitable image. 71722a6b17SAndrew F. Davis 72c2ae7d82SSimon Glassconfig SPL_SYS_MALLOC_SIMPLE 73c2ae7d82SSimon Glass bool 74c2ae7d82SSimon Glass prompt "Only use malloc_simple functions in the SPL" 75c2ae7d82SSimon Glass help 76c2ae7d82SSimon Glass Say Y here to only use the *_simple malloc functions from 77c2ae7d82SSimon Glass malloc_simple.c, rather then using the versions from dlmalloc.c; 78c2ae7d82SSimon Glass this will make the SPL binary smaller at the cost of more heap 79c2ae7d82SSimon Glass usage as the *_simple malloc functions do not re-use free-ed mem. 80c2ae7d82SSimon Glass 81d60b5f74SPhilipp Tomsichconfig TPL_SYS_MALLOC_SIMPLE 82d60b5f74SPhilipp Tomsich bool 83d60b5f74SPhilipp Tomsich prompt "Only use malloc_simple functions in the TPL" 84d60b5f74SPhilipp Tomsich help 85d60b5f74SPhilipp Tomsich Say Y here to only use the *_simple malloc functions from 86d60b5f74SPhilipp Tomsich malloc_simple.c, rather then using the versions from dlmalloc.c; 87d60b5f74SPhilipp Tomsich this will make the TPL binary smaller at the cost of more heap 88d60b5f74SPhilipp Tomsich usage as the *_simple malloc functions do not re-use free-ed mem. 89d60b5f74SPhilipp Tomsich 90c2ae7d82SSimon Glassconfig SPL_STACK_R 91c2ae7d82SSimon Glass bool "Enable SDRAM location for SPL stack" 92c2ae7d82SSimon Glass help 93c2ae7d82SSimon Glass SPL starts off execution in SRAM and thus typically has only a small 94c2ae7d82SSimon Glass stack available. Since SPL sets up DRAM while in its board_init_f() 95c2ae7d82SSimon Glass function, it is possible for the stack to move there before 96c2ae7d82SSimon Glass board_init_r() is reached. This option enables a special SDRAM 97c2ae7d82SSimon Glass location for the SPL stack. U-Boot SPL switches to this after 98c2ae7d82SSimon Glass board_init_f() completes, and before board_init_r() starts. 99c2ae7d82SSimon Glass 100c2ae7d82SSimon Glassconfig SPL_STACK_R_ADDR 101c2ae7d82SSimon Glass depends on SPL_STACK_R 102c2ae7d82SSimon Glass hex "SDRAM location for SPL stack" 103c2ae7d82SSimon Glass help 104c2ae7d82SSimon Glass Specify the address in SDRAM for the SPL stack. This will be set up 105c2ae7d82SSimon Glass before board_init_r() is called. 106c2ae7d82SSimon Glass 107c2ae7d82SSimon Glassconfig SPL_STACK_R_MALLOC_SIMPLE_LEN 108c2ae7d82SSimon Glass depends on SPL_STACK_R && SPL_SYS_MALLOC_SIMPLE 109c2ae7d82SSimon Glass hex "Size of malloc_simple heap after switching to DRAM SPL stack" 110c2ae7d82SSimon Glass default 0x100000 111c2ae7d82SSimon Glass help 112c2ae7d82SSimon Glass Specify the amount of the stack to use as memory pool for 113c2ae7d82SSimon Glass malloc_simple after switching the stack to DRAM. This may be set 114c2ae7d82SSimon Glass to give board_init_r() a larger heap then the initial heap in 115c2ae7d82SSimon Glass SRAM which is limited to SYS_MALLOC_F_LEN bytes. 116c2ae7d82SSimon Glass 117c2ae7d82SSimon Glassconfig SPL_SEPARATE_BSS 118c2ae7d82SSimon Glass bool "BSS section is in a different memory region from text" 119c2ae7d82SSimon Glass help 120c2ae7d82SSimon Glass Some platforms need a large BSS region in SPL and can provide this 121c2ae7d82SSimon Glass because RAM is already set up. In this case BSS can be moved to RAM. 122c2ae7d82SSimon Glass This option should then be enabled so that the correct device tree 123c2ae7d82SSimon Glass location is used. Normally we put the device tree at the end of BSS 124c2ae7d82SSimon Glass but with this option enabled, it goes at _image_binary_end. 125c2ae7d82SSimon Glass 126a807ab33SSimon Glassconfig SPL_DISPLAY_PRINT 127a807ab33SSimon Glass bool "Display a board-specific message in SPL" 128a807ab33SSimon Glass help 129a807ab33SSimon Glass If this option is enabled, U-Boot will call the function 130a807ab33SSimon Glass spl_display_print() immediately after displaying the SPL console 131a807ab33SSimon Glass banner ("U-Boot SPL ..."). This function should be provided by 132a807ab33SSimon Glass the board. 133a807ab33SSimon Glass 134dced428bSAndy Yanconfig SPL_SKIP_RELOCATE 135dced428bSAndy Yan bool "Skip code relocation in SPL" 136dced428bSAndy Yan default y 137dced428bSAndy Yan help 138dced428bSAndy Yan The SPL code will be relocated to a high memory if you say no here. 139dced428bSAndy Yan Only ARM64 and PowerPC SPL support relocate now. 140dced428bSAndy Yan 141dced428bSAndy Yanconfig SPL_RELOC_TEXT_BASE 142dced428bSAndy Yan hex "Address the SPL relocate to" 143dced428bSAndy Yan depends on !SPL_SKIP_RELOCATE 144dced428bSAndy Yan help 145dced428bSAndy Yan The address on the ram where the SPL relocate to. 146dced428bSAndy Yan 14738fed8abSSemen Protsenkoconfig SYS_MMCSD_RAW_MODE_U_BOOT_USE_SECTOR 14838fed8abSSemen Protsenko bool "MMC raw mode: by sector" 14938fed8abSSemen Protsenko default y if ARCH_SUNXI || ARCH_DAVINCI || ARCH_UNIPHIER ||ARCH_MX6 || \ 15038fed8abSSemen Protsenko ARCH_ROCKCHIP || ARCH_MVEBU || ARCH_SOCFPGA || \ 15138fed8abSSemen Protsenko ARCH_AT91 || ARCH_ZYNQ || ARCH_KEYSTONE || OMAP34XX || \ 15238fed8abSSemen Protsenko OMAP44XX || OMAP54XX || AM33XX || AM43XX 15338fed8abSSemen Protsenko help 15438fed8abSSemen Protsenko Use sector number for specifying U-Boot location on MMC/SD in 15538fed8abSSemen Protsenko raw mode. 15638fed8abSSemen Protsenko 15738fed8abSSemen Protsenkoconfig SYS_MMCSD_RAW_MODE_U_BOOT_SECTOR 15838fed8abSSemen Protsenko hex "Address on the MMC to load U-Boot from" 159226498b8STom Rini depends on SYS_MMCSD_RAW_MODE_U_BOOT_USE_SECTOR 16038fed8abSSemen Protsenko default 0x50 if ARCH_SUNXI 16138fed8abSSemen Protsenko default 0x75 if ARCH_DAVINCI 16238fed8abSSemen Protsenko default 0x8a if ARCH_MX6 163b24d32f4SKever Yang default 0x100 if ARCH_UNIPHIER 16438fed8abSSemen Protsenko default 0x140 if ARCH_MVEBU 16538fed8abSSemen Protsenko default 0x200 if ARCH_SOCFPGA || ARCH_AT91 16638fed8abSSemen Protsenko default 0x300 if ARCH_ZYNQ || ARCH_KEYSTONE || OMAP34XX || OMAP44XX || \ 16738fed8abSSemen Protsenko OMAP54XX || AM33XX || AM43XX 168b24d32f4SKever Yang default 0x4000 if ARCH_ROCKCHIP 16938fed8abSSemen Protsenko help 17038fed8abSSemen Protsenko Address on the MMC to load U-Boot from, when the MMC is being used 17138fed8abSSemen Protsenko in raw mode. Units: MMC sectors (1 sector = 512 bytes). 17238fed8abSSemen Protsenko 173949123e3SDalon Westergreenconfig SYS_MMCSD_RAW_MODE_U_BOOT_USE_PARTITION 174949123e3SDalon Westergreen bool "MMC Raw mode: by partition" 17585f134f5SJoseph Chen depends on SPL_LIBDISK_SUPPORT 176949123e3SDalon Westergreen help 177949123e3SDalon Westergreen Use a partition for loading U-Boot when using MMC/SD in raw mode. 178949123e3SDalon Westergreen 179949123e3SDalon Westergreenconfig SYS_MMCSD_RAW_MODE_U_BOOT_PARTITION 180949123e3SDalon Westergreen hex "Partition to use to load U-Boot from" 181226498b8STom Rini depends on SYS_MMCSD_RAW_MODE_U_BOOT_USE_PARTITION 182949123e3SDalon Westergreen default 1 183949123e3SDalon Westergreen help 184949123e3SDalon Westergreen Partition on the MMC to load U-Boot from when the MMC is being 185949123e3SDalon Westergreen used in raw mode 186949123e3SDalon Westergreen 187f0fb4fa7SDalon Westergreenconfig SYS_MMCSD_RAW_MODE_U_BOOT_USE_PARTITION_TYPE 188f0fb4fa7SDalon Westergreen bool "MMC raw mode: by partition type" 189226498b8STom Rini depends on DOS_PARTITION && SYS_MMCSD_RAW_MODE_U_BOOT_USE_PARTITION 190f0fb4fa7SDalon Westergreen help 191f0fb4fa7SDalon Westergreen Use partition type for specifying U-Boot partition on MMC/SD in 192f0fb4fa7SDalon Westergreen raw mode. U-Boot will be loaded from the first partition of this 193f0fb4fa7SDalon Westergreen type to be found. 194f0fb4fa7SDalon Westergreen 19585f134f5SJoseph Chenconfig SYS_MMCSD_RAW_MODE_U_BOOT_PARTITION_NAME 19685f134f5SJoseph Chen string "Partition Name on the MMC to load U-Boot from" 19785f134f5SJoseph Chen depends on SYS_MMCSD_RAW_MODE_U_BOOT_USE_PARTITION 19885f134f5SJoseph Chen default "uboot" 19985f134f5SJoseph Chen help 20085f134f5SJoseph Chen Partition Name on the MMC to load U-Boot from, when the MMC is being 20185f134f5SJoseph Chen used in raw mode. 20285f134f5SJoseph Chen 203f0fb4fa7SDalon Westergreenconfig SYS_MMCSD_RAW_MODE_U_BOOT_PARTITION_TYPE 204f0fb4fa7SDalon Westergreen hex "Partition Type on the MMC to load U-Boot from" 205226498b8STom Rini depends on SYS_MMCSD_RAW_MODE_U_BOOT_USE_PARTITION_TYPE 206f0fb4fa7SDalon Westergreen help 207f0fb4fa7SDalon Westergreen Partition Type on the MMC to load U-Boot from, when the MMC is being 208f0fb4fa7SDalon Westergreen used in raw mode. 209f0fb4fa7SDalon Westergreen 2103d94fb28SJoseph Chenconfig SPL_MISC_SECTOR 2113d94fb28SJoseph Chen hex "Sector address to load misc in SPL" 2123d94fb28SJoseph Chen depends on !SPL_LIBDISK_SUPPORT && SPL_FIT_LOAD_KERNEL 2133d94fb28SJoseph Chen default 0x8000 2143d94fb28SJoseph Chen 21511bde1cdSSimon Glassconfig SPL_CRC32_SUPPORT 21611bde1cdSSimon Glass bool "Support CRC32" 21711bde1cdSSimon Glass depends on SPL_FIT 21811bde1cdSSimon Glass help 21911bde1cdSSimon Glass Enable this to support CRC32 in FIT images within SPL. This is a 22011bde1cdSSimon Glass 32-bit checksum value that can be used to verify images. This is 22111bde1cdSSimon Glass the least secure type of checksum, suitable for detected 22211bde1cdSSimon Glass accidental image corruption. For secure applications you should 22311bde1cdSSimon Glass consider SHA1 or SHA256. 22411bde1cdSSimon Glass 22511bde1cdSSimon Glassconfig SPL_MD5_SUPPORT 22611bde1cdSSimon Glass bool "Support MD5" 22711bde1cdSSimon Glass depends on SPL_FIT 22811bde1cdSSimon Glass help 22911bde1cdSSimon Glass Enable this to support MD5 in FIT images within SPL. An MD5 23011bde1cdSSimon Glass checksum is a 128-bit hash value used to check that the image 23111bde1cdSSimon Glass contents have not been corrupted. Note that MD5 is not considered 23211bde1cdSSimon Glass secure as it is possible (with a brute-force attack) to adjust the 23311bde1cdSSimon Glass image while still retaining the same MD5 hash value. For secure 23411bde1cdSSimon Glass applications where images may be changed maliciously, you should 23511bde1cdSSimon Glass consider SHA1 or SHA256. 23611bde1cdSSimon Glass 23711bde1cdSSimon Glassconfig SPL_SHA1_SUPPORT 23811bde1cdSSimon Glass bool "Support SHA1" 23911bde1cdSSimon Glass depends on SPL_FIT 240089df18bSTom Rini select SHA1 24111bde1cdSSimon Glass help 24211bde1cdSSimon Glass Enable this to support SHA1 in FIT images within SPL. A SHA1 24311bde1cdSSimon Glass checksum is a 160-bit (20-byte) hash value used to check that the 24411bde1cdSSimon Glass image contents have not been corrupted or maliciously altered. 24511bde1cdSSimon Glass While SHA1 is fairly secure it is coming to the end of its life 24611bde1cdSSimon Glass due to the expanding computing power avaiable to brute-force 24711bde1cdSSimon Glass attacks. For more security, consider SHA256. 24811bde1cdSSimon Glass 24911bde1cdSSimon Glassconfig SPL_SHA256_SUPPORT 25011bde1cdSSimon Glass bool "Support SHA256" 25111bde1cdSSimon Glass depends on SPL_FIT 252089df18bSTom Rini select SHA256 25311bde1cdSSimon Glass help 25411bde1cdSSimon Glass Enable this to support SHA256 in FIT images within SPL. A SHA256 25511bde1cdSSimon Glass checksum is a 256-bit (32-byte) hash value used to check that the 25611bde1cdSSimon Glass image contents have not been corrupted. SHA256 is recommended for 25711bde1cdSSimon Glass use in secure applications since (as at 2016) there is no known 25811bde1cdSSimon Glass feasible attack that could produce a 'collision' with differing 25911bde1cdSSimon Glass input data. Use this for the highest security. Note that only the 26011bde1cdSSimon Glass SHA256 variant is supported: SHA512 and others are not currently 26111bde1cdSSimon Glass supported in U-Boot. 26211bde1cdSSimon Glass 2638118cce3SPhilipp Tomsichconfig SPL_FIT_IMAGE_TINY 2648118cce3SPhilipp Tomsich bool "Remove functionality from SPL FIT loading to reduce size" 2658118cce3SPhilipp Tomsich depends on SPL_FIT 2668118cce3SPhilipp Tomsich default y if MACH_SUN50I || MACH_SUN50I_H5 2678118cce3SPhilipp Tomsich default y if ARCH_OMAP2PLUS 2688118cce3SPhilipp Tomsich help 2698118cce3SPhilipp Tomsich Enable this to reduce the size of the FIT image loading code 2708118cce3SPhilipp Tomsich in SPL, if space for the SPL binary is very tight. 2718118cce3SPhilipp Tomsich 2728118cce3SPhilipp Tomsich This removes the detection of image types (which forces the 2738118cce3SPhilipp Tomsich first image to be treated as having a U-Boot style calling 2748118cce3SPhilipp Tomsich convention) and skips the recording of each loaded payload 2758118cce3SPhilipp Tomsich (i.e. loadable) into the FDT (modifying the loaded FDT to 2768118cce3SPhilipp Tomsich ensure this information is available to the next image 2778118cce3SPhilipp Tomsich invoked). 2788118cce3SPhilipp Tomsich 2795e148df9SSimon Glassconfig SPL_CPU_SUPPORT 2805e148df9SSimon Glass bool "Support CPU drivers" 2815e148df9SSimon Glass help 2825e148df9SSimon Glass Enable this to support CPU drivers in SPL. These drivers can set 2835e148df9SSimon Glass up CPUs and provide information about them such as the model and 2845e148df9SSimon Glass name. This can be useful in SPL since setting up the CPUs earlier 2855e148df9SSimon Glass may improve boot performance. Enable this option to build the 2865e148df9SSimon Glass drivers in drivers/cpu as part of an SPL build. 2875e148df9SSimon Glass 28811bde1cdSSimon Glassconfig SPL_CRYPTO_SUPPORT 28911bde1cdSSimon Glass bool "Support crypto drivers" 29011bde1cdSSimon Glass help 29111bde1cdSSimon Glass Enable crypto drivers in SPL. These drivers can be used to 29211bde1cdSSimon Glass accelerate secure boot processing in secure applications. Enable 29311bde1cdSSimon Glass this option to build the drivers in drivers/crypto as part of an 29411bde1cdSSimon Glass SPL build. 29511bde1cdSSimon Glass 29611bde1cdSSimon Glassconfig SPL_HASH_SUPPORT 29711bde1cdSSimon Glass bool "Support hashing drivers" 298089df18bSTom Rini select SHA1 299089df18bSTom Rini select SHA256 30011bde1cdSSimon Glass help 30111bde1cdSSimon Glass Enable hashing drivers in SPL. These drivers can be used to 30211bde1cdSSimon Glass accelerate secure boot processing in secure applications. Enable 30311bde1cdSSimon Glass this option to build system-specific drivers for hash acceleration 30411bde1cdSSimon Glass as part of an SPL build. 30511bde1cdSSimon Glass 30611bde1cdSSimon Glassconfig SPL_DMA_SUPPORT 30711bde1cdSSimon Glass bool "Support DMA drivers" 30811bde1cdSSimon Glass help 30911bde1cdSSimon Glass Enable DMA (direct-memory-access) drivers in SPL. These drivers 31011bde1cdSSimon Glass can be used to handle memory-to-peripheral data transfer without 31111bde1cdSSimon Glass the CPU moving the data. Enable this option to build the drivers 31211bde1cdSSimon Glass in drivers/dma as part of an SPL build. 31311bde1cdSSimon Glass 31411bde1cdSSimon Glassconfig SPL_DRIVERS_MISC_SUPPORT 31511bde1cdSSimon Glass bool "Support misc drivers" 31611bde1cdSSimon Glass help 31711bde1cdSSimon Glass Enable miscellaneous drivers in SPL. These drivers perform various 31811bde1cdSSimon Glass tasks that don't fall nicely into other categories, Enable this 31911bde1cdSSimon Glass option to build the drivers in drivers/misc as part of an SPL 32011bde1cdSSimon Glass build, for those that support building in SPL (not all drivers do). 32111bde1cdSSimon Glass 32211bde1cdSSimon Glassconfig SPL_ENV_SUPPORT 32311bde1cdSSimon Glass bool "Support an environment" 32411bde1cdSSimon Glass help 32511bde1cdSSimon Glass Enable environment support in SPL. The U-Boot environment provides 32611bde1cdSSimon Glass a number of settings (essentially name/value pairs) which can 32711bde1cdSSimon Glass control many aspects of U-Boot's operation. Normally this is not 32811bde1cdSSimon Glass needed in SPL as it has a much simpler task with less 32911bde1cdSSimon Glass configuration. But some boards use this to support 'Falcon' boot 33011bde1cdSSimon Glass on EXT2 and FAT, where SPL boots directly into Linux without 33100caae6dSSimon Glass starting U-Boot first. Enabling this option will make env_get() 332382bee57SSimon Glass and env_set() available in SPL. 33311bde1cdSSimon Glass 334d2d9bdfcSB, Raviconfig SPL_SAVEENV 335d2d9bdfcSB, Ravi bool "Support save environment" 336226498b8STom Rini depends on SPL_ENV_SUPPORT 337d2d9bdfcSB, Ravi help 338d2d9bdfcSB, Ravi Enable save environment support in SPL after setenv. By default 339d2d9bdfcSB, Ravi the saveenv option is not provided in SPL, but some boards need 340d2d9bdfcSB, Ravi this support in 'Falcon' boot, where SPL need to boot from 341d2d9bdfcSB, Ravi different images based on environment variable set by OS. For 342d2d9bdfcSB, Ravi example OS may set "reboot_image" environment variable to 343d2d9bdfcSB, Ravi "recovery" inorder to boot recovery image by SPL. The SPL read 344d2d9bdfcSB, Ravi "reboot_image" and act accordingly and change the reboot_image 345d2d9bdfcSB, Ravi to default mode using setenv and save the environemnt. 346d2d9bdfcSB, Ravi 34711bde1cdSSimon Glassconfig SPL_ETH_SUPPORT 34811bde1cdSSimon Glass bool "Support Ethernet" 34911bde1cdSSimon Glass depends on SPL_ENV_SUPPORT 35011bde1cdSSimon Glass help 35111bde1cdSSimon Glass Enable access to the network subsystem and associated Ethernet 35211bde1cdSSimon Glass drivers in SPL. This permits SPL to load U-Boot over an Ethernet 35311bde1cdSSimon Glass link rather than from an on-board peripheral. Environment support 35411bde1cdSSimon Glass is required since the network stack uses a number of environment 35511bde1cdSSimon Glass variables. See also SPL_NET_SUPPORT. 35611bde1cdSSimon Glass 35711bde1cdSSimon Glassconfig SPL_EXT_SUPPORT 35811bde1cdSSimon Glass bool "Support EXT filesystems" 35911bde1cdSSimon Glass help 36011bde1cdSSimon Glass Enable support for EXT2/3/4 filesystems with SPL. This permits 36111bde1cdSSimon Glass U-Boot (or Linux in Falcon mode) to be loaded from an EXT 36211bde1cdSSimon Glass filesystem from within SPL. Support for the underlying block 36311bde1cdSSimon Glass device (e.g. MMC or USB) must be enabled separately. 36411bde1cdSSimon Glass 36511bde1cdSSimon Glassconfig SPL_FAT_SUPPORT 36611bde1cdSSimon Glass bool "Support FAT filesystems" 367eedfb89eSSekhar Nori select FS_FAT 36811bde1cdSSimon Glass help 36911bde1cdSSimon Glass Enable support for FAT and VFAT filesystems with SPL. This 37011bde1cdSSimon Glass permits U-Boot (or Linux in Falcon mode) to be loaded from a FAT 37111bde1cdSSimon Glass filesystem from within SPL. Support for the underlying block 37211bde1cdSSimon Glass device (e.g. MMC or USB) must be enabled separately. 37311bde1cdSSimon Glass 37411bde1cdSSimon Glassconfig SPL_FPGA_SUPPORT 37511bde1cdSSimon Glass bool "Support FPGAs" 37611bde1cdSSimon Glass help 37711bde1cdSSimon Glass Enable support for FPGAs in SPL. Field-programmable Gate Arrays 37811bde1cdSSimon Glass provide software-configurable hardware which is typically used to 37911bde1cdSSimon Glass implement peripherals (such as UARTs, LCD displays, MMC) or 38011bde1cdSSimon Glass accelerate custom processing functions, such as image processing 38111bde1cdSSimon Glass or machine learning. Sometimes it is useful to program the FPGA 38211bde1cdSSimon Glass as early as possible during boot, and this option can enable that 38311bde1cdSSimon Glass within SPL. 38411bde1cdSSimon Glass 38511bde1cdSSimon Glassconfig SPL_GPIO_SUPPORT 38611bde1cdSSimon Glass bool "Support GPIO" 38711bde1cdSSimon Glass help 38811bde1cdSSimon Glass Enable support for GPIOs (General-purpose Input/Output) in SPL. 38911bde1cdSSimon Glass GPIOs allow U-Boot to read the state of an input line (high or 39011bde1cdSSimon Glass low) and set the state of an output line. This can be used to 39111bde1cdSSimon Glass drive LEDs, control power to various system parts and read user 39211bde1cdSSimon Glass input. GPIOs can be useful in SPL to enable a 'sign-of-life' LED, 39311bde1cdSSimon Glass for example. Enable this option to build the drivers in 39411bde1cdSSimon Glass drivers/gpio as part of an SPL build. 39511bde1cdSSimon Glass 39611bde1cdSSimon Glassconfig SPL_I2C_SUPPORT 39711bde1cdSSimon Glass bool "Support I2C" 39811bde1cdSSimon Glass help 39911bde1cdSSimon Glass Enable support for the I2C (Inter-Integrated Circuit) bus in SPL. 40011bde1cdSSimon Glass I2C works with a clock and data line which can be driven by a 40111bde1cdSSimon Glass one or more masters or slaves. It is a fairly complex bus but is 40211bde1cdSSimon Glass widely used as it only needs two lines for communication. Speeds of 40311bde1cdSSimon Glass 400kbps are typical but up to 3.4Mbps is supported by some 40411bde1cdSSimon Glass hardware. I2C can be useful in SPL to configure power management 40511bde1cdSSimon Glass ICs (PMICs) before raising the CPU clock speed, for example. 40611bde1cdSSimon Glass Enable this option to build the drivers in drivers/i2c as part of 40711bde1cdSSimon Glass an SPL build. 40811bde1cdSSimon Glass 40911bde1cdSSimon Glassconfig SPL_LIBCOMMON_SUPPORT 41011bde1cdSSimon Glass bool "Support common libraries" 41111bde1cdSSimon Glass help 41211bde1cdSSimon Glass Enable support for common U-Boot libraries within SPL. These 41311bde1cdSSimon Glass libraries include common code to deal with U-Boot images, 41411bde1cdSSimon Glass environment and USB, for example. This option is enabled on many 41511bde1cdSSimon Glass boards. Enable this option to build the code in common/ as part of 41611bde1cdSSimon Glass an SPL build. 41711bde1cdSSimon Glass 41811bde1cdSSimon Glassconfig SPL_LIBDISK_SUPPORT 41911bde1cdSSimon Glass bool "Support disk paritions" 42011bde1cdSSimon Glass help 42111bde1cdSSimon Glass Enable support for disk partitions within SPL. 'Disk' is something 42211bde1cdSSimon Glass of a misnomer as it includes non-spinning media such as flash (as 42311bde1cdSSimon Glass used in MMC and USB sticks). Partitions provide a way for a disk 42411bde1cdSSimon Glass to be split up into separate regions, with a partition table placed 42511bde1cdSSimon Glass at the start or end which describes the location and size of each 42611bde1cdSSimon Glass 'partition'. These partitions are typically uses as individual block 42711bde1cdSSimon Glass devices, typically with an EXT2 or FAT filesystem in each. This 42811bde1cdSSimon Glass option enables whatever partition support has been enabled in 42911bde1cdSSimon Glass U-Boot to also be used in SPL. It brings in the code in disk/. 43011bde1cdSSimon Glass 43111bde1cdSSimon Glassconfig SPL_LIBGENERIC_SUPPORT 43211bde1cdSSimon Glass bool "Support generic libraries" 43311bde1cdSSimon Glass help 43411bde1cdSSimon Glass Enable support for generic U-Boot libraries within SPL. These 43511bde1cdSSimon Glass libraries include generic code to deal with device tree, hashing, 43611bde1cdSSimon Glass printf(), compression and the like. This option is enabled on many 43711bde1cdSSimon Glass boards. Enable this option to build the code in lib/ as part of an 43811bde1cdSSimon Glass SPL build. 43911bde1cdSSimon Glass 44011bde1cdSSimon Glassconfig SPL_MMC_SUPPORT 44111bde1cdSSimon Glass bool "Support MMC" 442226498b8STom Rini depends on MMC 44311bde1cdSSimon Glass help 44411bde1cdSSimon Glass Enable support for MMC (Multimedia Card) within SPL. This enables 44511bde1cdSSimon Glass the MMC protocol implementation and allows any enabled drivers to 44611bde1cdSSimon Glass be used within SPL. MMC can be used with or without disk partition 44711bde1cdSSimon Glass support depending on the application (SPL_LIBDISK_SUPPORT). Enable 44811bde1cdSSimon Glass this option to build the drivers in drivers/mmc as part of an SPL 44911bde1cdSSimon Glass build. 45011bde1cdSSimon Glass 45111bde1cdSSimon Glassconfig SPL_MPC8XXX_INIT_DDR_SUPPORT 45211bde1cdSSimon Glass bool "Support MPC8XXX DDR init" 45311bde1cdSSimon Glass help 45411bde1cdSSimon Glass Enable support for DDR-SDRAM (double-data-rate synchronous dynamic 45511bde1cdSSimon Glass random-access memory) on the MPC8XXX family within SPL. This 45611bde1cdSSimon Glass allows DRAM to be set up before loading U-Boot into that DRAM, 45711bde1cdSSimon Glass where it can run. 45811bde1cdSSimon Glass 45911bde1cdSSimon Glassconfig SPL_MTD_SUPPORT 46011bde1cdSSimon Glass bool "Support MTD drivers" 46111bde1cdSSimon Glass help 46211bde1cdSSimon Glass Enable support for MTD (Memory Technology Device) within SPL. MTD 46311bde1cdSSimon Glass provides a block interface over raw NAND and can also be used with 46411bde1cdSSimon Glass SPI flash. This allows SPL to load U-Boot from supported MTD 46511bde1cdSSimon Glass devices. See SPL_NAND_SUPPORT and SPL_ONENAND_SUPPORT for how 46611bde1cdSSimon Glass to enable specific MTD drivers. 46711bde1cdSSimon Glass 468*3b1ddd14SJason Zhuconfig MTD_BLK_U_BOOT_OFFS 469*3b1ddd14SJason Zhu hex "Location in MTD block to read U-Boot from" 470*3b1ddd14SJason Zhu default 0x4000 471*3b1ddd14SJason Zhu depends on SPL_MTD_SUPPORT 472*3b1ddd14SJason Zhu help 473*3b1ddd14SJason Zhu Set the offset from the start of the nand,spi nand and nor flash where 474*3b1ddd14SJason Zhu u-boot should be loaded from. 475*3b1ddd14SJason Zhu 47611bde1cdSSimon Glassconfig SPL_MUSB_NEW_SUPPORT 47711bde1cdSSimon Glass bool "Support new Mentor Graphics USB" 47811bde1cdSSimon Glass help 47911bde1cdSSimon Glass Enable support for Mentor Graphics USB in SPL. This is a new 48011bde1cdSSimon Glass driver used by some boards. Enable this option to build 48111bde1cdSSimon Glass the drivers in drivers/usb/musb-new as part of an SPL build. The 48211bde1cdSSimon Glass old drivers are in drivers/usb/musb. 48311bde1cdSSimon Glass 48411bde1cdSSimon Glassconfig SPL_NAND_SUPPORT 48511bde1cdSSimon Glass bool "Support NAND flash" 48611bde1cdSSimon Glass help 48711bde1cdSSimon Glass Enable support for NAND (Negative AND) flash in SPL. NAND flash 48811bde1cdSSimon Glass can be used to allow SPL to load U-Boot from supported devices. 489cfcc706cSMiquel Raynal This enables the drivers in drivers/mtd/nand/raw as part of an SPL 49011bde1cdSSimon Glass build. 49111bde1cdSSimon Glass 49211bde1cdSSimon Glassconfig SPL_NET_SUPPORT 49311bde1cdSSimon Glass bool "Support networking" 49411bde1cdSSimon Glass help 49511bde1cdSSimon Glass Enable support for network devices (such as Ethernet) in SPL. 49611bde1cdSSimon Glass This permits SPL to load U-Boot over a network link rather than 49711bde1cdSSimon Glass from an on-board peripheral. Environment support is required since 49811bde1cdSSimon Glass the network stack uses a number of environment variables. See also 49911bde1cdSSimon Glass SPL_ETH_SUPPORT. 50011bde1cdSSimon Glass 50111bde1cdSSimon Glassif SPL_NET_SUPPORT 50211bde1cdSSimon Glassconfig SPL_NET_VCI_STRING 50311bde1cdSSimon Glass string "BOOTP Vendor Class Identifier string sent by SPL" 50411bde1cdSSimon Glass help 50511bde1cdSSimon Glass As defined by RFC 2132 the vendor class identifier field can be 50611bde1cdSSimon Glass sent by the client to identify the vendor type and configuration 50711bde1cdSSimon Glass of a client. This is often used in practice to allow for the DHCP 50811bde1cdSSimon Glass server to specify different files to load depending on if the ROM, 50911bde1cdSSimon Glass SPL or U-Boot itself makes the request 51011bde1cdSSimon Glassendif # if SPL_NET_SUPPORT 51111bde1cdSSimon Glass 51211bde1cdSSimon Glassconfig SPL_NO_CPU_SUPPORT 51311bde1cdSSimon Glass bool "Drop CPU code in SPL" 51411bde1cdSSimon Glass help 51511bde1cdSSimon Glass This is specific to the ARM926EJ-S CPU. It disables the standard 51611bde1cdSSimon Glass start.S start-up code, presumably so that a replacement can be 51711bde1cdSSimon Glass used on that CPU. You should not enable it unless you know what 51811bde1cdSSimon Glass you are doing. 51911bde1cdSSimon Glass 52011bde1cdSSimon Glassconfig SPL_NOR_SUPPORT 52111bde1cdSSimon Glass bool "Support NOR flash" 52211bde1cdSSimon Glass help 52311bde1cdSSimon Glass Enable support for loading U-Boot from memory-mapped NOR (Negative 52411bde1cdSSimon Glass OR) flash in SPL. NOR flash is slow to write but fast to read, and 52511bde1cdSSimon Glass a memory-mapped device makes it very easy to access. Loading from 52611bde1cdSSimon Glass NOR is typically achieved with just a memcpy(). 52711bde1cdSSimon Glass 528c6d9e9dbSVikas Manochaconfig SPL_XIP_SUPPORT 529c6d9e9dbSVikas Manocha bool "Support XIP" 530c6d9e9dbSVikas Manocha depends on SPL 531c6d9e9dbSVikas Manocha help 532c6d9e9dbSVikas Manocha Enable support for execute in place of U-Boot or kernel image. There 533c6d9e9dbSVikas Manocha is no need to copy image from flash to ram if flash supports execute 534c6d9e9dbSVikas Manocha in place. Its very useful in systems having enough flash but not 535c6d9e9dbSVikas Manocha enough ram to load the image. 536c6d9e9dbSVikas Manocha 53711bde1cdSSimon Glassconfig SPL_ONENAND_SUPPORT 53811bde1cdSSimon Glass bool "Support OneNAND flash" 53911bde1cdSSimon Glass help 54011bde1cdSSimon Glass Enable support for OneNAND (Negative AND) flash in SPL. OneNAND is 54111bde1cdSSimon Glass a type of NAND flash and therefore can be used to allow SPL to 54211bde1cdSSimon Glass load U-Boot from supported devices. This enables the drivers in 54311bde1cdSSimon Glass drivers/mtd/onenand as part of an SPL build. 54411bde1cdSSimon Glass 545c20ae2ffSHeiko Schocherconfig SPL_OS_BOOT 546c20ae2ffSHeiko Schocher bool "Activate Falcon Mode" 547226498b8STom Rini depends on !TI_SECURE_DEVICE 548c20ae2ffSHeiko Schocher default n 549c20ae2ffSHeiko Schocher help 550c20ae2ffSHeiko Schocher Enable booting directly to an OS from SPL. 551c20ae2ffSHeiko Schocher for more info read doc/README.falcon 552c20ae2ffSHeiko Schocher 55329d3bc79SHeiko Schocherif SPL_OS_BOOT 55429d3bc79SHeiko Schocherconfig SYS_OS_BASE 55529d3bc79SHeiko Schocher hex "addr, where OS is found" 556226498b8STom Rini depends on SPL_NOR_SUPPORT 55729d3bc79SHeiko Schocher help 55829d3bc79SHeiko Schocher Specify the address, where the OS image is found, which 55929d3bc79SHeiko Schocher gets booted. 56029d3bc79SHeiko Schocher 56129d3bc79SHeiko Schocherendif # SPL_OS_BOOT 56229d3bc79SHeiko Schocher 5632446b6b8SSimon Glassconfig SPL_PCI_SUPPORT 5642446b6b8SSimon Glass bool "Support PCI drivers" 5652446b6b8SSimon Glass help 5662446b6b8SSimon Glass Enable support for PCI in SPL. For platforms that need PCI to boot, 5672446b6b8SSimon Glass or must perform some init using PCI in SPL, this provides the 5682446b6b8SSimon Glass necessary driver support. This enables the drivers in drivers/pci 5692446b6b8SSimon Glass as part of an SPL build. 5702446b6b8SSimon Glass 571bbe41abfSSimon Glassconfig SPL_PCH_SUPPORT 572bbe41abfSSimon Glass bool "Support PCH drivers" 573bbe41abfSSimon Glass help 574bbe41abfSSimon Glass Enable support for PCH (Platform Controller Hub) devices in SPL. 575bbe41abfSSimon Glass These are used to set up GPIOs and the SPI peripheral early in 576bbe41abfSSimon Glass boot. This enables the drivers in drivers/pch as part of an SPL 577bbe41abfSSimon Glass build. 578bbe41abfSSimon Glass 57911bde1cdSSimon Glassconfig SPL_POST_MEM_SUPPORT 58011bde1cdSSimon Glass bool "Support POST drivers" 58111bde1cdSSimon Glass help 58211bde1cdSSimon Glass Enable support for POST (Power-on Self Test) in SPL. POST is a 58311bde1cdSSimon Glass procedure that checks that the hardware (CPU or board) appears to 58411bde1cdSSimon Glass be functionally correctly. It is a sanity check that can be 58511bde1cdSSimon Glass performed before booting. This enables the drivers in post/drivers 58611bde1cdSSimon Glass as part of an SPL build. 58711bde1cdSSimon Glass 58811bde1cdSSimon Glassconfig SPL_POWER_SUPPORT 58911bde1cdSSimon Glass bool "Support power drivers" 59011bde1cdSSimon Glass help 59111bde1cdSSimon Glass Enable support for power control in SPL. This includes support 59211bde1cdSSimon Glass for PMICs (Power-management Integrated Circuits) and some of the 59311bde1cdSSimon Glass features provided by PMICs. In particular, voltage regulators can 59411bde1cdSSimon Glass be used to enable/disable power and vary its voltage. That can be 59511bde1cdSSimon Glass useful in SPL to turn on boot peripherals and adjust CPU voltage 59611bde1cdSSimon Glass so that the clock speed can be increased. This enables the drivers 59711bde1cdSSimon Glass in drivers/power, drivers/power/pmic and drivers/power/regulator 59811bde1cdSSimon Glass as part of an SPL build. 59911bde1cdSSimon Glass 600cc668fbcSJason Zhuconfig SPL_PWM_SUPPORT 601cc668fbcSJason Zhu bool "Support PWM driver" 602cc668fbcSJason Zhu depends on SPL 603cc668fbcSJason Zhu help 604cc668fbcSJason Zhu Enable support for pwm in SPL. This allows use pwm to control 605cc668fbcSJason Zhu somethings, for example control voltage. 606cc668fbcSJason Zhu 60722802f4eSStefan Agnerconfig SPL_RAM_SUPPORT 60822802f4eSStefan Agner bool "Support booting from RAM" 60922802f4eSStefan Agner default y if MICROBLAZE || ARCH_SOCFPGA || TEGRA || ARCH_ZYNQ 61022802f4eSStefan Agner help 61122802f4eSStefan Agner Enable booting of an image in RAM. The image can be preloaded or 61222802f4eSStefan Agner it can be loaded by SPL directly into RAM (e.g. using USB). 61322802f4eSStefan Agner 614f417d40fSStefan Agnerconfig SPL_RAM_DEVICE 615f417d40fSStefan Agner bool "Support booting from preloaded image in RAM" 61622802f4eSStefan Agner depends on SPL_RAM_SUPPORT 617f417d40fSStefan Agner default y if MICROBLAZE || ARCH_SOCFPGA || TEGRA || ARCH_ZYNQ 618f417d40fSStefan Agner help 619f417d40fSStefan Agner Enable booting of an image already loaded in RAM. The image has to 620f417d40fSStefan Agner be already in memory when SPL takes over, e.g. loaded by the boot 621f417d40fSStefan Agner ROM. 622f417d40fSStefan Agner 62330bf8a0dSSimon Glassconfig SPL_RTC_SUPPORT 62430bf8a0dSSimon Glass bool "Support RTC drivers" 62530bf8a0dSSimon Glass help 62630bf8a0dSSimon Glass Enable RTC (Real-time Clock) support in SPL. This includes support 62730bf8a0dSSimon Glass for reading and setting the time. Some RTC devices also have some 62830bf8a0dSSimon Glass non-volatile (battery-backed) memory which is accessible if 62930bf8a0dSSimon Glass needed. This enables the drivers in drivers/rtc as part of an SPL 63030bf8a0dSSimon Glass build. 63130bf8a0dSSimon Glass 63211bde1cdSSimon Glassconfig SPL_SATA_SUPPORT 63311bde1cdSSimon Glass bool "Support loading from SATA" 63411bde1cdSSimon Glass help 63511bde1cdSSimon Glass Enable support for SATA (Serial AT attachment) in SPL. This allows 63611bde1cdSSimon Glass use of SATA devices such as hard drives and flash drivers for 63711bde1cdSSimon Glass loading U-Boot. SATA is used in higher-end embedded systems and 63811bde1cdSSimon Glass can provide higher performance than MMC , at somewhat higher 63911bde1cdSSimon Glass expense and power consumption. This enables loading from SATA 64011bde1cdSSimon Glass using a configured device. 64111bde1cdSSimon Glass 64211bde1cdSSimon Glassconfig SPL_SERIAL_SUPPORT 64311bde1cdSSimon Glass bool "Support serial" 64411bde1cdSSimon Glass help 64511bde1cdSSimon Glass Enable support for serial in SPL. This allows use of a serial UART 64611bde1cdSSimon Glass for displaying messages while SPL is running. It also brings in 64711bde1cdSSimon Glass printf() and panic() functions. This should normally be enabled 64811bde1cdSSimon Glass unless there are space reasons not to. Even then, consider 64911bde1cdSSimon Glass enabling USE_TINY_PRINTF which is a small printf() version. 65011bde1cdSSimon Glass 65111bde1cdSSimon Glassconfig SPL_SPI_FLASH_SUPPORT 65211bde1cdSSimon Glass bool "Support SPI flash drivers" 65311bde1cdSSimon Glass help 65411bde1cdSSimon Glass Enable support for using SPI flash in SPL, and loading U-Boot from 65511bde1cdSSimon Glass SPI flash. SPI flash (Serial Peripheral Bus flash) is named after 65611bde1cdSSimon Glass the SPI bus that is used to connect it to a system. It is a simple 65711bde1cdSSimon Glass but fast bidirectional 4-wire bus (clock, chip select and two data 65811bde1cdSSimon Glass lines). This enables the drivers in drivers/mtd/spi as part of an 65911bde1cdSSimon Glass SPL build. This normally requires SPL_SPI_SUPPORT. 66011bde1cdSSimon Glass 6612359fc6fSVignesh Rif SPL_SPI_FLASH_SUPPORT 6622359fc6fSVignesh R 663da748245SVignesh Rconfig SPL_SPI_FLASH_TINY 664da748245SVignesh R bool "Enable low footprint SPL SPI Flash support" 665da748245SVignesh R depends on !SPI_FLASH_BAR 666da748245SVignesh R help 667da748245SVignesh R Enable lightweight SPL SPI Flash support that supports just reading 668da748245SVignesh R data/images from flash. No support to write/erase flash. Enable 669da748245SVignesh R this if you have SPL size limitations and don't need full 670da748245SVignesh R fledged SPI flash support. 671da748245SVignesh R 6722359fc6fSVignesh Rconfig SPL_SPI_FLASH_SFDP_SUPPORT 6732359fc6fSVignesh R bool "SFDP table parsing support for SPI NOR flashes" 674da748245SVignesh R depends on !SPI_FLASH_BAR && !SPL_SPI_FLASH_TINY 6752359fc6fSVignesh R help 6762359fc6fSVignesh R Enable support for parsing and auto discovery of parameters for 6772359fc6fSVignesh R SPI NOR flashes using Serial Flash Discoverable Parameters (SFDP) 6782359fc6fSVignesh R tables as per JESD216 standard in SPL. 6792359fc6fSVignesh R 6802359fc6fSVignesh Rconfig SPL_SPI_LOAD 6812359fc6fSVignesh R bool "Support loading from SPI flash" 6822359fc6fSVignesh R help 6832359fc6fSVignesh R Enable support for loading next stage, U-Boot or otherwise, from 6842359fc6fSVignesh R SPI NOR in U-Boot SPL. 6852359fc6fSVignesh R 6862359fc6fSVignesh Rendif # SPL_SPI_FLASH_SUPPORT 6872359fc6fSVignesh R 68811bde1cdSSimon Glassconfig SPL_SPI_SUPPORT 68911bde1cdSSimon Glass bool "Support SPI drivers" 69011bde1cdSSimon Glass help 69111bde1cdSSimon Glass Enable support for using SPI in SPL. This is used for connecting 69211bde1cdSSimon Glass to SPI flash for loading U-Boot. See SPL_SPI_FLASH_SUPPORT for 69311bde1cdSSimon Glass more details on that. The SPI driver provides the transport for 69411bde1cdSSimon Glass data between the SPI flash and the CPU. This option can be used to 69511bde1cdSSimon Glass enable SPI drivers that are needed for other purposes also, such 69611bde1cdSSimon Glass as a SPI PMIC. 69711bde1cdSSimon Glass 69811bde1cdSSimon Glassconfig SPL_USB_HOST_SUPPORT 69911bde1cdSSimon Glass bool "Support USB host drivers" 70011bde1cdSSimon Glass help 70111bde1cdSSimon Glass Enable access to USB (Universal Serial Bus) host devices so that 70211bde1cdSSimon Glass SPL can load U-Boot from a connected USB peripheral, such as a USB 70311bde1cdSSimon Glass flash stick. While USB takes a little longer to start up than most 70411bde1cdSSimon Glass buses, it is very flexible since many different types of storage 70511bde1cdSSimon Glass device can be attached. This option enables the drivers in 70611bde1cdSSimon Glass drivers/usb/host as part of an SPL build. 70711bde1cdSSimon Glass 70811bde1cdSSimon Glassconfig SPL_USB_SUPPORT 70911bde1cdSSimon Glass bool "Support loading from USB" 71011bde1cdSSimon Glass depends on SPL_USB_HOST_SUPPORT 71111bde1cdSSimon Glass help 71211bde1cdSSimon Glass Enable support for USB devices in SPL. This allows use of USB 71311bde1cdSSimon Glass devices such as hard drives and flash drivers for loading U-Boot. 71411bde1cdSSimon Glass The actual drivers are enabled separately using the normal U-Boot 71511bde1cdSSimon Glass config options. This enables loading from USB using a configured 71611bde1cdSSimon Glass device. 71711bde1cdSSimon Glass 718eccca8a3SJean-Jacques Hiblotconfig SPL_USB_GADGET 719e94793c8SStefan Agner bool "Suppport USB Gadget drivers" 720e94793c8SStefan Agner help 721e94793c8SStefan Agner Enable USB Gadget API which allows to enable USB device functions 722e94793c8SStefan Agner in SPL. 723e94793c8SStefan Agner 724eccca8a3SJean-Jacques Hiblotif SPL_USB_GADGET 725e94793c8SStefan Agner 726e94793c8SStefan Agnerconfig SPL_USBETH_SUPPORT 727e94793c8SStefan Agner bool "Support USB Ethernet drivers" 728e94793c8SStefan Agner help 729e94793c8SStefan Agner Enable access to the USB network subsystem and associated 730e94793c8SStefan Agner drivers in SPL. This permits SPL to load U-Boot over a 731e94793c8SStefan Agner USB-connected Ethernet link (such as a USB Ethernet dongle) rather 732e94793c8SStefan Agner than from an onboard peripheral. Environment support is required 733e94793c8SStefan Agner since the network stack uses a number of environment variables. 734e94793c8SStefan Agner See also SPL_NET_SUPPORT and SPL_ETH_SUPPORT. 735e94793c8SStefan Agner 73609b32b41SAndrew F. Davisconfig SPL_DFU 73709b32b41SAndrew F. Davis bool "Support DFU (Device Firmware Upgrade)" 7385991703eSStefan Agner select SPL_HASH_SUPPORT 73966928afbSB, Ravi select SPL_DFU_NO_RESET 7401b19cbdbSB, Ravi depends on SPL_RAM_SUPPORT 7415991703eSStefan Agner help 7425991703eSStefan Agner This feature enables the DFU (Device Firmware Upgarde) in SPL with 7435991703eSStefan Agner RAM memory device support. The ROM code will load and execute 7445991703eSStefan Agner the SPL built with dfu. The user can load binaries (u-boot/kernel) to 7455991703eSStefan Agner selected device partition from host-pc using dfu-utils. 7465991703eSStefan Agner This feature is useful to flash the binaries to factory or bare-metal 7475991703eSStefan Agner boards using USB interface. 7485991703eSStefan Agner 7495991703eSStefan Agnerchoice 7505991703eSStefan Agner bool "DFU device selection" 75109b32b41SAndrew F. Davis depends on SPL_DFU 7525991703eSStefan Agner 7535991703eSStefan Agnerconfig SPL_DFU_RAM 7545991703eSStefan Agner bool "RAM device" 75509b32b41SAndrew F. Davis depends on SPL_DFU && SPL_RAM_SUPPORT 7565991703eSStefan Agner help 7575991703eSStefan Agner select RAM/DDR memory device for loading binary images 7585991703eSStefan Agner (u-boot/kernel) to the selected device partition using 7595991703eSStefan Agner DFU and execute the u-boot/kernel from RAM. 7605991703eSStefan Agner 7615991703eSStefan Agnerendchoice 7625991703eSStefan Agner 763a3774c1cSStefan Agnerconfig SPL_USB_SDP_SUPPORT 764a3774c1cSStefan Agner bool "Support SDP (Serial Download Protocol)" 765a3774c1cSStefan Agner help 766a3774c1cSStefan Agner Enable Serial Download Protocol (SDP) device support in SPL. This 767a3774c1cSStefan Agner allows to download images into memory and execute (jump to) them 768a3774c1cSStefan Agner using the same protocol as implemented by the i.MX family's boot ROM. 769e94793c8SStefan Agnerendif 770e94793c8SStefan Agner 77111bde1cdSSimon Glassconfig SPL_WATCHDOG_SUPPORT 77211bde1cdSSimon Glass bool "Support watchdog drivers" 77311bde1cdSSimon Glass help 77411bde1cdSSimon Glass Enable support for watchdog drivers in SPL. A watchdog is 77511bde1cdSSimon Glass typically a hardware peripheral which can reset the system when it 77611bde1cdSSimon Glass detects no activity for a while (such as a software crash). This 77711bde1cdSSimon Glass enables the drivers in drivers/watchdog as part of an SPL build. 77811bde1cdSSimon Glass 77911bde1cdSSimon Glassconfig SPL_YMODEM_SUPPORT 78011bde1cdSSimon Glass bool "Support loading using Ymodem" 78111bde1cdSSimon Glass help 78211bde1cdSSimon Glass While loading from serial is slow it can be a useful backup when 78311bde1cdSSimon Glass there is no other option. The Ymodem protocol provides a reliable 78411bde1cdSSimon Glass means of transmitting U-Boot over a serial line for using in SPL, 78511bde1cdSSimon Glass with a checksum to ensure correctness. 78611bde1cdSSimon Glass 7879f8888bcSPhilipp Tomsichconfig SPL_ATF 788bcc1726aSKever Yang bool "Support ARM Trusted Firmware" 789226498b8STom Rini depends on ARM64 790bcc1726aSKever Yang help 7914bba5ee7SPhilipp Tomsich ATF(ARM Trusted Firmware) is a component for ARM AArch64 which 792bcc1726aSKever Yang is loaded by SPL (which is considered as BL2 in ATF terminology). 793bcc1726aSKever Yang More detail at: https://github.com/ARM-software/arm-trusted-firmware 794bcc1726aSKever Yang 7951bd2b131SKever Yangconfig SPL_OPTEE_SUPPORT 7961bd2b131SKever Yang bool "Support OP-TEE Trusted OS" 7971bd2b131SKever Yang depends on ARM 7981bd2b131SKever Yang help 7991bd2b131SKever Yang OP-TEE is an open source Trusted OS which is loaded by SPL. 8001bd2b131SKever Yang More detail at: https://github.com/OP-TEE/optee_os 8011bd2b131SKever Yang 8024bba5ee7SPhilipp Tomsichconfig SPL_ATF_NO_PLATFORM_PARAM 8034bba5ee7SPhilipp Tomsich bool "Pass no platform parameter" 8044bba5ee7SPhilipp Tomsich depends on SPL_ATF 8054bba5ee7SPhilipp Tomsich help 8064bba5ee7SPhilipp Tomsich While we expect to call a pointer to a valid FDT (or NULL) 8074bba5ee7SPhilipp Tomsich as the platform parameter to an ATF, some ATF versions are 8084bba5ee7SPhilipp Tomsich not U-Boot aware and have an insufficiently robust parameter 8094bba5ee7SPhilipp Tomsich validation to gracefully reject a FDT being passed. 8104bba5ee7SPhilipp Tomsich 8114bba5ee7SPhilipp Tomsich If this option is enabled, the spl_atf os-type handler will 8124bba5ee7SPhilipp Tomsich always pass NULL for the platform parameter. 8134bba5ee7SPhilipp Tomsich 8144bba5ee7SPhilipp Tomsich If your ATF is affected, say Y. 8154bba5ee7SPhilipp Tomsich 816099855e2SKever Yangconfig SPL_OPTEE 817099855e2SKever Yang bool "Support OP-TEE Trusted OS" 818099855e2SKever Yang depends on ARM 819099855e2SKever Yang help 820099855e2SKever Yang OP-TEE is an open source Trusted OS which is loaded by SPL. 821099855e2SKever Yang More detail at: https://github.com/OP-TEE/optee_os 822099855e2SKever Yang 8230cc16201SJason Zhuconfig SPL_AB 8240cc16201SJason Zhu bool "Support AB system boot" 8254736384cSJason Zhu depends on SPL && SPL_EFI_PARTITION 8260cc16201SJason Zhu help 8270cc16201SJason Zhu Enable this config to support AB system boot. 8280cc16201SJason Zhu 82913c5d8ecSJoseph Chenconfig SPL_LOAD_RKFW 83013c5d8ecSJoseph Chen bool "SPL support load rockchip firmware images" 83113c5d8ecSJoseph Chen depends on SPL 83213c5d8ecSJoseph Chen help 83313c5d8ecSJoseph Chen This enables SPL support load rockchip firmware images. 83413c5d8ecSJoseph Chen Please define both RKFW_TRUST_SECTOR and RKFW_U_BOOT_SECTOR 83513c5d8ecSJoseph Chen for trust and U-Boot images. 83613c5d8ecSJoseph Chen 83713c5d8ecSJoseph Chenconfig RKFW_TRUST_SECTOR 83813c5d8ecSJoseph Chen hex "rockchip trust image load sector" 83913c5d8ecSJoseph Chen depends on SPL_LOAD_RKFW 84013c5d8ecSJoseph Chen default 0x6000 84113c5d8ecSJoseph Chen 84213c5d8ecSJoseph Chenconfig RKFW_U_BOOT_SECTOR 84313c5d8ecSJoseph Chen hex "rockchip uboot image load sector" 84413c5d8ecSJoseph Chen depends on SPL_LOAD_RKFW 84513c5d8ecSJoseph Chen default 0x4000 84613c5d8ecSJoseph Chen 847440eb126SJason Zhuconfig RKFW_BOOT_SECTOR 848440eb126SJason Zhu hex "rockchip boot image load sector" 849440eb126SJason Zhu depends on SPL_LOAD_RKFW 850440eb126SJason Zhu default 0xa000 851440eb126SJason Zhu 852a2b9279dSJoseph Chenconfig SPL_KERNEL_BOOT 853a2b9279dSJoseph Chen bool "Enable boot kernel in SPL" 854a2b9279dSJoseph Chen depends on SPL 855a2b9279dSJoseph Chen help 856a2b9279dSJoseph Chen Enable boot kernel in SPL. 857a2b9279dSJoseph Chen 858a2b9279dSJoseph Chenif SPL_KERNEL_BOOT 85949f617a9SJason Zhuconfig SPL_KERNEL_ADDR 86049f617a9SJason Zhu hex "Kernel load address in spl" 86149f617a9SJason Zhu depends on SPL 86249f617a9SJason Zhu default 0x280000 86349f617a9SJason Zhu help 86449f617a9SJason Zhu Define the kernel address where load kernel image to. 86549f617a9SJason Zhu This is used to boot kernel in spl. 86649f617a9SJason Zhu 867fcf012f8SJason Zhuconfig SPL_KERNEL_COMPRESS_ADDR 868fcf012f8SJason Zhu hex "The compressed kernel in spl" 869fcf012f8SJason Zhu depends on SPL && SPL_ROCKCHIP_HW_DECOMPRESS 870fcf012f8SJason Zhu help 871fcf012f8SJason Zhu Load compressed kernel in this address, then call the 872fcf012f8SJason Zhu decompress process to decompress the firmware. 873fcf012f8SJason Zhu 874a6f23aeaSJason Zhuconfig SPL_KERNEL_DECOM_LIMIT_SIZE 875a6f23aeaSJason Zhu hex "The decompress limit size" 876a6f23aeaSJason Zhu depends on SPL && SPL_ROCKCHIP_HW_DECOMPRESS 877a6f23aeaSJason Zhu default 0x1ff8000 878a6f23aeaSJason Zhu help 879a6f23aeaSJason Zhu Define kernel maximum decompressible size that prevent 880a6f23aeaSJason Zhu memory overrun. 881a6f23aeaSJason Zhu 88249f617a9SJason Zhuconfig SPL_FDT_ADDR 88349f617a9SJason Zhu hex "Device tree blob load address in spl" 88449f617a9SJason Zhu depends on SPL 88549f617a9SJason Zhu default 0x01f00000 88649f617a9SJason Zhu help 88749f617a9SJason Zhu Define the fdt address where load dtb image to. 88849f617a9SJason Zhu This is used to boot kernel in spl. 88949f617a9SJason Zhu 89049f617a9SJason Zhuconfig SPL_RAMDISK_ADDR 89149f617a9SJason Zhu hex "Ramdisk load address in spl" 89249f617a9SJason Zhu depends on SPL 89349f617a9SJason Zhu default 0x0a200000 89449f617a9SJason Zhu help 89549f617a9SJason Zhu Define the ramdisk address where load ramdisk image to. 89649f617a9SJason Zhu This is used to boot kernel in spl. 89749f617a9SJason Zhu 898fcf012f8SJason Zhuconfig SPL_RAMDISK_COMPRESS_ADDR 899fcf012f8SJason Zhu hex "The compressed ramdisk in spl" 900fcf012f8SJason Zhu depends on SPL && SPL_ROCKCHIP_HW_DECOMPRESS 901fcf012f8SJason Zhu help 902fcf012f8SJason Zhu Load compressed ramdisk in this address, then call the 903fcf012f8SJason Zhu decompress process to decompress the firmware. 904fcf012f8SJason Zhu 905a6f23aeaSJason Zhuconfig SPL_RAMDISK_DECOM_LIMIT_SIZE 906a6f23aeaSJason Zhu hex "The decompress limit size" 907a6f23aeaSJason Zhu depends on SPL && SPL_ROCKCHIP_HW_DECOMPRESS 908a6f23aeaSJason Zhu default 0x3000000 909a6f23aeaSJason Zhu help 910a6f23aeaSJason Zhu Define ramdisk maximum decompressible size that prevent 911a6f23aeaSJason Zhu memory overrun. 912a2b9279dSJoseph Chenendif 913dd04b7cbSJason Zhu 914226498b8STom Riniconfig TPL 915226498b8STom Rini bool 916226498b8STom Rini depends on SUPPORT_TPL 917226498b8STom Rini prompt "Enable TPL" 918226498b8STom Rini help 919226498b8STom Rini If you want to build TPL as well as the normal image and SPL, say Y. 920226498b8STom Rini 921226498b8STom Riniif TPL 922226498b8STom Rini 92389c73a9cSKever Yangconfig TPL_BOARD_INIT 92489c73a9cSKever Yang bool "Call board-specific initialization in TPL" 92589c73a9cSKever Yang help 92689c73a9cSKever Yang If this option is enabled, U-Boot will call the function 92789c73a9cSKever Yang spl_board_init() from board_init_r(). This function should be 92889c73a9cSKever Yang provided by the board. 92989c73a9cSKever Yang 930dd6fbcb9SPhilipp Tomsichconfig TPL_LDSCRIPT 931dd6fbcb9SPhilipp Tomsich string "Linker script for the TPL stage" 932dd6fbcb9SPhilipp Tomsich depends on TPL 933dd6fbcb9SPhilipp Tomsich help 934dd6fbcb9SPhilipp Tomsich The TPL stage will usually require a different linker-script 935dd6fbcb9SPhilipp Tomsich (as it runs from a different memory region) than the regular 936dd6fbcb9SPhilipp Tomsich U-Boot stage. Set this to the path of the linker-script to 937dd6fbcb9SPhilipp Tomsich be used for TPL. 938dd6fbcb9SPhilipp Tomsich 939b3ed6ce7SPhilipp Tomsich May be left empty to trigger the Makefile infrastructure to 940b3ed6ce7SPhilipp Tomsich fall back to the linker-script used for the SPL stage. 941b3ed6ce7SPhilipp Tomsich 942b3ed6ce7SPhilipp Tomsichconfig TPL_NEEDS_SEPARATE_TEXT_BASE 943b3ed6ce7SPhilipp Tomsich bool "TPL needs a separate text-base" 944b3ed6ce7SPhilipp Tomsich default n 945b3ed6ce7SPhilipp Tomsich depends on TPL 946b3ed6ce7SPhilipp Tomsich help 947b3ed6ce7SPhilipp Tomsich Enable, if the TPL stage should not inherit its text-base 948b3ed6ce7SPhilipp Tomsich from the SPL stage. When enabled, a base address for the 949b3ed6ce7SPhilipp Tomsich .text sections of the TPL stage has to be set below. 950b3ed6ce7SPhilipp Tomsich 951b3ed6ce7SPhilipp Tomsichconfig TPL_NEEDS_SEPARATE_STACK 952b3ed6ce7SPhilipp Tomsich bool "TPL needs a separate initial stack-pointer" 953b3ed6ce7SPhilipp Tomsich default n 954b3ed6ce7SPhilipp Tomsich depends on TPL 955b3ed6ce7SPhilipp Tomsich help 956b3ed6ce7SPhilipp Tomsich Enable, if the TPL stage should not inherit its initial 957b3ed6ce7SPhilipp Tomsich stack-pointer from the settings for the SPL stage. 958b3ed6ce7SPhilipp Tomsich 959b3ed6ce7SPhilipp Tomsichconfig TPL_TEXT_BASE 960b3ed6ce7SPhilipp Tomsich hex "Base address for the .text section of the TPL stage" 961b3ed6ce7SPhilipp Tomsich depends on TPL_NEEDS_SEPARATE_TEXT_BASE 962b3ed6ce7SPhilipp Tomsich help 963b3ed6ce7SPhilipp Tomsich The base address for the .text section of the TPL stage. 964b3ed6ce7SPhilipp Tomsich 965b3ed6ce7SPhilipp Tomsichconfig TPL_MAX_SIZE 966b3ed6ce7SPhilipp Tomsich int "Maximum size (in bytes) for the TPL stage" 9675aa49af3SPhilipp Tomsich default 0 968b3ed6ce7SPhilipp Tomsich depends on TPL 969b3ed6ce7SPhilipp Tomsich help 970b3ed6ce7SPhilipp Tomsich The maximum size (in bytes) of the TPL stage. 971b3ed6ce7SPhilipp Tomsich 972b3ed6ce7SPhilipp Tomsichconfig TPL_STACK 973b3ed6ce7SPhilipp Tomsich hex "Address of the initial stack-pointer for the TPL stage" 974b3ed6ce7SPhilipp Tomsich depends on TPL_NEEDS_SEPARATE_STACK 975b3ed6ce7SPhilipp Tomsich help 976b3ed6ce7SPhilipp Tomsich The address of the initial stack-pointer for the TPL stage. 977b3ed6ce7SPhilipp Tomsich Usually this will be the (aligned) top-of-stack. 978b3ed6ce7SPhilipp Tomsich 979a954fa32SPhilipp Tomsichconfig TPL_BOOTROM_SUPPORT 980a954fa32SPhilipp Tomsich bool "Support returning to the BOOTROM (from TPL)" 981a954fa32SPhilipp Tomsich help 982a954fa32SPhilipp Tomsich Some platforms (e.g. the Rockchip RK3368) provide support in their 983a954fa32SPhilipp Tomsich ROM for loading the next boot-stage after performing basic setup 984a954fa32SPhilipp Tomsich from the TPL stage. 985a954fa32SPhilipp Tomsich 986a954fa32SPhilipp Tomsich Enable this option, to return to the BOOTROM through the 987a954fa32SPhilipp Tomsich BOOT_DEVICE_BOOTROM (or fall-through to the next boot device in the 988a954fa32SPhilipp Tomsich boot device list, if not implemented for a given board) 989a954fa32SPhilipp Tomsich 990c3916e7bSPhilipp Tomsichconfig TPL_DRIVERS_MISC_SUPPORT 991c3916e7bSPhilipp Tomsich bool "Support misc drivers in TPL" 992c3916e7bSPhilipp Tomsich help 993c3916e7bSPhilipp Tomsich Enable miscellaneous drivers in TPL. These drivers perform various 994c3916e7bSPhilipp Tomsich tasks that don't fall nicely into other categories, Enable this 995c3916e7bSPhilipp Tomsich option to build the drivers in drivers/misc as part of an TPL 996c3916e7bSPhilipp Tomsich build, for those that support building in TPL (not all drivers do). 997c3916e7bSPhilipp Tomsich 998f73329eeSSimon Glassconfig TPL_ENV_SUPPORT 999f73329eeSSimon Glass bool "Support an environment" 1000f73329eeSSimon Glass help 1001f73329eeSSimon Glass Enable environment support in TPL. See SPL_ENV_SUPPORT for details. 1002f73329eeSSimon Glass 1003f73329eeSSimon Glassconfig TPL_I2C_SUPPORT 1004f73329eeSSimon Glass bool "Support I2C" 1005f73329eeSSimon Glass help 1006616bd09eSPhilipp Tomsich Enable support for the I2C bus in TPL. See SPL_I2C_SUPPORT for 1007f73329eeSSimon Glass details. 1008f73329eeSSimon Glass 1009f73329eeSSimon Glassconfig TPL_LIBCOMMON_SUPPORT 1010f73329eeSSimon Glass bool "Support common libraries" 1011f73329eeSSimon Glass help 1012f73329eeSSimon Glass Enable support for common U-Boot libraries within TPL. See 1013f73329eeSSimon Glass SPL_LIBCOMMON_SUPPORT for details. 1014f73329eeSSimon Glass 1015f73329eeSSimon Glassconfig TPL_LIBGENERIC_SUPPORT 1016f73329eeSSimon Glass bool "Support generic libraries" 1017f73329eeSSimon Glass help 1018f73329eeSSimon Glass Enable support for generic U-Boot libraries within TPL. See 1019f73329eeSSimon Glass SPL_LIBGENERIC_SUPPORT for details. 1020f73329eeSSimon Glass 1021ba5fd738SYouMin Chenconfig TPL_TINY_FRAMEWORK 102230129f2fSDavid Wu bool "Support not to use spl framework in TPL" 102330129f2fSDavid Wu help 102430129f2fSDavid Wu Enable support for not using spl framework in TPL, to reduce the TPL size. 102530129f2fSDavid Wu 1026f73329eeSSimon Glassconfig TPL_MPC8XXX_INIT_DDR_SUPPORT 1027f73329eeSSimon Glass bool "Support MPC8XXX DDR init" 1028f73329eeSSimon Glass help 1029f73329eeSSimon Glass Enable support for DDR-SDRAM on the MPC8XXX family within TPL. See 1030f73329eeSSimon Glass SPL_MPC8XXX_INIT_DDR_SUPPORT for details. 1031f73329eeSSimon Glass 1032f73329eeSSimon Glassconfig TPL_MMC_SUPPORT 1033f73329eeSSimon Glass bool "Support MMC" 1034226498b8STom Rini depends on MMC 1035f73329eeSSimon Glass help 1036f73329eeSSimon Glass Enable support for MMC within TPL. See SPL_MMC_SUPPORT for details. 1037f73329eeSSimon Glass 1038f73329eeSSimon Glassconfig TPL_NAND_SUPPORT 1039f73329eeSSimon Glass bool "Support NAND flash" 1040f73329eeSSimon Glass help 1041616bd09eSPhilipp Tomsich Enable support for NAND in TPL. See SPL_NAND_SUPPORT for details. 1042f73329eeSSimon Glass 1043f73329eeSSimon Glassconfig TPL_SERIAL_SUPPORT 1044f73329eeSSimon Glass bool "Support serial" 1045f73329eeSSimon Glass help 1046616bd09eSPhilipp Tomsich Enable support for serial in TPL. See SPL_SERIAL_SUPPORT for 1047f73329eeSSimon Glass details. 1048f73329eeSSimon Glass 1049f73329eeSSimon Glassconfig TPL_SPI_FLASH_SUPPORT 1050f73329eeSSimon Glass bool "Support SPI flash drivers" 1051f73329eeSSimon Glass help 1052616bd09eSPhilipp Tomsich Enable support for using SPI flash in TPL. See SPL_SPI_FLASH_SUPPORT 1053f73329eeSSimon Glass for details. 1054f73329eeSSimon Glass 1055f73329eeSSimon Glassconfig TPL_SPI_SUPPORT 1056f73329eeSSimon Glass bool "Support SPI drivers" 1057f73329eeSSimon Glass help 1058616bd09eSPhilipp Tomsich Enable support for using SPI in TPL. See SPL_SPI_SUPPORT for 1059f73329eeSSimon Glass details. 1060f73329eeSSimon Glass 1061226498b8STom Riniendif # TPL 1062226498b8STom Rini 1063226498b8STom Riniendif # SPL 106411bde1cdSSimon Glassendmenu 1065