Simon Glass | 11bde1c | 2016-09-13 07:05:23 -0600 | [diff] [blame] | 1 | menu "SPL / TPL" |
| 2 | |
Simon Glass | c2ae7d8 | 2016-09-12 23:18:22 -0600 | [diff] [blame] | 3 | config SUPPORT_SPL |
| 4 | bool |
| 5 | |
| 6 | config SUPPORT_TPL |
| 7 | bool |
| 8 | |
B, Ravi | 66928af | 2017-05-04 15:45:29 +0530 | [diff] [blame] | 9 | config SPL_DFU_NO_RESET |
| 10 | bool |
| 11 | |
Simon Glass | c2ae7d8 | 2016-09-12 23:18:22 -0600 | [diff] [blame] | 12 | config SPL |
| 13 | bool |
| 14 | depends on SUPPORT_SPL |
| 15 | prompt "Enable SPL" |
| 16 | help |
| 17 | If you want to build SPL as well as the normal image, say Y. |
| 18 | |
Tom Rini | 75670c8 | 2018-02-06 12:15:38 -0500 | [diff] [blame] | 19 | config SPL_FRAMEWORK |
| 20 | bool "Support SPL based upon the common SPL framework" |
| 21 | depends on SPL |
| 22 | default y |
| 23 | help |
| 24 | Enable the SPL framework under common/spl/. This framework |
| 25 | supports MMC, NAND and YMODEM and other methods loading of U-Boot |
| 26 | and the Linux Kernel. If unsure, say Y. |
| 27 | |
Simon Goldschmidt | 2577015 | 2019-05-24 22:07:04 +0200 | [diff] [blame] | 28 | config SPL_SIZE_LIMIT |
Tom Rini | 6d277fb | 2019-06-07 20:39:32 -0400 | [diff] [blame] | 29 | int "Maximum size of SPL image" |
Simon Goldschmidt | 2577015 | 2019-05-24 22:07:04 +0200 | [diff] [blame] | 30 | depends on SPL |
Fabio Estevam | 2361253 | 2019-06-08 14:56:44 -0300 | [diff] [blame] | 31 | default 69632 if ARCH_MX6 |
Simon Goldschmidt | 2577015 | 2019-05-24 22:07:04 +0200 | [diff] [blame] | 32 | default 0 |
| 33 | help |
| 34 | Specifies the maximum length of the U-Boot SPL image. |
| 35 | If this value is zero, it is ignored. |
| 36 | |
| 37 | config SPL_SIZE_LIMIT_SUBTRACT_GD |
| 38 | bool "SPL image size check: provide space for global data" |
| 39 | depends on SPL_SIZE_LIMIT > 0 |
| 40 | help |
| 41 | If enabled, aligned size of global data is reserved in |
| 42 | SPL_SIZE_LIMIT check to ensure such an image does not overflow SRAM |
| 43 | if SPL_SIZE_LIMIT describes the size of SRAM available for SPL when |
| 44 | pre-reloc global data is put into this SRAM, too. |
| 45 | |
| 46 | config SPL_SIZE_LIMIT_SUBTRACT_MALLOC |
| 47 | bool "SPL image size check: provide space for malloc() pool before relocation" |
| 48 | depends on SPL_SIZE_LIMIT > 0 |
| 49 | help |
| 50 | If enabled, SPL_SYS_MALLOC_F_LEN is reserved in SPL_SIZE_LIMIT check |
| 51 | to ensure such an image does not overflow SRAM if SPL_SIZE_LIMIT |
| 52 | describes the size of SRAM available for SPL when pre-reloc malloc |
| 53 | pool is put into this SRAM, too. |
| 54 | |
| 55 | config SPL_SIZE_LIMIT_PROVIDE_STACK |
| 56 | hex "SPL image size check: provide stack space before relocation" |
| 57 | depends on SPL_SIZE_LIMIT > 0 |
| 58 | default 0 |
| 59 | help |
| 60 | If set, this size is reserved in SPL_SIZE_LIMIT check to ensure such |
| 61 | an image does not overflow SRAM if SPL_SIZE_LIMIT describes the size |
| 62 | of SRAM available for SPL when the stack required before reolcation |
| 63 | uses this SRAM, too. |
| 64 | |
Tom Rini | db4080d | 2019-06-01 14:20:25 -0400 | [diff] [blame] | 65 | menu "PowerPC SPL Boot options" |
| 66 | depends on PPC && (SUPPORT_SPL && !SPL_FRAMEWORK) |
| 67 | |
| 68 | config SPL_NAND_BOOT |
| 69 | bool "Load SPL from NAND flash" |
| 70 | |
| 71 | config SPL_MMC_BOOT |
| 72 | bool "Load SPL from SD Card / eMMC" |
| 73 | |
| 74 | config SPL_SPI_BOOT |
| 75 | bool "Load SPL from SPI flash" |
| 76 | |
| 77 | config SPL_FSL_PBL |
| 78 | bool "Create SPL in Freescale PBI format" |
| 79 | help |
| 80 | Create boot binary having SPL binary in PBI format concatenated with |
| 81 | u-boot binary. |
| 82 | |
| 83 | endmenu |
| 84 | |
Simon Glass | b0edea3 | 2018-11-15 18:44:09 -0700 | [diff] [blame] | 85 | config HANDOFF |
| 86 | bool "Pass hand-off information from SPL to U-Boot proper" |
| 87 | depends on BLOBLIST |
| 88 | help |
| 89 | It is useful to be able to pass information from SPL to U-Boot |
| 90 | proper to preserve state that is known in SPL and is needed in U-Boot. |
| 91 | Enable this to locate the handoff information in U-Boot proper, early |
| 92 | in boot. It is available in gd->handoff. The state state is set up |
| 93 | in SPL (or TPL if that is being used). |
| 94 | |
Tom Rini | 226498b | 2017-05-22 19:21:57 +0000 | [diff] [blame] | 95 | if SPL |
| 96 | |
Simon Glass | b0edea3 | 2018-11-15 18:44:09 -0700 | [diff] [blame] | 97 | config SPL_HANDOFF |
| 98 | bool "Pass hand-off information from SPL to U-Boot proper" |
| 99 | depends on HANDOFF |
| 100 | default y |
| 101 | help |
| 102 | This option enables SPL to write handoff information. This can be |
| 103 | used to pass information like the size of SDRAM from SPL to U-Boot |
| 104 | proper. Also SPL can receive information from TPL in the same place |
| 105 | if that is enabled. |
| 106 | |
Philipp Tomsich | dd6fbcb | 2017-07-28 19:20:49 +0200 | [diff] [blame] | 107 | config SPL_LDSCRIPT |
| 108 | string "Linker script for the SPL stage" |
| 109 | default "arch/$(ARCH)/cpu/u-boot-spl.lds" |
Philipp Tomsich | dd6fbcb | 2017-07-28 19:20:49 +0200 | [diff] [blame] | 110 | help |
| 111 | The SPL stage will usually require a different linker-script |
| 112 | (as it runs from a different memory region) than the regular |
| 113 | U-Boot stage. Set this to the path of the linker-script to |
| 114 | be used for SPL. |
| 115 | |
Simon Goldschmidt | f89d613 | 2018-09-30 14:31:53 +0200 | [diff] [blame] | 116 | config SPL_TEXT_BASE |
| 117 | hex "SPL Text Base" |
| 118 | default ISW_ENTRY_ADDR if AM43XX || AM33XX || OMAP54XX || ARCH_KEYSTONE |
Andre Przywara | 9340d8f | 2019-05-27 01:45:11 +0100 | [diff] [blame^] | 119 | default 0x10060 if MACH_SUN50I || MACH_SUN50I_H5 || MACH_SUN9I |
| 120 | default 0x20060 if MACH_SUN50I_H6 |
| 121 | default 0x00060 if ARCH_SUNXI |
Simon Goldschmidt | f89d613 | 2018-09-30 14:31:53 +0200 | [diff] [blame] | 122 | default 0x0 |
| 123 | help |
| 124 | The address in memory that SPL will be running from. |
| 125 | |
Ley Foon Tan | 0680f1b | 2017-05-03 17:13:32 +0800 | [diff] [blame] | 126 | config SPL_BOARD_INIT |
Ley Foon Tan | 0680f1b | 2017-05-03 17:13:32 +0800 | [diff] [blame] | 127 | bool "Call board-specific initialization in SPL" |
| 128 | help |
| 129 | If this option is enabled, U-Boot will call the function |
| 130 | spl_board_init() from board_init_r(). This function should be |
| 131 | provided by the board. |
| 132 | |
Philipp Tomsich | 225d30b | 2017-06-22 23:38:36 +0200 | [diff] [blame] | 133 | config SPL_BOOTROM_SUPPORT |
| 134 | bool "Support returning to the BOOTROM" |
| 135 | help |
| 136 | Some platforms (e.g. the Rockchip RK3368) provide support in their |
| 137 | ROM for loading the next boot-stage after performing basic setup |
| 138 | from the SPL stage. |
| 139 | |
| 140 | Enable this option, to return to the BOOTROM through the |
| 141 | BOOT_DEVICE_BOOTROM (or fall-through to the next boot device in the |
| 142 | boot device list, if not implemented for a given board) |
| 143 | |
Lukasz Majewski | afa9609 | 2018-05-02 16:10:50 +0200 | [diff] [blame] | 144 | config SPL_BOOTCOUNT_LIMIT |
| 145 | bool "Support bootcount in SPL" |
| 146 | depends on SPL_ENV_SUPPORT |
| 147 | help |
| 148 | On some boards, which use 'falcon' mode, it is necessary to check |
| 149 | and increment the number of boot attempts. Such boards do not |
| 150 | use proper U-Boot for normal boot flow and hence needs those |
| 151 | adjustments to be done in the SPL. |
| 152 | |
Andrew F. Davis | 24eb39b | 2017-02-16 11:18:38 -0600 | [diff] [blame] | 153 | config SPL_RAW_IMAGE_SUPPORT |
| 154 | bool "Support SPL loading and booting of RAW images" |
Andrew F. Davis | 24eb39b | 2017-02-16 11:18:38 -0600 | [diff] [blame] | 155 | default n if (ARCH_MX6 && (SPL_MMC_SUPPORT || SPL_SATA_SUPPORT)) |
Andrew F. Davis | ae9b57b | 2017-02-16 11:18:40 -0600 | [diff] [blame] | 156 | default y if !TI_SECURE_DEVICE |
Andrew F. Davis | 24eb39b | 2017-02-16 11:18:38 -0600 | [diff] [blame] | 157 | help |
| 158 | SPL will support loading and booting a RAW image when this option |
| 159 | is y. If this is not set, SPL will move on to other available |
| 160 | boot media to find a suitable image. |
| 161 | |
Andrew F. Davis | 722a6b1 | 2017-02-16 11:18:39 -0600 | [diff] [blame] | 162 | config SPL_LEGACY_IMAGE_SUPPORT |
| 163 | bool "Support SPL loading and booting of Legacy images" |
Tom Rini | 11bd2fa | 2019-05-23 07:14:08 -0400 | [diff] [blame] | 164 | default y if !TI_SECURE_DEVICE && !SPL_LOAD_FIT |
Andrew F. Davis | 722a6b1 | 2017-02-16 11:18:39 -0600 | [diff] [blame] | 165 | help |
| 166 | SPL will support loading and booting Legacy images when this option |
| 167 | is y. If this is not set, SPL will move on to other available |
| 168 | boot media to find a suitable image. |
| 169 | |
Simon Goldschmidt | dae5c2d | 2019-02-10 21:34:37 +0100 | [diff] [blame] | 170 | config SPL_LEGACY_IMAGE_CRC_CHECK |
| 171 | bool "Check CRC of Legacy images" |
| 172 | depends on SPL_LEGACY_IMAGE_SUPPORT |
| 173 | select SPL_CRC32_SUPPORT |
| 174 | help |
| 175 | Enable this to check the CRC of Legacy images. While this increases |
| 176 | reliability, it affects both code size and boot duration. |
| 177 | If disabled, Legacy images are booted if the image magic and size |
| 178 | are correct, without further integrity checks. |
| 179 | |
Simon Glass | c2ae7d8 | 2016-09-12 23:18:22 -0600 | [diff] [blame] | 180 | config SPL_SYS_MALLOC_SIMPLE |
| 181 | bool |
Simon Glass | c2ae7d8 | 2016-09-12 23:18:22 -0600 | [diff] [blame] | 182 | prompt "Only use malloc_simple functions in the SPL" |
| 183 | help |
| 184 | Say Y here to only use the *_simple malloc functions from |
| 185 | malloc_simple.c, rather then using the versions from dlmalloc.c; |
| 186 | this will make the SPL binary smaller at the cost of more heap |
| 187 | usage as the *_simple malloc functions do not re-use free-ed mem. |
| 188 | |
Philipp Tomsich | d60b5f7 | 2017-06-30 18:57:25 +0200 | [diff] [blame] | 189 | config TPL_SYS_MALLOC_SIMPLE |
| 190 | bool |
| 191 | prompt "Only use malloc_simple functions in the TPL" |
| 192 | help |
| 193 | Say Y here to only use the *_simple malloc functions from |
| 194 | malloc_simple.c, rather then using the versions from dlmalloc.c; |
| 195 | this will make the TPL binary smaller at the cost of more heap |
| 196 | usage as the *_simple malloc functions do not re-use free-ed mem. |
| 197 | |
Simon Glass | c2ae7d8 | 2016-09-12 23:18:22 -0600 | [diff] [blame] | 198 | config SPL_STACK_R |
Simon Glass | c2ae7d8 | 2016-09-12 23:18:22 -0600 | [diff] [blame] | 199 | bool "Enable SDRAM location for SPL stack" |
| 200 | help |
| 201 | SPL starts off execution in SRAM and thus typically has only a small |
| 202 | stack available. Since SPL sets up DRAM while in its board_init_f() |
| 203 | function, it is possible for the stack to move there before |
| 204 | board_init_r() is reached. This option enables a special SDRAM |
| 205 | location for the SPL stack. U-Boot SPL switches to this after |
| 206 | board_init_f() completes, and before board_init_r() starts. |
| 207 | |
| 208 | config SPL_STACK_R_ADDR |
| 209 | depends on SPL_STACK_R |
| 210 | hex "SDRAM location for SPL stack" |
Tom Rini | ff6c312 | 2017-09-17 11:44:49 -0400 | [diff] [blame] | 211 | default 0x82000000 if ARCH_OMAP2PLUS |
Simon Glass | c2ae7d8 | 2016-09-12 23:18:22 -0600 | [diff] [blame] | 212 | help |
| 213 | Specify the address in SDRAM for the SPL stack. This will be set up |
| 214 | before board_init_r() is called. |
| 215 | |
| 216 | config SPL_STACK_R_MALLOC_SIMPLE_LEN |
| 217 | depends on SPL_STACK_R && SPL_SYS_MALLOC_SIMPLE |
| 218 | hex "Size of malloc_simple heap after switching to DRAM SPL stack" |
| 219 | default 0x100000 |
| 220 | help |
| 221 | Specify the amount of the stack to use as memory pool for |
| 222 | malloc_simple after switching the stack to DRAM. This may be set |
| 223 | to give board_init_r() a larger heap then the initial heap in |
| 224 | SRAM which is limited to SYS_MALLOC_F_LEN bytes. |
| 225 | |
| 226 | config SPL_SEPARATE_BSS |
Simon Glass | c2ae7d8 | 2016-09-12 23:18:22 -0600 | [diff] [blame] | 227 | bool "BSS section is in a different memory region from text" |
| 228 | help |
| 229 | Some platforms need a large BSS region in SPL and can provide this |
| 230 | because RAM is already set up. In this case BSS can be moved to RAM. |
| 231 | This option should then be enabled so that the correct device tree |
| 232 | location is used. Normally we put the device tree at the end of BSS |
| 233 | but with this option enabled, it goes at _image_binary_end. |
| 234 | |
Simon Glass | aedc08b | 2018-11-15 18:43:57 -0700 | [diff] [blame] | 235 | config SPL_BANNER_PRINT |
| 236 | bool "Enable output of the SPL banner 'U-Boot SPL ...'" |
| 237 | default y |
| 238 | help |
| 239 | If this option is enabled, SPL will print the banner with version |
| 240 | info. Disabling this option could be useful to reduce TPL boot time |
| 241 | (e.g. approx. 6 ms faster, when output on i.MX6 with 115200 baud). |
| 242 | |
| 243 | config TPL_BANNER_PRINT |
| 244 | bool "Enable output of the TPL banner 'U-Boot TPL ...'" |
| 245 | default y |
Anatolij Gustschin | 0292bc0 | 2018-01-25 18:45:22 +0100 | [diff] [blame] | 246 | help |
| 247 | If this option is enabled, SPL will not print the banner with version |
Simon Glass | aedc08b | 2018-11-15 18:43:57 -0700 | [diff] [blame] | 248 | info. Disabling this option could be useful to reduce SPL boot time |
| 249 | (e.g. approx. 6 ms faster, when output on i.MX6 with 115200 baud). |
Anatolij Gustschin | 0292bc0 | 2018-01-25 18:45:22 +0100 | [diff] [blame] | 250 | |
Simon Glass | a807ab3 | 2016-09-24 18:19:56 -0600 | [diff] [blame] | 251 | config SPL_DISPLAY_PRINT |
Simon Glass | a807ab3 | 2016-09-24 18:19:56 -0600 | [diff] [blame] | 252 | bool "Display a board-specific message in SPL" |
| 253 | help |
| 254 | If this option is enabled, U-Boot will call the function |
| 255 | spl_display_print() immediately after displaying the SPL console |
| 256 | banner ("U-Boot SPL ..."). This function should be provided by |
| 257 | the board. |
| 258 | |
Semen Protsenko | 38fed8a | 2016-11-16 19:19:05 +0200 | [diff] [blame] | 259 | config SYS_MMCSD_RAW_MODE_U_BOOT_USE_SECTOR |
| 260 | bool "MMC raw mode: by sector" |
Fabio Estevam | 1da1938 | 2018-06-11 15:08:05 -0300 | [diff] [blame] | 261 | default y if ARCH_SUNXI || ARCH_DAVINCI || ARCH_UNIPHIER || \ |
| 262 | ARCH_MX6 || ARCH_MX7 || \ |
Semen Protsenko | 38fed8a | 2016-11-16 19:19:05 +0200 | [diff] [blame] | 263 | ARCH_ROCKCHIP || ARCH_MVEBU || ARCH_SOCFPGA || \ |
| 264 | ARCH_AT91 || ARCH_ZYNQ || ARCH_KEYSTONE || OMAP34XX || \ |
| 265 | OMAP44XX || OMAP54XX || AM33XX || AM43XX |
| 266 | help |
| 267 | Use sector number for specifying U-Boot location on MMC/SD in |
| 268 | raw mode. |
| 269 | |
| 270 | config SYS_MMCSD_RAW_MODE_U_BOOT_SECTOR |
| 271 | hex "Address on the MMC to load U-Boot from" |
Tom Rini | 226498b | 2017-05-22 19:21:57 +0000 | [diff] [blame] | 272 | depends on SYS_MMCSD_RAW_MODE_U_BOOT_USE_SECTOR |
Semen Protsenko | 38fed8a | 2016-11-16 19:19:05 +0200 | [diff] [blame] | 273 | default 0x50 if ARCH_SUNXI |
| 274 | default 0x75 if ARCH_DAVINCI |
Fabio Estevam | 1da1938 | 2018-06-11 15:08:05 -0300 | [diff] [blame] | 275 | default 0x8a if ARCH_MX6 || ARCH_MX7 |
Kever Yang | 8f4d62b | 2017-11-02 15:16:34 +0800 | [diff] [blame] | 276 | default 0x100 if ARCH_UNIPHIER |
Semen Protsenko | 38fed8a | 2016-11-16 19:19:05 +0200 | [diff] [blame] | 277 | default 0x140 if ARCH_MVEBU |
| 278 | default 0x200 if ARCH_SOCFPGA || ARCH_AT91 |
| 279 | default 0x300 if ARCH_ZYNQ || ARCH_KEYSTONE || OMAP34XX || OMAP44XX || \ |
Lokesh Vutla | 586bde9 | 2018-08-27 15:57:08 +0530 | [diff] [blame] | 280 | OMAP54XX || AM33XX || AM43XX || ARCH_K3 |
Kever Yang | 8f4d62b | 2017-11-02 15:16:34 +0800 | [diff] [blame] | 281 | default 0x4000 if ARCH_ROCKCHIP |
Semen Protsenko | 38fed8a | 2016-11-16 19:19:05 +0200 | [diff] [blame] | 282 | help |
| 283 | Address on the MMC to load U-Boot from, when the MMC is being used |
| 284 | in raw mode. Units: MMC sectors (1 sector = 512 bytes). |
| 285 | |
Dalon Westergreen | 949123e | 2017-02-10 17:15:35 -0800 | [diff] [blame] | 286 | config SYS_MMCSD_RAW_MODE_U_BOOT_USE_PARTITION |
| 287 | bool "MMC Raw mode: by partition" |
Dalon Westergreen | 949123e | 2017-02-10 17:15:35 -0800 | [diff] [blame] | 288 | help |
| 289 | Use a partition for loading U-Boot when using MMC/SD in raw mode. |
| 290 | |
| 291 | config SYS_MMCSD_RAW_MODE_U_BOOT_PARTITION |
| 292 | hex "Partition to use to load U-Boot from" |
Tom Rini | 226498b | 2017-05-22 19:21:57 +0000 | [diff] [blame] | 293 | depends on SYS_MMCSD_RAW_MODE_U_BOOT_USE_PARTITION |
Dalon Westergreen | 949123e | 2017-02-10 17:15:35 -0800 | [diff] [blame] | 294 | default 1 |
| 295 | help |
| 296 | Partition on the MMC to load U-Boot from when the MMC is being |
| 297 | used in raw mode |
| 298 | |
Dalon Westergreen | f0fb4fa | 2017-02-10 17:15:34 -0800 | [diff] [blame] | 299 | config SYS_MMCSD_RAW_MODE_U_BOOT_USE_PARTITION_TYPE |
| 300 | bool "MMC raw mode: by partition type" |
Tom Rini | 226498b | 2017-05-22 19:21:57 +0000 | [diff] [blame] | 301 | depends on DOS_PARTITION && SYS_MMCSD_RAW_MODE_U_BOOT_USE_PARTITION |
Dalon Westergreen | f0fb4fa | 2017-02-10 17:15:34 -0800 | [diff] [blame] | 302 | help |
| 303 | Use partition type for specifying U-Boot partition on MMC/SD in |
| 304 | raw mode. U-Boot will be loaded from the first partition of this |
| 305 | type to be found. |
| 306 | |
| 307 | config SYS_MMCSD_RAW_MODE_U_BOOT_PARTITION_TYPE |
| 308 | hex "Partition Type on the MMC to load U-Boot from" |
Tom Rini | 226498b | 2017-05-22 19:21:57 +0000 | [diff] [blame] | 309 | depends on SYS_MMCSD_RAW_MODE_U_BOOT_USE_PARTITION_TYPE |
Dalon Westergreen | f0fb4fa | 2017-02-10 17:15:34 -0800 | [diff] [blame] | 310 | help |
| 311 | Partition Type on the MMC to load U-Boot from, when the MMC is being |
| 312 | used in raw mode. |
| 313 | |
Simon Glass | 11bde1c | 2016-09-13 07:05:23 -0600 | [diff] [blame] | 314 | config SPL_CRC32_SUPPORT |
| 315 | bool "Support CRC32" |
Simon Goldschmidt | dae5c2d | 2019-02-10 21:34:37 +0100 | [diff] [blame] | 316 | default y if SPL_LEGACY_IMAGE_SUPPORT |
Simon Glass | 11bde1c | 2016-09-13 07:05:23 -0600 | [diff] [blame] | 317 | help |
Simon Goldschmidt | dae5c2d | 2019-02-10 21:34:37 +0100 | [diff] [blame] | 318 | Enable this to support CRC32 in uImages or FIT images within SPL. |
| 319 | This is a 32-bit checksum value that can be used to verify images. |
| 320 | For FIT images, this is the least secure type of checksum, suitable |
| 321 | for detected accidental image corruption. For secure applications you |
| 322 | should consider SHA1 or SHA256. |
Simon Glass | 11bde1c | 2016-09-13 07:05:23 -0600 | [diff] [blame] | 323 | |
| 324 | config SPL_MD5_SUPPORT |
| 325 | bool "Support MD5" |
| 326 | depends on SPL_FIT |
| 327 | help |
| 328 | Enable this to support MD5 in FIT images within SPL. An MD5 |
| 329 | checksum is a 128-bit hash value used to check that the image |
| 330 | contents have not been corrupted. Note that MD5 is not considered |
| 331 | secure as it is possible (with a brute-force attack) to adjust the |
| 332 | image while still retaining the same MD5 hash value. For secure |
| 333 | applications where images may be changed maliciously, you should |
| 334 | consider SHA1 or SHA256. |
| 335 | |
| 336 | config SPL_SHA1_SUPPORT |
| 337 | bool "Support SHA1" |
| 338 | depends on SPL_FIT |
Tom Rini | 089df18 | 2017-05-15 12:17:49 -0400 | [diff] [blame] | 339 | select SHA1 |
Simon Glass | 11bde1c | 2016-09-13 07:05:23 -0600 | [diff] [blame] | 340 | help |
| 341 | Enable this to support SHA1 in FIT images within SPL. A SHA1 |
| 342 | checksum is a 160-bit (20-byte) hash value used to check that the |
| 343 | image contents have not been corrupted or maliciously altered. |
| 344 | While SHA1 is fairly secure it is coming to the end of its life |
Vagrant Cascadian | 048a92e | 2019-05-03 14:28:37 -0800 | [diff] [blame] | 345 | due to the expanding computing power available to brute-force |
Simon Glass | 11bde1c | 2016-09-13 07:05:23 -0600 | [diff] [blame] | 346 | attacks. For more security, consider SHA256. |
| 347 | |
| 348 | config SPL_SHA256_SUPPORT |
| 349 | bool "Support SHA256" |
| 350 | depends on SPL_FIT |
Tom Rini | 089df18 | 2017-05-15 12:17:49 -0400 | [diff] [blame] | 351 | select SHA256 |
Simon Glass | 11bde1c | 2016-09-13 07:05:23 -0600 | [diff] [blame] | 352 | help |
| 353 | Enable this to support SHA256 in FIT images within SPL. A SHA256 |
| 354 | checksum is a 256-bit (32-byte) hash value used to check that the |
| 355 | image contents have not been corrupted. SHA256 is recommended for |
| 356 | use in secure applications since (as at 2016) there is no known |
| 357 | feasible attack that could produce a 'collision' with differing |
| 358 | input data. Use this for the highest security. Note that only the |
| 359 | SHA256 variant is supported: SHA512 and others are not currently |
| 360 | supported in U-Boot. |
| 361 | |
Philipp Tomsich | 337bbb6 | 2017-11-24 13:26:03 +0100 | [diff] [blame] | 362 | config SPL_FIT_IMAGE_TINY |
| 363 | bool "Remove functionality from SPL FIT loading to reduce size" |
| 364 | depends on SPL_FIT |
Icenowy Zheng | 6f796a9 | 2018-07-21 16:20:31 +0800 | [diff] [blame] | 365 | default y if MACH_SUN50I || MACH_SUN50I_H5 || MACH_SUN50I_H6 |
Ye Li | f6282cd | 2018-11-20 10:19:15 +0000 | [diff] [blame] | 366 | default y if ARCH_IMX8M |
Philipp Tomsich | 337bbb6 | 2017-11-24 13:26:03 +0100 | [diff] [blame] | 367 | help |
| 368 | Enable this to reduce the size of the FIT image loading code |
| 369 | in SPL, if space for the SPL binary is very tight. |
| 370 | |
| 371 | This removes the detection of image types (which forces the |
| 372 | first image to be treated as having a U-Boot style calling |
| 373 | convention) and skips the recording of each loaded payload |
| 374 | (i.e. loadable) into the FDT (modifying the loaded FDT to |
| 375 | ensure this information is available to the next image |
| 376 | invoked). |
| 377 | |
Simon Glass | 5e148df | 2017-01-16 07:03:29 -0700 | [diff] [blame] | 378 | config SPL_CPU_SUPPORT |
| 379 | bool "Support CPU drivers" |
Simon Glass | 5e148df | 2017-01-16 07:03:29 -0700 | [diff] [blame] | 380 | help |
| 381 | Enable this to support CPU drivers in SPL. These drivers can set |
| 382 | up CPUs and provide information about them such as the model and |
| 383 | name. This can be useful in SPL since setting up the CPUs earlier |
| 384 | may improve boot performance. Enable this option to build the |
| 385 | drivers in drivers/cpu as part of an SPL build. |
| 386 | |
Simon Glass | 11bde1c | 2016-09-13 07:05:23 -0600 | [diff] [blame] | 387 | config SPL_CRYPTO_SUPPORT |
| 388 | bool "Support crypto drivers" |
Simon Glass | 11bde1c | 2016-09-13 07:05:23 -0600 | [diff] [blame] | 389 | help |
| 390 | Enable crypto drivers in SPL. These drivers can be used to |
| 391 | accelerate secure boot processing in secure applications. Enable |
| 392 | this option to build the drivers in drivers/crypto as part of an |
| 393 | SPL build. |
| 394 | |
| 395 | config SPL_HASH_SUPPORT |
| 396 | bool "Support hashing drivers" |
Tom Rini | 089df18 | 2017-05-15 12:17:49 -0400 | [diff] [blame] | 397 | select SHA1 |
| 398 | select SHA256 |
Simon Glass | 11bde1c | 2016-09-13 07:05:23 -0600 | [diff] [blame] | 399 | help |
| 400 | Enable hashing drivers in SPL. These drivers can be used to |
| 401 | accelerate secure boot processing in secure applications. Enable |
| 402 | this option to build system-specific drivers for hash acceleration |
| 403 | as part of an SPL build. |
| 404 | |
Simon Glass | 2d424eb | 2018-11-15 18:43:55 -0700 | [diff] [blame] | 405 | config TPL_HASH_SUPPORT |
| 406 | bool "Support hashing drivers in TPL" |
| 407 | select SHA1 |
| 408 | select SHA256 |
| 409 | help |
| 410 | Enable hashing drivers in SPL. These drivers can be used to |
| 411 | accelerate secure boot processing in secure applications. Enable |
| 412 | this option to build system-specific drivers for hash acceleration |
| 413 | as part of an SPL build. |
| 414 | |
Simon Glass | 11bde1c | 2016-09-13 07:05:23 -0600 | [diff] [blame] | 415 | config SPL_DMA_SUPPORT |
| 416 | bool "Support DMA drivers" |
Simon Glass | 11bde1c | 2016-09-13 07:05:23 -0600 | [diff] [blame] | 417 | help |
| 418 | Enable DMA (direct-memory-access) drivers in SPL. These drivers |
| 419 | can be used to handle memory-to-peripheral data transfer without |
| 420 | the CPU moving the data. Enable this option to build the drivers |
| 421 | in drivers/dma as part of an SPL build. |
| 422 | |
| 423 | config SPL_DRIVERS_MISC_SUPPORT |
| 424 | bool "Support misc drivers" |
Simon Glass | 11bde1c | 2016-09-13 07:05:23 -0600 | [diff] [blame] | 425 | help |
| 426 | Enable miscellaneous drivers in SPL. These drivers perform various |
| 427 | tasks that don't fall nicely into other categories, Enable this |
| 428 | option to build the drivers in drivers/misc as part of an SPL |
| 429 | build, for those that support building in SPL (not all drivers do). |
| 430 | |
| 431 | config SPL_ENV_SUPPORT |
| 432 | bool "Support an environment" |
Simon Glass | 11bde1c | 2016-09-13 07:05:23 -0600 | [diff] [blame] | 433 | help |
| 434 | Enable environment support in SPL. The U-Boot environment provides |
| 435 | a number of settings (essentially name/value pairs) which can |
| 436 | control many aspects of U-Boot's operation. Normally this is not |
| 437 | needed in SPL as it has a much simpler task with less |
| 438 | configuration. But some boards use this to support 'Falcon' boot |
| 439 | on EXT2 and FAT, where SPL boots directly into Linux without |
Simon Glass | 00caae6 | 2017-08-03 12:22:12 -0600 | [diff] [blame] | 440 | starting U-Boot first. Enabling this option will make env_get() |
Simon Glass | 382bee5 | 2017-08-03 12:22:09 -0600 | [diff] [blame] | 441 | and env_set() available in SPL. |
Simon Glass | 11bde1c | 2016-09-13 07:05:23 -0600 | [diff] [blame] | 442 | |
B, Ravi | d2d9bdf | 2016-09-28 14:46:18 +0530 | [diff] [blame] | 443 | config SPL_SAVEENV |
| 444 | bool "Support save environment" |
Tom Rini | 226498b | 2017-05-22 19:21:57 +0000 | [diff] [blame] | 445 | depends on SPL_ENV_SUPPORT |
Jean-Jacques Hiblot | d6400c3 | 2018-01-04 15:23:32 +0100 | [diff] [blame] | 446 | select SPL_MMC_WRITE if ENV_IS_IN_MMC |
B, Ravi | d2d9bdf | 2016-09-28 14:46:18 +0530 | [diff] [blame] | 447 | help |
| 448 | Enable save environment support in SPL after setenv. By default |
| 449 | the saveenv option is not provided in SPL, but some boards need |
| 450 | this support in 'Falcon' boot, where SPL need to boot from |
| 451 | different images based on environment variable set by OS. For |
| 452 | example OS may set "reboot_image" environment variable to |
| 453 | "recovery" inorder to boot recovery image by SPL. The SPL read |
| 454 | "reboot_image" and act accordingly and change the reboot_image |
Shyam Saini | 919d25c | 2018-06-07 19:47:19 +0530 | [diff] [blame] | 455 | to default mode using setenv and save the environment. |
B, Ravi | d2d9bdf | 2016-09-28 14:46:18 +0530 | [diff] [blame] | 456 | |
Simon Glass | 11bde1c | 2016-09-13 07:05:23 -0600 | [diff] [blame] | 457 | config SPL_ETH_SUPPORT |
| 458 | bool "Support Ethernet" |
| 459 | depends on SPL_ENV_SUPPORT |
| 460 | help |
| 461 | Enable access to the network subsystem and associated Ethernet |
| 462 | drivers in SPL. This permits SPL to load U-Boot over an Ethernet |
| 463 | link rather than from an on-board peripheral. Environment support |
| 464 | is required since the network stack uses a number of environment |
| 465 | variables. See also SPL_NET_SUPPORT. |
| 466 | |
Tien Fong Chee | f4b4092 | 2019-01-23 14:20:05 +0800 | [diff] [blame] | 467 | config SPL_FS_EXT4 |
Simon Glass | 11bde1c | 2016-09-13 07:05:23 -0600 | [diff] [blame] | 468 | bool "Support EXT filesystems" |
Simon Glass | 11bde1c | 2016-09-13 07:05:23 -0600 | [diff] [blame] | 469 | help |
| 470 | Enable support for EXT2/3/4 filesystems with SPL. This permits |
| 471 | U-Boot (or Linux in Falcon mode) to be loaded from an EXT |
| 472 | filesystem from within SPL. Support for the underlying block |
| 473 | device (e.g. MMC or USB) must be enabled separately. |
| 474 | |
Tien Fong Chee | 0c3a9ed | 2019-01-23 14:20:03 +0800 | [diff] [blame] | 475 | config SPL_FS_FAT |
Simon Glass | 11bde1c | 2016-09-13 07:05:23 -0600 | [diff] [blame] | 476 | bool "Support FAT filesystems" |
Sekhar Nori | eedfb89 | 2017-06-02 17:53:59 +0530 | [diff] [blame] | 477 | select FS_FAT |
Simon Glass | 11bde1c | 2016-09-13 07:05:23 -0600 | [diff] [blame] | 478 | help |
| 479 | Enable support for FAT and VFAT filesystems with SPL. This |
| 480 | permits U-Boot (or Linux in Falcon mode) to be loaded from a FAT |
| 481 | filesystem from within SPL. Support for the underlying block |
| 482 | device (e.g. MMC or USB) must be enabled separately. |
| 483 | |
Tien Fong Chee | d8c3ea9 | 2019-01-23 14:20:04 +0800 | [diff] [blame] | 484 | config SPL_FAT_WRITE |
| 485 | bool "Support write for FAT filesystems" |
| 486 | help |
| 487 | Enable write support for FAT and VFAT filesystems with SPL. |
| 488 | Support for the underlying block device (e.g. MMC or USB) must be |
| 489 | enabled separately. |
| 490 | |
Simon Glass | 11bde1c | 2016-09-13 07:05:23 -0600 | [diff] [blame] | 491 | config SPL_FPGA_SUPPORT |
| 492 | bool "Support FPGAs" |
Simon Glass | 11bde1c | 2016-09-13 07:05:23 -0600 | [diff] [blame] | 493 | help |
| 494 | Enable support for FPGAs in SPL. Field-programmable Gate Arrays |
| 495 | provide software-configurable hardware which is typically used to |
| 496 | implement peripherals (such as UARTs, LCD displays, MMC) or |
| 497 | accelerate custom processing functions, such as image processing |
| 498 | or machine learning. Sometimes it is useful to program the FPGA |
| 499 | as early as possible during boot, and this option can enable that |
| 500 | within SPL. |
| 501 | |
| 502 | config SPL_GPIO_SUPPORT |
Simon Glass | 2d424eb | 2018-11-15 18:43:55 -0700 | [diff] [blame] | 503 | bool "Support GPIO in SPL" |
Simon Glass | 11bde1c | 2016-09-13 07:05:23 -0600 | [diff] [blame] | 504 | help |
| 505 | Enable support for GPIOs (General-purpose Input/Output) in SPL. |
| 506 | GPIOs allow U-Boot to read the state of an input line (high or |
| 507 | low) and set the state of an output line. This can be used to |
| 508 | drive LEDs, control power to various system parts and read user |
| 509 | input. GPIOs can be useful in SPL to enable a 'sign-of-life' LED, |
| 510 | for example. Enable this option to build the drivers in |
| 511 | drivers/gpio as part of an SPL build. |
| 512 | |
| 513 | config SPL_I2C_SUPPORT |
| 514 | bool "Support I2C" |
Simon Glass | 11bde1c | 2016-09-13 07:05:23 -0600 | [diff] [blame] | 515 | help |
| 516 | Enable support for the I2C (Inter-Integrated Circuit) bus in SPL. |
| 517 | I2C works with a clock and data line which can be driven by a |
| 518 | one or more masters or slaves. It is a fairly complex bus but is |
| 519 | widely used as it only needs two lines for communication. Speeds of |
| 520 | 400kbps are typical but up to 3.4Mbps is supported by some |
| 521 | hardware. I2C can be useful in SPL to configure power management |
| 522 | ICs (PMICs) before raising the CPU clock speed, for example. |
| 523 | Enable this option to build the drivers in drivers/i2c as part of |
| 524 | an SPL build. |
| 525 | |
| 526 | config SPL_LIBCOMMON_SUPPORT |
| 527 | bool "Support common libraries" |
Simon Glass | 11bde1c | 2016-09-13 07:05:23 -0600 | [diff] [blame] | 528 | help |
| 529 | Enable support for common U-Boot libraries within SPL. These |
| 530 | libraries include common code to deal with U-Boot images, |
| 531 | environment and USB, for example. This option is enabled on many |
| 532 | boards. Enable this option to build the code in common/ as part of |
| 533 | an SPL build. |
| 534 | |
| 535 | config SPL_LIBDISK_SUPPORT |
Simon Goldschmidt | 0041670 | 2018-08-16 09:44:55 +0200 | [diff] [blame] | 536 | bool "Support disk partitions" |
Tom Rini | 91ff686 | 2018-12-05 08:23:38 -0500 | [diff] [blame] | 537 | select PARTITIONS |
Simon Glass | 11bde1c | 2016-09-13 07:05:23 -0600 | [diff] [blame] | 538 | help |
| 539 | Enable support for disk partitions within SPL. 'Disk' is something |
| 540 | of a misnomer as it includes non-spinning media such as flash (as |
| 541 | used in MMC and USB sticks). Partitions provide a way for a disk |
| 542 | to be split up into separate regions, with a partition table placed |
| 543 | at the start or end which describes the location and size of each |
| 544 | 'partition'. These partitions are typically uses as individual block |
| 545 | devices, typically with an EXT2 or FAT filesystem in each. This |
| 546 | option enables whatever partition support has been enabled in |
| 547 | U-Boot to also be used in SPL. It brings in the code in disk/. |
| 548 | |
| 549 | config SPL_LIBGENERIC_SUPPORT |
| 550 | bool "Support generic libraries" |
Simon Glass | 11bde1c | 2016-09-13 07:05:23 -0600 | [diff] [blame] | 551 | help |
| 552 | Enable support for generic U-Boot libraries within SPL. These |
| 553 | libraries include generic code to deal with device tree, hashing, |
| 554 | printf(), compression and the like. This option is enabled on many |
| 555 | boards. Enable this option to build the code in lib/ as part of an |
| 556 | SPL build. |
| 557 | |
Lokesh Vutla | 8802741 | 2018-08-27 15:57:49 +0530 | [diff] [blame] | 558 | config SPL_DM_MAILBOX |
| 559 | bool "Support Mailbox" |
| 560 | help |
| 561 | Enable support for Mailbox within SPL. This enable the inter |
| 562 | processor communication protocols tobe used within SPL. Enable |
| 563 | this option to build the drivers in drivers/mailbox as part of |
| 564 | SPL build. |
| 565 | |
Simon Glass | 11bde1c | 2016-09-13 07:05:23 -0600 | [diff] [blame] | 566 | config SPL_MMC_SUPPORT |
| 567 | bool "Support MMC" |
Tom Rini | 226498b | 2017-05-22 19:21:57 +0000 | [diff] [blame] | 568 | depends on MMC |
Tom Rini | 91ff686 | 2018-12-05 08:23:38 -0500 | [diff] [blame] | 569 | select HAVE_BLOCK_DEVICE |
Simon Glass | 11bde1c | 2016-09-13 07:05:23 -0600 | [diff] [blame] | 570 | help |
| 571 | Enable support for MMC (Multimedia Card) within SPL. This enables |
| 572 | the MMC protocol implementation and allows any enabled drivers to |
| 573 | be used within SPL. MMC can be used with or without disk partition |
| 574 | support depending on the application (SPL_LIBDISK_SUPPORT). Enable |
| 575 | this option to build the drivers in drivers/mmc as part of an SPL |
| 576 | build. |
| 577 | |
Ezequiel Garcia | bf7c01d | 2019-05-25 19:25:21 -0300 | [diff] [blame] | 578 | config SPL_MMC_TINY |
| 579 | bool "Tiny MMC framework in SPL" |
| 580 | depends on SPL_MMC_SUPPORT |
| 581 | default n |
| 582 | help |
| 583 | Enable MMC framework tinification support. This option is useful if |
| 584 | if your SPL is extremely size constrained. Heed the warning, enable |
| 585 | this option if and only if you know exactly what you are doing, if |
| 586 | you are reading this help text, you most likely have no idea :-) |
| 587 | |
| 588 | The MMC framework is reduced to bare minimum to be useful. No malloc |
| 589 | support is needed for the MMC framework operation with this option |
| 590 | enabled. The framework supports exactly one MMC device and exactly |
| 591 | one MMC driver. The MMC driver can be adjusted to avoid any malloc |
| 592 | operations too, which can remove the need for malloc support in SPL |
| 593 | and thus further reduce footprint. |
| 594 | |
Jean-Jacques Hiblot | d6400c3 | 2018-01-04 15:23:32 +0100 | [diff] [blame] | 595 | config SPL_MMC_WRITE |
| 596 | bool "MMC/SD/SDIO card support for write operations in SPL" |
| 597 | depends on SPL_MMC_SUPPORT |
| 598 | default n |
| 599 | help |
| 600 | Enable write access to MMC and SD Cards in SPL |
| 601 | |
| 602 | |
Simon Glass | 11bde1c | 2016-09-13 07:05:23 -0600 | [diff] [blame] | 603 | config SPL_MPC8XXX_INIT_DDR_SUPPORT |
| 604 | bool "Support MPC8XXX DDR init" |
Simon Glass | 11bde1c | 2016-09-13 07:05:23 -0600 | [diff] [blame] | 605 | help |
| 606 | Enable support for DDR-SDRAM (double-data-rate synchronous dynamic |
| 607 | random-access memory) on the MPC8XXX family within SPL. This |
| 608 | allows DRAM to be set up before loading U-Boot into that DRAM, |
| 609 | where it can run. |
| 610 | |
| 611 | config SPL_MTD_SUPPORT |
| 612 | bool "Support MTD drivers" |
Simon Glass | 11bde1c | 2016-09-13 07:05:23 -0600 | [diff] [blame] | 613 | help |
| 614 | Enable support for MTD (Memory Technology Device) within SPL. MTD |
| 615 | provides a block interface over raw NAND and can also be used with |
| 616 | SPI flash. This allows SPL to load U-Boot from supported MTD |
| 617 | devices. See SPL_NAND_SUPPORT and SPL_ONENAND_SUPPORT for how |
| 618 | to enable specific MTD drivers. |
| 619 | |
| 620 | config SPL_MUSB_NEW_SUPPORT |
| 621 | bool "Support new Mentor Graphics USB" |
Simon Glass | 11bde1c | 2016-09-13 07:05:23 -0600 | [diff] [blame] | 622 | help |
| 623 | Enable support for Mentor Graphics USB in SPL. This is a new |
| 624 | driver used by some boards. Enable this option to build |
| 625 | the drivers in drivers/usb/musb-new as part of an SPL build. The |
| 626 | old drivers are in drivers/usb/musb. |
| 627 | |
| 628 | config SPL_NAND_SUPPORT |
| 629 | bool "Support NAND flash" |
Simon Glass | 11bde1c | 2016-09-13 07:05:23 -0600 | [diff] [blame] | 630 | help |
| 631 | Enable support for NAND (Negative AND) flash in SPL. NAND flash |
| 632 | can be used to allow SPL to load U-Boot from supported devices. |
Miquel Raynal | a430fa0 | 2018-08-16 17:30:07 +0200 | [diff] [blame] | 633 | This enables the drivers in drivers/mtd/nand/raw as part of an SPL |
Simon Glass | 11bde1c | 2016-09-13 07:05:23 -0600 | [diff] [blame] | 634 | build. |
| 635 | |
Markus Klotzbuecher | c67c349 | 2019-05-15 15:15:57 +0200 | [diff] [blame] | 636 | config SPL_UBI |
| 637 | bool "Support UBI" |
| 638 | help |
| 639 | Enable support for loading payloads from UBI. See |
| 640 | README.ubispl for more info. |
| 641 | |
| 642 | if SPL_UBI |
Hamish Guthrie | 6ea31cc | 2019-05-15 15:15:59 +0200 | [diff] [blame] | 643 | config SPL_UBI_LOAD_BY_VOLNAME |
| 644 | bool "Support loading volumes by name" |
| 645 | help |
| 646 | This enables support for loading UBI volumes by name. When this |
| 647 | is set, CONFIG_SPL_UBI_LOAD_MONITOR_VOLNAME can be used to |
| 648 | configure the volume name from which to load U-Boot. |
| 649 | |
Markus Klotzbuecher | c67c349 | 2019-05-15 15:15:57 +0200 | [diff] [blame] | 650 | config SPL_UBI_MAX_VOL_LEBS |
| 651 | int "Maximum number of LEBs per volume" |
| 652 | depends on SPL_UBI |
| 653 | help |
| 654 | The maximum number of logical eraseblocks which a static volume |
| 655 | to load can contain. Used for sizing the scan data structure. |
| 656 | |
| 657 | config SPL_UBI_MAX_PEB_SIZE |
| 658 | int "Maximum PEB size" |
| 659 | depends on SPL_UBI |
| 660 | help |
| 661 | The maximum physical erase block size. |
| 662 | |
| 663 | config SPL_UBI_MAX_PEBS |
| 664 | int "Maximum number of PEBs" |
| 665 | depends on SPL_UBI |
| 666 | help |
| 667 | The maximum physical erase block size. If not overridden by |
| 668 | board code, this value will be used as the actual number of PEBs. |
| 669 | |
| 670 | config SPL_UBI_PEB_OFFSET |
| 671 | int "Offset to first UBI PEB" |
| 672 | depends on SPL_UBI |
| 673 | help |
| 674 | The offset in number of PEBs from the start of flash to the first |
| 675 | PEB part of the UBI image. |
| 676 | |
| 677 | config SPL_UBI_VID_OFFSET |
| 678 | int "Offset to VID header" |
| 679 | depends on SPL_UBI |
| 680 | |
| 681 | config SPL_UBI_LEB_START |
| 682 | int "Offset to LEB in PEB" |
| 683 | depends on SPL_UBI |
| 684 | help |
| 685 | The offset in bytes to the LEB within a PEB. |
| 686 | |
| 687 | config SPL_UBI_INFO_ADDR |
| 688 | hex "Address to place UBI scan info" |
| 689 | depends on SPL_UBI |
| 690 | help |
| 691 | Address for ubispl to place the scan info. Read README.ubispl to |
| 692 | determine the required size |
| 693 | |
| 694 | config SPL_UBI_VOL_IDS |
| 695 | int "Maximum volume id" |
| 696 | depends on SPL_UBI |
| 697 | help |
| 698 | The maximum volume id which can be loaded. Used for sizing the |
| 699 | scan data structure. |
| 700 | |
| 701 | config SPL_UBI_LOAD_MONITOR_ID |
| 702 | int "id of U-Boot volume" |
| 703 | depends on SPL_UBI |
| 704 | help |
| 705 | The UBI volume id from which to load U-Boot |
| 706 | |
Hamish Guthrie | 6ea31cc | 2019-05-15 15:15:59 +0200 | [diff] [blame] | 707 | config SPL_UBI_LOAD_MONITOR_VOLNAME |
| 708 | string "volume name of U-Boot volume" |
| 709 | depends on SPL_UBI_LOAD_BY_VOLNAME |
| 710 | help |
| 711 | The UBI volume name from which to load U-Boot |
| 712 | |
Markus Klotzbuecher | c67c349 | 2019-05-15 15:15:57 +0200 | [diff] [blame] | 713 | config SPL_UBI_LOAD_KERNEL_ID |
| 714 | int "id of kernel volume" |
| 715 | depends on SPL_OS_BOOT && SPL_UBI |
| 716 | help |
| 717 | The UBI volume id from which to load the kernel |
| 718 | |
| 719 | config SPL_UBI_LOAD_ARGS_ID |
| 720 | int "id of kernel args volume" |
| 721 | depends on SPL_OS_BOOT && SPL_UBI |
| 722 | help |
| 723 | The UBI volume id from which to load the device tree |
| 724 | |
Markus Klotzbuecher | a2257d3 | 2019-05-15 15:16:00 +0200 | [diff] [blame] | 725 | config UBI_SPL_SILENCE_MSG |
| 726 | bool "silence UBI SPL messages" |
| 727 | default n |
| 728 | help |
| 729 | Disable messages from UBI SPL. This leaves warnings |
| 730 | and errors enabled. |
Markus Klotzbuecher | c67c349 | 2019-05-15 15:15:57 +0200 | [diff] [blame] | 731 | |
| 732 | endif # if SPL_UBI |
| 733 | |
Simon Glass | 11bde1c | 2016-09-13 07:05:23 -0600 | [diff] [blame] | 734 | config SPL_NET_SUPPORT |
| 735 | bool "Support networking" |
Simon Glass | 11bde1c | 2016-09-13 07:05:23 -0600 | [diff] [blame] | 736 | help |
| 737 | Enable support for network devices (such as Ethernet) in SPL. |
| 738 | This permits SPL to load U-Boot over a network link rather than |
| 739 | from an on-board peripheral. Environment support is required since |
| 740 | the network stack uses a number of environment variables. See also |
| 741 | SPL_ETH_SUPPORT. |
| 742 | |
| 743 | if SPL_NET_SUPPORT |
| 744 | config SPL_NET_VCI_STRING |
| 745 | string "BOOTP Vendor Class Identifier string sent by SPL" |
| 746 | help |
| 747 | As defined by RFC 2132 the vendor class identifier field can be |
| 748 | sent by the client to identify the vendor type and configuration |
| 749 | of a client. This is often used in practice to allow for the DHCP |
| 750 | server to specify different files to load depending on if the ROM, |
| 751 | SPL or U-Boot itself makes the request |
| 752 | endif # if SPL_NET_SUPPORT |
| 753 | |
| 754 | config SPL_NO_CPU_SUPPORT |
| 755 | bool "Drop CPU code in SPL" |
Simon Glass | 11bde1c | 2016-09-13 07:05:23 -0600 | [diff] [blame] | 756 | help |
| 757 | This is specific to the ARM926EJ-S CPU. It disables the standard |
| 758 | start.S start-up code, presumably so that a replacement can be |
| 759 | used on that CPU. You should not enable it unless you know what |
| 760 | you are doing. |
| 761 | |
| 762 | config SPL_NOR_SUPPORT |
| 763 | bool "Support NOR flash" |
Simon Glass | 11bde1c | 2016-09-13 07:05:23 -0600 | [diff] [blame] | 764 | help |
| 765 | Enable support for loading U-Boot from memory-mapped NOR (Negative |
| 766 | OR) flash in SPL. NOR flash is slow to write but fast to read, and |
| 767 | a memory-mapped device makes it very easy to access. Loading from |
| 768 | NOR is typically achieved with just a memcpy(). |
| 769 | |
Vikas Manocha | c6d9e9d | 2017-05-28 12:55:11 -0700 | [diff] [blame] | 770 | config SPL_XIP_SUPPORT |
| 771 | bool "Support XIP" |
| 772 | depends on SPL |
| 773 | help |
| 774 | Enable support for execute in place of U-Boot or kernel image. There |
| 775 | is no need to copy image from flash to ram if flash supports execute |
| 776 | in place. Its very useful in systems having enough flash but not |
| 777 | enough ram to load the image. |
| 778 | |
Simon Glass | 11bde1c | 2016-09-13 07:05:23 -0600 | [diff] [blame] | 779 | config SPL_ONENAND_SUPPORT |
| 780 | bool "Support OneNAND flash" |
Simon Glass | 11bde1c | 2016-09-13 07:05:23 -0600 | [diff] [blame] | 781 | help |
| 782 | Enable support for OneNAND (Negative AND) flash in SPL. OneNAND is |
| 783 | a type of NAND flash and therefore can be used to allow SPL to |
| 784 | load U-Boot from supported devices. This enables the drivers in |
| 785 | drivers/mtd/onenand as part of an SPL build. |
| 786 | |
Heiko Schocher | c20ae2f | 2016-10-06 07:55:15 +0200 | [diff] [blame] | 787 | config SPL_OS_BOOT |
| 788 | bool "Activate Falcon Mode" |
Tom Rini | 226498b | 2017-05-22 19:21:57 +0000 | [diff] [blame] | 789 | depends on !TI_SECURE_DEVICE |
Heiko Schocher | c20ae2f | 2016-10-06 07:55:15 +0200 | [diff] [blame] | 790 | default n |
| 791 | help |
| 792 | Enable booting directly to an OS from SPL. |
| 793 | for more info read doc/README.falcon |
| 794 | |
Heiko Schocher | 29d3bc7 | 2016-10-06 07:55:16 +0200 | [diff] [blame] | 795 | if SPL_OS_BOOT |
| 796 | config SYS_OS_BASE |
| 797 | hex "addr, where OS is found" |
Tom Rini | 226498b | 2017-05-22 19:21:57 +0000 | [diff] [blame] | 798 | depends on SPL_NOR_SUPPORT |
Heiko Schocher | 29d3bc7 | 2016-10-06 07:55:16 +0200 | [diff] [blame] | 799 | help |
| 800 | Specify the address, where the OS image is found, which |
| 801 | gets booted. |
| 802 | |
| 803 | endif # SPL_OS_BOOT |
| 804 | |
York Sun | 7550dbe | 2018-06-14 14:38:48 -0700 | [diff] [blame] | 805 | config SPL_PAYLOAD |
| 806 | string "SPL payload" |
| 807 | default "tpl/u-boot-with-tpl.bin" if TPL |
| 808 | default "u-boot.bin" |
| 809 | help |
Chris Packham | 2dcfa05 | 2019-01-13 22:13:20 +1300 | [diff] [blame] | 810 | Payload for SPL boot. For backward compatibility, default to |
York Sun | 7550dbe | 2018-06-14 14:38:48 -0700 | [diff] [blame] | 811 | u-boot.bin, i.e. RAW image without any header. In case of |
| 812 | TPL, tpl/u-boot-with-tpl.bin. For new boards, suggest to |
| 813 | use u-boot.img. |
| 814 | |
Sekhar Nori | d50d681 | 2018-12-06 15:40:08 +0530 | [diff] [blame] | 815 | config SPL_PCI |
Simon Glass | 2446b6b | 2017-01-16 07:03:30 -0700 | [diff] [blame] | 816 | bool "Support PCI drivers" |
Simon Glass | 2446b6b | 2017-01-16 07:03:30 -0700 | [diff] [blame] | 817 | help |
| 818 | Enable support for PCI in SPL. For platforms that need PCI to boot, |
| 819 | or must perform some init using PCI in SPL, this provides the |
| 820 | necessary driver support. This enables the drivers in drivers/pci |
| 821 | as part of an SPL build. |
| 822 | |
Simon Glass | bbe41ab | 2017-01-16 07:03:33 -0700 | [diff] [blame] | 823 | config SPL_PCH_SUPPORT |
| 824 | bool "Support PCH drivers" |
Simon Glass | bbe41ab | 2017-01-16 07:03:33 -0700 | [diff] [blame] | 825 | help |
| 826 | Enable support for PCH (Platform Controller Hub) devices in SPL. |
| 827 | These are used to set up GPIOs and the SPI peripheral early in |
| 828 | boot. This enables the drivers in drivers/pch as part of an SPL |
| 829 | build. |
| 830 | |
Simon Glass | 11bde1c | 2016-09-13 07:05:23 -0600 | [diff] [blame] | 831 | config SPL_POST_MEM_SUPPORT |
| 832 | bool "Support POST drivers" |
Simon Glass | 11bde1c | 2016-09-13 07:05:23 -0600 | [diff] [blame] | 833 | help |
| 834 | Enable support for POST (Power-on Self Test) in SPL. POST is a |
| 835 | procedure that checks that the hardware (CPU or board) appears to |
| 836 | be functionally correctly. It is a sanity check that can be |
| 837 | performed before booting. This enables the drivers in post/drivers |
| 838 | as part of an SPL build. |
| 839 | |
Ley Foon Tan | bfc6bae | 2018-06-14 18:45:19 +0800 | [diff] [blame] | 840 | config SPL_DM_RESET |
Patrick Delaunay | 0e373c0 | 2018-03-12 10:46:05 +0100 | [diff] [blame] | 841 | bool "Support reset drivers" |
| 842 | depends on SPL |
| 843 | help |
| 844 | Enable support for reset control in SPL. |
| 845 | That can be useful in SPL to handle IP reset in driver, as in U-Boot, |
| 846 | by using the generic reset API provided by driver model. |
| 847 | This enables the drivers in drivers/reset as part of an SPL build. |
| 848 | |
Simon Glass | 11bde1c | 2016-09-13 07:05:23 -0600 | [diff] [blame] | 849 | config SPL_POWER_SUPPORT |
| 850 | bool "Support power drivers" |
Simon Glass | 11bde1c | 2016-09-13 07:05:23 -0600 | [diff] [blame] | 851 | help |
| 852 | Enable support for power control in SPL. This includes support |
| 853 | for PMICs (Power-management Integrated Circuits) and some of the |
| 854 | features provided by PMICs. In particular, voltage regulators can |
| 855 | be used to enable/disable power and vary its voltage. That can be |
| 856 | useful in SPL to turn on boot peripherals and adjust CPU voltage |
| 857 | so that the clock speed can be increased. This enables the drivers |
| 858 | in drivers/power, drivers/power/pmic and drivers/power/regulator |
| 859 | as part of an SPL build. |
| 860 | |
Peng Fan | e13278c | 2018-07-27 10:20:37 +0800 | [diff] [blame] | 861 | config SPL_POWER_DOMAIN |
| 862 | bool "Support power domain drivers" |
| 863 | help |
| 864 | Enable support for power domain control in SPL. Many SoCs allow |
| 865 | power to be applied to or removed from portions of the SoC (power |
| 866 | domains). This may be used to save power. This API provides the |
| 867 | means to control such power management hardware. This enables |
| 868 | the drivers in drivers/power/domain as part of a SPL build. |
| 869 | |
Stefan Agner | 22802f4 | 2016-12-23 07:51:53 +0100 | [diff] [blame] | 870 | config SPL_RAM_SUPPORT |
| 871 | bool "Support booting from RAM" |
Stefan Agner | 22802f4 | 2016-12-23 07:51:53 +0100 | [diff] [blame] | 872 | default y if MICROBLAZE || ARCH_SOCFPGA || TEGRA || ARCH_ZYNQ |
| 873 | help |
| 874 | Enable booting of an image in RAM. The image can be preloaded or |
| 875 | it can be loaded by SPL directly into RAM (e.g. using USB). |
| 876 | |
Stefan Agner | f417d40 | 2016-12-23 07:51:52 +0100 | [diff] [blame] | 877 | config SPL_RAM_DEVICE |
| 878 | bool "Support booting from preloaded image in RAM" |
Stefan Agner | 22802f4 | 2016-12-23 07:51:53 +0100 | [diff] [blame] | 879 | depends on SPL_RAM_SUPPORT |
Stefan Agner | f417d40 | 2016-12-23 07:51:52 +0100 | [diff] [blame] | 880 | default y if MICROBLAZE || ARCH_SOCFPGA || TEGRA || ARCH_ZYNQ |
| 881 | help |
| 882 | Enable booting of an image already loaded in RAM. The image has to |
| 883 | be already in memory when SPL takes over, e.g. loaded by the boot |
| 884 | ROM. |
| 885 | |
Lokesh Vutla | 08c4531 | 2018-08-27 15:57:53 +0530 | [diff] [blame] | 886 | config SPL_REMOTEPROC |
| 887 | bool "Support REMOTEPROCS" |
| 888 | help |
| 889 | Enable support for REMOTEPROCs in SPL. This permits to load |
| 890 | a remote processor firmware in SPL. |
| 891 | |
Simon Glass | 30bf8a0 | 2017-01-16 07:03:31 -0700 | [diff] [blame] | 892 | config SPL_RTC_SUPPORT |
| 893 | bool "Support RTC drivers" |
Simon Glass | 30bf8a0 | 2017-01-16 07:03:31 -0700 | [diff] [blame] | 894 | help |
| 895 | Enable RTC (Real-time Clock) support in SPL. This includes support |
| 896 | for reading and setting the time. Some RTC devices also have some |
| 897 | non-volatile (battery-backed) memory which is accessible if |
| 898 | needed. This enables the drivers in drivers/rtc as part of an SPL |
| 899 | build. |
| 900 | |
Simon Glass | 11bde1c | 2016-09-13 07:05:23 -0600 | [diff] [blame] | 901 | config SPL_SATA_SUPPORT |
| 902 | bool "Support loading from SATA" |
Simon Glass | 11bde1c | 2016-09-13 07:05:23 -0600 | [diff] [blame] | 903 | help |
| 904 | Enable support for SATA (Serial AT attachment) in SPL. This allows |
| 905 | use of SATA devices such as hard drives and flash drivers for |
| 906 | loading U-Boot. SATA is used in higher-end embedded systems and |
| 907 | can provide higher performance than MMC , at somewhat higher |
| 908 | expense and power consumption. This enables loading from SATA |
| 909 | using a configured device. |
| 910 | |
| 911 | config SPL_SERIAL_SUPPORT |
| 912 | bool "Support serial" |
Alex Kiernan | 14ad44a | 2018-04-19 04:32:54 +0000 | [diff] [blame] | 913 | select SPL_PRINTF |
| 914 | select SPL_STRTO |
Simon Glass | 11bde1c | 2016-09-13 07:05:23 -0600 | [diff] [blame] | 915 | help |
| 916 | Enable support for serial in SPL. This allows use of a serial UART |
| 917 | for displaying messages while SPL is running. It also brings in |
| 918 | printf() and panic() functions. This should normally be enabled |
| 919 | unless there are space reasons not to. Even then, consider |
| 920 | enabling USE_TINY_PRINTF which is a small printf() version. |
| 921 | |
| 922 | config SPL_SPI_FLASH_SUPPORT |
| 923 | bool "Support SPI flash drivers" |
Simon Glass | 11bde1c | 2016-09-13 07:05:23 -0600 | [diff] [blame] | 924 | help |
| 925 | Enable support for using SPI flash in SPL, and loading U-Boot from |
| 926 | SPI flash. SPI flash (Serial Peripheral Bus flash) is named after |
| 927 | the SPI bus that is used to connect it to a system. It is a simple |
| 928 | but fast bidirectional 4-wire bus (clock, chip select and two data |
| 929 | lines). This enables the drivers in drivers/mtd/spi as part of an |
| 930 | SPL build. This normally requires SPL_SPI_SUPPORT. |
| 931 | |
Vignesh R | 0c6f187 | 2019-02-05 11:29:20 +0530 | [diff] [blame] | 932 | if SPL_SPI_FLASH_SUPPORT |
| 933 | |
Vignesh R | 778572d | 2019-02-05 11:29:25 +0530 | [diff] [blame] | 934 | config SPL_SPI_FLASH_TINY |
| 935 | bool "Enable low footprint SPL SPI Flash support" |
| 936 | depends on !SPI_FLASH_BAR |
Vignesh R | 7287597 | 2019-02-05 11:29:26 +0530 | [diff] [blame] | 937 | default y if SPI_FLASH |
Vignesh R | 778572d | 2019-02-05 11:29:25 +0530 | [diff] [blame] | 938 | help |
| 939 | Enable lightweight SPL SPI Flash support that supports just reading |
| 940 | data/images from flash. No support to write/erase flash. Enable |
| 941 | this if you have SPL size limitations and don't need full |
| 942 | fledged SPI flash support. |
| 943 | |
Vignesh R | 0c6f187 | 2019-02-05 11:29:20 +0530 | [diff] [blame] | 944 | config SPL_SPI_FLASH_SFDP_SUPPORT |
| 945 | bool "SFDP table parsing support for SPI NOR flashes" |
Vignesh R | 778572d | 2019-02-05 11:29:25 +0530 | [diff] [blame] | 946 | depends on !SPI_FLASH_BAR && !SPL_SPI_FLASH_TINY |
Vignesh R | 0c6f187 | 2019-02-05 11:29:20 +0530 | [diff] [blame] | 947 | help |
| 948 | Enable support for parsing and auto discovery of parameters for |
| 949 | SPI NOR flashes using Serial Flash Discoverable Parameters (SFDP) |
| 950 | tables as per JESD216 standard in SPL. |
| 951 | |
Marek Vasut | 5550043 | 2018-04-07 16:05:27 +0200 | [diff] [blame] | 952 | config SPL_SPI_LOAD |
| 953 | bool "Support loading from SPI flash" |
Marek Vasut | 5550043 | 2018-04-07 16:05:27 +0200 | [diff] [blame] | 954 | help |
| 955 | Enable support for loading next stage, U-Boot or otherwise, from |
| 956 | SPI NOR in U-Boot SPL. |
| 957 | |
Vignesh R | 0c6f187 | 2019-02-05 11:29:20 +0530 | [diff] [blame] | 958 | endif # SPL_SPI_FLASH_SUPPORT |
| 959 | |
Simon Glass | 11bde1c | 2016-09-13 07:05:23 -0600 | [diff] [blame] | 960 | config SPL_SPI_SUPPORT |
| 961 | bool "Support SPI drivers" |
Simon Glass | 11bde1c | 2016-09-13 07:05:23 -0600 | [diff] [blame] | 962 | help |
| 963 | Enable support for using SPI in SPL. This is used for connecting |
| 964 | to SPI flash for loading U-Boot. See SPL_SPI_FLASH_SUPPORT for |
| 965 | more details on that. The SPI driver provides the transport for |
| 966 | data between the SPI flash and the CPU. This option can be used to |
| 967 | enable SPI drivers that are needed for other purposes also, such |
| 968 | as a SPI PMIC. |
| 969 | |
Faiz Abbas | 8502f9f | 2017-11-14 16:12:31 +0530 | [diff] [blame] | 970 | config SPL_THERMAL |
| 971 | bool "Driver support for thermal devices" |
| 972 | help |
| 973 | Enable support for temperature-sensing devices. Some SoCs have on-chip |
| 974 | temperature sensors to permit warnings, speed throttling or even |
| 975 | automatic power-off when the temperature gets too high or low. Other |
| 976 | devices may be discrete but connected on a suitable bus. |
| 977 | |
Simon Glass | 11bde1c | 2016-09-13 07:05:23 -0600 | [diff] [blame] | 978 | config SPL_USB_HOST_SUPPORT |
| 979 | bool "Support USB host drivers" |
Tom Rini | 91ff686 | 2018-12-05 08:23:38 -0500 | [diff] [blame] | 980 | select HAVE_BLOCK_DEVICE |
Simon Glass | 11bde1c | 2016-09-13 07:05:23 -0600 | [diff] [blame] | 981 | help |
| 982 | Enable access to USB (Universal Serial Bus) host devices so that |
| 983 | SPL can load U-Boot from a connected USB peripheral, such as a USB |
| 984 | flash stick. While USB takes a little longer to start up than most |
| 985 | buses, it is very flexible since many different types of storage |
| 986 | device can be attached. This option enables the drivers in |
| 987 | drivers/usb/host as part of an SPL build. |
| 988 | |
Abel Vesa | 7953601 | 2019-02-01 16:40:07 +0000 | [diff] [blame] | 989 | config SPL_USB_STORAGE |
Simon Glass | 11bde1c | 2016-09-13 07:05:23 -0600 | [diff] [blame] | 990 | bool "Support loading from USB" |
Abel Vesa | 7953601 | 2019-02-01 16:40:07 +0000 | [diff] [blame] | 991 | depends on SPL_USB_HOST_SUPPORT && !(BLK && !DM_USB) |
Simon Glass | 11bde1c | 2016-09-13 07:05:23 -0600 | [diff] [blame] | 992 | help |
| 993 | Enable support for USB devices in SPL. This allows use of USB |
| 994 | devices such as hard drives and flash drivers for loading U-Boot. |
| 995 | The actual drivers are enabled separately using the normal U-Boot |
| 996 | config options. This enables loading from USB using a configured |
| 997 | device. |
| 998 | |
Jean-Jacques Hiblot | f811e97 | 2019-01-10 15:44:13 +0100 | [diff] [blame] | 999 | config SPL_USB_GADGET |
Stefan Agner | e94793c | 2016-11-21 10:58:53 -0800 | [diff] [blame] | 1000 | bool "Suppport USB Gadget drivers" |
Stefan Agner | e94793c | 2016-11-21 10:58:53 -0800 | [diff] [blame] | 1001 | help |
| 1002 | Enable USB Gadget API which allows to enable USB device functions |
| 1003 | in SPL. |
| 1004 | |
Jean-Jacques Hiblot | f811e97 | 2019-01-10 15:44:13 +0100 | [diff] [blame] | 1005 | if SPL_USB_GADGET |
Stefan Agner | e94793c | 2016-11-21 10:58:53 -0800 | [diff] [blame] | 1006 | |
Faiz Abbas | b432b1e | 2018-02-16 21:17:44 +0530 | [diff] [blame] | 1007 | config SPL_USB_ETHER |
Stefan Agner | e94793c | 2016-11-21 10:58:53 -0800 | [diff] [blame] | 1008 | bool "Support USB Ethernet drivers" |
| 1009 | help |
| 1010 | Enable access to the USB network subsystem and associated |
| 1011 | drivers in SPL. This permits SPL to load U-Boot over a |
| 1012 | USB-connected Ethernet link (such as a USB Ethernet dongle) rather |
| 1013 | than from an onboard peripheral. Environment support is required |
| 1014 | since the network stack uses a number of environment variables. |
| 1015 | See also SPL_NET_SUPPORT and SPL_ETH_SUPPORT. |
| 1016 | |
Andrew F. Davis | 6536ca4 | 2019-01-17 13:43:02 -0600 | [diff] [blame] | 1017 | config SPL_DFU |
Fabio Estevam | c3c19c2 | 2018-08-31 10:02:28 -0300 | [diff] [blame] | 1018 | bool "Support DFU (Device Firmware Upgrade)" |
Stefan Agner | 5991703 | 2016-11-21 10:58:52 -0800 | [diff] [blame] | 1019 | select SPL_HASH_SUPPORT |
B, Ravi | 66928af | 2017-05-04 15:45:29 +0530 | [diff] [blame] | 1020 | select SPL_DFU_NO_RESET |
B, Ravi | 1b19cbd | 2017-05-04 15:45:28 +0530 | [diff] [blame] | 1021 | depends on SPL_RAM_SUPPORT |
Stefan Agner | 5991703 | 2016-11-21 10:58:52 -0800 | [diff] [blame] | 1022 | help |
Fabio Estevam | c3c19c2 | 2018-08-31 10:02:28 -0300 | [diff] [blame] | 1023 | This feature enables the DFU (Device Firmware Upgrade) in SPL with |
Stefan Agner | 5991703 | 2016-11-21 10:58:52 -0800 | [diff] [blame] | 1024 | RAM memory device support. The ROM code will load and execute |
| 1025 | the SPL built with dfu. The user can load binaries (u-boot/kernel) to |
| 1026 | selected device partition from host-pc using dfu-utils. |
| 1027 | This feature is useful to flash the binaries to factory or bare-metal |
| 1028 | boards using USB interface. |
| 1029 | |
| 1030 | choice |
| 1031 | bool "DFU device selection" |
Andrew F. Davis | 6536ca4 | 2019-01-17 13:43:02 -0600 | [diff] [blame] | 1032 | depends on SPL_DFU |
Stefan Agner | 5991703 | 2016-11-21 10:58:52 -0800 | [diff] [blame] | 1033 | |
| 1034 | config SPL_DFU_RAM |
| 1035 | bool "RAM device" |
Andrew F. Davis | 6536ca4 | 2019-01-17 13:43:02 -0600 | [diff] [blame] | 1036 | depends on SPL_DFU && SPL_RAM_SUPPORT |
Stefan Agner | 5991703 | 2016-11-21 10:58:52 -0800 | [diff] [blame] | 1037 | help |
| 1038 | select RAM/DDR memory device for loading binary images |
| 1039 | (u-boot/kernel) to the selected device partition using |
| 1040 | DFU and execute the u-boot/kernel from RAM. |
| 1041 | |
| 1042 | endchoice |
| 1043 | |
Stefan Agner | a3774c1 | 2017-08-16 11:00:54 -0700 | [diff] [blame] | 1044 | config SPL_USB_SDP_SUPPORT |
| 1045 | bool "Support SDP (Serial Download Protocol)" |
| 1046 | help |
| 1047 | Enable Serial Download Protocol (SDP) device support in SPL. This |
| 1048 | allows to download images into memory and execute (jump to) them |
| 1049 | using the same protocol as implemented by the i.MX family's boot ROM. |
Stefan Agner | e94793c | 2016-11-21 10:58:53 -0800 | [diff] [blame] | 1050 | endif |
| 1051 | |
Simon Glass | 11bde1c | 2016-09-13 07:05:23 -0600 | [diff] [blame] | 1052 | config SPL_WATCHDOG_SUPPORT |
| 1053 | bool "Support watchdog drivers" |
Simon Glass | 11bde1c | 2016-09-13 07:05:23 -0600 | [diff] [blame] | 1054 | help |
| 1055 | Enable support for watchdog drivers in SPL. A watchdog is |
| 1056 | typically a hardware peripheral which can reset the system when it |
| 1057 | detects no activity for a while (such as a software crash). This |
| 1058 | enables the drivers in drivers/watchdog as part of an SPL build. |
| 1059 | |
| 1060 | config SPL_YMODEM_SUPPORT |
| 1061 | bool "Support loading using Ymodem" |
Alex Kiernan | 3bac19c | 2018-04-19 04:32:52 +0000 | [diff] [blame] | 1062 | depends on SPL_SERIAL_SUPPORT |
Simon Glass | 11bde1c | 2016-09-13 07:05:23 -0600 | [diff] [blame] | 1063 | help |
| 1064 | While loading from serial is slow it can be a useful backup when |
| 1065 | there is no other option. The Ymodem protocol provides a reliable |
| 1066 | means of transmitting U-Boot over a serial line for using in SPL, |
| 1067 | with a checksum to ensure correctness. |
| 1068 | |
Philipp Tomsich | aa122f6 | 2017-09-13 21:29:36 +0200 | [diff] [blame] | 1069 | config SPL_ATF |
Kever Yang | bcc1726 | 2017-05-05 11:47:45 +0800 | [diff] [blame] | 1070 | bool "Support ARM Trusted Firmware" |
Tom Rini | 226498b | 2017-05-22 19:21:57 +0000 | [diff] [blame] | 1071 | depends on ARM64 |
Kever Yang | bcc1726 | 2017-05-05 11:47:45 +0800 | [diff] [blame] | 1072 | help |
Philipp Tomsich | d21fb63 | 2018-01-02 21:16:43 +0100 | [diff] [blame] | 1073 | ATF(ARM Trusted Firmware) is a component for ARM AArch64 which |
| 1074 | is loaded by SPL (which is considered as BL2 in ATF terminology). |
Kever Yang | bcc1726 | 2017-05-05 11:47:45 +0800 | [diff] [blame] | 1075 | More detail at: https://github.com/ARM-software/arm-trusted-firmware |
| 1076 | |
Philipp Tomsich | d21fb63 | 2018-01-02 21:16:43 +0100 | [diff] [blame] | 1077 | config SPL_ATF_NO_PLATFORM_PARAM |
| 1078 | bool "Pass no platform parameter" |
| 1079 | depends on SPL_ATF |
| 1080 | help |
| 1081 | While we expect to call a pointer to a valid FDT (or NULL) |
| 1082 | as the platform parameter to an ATF, some ATF versions are |
| 1083 | not U-Boot aware and have an insufficiently robust parameter |
| 1084 | validation to gracefully reject a FDT being passed. |
| 1085 | |
| 1086 | If this option is enabled, the spl_atf os-type handler will |
| 1087 | always pass NULL for the platform parameter. |
| 1088 | |
| 1089 | If your ATF is affected, say Y. |
| 1090 | |
Alex Kiernan | 3bf5f13 | 2018-03-15 22:11:46 +0000 | [diff] [blame] | 1091 | config SPL_AM33XX_ENABLE_RTC32K_OSC |
| 1092 | bool "Enable the RTC32K OSC on AM33xx based platforms" |
| 1093 | default y if AM33XX |
| 1094 | help |
| 1095 | Enable access to the AM33xx RTC and select the external 32kHz clock |
| 1096 | source. |
| 1097 | |
Kever Yang | 70fe287 | 2018-08-23 17:17:59 +0800 | [diff] [blame] | 1098 | config SPL_OPTEE |
| 1099 | bool "Support OP-TEE Trusted OS" |
| 1100 | depends on ARM |
| 1101 | help |
| 1102 | OP-TEE is an open source Trusted OS which is loaded by SPL. |
| 1103 | More detail at: https://github.com/OP-TEE/optee_os |
| 1104 | |
Tom Rini | 226498b | 2017-05-22 19:21:57 +0000 | [diff] [blame] | 1105 | config TPL |
| 1106 | bool |
| 1107 | depends on SUPPORT_TPL |
| 1108 | prompt "Enable TPL" |
| 1109 | help |
| 1110 | If you want to build TPL as well as the normal image and SPL, say Y. |
| 1111 | |
| 1112 | if TPL |
| 1113 | |
Simon Glass | b0edea3 | 2018-11-15 18:44:09 -0700 | [diff] [blame] | 1114 | config TPL_HANDOFF |
| 1115 | bool "Pass hand-off information from TPL to SPL and U-Boot proper" |
| 1116 | depends on HANDOFF |
| 1117 | default y |
| 1118 | help |
| 1119 | This option enables TPL to write handoff information. This can be |
| 1120 | used to pass information like the size of SDRAM from TPL to U-Boot |
| 1121 | proper. The information is also available to SPL if it is useful |
| 1122 | there. |
| 1123 | |
Kever Yang | af2f442 | 2018-01-20 18:00:26 +0800 | [diff] [blame] | 1124 | config TPL_BOARD_INIT |
| 1125 | bool "Call board-specific initialization in TPL" |
| 1126 | help |
| 1127 | If this option is enabled, U-Boot will call the function |
| 1128 | spl_board_init() from board_init_r(). This function should be |
| 1129 | provided by the board. |
| 1130 | |
Philipp Tomsich | dd6fbcb | 2017-07-28 19:20:49 +0200 | [diff] [blame] | 1131 | config TPL_LDSCRIPT |
| 1132 | string "Linker script for the TPL stage" |
| 1133 | depends on TPL |
Tom Rini | 2f41ade | 2019-01-22 17:09:26 -0500 | [diff] [blame] | 1134 | default "arch/arm/cpu/armv8/u-boot-spl.lds" if ARM64 |
| 1135 | default "arch/$(ARCH)/cpu/u-boot-spl.lds" |
Philipp Tomsich | dd6fbcb | 2017-07-28 19:20:49 +0200 | [diff] [blame] | 1136 | help |
| 1137 | The TPL stage will usually require a different linker-script |
| 1138 | (as it runs from a different memory region) than the regular |
| 1139 | U-Boot stage. Set this to the path of the linker-script to |
| 1140 | be used for TPL. |
| 1141 | |
Philipp Tomsich | b3ed6ce | 2017-07-28 20:02:34 +0200 | [diff] [blame] | 1142 | May be left empty to trigger the Makefile infrastructure to |
| 1143 | fall back to the linker-script used for the SPL stage. |
| 1144 | |
| 1145 | config TPL_NEEDS_SEPARATE_TEXT_BASE |
| 1146 | bool "TPL needs a separate text-base" |
| 1147 | default n |
| 1148 | depends on TPL |
| 1149 | help |
| 1150 | Enable, if the TPL stage should not inherit its text-base |
| 1151 | from the SPL stage. When enabled, a base address for the |
| 1152 | .text sections of the TPL stage has to be set below. |
| 1153 | |
| 1154 | config TPL_NEEDS_SEPARATE_STACK |
| 1155 | bool "TPL needs a separate initial stack-pointer" |
| 1156 | default n |
| 1157 | depends on TPL |
| 1158 | help |
| 1159 | Enable, if the TPL stage should not inherit its initial |
| 1160 | stack-pointer from the settings for the SPL stage. |
| 1161 | |
| 1162 | config TPL_TEXT_BASE |
| 1163 | hex "Base address for the .text section of the TPL stage" |
| 1164 | depends on TPL_NEEDS_SEPARATE_TEXT_BASE |
| 1165 | help |
| 1166 | The base address for the .text section of the TPL stage. |
| 1167 | |
| 1168 | config TPL_MAX_SIZE |
| 1169 | int "Maximum size (in bytes) for the TPL stage" |
Philipp Tomsich | 5aa49af | 2017-07-28 20:20:41 +0200 | [diff] [blame] | 1170 | default 0 |
Philipp Tomsich | b3ed6ce | 2017-07-28 20:02:34 +0200 | [diff] [blame] | 1171 | depends on TPL |
| 1172 | help |
| 1173 | The maximum size (in bytes) of the TPL stage. |
| 1174 | |
| 1175 | config TPL_STACK |
| 1176 | hex "Address of the initial stack-pointer for the TPL stage" |
| 1177 | depends on TPL_NEEDS_SEPARATE_STACK |
| 1178 | help |
| 1179 | The address of the initial stack-pointer for the TPL stage. |
| 1180 | Usually this will be the (aligned) top-of-stack. |
| 1181 | |
Philipp Tomsich | a954fa3 | 2017-07-04 14:24:53 +0200 | [diff] [blame] | 1182 | config TPL_BOOTROM_SUPPORT |
| 1183 | bool "Support returning to the BOOTROM (from TPL)" |
| 1184 | help |
| 1185 | Some platforms (e.g. the Rockchip RK3368) provide support in their |
| 1186 | ROM for loading the next boot-stage after performing basic setup |
| 1187 | from the TPL stage. |
| 1188 | |
| 1189 | Enable this option, to return to the BOOTROM through the |
| 1190 | BOOT_DEVICE_BOOTROM (or fall-through to the next boot device in the |
| 1191 | boot device list, if not implemented for a given board) |
| 1192 | |
Philipp Tomsich | c3916e7 | 2017-07-04 14:27:02 +0200 | [diff] [blame] | 1193 | config TPL_DRIVERS_MISC_SUPPORT |
| 1194 | bool "Support misc drivers in TPL" |
| 1195 | help |
| 1196 | Enable miscellaneous drivers in TPL. These drivers perform various |
| 1197 | tasks that don't fall nicely into other categories, Enable this |
| 1198 | option to build the drivers in drivers/misc as part of an TPL |
| 1199 | build, for those that support building in TPL (not all drivers do). |
| 1200 | |
Simon Glass | f73329e | 2016-09-12 23:18:27 -0600 | [diff] [blame] | 1201 | config TPL_ENV_SUPPORT |
| 1202 | bool "Support an environment" |
Simon Glass | f73329e | 2016-09-12 23:18:27 -0600 | [diff] [blame] | 1203 | help |
| 1204 | Enable environment support in TPL. See SPL_ENV_SUPPORT for details. |
| 1205 | |
Simon Glass | 2d424eb | 2018-11-15 18:43:55 -0700 | [diff] [blame] | 1206 | config TPL_GPIO_SUPPORT |
| 1207 | bool "Support GPIO in TPL" |
| 1208 | help |
| 1209 | Enable support for GPIOs (General-purpose Input/Output) in TPL. |
| 1210 | GPIOs allow U-Boot to read the state of an input line (high or |
| 1211 | low) and set the state of an output line. This can be used to |
| 1212 | drive LEDs, control power to various system parts and read user |
| 1213 | input. GPIOs can be useful in TPL to enable a 'sign-of-life' LED, |
| 1214 | for example. Enable this option to build the drivers in |
| 1215 | drivers/gpio as part of an TPL build. |
| 1216 | |
Simon Glass | f73329e | 2016-09-12 23:18:27 -0600 | [diff] [blame] | 1217 | config TPL_I2C_SUPPORT |
| 1218 | bool "Support I2C" |
Simon Glass | f73329e | 2016-09-12 23:18:27 -0600 | [diff] [blame] | 1219 | help |
Philipp Tomsich | 616bd09 | 2017-07-28 17:03:03 +0200 | [diff] [blame] | 1220 | Enable support for the I2C bus in TPL. See SPL_I2C_SUPPORT for |
Simon Glass | f73329e | 2016-09-12 23:18:27 -0600 | [diff] [blame] | 1221 | details. |
| 1222 | |
| 1223 | config TPL_LIBCOMMON_SUPPORT |
| 1224 | bool "Support common libraries" |
Simon Glass | f73329e | 2016-09-12 23:18:27 -0600 | [diff] [blame] | 1225 | help |
| 1226 | Enable support for common U-Boot libraries within TPL. See |
| 1227 | SPL_LIBCOMMON_SUPPORT for details. |
| 1228 | |
| 1229 | config TPL_LIBGENERIC_SUPPORT |
| 1230 | bool "Support generic libraries" |
Simon Glass | f73329e | 2016-09-12 23:18:27 -0600 | [diff] [blame] | 1231 | help |
| 1232 | Enable support for generic U-Boot libraries within TPL. See |
| 1233 | SPL_LIBGENERIC_SUPPORT for details. |
| 1234 | |
| 1235 | config TPL_MPC8XXX_INIT_DDR_SUPPORT |
| 1236 | bool "Support MPC8XXX DDR init" |
Simon Glass | f73329e | 2016-09-12 23:18:27 -0600 | [diff] [blame] | 1237 | help |
| 1238 | Enable support for DDR-SDRAM on the MPC8XXX family within TPL. See |
| 1239 | SPL_MPC8XXX_INIT_DDR_SUPPORT for details. |
| 1240 | |
| 1241 | config TPL_MMC_SUPPORT |
| 1242 | bool "Support MMC" |
Tom Rini | 226498b | 2017-05-22 19:21:57 +0000 | [diff] [blame] | 1243 | depends on MMC |
Simon Glass | f73329e | 2016-09-12 23:18:27 -0600 | [diff] [blame] | 1244 | help |
| 1245 | Enable support for MMC within TPL. See SPL_MMC_SUPPORT for details. |
| 1246 | |
| 1247 | config TPL_NAND_SUPPORT |
| 1248 | bool "Support NAND flash" |
Simon Glass | f73329e | 2016-09-12 23:18:27 -0600 | [diff] [blame] | 1249 | help |
Philipp Tomsich | 616bd09 | 2017-07-28 17:03:03 +0200 | [diff] [blame] | 1250 | Enable support for NAND in TPL. See SPL_NAND_SUPPORT for details. |
Simon Glass | f73329e | 2016-09-12 23:18:27 -0600 | [diff] [blame] | 1251 | |
Sekhar Nori | d50d681 | 2018-12-06 15:40:08 +0530 | [diff] [blame] | 1252 | config TPL_PCI |
Simon Glass | 2d424eb | 2018-11-15 18:43:55 -0700 | [diff] [blame] | 1253 | bool "Support PCI drivers" |
| 1254 | help |
| 1255 | Enable support for PCI in TPL. For platforms that need PCI to boot, |
| 1256 | or must perform some init using PCI in SPL, this provides the |
| 1257 | necessary driver support. This enables the drivers in drivers/pci |
| 1258 | as part of a TPL build. |
| 1259 | |
| 1260 | config TPL_PCH_SUPPORT |
| 1261 | bool "Support PCH drivers" |
| 1262 | help |
| 1263 | Enable support for PCH (Platform Controller Hub) devices in TPL. |
| 1264 | These are used to set up GPIOs and the SPI peripheral early in |
| 1265 | boot. This enables the drivers in drivers/pch as part of a TPL |
| 1266 | build. |
| 1267 | |
Marek Vasut | d79dfd4 | 2018-04-07 17:03:45 +0200 | [diff] [blame] | 1268 | config TPL_RAM_SUPPORT |
| 1269 | bool "Support booting from RAM" |
| 1270 | help |
| 1271 | Enable booting of an image in RAM. The image can be preloaded or |
| 1272 | it can be loaded by TPL directly into RAM (e.g. using USB). |
| 1273 | |
| 1274 | config TPL_RAM_DEVICE |
| 1275 | bool "Support booting from preloaded image in RAM" |
| 1276 | depends on TPL_RAM_SUPPORT |
| 1277 | help |
| 1278 | Enable booting of an image already loaded in RAM. The image has to |
| 1279 | be already in memory when TPL takes over, e.g. loaded by the boot |
| 1280 | ROM. |
| 1281 | |
Simon Glass | 2d424eb | 2018-11-15 18:43:55 -0700 | [diff] [blame] | 1282 | config TPL_RTC_SUPPORT |
| 1283 | bool "Support RTC drivers" |
| 1284 | help |
| 1285 | Enable RTC (Real-time Clock) support in TPL. This includes support |
| 1286 | for reading and setting the time. Some RTC devices also have some |
| 1287 | non-volatile (battery-backed) memory which is accessible if |
| 1288 | needed. This enables the drivers in drivers/rtc as part of an TPL |
| 1289 | build. |
| 1290 | |
Simon Glass | f73329e | 2016-09-12 23:18:27 -0600 | [diff] [blame] | 1291 | config TPL_SERIAL_SUPPORT |
| 1292 | bool "Support serial" |
Alex Kiernan | 14ad44a | 2018-04-19 04:32:54 +0000 | [diff] [blame] | 1293 | select TPL_PRINTF |
| 1294 | select TPL_STRTO |
Simon Glass | f73329e | 2016-09-12 23:18:27 -0600 | [diff] [blame] | 1295 | help |
Philipp Tomsich | 616bd09 | 2017-07-28 17:03:03 +0200 | [diff] [blame] | 1296 | Enable support for serial in TPL. See SPL_SERIAL_SUPPORT for |
Simon Glass | f73329e | 2016-09-12 23:18:27 -0600 | [diff] [blame] | 1297 | details. |
| 1298 | |
| 1299 | config TPL_SPI_FLASH_SUPPORT |
| 1300 | bool "Support SPI flash drivers" |
Simon Glass | f73329e | 2016-09-12 23:18:27 -0600 | [diff] [blame] | 1301 | help |
Philipp Tomsich | 616bd09 | 2017-07-28 17:03:03 +0200 | [diff] [blame] | 1302 | Enable support for using SPI flash in TPL. See SPL_SPI_FLASH_SUPPORT |
Simon Glass | f73329e | 2016-09-12 23:18:27 -0600 | [diff] [blame] | 1303 | for details. |
| 1304 | |
Marek Vasut | 1e725e2 | 2018-04-07 16:05:46 +0200 | [diff] [blame] | 1305 | config TPL_SPI_LOAD |
| 1306 | bool "Support loading from SPI flash" |
| 1307 | depends on TPL_SPI_FLASH_SUPPORT |
| 1308 | help |
| 1309 | Enable support for loading next stage, U-Boot or otherwise, from |
| 1310 | SPI NOR in U-Boot TPL. |
| 1311 | |
Simon Glass | f73329e | 2016-09-12 23:18:27 -0600 | [diff] [blame] | 1312 | config TPL_SPI_SUPPORT |
| 1313 | bool "Support SPI drivers" |
Simon Glass | f73329e | 2016-09-12 23:18:27 -0600 | [diff] [blame] | 1314 | help |
Philipp Tomsich | 616bd09 | 2017-07-28 17:03:03 +0200 | [diff] [blame] | 1315 | Enable support for using SPI in TPL. See SPL_SPI_SUPPORT for |
Simon Glass | f73329e | 2016-09-12 23:18:27 -0600 | [diff] [blame] | 1316 | details. |
| 1317 | |
Marek Vasut | 6ce3d67 | 2018-04-07 16:06:11 +0200 | [diff] [blame] | 1318 | config TPL_YMODEM_SUPPORT |
| 1319 | bool "Support loading using Ymodem" |
Alex Kiernan | 3bac19c | 2018-04-19 04:32:52 +0000 | [diff] [blame] | 1320 | depends on TPL_SERIAL_SUPPORT |
Marek Vasut | 6ce3d67 | 2018-04-07 16:06:11 +0200 | [diff] [blame] | 1321 | help |
| 1322 | While loading from serial is slow it can be a useful backup when |
| 1323 | there is no other option. The Ymodem protocol provides a reliable |
| 1324 | means of transmitting U-Boot over a serial line for using in TPL, |
| 1325 | with a checksum to ensure correctness. |
| 1326 | |
Tom Rini | 226498b | 2017-05-22 19:21:57 +0000 | [diff] [blame] | 1327 | endif # TPL |
| 1328 | |
Eugen Hristev | 0be0787 | 2019-05-24 09:38:10 +0300 | [diff] [blame] | 1329 | config SPL_AT91_MCK_BYPASS |
| 1330 | bool "Use external clock signal as a source of main clock for AT91 platforms" |
| 1331 | depends on ARCH_AT91 |
| 1332 | default n |
| 1333 | help |
| 1334 | Use external 8 to 24 Mhz clock signal as source of main clock instead |
| 1335 | of an external crystal oscillator. |
| 1336 | This option disables the internal driving on the XOUT pin. |
| 1337 | The external source has to provide a stable clock on the XIN pin. |
| 1338 | If this option is disabled, the SoC expects a crystal oscillator |
| 1339 | that needs driving on both XIN and XOUT lines. |
| 1340 | |
Tom Rini | 226498b | 2017-05-22 19:21:57 +0000 | [diff] [blame] | 1341 | endif # SPL |
Simon Glass | 11bde1c | 2016-09-13 07:05:23 -0600 | [diff] [blame] | 1342 | endmenu |