blob: 60f7449e01799a6f16a5b4afb021c9ec551747c5 [file] [log] [blame]
Siva Durga Prasad Paladugufe4af662018-09-25 18:44:58 +05301/*
Venkatesh Yadav Abbarapu17a12ce2020-11-27 08:42:14 -07002 * Copyright (c) 2018-2021, ARM Limited and Contributors. All rights reserved.
Siva Durga Prasad Paladugufe4af662018-09-25 18:44:58 +05303 *
4 * SPDX-License-Identifier: BSD-3-Clause
5 */
6
7#include <assert.h>
Siva Durga Prasad Paladugufe4af662018-09-25 18:44:58 +05308#include <errno.h>
Tejas Patel54d13192019-02-27 18:44:55 +05309#include <plat_arm.h>
Tejas Patel69409962018-12-14 00:55:29 -080010#include <plat_private.h>
Antonio Nino Diaze0f90632018-12-14 00:18:21 +000011#include <bl31/bl31.h>
12#include <common/bl_common.h>
13#include <common/debug.h>
Venkatesh Yadav Abbarapu17a12ce2020-11-27 08:42:14 -070014#include <drivers/arm/dcc.h>
Antonio Nino Diaze0f90632018-12-14 00:18:21 +000015#include <drivers/arm/pl011.h>
16#include <drivers/console.h>
Venkatesh Yadav Abbarapu9156ffd2020-01-22 21:23:20 -070017#include <lib/mmio.h>
Antonio Nino Diaze0f90632018-12-14 00:18:21 +000018#include <lib/xlat_tables/xlat_tables.h>
19#include <plat/common/platform.h>
Venkatesh Yadav Abbarapu9156ffd2020-01-22 21:23:20 -070020#include <versal_def.h>
21#include <plat_private.h>
22#include <plat_startup.h>
Antonio Nino Diaze0f90632018-12-14 00:18:21 +000023
Siva Durga Prasad Paladugufe4af662018-09-25 18:44:58 +053024static entry_point_info_t bl32_image_ep_info;
25static entry_point_info_t bl33_image_ep_info;
Siva Durga Prasad Paladugufe4af662018-09-25 18:44:58 +053026
27/*
28 * Return a pointer to the 'entry_point_info' structure of the next image for
29 * the security state specified. BL33 corresponds to the non-secure image type
30 * while BL32 corresponds to the secure image type. A NULL pointer is returned
31 * if the image does not exist.
32 */
33entry_point_info_t *bl31_plat_get_next_image_ep_info(uint32_t type)
34{
35 assert(sec_state_is_valid(type));
36
Venkatesh Yadav Abbarapu5f115db2021-01-10 20:40:16 -070037 if (type == NON_SECURE) {
Siva Durga Prasad Paladugufe4af662018-09-25 18:44:58 +053038 return &bl33_image_ep_info;
Venkatesh Yadav Abbarapu5f115db2021-01-10 20:40:16 -070039 }
Siva Durga Prasad Paladugufe4af662018-09-25 18:44:58 +053040
41 return &bl32_image_ep_info;
42}
43
44/*
Venkatesh Yadav Abbarapu9156ffd2020-01-22 21:23:20 -070045 * Set the build time defaults,if we can't find any config data.
46 */
47static inline void bl31_set_default_config(void)
48{
Abhyuday Godhasarac0c49e52021-08-24 07:39:41 -070049 bl32_image_ep_info.pc = (uintptr_t)BL32_BASE;
50 bl32_image_ep_info.spsr = (uint32_t)arm_get_spsr_for_bl32_entry();
51 bl33_image_ep_info.pc = (uintptr_t)plat_get_ns_image_entrypoint();
52 bl33_image_ep_info.spsr = (uint32_t)SPSR_64(MODE_EL2, MODE_SP_ELX,
53 DISABLE_ALL_EXCEPTIONS);
Venkatesh Yadav Abbarapu9156ffd2020-01-22 21:23:20 -070054}
55
56/*
Siva Durga Prasad Paladugufe4af662018-09-25 18:44:58 +053057 * Perform any BL31 specific platform actions. Here is an opportunity to copy
58 * parameters passed by the calling EL (S-EL1 in BL2 & S-EL3 in BL1) before they
59 * are lost (potentially). This needs to be done before the MMU is initialized
60 * so that the memory layout can be used while creating page tables.
61 */
62void bl31_early_platform_setup2(u_register_t arg0, u_register_t arg1,
63 u_register_t arg2, u_register_t arg3)
64{
Venkatesh Yadav Abbarapu9156ffd2020-01-22 21:23:20 -070065 uint64_t atf_handoff_addr;
Siva Durga Prasad Paladugufe4af662018-09-25 18:44:58 +053066
Venkatesh Yadav Abbarapue91b4c22021-12-19 21:36:23 -070067 if (VERSAL_CONSOLE_IS(pl011) || (VERSAL_CONSOLE_IS(pl011_1))) {
Venkatesh Yadav Abbarapu17a12ce2020-11-27 08:42:14 -070068 static console_t versal_runtime_console;
69 /* Initialize the console to provide early debug support */
Abhyuday Godhasara096f5cc2021-08-13 06:45:32 -070070 int rc = console_pl011_register((unsigned long)VERSAL_UART_BASE,
71 (unsigned int)VERSAL_UART_CLOCK,
72 (unsigned int)VERSAL_UART_BAUDRATE,
Venkatesh Yadav Abbarapu17a12ce2020-11-27 08:42:14 -070073 &versal_runtime_console);
74 if (rc == 0) {
75 panic();
76 }
Siva Durga Prasad Paladugufe4af662018-09-25 18:44:58 +053077
Abhyuday Godhasara096f5cc2021-08-13 06:45:32 -070078 console_set_scope(&versal_runtime_console, (unsigned int)(CONSOLE_FLAG_BOOT |
79 CONSOLE_FLAG_RUNTIME));
Venkatesh Yadav Abbarapu17a12ce2020-11-27 08:42:14 -070080 } else if (VERSAL_CONSOLE_IS(dcc)) {
81 /* Initialize the dcc console for debug */
82 int rc = console_dcc_register();
83 if (rc == 0) {
84 panic();
85 }
Abhyuday Godhasara4c1a7052021-08-11 02:52:35 -070086 } else {
87 NOTICE("BL31: Did not register for any console.\n");
Venkatesh Yadav Abbarapu17a12ce2020-11-27 08:42:14 -070088 }
Abhyuday Godhasara4c1a7052021-08-11 02:52:35 -070089
Siva Durga Prasad Paladugufe4af662018-09-25 18:44:58 +053090 /* Initialize the platform config for future decision making */
91 versal_config_setup();
92 /* There are no parameters from BL2 if BL31 is a reset vector */
93 assert(arg0 == 0U);
94 assert(arg1 == 0U);
95
96 /*
97 * Do initial security configuration to allow DRAM/device access. On
98 * Base VERSAL only DRAM security is programmable (via TrustZone), but
99 * other platforms might have more programmable security devices
100 * present.
101 */
102
103 /* Populate common information for BL32 and BL33 */
104 SET_PARAM_HEAD(&bl32_image_ep_info, PARAM_EP, VERSION_1, 0);
105 SET_SECURITY_STATE(bl32_image_ep_info.h.attr, SECURE);
106 SET_PARAM_HEAD(&bl33_image_ep_info, PARAM_EP, VERSION_1, 0);
107 SET_SECURITY_STATE(bl33_image_ep_info.h.attr, NON_SECURE);
108
Venkatesh Yadav Abbarapu9156ffd2020-01-22 21:23:20 -0700109 atf_handoff_addr = mmio_read_32(PMC_GLOBAL_GLOB_GEN_STORAGE4);
110 enum fsbl_handoff ret = fsbl_atf_handover(&bl32_image_ep_info,
111 &bl33_image_ep_info,
112 atf_handoff_addr);
Venkatesh Yadav Abbarapuef75de02020-11-23 03:29:51 -0800113 if (ret == FSBL_HANDOFF_NO_STRUCT || ret == FSBL_HANDOFF_INVAL_STRUCT) {
Venkatesh Yadav Abbarapu9156ffd2020-01-22 21:23:20 -0700114 bl31_set_default_config();
115 } else if (ret != FSBL_HANDOFF_SUCCESS) {
116 panic();
Abhyuday Godhasara4c1a7052021-08-11 02:52:35 -0700117 } else {
118 ERROR("BL31: Error during fsbl-atf handover %d.\n", ret);
Venkatesh Yadav Abbarapu9156ffd2020-01-22 21:23:20 -0700119 }
Siva Durga Prasad Paladugufe4af662018-09-25 18:44:58 +0530120
121 NOTICE("BL31: Secure code at 0x%lx\n", bl32_image_ep_info.pc);
122 NOTICE("BL31: Non secure code at 0x%lx\n", bl33_image_ep_info.pc);
123}
124
Shubhrajyoti Dattaabf61222021-03-17 23:01:17 +0530125static interrupt_type_handler_t type_el3_interrupt_handler;
126
127int request_intr_type_el3(uint32_t id, interrupt_type_handler_t handler)
128{
129 /* Validate 'handler'*/
Abhyuday Godhasarabacbdee2021-08-20 00:27:03 -0700130 if (handler == NULL) {
Shubhrajyoti Dattaabf61222021-03-17 23:01:17 +0530131 return -EINVAL;
132 }
133
134 type_el3_interrupt_handler = handler;
135
136 return 0;
137}
138
139static uint64_t rdo_el3_interrupt_handler(uint32_t id, uint32_t flags,
140 void *handle, void *cookie)
141{
142 uint32_t intr_id;
143 interrupt_type_handler_t handler;
144
145 intr_id = plat_ic_get_pending_interrupt_id();
146 /* Currently we support one interrupt */
147 if (intr_id != PLAT_VERSAL_IPI_IRQ) {
148 WARN("Unexpected interrupt call: 0x%x\n", intr_id);
149 return 0;
150 }
151
152 handler = type_el3_interrupt_handler;
Abhyuday Godhasarabacbdee2021-08-20 00:27:03 -0700153 if (handler != NULL) {
Shubhrajyoti Dattaabf61222021-03-17 23:01:17 +0530154 return handler(intr_id, flags, handle, cookie);
155 }
156
157 return 0;
158}
Siva Durga Prasad Paladugufe4af662018-09-25 18:44:58 +0530159void bl31_platform_setup(void)
160{
161 /* Initialize the gic cpu and distributor interfaces */
162 plat_versal_gic_driver_init();
163 plat_versal_gic_init();
164}
165
166void bl31_plat_runtime_setup(void)
167{
Shubhrajyoti Dattaabf61222021-03-17 23:01:17 +0530168 uint64_t flags = 0;
Abhyuday Godhasara096f5cc2021-08-13 06:45:32 -0700169 int32_t rc;
Shubhrajyoti Dattaabf61222021-03-17 23:01:17 +0530170
171 set_interrupt_rm_flag(flags, NON_SECURE);
172 rc = register_interrupt_type_handler(INTR_TYPE_EL3,
173 rdo_el3_interrupt_handler, flags);
Abhyuday Godhasarabacbdee2021-08-20 00:27:03 -0700174 if (rc != 0) {
Shubhrajyoti Dattaabf61222021-03-17 23:01:17 +0530175 panic();
176 }
Siva Durga Prasad Paladugufe4af662018-09-25 18:44:58 +0530177}
178
179/*
180 * Perform the very early platform specific architectural setup here.
181 */
182void bl31_plat_arch_setup(void)
183{
Tejas Patel54d13192019-02-27 18:44:55 +0530184 plat_arm_interconnect_init();
185 plat_arm_interconnect_enter_coherency();
186
Siva Durga Prasad Paladugufe4af662018-09-25 18:44:58 +0530187 const mmap_region_t bl_regions[] = {
188 MAP_REGION_FLAT(BL31_BASE, BL31_END - BL31_BASE,
189 MT_MEMORY | MT_RW | MT_SECURE),
190 MAP_REGION_FLAT(BL_CODE_BASE, BL_CODE_END - BL_CODE_BASE,
191 MT_CODE | MT_SECURE),
192 MAP_REGION_FLAT(BL_RO_DATA_BASE, BL_RO_DATA_END - BL_RO_DATA_BASE,
193 MT_RO_DATA | MT_SECURE),
194 MAP_REGION_FLAT(BL_COHERENT_RAM_BASE,
195 BL_COHERENT_RAM_END - BL_COHERENT_RAM_BASE,
196 MT_DEVICE | MT_RW | MT_SECURE),
197 {0}
198 };
199
200 setup_page_tables(bl_regions, plat_versal_get_mmap());
201 enable_mmu_el3(0);
202}