diff options
author | Steven Kao <skao@nvidia.com> | 2018-02-09 21:01:49 +0800 |
---|---|---|
committer | Varun Wadekar <vwadekar@nvidia.com> | 2019-12-10 09:57:24 -0800 |
commit | 56c27438bd2ace11c520559a073e6eac92802a13 (patch) | |
tree | 8234c8ea6b64c008b7327c3dcddea6d0de0b2819 /plat | |
parent | 4719bba93d166368d74c83c4cef71598a4bff888 (diff) | |
download | platform_external_arm-trusted-firmware-56c27438bd2ace11c520559a073e6eac92802a13.tar.gz platform_external_arm-trusted-firmware-56c27438bd2ace11c520559a073e6eac92802a13.tar.bz2 platform_external_arm-trusted-firmware-56c27438bd2ace11c520559a073e6eac92802a13.zip |
Tegra194: 40-bit wide memory address space
This patch updates the memory address space, physical and virtual,
to be 40-bits wide for all Tegra194 platforms.
Change-Id: Ie1bcdec2c4e8e15975048ce1c2a31c2ae0dd494c
Signed-off-by: Steven Kao <skao@nvidia.com>
Diffstat (limited to 'plat')
-rw-r--r-- | plat/nvidia/tegra/include/t194/tegra_def.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/plat/nvidia/tegra/include/t194/tegra_def.h b/plat/nvidia/tegra/include/t194/tegra_def.h index 1a9ba0a84..67f5abbd2 100644 --- a/plat/nvidia/tegra/include/t194/tegra_def.h +++ b/plat/nvidia/tegra/include/t194/tegra_def.h @@ -10,6 +10,12 @@ #include <lib/utils_def.h> /******************************************************************************* + * Chip specific page table and MMU setup constants + ******************************************************************************/ +#define PLAT_PHY_ADDR_SPACE_SIZE (ULL(1) << 40) +#define PLAT_VIRT_ADDR_SPACE_SIZE (ULL(1) << 40) + +/******************************************************************************* * These values are used by the PSCI implementation during the `CPU_SUSPEND` * and `SYSTEM_SUSPEND` calls as the `state-id` field in the 'power state' * parameter. |