blob: 42681211d0df267fa6028701bfda58a149739a55 [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
Adam Ford0c4a6342020-07-03 08:09:44 -0500766config SPL_NAND_DRIVERS
767 bool "Use standard NAND driver"
768 help
769 SPL uses normal NAND drivers, not minimal drivers.
770
771config SPL_NAND_ECC
772 bool "Include standard software ECC in the SPL"
773
774config SPL_NAND_SIMPLE
775 bool "Support simple NAND drivers in SPL"
776 help
777 Support for NAND boot using simple NAND drivers that
778 expose the cmd_ctrl() interface.
779
Adam Ford38791062020-07-03 08:09:45 -0500780config SPL_NAND_BASE
781 depends on SPL_NAND_DRIVERS
782 bool "Use Base NAND Driver"
Michal Simekce869b52021-05-20 13:08:44 +0200783 help
784 Include nand_base.c in the SPL.
Adam Ford38791062020-07-03 08:09:45 -0500785
786config SPL_NAND_IDENT
787 depends on SPL_NAND_BASE
788 bool "Use chip ID to identify NAND flash"
789 help
790 SPL uses the chip ID list to identify the NAND flash.
791
Markus Klotzbuecherc67c3492019-05-15 15:15:57 +0200792config SPL_UBI
793 bool "Support UBI"
794 help
795 Enable support for loading payloads from UBI. See
796 README.ubispl for more info.
797
Lukasz Majewskif18845c2019-09-09 12:06:46 +0200798if SPL_DM
799config SPL_DM_SPI
800 bool "Support SPI DM drivers in SPL"
801 help
802 Enable support for SPI DM drivers in SPL.
803
Lukasz Majewski56c40462020-06-04 23:11:53 +0800804config SPL_DM_SPI_FLASH
805 bool "Support SPI DM FLASH drivers in SPL"
806 help
807 Enable support for SPI DM flash drivers in SPL.
808
Lukasz Majewskif18845c2019-09-09 12:06:46 +0200809endif
Markus Klotzbuecherc67c3492019-05-15 15:15:57 +0200810if SPL_UBI
Hamish Guthrie6ea31cc2019-05-15 15:15:59 +0200811config SPL_UBI_LOAD_BY_VOLNAME
812 bool "Support loading volumes by name"
813 help
814 This enables support for loading UBI volumes by name. When this
815 is set, CONFIG_SPL_UBI_LOAD_MONITOR_VOLNAME can be used to
816 configure the volume name from which to load U-Boot.
817
Markus Klotzbuecherc67c3492019-05-15 15:15:57 +0200818config SPL_UBI_MAX_VOL_LEBS
819 int "Maximum number of LEBs per volume"
820 depends on SPL_UBI
821 help
822 The maximum number of logical eraseblocks which a static volume
823 to load can contain. Used for sizing the scan data structure.
824
825config SPL_UBI_MAX_PEB_SIZE
826 int "Maximum PEB size"
827 depends on SPL_UBI
828 help
829 The maximum physical erase block size.
830
831config SPL_UBI_MAX_PEBS
832 int "Maximum number of PEBs"
833 depends on SPL_UBI
834 help
835 The maximum physical erase block size. If not overridden by
836 board code, this value will be used as the actual number of PEBs.
837
838config SPL_UBI_PEB_OFFSET
839 int "Offset to first UBI PEB"
840 depends on SPL_UBI
841 help
842 The offset in number of PEBs from the start of flash to the first
843 PEB part of the UBI image.
844
845config SPL_UBI_VID_OFFSET
846 int "Offset to VID header"
847 depends on SPL_UBI
848
849config SPL_UBI_LEB_START
850 int "Offset to LEB in PEB"
851 depends on SPL_UBI
852 help
853 The offset in bytes to the LEB within a PEB.
854
855config SPL_UBI_INFO_ADDR
856 hex "Address to place UBI scan info"
857 depends on SPL_UBI
858 help
859 Address for ubispl to place the scan info. Read README.ubispl to
860 determine the required size
861
862config SPL_UBI_VOL_IDS
863 int "Maximum volume id"
864 depends on SPL_UBI
865 help
866 The maximum volume id which can be loaded. Used for sizing the
867 scan data structure.
868
869config SPL_UBI_LOAD_MONITOR_ID
870 int "id of U-Boot volume"
871 depends on SPL_UBI
872 help
873 The UBI volume id from which to load U-Boot
874
Hamish Guthrie6ea31cc2019-05-15 15:15:59 +0200875config SPL_UBI_LOAD_MONITOR_VOLNAME
876 string "volume name of U-Boot volume"
877 depends on SPL_UBI_LOAD_BY_VOLNAME
878 help
879 The UBI volume name from which to load U-Boot
880
Markus Klotzbuecherc67c3492019-05-15 15:15:57 +0200881config SPL_UBI_LOAD_KERNEL_ID
882 int "id of kernel volume"
883 depends on SPL_OS_BOOT && SPL_UBI
884 help
885 The UBI volume id from which to load the kernel
886
887config SPL_UBI_LOAD_ARGS_ID
888 int "id of kernel args volume"
889 depends on SPL_OS_BOOT && SPL_UBI
890 help
891 The UBI volume id from which to load the device tree
892
Markus Klotzbuechera2257d32019-05-15 15:16:00 +0200893config UBI_SPL_SILENCE_MSG
894 bool "silence UBI SPL messages"
Markus Klotzbuechera2257d32019-05-15 15:16:00 +0200895 help
896 Disable messages from UBI SPL. This leaves warnings
897 and errors enabled.
Markus Klotzbuecherc67c3492019-05-15 15:15:57 +0200898
899endif # if SPL_UBI
900
Simon Glass5ed16a92021-08-08 12:20:30 -0600901config SPL_NET
Simon Glass11bde1c2016-09-13 07:05:23 -0600902 bool "Support networking"
Simon Glass11bde1c2016-09-13 07:05:23 -0600903 help
904 Enable support for network devices (such as Ethernet) in SPL.
905 This permits SPL to load U-Boot over a network link rather than
906 from an on-board peripheral. Environment support is required since
907 the network stack uses a number of environment variables. See also
Simon Glassf2d7a362021-07-10 21:14:26 -0600908 SPL_ETH.
Simon Glass11bde1c2016-09-13 07:05:23 -0600909
Simon Glass5ed16a92021-08-08 12:20:30 -0600910if SPL_NET
Simon Glass11bde1c2016-09-13 07:05:23 -0600911config SPL_NET_VCI_STRING
912 string "BOOTP Vendor Class Identifier string sent by SPL"
913 help
914 As defined by RFC 2132 the vendor class identifier field can be
915 sent by the client to identify the vendor type and configuration
916 of a client. This is often used in practice to allow for the DHCP
917 server to specify different files to load depending on if the ROM,
918 SPL or U-Boot itself makes the request
Simon Glass5ed16a92021-08-08 12:20:30 -0600919endif # if SPL_NET
Simon Glass11bde1c2016-09-13 07:05:23 -0600920
921config SPL_NO_CPU_SUPPORT
922 bool "Drop CPU code in SPL"
Simon Glass11bde1c2016-09-13 07:05:23 -0600923 help
924 This is specific to the ARM926EJ-S CPU. It disables the standard
925 start.S start-up code, presumably so that a replacement can be
926 used on that CPU. You should not enable it unless you know what
927 you are doing.
928
929config SPL_NOR_SUPPORT
930 bool "Support NOR flash"
Simon Glass11bde1c2016-09-13 07:05:23 -0600931 help
932 Enable support for loading U-Boot from memory-mapped NOR (Negative
933 OR) flash in SPL. NOR flash is slow to write but fast to read, and
934 a memory-mapped device makes it very easy to access. Loading from
935 NOR is typically achieved with just a memcpy().
936
Vikas Manochac6d9e9d2017-05-28 12:55:11 -0700937config SPL_XIP_SUPPORT
938 bool "Support XIP"
939 depends on SPL
940 help
941 Enable support for execute in place of U-Boot or kernel image. There
942 is no need to copy image from flash to ram if flash supports execute
943 in place. Its very useful in systems having enough flash but not
944 enough ram to load the image.
945
Simon Glass11bde1c2016-09-13 07:05:23 -0600946config SPL_ONENAND_SUPPORT
947 bool "Support OneNAND flash"
Simon Glass11bde1c2016-09-13 07:05:23 -0600948 help
949 Enable support for OneNAND (Negative AND) flash in SPL. OneNAND is
950 a type of NAND flash and therefore can be used to allow SPL to
951 load U-Boot from supported devices. This enables the drivers in
952 drivers/mtd/onenand as part of an SPL build.
953
Heiko Schocherc20ae2f2016-10-06 07:55:15 +0200954config SPL_OS_BOOT
955 bool "Activate Falcon Mode"
Tom Rini226498b2017-05-22 19:21:57 +0000956 depends on !TI_SECURE_DEVICE
Heiko Schocherc20ae2f2016-10-06 07:55:15 +0200957 help
958 Enable booting directly to an OS from SPL.
959 for more info read doc/README.falcon
960
Heiko Schocher29d3bc72016-10-06 07:55:16 +0200961if SPL_OS_BOOT
962config SYS_OS_BASE
963 hex "addr, where OS is found"
Tom Rini226498b2017-05-22 19:21:57 +0000964 depends on SPL_NOR_SUPPORT
Heiko Schocher29d3bc72016-10-06 07:55:16 +0200965 help
966 Specify the address, where the OS image is found, which
967 gets booted.
968
969endif # SPL_OS_BOOT
970
Alexandru Gagniuc22eb1522021-12-30 10:39:59 -0600971config SPL_FALCON_BOOT_MMCSD
972 bool "Enable Falcon boot from MMC or SD media"
973 depends on SPL_OS_BOOT && SPL_MMC
974 help
975 Select this if the Falcon mode OS image mode is on MMC or SD media.
976
977config SYS_MMCSD_RAW_MODE_KERNEL_SECTOR
978 hex "Falcon mode: Sector to load kernel uImage from MMC"
979 depends on SPL_FALCON_BOOT_MMCSD
980 help
981 When Falcon mode is used with an MMC or SD media, SPL needs to know
982 where to look for the kernel uImage. The image is expected to begin
983 at the raw MMC specified in this config.
984 Note that the Falcon mode image can also be a FIT, if FIT support is
985 enabled.
986
York Sun7550dbe2018-06-14 14:38:48 -0700987config SPL_PAYLOAD
988 string "SPL payload"
989 default "tpl/u-boot-with-tpl.bin" if TPL
990 default "u-boot.bin"
991 help
Chris Packham2dcfa052019-01-13 22:13:20 +1300992 Payload for SPL boot. For backward compatibility, default to
York Sun7550dbe2018-06-14 14:38:48 -0700993 u-boot.bin, i.e. RAW image without any header. In case of
994 TPL, tpl/u-boot-with-tpl.bin. For new boards, suggest to
995 use u-boot.img.
996
Sekhar Norid50d6812018-12-06 15:40:08 +0530997config SPL_PCI
Simon Glass2446b6b2017-01-16 07:03:30 -0700998 bool "Support PCI drivers"
Simon Glass2446b6b2017-01-16 07:03:30 -0700999 help
1000 Enable support for PCI in SPL. For platforms that need PCI to boot,
1001 or must perform some init using PCI in SPL, this provides the
1002 necessary driver support. This enables the drivers in drivers/pci
1003 as part of an SPL build.
1004
Simon Glass15042e72021-08-08 12:20:10 -06001005config SPL_PCH
Simon Glassbbe41ab2017-01-16 07:03:33 -07001006 bool "Support PCH drivers"
Simon Glassbbe41ab2017-01-16 07:03:33 -07001007 help
1008 Enable support for PCH (Platform Controller Hub) devices in SPL.
1009 These are used to set up GPIOs and the SPI peripheral early in
1010 boot. This enables the drivers in drivers/pch as part of an SPL
1011 build.
1012
Simon Glass11bde1c2016-09-13 07:05:23 -06001013config SPL_POST_MEM_SUPPORT
1014 bool "Support POST drivers"
Simon Glass11bde1c2016-09-13 07:05:23 -06001015 help
1016 Enable support for POST (Power-on Self Test) in SPL. POST is a
1017 procedure that checks that the hardware (CPU or board) appears to
1018 be functionally correctly. It is a sanity check that can be
1019 performed before booting. This enables the drivers in post/drivers
1020 as part of an SPL build.
1021
Ley Foon Tanbfc6bae2018-06-14 18:45:19 +08001022config SPL_DM_RESET
Patrick Delaunay0e373c02018-03-12 10:46:05 +01001023 bool "Support reset drivers"
1024 depends on SPL
1025 help
1026 Enable support for reset control in SPL.
1027 That can be useful in SPL to handle IP reset in driver, as in U-Boot,
1028 by using the generic reset API provided by driver model.
1029 This enables the drivers in drivers/reset as part of an SPL build.
1030
Simon Glass933b2f02021-07-10 21:14:24 -06001031config SPL_POWER
Simon Glass11bde1c2016-09-13 07:05:23 -06001032 bool "Support power drivers"
Simon Glass11bde1c2016-09-13 07:05:23 -06001033 help
1034 Enable support for power control in SPL. This includes support
1035 for PMICs (Power-management Integrated Circuits) and some of the
1036 features provided by PMICs. In particular, voltage regulators can
1037 be used to enable/disable power and vary its voltage. That can be
1038 useful in SPL to turn on boot peripherals and adjust CPU voltage
1039 so that the clock speed can be increased. This enables the drivers
1040 in drivers/power, drivers/power/pmic and drivers/power/regulator
1041 as part of an SPL build.
1042
Peng Fane13278c2018-07-27 10:20:37 +08001043config SPL_POWER_DOMAIN
1044 bool "Support power domain drivers"
Simon Glassa4faf1f2021-08-08 12:20:29 -06001045 select SPL_POWER
Peng Fane13278c2018-07-27 10:20:37 +08001046 help
1047 Enable support for power domain control in SPL. Many SoCs allow
1048 power to be applied to or removed from portions of the SoC (power
1049 domains). This may be used to save power. This API provides the
1050 means to control such power management hardware. This enables
1051 the drivers in drivers/power/domain as part of a SPL build.
1052
Stefan Agner22802f42016-12-23 07:51:53 +01001053config SPL_RAM_SUPPORT
1054 bool "Support booting from RAM"
Trevor Woerner18138ab2020-05-06 08:02:41 -04001055 default y if MICROBLAZE || ARCH_SOCFPGA || ARCH_TEGRA || ARCH_ZYNQ
Stefan Agner22802f42016-12-23 07:51:53 +01001056 help
1057 Enable booting of an image in RAM. The image can be preloaded or
1058 it can be loaded by SPL directly into RAM (e.g. using USB).
1059
Stefan Agnerf417d402016-12-23 07:51:52 +01001060config SPL_RAM_DEVICE
1061 bool "Support booting from preloaded image in RAM"
Stefan Agner22802f42016-12-23 07:51:53 +01001062 depends on SPL_RAM_SUPPORT
Trevor Woerner18138ab2020-05-06 08:02:41 -04001063 default y if MICROBLAZE || ARCH_SOCFPGA || ARCH_TEGRA || ARCH_ZYNQ
Stefan Agnerf417d402016-12-23 07:51:52 +01001064 help
1065 Enable booting of an image already loaded in RAM. The image has to
1066 be already in memory when SPL takes over, e.g. loaded by the boot
1067 ROM.
1068
Lokesh Vutla08c45312018-08-27 15:57:53 +05301069config SPL_REMOTEPROC
1070 bool "Support REMOTEPROCS"
1071 help
1072 Enable support for REMOTEPROCs in SPL. This permits to load
1073 a remote processor firmware in SPL.
1074
Simon Glass73c6ff62021-08-08 12:20:11 -06001075config SPL_RTC
Simon Glass30bf8a02017-01-16 07:03:31 -07001076 bool "Support RTC drivers"
Simon Glass30bf8a02017-01-16 07:03:31 -07001077 help
1078 Enable RTC (Real-time Clock) support in SPL. This includes support
1079 for reading and setting the time. Some RTC devices also have some
1080 non-volatile (battery-backed) memory which is accessible if
1081 needed. This enables the drivers in drivers/rtc as part of an SPL
1082 build.
1083
Simon Glassf7560372021-08-08 12:20:17 -06001084config SPL_SATA
Simon Glass11bde1c2016-09-13 07:05:23 -06001085 bool "Support loading from SATA"
Simon Glass11bde1c2016-09-13 07:05:23 -06001086 help
1087 Enable support for SATA (Serial AT attachment) in SPL. This allows
1088 use of SATA devices such as hard drives and flash drivers for
1089 loading U-Boot. SATA is used in higher-end embedded systems and
1090 can provide higher performance than MMC , at somewhat higher
1091 expense and power consumption. This enables loading from SATA
1092 using a configured device.
1093
Baruch Siach60ca9692019-07-14 17:54:21 +03001094config SPL_SATA_RAW_U_BOOT_USE_SECTOR
1095 bool "SATA raw mode: by sector"
Simon Glassf7560372021-08-08 12:20:17 -06001096 depends on SPL_SATA
Pali Rohár2226ca12021-07-23 11:14:29 +02001097 default y if ARCH_MVEBU
Baruch Siach60ca9692019-07-14 17:54:21 +03001098 help
1099 Use sector number for specifying U-Boot location on SATA disk in
1100 raw mode.
1101
1102config SPL_SATA_RAW_U_BOOT_SECTOR
1103 hex "Sector on the SATA disk to load U-Boot from"
1104 depends on SPL_SATA_RAW_U_BOOT_USE_SECTOR
Pali Rohár2226ca12021-07-23 11:14:29 +02001105 default 0x1 if ARCH_MVEBU
Baruch Siach60ca9692019-07-14 17:54:21 +03001106 help
1107 Sector on the SATA disk to load U-Boot from, when the SATA disk is being
1108 used in raw mode. Units: SATA disk sectors (1 sector = 512 bytes).
1109
Simon Glass2a736062021-08-08 12:20:12 -06001110config SPL_SERIAL
Simon Glass11bde1c2016-09-13 07:05:23 -06001111 bool "Support serial"
Alex Kiernan14ad44a2018-04-19 04:32:54 +00001112 select SPL_PRINTF
1113 select SPL_STRTO
Simon Glass11bde1c2016-09-13 07:05:23 -06001114 help
1115 Enable support for serial in SPL. This allows use of a serial UART
1116 for displaying messages while SPL is running. It also brings in
1117 printf() and panic() functions. This should normally be enabled
1118 unless there are space reasons not to. Even then, consider
Simon Glass27084c02019-09-25 08:56:27 -06001119 enabling SPL_USE_TINY_PRINTF which is a small printf() version.
Simon Glass11bde1c2016-09-13 07:05:23 -06001120
Simon Glassea2ca7e2021-08-08 12:20:14 -06001121config SPL_SPI
Simon Goldschmidtd024e992019-10-25 16:22:09 +02001122 bool "Support SPI drivers"
1123 help
1124 Enable support for using SPI in SPL. This is used for connecting
1125 to SPI flash for loading U-Boot. See SPL_SPI_FLASH_SUPPORT for
1126 more details on that. The SPI driver provides the transport for
1127 data between the SPI flash and the CPU. This option can be used to
1128 enable SPI drivers that are needed for other purposes also, such
1129 as a SPI PMIC.
1130
Simon Glass11bde1c2016-09-13 07:05:23 -06001131config SPL_SPI_FLASH_SUPPORT
1132 bool "Support SPI flash drivers"
Simon Glassea2ca7e2021-08-08 12:20:14 -06001133 depends on SPL_SPI
Simon Glass11bde1c2016-09-13 07:05:23 -06001134 help
1135 Enable support for using SPI flash in SPL, and loading U-Boot from
1136 SPI flash. SPI flash (Serial Peripheral Bus flash) is named after
1137 the SPI bus that is used to connect it to a system. It is a simple
1138 but fast bidirectional 4-wire bus (clock, chip select and two data
1139 lines). This enables the drivers in drivers/mtd/spi as part of an
Simon Glassea2ca7e2021-08-08 12:20:14 -06001140 SPL build. This normally requires SPL_SPI.
Simon Glass11bde1c2016-09-13 07:05:23 -06001141
Vignesh R0c6f1872019-02-05 11:29:20 +05301142if SPL_SPI_FLASH_SUPPORT
1143
Vignesh R778572d2019-02-05 11:29:25 +05301144config SPL_SPI_FLASH_TINY
1145 bool "Enable low footprint SPL SPI Flash support"
1146 depends on !SPI_FLASH_BAR
Vignesh R72875972019-02-05 11:29:26 +05301147 default y if SPI_FLASH
Vignesh R778572d2019-02-05 11:29:25 +05301148 help
1149 Enable lightweight SPL SPI Flash support that supports just reading
1150 data/images from flash. No support to write/erase flash. Enable
1151 this if you have SPL size limitations and don't need full
1152 fledged SPI flash support.
1153
Vignesh R0c6f1872019-02-05 11:29:20 +05301154config SPL_SPI_FLASH_SFDP_SUPPORT
1155 bool "SFDP table parsing support for SPI NOR flashes"
Vignesh R778572d2019-02-05 11:29:25 +05301156 depends on !SPI_FLASH_BAR && !SPL_SPI_FLASH_TINY
Vignesh R0c6f1872019-02-05 11:29:20 +05301157 help
1158 Enable support for parsing and auto discovery of parameters for
1159 SPI NOR flashes using Serial Flash Discoverable Parameters (SFDP)
1160 tables as per JESD216 standard in SPL.
1161
Lukasz Majewski56c40462020-06-04 23:11:53 +08001162config SPL_SPI_FLASH_MTD
1163 bool "Support for SPI flash MTD drivers in SPL"
1164 help
1165 Enable support for SPI flash MTD drivers in SPL.
1166
Marek Vasut55500432018-04-07 16:05:27 +02001167config SPL_SPI_LOAD
1168 bool "Support loading from SPI flash"
Marek Vasut55500432018-04-07 16:05:27 +02001169 help
1170 Enable support for loading next stage, U-Boot or otherwise, from
1171 SPI NOR in U-Boot SPL.
1172
Vignesh R0c6f1872019-02-05 11:29:20 +05301173endif # SPL_SPI_FLASH_SUPPORT
1174
Hannes Schmelzer1ee774d2019-08-22 15:41:46 +02001175config SYS_SPI_U_BOOT_OFFS
1176 hex "address of u-boot payload in SPI flash"
Andre Przywara671d64f2020-01-06 01:29:10 +00001177 default 0x8000 if ARCH_SUNXI
Hannes Schmelzer1ee774d2019-08-22 15:41:46 +02001178 default 0x0
1179 depends on SPL_SPI_LOAD || SPL_SPI_SUNXI
1180 help
1181 Address within SPI-Flash from where the u-boot payload is fetched
1182 from.
1183
Faiz Abbas8502f9f2017-11-14 16:12:31 +05301184config SPL_THERMAL
1185 bool "Driver support for thermal devices"
1186 help
1187 Enable support for temperature-sensing devices. Some SoCs have on-chip
1188 temperature sensors to permit warnings, speed throttling or even
1189 automatic power-off when the temperature gets too high or low. Other
1190 devices may be discrete but connected on a suitable bus.
1191
Simon Glass333e4a62021-07-10 21:14:29 -06001192config SPL_USB_HOST
Simon Glass11bde1c2016-09-13 07:05:23 -06001193 bool "Support USB host drivers"
Tom Rini91ff6862018-12-05 08:23:38 -05001194 select HAVE_BLOCK_DEVICE
Simon Glass11bde1c2016-09-13 07:05:23 -06001195 help
1196 Enable access to USB (Universal Serial Bus) host devices so that
1197 SPL can load U-Boot from a connected USB peripheral, such as a USB
1198 flash stick. While USB takes a little longer to start up than most
1199 buses, it is very flexible since many different types of storage
1200 device can be attached. This option enables the drivers in
1201 drivers/usb/host as part of an SPL build.
1202
Abel Vesa79536012019-02-01 16:40:07 +00001203config SPL_USB_STORAGE
Simon Glass11bde1c2016-09-13 07:05:23 -06001204 bool "Support loading from USB"
Simon Glass333e4a62021-07-10 21:14:29 -06001205 depends on SPL_USB_HOST && !(BLK && !DM_USB)
Simon Glass11bde1c2016-09-13 07:05:23 -06001206 help
1207 Enable support for USB devices in SPL. This allows use of USB
1208 devices such as hard drives and flash drivers for loading U-Boot.
1209 The actual drivers are enabled separately using the normal U-Boot
1210 config options. This enables loading from USB using a configured
1211 device.
1212
Jean-Jacques Hiblotf811e972019-01-10 15:44:13 +01001213config SPL_USB_GADGET
Stefan Agnere94793c2016-11-21 10:58:53 -08001214 bool "Suppport USB Gadget drivers"
Stefan Agnere94793c2016-11-21 10:58:53 -08001215 help
1216 Enable USB Gadget API which allows to enable USB device functions
1217 in SPL.
1218
Jean-Jacques Hiblotf811e972019-01-10 15:44:13 +01001219if SPL_USB_GADGET
Stefan Agnere94793c2016-11-21 10:58:53 -08001220
Faiz Abbasb432b1e2018-02-16 21:17:44 +05301221config SPL_USB_ETHER
Stefan Agnere94793c2016-11-21 10:58:53 -08001222 bool "Support USB Ethernet drivers"
Simon Glass9f664922021-08-08 12:20:31 -06001223 depends on SPL_NET
Stefan Agnere94793c2016-11-21 10:58:53 -08001224 help
1225 Enable access to the USB network subsystem and associated
1226 drivers in SPL. This permits SPL to load U-Boot over a
1227 USB-connected Ethernet link (such as a USB Ethernet dongle) rather
1228 than from an onboard peripheral. Environment support is required
1229 since the network stack uses a number of environment variables.
Simon Glass5ed16a92021-08-08 12:20:30 -06001230 See also SPL_NET and SPL_ETH.
Stefan Agnere94793c2016-11-21 10:58:53 -08001231
Andrew F. Davis6536ca42019-01-17 13:43:02 -06001232config SPL_DFU
Fabio Estevamc3c19c22018-08-31 10:02:28 -03001233 bool "Support DFU (Device Firmware Upgrade)"
Alexandru Gagniuc07212092021-09-02 19:54:19 -05001234 select SPL_HASH
B, Ravi66928af2017-05-04 15:45:29 +05301235 select SPL_DFU_NO_RESET
B, Ravi1b19cbd2017-05-04 15:45:28 +05301236 depends on SPL_RAM_SUPPORT
Stefan Agner59917032016-11-21 10:58:52 -08001237 help
Fabio Estevamc3c19c22018-08-31 10:02:28 -03001238 This feature enables the DFU (Device Firmware Upgrade) in SPL with
Stefan Agner59917032016-11-21 10:58:52 -08001239 RAM memory device support. The ROM code will load and execute
1240 the SPL built with dfu. The user can load binaries (u-boot/kernel) to
1241 selected device partition from host-pc using dfu-utils.
1242 This feature is useful to flash the binaries to factory or bare-metal
1243 boards using USB interface.
1244
1245choice
1246 bool "DFU device selection"
Andrew F. Davis6536ca42019-01-17 13:43:02 -06001247 depends on SPL_DFU
Stefan Agner59917032016-11-21 10:58:52 -08001248
1249config SPL_DFU_RAM
1250 bool "RAM device"
Andrew F. Davis6536ca42019-01-17 13:43:02 -06001251 depends on SPL_DFU && SPL_RAM_SUPPORT
Stefan Agner59917032016-11-21 10:58:52 -08001252 help
1253 select RAM/DDR memory device for loading binary images
1254 (u-boot/kernel) to the selected device partition using
1255 DFU and execute the u-boot/kernel from RAM.
1256
1257endchoice
1258
Stefan Agnera3774c12017-08-16 11:00:54 -07001259config SPL_USB_SDP_SUPPORT
1260 bool "Support SDP (Serial Download Protocol)"
Simon Glass2a736062021-08-08 12:20:12 -06001261 depends on SPL_SERIAL
Stefan Agnera3774c12017-08-16 11:00:54 -07001262 help
1263 Enable Serial Download Protocol (SDP) device support in SPL. This
1264 allows to download images into memory and execute (jump to) them
1265 using the same protocol as implemented by the i.MX family's boot ROM.
Ye Li407e3842020-04-29 10:35:12 +08001266
1267config SPL_SDP_USB_DEV
1268 int "SDP USB controller index"
1269 default 0
1270 depends on SPL_USB_SDP_SUPPORT
1271 help
1272 Some boards have USB controller other than 0. Define this option
1273 so it can be used in compiled environment.
Stefan Agnere94793c2016-11-21 10:58:53 -08001274endif
1275
Simon Glass078111b2021-07-10 21:14:28 -06001276config SPL_WATCHDOG
Simon Glass11bde1c2016-09-13 07:05:23 -06001277 bool "Support watchdog drivers"
Marek Vasut6874cb72019-06-09 03:46:21 +02001278 imply SPL_WDT if !HW_WATCHDOG
Simon Glass11bde1c2016-09-13 07:05:23 -06001279 help
1280 Enable support for watchdog drivers in SPL. A watchdog is
1281 typically a hardware peripheral which can reset the system when it
1282 detects no activity for a while (such as a software crash). This
1283 enables the drivers in drivers/watchdog as part of an SPL build.
1284
1285config SPL_YMODEM_SUPPORT
1286 bool "Support loading using Ymodem"
Simon Glass2a736062021-08-08 12:20:12 -06001287 depends on SPL_SERIAL
Simon Glass11bde1c2016-09-13 07:05:23 -06001288 help
1289 While loading from serial is slow it can be a useful backup when
1290 there is no other option. The Ymodem protocol provides a reliable
1291 means of transmitting U-Boot over a serial line for using in SPL,
1292 with a checksum to ensure correctness.
1293
Philipp Tomsichaa122f62017-09-13 21:29:36 +02001294config SPL_ATF
Kever Yangbcc17262017-05-05 11:47:45 +08001295 bool "Support ARM Trusted Firmware"
Michal Simek975bacc2020-09-03 11:23:39 +02001296 depends on ARM64 && SPL_FIT
Kever Yangbcc17262017-05-05 11:47:45 +08001297 help
Philipp Tomsichd21fb632018-01-02 21:16:43 +01001298 ATF(ARM Trusted Firmware) is a component for ARM AArch64 which
1299 is loaded by SPL (which is considered as BL2 in ATF terminology).
Kever Yangbcc17262017-05-05 11:47:45 +08001300 More detail at: https://github.com/ARM-software/arm-trusted-firmware
1301
Michael Walle7b866822020-11-18 17:45:58 +01001302config SPL_ATF_LOAD_IMAGE_V2
1303 bool "Use the new LOAD_IMAGE_V2 parameter passing"
1304 depends on SPL_ATF
1305 help
1306 Some platforms use the newer LOAD_IMAGE_V2 parameter passing.
1307
1308 If you want to load a bl31 image from the SPL and need the new
1309 method, say Y.
1310
Philipp Tomsichd21fb632018-01-02 21:16:43 +01001311config SPL_ATF_NO_PLATFORM_PARAM
Michal Simekce869b52021-05-20 13:08:44 +02001312 bool "Pass no platform parameter"
Philipp Tomsichd21fb632018-01-02 21:16:43 +01001313 depends on SPL_ATF
1314 help
1315 While we expect to call a pointer to a valid FDT (or NULL)
1316 as the platform parameter to an ATF, some ATF versions are
1317 not U-Boot aware and have an insufficiently robust parameter
1318 validation to gracefully reject a FDT being passed.
1319
1320 If this option is enabled, the spl_atf os-type handler will
1321 always pass NULL for the platform parameter.
1322
1323 If your ATF is affected, say Y.
1324
Alex Kiernan3bf5f132018-03-15 22:11:46 +00001325config SPL_AM33XX_ENABLE_RTC32K_OSC
1326 bool "Enable the RTC32K OSC on AM33xx based platforms"
1327 default y if AM33XX
1328 help
1329 Enable access to the AM33xx RTC and select the external 32kHz clock
1330 source.
1331
Patrick Delaunay51827f92021-09-02 11:56:16 +02001332config SPL_OPTEE_IMAGE
1333 bool "Support OP-TEE Trusted OS image in SPL"
Kever Yang70fe2872018-08-23 17:17:59 +08001334 depends on ARM
1335 help
Patrick Delaunay51827f92021-09-02 11:56:16 +02001336 OP-TEE is an open source Trusted OS which is loaded by SPL.
Kever Yang70fe2872018-08-23 17:17:59 +08001337 More detail at: https://github.com/OP-TEE/optee_os
1338
Lukas Auer5e30e452019-08-21 21:14:44 +02001339config SPL_OPENSBI
1340 bool "Support RISC-V OpenSBI"
1341 depends on RISCV && SPL_RISCV_MMODE && RISCV_SMODE
1342 help
1343 OpenSBI is an open-source implementation of the RISC-V Supervisor Binary
1344 Interface (SBI) specification. U-Boot supports the OpenSBI FW_DYNAMIC
1345 firmware. It is loaded and started by U-Boot SPL.
1346
1347 More details are available at https://github.com/riscv/opensbi and
1348 https://github.com/riscv/riscv-sbi-doc
1349
1350config SPL_OPENSBI_LOAD_ADDR
1351 hex "OpenSBI load address"
1352 depends on SPL_OPENSBI
1353 help
1354 Load address of the OpenSBI binary.
1355
Tom Rini226498b2017-05-22 19:21:57 +00001356config TPL
1357 bool
1358 depends on SUPPORT_TPL
1359 prompt "Enable TPL"
1360 help
1361 If you want to build TPL as well as the normal image and SPL, say Y.
1362
1363if TPL
1364
Simon Glassc52b5e82019-10-20 21:31:52 -06001365config TPL_SIZE_LIMIT
1366 hex "Maximum size of TPL image"
1367 depends on TPL
Ovidiu Panait2dfdd0c2020-09-25 21:12:56 +03001368 default 0x0
Simon Glassc52b5e82019-10-20 21:31:52 -06001369 help
1370 Specifies the maximum length of the U-Boot TPL image.
1371 If this value is zero, it is ignored.
1372
Simon Glass38c04d82022-02-08 11:49:48 -07001373config TPL_BINMAN_SYMBOLS
Simon Glassb13114c2022-03-05 20:18:55 -07001374 bool "Declare binman symbols in TPL"
Simon Glass38c04d82022-02-08 11:49:48 -07001375 depends on SPL_FRAMEWORK && BINMAN
1376 default y
1377 help
Simon Glassb13114c2022-03-05 20:18:55 -07001378 This enables use of symbols in TPL which refer to U-Boot, enabling TPL
Simon Glass38c04d82022-02-08 11:49:48 -07001379 to obtain the location of U-Boot simply by calling spl_get_image_pos()
1380 and spl_get_image_size().
1381
1382 For this to work, you must have a U-Boot image in the binman image, so
Simon Glassb13114c2022-03-05 20:18:55 -07001383 binman can update TPL with the location of it.
Simon Glass38c04d82022-02-08 11:49:48 -07001384
Heiko Stuebner22b7b862019-07-16 10:12:02 +02001385config TPL_FRAMEWORK
1386 bool "Support TPL based upon the common SPL framework"
1387 default y if SPL_FRAMEWORK
1388 help
1389 Enable the SPL framework under common/spl/ for TPL builds.
1390 This framework supports MMC, NAND and YMODEM and other methods
1391 loading of U-Boot's SPL stage. If unsure, say Y.
1392
Simon Glassb0edea32018-11-15 18:44:09 -07001393config TPL_HANDOFF
1394 bool "Pass hand-off information from TPL to SPL and U-Boot proper"
Simon Glassa7da3d92019-09-25 08:11:17 -06001395 depends on HANDOFF && TPL_BLOBLIST
Simon Glassb0edea32018-11-15 18:44:09 -07001396 default y
1397 help
1398 This option enables TPL to write handoff information. This can be
1399 used to pass information like the size of SDRAM from TPL to U-Boot
1400 proper. The information is also available to SPL if it is useful
1401 there.
1402
Kever Yangaf2f4422018-01-20 18:00:26 +08001403config TPL_BOARD_INIT
1404 bool "Call board-specific initialization in TPL"
1405 help
1406 If this option is enabled, U-Boot will call the function
1407 spl_board_init() from board_init_r(). This function should be
1408 provided by the board.
1409
Philippe Reynes4d145f22020-12-11 19:56:47 +01001410config TPL_BOOTCOUNT_LIMIT
1411 bool "Support bootcount in TPL"
1412 depends on TPL_ENV_SUPPORT
1413 help
1414 If this option is enabled, the TPL will support bootcount.
1415 For example, it may be useful to choose the device to boot.
1416
Philipp Tomsichdd6fbcb2017-07-28 19:20:49 +02001417config TPL_LDSCRIPT
Michal Simekce869b52021-05-20 13:08:44 +02001418 string "Linker script for the TPL stage"
Philipp Tomsichdd6fbcb2017-07-28 19:20:49 +02001419 depends on TPL
Tom Rini2f41ade2019-01-22 17:09:26 -05001420 default "arch/arm/cpu/armv8/u-boot-spl.lds" if ARM64
Tom Rinia356e7a2020-03-11 18:11:11 -04001421 default "arch/\$(ARCH)/cpu/u-boot-spl.lds"
Philipp Tomsichdd6fbcb2017-07-28 19:20:49 +02001422 help
1423 The TPL stage will usually require a different linker-script
1424 (as it runs from a different memory region) than the regular
1425 U-Boot stage. Set this to the path of the linker-script to
1426 be used for TPL.
1427
Philipp Tomsichb3ed6ce2017-07-28 20:02:34 +02001428 May be left empty to trigger the Makefile infrastructure to
1429 fall back to the linker-script used for the SPL stage.
1430
Philipp Tomsichb3ed6ce2017-07-28 20:02:34 +02001431config TPL_NEEDS_SEPARATE_STACK
Michal Simekce869b52021-05-20 13:08:44 +02001432 bool "TPL needs a separate initial stack-pointer"
Philipp Tomsichb3ed6ce2017-07-28 20:02:34 +02001433 depends on TPL
1434 help
1435 Enable, if the TPL stage should not inherit its initial
1436 stack-pointer from the settings for the SPL stage.
1437
Simon Glassa4faf1f2021-08-08 12:20:29 -06001438config TPL_POWER
1439 bool "Support power drivers"
1440 help
1441 Enable support for power control in TPL. This includes support
1442 for PMICs (Power-management Integrated Circuits) and some of the
1443 features provided by PMICs. In particular, voltage regulators can
1444 be used to enable/disable power and vary its voltage. That can be
1445 useful in TPL to turn on boot peripherals and adjust CPU voltage
1446 so that the clock speed can be increased. This enables the drivers
1447 in drivers/power, drivers/power/pmic and drivers/power/regulator
1448 as part of an TPL build.
1449
Philipp Tomsichb3ed6ce2017-07-28 20:02:34 +02001450config TPL_TEXT_BASE
Michal Simekce869b52021-05-20 13:08:44 +02001451 hex "Base address for the .text section of the TPL stage"
Simon Glass8e6c1292022-02-28 12:08:30 -07001452 default 0
Philipp Tomsichb3ed6ce2017-07-28 20:02:34 +02001453 help
1454 The base address for the .text section of the TPL stage.
1455
1456config TPL_MAX_SIZE
Michal Simekce869b52021-05-20 13:08:44 +02001457 int "Maximum size (in bytes) for the TPL stage"
Philipp Tomsich5aa49af2017-07-28 20:20:41 +02001458 default 0
Philipp Tomsichb3ed6ce2017-07-28 20:02:34 +02001459 depends on TPL
1460 help
1461 The maximum size (in bytes) of the TPL stage.
1462
1463config TPL_STACK
Michal Simekce869b52021-05-20 13:08:44 +02001464 hex "Address of the initial stack-pointer for the TPL stage"
Philipp Tomsichb3ed6ce2017-07-28 20:02:34 +02001465 depends on TPL_NEEDS_SEPARATE_STACK
1466 help
1467 The address of the initial stack-pointer for the TPL stage.
1468 Usually this will be the (aligned) top-of-stack.
1469
Simon Glass95a58252021-03-15 17:25:35 +13001470config TPL_READ_ONLY
1471 bool
1472 depends on TPL_OF_PLATDATA
1473 select TPL_OF_PLATDATA_NO_BIND
1474 select TPL_OF_PLATDATA_RT
1475 help
1476 Some platforms (e.g. x86 Apollo Lake) load SPL into a read-only
1477 section of memory. This means that of-platdata must make a copy (in
1478 writeable memory) of anything it wants to modify, such as
1479 device-private data.
1480
Philipp Tomsicha954fa32017-07-04 14:24:53 +02001481config TPL_BOOTROM_SUPPORT
Michal Simekce869b52021-05-20 13:08:44 +02001482 bool "Support returning to the BOOTROM (from TPL)"
Philipp Tomsicha954fa32017-07-04 14:24:53 +02001483 help
1484 Some platforms (e.g. the Rockchip RK3368) provide support in their
1485 ROM for loading the next boot-stage after performing basic setup
1486 from the TPL stage.
1487
1488 Enable this option, to return to the BOOTROM through the
1489 BOOT_DEVICE_BOOTROM (or fall-through to the next boot device in the
1490 boot device list, if not implemented for a given board)
1491
Simon Glasse7d285b2021-09-25 19:43:24 -06001492config TPL_CRC32
1493 bool "Support CRC32 in TPL"
1494 default y if TPL_ENV_SUPPORT || TPL_BLOBLIST
1495 help
1496 Enable this to support CRC32 in uImages or FIT images within SPL.
1497 This is a 32-bit checksum value that can be used to verify images.
1498 For FIT images, this is the least secure type of checksum, suitable
1499 for detected accidental image corruption. For secure applications you
1500 should consider SHA1 or SHA256.
1501
Simon Glass9ca00682021-07-10 21:14:31 -06001502config TPL_DRIVERS_MISC
Philipp Tomsichc3916e72017-07-04 14:27:02 +02001503 bool "Support misc drivers in TPL"
1504 help
1505 Enable miscellaneous drivers in TPL. These drivers perform various
1506 tasks that don't fall nicely into other categories, Enable this
1507 option to build the drivers in drivers/misc as part of an TPL
1508 build, for those that support building in TPL (not all drivers do).
1509
Simon Glassf73329e2016-09-12 23:18:27 -06001510config TPL_ENV_SUPPORT
1511 bool "Support an environment"
Simon Glassf73329e2016-09-12 23:18:27 -06001512 help
1513 Enable environment support in TPL. See SPL_ENV_SUPPORT for details.
1514
Simon Glass83061db2021-07-10 21:14:30 -06001515config TPL_GPIO
Simon Glass2d424eb2018-11-15 18:43:55 -07001516 bool "Support GPIO in TPL"
1517 help
1518 Enable support for GPIOs (General-purpose Input/Output) in TPL.
1519 GPIOs allow U-Boot to read the state of an input line (high or
1520 low) and set the state of an output line. This can be used to
1521 drive LEDs, control power to various system parts and read user
1522 input. GPIOs can be useful in TPL to enable a 'sign-of-life' LED,
1523 for example. Enable this option to build the drivers in
1524 drivers/gpio as part of an TPL build.
1525
Simon Glass975e7cf2021-07-10 21:14:36 -06001526config TPL_I2C
Simon Glassf73329e2016-09-12 23:18:27 -06001527 bool "Support I2C"
Simon Glassf73329e2016-09-12 23:18:27 -06001528 help
Simon Glass975e7cf2021-07-10 21:14:36 -06001529 Enable support for the I2C bus in TPL. See SPL_I2C for
Simon Glassf73329e2016-09-12 23:18:27 -06001530 details.
1531
1532config TPL_LIBCOMMON_SUPPORT
1533 bool "Support common libraries"
Simon Glassf73329e2016-09-12 23:18:27 -06001534 help
1535 Enable support for common U-Boot libraries within TPL. See
1536 SPL_LIBCOMMON_SUPPORT for details.
1537
1538config TPL_LIBGENERIC_SUPPORT
1539 bool "Support generic libraries"
Simon Glassf73329e2016-09-12 23:18:27 -06001540 help
1541 Enable support for generic U-Boot libraries within TPL. See
1542 SPL_LIBGENERIC_SUPPORT for details.
1543
Simon Glass6f004ad2021-08-08 12:20:16 -06001544config TPL_MPC8XXX_INIT_DDR
Simon Glassf73329e2016-09-12 23:18:27 -06001545 bool "Support MPC8XXX DDR init"
Simon Glassf73329e2016-09-12 23:18:27 -06001546 help
1547 Enable support for DDR-SDRAM on the MPC8XXX family within TPL. See
Simon Glass6f004ad2021-08-08 12:20:16 -06001548 SPL_MPC8XXX_INIT_DDR for details.
Simon Glassf73329e2016-09-12 23:18:27 -06001549
Simon Glass103c5f12021-08-08 12:20:09 -06001550config TPL_MMC
Simon Glassf73329e2016-09-12 23:18:27 -06001551 bool "Support MMC"
Tom Rini226498b2017-05-22 19:21:57 +00001552 depends on MMC
Simon Glassf73329e2016-09-12 23:18:27 -06001553 help
Simon Glass103c5f12021-08-08 12:20:09 -06001554 Enable support for MMC within TPL. See SPL_MMC for details.
Simon Glassf73329e2016-09-12 23:18:27 -06001555
1556config TPL_NAND_SUPPORT
1557 bool "Support NAND flash"
Simon Glassf73329e2016-09-12 23:18:27 -06001558 help
Philipp Tomsich616bd092017-07-28 17:03:03 +02001559 Enable support for NAND in TPL. See SPL_NAND_SUPPORT for details.
Simon Glassf73329e2016-09-12 23:18:27 -06001560
Sekhar Norid50d6812018-12-06 15:40:08 +05301561config TPL_PCI
Simon Glass2d424eb2018-11-15 18:43:55 -07001562 bool "Support PCI drivers"
1563 help
1564 Enable support for PCI in TPL. For platforms that need PCI to boot,
1565 or must perform some init using PCI in SPL, this provides the
1566 necessary driver support. This enables the drivers in drivers/pci
1567 as part of a TPL build.
1568
Simon Glass15042e72021-08-08 12:20:10 -06001569config TPL_PCH
Simon Glass2d424eb2018-11-15 18:43:55 -07001570 bool "Support PCH drivers"
1571 help
1572 Enable support for PCH (Platform Controller Hub) devices in TPL.
1573 These are used to set up GPIOs and the SPI peripheral early in
1574 boot. This enables the drivers in drivers/pch as part of a TPL
1575 build.
1576
Marek Vasutd79dfd42018-04-07 17:03:45 +02001577config TPL_RAM_SUPPORT
1578 bool "Support booting from RAM"
1579 help
1580 Enable booting of an image in RAM. The image can be preloaded or
1581 it can be loaded by TPL directly into RAM (e.g. using USB).
1582
1583config TPL_RAM_DEVICE
1584 bool "Support booting from preloaded image in RAM"
1585 depends on TPL_RAM_SUPPORT
1586 help
1587 Enable booting of an image already loaded in RAM. The image has to
1588 be already in memory when TPL takes over, e.g. loaded by the boot
1589 ROM.
1590
Simon Glass73c6ff62021-08-08 12:20:11 -06001591config TPL_RTC
Simon Glass2d424eb2018-11-15 18:43:55 -07001592 bool "Support RTC drivers"
1593 help
1594 Enable RTC (Real-time Clock) support in TPL. This includes support
1595 for reading and setting the time. Some RTC devices also have some
1596 non-volatile (battery-backed) memory which is accessible if
1597 needed. This enables the drivers in drivers/rtc as part of an TPL
1598 build.
1599
Simon Glass2a736062021-08-08 12:20:12 -06001600config TPL_SERIAL
Simon Glassf73329e2016-09-12 23:18:27 -06001601 bool "Support serial"
Alex Kiernan14ad44a2018-04-19 04:32:54 +00001602 select TPL_PRINTF
1603 select TPL_STRTO
Simon Glassf73329e2016-09-12 23:18:27 -06001604 help
Simon Glass2a736062021-08-08 12:20:12 -06001605 Enable support for serial in TPL. See SPL_SERIAL for
Simon Glassf73329e2016-09-12 23:18:27 -06001606 details.
1607
1608config TPL_SPI_FLASH_SUPPORT
1609 bool "Support SPI flash drivers"
Simon Glassf73329e2016-09-12 23:18:27 -06001610 help
Philipp Tomsich616bd092017-07-28 17:03:03 +02001611 Enable support for using SPI flash in TPL. See SPL_SPI_FLASH_SUPPORT
Simon Glassf73329e2016-09-12 23:18:27 -06001612 for details.
1613
Simon Glassf38a2992020-07-19 10:15:31 -06001614config TPL_SPI_FLASH_TINY
1615 bool "Enable low footprint TPL SPI Flash support"
1616 depends on TPL_SPI_FLASH_SUPPORT && !SPI_FLASH_BAR
1617 default y if SPI_FLASH
1618 help
1619 Enable lightweight TPL SPI Flash support that supports just reading
1620 data/images from flash. No support to write/erase flash. Enable
1621 this if you have TPL size limitations and don't need full-fledged
1622 SPI flash support.
1623
Marek Vasut1e725e22018-04-07 16:05:46 +02001624config TPL_SPI_LOAD
1625 bool "Support loading from SPI flash"
1626 depends on TPL_SPI_FLASH_SUPPORT
1627 help
1628 Enable support for loading next stage, U-Boot or otherwise, from
1629 SPI NOR in U-Boot TPL.
1630
Simon Glassea2ca7e2021-08-08 12:20:14 -06001631config TPL_SPI
Simon Glassf73329e2016-09-12 23:18:27 -06001632 bool "Support SPI drivers"
Simon Glassf73329e2016-09-12 23:18:27 -06001633 help
Simon Glassea2ca7e2021-08-08 12:20:14 -06001634 Enable support for using SPI in TPL. See SPL_SPI for
Simon Glassf73329e2016-09-12 23:18:27 -06001635 details.
1636
Lukasz Majewski56c40462020-06-04 23:11:53 +08001637config TPL_DM_SPI
1638 bool "Support SPI DM drivers in TPL"
1639 help
1640 Enable support for SPI DM drivers in TPL.
1641
1642config TPL_DM_SPI_FLASH
1643 bool "Support SPI DM FLASH drivers in TPL"
1644 help
1645 Enable support for SPI DM flash drivers in TPL.
1646
Marek Vasut6ce3d672018-04-07 16:06:11 +02001647config TPL_YMODEM_SUPPORT
1648 bool "Support loading using Ymodem"
Simon Glass2a736062021-08-08 12:20:12 -06001649 depends on TPL_SERIAL
Marek Vasut6ce3d672018-04-07 16:06:11 +02001650 help
1651 While loading from serial is slow it can be a useful backup when
1652 there is no other option. The Ymodem protocol provides a reliable
1653 means of transmitting U-Boot over a serial line for using in TPL,
1654 with a checksum to ensure correctness.
1655
Tom Rini226498b2017-05-22 19:21:57 +00001656endif # TPL
1657
Simon Glass747093d2022-04-30 00:56:53 -06001658config VPL
1659 bool
1660 depends on SUPPORT_SPL
1661 prompt "Enable VPL"
1662 help
1663 If you want to build VPL as well as the normal image, TPL and SPL,
1664 say Y.
1665
1666if VPL
1667
1668config VPL_BANNER_PRINT
1669 bool "Enable output of the VPL banner 'U-Boot VPL ...'"
1670 depends on VPL
1671 default y
1672 help
1673 If this option is enabled, VPL will print the banner with version
1674 info. Disabling this option could be useful to reduce VPL boot time
1675 (e.g. approx. 6 ms faster, when output on i.MX6 with 115200 baud).
1676
1677config VPL_BOARD_INIT
1678 bool "Call board-specific initialization in VPL"
1679 help
1680 If this option is enabled, U-Boot will call the function
1681 spl_board_init() from board_init_r(). This function should be
1682 provided by the board.
1683
1684config VPL_CACHE
1685 depends on CACHE
1686 bool "Support cache drivers in VPL"
1687 help
1688 Enable support for cache drivers in VPL.
1689
1690config VPL_CRC32
1691 bool "Support CRC32 in VPL"
1692 default y if VPL_ENV_SUPPORT || VPL_BLOBLIST
1693 help
1694 Enable this to support CRC32 in uImages or FIT images within VPL.
1695 This is a 32-bit checksum value that can be used to verify images.
1696 For FIT images, this is the least secure type of checksum, suitable
1697 for detected accidental image corruption. For secure applications you
1698 should consider SHA1 or SHA256.
1699
1700config VPL_DM_SPI
1701 bool "Support SPI DM drivers in VPL"
1702 help
1703 Enable support for SPI DM drivers in VPL.
1704
1705config VPL_DM_SPI_FLASH
1706 bool "Support SPI DM FLASH drivers in VPL"
1707 help
1708 Enable support for SPI DM flash drivers in VPL.
1709
1710config VPL_FRAMEWORK
1711 bool "Support VPL based upon the common SPL framework"
1712 default y
1713 help
1714 Enable the SPL framework under common/spl/ for VPL builds.
1715 This framework supports MMC, NAND and YMODEM and other methods
1716 loading of U-Boot's next stage. If unsure, say Y.
1717
1718config VPL_HANDOFF
1719 bool "Pass hand-off information from VPL to SPL"
1720 depends on HANDOFF && VPL_BLOBLIST
1721 default y
1722 help
1723 This option enables VPL to write handoff information. This can be
1724 used to pass information like the size of SDRAM from VPL to SPL. Also
1725 VPL can receive information from TPL in the same place if that is
1726 enabled.
1727
1728config VPL_LIBCOMMON_SUPPORT
1729 bool "Support common libraries"
1730 default y if SPL_LIBCOMMON_SUPPORT
1731 help
1732 Enable support for common U-Boot libraries within VPL. See
1733 SPL_LIBCOMMON_SUPPORT for details.
1734
1735config VPL_LIBGENERIC_SUPPORT
1736 bool "Support generic libraries"
1737 default y if SPL_LIBGENERIC_SUPPORT
1738 help
1739 Enable support for generic U-Boot libraries within VPL. These
1740 libraries include generic code to deal with device tree, hashing,
1741 printf(), compression and the like. This option is enabled on many
1742 boards. Enable this option to build the code in lib/ as part of a
1743 VPL build.
1744
1745config VPL_DRIVERS_MISC
1746 bool "Support misc drivers"
1747 default y if TPL_DRIVERS_MISC
1748 help
1749 Enable miscellaneous drivers in VPL. These drivers perform various
1750 tasks that don't fall nicely into other categories, Enable this
1751 option to build the drivers in drivers/misc as part of a VPL
1752 build, for those that support building in VPL (not all drivers do).
1753
1754config VPL_ENV_SUPPORT
1755 bool "Support an environment"
1756 help
1757 Enable environment support in VPL. The U-Boot environment provides
1758 a number of settings (essentially name/value pairs) which can
1759 control many aspects of U-Boot's operation. Enabling this option will
1760 make env_get() and env_set() available in VSPL.
1761
1762config VPL_GPIO
1763 bool "Support GPIO in VPL"
1764 default y if SPL_GPIO
1765 help
1766 Enable support for GPIOs (General-purpose Input/Output) in VPL.
1767 GPIOs allow U-Boot to read the state of an input line (high or
1768 low) and set the state of an output line. This can be used to
1769 drive LEDs, control power to various system parts and read user
1770 input. GPIOs can be useful in VPL to enable a 'sign-of-life' LED,
1771 for example. Enable this option to build the drivers in
1772 drivers/gpio as part of a VPL build.
1773
1774config VPL_HANDOFF
1775 bool "Pass hand-off information from VPL to SPL and U-Boot proper"
1776 depends on HANDOFF && VPL_BLOBLIST
1777 default y
1778 help
1779 This option enables VPL to write handoff information. This can be
1780 used to pass information like the size of SDRAM from VPL to U-Boot
1781 proper. The information is also available to VPL if it is useful
1782 there.
1783
1784config VPL_HASH
1785 bool "Support hashing drivers in VPL"
1786 depends on VPL
1787 select SHA1
1788 select SHA256
1789 help
1790 Enable hashing drivers in VPL. These drivers can be used to
1791 accelerate secure boot processing in secure applications. Enable
1792 this option to build system-specific drivers for hash acceleration
1793 as part of a VPL build.
1794
1795config VPL_I2C_SUPPORT
1796 bool "Support I2C in VPL"
1797 default y if SPL_I2C_SUPPORT
1798 help
1799 Enable support for the I2C bus in VPL. Vee SPL_I2C_SUPPORT for
1800 details.
1801
1802config VPL_PCH_SUPPORT
1803 bool "Support PCH drivers"
1804 default y if TPL_PCH_SUPPORT
1805 help
1806 Enable support for PCH (Platform Controller Hub) devices in VPL.
1807 These are used to set up GPIOs and the SPI peripheral early in
1808 boot. This enables the drivers in drivers/pch as part of a VPL
1809 build.
1810
1811config VPL_PCI
1812 bool "Support PCI drivers"
1813 default y if SPL_PCI
1814 help
1815 Enable support for PCI in VPL. For platforms that need PCI to boot,
1816 or must perform some init using PCI in VPL, this provides the
1817 necessary driver support. This enables the drivers in drivers/pci
1818 as part of a VPL build.
1819
1820config VPL_RTC
1821 bool "Support RTC drivers"
1822 help
1823 Enable RTC (Real-time Clock) support in VPL. This includes support
1824 for reading and setting the time. Some RTC devices also have some
1825 non-volatile (battery-backed) memory which is accessible if
1826 needed. This enables the drivers in drivers/rtc as part of a VPL
1827 build.
1828
1829config VPL_SERIAL
1830 bool "Support serial"
1831 default y if TPL_SERIAL
1832 select VPL_PRINTF
1833 select VPL_STRTO
1834 help
1835 Enable support for serial in VPL. See SPL_SERIAL_SUPPORT for
1836 details.
1837
1838config VPL_SIZE_LIMIT
1839 hex "Maximum size of VPL image"
1840 depends on VPL
1841 default 0x0
1842 help
1843 Specifies the maximum length of the U-Boot VPL image.
1844 If this value is zero, it is ignored.
1845
1846config VPL_SPI
1847 bool "Support SPI drivers"
1848 help
1849 Enable support for using SPI in VPL. See SPL_SPI_SUPPORT for
1850 details.
1851
1852config VPL_SPI_FLASH_SUPPORT
1853 bool "Support SPI flash drivers"
1854 help
1855 Enable support for using SPI flash in VPL, and loading U-Boot from
1856 SPI flash. SPI flash (Serial Peripheral Bus flash) is named after
1857 the SPI bus that is used to connect it to a system. It is a simple
1858 but fast bidirectional 4-wire bus (clock, chip select and two data
1859 lines). This enables the drivers in drivers/mtd/spi as part of a
1860 VPL build. This normally requires VPL_SPI_SUPPORT.
1861
1862config VPL_TEXT_BASE
1863 hex "VPL Text Base"
1864 default 0x0
1865 help
1866 The address in memory that VPL will be running from.
1867
1868endif # VPL
1869
Eugen Hristev0be07872019-05-24 09:38:10 +03001870config SPL_AT91_MCK_BYPASS
1871 bool "Use external clock signal as a source of main clock for AT91 platforms"
1872 depends on ARCH_AT91
Eugen Hristev0be07872019-05-24 09:38:10 +03001873 help
1874 Use external 8 to 24 Mhz clock signal as source of main clock instead
1875 of an external crystal oscillator.
1876 This option disables the internal driving on the XOUT pin.
1877 The external source has to provide a stable clock on the XIN pin.
1878 If this option is disabled, the SoC expects a crystal oscillator
1879 that needs driving on both XIN and XOUT lines.
1880
Tom Rini226498b2017-05-22 19:21:57 +00001881endif # SPL
Simon Glass11bde1c2016-09-13 07:05:23 -06001882endmenu