aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSteven Kao <skao@nvidia.com>2016-11-24 19:24:37 +0800
committerVarun Wadekar <vwadekar@nvidia.com>2017-03-02 13:02:27 -0800
commitb5903dfcaf3d92a4761e7156229ea4887c344100 (patch)
tree10e6a9c3390d397cb956528c9c20e75e9ac084ee
parent9b514f83121fc03f5a519254df9a04200503ae20 (diff)
downloadarm-trusted-firmware-b5903dfcaf3d92a4761e7156229ea4887c344100.tar.gz
Tegra: increase ADDR_SPACE_SIZE to 35 bits
This patch increases the ADDR_SPACE_SIZE macro (virtual address) to 35 bits, to support max memory of 32G, for all Tegra platforms. Change-Id: I8e6861601d3a667d7428988c7596b0adebfa0548 Signed-off-by: Steven kao <skao@nvidia.com> Signed-off-by: Varun Wadekar <vwadekar@nvidia.com>
-rw-r--r--plat/nvidia/tegra/include/platform_def.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/plat/nvidia/tegra/include/platform_def.h b/plat/nvidia/tegra/include/platform_def.h
index ad245e2f..4df309d3 100644
--- a/plat/nvidia/tegra/include/platform_def.h
+++ b/plat/nvidia/tegra/include/platform_def.h
@@ -77,7 +77,7 @@
/*******************************************************************************
* Platform specific page table and MMU setup constants
******************************************************************************/
-#define ADDR_SPACE_SIZE (1ull << 32)
+#define ADDR_SPACE_SIZE (1ull << 35)
/*******************************************************************************
* Some data must be aligned on the biggest cache line size in the platform.