blob: 126931bacebbfc22efc07418599c8e9d495769e2 [file] [log] [blame]
Simon Glass11bde1c2016-09-13 07:05:23 -06001menu "SPL / TPL"
2
Simon Glassc2ae7d82016-09-12 23:18:22 -06003config SUPPORT_SPL
4 bool
5
6config SUPPORT_TPL
7 bool
8
B, Ravi66928af2017-05-04 15:45:29 +05309config SPL_DFU_NO_RESET
10 bool
11
Simon Glassc2ae7d82016-09-12 23:18:22 -060012config 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 Rini75670c82018-02-06 12:15:38 -050019config 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 Goldschmidt25770152019-05-24 22:07:04 +020028config SPL_SIZE_LIMIT
Tom Rini6d277fb2019-06-07 20:39:32 -040029 int "Maximum size of SPL image"
Simon Goldschmidt25770152019-05-24 22:07:04 +020030 depends on SPL
Fabio Estevam23612532019-06-08 14:56:44 -030031 default 69632 if ARCH_MX6
Simon Goldschmidt25770152019-05-24 22:07:04 +020032 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
37config 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
46config 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
55config 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 Rinidb4080d2019-06-01 14:20:25 -040065menu "PowerPC SPL Boot options"
66 depends on PPC && (SUPPORT_SPL && !SPL_FRAMEWORK)
67
68config SPL_NAND_BOOT
69 bool "Load SPL from NAND flash"
70
71config SPL_MMC_BOOT
72 bool "Load SPL from SD Card / eMMC"
73
74config SPL_SPI_BOOT
75 bool "Load SPL from SPI flash"
76
77config 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
83endmenu
84
Simon Glassb0edea32018-11-15 18:44:09 -070085config 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 Rini226498b2017-05-22 19:21:57 +000095if SPL
96
Simon Glassb0edea32018-11-15 18:44:09 -070097config 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 Tomsichdd6fbcb2017-07-28 19:20:49 +0200107config SPL_LDSCRIPT
108 string "Linker script for the SPL stage"
109 default "arch/$(ARCH)/cpu/u-boot-spl.lds"
Philipp Tomsichdd6fbcb2017-07-28 19:20:49 +0200110 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 Goldschmidtf89d6132018-09-30 14:31:53 +0200116config SPL_TEXT_BASE
117 hex "SPL Text Base"
118 default ISW_ENTRY_ADDR if AM43XX || AM33XX || OMAP54XX || ARCH_KEYSTONE
119 default 0x0
120 help
121 The address in memory that SPL will be running from.
122
Ley Foon Tan0680f1b2017-05-03 17:13:32 +0800123config SPL_BOARD_INIT
Ley Foon Tan0680f1b2017-05-03 17:13:32 +0800124 bool "Call board-specific initialization in SPL"
125 help
126 If this option is enabled, U-Boot will call the function
127 spl_board_init() from board_init_r(). This function should be
128 provided by the board.
129
Philipp Tomsich225d30b2017-06-22 23:38:36 +0200130config SPL_BOOTROM_SUPPORT
131 bool "Support returning to the BOOTROM"
132 help
133 Some platforms (e.g. the Rockchip RK3368) provide support in their
134 ROM for loading the next boot-stage after performing basic setup
135 from the SPL stage.
136
137 Enable this option, to return to the BOOTROM through the
138 BOOT_DEVICE_BOOTROM (or fall-through to the next boot device in the
139 boot device list, if not implemented for a given board)
140
Lukasz Majewskiafa96092018-05-02 16:10:50 +0200141config SPL_BOOTCOUNT_LIMIT
142 bool "Support bootcount in SPL"
143 depends on SPL_ENV_SUPPORT
144 help
145 On some boards, which use 'falcon' mode, it is necessary to check
146 and increment the number of boot attempts. Such boards do not
147 use proper U-Boot for normal boot flow and hence needs those
148 adjustments to be done in the SPL.
149
Andrew F. Davis24eb39b2017-02-16 11:18:38 -0600150config SPL_RAW_IMAGE_SUPPORT
151 bool "Support SPL loading and booting of RAW images"
Andrew F. Davis24eb39b2017-02-16 11:18:38 -0600152 default n if (ARCH_MX6 && (SPL_MMC_SUPPORT || SPL_SATA_SUPPORT))
Andrew F. Davisae9b57b2017-02-16 11:18:40 -0600153 default y if !TI_SECURE_DEVICE
Andrew F. Davis24eb39b2017-02-16 11:18:38 -0600154 help
155 SPL will support loading and booting a RAW image when this option
156 is y. If this is not set, SPL will move on to other available
157 boot media to find a suitable image.
158
Andrew F. Davis722a6b12017-02-16 11:18:39 -0600159config SPL_LEGACY_IMAGE_SUPPORT
160 bool "Support SPL loading and booting of Legacy images"
Tom Rini11bd2fa2019-05-23 07:14:08 -0400161 default y if !TI_SECURE_DEVICE && !SPL_LOAD_FIT
Andrew F. Davis722a6b12017-02-16 11:18:39 -0600162 help
163 SPL will support loading and booting Legacy images when this option
164 is y. If this is not set, SPL will move on to other available
165 boot media to find a suitable image.
166
Simon Goldschmidtdae5c2d2019-02-10 21:34:37 +0100167config SPL_LEGACY_IMAGE_CRC_CHECK
168 bool "Check CRC of Legacy images"
169 depends on SPL_LEGACY_IMAGE_SUPPORT
170 select SPL_CRC32_SUPPORT
171 help
172 Enable this to check the CRC of Legacy images. While this increases
173 reliability, it affects both code size and boot duration.
174 If disabled, Legacy images are booted if the image magic and size
175 are correct, without further integrity checks.
176
Simon Glassc2ae7d82016-09-12 23:18:22 -0600177config SPL_SYS_MALLOC_SIMPLE
178 bool
Simon Glassc2ae7d82016-09-12 23:18:22 -0600179 prompt "Only use malloc_simple functions in the SPL"
180 help
181 Say Y here to only use the *_simple malloc functions from
182 malloc_simple.c, rather then using the versions from dlmalloc.c;
183 this will make the SPL binary smaller at the cost of more heap
184 usage as the *_simple malloc functions do not re-use free-ed mem.
185
Philipp Tomsichd60b5f72017-06-30 18:57:25 +0200186config TPL_SYS_MALLOC_SIMPLE
187 bool
188 prompt "Only use malloc_simple functions in the TPL"
189 help
190 Say Y here to only use the *_simple malloc functions from
191 malloc_simple.c, rather then using the versions from dlmalloc.c;
192 this will make the TPL binary smaller at the cost of more heap
193 usage as the *_simple malloc functions do not re-use free-ed mem.
194
Simon Glassc2ae7d82016-09-12 23:18:22 -0600195config SPL_STACK_R
Simon Glassc2ae7d82016-09-12 23:18:22 -0600196 bool "Enable SDRAM location for SPL stack"
197 help
198 SPL starts off execution in SRAM and thus typically has only a small
199 stack available. Since SPL sets up DRAM while in its board_init_f()
200 function, it is possible for the stack to move there before
201 board_init_r() is reached. This option enables a special SDRAM
202 location for the SPL stack. U-Boot SPL switches to this after
203 board_init_f() completes, and before board_init_r() starts.
204
205config SPL_STACK_R_ADDR
206 depends on SPL_STACK_R
207 hex "SDRAM location for SPL stack"
Tom Riniff6c3122017-09-17 11:44:49 -0400208 default 0x82000000 if ARCH_OMAP2PLUS
Simon Glassc2ae7d82016-09-12 23:18:22 -0600209 help
210 Specify the address in SDRAM for the SPL stack. This will be set up
211 before board_init_r() is called.
212
213config SPL_STACK_R_MALLOC_SIMPLE_LEN
214 depends on SPL_STACK_R && SPL_SYS_MALLOC_SIMPLE
215 hex "Size of malloc_simple heap after switching to DRAM SPL stack"
216 default 0x100000
217 help
218 Specify the amount of the stack to use as memory pool for
219 malloc_simple after switching the stack to DRAM. This may be set
220 to give board_init_r() a larger heap then the initial heap in
221 SRAM which is limited to SYS_MALLOC_F_LEN bytes.
222
223config SPL_SEPARATE_BSS
Simon Glassc2ae7d82016-09-12 23:18:22 -0600224 bool "BSS section is in a different memory region from text"
225 help
226 Some platforms need a large BSS region in SPL and can provide this
227 because RAM is already set up. In this case BSS can be moved to RAM.
228 This option should then be enabled so that the correct device tree
229 location is used. Normally we put the device tree at the end of BSS
230 but with this option enabled, it goes at _image_binary_end.
231
Simon Glassaedc08b2018-11-15 18:43:57 -0700232config SPL_BANNER_PRINT
233 bool "Enable output of the SPL banner 'U-Boot SPL ...'"
234 default y
235 help
236 If this option is enabled, SPL will print the banner with version
237 info. Disabling this option could be useful to reduce TPL boot time
238 (e.g. approx. 6 ms faster, when output on i.MX6 with 115200 baud).
239
240config TPL_BANNER_PRINT
241 bool "Enable output of the TPL banner 'U-Boot TPL ...'"
242 default y
Anatolij Gustschin0292bc02018-01-25 18:45:22 +0100243 help
244 If this option is enabled, SPL will not print the banner with version
Simon Glassaedc08b2018-11-15 18:43:57 -0700245 info. Disabling this option could be useful to reduce SPL boot time
246 (e.g. approx. 6 ms faster, when output on i.MX6 with 115200 baud).
Anatolij Gustschin0292bc02018-01-25 18:45:22 +0100247
Simon Glassa807ab32016-09-24 18:19:56 -0600248config SPL_DISPLAY_PRINT
Simon Glassa807ab32016-09-24 18:19:56 -0600249 bool "Display a board-specific message in SPL"
250 help
251 If this option is enabled, U-Boot will call the function
252 spl_display_print() immediately after displaying the SPL console
253 banner ("U-Boot SPL ..."). This function should be provided by
254 the board.
255
Semen Protsenko38fed8a2016-11-16 19:19:05 +0200256config SYS_MMCSD_RAW_MODE_U_BOOT_USE_SECTOR
257 bool "MMC raw mode: by sector"
Fabio Estevam1da19382018-06-11 15:08:05 -0300258 default y if ARCH_SUNXI || ARCH_DAVINCI || ARCH_UNIPHIER || \
259 ARCH_MX6 || ARCH_MX7 || \
Semen Protsenko38fed8a2016-11-16 19:19:05 +0200260 ARCH_ROCKCHIP || ARCH_MVEBU || ARCH_SOCFPGA || \
261 ARCH_AT91 || ARCH_ZYNQ || ARCH_KEYSTONE || OMAP34XX || \
262 OMAP44XX || OMAP54XX || AM33XX || AM43XX
263 help
264 Use sector number for specifying U-Boot location on MMC/SD in
265 raw mode.
266
267config SYS_MMCSD_RAW_MODE_U_BOOT_SECTOR
268 hex "Address on the MMC to load U-Boot from"
Tom Rini226498b2017-05-22 19:21:57 +0000269 depends on SYS_MMCSD_RAW_MODE_U_BOOT_USE_SECTOR
Semen Protsenko38fed8a2016-11-16 19:19:05 +0200270 default 0x50 if ARCH_SUNXI
271 default 0x75 if ARCH_DAVINCI
Fabio Estevam1da19382018-06-11 15:08:05 -0300272 default 0x8a if ARCH_MX6 || ARCH_MX7
Kever Yang8f4d62b2017-11-02 15:16:34 +0800273 default 0x100 if ARCH_UNIPHIER
Semen Protsenko38fed8a2016-11-16 19:19:05 +0200274 default 0x140 if ARCH_MVEBU
275 default 0x200 if ARCH_SOCFPGA || ARCH_AT91
276 default 0x300 if ARCH_ZYNQ || ARCH_KEYSTONE || OMAP34XX || OMAP44XX || \
Lokesh Vutla586bde92018-08-27 15:57:08 +0530277 OMAP54XX || AM33XX || AM43XX || ARCH_K3
Kever Yang8f4d62b2017-11-02 15:16:34 +0800278 default 0x4000 if ARCH_ROCKCHIP
Semen Protsenko38fed8a2016-11-16 19:19:05 +0200279 help
280 Address on the MMC to load U-Boot from, when the MMC is being used
281 in raw mode. Units: MMC sectors (1 sector = 512 bytes).
282
Dalon Westergreen949123e2017-02-10 17:15:35 -0800283config SYS_MMCSD_RAW_MODE_U_BOOT_USE_PARTITION
284 bool "MMC Raw mode: by partition"
Dalon Westergreen949123e2017-02-10 17:15:35 -0800285 help
286 Use a partition for loading U-Boot when using MMC/SD in raw mode.
287
288config SYS_MMCSD_RAW_MODE_U_BOOT_PARTITION
289 hex "Partition to use to load U-Boot from"
Tom Rini226498b2017-05-22 19:21:57 +0000290 depends on SYS_MMCSD_RAW_MODE_U_BOOT_USE_PARTITION
Dalon Westergreen949123e2017-02-10 17:15:35 -0800291 default 1
292 help
293 Partition on the MMC to load U-Boot from when the MMC is being
294 used in raw mode
295
Dalon Westergreenf0fb4fa2017-02-10 17:15:34 -0800296config SYS_MMCSD_RAW_MODE_U_BOOT_USE_PARTITION_TYPE
297 bool "MMC raw mode: by partition type"
Tom Rini226498b2017-05-22 19:21:57 +0000298 depends on DOS_PARTITION && SYS_MMCSD_RAW_MODE_U_BOOT_USE_PARTITION
Dalon Westergreenf0fb4fa2017-02-10 17:15:34 -0800299 help
300 Use partition type for specifying U-Boot partition on MMC/SD in
301 raw mode. U-Boot will be loaded from the first partition of this
302 type to be found.
303
304config SYS_MMCSD_RAW_MODE_U_BOOT_PARTITION_TYPE
305 hex "Partition Type on the MMC to load U-Boot from"
Tom Rini226498b2017-05-22 19:21:57 +0000306 depends on SYS_MMCSD_RAW_MODE_U_BOOT_USE_PARTITION_TYPE
Dalon Westergreenf0fb4fa2017-02-10 17:15:34 -0800307 help
308 Partition Type on the MMC to load U-Boot from, when the MMC is being
309 used in raw mode.
310
Simon Glass11bde1c2016-09-13 07:05:23 -0600311config SPL_CRC32_SUPPORT
312 bool "Support CRC32"
Simon Goldschmidtdae5c2d2019-02-10 21:34:37 +0100313 default y if SPL_LEGACY_IMAGE_SUPPORT
Simon Glass11bde1c2016-09-13 07:05:23 -0600314 help
Simon Goldschmidtdae5c2d2019-02-10 21:34:37 +0100315 Enable this to support CRC32 in uImages or FIT images within SPL.
316 This is a 32-bit checksum value that can be used to verify images.
317 For FIT images, this is the least secure type of checksum, suitable
318 for detected accidental image corruption. For secure applications you
319 should consider SHA1 or SHA256.
Simon Glass11bde1c2016-09-13 07:05:23 -0600320
321config SPL_MD5_SUPPORT
322 bool "Support MD5"
323 depends on SPL_FIT
324 help
325 Enable this to support MD5 in FIT images within SPL. An MD5
326 checksum is a 128-bit hash value used to check that the image
327 contents have not been corrupted. Note that MD5 is not considered
328 secure as it is possible (with a brute-force attack) to adjust the
329 image while still retaining the same MD5 hash value. For secure
330 applications where images may be changed maliciously, you should
331 consider SHA1 or SHA256.
332
333config SPL_SHA1_SUPPORT
334 bool "Support SHA1"
335 depends on SPL_FIT
Tom Rini089df182017-05-15 12:17:49 -0400336 select SHA1
Simon Glass11bde1c2016-09-13 07:05:23 -0600337 help
338 Enable this to support SHA1 in FIT images within SPL. A SHA1
339 checksum is a 160-bit (20-byte) hash value used to check that the
340 image contents have not been corrupted or maliciously altered.
341 While SHA1 is fairly secure it is coming to the end of its life
Vagrant Cascadian048a92e2019-05-03 14:28:37 -0800342 due to the expanding computing power available to brute-force
Simon Glass11bde1c2016-09-13 07:05:23 -0600343 attacks. For more security, consider SHA256.
344
345config SPL_SHA256_SUPPORT
346 bool "Support SHA256"
347 depends on SPL_FIT
Tom Rini089df182017-05-15 12:17:49 -0400348 select SHA256
Simon Glass11bde1c2016-09-13 07:05:23 -0600349 help
350 Enable this to support SHA256 in FIT images within SPL. A SHA256
351 checksum is a 256-bit (32-byte) hash value used to check that the
352 image contents have not been corrupted. SHA256 is recommended for
353 use in secure applications since (as at 2016) there is no known
354 feasible attack that could produce a 'collision' with differing
355 input data. Use this for the highest security. Note that only the
356 SHA256 variant is supported: SHA512 and others are not currently
357 supported in U-Boot.
358
Philipp Tomsich337bbb62017-11-24 13:26:03 +0100359config SPL_FIT_IMAGE_TINY
360 bool "Remove functionality from SPL FIT loading to reduce size"
361 depends on SPL_FIT
Icenowy Zheng6f796a92018-07-21 16:20:31 +0800362 default y if MACH_SUN50I || MACH_SUN50I_H5 || MACH_SUN50I_H6
Ye Lif6282cd2018-11-20 10:19:15 +0000363 default y if ARCH_IMX8M
Philipp Tomsich337bbb62017-11-24 13:26:03 +0100364 help
365 Enable this to reduce the size of the FIT image loading code
366 in SPL, if space for the SPL binary is very tight.
367
368 This removes the detection of image types (which forces the
369 first image to be treated as having a U-Boot style calling
370 convention) and skips the recording of each loaded payload
371 (i.e. loadable) into the FDT (modifying the loaded FDT to
372 ensure this information is available to the next image
373 invoked).
374
Simon Glass5e148df2017-01-16 07:03:29 -0700375config SPL_CPU_SUPPORT
376 bool "Support CPU drivers"
Simon Glass5e148df2017-01-16 07:03:29 -0700377 help
378 Enable this to support CPU drivers in SPL. These drivers can set
379 up CPUs and provide information about them such as the model and
380 name. This can be useful in SPL since setting up the CPUs earlier
381 may improve boot performance. Enable this option to build the
382 drivers in drivers/cpu as part of an SPL build.
383
Simon Glass11bde1c2016-09-13 07:05:23 -0600384config SPL_CRYPTO_SUPPORT
385 bool "Support crypto drivers"
Simon Glass11bde1c2016-09-13 07:05:23 -0600386 help
387 Enable crypto drivers in SPL. These drivers can be used to
388 accelerate secure boot processing in secure applications. Enable
389 this option to build the drivers in drivers/crypto as part of an
390 SPL build.
391
392config SPL_HASH_SUPPORT
393 bool "Support hashing drivers"
Tom Rini089df182017-05-15 12:17:49 -0400394 select SHA1
395 select SHA256
Simon Glass11bde1c2016-09-13 07:05:23 -0600396 help
397 Enable hashing drivers in SPL. These drivers can be used to
398 accelerate secure boot processing in secure applications. Enable
399 this option to build system-specific drivers for hash acceleration
400 as part of an SPL build.
401
Simon Glass2d424eb2018-11-15 18:43:55 -0700402config TPL_HASH_SUPPORT
403 bool "Support hashing drivers in TPL"
404 select SHA1
405 select SHA256
406 help
407 Enable hashing drivers in SPL. These drivers can be used to
408 accelerate secure boot processing in secure applications. Enable
409 this option to build system-specific drivers for hash acceleration
410 as part of an SPL build.
411
Simon Glass11bde1c2016-09-13 07:05:23 -0600412config SPL_DMA_SUPPORT
413 bool "Support DMA drivers"
Simon Glass11bde1c2016-09-13 07:05:23 -0600414 help
415 Enable DMA (direct-memory-access) drivers in SPL. These drivers
416 can be used to handle memory-to-peripheral data transfer without
417 the CPU moving the data. Enable this option to build the drivers
418 in drivers/dma as part of an SPL build.
419
420config SPL_DRIVERS_MISC_SUPPORT
421 bool "Support misc drivers"
Simon Glass11bde1c2016-09-13 07:05:23 -0600422 help
423 Enable miscellaneous drivers in SPL. These drivers perform various
424 tasks that don't fall nicely into other categories, Enable this
425 option to build the drivers in drivers/misc as part of an SPL
426 build, for those that support building in SPL (not all drivers do).
427
428config SPL_ENV_SUPPORT
429 bool "Support an environment"
Simon Glass11bde1c2016-09-13 07:05:23 -0600430 help
431 Enable environment support in SPL. The U-Boot environment provides
432 a number of settings (essentially name/value pairs) which can
433 control many aspects of U-Boot's operation. Normally this is not
434 needed in SPL as it has a much simpler task with less
435 configuration. But some boards use this to support 'Falcon' boot
436 on EXT2 and FAT, where SPL boots directly into Linux without
Simon Glass00caae62017-08-03 12:22:12 -0600437 starting U-Boot first. Enabling this option will make env_get()
Simon Glass382bee52017-08-03 12:22:09 -0600438 and env_set() available in SPL.
Simon Glass11bde1c2016-09-13 07:05:23 -0600439
B, Ravid2d9bdf2016-09-28 14:46:18 +0530440config SPL_SAVEENV
441 bool "Support save environment"
Tom Rini226498b2017-05-22 19:21:57 +0000442 depends on SPL_ENV_SUPPORT
Jean-Jacques Hiblotd6400c32018-01-04 15:23:32 +0100443 select SPL_MMC_WRITE if ENV_IS_IN_MMC
B, Ravid2d9bdf2016-09-28 14:46:18 +0530444 help
445 Enable save environment support in SPL after setenv. By default
446 the saveenv option is not provided in SPL, but some boards need
447 this support in 'Falcon' boot, where SPL need to boot from
448 different images based on environment variable set by OS. For
449 example OS may set "reboot_image" environment variable to
450 "recovery" inorder to boot recovery image by SPL. The SPL read
451 "reboot_image" and act accordingly and change the reboot_image
Shyam Saini919d25c2018-06-07 19:47:19 +0530452 to default mode using setenv and save the environment.
B, Ravid2d9bdf2016-09-28 14:46:18 +0530453
Simon Glass11bde1c2016-09-13 07:05:23 -0600454config SPL_ETH_SUPPORT
455 bool "Support Ethernet"
456 depends on SPL_ENV_SUPPORT
457 help
458 Enable access to the network subsystem and associated Ethernet
459 drivers in SPL. This permits SPL to load U-Boot over an Ethernet
460 link rather than from an on-board peripheral. Environment support
461 is required since the network stack uses a number of environment
462 variables. See also SPL_NET_SUPPORT.
463
Tien Fong Cheef4b40922019-01-23 14:20:05 +0800464config SPL_FS_EXT4
Simon Glass11bde1c2016-09-13 07:05:23 -0600465 bool "Support EXT filesystems"
Simon Glass11bde1c2016-09-13 07:05:23 -0600466 help
467 Enable support for EXT2/3/4 filesystems with SPL. This permits
468 U-Boot (or Linux in Falcon mode) to be loaded from an EXT
469 filesystem from within SPL. Support for the underlying block
470 device (e.g. MMC or USB) must be enabled separately.
471
Tien Fong Chee0c3a9ed2019-01-23 14:20:03 +0800472config SPL_FS_FAT
Simon Glass11bde1c2016-09-13 07:05:23 -0600473 bool "Support FAT filesystems"
Sekhar Norieedfb892017-06-02 17:53:59 +0530474 select FS_FAT
Simon Glass11bde1c2016-09-13 07:05:23 -0600475 help
476 Enable support for FAT and VFAT filesystems with SPL. This
477 permits U-Boot (or Linux in Falcon mode) to be loaded from a FAT
478 filesystem from within SPL. Support for the underlying block
479 device (e.g. MMC or USB) must be enabled separately.
480
Tien Fong Cheed8c3ea92019-01-23 14:20:04 +0800481config SPL_FAT_WRITE
482 bool "Support write for FAT filesystems"
483 help
484 Enable write support for FAT and VFAT filesystems with SPL.
485 Support for the underlying block device (e.g. MMC or USB) must be
486 enabled separately.
487
Simon Glass11bde1c2016-09-13 07:05:23 -0600488config SPL_FPGA_SUPPORT
489 bool "Support FPGAs"
Simon Glass11bde1c2016-09-13 07:05:23 -0600490 help
491 Enable support for FPGAs in SPL. Field-programmable Gate Arrays
492 provide software-configurable hardware which is typically used to
493 implement peripherals (such as UARTs, LCD displays, MMC) or
494 accelerate custom processing functions, such as image processing
495 or machine learning. Sometimes it is useful to program the FPGA
496 as early as possible during boot, and this option can enable that
497 within SPL.
498
499config SPL_GPIO_SUPPORT
Simon Glass2d424eb2018-11-15 18:43:55 -0700500 bool "Support GPIO in SPL"
Simon Glass11bde1c2016-09-13 07:05:23 -0600501 help
502 Enable support for GPIOs (General-purpose Input/Output) in SPL.
503 GPIOs allow U-Boot to read the state of an input line (high or
504 low) and set the state of an output line. This can be used to
505 drive LEDs, control power to various system parts and read user
506 input. GPIOs can be useful in SPL to enable a 'sign-of-life' LED,
507 for example. Enable this option to build the drivers in
508 drivers/gpio as part of an SPL build.
509
510config SPL_I2C_SUPPORT
511 bool "Support I2C"
Simon Glass11bde1c2016-09-13 07:05:23 -0600512 help
513 Enable support for the I2C (Inter-Integrated Circuit) bus in SPL.
514 I2C works with a clock and data line which can be driven by a
515 one or more masters or slaves. It is a fairly complex bus but is
516 widely used as it only needs two lines for communication. Speeds of
517 400kbps are typical but up to 3.4Mbps is supported by some
518 hardware. I2C can be useful in SPL to configure power management
519 ICs (PMICs) before raising the CPU clock speed, for example.
520 Enable this option to build the drivers in drivers/i2c as part of
521 an SPL build.
522
523config SPL_LIBCOMMON_SUPPORT
524 bool "Support common libraries"
Simon Glass11bde1c2016-09-13 07:05:23 -0600525 help
526 Enable support for common U-Boot libraries within SPL. These
527 libraries include common code to deal with U-Boot images,
528 environment and USB, for example. This option is enabled on many
529 boards. Enable this option to build the code in common/ as part of
530 an SPL build.
531
532config SPL_LIBDISK_SUPPORT
Simon Goldschmidt00416702018-08-16 09:44:55 +0200533 bool "Support disk partitions"
Tom Rini91ff6862018-12-05 08:23:38 -0500534 select PARTITIONS
Simon Glass11bde1c2016-09-13 07:05:23 -0600535 help
536 Enable support for disk partitions within SPL. 'Disk' is something
537 of a misnomer as it includes non-spinning media such as flash (as
538 used in MMC and USB sticks). Partitions provide a way for a disk
539 to be split up into separate regions, with a partition table placed
540 at the start or end which describes the location and size of each
541 'partition'. These partitions are typically uses as individual block
542 devices, typically with an EXT2 or FAT filesystem in each. This
543 option enables whatever partition support has been enabled in
544 U-Boot to also be used in SPL. It brings in the code in disk/.
545
546config SPL_LIBGENERIC_SUPPORT
547 bool "Support generic libraries"
Simon Glass11bde1c2016-09-13 07:05:23 -0600548 help
549 Enable support for generic U-Boot libraries within SPL. These
550 libraries include generic code to deal with device tree, hashing,
551 printf(), compression and the like. This option is enabled on many
552 boards. Enable this option to build the code in lib/ as part of an
553 SPL build.
554
Lokesh Vutla88027412018-08-27 15:57:49 +0530555config SPL_DM_MAILBOX
556 bool "Support Mailbox"
557 help
558 Enable support for Mailbox within SPL. This enable the inter
559 processor communication protocols tobe used within SPL. Enable
560 this option to build the drivers in drivers/mailbox as part of
561 SPL build.
562
Simon Glass11bde1c2016-09-13 07:05:23 -0600563config SPL_MMC_SUPPORT
564 bool "Support MMC"
Tom Rini226498b2017-05-22 19:21:57 +0000565 depends on MMC
Tom Rini91ff6862018-12-05 08:23:38 -0500566 select HAVE_BLOCK_DEVICE
Simon Glass11bde1c2016-09-13 07:05:23 -0600567 help
568 Enable support for MMC (Multimedia Card) within SPL. This enables
569 the MMC protocol implementation and allows any enabled drivers to
570 be used within SPL. MMC can be used with or without disk partition
571 support depending on the application (SPL_LIBDISK_SUPPORT). Enable
572 this option to build the drivers in drivers/mmc as part of an SPL
573 build.
574
Ezequiel Garciabf7c01d2019-05-25 19:25:21 -0300575config SPL_MMC_TINY
576 bool "Tiny MMC framework in SPL"
577 depends on SPL_MMC_SUPPORT
578 default n
579 help
580 Enable MMC framework tinification support. This option is useful if
581 if your SPL is extremely size constrained. Heed the warning, enable
582 this option if and only if you know exactly what you are doing, if
583 you are reading this help text, you most likely have no idea :-)
584
585 The MMC framework is reduced to bare minimum to be useful. No malloc
586 support is needed for the MMC framework operation with this option
587 enabled. The framework supports exactly one MMC device and exactly
588 one MMC driver. The MMC driver can be adjusted to avoid any malloc
589 operations too, which can remove the need for malloc support in SPL
590 and thus further reduce footprint.
591
Jean-Jacques Hiblotd6400c32018-01-04 15:23:32 +0100592config SPL_MMC_WRITE
593 bool "MMC/SD/SDIO card support for write operations in SPL"
594 depends on SPL_MMC_SUPPORT
595 default n
596 help
597 Enable write access to MMC and SD Cards in SPL
598
599
Simon Glass11bde1c2016-09-13 07:05:23 -0600600config SPL_MPC8XXX_INIT_DDR_SUPPORT
601 bool "Support MPC8XXX DDR init"
Simon Glass11bde1c2016-09-13 07:05:23 -0600602 help
603 Enable support for DDR-SDRAM (double-data-rate synchronous dynamic
604 random-access memory) on the MPC8XXX family within SPL. This
605 allows DRAM to be set up before loading U-Boot into that DRAM,
606 where it can run.
607
608config SPL_MTD_SUPPORT
609 bool "Support MTD drivers"
Simon Glass11bde1c2016-09-13 07:05:23 -0600610 help
611 Enable support for MTD (Memory Technology Device) within SPL. MTD
612 provides a block interface over raw NAND and can also be used with
613 SPI flash. This allows SPL to load U-Boot from supported MTD
614 devices. See SPL_NAND_SUPPORT and SPL_ONENAND_SUPPORT for how
615 to enable specific MTD drivers.
616
617config SPL_MUSB_NEW_SUPPORT
618 bool "Support new Mentor Graphics USB"
Simon Glass11bde1c2016-09-13 07:05:23 -0600619 help
620 Enable support for Mentor Graphics USB in SPL. This is a new
621 driver used by some boards. Enable this option to build
622 the drivers in drivers/usb/musb-new as part of an SPL build. The
623 old drivers are in drivers/usb/musb.
624
625config SPL_NAND_SUPPORT
626 bool "Support NAND flash"
Simon Glass11bde1c2016-09-13 07:05:23 -0600627 help
628 Enable support for NAND (Negative AND) flash in SPL. NAND flash
629 can be used to allow SPL to load U-Boot from supported devices.
Miquel Raynala430fa02018-08-16 17:30:07 +0200630 This enables the drivers in drivers/mtd/nand/raw as part of an SPL
Simon Glass11bde1c2016-09-13 07:05:23 -0600631 build.
632
Markus Klotzbuecherc67c3492019-05-15 15:15:57 +0200633config SPL_UBI
634 bool "Support UBI"
635 help
636 Enable support for loading payloads from UBI. See
637 README.ubispl for more info.
638
639if SPL_UBI
Hamish Guthrie6ea31cc2019-05-15 15:15:59 +0200640config SPL_UBI_LOAD_BY_VOLNAME
641 bool "Support loading volumes by name"
642 help
643 This enables support for loading UBI volumes by name. When this
644 is set, CONFIG_SPL_UBI_LOAD_MONITOR_VOLNAME can be used to
645 configure the volume name from which to load U-Boot.
646
Markus Klotzbuecherc67c3492019-05-15 15:15:57 +0200647config SPL_UBI_MAX_VOL_LEBS
648 int "Maximum number of LEBs per volume"
649 depends on SPL_UBI
650 help
651 The maximum number of logical eraseblocks which a static volume
652 to load can contain. Used for sizing the scan data structure.
653
654config SPL_UBI_MAX_PEB_SIZE
655 int "Maximum PEB size"
656 depends on SPL_UBI
657 help
658 The maximum physical erase block size.
659
660config SPL_UBI_MAX_PEBS
661 int "Maximum number of PEBs"
662 depends on SPL_UBI
663 help
664 The maximum physical erase block size. If not overridden by
665 board code, this value will be used as the actual number of PEBs.
666
667config SPL_UBI_PEB_OFFSET
668 int "Offset to first UBI PEB"
669 depends on SPL_UBI
670 help
671 The offset in number of PEBs from the start of flash to the first
672 PEB part of the UBI image.
673
674config SPL_UBI_VID_OFFSET
675 int "Offset to VID header"
676 depends on SPL_UBI
677
678config SPL_UBI_LEB_START
679 int "Offset to LEB in PEB"
680 depends on SPL_UBI
681 help
682 The offset in bytes to the LEB within a PEB.
683
684config SPL_UBI_INFO_ADDR
685 hex "Address to place UBI scan info"
686 depends on SPL_UBI
687 help
688 Address for ubispl to place the scan info. Read README.ubispl to
689 determine the required size
690
691config SPL_UBI_VOL_IDS
692 int "Maximum volume id"
693 depends on SPL_UBI
694 help
695 The maximum volume id which can be loaded. Used for sizing the
696 scan data structure.
697
698config SPL_UBI_LOAD_MONITOR_ID
699 int "id of U-Boot volume"
700 depends on SPL_UBI
701 help
702 The UBI volume id from which to load U-Boot
703
Hamish Guthrie6ea31cc2019-05-15 15:15:59 +0200704config SPL_UBI_LOAD_MONITOR_VOLNAME
705 string "volume name of U-Boot volume"
706 depends on SPL_UBI_LOAD_BY_VOLNAME
707 help
708 The UBI volume name from which to load U-Boot
709
Markus Klotzbuecherc67c3492019-05-15 15:15:57 +0200710config SPL_UBI_LOAD_KERNEL_ID
711 int "id of kernel volume"
712 depends on SPL_OS_BOOT && SPL_UBI
713 help
714 The UBI volume id from which to load the kernel
715
716config SPL_UBI_LOAD_ARGS_ID
717 int "id of kernel args volume"
718 depends on SPL_OS_BOOT && SPL_UBI
719 help
720 The UBI volume id from which to load the device tree
721
Markus Klotzbuechera2257d32019-05-15 15:16:00 +0200722config UBI_SPL_SILENCE_MSG
723 bool "silence UBI SPL messages"
724 default n
725 help
726 Disable messages from UBI SPL. This leaves warnings
727 and errors enabled.
Markus Klotzbuecherc67c3492019-05-15 15:15:57 +0200728
729endif # if SPL_UBI
730
Simon Glass11bde1c2016-09-13 07:05:23 -0600731config SPL_NET_SUPPORT
732 bool "Support networking"
Simon Glass11bde1c2016-09-13 07:05:23 -0600733 help
734 Enable support for network devices (such as Ethernet) in SPL.
735 This permits SPL to load U-Boot over a network link rather than
736 from an on-board peripheral. Environment support is required since
737 the network stack uses a number of environment variables. See also
738 SPL_ETH_SUPPORT.
739
740if SPL_NET_SUPPORT
741config SPL_NET_VCI_STRING
742 string "BOOTP Vendor Class Identifier string sent by SPL"
743 help
744 As defined by RFC 2132 the vendor class identifier field can be
745 sent by the client to identify the vendor type and configuration
746 of a client. This is often used in practice to allow for the DHCP
747 server to specify different files to load depending on if the ROM,
748 SPL or U-Boot itself makes the request
749endif # if SPL_NET_SUPPORT
750
751config SPL_NO_CPU_SUPPORT
752 bool "Drop CPU code in SPL"
Simon Glass11bde1c2016-09-13 07:05:23 -0600753 help
754 This is specific to the ARM926EJ-S CPU. It disables the standard
755 start.S start-up code, presumably so that a replacement can be
756 used on that CPU. You should not enable it unless you know what
757 you are doing.
758
759config SPL_NOR_SUPPORT
760 bool "Support NOR flash"
Simon Glass11bde1c2016-09-13 07:05:23 -0600761 help
762 Enable support for loading U-Boot from memory-mapped NOR (Negative
763 OR) flash in SPL. NOR flash is slow to write but fast to read, and
764 a memory-mapped device makes it very easy to access. Loading from
765 NOR is typically achieved with just a memcpy().
766
Vikas Manochac6d9e9d2017-05-28 12:55:11 -0700767config SPL_XIP_SUPPORT
768 bool "Support XIP"
769 depends on SPL
770 help
771 Enable support for execute in place of U-Boot or kernel image. There
772 is no need to copy image from flash to ram if flash supports execute
773 in place. Its very useful in systems having enough flash but not
774 enough ram to load the image.
775
Simon Glass11bde1c2016-09-13 07:05:23 -0600776config SPL_ONENAND_SUPPORT
777 bool "Support OneNAND flash"
Simon Glass11bde1c2016-09-13 07:05:23 -0600778 help
779 Enable support for OneNAND (Negative AND) flash in SPL. OneNAND is
780 a type of NAND flash and therefore can be used to allow SPL to
781 load U-Boot from supported devices. This enables the drivers in
782 drivers/mtd/onenand as part of an SPL build.
783
Heiko Schocherc20ae2f2016-10-06 07:55:15 +0200784config SPL_OS_BOOT
785 bool "Activate Falcon Mode"
Tom Rini226498b2017-05-22 19:21:57 +0000786 depends on !TI_SECURE_DEVICE
Heiko Schocherc20ae2f2016-10-06 07:55:15 +0200787 default n
788 help
789 Enable booting directly to an OS from SPL.
790 for more info read doc/README.falcon
791
Heiko Schocher29d3bc72016-10-06 07:55:16 +0200792if SPL_OS_BOOT
793config SYS_OS_BASE
794 hex "addr, where OS is found"
Tom Rini226498b2017-05-22 19:21:57 +0000795 depends on SPL_NOR_SUPPORT
Heiko Schocher29d3bc72016-10-06 07:55:16 +0200796 help
797 Specify the address, where the OS image is found, which
798 gets booted.
799
800endif # SPL_OS_BOOT
801
York Sun7550dbe2018-06-14 14:38:48 -0700802config SPL_PAYLOAD
803 string "SPL payload"
804 default "tpl/u-boot-with-tpl.bin" if TPL
805 default "u-boot.bin"
806 help
Chris Packham2dcfa052019-01-13 22:13:20 +1300807 Payload for SPL boot. For backward compatibility, default to
York Sun7550dbe2018-06-14 14:38:48 -0700808 u-boot.bin, i.e. RAW image without any header. In case of
809 TPL, tpl/u-boot-with-tpl.bin. For new boards, suggest to
810 use u-boot.img.
811
Sekhar Norid50d6812018-12-06 15:40:08 +0530812config SPL_PCI
Simon Glass2446b6b2017-01-16 07:03:30 -0700813 bool "Support PCI drivers"
Simon Glass2446b6b2017-01-16 07:03:30 -0700814 help
815 Enable support for PCI in SPL. For platforms that need PCI to boot,
816 or must perform some init using PCI in SPL, this provides the
817 necessary driver support. This enables the drivers in drivers/pci
818 as part of an SPL build.
819
Simon Glassbbe41ab2017-01-16 07:03:33 -0700820config SPL_PCH_SUPPORT
821 bool "Support PCH drivers"
Simon Glassbbe41ab2017-01-16 07:03:33 -0700822 help
823 Enable support for PCH (Platform Controller Hub) devices in SPL.
824 These are used to set up GPIOs and the SPI peripheral early in
825 boot. This enables the drivers in drivers/pch as part of an SPL
826 build.
827
Simon Glass11bde1c2016-09-13 07:05:23 -0600828config SPL_POST_MEM_SUPPORT
829 bool "Support POST drivers"
Simon Glass11bde1c2016-09-13 07:05:23 -0600830 help
831 Enable support for POST (Power-on Self Test) in SPL. POST is a
832 procedure that checks that the hardware (CPU or board) appears to
833 be functionally correctly. It is a sanity check that can be
834 performed before booting. This enables the drivers in post/drivers
835 as part of an SPL build.
836
Ley Foon Tanbfc6bae2018-06-14 18:45:19 +0800837config SPL_DM_RESET
Patrick Delaunay0e373c02018-03-12 10:46:05 +0100838 bool "Support reset drivers"
839 depends on SPL
840 help
841 Enable support for reset control in SPL.
842 That can be useful in SPL to handle IP reset in driver, as in U-Boot,
843 by using the generic reset API provided by driver model.
844 This enables the drivers in drivers/reset as part of an SPL build.
845
Simon Glass11bde1c2016-09-13 07:05:23 -0600846config SPL_POWER_SUPPORT
847 bool "Support power drivers"
Simon Glass11bde1c2016-09-13 07:05:23 -0600848 help
849 Enable support for power control in SPL. This includes support
850 for PMICs (Power-management Integrated Circuits) and some of the
851 features provided by PMICs. In particular, voltage regulators can
852 be used to enable/disable power and vary its voltage. That can be
853 useful in SPL to turn on boot peripherals and adjust CPU voltage
854 so that the clock speed can be increased. This enables the drivers
855 in drivers/power, drivers/power/pmic and drivers/power/regulator
856 as part of an SPL build.
857
Peng Fane13278c2018-07-27 10:20:37 +0800858config SPL_POWER_DOMAIN
859 bool "Support power domain drivers"
860 help
861 Enable support for power domain control in SPL. Many SoCs allow
862 power to be applied to or removed from portions of the SoC (power
863 domains). This may be used to save power. This API provides the
864 means to control such power management hardware. This enables
865 the drivers in drivers/power/domain as part of a SPL build.
866
Stefan Agner22802f42016-12-23 07:51:53 +0100867config SPL_RAM_SUPPORT
868 bool "Support booting from RAM"
Stefan Agner22802f42016-12-23 07:51:53 +0100869 default y if MICROBLAZE || ARCH_SOCFPGA || TEGRA || ARCH_ZYNQ
870 help
871 Enable booting of an image in RAM. The image can be preloaded or
872 it can be loaded by SPL directly into RAM (e.g. using USB).
873
Stefan Agnerf417d402016-12-23 07:51:52 +0100874config SPL_RAM_DEVICE
875 bool "Support booting from preloaded image in RAM"
Stefan Agner22802f42016-12-23 07:51:53 +0100876 depends on SPL_RAM_SUPPORT
Stefan Agnerf417d402016-12-23 07:51:52 +0100877 default y if MICROBLAZE || ARCH_SOCFPGA || TEGRA || ARCH_ZYNQ
878 help
879 Enable booting of an image already loaded in RAM. The image has to
880 be already in memory when SPL takes over, e.g. loaded by the boot
881 ROM.
882
Lokesh Vutla08c45312018-08-27 15:57:53 +0530883config SPL_REMOTEPROC
884 bool "Support REMOTEPROCS"
885 help
886 Enable support for REMOTEPROCs in SPL. This permits to load
887 a remote processor firmware in SPL.
888
Simon Glass30bf8a02017-01-16 07:03:31 -0700889config SPL_RTC_SUPPORT
890 bool "Support RTC drivers"
Simon Glass30bf8a02017-01-16 07:03:31 -0700891 help
892 Enable RTC (Real-time Clock) support in SPL. This includes support
893 for reading and setting the time. Some RTC devices also have some
894 non-volatile (battery-backed) memory which is accessible if
895 needed. This enables the drivers in drivers/rtc as part of an SPL
896 build.
897
Simon Glass11bde1c2016-09-13 07:05:23 -0600898config SPL_SATA_SUPPORT
899 bool "Support loading from SATA"
Simon Glass11bde1c2016-09-13 07:05:23 -0600900 help
901 Enable support for SATA (Serial AT attachment) in SPL. This allows
902 use of SATA devices such as hard drives and flash drivers for
903 loading U-Boot. SATA is used in higher-end embedded systems and
904 can provide higher performance than MMC , at somewhat higher
905 expense and power consumption. This enables loading from SATA
906 using a configured device.
907
908config SPL_SERIAL_SUPPORT
909 bool "Support serial"
Alex Kiernan14ad44a2018-04-19 04:32:54 +0000910 select SPL_PRINTF
911 select SPL_STRTO
Simon Glass11bde1c2016-09-13 07:05:23 -0600912 help
913 Enable support for serial in SPL. This allows use of a serial UART
914 for displaying messages while SPL is running. It also brings in
915 printf() and panic() functions. This should normally be enabled
916 unless there are space reasons not to. Even then, consider
917 enabling USE_TINY_PRINTF which is a small printf() version.
918
919config SPL_SPI_FLASH_SUPPORT
920 bool "Support SPI flash drivers"
Simon Glass11bde1c2016-09-13 07:05:23 -0600921 help
922 Enable support for using SPI flash in SPL, and loading U-Boot from
923 SPI flash. SPI flash (Serial Peripheral Bus flash) is named after
924 the SPI bus that is used to connect it to a system. It is a simple
925 but fast bidirectional 4-wire bus (clock, chip select and two data
926 lines). This enables the drivers in drivers/mtd/spi as part of an
927 SPL build. This normally requires SPL_SPI_SUPPORT.
928
Vignesh R0c6f1872019-02-05 11:29:20 +0530929if SPL_SPI_FLASH_SUPPORT
930
Vignesh R778572d2019-02-05 11:29:25 +0530931config SPL_SPI_FLASH_TINY
932 bool "Enable low footprint SPL SPI Flash support"
933 depends on !SPI_FLASH_BAR
Vignesh R72875972019-02-05 11:29:26 +0530934 default y if SPI_FLASH
Vignesh R778572d2019-02-05 11:29:25 +0530935 help
936 Enable lightweight SPL SPI Flash support that supports just reading
937 data/images from flash. No support to write/erase flash. Enable
938 this if you have SPL size limitations and don't need full
939 fledged SPI flash support.
940
Vignesh R0c6f1872019-02-05 11:29:20 +0530941config SPL_SPI_FLASH_SFDP_SUPPORT
942 bool "SFDP table parsing support for SPI NOR flashes"
Vignesh R778572d2019-02-05 11:29:25 +0530943 depends on !SPI_FLASH_BAR && !SPL_SPI_FLASH_TINY
Vignesh R0c6f1872019-02-05 11:29:20 +0530944 help
945 Enable support for parsing and auto discovery of parameters for
946 SPI NOR flashes using Serial Flash Discoverable Parameters (SFDP)
947 tables as per JESD216 standard in SPL.
948
Marek Vasut55500432018-04-07 16:05:27 +0200949config SPL_SPI_LOAD
950 bool "Support loading from SPI flash"
Marek Vasut55500432018-04-07 16:05:27 +0200951 help
952 Enable support for loading next stage, U-Boot or otherwise, from
953 SPI NOR in U-Boot SPL.
954
Vignesh R0c6f1872019-02-05 11:29:20 +0530955endif # SPL_SPI_FLASH_SUPPORT
956
Simon Glass11bde1c2016-09-13 07:05:23 -0600957config SPL_SPI_SUPPORT
958 bool "Support SPI drivers"
Simon Glass11bde1c2016-09-13 07:05:23 -0600959 help
960 Enable support for using SPI in SPL. This is used for connecting
961 to SPI flash for loading U-Boot. See SPL_SPI_FLASH_SUPPORT for
962 more details on that. The SPI driver provides the transport for
963 data between the SPI flash and the CPU. This option can be used to
964 enable SPI drivers that are needed for other purposes also, such
965 as a SPI PMIC.
966
Faiz Abbas8502f9f2017-11-14 16:12:31 +0530967config SPL_THERMAL
968 bool "Driver support for thermal devices"
969 help
970 Enable support for temperature-sensing devices. Some SoCs have on-chip
971 temperature sensors to permit warnings, speed throttling or even
972 automatic power-off when the temperature gets too high or low. Other
973 devices may be discrete but connected on a suitable bus.
974
Simon Glass11bde1c2016-09-13 07:05:23 -0600975config SPL_USB_HOST_SUPPORT
976 bool "Support USB host drivers"
Tom Rini91ff6862018-12-05 08:23:38 -0500977 select HAVE_BLOCK_DEVICE
Simon Glass11bde1c2016-09-13 07:05:23 -0600978 help
979 Enable access to USB (Universal Serial Bus) host devices so that
980 SPL can load U-Boot from a connected USB peripheral, such as a USB
981 flash stick. While USB takes a little longer to start up than most
982 buses, it is very flexible since many different types of storage
983 device can be attached. This option enables the drivers in
984 drivers/usb/host as part of an SPL build.
985
Abel Vesa79536012019-02-01 16:40:07 +0000986config SPL_USB_STORAGE
Simon Glass11bde1c2016-09-13 07:05:23 -0600987 bool "Support loading from USB"
Abel Vesa79536012019-02-01 16:40:07 +0000988 depends on SPL_USB_HOST_SUPPORT && !(BLK && !DM_USB)
Simon Glass11bde1c2016-09-13 07:05:23 -0600989 help
990 Enable support for USB devices in SPL. This allows use of USB
991 devices such as hard drives and flash drivers for loading U-Boot.
992 The actual drivers are enabled separately using the normal U-Boot
993 config options. This enables loading from USB using a configured
994 device.
995
Jean-Jacques Hiblotf811e972019-01-10 15:44:13 +0100996config SPL_USB_GADGET
Stefan Agnere94793c2016-11-21 10:58:53 -0800997 bool "Suppport USB Gadget drivers"
Stefan Agnere94793c2016-11-21 10:58:53 -0800998 help
999 Enable USB Gadget API which allows to enable USB device functions
1000 in SPL.
1001
Jean-Jacques Hiblotf811e972019-01-10 15:44:13 +01001002if SPL_USB_GADGET
Stefan Agnere94793c2016-11-21 10:58:53 -08001003
Faiz Abbasb432b1e2018-02-16 21:17:44 +05301004config SPL_USB_ETHER
Stefan Agnere94793c2016-11-21 10:58:53 -08001005 bool "Support USB Ethernet drivers"
1006 help
1007 Enable access to the USB network subsystem and associated
1008 drivers in SPL. This permits SPL to load U-Boot over a
1009 USB-connected Ethernet link (such as a USB Ethernet dongle) rather
1010 than from an onboard peripheral. Environment support is required
1011 since the network stack uses a number of environment variables.
1012 See also SPL_NET_SUPPORT and SPL_ETH_SUPPORT.
1013
Andrew F. Davis6536ca42019-01-17 13:43:02 -06001014config SPL_DFU
Fabio Estevamc3c19c22018-08-31 10:02:28 -03001015 bool "Support DFU (Device Firmware Upgrade)"
Stefan Agner59917032016-11-21 10:58:52 -08001016 select SPL_HASH_SUPPORT
B, Ravi66928af2017-05-04 15:45:29 +05301017 select SPL_DFU_NO_RESET
B, Ravi1b19cbd2017-05-04 15:45:28 +05301018 depends on SPL_RAM_SUPPORT
Stefan Agner59917032016-11-21 10:58:52 -08001019 help
Fabio Estevamc3c19c22018-08-31 10:02:28 -03001020 This feature enables the DFU (Device Firmware Upgrade) in SPL with
Stefan Agner59917032016-11-21 10:58:52 -08001021 RAM memory device support. The ROM code will load and execute
1022 the SPL built with dfu. The user can load binaries (u-boot/kernel) to
1023 selected device partition from host-pc using dfu-utils.
1024 This feature is useful to flash the binaries to factory or bare-metal
1025 boards using USB interface.
1026
1027choice
1028 bool "DFU device selection"
Andrew F. Davis6536ca42019-01-17 13:43:02 -06001029 depends on SPL_DFU
Stefan Agner59917032016-11-21 10:58:52 -08001030
1031config SPL_DFU_RAM
1032 bool "RAM device"
Andrew F. Davis6536ca42019-01-17 13:43:02 -06001033 depends on SPL_DFU && SPL_RAM_SUPPORT
Stefan Agner59917032016-11-21 10:58:52 -08001034 help
1035 select RAM/DDR memory device for loading binary images
1036 (u-boot/kernel) to the selected device partition using
1037 DFU and execute the u-boot/kernel from RAM.
1038
1039endchoice
1040
Stefan Agnera3774c12017-08-16 11:00:54 -07001041config SPL_USB_SDP_SUPPORT
1042 bool "Support SDP (Serial Download Protocol)"
1043 help
1044 Enable Serial Download Protocol (SDP) device support in SPL. This
1045 allows to download images into memory and execute (jump to) them
1046 using the same protocol as implemented by the i.MX family's boot ROM.
Stefan Agnere94793c2016-11-21 10:58:53 -08001047endif
1048
Simon Glass11bde1c2016-09-13 07:05:23 -06001049config SPL_WATCHDOG_SUPPORT
1050 bool "Support watchdog drivers"
Simon Glass11bde1c2016-09-13 07:05:23 -06001051 help
1052 Enable support for watchdog drivers in SPL. A watchdog is
1053 typically a hardware peripheral which can reset the system when it
1054 detects no activity for a while (such as a software crash). This
1055 enables the drivers in drivers/watchdog as part of an SPL build.
1056
1057config SPL_YMODEM_SUPPORT
1058 bool "Support loading using Ymodem"
Alex Kiernan3bac19c2018-04-19 04:32:52 +00001059 depends on SPL_SERIAL_SUPPORT
Simon Glass11bde1c2016-09-13 07:05:23 -06001060 help
1061 While loading from serial is slow it can be a useful backup when
1062 there is no other option. The Ymodem protocol provides a reliable
1063 means of transmitting U-Boot over a serial line for using in SPL,
1064 with a checksum to ensure correctness.
1065
Philipp Tomsichaa122f62017-09-13 21:29:36 +02001066config SPL_ATF
Kever Yangbcc17262017-05-05 11:47:45 +08001067 bool "Support ARM Trusted Firmware"
Tom Rini226498b2017-05-22 19:21:57 +00001068 depends on ARM64
Kever Yangbcc17262017-05-05 11:47:45 +08001069 help
Philipp Tomsichd21fb632018-01-02 21:16:43 +01001070 ATF(ARM Trusted Firmware) is a component for ARM AArch64 which
1071 is loaded by SPL (which is considered as BL2 in ATF terminology).
Kever Yangbcc17262017-05-05 11:47:45 +08001072 More detail at: https://github.com/ARM-software/arm-trusted-firmware
1073
Philipp Tomsichd21fb632018-01-02 21:16:43 +01001074config SPL_ATF_NO_PLATFORM_PARAM
1075 bool "Pass no platform parameter"
1076 depends on SPL_ATF
1077 help
1078 While we expect to call a pointer to a valid FDT (or NULL)
1079 as the platform parameter to an ATF, some ATF versions are
1080 not U-Boot aware and have an insufficiently robust parameter
1081 validation to gracefully reject a FDT being passed.
1082
1083 If this option is enabled, the spl_atf os-type handler will
1084 always pass NULL for the platform parameter.
1085
1086 If your ATF is affected, say Y.
1087
Alex Kiernan3bf5f132018-03-15 22:11:46 +00001088config SPL_AM33XX_ENABLE_RTC32K_OSC
1089 bool "Enable the RTC32K OSC on AM33xx based platforms"
1090 default y if AM33XX
1091 help
1092 Enable access to the AM33xx RTC and select the external 32kHz clock
1093 source.
1094
Kever Yang70fe2872018-08-23 17:17:59 +08001095config SPL_OPTEE
1096 bool "Support OP-TEE Trusted OS"
1097 depends on ARM
1098 help
1099 OP-TEE is an open source Trusted OS which is loaded by SPL.
1100 More detail at: https://github.com/OP-TEE/optee_os
1101
Tom Rini226498b2017-05-22 19:21:57 +00001102config TPL
1103 bool
1104 depends on SUPPORT_TPL
1105 prompt "Enable TPL"
1106 help
1107 If you want to build TPL as well as the normal image and SPL, say Y.
1108
1109if TPL
1110
Simon Glassb0edea32018-11-15 18:44:09 -07001111config TPL_HANDOFF
1112 bool "Pass hand-off information from TPL to SPL and U-Boot proper"
1113 depends on HANDOFF
1114 default y
1115 help
1116 This option enables TPL to write handoff information. This can be
1117 used to pass information like the size of SDRAM from TPL to U-Boot
1118 proper. The information is also available to SPL if it is useful
1119 there.
1120
Kever Yangaf2f4422018-01-20 18:00:26 +08001121config TPL_BOARD_INIT
1122 bool "Call board-specific initialization in TPL"
1123 help
1124 If this option is enabled, U-Boot will call the function
1125 spl_board_init() from board_init_r(). This function should be
1126 provided by the board.
1127
Philipp Tomsichdd6fbcb2017-07-28 19:20:49 +02001128config TPL_LDSCRIPT
1129 string "Linker script for the TPL stage"
1130 depends on TPL
Tom Rini2f41ade2019-01-22 17:09:26 -05001131 default "arch/arm/cpu/armv8/u-boot-spl.lds" if ARM64
1132 default "arch/$(ARCH)/cpu/u-boot-spl.lds"
Philipp Tomsichdd6fbcb2017-07-28 19:20:49 +02001133 help
1134 The TPL stage will usually require a different linker-script
1135 (as it runs from a different memory region) than the regular
1136 U-Boot stage. Set this to the path of the linker-script to
1137 be used for TPL.
1138
Philipp Tomsichb3ed6ce2017-07-28 20:02:34 +02001139 May be left empty to trigger the Makefile infrastructure to
1140 fall back to the linker-script used for the SPL stage.
1141
1142config TPL_NEEDS_SEPARATE_TEXT_BASE
1143 bool "TPL needs a separate text-base"
1144 default n
1145 depends on TPL
1146 help
1147 Enable, if the TPL stage should not inherit its text-base
1148 from the SPL stage. When enabled, a base address for the
1149 .text sections of the TPL stage has to be set below.
1150
1151config TPL_NEEDS_SEPARATE_STACK
1152 bool "TPL needs a separate initial stack-pointer"
1153 default n
1154 depends on TPL
1155 help
1156 Enable, if the TPL stage should not inherit its initial
1157 stack-pointer from the settings for the SPL stage.
1158
1159config TPL_TEXT_BASE
1160 hex "Base address for the .text section of the TPL stage"
1161 depends on TPL_NEEDS_SEPARATE_TEXT_BASE
1162 help
1163 The base address for the .text section of the TPL stage.
1164
1165config TPL_MAX_SIZE
1166 int "Maximum size (in bytes) for the TPL stage"
Philipp Tomsich5aa49af2017-07-28 20:20:41 +02001167 default 0
Philipp Tomsichb3ed6ce2017-07-28 20:02:34 +02001168 depends on TPL
1169 help
1170 The maximum size (in bytes) of the TPL stage.
1171
1172config TPL_STACK
1173 hex "Address of the initial stack-pointer for the TPL stage"
1174 depends on TPL_NEEDS_SEPARATE_STACK
1175 help
1176 The address of the initial stack-pointer for the TPL stage.
1177 Usually this will be the (aligned) top-of-stack.
1178
Philipp Tomsicha954fa32017-07-04 14:24:53 +02001179config TPL_BOOTROM_SUPPORT
1180 bool "Support returning to the BOOTROM (from TPL)"
1181 help
1182 Some platforms (e.g. the Rockchip RK3368) provide support in their
1183 ROM for loading the next boot-stage after performing basic setup
1184 from the TPL stage.
1185
1186 Enable this option, to return to the BOOTROM through the
1187 BOOT_DEVICE_BOOTROM (or fall-through to the next boot device in the
1188 boot device list, if not implemented for a given board)
1189
Philipp Tomsichc3916e72017-07-04 14:27:02 +02001190config TPL_DRIVERS_MISC_SUPPORT
1191 bool "Support misc drivers in TPL"
1192 help
1193 Enable miscellaneous drivers in TPL. These drivers perform various
1194 tasks that don't fall nicely into other categories, Enable this
1195 option to build the drivers in drivers/misc as part of an TPL
1196 build, for those that support building in TPL (not all drivers do).
1197
Simon Glassf73329e2016-09-12 23:18:27 -06001198config TPL_ENV_SUPPORT
1199 bool "Support an environment"
Simon Glassf73329e2016-09-12 23:18:27 -06001200 help
1201 Enable environment support in TPL. See SPL_ENV_SUPPORT for details.
1202
Simon Glass2d424eb2018-11-15 18:43:55 -07001203config TPL_GPIO_SUPPORT
1204 bool "Support GPIO in TPL"
1205 help
1206 Enable support for GPIOs (General-purpose Input/Output) in TPL.
1207 GPIOs allow U-Boot to read the state of an input line (high or
1208 low) and set the state of an output line. This can be used to
1209 drive LEDs, control power to various system parts and read user
1210 input. GPIOs can be useful in TPL to enable a 'sign-of-life' LED,
1211 for example. Enable this option to build the drivers in
1212 drivers/gpio as part of an TPL build.
1213
Simon Glassf73329e2016-09-12 23:18:27 -06001214config TPL_I2C_SUPPORT
1215 bool "Support I2C"
Simon Glassf73329e2016-09-12 23:18:27 -06001216 help
Philipp Tomsich616bd092017-07-28 17:03:03 +02001217 Enable support for the I2C bus in TPL. See SPL_I2C_SUPPORT for
Simon Glassf73329e2016-09-12 23:18:27 -06001218 details.
1219
1220config TPL_LIBCOMMON_SUPPORT
1221 bool "Support common libraries"
Simon Glassf73329e2016-09-12 23:18:27 -06001222 help
1223 Enable support for common U-Boot libraries within TPL. See
1224 SPL_LIBCOMMON_SUPPORT for details.
1225
1226config TPL_LIBGENERIC_SUPPORT
1227 bool "Support generic libraries"
Simon Glassf73329e2016-09-12 23:18:27 -06001228 help
1229 Enable support for generic U-Boot libraries within TPL. See
1230 SPL_LIBGENERIC_SUPPORT for details.
1231
1232config TPL_MPC8XXX_INIT_DDR_SUPPORT
1233 bool "Support MPC8XXX DDR init"
Simon Glassf73329e2016-09-12 23:18:27 -06001234 help
1235 Enable support for DDR-SDRAM on the MPC8XXX family within TPL. See
1236 SPL_MPC8XXX_INIT_DDR_SUPPORT for details.
1237
1238config TPL_MMC_SUPPORT
1239 bool "Support MMC"
Tom Rini226498b2017-05-22 19:21:57 +00001240 depends on MMC
Simon Glassf73329e2016-09-12 23:18:27 -06001241 help
1242 Enable support for MMC within TPL. See SPL_MMC_SUPPORT for details.
1243
1244config TPL_NAND_SUPPORT
1245 bool "Support NAND flash"
Simon Glassf73329e2016-09-12 23:18:27 -06001246 help
Philipp Tomsich616bd092017-07-28 17:03:03 +02001247 Enable support for NAND in TPL. See SPL_NAND_SUPPORT for details.
Simon Glassf73329e2016-09-12 23:18:27 -06001248
Sekhar Norid50d6812018-12-06 15:40:08 +05301249config TPL_PCI
Simon Glass2d424eb2018-11-15 18:43:55 -07001250 bool "Support PCI drivers"
1251 help
1252 Enable support for PCI in TPL. For platforms that need PCI to boot,
1253 or must perform some init using PCI in SPL, this provides the
1254 necessary driver support. This enables the drivers in drivers/pci
1255 as part of a TPL build.
1256
1257config TPL_PCH_SUPPORT
1258 bool "Support PCH drivers"
1259 help
1260 Enable support for PCH (Platform Controller Hub) devices in TPL.
1261 These are used to set up GPIOs and the SPI peripheral early in
1262 boot. This enables the drivers in drivers/pch as part of a TPL
1263 build.
1264
Marek Vasutd79dfd42018-04-07 17:03:45 +02001265config TPL_RAM_SUPPORT
1266 bool "Support booting from RAM"
1267 help
1268 Enable booting of an image in RAM. The image can be preloaded or
1269 it can be loaded by TPL directly into RAM (e.g. using USB).
1270
1271config TPL_RAM_DEVICE
1272 bool "Support booting from preloaded image in RAM"
1273 depends on TPL_RAM_SUPPORT
1274 help
1275 Enable booting of an image already loaded in RAM. The image has to
1276 be already in memory when TPL takes over, e.g. loaded by the boot
1277 ROM.
1278
Simon Glass2d424eb2018-11-15 18:43:55 -07001279config TPL_RTC_SUPPORT
1280 bool "Support RTC drivers"
1281 help
1282 Enable RTC (Real-time Clock) support in TPL. This includes support
1283 for reading and setting the time. Some RTC devices also have some
1284 non-volatile (battery-backed) memory which is accessible if
1285 needed. This enables the drivers in drivers/rtc as part of an TPL
1286 build.
1287
Simon Glassf73329e2016-09-12 23:18:27 -06001288config TPL_SERIAL_SUPPORT
1289 bool "Support serial"
Alex Kiernan14ad44a2018-04-19 04:32:54 +00001290 select TPL_PRINTF
1291 select TPL_STRTO
Simon Glassf73329e2016-09-12 23:18:27 -06001292 help
Philipp Tomsich616bd092017-07-28 17:03:03 +02001293 Enable support for serial in TPL. See SPL_SERIAL_SUPPORT for
Simon Glassf73329e2016-09-12 23:18:27 -06001294 details.
1295
1296config TPL_SPI_FLASH_SUPPORT
1297 bool "Support SPI flash drivers"
Simon Glassf73329e2016-09-12 23:18:27 -06001298 help
Philipp Tomsich616bd092017-07-28 17:03:03 +02001299 Enable support for using SPI flash in TPL. See SPL_SPI_FLASH_SUPPORT
Simon Glassf73329e2016-09-12 23:18:27 -06001300 for details.
1301
Marek Vasut1e725e22018-04-07 16:05:46 +02001302config TPL_SPI_LOAD
1303 bool "Support loading from SPI flash"
1304 depends on TPL_SPI_FLASH_SUPPORT
1305 help
1306 Enable support for loading next stage, U-Boot or otherwise, from
1307 SPI NOR in U-Boot TPL.
1308
Simon Glassf73329e2016-09-12 23:18:27 -06001309config TPL_SPI_SUPPORT
1310 bool "Support SPI drivers"
Simon Glassf73329e2016-09-12 23:18:27 -06001311 help
Philipp Tomsich616bd092017-07-28 17:03:03 +02001312 Enable support for using SPI in TPL. See SPL_SPI_SUPPORT for
Simon Glassf73329e2016-09-12 23:18:27 -06001313 details.
1314
Marek Vasut6ce3d672018-04-07 16:06:11 +02001315config TPL_YMODEM_SUPPORT
1316 bool "Support loading using Ymodem"
Alex Kiernan3bac19c2018-04-19 04:32:52 +00001317 depends on TPL_SERIAL_SUPPORT
Marek Vasut6ce3d672018-04-07 16:06:11 +02001318 help
1319 While loading from serial is slow it can be a useful backup when
1320 there is no other option. The Ymodem protocol provides a reliable
1321 means of transmitting U-Boot over a serial line for using in TPL,
1322 with a checksum to ensure correctness.
1323
Tom Rini226498b2017-05-22 19:21:57 +00001324endif # TPL
1325
Eugen Hristev0be07872019-05-24 09:38:10 +03001326config SPL_AT91_MCK_BYPASS
1327 bool "Use external clock signal as a source of main clock for AT91 platforms"
1328 depends on ARCH_AT91
1329 default n
1330 help
1331 Use external 8 to 24 Mhz clock signal as source of main clock instead
1332 of an external crystal oscillator.
1333 This option disables the internal driving on the XOUT pin.
1334 The external source has to provide a stable clock on the XIN pin.
1335 If this option is disabled, the SoC expects a crystal oscillator
1336 that needs driving on both XIN and XOUT lines.
1337
Tom Rini226498b2017-05-22 19:21:57 +00001338endif # SPL
Simon Glass11bde1c2016-09-13 07:05:23 -06001339endmenu