summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYann Gautier <yann.gautier@st.com>2026-06-26 07:01:03 +0000
committerTrustedFirmware Code Review <review@review.trustedfirmware.org>2026-06-26 07:01:03 +0000
commit347d1c1641384d891716e7528992158228b5fd07 (patch)
tree9e535c3bc3435b4ec62538a41ed90cfd5710b4e7
parent5da9bc26bb5bfbb466a092d2169f0c82ea49b938 (diff)
parentd698ebe25574ebc2bb9bfda57bdeb70c126b2257 (diff)
downloadarm-trusted-firmware-347d1c1641384d891716e7528992158228b5fd07.tar.gz
arm-trusted-firmware-347d1c1641384d891716e7528992158228b5fd07.zip
Merge "fix(qemu): add TB_FW_CONFIG_SIZE and TOS_FW_CONFIG_SIZE defines" into integration
-rw-r--r--plat/qemu/qemu/include/platform_def.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/plat/qemu/qemu/include/platform_def.h b/plat/qemu/qemu/include/platform_def.h
index 72f343eb5..14e3823d3 100644
--- a/plat/qemu/qemu/include/platform_def.h
+++ b/plat/qemu/qemu/include/platform_def.h
@@ -112,9 +112,11 @@
#define BL_RAM_SIZE (SEC_SRAM_SIZE - SHARED_RAM_SIZE)
#define TB_FW_CONFIG_BASE BL_RAM_BASE
-#define TB_FW_CONFIG_LIMIT (TB_FW_CONFIG_BASE + PAGE_SIZE)
+#define TB_FW_CONFIG_SIZE PAGE_SIZE
+#define TB_FW_CONFIG_LIMIT (TB_FW_CONFIG_BASE + TB_FW_CONFIG_SIZE)
#define TOS_FW_CONFIG_BASE TB_FW_CONFIG_LIMIT
-#define TOS_FW_CONFIG_LIMIT (TOS_FW_CONFIG_BASE + PAGE_SIZE)
+#define TOS_FW_CONFIG_SIZE PAGE_SIZE
+#define TOS_FW_CONFIG_LIMIT (TOS_FW_CONFIG_BASE + TOS_FW_CONFIG_SIZE)
/*
* BL1 specific defines.