blob: 1495e027ccd32f58004454609c2d25c52279bf0c [file] [log] [blame]
Yann Gautier9d135e42018-07-16 19:36:06 +02001/*
Yann Gautierd7820562019-04-25 13:29:12 +02002 * Copyright (c) 2015-2021, ARM Limited and Contributors. All rights reserved.
Yann Gautier9d135e42018-07-16 19:36:06 +02003 *
4 * SPDX-License-Identifier: BSD-3-Clause
5 */
6
Yann Gautier9d135e42018-07-16 19:36:06 +02007#include <assert.h>
Antonio Nino Diaze0f90632018-12-14 00:18:21 +00008#include <string.h>
9
10#include <platform_def.h>
11
12#include <arch_helpers.h>
13#include <common/bl_common.h>
14#include <common/debug.h>
Yann Gautier9d135e42018-07-16 19:36:06 +020015#include <context.h>
Yann Gautierf9d40d52019-01-17 14:41:46 +010016#include <drivers/arm/gicv2.h>
Antonio Nino Diaze0f90632018-12-14 00:18:21 +000017#include <drivers/arm/tzc400.h>
18#include <drivers/generic_delay_timer.h>
Yann Gautier52448ab2019-01-17 14:53:24 +010019#include <drivers/st/bsec.h>
Etienne Carrieree96162e2020-04-10 11:32:54 +020020#include <drivers/st/etzpc.h>
Antonio Nino Diaze0f90632018-12-14 00:18:21 +000021#include <drivers/st/stm32_console.h>
Yann Gautier14d769c2019-01-18 11:13:15 +010022#include <drivers/st/stm32_gpio.h>
Yann Gautier091eab52019-06-04 18:06:34 +020023#include <drivers/st/stm32_iwdg.h>
Antonio Nino Diaze0f90632018-12-14 00:18:21 +000024#include <drivers/st/stm32mp1_clk.h>
Yann Gautier9d135e42018-07-16 19:36:06 +020025#include <dt-bindings/clock/stm32mp1-clks.h>
Antonio Nino Diaze0f90632018-12-14 00:18:21 +000026#include <lib/el3_runtime/context_mgmt.h>
27#include <lib/mmio.h>
28#include <lib/xlat_tables/xlat_tables_v2.h>
29#include <plat/common/platform.h>
30
Yann Gautier9d135e42018-07-16 19:36:06 +020031#include <platform_sp_min.h>
Yann Gautier9d135e42018-07-16 19:36:06 +020032
33/******************************************************************************
34 * Placeholder variables for copying the arguments that have been passed to
35 * BL32 from BL2.
36 ******************************************************************************/
37static entry_point_info_t bl33_image_ep_info;
38
Andre Przywara678c6fa2020-01-25 00:58:35 +000039static console_t console;
Yann Gautier8593e442018-11-14 18:46:15 +010040
Yann Gautier9d135e42018-07-16 19:36:06 +020041/*******************************************************************************
42 * Interrupt handler for FIQ (secure IRQ)
43 ******************************************************************************/
44void sp_min_plat_fiq_handler(uint32_t id)
45{
Yann Gautierf9d40d52019-01-17 14:41:46 +010046 switch (id & INT_ID_MASK) {
Yann Gautier9d135e42018-07-16 19:36:06 +020047 case STM32MP1_IRQ_TZC400:
Yann Gautier658775c2021-07-06 10:00:44 +020048 tzc400_init(STM32MP1_TZC_BASE);
Yann Gautierd7820562019-04-25 13:29:12 +020049 (void)tzc400_it_handler();
Yann Gautier9d135e42018-07-16 19:36:06 +020050 panic();
51 break;
52 case STM32MP1_IRQ_AXIERRIRQ:
53 ERROR("STM32MP1_IRQ_AXIERRIRQ generated\n");
54 panic();
55 break;
56 default:
Yann Gautierf9d40d52019-01-17 14:41:46 +010057 ERROR("SECURE IT handler not define for it : %u", id);
Yann Gautier9d135e42018-07-16 19:36:06 +020058 break;
59 }
60}
61
62/*******************************************************************************
63 * Return a pointer to the 'entry_point_info' structure of the next image for
64 * the security state specified. BL33 corresponds to the non-secure image type
65 * while BL32 corresponds to the secure image type. A NULL pointer is returned
66 * if the image does not exist.
67 ******************************************************************************/
68entry_point_info_t *sp_min_plat_get_bl33_ep_info(void)
69{
70 entry_point_info_t *next_image_info;
71
72 next_image_info = &bl33_image_ep_info;
73
74 if (next_image_info->pc == 0U) {
75 return NULL;
76 }
77
78 return next_image_info;
79}
80
Etienne Carriere72369b12019-12-08 08:17:56 +010081CASSERT((STM32MP_SEC_SYSRAM_BASE == STM32MP_SYSRAM_BASE) &&
82 ((STM32MP_SEC_SYSRAM_BASE + STM32MP_SEC_SYSRAM_SIZE) <=
83 (STM32MP_SYSRAM_BASE + STM32MP_SYSRAM_SIZE)),
84 assert_secure_sysram_fits_at_begining_of_sysram);
85
86#ifdef STM32MP_NS_SYSRAM_BASE
87CASSERT((STM32MP_NS_SYSRAM_BASE >= STM32MP_SEC_SYSRAM_BASE) &&
88 ((STM32MP_NS_SYSRAM_BASE + STM32MP_NS_SYSRAM_SIZE) ==
89 (STM32MP_SYSRAM_BASE + STM32MP_SYSRAM_SIZE)),
90 assert_non_secure_sysram_fits_at_end_of_sysram);
91
92CASSERT((STM32MP_NS_SYSRAM_BASE & (PAGE_SIZE_4KB - U(1))) == 0U,
93 assert_non_secure_sysram_base_is_4kbyte_aligned);
94
95#define TZMA1_SECURE_RANGE \
96 (((STM32MP_NS_SYSRAM_BASE - STM32MP_SYSRAM_BASE) >> FOUR_KB_SHIFT) - 1U)
97#else
Etienne Carrieree96162e2020-04-10 11:32:54 +020098#define TZMA1_SECURE_RANGE STM32MP1_ETZPC_TZMA_ALL_SECURE
Etienne Carriere72369b12019-12-08 08:17:56 +010099#endif /* STM32MP_NS_SYSRAM_BASE */
Etienne Carrieree96162e2020-04-10 11:32:54 +0200100#define TZMA0_SECURE_RANGE STM32MP1_ETZPC_TZMA_ALL_SECURE
101
102static void stm32mp1_etzpc_early_setup(void)
103{
Etienne Carrieree96162e2020-04-10 11:32:54 +0200104 if (etzpc_init() != 0) {
105 panic();
106 }
107
108 etzpc_configure_tzma(STM32MP1_ETZPC_TZMA_ROM, TZMA0_SECURE_RANGE);
109 etzpc_configure_tzma(STM32MP1_ETZPC_TZMA_SYSRAM, TZMA1_SECURE_RANGE);
Etienne Carrieree96162e2020-04-10 11:32:54 +0200110}
111
Yann Gautier9d135e42018-07-16 19:36:06 +0200112/*******************************************************************************
113 * Perform any BL32 specific platform actions.
114 ******************************************************************************/
115void sp_min_early_platform_setup2(u_register_t arg0, u_register_t arg1,
116 u_register_t arg2, u_register_t arg3)
117{
Yann Gautierf9d40d52019-01-17 14:41:46 +0100118 struct dt_node_info dt_uart_info;
Yann Gautier9d135e42018-07-16 19:36:06 +0200119 int result;
120 bl_params_t *params_from_bl2 = (bl_params_t *)arg0;
Yann Gautier658775c2021-07-06 10:00:44 +0200121#if STM32MP_USE_STM32IMAGE
122 uintptr_t dt_addr = STM32MP_DTB_BASE;
123#else
124 uintptr_t dt_addr = arg1;
125#endif
Yann Gautier9d135e42018-07-16 19:36:06 +0200126
127 /* Imprecise aborts can be masked in NonSecure */
128 write_scr(read_scr() | SCR_AW_BIT);
129
Yann Gautier7ffe84b2019-07-11 10:45:09 +0200130 mmap_add_region(BL_CODE_BASE, BL_CODE_BASE,
131 BL_CODE_END - BL_CODE_BASE,
132 MT_CODE | MT_SECURE);
133
134 configure_mmu();
135
Yann Gautier9d135e42018-07-16 19:36:06 +0200136 assert(params_from_bl2 != NULL);
137 assert(params_from_bl2->h.type == PARAM_BL_PARAMS);
138 assert(params_from_bl2->h.version >= VERSION_2);
139
140 bl_params_node_t *bl_params = params_from_bl2->head;
141
142 /*
143 * Copy BL33 entry point information.
144 * They are stored in Secure RAM, in BL2's address space.
145 */
146 while (bl_params != NULL) {
147 if (bl_params->image_id == BL33_IMAGE_ID) {
148 bl33_image_ep_info = *bl_params->ep_info;
Yann Gautier0ed7b2a2021-05-19 18:48:16 +0200149 /*
150 * Check if hw_configuration is given to BL32 and
151 * share it to BL33.
152 */
153 if (arg2 != 0U) {
154 bl33_image_ep_info.args.arg0 = 0U;
155 bl33_image_ep_info.args.arg1 = 0U;
156 bl33_image_ep_info.args.arg2 = arg2;
157 }
158
Yann Gautier9d135e42018-07-16 19:36:06 +0200159 break;
160 }
161
162 bl_params = bl_params->next_params_info;
163 }
164
Yann Gautier658775c2021-07-06 10:00:44 +0200165 if (dt_open_and_check(dt_addr) < 0) {
Yann Gautier9d135e42018-07-16 19:36:06 +0200166 panic();
167 }
168
Yann Gautier52448ab2019-01-17 14:53:24 +0100169 if (bsec_probe() != 0) {
170 panic();
171 }
172
Yann Gautier9d135e42018-07-16 19:36:06 +0200173 if (stm32mp1_clk_probe() < 0) {
174 panic();
175 }
176
Yann Gautierf9d40d52019-01-17 14:41:46 +0100177 result = dt_get_stdout_uart_info(&dt_uart_info);
Yann Gautier9d135e42018-07-16 19:36:06 +0200178
Yann Gautier038bff22019-01-17 19:17:47 +0100179 if ((result > 0) && (dt_uart_info.status != 0U)) {
Yann Gautiera30e5f72019-09-04 11:55:10 +0200180 unsigned int console_flags;
181
Yann Gautierf9d40d52019-01-17 14:41:46 +0100182 if (console_stm32_register(dt_uart_info.base, 0,
Yann Gautiera2e2a302019-02-14 11:13:39 +0100183 STM32MP_UART_BAUDRATE, &console) ==
Yann Gautier8593e442018-11-14 18:46:15 +0100184 0) {
Yann Gautier9d135e42018-07-16 19:36:06 +0200185 panic();
186 }
Yann Gautier738df262019-04-24 16:14:22 +0200187
Yann Gautiera30e5f72019-09-04 11:55:10 +0200188 console_flags = CONSOLE_FLAG_BOOT | CONSOLE_FLAG_CRASH |
189 CONSOLE_FLAG_TRANSLATE_CRLF;
Yann Gautier738df262019-04-24 16:14:22 +0200190#ifdef DEBUG
Yann Gautiera30e5f72019-09-04 11:55:10 +0200191 console_flags |= CONSOLE_FLAG_RUNTIME;
Yann Gautier738df262019-04-24 16:14:22 +0200192#endif
Andre Przywara678c6fa2020-01-25 00:58:35 +0000193 console_set_scope(&console, console_flags);
Yann Gautier9d135e42018-07-16 19:36:06 +0200194 }
Etienne Carrieree96162e2020-04-10 11:32:54 +0200195
196 stm32mp1_etzpc_early_setup();
Yann Gautier9d135e42018-07-16 19:36:06 +0200197}
198
199/*******************************************************************************
200 * Initialize the MMU, security and the GIC.
201 ******************************************************************************/
202void sp_min_platform_setup(void)
203{
Yann Gautier9d135e42018-07-16 19:36:06 +0200204 generic_delay_timer_init();
205
206 stm32mp1_gic_init();
Yann Gautier14d769c2019-01-18 11:13:15 +0100207
Yann Gautier091eab52019-06-04 18:06:34 +0200208 if (stm32_iwdg_init() < 0) {
209 panic();
210 }
Etienne Carriere7a4a34f2020-05-13 10:07:45 +0200211
212 stm32mp_lock_periph_registering();
Etienne Carriere34f0e932020-07-16 17:36:18 +0200213
214 stm32mp1_init_scmi_server();
Yann Gautier9d135e42018-07-16 19:36:06 +0200215}
216
217void sp_min_plat_arch_setup(void)
218{
219}