From b5903dfcaf3d92a4761e7156229ea4887c344100 Mon Sep 17 00:00:00 2001 From: Steven Kao Date: Thu, 24 Nov 2016 19:24:37 +0800 Subject: [PATCH] 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 Signed-off-by: Varun Wadekar --- plat/nvidia/tegra/include/platform_def.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plat/nvidia/tegra/include/platform_def.h b/plat/nvidia/tegra/include/platform_def.h index ad245e2f89..4df309d366 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.