diff options
author | Masahiro Yamada <yamada.masahiro@socionext.com> | 2017-12-20 01:30:08 +0900 |
---|---|---|
committer | Masahiro Yamada <yamada.masahiro@socionext.com> | 2017-12-20 12:33:01 +0900 |
commit | fe458325d04709035f1f5fca2b5946a0fd11c4a7 (patch) | |
tree | 1a455eb55113012e5b6e62621c8da8a4db13c66f /plat | |
parent | 58b6fccffe7147e7eca6b6738d1732c6c3cc9f42 (diff) | |
download | platform_external_arm-trusted-firmware-fe458325d04709035f1f5fca2b5946a0fd11c4a7.tar.gz platform_external_arm-trusted-firmware-fe458325d04709035f1f5fca2b5946a0fd11c4a7.tar.bz2 platform_external_arm-trusted-firmware-fe458325d04709035f1f5fca2b5946a0fd11c4a7.zip |
uniphier: fix base address of IO block buffer
The current IO block buffer overlaps with BL2 image location.
So, BL2 may corrupt itself.
Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Diffstat (limited to 'plat')
-rw-r--r-- | plat/socionext/uniphier/include/platform_def.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plat/socionext/uniphier/include/platform_def.h b/plat/socionext/uniphier/include/platform_def.h index b5dc16aa9..cc046eb40 100644 --- a/plat/socionext/uniphier/include/platform_def.h +++ b/plat/socionext/uniphier/include/platform_def.h @@ -47,7 +47,7 @@ #define BL32_LIMIT (UNIPHIER_SEC_DRAM_LIMIT) #define UNIPHIER_BLOCK_BUF_SIZE 0x00400000 -#define UNIPHIER_BLOCK_BUF_BASE ((BL2_LIMIT) - \ +#define UNIPHIER_BLOCK_BUF_BASE ((BL2_BASE) - \ (UNIPHIER_BLOCK_BUF_SIZE)) #define PLAT_PHY_ADDR_SPACE_SIZE (1ULL << 32) |