diff options
author | Michael Walle <michael@walle.cc> | 2020-11-18 17:45:58 +0100 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2020-12-04 16:09:06 -0500 |
commit | 7b866825cd354a358eff8f62207701771e0511bd (patch) | |
tree | 07a7d376e9770b502bb350fe727717dc86e39809 /common/spl/Kconfig | |
parent | 553825c1090c9f6968e81a0d40d0a3f42202fc6b (diff) | |
download | u-boot-7b866825cd354a358eff8f62207701771e0511bd.tar.gz u-boot-7b866825cd354a358eff8f62207701771e0511bd.tar.xz u-boot-7b866825cd354a358eff8f62207701771e0511bd.zip |
spl: atf: add support for LOAD_IMAGE_V2
Newer platforms use the LOAD_IMAGE_V2 parameter passing method. Add
support for it.
Signed-off-by: Michael Walle <michael@walle.cc>
Diffstat (limited to 'common/spl/Kconfig')
-rw-r--r-- | common/spl/Kconfig | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/common/spl/Kconfig b/common/spl/Kconfig index d8086bd9e8..6d980be0b7 100644 --- a/common/spl/Kconfig +++ b/common/spl/Kconfig @@ -1276,6 +1276,15 @@ config SPL_ATF is loaded by SPL (which is considered as BL2 in ATF terminology). More detail at: https://github.com/ARM-software/arm-trusted-firmware +config SPL_ATF_LOAD_IMAGE_V2 + bool "Use the new LOAD_IMAGE_V2 parameter passing" + depends on SPL_ATF + help + Some platforms use the newer LOAD_IMAGE_V2 parameter passing. + + If you want to load a bl31 image from the SPL and need the new + method, say Y. + config SPL_ATF_NO_PLATFORM_PARAM bool "Pass no platform parameter" depends on SPL_ATF |