summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNeal Frager <[email protected]>2025-12-17 12:51:07 +0000
committerMichal Simek <[email protected]>2025-12-19 10:57:58 +0100
commit0b880fc95dbaed88dd55060730857b8f52765c57 (patch)
treecf2ed675d23964af98b3b4400162c2733612cfe1
parent6b743f66d83934cb5435a328a5be09697123428e (diff)
arch/arm/mach-zynqmp: configure default BL32_LOAD_ADDR
The default entry point address for the optee-os tee.bin for the zynqmp platform is 0x60000000. For this reason, set the default u-boot BL32_LOAD_ADDR to match the default optee-os entry point address of 0x60000000. Signed-off-by: Neal Frager <[email protected]> Signed-off-by: Michal Simek <[email protected]> Link: https://lore.kernel.org/r/[email protected]
-rw-r--r--arch/arm/mach-zynqmp/Kconfig2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-zynqmp/Kconfig b/arch/arm/mach-zynqmp/Kconfig
index 151cfada436..8a4356bc060 100644
--- a/arch/arm/mach-zynqmp/Kconfig
+++ b/arch/arm/mach-zynqmp/Kconfig
@@ -138,7 +138,7 @@ config BL31_LOAD_ADDR
config BL32_LOAD_ADDR
hex "Load address of BL32 image (mostly secure OS)"
- default 0
+ default 0x60000000
help
The load address for the BL32 image. This value is used to build the
FIT image header that places BL32 in memory where it will run.