[U-Boot] [PATCH 8/8] ARM: hikey: Adjust SDRAM_1_SIZE to 0x3EFFFFFF
Peter Griffin
peter.griffin at linaro.org
Wed Sep 9 23:13:55 CEST 2015
DRAM region 0x3f000000 - 0x3fffffff is reserved for OP-TEE. Touching
0x3f000000 memory location from unsecure world causes the board
to hang.
Signed-off-by: Peter Griffin <peter.griffin at linaro.org>
---
include/configs/hikey.h | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/include/configs/hikey.h b/include/configs/hikey.h
index 578cccd..2bd90ad 100644
--- a/include/configs/hikey.h
+++ b/include/configs/hikey.h
@@ -40,7 +40,8 @@
#define PHYS_SDRAM_1 0x00000000
/* 1008 MB (the last 16Mb are secured for TrustZone by ATF*/
-#define PHYS_SDRAM_1_SIZE 0x3f000000
+#define PHYS_SDRAM_1_SIZE 0x3EFFFFFF
+
#define CONFIG_SYS_SDRAM_BASE PHYS_SDRAM_1
#define CONFIG_SYS_INIT_RAM_SIZE 0x1000
--
1.9.1
More information about the U-Boot
mailing list