diff options
author | Randolph <randolph@andestech.com> | 2023-12-29 16:32:22 +0800 |
---|---|---|
committer | Leo Yu-Chi Liang <ycliang@andestech.com> | 2024-01-31 16:51:03 +0800 |
commit | 10c4ab898c251a9f8d79b525880a1751b4815350 (patch) | |
tree | d87c8969a165f68a408f5986035648e642aa62ee /common/spl/Kconfig | |
parent | 011d07b4d8de909202f0d137a53e83ea110436e3 (diff) | |
download | u-boot-10c4ab898c251a9f8d79b525880a1751b4815350.zip u-boot-10c4ab898c251a9f8d79b525880a1751b4815350.tar.gz u-boot-10c4ab898c251a9f8d79b525880a1751b4815350.tar.bz2 |
spl: riscv: falcon: move fdt blob to specified address
In Falcon Boot mode, the fdt blob should be move to the RAM from
kernel BSS section. To avoid being cleared by BSS initialisation.
SPL_PAYLOAD_ARGS_ADDR is the address where SPL copies.
Signed-off-by: Randolph <randolph@andestech.com>
Reviewed-by: Leo Yu-Chi Liang <ycliang@andestech.com>
Diffstat (limited to 'common/spl/Kconfig')
-rw-r--r-- | common/spl/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/spl/Kconfig b/common/spl/Kconfig index 6a4772e..8805dd3 100644 --- a/common/spl/Kconfig +++ b/common/spl/Kconfig @@ -1113,7 +1113,7 @@ config SPL_OS_BOOT config SPL_PAYLOAD_ARGS_ADDR hex "Address in memory to load 'args' file for Falcon Mode to" - depends on SPL_OS_BOOT + depends on SPL_OS_BOOT || SPL_LOAD_FIT_OPENSBI_OS_BOOT default 0x88000000 if ARCH_OMAP2PLUS help Address in memory where the 'args' file, typically a device tree |