blob: 50ff113cab21c60ea84e7dbb399ebf50a6ad6496 [file] [log] [blame]
Simon Glass7eec8842022-04-30 00:56:52 -06001menu "SPL / TPL / VPL"
Simon Glass1e3911a2016-09-13 07:05:23 -06002
Simon Glassffe19762016-09-12 23:18:22 -06003config SUPPORT_SPL
4 bool
5
6config SUPPORT_TPL
7 bool
8
Simon Glass7eec8842022-04-30 00:56:52 -06009config SUPPORT_VPL
10 bool
11
B, Ravi4cca5cf2017-05-04 15:45:29 +053012config SPL_DFU_NO_RESET
13 bool
14
Simon Glassffe19762016-09-12 23:18:22 -060015config SPL
16 bool
17 depends on SUPPORT_SPL
18 prompt "Enable SPL"
19 help
20 If you want to build SPL as well as the normal image, say Y.
21
Tom Rini623d67e2018-02-06 12:15:38 -050022config SPL_FRAMEWORK
23 bool "Support SPL based upon the common SPL framework"
24 depends on SPL
25 default y
26 help
27 Enable the SPL framework under common/spl/. This framework
28 supports MMC, NAND and YMODEM and other methods loading of U-Boot
29 and the Linux Kernel. If unsure, say Y.
30
Philippe Reynesc4510f42019-09-19 16:18:39 +020031config SPL_FRAMEWORK_BOARD_INIT_F
32 bool "Define a generic function board_init_f"
33 depends on SPL_FRAMEWORK
34 help
35 Define a generic function board_init_f that:
36 - initialize the spl (spl_early_init)
37 - initialize the serial (preloader_console_init)
38 Unless you want to provide your own board_init_f, you should say Y.
39
Simon Goldschmidtc2722832019-05-24 22:07:04 +020040config SPL_SIZE_LIMIT
Simon Glassa8f0c942019-09-25 08:56:28 -060041 hex "Maximum size of SPL image"
Simon Goldschmidtc2722832019-05-24 22:07:04 +020042 depends on SPL
Ovidiu Panaitb7232622020-09-25 21:12:56 +030043 default 0x11000 if ARCH_MX6 && !MX6_OCRAM_256KB
44 default 0x31000 if ARCH_MX6 && MX6_OCRAM_256KB
45 default 0x0
Simon Goldschmidtc2722832019-05-24 22:07:04 +020046 help
47 Specifies the maximum length of the U-Boot SPL image.
48 If this value is zero, it is ignored.
49
50config SPL_SIZE_LIMIT_SUBTRACT_GD
51 bool "SPL image size check: provide space for global data"
52 depends on SPL_SIZE_LIMIT > 0
53 help
54 If enabled, aligned size of global data is reserved in
55 SPL_SIZE_LIMIT check to ensure such an image does not overflow SRAM
56 if SPL_SIZE_LIMIT describes the size of SRAM available for SPL when
57 pre-reloc global data is put into this SRAM, too.
58
59config SPL_SIZE_LIMIT_SUBTRACT_MALLOC
60 bool "SPL image size check: provide space for malloc() pool before relocation"
61 depends on SPL_SIZE_LIMIT > 0
62 help
63 If enabled, SPL_SYS_MALLOC_F_LEN is reserved in SPL_SIZE_LIMIT check
64 to ensure such an image does not overflow SRAM if SPL_SIZE_LIMIT
65 describes the size of SRAM available for SPL when pre-reloc malloc
66 pool is put into this SRAM, too.
67
68config SPL_SIZE_LIMIT_PROVIDE_STACK
69 hex "SPL image size check: provide stack space before relocation"
70 depends on SPL_SIZE_LIMIT > 0
71 default 0
72 help
73 If set, this size is reserved in SPL_SIZE_LIMIT check to ensure such
74 an image does not overflow SRAM if SPL_SIZE_LIMIT describes the size
75 of SRAM available for SPL when the stack required before reolcation
76 uses this SRAM, too.
77
Simon Goldschmidt0b820852019-07-16 22:30:36 +020078config SPL_SYS_STACK_F_CHECK_BYTE
79 hex
80 default 0xaa
81 help
82 Constant used to check the stack
83
84config SPL_SYS_REPORT_STACK_F_USAGE
85 depends on SPL_SIZE_LIMIT_PROVIDE_STACK != 0
86 bool "Check and report stack usage in SPL before relocation"
87 help
88 If this option is enabled, the initial SPL stack is filled with 0xaa
89 very early, up to the size configured with
90 SPL_SIZE_LIMIT_PROVIDE_STACK.
91 Later when SPL is done using this initial stack and switches to a
92 stack in DRAM, the actually used size of this initial stack is
93 reported by examining the memory and searching for the lowest
94 occurrence of non 0xaa bytes.
95 This default implementation works for stacks growing down only.
96
Simon Glass58254e02021-07-05 16:32:57 -060097config SPL_SHOW_ERRORS
98 bool "Show more information when something goes wrong"
99 help
100 This enabled more verbose error messages and checking when something
101 goes wrong in SPL. For example, it shows the error code when U-Boot
102 cannot be located. This can help to diagnose the problem and figure
103 out a fix, particularly during development.
104
105 This adds a small amount to SPL code size, perhaps 100 bytes.
106
Simon Glass02b87002022-02-08 11:49:48 -0700107config SPL_BINMAN_SYMBOLS
108 bool "Declare binman symbols in SPL"
109 depends on SPL_FRAMEWORK && BINMAN
110 default y
111 help
112 This enables use of symbols in SPL which refer to U-Boot, enabling SPL
113 to obtain the location of U-Boot simply by calling spl_get_image_pos()
114 and spl_get_image_size().
115
116 For this to work, you must have a U-Boot image in the binman image, so
117 binman can update SPL with the location of it.
118
Alison Wangb846d182019-12-04 06:21:55 +0000119menu "PowerPC and LayerScape SPL Boot options"
Tom Rinie5678e42019-06-01 14:20:25 -0400120
121config SPL_NAND_BOOT
122 bool "Load SPL from NAND flash"
Alison Wangb846d182019-12-04 06:21:55 +0000123 depends on PPC && (SUPPORT_SPL && !SPL_FRAMEWORK)
Tom Rinie5678e42019-06-01 14:20:25 -0400124
125config SPL_MMC_BOOT
126 bool "Load SPL from SD Card / eMMC"
Alison Wangb846d182019-12-04 06:21:55 +0000127 depends on PPC && (SUPPORT_SPL && !SPL_FRAMEWORK)
Tom Rinie5678e42019-06-01 14:20:25 -0400128
129config SPL_SPI_BOOT
130 bool "Load SPL from SPI flash"
Alison Wangb846d182019-12-04 06:21:55 +0000131 depends on PPC && (SUPPORT_SPL && !SPL_FRAMEWORK)
Tom Rinie5678e42019-06-01 14:20:25 -0400132
133config SPL_FSL_PBL
134 bool "Create SPL in Freescale PBI format"
Alison Wangb846d182019-12-04 06:21:55 +0000135 depends on (PPC || ARCH_LS1021A || ARCH_LS1043A || ARCH_LS1046A) && \
136 SUPPORT_SPL
Tom Rinie5678e42019-06-01 14:20:25 -0400137 help
138 Create boot binary having SPL binary in PBI format concatenated with
139 u-boot binary.
140
141endmenu
142
Simon Glasse14f1a22018-11-15 18:44:09 -0700143config HANDOFF
144 bool "Pass hand-off information from SPL to U-Boot proper"
Ovidiu Panaitf97049f2020-11-28 10:43:19 +0200145 depends on SPL && BLOBLIST
Simon Glasse14f1a22018-11-15 18:44:09 -0700146 help
147 It is useful to be able to pass information from SPL to U-Boot
148 proper to preserve state that is known in SPL and is needed in U-Boot.
149 Enable this to locate the handoff information in U-Boot proper, early
150 in boot. It is available in gd->handoff. The state state is set up
151 in SPL (or TPL if that is being used).
152
Tom Rini3c82f982017-05-22 19:21:57 +0000153if SPL
154
Simon Glasse14f1a22018-11-15 18:44:09 -0700155config SPL_HANDOFF
156 bool "Pass hand-off information from SPL to U-Boot proper"
Simon Glass540ee8d2019-09-25 08:11:17 -0600157 depends on HANDOFF && SPL_BLOBLIST
Simon Glasse14f1a22018-11-15 18:44:09 -0700158 default y
159 help
160 This option enables SPL to write handoff information. This can be
161 used to pass information like the size of SDRAM from SPL to U-Boot
162 proper. Also SPL can receive information from TPL in the same place
163 if that is enabled.
164
Philipp Tomsichbe1c53a2017-07-28 19:20:49 +0200165config SPL_LDSCRIPT
166 string "Linker script for the SPL stage"
Tom Rini067b9ff2020-03-11 18:11:11 -0400167 default "arch/\$(ARCH)/cpu/u-boot-spl.lds"
Philipp Tomsichbe1c53a2017-07-28 19:20:49 +0200168 help
169 The SPL stage will usually require a different linker-script
170 (as it runs from a different memory region) than the regular
171 U-Boot stage. Set this to the path of the linker-script to
172 be used for SPL.
173
Simon Goldschmidtcc4078c2018-09-30 14:31:53 +0200174config SPL_TEXT_BASE
175 hex "SPL Text Base"
176 default ISW_ENTRY_ADDR if AM43XX || AM33XX || OMAP54XX || ARCH_KEYSTONE
Andre Przywarad38c8ad2019-05-27 01:45:11 +0100177 default 0x10060 if MACH_SUN50I || MACH_SUN50I_H5 || MACH_SUN9I
Jernej Skrabecda8ae612021-01-11 21:11:34 +0100178 default 0x20060 if SUN50I_GEN_H6
Andre Przywarad38c8ad2019-05-27 01:45:11 +0100179 default 0x00060 if ARCH_SUNXI
Michal Simekad336ea2019-09-11 08:49:31 +0200180 default 0xfffc0000 if ARCH_ZYNQMP
Simon Goldschmidtcc4078c2018-09-30 14:31:53 +0200181 default 0x0
182 help
183 The address in memory that SPL will be running from.
184
Ley Foon Tan48fcc4a2017-05-03 17:13:32 +0800185config SPL_BOARD_INIT
Ley Foon Tan48fcc4a2017-05-03 17:13:32 +0800186 bool "Call board-specific initialization in SPL"
187 help
188 If this option is enabled, U-Boot will call the function
189 spl_board_init() from board_init_r(). This function should be
190 provided by the board.
191
Simon Glasse7ca7da2022-04-30 00:56:53 -0600192config VPL_BOARD_INIT
193 bool "Call board-specific initialization in VPL"
194 help
195 If this option is enabled, U-Boot will call the function
196 spl_board_init() from board_init_r(). This function should be
197 provided by the board.
198
Philipp Tomsich83ad7022017-06-22 23:38:36 +0200199config SPL_BOOTROM_SUPPORT
Michal Simek0606f9e2021-05-20 13:08:44 +0200200 bool "Support returning to the BOOTROM"
Philipp Tomsich83ad7022017-06-22 23:38:36 +0200201 help
202 Some platforms (e.g. the Rockchip RK3368) provide support in their
203 ROM for loading the next boot-stage after performing basic setup
204 from the SPL stage.
205
206 Enable this option, to return to the BOOTROM through the
207 BOOT_DEVICE_BOOTROM (or fall-through to the next boot device in the
208 boot device list, if not implemented for a given board)
209
Lukasz Majewski97c995d2018-05-02 16:10:50 +0200210config SPL_BOOTCOUNT_LIMIT
211 bool "Support bootcount in SPL"
Philippe Reynes8d82a202020-12-11 19:56:47 +0100212 depends on SPL_ENV_SUPPORT && !TPL_BOOTCOUNT_LIMIT
Lukasz Majewski97c995d2018-05-02 16:10:50 +0200213 help
214 On some boards, which use 'falcon' mode, it is necessary to check
215 and increment the number of boot attempts. Such boards do not
216 use proper U-Boot for normal boot flow and hence needs those
217 adjustments to be done in the SPL.
218
Andrew F. Davisb4be3c32017-02-16 11:18:38 -0600219config SPL_RAW_IMAGE_SUPPORT
220 bool "Support SPL loading and booting of RAW images"
Simon Glass081a45a2021-08-08 12:20:17 -0600221 default n if (ARCH_MX6 && (SPL_MMC || SPL_SATA))
Andrew Davis4c1f4762022-05-04 15:52:26 -0500222 default y
223 depends on !TI_SECURE_DEVICE
Andrew F. Davisb4be3c32017-02-16 11:18:38 -0600224 help
225 SPL will support loading and booting a RAW image when this option
226 is y. If this is not set, SPL will move on to other available
227 boot media to find a suitable image.
228
Andrew Davis360ec6a2022-05-04 15:52:25 -0500229config SPL_LEGACY_IMAGE_FORMAT
Andrew F. Davis74630342017-02-16 11:18:39 -0600230 bool "Support SPL loading and booting of Legacy images"
Andrew Davis4c1f4762022-05-04 15:52:26 -0500231 default y if !SPL_LOAD_FIT
232 depends on !TI_SECURE_DEVICE
Andrew F. Davis74630342017-02-16 11:18:39 -0600233 help
234 SPL will support loading and booting Legacy images when this option
235 is y. If this is not set, SPL will move on to other available
236 boot media to find a suitable image.
237
Simon Goldschmidt17140472019-02-10 21:34:37 +0100238config SPL_LEGACY_IMAGE_CRC_CHECK
239 bool "Check CRC of Legacy images"
Andrew Davis360ec6a2022-05-04 15:52:25 -0500240 depends on SPL_LEGACY_IMAGE_FORMAT
Simon Glassefc12232021-07-14 17:05:32 -0500241 select SPL_CRC32
Simon Goldschmidt17140472019-02-10 21:34:37 +0100242 help
243 Enable this to check the CRC of Legacy images. While this increases
244 reliability, it affects both code size and boot duration.
245 If disabled, Legacy images are booted if the image magic and size
246 are correct, without further integrity checks.
247
Simon Glassffe19762016-09-12 23:18:22 -0600248config SPL_SYS_MALLOC_SIMPLE
249 bool
Simon Glassffe19762016-09-12 23:18:22 -0600250 prompt "Only use malloc_simple functions in the SPL"
251 help
252 Say Y here to only use the *_simple malloc functions from
253 malloc_simple.c, rather then using the versions from dlmalloc.c;
254 this will make the SPL binary smaller at the cost of more heap
255 usage as the *_simple malloc functions do not re-use free-ed mem.
256
Philipp Tomsich0c8e75c2017-06-30 18:57:25 +0200257config TPL_SYS_MALLOC_SIMPLE
258 bool
259 prompt "Only use malloc_simple functions in the TPL"
Adam Ford43a1e2d2019-08-13 14:32:30 -0500260 depends on TPL
Philipp Tomsich0c8e75c2017-06-30 18:57:25 +0200261 help
262 Say Y here to only use the *_simple malloc functions from
263 malloc_simple.c, rather then using the versions from dlmalloc.c;
264 this will make the TPL binary smaller at the cost of more heap
265 usage as the *_simple malloc functions do not re-use free-ed mem.
266
Simon Glassffe19762016-09-12 23:18:22 -0600267config SPL_STACK_R
Simon Glassffe19762016-09-12 23:18:22 -0600268 bool "Enable SDRAM location for SPL stack"
269 help
270 SPL starts off execution in SRAM and thus typically has only a small
271 stack available. Since SPL sets up DRAM while in its board_init_f()
272 function, it is possible for the stack to move there before
273 board_init_r() is reached. This option enables a special SDRAM
274 location for the SPL stack. U-Boot SPL switches to this after
275 board_init_f() completes, and before board_init_r() starts.
276
277config SPL_STACK_R_ADDR
278 depends on SPL_STACK_R
279 hex "SDRAM location for SPL stack"
Tom Rinic37e0cf2017-09-17 11:44:49 -0400280 default 0x82000000 if ARCH_OMAP2PLUS
Simon Glassffe19762016-09-12 23:18:22 -0600281 help
282 Specify the address in SDRAM for the SPL stack. This will be set up
283 before board_init_r() is called.
284
285config SPL_STACK_R_MALLOC_SIMPLE_LEN
286 depends on SPL_STACK_R && SPL_SYS_MALLOC_SIMPLE
287 hex "Size of malloc_simple heap after switching to DRAM SPL stack"
288 default 0x100000
289 help
290 Specify the amount of the stack to use as memory pool for
291 malloc_simple after switching the stack to DRAM. This may be set
292 to give board_init_r() a larger heap then the initial heap in
293 SRAM which is limited to SYS_MALLOC_F_LEN bytes.
294
295config SPL_SEPARATE_BSS
Simon Glassffe19762016-09-12 23:18:22 -0600296 bool "BSS section is in a different memory region from text"
297 help
298 Some platforms need a large BSS region in SPL and can provide this
299 because RAM is already set up. In this case BSS can be moved to RAM.
300 This option should then be enabled so that the correct device tree
301 location is used. Normally we put the device tree at the end of BSS
302 but with this option enabled, it goes at _image_binary_end.
303
Simon Glass5b21b342021-03-15 17:25:35 +1300304config SPL_READ_ONLY
305 bool
306 depends on SPL_OF_PLATDATA
307 # Bind cannot be supported because the udevice structs are in read-only
308 # memory so we cannot update the linked lists.
309 select SPL_OF_PLATDATA_NO_BIND
310 select SPL_OF_PLATDATA_RT
311 help
312 Some platforms (e.g. x86 Apollo Lake) load SPL into a read-only
313 section of memory. This means that of-platdata must make a copy (in
314 writeable memory) of anything it wants to modify, such as
315 device-private data.
316
Simon Glass7eec8842022-04-30 00:56:52 -0600317config TPL_SEPARATE_BSS
318 bool "BSS section is in a different memory region from text"
319 default y if SPL_SEPARATE_BSS
320 help
321 Some platforms need a large BSS region in TPL and can provide this
322 because RAM is already set up. In this case BSS can be moved to RAM.
323 This option should then be enabled so that the correct device tree
324 location is used. Normally we put the device tree at the end of BSS
325 but with this option enabled, it goes at _image_binary_end.
326
Simon Glass6324cce2018-11-15 18:43:57 -0700327config SPL_BANNER_PRINT
328 bool "Enable output of the SPL banner 'U-Boot SPL ...'"
329 default y
330 help
331 If this option is enabled, SPL will print the banner with version
Thomas Hebbfd37f242019-11-13 18:18:03 -0800332 info. Disabling this option could be useful to reduce SPL boot time
Simon Glass6324cce2018-11-15 18:43:57 -0700333 (e.g. approx. 6 ms faster, when output on i.MX6 with 115200 baud).
334
335config TPL_BANNER_PRINT
336 bool "Enable output of the TPL banner 'U-Boot TPL ...'"
Adam Ford43a1e2d2019-08-13 14:32:30 -0500337 depends on TPL
Simon Glass6324cce2018-11-15 18:43:57 -0700338 default y
Anatolij Gustschin6fe74d22018-01-25 18:45:22 +0100339 help
Thomas Hebbfd37f242019-11-13 18:18:03 -0800340 If this option is enabled, TPL will print the banner with version
341 info. Disabling this option could be useful to reduce TPL boot time
Simon Glass6324cce2018-11-15 18:43:57 -0700342 (e.g. approx. 6 ms faster, when output on i.MX6 with 115200 baud).
Anatolij Gustschin6fe74d22018-01-25 18:45:22 +0100343
Andreas Dannenbergaa4ad4b2019-06-04 17:55:45 -0500344config SPL_EARLY_BSS
345 depends on ARM && !ARM64
346 bool "Allows initializing BSS early before entering board_init_f"
347 help
348 On some platform we have sufficient memory available early on to
349 allow setting up and using a basic BSS prior to entering
350 board_init_f. Activating this option will also de-activate the
351 clearing of BSS during the SPL relocation process, thus allowing
352 to carry state from board_init_f to board_init_r by way of BSS.
353
Simon Glassf481ab12016-09-24 18:19:56 -0600354config SPL_DISPLAY_PRINT
Simon Glassf481ab12016-09-24 18:19:56 -0600355 bool "Display a board-specific message in SPL"
356 help
357 If this option is enabled, U-Boot will call the function
358 spl_display_print() immediately after displaying the SPL console
359 banner ("U-Boot SPL ..."). This function should be provided by
360 the board.
361
Semen Protsenko7e3ba482016-11-16 19:19:05 +0200362config SYS_MMCSD_RAW_MODE_U_BOOT_USE_SECTOR
363 bool "MMC raw mode: by sector"
Fabio Estevam22a1fab2018-06-11 15:08:05 -0300364 default y if ARCH_SUNXI || ARCH_DAVINCI || ARCH_UNIPHIER || \
365 ARCH_MX6 || ARCH_MX7 || \
Semen Protsenko7e3ba482016-11-16 19:19:05 +0200366 ARCH_ROCKCHIP || ARCH_MVEBU || ARCH_SOCFPGA || \
367 ARCH_AT91 || ARCH_ZYNQ || ARCH_KEYSTONE || OMAP34XX || \
Bin Menge9ead4a2021-03-17 11:10:58 +0800368 OMAP44XX || OMAP54XX || AM33XX || AM43XX || \
Green Wan2e5da522021-05-27 06:52:13 -0700369 TARGET_SIFIVE_UNLEASHED || TARGET_SIFIVE_UNMATCHED
Semen Protsenko7e3ba482016-11-16 19:19:05 +0200370 help
371 Use sector number for specifying U-Boot location on MMC/SD in
372 raw mode.
373
374config SYS_MMCSD_RAW_MODE_U_BOOT_SECTOR
375 hex "Address on the MMC to load U-Boot from"
Tom Rini3c82f982017-05-22 19:21:57 +0000376 depends on SYS_MMCSD_RAW_MODE_U_BOOT_USE_SECTOR
Andre Przywarad42cbee2021-01-11 21:11:39 +0100377 default 0x40 if ARCH_SUNXI
Semen Protsenko7e3ba482016-11-16 19:19:05 +0200378 default 0x75 if ARCH_DAVINCI
Fabio Estevam22a1fab2018-06-11 15:08:05 -0300379 default 0x8a if ARCH_MX6 || ARCH_MX7
Kever Yang6cc131d2017-11-02 15:16:34 +0800380 default 0x100 if ARCH_UNIPHIER
Pali Rohárcf97b822021-07-23 11:14:29 +0200381 default 0x0 if ARCH_MVEBU
Semen Protsenko7e3ba482016-11-16 19:19:05 +0200382 default 0x200 if ARCH_SOCFPGA || ARCH_AT91
383 default 0x300 if ARCH_ZYNQ || ARCH_KEYSTONE || OMAP34XX || OMAP44XX || \
Lokesh Vutla9bdec002018-08-27 15:57:08 +0530384 OMAP54XX || AM33XX || AM43XX || ARCH_K3
Kever Yang6cc131d2017-11-02 15:16:34 +0800385 default 0x4000 if ARCH_ROCKCHIP
Green Wan2e5da522021-05-27 06:52:13 -0700386 default 0x822 if TARGET_SIFIVE_UNLEASHED || TARGET_SIFIVE_UNMATCHED
Semen Protsenko7e3ba482016-11-16 19:19:05 +0200387 help
388 Address on the MMC to load U-Boot from, when the MMC is being used
389 in raw mode. Units: MMC sectors (1 sector = 512 bytes).
390
Baruch Siachfef81be2020-01-15 09:08:08 +0200391config SYS_MMCSD_RAW_MODE_U_BOOT_DATA_PART_OFFSET
392 hex "U-Boot main hardware partition image offset"
393 depends on SYS_MMCSD_RAW_MODE_U_BOOT_USE_SECTOR
Andre Przywarad42cbee2021-01-11 21:11:39 +0100394 default 0x10 if ARCH_SUNXI
Baruch Siachfef81be2020-01-15 09:08:08 +0200395 default 0x0
396 help
397 On some platforms SPL location depends on hardware partition. The ROM
398 code skips the MBR sector when loading SPL from main hardware data
399 partition. This adds offset to the main U-Boot image. Set this symbol
400 to the number of skipped sectors.
401
402 If unsure, leave the default.
403
Dalon Westergreenf5ba9852017-02-10 17:15:35 -0800404config SYS_MMCSD_RAW_MODE_U_BOOT_USE_PARTITION
405 bool "MMC Raw mode: by partition"
Dalon Westergreenf5ba9852017-02-10 17:15:35 -0800406 help
407 Use a partition for loading U-Boot when using MMC/SD in raw mode.
408
409config SYS_MMCSD_RAW_MODE_U_BOOT_PARTITION
410 hex "Partition to use to load U-Boot from"
Tom Rini3c82f982017-05-22 19:21:57 +0000411 depends on SYS_MMCSD_RAW_MODE_U_BOOT_USE_PARTITION
Dalon Westergreenf5ba9852017-02-10 17:15:35 -0800412 default 1
413 help
414 Partition on the MMC to load U-Boot from when the MMC is being
415 used in raw mode
416
Dalon Westergreen8d770f42017-02-10 17:15:34 -0800417config SYS_MMCSD_RAW_MODE_U_BOOT_USE_PARTITION_TYPE
418 bool "MMC raw mode: by partition type"
Tom Rini3c82f982017-05-22 19:21:57 +0000419 depends on DOS_PARTITION && SYS_MMCSD_RAW_MODE_U_BOOT_USE_PARTITION
Dalon Westergreen8d770f42017-02-10 17:15:34 -0800420 help
421 Use partition type for specifying U-Boot partition on MMC/SD in
422 raw mode. U-Boot will be loaded from the first partition of this
423 type to be found.
424
425config SYS_MMCSD_RAW_MODE_U_BOOT_PARTITION_TYPE
426 hex "Partition Type on the MMC to load U-Boot from"
Tom Rini3c82f982017-05-22 19:21:57 +0000427 depends on SYS_MMCSD_RAW_MODE_U_BOOT_USE_PARTITION_TYPE
Dalon Westergreen8d770f42017-02-10 17:15:34 -0800428 help
429 Partition Type on the MMC to load U-Boot from, when the MMC is being
430 used in raw mode.
431
Anatolij Gustschin137b8732019-10-18 21:38:33 +0200432config SUPPORT_EMMC_BOOT_OVERRIDE_PART_CONFIG
433 bool "Override eMMC EXT_CSC_PART_CONFIG by user defined partition"
434 depends on SUPPORT_EMMC_BOOT
435 help
436 eMMC boot partition is normally configured by the bits of the EXT_CSD
437 register (EXT_CSC_PART_CONFIG), BOOT_PARTITION_ENABLE field. In some
438 cases it might be required in SPL to load the image from different
439 partition than the partition selected by EXT_CSC_PART_CONFIG register.
440 Enable this option if you intend to use an eMMC boot partition other
441 then selected via EXT_CSC_PART_CONFIG register and specify the custom
442 partition number by the CONFIG_SYS_MMCSD_RAW_MODE_EMMC_BOOT_PARTITION
443 option.
444
445config SYS_MMCSD_RAW_MODE_EMMC_BOOT_PARTITION
446 int "Number of the eMMC boot partition to use"
447 depends on SUPPORT_EMMC_BOOT_OVERRIDE_PART_CONFIG
448 default 1
449 help
450 eMMC boot partition number to use when the eMMC in raw mode and
451 the eMMC EXT_CSC_PART_CONFIG selection should be overridden in SPL
452 by user defined partition number.
453
Simon Glassefc12232021-07-14 17:05:32 -0500454config SPL_CRC32
Simon Glass1e3911a2016-09-13 07:05:23 -0600455 bool "Support CRC32"
Andrew Davis360ec6a2022-05-04 15:52:25 -0500456 default y if SPL_LEGACY_IMAGE_FORMAT || SPL_EFI_PARTITION
Simon Glass577226c2021-09-25 19:43:24 -0600457 default y if SPL_ENV_SUPPORT || TPL_BLOBLIST
Simon Glass1e3911a2016-09-13 07:05:23 -0600458 help
Simon Goldschmidt17140472019-02-10 21:34:37 +0100459 Enable this to support CRC32 in uImages or FIT images within SPL.
460 This is a 32-bit checksum value that can be used to verify images.
461 For FIT images, this is the least secure type of checksum, suitable
462 for detected accidental image corruption. For secure applications you
463 should consider SHA1 or SHA256.
Simon Glass1e3911a2016-09-13 07:05:23 -0600464
Simon Glasse025c652021-07-14 17:05:33 -0500465config SPL_MD5
Simon Glass1e3911a2016-09-13 07:05:23 -0600466 bool "Support MD5"
467 depends on SPL_FIT
468 help
469 Enable this to support MD5 in FIT images within SPL. An MD5
470 checksum is a 128-bit hash value used to check that the image
471 contents have not been corrupted. Note that MD5 is not considered
472 secure as it is possible (with a brute-force attack) to adjust the
473 image while still retaining the same MD5 hash value. For secure
474 applications where images may be changed maliciously, you should
Reuben Dowle1908fd92020-04-16 17:36:52 +1200475 consider SHA256 or SHA384.
Simon Glass1e3911a2016-09-13 07:05:23 -0600476
Philipp Tomsich4faa0112017-11-24 13:26:03 +0100477config SPL_FIT_IMAGE_TINY
478 bool "Remove functionality from SPL FIT loading to reduce size"
479 depends on SPL_FIT
Jernej Skrabecda8ae612021-01-11 21:11:34 +0100480 default y if MACH_SUN50I || MACH_SUN50I_H5 || SUN50I_GEN_H6
Ye Lid08aeb62018-11-20 10:19:15 +0000481 default y if ARCH_IMX8M
Philipp Tomsich4faa0112017-11-24 13:26:03 +0100482 help
483 Enable this to reduce the size of the FIT image loading code
484 in SPL, if space for the SPL binary is very tight.
485
Samuel Hollande646f512020-10-21 21:12:13 -0500486 This skips the recording of each loaded payload
Philipp Tomsich4faa0112017-11-24 13:26:03 +0100487 (i.e. loadable) into the FDT (modifying the loaded FDT to
488 ensure this information is available to the next image
489 invoked).
490
Simon Glassde3fd532021-08-08 12:20:15 -0600491config SPL_CACHE
Rick Chen8b4ee5f2019-11-14 13:52:26 +0800492 bool "Support CACHE drivers"
493 help
494 Enable CACHE drivers in SPL. These drivers can keep data so that
495 future requests for that data can be served faster. Enable this option
496 to build the drivers in drivers/cache as part of an SPL build.
497
Simon Glass2f002162021-03-15 18:11:18 +1300498config SPL_CPU
Simon Glasseca677f2017-01-16 07:03:29 -0700499 bool "Support CPU drivers"
Simon Glasseca677f2017-01-16 07:03:29 -0700500 help
501 Enable this to support CPU drivers in SPL. These drivers can set
502 up CPUs and provide information about them such as the model and
503 name. This can be useful in SPL since setting up the CPUs earlier
504 may improve boot performance. Enable this option to build the
505 drivers in drivers/cpu as part of an SPL build.
506
Simon Glassa8437ce2021-07-10 21:14:25 -0600507config SPL_CRYPTO
Simon Glass1e3911a2016-09-13 07:05:23 -0600508 bool "Support crypto drivers"
Simon Glass1e3911a2016-09-13 07:05:23 -0600509 help
510 Enable crypto drivers in SPL. These drivers can be used to
511 accelerate secure boot processing in secure applications. Enable
512 this option to build the drivers in drivers/crypto as part of an
513 SPL build.
514
Vignesh Raghavendra3d2ba9c2019-11-15 17:00:41 +0530515config SPL_DMA
Simon Glass1e3911a2016-09-13 07:05:23 -0600516 bool "Support DMA drivers"
Simon Glass1e3911a2016-09-13 07:05:23 -0600517 help
518 Enable DMA (direct-memory-access) drivers in SPL. These drivers
519 can be used to handle memory-to-peripheral data transfer without
520 the CPU moving the data. Enable this option to build the drivers
521 in drivers/dma as part of an SPL build.
522
Simon Glass284cb9c2021-07-10 21:14:31 -0600523config SPL_DRIVERS_MISC
Simon Glass1e3911a2016-09-13 07:05:23 -0600524 bool "Support misc drivers"
Simon Glass1e3911a2016-09-13 07:05:23 -0600525 help
526 Enable miscellaneous drivers in SPL. These drivers perform various
527 tasks that don't fall nicely into other categories, Enable this
528 option to build the drivers in drivers/misc as part of an SPL
529 build, for those that support building in SPL (not all drivers do).
530
531config SPL_ENV_SUPPORT
532 bool "Support an environment"
Simon Glass1e3911a2016-09-13 07:05:23 -0600533 help
534 Enable environment support in SPL. The U-Boot environment provides
535 a number of settings (essentially name/value pairs) which can
536 control many aspects of U-Boot's operation. Normally this is not
537 needed in SPL as it has a much simpler task with less
538 configuration. But some boards use this to support 'Falcon' boot
539 on EXT2 and FAT, where SPL boots directly into Linux without
Simon Glass64b723f2017-08-03 12:22:12 -0600540 starting U-Boot first. Enabling this option will make env_get()
Simon Glass6a38e412017-08-03 12:22:09 -0600541 and env_set() available in SPL.
Simon Glass1e3911a2016-09-13 07:05:23 -0600542
B, Ravie94b0242016-09-28 14:46:18 +0530543config SPL_SAVEENV
544 bool "Support save environment"
Tom Rini3c82f982017-05-22 19:21:57 +0000545 depends on SPL_ENV_SUPPORT
Jean-Jacques Hiblotd0531672018-01-04 15:23:32 +0100546 select SPL_MMC_WRITE if ENV_IS_IN_MMC
B, Ravie94b0242016-09-28 14:46:18 +0530547 help
548 Enable save environment support in SPL after setenv. By default
549 the saveenv option is not provided in SPL, but some boards need
550 this support in 'Falcon' boot, where SPL need to boot from
551 different images based on environment variable set by OS. For
552 example OS may set "reboot_image" environment variable to
553 "recovery" inorder to boot recovery image by SPL. The SPL read
554 "reboot_image" and act accordingly and change the reboot_image
Shyam Sainiefe757c2018-06-07 19:47:19 +0530555 to default mode using setenv and save the environment.
B, Ravie94b0242016-09-28 14:46:18 +0530556
Simon Glasse5cd9a42021-07-10 21:14:26 -0600557config SPL_ETH
Simon Glass1e3911a2016-09-13 07:05:23 -0600558 bool "Support Ethernet"
559 depends on SPL_ENV_SUPPORT
Simon Glass1d926242021-08-08 12:20:31 -0600560 depends on SPL_NET
Simon Glass1e3911a2016-09-13 07:05:23 -0600561 help
562 Enable access to the network subsystem and associated Ethernet
563 drivers in SPL. This permits SPL to load U-Boot over an Ethernet
564 link rather than from an on-board peripheral. Environment support
565 is required since the network stack uses a number of environment
Simon Glass041a0ac2021-08-08 12:20:30 -0600566 variables. See also SPL_NET.
Simon Glass1e3911a2016-09-13 07:05:23 -0600567
Tien Fong Chee6091dd12019-01-23 14:20:05 +0800568config SPL_FS_EXT4
Simon Glass1e3911a2016-09-13 07:05:23 -0600569 bool "Support EXT filesystems"
Simon Glass1e3911a2016-09-13 07:05:23 -0600570 help
571 Enable support for EXT2/3/4 filesystems with SPL. This permits
572 U-Boot (or Linux in Falcon mode) to be loaded from an EXT
573 filesystem from within SPL. Support for the underlying block
574 device (e.g. MMC or USB) must be enabled separately.
575
Joao Marcos Costa29da3742020-07-30 15:33:47 +0200576config SPL_FS_SQUASHFS
577 bool "Support SquashFS filesystems"
578 select FS_SQUASHFS
579 help
580 Enable support for SquashFS filesystems with SPL. This permits
581 U-Boot (or Linux in Falcon mode) to be loaded from a SquashFS
582 filesystem from within SPL. Support for the underlying block
583 device (e.g. MMC or USB) must be enabled separately.
584
Tien Fong Chee6fd0a712019-01-23 14:20:03 +0800585config SPL_FS_FAT
Simon Glass1e3911a2016-09-13 07:05:23 -0600586 bool "Support FAT filesystems"
Sekhar Nori1909a7b2017-06-02 17:53:59 +0530587 select FS_FAT
Simon Glass1e3911a2016-09-13 07:05:23 -0600588 help
589 Enable support for FAT and VFAT filesystems with SPL. This
590 permits U-Boot (or Linux in Falcon mode) to be loaded from a FAT
591 filesystem from within SPL. Support for the underlying block
592 device (e.g. MMC or USB) must be enabled separately.
593
Tien Fong Chee87fda0c2019-01-23 14:20:04 +0800594config SPL_FAT_WRITE
595 bool "Support write for FAT filesystems"
596 help
597 Enable write support for FAT and VFAT filesystems with SPL.
598 Support for the underlying block device (e.g. MMC or USB) must be
599 enabled separately.
600
Michal Simek1aab1142020-09-09 14:41:56 +0200601config SPL_FPGA
Simon Glass1e3911a2016-09-13 07:05:23 -0600602 bool "Support FPGAs"
Simon Glass1e3911a2016-09-13 07:05:23 -0600603 help
604 Enable support for FPGAs in SPL. Field-programmable Gate Arrays
605 provide software-configurable hardware which is typically used to
606 implement peripherals (such as UARTs, LCD displays, MMC) or
607 accelerate custom processing functions, such as image processing
608 or machine learning. Sometimes it is useful to program the FPGA
609 as early as possible during boot, and this option can enable that
610 within SPL.
611
Simon Glass035939e2021-07-10 21:14:30 -0600612config SPL_GPIO
Simon Glass592d5b92018-11-15 18:43:55 -0700613 bool "Support GPIO in SPL"
Simon Glass1e3911a2016-09-13 07:05:23 -0600614 help
615 Enable support for GPIOs (General-purpose Input/Output) in SPL.
616 GPIOs allow U-Boot to read the state of an input line (high or
617 low) and set the state of an output line. This can be used to
618 drive LEDs, control power to various system parts and read user
619 input. GPIOs can be useful in SPL to enable a 'sign-of-life' LED,
620 for example. Enable this option to build the drivers in
621 drivers/gpio as part of an SPL build.
622
Simon Glassbccfc2e2021-07-10 21:14:36 -0600623config SPL_I2C
Simon Glass1e3911a2016-09-13 07:05:23 -0600624 bool "Support I2C"
Simon Glass1e3911a2016-09-13 07:05:23 -0600625 help
626 Enable support for the I2C (Inter-Integrated Circuit) bus in SPL.
627 I2C works with a clock and data line which can be driven by a
628 one or more masters or slaves. It is a fairly complex bus but is
629 widely used as it only needs two lines for communication. Speeds of
630 400kbps are typical but up to 3.4Mbps is supported by some
631 hardware. I2C can be useful in SPL to configure power management
632 ICs (PMICs) before raising the CPU clock speed, for example.
633 Enable this option to build the drivers in drivers/i2c as part of
634 an SPL build.
635
636config SPL_LIBCOMMON_SUPPORT
637 bool "Support common libraries"
Simon Glass1e3911a2016-09-13 07:05:23 -0600638 help
639 Enable support for common U-Boot libraries within SPL. These
640 libraries include common code to deal with U-Boot images,
641 environment and USB, for example. This option is enabled on many
642 boards. Enable this option to build the code in common/ as part of
643 an SPL build.
644
645config SPL_LIBDISK_SUPPORT
Simon Goldschmidt62067052018-08-16 09:44:55 +0200646 bool "Support disk partitions"
Tom Rini1794ae62018-12-05 08:23:38 -0500647 select PARTITIONS
Simon Glass1e3911a2016-09-13 07:05:23 -0600648 help
649 Enable support for disk partitions within SPL. 'Disk' is something
650 of a misnomer as it includes non-spinning media such as flash (as
651 used in MMC and USB sticks). Partitions provide a way for a disk
652 to be split up into separate regions, with a partition table placed
653 at the start or end which describes the location and size of each
654 'partition'. These partitions are typically uses as individual block
655 devices, typically with an EXT2 or FAT filesystem in each. This
656 option enables whatever partition support has been enabled in
657 U-Boot to also be used in SPL. It brings in the code in disk/.
658
659config SPL_LIBGENERIC_SUPPORT
660 bool "Support generic libraries"
Simon Glass1e3911a2016-09-13 07:05:23 -0600661 help
662 Enable support for generic U-Boot libraries within SPL. These
663 libraries include generic code to deal with device tree, hashing,
664 printf(), compression and the like. This option is enabled on many
665 boards. Enable this option to build the code in lib/ as part of an
666 SPL build.
667
Lokesh Vutla2aeb9342018-08-27 15:57:49 +0530668config SPL_DM_MAILBOX
669 bool "Support Mailbox"
670 help
671 Enable support for Mailbox within SPL. This enable the inter
672 processor communication protocols tobe used within SPL. Enable
673 this option to build the drivers in drivers/mailbox as part of
674 SPL build.
675
Simon Glassb58bfe02021-08-08 12:20:09 -0600676config SPL_MMC
Simon Glass1e3911a2016-09-13 07:05:23 -0600677 bool "Support MMC"
Tom Rini3c82f982017-05-22 19:21:57 +0000678 depends on MMC
Tom Rini1794ae62018-12-05 08:23:38 -0500679 select HAVE_BLOCK_DEVICE
Simon Glass1e3911a2016-09-13 07:05:23 -0600680 help
681 Enable support for MMC (Multimedia Card) within SPL. This enables
682 the MMC protocol implementation and allows any enabled drivers to
683 be used within SPL. MMC can be used with or without disk partition
684 support depending on the application (SPL_LIBDISK_SUPPORT). Enable
685 this option to build the drivers in drivers/mmc as part of an SPL
686 build.
687
Adam Ford98a87cf2020-07-03 10:17:30 -0500688config SYS_MMCSD_FS_BOOT_PARTITION
689 int "MMC Boot Partition"
690 default 1
691 help
692 Partition on the MMC to load U-Boot from when the MMC is being
Jérôme Carreterod0a8e592022-03-15 16:34:51 -0400693 used in fs mode.
694 Use -1 as a special value to use the first bootable partition.
Adam Ford98a87cf2020-07-03 10:17:30 -0500695
Ezequiel Garcia66983182019-05-25 19:25:21 -0300696config SPL_MMC_TINY
697 bool "Tiny MMC framework in SPL"
Simon Glassb58bfe02021-08-08 12:20:09 -0600698 depends on SPL_MMC
Ezequiel Garcia66983182019-05-25 19:25:21 -0300699 help
700 Enable MMC framework tinification support. This option is useful if
701 if your SPL is extremely size constrained. Heed the warning, enable
702 this option if and only if you know exactly what you are doing, if
703 you are reading this help text, you most likely have no idea :-)
704
705 The MMC framework is reduced to bare minimum to be useful. No malloc
706 support is needed for the MMC framework operation with this option
707 enabled. The framework supports exactly one MMC device and exactly
708 one MMC driver. The MMC driver can be adjusted to avoid any malloc
709 operations too, which can remove the need for malloc support in SPL
710 and thus further reduce footprint.
711
Jean-Jacques Hiblotd0531672018-01-04 15:23:32 +0100712config SPL_MMC_WRITE
713 bool "MMC/SD/SDIO card support for write operations in SPL"
Simon Glassb58bfe02021-08-08 12:20:09 -0600714 depends on SPL_MMC
Jean-Jacques Hiblotd0531672018-01-04 15:23:32 +0100715 help
716 Enable write access to MMC and SD Cards in SPL
717
718
Simon Glass64571062021-08-08 12:20:16 -0600719config SPL_MPC8XXX_INIT_DDR
Simon Glass1e3911a2016-09-13 07:05:23 -0600720 bool "Support MPC8XXX DDR init"
Simon Glass1e3911a2016-09-13 07:05:23 -0600721 help
722 Enable support for DDR-SDRAM (double-data-rate synchronous dynamic
723 random-access memory) on the MPC8XXX family within SPL. This
724 allows DRAM to be set up before loading U-Boot into that DRAM,
725 where it can run.
726
727config SPL_MTD_SUPPORT
728 bool "Support MTD drivers"
Simon Glass1e3911a2016-09-13 07:05:23 -0600729 help
730 Enable support for MTD (Memory Technology Device) within SPL. MTD
731 provides a block interface over raw NAND and can also be used with
732 SPI flash. This allows SPL to load U-Boot from supported MTD
733 devices. See SPL_NAND_SUPPORT and SPL_ONENAND_SUPPORT for how
734 to enable specific MTD drivers.
735
Simon Glass762b9972021-07-10 21:14:27 -0600736config SPL_MUSB_NEW
Simon Glass1e3911a2016-09-13 07:05:23 -0600737 bool "Support new Mentor Graphics USB"
Simon Glass1e3911a2016-09-13 07:05:23 -0600738 help
739 Enable support for Mentor Graphics USB in SPL. This is a new
740 driver used by some boards. Enable this option to build
741 the drivers in drivers/usb/musb-new as part of an SPL build. The
742 old drivers are in drivers/usb/musb.
743
744config SPL_NAND_SUPPORT
745 bool "Support NAND flash"
Simon Glass1e3911a2016-09-13 07:05:23 -0600746 help
747 Enable support for NAND (Negative AND) flash in SPL. NAND flash
748 can be used to allow SPL to load U-Boot from supported devices.
Miquel Raynal1f1ae152018-08-16 17:30:07 +0200749 This enables the drivers in drivers/mtd/nand/raw as part of an SPL
Simon Glass1e3911a2016-09-13 07:05:23 -0600750 build.
751
Adam Ford3a383772020-07-03 08:09:44 -0500752config SPL_NAND_DRIVERS
753 bool "Use standard NAND driver"
754 help
755 SPL uses normal NAND drivers, not minimal drivers.
756
757config SPL_NAND_ECC
758 bool "Include standard software ECC in the SPL"
759
760config SPL_NAND_SIMPLE
761 bool "Support simple NAND drivers in SPL"
762 help
763 Support for NAND boot using simple NAND drivers that
764 expose the cmd_ctrl() interface.
765
Adam Ford5e56ad02020-07-03 08:09:45 -0500766config SPL_NAND_BASE
767 depends on SPL_NAND_DRIVERS
768 bool "Use Base NAND Driver"
Michal Simek0606f9e2021-05-20 13:08:44 +0200769 help
770 Include nand_base.c in the SPL.
Adam Ford5e56ad02020-07-03 08:09:45 -0500771
772config SPL_NAND_IDENT
773 depends on SPL_NAND_BASE
774 bool "Use chip ID to identify NAND flash"
775 help
776 SPL uses the chip ID list to identify the NAND flash.
777
Markus Klotzbuecherf5aa1762019-05-15 15:15:57 +0200778config SPL_UBI
779 bool "Support UBI"
780 help
781 Enable support for loading payloads from UBI. See
782 README.ubispl for more info.
783
Lukasz Majewski7766ce02019-09-09 12:06:46 +0200784if SPL_DM
785config SPL_DM_SPI
786 bool "Support SPI DM drivers in SPL"
787 help
788 Enable support for SPI DM drivers in SPL.
789
Lukasz Majewski76f442982020-06-04 23:11:53 +0800790config SPL_DM_SPI_FLASH
791 bool "Support SPI DM FLASH drivers in SPL"
792 help
793 Enable support for SPI DM flash drivers in SPL.
794
Lukasz Majewski7766ce02019-09-09 12:06:46 +0200795endif
Markus Klotzbuecherf5aa1762019-05-15 15:15:57 +0200796if SPL_UBI
Hamish Guthrie3ce740d2019-05-15 15:15:59 +0200797config SPL_UBI_LOAD_BY_VOLNAME
798 bool "Support loading volumes by name"
799 help
800 This enables support for loading UBI volumes by name. When this
801 is set, CONFIG_SPL_UBI_LOAD_MONITOR_VOLNAME can be used to
802 configure the volume name from which to load U-Boot.
803
Markus Klotzbuecherf5aa1762019-05-15 15:15:57 +0200804config SPL_UBI_MAX_VOL_LEBS
805 int "Maximum number of LEBs per volume"
806 depends on SPL_UBI
807 help
808 The maximum number of logical eraseblocks which a static volume
809 to load can contain. Used for sizing the scan data structure.
810
811config SPL_UBI_MAX_PEB_SIZE
812 int "Maximum PEB size"
813 depends on SPL_UBI
814 help
815 The maximum physical erase block size.
816
817config SPL_UBI_MAX_PEBS
818 int "Maximum number of PEBs"
819 depends on SPL_UBI
820 help
821 The maximum physical erase block size. If not overridden by
822 board code, this value will be used as the actual number of PEBs.
823
824config SPL_UBI_PEB_OFFSET
825 int "Offset to first UBI PEB"
826 depends on SPL_UBI
827 help
828 The offset in number of PEBs from the start of flash to the first
829 PEB part of the UBI image.
830
831config SPL_UBI_VID_OFFSET
832 int "Offset to VID header"
833 depends on SPL_UBI
834
835config SPL_UBI_LEB_START
836 int "Offset to LEB in PEB"
837 depends on SPL_UBI
838 help
839 The offset in bytes to the LEB within a PEB.
840
841config SPL_UBI_INFO_ADDR
842 hex "Address to place UBI scan info"
843 depends on SPL_UBI
844 help
845 Address for ubispl to place the scan info. Read README.ubispl to
846 determine the required size
847
848config SPL_UBI_VOL_IDS
849 int "Maximum volume id"
850 depends on SPL_UBI
851 help
852 The maximum volume id which can be loaded. Used for sizing the
853 scan data structure.
854
855config SPL_UBI_LOAD_MONITOR_ID
856 int "id of U-Boot volume"
857 depends on SPL_UBI
858 help
859 The UBI volume id from which to load U-Boot
860
Hamish Guthrie3ce740d2019-05-15 15:15:59 +0200861config SPL_UBI_LOAD_MONITOR_VOLNAME
862 string "volume name of U-Boot volume"
863 depends on SPL_UBI_LOAD_BY_VOLNAME
864 help
865 The UBI volume name from which to load U-Boot
866
Markus Klotzbuecherf5aa1762019-05-15 15:15:57 +0200867config SPL_UBI_LOAD_KERNEL_ID
868 int "id of kernel volume"
869 depends on SPL_OS_BOOT && SPL_UBI
870 help
871 The UBI volume id from which to load the kernel
872
873config SPL_UBI_LOAD_ARGS_ID
874 int "id of kernel args volume"
875 depends on SPL_OS_BOOT && SPL_UBI
876 help
877 The UBI volume id from which to load the device tree
878
Markus Klotzbuechercfe40f42019-05-15 15:16:00 +0200879config UBI_SPL_SILENCE_MSG
880 bool "silence UBI SPL messages"
Markus Klotzbuechercfe40f42019-05-15 15:16:00 +0200881 help
882 Disable messages from UBI SPL. This leaves warnings
883 and errors enabled.
Markus Klotzbuecherf5aa1762019-05-15 15:15:57 +0200884
885endif # if SPL_UBI
886
Simon Glass041a0ac2021-08-08 12:20:30 -0600887config SPL_NET
Simon Glass1e3911a2016-09-13 07:05:23 -0600888 bool "Support networking"
Simon Glass1e3911a2016-09-13 07:05:23 -0600889 help
890 Enable support for network devices (such as Ethernet) in SPL.
891 This permits SPL to load U-Boot over a network link rather than
892 from an on-board peripheral. Environment support is required since
893 the network stack uses a number of environment variables. See also
Simon Glasse5cd9a42021-07-10 21:14:26 -0600894 SPL_ETH.
Simon Glass1e3911a2016-09-13 07:05:23 -0600895
Simon Glass041a0ac2021-08-08 12:20:30 -0600896if SPL_NET
Simon Glass1e3911a2016-09-13 07:05:23 -0600897config SPL_NET_VCI_STRING
898 string "BOOTP Vendor Class Identifier string sent by SPL"
899 help
900 As defined by RFC 2132 the vendor class identifier field can be
901 sent by the client to identify the vendor type and configuration
902 of a client. This is often used in practice to allow for the DHCP
903 server to specify different files to load depending on if the ROM,
904 SPL or U-Boot itself makes the request
Simon Glass041a0ac2021-08-08 12:20:30 -0600905endif # if SPL_NET
Simon Glass1e3911a2016-09-13 07:05:23 -0600906
907config SPL_NO_CPU_SUPPORT
908 bool "Drop CPU code in SPL"
Simon Glass1e3911a2016-09-13 07:05:23 -0600909 help
910 This is specific to the ARM926EJ-S CPU. It disables the standard
911 start.S start-up code, presumably so that a replacement can be
912 used on that CPU. You should not enable it unless you know what
913 you are doing.
914
915config SPL_NOR_SUPPORT
916 bool "Support NOR flash"
Simon Glass1e3911a2016-09-13 07:05:23 -0600917 help
918 Enable support for loading U-Boot from memory-mapped NOR (Negative
919 OR) flash in SPL. NOR flash is slow to write but fast to read, and
920 a memory-mapped device makes it very easy to access. Loading from
921 NOR is typically achieved with just a memcpy().
922
Vikas Manocha9e582652017-05-28 12:55:11 -0700923config SPL_XIP_SUPPORT
924 bool "Support XIP"
925 depends on SPL
926 help
927 Enable support for execute in place of U-Boot or kernel image. There
928 is no need to copy image from flash to ram if flash supports execute
929 in place. Its very useful in systems having enough flash but not
930 enough ram to load the image.
931
Simon Glass1e3911a2016-09-13 07:05:23 -0600932config SPL_ONENAND_SUPPORT
933 bool "Support OneNAND flash"
Simon Glass1e3911a2016-09-13 07:05:23 -0600934 help
935 Enable support for OneNAND (Negative AND) flash in SPL. OneNAND is
936 a type of NAND flash and therefore can be used to allow SPL to
937 load U-Boot from supported devices. This enables the drivers in
938 drivers/mtd/onenand as part of an SPL build.
939
Heiko Schocher1d12ba22016-10-06 07:55:15 +0200940config SPL_OS_BOOT
941 bool "Activate Falcon Mode"
Tom Rini3c82f982017-05-22 19:21:57 +0000942 depends on !TI_SECURE_DEVICE
Heiko Schocher1d12ba22016-10-06 07:55:15 +0200943 help
944 Enable booting directly to an OS from SPL.
945 for more info read doc/README.falcon
946
Heiko Schocher65928932016-10-06 07:55:16 +0200947if SPL_OS_BOOT
948config SYS_OS_BASE
949 hex "addr, where OS is found"
Tom Rini3c82f982017-05-22 19:21:57 +0000950 depends on SPL_NOR_SUPPORT
Heiko Schocher65928932016-10-06 07:55:16 +0200951 help
952 Specify the address, where the OS image is found, which
953 gets booted.
954
955endif # SPL_OS_BOOT
956
Alexandru Gagniuc99426c82021-12-30 10:39:59 -0600957config SPL_FALCON_BOOT_MMCSD
958 bool "Enable Falcon boot from MMC or SD media"
959 depends on SPL_OS_BOOT && SPL_MMC
960 help
961 Select this if the Falcon mode OS image mode is on MMC or SD media.
962
963config SYS_MMCSD_RAW_MODE_KERNEL_SECTOR
964 hex "Falcon mode: Sector to load kernel uImage from MMC"
965 depends on SPL_FALCON_BOOT_MMCSD
966 help
967 When Falcon mode is used with an MMC or SD media, SPL needs to know
968 where to look for the kernel uImage. The image is expected to begin
969 at the raw MMC specified in this config.
970 Note that the Falcon mode image can also be a FIT, if FIT support is
971 enabled.
972
York Sun53492672018-06-14 14:38:48 -0700973config SPL_PAYLOAD
974 string "SPL payload"
975 default "tpl/u-boot-with-tpl.bin" if TPL
976 default "u-boot.bin"
977 help
Chris Packham37bc3162019-01-13 22:13:20 +1300978 Payload for SPL boot. For backward compatibility, default to
York Sun53492672018-06-14 14:38:48 -0700979 u-boot.bin, i.e. RAW image without any header. In case of
980 TPL, tpl/u-boot-with-tpl.bin. For new boards, suggest to
981 use u-boot.img.
982
Sekhar Nori9108d922018-12-06 15:40:08 +0530983config SPL_PCI
Simon Glass6569f3a2017-01-16 07:03:30 -0700984 bool "Support PCI drivers"
Simon Glass6569f3a2017-01-16 07:03:30 -0700985 help
986 Enable support for PCI in SPL. For platforms that need PCI to boot,
987 or must perform some init using PCI in SPL, this provides the
988 necessary driver support. This enables the drivers in drivers/pci
989 as part of an SPL build.
990
Simon Glassff67f232021-08-08 12:20:10 -0600991config SPL_PCH
Simon Glass36258a52017-01-16 07:03:33 -0700992 bool "Support PCH drivers"
Simon Glass36258a52017-01-16 07:03:33 -0700993 help
994 Enable support for PCH (Platform Controller Hub) devices in SPL.
995 These are used to set up GPIOs and the SPI peripheral early in
996 boot. This enables the drivers in drivers/pch as part of an SPL
997 build.
998
Simon Glass1e3911a2016-09-13 07:05:23 -0600999config SPL_POST_MEM_SUPPORT
1000 bool "Support POST drivers"
Simon Glass1e3911a2016-09-13 07:05:23 -06001001 help
1002 Enable support for POST (Power-on Self Test) in SPL. POST is a
1003 procedure that checks that the hardware (CPU or board) appears to
1004 be functionally correctly. It is a sanity check that can be
1005 performed before booting. This enables the drivers in post/drivers
1006 as part of an SPL build.
1007
Ley Foon Tan9caf7122018-06-14 18:45:19 +08001008config SPL_DM_RESET
Patrick Delaunay329827a2018-03-12 10:46:05 +01001009 bool "Support reset drivers"
1010 depends on SPL
1011 help
1012 Enable support for reset control in SPL.
1013 That can be useful in SPL to handle IP reset in driver, as in U-Boot,
1014 by using the generic reset API provided by driver model.
1015 This enables the drivers in drivers/reset as part of an SPL build.
1016
Simon Glasse91ac4c2021-07-10 21:14:24 -06001017config SPL_POWER
Simon Glass1e3911a2016-09-13 07:05:23 -06001018 bool "Support power drivers"
Simon Glass1e3911a2016-09-13 07:05:23 -06001019 help
1020 Enable support for power control in SPL. This includes support
1021 for PMICs (Power-management Integrated Circuits) and some of the
1022 features provided by PMICs. In particular, voltage regulators can
1023 be used to enable/disable power and vary its voltage. That can be
1024 useful in SPL to turn on boot peripherals and adjust CPU voltage
1025 so that the clock speed can be increased. This enables the drivers
1026 in drivers/power, drivers/power/pmic and drivers/power/regulator
1027 as part of an SPL build.
1028
Peng Fan3775fed2018-07-27 10:20:37 +08001029config SPL_POWER_DOMAIN
1030 bool "Support power domain drivers"
Simon Glassa0e44872021-08-08 12:20:29 -06001031 select SPL_POWER
Peng Fan3775fed2018-07-27 10:20:37 +08001032 help
1033 Enable support for power domain control in SPL. Many SoCs allow
1034 power to be applied to or removed from portions of the SoC (power
1035 domains). This may be used to save power. This API provides the
1036 means to control such power management hardware. This enables
1037 the drivers in drivers/power/domain as part of a SPL build.
1038
Stefan Agnercd01e642016-12-23 07:51:53 +01001039config SPL_RAM_SUPPORT
1040 bool "Support booting from RAM"
Trevor Woerner513f6402020-05-06 08:02:41 -04001041 default y if MICROBLAZE || ARCH_SOCFPGA || ARCH_TEGRA || ARCH_ZYNQ
Stefan Agnercd01e642016-12-23 07:51:53 +01001042 help
1043 Enable booting of an image in RAM. The image can be preloaded or
1044 it can be loaded by SPL directly into RAM (e.g. using USB).
1045
Stefan Agnere2eaac12016-12-23 07:51:52 +01001046config SPL_RAM_DEVICE
1047 bool "Support booting from preloaded image in RAM"
Stefan Agnercd01e642016-12-23 07:51:53 +01001048 depends on SPL_RAM_SUPPORT
Trevor Woerner513f6402020-05-06 08:02:41 -04001049 default y if MICROBLAZE || ARCH_SOCFPGA || ARCH_TEGRA || ARCH_ZYNQ
Stefan Agnere2eaac12016-12-23 07:51:52 +01001050 help
1051 Enable booting of an image already loaded in RAM. The image has to
1052 be already in memory when SPL takes over, e.g. loaded by the boot
1053 ROM.
1054
Lokesh Vutla1a6f8e02018-08-27 15:57:53 +05301055config SPL_REMOTEPROC
1056 bool "Support REMOTEPROCS"
1057 help
1058 Enable support for REMOTEPROCs in SPL. This permits to load
1059 a remote processor firmware in SPL.
1060
Simon Glass31985312021-08-08 12:20:11 -06001061config SPL_RTC
Simon Glassb69691b2017-01-16 07:03:31 -07001062 bool "Support RTC drivers"
Simon Glassb69691b2017-01-16 07:03:31 -07001063 help
1064 Enable RTC (Real-time Clock) support in SPL. This includes support
1065 for reading and setting the time. Some RTC devices also have some
1066 non-volatile (battery-backed) memory which is accessible if
1067 needed. This enables the drivers in drivers/rtc as part of an SPL
1068 build.
1069
Simon Glass081a45a2021-08-08 12:20:17 -06001070config SPL_SATA
Simon Glass1e3911a2016-09-13 07:05:23 -06001071 bool "Support loading from SATA"
Simon Glass1e3911a2016-09-13 07:05:23 -06001072 help
1073 Enable support for SATA (Serial AT attachment) in SPL. This allows
1074 use of SATA devices such as hard drives and flash drivers for
1075 loading U-Boot. SATA is used in higher-end embedded systems and
1076 can provide higher performance than MMC , at somewhat higher
1077 expense and power consumption. This enables loading from SATA
1078 using a configured device.
1079
Baruch Siachc9eff6a2019-07-14 17:54:21 +03001080config SPL_SATA_RAW_U_BOOT_USE_SECTOR
1081 bool "SATA raw mode: by sector"
Simon Glass081a45a2021-08-08 12:20:17 -06001082 depends on SPL_SATA
Pali Rohárcf97b822021-07-23 11:14:29 +02001083 default y if ARCH_MVEBU
Baruch Siachc9eff6a2019-07-14 17:54:21 +03001084 help
1085 Use sector number for specifying U-Boot location on SATA disk in
1086 raw mode.
1087
1088config SPL_SATA_RAW_U_BOOT_SECTOR
1089 hex "Sector on the SATA disk to load U-Boot from"
1090 depends on SPL_SATA_RAW_U_BOOT_USE_SECTOR
Pali Rohárcf97b822021-07-23 11:14:29 +02001091 default 0x1 if ARCH_MVEBU
Baruch Siachc9eff6a2019-07-14 17:54:21 +03001092 help
1093 Sector on the SATA disk to load U-Boot from, when the SATA disk is being
1094 used in raw mode. Units: SATA disk sectors (1 sector = 512 bytes).
1095
Simon Glassf4d60392021-08-08 12:20:12 -06001096config SPL_SERIAL
Simon Glass1e3911a2016-09-13 07:05:23 -06001097 bool "Support serial"
Alex Kiernan5b404282018-04-19 04:32:54 +00001098 select SPL_PRINTF
1099 select SPL_STRTO
Simon Glass1e3911a2016-09-13 07:05:23 -06001100 help
1101 Enable support for serial in SPL. This allows use of a serial UART
1102 for displaying messages while SPL is running. It also brings in
1103 printf() and panic() functions. This should normally be enabled
1104 unless there are space reasons not to. Even then, consider
Simon Glass7611ac62019-09-25 08:56:27 -06001105 enabling SPL_USE_TINY_PRINTF which is a small printf() version.
Simon Glass1e3911a2016-09-13 07:05:23 -06001106
Simon Glassa5820472021-08-08 12:20:14 -06001107config SPL_SPI
Simon Goldschmidt3a025332019-10-25 16:22:09 +02001108 bool "Support SPI drivers"
1109 help
1110 Enable support for using SPI in SPL. This is used for connecting
1111 to SPI flash for loading U-Boot. See SPL_SPI_FLASH_SUPPORT for
1112 more details on that. The SPI driver provides the transport for
1113 data between the SPI flash and the CPU. This option can be used to
1114 enable SPI drivers that are needed for other purposes also, such
1115 as a SPI PMIC.
1116
Simon Glass1e3911a2016-09-13 07:05:23 -06001117config SPL_SPI_FLASH_SUPPORT
1118 bool "Support SPI flash drivers"
Simon Glassa5820472021-08-08 12:20:14 -06001119 depends on SPL_SPI
Simon Glass1e3911a2016-09-13 07:05:23 -06001120 help
1121 Enable support for using SPI flash in SPL, and loading U-Boot from
1122 SPI flash. SPI flash (Serial Peripheral Bus flash) is named after
1123 the SPI bus that is used to connect it to a system. It is a simple
1124 but fast bidirectional 4-wire bus (clock, chip select and two data
1125 lines). This enables the drivers in drivers/mtd/spi as part of an
Simon Glassa5820472021-08-08 12:20:14 -06001126 SPL build. This normally requires SPL_SPI.
Simon Glass1e3911a2016-09-13 07:05:23 -06001127
Vignesh R4d848c92019-02-05 11:29:20 +05301128if SPL_SPI_FLASH_SUPPORT
1129
Vignesh R3f5fb8b2019-02-05 11:29:25 +05301130config SPL_SPI_FLASH_TINY
1131 bool "Enable low footprint SPL SPI Flash support"
1132 depends on !SPI_FLASH_BAR
Vignesh Rf53872d2019-02-05 11:29:26 +05301133 default y if SPI_FLASH
Vignesh R3f5fb8b2019-02-05 11:29:25 +05301134 help
1135 Enable lightweight SPL SPI Flash support that supports just reading
1136 data/images from flash. No support to write/erase flash. Enable
1137 this if you have SPL size limitations and don't need full
1138 fledged SPI flash support.
1139
Vignesh R4d848c92019-02-05 11:29:20 +05301140config SPL_SPI_FLASH_SFDP_SUPPORT
1141 bool "SFDP table parsing support for SPI NOR flashes"
Vignesh R3f5fb8b2019-02-05 11:29:25 +05301142 depends on !SPI_FLASH_BAR && !SPL_SPI_FLASH_TINY
Vignesh R4d848c92019-02-05 11:29:20 +05301143 help
1144 Enable support for parsing and auto discovery of parameters for
1145 SPI NOR flashes using Serial Flash Discoverable Parameters (SFDP)
1146 tables as per JESD216 standard in SPL.
1147
Lukasz Majewski76f442982020-06-04 23:11:53 +08001148config SPL_SPI_FLASH_MTD
1149 bool "Support for SPI flash MTD drivers in SPL"
1150 help
1151 Enable support for SPI flash MTD drivers in SPL.
1152
Marek Vasute2542252018-04-07 16:05:27 +02001153config SPL_SPI_LOAD
1154 bool "Support loading from SPI flash"
Marek Vasute2542252018-04-07 16:05:27 +02001155 help
1156 Enable support for loading next stage, U-Boot or otherwise, from
1157 SPI NOR in U-Boot SPL.
1158
Vignesh R4d848c92019-02-05 11:29:20 +05301159endif # SPL_SPI_FLASH_SUPPORT
1160
Hannes Schmelzer38df9972019-08-22 15:41:46 +02001161config SYS_SPI_U_BOOT_OFFS
1162 hex "address of u-boot payload in SPI flash"
Andre Przywarae6d9fc02020-01-06 01:29:10 +00001163 default 0x8000 if ARCH_SUNXI
Hannes Schmelzer38df9972019-08-22 15:41:46 +02001164 default 0x0
1165 depends on SPL_SPI_LOAD || SPL_SPI_SUNXI
1166 help
1167 Address within SPI-Flash from where the u-boot payload is fetched
1168 from.
1169
Faiz Abbasae1627c2017-11-14 16:12:31 +05301170config SPL_THERMAL
1171 bool "Driver support for thermal devices"
1172 help
1173 Enable support for temperature-sensing devices. Some SoCs have on-chip
1174 temperature sensors to permit warnings, speed throttling or even
1175 automatic power-off when the temperature gets too high or low. Other
1176 devices may be discrete but connected on a suitable bus.
1177
Simon Glass1f2440c2021-07-10 21:14:29 -06001178config SPL_USB_HOST
Simon Glass1e3911a2016-09-13 07:05:23 -06001179 bool "Support USB host drivers"
Tom Rini1794ae62018-12-05 08:23:38 -05001180 select HAVE_BLOCK_DEVICE
Simon Glass1e3911a2016-09-13 07:05:23 -06001181 help
1182 Enable access to USB (Universal Serial Bus) host devices so that
1183 SPL can load U-Boot from a connected USB peripheral, such as a USB
1184 flash stick. While USB takes a little longer to start up than most
1185 buses, it is very flexible since many different types of storage
1186 device can be attached. This option enables the drivers in
1187 drivers/usb/host as part of an SPL build.
1188
Abel Vesa5ea11ba52019-02-01 16:40:07 +00001189config SPL_USB_STORAGE
Simon Glass1e3911a2016-09-13 07:05:23 -06001190 bool "Support loading from USB"
Simon Glass1f2440c2021-07-10 21:14:29 -06001191 depends on SPL_USB_HOST && !(BLK && !DM_USB)
Simon Glass1e3911a2016-09-13 07:05:23 -06001192 help
1193 Enable support for USB devices in SPL. This allows use of USB
1194 devices such as hard drives and flash drivers for loading U-Boot.
1195 The actual drivers are enabled separately using the normal U-Boot
1196 config options. This enables loading from USB using a configured
1197 device.
1198
Jean-Jacques Hiblot6a228522019-01-10 15:44:13 +01001199config SPL_USB_GADGET
Stefan Agner0489c3b2016-11-21 10:58:53 -08001200 bool "Suppport USB Gadget drivers"
Stefan Agner0489c3b2016-11-21 10:58:53 -08001201 help
1202 Enable USB Gadget API which allows to enable USB device functions
1203 in SPL.
1204
Jean-Jacques Hiblot6a228522019-01-10 15:44:13 +01001205if SPL_USB_GADGET
Stefan Agner0489c3b2016-11-21 10:58:53 -08001206
Faiz Abbasc01553b2018-02-16 21:17:44 +05301207config SPL_USB_ETHER
Stefan Agner0489c3b2016-11-21 10:58:53 -08001208 bool "Support USB Ethernet drivers"
Simon Glass1d926242021-08-08 12:20:31 -06001209 depends on SPL_NET
Stefan Agner0489c3b2016-11-21 10:58:53 -08001210 help
1211 Enable access to the USB network subsystem and associated
1212 drivers in SPL. This permits SPL to load U-Boot over a
1213 USB-connected Ethernet link (such as a USB Ethernet dongle) rather
1214 than from an onboard peripheral. Environment support is required
1215 since the network stack uses a number of environment variables.
Simon Glass041a0ac2021-08-08 12:20:30 -06001216 See also SPL_NET and SPL_ETH.
Stefan Agner0489c3b2016-11-21 10:58:53 -08001217
Andrew F. Davis6d932e62019-01-17 13:43:02 -06001218config SPL_DFU
Fabio Estevam96bdff52018-08-31 10:02:28 -03001219 bool "Support DFU (Device Firmware Upgrade)"
Alexandru Gagniuc97464ff2021-09-02 19:54:19 -05001220 select SPL_HASH
B, Ravi4cca5cf2017-05-04 15:45:29 +05301221 select SPL_DFU_NO_RESET
B, Ravi7e0c0ea2017-05-04 15:45:28 +05301222 depends on SPL_RAM_SUPPORT
Stefan Agnere542edd2016-11-21 10:58:52 -08001223 help
Fabio Estevam96bdff52018-08-31 10:02:28 -03001224 This feature enables the DFU (Device Firmware Upgrade) in SPL with
Stefan Agnere542edd2016-11-21 10:58:52 -08001225 RAM memory device support. The ROM code will load and execute
1226 the SPL built with dfu. The user can load binaries (u-boot/kernel) to
1227 selected device partition from host-pc using dfu-utils.
1228 This feature is useful to flash the binaries to factory or bare-metal
1229 boards using USB interface.
1230
1231choice
1232 bool "DFU device selection"
Andrew F. Davis6d932e62019-01-17 13:43:02 -06001233 depends on SPL_DFU
Stefan Agnere542edd2016-11-21 10:58:52 -08001234
1235config SPL_DFU_RAM
1236 bool "RAM device"
Andrew F. Davis6d932e62019-01-17 13:43:02 -06001237 depends on SPL_DFU && SPL_RAM_SUPPORT
Stefan Agnere542edd2016-11-21 10:58:52 -08001238 help
1239 select RAM/DDR memory device for loading binary images
1240 (u-boot/kernel) to the selected device partition using
1241 DFU and execute the u-boot/kernel from RAM.
1242
1243endchoice
1244
Stefan Agnerd0d9d212017-08-16 11:00:54 -07001245config SPL_USB_SDP_SUPPORT
1246 bool "Support SDP (Serial Download Protocol)"
Simon Glassf4d60392021-08-08 12:20:12 -06001247 depends on SPL_SERIAL
Stefan Agnerd0d9d212017-08-16 11:00:54 -07001248 help
1249 Enable Serial Download Protocol (SDP) device support in SPL. This
1250 allows to download images into memory and execute (jump to) them
1251 using the same protocol as implemented by the i.MX family's boot ROM.
Ye Lif7ac6fd2020-04-29 10:35:12 +08001252
1253config SPL_SDP_USB_DEV
1254 int "SDP USB controller index"
1255 default 0
1256 depends on SPL_USB_SDP_SUPPORT
1257 help
1258 Some boards have USB controller other than 0. Define this option
1259 so it can be used in compiled environment.
Stefan Agner0489c3b2016-11-21 10:58:53 -08001260endif
1261
Simon Glass1ba1d4e2021-07-10 21:14:28 -06001262config SPL_WATCHDOG
Simon Glass1e3911a2016-09-13 07:05:23 -06001263 bool "Support watchdog drivers"
Marek Vasut55ec91b2019-06-09 03:46:21 +02001264 imply SPL_WDT if !HW_WATCHDOG
Simon Glass1e3911a2016-09-13 07:05:23 -06001265 help
1266 Enable support for watchdog drivers in SPL. A watchdog is
1267 typically a hardware peripheral which can reset the system when it
1268 detects no activity for a while (such as a software crash). This
1269 enables the drivers in drivers/watchdog as part of an SPL build.
1270
1271config SPL_YMODEM_SUPPORT
1272 bool "Support loading using Ymodem"
Simon Glassf4d60392021-08-08 12:20:12 -06001273 depends on SPL_SERIAL
Simon Glass1e3911a2016-09-13 07:05:23 -06001274 help
1275 While loading from serial is slow it can be a useful backup when
1276 there is no other option. The Ymodem protocol provides a reliable
1277 means of transmitting U-Boot over a serial line for using in SPL,
1278 with a checksum to ensure correctness.
1279
Philipp Tomsichf6618812017-09-13 21:29:36 +02001280config SPL_ATF
Kever Yang6e79a912017-05-05 11:47:45 +08001281 bool "Support ARM Trusted Firmware"
Michal Simek38183e62020-09-03 11:23:39 +02001282 depends on ARM64 && SPL_FIT
Kever Yang6e79a912017-05-05 11:47:45 +08001283 help
Philipp Tomsichc4078af2018-01-02 21:16:43 +01001284 ATF(ARM Trusted Firmware) is a component for ARM AArch64 which
1285 is loaded by SPL (which is considered as BL2 in ATF terminology).
Kever Yang6e79a912017-05-05 11:47:45 +08001286 More detail at: https://github.com/ARM-software/arm-trusted-firmware
1287
Michael Walleafaf6ea2020-11-18 17:45:58 +01001288config SPL_ATF_LOAD_IMAGE_V2
1289 bool "Use the new LOAD_IMAGE_V2 parameter passing"
1290 depends on SPL_ATF
1291 help
1292 Some platforms use the newer LOAD_IMAGE_V2 parameter passing.
1293
1294 If you want to load a bl31 image from the SPL and need the new
1295 method, say Y.
1296
Philipp Tomsichc4078af2018-01-02 21:16:43 +01001297config SPL_ATF_NO_PLATFORM_PARAM
Michal Simek0606f9e2021-05-20 13:08:44 +02001298 bool "Pass no platform parameter"
Philipp Tomsichc4078af2018-01-02 21:16:43 +01001299 depends on SPL_ATF
1300 help
1301 While we expect to call a pointer to a valid FDT (or NULL)
1302 as the platform parameter to an ATF, some ATF versions are
1303 not U-Boot aware and have an insufficiently robust parameter
1304 validation to gracefully reject a FDT being passed.
1305
1306 If this option is enabled, the spl_atf os-type handler will
1307 always pass NULL for the platform parameter.
1308
1309 If your ATF is affected, say Y.
1310
Alex Kiernan10238ef2018-03-15 22:11:46 +00001311config SPL_AM33XX_ENABLE_RTC32K_OSC
1312 bool "Enable the RTC32K OSC on AM33xx based platforms"
1313 default y if AM33XX
1314 help
1315 Enable access to the AM33xx RTC and select the external 32kHz clock
1316 source.
1317
Patrick Delaunaya7ca4802021-09-02 11:56:16 +02001318config SPL_OPTEE_IMAGE
1319 bool "Support OP-TEE Trusted OS image in SPL"
Kever Yanga28d42c2018-08-23 17:17:59 +08001320 depends on ARM
1321 help
Patrick Delaunaya7ca4802021-09-02 11:56:16 +02001322 OP-TEE is an open source Trusted OS which is loaded by SPL.
Kever Yanga28d42c2018-08-23 17:17:59 +08001323 More detail at: https://github.com/OP-TEE/optee_os
1324
Lukas Auer515b9342019-08-21 21:14:44 +02001325config SPL_OPENSBI
1326 bool "Support RISC-V OpenSBI"
1327 depends on RISCV && SPL_RISCV_MMODE && RISCV_SMODE
1328 help
1329 OpenSBI is an open-source implementation of the RISC-V Supervisor Binary
1330 Interface (SBI) specification. U-Boot supports the OpenSBI FW_DYNAMIC
1331 firmware. It is loaded and started by U-Boot SPL.
1332
1333 More details are available at https://github.com/riscv/opensbi and
1334 https://github.com/riscv/riscv-sbi-doc
1335
1336config SPL_OPENSBI_LOAD_ADDR
1337 hex "OpenSBI load address"
1338 depends on SPL_OPENSBI
1339 help
1340 Load address of the OpenSBI binary.
1341
Tom Rini3c82f982017-05-22 19:21:57 +00001342config TPL
1343 bool
1344 depends on SUPPORT_TPL
1345 prompt "Enable TPL"
1346 help
1347 If you want to build TPL as well as the normal image and SPL, say Y.
1348
1349if TPL
1350
Simon Glassdb372a82019-10-20 21:31:52 -06001351config TPL_SIZE_LIMIT
1352 hex "Maximum size of TPL image"
1353 depends on TPL
Ovidiu Panaitb7232622020-09-25 21:12:56 +03001354 default 0x0
Simon Glassdb372a82019-10-20 21:31:52 -06001355 help
1356 Specifies the maximum length of the U-Boot TPL image.
1357 If this value is zero, it is ignored.
1358
Simon Glass02b87002022-02-08 11:49:48 -07001359config TPL_BINMAN_SYMBOLS
Simon Glass42c5ecc2022-03-05 20:18:55 -07001360 bool "Declare binman symbols in TPL"
Simon Glass02b87002022-02-08 11:49:48 -07001361 depends on SPL_FRAMEWORK && BINMAN
1362 default y
1363 help
Simon Glass42c5ecc2022-03-05 20:18:55 -07001364 This enables use of symbols in TPL which refer to U-Boot, enabling TPL
Simon Glass02b87002022-02-08 11:49:48 -07001365 to obtain the location of U-Boot simply by calling spl_get_image_pos()
1366 and spl_get_image_size().
1367
1368 For this to work, you must have a U-Boot image in the binman image, so
Simon Glass42c5ecc2022-03-05 20:18:55 -07001369 binman can update TPL with the location of it.
Simon Glass02b87002022-02-08 11:49:48 -07001370
Heiko Stuebner4a0da7c2019-07-16 10:12:02 +02001371config TPL_FRAMEWORK
1372 bool "Support TPL based upon the common SPL framework"
1373 default y if SPL_FRAMEWORK
1374 help
1375 Enable the SPL framework under common/spl/ for TPL builds.
1376 This framework supports MMC, NAND and YMODEM and other methods
1377 loading of U-Boot's SPL stage. If unsure, say Y.
1378
Simon Glasse14f1a22018-11-15 18:44:09 -07001379config TPL_HANDOFF
1380 bool "Pass hand-off information from TPL to SPL and U-Boot proper"
Simon Glass540ee8d2019-09-25 08:11:17 -06001381 depends on HANDOFF && TPL_BLOBLIST
Simon Glasse14f1a22018-11-15 18:44:09 -07001382 default y
1383 help
1384 This option enables TPL to write handoff information. This can be
1385 used to pass information like the size of SDRAM from TPL to U-Boot
1386 proper. The information is also available to SPL if it is useful
1387 there.
1388
Kever Yang2b5994b2018-01-20 18:00:26 +08001389config TPL_BOARD_INIT
1390 bool "Call board-specific initialization in TPL"
1391 help
1392 If this option is enabled, U-Boot will call the function
1393 spl_board_init() from board_init_r(). This function should be
1394 provided by the board.
1395
Philippe Reynes8d82a202020-12-11 19:56:47 +01001396config TPL_BOOTCOUNT_LIMIT
1397 bool "Support bootcount in TPL"
1398 depends on TPL_ENV_SUPPORT
1399 help
1400 If this option is enabled, the TPL will support bootcount.
1401 For example, it may be useful to choose the device to boot.
1402
Philipp Tomsichbe1c53a2017-07-28 19:20:49 +02001403config TPL_LDSCRIPT
Michal Simek0606f9e2021-05-20 13:08:44 +02001404 string "Linker script for the TPL stage"
Philipp Tomsichbe1c53a2017-07-28 19:20:49 +02001405 depends on TPL
Tom Rini2aaa27d2019-01-22 17:09:26 -05001406 default "arch/arm/cpu/armv8/u-boot-spl.lds" if ARM64
Tom Rini067b9ff2020-03-11 18:11:11 -04001407 default "arch/\$(ARCH)/cpu/u-boot-spl.lds"
Philipp Tomsichbe1c53a2017-07-28 19:20:49 +02001408 help
1409 The TPL stage will usually require a different linker-script
1410 (as it runs from a different memory region) than the regular
1411 U-Boot stage. Set this to the path of the linker-script to
1412 be used for TPL.
1413
Philipp Tomsichdeff59a2017-07-28 20:02:34 +02001414 May be left empty to trigger the Makefile infrastructure to
1415 fall back to the linker-script used for the SPL stage.
1416
Philipp Tomsichdeff59a2017-07-28 20:02:34 +02001417config TPL_NEEDS_SEPARATE_STACK
Michal Simek0606f9e2021-05-20 13:08:44 +02001418 bool "TPL needs a separate initial stack-pointer"
Philipp Tomsichdeff59a2017-07-28 20:02:34 +02001419 depends on TPL
1420 help
1421 Enable, if the TPL stage should not inherit its initial
1422 stack-pointer from the settings for the SPL stage.
1423
Simon Glassa0e44872021-08-08 12:20:29 -06001424config TPL_POWER
1425 bool "Support power drivers"
1426 help
1427 Enable support for power control in TPL. This includes support
1428 for PMICs (Power-management Integrated Circuits) and some of the
1429 features provided by PMICs. In particular, voltage regulators can
1430 be used to enable/disable power and vary its voltage. That can be
1431 useful in TPL to turn on boot peripherals and adjust CPU voltage
1432 so that the clock speed can be increased. This enables the drivers
1433 in drivers/power, drivers/power/pmic and drivers/power/regulator
1434 as part of an TPL build.
1435
Philipp Tomsichdeff59a2017-07-28 20:02:34 +02001436config TPL_TEXT_BASE
Michal Simek0606f9e2021-05-20 13:08:44 +02001437 hex "Base address for the .text section of the TPL stage"
Simon Glass9b68f4b2022-02-28 12:08:30 -07001438 default 0
Philipp Tomsichdeff59a2017-07-28 20:02:34 +02001439 help
1440 The base address for the .text section of the TPL stage.
1441
1442config TPL_MAX_SIZE
Michal Simek0606f9e2021-05-20 13:08:44 +02001443 int "Maximum size (in bytes) for the TPL stage"
Philipp Tomsich7d1319b2017-07-28 20:20:41 +02001444 default 0
Philipp Tomsichdeff59a2017-07-28 20:02:34 +02001445 depends on TPL
1446 help
1447 The maximum size (in bytes) of the TPL stage.
1448
1449config TPL_STACK
Michal Simek0606f9e2021-05-20 13:08:44 +02001450 hex "Address of the initial stack-pointer for the TPL stage"
Philipp Tomsichdeff59a2017-07-28 20:02:34 +02001451 depends on TPL_NEEDS_SEPARATE_STACK
1452 help
1453 The address of the initial stack-pointer for the TPL stage.
1454 Usually this will be the (aligned) top-of-stack.
1455
Simon Glass5b21b342021-03-15 17:25:35 +13001456config TPL_READ_ONLY
1457 bool
1458 depends on TPL_OF_PLATDATA
1459 select TPL_OF_PLATDATA_NO_BIND
1460 select TPL_OF_PLATDATA_RT
1461 help
1462 Some platforms (e.g. x86 Apollo Lake) load SPL into a read-only
1463 section of memory. This means that of-platdata must make a copy (in
1464 writeable memory) of anything it wants to modify, such as
1465 device-private data.
1466
Philipp Tomsich2706fb12017-07-04 14:24:53 +02001467config TPL_BOOTROM_SUPPORT
Michal Simek0606f9e2021-05-20 13:08:44 +02001468 bool "Support returning to the BOOTROM (from TPL)"
Philipp Tomsich2706fb12017-07-04 14:24:53 +02001469 help
1470 Some platforms (e.g. the Rockchip RK3368) provide support in their
1471 ROM for loading the next boot-stage after performing basic setup
1472 from the TPL stage.
1473
1474 Enable this option, to return to the BOOTROM through the
1475 BOOT_DEVICE_BOOTROM (or fall-through to the next boot device in the
1476 boot device list, if not implemented for a given board)
1477
Simon Glass577226c2021-09-25 19:43:24 -06001478config TPL_CRC32
1479 bool "Support CRC32 in TPL"
1480 default y if TPL_ENV_SUPPORT || TPL_BLOBLIST
1481 help
1482 Enable this to support CRC32 in uImages or FIT images within SPL.
1483 This is a 32-bit checksum value that can be used to verify images.
1484 For FIT images, this is the least secure type of checksum, suitable
1485 for detected accidental image corruption. For secure applications you
1486 should consider SHA1 or SHA256.
1487
Simon Glass284cb9c2021-07-10 21:14:31 -06001488config TPL_DRIVERS_MISC
Philipp Tomsich0e221882017-07-04 14:27:02 +02001489 bool "Support misc drivers in TPL"
1490 help
1491 Enable miscellaneous drivers in TPL. These drivers perform various
1492 tasks that don't fall nicely into other categories, Enable this
1493 option to build the drivers in drivers/misc as part of an TPL
1494 build, for those that support building in TPL (not all drivers do).
1495
Simon Glass688be332016-09-12 23:18:27 -06001496config TPL_ENV_SUPPORT
1497 bool "Support an environment"
Simon Glass688be332016-09-12 23:18:27 -06001498 help
1499 Enable environment support in TPL. See SPL_ENV_SUPPORT for details.
1500
Simon Glass035939e2021-07-10 21:14:30 -06001501config TPL_GPIO
Simon Glass592d5b92018-11-15 18:43:55 -07001502 bool "Support GPIO in TPL"
1503 help
1504 Enable support for GPIOs (General-purpose Input/Output) in TPL.
1505 GPIOs allow U-Boot to read the state of an input line (high or
1506 low) and set the state of an output line. This can be used to
1507 drive LEDs, control power to various system parts and read user
1508 input. GPIOs can be useful in TPL to enable a 'sign-of-life' LED,
1509 for example. Enable this option to build the drivers in
1510 drivers/gpio as part of an TPL build.
1511
Simon Glassbccfc2e2021-07-10 21:14:36 -06001512config TPL_I2C
Simon Glass688be332016-09-12 23:18:27 -06001513 bool "Support I2C"
Simon Glass688be332016-09-12 23:18:27 -06001514 help
Simon Glassbccfc2e2021-07-10 21:14:36 -06001515 Enable support for the I2C bus in TPL. See SPL_I2C for
Simon Glass688be332016-09-12 23:18:27 -06001516 details.
1517
1518config TPL_LIBCOMMON_SUPPORT
1519 bool "Support common libraries"
Simon Glass688be332016-09-12 23:18:27 -06001520 help
1521 Enable support for common U-Boot libraries within TPL. See
1522 SPL_LIBCOMMON_SUPPORT for details.
1523
1524config TPL_LIBGENERIC_SUPPORT
1525 bool "Support generic libraries"
Simon Glass688be332016-09-12 23:18:27 -06001526 help
1527 Enable support for generic U-Boot libraries within TPL. See
1528 SPL_LIBGENERIC_SUPPORT for details.
1529
Simon Glass64571062021-08-08 12:20:16 -06001530config TPL_MPC8XXX_INIT_DDR
Simon Glass688be332016-09-12 23:18:27 -06001531 bool "Support MPC8XXX DDR init"
Simon Glass688be332016-09-12 23:18:27 -06001532 help
1533 Enable support for DDR-SDRAM on the MPC8XXX family within TPL. See
Simon Glass64571062021-08-08 12:20:16 -06001534 SPL_MPC8XXX_INIT_DDR for details.
Simon Glass688be332016-09-12 23:18:27 -06001535
Simon Glassb58bfe02021-08-08 12:20:09 -06001536config TPL_MMC
Simon Glass688be332016-09-12 23:18:27 -06001537 bool "Support MMC"
Tom Rini3c82f982017-05-22 19:21:57 +00001538 depends on MMC
Simon Glass688be332016-09-12 23:18:27 -06001539 help
Simon Glassb58bfe02021-08-08 12:20:09 -06001540 Enable support for MMC within TPL. See SPL_MMC for details.
Simon Glass688be332016-09-12 23:18:27 -06001541
1542config TPL_NAND_SUPPORT
1543 bool "Support NAND flash"
Simon Glass688be332016-09-12 23:18:27 -06001544 help
Philipp Tomsich6c7a88e2017-07-28 17:03:03 +02001545 Enable support for NAND in TPL. See SPL_NAND_SUPPORT for details.
Simon Glass688be332016-09-12 23:18:27 -06001546
Sekhar Nori9108d922018-12-06 15:40:08 +05301547config TPL_PCI
Simon Glass592d5b92018-11-15 18:43:55 -07001548 bool "Support PCI drivers"
1549 help
1550 Enable support for PCI in TPL. For platforms that need PCI to boot,
1551 or must perform some init using PCI in SPL, this provides the
1552 necessary driver support. This enables the drivers in drivers/pci
1553 as part of a TPL build.
1554
Simon Glassff67f232021-08-08 12:20:10 -06001555config TPL_PCH
Simon Glass592d5b92018-11-15 18:43:55 -07001556 bool "Support PCH drivers"
1557 help
1558 Enable support for PCH (Platform Controller Hub) devices in TPL.
1559 These are used to set up GPIOs and the SPI peripheral early in
1560 boot. This enables the drivers in drivers/pch as part of a TPL
1561 build.
1562
Marek Vasut84493722018-04-07 17:03:45 +02001563config TPL_RAM_SUPPORT
1564 bool "Support booting from RAM"
1565 help
1566 Enable booting of an image in RAM. The image can be preloaded or
1567 it can be loaded by TPL directly into RAM (e.g. using USB).
1568
1569config TPL_RAM_DEVICE
1570 bool "Support booting from preloaded image in RAM"
1571 depends on TPL_RAM_SUPPORT
1572 help
1573 Enable booting of an image already loaded in RAM. The image has to
1574 be already in memory when TPL takes over, e.g. loaded by the boot
1575 ROM.
1576
Simon Glass31985312021-08-08 12:20:11 -06001577config TPL_RTC
Simon Glass592d5b92018-11-15 18:43:55 -07001578 bool "Support RTC drivers"
1579 help
1580 Enable RTC (Real-time Clock) support in TPL. This includes support
1581 for reading and setting the time. Some RTC devices also have some
1582 non-volatile (battery-backed) memory which is accessible if
1583 needed. This enables the drivers in drivers/rtc as part of an TPL
1584 build.
1585
Simon Glassf4d60392021-08-08 12:20:12 -06001586config TPL_SERIAL
Simon Glass688be332016-09-12 23:18:27 -06001587 bool "Support serial"
Alex Kiernan5b404282018-04-19 04:32:54 +00001588 select TPL_PRINTF
1589 select TPL_STRTO
Simon Glass688be332016-09-12 23:18:27 -06001590 help
Simon Glassf4d60392021-08-08 12:20:12 -06001591 Enable support for serial in TPL. See SPL_SERIAL for
Simon Glass688be332016-09-12 23:18:27 -06001592 details.
1593
1594config TPL_SPI_FLASH_SUPPORT
1595 bool "Support SPI flash drivers"
Simon Glass688be332016-09-12 23:18:27 -06001596 help
Philipp Tomsich6c7a88e2017-07-28 17:03:03 +02001597 Enable support for using SPI flash in TPL. See SPL_SPI_FLASH_SUPPORT
Simon Glass688be332016-09-12 23:18:27 -06001598 for details.
1599
Simon Glass4ec73132020-07-19 10:15:31 -06001600config TPL_SPI_FLASH_TINY
1601 bool "Enable low footprint TPL SPI Flash support"
1602 depends on TPL_SPI_FLASH_SUPPORT && !SPI_FLASH_BAR
1603 default y if SPI_FLASH
1604 help
1605 Enable lightweight TPL SPI Flash support that supports just reading
1606 data/images from flash. No support to write/erase flash. Enable
1607 this if you have TPL size limitations and don't need full-fledged
1608 SPI flash support.
1609
Marek Vasute6b94da2018-04-07 16:05:46 +02001610config TPL_SPI_LOAD
1611 bool "Support loading from SPI flash"
1612 depends on TPL_SPI_FLASH_SUPPORT
1613 help
1614 Enable support for loading next stage, U-Boot or otherwise, from
1615 SPI NOR in U-Boot TPL.
1616
Simon Glassa5820472021-08-08 12:20:14 -06001617config TPL_SPI
Simon Glass688be332016-09-12 23:18:27 -06001618 bool "Support SPI drivers"
Simon Glass688be332016-09-12 23:18:27 -06001619 help
Simon Glassa5820472021-08-08 12:20:14 -06001620 Enable support for using SPI in TPL. See SPL_SPI for
Simon Glass688be332016-09-12 23:18:27 -06001621 details.
1622
Lukasz Majewski76f442982020-06-04 23:11:53 +08001623config TPL_DM_SPI
1624 bool "Support SPI DM drivers in TPL"
1625 help
1626 Enable support for SPI DM drivers in TPL.
1627
1628config TPL_DM_SPI_FLASH
1629 bool "Support SPI DM FLASH drivers in TPL"
1630 help
1631 Enable support for SPI DM flash drivers in TPL.
1632
Marek Vasut04774242018-04-07 16:06:11 +02001633config TPL_YMODEM_SUPPORT
1634 bool "Support loading using Ymodem"
Simon Glassf4d60392021-08-08 12:20:12 -06001635 depends on TPL_SERIAL
Marek Vasut04774242018-04-07 16:06:11 +02001636 help
1637 While loading from serial is slow it can be a useful backup when
1638 there is no other option. The Ymodem protocol provides a reliable
1639 means of transmitting U-Boot over a serial line for using in TPL,
1640 with a checksum to ensure correctness.
1641
Tom Rini3c82f982017-05-22 19:21:57 +00001642endif # TPL
1643
Simon Glasse7ca7da2022-04-30 00:56:53 -06001644config VPL
1645 bool
1646 depends on SUPPORT_SPL
1647 prompt "Enable VPL"
1648 help
1649 If you want to build VPL as well as the normal image, TPL and SPL,
1650 say Y.
1651
1652if VPL
1653
1654config VPL_BANNER_PRINT
1655 bool "Enable output of the VPL banner 'U-Boot VPL ...'"
1656 depends on VPL
1657 default y
1658 help
1659 If this option is enabled, VPL will print the banner with version
1660 info. Disabling this option could be useful to reduce VPL boot time
1661 (e.g. approx. 6 ms faster, when output on i.MX6 with 115200 baud).
1662
1663config VPL_BOARD_INIT
1664 bool "Call board-specific initialization in VPL"
1665 help
1666 If this option is enabled, U-Boot will call the function
1667 spl_board_init() from board_init_r(). This function should be
1668 provided by the board.
1669
1670config VPL_CACHE
1671 depends on CACHE
1672 bool "Support cache drivers in VPL"
1673 help
1674 Enable support for cache drivers in VPL.
1675
1676config VPL_CRC32
1677 bool "Support CRC32 in VPL"
1678 default y if VPL_ENV_SUPPORT || VPL_BLOBLIST
1679 help
1680 Enable this to support CRC32 in uImages or FIT images within VPL.
1681 This is a 32-bit checksum value that can be used to verify images.
1682 For FIT images, this is the least secure type of checksum, suitable
1683 for detected accidental image corruption. For secure applications you
1684 should consider SHA1 or SHA256.
1685
1686config VPL_DM_SPI
1687 bool "Support SPI DM drivers in VPL"
1688 help
1689 Enable support for SPI DM drivers in VPL.
1690
1691config VPL_DM_SPI_FLASH
1692 bool "Support SPI DM FLASH drivers in VPL"
1693 help
1694 Enable support for SPI DM flash drivers in VPL.
1695
1696config VPL_FRAMEWORK
1697 bool "Support VPL based upon the common SPL framework"
1698 default y
1699 help
1700 Enable the SPL framework under common/spl/ for VPL builds.
1701 This framework supports MMC, NAND and YMODEM and other methods
1702 loading of U-Boot's next stage. If unsure, say Y.
1703
1704config VPL_HANDOFF
1705 bool "Pass hand-off information from VPL to SPL"
1706 depends on HANDOFF && VPL_BLOBLIST
1707 default y
1708 help
1709 This option enables VPL to write handoff information. This can be
1710 used to pass information like the size of SDRAM from VPL to SPL. Also
1711 VPL can receive information from TPL in the same place if that is
1712 enabled.
1713
1714config VPL_LIBCOMMON_SUPPORT
1715 bool "Support common libraries"
1716 default y if SPL_LIBCOMMON_SUPPORT
1717 help
1718 Enable support for common U-Boot libraries within VPL. See
1719 SPL_LIBCOMMON_SUPPORT for details.
1720
1721config VPL_LIBGENERIC_SUPPORT
1722 bool "Support generic libraries"
1723 default y if SPL_LIBGENERIC_SUPPORT
1724 help
1725 Enable support for generic U-Boot libraries within VPL. These
1726 libraries include generic code to deal with device tree, hashing,
1727 printf(), compression and the like. This option is enabled on many
1728 boards. Enable this option to build the code in lib/ as part of a
1729 VPL build.
1730
1731config VPL_DRIVERS_MISC
1732 bool "Support misc drivers"
1733 default y if TPL_DRIVERS_MISC
1734 help
1735 Enable miscellaneous drivers in VPL. These drivers perform various
1736 tasks that don't fall nicely into other categories, Enable this
1737 option to build the drivers in drivers/misc as part of a VPL
1738 build, for those that support building in VPL (not all drivers do).
1739
1740config VPL_ENV_SUPPORT
1741 bool "Support an environment"
1742 help
1743 Enable environment support in VPL. The U-Boot environment provides
1744 a number of settings (essentially name/value pairs) which can
1745 control many aspects of U-Boot's operation. Enabling this option will
1746 make env_get() and env_set() available in VSPL.
1747
1748config VPL_GPIO
1749 bool "Support GPIO in VPL"
1750 default y if SPL_GPIO
1751 help
1752 Enable support for GPIOs (General-purpose Input/Output) in VPL.
1753 GPIOs allow U-Boot to read the state of an input line (high or
1754 low) and set the state of an output line. This can be used to
1755 drive LEDs, control power to various system parts and read user
1756 input. GPIOs can be useful in VPL to enable a 'sign-of-life' LED,
1757 for example. Enable this option to build the drivers in
1758 drivers/gpio as part of a VPL build.
1759
1760config VPL_HANDOFF
1761 bool "Pass hand-off information from VPL to SPL and U-Boot proper"
1762 depends on HANDOFF && VPL_BLOBLIST
1763 default y
1764 help
1765 This option enables VPL to write handoff information. This can be
1766 used to pass information like the size of SDRAM from VPL to U-Boot
1767 proper. The information is also available to VPL if it is useful
1768 there.
1769
1770config VPL_HASH
1771 bool "Support hashing drivers in VPL"
1772 depends on VPL
1773 select SHA1
1774 select SHA256
1775 help
1776 Enable hashing drivers in VPL. These drivers can be used to
1777 accelerate secure boot processing in secure applications. Enable
1778 this option to build system-specific drivers for hash acceleration
1779 as part of a VPL build.
1780
1781config VPL_I2C_SUPPORT
1782 bool "Support I2C in VPL"
1783 default y if SPL_I2C_SUPPORT
1784 help
1785 Enable support for the I2C bus in VPL. Vee SPL_I2C_SUPPORT for
1786 details.
1787
1788config VPL_PCH_SUPPORT
1789 bool "Support PCH drivers"
1790 default y if TPL_PCH_SUPPORT
1791 help
1792 Enable support for PCH (Platform Controller Hub) devices in VPL.
1793 These are used to set up GPIOs and the SPI peripheral early in
1794 boot. This enables the drivers in drivers/pch as part of a VPL
1795 build.
1796
1797config VPL_PCI
1798 bool "Support PCI drivers"
1799 default y if SPL_PCI
1800 help
1801 Enable support for PCI in VPL. For platforms that need PCI to boot,
1802 or must perform some init using PCI in VPL, this provides the
1803 necessary driver support. This enables the drivers in drivers/pci
1804 as part of a VPL build.
1805
1806config VPL_RTC
1807 bool "Support RTC drivers"
1808 help
1809 Enable RTC (Real-time Clock) support in VPL. This includes support
1810 for reading and setting the time. Some RTC devices also have some
1811 non-volatile (battery-backed) memory which is accessible if
1812 needed. This enables the drivers in drivers/rtc as part of a VPL
1813 build.
1814
1815config VPL_SERIAL
1816 bool "Support serial"
1817 default y if TPL_SERIAL
1818 select VPL_PRINTF
1819 select VPL_STRTO
1820 help
1821 Enable support for serial in VPL. See SPL_SERIAL_SUPPORT for
1822 details.
1823
1824config VPL_SIZE_LIMIT
1825 hex "Maximum size of VPL image"
1826 depends on VPL
1827 default 0x0
1828 help
1829 Specifies the maximum length of the U-Boot VPL image.
1830 If this value is zero, it is ignored.
1831
1832config VPL_SPI
1833 bool "Support SPI drivers"
1834 help
1835 Enable support for using SPI in VPL. See SPL_SPI_SUPPORT for
1836 details.
1837
1838config VPL_SPI_FLASH_SUPPORT
1839 bool "Support SPI flash drivers"
1840 help
1841 Enable support for using SPI flash in VPL, and loading U-Boot from
1842 SPI flash. SPI flash (Serial Peripheral Bus flash) is named after
1843 the SPI bus that is used to connect it to a system. It is a simple
1844 but fast bidirectional 4-wire bus (clock, chip select and two data
1845 lines). This enables the drivers in drivers/mtd/spi as part of a
1846 VPL build. This normally requires VPL_SPI_SUPPORT.
1847
1848config VPL_TEXT_BASE
1849 hex "VPL Text Base"
1850 default 0x0
1851 help
1852 The address in memory that VPL will be running from.
1853
1854endif # VPL
1855
Eugen Hristevfdd833e2019-05-24 09:38:10 +03001856config SPL_AT91_MCK_BYPASS
1857 bool "Use external clock signal as a source of main clock for AT91 platforms"
1858 depends on ARCH_AT91
Eugen Hristevfdd833e2019-05-24 09:38:10 +03001859 help
1860 Use external 8 to 24 Mhz clock signal as source of main clock instead
1861 of an external crystal oscillator.
1862 This option disables the internal driving on the XOUT pin.
1863 The external source has to provide a stable clock on the XIN pin.
1864 If this option is disabled, the SoC expects a crystal oscillator
1865 that needs driving on both XIN and XOUT lines.
1866
Tom Rini3c82f982017-05-22 19:21:57 +00001867endif # SPL
Simon Glass1e3911a2016-09-13 07:05:23 -06001868endmenu