-menu "SPL / TPL / VPL"
-
config SUPPORT_SPL
bool
bool
config SPL
- bool
+ bool "Enable SPL"
depends on SUPPORT_SPL
- prompt "Enable SPL"
help
If you want to build SPL as well as the normal image, say Y.
+menu "SPL configuration options"
+ depends on SPL
+
config SPL_FRAMEWORK
bool "Support SPL based upon the common SPL framework"
- depends on SPL
default y
help
Enable the SPL framework under common/spl/. This framework
config SPL_SIZE_LIMIT
hex "Maximum size of SPL image"
- depends on SPL
default 0x11000 if ARCH_MX6 && !MX6_OCRAM_256KB
default 0x31000 if ARCH_MX6 && MX6_OCRAM_256KB
default 0x0
choice
prompt "Enforce SPL BSS limit"
- depends on SPL && !PPC
+ depends on !PPC
default SPL_BSS_LIMIT
help
In some platforms we only want to enforce a limit on the size of the
config HANDOFF
bool "Pass hand-off information from SPL to U-Boot proper"
- depends on SPL && BLOBLIST
+ depends on BLOBLIST
help
It is useful to be able to pass information from SPL to U-Boot
proper to preserve state that is known in SPL and is needed in U-Boot.
in boot. It is available in gd->handoff. The state state is set up
in SPL (or TPL if that is being used).
-if SPL
-
config SPL_HANDOFF
bool "Pass hand-off information from SPL to U-Boot proper"
depends on HANDOFF && SPL_BLOBLIST
are correct, without further integrity checks.
config SPL_SYS_MALLOC_SIMPLE
- bool
- prompt "Only use malloc_simple functions in the SPL"
+ bool "Only use malloc_simple functions in the SPL"
help
Say Y here to only use the *_simple malloc functions from
malloc_simple.c, rather then using the versions from dlmalloc.c;
config SPL_XIP_SUPPORT
bool "Support XIP"
- depends on SPL
help
Enable support for execute in place of U-Boot or kernel image. There
is no need to copy image from flash to ram if flash supports execute
config SPL_DM_RESET
bool "Support reset drivers"
- depends on SPL
help
Enable support for reset control in SPL.
That can be useful in SPL to handle IP reset in driver, as in U-Boot,
On some platforms we need to have 'make' run additional build target
rules. If required on your platform, enter it here, otherwise leave blank.
+
+config SPL_AT91_MCK_BYPASS
+ bool "Use external clock signal as a source of main clock for AT91 platforms"
+ depends on ARCH_AT91
+ help
+ Use external 8 to 24 Mhz clock signal as source of main clock instead
+ of an external crystal oscillator.
+ This option disables the internal driving on the XOUT pin.
+ The external source has to provide a stable clock on the XIN pin.
+ If this option is disabled, the SoC expects a crystal oscillator
+ that needs driving on both XIN and XOUT lines.
+endmenu
+
config TPL
- bool
depends on SUPPORT_TPL
- prompt "Enable TPL"
+ bool "Enable TPL"
help
If you want to build TPL as well as the normal image and SPL, say Y.
source "common/spl/Kconfig.tpl"
config VPL
- bool
depends on SUPPORT_SPL
- prompt "Enable VPL"
+ bool "Enable VPL"
help
If you want to build VPL as well as the normal image, TPL and SPL,
say Y.
source "common/spl/Kconfig.vpl"
-
-config SPL_AT91_MCK_BYPASS
- bool "Use external clock signal as a source of main clock for AT91 platforms"
- depends on ARCH_AT91
- help
- Use external 8 to 24 Mhz clock signal as source of main clock instead
- of an external crystal oscillator.
- This option disables the internal driving on the XOUT pin.
- The external source has to provide a stable clock on the XIN pin.
- If this option is disabled, the SoC expects a crystal oscillator
- that needs driving on both XIN and XOUT lines.
-
-endif # SPL
-endmenu