xref: /rk3399_ARM-atf/plat/xilinx/versal/bl31_versal_setup.c (revision c1e84aca3831c8a768b862061ab95b22168c0564)
1 /*
2  * Copyright (c) 2018-2021, Arm Limited and Contributors. All rights reserved.
3  * Copyright (c) 2018-2022, Xilinx, Inc. All rights reserved.
4  * Copyright (c) 2022-2023, Advanced Micro Devices, Inc. All rights reserved.
5  *
6  * SPDX-License-Identifier: BSD-3-Clause
7  */
8 
9 #include <assert.h>
10 #include <errno.h>
11 
12 #include <bl31/bl31.h>
13 #include <common/bl_common.h>
14 #include <common/debug.h>
15 #include <drivers/arm/dcc.h>
16 #include <drivers/arm/pl011.h>
17 #include <drivers/console.h>
18 #include <lib/mmio.h>
19 #include <lib/xlat_tables/xlat_tables_v2.h>
20 #include <plat/common/platform.h>
21 #include <plat_arm.h>
22 
23 #include <plat_fdt.h>
24 #include <plat_private.h>
25 #include <plat_startup.h>
26 #include "pm_api_sys.h"
27 #include "pm_client.h"
28 #include <pm_ipi.h>
29 #include <versal_def.h>
30 
31 static entry_point_info_t bl32_image_ep_info;
32 static entry_point_info_t bl33_image_ep_info;
33 
34 /*
35  * Return a pointer to the 'entry_point_info' structure of the next image for
36  * the security state specified. BL33 corresponds to the non-secure image type
37  * while BL32 corresponds to the secure image type. A NULL pointer is returned
38  * if the image does not exist.
39  */
40 entry_point_info_t *bl31_plat_get_next_image_ep_info(uint32_t type)
41 {
42 	assert(sec_state_is_valid(type));
43 
44 	if (type == NON_SECURE) {
45 		return &bl33_image_ep_info;
46 	}
47 
48 	return &bl32_image_ep_info;
49 }
50 
51 /*
52  * Set the build time defaults,if we can't find any config data.
53  */
54 static inline void bl31_set_default_config(void)
55 {
56 	bl32_image_ep_info.pc = (uintptr_t)BL32_BASE;
57 	bl32_image_ep_info.spsr = (uint32_t)arm_get_spsr_for_bl32_entry();
58 	bl33_image_ep_info.pc = (uintptr_t)plat_get_ns_image_entrypoint();
59 	bl33_image_ep_info.spsr = (uint32_t)SPSR_64(MODE_EL2, MODE_SP_ELX,
60 						    DISABLE_ALL_EXCEPTIONS);
61 }
62 
63 /*
64  * Perform any BL31 specific platform actions. Here is an opportunity to copy
65  * parameters passed by the calling EL (S-EL1 in BL2 & S-EL3 in BL1) before they
66  * are lost (potentially). This needs to be done before the MMU is initialized
67  * so that the memory layout can be used while creating page tables.
68  */
69 void bl31_early_platform_setup2(u_register_t arg0, u_register_t arg1,
70 				u_register_t arg2, u_register_t arg3)
71 {
72 	uint64_t tfa_handoff_addr;
73 	uint32_t payload[PAYLOAD_ARG_CNT], max_size = HANDOFF_PARAMS_MAX_SIZE;
74 	enum pm_ret_status ret_status;
75 	uint64_t addr[HANDOFF_PARAMS_MAX_SIZE];
76 	uint32_t uart_clk = get_uart_clk();
77 
78 	if (CONSOLE_IS(pl011) || (CONSOLE_IS(pl011_1))) {
79 		static console_t versal_runtime_console;
80 		/* Initialize the console to provide early debug support */
81 		int32_t rc = console_pl011_register((uintptr_t)UART_BASE,
82 						uart_clk,
83 						(uint32_t)UART_BAUDRATE,
84 						&versal_runtime_console);
85 		if (rc == 0) {
86 			panic();
87 		}
88 
89 		console_set_scope(&versal_runtime_console, (uint32_t)(CONSOLE_FLAG_BOOT |
90 				  CONSOLE_FLAG_RUNTIME | CONSOLE_FLAG_CRASH));
91 	} else if (CONSOLE_IS(dcc)) {
92 		/* Initialize the dcc console for debug */
93 		int32_t rc = console_dcc_register();
94 		if (rc == 0) {
95 			panic();
96 		}
97 	} else {
98 		/* No console device found. */
99 	}
100 
101 	/* Initialize the platform config for future decision making */
102 	versal_config_setup();
103 
104 	/* Get platform related information */
105 	board_detection();
106 
107 	/*
108 	 * Do initial security configuration to allow DRAM/device access. On
109 	 * Base VERSAL only DRAM security is programmable (via TrustZone), but
110 	 * other platforms might have more programmable security devices
111 	 * present.
112 	 */
113 
114 	/* Populate common information for BL32 and BL33 */
115 	SET_PARAM_HEAD(&bl32_image_ep_info, PARAM_EP, VERSION_1, 0);
116 	SET_SECURITY_STATE(bl32_image_ep_info.h.attr, SECURE);
117 	SET_PARAM_HEAD(&bl33_image_ep_info, PARAM_EP, VERSION_1, 0);
118 	SET_SECURITY_STATE(bl33_image_ep_info.h.attr, NON_SECURE);
119 
120 	PM_PACK_PAYLOAD4(payload, LOADER_MODULE_ID, 1, PM_LOAD_GET_HANDOFF_PARAMS,
121 			(uintptr_t)addr >> 32U, (uintptr_t)addr, max_size);
122 	ret_status = pm_ipi_send_sync(primary_proc, payload, NULL, 0);
123 	if (ret_status == PM_RET_SUCCESS) {
124 		INFO("BL31: GET_HANDOFF_PARAMS call success=%d\n", ret_status);
125 		tfa_handoff_addr = (uintptr_t)&addr;
126 	} else {
127 		ERROR("BL31: GET_HANDOFF_PARAMS Failed, read tfa_handoff_addr from reg\n");
128 		tfa_handoff_addr = mmio_read_32(PMC_GLOBAL_GLOB_GEN_STORAGE4);
129 	}
130 
131 	enum xbl_handoff ret = xbl_handover(&bl32_image_ep_info,
132 						  &bl33_image_ep_info,
133 						  tfa_handoff_addr);
134 	if (ret == XBL_HANDOFF_NO_STRUCT || ret == XBL_HANDOFF_INVAL_STRUCT) {
135 		bl31_set_default_config();
136 	} else if (ret == XBL_HANDOFF_TOO_MANY_PARTS) {
137 		ERROR("BL31: Error too many partitions %u\n", ret);
138 	} else if (ret != XBL_HANDOFF_SUCCESS) {
139 		panic();
140 	} else {
141 		INFO("BL31: PLM to TF-A handover success %u\n", ret);
142 	}
143 
144 	NOTICE("BL31: Secure code at 0x%lx\n", bl32_image_ep_info.pc);
145 	NOTICE("BL31: Non secure code at 0x%lx\n", bl33_image_ep_info.pc);
146 }
147 
148 static versal_intr_info_type_el3_t type_el3_interrupt_table[MAX_INTR_EL3];
149 
150 int request_intr_type_el3(uint32_t id, interrupt_type_handler_t handler)
151 {
152 	static uint32_t index;
153 	uint32_t i;
154 
155 	/* Validate 'handler' and 'id' parameters */
156 	if (handler == NULL || index >= MAX_INTR_EL3) {
157 		return -EINVAL;
158 	}
159 
160 	/* Check if a handler has already been registered */
161 	for (i = 0; i < index; i++) {
162 		if (id == type_el3_interrupt_table[i].id) {
163 			return -EALREADY;
164 		}
165 	}
166 
167 	type_el3_interrupt_table[index].id = id;
168 	type_el3_interrupt_table[index].handler = handler;
169 
170 	index++;
171 
172 	return 0;
173 }
174 
175 static uint64_t rdo_el3_interrupt_handler(uint32_t id, uint32_t flags,
176 					  void *handle, void *cookie)
177 {
178 	uint32_t intr_id;
179 	uint32_t i;
180 	interrupt_type_handler_t handler = NULL;
181 
182 	intr_id = plat_ic_get_pending_interrupt_id();
183 
184 	for (i = 0; i < MAX_INTR_EL3; i++) {
185 		if (intr_id == type_el3_interrupt_table[i].id) {
186 			handler = type_el3_interrupt_table[i].handler;
187 		}
188 	}
189 
190 	if (handler != NULL) {
191 		return handler(intr_id, flags, handle, cookie);
192 	}
193 
194 	return 0;
195 }
196 
197 void bl31_platform_setup(void)
198 {
199 	prepare_dtb();
200 
201 	/* Initialize the gic cpu and distributor interfaces */
202 	plat_versal_gic_driver_init();
203 	plat_versal_gic_init();
204 }
205 
206 void bl31_plat_runtime_setup(void)
207 {
208 	uint64_t flags = 0;
209 	int32_t rc;
210 
211 	set_interrupt_rm_flag(flags, NON_SECURE);
212 	rc = register_interrupt_type_handler(INTR_TYPE_EL3,
213 					     rdo_el3_interrupt_handler, flags);
214 	if (rc != 0) {
215 		panic();
216 	}
217 }
218 
219 /*
220  * Perform the very early platform specific architectural setup here.
221  */
222 void bl31_plat_arch_setup(void)
223 {
224 	plat_arm_interconnect_init();
225 	plat_arm_interconnect_enter_coherency();
226 
227 	const mmap_region_t bl_regions[] = {
228 #if (defined(XILINX_OF_BOARD_DTB_ADDR) && !IS_TFA_IN_OCM(BL31_BASE) && \
229 	(!defined(PLAT_XLAT_TABLES_DYNAMIC)))
230 		MAP_REGION_FLAT(XILINX_OF_BOARD_DTB_ADDR, XILINX_OF_BOARD_DTB_MAX_SIZE,
231 				MT_MEMORY | MT_RW | MT_NS),
232 #endif
233 		MAP_REGION_FLAT(BL31_BASE, BL31_END - BL31_BASE,
234 			MT_MEMORY | MT_RW | MT_SECURE),
235 		MAP_REGION_FLAT(BL_CODE_BASE, BL_CODE_END - BL_CODE_BASE,
236 				MT_CODE | MT_SECURE),
237 		MAP_REGION_FLAT(BL_RO_DATA_BASE, BL_RO_DATA_END - BL_RO_DATA_BASE,
238 				MT_RO_DATA | MT_SECURE),
239 		MAP_REGION_FLAT(BL_COHERENT_RAM_BASE,
240 				BL_COHERENT_RAM_END - BL_COHERENT_RAM_BASE,
241 				MT_DEVICE | MT_RW | MT_SECURE),
242 		{0}
243 	};
244 
245 	setup_page_tables(bl_regions, plat_versal_get_mmap());
246 	enable_mmu(0);
247 }
248