blob: befe36c6580ce7ef6a53d6a23f84ac1fd319e22c [file] [log] [blame]
Siva Durga Prasad Paladugufe4af662018-09-25 18:44:58 +05301/*
Salman Nabid0ff5502024-02-19 16:50:05 +00002 * Copyright (c) 2018-2024, Arm Limited and Contributors. All rights reserved.
Tanmay Shahfdae9e82022-08-26 15:06:00 -07003 * Copyright (c) 2018-2022, Xilinx, Inc. All rights reserved.
Maheedhar Bollapalliae8e0132024-07-24 09:54:15 +05304 * Copyright (c) 2022-2024, Advanced Micro Devices, Inc. All rights reserved.
Siva Durga Prasad Paladugufe4af662018-09-25 18:44:58 +05305 *
6 * SPDX-License-Identifier: BSD-3-Clause
7 */
8
9#include <assert.h>
Siva Durga Prasad Paladugufe4af662018-09-25 18:44:58 +053010#include <errno.h>
Prasad Kummari536e1102023-06-22 10:50:02 +053011
Antonio Nino Diaze0f90632018-12-14 00:18:21 +000012#include <bl31/bl31.h>
13#include <common/bl_common.h>
14#include <common/debug.h>
Maheedhar Bollapalliae8e0132024-07-24 09:54:15 +053015#include <drivers/generic_delay_timer.h>
Venkatesh Yadav Abbarapu9156ffd2020-01-22 21:23:20 -070016#include <lib/mmio.h>
Michal Simek058251a2023-04-13 13:19:11 +020017#include <lib/xlat_tables/xlat_tables_v2.h>
Antonio Nino Diaze0f90632018-12-14 00:18:21 +000018#include <plat/common/platform.h>
Prasad Kummari536e1102023-06-22 10:50:02 +053019#include <plat_arm.h>
Prasad Kummari4d068a42023-09-19 22:16:12 +053020#include <plat_console.h>
Prasad Kummari2038bd62023-12-14 10:52:24 +053021#include <plat_clkfunc.h>
Prasad Kummari536e1102023-06-22 10:50:02 +053022
Amit Nagal3a7d3042023-07-10 10:32:15 +053023#include <plat_fdt.h>
Venkatesh Yadav Abbarapu9156ffd2020-01-22 21:23:20 -070024#include <plat_private.h>
25#include <plat_startup.h>
Venkatesh Yadav Abbarapu58b24d82022-07-12 09:19:03 +053026#include "pm_api_sys.h"
Prasad Kummari536e1102023-06-22 10:50:02 +053027#include "pm_client.h"
28#include <pm_ipi.h>
29#include <versal_def.h>
Antonio Nino Diaze0f90632018-12-14 00:18:21 +000030
Siva Durga Prasad Paladugufe4af662018-09-25 18:44:58 +053031static entry_point_info_t bl32_image_ep_info;
32static entry_point_info_t bl33_image_ep_info;
Siva Durga Prasad Paladugufe4af662018-09-25 18:44:58 +053033
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 */
40entry_point_info_t *bl31_plat_get_next_image_ep_info(uint32_t type)
41{
42 assert(sec_state_is_valid(type));
43
Venkatesh Yadav Abbarapu5f115db2021-01-10 20:40:16 -070044 if (type == NON_SECURE) {
Siva Durga Prasad Paladugufe4af662018-09-25 18:44:58 +053045 return &bl33_image_ep_info;
Venkatesh Yadav Abbarapu5f115db2021-01-10 20:40:16 -070046 }
Siva Durga Prasad Paladugufe4af662018-09-25 18:44:58 +053047
48 return &bl32_image_ep_info;
49}
50
51/*
Venkatesh Yadav Abbarapu9156ffd2020-01-22 21:23:20 -070052 * Set the build time defaults,if we can't find any config data.
53 */
54static inline void bl31_set_default_config(void)
55{
Abhyuday Godhasarac0c49e52021-08-24 07:39:41 -070056 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);
Venkatesh Yadav Abbarapu9156ffd2020-01-22 21:23:20 -070061}
62
63/*
Siva Durga Prasad Paladugufe4af662018-09-25 18:44:58 +053064 * 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 */
69void bl31_early_platform_setup2(u_register_t arg0, u_register_t arg1,
70 u_register_t arg2, u_register_t arg3)
71{
Maheedhar Bollapalli335ae512024-09-26 10:14:11 +000072 (void)arg0;
73 (void)arg1;
74 (void)arg2;
75 (void)arg3;
Prasad Kummarie0783112023-04-26 11:02:07 +053076 uint64_t tfa_handoff_addr;
Prasad Kummari07795fa2023-06-08 21:36:38 +053077 uint32_t payload[PAYLOAD_ARG_CNT], max_size = HANDOFF_PARAMS_MAX_SIZE;
Venkatesh Yadav Abbarapu58b24d82022-07-12 09:19:03 +053078 enum pm_ret_status ret_status;
Maheedhar Bollapalli34f04f12024-10-09 09:09:02 +000079 const uint64_t addr[HANDOFF_PARAMS_MAX_SIZE];
Siva Durga Prasad Paladugufe4af662018-09-25 18:44:58 +053080
Siva Durga Prasad Paladugufe4af662018-09-25 18:44:58 +053081 /*
82 * Do initial security configuration to allow DRAM/device access. On
83 * Base VERSAL only DRAM security is programmable (via TrustZone), but
84 * other platforms might have more programmable security devices
85 * present.
86 */
Maheedhar Bollapalliae8e0132024-07-24 09:54:15 +053087 versal_config_setup();
88
89 /* Initialize the platform config for future decision making */
90 board_detection();
91
92 switch (platform_id) {
93 case VERSAL_SPP:
94 cpu_clock = 2720000;
95 break;
96 case VERSAL_EMU:
97 cpu_clock = 212000;
98 break;
99 case VERSAL_QEMU:
Maheedhar Bollapalliae8e0132024-07-24 09:54:15 +0530100 case VERSAL_SILICON:
101 cpu_clock = 100000000;
102 break;
103 default:
104 panic();
105 }
106 set_cnt_freq();
107
108 generic_delay_timer_init();
109
110 setup_console();
111
112 NOTICE("TF-A running on %s %d\n", board_name_decode(), platform_version);
Siva Durga Prasad Paladugufe4af662018-09-25 18:44:58 +0530113
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
Maheedhar Bollapallib3c92e62024-10-21 05:23:53 +0000120 PM_PACK_PAYLOAD4(payload, LOADER_MODULE_ID, 1U, PM_LOAD_GET_HANDOFF_PARAMS,
Venkatesh Yadav Abbarapu58b24d82022-07-12 09:19:03 +0530121 (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);
Prasad Kummarie0783112023-04-26 11:02:07 +0530125 tfa_handoff_addr = (uintptr_t)&addr;
Venkatesh Yadav Abbarapu58b24d82022-07-12 09:19:03 +0530126 } else {
Prasad Kummarie0783112023-04-26 11:02:07 +0530127 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);
Venkatesh Yadav Abbarapu58b24d82022-07-12 09:19:03 +0530129 }
130
Prasad Kummari07795fa2023-06-08 21:36:38 +0530131 enum xbl_handoff ret = xbl_handover(&bl32_image_ep_info,
Venkatesh Yadav Abbarapu9156ffd2020-01-22 21:23:20 -0700132 &bl33_image_ep_info,
Prasad Kummarie0783112023-04-26 11:02:07 +0530133 tfa_handoff_addr);
Maheedhar Bollapallicc64a792024-10-14 04:16:03 +0000134 if ((ret == XBL_HANDOFF_NO_STRUCT) || (ret == XBL_HANDOFF_INVAL_STRUCT)) {
Venkatesh Yadav Abbarapu9156ffd2020-01-22 21:23:20 -0700135 bl31_set_default_config();
Prasad Kummari07795fa2023-06-08 21:36:38 +0530136 } else if (ret == XBL_HANDOFF_TOO_MANY_PARTS) {
Venkatesh Yadav Abbarapu39fdc0a2022-03-03 01:58:36 -0700137 ERROR("BL31: Error too many partitions %u\n", ret);
Prasad Kummari07795fa2023-06-08 21:36:38 +0530138 } else if (ret != XBL_HANDOFF_SUCCESS) {
Venkatesh Yadav Abbarapu9156ffd2020-01-22 21:23:20 -0700139 panic();
Abhyuday Godhasara4c1a7052021-08-11 02:52:35 -0700140 } else {
Akshay Belsaree3511ae2023-01-11 11:45:25 +0530141 INFO("BL31: PLM to TF-A handover success %u\n", ret);
Venkatesh Yadav Abbarapu9156ffd2020-01-22 21:23:20 -0700142 }
Siva Durga Prasad Paladugufe4af662018-09-25 18:44:58 +0530143
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
Tanmay Shahfdae9e82022-08-26 15:06:00 -0700148static versal_intr_info_type_el3_t type_el3_interrupt_table[MAX_INTR_EL3];
Shubhrajyoti Dattaabf61222021-03-17 23:01:17 +0530149
Tanmay Shahfdae9e82022-08-26 15:06:00 -0700150int request_intr_type_el3(uint32_t id, interrupt_type_handler_t handler)
Shubhrajyoti Dattaabf61222021-03-17 23:01:17 +0530151{
Tanmay Shahfdae9e82022-08-26 15:06:00 -0700152 static uint32_t index;
153 uint32_t i;
Maheedhar Bollapalli0449b672024-10-29 00:09:08 +0000154 int32_t ret = 0;
Tanmay Shahfdae9e82022-08-26 15:06:00 -0700155
156 /* Validate 'handler' and 'id' parameters */
Maheedhar Bollapallicc64a792024-10-14 04:16:03 +0000157 if ((handler == NULL) || (index >= MAX_INTR_EL3)) {
Maheedhar Bollapalli0449b672024-10-29 00:09:08 +0000158 ret = -EINVAL;
159 goto exit_label;
Shubhrajyoti Dattaabf61222021-03-17 23:01:17 +0530160 }
161
Tanmay Shahfdae9e82022-08-26 15:06:00 -0700162 /* Check if a handler has already been registered */
163 for (i = 0; i < index; i++) {
164 if (id == type_el3_interrupt_table[i].id) {
Maheedhar Bollapalli0449b672024-10-29 00:09:08 +0000165 ret = -EALREADY;
166 goto exit_label;
Tanmay Shahfdae9e82022-08-26 15:06:00 -0700167 }
168 }
169
170 type_el3_interrupt_table[index].id = id;
171 type_el3_interrupt_table[index].handler = handler;
172
173 index++;
Shubhrajyoti Dattaabf61222021-03-17 23:01:17 +0530174
Maheedhar Bollapalli0449b672024-10-29 00:09:08 +0000175exit_label:
176 return ret;
Shubhrajyoti Dattaabf61222021-03-17 23:01:17 +0530177}
178
179static uint64_t rdo_el3_interrupt_handler(uint32_t id, uint32_t flags,
180 void *handle, void *cookie)
181{
Maheedhar Bollapalli335ae512024-09-26 10:14:11 +0000182 (void)id;
Shubhrajyoti Dattaabf61222021-03-17 23:01:17 +0530183 uint32_t intr_id;
Tanmay Shahfdae9e82022-08-26 15:06:00 -0700184 uint32_t i;
Maheedhar Bollapalli0449b672024-10-29 00:09:08 +0000185 uint64_t ret = 0;
Tanmay Shahfdae9e82022-08-26 15:06:00 -0700186 interrupt_type_handler_t handler = NULL;
Shubhrajyoti Dattaabf61222021-03-17 23:01:17 +0530187
188 intr_id = plat_ic_get_pending_interrupt_id();
Shubhrajyoti Dattaabf61222021-03-17 23:01:17 +0530189
Tanmay Shahfdae9e82022-08-26 15:06:00 -0700190 for (i = 0; i < MAX_INTR_EL3; i++) {
191 if (intr_id == type_el3_interrupt_table[i].id) {
192 handler = type_el3_interrupt_table[i].handler;
193 }
Shubhrajyoti Dattaabf61222021-03-17 23:01:17 +0530194 }
195
Michal Simek5e2f5962022-09-13 11:48:53 +0200196 if (handler != NULL) {
Maheedhar Bollapalli0449b672024-10-29 00:09:08 +0000197 ret = handler(intr_id, flags, handle, cookie);
Michal Simek5e2f5962022-09-13 11:48:53 +0200198 }
Tanmay Shahfdae9e82022-08-26 15:06:00 -0700199
Maheedhar Bollapalli0449b672024-10-29 00:09:08 +0000200 return ret;
Shubhrajyoti Dattaabf61222021-03-17 23:01:17 +0530201}
Amit Nagal3a7d3042023-07-10 10:32:15 +0530202
Siva Durga Prasad Paladugufe4af662018-09-25 18:44:58 +0530203void bl31_platform_setup(void)
204{
Amit Nagal3a7d3042023-07-10 10:32:15 +0530205 prepare_dtb();
206
Siva Durga Prasad Paladugufe4af662018-09-25 18:44:58 +0530207 /* Initialize the gic cpu and distributor interfaces */
208 plat_versal_gic_driver_init();
209 plat_versal_gic_init();
210}
211
212void bl31_plat_runtime_setup(void)
213{
Shubhrajyoti Dattaabf61222021-03-17 23:01:17 +0530214 uint64_t flags = 0;
Abhyuday Godhasara096f5cc2021-08-13 06:45:32 -0700215 int32_t rc;
Shubhrajyoti Dattaabf61222021-03-17 23:01:17 +0530216
217 set_interrupt_rm_flag(flags, NON_SECURE);
218 rc = register_interrupt_type_handler(INTR_TYPE_EL3,
219 rdo_el3_interrupt_handler, flags);
Abhyuday Godhasarabacbdee2021-08-20 00:27:03 -0700220 if (rc != 0) {
Shubhrajyoti Dattaabf61222021-03-17 23:01:17 +0530221 panic();
222 }
Siva Durga Prasad Paladugufe4af662018-09-25 18:44:58 +0530223}
224
225/*
226 * Perform the very early platform specific architectural setup here.
227 */
228void bl31_plat_arch_setup(void)
229{
Tejas Patel54d13192019-02-27 18:44:55 +0530230 plat_arm_interconnect_init();
231 plat_arm_interconnect_enter_coherency();
232
Siva Durga Prasad Paladugufe4af662018-09-25 18:44:58 +0530233 const mmap_region_t bl_regions[] = {
Amit Nagalc1248e82023-09-04 21:53:59 -1200234#if (defined(XILINX_OF_BOARD_DTB_ADDR) && !IS_TFA_IN_OCM(BL31_BASE) && \
235 (!defined(PLAT_XLAT_TABLES_DYNAMIC)))
Amit Nagal3a7d3042023-07-10 10:32:15 +0530236 MAP_REGION_FLAT(XILINX_OF_BOARD_DTB_ADDR, XILINX_OF_BOARD_DTB_MAX_SIZE,
237 MT_MEMORY | MT_RW | MT_NS),
238#endif
Siva Durga Prasad Paladugufe4af662018-09-25 18:44:58 +0530239 MAP_REGION_FLAT(BL31_BASE, BL31_END - BL31_BASE,
240 MT_MEMORY | MT_RW | MT_SECURE),
241 MAP_REGION_FLAT(BL_CODE_BASE, BL_CODE_END - BL_CODE_BASE,
242 MT_CODE | MT_SECURE),
243 MAP_REGION_FLAT(BL_RO_DATA_BASE, BL_RO_DATA_END - BL_RO_DATA_BASE,
244 MT_RO_DATA | MT_SECURE),
245 MAP_REGION_FLAT(BL_COHERENT_RAM_BASE,
246 BL_COHERENT_RAM_END - BL_COHERENT_RAM_BASE,
247 MT_DEVICE | MT_RW | MT_SECURE),
248 {0}
249 };
250
Prasad Kummari0b377142023-10-26 16:32:26 +0530251 setup_page_tables(bl_regions, plat_get_mmap());
Michal Simek058251a2023-04-13 13:19:11 +0200252 enable_mmu(0);
Siva Durga Prasad Paladugufe4af662018-09-25 18:44:58 +0530253}