blob: e83cd57648398f9a4fffcd374684008109a15ae8 [file] [log] [blame]
Nariman Poushinc703f902018-03-07 10:29:57 +00001/*
Suyash Pathak00b99832020-02-12 10:36:20 +05302 * Copyright (c) 2018-2020, ARM Limited and Contributors. All rights reserved.
Nariman Poushinc703f902018-03-07 10:29:57 +00003 *
4 * SPDX-License-Identifier: BSD-3-Clause
5 */
6
Antonio Nino Diaz5eb88372018-11-08 10:20:19 +00007#ifndef PLATFORM_DEF_H
8#define PLATFORM_DEF_H
Nariman Poushinc703f902018-03-07 10:29:57 +00009
10#include <sgm_base_platform_def.h>
11
Deepika Bhavnani4287c0c2019-12-13 10:23:18 -060012#define PLAT_MAX_CPUS_PER_CLUSTER U(8)
13#define PLAT_MAX_PE_PER_CPU U(1)
Nariman Poushinc703f902018-03-07 10:29:57 +000014
Suyash Pathak00b99832020-02-12 10:36:20 +053015#define PLAT_ARM_DRAM2_BASE ULL(0x880000000)
16#define PLAT_ARM_DRAM2_SIZE ULL(0x180000000)
17
Manoj Kumar69bebd82019-06-21 17:07:13 +010018/*
19 * Physical and virtual address space limits for MMU in AARCH64 & AARCH32 modes
20 */
Julius Werner8e0ef0f2019-07-09 14:02:43 -070021#ifdef __aarch64__
Manoj Kumar69bebd82019-06-21 17:07:13 +010022#define PLAT_PHY_ADDR_SPACE_SIZE (1ULL << 36)
23#define PLAT_VIRT_ADDR_SPACE_SIZE (1ULL << 36)
24#else
25#define PLAT_PHY_ADDR_SPACE_SIZE (1ULL << 32)
26#define PLAT_VIRT_ADDR_SPACE_SIZE (1ULL << 32)
27#endif
28
Antonio Nino Diaz5eb88372018-11-08 10:20:19 +000029#endif /* PLATFORM_DEF_H */