Commit fe458325 authored by Masahiro Yamada's avatar Masahiro Yamada
Browse files

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: default avatarMasahiro Yamada <yamada.masahiro@socionext.com>
parent 58b6fccf
...@@ -47,7 +47,7 @@ ...@@ -47,7 +47,7 @@
#define BL32_LIMIT (UNIPHIER_SEC_DRAM_LIMIT) #define BL32_LIMIT (UNIPHIER_SEC_DRAM_LIMIT)
#define UNIPHIER_BLOCK_BUF_SIZE 0x00400000 #define UNIPHIER_BLOCK_BUF_SIZE 0x00400000
#define UNIPHIER_BLOCK_BUF_BASE ((BL2_LIMIT) - \ #define UNIPHIER_BLOCK_BUF_BASE ((BL2_BASE) - \
(UNIPHIER_BLOCK_BUF_SIZE)) (UNIPHIER_BLOCK_BUF_SIZE))
#define PLAT_PHY_ADDR_SPACE_SIZE (1ULL << 32) #define PLAT_PHY_ADDR_SPACE_SIZE (1ULL << 32)
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment