blob: 809ae7eb25da7431cc2140ed1e06f58c2c284cbd [file] [log] [blame]
Sandrine Bailleux3cd87d72018-10-09 11:12:55 +02001/*
2 * Copyright (c) 2018, Arm Limited. All rights reserved.
3 *
4 * SPDX-License-Identifier: BSD-3-Clause
5 */
6
7#ifndef __PLATFORM_H__
8#define __PLATFORM_H__
9
10#define PRIMARY_CPU_MPID 0x0
11
12/* Always expect 8 cores, although this is configurable on FVP */
13#define CPUS_COUNT 8
14
15#define UART_BASE 0x1c090000
16
17#define FVP_MAX_CPUS_PER_CLUSTER 4
18/* Currently multi-threaded CPUs only have a single thread */
19#define FVP_MAX_PE_PER_CPU 1
20
21#endif /* __PLATFORM_H__ */