blob: b87a4279b328f3c4d6d64beaa92f8416a6da89c9 [file] [log] [blame]
Yann Gautier9d135e42018-07-16 19:36:06 +02001/*
Yann Gautierb55a6242022-03-07 16:09:23 +01002 * Copyright (c) 2015-2022, 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>
Yann Gautier14d769c2019-01-18 11:13:15 +010021#include <drivers/st/stm32_gpio.h>
Yann Gautier091eab52019-06-04 18:06:34 +020022#include <drivers/st/stm32_iwdg.h>
Antonio Nino Diaze0f90632018-12-14 00:18:21 +000023#include <drivers/st/stm32mp1_clk.h>
Yann Gautier9d135e42018-07-16 19:36:06 +020024#include <dt-bindings/clock/stm32mp1-clks.h>
Antonio Nino Diaze0f90632018-12-14 00:18:21 +000025#include <lib/el3_runtime/context_mgmt.h>
26#include <lib/mmio.h>
27#include <lib/xlat_tables/xlat_tables_v2.h>
28#include <plat/common/platform.h>
29
Yann Gautier9d135e42018-07-16 19:36:06 +020030#include <platform_sp_min.h>
Yann Gautier9d135e42018-07-16 19:36:06 +020031
32/******************************************************************************
33 * Placeholder variables for copying the arguments that have been passed to
34 * BL32 from BL2.
35 ******************************************************************************/
36static entry_point_info_t bl33_image_ep_info;
37
38/*******************************************************************************
39 * Interrupt handler for FIQ (secure IRQ)
40 ******************************************************************************/
41void sp_min_plat_fiq_handler(uint32_t id)
42{
Yann Gautierb55a6242022-03-07 16:09:23 +010043 (void)plat_crash_console_init();
44
Yann Gautierf9d40d52019-01-17 14:41:46 +010045 switch (id & INT_ID_MASK) {
Yann Gautier9d135e42018-07-16 19:36:06 +020046 case STM32MP1_IRQ_TZC400:
Yann Gautier658775c2021-07-06 10:00:44 +020047 tzc400_init(STM32MP1_TZC_BASE);
Yann Gautierd7820562019-04-25 13:29:12 +020048 (void)tzc400_it_handler();
Yann Gautier9d135e42018-07-16 19:36:06 +020049 panic();
50 break;
51 case STM32MP1_IRQ_AXIERRIRQ:
52 ERROR("STM32MP1_IRQ_AXIERRIRQ generated\n");
53 panic();
54 break;
55 default:
Yann Gautierb55a6242022-03-07 16:09:23 +010056 ERROR("SECURE IT handler not define for it : %u\n", id);
Yann Gautier9d135e42018-07-16 19:36:06 +020057 break;
58 }
59}
60
61/*******************************************************************************
62 * Return a pointer to the 'entry_point_info' structure of the next image for
63 * the security state specified. BL33 corresponds to the non-secure image type
64 * while BL32 corresponds to the secure image type. A NULL pointer is returned
65 * if the image does not exist.
66 ******************************************************************************/
67entry_point_info_t *sp_min_plat_get_bl33_ep_info(void)
68{
69 entry_point_info_t *next_image_info;
70
71 next_image_info = &bl33_image_ep_info;
72
73 if (next_image_info->pc == 0U) {
74 return NULL;
75 }
76
77 return next_image_info;
78}
79
Etienne Carriere72369b12019-12-08 08:17:56 +010080CASSERT((STM32MP_SEC_SYSRAM_BASE == STM32MP_SYSRAM_BASE) &&
81 ((STM32MP_SEC_SYSRAM_BASE + STM32MP_SEC_SYSRAM_SIZE) <=
82 (STM32MP_SYSRAM_BASE + STM32MP_SYSRAM_SIZE)),
83 assert_secure_sysram_fits_at_begining_of_sysram);
84
85#ifdef STM32MP_NS_SYSRAM_BASE
86CASSERT((STM32MP_NS_SYSRAM_BASE >= STM32MP_SEC_SYSRAM_BASE) &&
87 ((STM32MP_NS_SYSRAM_BASE + STM32MP_NS_SYSRAM_SIZE) ==
88 (STM32MP_SYSRAM_BASE + STM32MP_SYSRAM_SIZE)),
89 assert_non_secure_sysram_fits_at_end_of_sysram);
90
91CASSERT((STM32MP_NS_SYSRAM_BASE & (PAGE_SIZE_4KB - U(1))) == 0U,
92 assert_non_secure_sysram_base_is_4kbyte_aligned);
93
94#define TZMA1_SECURE_RANGE \
95 (((STM32MP_NS_SYSRAM_BASE - STM32MP_SYSRAM_BASE) >> FOUR_KB_SHIFT) - 1U)
96#else
Etienne Carrieree96162e2020-04-10 11:32:54 +020097#define TZMA1_SECURE_RANGE STM32MP1_ETZPC_TZMA_ALL_SECURE
Etienne Carriere72369b12019-12-08 08:17:56 +010098#endif /* STM32MP_NS_SYSRAM_BASE */
Etienne Carrieree96162e2020-04-10 11:32:54 +020099#define TZMA0_SECURE_RANGE STM32MP1_ETZPC_TZMA_ALL_SECURE
100
101static void stm32mp1_etzpc_early_setup(void)
102{
Etienne Carrieree96162e2020-04-10 11:32:54 +0200103 if (etzpc_init() != 0) {
104 panic();
105 }
106
107 etzpc_configure_tzma(STM32MP1_ETZPC_TZMA_ROM, TZMA0_SECURE_RANGE);
108 etzpc_configure_tzma(STM32MP1_ETZPC_TZMA_SYSRAM, TZMA1_SECURE_RANGE);
Etienne Carrieree96162e2020-04-10 11:32:54 +0200109}
110
Yann Gautier9d135e42018-07-16 19:36:06 +0200111/*******************************************************************************
112 * Perform any BL32 specific platform actions.
113 ******************************************************************************/
114void sp_min_early_platform_setup2(u_register_t arg0, u_register_t arg1,
115 u_register_t arg2, u_register_t arg3)
116{
Yann Gautier9d135e42018-07-16 19:36:06 +0200117 bl_params_t *params_from_bl2 = (bl_params_t *)arg0;
Yann Gautier658775c2021-07-06 10:00:44 +0200118#if STM32MP_USE_STM32IMAGE
119 uintptr_t dt_addr = STM32MP_DTB_BASE;
120#else
121 uintptr_t dt_addr = arg1;
122#endif
Yann Gautier9d135e42018-07-16 19:36:06 +0200123
124 /* Imprecise aborts can be masked in NonSecure */
125 write_scr(read_scr() | SCR_AW_BIT);
126
Yann Gautier7ffe84b2019-07-11 10:45:09 +0200127 mmap_add_region(BL_CODE_BASE, BL_CODE_BASE,
128 BL_CODE_END - BL_CODE_BASE,
129 MT_CODE | MT_SECURE);
130
131 configure_mmu();
132
Yann Gautier9d135e42018-07-16 19:36:06 +0200133 assert(params_from_bl2 != NULL);
134 assert(params_from_bl2->h.type == PARAM_BL_PARAMS);
135 assert(params_from_bl2->h.version >= VERSION_2);
136
137 bl_params_node_t *bl_params = params_from_bl2->head;
138
139 /*
140 * Copy BL33 entry point information.
141 * They are stored in Secure RAM, in BL2's address space.
142 */
143 while (bl_params != NULL) {
144 if (bl_params->image_id == BL33_IMAGE_ID) {
145 bl33_image_ep_info = *bl_params->ep_info;
Yann Gautier0ed7b2a2021-05-19 18:48:16 +0200146 /*
147 * Check if hw_configuration is given to BL32 and
148 * share it to BL33.
149 */
150 if (arg2 != 0U) {
151 bl33_image_ep_info.args.arg0 = 0U;
152 bl33_image_ep_info.args.arg1 = 0U;
153 bl33_image_ep_info.args.arg2 = arg2;
154 }
155
Yann Gautier9d135e42018-07-16 19:36:06 +0200156 break;
157 }
158
159 bl_params = bl_params->next_params_info;
160 }
161
Yann Gautier658775c2021-07-06 10:00:44 +0200162 if (dt_open_and_check(dt_addr) < 0) {
Yann Gautier9d135e42018-07-16 19:36:06 +0200163 panic();
164 }
165
Yann Gautier52448ab2019-01-17 14:53:24 +0100166 if (bsec_probe() != 0) {
167 panic();
168 }
169
Yann Gautier9d135e42018-07-16 19:36:06 +0200170 if (stm32mp1_clk_probe() < 0) {
171 panic();
172 }
173
Yann Gautier414f17c2021-10-18 15:50:05 +0200174 (void)stm32mp_uart_console_setup();
Etienne Carrieree96162e2020-04-10 11:32:54 +0200175
176 stm32mp1_etzpc_early_setup();
Yann Gautier9d135e42018-07-16 19:36:06 +0200177}
178
179/*******************************************************************************
180 * Initialize the MMU, security and the GIC.
181 ******************************************************************************/
182void sp_min_platform_setup(void)
183{
Yann Gautier9d135e42018-07-16 19:36:06 +0200184 generic_delay_timer_init();
185
186 stm32mp1_gic_init();
Yann Gautier14d769c2019-01-18 11:13:15 +0100187
Yann Gautier091eab52019-06-04 18:06:34 +0200188 if (stm32_iwdg_init() < 0) {
189 panic();
190 }
Etienne Carriere7a4a34f2020-05-13 10:07:45 +0200191
192 stm32mp_lock_periph_registering();
Etienne Carriere34f0e932020-07-16 17:36:18 +0200193
194 stm32mp1_init_scmi_server();
Yann Gautier9d135e42018-07-16 19:36:06 +0200195}
196
197void sp_min_plat_arch_setup(void)
198{
199}