blob: c8cb715c3a3ee6a79a8d08444e6ff4e3930814c8 [file] [log] [blame]
Simon Glass11bde1c2016-09-13 07:05:23 -06001menu "SPL / TPL"
2
Simon Glassc2ae7d82016-09-12 23:18:22 -06003config SUPPORT_SPL
4 bool
5
6config SUPPORT_TPL
7 bool
8
B, Ravi66928af2017-05-04 15:45:29 +05309config SPL_DFU_NO_RESET
10 bool
11
Simon Glassc2ae7d82016-09-12 23:18:22 -060012config SPL
13 bool
14 depends on SUPPORT_SPL
15 prompt "Enable SPL"
16 help
17 If you want to build SPL as well as the normal image, say Y.
18
Tom Rini75670c82018-02-06 12:15:38 -050019config SPL_FRAMEWORK
20 bool "Support SPL based upon the common SPL framework"
21 depends on SPL
22 default y
23 help
24 Enable the SPL framework under common/spl/. This framework
25 supports MMC, NAND and YMODEM and other methods loading of U-Boot
26 and the Linux Kernel. If unsure, say Y.
27
Philippe Reynesa9a3aad2019-09-19 16:18:39 +020028config SPL_FRAMEWORK_BOARD_INIT_F
29 bool "Define a generic function board_init_f"
30 depends on SPL_FRAMEWORK
31 help
32 Define a generic function board_init_f that:
33 - initialize the spl (spl_early_init)
34 - initialize the serial (preloader_console_init)
35 Unless you want to provide your own board_init_f, you should say Y.
36
Simon Goldschmidt25770152019-05-24 22:07:04 +020037config SPL_SIZE_LIMIT
Simon Glassb51882d2019-09-25 08:56:28 -060038 hex "Maximum size of SPL image"
Simon Goldschmidt25770152019-05-24 22:07:04 +020039 depends on SPL
Robert Hancock06f5b5a2019-08-08 12:14:39 -060040 default 69632 if ARCH_MX6 && !MX6_OCRAM_256KB
41 default 200704 if ARCH_MX6 && MX6_OCRAM_256KB
Simon Goldschmidt25770152019-05-24 22:07:04 +020042 default 0
43 help
44 Specifies the maximum length of the U-Boot SPL image.
45 If this value is zero, it is ignored.
46
47config SPL_SIZE_LIMIT_SUBTRACT_GD
48 bool "SPL image size check: provide space for global data"
49 depends on SPL_SIZE_LIMIT > 0
50 help
51 If enabled, aligned size of global data is reserved in
52 SPL_SIZE_LIMIT check to ensure such an image does not overflow SRAM
53 if SPL_SIZE_LIMIT describes the size of SRAM available for SPL when
54 pre-reloc global data is put into this SRAM, too.
55
56config SPL_SIZE_LIMIT_SUBTRACT_MALLOC
57 bool "SPL image size check: provide space for malloc() pool before relocation"
58 depends on SPL_SIZE_LIMIT > 0
59 help
60 If enabled, SPL_SYS_MALLOC_F_LEN is reserved in SPL_SIZE_LIMIT check
61 to ensure such an image does not overflow SRAM if SPL_SIZE_LIMIT
62 describes the size of SRAM available for SPL when pre-reloc malloc
63 pool is put into this SRAM, too.
64
65config SPL_SIZE_LIMIT_PROVIDE_STACK
66 hex "SPL image size check: provide stack space before relocation"
67 depends on SPL_SIZE_LIMIT > 0
68 default 0
69 help
70 If set, this size is reserved in SPL_SIZE_LIMIT check to ensure such
71 an image does not overflow SRAM if SPL_SIZE_LIMIT describes the size
72 of SRAM available for SPL when the stack required before reolcation
73 uses this SRAM, too.
74
Simon Goldschmidtd8c03322019-07-16 22:30:36 +020075config SPL_SYS_STACK_F_CHECK_BYTE
76 hex
77 default 0xaa
78 help
79 Constant used to check the stack
80
81config SPL_SYS_REPORT_STACK_F_USAGE
82 depends on SPL_SIZE_LIMIT_PROVIDE_STACK != 0
83 bool "Check and report stack usage in SPL before relocation"
84 help
85 If this option is enabled, the initial SPL stack is filled with 0xaa
86 very early, up to the size configured with
87 SPL_SIZE_LIMIT_PROVIDE_STACK.
88 Later when SPL is done using this initial stack and switches to a
89 stack in DRAM, the actually used size of this initial stack is
90 reported by examining the memory and searching for the lowest
91 occurrence of non 0xaa bytes.
92 This default implementation works for stacks growing down only.
93
Tom Rinidb4080d2019-06-01 14:20:25 -040094menu "PowerPC SPL Boot options"
95 depends on PPC && (SUPPORT_SPL && !SPL_FRAMEWORK)
96
97config SPL_NAND_BOOT
98 bool "Load SPL from NAND flash"
99
100config SPL_MMC_BOOT
101 bool "Load SPL from SD Card / eMMC"
102
103config SPL_SPI_BOOT
104 bool "Load SPL from SPI flash"
105
106config SPL_FSL_PBL
107 bool "Create SPL in Freescale PBI format"
108 help
109 Create boot binary having SPL binary in PBI format concatenated with
110 u-boot binary.
111
112endmenu
113
Simon Glassb0edea32018-11-15 18:44:09 -0700114config HANDOFF
115 bool "Pass hand-off information from SPL to U-Boot proper"
116 depends on BLOBLIST
117 help
118 It is useful to be able to pass information from SPL to U-Boot
119 proper to preserve state that is known in SPL and is needed in U-Boot.
120 Enable this to locate the handoff information in U-Boot proper, early
121 in boot. It is available in gd->handoff. The state state is set up
122 in SPL (or TPL if that is being used).
123
Tom Rini226498b2017-05-22 19:21:57 +0000124if SPL
125
Simon Glassb0edea32018-11-15 18:44:09 -0700126config SPL_HANDOFF
127 bool "Pass hand-off information from SPL to U-Boot proper"
Simon Glassa7da3d92019-09-25 08:11:17 -0600128 depends on HANDOFF && SPL_BLOBLIST
Simon Glassb0edea32018-11-15 18:44:09 -0700129 default y
130 help
131 This option enables SPL to write handoff information. This can be
132 used to pass information like the size of SDRAM from SPL to U-Boot
133 proper. Also SPL can receive information from TPL in the same place
134 if that is enabled.
135
Philipp Tomsichdd6fbcb2017-07-28 19:20:49 +0200136config SPL_LDSCRIPT
137 string "Linker script for the SPL stage"
138 default "arch/$(ARCH)/cpu/u-boot-spl.lds"
Philipp Tomsichdd6fbcb2017-07-28 19:20:49 +0200139 help
140 The SPL stage will usually require a different linker-script
141 (as it runs from a different memory region) than the regular
142 U-Boot stage. Set this to the path of the linker-script to
143 be used for SPL.
144
Simon Goldschmidtf89d6132018-09-30 14:31:53 +0200145config SPL_TEXT_BASE
146 hex "SPL Text Base"
147 default ISW_ENTRY_ADDR if AM43XX || AM33XX || OMAP54XX || ARCH_KEYSTONE
Andre Przywara9340d8f2019-05-27 01:45:11 +0100148 default 0x10060 if MACH_SUN50I || MACH_SUN50I_H5 || MACH_SUN9I
149 default 0x20060 if MACH_SUN50I_H6
150 default 0x00060 if ARCH_SUNXI
Michal Simek0413f9c2019-09-11 08:49:31 +0200151 default 0xfffc0000 if ARCH_ZYNQMP
Simon Goldschmidtf89d6132018-09-30 14:31:53 +0200152 default 0x0
153 help
154 The address in memory that SPL will be running from.
155
Ley Foon Tan0680f1b2017-05-03 17:13:32 +0800156config SPL_BOARD_INIT
Ley Foon Tan0680f1b2017-05-03 17:13:32 +0800157 bool "Call board-specific initialization in SPL"
158 help
159 If this option is enabled, U-Boot will call the function
160 spl_board_init() from board_init_r(). This function should be
161 provided by the board.
162
Philipp Tomsich225d30b2017-06-22 23:38:36 +0200163config SPL_BOOTROM_SUPPORT
164 bool "Support returning to the BOOTROM"
165 help
166 Some platforms (e.g. the Rockchip RK3368) provide support in their
167 ROM for loading the next boot-stage after performing basic setup
168 from the SPL stage.
169
170 Enable this option, to return to the BOOTROM through the
171 BOOT_DEVICE_BOOTROM (or fall-through to the next boot device in the
172 boot device list, if not implemented for a given board)
173
Lukasz Majewskiafa96092018-05-02 16:10:50 +0200174config SPL_BOOTCOUNT_LIMIT
175 bool "Support bootcount in SPL"
176 depends on SPL_ENV_SUPPORT
177 help
178 On some boards, which use 'falcon' mode, it is necessary to check
179 and increment the number of boot attempts. Such boards do not
180 use proper U-Boot for normal boot flow and hence needs those
181 adjustments to be done in the SPL.
182
Andrew F. Davis24eb39b2017-02-16 11:18:38 -0600183config SPL_RAW_IMAGE_SUPPORT
184 bool "Support SPL loading and booting of RAW images"
Andrew F. Davis24eb39b2017-02-16 11:18:38 -0600185 default n if (ARCH_MX6 && (SPL_MMC_SUPPORT || SPL_SATA_SUPPORT))
Andrew F. Davisae9b57b2017-02-16 11:18:40 -0600186 default y if !TI_SECURE_DEVICE
Andrew F. Davis24eb39b2017-02-16 11:18:38 -0600187 help
188 SPL will support loading and booting a RAW image when this option
189 is y. If this is not set, SPL will move on to other available
190 boot media to find a suitable image.
191
Andrew F. Davis722a6b12017-02-16 11:18:39 -0600192config SPL_LEGACY_IMAGE_SUPPORT
193 bool "Support SPL loading and booting of Legacy images"
Tom Rini11bd2fa2019-05-23 07:14:08 -0400194 default y if !TI_SECURE_DEVICE && !SPL_LOAD_FIT
Andrew F. Davis722a6b12017-02-16 11:18:39 -0600195 help
196 SPL will support loading and booting Legacy images when this option
197 is y. If this is not set, SPL will move on to other available
198 boot media to find a suitable image.
199
Simon Goldschmidtdae5c2d2019-02-10 21:34:37 +0100200config SPL_LEGACY_IMAGE_CRC_CHECK
201 bool "Check CRC of Legacy images"
202 depends on SPL_LEGACY_IMAGE_SUPPORT
203 select SPL_CRC32_SUPPORT
204 help
205 Enable this to check the CRC of Legacy images. While this increases
206 reliability, it affects both code size and boot duration.
207 If disabled, Legacy images are booted if the image magic and size
208 are correct, without further integrity checks.
209
Simon Glassc2ae7d82016-09-12 23:18:22 -0600210config SPL_SYS_MALLOC_SIMPLE
211 bool
Simon Glassc2ae7d82016-09-12 23:18:22 -0600212 prompt "Only use malloc_simple functions in the SPL"
213 help
214 Say Y here to only use the *_simple malloc functions from
215 malloc_simple.c, rather then using the versions from dlmalloc.c;
216 this will make the SPL binary smaller at the cost of more heap
217 usage as the *_simple malloc functions do not re-use free-ed mem.
218
Philipp Tomsichd60b5f72017-06-30 18:57:25 +0200219config TPL_SYS_MALLOC_SIMPLE
220 bool
221 prompt "Only use malloc_simple functions in the TPL"
Adam Ford05705562019-08-13 14:32:30 -0500222 depends on TPL
Philipp Tomsichd60b5f72017-06-30 18:57:25 +0200223 help
224 Say Y here to only use the *_simple malloc functions from
225 malloc_simple.c, rather then using the versions from dlmalloc.c;
226 this will make the TPL binary smaller at the cost of more heap
227 usage as the *_simple malloc functions do not re-use free-ed mem.
228
Simon Glassc2ae7d82016-09-12 23:18:22 -0600229config SPL_STACK_R
Simon Glassc2ae7d82016-09-12 23:18:22 -0600230 bool "Enable SDRAM location for SPL stack"
231 help
232 SPL starts off execution in SRAM and thus typically has only a small
233 stack available. Since SPL sets up DRAM while in its board_init_f()
234 function, it is possible for the stack to move there before
235 board_init_r() is reached. This option enables a special SDRAM
236 location for the SPL stack. U-Boot SPL switches to this after
237 board_init_f() completes, and before board_init_r() starts.
238
239config SPL_STACK_R_ADDR
240 depends on SPL_STACK_R
241 hex "SDRAM location for SPL stack"
Tom Riniff6c3122017-09-17 11:44:49 -0400242 default 0x82000000 if ARCH_OMAP2PLUS
Simon Glassc2ae7d82016-09-12 23:18:22 -0600243 help
244 Specify the address in SDRAM for the SPL stack. This will be set up
245 before board_init_r() is called.
246
247config SPL_STACK_R_MALLOC_SIMPLE_LEN
248 depends on SPL_STACK_R && SPL_SYS_MALLOC_SIMPLE
249 hex "Size of malloc_simple heap after switching to DRAM SPL stack"
250 default 0x100000
251 help
252 Specify the amount of the stack to use as memory pool for
253 malloc_simple after switching the stack to DRAM. This may be set
254 to give board_init_r() a larger heap then the initial heap in
255 SRAM which is limited to SYS_MALLOC_F_LEN bytes.
256
257config SPL_SEPARATE_BSS
Simon Glassc2ae7d82016-09-12 23:18:22 -0600258 bool "BSS section is in a different memory region from text"
259 help
260 Some platforms need a large BSS region in SPL and can provide this
261 because RAM is already set up. In this case BSS can be moved to RAM.
262 This option should then be enabled so that the correct device tree
263 location is used. Normally we put the device tree at the end of BSS
264 but with this option enabled, it goes at _image_binary_end.
265
Simon Glassaedc08b2018-11-15 18:43:57 -0700266config SPL_BANNER_PRINT
267 bool "Enable output of the SPL banner 'U-Boot SPL ...'"
268 default y
269 help
270 If this option is enabled, SPL will print the banner with version
Thomas Hebb32f2ca22019-11-13 18:18:03 -0800271 info. Disabling this option could be useful to reduce SPL boot time
Simon Glassaedc08b2018-11-15 18:43:57 -0700272 (e.g. approx. 6 ms faster, when output on i.MX6 with 115200 baud).
273
274config TPL_BANNER_PRINT
275 bool "Enable output of the TPL banner 'U-Boot TPL ...'"
Adam Ford05705562019-08-13 14:32:30 -0500276 depends on TPL
Simon Glassaedc08b2018-11-15 18:43:57 -0700277 default y
Anatolij Gustschin0292bc02018-01-25 18:45:22 +0100278 help
Thomas Hebb32f2ca22019-11-13 18:18:03 -0800279 If this option is enabled, TPL will print the banner with version
280 info. Disabling this option could be useful to reduce TPL boot time
Simon Glassaedc08b2018-11-15 18:43:57 -0700281 (e.g. approx. 6 ms faster, when output on i.MX6 with 115200 baud).
Anatolij Gustschin0292bc02018-01-25 18:45:22 +0100282
Andreas Dannenberga5a5d992019-06-04 17:55:45 -0500283config SPL_EARLY_BSS
284 depends on ARM && !ARM64
285 bool "Allows initializing BSS early before entering board_init_f"
286 help
287 On some platform we have sufficient memory available early on to
288 allow setting up and using a basic BSS prior to entering
289 board_init_f. Activating this option will also de-activate the
290 clearing of BSS during the SPL relocation process, thus allowing
291 to carry state from board_init_f to board_init_r by way of BSS.
292
Simon Glassa807ab32016-09-24 18:19:56 -0600293config SPL_DISPLAY_PRINT
Simon Glassa807ab32016-09-24 18:19:56 -0600294 bool "Display a board-specific message in SPL"
295 help
296 If this option is enabled, U-Boot will call the function
297 spl_display_print() immediately after displaying the SPL console
298 banner ("U-Boot SPL ..."). This function should be provided by
299 the board.
300
Semen Protsenko38fed8a2016-11-16 19:19:05 +0200301config SYS_MMCSD_RAW_MODE_U_BOOT_USE_SECTOR
302 bool "MMC raw mode: by sector"
Fabio Estevam1da19382018-06-11 15:08:05 -0300303 default y if ARCH_SUNXI || ARCH_DAVINCI || ARCH_UNIPHIER || \
304 ARCH_MX6 || ARCH_MX7 || \
Semen Protsenko38fed8a2016-11-16 19:19:05 +0200305 ARCH_ROCKCHIP || ARCH_MVEBU || ARCH_SOCFPGA || \
306 ARCH_AT91 || ARCH_ZYNQ || ARCH_KEYSTONE || OMAP34XX || \
307 OMAP44XX || OMAP54XX || AM33XX || AM43XX
308 help
309 Use sector number for specifying U-Boot location on MMC/SD in
310 raw mode.
311
312config SYS_MMCSD_RAW_MODE_U_BOOT_SECTOR
313 hex "Address on the MMC to load U-Boot from"
Tom Rini226498b2017-05-22 19:21:57 +0000314 depends on SYS_MMCSD_RAW_MODE_U_BOOT_USE_SECTOR
Semen Protsenko38fed8a2016-11-16 19:19:05 +0200315 default 0x50 if ARCH_SUNXI
316 default 0x75 if ARCH_DAVINCI
Fabio Estevam1da19382018-06-11 15:08:05 -0300317 default 0x8a if ARCH_MX6 || ARCH_MX7
Kever Yang8f4d62b2017-11-02 15:16:34 +0800318 default 0x100 if ARCH_UNIPHIER
Semen Protsenko38fed8a2016-11-16 19:19:05 +0200319 default 0x140 if ARCH_MVEBU
320 default 0x200 if ARCH_SOCFPGA || ARCH_AT91
321 default 0x300 if ARCH_ZYNQ || ARCH_KEYSTONE || OMAP34XX || OMAP44XX || \
Lokesh Vutla586bde92018-08-27 15:57:08 +0530322 OMAP54XX || AM33XX || AM43XX || ARCH_K3
Kever Yang8f4d62b2017-11-02 15:16:34 +0800323 default 0x4000 if ARCH_ROCKCHIP
Semen Protsenko38fed8a2016-11-16 19:19:05 +0200324 help
325 Address on the MMC to load U-Boot from, when the MMC is being used
326 in raw mode. Units: MMC sectors (1 sector = 512 bytes).
327
Dalon Westergreen949123e2017-02-10 17:15:35 -0800328config SYS_MMCSD_RAW_MODE_U_BOOT_USE_PARTITION
329 bool "MMC Raw mode: by partition"
Dalon Westergreen949123e2017-02-10 17:15:35 -0800330 help
331 Use a partition for loading U-Boot when using MMC/SD in raw mode.
332
333config SYS_MMCSD_RAW_MODE_U_BOOT_PARTITION
334 hex "Partition to use to load U-Boot from"
Tom Rini226498b2017-05-22 19:21:57 +0000335 depends on SYS_MMCSD_RAW_MODE_U_BOOT_USE_PARTITION
Dalon Westergreen949123e2017-02-10 17:15:35 -0800336 default 1
337 help
338 Partition on the MMC to load U-Boot from when the MMC is being
339 used in raw mode
340
Dalon Westergreenf0fb4fa2017-02-10 17:15:34 -0800341config SYS_MMCSD_RAW_MODE_U_BOOT_USE_PARTITION_TYPE
342 bool "MMC raw mode: by partition type"
Tom Rini226498b2017-05-22 19:21:57 +0000343 depends on DOS_PARTITION && SYS_MMCSD_RAW_MODE_U_BOOT_USE_PARTITION
Dalon Westergreenf0fb4fa2017-02-10 17:15:34 -0800344 help
345 Use partition type for specifying U-Boot partition on MMC/SD in
346 raw mode. U-Boot will be loaded from the first partition of this
347 type to be found.
348
349config SYS_MMCSD_RAW_MODE_U_BOOT_PARTITION_TYPE
350 hex "Partition Type on the MMC to load U-Boot from"
Tom Rini226498b2017-05-22 19:21:57 +0000351 depends on SYS_MMCSD_RAW_MODE_U_BOOT_USE_PARTITION_TYPE
Dalon Westergreenf0fb4fa2017-02-10 17:15:34 -0800352 help
353 Partition Type on the MMC to load U-Boot from, when the MMC is being
354 used in raw mode.
355
Anatolij Gustschin32ded502019-10-18 21:38:33 +0200356config SUPPORT_EMMC_BOOT_OVERRIDE_PART_CONFIG
357 bool "Override eMMC EXT_CSC_PART_CONFIG by user defined partition"
358 depends on SUPPORT_EMMC_BOOT
359 help
360 eMMC boot partition is normally configured by the bits of the EXT_CSD
361 register (EXT_CSC_PART_CONFIG), BOOT_PARTITION_ENABLE field. In some
362 cases it might be required in SPL to load the image from different
363 partition than the partition selected by EXT_CSC_PART_CONFIG register.
364 Enable this option if you intend to use an eMMC boot partition other
365 then selected via EXT_CSC_PART_CONFIG register and specify the custom
366 partition number by the CONFIG_SYS_MMCSD_RAW_MODE_EMMC_BOOT_PARTITION
367 option.
368
369config SYS_MMCSD_RAW_MODE_EMMC_BOOT_PARTITION
370 int "Number of the eMMC boot partition to use"
371 depends on SUPPORT_EMMC_BOOT_OVERRIDE_PART_CONFIG
372 default 1
373 help
374 eMMC boot partition number to use when the eMMC in raw mode and
375 the eMMC EXT_CSC_PART_CONFIG selection should be overridden in SPL
376 by user defined partition number.
377
Simon Glass11bde1c2016-09-13 07:05:23 -0600378config SPL_CRC32_SUPPORT
379 bool "Support CRC32"
Simon Goldschmidtdae5c2d2019-02-10 21:34:37 +0100380 default y if SPL_LEGACY_IMAGE_SUPPORT
Simon Glass11bde1c2016-09-13 07:05:23 -0600381 help
Simon Goldschmidtdae5c2d2019-02-10 21:34:37 +0100382 Enable this to support CRC32 in uImages or FIT images within SPL.
383 This is a 32-bit checksum value that can be used to verify images.
384 For FIT images, this is the least secure type of checksum, suitable
385 for detected accidental image corruption. For secure applications you
386 should consider SHA1 or SHA256.
Simon Glass11bde1c2016-09-13 07:05:23 -0600387
388config SPL_MD5_SUPPORT
389 bool "Support MD5"
390 depends on SPL_FIT
391 help
392 Enable this to support MD5 in FIT images within SPL. An MD5
393 checksum is a 128-bit hash value used to check that the image
394 contents have not been corrupted. Note that MD5 is not considered
395 secure as it is possible (with a brute-force attack) to adjust the
396 image while still retaining the same MD5 hash value. For secure
397 applications where images may be changed maliciously, you should
398 consider SHA1 or SHA256.
399
400config SPL_SHA1_SUPPORT
401 bool "Support SHA1"
402 depends on SPL_FIT
Tom Rini089df182017-05-15 12:17:49 -0400403 select SHA1
Simon Glass11bde1c2016-09-13 07:05:23 -0600404 help
405 Enable this to support SHA1 in FIT images within SPL. A SHA1
406 checksum is a 160-bit (20-byte) hash value used to check that the
407 image contents have not been corrupted or maliciously altered.
408 While SHA1 is fairly secure it is coming to the end of its life
Vagrant Cascadian048a92e2019-05-03 14:28:37 -0800409 due to the expanding computing power available to brute-force
Simon Glass11bde1c2016-09-13 07:05:23 -0600410 attacks. For more security, consider SHA256.
411
412config SPL_SHA256_SUPPORT
413 bool "Support SHA256"
414 depends on SPL_FIT
Tom Rini089df182017-05-15 12:17:49 -0400415 select SHA256
Simon Glass11bde1c2016-09-13 07:05:23 -0600416 help
417 Enable this to support SHA256 in FIT images within SPL. A SHA256
418 checksum is a 256-bit (32-byte) hash value used to check that the
419 image contents have not been corrupted. SHA256 is recommended for
420 use in secure applications since (as at 2016) there is no known
421 feasible attack that could produce a 'collision' with differing
422 input data. Use this for the highest security. Note that only the
423 SHA256 variant is supported: SHA512 and others are not currently
424 supported in U-Boot.
425
Philipp Tomsich337bbb62017-11-24 13:26:03 +0100426config SPL_FIT_IMAGE_TINY
427 bool "Remove functionality from SPL FIT loading to reduce size"
428 depends on SPL_FIT
Icenowy Zheng6f796a92018-07-21 16:20:31 +0800429 default y if MACH_SUN50I || MACH_SUN50I_H5 || MACH_SUN50I_H6
Ye Lif6282cd2018-11-20 10:19:15 +0000430 default y if ARCH_IMX8M
Philipp Tomsich337bbb62017-11-24 13:26:03 +0100431 help
432 Enable this to reduce the size of the FIT image loading code
433 in SPL, if space for the SPL binary is very tight.
434
435 This removes the detection of image types (which forces the
436 first image to be treated as having a U-Boot style calling
437 convention) and skips the recording of each loaded payload
438 (i.e. loadable) into the FDT (modifying the loaded FDT to
439 ensure this information is available to the next image
440 invoked).
441
Simon Glass5e148df2017-01-16 07:03:29 -0700442config SPL_CPU_SUPPORT
443 bool "Support CPU drivers"
Simon Glass5e148df2017-01-16 07:03:29 -0700444 help
445 Enable this to support CPU drivers in SPL. These drivers can set
446 up CPUs and provide information about them such as the model and
447 name. This can be useful in SPL since setting up the CPUs earlier
448 may improve boot performance. Enable this option to build the
449 drivers in drivers/cpu as part of an SPL build.
450
Simon Glass11bde1c2016-09-13 07:05:23 -0600451config SPL_CRYPTO_SUPPORT
452 bool "Support crypto drivers"
Simon Glass11bde1c2016-09-13 07:05:23 -0600453 help
454 Enable crypto drivers in SPL. These drivers can be used to
455 accelerate secure boot processing in secure applications. Enable
456 this option to build the drivers in drivers/crypto as part of an
457 SPL build.
458
459config SPL_HASH_SUPPORT
460 bool "Support hashing drivers"
Tom Rini089df182017-05-15 12:17:49 -0400461 select SHA1
462 select SHA256
Simon Glass11bde1c2016-09-13 07:05:23 -0600463 help
464 Enable hashing drivers in SPL. These drivers can be used to
465 accelerate secure boot processing in secure applications. Enable
466 this option to build system-specific drivers for hash acceleration
467 as part of an SPL build.
468
Simon Glass2d424eb2018-11-15 18:43:55 -0700469config TPL_HASH_SUPPORT
470 bool "Support hashing drivers in TPL"
Adam Forda0746672019-08-24 13:50:34 -0500471 depends on TPL
Simon Glass2d424eb2018-11-15 18:43:55 -0700472 select SHA1
473 select SHA256
474 help
475 Enable hashing drivers in SPL. These drivers can be used to
476 accelerate secure boot processing in secure applications. Enable
477 this option to build system-specific drivers for hash acceleration
478 as part of an SPL build.
479
Simon Glass11bde1c2016-09-13 07:05:23 -0600480config SPL_DMA_SUPPORT
481 bool "Support DMA drivers"
Simon Glass11bde1c2016-09-13 07:05:23 -0600482 help
483 Enable DMA (direct-memory-access) drivers in SPL. These drivers
484 can be used to handle memory-to-peripheral data transfer without
485 the CPU moving the data. Enable this option to build the drivers
486 in drivers/dma as part of an SPL build.
487
Lukasz Majewskid4d65e12019-12-02 10:24:16 +0100488config SPL_DM_GPIO
489 bool "Support Driver Model GPIO drivers"
490 depends on SPL_GPIO_SUPPORT && DM_GPIO
491 help
492 Enable support for Driver Model based GPIO drivers in SPL.
493
Simon Glass11bde1c2016-09-13 07:05:23 -0600494config SPL_DRIVERS_MISC_SUPPORT
495 bool "Support misc drivers"
Simon Glass11bde1c2016-09-13 07:05:23 -0600496 help
497 Enable miscellaneous drivers in SPL. These drivers perform various
498 tasks that don't fall nicely into other categories, Enable this
499 option to build the drivers in drivers/misc as part of an SPL
500 build, for those that support building in SPL (not all drivers do).
501
502config SPL_ENV_SUPPORT
503 bool "Support an environment"
Simon Glass11bde1c2016-09-13 07:05:23 -0600504 help
505 Enable environment support in SPL. The U-Boot environment provides
506 a number of settings (essentially name/value pairs) which can
507 control many aspects of U-Boot's operation. Normally this is not
508 needed in SPL as it has a much simpler task with less
509 configuration. But some boards use this to support 'Falcon' boot
510 on EXT2 and FAT, where SPL boots directly into Linux without
Simon Glass00caae62017-08-03 12:22:12 -0600511 starting U-Boot first. Enabling this option will make env_get()
Simon Glass382bee52017-08-03 12:22:09 -0600512 and env_set() available in SPL.
Simon Glass11bde1c2016-09-13 07:05:23 -0600513
B, Ravid2d9bdf2016-09-28 14:46:18 +0530514config SPL_SAVEENV
515 bool "Support save environment"
Tom Rini226498b2017-05-22 19:21:57 +0000516 depends on SPL_ENV_SUPPORT
Jean-Jacques Hiblotd6400c32018-01-04 15:23:32 +0100517 select SPL_MMC_WRITE if ENV_IS_IN_MMC
B, Ravid2d9bdf2016-09-28 14:46:18 +0530518 help
519 Enable save environment support in SPL after setenv. By default
520 the saveenv option is not provided in SPL, but some boards need
521 this support in 'Falcon' boot, where SPL need to boot from
522 different images based on environment variable set by OS. For
523 example OS may set "reboot_image" environment variable to
524 "recovery" inorder to boot recovery image by SPL. The SPL read
525 "reboot_image" and act accordingly and change the reboot_image
Shyam Saini919d25c2018-06-07 19:47:19 +0530526 to default mode using setenv and save the environment.
B, Ravid2d9bdf2016-09-28 14:46:18 +0530527
Simon Glass11bde1c2016-09-13 07:05:23 -0600528config SPL_ETH_SUPPORT
529 bool "Support Ethernet"
530 depends on SPL_ENV_SUPPORT
531 help
532 Enable access to the network subsystem and associated Ethernet
533 drivers in SPL. This permits SPL to load U-Boot over an Ethernet
534 link rather than from an on-board peripheral. Environment support
535 is required since the network stack uses a number of environment
536 variables. See also SPL_NET_SUPPORT.
537
Tien Fong Cheef4b40922019-01-23 14:20:05 +0800538config SPL_FS_EXT4
Simon Glass11bde1c2016-09-13 07:05:23 -0600539 bool "Support EXT filesystems"
Simon Glass11bde1c2016-09-13 07:05:23 -0600540 help
541 Enable support for EXT2/3/4 filesystems with SPL. This permits
542 U-Boot (or Linux in Falcon mode) to be loaded from an EXT
543 filesystem from within SPL. Support for the underlying block
544 device (e.g. MMC or USB) must be enabled separately.
545
Tien Fong Chee0c3a9ed2019-01-23 14:20:03 +0800546config SPL_FS_FAT
Simon Glass11bde1c2016-09-13 07:05:23 -0600547 bool "Support FAT filesystems"
Sekhar Norieedfb892017-06-02 17:53:59 +0530548 select FS_FAT
Simon Glass11bde1c2016-09-13 07:05:23 -0600549 help
550 Enable support for FAT and VFAT filesystems with SPL. This
551 permits U-Boot (or Linux in Falcon mode) to be loaded from a FAT
552 filesystem from within SPL. Support for the underlying block
553 device (e.g. MMC or USB) must be enabled separately.
554
Tien Fong Cheed8c3ea92019-01-23 14:20:04 +0800555config SPL_FAT_WRITE
556 bool "Support write for FAT filesystems"
557 help
558 Enable write support for FAT and VFAT filesystems with SPL.
559 Support for the underlying block device (e.g. MMC or USB) must be
560 enabled separately.
561
Simon Glass11bde1c2016-09-13 07:05:23 -0600562config SPL_FPGA_SUPPORT
563 bool "Support FPGAs"
Simon Glass11bde1c2016-09-13 07:05:23 -0600564 help
565 Enable support for FPGAs in SPL. Field-programmable Gate Arrays
566 provide software-configurable hardware which is typically used to
567 implement peripherals (such as UARTs, LCD displays, MMC) or
568 accelerate custom processing functions, such as image processing
569 or machine learning. Sometimes it is useful to program the FPGA
570 as early as possible during boot, and this option can enable that
571 within SPL.
572
573config SPL_GPIO_SUPPORT
Simon Glass2d424eb2018-11-15 18:43:55 -0700574 bool "Support GPIO in SPL"
Simon Glass11bde1c2016-09-13 07:05:23 -0600575 help
576 Enable support for GPIOs (General-purpose Input/Output) in SPL.
577 GPIOs allow U-Boot to read the state of an input line (high or
578 low) and set the state of an output line. This can be used to
579 drive LEDs, control power to various system parts and read user
580 input. GPIOs can be useful in SPL to enable a 'sign-of-life' LED,
581 for example. Enable this option to build the drivers in
582 drivers/gpio as part of an SPL build.
583
584config SPL_I2C_SUPPORT
585 bool "Support I2C"
Simon Glass11bde1c2016-09-13 07:05:23 -0600586 help
587 Enable support for the I2C (Inter-Integrated Circuit) bus in SPL.
588 I2C works with a clock and data line which can be driven by a
589 one or more masters or slaves. It is a fairly complex bus but is
590 widely used as it only needs two lines for communication. Speeds of
591 400kbps are typical but up to 3.4Mbps is supported by some
592 hardware. I2C can be useful in SPL to configure power management
593 ICs (PMICs) before raising the CPU clock speed, for example.
594 Enable this option to build the drivers in drivers/i2c as part of
595 an SPL build.
596
597config SPL_LIBCOMMON_SUPPORT
598 bool "Support common libraries"
Simon Glass11bde1c2016-09-13 07:05:23 -0600599 help
600 Enable support for common U-Boot libraries within SPL. These
601 libraries include common code to deal with U-Boot images,
602 environment and USB, for example. This option is enabled on many
603 boards. Enable this option to build the code in common/ as part of
604 an SPL build.
605
606config SPL_LIBDISK_SUPPORT
Simon Goldschmidt00416702018-08-16 09:44:55 +0200607 bool "Support disk partitions"
Tom Rini91ff6862018-12-05 08:23:38 -0500608 select PARTITIONS
Simon Glass11bde1c2016-09-13 07:05:23 -0600609 help
610 Enable support for disk partitions within SPL. 'Disk' is something
611 of a misnomer as it includes non-spinning media such as flash (as
612 used in MMC and USB sticks). Partitions provide a way for a disk
613 to be split up into separate regions, with a partition table placed
614 at the start or end which describes the location and size of each
615 'partition'. These partitions are typically uses as individual block
616 devices, typically with an EXT2 or FAT filesystem in each. This
617 option enables whatever partition support has been enabled in
618 U-Boot to also be used in SPL. It brings in the code in disk/.
619
620config SPL_LIBGENERIC_SUPPORT
621 bool "Support generic libraries"
Simon Glass11bde1c2016-09-13 07:05:23 -0600622 help
623 Enable support for generic U-Boot libraries within SPL. These
624 libraries include generic code to deal with device tree, hashing,
625 printf(), compression and the like. This option is enabled on many
626 boards. Enable this option to build the code in lib/ as part of an
627 SPL build.
628
Lokesh Vutla88027412018-08-27 15:57:49 +0530629config SPL_DM_MAILBOX
630 bool "Support Mailbox"
631 help
632 Enable support for Mailbox within SPL. This enable the inter
633 processor communication protocols tobe used within SPL. Enable
634 this option to build the drivers in drivers/mailbox as part of
635 SPL build.
636
Simon Glass11bde1c2016-09-13 07:05:23 -0600637config SPL_MMC_SUPPORT
638 bool "Support MMC"
Tom Rini226498b2017-05-22 19:21:57 +0000639 depends on MMC
Tom Rini91ff6862018-12-05 08:23:38 -0500640 select HAVE_BLOCK_DEVICE
Simon Glass11bde1c2016-09-13 07:05:23 -0600641 help
642 Enable support for MMC (Multimedia Card) within SPL. This enables
643 the MMC protocol implementation and allows any enabled drivers to
644 be used within SPL. MMC can be used with or without disk partition
645 support depending on the application (SPL_LIBDISK_SUPPORT). Enable
646 this option to build the drivers in drivers/mmc as part of an SPL
647 build.
648
Lukasz Majewski772b5572019-09-09 15:32:13 +0200649config SPL_FORCE_MMC_BOOT
650 bool "Force SPL booting from MMC"
651 depends on SPL_MMC_SUPPORT
652 default n
653 help
654 Force SPL to use MMC device for Linux kernel booting even when the
655 SoC ROM recognized boot medium is not eMMC/SD. This is crucial for
656 factory or 'falcon mode' booting.
657
Ezequiel Garciabf7c01d2019-05-25 19:25:21 -0300658config SPL_MMC_TINY
659 bool "Tiny MMC framework in SPL"
660 depends on SPL_MMC_SUPPORT
661 default n
662 help
663 Enable MMC framework tinification support. This option is useful if
664 if your SPL is extremely size constrained. Heed the warning, enable
665 this option if and only if you know exactly what you are doing, if
666 you are reading this help text, you most likely have no idea :-)
667
668 The MMC framework is reduced to bare minimum to be useful. No malloc
669 support is needed for the MMC framework operation with this option
670 enabled. The framework supports exactly one MMC device and exactly
671 one MMC driver. The MMC driver can be adjusted to avoid any malloc
672 operations too, which can remove the need for malloc support in SPL
673 and thus further reduce footprint.
674
Jean-Jacques Hiblotd6400c32018-01-04 15:23:32 +0100675config SPL_MMC_WRITE
676 bool "MMC/SD/SDIO card support for write operations in SPL"
677 depends on SPL_MMC_SUPPORT
678 default n
679 help
680 Enable write access to MMC and SD Cards in SPL
681
682
Simon Glass11bde1c2016-09-13 07:05:23 -0600683config SPL_MPC8XXX_INIT_DDR_SUPPORT
684 bool "Support MPC8XXX DDR init"
Simon Glass11bde1c2016-09-13 07:05:23 -0600685 help
686 Enable support for DDR-SDRAM (double-data-rate synchronous dynamic
687 random-access memory) on the MPC8XXX family within SPL. This
688 allows DRAM to be set up before loading U-Boot into that DRAM,
689 where it can run.
690
691config SPL_MTD_SUPPORT
692 bool "Support MTD drivers"
Simon Glass11bde1c2016-09-13 07:05:23 -0600693 help
694 Enable support for MTD (Memory Technology Device) within SPL. MTD
695 provides a block interface over raw NAND and can also be used with
696 SPI flash. This allows SPL to load U-Boot from supported MTD
697 devices. See SPL_NAND_SUPPORT and SPL_ONENAND_SUPPORT for how
698 to enable specific MTD drivers.
699
700config SPL_MUSB_NEW_SUPPORT
701 bool "Support new Mentor Graphics USB"
Simon Glass11bde1c2016-09-13 07:05:23 -0600702 help
703 Enable support for Mentor Graphics USB in SPL. This is a new
704 driver used by some boards. Enable this option to build
705 the drivers in drivers/usb/musb-new as part of an SPL build. The
706 old drivers are in drivers/usb/musb.
707
708config SPL_NAND_SUPPORT
709 bool "Support NAND flash"
Simon Glass11bde1c2016-09-13 07:05:23 -0600710 help
711 Enable support for NAND (Negative AND) flash in SPL. NAND flash
712 can be used to allow SPL to load U-Boot from supported devices.
Miquel Raynala430fa02018-08-16 17:30:07 +0200713 This enables the drivers in drivers/mtd/nand/raw as part of an SPL
Simon Glass11bde1c2016-09-13 07:05:23 -0600714 build.
715
Markus Klotzbuecherc67c3492019-05-15 15:15:57 +0200716config SPL_UBI
717 bool "Support UBI"
718 help
719 Enable support for loading payloads from UBI. See
720 README.ubispl for more info.
721
Lukasz Majewskif18845c2019-09-09 12:06:46 +0200722if SPL_DM
723config SPL_DM_SPI
724 bool "Support SPI DM drivers in SPL"
725 help
726 Enable support for SPI DM drivers in SPL.
727
728endif
Markus Klotzbuecherc67c3492019-05-15 15:15:57 +0200729if SPL_UBI
Hamish Guthrie6ea31cc2019-05-15 15:15:59 +0200730config SPL_UBI_LOAD_BY_VOLNAME
731 bool "Support loading volumes by name"
732 help
733 This enables support for loading UBI volumes by name. When this
734 is set, CONFIG_SPL_UBI_LOAD_MONITOR_VOLNAME can be used to
735 configure the volume name from which to load U-Boot.
736
Markus Klotzbuecherc67c3492019-05-15 15:15:57 +0200737config SPL_UBI_MAX_VOL_LEBS
738 int "Maximum number of LEBs per volume"
739 depends on SPL_UBI
740 help
741 The maximum number of logical eraseblocks which a static volume
742 to load can contain. Used for sizing the scan data structure.
743
744config SPL_UBI_MAX_PEB_SIZE
745 int "Maximum PEB size"
746 depends on SPL_UBI
747 help
748 The maximum physical erase block size.
749
750config SPL_UBI_MAX_PEBS
751 int "Maximum number of PEBs"
752 depends on SPL_UBI
753 help
754 The maximum physical erase block size. If not overridden by
755 board code, this value will be used as the actual number of PEBs.
756
757config SPL_UBI_PEB_OFFSET
758 int "Offset to first UBI PEB"
759 depends on SPL_UBI
760 help
761 The offset in number of PEBs from the start of flash to the first
762 PEB part of the UBI image.
763
764config SPL_UBI_VID_OFFSET
765 int "Offset to VID header"
766 depends on SPL_UBI
767
768config SPL_UBI_LEB_START
769 int "Offset to LEB in PEB"
770 depends on SPL_UBI
771 help
772 The offset in bytes to the LEB within a PEB.
773
774config SPL_UBI_INFO_ADDR
775 hex "Address to place UBI scan info"
776 depends on SPL_UBI
777 help
778 Address for ubispl to place the scan info. Read README.ubispl to
779 determine the required size
780
781config SPL_UBI_VOL_IDS
782 int "Maximum volume id"
783 depends on SPL_UBI
784 help
785 The maximum volume id which can be loaded. Used for sizing the
786 scan data structure.
787
788config SPL_UBI_LOAD_MONITOR_ID
789 int "id of U-Boot volume"
790 depends on SPL_UBI
791 help
792 The UBI volume id from which to load U-Boot
793
Hamish Guthrie6ea31cc2019-05-15 15:15:59 +0200794config SPL_UBI_LOAD_MONITOR_VOLNAME
795 string "volume name of U-Boot volume"
796 depends on SPL_UBI_LOAD_BY_VOLNAME
797 help
798 The UBI volume name from which to load U-Boot
799
Markus Klotzbuecherc67c3492019-05-15 15:15:57 +0200800config SPL_UBI_LOAD_KERNEL_ID
801 int "id of kernel volume"
802 depends on SPL_OS_BOOT && SPL_UBI
803 help
804 The UBI volume id from which to load the kernel
805
806config SPL_UBI_LOAD_ARGS_ID
807 int "id of kernel args volume"
808 depends on SPL_OS_BOOT && SPL_UBI
809 help
810 The UBI volume id from which to load the device tree
811
Markus Klotzbuechera2257d32019-05-15 15:16:00 +0200812config UBI_SPL_SILENCE_MSG
813 bool "silence UBI SPL messages"
814 default n
815 help
816 Disable messages from UBI SPL. This leaves warnings
817 and errors enabled.
Markus Klotzbuecherc67c3492019-05-15 15:15:57 +0200818
819endif # if SPL_UBI
820
Simon Glass11bde1c2016-09-13 07:05:23 -0600821config SPL_NET_SUPPORT
822 bool "Support networking"
Simon Glass11bde1c2016-09-13 07:05:23 -0600823 help
824 Enable support for network devices (such as Ethernet) in SPL.
825 This permits SPL to load U-Boot over a network link rather than
826 from an on-board peripheral. Environment support is required since
827 the network stack uses a number of environment variables. See also
828 SPL_ETH_SUPPORT.
829
830if SPL_NET_SUPPORT
831config SPL_NET_VCI_STRING
832 string "BOOTP Vendor Class Identifier string sent by SPL"
833 help
834 As defined by RFC 2132 the vendor class identifier field can be
835 sent by the client to identify the vendor type and configuration
836 of a client. This is often used in practice to allow for the DHCP
837 server to specify different files to load depending on if the ROM,
838 SPL or U-Boot itself makes the request
839endif # if SPL_NET_SUPPORT
840
841config SPL_NO_CPU_SUPPORT
842 bool "Drop CPU code in SPL"
Simon Glass11bde1c2016-09-13 07:05:23 -0600843 help
844 This is specific to the ARM926EJ-S CPU. It disables the standard
845 start.S start-up code, presumably so that a replacement can be
846 used on that CPU. You should not enable it unless you know what
847 you are doing.
848
849config SPL_NOR_SUPPORT
850 bool "Support NOR flash"
Simon Glass11bde1c2016-09-13 07:05:23 -0600851 help
852 Enable support for loading U-Boot from memory-mapped NOR (Negative
853 OR) flash in SPL. NOR flash is slow to write but fast to read, and
854 a memory-mapped device makes it very easy to access. Loading from
855 NOR is typically achieved with just a memcpy().
856
Vikas Manochac6d9e9d2017-05-28 12:55:11 -0700857config SPL_XIP_SUPPORT
858 bool "Support XIP"
859 depends on SPL
860 help
861 Enable support for execute in place of U-Boot or kernel image. There
862 is no need to copy image from flash to ram if flash supports execute
863 in place. Its very useful in systems having enough flash but not
864 enough ram to load the image.
865
Simon Glass11bde1c2016-09-13 07:05:23 -0600866config SPL_ONENAND_SUPPORT
867 bool "Support OneNAND flash"
Simon Glass11bde1c2016-09-13 07:05:23 -0600868 help
869 Enable support for OneNAND (Negative AND) flash in SPL. OneNAND is
870 a type of NAND flash and therefore can be used to allow SPL to
871 load U-Boot from supported devices. This enables the drivers in
872 drivers/mtd/onenand as part of an SPL build.
873
Heiko Schocherc20ae2f2016-10-06 07:55:15 +0200874config SPL_OS_BOOT
875 bool "Activate Falcon Mode"
Tom Rini226498b2017-05-22 19:21:57 +0000876 depends on !TI_SECURE_DEVICE
Heiko Schocherc20ae2f2016-10-06 07:55:15 +0200877 default n
878 help
879 Enable booting directly to an OS from SPL.
880 for more info read doc/README.falcon
881
Heiko Schocher29d3bc72016-10-06 07:55:16 +0200882if SPL_OS_BOOT
883config SYS_OS_BASE
884 hex "addr, where OS is found"
Tom Rini226498b2017-05-22 19:21:57 +0000885 depends on SPL_NOR_SUPPORT
Heiko Schocher29d3bc72016-10-06 07:55:16 +0200886 help
887 Specify the address, where the OS image is found, which
888 gets booted.
889
890endif # SPL_OS_BOOT
891
York Sun7550dbe2018-06-14 14:38:48 -0700892config SPL_PAYLOAD
893 string "SPL payload"
894 default "tpl/u-boot-with-tpl.bin" if TPL
895 default "u-boot.bin"
896 help
Chris Packham2dcfa052019-01-13 22:13:20 +1300897 Payload for SPL boot. For backward compatibility, default to
York Sun7550dbe2018-06-14 14:38:48 -0700898 u-boot.bin, i.e. RAW image without any header. In case of
899 TPL, tpl/u-boot-with-tpl.bin. For new boards, suggest to
900 use u-boot.img.
901
Sekhar Norid50d6812018-12-06 15:40:08 +0530902config SPL_PCI
Simon Glass2446b6b2017-01-16 07:03:30 -0700903 bool "Support PCI drivers"
Simon Glass2446b6b2017-01-16 07:03:30 -0700904 help
905 Enable support for PCI in SPL. For platforms that need PCI to boot,
906 or must perform some init using PCI in SPL, this provides the
907 necessary driver support. This enables the drivers in drivers/pci
908 as part of an SPL build.
909
Simon Glassbbe41ab2017-01-16 07:03:33 -0700910config SPL_PCH_SUPPORT
911 bool "Support PCH drivers"
Simon Glassbbe41ab2017-01-16 07:03:33 -0700912 help
913 Enable support for PCH (Platform Controller Hub) devices in SPL.
914 These are used to set up GPIOs and the SPI peripheral early in
915 boot. This enables the drivers in drivers/pch as part of an SPL
916 build.
917
Simon Glass11bde1c2016-09-13 07:05:23 -0600918config SPL_POST_MEM_SUPPORT
919 bool "Support POST drivers"
Simon Glass11bde1c2016-09-13 07:05:23 -0600920 help
921 Enable support for POST (Power-on Self Test) in SPL. POST is a
922 procedure that checks that the hardware (CPU or board) appears to
923 be functionally correctly. It is a sanity check that can be
924 performed before booting. This enables the drivers in post/drivers
925 as part of an SPL build.
926
Ley Foon Tanbfc6bae2018-06-14 18:45:19 +0800927config SPL_DM_RESET
Patrick Delaunay0e373c02018-03-12 10:46:05 +0100928 bool "Support reset drivers"
929 depends on SPL
930 help
931 Enable support for reset control in SPL.
932 That can be useful in SPL to handle IP reset in driver, as in U-Boot,
933 by using the generic reset API provided by driver model.
934 This enables the drivers in drivers/reset as part of an SPL build.
935
Simon Glass11bde1c2016-09-13 07:05:23 -0600936config SPL_POWER_SUPPORT
937 bool "Support power drivers"
Simon Glass11bde1c2016-09-13 07:05:23 -0600938 help
939 Enable support for power control in SPL. This includes support
940 for PMICs (Power-management Integrated Circuits) and some of the
941 features provided by PMICs. In particular, voltage regulators can
942 be used to enable/disable power and vary its voltage. That can be
943 useful in SPL to turn on boot peripherals and adjust CPU voltage
944 so that the clock speed can be increased. This enables the drivers
945 in drivers/power, drivers/power/pmic and drivers/power/regulator
946 as part of an SPL build.
947
Peng Fane13278c2018-07-27 10:20:37 +0800948config SPL_POWER_DOMAIN
949 bool "Support power domain drivers"
950 help
951 Enable support for power domain control in SPL. Many SoCs allow
952 power to be applied to or removed from portions of the SoC (power
953 domains). This may be used to save power. This API provides the
954 means to control such power management hardware. This enables
955 the drivers in drivers/power/domain as part of a SPL build.
956
Stefan Agner22802f42016-12-23 07:51:53 +0100957config SPL_RAM_SUPPORT
958 bool "Support booting from RAM"
Stefan Agner22802f42016-12-23 07:51:53 +0100959 default y if MICROBLAZE || ARCH_SOCFPGA || TEGRA || ARCH_ZYNQ
960 help
961 Enable booting of an image in RAM. The image can be preloaded or
962 it can be loaded by SPL directly into RAM (e.g. using USB).
963
Stefan Agnerf417d402016-12-23 07:51:52 +0100964config SPL_RAM_DEVICE
965 bool "Support booting from preloaded image in RAM"
Stefan Agner22802f42016-12-23 07:51:53 +0100966 depends on SPL_RAM_SUPPORT
Stefan Agnerf417d402016-12-23 07:51:52 +0100967 default y if MICROBLAZE || ARCH_SOCFPGA || TEGRA || ARCH_ZYNQ
968 help
969 Enable booting of an image already loaded in RAM. The image has to
970 be already in memory when SPL takes over, e.g. loaded by the boot
971 ROM.
972
Lokesh Vutla08c45312018-08-27 15:57:53 +0530973config SPL_REMOTEPROC
974 bool "Support REMOTEPROCS"
975 help
976 Enable support for REMOTEPROCs in SPL. This permits to load
977 a remote processor firmware in SPL.
978
Simon Glass30bf8a02017-01-16 07:03:31 -0700979config SPL_RTC_SUPPORT
980 bool "Support RTC drivers"
Simon Glass30bf8a02017-01-16 07:03:31 -0700981 help
982 Enable RTC (Real-time Clock) support in SPL. This includes support
983 for reading and setting the time. Some RTC devices also have some
984 non-volatile (battery-backed) memory which is accessible if
985 needed. This enables the drivers in drivers/rtc as part of an SPL
986 build.
987
Simon Glass11bde1c2016-09-13 07:05:23 -0600988config SPL_SATA_SUPPORT
989 bool "Support loading from SATA"
Simon Glass11bde1c2016-09-13 07:05:23 -0600990 help
991 Enable support for SATA (Serial AT attachment) in SPL. This allows
992 use of SATA devices such as hard drives and flash drivers for
993 loading U-Boot. SATA is used in higher-end embedded systems and
994 can provide higher performance than MMC , at somewhat higher
995 expense and power consumption. This enables loading from SATA
996 using a configured device.
997
Baruch Siach60ca9692019-07-14 17:54:21 +0300998config SPL_SATA_RAW_U_BOOT_USE_SECTOR
999 bool "SATA raw mode: by sector"
1000 depends on SPL_SATA_SUPPORT
1001 help
1002 Use sector number for specifying U-Boot location on SATA disk in
1003 raw mode.
1004
1005config SPL_SATA_RAW_U_BOOT_SECTOR
1006 hex "Sector on the SATA disk to load U-Boot from"
1007 depends on SPL_SATA_RAW_U_BOOT_USE_SECTOR
1008 help
1009 Sector on the SATA disk to load U-Boot from, when the SATA disk is being
1010 used in raw mode. Units: SATA disk sectors (1 sector = 512 bytes).
1011
Simon Glass11bde1c2016-09-13 07:05:23 -06001012config SPL_SERIAL_SUPPORT
1013 bool "Support serial"
Alex Kiernan14ad44a2018-04-19 04:32:54 +00001014 select SPL_PRINTF
1015 select SPL_STRTO
Simon Glass11bde1c2016-09-13 07:05:23 -06001016 help
1017 Enable support for serial in SPL. This allows use of a serial UART
1018 for displaying messages while SPL is running. It also brings in
1019 printf() and panic() functions. This should normally be enabled
1020 unless there are space reasons not to. Even then, consider
Simon Glass27084c02019-09-25 08:56:27 -06001021 enabling SPL_USE_TINY_PRINTF which is a small printf() version.
Simon Glass11bde1c2016-09-13 07:05:23 -06001022
Simon Goldschmidtd024e992019-10-25 16:22:09 +02001023config SPL_SPI_SUPPORT
1024 bool "Support SPI drivers"
1025 help
1026 Enable support for using SPI in SPL. This is used for connecting
1027 to SPI flash for loading U-Boot. See SPL_SPI_FLASH_SUPPORT for
1028 more details on that. The SPI driver provides the transport for
1029 data between the SPI flash and the CPU. This option can be used to
1030 enable SPI drivers that are needed for other purposes also, such
1031 as a SPI PMIC.
1032
Simon Glass11bde1c2016-09-13 07:05:23 -06001033config SPL_SPI_FLASH_SUPPORT
1034 bool "Support SPI flash drivers"
Simon Goldschmidtd024e992019-10-25 16:22:09 +02001035 depends on SPL_SPI_SUPPORT
Simon Glass11bde1c2016-09-13 07:05:23 -06001036 help
1037 Enable support for using SPI flash in SPL, and loading U-Boot from
1038 SPI flash. SPI flash (Serial Peripheral Bus flash) is named after
1039 the SPI bus that is used to connect it to a system. It is a simple
1040 but fast bidirectional 4-wire bus (clock, chip select and two data
1041 lines). This enables the drivers in drivers/mtd/spi as part of an
1042 SPL build. This normally requires SPL_SPI_SUPPORT.
1043
Vignesh R0c6f1872019-02-05 11:29:20 +05301044if SPL_SPI_FLASH_SUPPORT
1045
Vignesh R778572d2019-02-05 11:29:25 +05301046config SPL_SPI_FLASH_TINY
1047 bool "Enable low footprint SPL SPI Flash support"
1048 depends on !SPI_FLASH_BAR
Vignesh R72875972019-02-05 11:29:26 +05301049 default y if SPI_FLASH
Vignesh R778572d2019-02-05 11:29:25 +05301050 help
1051 Enable lightweight SPL SPI Flash support that supports just reading
1052 data/images from flash. No support to write/erase flash. Enable
1053 this if you have SPL size limitations and don't need full
1054 fledged SPI flash support.
1055
Vignesh R0c6f1872019-02-05 11:29:20 +05301056config SPL_SPI_FLASH_SFDP_SUPPORT
1057 bool "SFDP table parsing support for SPI NOR flashes"
Vignesh R778572d2019-02-05 11:29:25 +05301058 depends on !SPI_FLASH_BAR && !SPL_SPI_FLASH_TINY
Vignesh R0c6f1872019-02-05 11:29:20 +05301059 help
1060 Enable support for parsing and auto discovery of parameters for
1061 SPI NOR flashes using Serial Flash Discoverable Parameters (SFDP)
1062 tables as per JESD216 standard in SPL.
1063
Marek Vasut55500432018-04-07 16:05:27 +02001064config SPL_SPI_LOAD
1065 bool "Support loading from SPI flash"
Marek Vasut55500432018-04-07 16:05:27 +02001066 help
1067 Enable support for loading next stage, U-Boot or otherwise, from
1068 SPI NOR in U-Boot SPL.
1069
Vignesh R0c6f1872019-02-05 11:29:20 +05301070endif # SPL_SPI_FLASH_SUPPORT
1071
Hannes Schmelzer1ee774d2019-08-22 15:41:46 +02001072config SYS_SPI_U_BOOT_OFFS
1073 hex "address of u-boot payload in SPI flash"
1074 default 0x0
1075 depends on SPL_SPI_LOAD || SPL_SPI_SUNXI
1076 help
1077 Address within SPI-Flash from where the u-boot payload is fetched
1078 from.
1079
Faiz Abbas8502f9f2017-11-14 16:12:31 +05301080config SPL_THERMAL
1081 bool "Driver support for thermal devices"
1082 help
1083 Enable support for temperature-sensing devices. Some SoCs have on-chip
1084 temperature sensors to permit warnings, speed throttling or even
1085 automatic power-off when the temperature gets too high or low. Other
1086 devices may be discrete but connected on a suitable bus.
1087
Simon Glass11bde1c2016-09-13 07:05:23 -06001088config SPL_USB_HOST_SUPPORT
1089 bool "Support USB host drivers"
Tom Rini91ff6862018-12-05 08:23:38 -05001090 select HAVE_BLOCK_DEVICE
Simon Glass11bde1c2016-09-13 07:05:23 -06001091 help
1092 Enable access to USB (Universal Serial Bus) host devices so that
1093 SPL can load U-Boot from a connected USB peripheral, such as a USB
1094 flash stick. While USB takes a little longer to start up than most
1095 buses, it is very flexible since many different types of storage
1096 device can be attached. This option enables the drivers in
1097 drivers/usb/host as part of an SPL build.
1098
Abel Vesa79536012019-02-01 16:40:07 +00001099config SPL_USB_STORAGE
Simon Glass11bde1c2016-09-13 07:05:23 -06001100 bool "Support loading from USB"
Abel Vesa79536012019-02-01 16:40:07 +00001101 depends on SPL_USB_HOST_SUPPORT && !(BLK && !DM_USB)
Simon Glass11bde1c2016-09-13 07:05:23 -06001102 help
1103 Enable support for USB devices in SPL. This allows use of USB
1104 devices such as hard drives and flash drivers for loading U-Boot.
1105 The actual drivers are enabled separately using the normal U-Boot
1106 config options. This enables loading from USB using a configured
1107 device.
1108
Jean-Jacques Hiblotf811e972019-01-10 15:44:13 +01001109config SPL_USB_GADGET
Stefan Agnere94793c2016-11-21 10:58:53 -08001110 bool "Suppport USB Gadget drivers"
Stefan Agnere94793c2016-11-21 10:58:53 -08001111 help
1112 Enable USB Gadget API which allows to enable USB device functions
1113 in SPL.
1114
Jean-Jacques Hiblotf811e972019-01-10 15:44:13 +01001115if SPL_USB_GADGET
Stefan Agnere94793c2016-11-21 10:58:53 -08001116
Faiz Abbasb432b1e2018-02-16 21:17:44 +05301117config SPL_USB_ETHER
Stefan Agnere94793c2016-11-21 10:58:53 -08001118 bool "Support USB Ethernet drivers"
1119 help
1120 Enable access to the USB network subsystem and associated
1121 drivers in SPL. This permits SPL to load U-Boot over a
1122 USB-connected Ethernet link (such as a USB Ethernet dongle) rather
1123 than from an onboard peripheral. Environment support is required
1124 since the network stack uses a number of environment variables.
1125 See also SPL_NET_SUPPORT and SPL_ETH_SUPPORT.
1126
Andrew F. Davis6536ca42019-01-17 13:43:02 -06001127config SPL_DFU
Fabio Estevamc3c19c22018-08-31 10:02:28 -03001128 bool "Support DFU (Device Firmware Upgrade)"
Stefan Agner59917032016-11-21 10:58:52 -08001129 select SPL_HASH_SUPPORT
B, Ravi66928af2017-05-04 15:45:29 +05301130 select SPL_DFU_NO_RESET
B, Ravi1b19cbd2017-05-04 15:45:28 +05301131 depends on SPL_RAM_SUPPORT
Stefan Agner59917032016-11-21 10:58:52 -08001132 help
Fabio Estevamc3c19c22018-08-31 10:02:28 -03001133 This feature enables the DFU (Device Firmware Upgrade) in SPL with
Stefan Agner59917032016-11-21 10:58:52 -08001134 RAM memory device support. The ROM code will load and execute
1135 the SPL built with dfu. The user can load binaries (u-boot/kernel) to
1136 selected device partition from host-pc using dfu-utils.
1137 This feature is useful to flash the binaries to factory or bare-metal
1138 boards using USB interface.
1139
1140choice
1141 bool "DFU device selection"
Andrew F. Davis6536ca42019-01-17 13:43:02 -06001142 depends on SPL_DFU
Stefan Agner59917032016-11-21 10:58:52 -08001143
1144config SPL_DFU_RAM
1145 bool "RAM device"
Andrew F. Davis6536ca42019-01-17 13:43:02 -06001146 depends on SPL_DFU && SPL_RAM_SUPPORT
Stefan Agner59917032016-11-21 10:58:52 -08001147 help
1148 select RAM/DDR memory device for loading binary images
1149 (u-boot/kernel) to the selected device partition using
1150 DFU and execute the u-boot/kernel from RAM.
1151
1152endchoice
1153
Stefan Agnera3774c12017-08-16 11:00:54 -07001154config SPL_USB_SDP_SUPPORT
1155 bool "Support SDP (Serial Download Protocol)"
1156 help
1157 Enable Serial Download Protocol (SDP) device support in SPL. This
1158 allows to download images into memory and execute (jump to) them
1159 using the same protocol as implemented by the i.MX family's boot ROM.
Stefan Agnere94793c2016-11-21 10:58:53 -08001160endif
1161
Simon Glass11bde1c2016-09-13 07:05:23 -06001162config SPL_WATCHDOG_SUPPORT
1163 bool "Support watchdog drivers"
Marek Vasut6874cb72019-06-09 03:46:21 +02001164 imply SPL_WDT if !HW_WATCHDOG
Simon Glass11bde1c2016-09-13 07:05:23 -06001165 help
1166 Enable support for watchdog drivers in SPL. A watchdog is
1167 typically a hardware peripheral which can reset the system when it
1168 detects no activity for a while (such as a software crash). This
1169 enables the drivers in drivers/watchdog as part of an SPL build.
1170
1171config SPL_YMODEM_SUPPORT
1172 bool "Support loading using Ymodem"
Alex Kiernan3bac19c2018-04-19 04:32:52 +00001173 depends on SPL_SERIAL_SUPPORT
Simon Glass11bde1c2016-09-13 07:05:23 -06001174 help
1175 While loading from serial is slow it can be a useful backup when
1176 there is no other option. The Ymodem protocol provides a reliable
1177 means of transmitting U-Boot over a serial line for using in SPL,
1178 with a checksum to ensure correctness.
1179
Philipp Tomsichaa122f62017-09-13 21:29:36 +02001180config SPL_ATF
Kever Yangbcc17262017-05-05 11:47:45 +08001181 bool "Support ARM Trusted Firmware"
Tom Rini226498b2017-05-22 19:21:57 +00001182 depends on ARM64
Kever Yangbcc17262017-05-05 11:47:45 +08001183 help
Philipp Tomsichd21fb632018-01-02 21:16:43 +01001184 ATF(ARM Trusted Firmware) is a component for ARM AArch64 which
1185 is loaded by SPL (which is considered as BL2 in ATF terminology).
Kever Yangbcc17262017-05-05 11:47:45 +08001186 More detail at: https://github.com/ARM-software/arm-trusted-firmware
1187
Philipp Tomsichd21fb632018-01-02 21:16:43 +01001188config SPL_ATF_NO_PLATFORM_PARAM
1189 bool "Pass no platform parameter"
1190 depends on SPL_ATF
1191 help
1192 While we expect to call a pointer to a valid FDT (or NULL)
1193 as the platform parameter to an ATF, some ATF versions are
1194 not U-Boot aware and have an insufficiently robust parameter
1195 validation to gracefully reject a FDT being passed.
1196
1197 If this option is enabled, the spl_atf os-type handler will
1198 always pass NULL for the platform parameter.
1199
1200 If your ATF is affected, say Y.
1201
Alex Kiernan3bf5f132018-03-15 22:11:46 +00001202config SPL_AM33XX_ENABLE_RTC32K_OSC
1203 bool "Enable the RTC32K OSC on AM33xx based platforms"
1204 default y if AM33XX
1205 help
1206 Enable access to the AM33xx RTC and select the external 32kHz clock
1207 source.
1208
Kever Yang70fe2872018-08-23 17:17:59 +08001209config SPL_OPTEE
1210 bool "Support OP-TEE Trusted OS"
1211 depends on ARM
1212 help
1213 OP-TEE is an open source Trusted OS which is loaded by SPL.
1214 More detail at: https://github.com/OP-TEE/optee_os
1215
Lukas Auer5e30e452019-08-21 21:14:44 +02001216config SPL_OPENSBI
1217 bool "Support RISC-V OpenSBI"
1218 depends on RISCV && SPL_RISCV_MMODE && RISCV_SMODE
1219 help
1220 OpenSBI is an open-source implementation of the RISC-V Supervisor Binary
1221 Interface (SBI) specification. U-Boot supports the OpenSBI FW_DYNAMIC
1222 firmware. It is loaded and started by U-Boot SPL.
1223
1224 More details are available at https://github.com/riscv/opensbi and
1225 https://github.com/riscv/riscv-sbi-doc
1226
1227config SPL_OPENSBI_LOAD_ADDR
1228 hex "OpenSBI load address"
1229 depends on SPL_OPENSBI
1230 help
1231 Load address of the OpenSBI binary.
1232
Tom Rini226498b2017-05-22 19:21:57 +00001233config TPL
1234 bool
1235 depends on SUPPORT_TPL
1236 prompt "Enable TPL"
1237 help
1238 If you want to build TPL as well as the normal image and SPL, say Y.
1239
1240if TPL
1241
Simon Glassc52b5e82019-10-20 21:31:52 -06001242config TPL_SIZE_LIMIT
1243 hex "Maximum size of TPL image"
1244 depends on TPL
1245 default 0
1246 help
1247 Specifies the maximum length of the U-Boot TPL image.
1248 If this value is zero, it is ignored.
1249
Heiko Stuebner22b7b862019-07-16 10:12:02 +02001250config TPL_FRAMEWORK
1251 bool "Support TPL based upon the common SPL framework"
1252 default y if SPL_FRAMEWORK
1253 help
1254 Enable the SPL framework under common/spl/ for TPL builds.
1255 This framework supports MMC, NAND and YMODEM and other methods
1256 loading of U-Boot's SPL stage. If unsure, say Y.
1257
Simon Glassb0edea32018-11-15 18:44:09 -07001258config TPL_HANDOFF
1259 bool "Pass hand-off information from TPL to SPL and U-Boot proper"
Simon Glassa7da3d92019-09-25 08:11:17 -06001260 depends on HANDOFF && TPL_BLOBLIST
Simon Glassb0edea32018-11-15 18:44:09 -07001261 default y
1262 help
1263 This option enables TPL to write handoff information. This can be
1264 used to pass information like the size of SDRAM from TPL to U-Boot
1265 proper. The information is also available to SPL if it is useful
1266 there.
1267
Kever Yangaf2f4422018-01-20 18:00:26 +08001268config TPL_BOARD_INIT
1269 bool "Call board-specific initialization in TPL"
1270 help
1271 If this option is enabled, U-Boot will call the function
1272 spl_board_init() from board_init_r(). This function should be
1273 provided by the board.
1274
Philipp Tomsichdd6fbcb2017-07-28 19:20:49 +02001275config TPL_LDSCRIPT
1276 string "Linker script for the TPL stage"
1277 depends on TPL
Tom Rini2f41ade2019-01-22 17:09:26 -05001278 default "arch/arm/cpu/armv8/u-boot-spl.lds" if ARM64
1279 default "arch/$(ARCH)/cpu/u-boot-spl.lds"
Philipp Tomsichdd6fbcb2017-07-28 19:20:49 +02001280 help
1281 The TPL stage will usually require a different linker-script
1282 (as it runs from a different memory region) than the regular
1283 U-Boot stage. Set this to the path of the linker-script to
1284 be used for TPL.
1285
Philipp Tomsichb3ed6ce2017-07-28 20:02:34 +02001286 May be left empty to trigger the Makefile infrastructure to
1287 fall back to the linker-script used for the SPL stage.
1288
1289config TPL_NEEDS_SEPARATE_TEXT_BASE
1290 bool "TPL needs a separate text-base"
1291 default n
1292 depends on TPL
1293 help
1294 Enable, if the TPL stage should not inherit its text-base
1295 from the SPL stage. When enabled, a base address for the
1296 .text sections of the TPL stage has to be set below.
1297
1298config TPL_NEEDS_SEPARATE_STACK
1299 bool "TPL needs a separate initial stack-pointer"
1300 default n
1301 depends on TPL
1302 help
1303 Enable, if the TPL stage should not inherit its initial
1304 stack-pointer from the settings for the SPL stage.
1305
1306config TPL_TEXT_BASE
1307 hex "Base address for the .text section of the TPL stage"
1308 depends on TPL_NEEDS_SEPARATE_TEXT_BASE
1309 help
1310 The base address for the .text section of the TPL stage.
1311
1312config TPL_MAX_SIZE
1313 int "Maximum size (in bytes) for the TPL stage"
Philipp Tomsich5aa49af2017-07-28 20:20:41 +02001314 default 0
Philipp Tomsichb3ed6ce2017-07-28 20:02:34 +02001315 depends on TPL
1316 help
1317 The maximum size (in bytes) of the TPL stage.
1318
1319config TPL_STACK
1320 hex "Address of the initial stack-pointer for the TPL stage"
1321 depends on TPL_NEEDS_SEPARATE_STACK
1322 help
1323 The address of the initial stack-pointer for the TPL stage.
1324 Usually this will be the (aligned) top-of-stack.
1325
Philipp Tomsicha954fa32017-07-04 14:24:53 +02001326config TPL_BOOTROM_SUPPORT
1327 bool "Support returning to the BOOTROM (from TPL)"
1328 help
1329 Some platforms (e.g. the Rockchip RK3368) provide support in their
1330 ROM for loading the next boot-stage after performing basic setup
1331 from the TPL stage.
1332
1333 Enable this option, to return to the BOOTROM through the
1334 BOOT_DEVICE_BOOTROM (or fall-through to the next boot device in the
1335 boot device list, if not implemented for a given board)
1336
Philipp Tomsichc3916e72017-07-04 14:27:02 +02001337config TPL_DRIVERS_MISC_SUPPORT
1338 bool "Support misc drivers in TPL"
1339 help
1340 Enable miscellaneous drivers in TPL. These drivers perform various
1341 tasks that don't fall nicely into other categories, Enable this
1342 option to build the drivers in drivers/misc as part of an TPL
1343 build, for those that support building in TPL (not all drivers do).
1344
Simon Glassf73329e2016-09-12 23:18:27 -06001345config TPL_ENV_SUPPORT
1346 bool "Support an environment"
Simon Glassf73329e2016-09-12 23:18:27 -06001347 help
1348 Enable environment support in TPL. See SPL_ENV_SUPPORT for details.
1349
Simon Glass2d424eb2018-11-15 18:43:55 -07001350config TPL_GPIO_SUPPORT
1351 bool "Support GPIO in TPL"
1352 help
1353 Enable support for GPIOs (General-purpose Input/Output) in TPL.
1354 GPIOs allow U-Boot to read the state of an input line (high or
1355 low) and set the state of an output line. This can be used to
1356 drive LEDs, control power to various system parts and read user
1357 input. GPIOs can be useful in TPL to enable a 'sign-of-life' LED,
1358 for example. Enable this option to build the drivers in
1359 drivers/gpio as part of an TPL build.
1360
Simon Glassf73329e2016-09-12 23:18:27 -06001361config TPL_I2C_SUPPORT
1362 bool "Support I2C"
Simon Glassf73329e2016-09-12 23:18:27 -06001363 help
Philipp Tomsich616bd092017-07-28 17:03:03 +02001364 Enable support for the I2C bus in TPL. See SPL_I2C_SUPPORT for
Simon Glassf73329e2016-09-12 23:18:27 -06001365 details.
1366
1367config TPL_LIBCOMMON_SUPPORT
1368 bool "Support common libraries"
Simon Glassf73329e2016-09-12 23:18:27 -06001369 help
1370 Enable support for common U-Boot libraries within TPL. See
1371 SPL_LIBCOMMON_SUPPORT for details.
1372
1373config TPL_LIBGENERIC_SUPPORT
1374 bool "Support generic libraries"
Simon Glassf73329e2016-09-12 23:18:27 -06001375 help
1376 Enable support for generic U-Boot libraries within TPL. See
1377 SPL_LIBGENERIC_SUPPORT for details.
1378
1379config TPL_MPC8XXX_INIT_DDR_SUPPORT
1380 bool "Support MPC8XXX DDR init"
Simon Glassf73329e2016-09-12 23:18:27 -06001381 help
1382 Enable support for DDR-SDRAM on the MPC8XXX family within TPL. See
1383 SPL_MPC8XXX_INIT_DDR_SUPPORT for details.
1384
1385config TPL_MMC_SUPPORT
1386 bool "Support MMC"
Tom Rini226498b2017-05-22 19:21:57 +00001387 depends on MMC
Simon Glassf73329e2016-09-12 23:18:27 -06001388 help
1389 Enable support for MMC within TPL. See SPL_MMC_SUPPORT for details.
1390
1391config TPL_NAND_SUPPORT
1392 bool "Support NAND flash"
Simon Glassf73329e2016-09-12 23:18:27 -06001393 help
Philipp Tomsich616bd092017-07-28 17:03:03 +02001394 Enable support for NAND in TPL. See SPL_NAND_SUPPORT for details.
Simon Glassf73329e2016-09-12 23:18:27 -06001395
Sekhar Norid50d6812018-12-06 15:40:08 +05301396config TPL_PCI
Simon Glass2d424eb2018-11-15 18:43:55 -07001397 bool "Support PCI drivers"
1398 help
1399 Enable support for PCI in TPL. For platforms that need PCI to boot,
1400 or must perform some init using PCI in SPL, this provides the
1401 necessary driver support. This enables the drivers in drivers/pci
1402 as part of a TPL build.
1403
1404config TPL_PCH_SUPPORT
1405 bool "Support PCH drivers"
1406 help
1407 Enable support for PCH (Platform Controller Hub) devices in TPL.
1408 These are used to set up GPIOs and the SPI peripheral early in
1409 boot. This enables the drivers in drivers/pch as part of a TPL
1410 build.
1411
Marek Vasutd79dfd42018-04-07 17:03:45 +02001412config TPL_RAM_SUPPORT
1413 bool "Support booting from RAM"
1414 help
1415 Enable booting of an image in RAM. The image can be preloaded or
1416 it can be loaded by TPL directly into RAM (e.g. using USB).
1417
1418config TPL_RAM_DEVICE
1419 bool "Support booting from preloaded image in RAM"
1420 depends on TPL_RAM_SUPPORT
1421 help
1422 Enable booting of an image already loaded in RAM. The image has to
1423 be already in memory when TPL takes over, e.g. loaded by the boot
1424 ROM.
1425
Simon Glass2d424eb2018-11-15 18:43:55 -07001426config TPL_RTC_SUPPORT
1427 bool "Support RTC drivers"
1428 help
1429 Enable RTC (Real-time Clock) support in TPL. This includes support
1430 for reading and setting the time. Some RTC devices also have some
1431 non-volatile (battery-backed) memory which is accessible if
1432 needed. This enables the drivers in drivers/rtc as part of an TPL
1433 build.
1434
Simon Glassf73329e2016-09-12 23:18:27 -06001435config TPL_SERIAL_SUPPORT
1436 bool "Support serial"
Alex Kiernan14ad44a2018-04-19 04:32:54 +00001437 select TPL_PRINTF
1438 select TPL_STRTO
Simon Glassf73329e2016-09-12 23:18:27 -06001439 help
Philipp Tomsich616bd092017-07-28 17:03:03 +02001440 Enable support for serial in TPL. See SPL_SERIAL_SUPPORT for
Simon Glassf73329e2016-09-12 23:18:27 -06001441 details.
1442
1443config TPL_SPI_FLASH_SUPPORT
1444 bool "Support SPI flash drivers"
Simon Glassf73329e2016-09-12 23:18:27 -06001445 help
Philipp Tomsich616bd092017-07-28 17:03:03 +02001446 Enable support for using SPI flash in TPL. See SPL_SPI_FLASH_SUPPORT
Simon Glassf73329e2016-09-12 23:18:27 -06001447 for details.
1448
Marek Vasut1e725e22018-04-07 16:05:46 +02001449config TPL_SPI_LOAD
1450 bool "Support loading from SPI flash"
1451 depends on TPL_SPI_FLASH_SUPPORT
1452 help
1453 Enable support for loading next stage, U-Boot or otherwise, from
1454 SPI NOR in U-Boot TPL.
1455
Simon Glassf73329e2016-09-12 23:18:27 -06001456config TPL_SPI_SUPPORT
1457 bool "Support SPI drivers"
Simon Glassf73329e2016-09-12 23:18:27 -06001458 help
Philipp Tomsich616bd092017-07-28 17:03:03 +02001459 Enable support for using SPI in TPL. See SPL_SPI_SUPPORT for
Simon Glassf73329e2016-09-12 23:18:27 -06001460 details.
1461
Marek Vasut6ce3d672018-04-07 16:06:11 +02001462config TPL_YMODEM_SUPPORT
1463 bool "Support loading using Ymodem"
Alex Kiernan3bac19c2018-04-19 04:32:52 +00001464 depends on TPL_SERIAL_SUPPORT
Marek Vasut6ce3d672018-04-07 16:06:11 +02001465 help
1466 While loading from serial is slow it can be a useful backup when
1467 there is no other option. The Ymodem protocol provides a reliable
1468 means of transmitting U-Boot over a serial line for using in TPL,
1469 with a checksum to ensure correctness.
1470
Tom Rini226498b2017-05-22 19:21:57 +00001471endif # TPL
1472
Eugen Hristev0be07872019-05-24 09:38:10 +03001473config SPL_AT91_MCK_BYPASS
1474 bool "Use external clock signal as a source of main clock for AT91 platforms"
1475 depends on ARCH_AT91
1476 default n
1477 help
1478 Use external 8 to 24 Mhz clock signal as source of main clock instead
1479 of an external crystal oscillator.
1480 This option disables the internal driving on the XOUT pin.
1481 The external source has to provide a stable clock on the XIN pin.
1482 If this option is disabled, the SoC expects a crystal oscillator
1483 that needs driving on both XIN and XOUT lines.
1484
Tom Rini226498b2017-05-22 19:21:57 +00001485endif # SPL
Simon Glass11bde1c2016-09-13 07:05:23 -06001486endmenu