blob: d19a263b8392e62eac08f0423dc696002453bdd0 [file] [log] [blame]
Siva Durga Prasad Paladugufe4af662018-09-25 18:44:58 +05301/*
Michal Simek2a47faa2023-04-14 08:43:51 +02002 * Copyright (c) 2018-2021, Arm Limited and Contributors. All rights reserved.
Tanmay Shahfdae9e82022-08-26 15:06:00 -07003 * Copyright (c) 2018-2022, Xilinx, Inc. All rights reserved.
Akshay Belsare589ccce2023-05-08 19:00:53 +05304 * Copyright (c) 2022-2023, 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>
Venkatesh Yadav Abbarapu9156ffd2020-01-22 21:23:20 -070015#include <lib/mmio.h>
Michal Simek058251a2023-04-13 13:19:11 +020016#include <lib/xlat_tables/xlat_tables_v2.h>
Antonio Nino Diaze0f90632018-12-14 00:18:21 +000017#include <plat/common/platform.h>
Prasad Kummari536e1102023-06-22 10:50:02 +053018#include <plat_arm.h>
Prasad Kummari4d068a42023-09-19 22:16:12 +053019#include <plat_console.h>
Prasad Kummari2038bd62023-12-14 10:52:24 +053020#include <plat_clkfunc.h>
Prasad Kummari536e1102023-06-22 10:50:02 +053021
Amit Nagal3a7d3042023-07-10 10:32:15 +053022#include <plat_fdt.h>
Venkatesh Yadav Abbarapu9156ffd2020-01-22 21:23:20 -070023#include <plat_private.h>
24#include <plat_startup.h>
Venkatesh Yadav Abbarapu58b24d82022-07-12 09:19:03 +053025#include "pm_api_sys.h"
Prasad Kummari536e1102023-06-22 10:50:02 +053026#include "pm_client.h"
27#include <pm_ipi.h>
28#include <versal_def.h>
Antonio Nino Diaze0f90632018-12-14 00:18:21 +000029
Siva Durga Prasad Paladugufe4af662018-09-25 18:44:58 +053030static entry_point_info_t bl32_image_ep_info;
31static entry_point_info_t bl33_image_ep_info;
Siva Durga Prasad Paladugufe4af662018-09-25 18:44:58 +053032
33/*
34 * Return a pointer to the 'entry_point_info' structure of the next image for
35 * the security state specified. BL33 corresponds to the non-secure image type
36 * while BL32 corresponds to the secure image type. A NULL pointer is returned
37 * if the image does not exist.
38 */
39entry_point_info_t *bl31_plat_get_next_image_ep_info(uint32_t type)
40{
41 assert(sec_state_is_valid(type));
42
Venkatesh Yadav Abbarapu5f115db2021-01-10 20:40:16 -070043 if (type == NON_SECURE) {
Siva Durga Prasad Paladugufe4af662018-09-25 18:44:58 +053044 return &bl33_image_ep_info;
Venkatesh Yadav Abbarapu5f115db2021-01-10 20:40:16 -070045 }
Siva Durga Prasad Paladugufe4af662018-09-25 18:44:58 +053046
47 return &bl32_image_ep_info;
48}
49
50/*
Venkatesh Yadav Abbarapu9156ffd2020-01-22 21:23:20 -070051 * Set the build time defaults,if we can't find any config data.
52 */
53static inline void bl31_set_default_config(void)
54{
Abhyuday Godhasarac0c49e52021-08-24 07:39:41 -070055 bl32_image_ep_info.pc = (uintptr_t)BL32_BASE;
56 bl32_image_ep_info.spsr = (uint32_t)arm_get_spsr_for_bl32_entry();
57 bl33_image_ep_info.pc = (uintptr_t)plat_get_ns_image_entrypoint();
58 bl33_image_ep_info.spsr = (uint32_t)SPSR_64(MODE_EL2, MODE_SP_ELX,
59 DISABLE_ALL_EXCEPTIONS);
Venkatesh Yadav Abbarapu9156ffd2020-01-22 21:23:20 -070060}
61
62/*
Siva Durga Prasad Paladugufe4af662018-09-25 18:44:58 +053063 * Perform any BL31 specific platform actions. Here is an opportunity to copy
64 * parameters passed by the calling EL (S-EL1 in BL2 & S-EL3 in BL1) before they
65 * are lost (potentially). This needs to be done before the MMU is initialized
66 * so that the memory layout can be used while creating page tables.
67 */
68void bl31_early_platform_setup2(u_register_t arg0, u_register_t arg1,
69 u_register_t arg2, u_register_t arg3)
70{
Prasad Kummarie0783112023-04-26 11:02:07 +053071 uint64_t tfa_handoff_addr;
Prasad Kummari07795fa2023-06-08 21:36:38 +053072 uint32_t payload[PAYLOAD_ARG_CNT], max_size = HANDOFF_PARAMS_MAX_SIZE;
Venkatesh Yadav Abbarapu58b24d82022-07-12 09:19:03 +053073 enum pm_ret_status ret_status;
Prasad Kummari07795fa2023-06-08 21:36:38 +053074 uint64_t addr[HANDOFF_PARAMS_MAX_SIZE];
Siva Durga Prasad Paladugufe4af662018-09-25 18:44:58 +053075
Prasad Kummari2038bd62023-12-14 10:52:24 +053076 set_cnt_freq();
77
Prasad Kummari4d068a42023-09-19 22:16:12 +053078 setup_console();
Abhyuday Godhasara4c1a7052021-08-11 02:52:35 -070079
Siva Durga Prasad Paladugufe4af662018-09-25 18:44:58 +053080 /* Initialize the platform config for future decision making */
81 versal_config_setup();
Siva Durga Prasad Paladugufe4af662018-09-25 18:44:58 +053082
Akshay Belsare589ccce2023-05-08 19:00:53 +053083 /* Get platform related information */
84 board_detection();
85
Siva Durga Prasad Paladugufe4af662018-09-25 18:44:58 +053086 /*
87 * Do initial security configuration to allow DRAM/device access. On
88 * Base VERSAL only DRAM security is programmable (via TrustZone), but
89 * other platforms might have more programmable security devices
90 * present.
91 */
92
93 /* Populate common information for BL32 and BL33 */
94 SET_PARAM_HEAD(&bl32_image_ep_info, PARAM_EP, VERSION_1, 0);
95 SET_SECURITY_STATE(bl32_image_ep_info.h.attr, SECURE);
96 SET_PARAM_HEAD(&bl33_image_ep_info, PARAM_EP, VERSION_1, 0);
97 SET_SECURITY_STATE(bl33_image_ep_info.h.attr, NON_SECURE);
98
Venkatesh Yadav Abbarapu58b24d82022-07-12 09:19:03 +053099 PM_PACK_PAYLOAD4(payload, LOADER_MODULE_ID, 1, PM_LOAD_GET_HANDOFF_PARAMS,
100 (uintptr_t)addr >> 32U, (uintptr_t)addr, max_size);
101 ret_status = pm_ipi_send_sync(primary_proc, payload, NULL, 0);
102 if (ret_status == PM_RET_SUCCESS) {
103 INFO("BL31: GET_HANDOFF_PARAMS call success=%d\n", ret_status);
Prasad Kummarie0783112023-04-26 11:02:07 +0530104 tfa_handoff_addr = (uintptr_t)&addr;
Venkatesh Yadav Abbarapu58b24d82022-07-12 09:19:03 +0530105 } else {
Prasad Kummarie0783112023-04-26 11:02:07 +0530106 ERROR("BL31: GET_HANDOFF_PARAMS Failed, read tfa_handoff_addr from reg\n");
107 tfa_handoff_addr = mmio_read_32(PMC_GLOBAL_GLOB_GEN_STORAGE4);
Venkatesh Yadav Abbarapu58b24d82022-07-12 09:19:03 +0530108 }
109
Prasad Kummari07795fa2023-06-08 21:36:38 +0530110 enum xbl_handoff ret = xbl_handover(&bl32_image_ep_info,
Venkatesh Yadav Abbarapu9156ffd2020-01-22 21:23:20 -0700111 &bl33_image_ep_info,
Prasad Kummarie0783112023-04-26 11:02:07 +0530112 tfa_handoff_addr);
Prasad Kummari07795fa2023-06-08 21:36:38 +0530113 if (ret == XBL_HANDOFF_NO_STRUCT || ret == XBL_HANDOFF_INVAL_STRUCT) {
Venkatesh Yadav Abbarapu9156ffd2020-01-22 21:23:20 -0700114 bl31_set_default_config();
Prasad Kummari07795fa2023-06-08 21:36:38 +0530115 } else if (ret == XBL_HANDOFF_TOO_MANY_PARTS) {
Venkatesh Yadav Abbarapu39fdc0a2022-03-03 01:58:36 -0700116 ERROR("BL31: Error too many partitions %u\n", ret);
Prasad Kummari07795fa2023-06-08 21:36:38 +0530117 } else if (ret != XBL_HANDOFF_SUCCESS) {
Venkatesh Yadav Abbarapu9156ffd2020-01-22 21:23:20 -0700118 panic();
Abhyuday Godhasara4c1a7052021-08-11 02:52:35 -0700119 } else {
Akshay Belsaree3511ae2023-01-11 11:45:25 +0530120 INFO("BL31: PLM to TF-A handover success %u\n", ret);
Prasad Kummari6dee9fb2023-10-31 15:20:00 +0530121
122 /*
123 * The BL32 load address is indicated as 0x0 in the handoff
124 * parameters, which is different from the default/user-provided
125 * load address of 0x60000000 but the flags are correctly
126 * configured. Consequently, in this scenario, set the PC
127 * to the requested BL32_BASE address.
128 */
129
130 /* TODO: Remove the following check once this is fixed from PLM */
131 if (bl32_image_ep_info.pc == 0 && bl32_image_ep_info.spsr != 0) {
132 bl32_image_ep_info.pc = (uintptr_t)BL32_BASE;
133 }
Venkatesh Yadav Abbarapu9156ffd2020-01-22 21:23:20 -0700134 }
Siva Durga Prasad Paladugufe4af662018-09-25 18:44:58 +0530135
136 NOTICE("BL31: Secure code at 0x%lx\n", bl32_image_ep_info.pc);
137 NOTICE("BL31: Non secure code at 0x%lx\n", bl33_image_ep_info.pc);
138}
139
Tanmay Shahfdae9e82022-08-26 15:06:00 -0700140static versal_intr_info_type_el3_t type_el3_interrupt_table[MAX_INTR_EL3];
Shubhrajyoti Dattaabf61222021-03-17 23:01:17 +0530141
Tanmay Shahfdae9e82022-08-26 15:06:00 -0700142int request_intr_type_el3(uint32_t id, interrupt_type_handler_t handler)
Shubhrajyoti Dattaabf61222021-03-17 23:01:17 +0530143{
Tanmay Shahfdae9e82022-08-26 15:06:00 -0700144 static uint32_t index;
145 uint32_t i;
146
147 /* Validate 'handler' and 'id' parameters */
148 if (handler == NULL || index >= MAX_INTR_EL3) {
Shubhrajyoti Dattaabf61222021-03-17 23:01:17 +0530149 return -EINVAL;
150 }
151
Tanmay Shahfdae9e82022-08-26 15:06:00 -0700152 /* Check if a handler has already been registered */
153 for (i = 0; i < index; i++) {
154 if (id == type_el3_interrupt_table[i].id) {
155 return -EALREADY;
156 }
157 }
158
159 type_el3_interrupt_table[index].id = id;
160 type_el3_interrupt_table[index].handler = handler;
161
162 index++;
Shubhrajyoti Dattaabf61222021-03-17 23:01:17 +0530163
164 return 0;
165}
166
167static uint64_t rdo_el3_interrupt_handler(uint32_t id, uint32_t flags,
168 void *handle, void *cookie)
169{
170 uint32_t intr_id;
Tanmay Shahfdae9e82022-08-26 15:06:00 -0700171 uint32_t i;
172 interrupt_type_handler_t handler = NULL;
Shubhrajyoti Dattaabf61222021-03-17 23:01:17 +0530173
174 intr_id = plat_ic_get_pending_interrupt_id();
Shubhrajyoti Dattaabf61222021-03-17 23:01:17 +0530175
Tanmay Shahfdae9e82022-08-26 15:06:00 -0700176 for (i = 0; i < MAX_INTR_EL3; i++) {
177 if (intr_id == type_el3_interrupt_table[i].id) {
178 handler = type_el3_interrupt_table[i].handler;
179 }
Shubhrajyoti Dattaabf61222021-03-17 23:01:17 +0530180 }
181
Michal Simek5e2f5962022-09-13 11:48:53 +0200182 if (handler != NULL) {
183 return handler(intr_id, flags, handle, cookie);
184 }
Tanmay Shahfdae9e82022-08-26 15:06:00 -0700185
Shubhrajyoti Dattaabf61222021-03-17 23:01:17 +0530186 return 0;
187}
Amit Nagal3a7d3042023-07-10 10:32:15 +0530188
Siva Durga Prasad Paladugufe4af662018-09-25 18:44:58 +0530189void bl31_platform_setup(void)
190{
Amit Nagal3a7d3042023-07-10 10:32:15 +0530191 prepare_dtb();
192
Siva Durga Prasad Paladugufe4af662018-09-25 18:44:58 +0530193 /* Initialize the gic cpu and distributor interfaces */
194 plat_versal_gic_driver_init();
195 plat_versal_gic_init();
196}
197
198void bl31_plat_runtime_setup(void)
199{
Shubhrajyoti Dattaabf61222021-03-17 23:01:17 +0530200 uint64_t flags = 0;
Abhyuday Godhasara096f5cc2021-08-13 06:45:32 -0700201 int32_t rc;
Shubhrajyoti Dattaabf61222021-03-17 23:01:17 +0530202
203 set_interrupt_rm_flag(flags, NON_SECURE);
204 rc = register_interrupt_type_handler(INTR_TYPE_EL3,
205 rdo_el3_interrupt_handler, flags);
Abhyuday Godhasarabacbdee2021-08-20 00:27:03 -0700206 if (rc != 0) {
Shubhrajyoti Dattaabf61222021-03-17 23:01:17 +0530207 panic();
208 }
Michal Simek3da80c82023-10-13 11:12:19 +0200209
210 console_switch_state(CONSOLE_FLAG_RUNTIME);
Siva Durga Prasad Paladugufe4af662018-09-25 18:44:58 +0530211}
212
213/*
214 * Perform the very early platform specific architectural setup here.
215 */
216void bl31_plat_arch_setup(void)
217{
Tejas Patel54d13192019-02-27 18:44:55 +0530218 plat_arm_interconnect_init();
219 plat_arm_interconnect_enter_coherency();
220
Siva Durga Prasad Paladugufe4af662018-09-25 18:44:58 +0530221 const mmap_region_t bl_regions[] = {
Amit Nagalc1248e82023-09-04 21:53:59 -1200222#if (defined(XILINX_OF_BOARD_DTB_ADDR) && !IS_TFA_IN_OCM(BL31_BASE) && \
223 (!defined(PLAT_XLAT_TABLES_DYNAMIC)))
Amit Nagal3a7d3042023-07-10 10:32:15 +0530224 MAP_REGION_FLAT(XILINX_OF_BOARD_DTB_ADDR, XILINX_OF_BOARD_DTB_MAX_SIZE,
225 MT_MEMORY | MT_RW | MT_NS),
226#endif
Siva Durga Prasad Paladugufe4af662018-09-25 18:44:58 +0530227 MAP_REGION_FLAT(BL31_BASE, BL31_END - BL31_BASE,
228 MT_MEMORY | MT_RW | MT_SECURE),
229 MAP_REGION_FLAT(BL_CODE_BASE, BL_CODE_END - BL_CODE_BASE,
230 MT_CODE | MT_SECURE),
231 MAP_REGION_FLAT(BL_RO_DATA_BASE, BL_RO_DATA_END - BL_RO_DATA_BASE,
232 MT_RO_DATA | MT_SECURE),
233 MAP_REGION_FLAT(BL_COHERENT_RAM_BASE,
234 BL_COHERENT_RAM_END - BL_COHERENT_RAM_BASE,
235 MT_DEVICE | MT_RW | MT_SECURE),
236 {0}
237 };
238
Prasad Kummari0b377142023-10-26 16:32:26 +0530239 setup_page_tables(bl_regions, plat_get_mmap());
Michal Simek058251a2023-04-13 13:19:11 +0200240 enable_mmu(0);
Siva Durga Prasad Paladugufe4af662018-09-25 18:44:58 +0530241}