blob: 872b6eeb8d5a58ed58b19111e0684c202336ee34 [file] [log] [blame]
Michal Simek91794362022-08-31 16:45:14 +02001/*
Michal Simek2a47faa2023-04-14 08:43:51 +02002 * Copyright (c) 2018-2020, Arm Limited and Contributors. All rights reserved.
Michal Simek91794362022-08-31 16:45:14 +02003 * Copyright (c) 2021-2022, Xilinx, Inc. All rights reserved.
Jay Buddhabhatti6a44ad02023-02-28 01:23:04 -08004 * Copyright (c) 2022-2023, Advanced Micro Devices, Inc. All rights reserved.
Michal Simek91794362022-08-31 16:45:14 +02005 *
6 * SPDX-License-Identifier: BSD-3-Clause
7 */
8
9#ifndef PLATFORM_DEF_H
10#define PLATFORM_DEF_H
11
12#include <arch.h>
13#include "versal_net_def.h"
14
15/*******************************************************************************
16 * Generic platform constants
17 ******************************************************************************/
18
19/* Size of cacheable stacks */
20#define PLATFORM_STACK_SIZE U(0x440)
21
22#define PLATFORM_CLUSTER_COUNT U(4)
23#define PLATFORM_CORE_COUNT_PER_CLUSTER U(4) /* 4 CPUs per cluster */
24
25#define PLATFORM_CORE_COUNT (PLATFORM_CLUSTER_COUNT * PLATFORM_CORE_COUNT_PER_CLUSTER)
26
27#define PLAT_MAX_PWR_LVL U(2)
28#define PLAT_MAX_RET_STATE U(1)
29#define PLAT_MAX_OFF_STATE U(2)
30
31/*******************************************************************************
32 * BL31 specific defines.
33 ******************************************************************************/
34/*
35 * Put BL31 at the top of the Trusted SRAM (just below the shared memory, if
36 * present). BL31_BASE is calculated using the current BL31 debug size plus a
37 * little space for growth.
38 */
39#ifndef VERSAL_NET_ATF_MEM_BASE
40# define BL31_BASE U(0xBBF00000)
Michal Simekc5b04f52023-05-24 12:35:34 +020041# define BL31_LIMIT U(0xBC000000)
Michal Simek91794362022-08-31 16:45:14 +020042#else
43# define BL31_BASE U(VERSAL_NET_ATF_MEM_BASE)
Michal Simekc5b04f52023-05-24 12:35:34 +020044# define BL31_LIMIT U(VERSAL_NET_ATF_MEM_BASE + VERSAL_NET_ATF_MEM_SIZE)
Michal Simek91794362022-08-31 16:45:14 +020045# ifdef VERSAL_NET_ATF_MEM_PROGBITS_SIZE
46# define BL31_PROGBITS_LIMIT U(VERSAL_NET_ATF_MEM_BASE + \
Michal Simekc5b04f52023-05-24 12:35:34 +020047 VERSAL_NET_ATF_MEM_PROGBITS_SIZE)
Michal Simek91794362022-08-31 16:45:14 +020048# endif
49#endif
50
51/*******************************************************************************
52 * BL32 specific defines.
53 ******************************************************************************/
54#ifndef VERSAL_NET_BL32_MEM_BASE
55# define BL32_BASE U(0x60000000)
Michal Simekc5b04f52023-05-24 12:35:34 +020056# define BL32_LIMIT U(0x80000000)
Michal Simek91794362022-08-31 16:45:14 +020057#else
58# define BL32_BASE U(VERSAL_NET_BL32_MEM_BASE)
Michal Simekc5b04f52023-05-24 12:35:34 +020059# define BL32_LIMIT U(VERSAL_NET_BL32_MEM_BASE + VERSAL_NET_BL32_MEM_SIZE)
Michal Simek91794362022-08-31 16:45:14 +020060#endif
61
62/*******************************************************************************
63 * BL33 specific defines.
64 ******************************************************************************/
65#ifndef PRELOADED_BL33_BASE
66# define PLAT_ARM_NS_IMAGE_BASE U(0x8000000)
67#else
68# define PLAT_ARM_NS_IMAGE_BASE U(PRELOADED_BL33_BASE)
69#endif
70
71/*******************************************************************************
72 * TSP specific defines.
73 ******************************************************************************/
74#define TSP_SEC_MEM_BASE BL32_BASE
Michal Simekc5b04f52023-05-24 12:35:34 +020075#define TSP_SEC_MEM_SIZE (BL32_LIMIT - BL32_BASE)
Michal Simek91794362022-08-31 16:45:14 +020076
77/* ID of the secure physical generic timer interrupt used by the TSP */
78#define TSP_IRQ_SEC_PHY_TIMER ARM_IRQ_SEC_PHY_TIMER
79
80/*******************************************************************************
81 * Platform specific page table and MMU setup constants
82 ******************************************************************************/
83#define PLAT_DDR_LOWMEM_MAX U(0x80000000)
84
85#define PLAT_PHY_ADDR_SPACE_SIZE (1ULL << 32U)
86#define PLAT_VIRT_ADDR_SPACE_SIZE (1ULL << 32U)
Amit Nagalefefcd42023-07-10 10:43:29 +053087
88#define XILINX_OF_BOARD_DTB_MAX_SIZE U(0x200000)
89
90#define PLAT_OCM_BASE U(0xBBF00000)
91#define PLAT_OCM_LIMIT U(0xBC000000)
92
93#define IS_TFA_IN_OCM(x) ((x >= PLAT_OCM_BASE) && (x < PLAT_OCM_LIMIT))
94
95#ifndef MAX_MMAP_REGIONS
96#if (defined(XILINX_OF_BOARD_DTB_ADDR) && !IS_TFA_IN_OCM(BL31_BASE))
97#define MAX_MMAP_REGIONS 9
Michal Simek91794362022-08-31 16:45:14 +020098#else
Amit Nagalefefcd42023-07-10 10:43:29 +053099#define MAX_MMAP_REGIONS 8
100#endif
Michal Simek91794362022-08-31 16:45:14 +0200101#endif
102
Amit Nagalefefcd42023-07-10 10:43:29 +0530103#ifndef MAX_XLAT_TABLES
104#define MAX_XLAT_TABLES U(9)
105#endif
Michal Simek91794362022-08-31 16:45:14 +0200106
107#define CACHE_WRITEBACK_SHIFT U(6)
108#define CACHE_WRITEBACK_GRANULE (1 << CACHE_WRITEBACK_SHIFT)
109
Jay Buddhabhatti6a44ad02023-02-28 01:23:04 -0800110#define PLAT_GICD_BASE_VALUE U(0xE2000000)
111#define PLAT_GICR_BASE_VALUE U(0xE2060000)
Michal Simek91794362022-08-31 16:45:14 +0200112
113/*
114 * Define a list of Group 1 Secure and Group 0 interrupts as per GICv3
115 * terminology. On a GICv2 system or mode, the lists will be merged and treated
116 * as Group 0 interrupts.
117 */
Trung Tran3980f192023-03-14 11:59:37 -0700118#define PLAT_VERSAL_NET_IPI_IRQ 89
119#define PLAT_VERSAL_IPI_IRQ PLAT_VERSAL_NET_IPI_IRQ
Michal Simek91794362022-08-31 16:45:14 +0200120
121#define PLAT_VERSAL_NET_G1S_IRQ_PROPS(grp) \
122 INTR_PROP_DESC(VERSAL_NET_IRQ_SEC_PHY_TIMER, GIC_HIGHEST_SEC_PRIORITY, grp, \
123 GIC_INTR_CFG_LEVEL)
124
Trung Tran3980f192023-03-14 11:59:37 -0700125#define PLAT_VERSAL_NET_G0_IRQ_PROPS(grp) \
126 INTR_PROP_DESC(PLAT_VERSAL_IPI_IRQ, GIC_HIGHEST_SEC_PRIORITY, grp, \
127 GIC_INTR_CFG_EDGE), \
Michal Simek91794362022-08-31 16:45:14 +0200128
Jay Buddhabhattia63b3542023-02-28 02:22:02 -0800129#define IRQ_MAX 200U
130
Michal Simek91794362022-08-31 16:45:14 +0200131#endif /* PLATFORM_DEF_H */