blob: 3e1fdd129f039f5cadacddc703ec36b9aa5b930a [file] [log] [blame]
Nariman Poushinc703f902018-03-07 10:29:57 +00001/*
2 * Copyright (c) 2018, ARM Limited and Contributors. All rights reserved.
3 *
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
12#define PLAT_MAX_CPUS_PER_CLUSTER 8
13#define PLAT_MAX_PE_PER_CPU 1
14
Manoj Kumar69bebd82019-06-21 17:07:13 +010015/*
16 * Physical and virtual address space limits for MMU in AARCH64 & AARCH32 modes
17 */
18#ifndef AARCH32
19#define PLAT_PHY_ADDR_SPACE_SIZE (1ULL << 36)
20#define PLAT_VIRT_ADDR_SPACE_SIZE (1ULL << 36)
21#else
22#define PLAT_PHY_ADDR_SPACE_SIZE (1ULL << 32)
23#define PLAT_VIRT_ADDR_SPACE_SIZE (1ULL << 32)
24#endif
25
Antonio Nino Diaz5eb88372018-11-08 10:20:19 +000026#endif /* PLATFORM_DEF_H */