blob: b45607b3f758a4a02ac0f4ab6343fab2d3d962c8 [file] [log] [blame]
Simon Glassf86ca5a2022-04-30 00:56:52 -06001menu "SPL / TPL / VPL"
Simon Glass11bde1c2016-09-13 07:05:23 -06002
Simon Glassc2ae7d82016-09-12 23:18:22 -06003config SUPPORT_SPL
4 bool
5
6config SUPPORT_TPL
7 bool
8
Simon Glassf86ca5a2022-04-30 00:56:52 -06009config SUPPORT_VPL
10 bool
11
B, Ravi66928af2017-05-04 15:45:29 +053012config SPL_DFU_NO_RESET
13 bool
14
Simon Glassc2ae7d82016-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 Rini75670c82018-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 Reynesa9a3aad2019-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 Goldschmidt25770152019-05-24 22:07:04 +020040config SPL_SIZE_LIMIT
Simon Glassb51882d2019-09-25 08:56:28 -060041 hex "Maximum size of SPL image"
Simon Goldschmidt25770152019-05-24 22:07:04 +020042 depends on SPL
Ovidiu Panait2dfdd0c2020-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 Goldschmidt25770152019-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 Goldschmidtd8c03322019-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 Glass7d84fbb2021-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 Glass38c04d82022-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 Wang5d168ad2019-12-04 06:21:55 +0000119menu "PowerPC and LayerScape SPL Boot options"
Tom Rinidb4080d2019-06-01 14:20:25 -0400120
121config SPL_NAND_BOOT
122 bool "Load SPL from NAND flash"
Alison Wang5d168ad2019-12-04 06:21:55 +0000123 depends on PPC && (SUPPORT_SPL && !SPL_FRAMEWORK)
Tom Rinidb4080d2019-06-01 14:20:25 -0400124
125config SPL_MMC_BOOT
126 bool "Load SPL from SD Card / eMMC"
Alison Wang5d168ad2019-12-04 06:21:55 +0000127 depends on PPC && (SUPPORT_SPL && !SPL_FRAMEWORK)
Tom Rinidb4080d2019-06-01 14:20:25 -0400128
129config SPL_SPI_BOOT
130 bool "Load SPL from SPI flash"
Alison Wang5d168ad2019-12-04 06:21:55 +0000131 depends on PPC && (SUPPORT_SPL && !SPL_FRAMEWORK)
Tom Rinidb4080d2019-06-01 14:20:25 -0400132
133config SPL_FSL_PBL
134 bool "Create SPL in Freescale PBI format"
Alison Wang5d168ad2019-12-04 06:21:55 +0000135 depends on (PPC || ARCH_LS1021A || ARCH_LS1043A || ARCH_LS1046A) && \
136 SUPPORT_SPL
Tom Rinidb4080d2019-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
Tom Rinib35316f2022-05-13 12:26:35 -0400143menu "PowerPC SPL specific options"
144 depends on PPC && (SUPPORT_SPL && !SPL_FRAMEWORK)
145
146config SPL_INIT_MINIMAL
147 bool "Arch init code will be built for a very small image"
148
149config SPL_FLUSH_IMAGE
150 bool "Clean dcache and invalidate icache after loading the image"
151
152config SPL_SKIP_RELOCATE
153 bool "Skip relocating SPL"
154
155endmenu
156
Simon Glassb0edea32018-11-15 18:44:09 -0700157config HANDOFF
158 bool "Pass hand-off information from SPL to U-Boot proper"
Ovidiu Panait2a7c9ab2020-11-28 10:43:19 +0200159 depends on SPL && BLOBLIST
Simon Glassb0edea32018-11-15 18:44:09 -0700160 help
161 It is useful to be able to pass information from SPL to U-Boot
162 proper to preserve state that is known in SPL and is needed in U-Boot.
163 Enable this to locate the handoff information in U-Boot proper, early
164 in boot. It is available in gd->handoff. The state state is set up
165 in SPL (or TPL if that is being used).
166
Tom Rini226498b2017-05-22 19:21:57 +0000167if SPL
168
Simon Glassb0edea32018-11-15 18:44:09 -0700169config SPL_HANDOFF
170 bool "Pass hand-off information from SPL to U-Boot proper"
Simon Glassa7da3d92019-09-25 08:11:17 -0600171 depends on HANDOFF && SPL_BLOBLIST
Simon Glassb0edea32018-11-15 18:44:09 -0700172 default y
173 help
174 This option enables SPL to write handoff information. This can be
175 used to pass information like the size of SDRAM from SPL to U-Boot
176 proper. Also SPL can receive information from TPL in the same place
177 if that is enabled.
178
Philipp Tomsichdd6fbcb2017-07-28 19:20:49 +0200179config SPL_LDSCRIPT
180 string "Linker script for the SPL stage"
Tom Rinia356e7a2020-03-11 18:11:11 -0400181 default "arch/\$(ARCH)/cpu/u-boot-spl.lds"
Philipp Tomsichdd6fbcb2017-07-28 19:20:49 +0200182 help
183 The SPL stage will usually require a different linker-script
184 (as it runs from a different memory region) than the regular
185 U-Boot stage. Set this to the path of the linker-script to
186 be used for SPL.
187
Simon Goldschmidtf89d6132018-09-30 14:31:53 +0200188config SPL_TEXT_BASE
189 hex "SPL Text Base"
190 default ISW_ENTRY_ADDR if AM43XX || AM33XX || OMAP54XX || ARCH_KEYSTONE
Andre Przywara9340d8f2019-05-27 01:45:11 +0100191 default 0x10060 if MACH_SUN50I || MACH_SUN50I_H5 || MACH_SUN9I
Jernej Skrabec44726092021-01-11 21:11:34 +0100192 default 0x20060 if SUN50I_GEN_H6
Andre Przywara9340d8f2019-05-27 01:45:11 +0100193 default 0x00060 if ARCH_SUNXI
Michal Simek0413f9c2019-09-11 08:49:31 +0200194 default 0xfffc0000 if ARCH_ZYNQMP
Simon Goldschmidtf89d6132018-09-30 14:31:53 +0200195 default 0x0
196 help
197 The address in memory that SPL will be running from.
198
Ley Foon Tan0680f1b2017-05-03 17:13:32 +0800199config SPL_BOARD_INIT
Ley Foon Tan0680f1b2017-05-03 17:13:32 +0800200 bool "Call board-specific initialization in SPL"
201 help
202 If this option is enabled, U-Boot will call the function
203 spl_board_init() from board_init_r(). This function should be
204 provided by the board.
205
Simon Glass747093d2022-04-30 00:56:53 -0600206config VPL_BOARD_INIT
207 bool "Call board-specific initialization in VPL"
208 help
209 If this option is enabled, U-Boot will call the function
210 spl_board_init() from board_init_r(). This function should be
211 provided by the board.
212
Philipp Tomsich225d30b2017-06-22 23:38:36 +0200213config SPL_BOOTROM_SUPPORT
Michal Simekce869b52021-05-20 13:08:44 +0200214 bool "Support returning to the BOOTROM"
Philipp Tomsich225d30b2017-06-22 23:38:36 +0200215 help
216 Some platforms (e.g. the Rockchip RK3368) provide support in their
217 ROM for loading the next boot-stage after performing basic setup
218 from the SPL stage.
219
220 Enable this option, to return to the BOOTROM through the
221 BOOT_DEVICE_BOOTROM (or fall-through to the next boot device in the
222 boot device list, if not implemented for a given board)
223
Lukasz Majewskiafa96092018-05-02 16:10:50 +0200224config SPL_BOOTCOUNT_LIMIT
225 bool "Support bootcount in SPL"
Philippe Reynes4d145f22020-12-11 19:56:47 +0100226 depends on SPL_ENV_SUPPORT && !TPL_BOOTCOUNT_LIMIT
Lukasz Majewskiafa96092018-05-02 16:10:50 +0200227 help
228 On some boards, which use 'falcon' mode, it is necessary to check
229 and increment the number of boot attempts. Such boards do not
230 use proper U-Boot for normal boot flow and hence needs those
231 adjustments to be done in the SPL.
232
Andrew F. Davis24eb39b2017-02-16 11:18:38 -0600233config SPL_RAW_IMAGE_SUPPORT
234 bool "Support SPL loading and booting of RAW images"
Simon Glassf7560372021-08-08 12:20:17 -0600235 default n if (ARCH_MX6 && (SPL_MMC || SPL_SATA))
Andrew Davis11f32da2022-05-04 15:52:26 -0500236 default y
237 depends on !TI_SECURE_DEVICE
Andrew F. Davis24eb39b2017-02-16 11:18:38 -0600238 help
239 SPL will support loading and booting a RAW image when this option
240 is y. If this is not set, SPL will move on to other available
241 boot media to find a suitable image.
242
Andrew Davis6665ab12022-05-04 15:52:25 -0500243config SPL_LEGACY_IMAGE_FORMAT
Andrew F. Davis722a6b12017-02-16 11:18:39 -0600244 bool "Support SPL loading and booting of Legacy images"
Andrew Davis11f32da2022-05-04 15:52:26 -0500245 default y if !SPL_LOAD_FIT
246 depends on !TI_SECURE_DEVICE
Andrew F. Davis722a6b12017-02-16 11:18:39 -0600247 help
248 SPL will support loading and booting Legacy images when this option
249 is y. If this is not set, SPL will move on to other available
250 boot media to find a suitable image.
251
Simon Goldschmidtdae5c2d2019-02-10 21:34:37 +0100252config SPL_LEGACY_IMAGE_CRC_CHECK
253 bool "Check CRC of Legacy images"
Andrew Davis6665ab12022-05-04 15:52:25 -0500254 depends on SPL_LEGACY_IMAGE_FORMAT
Simon Glass1e52db62021-07-14 17:05:32 -0500255 select SPL_CRC32
Simon Goldschmidtdae5c2d2019-02-10 21:34:37 +0100256 help
257 Enable this to check the CRC of Legacy images. While this increases
258 reliability, it affects both code size and boot duration.
259 If disabled, Legacy images are booted if the image magic and size
260 are correct, without further integrity checks.
261
Simon Glassc2ae7d82016-09-12 23:18:22 -0600262config SPL_SYS_MALLOC_SIMPLE
263 bool
Simon Glassc2ae7d82016-09-12 23:18:22 -0600264 prompt "Only use malloc_simple functions in the SPL"
265 help
266 Say Y here to only use the *_simple malloc functions from
267 malloc_simple.c, rather then using the versions from dlmalloc.c;
268 this will make the SPL binary smaller at the cost of more heap
269 usage as the *_simple malloc functions do not re-use free-ed mem.
270
Philipp Tomsichd60b5f72017-06-30 18:57:25 +0200271config TPL_SYS_MALLOC_SIMPLE
272 bool
273 prompt "Only use malloc_simple functions in the TPL"
Adam Ford05705562019-08-13 14:32:30 -0500274 depends on TPL
Philipp Tomsichd60b5f72017-06-30 18:57:25 +0200275 help
276 Say Y here to only use the *_simple malloc functions from
277 malloc_simple.c, rather then using the versions from dlmalloc.c;
278 this will make the TPL binary smaller at the cost of more heap
279 usage as the *_simple malloc functions do not re-use free-ed mem.
280
Simon Glassc2ae7d82016-09-12 23:18:22 -0600281config SPL_STACK_R
Simon Glassc2ae7d82016-09-12 23:18:22 -0600282 bool "Enable SDRAM location for SPL stack"
283 help
284 SPL starts off execution in SRAM and thus typically has only a small
285 stack available. Since SPL sets up DRAM while in its board_init_f()
286 function, it is possible for the stack to move there before
287 board_init_r() is reached. This option enables a special SDRAM
288 location for the SPL stack. U-Boot SPL switches to this after
289 board_init_f() completes, and before board_init_r() starts.
290
291config SPL_STACK_R_ADDR
292 depends on SPL_STACK_R
293 hex "SDRAM location for SPL stack"
Tom Riniff6c3122017-09-17 11:44:49 -0400294 default 0x82000000 if ARCH_OMAP2PLUS
Simon Glassc2ae7d82016-09-12 23:18:22 -0600295 help
296 Specify the address in SDRAM for the SPL stack. This will be set up
297 before board_init_r() is called.
298
299config SPL_STACK_R_MALLOC_SIMPLE_LEN
300 depends on SPL_STACK_R && SPL_SYS_MALLOC_SIMPLE
301 hex "Size of malloc_simple heap after switching to DRAM SPL stack"
302 default 0x100000
303 help
304 Specify the amount of the stack to use as memory pool for
305 malloc_simple after switching the stack to DRAM. This may be set
306 to give board_init_r() a larger heap then the initial heap in
307 SRAM which is limited to SYS_MALLOC_F_LEN bytes.
308
309config SPL_SEPARATE_BSS
Simon Glassc2ae7d82016-09-12 23:18:22 -0600310 bool "BSS section is in a different memory region from text"
311 help
312 Some platforms need a large BSS region in SPL and can provide this
313 because RAM is already set up. In this case BSS can be moved to RAM.
314 This option should then be enabled so that the correct device tree
315 location is used. Normally we put the device tree at the end of BSS
316 but with this option enabled, it goes at _image_binary_end.
317
Simon Glass95a58252021-03-15 17:25:35 +1300318config SPL_READ_ONLY
319 bool
320 depends on SPL_OF_PLATDATA
321 # Bind cannot be supported because the udevice structs are in read-only
322 # memory so we cannot update the linked lists.
323 select SPL_OF_PLATDATA_NO_BIND
324 select SPL_OF_PLATDATA_RT
325 help
326 Some platforms (e.g. x86 Apollo Lake) load SPL into a read-only
327 section of memory. This means that of-platdata must make a copy (in
328 writeable memory) of anything it wants to modify, such as
329 device-private data.
330
Simon Glassf86ca5a2022-04-30 00:56:52 -0600331config TPL_SEPARATE_BSS
332 bool "BSS section is in a different memory region from text"
333 default y if SPL_SEPARATE_BSS
334 help
335 Some platforms need a large BSS region in TPL and can provide this
336 because RAM is already set up. In this case BSS can be moved to RAM.
337 This option should then be enabled so that the correct device tree
338 location is used. Normally we put the device tree at the end of BSS
339 but with this option enabled, it goes at _image_binary_end.
340
Simon Glassaedc08b2018-11-15 18:43:57 -0700341config SPL_BANNER_PRINT
342 bool "Enable output of the SPL banner 'U-Boot SPL ...'"
343 default y
344 help
345 If this option is enabled, SPL will print the banner with version
Thomas Hebb32f2ca22019-11-13 18:18:03 -0800346 info. Disabling this option could be useful to reduce SPL boot time
Simon Glassaedc08b2018-11-15 18:43:57 -0700347 (e.g. approx. 6 ms faster, when output on i.MX6 with 115200 baud).
348
349config TPL_BANNER_PRINT
350 bool "Enable output of the TPL banner 'U-Boot TPL ...'"
Adam Ford05705562019-08-13 14:32:30 -0500351 depends on TPL
Simon Glassaedc08b2018-11-15 18:43:57 -0700352 default y
Anatolij Gustschin0292bc02018-01-25 18:45:22 +0100353 help
Thomas Hebb32f2ca22019-11-13 18:18:03 -0800354 If this option is enabled, TPL will print the banner with version
355 info. Disabling this option could be useful to reduce TPL boot time
Simon Glassaedc08b2018-11-15 18:43:57 -0700356 (e.g. approx. 6 ms faster, when output on i.MX6 with 115200 baud).
Anatolij Gustschin0292bc02018-01-25 18:45:22 +0100357
Andreas Dannenberga5a5d992019-06-04 17:55:45 -0500358config SPL_EARLY_BSS
359 depends on ARM && !ARM64
360 bool "Allows initializing BSS early before entering board_init_f"
361 help
362 On some platform we have sufficient memory available early on to
363 allow setting up and using a basic BSS prior to entering
364 board_init_f. Activating this option will also de-activate the
365 clearing of BSS during the SPL relocation process, thus allowing
366 to carry state from board_init_f to board_init_r by way of BSS.
367
Simon Glassa807ab32016-09-24 18:19:56 -0600368config SPL_DISPLAY_PRINT
Simon Glassa807ab32016-09-24 18:19:56 -0600369 bool "Display a board-specific message in SPL"
370 help
371 If this option is enabled, U-Boot will call the function
372 spl_display_print() immediately after displaying the SPL console
373 banner ("U-Boot SPL ..."). This function should be provided by
374 the board.
375
Semen Protsenko38fed8a2016-11-16 19:19:05 +0200376config SYS_MMCSD_RAW_MODE_U_BOOT_USE_SECTOR
377 bool "MMC raw mode: by sector"
Fabio Estevam1da19382018-06-11 15:08:05 -0300378 default y if ARCH_SUNXI || ARCH_DAVINCI || ARCH_UNIPHIER || \
379 ARCH_MX6 || ARCH_MX7 || \
Semen Protsenko38fed8a2016-11-16 19:19:05 +0200380 ARCH_ROCKCHIP || ARCH_MVEBU || ARCH_SOCFPGA || \
381 ARCH_AT91 || ARCH_ZYNQ || ARCH_KEYSTONE || OMAP34XX || \
Bin Mengae2d9502021-03-17 11:10:58 +0800382 OMAP44XX || OMAP54XX || AM33XX || AM43XX || \
Green Wan70415e12021-05-27 06:52:13 -0700383 TARGET_SIFIVE_UNLEASHED || TARGET_SIFIVE_UNMATCHED
Semen Protsenko38fed8a2016-11-16 19:19:05 +0200384 help
385 Use sector number for specifying U-Boot location on MMC/SD in
386 raw mode.
387
388config SYS_MMCSD_RAW_MODE_U_BOOT_SECTOR
389 hex "Address on the MMC to load U-Boot from"
Tom Rini226498b2017-05-22 19:21:57 +0000390 depends on SYS_MMCSD_RAW_MODE_U_BOOT_USE_SECTOR
Andre Przywarac0b417b2021-01-11 21:11:39 +0100391 default 0x40 if ARCH_SUNXI
Semen Protsenko38fed8a2016-11-16 19:19:05 +0200392 default 0x75 if ARCH_DAVINCI
Fabio Estevam1da19382018-06-11 15:08:05 -0300393 default 0x8a if ARCH_MX6 || ARCH_MX7
Kever Yang8f4d62b2017-11-02 15:16:34 +0800394 default 0x100 if ARCH_UNIPHIER
Pali Rohár2226ca12021-07-23 11:14:29 +0200395 default 0x0 if ARCH_MVEBU
Semen Protsenko38fed8a2016-11-16 19:19:05 +0200396 default 0x200 if ARCH_SOCFPGA || ARCH_AT91
397 default 0x300 if ARCH_ZYNQ || ARCH_KEYSTONE || OMAP34XX || OMAP44XX || \
Lokesh Vutla586bde92018-08-27 15:57:08 +0530398 OMAP54XX || AM33XX || AM43XX || ARCH_K3
Kever Yang8f4d62b2017-11-02 15:16:34 +0800399 default 0x4000 if ARCH_ROCKCHIP
Green Wan70415e12021-05-27 06:52:13 -0700400 default 0x822 if TARGET_SIFIVE_UNLEASHED || TARGET_SIFIVE_UNMATCHED
Semen Protsenko38fed8a2016-11-16 19:19:05 +0200401 help
402 Address on the MMC to load U-Boot from, when the MMC is being used
403 in raw mode. Units: MMC sectors (1 sector = 512 bytes).
404
Baruch Siache42afd82020-01-15 09:08:08 +0200405config SYS_MMCSD_RAW_MODE_U_BOOT_DATA_PART_OFFSET
406 hex "U-Boot main hardware partition image offset"
407 depends on SYS_MMCSD_RAW_MODE_U_BOOT_USE_SECTOR
Andre Przywarac0b417b2021-01-11 21:11:39 +0100408 default 0x10 if ARCH_SUNXI
Baruch Siache42afd82020-01-15 09:08:08 +0200409 default 0x0
410 help
411 On some platforms SPL location depends on hardware partition. The ROM
412 code skips the MBR sector when loading SPL from main hardware data
413 partition. This adds offset to the main U-Boot image. Set this symbol
414 to the number of skipped sectors.
415
416 If unsure, leave the default.
417
Dalon Westergreen949123e2017-02-10 17:15:35 -0800418config SYS_MMCSD_RAW_MODE_U_BOOT_USE_PARTITION
419 bool "MMC Raw mode: by partition"
Dalon Westergreen949123e2017-02-10 17:15:35 -0800420 help
421 Use a partition for loading U-Boot when using MMC/SD in raw mode.
422
423config SYS_MMCSD_RAW_MODE_U_BOOT_PARTITION
424 hex "Partition to use to load U-Boot from"
Tom Rini226498b2017-05-22 19:21:57 +0000425 depends on SYS_MMCSD_RAW_MODE_U_BOOT_USE_PARTITION
Dalon Westergreen949123e2017-02-10 17:15:35 -0800426 default 1
427 help
428 Partition on the MMC to load U-Boot from when the MMC is being
429 used in raw mode
430
Dalon Westergreenf0fb4fa2017-02-10 17:15:34 -0800431config SYS_MMCSD_RAW_MODE_U_BOOT_USE_PARTITION_TYPE
432 bool "MMC raw mode: by partition type"
Tom Rini226498b2017-05-22 19:21:57 +0000433 depends on DOS_PARTITION && SYS_MMCSD_RAW_MODE_U_BOOT_USE_PARTITION
Dalon Westergreenf0fb4fa2017-02-10 17:15:34 -0800434 help
435 Use partition type for specifying U-Boot partition on MMC/SD in
436 raw mode. U-Boot will be loaded from the first partition of this
437 type to be found.
438
439config SYS_MMCSD_RAW_MODE_U_BOOT_PARTITION_TYPE
440 hex "Partition Type on the MMC to load U-Boot from"
Tom Rini226498b2017-05-22 19:21:57 +0000441 depends on SYS_MMCSD_RAW_MODE_U_BOOT_USE_PARTITION_TYPE
Dalon Westergreenf0fb4fa2017-02-10 17:15:34 -0800442 help
443 Partition Type on the MMC to load U-Boot from, when the MMC is being
444 used in raw mode.
445
Anatolij Gustschin32ded502019-10-18 21:38:33 +0200446config SUPPORT_EMMC_BOOT_OVERRIDE_PART_CONFIG
447 bool "Override eMMC EXT_CSC_PART_CONFIG by user defined partition"
448 depends on SUPPORT_EMMC_BOOT
449 help
450 eMMC boot partition is normally configured by the bits of the EXT_CSD
451 register (EXT_CSC_PART_CONFIG), BOOT_PARTITION_ENABLE field. In some
452 cases it might be required in SPL to load the image from different
453 partition than the partition selected by EXT_CSC_PART_CONFIG register.
454 Enable this option if you intend to use an eMMC boot partition other
455 then selected via EXT_CSC_PART_CONFIG register and specify the custom
456 partition number by the CONFIG_SYS_MMCSD_RAW_MODE_EMMC_BOOT_PARTITION
457 option.
458
459config SYS_MMCSD_RAW_MODE_EMMC_BOOT_PARTITION
460 int "Number of the eMMC boot partition to use"
461 depends on SUPPORT_EMMC_BOOT_OVERRIDE_PART_CONFIG
462 default 1
463 help
464 eMMC boot partition number to use when the eMMC in raw mode and
465 the eMMC EXT_CSC_PART_CONFIG selection should be overridden in SPL
466 by user defined partition number.
467
Simon Glass1e52db62021-07-14 17:05:32 -0500468config SPL_CRC32
Simon Glass11bde1c2016-09-13 07:05:23 -0600469 bool "Support CRC32"
Andrew Davis6665ab12022-05-04 15:52:25 -0500470 default y if SPL_LEGACY_IMAGE_FORMAT || SPL_EFI_PARTITION
Simon Glasse7d285b2021-09-25 19:43:24 -0600471 default y if SPL_ENV_SUPPORT || TPL_BLOBLIST
Simon Glass11bde1c2016-09-13 07:05:23 -0600472 help
Simon Goldschmidtdae5c2d2019-02-10 21:34:37 +0100473 Enable this to support CRC32 in uImages or FIT images within SPL.
474 This is a 32-bit checksum value that can be used to verify images.
475 For FIT images, this is the least secure type of checksum, suitable
476 for detected accidental image corruption. For secure applications you
477 should consider SHA1 or SHA256.
Simon Glass11bde1c2016-09-13 07:05:23 -0600478
Simon Glass4b00fd12021-07-14 17:05:33 -0500479config SPL_MD5
Simon Glass11bde1c2016-09-13 07:05:23 -0600480 bool "Support MD5"
481 depends on SPL_FIT
482 help
483 Enable this to support MD5 in FIT images within SPL. An MD5
484 checksum is a 128-bit hash value used to check that the image
485 contents have not been corrupted. Note that MD5 is not considered
486 secure as it is possible (with a brute-force attack) to adjust the
487 image while still retaining the same MD5 hash value. For secure
488 applications where images may be changed maliciously, you should
Reuben Dowled16b38f2020-04-16 17:36:52 +1200489 consider SHA256 or SHA384.
Simon Glass11bde1c2016-09-13 07:05:23 -0600490
Philipp Tomsich337bbb62017-11-24 13:26:03 +0100491config SPL_FIT_IMAGE_TINY
492 bool "Remove functionality from SPL FIT loading to reduce size"
493 depends on SPL_FIT
Jernej Skrabec44726092021-01-11 21:11:34 +0100494 default y if MACH_SUN50I || MACH_SUN50I_H5 || SUN50I_GEN_H6
Ye Lif6282cd2018-11-20 10:19:15 +0000495 default y if ARCH_IMX8M
Philipp Tomsich337bbb62017-11-24 13:26:03 +0100496 help
497 Enable this to reduce the size of the FIT image loading code
498 in SPL, if space for the SPL binary is very tight.
499
Samuel Hollandcf705532020-10-21 21:12:13 -0500500 This skips the recording of each loaded payload
Philipp Tomsich337bbb62017-11-24 13:26:03 +0100501 (i.e. loadable) into the FDT (modifying the loaded FDT to
502 ensure this information is available to the next image
503 invoked).
504
Simon Glassde213c72021-08-08 12:20:15 -0600505config SPL_CACHE
Rick Chen31dae222019-11-14 13:52:26 +0800506 bool "Support CACHE drivers"
507 help
508 Enable CACHE drivers in SPL. These drivers can keep data so that
509 future requests for that data can be served faster. Enable this option
510 to build the drivers in drivers/cache as part of an SPL build.
511
Simon Glass529d5f92021-03-15 18:11:18 +1300512config SPL_CPU
Simon Glass5e148df2017-01-16 07:03:29 -0700513 bool "Support CPU drivers"
Simon Glass5e148df2017-01-16 07:03:29 -0700514 help
515 Enable this to support CPU drivers in SPL. These drivers can set
516 up CPUs and provide information about them such as the model and
517 name. This can be useful in SPL since setting up the CPUs earlier
518 may improve boot performance. Enable this option to build the
519 drivers in drivers/cpu as part of an SPL build.
520
Simon Glass0c6bdbb2021-07-10 21:14:25 -0600521config SPL_CRYPTO
Simon Glass11bde1c2016-09-13 07:05:23 -0600522 bool "Support crypto drivers"
Simon Glass11bde1c2016-09-13 07:05:23 -0600523 help
524 Enable crypto drivers in SPL. These drivers can be used to
525 accelerate secure boot processing in secure applications. Enable
526 this option to build the drivers in drivers/crypto as part of an
527 SPL build.
528
Vignesh Raghavendra74326a32019-11-15 17:00:41 +0530529config SPL_DMA
Simon Glass11bde1c2016-09-13 07:05:23 -0600530 bool "Support DMA drivers"
Simon Glass11bde1c2016-09-13 07:05:23 -0600531 help
532 Enable DMA (direct-memory-access) drivers in SPL. These drivers
533 can be used to handle memory-to-peripheral data transfer without
534 the CPU moving the data. Enable this option to build the drivers
535 in drivers/dma as part of an SPL build.
536
Simon Glass9ca00682021-07-10 21:14:31 -0600537config SPL_DRIVERS_MISC
Simon Glass11bde1c2016-09-13 07:05:23 -0600538 bool "Support misc drivers"
Simon Glass11bde1c2016-09-13 07:05:23 -0600539 help
540 Enable miscellaneous drivers in SPL. These drivers perform various
541 tasks that don't fall nicely into other categories, Enable this
542 option to build the drivers in drivers/misc as part of an SPL
543 build, for those that support building in SPL (not all drivers do).
544
545config SPL_ENV_SUPPORT
546 bool "Support an environment"
Simon Glass11bde1c2016-09-13 07:05:23 -0600547 help
548 Enable environment support in SPL. The U-Boot environment provides
549 a number of settings (essentially name/value pairs) which can
550 control many aspects of U-Boot's operation. Normally this is not
551 needed in SPL as it has a much simpler task with less
552 configuration. But some boards use this to support 'Falcon' boot
553 on EXT2 and FAT, where SPL boots directly into Linux without
Simon Glass00caae62017-08-03 12:22:12 -0600554 starting U-Boot first. Enabling this option will make env_get()
Simon Glass382bee52017-08-03 12:22:09 -0600555 and env_set() available in SPL.
Simon Glass11bde1c2016-09-13 07:05:23 -0600556
B, Ravid2d9bdf2016-09-28 14:46:18 +0530557config SPL_SAVEENV
558 bool "Support save environment"
Tom Rini226498b2017-05-22 19:21:57 +0000559 depends on SPL_ENV_SUPPORT
Jean-Jacques Hiblotd6400c32018-01-04 15:23:32 +0100560 select SPL_MMC_WRITE if ENV_IS_IN_MMC
B, Ravid2d9bdf2016-09-28 14:46:18 +0530561 help
562 Enable save environment support in SPL after setenv. By default
563 the saveenv option is not provided in SPL, but some boards need
564 this support in 'Falcon' boot, where SPL need to boot from
565 different images based on environment variable set by OS. For
566 example OS may set "reboot_image" environment variable to
567 "recovery" inorder to boot recovery image by SPL. The SPL read
568 "reboot_image" and act accordingly and change the reboot_image
Shyam Saini919d25c2018-06-07 19:47:19 +0530569 to default mode using setenv and save the environment.
B, Ravid2d9bdf2016-09-28 14:46:18 +0530570
Simon Glassf2d7a362021-07-10 21:14:26 -0600571config SPL_ETH
Simon Glass11bde1c2016-09-13 07:05:23 -0600572 bool "Support Ethernet"
573 depends on SPL_ENV_SUPPORT
Simon Glass9f664922021-08-08 12:20:31 -0600574 depends on SPL_NET
Simon Glass11bde1c2016-09-13 07:05:23 -0600575 help
576 Enable access to the network subsystem and associated Ethernet
577 drivers in SPL. This permits SPL to load U-Boot over an Ethernet
578 link rather than from an on-board peripheral. Environment support
579 is required since the network stack uses a number of environment
Simon Glass5ed16a92021-08-08 12:20:30 -0600580 variables. See also SPL_NET.
Simon Glass11bde1c2016-09-13 07:05:23 -0600581
Tien Fong Cheef4b40922019-01-23 14:20:05 +0800582config SPL_FS_EXT4
Simon Glass11bde1c2016-09-13 07:05:23 -0600583 bool "Support EXT filesystems"
Simon Glass11bde1c2016-09-13 07:05:23 -0600584 help
585 Enable support for EXT2/3/4 filesystems with SPL. This permits
586 U-Boot (or Linux in Falcon mode) to be loaded from an EXT
587 filesystem from within SPL. Support for the underlying block
588 device (e.g. MMC or USB) must be enabled separately.
589
Joao Marcos Costac5100612020-07-30 15:33:47 +0200590config SPL_FS_SQUASHFS
591 bool "Support SquashFS filesystems"
592 select FS_SQUASHFS
593 help
594 Enable support for SquashFS filesystems with SPL. This permits
595 U-Boot (or Linux in Falcon mode) to be loaded from a SquashFS
596 filesystem from within SPL. Support for the underlying block
597 device (e.g. MMC or USB) must be enabled separately.
598
Tien Fong Chee0c3a9ed2019-01-23 14:20:03 +0800599config SPL_FS_FAT
Simon Glass11bde1c2016-09-13 07:05:23 -0600600 bool "Support FAT filesystems"
Sekhar Norieedfb892017-06-02 17:53:59 +0530601 select FS_FAT
Simon Glass11bde1c2016-09-13 07:05:23 -0600602 help
603 Enable support for FAT and VFAT filesystems with SPL. This
604 permits U-Boot (or Linux in Falcon mode) to be loaded from a FAT
605 filesystem from within SPL. Support for the underlying block
606 device (e.g. MMC or USB) must be enabled separately.
607
Tien Fong Cheed8c3ea92019-01-23 14:20:04 +0800608config SPL_FAT_WRITE
609 bool "Support write for FAT filesystems"
610 help
611 Enable write support for FAT and VFAT filesystems with SPL.
612 Support for the underlying block device (e.g. MMC or USB) must be
613 enabled separately.
614
Michal Simek29bd8ad2020-09-09 14:41:56 +0200615config SPL_FPGA
Simon Glass11bde1c2016-09-13 07:05:23 -0600616 bool "Support FPGAs"
Simon Glass11bde1c2016-09-13 07:05:23 -0600617 help
618 Enable support for FPGAs in SPL. Field-programmable Gate Arrays
619 provide software-configurable hardware which is typically used to
620 implement peripherals (such as UARTs, LCD displays, MMC) or
621 accelerate custom processing functions, such as image processing
622 or machine learning. Sometimes it is useful to program the FPGA
623 as early as possible during boot, and this option can enable that
624 within SPL.
625
Simon Glass83061db2021-07-10 21:14:30 -0600626config SPL_GPIO
Simon Glass2d424eb2018-11-15 18:43:55 -0700627 bool "Support GPIO in SPL"
Simon Glass11bde1c2016-09-13 07:05:23 -0600628 help
629 Enable support for GPIOs (General-purpose Input/Output) in SPL.
630 GPIOs allow U-Boot to read the state of an input line (high or
631 low) and set the state of an output line. This can be used to
632 drive LEDs, control power to various system parts and read user
633 input. GPIOs can be useful in SPL to enable a 'sign-of-life' LED,
634 for example. Enable this option to build the drivers in
635 drivers/gpio as part of an SPL build.
636
Simon Glass975e7cf2021-07-10 21:14:36 -0600637config SPL_I2C
Simon Glass11bde1c2016-09-13 07:05:23 -0600638 bool "Support I2C"
Simon Glass11bde1c2016-09-13 07:05:23 -0600639 help
640 Enable support for the I2C (Inter-Integrated Circuit) bus in SPL.
641 I2C works with a clock and data line which can be driven by a
642 one or more masters or slaves. It is a fairly complex bus but is
643 widely used as it only needs two lines for communication. Speeds of
644 400kbps are typical but up to 3.4Mbps is supported by some
645 hardware. I2C can be useful in SPL to configure power management
646 ICs (PMICs) before raising the CPU clock speed, for example.
647 Enable this option to build the drivers in drivers/i2c as part of
648 an SPL build.
649
650config SPL_LIBCOMMON_SUPPORT
651 bool "Support common libraries"
Simon Glass11bde1c2016-09-13 07:05:23 -0600652 help
653 Enable support for common U-Boot libraries within SPL. These
654 libraries include common code to deal with U-Boot images,
655 environment and USB, for example. This option is enabled on many
656 boards. Enable this option to build the code in common/ as part of
657 an SPL build.
658
659config SPL_LIBDISK_SUPPORT
Simon Goldschmidt00416702018-08-16 09:44:55 +0200660 bool "Support disk partitions"
Tom Rini91ff6862018-12-05 08:23:38 -0500661 select PARTITIONS
Simon Glass11bde1c2016-09-13 07:05:23 -0600662 help
663 Enable support for disk partitions within SPL. 'Disk' is something
664 of a misnomer as it includes non-spinning media such as flash (as
665 used in MMC and USB sticks). Partitions provide a way for a disk
666 to be split up into separate regions, with a partition table placed
667 at the start or end which describes the location and size of each
668 'partition'. These partitions are typically uses as individual block
669 devices, typically with an EXT2 or FAT filesystem in each. This
670 option enables whatever partition support has been enabled in
671 U-Boot to also be used in SPL. It brings in the code in disk/.
672
673config SPL_LIBGENERIC_SUPPORT
674 bool "Support generic libraries"
Simon Glass11bde1c2016-09-13 07:05:23 -0600675 help
676 Enable support for generic U-Boot libraries within SPL. These
677 libraries include generic code to deal with device tree, hashing,
678 printf(), compression and the like. This option is enabled on many
679 boards. Enable this option to build the code in lib/ as part of an
680 SPL build.
681
Lokesh Vutla88027412018-08-27 15:57:49 +0530682config SPL_DM_MAILBOX
683 bool "Support Mailbox"
684 help
685 Enable support for Mailbox within SPL. This enable the inter
686 processor communication protocols tobe used within SPL. Enable
687 this option to build the drivers in drivers/mailbox as part of
688 SPL build.
689
Simon Glass103c5f12021-08-08 12:20:09 -0600690config SPL_MMC
Simon Glass11bde1c2016-09-13 07:05:23 -0600691 bool "Support MMC"
Tom Rini226498b2017-05-22 19:21:57 +0000692 depends on MMC
Tom Rini91ff6862018-12-05 08:23:38 -0500693 select HAVE_BLOCK_DEVICE
Simon Glass11bde1c2016-09-13 07:05:23 -0600694 help
695 Enable support for MMC (Multimedia Card) within SPL. This enables
696 the MMC protocol implementation and allows any enabled drivers to
697 be used within SPL. MMC can be used with or without disk partition
698 support depending on the application (SPL_LIBDISK_SUPPORT). Enable
699 this option to build the drivers in drivers/mmc as part of an SPL
700 build.
701
Adam Fordacc415a2020-07-03 10:17:30 -0500702config SYS_MMCSD_FS_BOOT_PARTITION
703 int "MMC Boot Partition"
704 default 1
705 help
706 Partition on the MMC to load U-Boot from when the MMC is being
Jérôme Carretero5fa973e2022-03-15 16:34:51 -0400707 used in fs mode.
708 Use -1 as a special value to use the first bootable partition.
Adam Fordacc415a2020-07-03 10:17:30 -0500709
Ezequiel Garciabf7c01d2019-05-25 19:25:21 -0300710config SPL_MMC_TINY
711 bool "Tiny MMC framework in SPL"
Simon Glass103c5f12021-08-08 12:20:09 -0600712 depends on SPL_MMC
Ezequiel Garciabf7c01d2019-05-25 19:25:21 -0300713 help
714 Enable MMC framework tinification support. This option is useful if
715 if your SPL is extremely size constrained. Heed the warning, enable
716 this option if and only if you know exactly what you are doing, if
717 you are reading this help text, you most likely have no idea :-)
718
719 The MMC framework is reduced to bare minimum to be useful. No malloc
720 support is needed for the MMC framework operation with this option
721 enabled. The framework supports exactly one MMC device and exactly
722 one MMC driver. The MMC driver can be adjusted to avoid any malloc
723 operations too, which can remove the need for malloc support in SPL
724 and thus further reduce footprint.
725
Jean-Jacques Hiblotd6400c32018-01-04 15:23:32 +0100726config SPL_MMC_WRITE
727 bool "MMC/SD/SDIO card support for write operations in SPL"
Simon Glass103c5f12021-08-08 12:20:09 -0600728 depends on SPL_MMC
Jean-Jacques Hiblotd6400c32018-01-04 15:23:32 +0100729 help
730 Enable write access to MMC and SD Cards in SPL
731
732
Simon Glass6f004ad2021-08-08 12:20:16 -0600733config SPL_MPC8XXX_INIT_DDR
Simon Glass11bde1c2016-09-13 07:05:23 -0600734 bool "Support MPC8XXX DDR init"
Simon Glass11bde1c2016-09-13 07:05:23 -0600735 help
736 Enable support for DDR-SDRAM (double-data-rate synchronous dynamic
737 random-access memory) on the MPC8XXX family within SPL. This
738 allows DRAM to be set up before loading U-Boot into that DRAM,
739 where it can run.
740
741config SPL_MTD_SUPPORT
742 bool "Support MTD drivers"
Simon Glass11bde1c2016-09-13 07:05:23 -0600743 help
744 Enable support for MTD (Memory Technology Device) within SPL. MTD
745 provides a block interface over raw NAND and can also be used with
746 SPI flash. This allows SPL to load U-Boot from supported MTD
747 devices. See SPL_NAND_SUPPORT and SPL_ONENAND_SUPPORT for how
748 to enable specific MTD drivers.
749
Simon Glass89ddb0b2021-07-10 21:14:27 -0600750config SPL_MUSB_NEW
Simon Glass11bde1c2016-09-13 07:05:23 -0600751 bool "Support new Mentor Graphics USB"
Simon Glass11bde1c2016-09-13 07:05:23 -0600752 help
753 Enable support for Mentor Graphics USB in SPL. This is a new
754 driver used by some boards. Enable this option to build
755 the drivers in drivers/usb/musb-new as part of an SPL build. The
756 old drivers are in drivers/usb/musb.
757
758config SPL_NAND_SUPPORT
759 bool "Support NAND flash"
Simon Glass11bde1c2016-09-13 07:05:23 -0600760 help
761 Enable support for NAND (Negative AND) flash in SPL. NAND flash
762 can be used to allow SPL to load U-Boot from supported devices.
Miquel Raynala430fa02018-08-16 17:30:07 +0200763 This enables the drivers in drivers/mtd/nand/raw as part of an SPL
Simon Glass11bde1c2016-09-13 07:05:23 -0600764 build.
765
Tom Rinibab1b352022-05-13 12:46:23 -0400766config SPL_NAND_RAW_ONLY
767 bool "Support to boot only raw u-boot.bin images"
768 depends on SPL_NAND_SUPPORT
769 help
770 Use this only if you need to save space.
771
Adam Ford0c4a6342020-07-03 08:09:44 -0500772config SPL_NAND_DRIVERS
773 bool "Use standard NAND driver"
774 help
775 SPL uses normal NAND drivers, not minimal drivers.
776
777config SPL_NAND_ECC
Tom Rinibab1b352022-05-13 12:46:23 -0400778 bool "Include standard ECC in SPL"
779
780config SPL_NAND_SOFTECC
781 bool "Use software ECC in SPL"
782 depends on SPL_NAND_ECC
Adam Ford0c4a6342020-07-03 08:09:44 -0500783
784config SPL_NAND_SIMPLE
785 bool "Support simple NAND drivers in SPL"
786 help
787 Support for NAND boot using simple NAND drivers that
788 expose the cmd_ctrl() interface.
789
Adam Ford38791062020-07-03 08:09:45 -0500790config SPL_NAND_BASE
791 depends on SPL_NAND_DRIVERS
792 bool "Use Base NAND Driver"
Michal Simekce869b52021-05-20 13:08:44 +0200793 help
794 Include nand_base.c in the SPL.
Adam Ford38791062020-07-03 08:09:45 -0500795
796config SPL_NAND_IDENT
797 depends on SPL_NAND_BASE
798 bool "Use chip ID to identify NAND flash"
799 help
800 SPL uses the chip ID list to identify the NAND flash.
801
Markus Klotzbuecherc67c3492019-05-15 15:15:57 +0200802config SPL_UBI
803 bool "Support UBI"
804 help
805 Enable support for loading payloads from UBI. See
806 README.ubispl for more info.
807
Lukasz Majewskif18845c2019-09-09 12:06:46 +0200808if SPL_DM
809config SPL_DM_SPI
810 bool "Support SPI DM drivers in SPL"
811 help
812 Enable support for SPI DM drivers in SPL.
813
Lukasz Majewski56c40462020-06-04 23:11:53 +0800814config SPL_DM_SPI_FLASH
815 bool "Support SPI DM FLASH drivers in SPL"
816 help
817 Enable support for SPI DM flash drivers in SPL.
818
Lukasz Majewskif18845c2019-09-09 12:06:46 +0200819endif
Markus Klotzbuecherc67c3492019-05-15 15:15:57 +0200820if SPL_UBI
Hamish Guthrie6ea31cc2019-05-15 15:15:59 +0200821config SPL_UBI_LOAD_BY_VOLNAME
822 bool "Support loading volumes by name"
823 help
824 This enables support for loading UBI volumes by name. When this
825 is set, CONFIG_SPL_UBI_LOAD_MONITOR_VOLNAME can be used to
826 configure the volume name from which to load U-Boot.
827
Markus Klotzbuecherc67c3492019-05-15 15:15:57 +0200828config SPL_UBI_MAX_VOL_LEBS
829 int "Maximum number of LEBs per volume"
830 depends on SPL_UBI
831 help
832 The maximum number of logical eraseblocks which a static volume
833 to load can contain. Used for sizing the scan data structure.
834
835config SPL_UBI_MAX_PEB_SIZE
836 int "Maximum PEB size"
837 depends on SPL_UBI
838 help
839 The maximum physical erase block size.
840
841config SPL_UBI_MAX_PEBS
842 int "Maximum number of PEBs"
843 depends on SPL_UBI
844 help
845 The maximum physical erase block size. If not overridden by
846 board code, this value will be used as the actual number of PEBs.
847
848config SPL_UBI_PEB_OFFSET
849 int "Offset to first UBI PEB"
850 depends on SPL_UBI
851 help
852 The offset in number of PEBs from the start of flash to the first
853 PEB part of the UBI image.
854
855config SPL_UBI_VID_OFFSET
856 int "Offset to VID header"
857 depends on SPL_UBI
858
859config SPL_UBI_LEB_START
860 int "Offset to LEB in PEB"
861 depends on SPL_UBI
862 help
863 The offset in bytes to the LEB within a PEB.
864
865config SPL_UBI_INFO_ADDR
866 hex "Address to place UBI scan info"
867 depends on SPL_UBI
868 help
869 Address for ubispl to place the scan info. Read README.ubispl to
870 determine the required size
871
872config SPL_UBI_VOL_IDS
873 int "Maximum volume id"
874 depends on SPL_UBI
875 help
876 The maximum volume id which can be loaded. Used for sizing the
877 scan data structure.
878
879config SPL_UBI_LOAD_MONITOR_ID
880 int "id of U-Boot volume"
881 depends on SPL_UBI
882 help
883 The UBI volume id from which to load U-Boot
884
Hamish Guthrie6ea31cc2019-05-15 15:15:59 +0200885config SPL_UBI_LOAD_MONITOR_VOLNAME
886 string "volume name of U-Boot volume"
887 depends on SPL_UBI_LOAD_BY_VOLNAME
888 help
889 The UBI volume name from which to load U-Boot
890
Markus Klotzbuecherc67c3492019-05-15 15:15:57 +0200891config SPL_UBI_LOAD_KERNEL_ID
892 int "id of kernel volume"
893 depends on SPL_OS_BOOT && SPL_UBI
894 help
895 The UBI volume id from which to load the kernel
896
897config SPL_UBI_LOAD_ARGS_ID
898 int "id of kernel args volume"
899 depends on SPL_OS_BOOT && SPL_UBI
900 help
901 The UBI volume id from which to load the device tree
902
Markus Klotzbuechera2257d32019-05-15 15:16:00 +0200903config UBI_SPL_SILENCE_MSG
904 bool "silence UBI SPL messages"
Markus Klotzbuechera2257d32019-05-15 15:16:00 +0200905 help
906 Disable messages from UBI SPL. This leaves warnings
907 and errors enabled.
Markus Klotzbuecherc67c3492019-05-15 15:15:57 +0200908
909endif # if SPL_UBI
910
Simon Glass5ed16a92021-08-08 12:20:30 -0600911config SPL_NET
Simon Glass11bde1c2016-09-13 07:05:23 -0600912 bool "Support networking"
Simon Glass11bde1c2016-09-13 07:05:23 -0600913 help
914 Enable support for network devices (such as Ethernet) in SPL.
915 This permits SPL to load U-Boot over a network link rather than
916 from an on-board peripheral. Environment support is required since
917 the network stack uses a number of environment variables. See also
Simon Glassf2d7a362021-07-10 21:14:26 -0600918 SPL_ETH.
Simon Glass11bde1c2016-09-13 07:05:23 -0600919
Simon Glass5ed16a92021-08-08 12:20:30 -0600920if SPL_NET
Simon Glass11bde1c2016-09-13 07:05:23 -0600921config SPL_NET_VCI_STRING
922 string "BOOTP Vendor Class Identifier string sent by SPL"
923 help
924 As defined by RFC 2132 the vendor class identifier field can be
925 sent by the client to identify the vendor type and configuration
926 of a client. This is often used in practice to allow for the DHCP
927 server to specify different files to load depending on if the ROM,
928 SPL or U-Boot itself makes the request
Simon Glass5ed16a92021-08-08 12:20:30 -0600929endif # if SPL_NET
Simon Glass11bde1c2016-09-13 07:05:23 -0600930
931config SPL_NO_CPU_SUPPORT
932 bool "Drop CPU code in SPL"
Simon Glass11bde1c2016-09-13 07:05:23 -0600933 help
934 This is specific to the ARM926EJ-S CPU. It disables the standard
935 start.S start-up code, presumably so that a replacement can be
936 used on that CPU. You should not enable it unless you know what
937 you are doing.
938
939config SPL_NOR_SUPPORT
940 bool "Support NOR flash"
Simon Glass11bde1c2016-09-13 07:05:23 -0600941 help
942 Enable support for loading U-Boot from memory-mapped NOR (Negative
943 OR) flash in SPL. NOR flash is slow to write but fast to read, and
944 a memory-mapped device makes it very easy to access. Loading from
945 NOR is typically achieved with just a memcpy().
946
Vikas Manochac6d9e9d2017-05-28 12:55:11 -0700947config SPL_XIP_SUPPORT
948 bool "Support XIP"
949 depends on SPL
950 help
951 Enable support for execute in place of U-Boot or kernel image. There
952 is no need to copy image from flash to ram if flash supports execute
953 in place. Its very useful in systems having enough flash but not
954 enough ram to load the image.
955
Simon Glass11bde1c2016-09-13 07:05:23 -0600956config SPL_ONENAND_SUPPORT
957 bool "Support OneNAND flash"
Simon Glass11bde1c2016-09-13 07:05:23 -0600958 help
959 Enable support for OneNAND (Negative AND) flash in SPL. OneNAND is
960 a type of NAND flash and therefore can be used to allow SPL to
961 load U-Boot from supported devices. This enables the drivers in
962 drivers/mtd/onenand as part of an SPL build.
963
Heiko Schocherc20ae2f2016-10-06 07:55:15 +0200964config SPL_OS_BOOT
965 bool "Activate Falcon Mode"
Tom Rini226498b2017-05-22 19:21:57 +0000966 depends on !TI_SECURE_DEVICE
Heiko Schocherc20ae2f2016-10-06 07:55:15 +0200967 help
968 Enable booting directly to an OS from SPL.
969 for more info read doc/README.falcon
970
Heiko Schocher29d3bc72016-10-06 07:55:16 +0200971if SPL_OS_BOOT
972config SYS_OS_BASE
973 hex "addr, where OS is found"
Tom Rini226498b2017-05-22 19:21:57 +0000974 depends on SPL_NOR_SUPPORT
Heiko Schocher29d3bc72016-10-06 07:55:16 +0200975 help
976 Specify the address, where the OS image is found, which
977 gets booted.
978
979endif # SPL_OS_BOOT
980
Alexandru Gagniuc22eb1522021-12-30 10:39:59 -0600981config SPL_FALCON_BOOT_MMCSD
982 bool "Enable Falcon boot from MMC or SD media"
983 depends on SPL_OS_BOOT && SPL_MMC
984 help
985 Select this if the Falcon mode OS image mode is on MMC or SD media.
986
987config SYS_MMCSD_RAW_MODE_KERNEL_SECTOR
988 hex "Falcon mode: Sector to load kernel uImage from MMC"
989 depends on SPL_FALCON_BOOT_MMCSD
990 help
991 When Falcon mode is used with an MMC or SD media, SPL needs to know
992 where to look for the kernel uImage. The image is expected to begin
993 at the raw MMC specified in this config.
994 Note that the Falcon mode image can also be a FIT, if FIT support is
995 enabled.
996
York Sun7550dbe2018-06-14 14:38:48 -0700997config SPL_PAYLOAD
998 string "SPL payload"
999 default "tpl/u-boot-with-tpl.bin" if TPL
1000 default "u-boot.bin"
1001 help
Chris Packham2dcfa052019-01-13 22:13:20 +13001002 Payload for SPL boot. For backward compatibility, default to
York Sun7550dbe2018-06-14 14:38:48 -07001003 u-boot.bin, i.e. RAW image without any header. In case of
1004 TPL, tpl/u-boot-with-tpl.bin. For new boards, suggest to
1005 use u-boot.img.
1006
Sekhar Norid50d6812018-12-06 15:40:08 +05301007config SPL_PCI
Simon Glass2446b6b2017-01-16 07:03:30 -07001008 bool "Support PCI drivers"
Simon Glass2446b6b2017-01-16 07:03:30 -07001009 help
1010 Enable support for PCI in SPL. For platforms that need PCI to boot,
1011 or must perform some init using PCI in SPL, this provides the
1012 necessary driver support. This enables the drivers in drivers/pci
1013 as part of an SPL build.
1014
Simon Glass15042e72021-08-08 12:20:10 -06001015config SPL_PCH
Simon Glassbbe41ab2017-01-16 07:03:33 -07001016 bool "Support PCH drivers"
Simon Glassbbe41ab2017-01-16 07:03:33 -07001017 help
1018 Enable support for PCH (Platform Controller Hub) devices in SPL.
1019 These are used to set up GPIOs and the SPI peripheral early in
1020 boot. This enables the drivers in drivers/pch as part of an SPL
1021 build.
1022
Simon Glass11bde1c2016-09-13 07:05:23 -06001023config SPL_POST_MEM_SUPPORT
1024 bool "Support POST drivers"
Simon Glass11bde1c2016-09-13 07:05:23 -06001025 help
1026 Enable support for POST (Power-on Self Test) in SPL. POST is a
1027 procedure that checks that the hardware (CPU or board) appears to
1028 be functionally correctly. It is a sanity check that can be
1029 performed before booting. This enables the drivers in post/drivers
1030 as part of an SPL build.
1031
Ley Foon Tanbfc6bae2018-06-14 18:45:19 +08001032config SPL_DM_RESET
Patrick Delaunay0e373c02018-03-12 10:46:05 +01001033 bool "Support reset drivers"
1034 depends on SPL
1035 help
1036 Enable support for reset control in SPL.
1037 That can be useful in SPL to handle IP reset in driver, as in U-Boot,
1038 by using the generic reset API provided by driver model.
1039 This enables the drivers in drivers/reset as part of an SPL build.
1040
Simon Glass933b2f02021-07-10 21:14:24 -06001041config SPL_POWER
Simon Glass11bde1c2016-09-13 07:05:23 -06001042 bool "Support power drivers"
Simon Glass11bde1c2016-09-13 07:05:23 -06001043 help
1044 Enable support for power control in SPL. This includes support
1045 for PMICs (Power-management Integrated Circuits) and some of the
1046 features provided by PMICs. In particular, voltage regulators can
1047 be used to enable/disable power and vary its voltage. That can be
1048 useful in SPL to turn on boot peripherals and adjust CPU voltage
1049 so that the clock speed can be increased. This enables the drivers
1050 in drivers/power, drivers/power/pmic and drivers/power/regulator
1051 as part of an SPL build.
1052
Peng Fane13278c2018-07-27 10:20:37 +08001053config SPL_POWER_DOMAIN
1054 bool "Support power domain drivers"
Simon Glassa4faf1f2021-08-08 12:20:29 -06001055 select SPL_POWER
Peng Fane13278c2018-07-27 10:20:37 +08001056 help
1057 Enable support for power domain control in SPL. Many SoCs allow
1058 power to be applied to or removed from portions of the SoC (power
1059 domains). This may be used to save power. This API provides the
1060 means to control such power management hardware. This enables
1061 the drivers in drivers/power/domain as part of a SPL build.
1062
Stefan Agner22802f42016-12-23 07:51:53 +01001063config SPL_RAM_SUPPORT
1064 bool "Support booting from RAM"
Trevor Woerner18138ab2020-05-06 08:02:41 -04001065 default y if MICROBLAZE || ARCH_SOCFPGA || ARCH_TEGRA || ARCH_ZYNQ
Stefan Agner22802f42016-12-23 07:51:53 +01001066 help
1067 Enable booting of an image in RAM. The image can be preloaded or
1068 it can be loaded by SPL directly into RAM (e.g. using USB).
1069
Stefan Agnerf417d402016-12-23 07:51:52 +01001070config SPL_RAM_DEVICE
1071 bool "Support booting from preloaded image in RAM"
Stefan Agner22802f42016-12-23 07:51:53 +01001072 depends on SPL_RAM_SUPPORT
Trevor Woerner18138ab2020-05-06 08:02:41 -04001073 default y if MICROBLAZE || ARCH_SOCFPGA || ARCH_TEGRA || ARCH_ZYNQ
Stefan Agnerf417d402016-12-23 07:51:52 +01001074 help
1075 Enable booting of an image already loaded in RAM. The image has to
1076 be already in memory when SPL takes over, e.g. loaded by the boot
1077 ROM.
1078
Lokesh Vutla08c45312018-08-27 15:57:53 +05301079config SPL_REMOTEPROC
1080 bool "Support REMOTEPROCS"
1081 help
1082 Enable support for REMOTEPROCs in SPL. This permits to load
1083 a remote processor firmware in SPL.
1084
Simon Glass73c6ff62021-08-08 12:20:11 -06001085config SPL_RTC
Simon Glass30bf8a02017-01-16 07:03:31 -07001086 bool "Support RTC drivers"
Simon Glass30bf8a02017-01-16 07:03:31 -07001087 help
1088 Enable RTC (Real-time Clock) support in SPL. This includes support
1089 for reading and setting the time. Some RTC devices also have some
1090 non-volatile (battery-backed) memory which is accessible if
1091 needed. This enables the drivers in drivers/rtc as part of an SPL
1092 build.
1093
Simon Glassf7560372021-08-08 12:20:17 -06001094config SPL_SATA
Simon Glass11bde1c2016-09-13 07:05:23 -06001095 bool "Support loading from SATA"
Simon Glass11bde1c2016-09-13 07:05:23 -06001096 help
1097 Enable support for SATA (Serial AT attachment) in SPL. This allows
1098 use of SATA devices such as hard drives and flash drivers for
1099 loading U-Boot. SATA is used in higher-end embedded systems and
1100 can provide higher performance than MMC , at somewhat higher
1101 expense and power consumption. This enables loading from SATA
1102 using a configured device.
1103
Baruch Siach60ca9692019-07-14 17:54:21 +03001104config SPL_SATA_RAW_U_BOOT_USE_SECTOR
1105 bool "SATA raw mode: by sector"
Simon Glassf7560372021-08-08 12:20:17 -06001106 depends on SPL_SATA
Pali Rohár2226ca12021-07-23 11:14:29 +02001107 default y if ARCH_MVEBU
Baruch Siach60ca9692019-07-14 17:54:21 +03001108 help
1109 Use sector number for specifying U-Boot location on SATA disk in
1110 raw mode.
1111
1112config SPL_SATA_RAW_U_BOOT_SECTOR
1113 hex "Sector on the SATA disk to load U-Boot from"
1114 depends on SPL_SATA_RAW_U_BOOT_USE_SECTOR
Pali Rohár2226ca12021-07-23 11:14:29 +02001115 default 0x1 if ARCH_MVEBU
Baruch Siach60ca9692019-07-14 17:54:21 +03001116 help
1117 Sector on the SATA disk to load U-Boot from, when the SATA disk is being
1118 used in raw mode. Units: SATA disk sectors (1 sector = 512 bytes).
1119
Simon Glass2a736062021-08-08 12:20:12 -06001120config SPL_SERIAL
Simon Glass11bde1c2016-09-13 07:05:23 -06001121 bool "Support serial"
Alex Kiernan14ad44a2018-04-19 04:32:54 +00001122 select SPL_PRINTF
1123 select SPL_STRTO
Simon Glass11bde1c2016-09-13 07:05:23 -06001124 help
1125 Enable support for serial in SPL. This allows use of a serial UART
1126 for displaying messages while SPL is running. It also brings in
1127 printf() and panic() functions. This should normally be enabled
1128 unless there are space reasons not to. Even then, consider
Simon Glass27084c02019-09-25 08:56:27 -06001129 enabling SPL_USE_TINY_PRINTF which is a small printf() version.
Simon Glass11bde1c2016-09-13 07:05:23 -06001130
Simon Glassea2ca7e2021-08-08 12:20:14 -06001131config SPL_SPI
Simon Goldschmidtd024e992019-10-25 16:22:09 +02001132 bool "Support SPI drivers"
1133 help
1134 Enable support for using SPI in SPL. This is used for connecting
1135 to SPI flash for loading U-Boot. See SPL_SPI_FLASH_SUPPORT for
1136 more details on that. The SPI driver provides the transport for
1137 data between the SPI flash and the CPU. This option can be used to
1138 enable SPI drivers that are needed for other purposes also, such
1139 as a SPI PMIC.
1140
Simon Glass11bde1c2016-09-13 07:05:23 -06001141config SPL_SPI_FLASH_SUPPORT
1142 bool "Support SPI flash drivers"
Simon Glassea2ca7e2021-08-08 12:20:14 -06001143 depends on SPL_SPI
Simon Glass11bde1c2016-09-13 07:05:23 -06001144 help
1145 Enable support for using SPI flash in SPL, and loading U-Boot from
1146 SPI flash. SPI flash (Serial Peripheral Bus flash) is named after
1147 the SPI bus that is used to connect it to a system. It is a simple
1148 but fast bidirectional 4-wire bus (clock, chip select and two data
1149 lines). This enables the drivers in drivers/mtd/spi as part of an
Simon Glassea2ca7e2021-08-08 12:20:14 -06001150 SPL build. This normally requires SPL_SPI.
Simon Glass11bde1c2016-09-13 07:05:23 -06001151
Vignesh R0c6f1872019-02-05 11:29:20 +05301152if SPL_SPI_FLASH_SUPPORT
1153
Vignesh R778572d2019-02-05 11:29:25 +05301154config SPL_SPI_FLASH_TINY
1155 bool "Enable low footprint SPL SPI Flash support"
1156 depends on !SPI_FLASH_BAR
Vignesh R72875972019-02-05 11:29:26 +05301157 default y if SPI_FLASH
Vignesh R778572d2019-02-05 11:29:25 +05301158 help
1159 Enable lightweight SPL SPI Flash support that supports just reading
1160 data/images from flash. No support to write/erase flash. Enable
1161 this if you have SPL size limitations and don't need full
1162 fledged SPI flash support.
1163
Vignesh R0c6f1872019-02-05 11:29:20 +05301164config SPL_SPI_FLASH_SFDP_SUPPORT
1165 bool "SFDP table parsing support for SPI NOR flashes"
Vignesh R778572d2019-02-05 11:29:25 +05301166 depends on !SPI_FLASH_BAR && !SPL_SPI_FLASH_TINY
Vignesh R0c6f1872019-02-05 11:29:20 +05301167 help
1168 Enable support for parsing and auto discovery of parameters for
1169 SPI NOR flashes using Serial Flash Discoverable Parameters (SFDP)
1170 tables as per JESD216 standard in SPL.
1171
Lukasz Majewski56c40462020-06-04 23:11:53 +08001172config SPL_SPI_FLASH_MTD
1173 bool "Support for SPI flash MTD drivers in SPL"
1174 help
1175 Enable support for SPI flash MTD drivers in SPL.
1176
Marek Vasut55500432018-04-07 16:05:27 +02001177config SPL_SPI_LOAD
1178 bool "Support loading from SPI flash"
Marek Vasut55500432018-04-07 16:05:27 +02001179 help
1180 Enable support for loading next stage, U-Boot or otherwise, from
1181 SPI NOR in U-Boot SPL.
1182
Vignesh R0c6f1872019-02-05 11:29:20 +05301183endif # SPL_SPI_FLASH_SUPPORT
1184
Hannes Schmelzer1ee774d2019-08-22 15:41:46 +02001185config SYS_SPI_U_BOOT_OFFS
1186 hex "address of u-boot payload in SPI flash"
Andre Przywara671d64f2020-01-06 01:29:10 +00001187 default 0x8000 if ARCH_SUNXI
Hannes Schmelzer1ee774d2019-08-22 15:41:46 +02001188 default 0x0
1189 depends on SPL_SPI_LOAD || SPL_SPI_SUNXI
1190 help
1191 Address within SPI-Flash from where the u-boot payload is fetched
1192 from.
1193
Faiz Abbas8502f9f2017-11-14 16:12:31 +05301194config SPL_THERMAL
1195 bool "Driver support for thermal devices"
1196 help
1197 Enable support for temperature-sensing devices. Some SoCs have on-chip
1198 temperature sensors to permit warnings, speed throttling or even
1199 automatic power-off when the temperature gets too high or low. Other
1200 devices may be discrete but connected on a suitable bus.
1201
Simon Glass333e4a62021-07-10 21:14:29 -06001202config SPL_USB_HOST
Simon Glass11bde1c2016-09-13 07:05:23 -06001203 bool "Support USB host drivers"
Tom Rini91ff6862018-12-05 08:23:38 -05001204 select HAVE_BLOCK_DEVICE
Simon Glass11bde1c2016-09-13 07:05:23 -06001205 help
1206 Enable access to USB (Universal Serial Bus) host devices so that
1207 SPL can load U-Boot from a connected USB peripheral, such as a USB
1208 flash stick. While USB takes a little longer to start up than most
1209 buses, it is very flexible since many different types of storage
1210 device can be attached. This option enables the drivers in
1211 drivers/usb/host as part of an SPL build.
1212
Abel Vesa79536012019-02-01 16:40:07 +00001213config SPL_USB_STORAGE
Simon Glass11bde1c2016-09-13 07:05:23 -06001214 bool "Support loading from USB"
Simon Glass333e4a62021-07-10 21:14:29 -06001215 depends on SPL_USB_HOST && !(BLK && !DM_USB)
Simon Glass11bde1c2016-09-13 07:05:23 -06001216 help
1217 Enable support for USB devices in SPL. This allows use of USB
1218 devices such as hard drives and flash drivers for loading U-Boot.
1219 The actual drivers are enabled separately using the normal U-Boot
1220 config options. This enables loading from USB using a configured
1221 device.
1222
Jean-Jacques Hiblotf811e972019-01-10 15:44:13 +01001223config SPL_USB_GADGET
Stefan Agnere94793c2016-11-21 10:58:53 -08001224 bool "Suppport USB Gadget drivers"
Stefan Agnere94793c2016-11-21 10:58:53 -08001225 help
1226 Enable USB Gadget API which allows to enable USB device functions
1227 in SPL.
1228
Jean-Jacques Hiblotf811e972019-01-10 15:44:13 +01001229if SPL_USB_GADGET
Stefan Agnere94793c2016-11-21 10:58:53 -08001230
Faiz Abbasb432b1e2018-02-16 21:17:44 +05301231config SPL_USB_ETHER
Stefan Agnere94793c2016-11-21 10:58:53 -08001232 bool "Support USB Ethernet drivers"
Simon Glass9f664922021-08-08 12:20:31 -06001233 depends on SPL_NET
Stefan Agnere94793c2016-11-21 10:58:53 -08001234 help
1235 Enable access to the USB network subsystem and associated
1236 drivers in SPL. This permits SPL to load U-Boot over a
1237 USB-connected Ethernet link (such as a USB Ethernet dongle) rather
1238 than from an onboard peripheral. Environment support is required
1239 since the network stack uses a number of environment variables.
Simon Glass5ed16a92021-08-08 12:20:30 -06001240 See also SPL_NET and SPL_ETH.
Stefan Agnere94793c2016-11-21 10:58:53 -08001241
Andrew F. Davis6536ca42019-01-17 13:43:02 -06001242config SPL_DFU
Fabio Estevamc3c19c22018-08-31 10:02:28 -03001243 bool "Support DFU (Device Firmware Upgrade)"
Alexandru Gagniuc07212092021-09-02 19:54:19 -05001244 select SPL_HASH
B, Ravi66928af2017-05-04 15:45:29 +05301245 select SPL_DFU_NO_RESET
B, Ravi1b19cbd2017-05-04 15:45:28 +05301246 depends on SPL_RAM_SUPPORT
Stefan Agner59917032016-11-21 10:58:52 -08001247 help
Fabio Estevamc3c19c22018-08-31 10:02:28 -03001248 This feature enables the DFU (Device Firmware Upgrade) in SPL with
Stefan Agner59917032016-11-21 10:58:52 -08001249 RAM memory device support. The ROM code will load and execute
1250 the SPL built with dfu. The user can load binaries (u-boot/kernel) to
1251 selected device partition from host-pc using dfu-utils.
1252 This feature is useful to flash the binaries to factory or bare-metal
1253 boards using USB interface.
1254
1255choice
1256 bool "DFU device selection"
Andrew F. Davis6536ca42019-01-17 13:43:02 -06001257 depends on SPL_DFU
Stefan Agner59917032016-11-21 10:58:52 -08001258
1259config SPL_DFU_RAM
1260 bool "RAM device"
Andrew F. Davis6536ca42019-01-17 13:43:02 -06001261 depends on SPL_DFU && SPL_RAM_SUPPORT
Stefan Agner59917032016-11-21 10:58:52 -08001262 help
1263 select RAM/DDR memory device for loading binary images
1264 (u-boot/kernel) to the selected device partition using
1265 DFU and execute the u-boot/kernel from RAM.
1266
1267endchoice
1268
Stefan Agnera3774c12017-08-16 11:00:54 -07001269config SPL_USB_SDP_SUPPORT
1270 bool "Support SDP (Serial Download Protocol)"
Simon Glass2a736062021-08-08 12:20:12 -06001271 depends on SPL_SERIAL
Stefan Agnera3774c12017-08-16 11:00:54 -07001272 help
1273 Enable Serial Download Protocol (SDP) device support in SPL. This
1274 allows to download images into memory and execute (jump to) them
1275 using the same protocol as implemented by the i.MX family's boot ROM.
Ye Li407e3842020-04-29 10:35:12 +08001276
1277config SPL_SDP_USB_DEV
1278 int "SDP USB controller index"
1279 default 0
1280 depends on SPL_USB_SDP_SUPPORT
1281 help
1282 Some boards have USB controller other than 0. Define this option
1283 so it can be used in compiled environment.
Stefan Agnere94793c2016-11-21 10:58:53 -08001284endif
1285
Simon Glass078111b2021-07-10 21:14:28 -06001286config SPL_WATCHDOG
Simon Glass11bde1c2016-09-13 07:05:23 -06001287 bool "Support watchdog drivers"
Marek Vasut6874cb72019-06-09 03:46:21 +02001288 imply SPL_WDT if !HW_WATCHDOG
Simon Glass11bde1c2016-09-13 07:05:23 -06001289 help
1290 Enable support for watchdog drivers in SPL. A watchdog is
1291 typically a hardware peripheral which can reset the system when it
1292 detects no activity for a while (such as a software crash). This
1293 enables the drivers in drivers/watchdog as part of an SPL build.
1294
1295config SPL_YMODEM_SUPPORT
1296 bool "Support loading using Ymodem"
Simon Glass2a736062021-08-08 12:20:12 -06001297 depends on SPL_SERIAL
Simon Glass11bde1c2016-09-13 07:05:23 -06001298 help
1299 While loading from serial is slow it can be a useful backup when
1300 there is no other option. The Ymodem protocol provides a reliable
1301 means of transmitting U-Boot over a serial line for using in SPL,
1302 with a checksum to ensure correctness.
1303
Philipp Tomsichaa122f62017-09-13 21:29:36 +02001304config SPL_ATF
Kever Yangbcc17262017-05-05 11:47:45 +08001305 bool "Support ARM Trusted Firmware"
Michal Simek975bacc2020-09-03 11:23:39 +02001306 depends on ARM64 && SPL_FIT
Kever Yangbcc17262017-05-05 11:47:45 +08001307 help
Philipp Tomsichd21fb632018-01-02 21:16:43 +01001308 ATF(ARM Trusted Firmware) is a component for ARM AArch64 which
1309 is loaded by SPL (which is considered as BL2 in ATF terminology).
Kever Yangbcc17262017-05-05 11:47:45 +08001310 More detail at: https://github.com/ARM-software/arm-trusted-firmware
1311
Michael Walle7b866822020-11-18 17:45:58 +01001312config SPL_ATF_LOAD_IMAGE_V2
1313 bool "Use the new LOAD_IMAGE_V2 parameter passing"
1314 depends on SPL_ATF
1315 help
1316 Some platforms use the newer LOAD_IMAGE_V2 parameter passing.
1317
1318 If you want to load a bl31 image from the SPL and need the new
1319 method, say Y.
1320
Philipp Tomsichd21fb632018-01-02 21:16:43 +01001321config SPL_ATF_NO_PLATFORM_PARAM
Michal Simekce869b52021-05-20 13:08:44 +02001322 bool "Pass no platform parameter"
Philipp Tomsichd21fb632018-01-02 21:16:43 +01001323 depends on SPL_ATF
1324 help
1325 While we expect to call a pointer to a valid FDT (or NULL)
1326 as the platform parameter to an ATF, some ATF versions are
1327 not U-Boot aware and have an insufficiently robust parameter
1328 validation to gracefully reject a FDT being passed.
1329
1330 If this option is enabled, the spl_atf os-type handler will
1331 always pass NULL for the platform parameter.
1332
1333 If your ATF is affected, say Y.
1334
Alex Kiernan3bf5f132018-03-15 22:11:46 +00001335config SPL_AM33XX_ENABLE_RTC32K_OSC
1336 bool "Enable the RTC32K OSC on AM33xx based platforms"
1337 default y if AM33XX
1338 help
1339 Enable access to the AM33xx RTC and select the external 32kHz clock
1340 source.
1341
Patrick Delaunay51827f92021-09-02 11:56:16 +02001342config SPL_OPTEE_IMAGE
1343 bool "Support OP-TEE Trusted OS image in SPL"
Kever Yang70fe2872018-08-23 17:17:59 +08001344 depends on ARM
1345 help
Patrick Delaunay51827f92021-09-02 11:56:16 +02001346 OP-TEE is an open source Trusted OS which is loaded by SPL.
Kever Yang70fe2872018-08-23 17:17:59 +08001347 More detail at: https://github.com/OP-TEE/optee_os
1348
Lukas Auer5e30e452019-08-21 21:14:44 +02001349config SPL_OPENSBI
1350 bool "Support RISC-V OpenSBI"
1351 depends on RISCV && SPL_RISCV_MMODE && RISCV_SMODE
1352 help
1353 OpenSBI is an open-source implementation of the RISC-V Supervisor Binary
1354 Interface (SBI) specification. U-Boot supports the OpenSBI FW_DYNAMIC
1355 firmware. It is loaded and started by U-Boot SPL.
1356
1357 More details are available at https://github.com/riscv/opensbi and
1358 https://github.com/riscv/riscv-sbi-doc
1359
1360config SPL_OPENSBI_LOAD_ADDR
1361 hex "OpenSBI load address"
1362 depends on SPL_OPENSBI
1363 help
1364 Load address of the OpenSBI binary.
1365
Tom Rini226498b2017-05-22 19:21:57 +00001366config TPL
1367 bool
1368 depends on SUPPORT_TPL
1369 prompt "Enable TPL"
1370 help
1371 If you want to build TPL as well as the normal image and SPL, say Y.
1372
1373if TPL
1374
Simon Glassc52b5e82019-10-20 21:31:52 -06001375config TPL_SIZE_LIMIT
1376 hex "Maximum size of TPL image"
1377 depends on TPL
Ovidiu Panait2dfdd0c2020-09-25 21:12:56 +03001378 default 0x0
Simon Glassc52b5e82019-10-20 21:31:52 -06001379 help
1380 Specifies the maximum length of the U-Boot TPL image.
1381 If this value is zero, it is ignored.
1382
Simon Glass38c04d82022-02-08 11:49:48 -07001383config TPL_BINMAN_SYMBOLS
Simon Glassb13114c2022-03-05 20:18:55 -07001384 bool "Declare binman symbols in TPL"
Simon Glass38c04d82022-02-08 11:49:48 -07001385 depends on SPL_FRAMEWORK && BINMAN
1386 default y
1387 help
Simon Glassb13114c2022-03-05 20:18:55 -07001388 This enables use of symbols in TPL which refer to U-Boot, enabling TPL
Simon Glass38c04d82022-02-08 11:49:48 -07001389 to obtain the location of U-Boot simply by calling spl_get_image_pos()
1390 and spl_get_image_size().
1391
1392 For this to work, you must have a U-Boot image in the binman image, so
Simon Glassb13114c2022-03-05 20:18:55 -07001393 binman can update TPL with the location of it.
Simon Glass38c04d82022-02-08 11:49:48 -07001394
Heiko Stuebner22b7b862019-07-16 10:12:02 +02001395config TPL_FRAMEWORK
1396 bool "Support TPL based upon the common SPL framework"
1397 default y if SPL_FRAMEWORK
1398 help
1399 Enable the SPL framework under common/spl/ for TPL builds.
1400 This framework supports MMC, NAND and YMODEM and other methods
1401 loading of U-Boot's SPL stage. If unsure, say Y.
1402
Simon Glassb0edea32018-11-15 18:44:09 -07001403config TPL_HANDOFF
1404 bool "Pass hand-off information from TPL to SPL and U-Boot proper"
Simon Glassa7da3d92019-09-25 08:11:17 -06001405 depends on HANDOFF && TPL_BLOBLIST
Simon Glassb0edea32018-11-15 18:44:09 -07001406 default y
1407 help
1408 This option enables TPL to write handoff information. This can be
1409 used to pass information like the size of SDRAM from TPL to U-Boot
1410 proper. The information is also available to SPL if it is useful
1411 there.
1412
Kever Yangaf2f4422018-01-20 18:00:26 +08001413config TPL_BOARD_INIT
1414 bool "Call board-specific initialization in TPL"
1415 help
1416 If this option is enabled, U-Boot will call the function
1417 spl_board_init() from board_init_r(). This function should be
1418 provided by the board.
1419
Philippe Reynes4d145f22020-12-11 19:56:47 +01001420config TPL_BOOTCOUNT_LIMIT
1421 bool "Support bootcount in TPL"
1422 depends on TPL_ENV_SUPPORT
1423 help
1424 If this option is enabled, the TPL will support bootcount.
1425 For example, it may be useful to choose the device to boot.
1426
Philipp Tomsichdd6fbcb2017-07-28 19:20:49 +02001427config TPL_LDSCRIPT
Michal Simekce869b52021-05-20 13:08:44 +02001428 string "Linker script for the TPL stage"
Philipp Tomsichdd6fbcb2017-07-28 19:20:49 +02001429 depends on TPL
Tom Rini2f41ade2019-01-22 17:09:26 -05001430 default "arch/arm/cpu/armv8/u-boot-spl.lds" if ARM64
Tom Rinia356e7a2020-03-11 18:11:11 -04001431 default "arch/\$(ARCH)/cpu/u-boot-spl.lds"
Philipp Tomsichdd6fbcb2017-07-28 19:20:49 +02001432 help
1433 The TPL stage will usually require a different linker-script
1434 (as it runs from a different memory region) than the regular
1435 U-Boot stage. Set this to the path of the linker-script to
1436 be used for TPL.
1437
Philipp Tomsichb3ed6ce2017-07-28 20:02:34 +02001438 May be left empty to trigger the Makefile infrastructure to
1439 fall back to the linker-script used for the SPL stage.
1440
Philipp Tomsichb3ed6ce2017-07-28 20:02:34 +02001441config TPL_NEEDS_SEPARATE_STACK
Michal Simekce869b52021-05-20 13:08:44 +02001442 bool "TPL needs a separate initial stack-pointer"
Philipp Tomsichb3ed6ce2017-07-28 20:02:34 +02001443 depends on TPL
1444 help
1445 Enable, if the TPL stage should not inherit its initial
1446 stack-pointer from the settings for the SPL stage.
1447
Simon Glassa4faf1f2021-08-08 12:20:29 -06001448config TPL_POWER
1449 bool "Support power drivers"
1450 help
1451 Enable support for power control in TPL. This includes support
1452 for PMICs (Power-management Integrated Circuits) and some of the
1453 features provided by PMICs. In particular, voltage regulators can
1454 be used to enable/disable power and vary its voltage. That can be
1455 useful in TPL to turn on boot peripherals and adjust CPU voltage
1456 so that the clock speed can be increased. This enables the drivers
1457 in drivers/power, drivers/power/pmic and drivers/power/regulator
1458 as part of an TPL build.
1459
Philipp Tomsichb3ed6ce2017-07-28 20:02:34 +02001460config TPL_TEXT_BASE
Michal Simekce869b52021-05-20 13:08:44 +02001461 hex "Base address for the .text section of the TPL stage"
Simon Glass8e6c1292022-02-28 12:08:30 -07001462 default 0
Philipp Tomsichb3ed6ce2017-07-28 20:02:34 +02001463 help
1464 The base address for the .text section of the TPL stage.
1465
1466config TPL_MAX_SIZE
Michal Simekce869b52021-05-20 13:08:44 +02001467 int "Maximum size (in bytes) for the TPL stage"
Philipp Tomsich5aa49af2017-07-28 20:20:41 +02001468 default 0
Philipp Tomsichb3ed6ce2017-07-28 20:02:34 +02001469 depends on TPL
1470 help
1471 The maximum size (in bytes) of the TPL stage.
1472
1473config TPL_STACK
Michal Simekce869b52021-05-20 13:08:44 +02001474 hex "Address of the initial stack-pointer for the TPL stage"
Philipp Tomsichb3ed6ce2017-07-28 20:02:34 +02001475 depends on TPL_NEEDS_SEPARATE_STACK
1476 help
1477 The address of the initial stack-pointer for the TPL stage.
1478 Usually this will be the (aligned) top-of-stack.
1479
Simon Glass95a58252021-03-15 17:25:35 +13001480config TPL_READ_ONLY
1481 bool
1482 depends on TPL_OF_PLATDATA
1483 select TPL_OF_PLATDATA_NO_BIND
1484 select TPL_OF_PLATDATA_RT
1485 help
1486 Some platforms (e.g. x86 Apollo Lake) load SPL into a read-only
1487 section of memory. This means that of-platdata must make a copy (in
1488 writeable memory) of anything it wants to modify, such as
1489 device-private data.
1490
Philipp Tomsicha954fa32017-07-04 14:24:53 +02001491config TPL_BOOTROM_SUPPORT
Michal Simekce869b52021-05-20 13:08:44 +02001492 bool "Support returning to the BOOTROM (from TPL)"
Philipp Tomsicha954fa32017-07-04 14:24:53 +02001493 help
1494 Some platforms (e.g. the Rockchip RK3368) provide support in their
1495 ROM for loading the next boot-stage after performing basic setup
1496 from the TPL stage.
1497
1498 Enable this option, to return to the BOOTROM through the
1499 BOOT_DEVICE_BOOTROM (or fall-through to the next boot device in the
1500 boot device list, if not implemented for a given board)
1501
Simon Glasse7d285b2021-09-25 19:43:24 -06001502config TPL_CRC32
1503 bool "Support CRC32 in TPL"
1504 default y if TPL_ENV_SUPPORT || TPL_BLOBLIST
1505 help
1506 Enable this to support CRC32 in uImages or FIT images within SPL.
1507 This is a 32-bit checksum value that can be used to verify images.
1508 For FIT images, this is the least secure type of checksum, suitable
1509 for detected accidental image corruption. For secure applications you
1510 should consider SHA1 or SHA256.
1511
Simon Glass9ca00682021-07-10 21:14:31 -06001512config TPL_DRIVERS_MISC
Philipp Tomsichc3916e72017-07-04 14:27:02 +02001513 bool "Support misc drivers in TPL"
1514 help
1515 Enable miscellaneous drivers in TPL. These drivers perform various
1516 tasks that don't fall nicely into other categories, Enable this
1517 option to build the drivers in drivers/misc as part of an TPL
1518 build, for those that support building in TPL (not all drivers do).
1519
Simon Glassf73329e2016-09-12 23:18:27 -06001520config TPL_ENV_SUPPORT
1521 bool "Support an environment"
Simon Glassf73329e2016-09-12 23:18:27 -06001522 help
1523 Enable environment support in TPL. See SPL_ENV_SUPPORT for details.
1524
Simon Glass83061db2021-07-10 21:14:30 -06001525config TPL_GPIO
Simon Glass2d424eb2018-11-15 18:43:55 -07001526 bool "Support GPIO in TPL"
1527 help
1528 Enable support for GPIOs (General-purpose Input/Output) in TPL.
1529 GPIOs allow U-Boot to read the state of an input line (high or
1530 low) and set the state of an output line. This can be used to
1531 drive LEDs, control power to various system parts and read user
1532 input. GPIOs can be useful in TPL to enable a 'sign-of-life' LED,
1533 for example. Enable this option to build the drivers in
1534 drivers/gpio as part of an TPL build.
1535
Simon Glass975e7cf2021-07-10 21:14:36 -06001536config TPL_I2C
Simon Glassf73329e2016-09-12 23:18:27 -06001537 bool "Support I2C"
Simon Glassf73329e2016-09-12 23:18:27 -06001538 help
Simon Glass975e7cf2021-07-10 21:14:36 -06001539 Enable support for the I2C bus in TPL. See SPL_I2C for
Simon Glassf73329e2016-09-12 23:18:27 -06001540 details.
1541
1542config TPL_LIBCOMMON_SUPPORT
1543 bool "Support common libraries"
Simon Glassf73329e2016-09-12 23:18:27 -06001544 help
1545 Enable support for common U-Boot libraries within TPL. See
1546 SPL_LIBCOMMON_SUPPORT for details.
1547
1548config TPL_LIBGENERIC_SUPPORT
1549 bool "Support generic libraries"
Simon Glassf73329e2016-09-12 23:18:27 -06001550 help
1551 Enable support for generic U-Boot libraries within TPL. See
1552 SPL_LIBGENERIC_SUPPORT for details.
1553
Simon Glass6f004ad2021-08-08 12:20:16 -06001554config TPL_MPC8XXX_INIT_DDR
Simon Glassf73329e2016-09-12 23:18:27 -06001555 bool "Support MPC8XXX DDR init"
Simon Glassf73329e2016-09-12 23:18:27 -06001556 help
1557 Enable support for DDR-SDRAM on the MPC8XXX family within TPL. See
Simon Glass6f004ad2021-08-08 12:20:16 -06001558 SPL_MPC8XXX_INIT_DDR for details.
Simon Glassf73329e2016-09-12 23:18:27 -06001559
Simon Glass103c5f12021-08-08 12:20:09 -06001560config TPL_MMC
Simon Glassf73329e2016-09-12 23:18:27 -06001561 bool "Support MMC"
Tom Rini226498b2017-05-22 19:21:57 +00001562 depends on MMC
Simon Glassf73329e2016-09-12 23:18:27 -06001563 help
Simon Glass103c5f12021-08-08 12:20:09 -06001564 Enable support for MMC within TPL. See SPL_MMC for details.
Simon Glassf73329e2016-09-12 23:18:27 -06001565
1566config TPL_NAND_SUPPORT
1567 bool "Support NAND flash"
Simon Glassf73329e2016-09-12 23:18:27 -06001568 help
Philipp Tomsich616bd092017-07-28 17:03:03 +02001569 Enable support for NAND in TPL. See SPL_NAND_SUPPORT for details.
Simon Glassf73329e2016-09-12 23:18:27 -06001570
Sekhar Norid50d6812018-12-06 15:40:08 +05301571config TPL_PCI
Simon Glass2d424eb2018-11-15 18:43:55 -07001572 bool "Support PCI drivers"
1573 help
1574 Enable support for PCI in TPL. For platforms that need PCI to boot,
1575 or must perform some init using PCI in SPL, this provides the
1576 necessary driver support. This enables the drivers in drivers/pci
1577 as part of a TPL build.
1578
Simon Glass15042e72021-08-08 12:20:10 -06001579config TPL_PCH
Simon Glass2d424eb2018-11-15 18:43:55 -07001580 bool "Support PCH drivers"
1581 help
1582 Enable support for PCH (Platform Controller Hub) devices in TPL.
1583 These are used to set up GPIOs and the SPI peripheral early in
1584 boot. This enables the drivers in drivers/pch as part of a TPL
1585 build.
1586
Marek Vasutd79dfd42018-04-07 17:03:45 +02001587config TPL_RAM_SUPPORT
1588 bool "Support booting from RAM"
1589 help
1590 Enable booting of an image in RAM. The image can be preloaded or
1591 it can be loaded by TPL directly into RAM (e.g. using USB).
1592
1593config TPL_RAM_DEVICE
1594 bool "Support booting from preloaded image in RAM"
1595 depends on TPL_RAM_SUPPORT
1596 help
1597 Enable booting of an image already loaded in RAM. The image has to
1598 be already in memory when TPL takes over, e.g. loaded by the boot
1599 ROM.
1600
Simon Glass73c6ff62021-08-08 12:20:11 -06001601config TPL_RTC
Simon Glass2d424eb2018-11-15 18:43:55 -07001602 bool "Support RTC drivers"
1603 help
1604 Enable RTC (Real-time Clock) support in TPL. This includes support
1605 for reading and setting the time. Some RTC devices also have some
1606 non-volatile (battery-backed) memory which is accessible if
1607 needed. This enables the drivers in drivers/rtc as part of an TPL
1608 build.
1609
Simon Glass2a736062021-08-08 12:20:12 -06001610config TPL_SERIAL
Simon Glassf73329e2016-09-12 23:18:27 -06001611 bool "Support serial"
Alex Kiernan14ad44a2018-04-19 04:32:54 +00001612 select TPL_PRINTF
1613 select TPL_STRTO
Simon Glassf73329e2016-09-12 23:18:27 -06001614 help
Simon Glass2a736062021-08-08 12:20:12 -06001615 Enable support for serial in TPL. See SPL_SERIAL for
Simon Glassf73329e2016-09-12 23:18:27 -06001616 details.
1617
1618config TPL_SPI_FLASH_SUPPORT
1619 bool "Support SPI flash drivers"
Simon Glassf73329e2016-09-12 23:18:27 -06001620 help
Philipp Tomsich616bd092017-07-28 17:03:03 +02001621 Enable support for using SPI flash in TPL. See SPL_SPI_FLASH_SUPPORT
Simon Glassf73329e2016-09-12 23:18:27 -06001622 for details.
1623
Simon Glassf38a2992020-07-19 10:15:31 -06001624config TPL_SPI_FLASH_TINY
1625 bool "Enable low footprint TPL SPI Flash support"
1626 depends on TPL_SPI_FLASH_SUPPORT && !SPI_FLASH_BAR
1627 default y if SPI_FLASH
1628 help
1629 Enable lightweight TPL SPI Flash support that supports just reading
1630 data/images from flash. No support to write/erase flash. Enable
1631 this if you have TPL size limitations and don't need full-fledged
1632 SPI flash support.
1633
Marek Vasut1e725e22018-04-07 16:05:46 +02001634config TPL_SPI_LOAD
1635 bool "Support loading from SPI flash"
1636 depends on TPL_SPI_FLASH_SUPPORT
1637 help
1638 Enable support for loading next stage, U-Boot or otherwise, from
1639 SPI NOR in U-Boot TPL.
1640
Simon Glassea2ca7e2021-08-08 12:20:14 -06001641config TPL_SPI
Simon Glassf73329e2016-09-12 23:18:27 -06001642 bool "Support SPI drivers"
Simon Glassf73329e2016-09-12 23:18:27 -06001643 help
Simon Glassea2ca7e2021-08-08 12:20:14 -06001644 Enable support for using SPI in TPL. See SPL_SPI for
Simon Glassf73329e2016-09-12 23:18:27 -06001645 details.
1646
Lukasz Majewski56c40462020-06-04 23:11:53 +08001647config TPL_DM_SPI
1648 bool "Support SPI DM drivers in TPL"
1649 help
1650 Enable support for SPI DM drivers in TPL.
1651
1652config TPL_DM_SPI_FLASH
1653 bool "Support SPI DM FLASH drivers in TPL"
1654 help
1655 Enable support for SPI DM flash drivers in TPL.
1656
Marek Vasut6ce3d672018-04-07 16:06:11 +02001657config TPL_YMODEM_SUPPORT
1658 bool "Support loading using Ymodem"
Simon Glass2a736062021-08-08 12:20:12 -06001659 depends on TPL_SERIAL
Marek Vasut6ce3d672018-04-07 16:06:11 +02001660 help
1661 While loading from serial is slow it can be a useful backup when
1662 there is no other option. The Ymodem protocol provides a reliable
1663 means of transmitting U-Boot over a serial line for using in TPL,
1664 with a checksum to ensure correctness.
1665
Tom Rini226498b2017-05-22 19:21:57 +00001666endif # TPL
1667
Simon Glass747093d2022-04-30 00:56:53 -06001668config VPL
1669 bool
1670 depends on SUPPORT_SPL
1671 prompt "Enable VPL"
1672 help
1673 If you want to build VPL as well as the normal image, TPL and SPL,
1674 say Y.
1675
1676if VPL
1677
1678config VPL_BANNER_PRINT
1679 bool "Enable output of the VPL banner 'U-Boot VPL ...'"
1680 depends on VPL
1681 default y
1682 help
1683 If this option is enabled, VPL will print the banner with version
1684 info. Disabling this option could be useful to reduce VPL boot time
1685 (e.g. approx. 6 ms faster, when output on i.MX6 with 115200 baud).
1686
1687config VPL_BOARD_INIT
1688 bool "Call board-specific initialization in VPL"
1689 help
1690 If this option is enabled, U-Boot will call the function
1691 spl_board_init() from board_init_r(). This function should be
1692 provided by the board.
1693
1694config VPL_CACHE
1695 depends on CACHE
1696 bool "Support cache drivers in VPL"
1697 help
1698 Enable support for cache drivers in VPL.
1699
1700config VPL_CRC32
1701 bool "Support CRC32 in VPL"
1702 default y if VPL_ENV_SUPPORT || VPL_BLOBLIST
1703 help
1704 Enable this to support CRC32 in uImages or FIT images within VPL.
1705 This is a 32-bit checksum value that can be used to verify images.
1706 For FIT images, this is the least secure type of checksum, suitable
1707 for detected accidental image corruption. For secure applications you
1708 should consider SHA1 or SHA256.
1709
1710config VPL_DM_SPI
1711 bool "Support SPI DM drivers in VPL"
1712 help
1713 Enable support for SPI DM drivers in VPL.
1714
1715config VPL_DM_SPI_FLASH
1716 bool "Support SPI DM FLASH drivers in VPL"
1717 help
1718 Enable support for SPI DM flash drivers in VPL.
1719
1720config VPL_FRAMEWORK
1721 bool "Support VPL based upon the common SPL framework"
1722 default y
1723 help
1724 Enable the SPL framework under common/spl/ for VPL builds.
1725 This framework supports MMC, NAND and YMODEM and other methods
1726 loading of U-Boot's next stage. If unsure, say Y.
1727
1728config VPL_HANDOFF
1729 bool "Pass hand-off information from VPL to SPL"
1730 depends on HANDOFF && VPL_BLOBLIST
1731 default y
1732 help
1733 This option enables VPL to write handoff information. This can be
1734 used to pass information like the size of SDRAM from VPL to SPL. Also
1735 VPL can receive information from TPL in the same place if that is
1736 enabled.
1737
1738config VPL_LIBCOMMON_SUPPORT
1739 bool "Support common libraries"
1740 default y if SPL_LIBCOMMON_SUPPORT
1741 help
1742 Enable support for common U-Boot libraries within VPL. See
1743 SPL_LIBCOMMON_SUPPORT for details.
1744
1745config VPL_LIBGENERIC_SUPPORT
1746 bool "Support generic libraries"
1747 default y if SPL_LIBGENERIC_SUPPORT
1748 help
1749 Enable support for generic U-Boot libraries within VPL. These
1750 libraries include generic code to deal with device tree, hashing,
1751 printf(), compression and the like. This option is enabled on many
1752 boards. Enable this option to build the code in lib/ as part of a
1753 VPL build.
1754
1755config VPL_DRIVERS_MISC
1756 bool "Support misc drivers"
1757 default y if TPL_DRIVERS_MISC
1758 help
1759 Enable miscellaneous drivers in VPL. These drivers perform various
1760 tasks that don't fall nicely into other categories, Enable this
1761 option to build the drivers in drivers/misc as part of a VPL
1762 build, for those that support building in VPL (not all drivers do).
1763
1764config VPL_ENV_SUPPORT
1765 bool "Support an environment"
1766 help
1767 Enable environment support in VPL. The U-Boot environment provides
1768 a number of settings (essentially name/value pairs) which can
1769 control many aspects of U-Boot's operation. Enabling this option will
1770 make env_get() and env_set() available in VSPL.
1771
1772config VPL_GPIO
1773 bool "Support GPIO in VPL"
1774 default y if SPL_GPIO
1775 help
1776 Enable support for GPIOs (General-purpose Input/Output) in VPL.
1777 GPIOs allow U-Boot to read the state of an input line (high or
1778 low) and set the state of an output line. This can be used to
1779 drive LEDs, control power to various system parts and read user
1780 input. GPIOs can be useful in VPL to enable a 'sign-of-life' LED,
1781 for example. Enable this option to build the drivers in
1782 drivers/gpio as part of a VPL build.
1783
1784config VPL_HANDOFF
1785 bool "Pass hand-off information from VPL to SPL and U-Boot proper"
1786 depends on HANDOFF && VPL_BLOBLIST
1787 default y
1788 help
1789 This option enables VPL to write handoff information. This can be
1790 used to pass information like the size of SDRAM from VPL to U-Boot
1791 proper. The information is also available to VPL if it is useful
1792 there.
1793
1794config VPL_HASH
1795 bool "Support hashing drivers in VPL"
1796 depends on VPL
1797 select SHA1
1798 select SHA256
1799 help
1800 Enable hashing drivers in VPL. These drivers can be used to
1801 accelerate secure boot processing in secure applications. Enable
1802 this option to build system-specific drivers for hash acceleration
1803 as part of a VPL build.
1804
1805config VPL_I2C_SUPPORT
1806 bool "Support I2C in VPL"
1807 default y if SPL_I2C_SUPPORT
1808 help
1809 Enable support for the I2C bus in VPL. Vee SPL_I2C_SUPPORT for
1810 details.
1811
1812config VPL_PCH_SUPPORT
1813 bool "Support PCH drivers"
1814 default y if TPL_PCH_SUPPORT
1815 help
1816 Enable support for PCH (Platform Controller Hub) devices in VPL.
1817 These are used to set up GPIOs and the SPI peripheral early in
1818 boot. This enables the drivers in drivers/pch as part of a VPL
1819 build.
1820
1821config VPL_PCI
1822 bool "Support PCI drivers"
1823 default y if SPL_PCI
1824 help
1825 Enable support for PCI in VPL. For platforms that need PCI to boot,
1826 or must perform some init using PCI in VPL, this provides the
1827 necessary driver support. This enables the drivers in drivers/pci
1828 as part of a VPL build.
1829
1830config VPL_RTC
1831 bool "Support RTC drivers"
1832 help
1833 Enable RTC (Real-time Clock) support in VPL. This includes support
1834 for reading and setting the time. Some RTC devices also have some
1835 non-volatile (battery-backed) memory which is accessible if
1836 needed. This enables the drivers in drivers/rtc as part of a VPL
1837 build.
1838
1839config VPL_SERIAL
1840 bool "Support serial"
1841 default y if TPL_SERIAL
1842 select VPL_PRINTF
1843 select VPL_STRTO
1844 help
1845 Enable support for serial in VPL. See SPL_SERIAL_SUPPORT for
1846 details.
1847
1848config VPL_SIZE_LIMIT
1849 hex "Maximum size of VPL image"
1850 depends on VPL
1851 default 0x0
1852 help
1853 Specifies the maximum length of the U-Boot VPL image.
1854 If this value is zero, it is ignored.
1855
1856config VPL_SPI
1857 bool "Support SPI drivers"
1858 help
1859 Enable support for using SPI in VPL. See SPL_SPI_SUPPORT for
1860 details.
1861
1862config VPL_SPI_FLASH_SUPPORT
1863 bool "Support SPI flash drivers"
1864 help
1865 Enable support for using SPI flash in VPL, and loading U-Boot from
1866 SPI flash. SPI flash (Serial Peripheral Bus flash) is named after
1867 the SPI bus that is used to connect it to a system. It is a simple
1868 but fast bidirectional 4-wire bus (clock, chip select and two data
1869 lines). This enables the drivers in drivers/mtd/spi as part of a
1870 VPL build. This normally requires VPL_SPI_SUPPORT.
1871
1872config VPL_TEXT_BASE
1873 hex "VPL Text Base"
1874 default 0x0
1875 help
1876 The address in memory that VPL will be running from.
1877
1878endif # VPL
1879
Eugen Hristev0be07872019-05-24 09:38:10 +03001880config SPL_AT91_MCK_BYPASS
1881 bool "Use external clock signal as a source of main clock for AT91 platforms"
1882 depends on ARCH_AT91
Eugen Hristev0be07872019-05-24 09:38:10 +03001883 help
1884 Use external 8 to 24 Mhz clock signal as source of main clock instead
1885 of an external crystal oscillator.
1886 This option disables the internal driving on the XOUT pin.
1887 The external source has to provide a stable clock on the XIN pin.
1888 If this option is disabled, the SoC expects a crystal oscillator
1889 that needs driving on both XIN and XOUT lines.
1890
Tom Rini226498b2017-05-22 19:21:57 +00001891endif # SPL
Simon Glass11bde1c2016-09-13 07:05:23 -06001892endmenu