xref: /rk3399_ARM-atf/plat/xilinx/zynqmp/include/platform_def.h (revision 52e486f6a6192bd18d36cdcbc35c59092eefc810)
1 /*
2  * Copyright (c) 2014-2022, Arm Limited and Contributors. All rights reserved.
3  * Copyright (c) 2018-2022, Xilinx, Inc. All rights reserved.
4  * Copyright (c) 2022-2025, Advanced Micro Devices, Inc. All rights reserved.
5  *
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 <common/interrupt_props.h>
14 #include <drivers/arm/gic_common.h>
15 #include <lib/utils_def.h>
16 
17 #include "zynqmp_def.h"
18 
19 /*******************************************************************************
20  * Generic platform constants
21  ******************************************************************************/
22 
23 /* Size of cacheable stacks */
24 #ifndef PLATFORM_STACK_SIZE
25 #define PLATFORM_STACK_SIZE 0x440
26 #endif
27 
28 #define PLATFORM_CORE_COUNT		U(4)
29 #define PLAT_MAX_PWR_LVL		U(1)
30 #define PLAT_MAX_RET_STATE		U(1)
31 #define PLAT_MAX_OFF_STATE		U(2)
32 
33 /*******************************************************************************
34  * BL31 specific defines.
35  ******************************************************************************/
36 /*
37  * Put BL31 at the top of the Trusted SRAM (just below the shared memory, if
38  * present). BL31_BASE is calculated using the current BL31 debug size plus a
39  * little space for growth.
40  */
41 #ifndef ZYNQMP_ATF_MEM_BASE
42 #if !DEBUG && defined(SPD_none) && !SDEI_SUPPORT
43 # define BL31_BASE			U(0xfffea000)
44 # define BL31_LIMIT			U(0x100000000)
45 #else
46 # define BL31_BASE			U(0x1000)
47 # define BL31_LIMIT			U(0x80000)
48 #endif
49 #else
50 # define BL31_BASE			U(ZYNQMP_ATF_MEM_BASE)
51 # define BL31_LIMIT			(UL(ZYNQMP_ATF_MEM_BASE) + U(ZYNQMP_ATF_MEM_SIZE))
52 # ifdef ZYNQMP_ATF_MEM_PROGBITS_SIZE
53 #  define BL31_PROGBITS_LIMIT		(UL(ZYNQMP_ATF_MEM_BASE) + U(ZYNQMP_ATF_MEM_PROGBITS_SIZE))
54 # endif
55 #endif
56 
57 /*******************************************************************************
58  * BL32 specific defines.
59  ******************************************************************************/
60 #ifndef ZYNQMP_BL32_MEM_BASE
61 # define BL32_BASE			U(0x60000000)
62 # define BL32_LIMIT			U(0x80000000)
63 #else
64 # define BL32_BASE			U(ZYNQMP_BL32_MEM_BASE)
65 # define BL32_LIMIT			(UL(ZYNQMP_BL32_MEM_BASE) + U(ZYNQMP_BL32_MEM_SIZE))
66 #endif
67 
68 /*******************************************************************************
69  * BL33 specific defines.
70  ******************************************************************************/
71 #ifndef PRELOADED_BL33_BASE
72 # define PLAT_ARM_NS_IMAGE_BASE	U(0x8000000)
73 #else
74 # define PLAT_ARM_NS_IMAGE_BASE	U(PRELOADED_BL33_BASE)
75 #endif
76 
77 /*******************************************************************************
78  * HIGH and LOW DDR MAX definitions.
79  ******************************************************************************/
80 #define PLAT_DDR_LOWMEM_MAX		U(0x80000000)
81 #define PLAT_DDR_HIGHMEM_MAX		U(0x100000000)
82 
83 /*******************************************************************************
84  * TSP  specific defines.
85  ******************************************************************************/
86 #define TSP_SEC_MEM_BASE		BL32_BASE
87 #define TSP_SEC_MEM_SIZE		(BL32_LIMIT - BL32_BASE)
88 
89 /* ID of the secure physical generic timer interrupt used by the TSP */
90 #define TSP_IRQ_SEC_PHY_TIMER		ARM_IRQ_SEC_PHY_TIMER
91 
92 /*******************************************************************************
93  * Platform specific page table and MMU setup constants
94  ******************************************************************************/
95 #define XILINX_OF_BOARD_DTB_MAX_SIZE	U(0x200000)
96 #define PLAT_OCM_BASE			U(0xFFFC0000)
97 #define PLAT_OCM_LIMIT			U(0xFFFFFFFF)
98 
99 #define IS_TFA_IN_OCM(x)		((x >= PLAT_OCM_BASE) && (x < PLAT_OCM_LIMIT))
100 
101 #define PLAT_PHY_ADDR_SPACE_SIZE	(1ULL << 32)
102 #define PLAT_VIRT_ADDR_SPACE_SIZE	(1ULL << 32)
103 
104 #ifndef MAX_MMAP_REGIONS
105 #if (defined(XILINX_OF_BOARD_DTB_ADDR) && !IS_TFA_IN_OCM(BL31_BASE))
106 #define MAX_MMAP_REGIONS		8
107 #else
108 #define MAX_MMAP_REGIONS		7
109 #endif
110 #endif
111 
112 #ifndef MAX_XLAT_TABLES
113 #if !IS_TFA_IN_OCM(BL31_BASE)
114 #define MAX_XLAT_TABLES			8
115 #else
116 #define MAX_XLAT_TABLES			5
117 #endif
118 #endif
119 
120 #define CACHE_WRITEBACK_SHIFT   6
121 #define CACHE_WRITEBACK_GRANULE (1 << CACHE_WRITEBACK_SHIFT)
122 
123 #define ZYNQMP_SDEI_SGI_PRIVATE		U(8)
124 
125 /* Platform macros to support exception handling framework */
126 #define PLAT_PRI_BITS			U(3)
127 #define PLAT_SDEI_CRITICAL_PRI		0x10
128 #define PLAT_SDEI_NORMAL_PRI		0x20
129 
130 #define PLAT_ARM_GICD_BASE	BASE_GICD_BASE
131 #define PLAT_ARM_GICC_BASE	BASE_GICC_BASE
132 /*
133  * Define properties of Group 1 Secure and Group 0 interrupts as per GICv3
134  * terminology. On a GICv2 system or mode, the lists will be merged and treated
135  * as Group 0 interrupts.
136  */
137 #if !ZYNQMP_WDT_RESTART
138 #define PLAT_ARM_G1S_IRQ_PROPS(grp) \
139 	INTR_PROP_DESC(ARM_IRQ_SEC_PHY_TIMER, GIC_HIGHEST_SEC_PRIORITY, grp, \
140 			GIC_INTR_CFG_LEVEL), \
141 	INTR_PROP_DESC(ARM_IRQ_SEC_SGI_1, GIC_HIGHEST_SEC_PRIORITY, grp, \
142 			GIC_INTR_CFG_EDGE), \
143 	INTR_PROP_DESC(ARM_IRQ_SEC_SGI_2, GIC_HIGHEST_SEC_PRIORITY, grp, \
144 			GIC_INTR_CFG_EDGE), \
145 	INTR_PROP_DESC(ARM_IRQ_SEC_SGI_3, GIC_HIGHEST_SEC_PRIORITY, grp, \
146 			GIC_INTR_CFG_EDGE), \
147 	INTR_PROP_DESC(ARM_IRQ_SEC_SGI_4, GIC_HIGHEST_SEC_PRIORITY, grp, \
148 			GIC_INTR_CFG_EDGE), \
149 	INTR_PROP_DESC(ARM_IRQ_SEC_SGI_5, GIC_HIGHEST_SEC_PRIORITY, grp, \
150 			GIC_INTR_CFG_EDGE), \
151 	INTR_PROP_DESC(ARM_IRQ_SEC_SGI_6, GIC_HIGHEST_SEC_PRIORITY, grp, \
152 			GIC_INTR_CFG_EDGE), \
153 	INTR_PROP_DESC(ARM_IRQ_SEC_SGI_7, GIC_HIGHEST_SEC_PRIORITY, grp, \
154 			GIC_INTR_CFG_EDGE)
155 #else
156 #define PLAT_ARM_G1S_IRQ_PROPS(grp) \
157 	INTR_PROP_DESC(ARM_IRQ_SEC_PHY_TIMER, GIC_HIGHEST_SEC_PRIORITY, grp, \
158 			GIC_INTR_CFG_LEVEL), \
159 	INTR_PROP_DESC(IRQ_TTC3_1, GIC_HIGHEST_SEC_PRIORITY, grp, \
160 			GIC_INTR_CFG_EDGE), \
161 	INTR_PROP_DESC(ARM_IRQ_SEC_SGI_1, GIC_HIGHEST_SEC_PRIORITY, grp, \
162 			GIC_INTR_CFG_EDGE), \
163 	INTR_PROP_DESC(ARM_IRQ_SEC_SGI_2, GIC_HIGHEST_SEC_PRIORITY, grp, \
164 			GIC_INTR_CFG_EDGE), \
165 	INTR_PROP_DESC(ARM_IRQ_SEC_SGI_3, GIC_HIGHEST_SEC_PRIORITY, grp, \
166 			GIC_INTR_CFG_EDGE), \
167 	INTR_PROP_DESC(ARM_IRQ_SEC_SGI_4, GIC_HIGHEST_SEC_PRIORITY, grp, \
168 			GIC_INTR_CFG_EDGE), \
169 	INTR_PROP_DESC(ARM_IRQ_SEC_SGI_5, GIC_HIGHEST_SEC_PRIORITY, grp, \
170 			GIC_INTR_CFG_EDGE), \
171 	INTR_PROP_DESC(ARM_IRQ_SEC_SGI_6, GIC_HIGHEST_SEC_PRIORITY, grp, \
172 			GIC_INTR_CFG_EDGE), \
173 	INTR_PROP_DESC(ARM_IRQ_SEC_SGI_7, GIC_HIGHEST_SEC_PRIORITY, grp, \
174 			GIC_INTR_CFG_EDGE)
175 #endif
176 
177 #define PLAT_ARM_G0_IRQ_PROPS(grp) \
178 	INTR_PROP_DESC(ARM_IRQ_SEC_SGI_0, PLAT_SDEI_NORMAL_PRI,	grp, \
179 			GIC_INTR_CFG_EDGE)
180 
181 #if (defined(XILINX_OF_BOARD_DTB_ADDR) && !IS_TFA_IN_OCM(BL31_BASE))
182 #define XLNX_DT_CFG 1
183 #else
184 #define XLNX_DT_CFG 0
185 #endif
186 
187 #endif /* PLATFORM_DEF_H */
188