blob: 25078432a7ed3a0454894970996b9026fbd3d56f [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
Tom Rinica8a3292022-05-16 17:20:26 -040078config SPL_MAX_SIZE
79 hex "Maximum size of the SPL image, excluding BSS"
80 default 0x30000 if ARCH_MX6 && MX6_OCRAM_256KB
81 default 0x1b000 if AM33XX && !TI_SECURE_DEVICE
82 default 0x10000 if ARCH_MX6 && !MX6_OCRAM_256KB
83 default 0x7fa0 if SUNXI_SRAM_ADDRESS = 0x10000
84 default 0x7fa0 if SUNXI_SRAM_ADDRESS = 0x20000 && !MACH_SUN50I_H616
85 default 0x7000 if RCAR_GEN3
86 default 0x5fa0 if SUNXI_SRAM_ADDRESS = 0x0
87 default 0x0
88 help
89 Maximum size of the SPL image (text, data, rodata, and linker lists
90 sections), BSS excluded. When defined, the linker checks that the
91 actual size does not exceed it.
92
93config SPL_PAD_TO
94 hex "Offset to which the SPL should be padded before appending the SPL payload"
95 default 0x31000 if ARCH_MX6 && MX6_OCRAM_256KB
96 default 0x11000 if ARCH_MX7 || (ARCH_MX6 && !MX6_OCRAM_256KB)
97 default 0x10000 if ARCH_KEYSTONE
98 default 0x8000 if ARCH_SUNXI && !MACH_SUN50I_H616
99 default TPL_MAX_SIZE if TPL_MAX_SIZE > SPL_MAX_SIZE
100 default SPL_MAX_SIZE
101 help
102 Image offset to which the SPL should be padded before appending the
103 SPL payload. By default, this is defined as CONFIG_SPL_MAX_SIZE, or 0 if
104 CONFIG_SPL_MAX_SIZE is undefined. CONFIG_SPL_PAD_TO must be either
105 0, meaning to append the SPL payload without any padding, or >=
106 CONFIG_SPL_MAX_SIZE.
107
Tom Rini6600b352022-05-27 10:19:45 -0400108config SPL_HAS_BSS_LINKER_SECTION
109 depends on SPL_FRAMEWORK
110 bool "Use a specific address for the BSS via the linker script"
111 default y if ARCH_SUNXI || ARCH_MX6 || ARCH_OMAP2PLUS || MIPS || RISCV
112
113config SPL_BSS_START_ADDR
114 hex "Link address for the BSS within the SPL binary"
115 depends on SPL_HAS_BSS_LINKER_SECTION
116 default 0x88200000 if (ARCH_MX6 && (MX6SX || MX6SL || MX6UL || MX6ULL)) || ARCH_MX7
117 default 0x18200000 if ARCH_MX6 && !(MX6SX || MX6SL || MX6UL || MX6ULL)
118 default 0x80a00000 if ARCH_OMAP2PLUS
119 default 0x81f80000 if ARCH_SUNXI && MACH_SUNIV
120 default 0x4ff80000 if ARCH_SUNXI && !(MACH_SUN9I || MACH_SUNIV)
121 default 0x2ff80000 if ARCH_SUNXI && MACH_SUN9I
122
Tom Rini9b5f9ae2022-05-19 15:09:22 -0400123choice
124 prompt "Enforce SPL BSS limit"
125 depends on SPL && !PPC
126 default SPL_BSS_LIMIT
127 help
128 In some platforms we only want to enforce a limit on the size of the
129 BSS in memory. On other platforms we need to enforce a limit on the
130 whole of the memory allocation as we're strictly limited to a small
131 typically non-DRAM location. Finally, other platforms do not enforce
132 a memory limit within SPL.
133
134config SPL_NO_BSS_LIMIT
135 bool "Do not enforce a build time limit on the size of the BSS"
136
137config SPL_BSS_LIMIT
138 bool "Enforce a limit on the size of the BSS only"
139
140config SPL_FOOTPRINT_LIMIT
141 bool "Enforce a limit on the whole of memory allocated to SPL, BSS included"
142
143endchoice
144
145config SPL_BSS_MAX_SIZE
146 hex "Maximum size in memory allocated to the SPL BSS"
147 depends on SPL_BSS_LIMIT
148 default 0x100000 if ARCH_MX6 || RISCV
149 default 0x80000 if ARCH_OMAP2PLUS || ARCH_SUNXI
150 help
151 When non-zero, the linker checks that the actual memory used by SPL
152 from __bss_start to __bss_end does not exceed it.
153
154config SPL_MAX_FOOTPRINT
155 hex "Maximum size in memory allocated to the SPL, BSS included"
156 depends on SPL_FOOTPRINT_LIMIT
157 help
158 When non-zero, the linker checks that the actual memory used by SPL
159 from _start to __bss_end does not exceed it.
160
Simon Goldschmidtd8c03322019-07-16 22:30:36 +0200161config SPL_SYS_STACK_F_CHECK_BYTE
162 hex
163 default 0xaa
164 help
165 Constant used to check the stack
166
167config SPL_SYS_REPORT_STACK_F_USAGE
168 depends on SPL_SIZE_LIMIT_PROVIDE_STACK != 0
169 bool "Check and report stack usage in SPL before relocation"
170 help
171 If this option is enabled, the initial SPL stack is filled with 0xaa
172 very early, up to the size configured with
173 SPL_SIZE_LIMIT_PROVIDE_STACK.
174 Later when SPL is done using this initial stack and switches to a
175 stack in DRAM, the actually used size of this initial stack is
176 reported by examining the memory and searching for the lowest
177 occurrence of non 0xaa bytes.
178 This default implementation works for stacks growing down only.
179
Simon Glass7d84fbb2021-07-05 16:32:57 -0600180config SPL_SHOW_ERRORS
181 bool "Show more information when something goes wrong"
182 help
183 This enabled more verbose error messages and checking when something
184 goes wrong in SPL. For example, it shows the error code when U-Boot
185 cannot be located. This can help to diagnose the problem and figure
186 out a fix, particularly during development.
187
188 This adds a small amount to SPL code size, perhaps 100 bytes.
189
Simon Glass38c04d82022-02-08 11:49:48 -0700190config SPL_BINMAN_SYMBOLS
191 bool "Declare binman symbols in SPL"
192 depends on SPL_FRAMEWORK && BINMAN
193 default y
194 help
195 This enables use of symbols in SPL which refer to U-Boot, enabling SPL
196 to obtain the location of U-Boot simply by calling spl_get_image_pos()
197 and spl_get_image_size().
198
199 For this to work, you must have a U-Boot image in the binman image, so
200 binman can update SPL with the location of it.
201
Tom Riniba787bb2022-05-30 17:01:22 -0400202source "common/spl/Kconfig.nxp"
Tom Rinib35316f2022-05-13 12:26:35 -0400203
Simon Glassb0edea32018-11-15 18:44:09 -0700204config HANDOFF
205 bool "Pass hand-off information from SPL to U-Boot proper"
Ovidiu Panait2a7c9ab2020-11-28 10:43:19 +0200206 depends on SPL && BLOBLIST
Simon Glassb0edea32018-11-15 18:44:09 -0700207 help
208 It is useful to be able to pass information from SPL to U-Boot
209 proper to preserve state that is known in SPL and is needed in U-Boot.
210 Enable this to locate the handoff information in U-Boot proper, early
211 in boot. It is available in gd->handoff. The state state is set up
212 in SPL (or TPL if that is being used).
213
Tom Rini226498b2017-05-22 19:21:57 +0000214if SPL
215
Simon Glassb0edea32018-11-15 18:44:09 -0700216config SPL_HANDOFF
217 bool "Pass hand-off information from SPL to U-Boot proper"
Simon Glassa7da3d92019-09-25 08:11:17 -0600218 depends on HANDOFF && SPL_BLOBLIST
Simon Glassb0edea32018-11-15 18:44:09 -0700219 default y
220 help
221 This option enables SPL to write handoff information. This can be
222 used to pass information like the size of SDRAM from SPL to U-Boot
223 proper. Also SPL can receive information from TPL in the same place
224 if that is enabled.
225
Philipp Tomsichdd6fbcb2017-07-28 19:20:49 +0200226config SPL_LDSCRIPT
227 string "Linker script for the SPL stage"
Tom Rinia356e7a2020-03-11 18:11:11 -0400228 default "arch/\$(ARCH)/cpu/u-boot-spl.lds"
Philipp Tomsichdd6fbcb2017-07-28 19:20:49 +0200229 help
230 The SPL stage will usually require a different linker-script
231 (as it runs from a different memory region) than the regular
232 U-Boot stage. Set this to the path of the linker-script to
233 be used for SPL.
234
Simon Goldschmidtf89d6132018-09-30 14:31:53 +0200235config SPL_TEXT_BASE
236 hex "SPL Text Base"
237 default ISW_ENTRY_ADDR if AM43XX || AM33XX || OMAP54XX || ARCH_KEYSTONE
Andre Przywara9340d8f2019-05-27 01:45:11 +0100238 default 0x10060 if MACH_SUN50I || MACH_SUN50I_H5 || MACH_SUN9I
Jernej Skrabec44726092021-01-11 21:11:34 +0100239 default 0x20060 if SUN50I_GEN_H6
Andre Przywara9340d8f2019-05-27 01:45:11 +0100240 default 0x00060 if ARCH_SUNXI
Michal Simek0413f9c2019-09-11 08:49:31 +0200241 default 0xfffc0000 if ARCH_ZYNQMP
Simon Goldschmidtf89d6132018-09-30 14:31:53 +0200242 default 0x0
243 help
244 The address in memory that SPL will be running from.
245
Ley Foon Tan0680f1b2017-05-03 17:13:32 +0800246config SPL_BOARD_INIT
Ley Foon Tan0680f1b2017-05-03 17:13:32 +0800247 bool "Call board-specific initialization in SPL"
248 help
249 If this option is enabled, U-Boot will call the function
250 spl_board_init() from board_init_r(). This function should be
251 provided by the board.
252
Philipp Tomsich225d30b2017-06-22 23:38:36 +0200253config SPL_BOOTROM_SUPPORT
Michal Simekce869b52021-05-20 13:08:44 +0200254 bool "Support returning to the BOOTROM"
Philipp Tomsich225d30b2017-06-22 23:38:36 +0200255 help
256 Some platforms (e.g. the Rockchip RK3368) provide support in their
257 ROM for loading the next boot-stage after performing basic setup
258 from the SPL stage.
259
260 Enable this option, to return to the BOOTROM through the
261 BOOT_DEVICE_BOOTROM (or fall-through to the next boot device in the
262 boot device list, if not implemented for a given board)
263
Lukasz Majewskiafa96092018-05-02 16:10:50 +0200264config SPL_BOOTCOUNT_LIMIT
265 bool "Support bootcount in SPL"
Philippe Reynes4d145f22020-12-11 19:56:47 +0100266 depends on SPL_ENV_SUPPORT && !TPL_BOOTCOUNT_LIMIT
Lukasz Majewskiafa96092018-05-02 16:10:50 +0200267 help
268 On some boards, which use 'falcon' mode, it is necessary to check
269 and increment the number of boot attempts. Such boards do not
270 use proper U-Boot for normal boot flow and hence needs those
271 adjustments to be done in the SPL.
272
Andrew F. Davis24eb39b2017-02-16 11:18:38 -0600273config SPL_RAW_IMAGE_SUPPORT
274 bool "Support SPL loading and booting of RAW images"
Simon Glassf7560372021-08-08 12:20:17 -0600275 default n if (ARCH_MX6 && (SPL_MMC || SPL_SATA))
Andrew Davis11f32da2022-05-04 15:52:26 -0500276 default y
277 depends on !TI_SECURE_DEVICE
Andrew F. Davis24eb39b2017-02-16 11:18:38 -0600278 help
279 SPL will support loading and booting a RAW image when this option
280 is y. If this is not set, SPL will move on to other available
281 boot media to find a suitable image.
282
Andrew Davis6665ab12022-05-04 15:52:25 -0500283config SPL_LEGACY_IMAGE_FORMAT
Andrew F. Davis722a6b12017-02-16 11:18:39 -0600284 bool "Support SPL loading and booting of Legacy images"
Andrew Davis11f32da2022-05-04 15:52:26 -0500285 default y if !SPL_LOAD_FIT
286 depends on !TI_SECURE_DEVICE
Andrew F. Davis722a6b12017-02-16 11:18:39 -0600287 help
288 SPL will support loading and booting Legacy images when this option
289 is y. If this is not set, SPL will move on to other available
290 boot media to find a suitable image.
291
Simon Goldschmidtdae5c2d2019-02-10 21:34:37 +0100292config SPL_LEGACY_IMAGE_CRC_CHECK
293 bool "Check CRC of Legacy images"
Andrew Davis6665ab12022-05-04 15:52:25 -0500294 depends on SPL_LEGACY_IMAGE_FORMAT
Simon Glass1e52db62021-07-14 17:05:32 -0500295 select SPL_CRC32
Simon Goldschmidtdae5c2d2019-02-10 21:34:37 +0100296 help
297 Enable this to check the CRC of Legacy images. While this increases
298 reliability, it affects both code size and boot duration.
299 If disabled, Legacy images are booted if the image magic and size
300 are correct, without further integrity checks.
301
Simon Glassc2ae7d82016-09-12 23:18:22 -0600302config SPL_SYS_MALLOC_SIMPLE
303 bool
Simon Glassc2ae7d82016-09-12 23:18:22 -0600304 prompt "Only use malloc_simple functions in the SPL"
305 help
306 Say Y here to only use the *_simple malloc functions from
307 malloc_simple.c, rather then using the versions from dlmalloc.c;
308 this will make the SPL binary smaller at the cost of more heap
309 usage as the *_simple malloc functions do not re-use free-ed mem.
310
Tom Rinif113d7d2022-05-26 13:13:21 -0400311config SPL_SHARES_INIT_SP_ADDR
312 bool "SPL and U-Boot use the same initial stack pointer location"
313 depends on (ARM || ARCH_JZ47XX || MICROBLAZE || RISCV) && SPL_FRAMEWORK
Tom Rini8b83b532022-05-26 13:46:32 -0400314 default n if ARCH_SUNXI || ARCH_MX6 || ARCH_MX7
Tom Rinif113d7d2022-05-26 13:13:21 -0400315 default y
316 help
317 In many cases, we can use the same initial stack pointer address for
318 both SPL and U-Boot itself. If you need to specify a different address
319 however, say N here and then set a different value in CONFIG_SPL_STACK.
320
321config SPL_STACK
322 hex "Initial stack pointer location"
323 depends on (ARM || ARCH_JZ47XX || MICROBLAZE || RISCV) && SPL_FRAMEWORK
324 depends on !SPL_SHARES_INIT_SP_ADDR
Tom Rini8b83b532022-05-26 13:46:32 -0400325 default 0x946bb8 if ARCH_MX7
Tom Rini23780392022-05-26 13:36:17 -0400326 default 0x93ffb8 if ARCH_MX6 && MX6_OCRAM_256KB
327 default 0x91ffb8 if ARCH_MX6 && !MX6_OCRAM_256KB
Tom Rinif113d7d2022-05-26 13:13:21 -0400328 help
329 Address of the start of the stack SPL will use before SDRAM is
330 initialized.
331
Simon Glassc2ae7d82016-09-12 23:18:22 -0600332config SPL_STACK_R
Simon Glassc2ae7d82016-09-12 23:18:22 -0600333 bool "Enable SDRAM location for SPL stack"
334 help
335 SPL starts off execution in SRAM and thus typically has only a small
336 stack available. Since SPL sets up DRAM while in its board_init_f()
337 function, it is possible for the stack to move there before
338 board_init_r() is reached. This option enables a special SDRAM
339 location for the SPL stack. U-Boot SPL switches to this after
340 board_init_f() completes, and before board_init_r() starts.
341
342config SPL_STACK_R_ADDR
343 depends on SPL_STACK_R
344 hex "SDRAM location for SPL stack"
Tom Riniff6c3122017-09-17 11:44:49 -0400345 default 0x82000000 if ARCH_OMAP2PLUS
Simon Glassc2ae7d82016-09-12 23:18:22 -0600346 help
347 Specify the address in SDRAM for the SPL stack. This will be set up
348 before board_init_r() is called.
349
350config SPL_STACK_R_MALLOC_SIMPLE_LEN
351 depends on SPL_STACK_R && SPL_SYS_MALLOC_SIMPLE
352 hex "Size of malloc_simple heap after switching to DRAM SPL stack"
353 default 0x100000
354 help
355 Specify the amount of the stack to use as memory pool for
356 malloc_simple after switching the stack to DRAM. This may be set
357 to give board_init_r() a larger heap then the initial heap in
358 SRAM which is limited to SYS_MALLOC_F_LEN bytes.
359
360config SPL_SEPARATE_BSS
Simon Glassc2ae7d82016-09-12 23:18:22 -0600361 bool "BSS section is in a different memory region from text"
362 help
363 Some platforms need a large BSS region in SPL and can provide this
364 because RAM is already set up. In this case BSS can be moved to RAM.
365 This option should then be enabled so that the correct device tree
366 location is used. Normally we put the device tree at the end of BSS
367 but with this option enabled, it goes at _image_binary_end.
368
Tom Rini10f6e4d2022-05-27 12:48:32 -0400369config SYS_SPL_MALLOC
370 bool "Enable malloc pool in SPL"
371 depends on SPL_FRAMEWORK
372
373config HAS_CUSTOM_SPL_MALLOC_START
374 bool "For the SPL malloc pool, define a custom starting address"
375 depends on SYS_SPL_MALLOC
376
377config CUSTOM_SYS_SPL_MALLOC_ADDR
378 hex "SPL malloc addr"
379 depends on HAS_CUSTOM_SPL_MALLOC_START
380
381config SYS_SPL_MALLOC_SIZE
382 hex "Size of the SPL malloc pool"
383 depends on SYS_SPL_MALLOC
384 default 0x100000
385
Simon Glass95a58252021-03-15 17:25:35 +1300386config SPL_READ_ONLY
387 bool
388 depends on SPL_OF_PLATDATA
389 # Bind cannot be supported because the udevice structs are in read-only
390 # memory so we cannot update the linked lists.
391 select SPL_OF_PLATDATA_NO_BIND
392 select SPL_OF_PLATDATA_RT
393 help
394 Some platforms (e.g. x86 Apollo Lake) load SPL into a read-only
395 section of memory. This means that of-platdata must make a copy (in
396 writeable memory) of anything it wants to modify, such as
397 device-private data.
398
Simon Glassaedc08b2018-11-15 18:43:57 -0700399config SPL_BANNER_PRINT
400 bool "Enable output of the SPL banner 'U-Boot SPL ...'"
401 default y
402 help
403 If this option is enabled, SPL will print the banner with version
Thomas Hebb32f2ca22019-11-13 18:18:03 -0800404 info. Disabling this option could be useful to reduce SPL boot time
Simon Glassaedc08b2018-11-15 18:43:57 -0700405 (e.g. approx. 6 ms faster, when output on i.MX6 with 115200 baud).
406
Andreas Dannenberga5a5d992019-06-04 17:55:45 -0500407config SPL_EARLY_BSS
408 depends on ARM && !ARM64
409 bool "Allows initializing BSS early before entering board_init_f"
410 help
411 On some platform we have sufficient memory available early on to
412 allow setting up and using a basic BSS prior to entering
413 board_init_f. Activating this option will also de-activate the
414 clearing of BSS during the SPL relocation process, thus allowing
415 to carry state from board_init_f to board_init_r by way of BSS.
416
Simon Glassa807ab32016-09-24 18:19:56 -0600417config SPL_DISPLAY_PRINT
Simon Glassa807ab32016-09-24 18:19:56 -0600418 bool "Display a board-specific message in SPL"
419 help
420 If this option is enabled, U-Boot will call the function
421 spl_display_print() immediately after displaying the SPL console
422 banner ("U-Boot SPL ..."). This function should be provided by
423 the board.
424
Semen Protsenko38fed8a2016-11-16 19:19:05 +0200425config SYS_MMCSD_RAW_MODE_U_BOOT_USE_SECTOR
426 bool "MMC raw mode: by sector"
Fabio Estevam1da19382018-06-11 15:08:05 -0300427 default y if ARCH_SUNXI || ARCH_DAVINCI || ARCH_UNIPHIER || \
428 ARCH_MX6 || ARCH_MX7 || \
Semen Protsenko38fed8a2016-11-16 19:19:05 +0200429 ARCH_ROCKCHIP || ARCH_MVEBU || ARCH_SOCFPGA || \
430 ARCH_AT91 || ARCH_ZYNQ || ARCH_KEYSTONE || OMAP34XX || \
Bin Mengae2d9502021-03-17 11:10:58 +0800431 OMAP44XX || OMAP54XX || AM33XX || AM43XX || \
Green Wan70415e12021-05-27 06:52:13 -0700432 TARGET_SIFIVE_UNLEASHED || TARGET_SIFIVE_UNMATCHED
Semen Protsenko38fed8a2016-11-16 19:19:05 +0200433 help
434 Use sector number for specifying U-Boot location on MMC/SD in
435 raw mode.
436
437config SYS_MMCSD_RAW_MODE_U_BOOT_SECTOR
438 hex "Address on the MMC to load U-Boot from"
Tom Rini226498b2017-05-22 19:21:57 +0000439 depends on SYS_MMCSD_RAW_MODE_U_BOOT_USE_SECTOR
Andre Przywarac0b417b2021-01-11 21:11:39 +0100440 default 0x40 if ARCH_SUNXI
Semen Protsenko38fed8a2016-11-16 19:19:05 +0200441 default 0x75 if ARCH_DAVINCI
Fabio Estevam1da19382018-06-11 15:08:05 -0300442 default 0x8a if ARCH_MX6 || ARCH_MX7
Kever Yang8f4d62b2017-11-02 15:16:34 +0800443 default 0x100 if ARCH_UNIPHIER
Pali Rohár2226ca12021-07-23 11:14:29 +0200444 default 0x0 if ARCH_MVEBU
Semen Protsenko38fed8a2016-11-16 19:19:05 +0200445 default 0x200 if ARCH_SOCFPGA || ARCH_AT91
446 default 0x300 if ARCH_ZYNQ || ARCH_KEYSTONE || OMAP34XX || OMAP44XX || \
Lokesh Vutla586bde92018-08-27 15:57:08 +0530447 OMAP54XX || AM33XX || AM43XX || ARCH_K3
Kever Yang8f4d62b2017-11-02 15:16:34 +0800448 default 0x4000 if ARCH_ROCKCHIP
Green Wan70415e12021-05-27 06:52:13 -0700449 default 0x822 if TARGET_SIFIVE_UNLEASHED || TARGET_SIFIVE_UNMATCHED
Semen Protsenko38fed8a2016-11-16 19:19:05 +0200450 help
451 Address on the MMC to load U-Boot from, when the MMC is being used
452 in raw mode. Units: MMC sectors (1 sector = 512 bytes).
453
Baruch Siache42afd82020-01-15 09:08:08 +0200454config SYS_MMCSD_RAW_MODE_U_BOOT_DATA_PART_OFFSET
455 hex "U-Boot main hardware partition image offset"
456 depends on SYS_MMCSD_RAW_MODE_U_BOOT_USE_SECTOR
Andre Przywarac0b417b2021-01-11 21:11:39 +0100457 default 0x10 if ARCH_SUNXI
Baruch Siache42afd82020-01-15 09:08:08 +0200458 default 0x0
459 help
460 On some platforms SPL location depends on hardware partition. The ROM
461 code skips the MBR sector when loading SPL from main hardware data
462 partition. This adds offset to the main U-Boot image. Set this symbol
463 to the number of skipped sectors.
464
465 If unsure, leave the default.
466
Dalon Westergreen949123e2017-02-10 17:15:35 -0800467config SYS_MMCSD_RAW_MODE_U_BOOT_USE_PARTITION
468 bool "MMC Raw mode: by partition"
Dalon Westergreen949123e2017-02-10 17:15:35 -0800469 help
470 Use a partition for loading U-Boot when using MMC/SD in raw mode.
471
472config SYS_MMCSD_RAW_MODE_U_BOOT_PARTITION
473 hex "Partition to use to load U-Boot from"
Tom Rini226498b2017-05-22 19:21:57 +0000474 depends on SYS_MMCSD_RAW_MODE_U_BOOT_USE_PARTITION
Dalon Westergreen949123e2017-02-10 17:15:35 -0800475 default 1
476 help
477 Partition on the MMC to load U-Boot from when the MMC is being
478 used in raw mode
479
Dalon Westergreenf0fb4fa2017-02-10 17:15:34 -0800480config SYS_MMCSD_RAW_MODE_U_BOOT_USE_PARTITION_TYPE
481 bool "MMC raw mode: by partition type"
Tom Rini226498b2017-05-22 19:21:57 +0000482 depends on DOS_PARTITION && SYS_MMCSD_RAW_MODE_U_BOOT_USE_PARTITION
Dalon Westergreenf0fb4fa2017-02-10 17:15:34 -0800483 help
484 Use partition type for specifying U-Boot partition on MMC/SD in
485 raw mode. U-Boot will be loaded from the first partition of this
486 type to be found.
487
488config SYS_MMCSD_RAW_MODE_U_BOOT_PARTITION_TYPE
489 hex "Partition Type on the MMC to load U-Boot from"
Tom Rini226498b2017-05-22 19:21:57 +0000490 depends on SYS_MMCSD_RAW_MODE_U_BOOT_USE_PARTITION_TYPE
Dalon Westergreenf0fb4fa2017-02-10 17:15:34 -0800491 help
492 Partition Type on the MMC to load U-Boot from, when the MMC is being
493 used in raw mode.
494
Anatolij Gustschin32ded502019-10-18 21:38:33 +0200495config SUPPORT_EMMC_BOOT_OVERRIDE_PART_CONFIG
496 bool "Override eMMC EXT_CSC_PART_CONFIG by user defined partition"
497 depends on SUPPORT_EMMC_BOOT
498 help
499 eMMC boot partition is normally configured by the bits of the EXT_CSD
500 register (EXT_CSC_PART_CONFIG), BOOT_PARTITION_ENABLE field. In some
501 cases it might be required in SPL to load the image from different
502 partition than the partition selected by EXT_CSC_PART_CONFIG register.
503 Enable this option if you intend to use an eMMC boot partition other
504 then selected via EXT_CSC_PART_CONFIG register and specify the custom
505 partition number by the CONFIG_SYS_MMCSD_RAW_MODE_EMMC_BOOT_PARTITION
506 option.
507
508config SYS_MMCSD_RAW_MODE_EMMC_BOOT_PARTITION
509 int "Number of the eMMC boot partition to use"
510 depends on SUPPORT_EMMC_BOOT_OVERRIDE_PART_CONFIG
511 default 1
512 help
513 eMMC boot partition number to use when the eMMC in raw mode and
514 the eMMC EXT_CSC_PART_CONFIG selection should be overridden in SPL
515 by user defined partition number.
516
Simon Glass1e52db62021-07-14 17:05:32 -0500517config SPL_CRC32
Simon Glass11bde1c2016-09-13 07:05:23 -0600518 bool "Support CRC32"
Andrew Davis6665ab12022-05-04 15:52:25 -0500519 default y if SPL_LEGACY_IMAGE_FORMAT || SPL_EFI_PARTITION
Simon Glasse7d285b2021-09-25 19:43:24 -0600520 default y if SPL_ENV_SUPPORT || TPL_BLOBLIST
Simon Glass11bde1c2016-09-13 07:05:23 -0600521 help
Simon Goldschmidtdae5c2d2019-02-10 21:34:37 +0100522 Enable this to support CRC32 in uImages or FIT images within SPL.
523 This is a 32-bit checksum value that can be used to verify images.
524 For FIT images, this is the least secure type of checksum, suitable
525 for detected accidental image corruption. For secure applications you
526 should consider SHA1 or SHA256.
Simon Glass11bde1c2016-09-13 07:05:23 -0600527
Simon Glass4b00fd12021-07-14 17:05:33 -0500528config SPL_MD5
Simon Glass11bde1c2016-09-13 07:05:23 -0600529 bool "Support MD5"
530 depends on SPL_FIT
531 help
532 Enable this to support MD5 in FIT images within SPL. An MD5
533 checksum is a 128-bit hash value used to check that the image
534 contents have not been corrupted. Note that MD5 is not considered
535 secure as it is possible (with a brute-force attack) to adjust the
536 image while still retaining the same MD5 hash value. For secure
537 applications where images may be changed maliciously, you should
Reuben Dowled16b38f2020-04-16 17:36:52 +1200538 consider SHA256 or SHA384.
Simon Glass11bde1c2016-09-13 07:05:23 -0600539
Philipp Tomsich337bbb62017-11-24 13:26:03 +0100540config SPL_FIT_IMAGE_TINY
541 bool "Remove functionality from SPL FIT loading to reduce size"
542 depends on SPL_FIT
Jernej Skrabec44726092021-01-11 21:11:34 +0100543 default y if MACH_SUN50I || MACH_SUN50I_H5 || SUN50I_GEN_H6
Ye Lif6282cd2018-11-20 10:19:15 +0000544 default y if ARCH_IMX8M
Philipp Tomsich337bbb62017-11-24 13:26:03 +0100545 help
546 Enable this to reduce the size of the FIT image loading code
547 in SPL, if space for the SPL binary is very tight.
548
Samuel Hollandcf705532020-10-21 21:12:13 -0500549 This skips the recording of each loaded payload
Philipp Tomsich337bbb62017-11-24 13:26:03 +0100550 (i.e. loadable) into the FDT (modifying the loaded FDT to
551 ensure this information is available to the next image
552 invoked).
553
Simon Glassde213c72021-08-08 12:20:15 -0600554config SPL_CACHE
Rick Chen31dae222019-11-14 13:52:26 +0800555 bool "Support CACHE drivers"
556 help
557 Enable CACHE drivers in SPL. These drivers can keep data so that
558 future requests for that data can be served faster. Enable this option
559 to build the drivers in drivers/cache as part of an SPL build.
560
Simon Glass529d5f92021-03-15 18:11:18 +1300561config SPL_CPU
Simon Glass5e148df2017-01-16 07:03:29 -0700562 bool "Support CPU drivers"
Simon Glass5e148df2017-01-16 07:03:29 -0700563 help
564 Enable this to support CPU drivers in SPL. These drivers can set
565 up CPUs and provide information about them such as the model and
566 name. This can be useful in SPL since setting up the CPUs earlier
567 may improve boot performance. Enable this option to build the
568 drivers in drivers/cpu as part of an SPL build.
569
Simon Glass0c6bdbb2021-07-10 21:14:25 -0600570config SPL_CRYPTO
Simon Glass11bde1c2016-09-13 07:05:23 -0600571 bool "Support crypto drivers"
Simon Glass11bde1c2016-09-13 07:05:23 -0600572 help
573 Enable crypto drivers in SPL. These drivers can be used to
574 accelerate secure boot processing in secure applications. Enable
575 this option to build the drivers in drivers/crypto as part of an
576 SPL build.
577
Vignesh Raghavendra74326a32019-11-15 17:00:41 +0530578config SPL_DMA
Simon Glass11bde1c2016-09-13 07:05:23 -0600579 bool "Support DMA drivers"
Simon Glass11bde1c2016-09-13 07:05:23 -0600580 help
581 Enable DMA (direct-memory-access) drivers in SPL. These drivers
582 can be used to handle memory-to-peripheral data transfer without
583 the CPU moving the data. Enable this option to build the drivers
584 in drivers/dma as part of an SPL build.
585
Simon Glass9ca00682021-07-10 21:14:31 -0600586config SPL_DRIVERS_MISC
Simon Glass11bde1c2016-09-13 07:05:23 -0600587 bool "Support misc drivers"
Simon Glass11bde1c2016-09-13 07:05:23 -0600588 help
589 Enable miscellaneous drivers in SPL. These drivers perform various
590 tasks that don't fall nicely into other categories, Enable this
591 option to build the drivers in drivers/misc as part of an SPL
592 build, for those that support building in SPL (not all drivers do).
593
594config SPL_ENV_SUPPORT
595 bool "Support an environment"
Simon Glass11bde1c2016-09-13 07:05:23 -0600596 help
597 Enable environment support in SPL. The U-Boot environment provides
598 a number of settings (essentially name/value pairs) which can
599 control many aspects of U-Boot's operation. Normally this is not
600 needed in SPL as it has a much simpler task with less
601 configuration. But some boards use this to support 'Falcon' boot
602 on EXT2 and FAT, where SPL boots directly into Linux without
Simon Glass00caae62017-08-03 12:22:12 -0600603 starting U-Boot first. Enabling this option will make env_get()
Simon Glass382bee52017-08-03 12:22:09 -0600604 and env_set() available in SPL.
Simon Glass11bde1c2016-09-13 07:05:23 -0600605
B, Ravid2d9bdf2016-09-28 14:46:18 +0530606config SPL_SAVEENV
607 bool "Support save environment"
Tom Rini226498b2017-05-22 19:21:57 +0000608 depends on SPL_ENV_SUPPORT
Jean-Jacques Hiblotd6400c32018-01-04 15:23:32 +0100609 select SPL_MMC_WRITE if ENV_IS_IN_MMC
B, Ravid2d9bdf2016-09-28 14:46:18 +0530610 help
611 Enable save environment support in SPL after setenv. By default
612 the saveenv option is not provided in SPL, but some boards need
613 this support in 'Falcon' boot, where SPL need to boot from
614 different images based on environment variable set by OS. For
615 example OS may set "reboot_image" environment variable to
616 "recovery" inorder to boot recovery image by SPL. The SPL read
617 "reboot_image" and act accordingly and change the reboot_image
Shyam Saini919d25c2018-06-07 19:47:19 +0530618 to default mode using setenv and save the environment.
B, Ravid2d9bdf2016-09-28 14:46:18 +0530619
Simon Glassf2d7a362021-07-10 21:14:26 -0600620config SPL_ETH
Simon Glass11bde1c2016-09-13 07:05:23 -0600621 bool "Support Ethernet"
622 depends on SPL_ENV_SUPPORT
Simon Glass9f664922021-08-08 12:20:31 -0600623 depends on SPL_NET
Simon Glass11bde1c2016-09-13 07:05:23 -0600624 help
625 Enable access to the network subsystem and associated Ethernet
626 drivers in SPL. This permits SPL to load U-Boot over an Ethernet
627 link rather than from an on-board peripheral. Environment support
628 is required since the network stack uses a number of environment
Simon Glass5ed16a92021-08-08 12:20:30 -0600629 variables. See also SPL_NET.
Simon Glass11bde1c2016-09-13 07:05:23 -0600630
Tien Fong Cheef4b40922019-01-23 14:20:05 +0800631config SPL_FS_EXT4
Simon Glass11bde1c2016-09-13 07:05:23 -0600632 bool "Support EXT filesystems"
Simon Glass11bde1c2016-09-13 07:05:23 -0600633 help
634 Enable support for EXT2/3/4 filesystems with SPL. This permits
635 U-Boot (or Linux in Falcon mode) to be loaded from an EXT
636 filesystem from within SPL. Support for the underlying block
637 device (e.g. MMC or USB) must be enabled separately.
638
Joao Marcos Costac5100612020-07-30 15:33:47 +0200639config SPL_FS_SQUASHFS
640 bool "Support SquashFS filesystems"
641 select FS_SQUASHFS
642 help
643 Enable support for SquashFS filesystems with SPL. This permits
644 U-Boot (or Linux in Falcon mode) to be loaded from a SquashFS
645 filesystem from within SPL. Support for the underlying block
646 device (e.g. MMC or USB) must be enabled separately.
647
Tien Fong Chee0c3a9ed2019-01-23 14:20:03 +0800648config SPL_FS_FAT
Simon Glass11bde1c2016-09-13 07:05:23 -0600649 bool "Support FAT filesystems"
Sekhar Norieedfb892017-06-02 17:53:59 +0530650 select FS_FAT
Simon Glass11bde1c2016-09-13 07:05:23 -0600651 help
652 Enable support for FAT and VFAT filesystems with SPL. This
653 permits U-Boot (or Linux in Falcon mode) to be loaded from a FAT
654 filesystem from within SPL. Support for the underlying block
655 device (e.g. MMC or USB) must be enabled separately.
656
Tom Rini4a11e342022-05-13 17:12:35 -0400657config SPL_FS_LOAD_PAYLOAD_NAME
658 string "File to load for U-Boot from the filesystem"
659 depends on SPL_FS_EXT4 || SPL_FS_FAT || SPL_FS_SQUASHFS
660 default "tispl.bin" if SYS_K3_SPL_ATF
661 default "u-boot.itb" if SPL_LOAD_FIT
662 default "u-boot.img"
663 help
664 Filename to read to load U-Boot when reading from filesystem.
665
666config SPL_FS_LOAD_KERNEL_NAME
667 string "File to load for the OS kernel from the filesystem"
668 depends on (SPL_FS_EXT4 || SPL_FS_FAT || SPL_FS_SQUASHFS) && SPL_OS_BOOT
669 default "uImage"
670 help
671 Filename to read to load for the OS kernel when reading from the
672 filesystem.
673
674config SPL_FS_LOAD_ARGS_NAME
675 string "File to load for the OS kernel argument parameters from the filesystem"
676 depends on (SPL_FS_EXT4 || SPL_FS_FAT || SPL_FS_SQUASHFS) && SPL_OS_BOOT
677 default "args"
678 help
679 Filename to read to load for the OS kernel argument parameters from
680 the filesystem.
681
Tien Fong Cheed8c3ea92019-01-23 14:20:04 +0800682config SPL_FAT_WRITE
683 bool "Support write for FAT filesystems"
684 help
685 Enable write support for FAT and VFAT filesystems with SPL.
686 Support for the underlying block device (e.g. MMC or USB) must be
687 enabled separately.
688
Michal Simek29bd8ad2020-09-09 14:41:56 +0200689config SPL_FPGA
Simon Glass11bde1c2016-09-13 07:05:23 -0600690 bool "Support FPGAs"
Simon Glass11bde1c2016-09-13 07:05:23 -0600691 help
692 Enable support for FPGAs in SPL. Field-programmable Gate Arrays
693 provide software-configurable hardware which is typically used to
694 implement peripherals (such as UARTs, LCD displays, MMC) or
695 accelerate custom processing functions, such as image processing
696 or machine learning. Sometimes it is useful to program the FPGA
697 as early as possible during boot, and this option can enable that
698 within SPL.
699
Simon Glass83061db2021-07-10 21:14:30 -0600700config SPL_GPIO
Simon Glass2d424eb2018-11-15 18:43:55 -0700701 bool "Support GPIO in SPL"
Simon Glass11bde1c2016-09-13 07:05:23 -0600702 help
703 Enable support for GPIOs (General-purpose Input/Output) in SPL.
704 GPIOs allow U-Boot to read the state of an input line (high or
705 low) and set the state of an output line. This can be used to
706 drive LEDs, control power to various system parts and read user
707 input. GPIOs can be useful in SPL to enable a 'sign-of-life' LED,
708 for example. Enable this option to build the drivers in
709 drivers/gpio as part of an SPL build.
710
Simon Glass975e7cf2021-07-10 21:14:36 -0600711config SPL_I2C
Simon Glass11bde1c2016-09-13 07:05:23 -0600712 bool "Support I2C"
Simon Glass11bde1c2016-09-13 07:05:23 -0600713 help
714 Enable support for the I2C (Inter-Integrated Circuit) bus in SPL.
715 I2C works with a clock and data line which can be driven by a
716 one or more masters or slaves. It is a fairly complex bus but is
717 widely used as it only needs two lines for communication. Speeds of
718 400kbps are typical but up to 3.4Mbps is supported by some
719 hardware. I2C can be useful in SPL to configure power management
720 ICs (PMICs) before raising the CPU clock speed, for example.
721 Enable this option to build the drivers in drivers/i2c as part of
722 an SPL build.
723
724config SPL_LIBCOMMON_SUPPORT
725 bool "Support common libraries"
Simon Glass11bde1c2016-09-13 07:05:23 -0600726 help
727 Enable support for common U-Boot libraries within SPL. These
728 libraries include common code to deal with U-Boot images,
729 environment and USB, for example. This option is enabled on many
730 boards. Enable this option to build the code in common/ as part of
731 an SPL build.
732
733config SPL_LIBDISK_SUPPORT
Simon Goldschmidt00416702018-08-16 09:44:55 +0200734 bool "Support disk partitions"
Tom Rini91ff6862018-12-05 08:23:38 -0500735 select PARTITIONS
Simon Glass11bde1c2016-09-13 07:05:23 -0600736 help
737 Enable support for disk partitions within SPL. 'Disk' is something
738 of a misnomer as it includes non-spinning media such as flash (as
739 used in MMC and USB sticks). Partitions provide a way for a disk
740 to be split up into separate regions, with a partition table placed
741 at the start or end which describes the location and size of each
742 'partition'. These partitions are typically uses as individual block
743 devices, typically with an EXT2 or FAT filesystem in each. This
744 option enables whatever partition support has been enabled in
745 U-Boot to also be used in SPL. It brings in the code in disk/.
746
747config SPL_LIBGENERIC_SUPPORT
748 bool "Support generic libraries"
Simon Glass11bde1c2016-09-13 07:05:23 -0600749 help
750 Enable support for generic U-Boot libraries within SPL. These
751 libraries include generic code to deal with device tree, hashing,
752 printf(), compression and the like. This option is enabled on many
753 boards. Enable this option to build the code in lib/ as part of an
754 SPL build.
755
Lokesh Vutla88027412018-08-27 15:57:49 +0530756config SPL_DM_MAILBOX
757 bool "Support Mailbox"
758 help
759 Enable support for Mailbox within SPL. This enable the inter
760 processor communication protocols tobe used within SPL. Enable
761 this option to build the drivers in drivers/mailbox as part of
762 SPL build.
763
Simon Glass103c5f12021-08-08 12:20:09 -0600764config SPL_MMC
Simon Glass11bde1c2016-09-13 07:05:23 -0600765 bool "Support MMC"
Tom Rini226498b2017-05-22 19:21:57 +0000766 depends on MMC
Tom Rini91ff6862018-12-05 08:23:38 -0500767 select HAVE_BLOCK_DEVICE
Simon Glass11bde1c2016-09-13 07:05:23 -0600768 help
769 Enable support for MMC (Multimedia Card) within SPL. This enables
770 the MMC protocol implementation and allows any enabled drivers to
771 be used within SPL. MMC can be used with or without disk partition
772 support depending on the application (SPL_LIBDISK_SUPPORT). Enable
773 this option to build the drivers in drivers/mmc as part of an SPL
774 build.
775
Adam Fordacc415a2020-07-03 10:17:30 -0500776config SYS_MMCSD_FS_BOOT_PARTITION
777 int "MMC Boot Partition"
778 default 1
779 help
780 Partition on the MMC to load U-Boot from when the MMC is being
Jérôme Carretero5fa973e2022-03-15 16:34:51 -0400781 used in fs mode.
782 Use -1 as a special value to use the first bootable partition.
Adam Fordacc415a2020-07-03 10:17:30 -0500783
Ezequiel Garciabf7c01d2019-05-25 19:25:21 -0300784config SPL_MMC_TINY
785 bool "Tiny MMC framework in SPL"
Simon Glass103c5f12021-08-08 12:20:09 -0600786 depends on SPL_MMC
Ezequiel Garciabf7c01d2019-05-25 19:25:21 -0300787 help
788 Enable MMC framework tinification support. This option is useful if
789 if your SPL is extremely size constrained. Heed the warning, enable
790 this option if and only if you know exactly what you are doing, if
791 you are reading this help text, you most likely have no idea :-)
792
793 The MMC framework is reduced to bare minimum to be useful. No malloc
794 support is needed for the MMC framework operation with this option
795 enabled. The framework supports exactly one MMC device and exactly
796 one MMC driver. The MMC driver can be adjusted to avoid any malloc
797 operations too, which can remove the need for malloc support in SPL
798 and thus further reduce footprint.
799
Jean-Jacques Hiblotd6400c32018-01-04 15:23:32 +0100800config SPL_MMC_WRITE
801 bool "MMC/SD/SDIO card support for write operations in SPL"
Simon Glass103c5f12021-08-08 12:20:09 -0600802 depends on SPL_MMC
Jean-Jacques Hiblotd6400c32018-01-04 15:23:32 +0100803 help
804 Enable write access to MMC and SD Cards in SPL
805
806
Simon Glass6f004ad2021-08-08 12:20:16 -0600807config SPL_MPC8XXX_INIT_DDR
Simon Glass11bde1c2016-09-13 07:05:23 -0600808 bool "Support MPC8XXX DDR init"
Simon Glass11bde1c2016-09-13 07:05:23 -0600809 help
810 Enable support for DDR-SDRAM (double-data-rate synchronous dynamic
811 random-access memory) on the MPC8XXX family within SPL. This
812 allows DRAM to be set up before loading U-Boot into that DRAM,
813 where it can run.
814
815config SPL_MTD_SUPPORT
816 bool "Support MTD drivers"
Simon Glass11bde1c2016-09-13 07:05:23 -0600817 help
818 Enable support for MTD (Memory Technology Device) within SPL. MTD
819 provides a block interface over raw NAND and can also be used with
820 SPI flash. This allows SPL to load U-Boot from supported MTD
821 devices. See SPL_NAND_SUPPORT and SPL_ONENAND_SUPPORT for how
822 to enable specific MTD drivers.
823
Simon Glass89ddb0b2021-07-10 21:14:27 -0600824config SPL_MUSB_NEW
Simon Glass11bde1c2016-09-13 07:05:23 -0600825 bool "Support new Mentor Graphics USB"
Simon Glass11bde1c2016-09-13 07:05:23 -0600826 help
827 Enable support for Mentor Graphics USB in SPL. This is a new
828 driver used by some boards. Enable this option to build
829 the drivers in drivers/usb/musb-new as part of an SPL build. The
830 old drivers are in drivers/usb/musb.
831
832config SPL_NAND_SUPPORT
833 bool "Support NAND flash"
Simon Glass11bde1c2016-09-13 07:05:23 -0600834 help
835 Enable support for NAND (Negative AND) flash in SPL. NAND flash
836 can be used to allow SPL to load U-Boot from supported devices.
Miquel Raynala430fa02018-08-16 17:30:07 +0200837 This enables the drivers in drivers/mtd/nand/raw as part of an SPL
Simon Glass11bde1c2016-09-13 07:05:23 -0600838 build.
839
Tom Rinibab1b352022-05-13 12:46:23 -0400840config SPL_NAND_RAW_ONLY
841 bool "Support to boot only raw u-boot.bin images"
842 depends on SPL_NAND_SUPPORT
843 help
844 Use this only if you need to save space.
845
Adam Ford0c4a6342020-07-03 08:09:44 -0500846config SPL_NAND_DRIVERS
847 bool "Use standard NAND driver"
848 help
849 SPL uses normal NAND drivers, not minimal drivers.
850
851config SPL_NAND_ECC
Tom Rinibab1b352022-05-13 12:46:23 -0400852 bool "Include standard ECC in SPL"
853
854config SPL_NAND_SOFTECC
855 bool "Use software ECC in SPL"
856 depends on SPL_NAND_ECC
Adam Ford0c4a6342020-07-03 08:09:44 -0500857
858config SPL_NAND_SIMPLE
859 bool "Support simple NAND drivers in SPL"
860 help
861 Support for NAND boot using simple NAND drivers that
862 expose the cmd_ctrl() interface.
863
Adam Ford38791062020-07-03 08:09:45 -0500864config SPL_NAND_BASE
865 depends on SPL_NAND_DRIVERS
866 bool "Use Base NAND Driver"
Michal Simekce869b52021-05-20 13:08:44 +0200867 help
868 Include nand_base.c in the SPL.
Adam Ford38791062020-07-03 08:09:45 -0500869
870config SPL_NAND_IDENT
871 depends on SPL_NAND_BASE
872 bool "Use chip ID to identify NAND flash"
873 help
874 SPL uses the chip ID list to identify the NAND flash.
875
Markus Klotzbuecherc67c3492019-05-15 15:15:57 +0200876config SPL_UBI
877 bool "Support UBI"
878 help
879 Enable support for loading payloads from UBI. See
880 README.ubispl for more info.
881
Lukasz Majewskif18845c2019-09-09 12:06:46 +0200882if SPL_DM
883config SPL_DM_SPI
884 bool "Support SPI DM drivers in SPL"
885 help
886 Enable support for SPI DM drivers in SPL.
887
Lukasz Majewski56c40462020-06-04 23:11:53 +0800888config SPL_DM_SPI_FLASH
889 bool "Support SPI DM FLASH drivers in SPL"
890 help
891 Enable support for SPI DM flash drivers in SPL.
892
Lukasz Majewskif18845c2019-09-09 12:06:46 +0200893endif
Markus Klotzbuecherc67c3492019-05-15 15:15:57 +0200894if SPL_UBI
Hamish Guthrie6ea31cc2019-05-15 15:15:59 +0200895config SPL_UBI_LOAD_BY_VOLNAME
896 bool "Support loading volumes by name"
897 help
898 This enables support for loading UBI volumes by name. When this
899 is set, CONFIG_SPL_UBI_LOAD_MONITOR_VOLNAME can be used to
900 configure the volume name from which to load U-Boot.
901
Markus Klotzbuecherc67c3492019-05-15 15:15:57 +0200902config SPL_UBI_MAX_VOL_LEBS
903 int "Maximum number of LEBs per volume"
904 depends on SPL_UBI
905 help
906 The maximum number of logical eraseblocks which a static volume
907 to load can contain. Used for sizing the scan data structure.
908
909config SPL_UBI_MAX_PEB_SIZE
910 int "Maximum PEB size"
911 depends on SPL_UBI
912 help
913 The maximum physical erase block size.
914
915config SPL_UBI_MAX_PEBS
916 int "Maximum number of PEBs"
917 depends on SPL_UBI
918 help
919 The maximum physical erase block size. If not overridden by
920 board code, this value will be used as the actual number of PEBs.
921
922config SPL_UBI_PEB_OFFSET
923 int "Offset to first UBI PEB"
924 depends on SPL_UBI
925 help
926 The offset in number of PEBs from the start of flash to the first
927 PEB part of the UBI image.
928
929config SPL_UBI_VID_OFFSET
930 int "Offset to VID header"
931 depends on SPL_UBI
932
933config SPL_UBI_LEB_START
934 int "Offset to LEB in PEB"
935 depends on SPL_UBI
936 help
937 The offset in bytes to the LEB within a PEB.
938
939config SPL_UBI_INFO_ADDR
940 hex "Address to place UBI scan info"
941 depends on SPL_UBI
942 help
943 Address for ubispl to place the scan info. Read README.ubispl to
944 determine the required size
945
946config SPL_UBI_VOL_IDS
947 int "Maximum volume id"
948 depends on SPL_UBI
949 help
950 The maximum volume id which can be loaded. Used for sizing the
951 scan data structure.
952
953config SPL_UBI_LOAD_MONITOR_ID
954 int "id of U-Boot volume"
955 depends on SPL_UBI
956 help
957 The UBI volume id from which to load U-Boot
958
Hamish Guthrie6ea31cc2019-05-15 15:15:59 +0200959config SPL_UBI_LOAD_MONITOR_VOLNAME
960 string "volume name of U-Boot volume"
961 depends on SPL_UBI_LOAD_BY_VOLNAME
962 help
963 The UBI volume name from which to load U-Boot
964
Markus Klotzbuecherc67c3492019-05-15 15:15:57 +0200965config SPL_UBI_LOAD_KERNEL_ID
966 int "id of kernel volume"
967 depends on SPL_OS_BOOT && SPL_UBI
968 help
969 The UBI volume id from which to load the kernel
970
971config SPL_UBI_LOAD_ARGS_ID
972 int "id of kernel args volume"
973 depends on SPL_OS_BOOT && SPL_UBI
974 help
975 The UBI volume id from which to load the device tree
976
Markus Klotzbuechera2257d32019-05-15 15:16:00 +0200977config UBI_SPL_SILENCE_MSG
978 bool "silence UBI SPL messages"
Markus Klotzbuechera2257d32019-05-15 15:16:00 +0200979 help
980 Disable messages from UBI SPL. This leaves warnings
981 and errors enabled.
Markus Klotzbuecherc67c3492019-05-15 15:15:57 +0200982
983endif # if SPL_UBI
984
Simon Glass5ed16a92021-08-08 12:20:30 -0600985config SPL_NET
Simon Glass11bde1c2016-09-13 07:05:23 -0600986 bool "Support networking"
Simon Glass11bde1c2016-09-13 07:05:23 -0600987 help
988 Enable support for network devices (such as Ethernet) in SPL.
989 This permits SPL to load U-Boot over a network link rather than
990 from an on-board peripheral. Environment support is required since
991 the network stack uses a number of environment variables. See also
Simon Glassf2d7a362021-07-10 21:14:26 -0600992 SPL_ETH.
Simon Glass11bde1c2016-09-13 07:05:23 -0600993
Simon Glass5ed16a92021-08-08 12:20:30 -0600994if SPL_NET
Simon Glass11bde1c2016-09-13 07:05:23 -0600995config SPL_NET_VCI_STRING
996 string "BOOTP Vendor Class Identifier string sent by SPL"
997 help
998 As defined by RFC 2132 the vendor class identifier field can be
999 sent by the client to identify the vendor type and configuration
1000 of a client. This is often used in practice to allow for the DHCP
1001 server to specify different files to load depending on if the ROM,
1002 SPL or U-Boot itself makes the request
Simon Glass5ed16a92021-08-08 12:20:30 -06001003endif # if SPL_NET
Simon Glass11bde1c2016-09-13 07:05:23 -06001004
1005config SPL_NO_CPU_SUPPORT
1006 bool "Drop CPU code in SPL"
Simon Glass11bde1c2016-09-13 07:05:23 -06001007 help
1008 This is specific to the ARM926EJ-S CPU. It disables the standard
1009 start.S start-up code, presumably so that a replacement can be
1010 used on that CPU. You should not enable it unless you know what
1011 you are doing.
1012
1013config SPL_NOR_SUPPORT
1014 bool "Support NOR flash"
Simon Glass11bde1c2016-09-13 07:05:23 -06001015 help
1016 Enable support for loading U-Boot from memory-mapped NOR (Negative
1017 OR) flash in SPL. NOR flash is slow to write but fast to read, and
1018 a memory-mapped device makes it very easy to access. Loading from
1019 NOR is typically achieved with just a memcpy().
1020
Vikas Manochac6d9e9d2017-05-28 12:55:11 -07001021config SPL_XIP_SUPPORT
1022 bool "Support XIP"
1023 depends on SPL
1024 help
1025 Enable support for execute in place of U-Boot or kernel image. There
1026 is no need to copy image from flash to ram if flash supports execute
1027 in place. Its very useful in systems having enough flash but not
1028 enough ram to load the image.
1029
Simon Glass11bde1c2016-09-13 07:05:23 -06001030config SPL_ONENAND_SUPPORT
1031 bool "Support OneNAND flash"
Simon Glass11bde1c2016-09-13 07:05:23 -06001032 help
1033 Enable support for OneNAND (Negative AND) flash in SPL. OneNAND is
1034 a type of NAND flash and therefore can be used to allow SPL to
1035 load U-Boot from supported devices. This enables the drivers in
1036 drivers/mtd/onenand as part of an SPL build.
1037
Heiko Schocherc20ae2f2016-10-06 07:55:15 +02001038config SPL_OS_BOOT
1039 bool "Activate Falcon Mode"
Tom Rini226498b2017-05-22 19:21:57 +00001040 depends on !TI_SECURE_DEVICE
Heiko Schocherc20ae2f2016-10-06 07:55:15 +02001041 help
1042 Enable booting directly to an OS from SPL.
1043 for more info read doc/README.falcon
1044
Tom Rinib4b9a002022-05-27 22:06:52 -04001045config SYS_SPL_ARGS_ADDR
1046 hex "Address in memory to load 'args' file for Falcon Mode to"
1047 depends on SPL_OS_BOOT
1048 default 0x88000000 if ARCH_OMAP2PLUS
1049 help
1050 Address in memory where the 'args' file, typically a device tree
1051 will be loaded in to memory.
1052
Tom Rini5fc1d582022-05-28 16:43:53 -04001053config SYS_NAND_SPL_KERNEL_OFFS
1054 hex "Address in memory to load the OS file for Falcon mode to"
1055 depends on SPL_OS_BOOT && SPL_NAND_SUPPORT
1056
Heiko Schocher29d3bc72016-10-06 07:55:16 +02001057if SPL_OS_BOOT
1058config SYS_OS_BASE
1059 hex "addr, where OS is found"
Tom Rini226498b2017-05-22 19:21:57 +00001060 depends on SPL_NOR_SUPPORT
Heiko Schocher29d3bc72016-10-06 07:55:16 +02001061 help
1062 Specify the address, where the OS image is found, which
1063 gets booted.
1064
1065endif # SPL_OS_BOOT
1066
Alexandru Gagniuc22eb1522021-12-30 10:39:59 -06001067config SPL_FALCON_BOOT_MMCSD
1068 bool "Enable Falcon boot from MMC or SD media"
1069 depends on SPL_OS_BOOT && SPL_MMC
1070 help
1071 Select this if the Falcon mode OS image mode is on MMC or SD media.
1072
1073config SYS_MMCSD_RAW_MODE_KERNEL_SECTOR
1074 hex "Falcon mode: Sector to load kernel uImage from MMC"
1075 depends on SPL_FALCON_BOOT_MMCSD
1076 help
1077 When Falcon mode is used with an MMC or SD media, SPL needs to know
1078 where to look for the kernel uImage. The image is expected to begin
1079 at the raw MMC specified in this config.
1080 Note that the Falcon mode image can also be a FIT, if FIT support is
1081 enabled.
1082
Tom Rini103d1ae2022-05-28 17:21:03 -04001083config SYS_MMCSD_RAW_MODE_ARGS_SECTOR
1084 hex "Falcon mode: Sector to load 'args' from MMC"
1085 depends on SPL_FALCON_BOOT_MMCSD
1086 help
1087 When Falcon mode is used with an MMC or SD media, SPL needs to know
1088 where to look for the OS 'args', typically a device tree. The
1089 contents are expected to begin at the raw MMC specified in this config.
1090 Note that if using a FIT image, this and the next option can be set to
1091 0x0.
1092
1093config SYS_MMCSD_RAW_MODE_ARGS_SECTORS
1094 hex "Falcon mode: Number of sectors to load for 'args' from MMC"
1095 depends on SPL_FALCON_BOOT_MMCSD && SYS_MMCSD_RAW_MODE_ARGS_SECTOR != 0x0
1096
York Sun7550dbe2018-06-14 14:38:48 -07001097config SPL_PAYLOAD
1098 string "SPL payload"
1099 default "tpl/u-boot-with-tpl.bin" if TPL
1100 default "u-boot.bin"
1101 help
Chris Packham2dcfa052019-01-13 22:13:20 +13001102 Payload for SPL boot. For backward compatibility, default to
York Sun7550dbe2018-06-14 14:38:48 -07001103 u-boot.bin, i.e. RAW image without any header. In case of
1104 TPL, tpl/u-boot-with-tpl.bin. For new boards, suggest to
1105 use u-boot.img.
1106
Sekhar Norid50d6812018-12-06 15:40:08 +05301107config SPL_PCI
Simon Glass2446b6b2017-01-16 07:03:30 -07001108 bool "Support PCI drivers"
Simon Glass2446b6b2017-01-16 07:03:30 -07001109 help
1110 Enable support for PCI in SPL. For platforms that need PCI to boot,
1111 or must perform some init using PCI in SPL, this provides the
1112 necessary driver support. This enables the drivers in drivers/pci
1113 as part of an SPL build.
1114
Simon Glass15042e72021-08-08 12:20:10 -06001115config SPL_PCH
Simon Glassbbe41ab2017-01-16 07:03:33 -07001116 bool "Support PCH drivers"
Simon Glassbbe41ab2017-01-16 07:03:33 -07001117 help
1118 Enable support for PCH (Platform Controller Hub) devices in SPL.
1119 These are used to set up GPIOs and the SPI peripheral early in
1120 boot. This enables the drivers in drivers/pch as part of an SPL
1121 build.
1122
Simon Glass11bde1c2016-09-13 07:05:23 -06001123config SPL_POST_MEM_SUPPORT
1124 bool "Support POST drivers"
Simon Glass11bde1c2016-09-13 07:05:23 -06001125 help
1126 Enable support for POST (Power-on Self Test) in SPL. POST is a
1127 procedure that checks that the hardware (CPU or board) appears to
1128 be functionally correctly. It is a sanity check that can be
1129 performed before booting. This enables the drivers in post/drivers
1130 as part of an SPL build.
1131
Ley Foon Tanbfc6bae2018-06-14 18:45:19 +08001132config SPL_DM_RESET
Patrick Delaunay0e373c02018-03-12 10:46:05 +01001133 bool "Support reset drivers"
1134 depends on SPL
1135 help
1136 Enable support for reset control in SPL.
1137 That can be useful in SPL to handle IP reset in driver, as in U-Boot,
1138 by using the generic reset API provided by driver model.
1139 This enables the drivers in drivers/reset as part of an SPL build.
1140
Simon Glass933b2f02021-07-10 21:14:24 -06001141config SPL_POWER
Simon Glass11bde1c2016-09-13 07:05:23 -06001142 bool "Support power drivers"
Simon Glass11bde1c2016-09-13 07:05:23 -06001143 help
1144 Enable support for power control in SPL. This includes support
1145 for PMICs (Power-management Integrated Circuits) and some of the
1146 features provided by PMICs. In particular, voltage regulators can
1147 be used to enable/disable power and vary its voltage. That can be
1148 useful in SPL to turn on boot peripherals and adjust CPU voltage
1149 so that the clock speed can be increased. This enables the drivers
1150 in drivers/power, drivers/power/pmic and drivers/power/regulator
1151 as part of an SPL build.
1152
Peng Fane13278c2018-07-27 10:20:37 +08001153config SPL_POWER_DOMAIN
1154 bool "Support power domain drivers"
Simon Glassa4faf1f2021-08-08 12:20:29 -06001155 select SPL_POWER
Peng Fane13278c2018-07-27 10:20:37 +08001156 help
1157 Enable support for power domain control in SPL. Many SoCs allow
1158 power to be applied to or removed from portions of the SoC (power
1159 domains). This may be used to save power. This API provides the
1160 means to control such power management hardware. This enables
1161 the drivers in drivers/power/domain as part of a SPL build.
1162
Stefan Agner22802f42016-12-23 07:51:53 +01001163config SPL_RAM_SUPPORT
1164 bool "Support booting from RAM"
Trevor Woerner18138ab2020-05-06 08:02:41 -04001165 default y if MICROBLAZE || ARCH_SOCFPGA || ARCH_TEGRA || ARCH_ZYNQ
Stefan Agner22802f42016-12-23 07:51:53 +01001166 help
1167 Enable booting of an image in RAM. The image can be preloaded or
1168 it can be loaded by SPL directly into RAM (e.g. using USB).
1169
Stefan Agnerf417d402016-12-23 07:51:52 +01001170config SPL_RAM_DEVICE
1171 bool "Support booting from preloaded image in RAM"
Stefan Agner22802f42016-12-23 07:51:53 +01001172 depends on SPL_RAM_SUPPORT
Trevor Woerner18138ab2020-05-06 08:02:41 -04001173 default y if MICROBLAZE || ARCH_SOCFPGA || ARCH_TEGRA || ARCH_ZYNQ
Stefan Agnerf417d402016-12-23 07:51:52 +01001174 help
1175 Enable booting of an image already loaded in RAM. The image has to
1176 be already in memory when SPL takes over, e.g. loaded by the boot
1177 ROM.
1178
Lokesh Vutla08c45312018-08-27 15:57:53 +05301179config SPL_REMOTEPROC
1180 bool "Support REMOTEPROCS"
1181 help
1182 Enable support for REMOTEPROCs in SPL. This permits to load
1183 a remote processor firmware in SPL.
1184
Simon Glass73c6ff62021-08-08 12:20:11 -06001185config SPL_RTC
Simon Glass30bf8a02017-01-16 07:03:31 -07001186 bool "Support RTC drivers"
Simon Glass30bf8a02017-01-16 07:03:31 -07001187 help
1188 Enable RTC (Real-time Clock) support in SPL. This includes support
1189 for reading and setting the time. Some RTC devices also have some
1190 non-volatile (battery-backed) memory which is accessible if
1191 needed. This enables the drivers in drivers/rtc as part of an SPL
1192 build.
1193
Simon Glassf7560372021-08-08 12:20:17 -06001194config SPL_SATA
Simon Glass11bde1c2016-09-13 07:05:23 -06001195 bool "Support loading from SATA"
Simon Glass11bde1c2016-09-13 07:05:23 -06001196 help
1197 Enable support for SATA (Serial AT attachment) in SPL. This allows
1198 use of SATA devices such as hard drives and flash drivers for
1199 loading U-Boot. SATA is used in higher-end embedded systems and
1200 can provide higher performance than MMC , at somewhat higher
1201 expense and power consumption. This enables loading from SATA
1202 using a configured device.
1203
Baruch Siach60ca9692019-07-14 17:54:21 +03001204config SPL_SATA_RAW_U_BOOT_USE_SECTOR
1205 bool "SATA raw mode: by sector"
Simon Glassf7560372021-08-08 12:20:17 -06001206 depends on SPL_SATA
Pali Rohár2226ca12021-07-23 11:14:29 +02001207 default y if ARCH_MVEBU
Baruch Siach60ca9692019-07-14 17:54:21 +03001208 help
1209 Use sector number for specifying U-Boot location on SATA disk in
1210 raw mode.
1211
1212config SPL_SATA_RAW_U_BOOT_SECTOR
1213 hex "Sector on the SATA disk to load U-Boot from"
1214 depends on SPL_SATA_RAW_U_BOOT_USE_SECTOR
Pali Rohár2226ca12021-07-23 11:14:29 +02001215 default 0x1 if ARCH_MVEBU
Baruch Siach60ca9692019-07-14 17:54:21 +03001216 help
1217 Sector on the SATA disk to load U-Boot from, when the SATA disk is being
1218 used in raw mode. Units: SATA disk sectors (1 sector = 512 bytes).
1219
Simon Glass2a736062021-08-08 12:20:12 -06001220config SPL_SERIAL
Simon Glass11bde1c2016-09-13 07:05:23 -06001221 bool "Support serial"
Alex Kiernan14ad44a2018-04-19 04:32:54 +00001222 select SPL_PRINTF
1223 select SPL_STRTO
Simon Glass11bde1c2016-09-13 07:05:23 -06001224 help
1225 Enable support for serial in SPL. This allows use of a serial UART
1226 for displaying messages while SPL is running. It also brings in
1227 printf() and panic() functions. This should normally be enabled
1228 unless there are space reasons not to. Even then, consider
Simon Glass27084c02019-09-25 08:56:27 -06001229 enabling SPL_USE_TINY_PRINTF which is a small printf() version.
Simon Glass11bde1c2016-09-13 07:05:23 -06001230
Simon Glassea2ca7e2021-08-08 12:20:14 -06001231config SPL_SPI
Simon Goldschmidtd024e992019-10-25 16:22:09 +02001232 bool "Support SPI drivers"
1233 help
1234 Enable support for using SPI in SPL. This is used for connecting
1235 to SPI flash for loading U-Boot. See SPL_SPI_FLASH_SUPPORT for
1236 more details on that. The SPI driver provides the transport for
1237 data between the SPI flash and the CPU. This option can be used to
1238 enable SPI drivers that are needed for other purposes also, such
1239 as a SPI PMIC.
1240
Simon Glass11bde1c2016-09-13 07:05:23 -06001241config SPL_SPI_FLASH_SUPPORT
1242 bool "Support SPI flash drivers"
Simon Glassea2ca7e2021-08-08 12:20:14 -06001243 depends on SPL_SPI
Simon Glass11bde1c2016-09-13 07:05:23 -06001244 help
1245 Enable support for using SPI flash in SPL, and loading U-Boot from
1246 SPI flash. SPI flash (Serial Peripheral Bus flash) is named after
1247 the SPI bus that is used to connect it to a system. It is a simple
1248 but fast bidirectional 4-wire bus (clock, chip select and two data
1249 lines). This enables the drivers in drivers/mtd/spi as part of an
Simon Glassea2ca7e2021-08-08 12:20:14 -06001250 SPL build. This normally requires SPL_SPI.
Simon Glass11bde1c2016-09-13 07:05:23 -06001251
Vignesh R0c6f1872019-02-05 11:29:20 +05301252if SPL_SPI_FLASH_SUPPORT
1253
Vignesh R778572d2019-02-05 11:29:25 +05301254config SPL_SPI_FLASH_TINY
1255 bool "Enable low footprint SPL SPI Flash support"
1256 depends on !SPI_FLASH_BAR
Vignesh R72875972019-02-05 11:29:26 +05301257 default y if SPI_FLASH
Vignesh R778572d2019-02-05 11:29:25 +05301258 help
1259 Enable lightweight SPL SPI Flash support that supports just reading
1260 data/images from flash. No support to write/erase flash. Enable
1261 this if you have SPL size limitations and don't need full
1262 fledged SPI flash support.
1263
Vignesh R0c6f1872019-02-05 11:29:20 +05301264config SPL_SPI_FLASH_SFDP_SUPPORT
1265 bool "SFDP table parsing support for SPI NOR flashes"
Vignesh R778572d2019-02-05 11:29:25 +05301266 depends on !SPI_FLASH_BAR && !SPL_SPI_FLASH_TINY
Vignesh R0c6f1872019-02-05 11:29:20 +05301267 help
1268 Enable support for parsing and auto discovery of parameters for
1269 SPI NOR flashes using Serial Flash Discoverable Parameters (SFDP)
1270 tables as per JESD216 standard in SPL.
1271
Lukasz Majewski56c40462020-06-04 23:11:53 +08001272config SPL_SPI_FLASH_MTD
1273 bool "Support for SPI flash MTD drivers in SPL"
1274 help
1275 Enable support for SPI flash MTD drivers in SPL.
1276
Marek Vasut55500432018-04-07 16:05:27 +02001277config SPL_SPI_LOAD
1278 bool "Support loading from SPI flash"
Marek Vasut55500432018-04-07 16:05:27 +02001279 help
1280 Enable support for loading next stage, U-Boot or otherwise, from
1281 SPI NOR in U-Boot SPL.
1282
Vignesh R0c6f1872019-02-05 11:29:20 +05301283endif # SPL_SPI_FLASH_SUPPORT
1284
Hannes Schmelzer1ee774d2019-08-22 15:41:46 +02001285config SYS_SPI_U_BOOT_OFFS
1286 hex "address of u-boot payload in SPI flash"
Andre Przywara671d64f2020-01-06 01:29:10 +00001287 default 0x8000 if ARCH_SUNXI
Hannes Schmelzer1ee774d2019-08-22 15:41:46 +02001288 default 0x0
1289 depends on SPL_SPI_LOAD || SPL_SPI_SUNXI
1290 help
1291 Address within SPI-Flash from where the u-boot payload is fetched
1292 from.
1293
Faiz Abbas8502f9f2017-11-14 16:12:31 +05301294config SPL_THERMAL
1295 bool "Driver support for thermal devices"
1296 help
1297 Enable support for temperature-sensing devices. Some SoCs have on-chip
1298 temperature sensors to permit warnings, speed throttling or even
1299 automatic power-off when the temperature gets too high or low. Other
1300 devices may be discrete but connected on a suitable bus.
1301
Simon Glass333e4a62021-07-10 21:14:29 -06001302config SPL_USB_HOST
Simon Glass11bde1c2016-09-13 07:05:23 -06001303 bool "Support USB host drivers"
Tom Rini91ff6862018-12-05 08:23:38 -05001304 select HAVE_BLOCK_DEVICE
Simon Glass11bde1c2016-09-13 07:05:23 -06001305 help
1306 Enable access to USB (Universal Serial Bus) host devices so that
1307 SPL can load U-Boot from a connected USB peripheral, such as a USB
1308 flash stick. While USB takes a little longer to start up than most
1309 buses, it is very flexible since many different types of storage
1310 device can be attached. This option enables the drivers in
1311 drivers/usb/host as part of an SPL build.
1312
Abel Vesa79536012019-02-01 16:40:07 +00001313config SPL_USB_STORAGE
Simon Glass11bde1c2016-09-13 07:05:23 -06001314 bool "Support loading from USB"
Simon Glass333e4a62021-07-10 21:14:29 -06001315 depends on SPL_USB_HOST && !(BLK && !DM_USB)
Simon Glass11bde1c2016-09-13 07:05:23 -06001316 help
1317 Enable support for USB devices in SPL. This allows use of USB
1318 devices such as hard drives and flash drivers for loading U-Boot.
1319 The actual drivers are enabled separately using the normal U-Boot
1320 config options. This enables loading from USB using a configured
1321 device.
1322
Jean-Jacques Hiblotf811e972019-01-10 15:44:13 +01001323config SPL_USB_GADGET
Stefan Agnere94793c2016-11-21 10:58:53 -08001324 bool "Suppport USB Gadget drivers"
Stefan Agnere94793c2016-11-21 10:58:53 -08001325 help
1326 Enable USB Gadget API which allows to enable USB device functions
1327 in SPL.
1328
Jean-Jacques Hiblotf811e972019-01-10 15:44:13 +01001329if SPL_USB_GADGET
Stefan Agnere94793c2016-11-21 10:58:53 -08001330
Faiz Abbasb432b1e2018-02-16 21:17:44 +05301331config SPL_USB_ETHER
Stefan Agnere94793c2016-11-21 10:58:53 -08001332 bool "Support USB Ethernet drivers"
Simon Glass9f664922021-08-08 12:20:31 -06001333 depends on SPL_NET
Stefan Agnere94793c2016-11-21 10:58:53 -08001334 help
1335 Enable access to the USB network subsystem and associated
1336 drivers in SPL. This permits SPL to load U-Boot over a
1337 USB-connected Ethernet link (such as a USB Ethernet dongle) rather
1338 than from an onboard peripheral. Environment support is required
1339 since the network stack uses a number of environment variables.
Simon Glass5ed16a92021-08-08 12:20:30 -06001340 See also SPL_NET and SPL_ETH.
Stefan Agnere94793c2016-11-21 10:58:53 -08001341
Andrew F. Davis6536ca42019-01-17 13:43:02 -06001342config SPL_DFU
Fabio Estevamc3c19c22018-08-31 10:02:28 -03001343 bool "Support DFU (Device Firmware Upgrade)"
Alexandru Gagniuc07212092021-09-02 19:54:19 -05001344 select SPL_HASH
B, Ravi66928af2017-05-04 15:45:29 +05301345 select SPL_DFU_NO_RESET
B, Ravi1b19cbd2017-05-04 15:45:28 +05301346 depends on SPL_RAM_SUPPORT
Stefan Agner59917032016-11-21 10:58:52 -08001347 help
Fabio Estevamc3c19c22018-08-31 10:02:28 -03001348 This feature enables the DFU (Device Firmware Upgrade) in SPL with
Stefan Agner59917032016-11-21 10:58:52 -08001349 RAM memory device support. The ROM code will load and execute
1350 the SPL built with dfu. The user can load binaries (u-boot/kernel) to
1351 selected device partition from host-pc using dfu-utils.
1352 This feature is useful to flash the binaries to factory or bare-metal
1353 boards using USB interface.
1354
1355choice
1356 bool "DFU device selection"
Andrew F. Davis6536ca42019-01-17 13:43:02 -06001357 depends on SPL_DFU
Stefan Agner59917032016-11-21 10:58:52 -08001358
1359config SPL_DFU_RAM
1360 bool "RAM device"
Andrew F. Davis6536ca42019-01-17 13:43:02 -06001361 depends on SPL_DFU && SPL_RAM_SUPPORT
Stefan Agner59917032016-11-21 10:58:52 -08001362 help
1363 select RAM/DDR memory device for loading binary images
1364 (u-boot/kernel) to the selected device partition using
1365 DFU and execute the u-boot/kernel from RAM.
1366
1367endchoice
1368
Stefan Agnera3774c12017-08-16 11:00:54 -07001369config SPL_USB_SDP_SUPPORT
1370 bool "Support SDP (Serial Download Protocol)"
Simon Glass2a736062021-08-08 12:20:12 -06001371 depends on SPL_SERIAL
Stefan Agnera3774c12017-08-16 11:00:54 -07001372 help
1373 Enable Serial Download Protocol (SDP) device support in SPL. This
1374 allows to download images into memory and execute (jump to) them
1375 using the same protocol as implemented by the i.MX family's boot ROM.
Ye Li407e3842020-04-29 10:35:12 +08001376
1377config SPL_SDP_USB_DEV
1378 int "SDP USB controller index"
1379 default 0
1380 depends on SPL_USB_SDP_SUPPORT
1381 help
1382 Some boards have USB controller other than 0. Define this option
1383 so it can be used in compiled environment.
Stefan Agnere94793c2016-11-21 10:58:53 -08001384endif
1385
Simon Glass078111b2021-07-10 21:14:28 -06001386config SPL_WATCHDOG
Simon Glass11bde1c2016-09-13 07:05:23 -06001387 bool "Support watchdog drivers"
Marek Vasut6874cb72019-06-09 03:46:21 +02001388 imply SPL_WDT if !HW_WATCHDOG
Simon Glass11bde1c2016-09-13 07:05:23 -06001389 help
1390 Enable support for watchdog drivers in SPL. A watchdog is
1391 typically a hardware peripheral which can reset the system when it
1392 detects no activity for a while (such as a software crash). This
1393 enables the drivers in drivers/watchdog as part of an SPL build.
1394
1395config SPL_YMODEM_SUPPORT
1396 bool "Support loading using Ymodem"
Simon Glass2a736062021-08-08 12:20:12 -06001397 depends on SPL_SERIAL
Simon Glass11bde1c2016-09-13 07:05:23 -06001398 help
1399 While loading from serial is slow it can be a useful backup when
1400 there is no other option. The Ymodem protocol provides a reliable
1401 means of transmitting U-Boot over a serial line for using in SPL,
1402 with a checksum to ensure correctness.
1403
Philipp Tomsichaa122f62017-09-13 21:29:36 +02001404config SPL_ATF
Kever Yangbcc17262017-05-05 11:47:45 +08001405 bool "Support ARM Trusted Firmware"
Michal Simek975bacc2020-09-03 11:23:39 +02001406 depends on ARM64 && SPL_FIT
Kever Yangbcc17262017-05-05 11:47:45 +08001407 help
Philipp Tomsichd21fb632018-01-02 21:16:43 +01001408 ATF(ARM Trusted Firmware) is a component for ARM AArch64 which
1409 is loaded by SPL (which is considered as BL2 in ATF terminology).
Kever Yangbcc17262017-05-05 11:47:45 +08001410 More detail at: https://github.com/ARM-software/arm-trusted-firmware
1411
Michael Walle7b866822020-11-18 17:45:58 +01001412config SPL_ATF_LOAD_IMAGE_V2
1413 bool "Use the new LOAD_IMAGE_V2 parameter passing"
1414 depends on SPL_ATF
1415 help
1416 Some platforms use the newer LOAD_IMAGE_V2 parameter passing.
1417
1418 If you want to load a bl31 image from the SPL and need the new
1419 method, say Y.
1420
Philipp Tomsichd21fb632018-01-02 21:16:43 +01001421config SPL_ATF_NO_PLATFORM_PARAM
Michal Simekce869b52021-05-20 13:08:44 +02001422 bool "Pass no platform parameter"
Philipp Tomsichd21fb632018-01-02 21:16:43 +01001423 depends on SPL_ATF
1424 help
1425 While we expect to call a pointer to a valid FDT (or NULL)
1426 as the platform parameter to an ATF, some ATF versions are
1427 not U-Boot aware and have an insufficiently robust parameter
1428 validation to gracefully reject a FDT being passed.
1429
1430 If this option is enabled, the spl_atf os-type handler will
1431 always pass NULL for the platform parameter.
1432
1433 If your ATF is affected, say Y.
1434
Alex Kiernan3bf5f132018-03-15 22:11:46 +00001435config SPL_AM33XX_ENABLE_RTC32K_OSC
1436 bool "Enable the RTC32K OSC on AM33xx based platforms"
1437 default y if AM33XX
1438 help
1439 Enable access to the AM33xx RTC and select the external 32kHz clock
1440 source.
1441
Patrick Delaunay51827f92021-09-02 11:56:16 +02001442config SPL_OPTEE_IMAGE
1443 bool "Support OP-TEE Trusted OS image in SPL"
Kever Yang70fe2872018-08-23 17:17:59 +08001444 depends on ARM
1445 help
Patrick Delaunay51827f92021-09-02 11:56:16 +02001446 OP-TEE is an open source Trusted OS which is loaded by SPL.
Kever Yang70fe2872018-08-23 17:17:59 +08001447 More detail at: https://github.com/OP-TEE/optee_os
1448
Lukas Auer5e30e452019-08-21 21:14:44 +02001449config SPL_OPENSBI
1450 bool "Support RISC-V OpenSBI"
1451 depends on RISCV && SPL_RISCV_MMODE && RISCV_SMODE
1452 help
1453 OpenSBI is an open-source implementation of the RISC-V Supervisor Binary
1454 Interface (SBI) specification. U-Boot supports the OpenSBI FW_DYNAMIC
1455 firmware. It is loaded and started by U-Boot SPL.
1456
1457 More details are available at https://github.com/riscv/opensbi and
1458 https://github.com/riscv/riscv-sbi-doc
1459
1460config SPL_OPENSBI_LOAD_ADDR
1461 hex "OpenSBI load address"
1462 depends on SPL_OPENSBI
1463 help
1464 Load address of the OpenSBI binary.
1465
Tom Rinia62b7f02022-05-27 17:13:52 -04001466config SPL_TARGET
1467 string "Addtional build targets for 'make'"
1468 default "spl/u-boot-spl.srec" if RCAR_GEN2
1469 default "spl/u-boot-spl.scif" if RCAR_GEN3
1470 default ""
1471 help
1472 On some platforms we need to have 'make' run additional build target
1473 rules. If required on your platform, enter it here, otherwise leave blank.
1474
Tom Rini226498b2017-05-22 19:21:57 +00001475config TPL
1476 bool
1477 depends on SUPPORT_TPL
1478 prompt "Enable TPL"
1479 help
1480 If you want to build TPL as well as the normal image and SPL, say Y.
1481
Tom Riniba787bb2022-05-30 17:01:22 -04001482source "common/spl/Kconfig.tpl"
Tom Rini226498b2017-05-22 19:21:57 +00001483
Simon Glass747093d2022-04-30 00:56:53 -06001484config VPL
1485 bool
1486 depends on SUPPORT_SPL
1487 prompt "Enable VPL"
1488 help
1489 If you want to build VPL as well as the normal image, TPL and SPL,
1490 say Y.
1491
Tom Riniba787bb2022-05-30 17:01:22 -04001492source "common/spl/Kconfig.vpl"
Simon Glass747093d2022-04-30 00:56:53 -06001493
Eugen Hristev0be07872019-05-24 09:38:10 +03001494config SPL_AT91_MCK_BYPASS
1495 bool "Use external clock signal as a source of main clock for AT91 platforms"
1496 depends on ARCH_AT91
Eugen Hristev0be07872019-05-24 09:38:10 +03001497 help
1498 Use external 8 to 24 Mhz clock signal as source of main clock instead
1499 of an external crystal oscillator.
1500 This option disables the internal driving on the XOUT pin.
1501 The external source has to provide a stable clock on the XIN pin.
1502 If this option is disabled, the SoC expects a crystal oscillator
1503 that needs driving on both XIN and XOUT lines.
1504
Tom Rini226498b2017-05-22 19:21:57 +00001505endif # SPL
Simon Glass11bde1c2016-09-13 07:05:23 -06001506endmenu