xref: /rk3399_ARM-atf/plat/xilinx/versal/include/platform_def.h (revision 2d3b44e3073e8d6ec49dde45ec353d6f41290917)
1 /*
2  * Copyright (c) 2018-2021, Arm Limited and Contributors. All rights reserved.
3  * Copyright (c) 2022-2023, Advanced Micro Devices, Inc. All rights reserved.
4  *
5  * SPDX-License-Identifier: BSD-3-Clause
6  */
7 
8 #ifndef PLATFORM_DEF_H
9 #define PLATFORM_DEF_H
10 
11 #include <arch.h>
12 #include <plat_common.h>
13 #include "versal_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_CORE_COUNT		U(2)
23 #define PLAT_MAX_PWR_LVL		U(1)
24 #define PLAT_MAX_RET_STATE		U(1)
25 #define PLAT_MAX_OFF_STATE		U(2)
26 
27 /*******************************************************************************
28  * BL31 specific defines.
29  ******************************************************************************/
30 /*
31  * Put BL31 at the top of the Trusted SRAM (just below the shared memory, if
32  * present). BL31_BASE is calculated using the current BL31 debug size plus a
33  * little space for growth.
34  */
35 #ifndef VERSAL_ATF_MEM_BASE
36 # define BL31_BASE			U(0xfffe0000)
37 # define BL31_LIMIT			U(0x100000000)
38 #else
39 # define BL31_BASE			U(VERSAL_ATF_MEM_BASE)
40 # define BL31_LIMIT			U(VERSAL_ATF_MEM_BASE + VERSAL_ATF_MEM_SIZE)
41 # ifdef VERSAL_ATF_MEM_PROGBITS_SIZE
42 #  define BL31_PROGBITS_LIMIT		U(VERSAL_ATF_MEM_BASE + VERSAL_ATF_MEM_PROGBITS_SIZE)
43 # endif
44 #endif
45 
46 /*******************************************************************************
47  * BL32 specific defines.
48  ******************************************************************************/
49 #ifndef VERSAL_BL32_MEM_BASE
50 # define BL32_BASE			U(0x60000000)
51 # define BL32_LIMIT			U(0x80000000)
52 #else
53 # define BL32_BASE			U(VERSAL_BL32_MEM_BASE)
54 # define BL32_LIMIT			U(VERSAL_BL32_MEM_BASE + VERSAL_BL32_MEM_SIZE)
55 #endif
56 
57 /*******************************************************************************
58  * BL33 specific defines.
59  ******************************************************************************/
60 #ifndef PRELOADED_BL33_BASE
61 # define PLAT_ARM_NS_IMAGE_BASE		U(0x8000000)
62 #else
63 # define PLAT_ARM_NS_IMAGE_BASE		U(PRELOADED_BL33_BASE)
64 #endif
65 
66 /*******************************************************************************
67  * HIGH and LOW DDR MAX definitions
68  ******************************************************************************/
69 #define PLAT_DDR_LOWMEM_MAX		U(0x80000000)
70 #define PLAT_DDR_HIGHMEM_MAX		U(0x100000000)
71 
72 /*******************************************************************************
73  * TSP  specific defines.
74  ******************************************************************************/
75 #define TSP_SEC_MEM_BASE		BL32_BASE
76 #define TSP_SEC_MEM_SIZE		(BL32_LIMIT - BL32_BASE)
77 
78 /* ID of the secure physical generic timer interrupt used by the TSP */
79 #define TSP_IRQ_SEC_PHY_TIMER		ARM_IRQ_SEC_PHY_TIMER
80 
81 /*******************************************************************************
82  * Platform specific page table and MMU setup constants
83  ******************************************************************************/
84 
85 #if (BL31_BASE >= (1ULL << 32U))
86 /* Address range in High DDR and HBM memory range */
87 #define PLAT_ADDR_SPACE_SHIFT		U(42)
88 #else
89 /* Address range in OCM and Low DDR memory range */
90 #define PLAT_ADDR_SPACE_SHIFT		U(32)
91 #endif
92 
93 #define PLAT_PHY_ADDR_SPACE_SIZE        (1ull << PLAT_ADDR_SPACE_SHIFT)
94 #define PLAT_VIRT_ADDR_SPACE_SIZE       (1ull << PLAT_ADDR_SPACE_SHIFT)
95 
96 #define XILINX_OF_BOARD_DTB_MAX_SIZE	U(0x200000)
97 
98 #define PLAT_OCM_BASE			U(0xFFFE0000)
99 #define PLAT_OCM_LIMIT			U(0xFFFFFFFF)
100 
101 #define IS_TFA_IN_OCM(x)	((x >= PLAT_OCM_BASE) && (x < PLAT_OCM_LIMIT))
102 
103 #ifndef MAX_MMAP_REGIONS
104 #if (defined(XILINX_OF_BOARD_DTB_ADDR) && !IS_TFA_IN_OCM(BL31_BASE))
105 #define MAX_MMAP_REGIONS		9
106 #else
107 #define MAX_MMAP_REGIONS		8
108 #endif
109 #endif
110 
111 #ifndef MAX_XLAT_TABLES
112 #if !IS_TFA_IN_OCM(BL31_BASE)
113 #define MAX_XLAT_TABLES		9
114 #else
115 #define MAX_XLAT_TABLES		5
116 #endif
117 #endif
118 
119 #define CACHE_WRITEBACK_SHIFT	6
120 #define CACHE_WRITEBACK_GRANULE	(1 << CACHE_WRITEBACK_SHIFT)
121 
122 #define PLAT_ARM_GICD_BASE	U(0xF9000000)
123 #define PLAT_ARM_GICR_BASE	U(0xF9080000)
124 
125 /*
126  * Define a list of Group 1 Secure and Group 0 interrupts as per GICv3
127  * terminology. On a GICv2 system or mode, the lists will be merged and treated
128  * as Group 0 interrupts.
129  */
130 #define PLAT_VERSAL_G1S_IRQS	VERSAL_IRQ_SEC_PHY_TIMER
131 #define PLAT_VERSAL_G0_IRQS	VERSAL_IRQ_SEC_PHY_TIMER
132 #define PLAT_VERSAL_IPI_IRQ	U(62)
133 
134 #define PLAT_VERSAL_G1S_IRQ_PROPS(grp) \
135 	INTR_PROP_DESC(VERSAL_IRQ_SEC_PHY_TIMER, GIC_HIGHEST_SEC_PRIORITY, grp, \
136 			GIC_INTR_CFG_LEVEL)
137 
138 #define PLAT_VERSAL_G0_IRQ_PROPS(grp) \
139 	INTR_PROP_DESC(PLAT_VERSAL_IPI_IRQ, GIC_HIGHEST_SEC_PRIORITY, grp, \
140 			GIC_INTR_CFG_EDGE), \
141 	INTR_PROP_DESC(CPU_PWR_DOWN_REQ_INTR, GIC_HIGHEST_SEC_PRIORITY, grp, \
142 			GIC_INTR_CFG_EDGE)
143 
144 #define IRQ_MAX		142U
145 
146 #endif /* PLATFORM_DEF_H */
147