aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVijayenthiran Subramaniam <vijayenthiran.subramaniam@arm.com>2019-10-23 10:24:57 +0530
committerThomas Abraham <thomas.abraham@arm.com>2019-10-23 17:37:46 +0530
commit1f42c0368d5ffa6abadc6eec0f4ca301ba861306 (patch)
tree9d88416c35079138864b769d764cf90cb350d499
parent8a610f8294335530bd7b190641c43b1788e9725c (diff)
board/rddaniel-2xlr: increase pa and va to 43 bits
In rd-daniel-2xlr platforms the address space for second chip (chip 1) ranges from 4TB to 8TB. To accomadate this address space increase pa and va to 43 bits. Change-Id: I591267d74476b23744815deb81a32c35021bed65 Signed-off-by: Vijayenthiran Subramaniam <vijayenthiran.subramaniam@arm.com>
-rw-r--r--plat/arm/board/rddaniel/include/platform_def.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/plat/arm/board/rddaniel/include/platform_def.h b/plat/arm/board/rddaniel/include/platform_def.h
index 5168f79cd..e723fe30a 100644
--- a/plat/arm/board/rddaniel/include/platform_def.h
+++ b/plat/arm/board/rddaniel/include/platform_def.h
@@ -28,8 +28,8 @@
* Physical and virtual address space limits for MMU in AARCH64 & AARCH32 modes
*/
#ifdef __aarch64__
-#define PLAT_PHY_ADDR_SPACE_SIZE (1ULL << 36)
-#define PLAT_VIRT_ADDR_SPACE_SIZE (1ULL << 36)
+#define PLAT_PHY_ADDR_SPACE_SIZE (1ULL << 43)
+#define PLAT_VIRT_ADDR_SPACE_SIZE (1ULL << 43)
#else
#define PLAT_PHY_ADDR_SPACE_SIZE (1ULL << 32)
#define PLAT_VIRT_ADDR_SPACE_SIZE (1ULL << 32)