blob: 20356e412ad884589cde43becb2e35aba0e3f524 [file] [log] [blame]
Yann Gautier4b0c72a2018-07-16 10:54:09 +02001/*
Yann Gautierb76c61a2020-12-16 10:17:35 +01002 * Copyright (c) 2015-2022, ARM Limited and Contributors. All rights reserved.
Yann Gautier4b0c72a2018-07-16 10:54:09 +02003 *
4 * SPDX-License-Identifier: BSD-3-Clause
5 */
6
Yann Gautier4b0c72a2018-07-16 10:54:09 +02007#include <assert.h>
Yann Gautier658775c2021-07-06 10:00:44 +02008#include <errno.h>
Antonio Nino Diaze0f90632018-12-14 00:18:21 +00009#include <string.h>
10
Antonio Nino Diaze0f90632018-12-14 00:18:21 +000011#include <arch_helpers.h>
12#include <common/bl_common.h>
13#include <common/debug.h>
14#include <common/desc_image_load.h>
Antonio Nino Diaze0f90632018-12-14 00:18:21 +000015#include <drivers/generic_delay_timer.h>
Yann Gautiera3bd8d12021-06-18 11:33:26 +020016#include <drivers/mmc.h>
Yann Gautier3edc7c32019-05-20 19:17:08 +020017#include <drivers/st/bsec.h>
Pascal Pailletfc7b8052021-01-29 14:48:49 +010018#include <drivers/st/regulator_fixed.h>
Yann Gautier091eab52019-06-04 18:06:34 +020019#include <drivers/st/stm32_iwdg.h>
Yann Gautier3d8497c2021-10-18 16:06:22 +020020#include <drivers/st/stm32_uart.h>
Antonio Nino Diaze0f90632018-12-14 00:18:21 +000021#include <drivers/st/stm32mp1_clk.h>
Antonio Nino Diaze0f90632018-12-14 00:18:21 +000022#include <drivers/st/stm32mp1_pwr.h>
23#include <drivers/st/stm32mp1_ram.h>
Yann Gautier0c810882021-12-17 09:53:04 +010024#include <drivers/st/stm32mp_pmic.h>
Yann Gautier658775c2021-07-06 10:00:44 +020025#include <lib/fconf/fconf.h>
26#include <lib/fconf/fconf_dyn_cfg_getter.h>
Antonio Nino Diaze0f90632018-12-14 00:18:21 +000027#include <lib/mmio.h>
Yann Gautierb3386f72019-04-19 09:41:01 +020028#include <lib/optee_utils.h>
Antonio Nino Diaze0f90632018-12-14 00:18:21 +000029#include <lib/xlat_tables/xlat_tables_v2.h>
30#include <plat/common/platform.h>
31
Yann Gautier0c810882021-12-17 09:53:04 +010032#include <platform_def.h>
Sughosh Ganu03e2f802021-12-01 15:56:27 +053033#include <stm32mp_common.h>
Yann Gautier091eab52019-06-04 18:06:34 +020034#include <stm32mp1_dbgmcu.h>
Yann Gautier4b0c72a2018-07-16 10:54:09 +020035
Lionel Debieve7192a002020-01-28 09:02:41 +010036#if DEBUG
37static const char debug_msg[] = {
38 "***************************************************\n"
39 "** DEBUG ACCESS PORT IS OPEN! **\n"
40 "** This boot image is only for debugging purpose **\n"
41 "** and is unsafe for production use. **\n"
42 "** **\n"
43 "** If you see this message and you are not **\n"
44 "** debugging report this immediately to your **\n"
45 "** vendor! **\n"
46 "***************************************************\n"
47};
48#endif
49
Yann Gautiercc5f89a2020-02-12 09:36:23 +010050#if STM32MP15
Lionel Debieve7bd96f42019-09-03 12:22:23 +020051static struct stm32mp_auth_ops stm32mp1_auth_ops;
Yann Gautiercc5f89a2020-02-12 09:36:23 +010052#endif
Yann Gautier8593e442018-11-14 18:46:15 +010053
Yann Gautierf9d40d52019-01-17 14:41:46 +010054static void print_reset_reason(void)
55{
Yann Gautier3d78a2e2019-02-14 11:01:20 +010056 uint32_t rstsr = mmio_read_32(stm32mp_rcc_base() + RCC_MP_RSTSCLRR);
Yann Gautierf9d40d52019-01-17 14:41:46 +010057
58 if (rstsr == 0U) {
59 WARN("Reset reason unknown\n");
60 return;
61 }
62
63 INFO("Reset reason (0x%x):\n", rstsr);
64
65 if ((rstsr & RCC_MP_RSTSCLRR_PADRSTF) == 0U) {
66 if ((rstsr & RCC_MP_RSTSCLRR_STDBYRSTF) != 0U) {
67 INFO("System exits from STANDBY\n");
68 return;
69 }
70
71 if ((rstsr & RCC_MP_RSTSCLRR_CSTDBYRSTF) != 0U) {
72 INFO("MPU exits from CSTANDBY\n");
73 return;
74 }
75 }
76
77 if ((rstsr & RCC_MP_RSTSCLRR_PORRSTF) != 0U) {
78 INFO(" Power-on Reset (rst_por)\n");
79 return;
80 }
81
82 if ((rstsr & RCC_MP_RSTSCLRR_BORRSTF) != 0U) {
83 INFO(" Brownout Reset (rst_bor)\n");
84 return;
85 }
86
Yann Gautiercc5f89a2020-02-12 09:36:23 +010087#if STM32MP15
Yann Gautierf9d40d52019-01-17 14:41:46 +010088 if ((rstsr & RCC_MP_RSTSCLRR_MCSYSRSTF) != 0U) {
89 if ((rstsr & RCC_MP_RSTSCLRR_PADRSTF) != 0U) {
90 INFO(" System reset generated by MCU (MCSYSRST)\n");
91 } else {
92 INFO(" Local reset generated by MCU (MCSYSRST)\n");
93 }
94 return;
95 }
Yann Gautiercc5f89a2020-02-12 09:36:23 +010096#endif
Yann Gautierf9d40d52019-01-17 14:41:46 +010097
98 if ((rstsr & RCC_MP_RSTSCLRR_MPSYSRSTF) != 0U) {
99 INFO(" System reset generated by MPU (MPSYSRST)\n");
100 return;
101 }
102
103 if ((rstsr & RCC_MP_RSTSCLRR_HCSSRSTF) != 0U) {
104 INFO(" Reset due to a clock failure on HSE\n");
105 return;
106 }
107
108 if ((rstsr & RCC_MP_RSTSCLRR_IWDG1RSTF) != 0U) {
109 INFO(" IWDG1 Reset (rst_iwdg1)\n");
110 return;
111 }
112
113 if ((rstsr & RCC_MP_RSTSCLRR_IWDG2RSTF) != 0U) {
114 INFO(" IWDG2 Reset (rst_iwdg2)\n");
115 return;
116 }
117
118 if ((rstsr & RCC_MP_RSTSCLRR_MPUP0RSTF) != 0U) {
119 INFO(" MPU Processor 0 Reset\n");
120 return;
121 }
122
Yann Gautiercc5f89a2020-02-12 09:36:23 +0100123#if STM32MP15
Yann Gautierf9d40d52019-01-17 14:41:46 +0100124 if ((rstsr & RCC_MP_RSTSCLRR_MPUP1RSTF) != 0U) {
125 INFO(" MPU Processor 1 Reset\n");
126 return;
127 }
Yann Gautiercc5f89a2020-02-12 09:36:23 +0100128#endif
Yann Gautierf9d40d52019-01-17 14:41:46 +0100129
130 if ((rstsr & RCC_MP_RSTSCLRR_PADRSTF) != 0U) {
131 INFO(" Pad Reset from NRST\n");
132 return;
133 }
134
135 if ((rstsr & RCC_MP_RSTSCLRR_VCORERSTF) != 0U) {
136 INFO(" Reset due to a failure of VDD_CORE\n");
137 return;
138 }
139
140 ERROR(" Unidentified reset reason\n");
141}
142
143void bl2_el3_early_platform_setup(u_register_t arg0,
144 u_register_t arg1 __unused,
145 u_register_t arg2 __unused,
146 u_register_t arg3 __unused)
Yann Gautier4b0c72a2018-07-16 10:54:09 +0200147{
Yann Gautierd1435742021-10-18 10:55:23 +0200148 stm32mp_setup_early_console();
149
Yann Gautiera2e2a302019-02-14 11:13:39 +0100150 stm32mp_save_boot_ctx_address(arg0);
Yann Gautier4b0c72a2018-07-16 10:54:09 +0200151}
152
153void bl2_platform_setup(void)
154{
Yann Gautiercaf575b2018-07-24 17:18:19 +0200155 int ret;
156
Yann Gautiercaf575b2018-07-24 17:18:19 +0200157 ret = stm32mp1_ddr_probe();
158 if (ret < 0) {
159 ERROR("Invalid DDR init: error %d\n", ret);
160 panic();
161 }
162
Yann Gautierf3bd87e2020-09-04 15:55:53 +0200163 /* Map DDR for binary load, now with cacheable attribute */
Yann Gautiera55169b2020-01-10 18:18:59 +0100164 ret = mmap_add_dynamic_region(STM32MP_DDR_BASE, STM32MP_DDR_BASE,
Yann Gautierf3bd87e2020-09-04 15:55:53 +0200165 STM32MP_DDR_MAX_SIZE, MT_MEMORY | MT_RW | MT_SECURE);
166 if (ret < 0) {
167 ERROR("DDR mapping: error %d\n", ret);
168 panic();
169 }
Yann Gautiera55169b2020-01-10 18:18:59 +0100170
Yann Gautier0ed7b2a2021-05-19 18:48:16 +0200171#if STM32MP_USE_STM32IMAGE
Yann Gautierb3386f72019-04-19 09:41:01 +0200172#ifdef AARCH32_SP_OPTEE
173 INFO("BL2 runs OP-TEE setup\n");
Yann Gautierb3386f72019-04-19 09:41:01 +0200174#else
Yann Gautier4b0c72a2018-07-16 10:54:09 +0200175 INFO("BL2 runs SP_MIN setup\n");
Yann Gautierb3386f72019-04-19 09:41:01 +0200176#endif
Yann Gautier0ed7b2a2021-05-19 18:48:16 +0200177#endif /* STM32MP_USE_STM32IMAGE */
Yann Gautier4b0c72a2018-07-16 10:54:09 +0200178}
179
Yann Gautiercc5f89a2020-02-12 09:36:23 +0100180#if STM32MP15
Yann Gautier5c1dab32019-04-17 15:12:58 +0200181static void update_monotonic_counter(void)
182{
183 uint32_t version;
184 uint32_t otp;
185
186 CASSERT(STM32_TF_VERSION <= MAX_MONOTONIC_VALUE,
187 assert_stm32mp1_monotonic_counter_reach_max);
188
189 /* Check if monotonic counter needs to be incremented */
190 if (stm32_get_otp_index(MONOTONIC_OTP, &otp, NULL) != 0) {
191 panic();
192 }
193
194 if (stm32_get_otp_value_from_idx(otp, &version) != 0) {
195 panic();
196 }
197
198 if ((version + 1U) < BIT(STM32_TF_VERSION)) {
199 uint32_t result;
200
201 /* Need to increment the monotonic counter. */
202 version = BIT(STM32_TF_VERSION) - 1U;
203
204 result = bsec_program_otp(version, otp);
205 if (result != BSEC_OK) {
206 ERROR("BSEC: MONOTONIC_OTP program Error %u\n",
207 result);
208 panic();
209 }
210 INFO("Monotonic counter has been incremented (value 0x%x)\n",
211 version);
212 }
213}
Yann Gautiercc5f89a2020-02-12 09:36:23 +0100214#endif
Yann Gautier5c1dab32019-04-17 15:12:58 +0200215
Yann Gautier4b0c72a2018-07-16 10:54:09 +0200216void bl2_el3_plat_arch_setup(void)
217{
Yann Gautier69035a82018-07-05 16:48:16 +0200218 const char *board_model;
Yann Gautier41934662018-07-20 11:36:05 +0200219 boot_api_context_t *boot_context =
Yann Gautiera2e2a302019-02-14 11:13:39 +0100220 (boot_api_context_t *)stm32mp_get_boot_ctx_address();
Yann Gautier3d78a2e2019-02-14 11:01:20 +0100221 uintptr_t pwr_base;
222 uintptr_t rcc_base;
Yann Gautier41934662018-07-20 11:36:05 +0200223
Nicolas Le Bayon97287cd2019-05-20 18:35:02 +0200224 if (bsec_probe() != 0U) {
225 panic();
226 }
227
Yann Gautierf9d40d52019-01-17 14:41:46 +0100228 mmap_add_region(BL_CODE_BASE, BL_CODE_BASE,
229 BL_CODE_END - BL_CODE_BASE,
230 MT_CODE | MT_SECURE);
231
Yann Gautier0ed7b2a2021-05-19 18:48:16 +0200232#if STM32MP_USE_STM32IMAGE
Yann Gautierb3386f72019-04-19 09:41:01 +0200233#ifdef AARCH32_SP_OPTEE
Yann Gautierb3386f72019-04-19 09:41:01 +0200234 mmap_add_region(STM32MP_OPTEE_BASE, STM32MP_OPTEE_BASE,
235 STM32MP_OPTEE_SIZE,
236 MT_MEMORY | MT_RW | MT_SECURE);
Yann Gautier90f84d72021-07-13 14:44:09 +0200237#else
238 /* Prevent corruption of preloaded BL32 */
239 mmap_add_region(BL32_BASE, BL32_BASE,
240 BL32_LIMIT - BL32_BASE,
241 MT_RO_DATA | MT_SECURE);
Yann Gautierb3386f72019-04-19 09:41:01 +0200242#endif
Yann Gautier0ed7b2a2021-05-19 18:48:16 +0200243#endif /* STM32MP_USE_STM32IMAGE */
244
Yann Gautierf9d40d52019-01-17 14:41:46 +0100245 /* Prevent corruption of preloaded Device Tree */
246 mmap_add_region(DTB_BASE, DTB_BASE,
247 DTB_LIMIT - DTB_BASE,
Yann Gautier3d33df62019-12-17 17:11:10 +0100248 MT_RO_DATA | MT_SECURE);
Yann Gautierf9d40d52019-01-17 14:41:46 +0100249
250 configure_mmu();
251
Yann Gautier05773eb2020-08-24 11:51:50 +0200252 if (dt_open_and_check(STM32MP_DTB_BASE) < 0) {
Yann Gautierf9d40d52019-01-17 14:41:46 +0100253 panic();
254 }
255
Yann Gautier3d78a2e2019-02-14 11:01:20 +0100256 pwr_base = stm32mp_pwr_base();
257 rcc_base = stm32mp_rcc_base();
258
Yann Gautier4b0c72a2018-07-16 10:54:09 +0200259 /*
260 * Disable the backup domain write protection.
261 * The protection is enable at each reset by hardware
262 * and must be disabled by software.
263 */
Yann Gautier3d78a2e2019-02-14 11:01:20 +0100264 mmio_setbits_32(pwr_base + PWR_CR1, PWR_CR1_DBP);
Yann Gautier4b0c72a2018-07-16 10:54:09 +0200265
Yann Gautier3d78a2e2019-02-14 11:01:20 +0100266 while ((mmio_read_32(pwr_base + PWR_CR1) & PWR_CR1_DBP) == 0U) {
Yann Gautier4b0c72a2018-07-16 10:54:09 +0200267 ;
268 }
269
270 /* Reset backup domain on cold boot cases */
Yann Gautier3d78a2e2019-02-14 11:01:20 +0100271 if ((mmio_read_32(rcc_base + RCC_BDCR) & RCC_BDCR_RTCSRC_MASK) == 0U) {
272 mmio_setbits_32(rcc_base + RCC_BDCR, RCC_BDCR_VSWRST);
Yann Gautier4b0c72a2018-07-16 10:54:09 +0200273
Yann Gautier3d78a2e2019-02-14 11:01:20 +0100274 while ((mmio_read_32(rcc_base + RCC_BDCR) & RCC_BDCR_VSWRST) ==
Yann Gautier4b0c72a2018-07-16 10:54:09 +0200275 0U) {
276 ;
277 }
278
Yann Gautier3d78a2e2019-02-14 11:01:20 +0100279 mmio_clrbits_32(rcc_base + RCC_BDCR, RCC_BDCR_VSWRST);
Yann Gautier4b0c72a2018-07-16 10:54:09 +0200280 }
281
Yann Gautiercc5f89a2020-02-12 09:36:23 +0100282#if STM32MP15
Yann Gautiered342322019-02-15 17:33:27 +0100283 /* Disable MCKPROT */
284 mmio_clrbits_32(rcc_base + RCC_TZCR, RCC_TZCR_MCKPROT);
Yann Gautiercc5f89a2020-02-12 09:36:23 +0100285#endif
Yann Gautiered342322019-02-15 17:33:27 +0100286
Yann Gautierc0882f42021-04-27 18:19:13 +0200287 /*
288 * Set minimum reset pulse duration to 31ms for discrete power
289 * supplied boards.
290 */
291 if (dt_pmic_status() <= 0) {
292 mmio_clrsetbits_32(rcc_base + RCC_RDLSICR,
293 RCC_RDLSICR_MRD_MASK,
294 31U << RCC_RDLSICR_MRD_SHIFT);
295 }
296
Yann Gautier4b0c72a2018-07-16 10:54:09 +0200297 generic_delay_timer_init();
298
Yann Gautier3d8497c2021-10-18 16:06:22 +0200299#if STM32MP_UART_PROGRAMMER
300 /* Disable programmer UART before changing clock tree */
301 if (boot_context->boot_interface_selected ==
302 BOOT_API_CTX_BOOT_INTERFACE_SEL_SERIAL_UART) {
303 uintptr_t uart_prog_addr =
304 get_uart_address(boot_context->boot_interface_instance);
305
306 stm32_uart_stop(uart_prog_addr);
307 }
308#endif
Yann Gautier9aea69e2018-07-24 17:13:36 +0200309 if (stm32mp1_clk_probe() < 0) {
310 panic();
311 }
312
313 if (stm32mp1_clk_init() < 0) {
314 panic();
315 }
316
Yann Gautier6eef5252021-12-10 17:04:40 +0100317 stm32_save_boot_interface(boot_context->boot_interface_selected,
318 boot_context->boot_interface_instance);
319
Yann Gautiercc5f89a2020-02-12 09:36:23 +0100320#if STM32MP_USB_PROGRAMMER && STM32MP15
Yann Gautiercd16df32021-06-04 14:04:05 +0200321 /* Deconfigure all UART RX pins configured by ROM code */
322 stm32mp1_deconfigure_uart_pins();
323#endif
324
Yann Gautier66baa962021-10-18 14:01:00 +0200325 if (stm32mp_uart_console_setup() != 0) {
Yann Gautier69035a82018-07-05 16:48:16 +0200326 goto skip_console_init;
327 }
328
Yann Gautierc7374052019-06-04 18:02:37 +0200329 stm32mp_print_cpuinfo();
330
Yann Gautier69035a82018-07-05 16:48:16 +0200331 board_model = dt_get_board_model();
332 if (board_model != NULL) {
Yann Gautierf9d40d52019-01-17 14:41:46 +0100333 NOTICE("Model: %s\n", board_model);
Yann Gautier69035a82018-07-05 16:48:16 +0200334 }
335
Yann Gautier35dc0772019-05-13 18:34:48 +0200336 stm32mp_print_boardinfo();
337
Lionel Debieve7bd96f42019-09-03 12:22:23 +0200338 if (boot_context->auth_status != BOOT_API_CTX_AUTH_NO) {
339 NOTICE("Bootrom authentication %s\n",
340 (boot_context->auth_status == BOOT_API_CTX_AUTH_FAILED) ?
341 "failed" : "succeeded");
342 }
343
Yann Gautier69035a82018-07-05 16:48:16 +0200344skip_console_init:
Pascal Pailletfc7b8052021-01-29 14:48:49 +0100345 if (fixed_regulator_register() != 0) {
346 panic();
347 }
348
Yann Gautier45c1e582020-09-17 11:54:52 +0200349 if (dt_pmic_status() > 0) {
350 initialize_pmic();
Nicolas Le Bayon0b10b652019-11-18 13:13:36 +0100351 print_pmic_info_and_debug();
Yann Gautier45c1e582020-09-17 11:54:52 +0200352 }
353
354 stm32mp1_syscfg_init();
355
Yann Gautier091eab52019-06-04 18:06:34 +0200356 if (stm32_iwdg_init() < 0) {
357 panic();
358 }
359
360 stm32_iwdg_refresh();
361
Lionel Debieve7192a002020-01-28 09:02:41 +0100362 if (bsec_read_debug_conf() != 0U) {
363 if (stm32mp_is_closed_device()) {
364#if DEBUG
365 WARN("\n%s", debug_msg);
366#else
367 ERROR("***Debug opened on closed chip***\n");
368#endif
369 }
370 }
371
Yann Gautiercc5f89a2020-02-12 09:36:23 +0100372#if STM32MP15
Lionel Debieve06bc62d2019-12-06 12:42:20 +0100373 if (stm32mp_is_auth_supported()) {
374 stm32mp1_auth_ops.check_key =
375 boot_context->bootrom_ecdsa_check_key;
376 stm32mp1_auth_ops.verify_signature =
377 boot_context->bootrom_ecdsa_verify_signature;
Lionel Debieve7bd96f42019-09-03 12:22:23 +0200378
Lionel Debieve06bc62d2019-12-06 12:42:20 +0100379 stm32mp_init_auth(&stm32mp1_auth_ops);
380 }
Yann Gautiercc5f89a2020-02-12 09:36:23 +0100381#endif
Lionel Debieve7bd96f42019-09-03 12:22:23 +0200382
Yann Gautiercaf575b2018-07-24 17:18:19 +0200383 stm32mp1_arch_security_setup();
384
Yann Gautierf9d40d52019-01-17 14:41:46 +0100385 print_reset_reason();
386
Yann Gautiercc5f89a2020-02-12 09:36:23 +0100387#if STM32MP15
Yann Gautier5c1dab32019-04-17 15:12:58 +0200388 update_monotonic_counter();
Yann Gautiercc5f89a2020-02-12 09:36:23 +0100389#endif
Yann Gautier5c1dab32019-04-17 15:12:58 +0200390
Yann Gautierb76c61a2020-12-16 10:17:35 +0100391 stm32mp1_syscfg_enable_io_compensation_finish();
392
Yann Gautier29f1f942021-07-13 18:07:41 +0200393#if !STM32MP_USE_STM32IMAGE
394 fconf_populate("TB_FW", STM32MP_DTB_BASE);
395#endif /* !STM32MP_USE_STM32IMAGE */
396
Yann Gautiera2e2a302019-02-14 11:13:39 +0100397 stm32mp_io_setup();
Yann Gautier4b0c72a2018-07-16 10:54:09 +0200398}
Yann Gautierb3386f72019-04-19 09:41:01 +0200399
Yann Gautierb3386f72019-04-19 09:41:01 +0200400/*******************************************************************************
401 * This function can be used by the platforms to update/use image
402 * information for given `image_id`.
403 ******************************************************************************/
404int bl2_plat_handle_post_image_load(unsigned int image_id)
405{
406 int err = 0;
407 bl_mem_params_node_t *bl_mem_params = get_bl_mem_params_node(image_id);
408 bl_mem_params_node_t *bl32_mem_params;
Yann Gautier0ed7b2a2021-05-19 18:48:16 +0200409 bl_mem_params_node_t *pager_mem_params __unused;
410 bl_mem_params_node_t *paged_mem_params __unused;
Yann Gautier658775c2021-07-06 10:00:44 +0200411#if !STM32MP_USE_STM32IMAGE
412 const struct dyn_cfg_dtb_info_t *config_info;
413 bl_mem_params_node_t *tos_fw_mem_params;
414 unsigned int i;
Yann Gautierfd648352021-12-13 15:24:41 +0100415 unsigned int idx;
Yann Gautier658775c2021-07-06 10:00:44 +0200416 unsigned long long ddr_top __unused;
417 const unsigned int image_ids[] = {
418 BL32_IMAGE_ID,
419 BL33_IMAGE_ID,
420 HW_CONFIG_ID,
421 TOS_FW_CONFIG_ID,
422 };
423#endif /* !STM32MP_USE_STM32IMAGE */
Yann Gautierb3386f72019-04-19 09:41:01 +0200424
425 assert(bl_mem_params != NULL);
426
427 switch (image_id) {
Yann Gautier658775c2021-07-06 10:00:44 +0200428#if !STM32MP_USE_STM32IMAGE
429 case FW_CONFIG_ID:
430 /* Set global DTB info for fixed fw_config information */
431 set_config_info(STM32MP_FW_CONFIG_BASE, STM32MP_FW_CONFIG_MAX_SIZE, FW_CONFIG_ID);
432 fconf_populate("FW_CONFIG", STM32MP_FW_CONFIG_BASE);
433
Yann Gautierfd648352021-12-13 15:24:41 +0100434 idx = dyn_cfg_dtb_info_get_index(TOS_FW_CONFIG_ID);
435
Yann Gautier658775c2021-07-06 10:00:44 +0200436 /* Iterate through all the fw config IDs */
437 for (i = 0U; i < ARRAY_SIZE(image_ids); i++) {
Yann Gautierfd648352021-12-13 15:24:41 +0100438 if ((image_ids[i] == TOS_FW_CONFIG_ID) && (idx == FCONF_INVALID_IDX)) {
439 continue;
440 }
441
Yann Gautier658775c2021-07-06 10:00:44 +0200442 bl_mem_params = get_bl_mem_params_node(image_ids[i]);
443 assert(bl_mem_params != NULL);
444
445 config_info = FCONF_GET_PROPERTY(dyn_cfg, dtb, image_ids[i]);
446 if (config_info == NULL) {
447 continue;
448 }
449
450 bl_mem_params->image_info.image_base = config_info->config_addr;
451 bl_mem_params->image_info.image_max_size = config_info->config_max_size;
452
453 bl_mem_params->image_info.h.attr &= ~IMAGE_ATTRIB_SKIP_LOADING;
454
455 switch (image_ids[i]) {
456 case BL32_IMAGE_ID:
457 bl_mem_params->ep_info.pc = config_info->config_addr;
458
459 /* In case of OPTEE, initialize address space with tos_fw addr */
460 pager_mem_params = get_bl_mem_params_node(BL32_EXTRA1_IMAGE_ID);
461 pager_mem_params->image_info.image_base = config_info->config_addr;
462 pager_mem_params->image_info.image_max_size =
463 config_info->config_max_size;
464
465 /* Init base and size for pager if exist */
466 paged_mem_params = get_bl_mem_params_node(BL32_EXTRA2_IMAGE_ID);
467 paged_mem_params->image_info.image_base = STM32MP_DDR_BASE +
468 (dt_get_ddr_size() - STM32MP_DDR_S_SIZE -
469 STM32MP_DDR_SHMEM_SIZE);
470 paged_mem_params->image_info.image_max_size = STM32MP_DDR_S_SIZE;
471 break;
472
473 case BL33_IMAGE_ID:
474 bl_mem_params->ep_info.pc = config_info->config_addr;
475 break;
476
477 case HW_CONFIG_ID:
478 case TOS_FW_CONFIG_ID:
479 break;
480
481 default:
482 return -EINVAL;
483 }
484 }
485 break;
486#endif /* !STM32MP_USE_STM32IMAGE */
487
Yann Gautierb3386f72019-04-19 09:41:01 +0200488 case BL32_IMAGE_ID:
Yann Gautier90f84d72021-07-13 14:44:09 +0200489 if (optee_header_is_valid(bl_mem_params->image_info.image_base)) {
490 /* BL32 is OP-TEE header */
491 bl_mem_params->ep_info.pc = bl_mem_params->image_info.image_base;
492 pager_mem_params = get_bl_mem_params_node(BL32_EXTRA1_IMAGE_ID);
493 paged_mem_params = get_bl_mem_params_node(BL32_EXTRA2_IMAGE_ID);
494 assert((pager_mem_params != NULL) && (paged_mem_params != NULL));
Yann Gautierb3386f72019-04-19 09:41:01 +0200495
Yann Gautier0ed7b2a2021-05-19 18:48:16 +0200496#if STM32MP_USE_STM32IMAGE && defined(AARCH32_SP_OPTEE)
Yann Gautier90f84d72021-07-13 14:44:09 +0200497 /* Set OP-TEE extra image load areas at run-time */
498 pager_mem_params->image_info.image_base = STM32MP_OPTEE_BASE;
499 pager_mem_params->image_info.image_max_size = STM32MP_OPTEE_SIZE;
Yann Gautierb3386f72019-04-19 09:41:01 +0200500
Yann Gautier90f84d72021-07-13 14:44:09 +0200501 paged_mem_params->image_info.image_base = STM32MP_DDR_BASE +
502 dt_get_ddr_size() -
503 STM32MP_DDR_S_SIZE -
504 STM32MP_DDR_SHMEM_SIZE;
505 paged_mem_params->image_info.image_max_size = STM32MP_DDR_S_SIZE;
Yann Gautier0ed7b2a2021-05-19 18:48:16 +0200506#endif /* STM32MP_USE_STM32IMAGE && defined(AARCH32_SP_OPTEE) */
Yann Gautierb3386f72019-04-19 09:41:01 +0200507
Yann Gautier90f84d72021-07-13 14:44:09 +0200508 err = parse_optee_header(&bl_mem_params->ep_info,
509 &pager_mem_params->image_info,
510 &paged_mem_params->image_info);
511 if (err) {
512 ERROR("OPTEE header parse error.\n");
513 panic();
514 }
Yann Gautierb3386f72019-04-19 09:41:01 +0200515
Yann Gautier90f84d72021-07-13 14:44:09 +0200516 /* Set optee boot info from parsed header data */
517 bl_mem_params->ep_info.args.arg0 = paged_mem_params->image_info.image_base;
518 bl_mem_params->ep_info.args.arg1 = 0; /* Unused */
519 bl_mem_params->ep_info.args.arg2 = 0; /* No DT supported */
Yann Gautier0ed7b2a2021-05-19 18:48:16 +0200520 } else {
521#if !STM32MP_USE_STM32IMAGE
522 bl_mem_params->ep_info.pc = bl_mem_params->image_info.image_base;
Yann Gautier658775c2021-07-06 10:00:44 +0200523 tos_fw_mem_params = get_bl_mem_params_node(TOS_FW_CONFIG_ID);
524 bl_mem_params->image_info.image_max_size +=
525 tos_fw_mem_params->image_info.image_max_size;
Yann Gautier0ed7b2a2021-05-19 18:48:16 +0200526#endif /* !STM32MP_USE_STM32IMAGE */
527 bl_mem_params->ep_info.args.arg0 = 0;
Yann Gautier90f84d72021-07-13 14:44:09 +0200528 }
Yann Gautierb3386f72019-04-19 09:41:01 +0200529 break;
530
531 case BL33_IMAGE_ID:
532 bl32_mem_params = get_bl_mem_params_node(BL32_IMAGE_ID);
533 assert(bl32_mem_params != NULL);
534 bl32_mem_params->ep_info.lr_svc = bl_mem_params->ep_info.pc;
Sughosh Ganu03e2f802021-12-01 15:56:27 +0530535#if !STM32MP_USE_STM32IMAGE && PSA_FWU_SUPPORT
536 stm32mp1_fwu_set_boot_idx();
537#endif /* !STM32MP_USE_STM32IMAGE && PSA_FWU_SUPPORT */
Yann Gautierb3386f72019-04-19 09:41:01 +0200538 break;
539
540 default:
541 /* Do nothing in default case */
542 break;
543 }
544
Yann Gautiera3bd8d12021-06-18 11:33:26 +0200545#if STM32MP_SDMMC || STM32MP_EMMC
546 /*
547 * Invalidate remaining data read from MMC but not flushed by load_image_flush().
548 * We take the worst case which is 2 MMC blocks.
549 */
550 if ((image_id != FW_CONFIG_ID) &&
551 ((bl_mem_params->image_info.h.attr & IMAGE_ATTRIB_SKIP_LOADING) == 0U)) {
552 inv_dcache_range(bl_mem_params->image_info.image_base +
553 bl_mem_params->image_info.image_size,
554 2U * MMC_BLOCK_SIZE);
555 }
556#endif /* STM32MP_SDMMC || STM32MP_EMMC */
557
Yann Gautierb3386f72019-04-19 09:41:01 +0200558 return err;
559}
Yann Gautierd2d9b962021-08-16 11:58:01 +0200560
561void bl2_el3_plat_prepare_exit(void)
562{
Patrick Delaunay9c5ee782021-07-06 14:07:56 +0200563 uint16_t boot_itf = stm32mp_get_boot_itf_selected();
564
565 switch (boot_itf) {
Patrick Delaunaye50571b2021-10-28 13:48:52 +0200566#if STM32MP_UART_PROGRAMMER || STM32MP_USB_PROGRAMMER
567 case BOOT_API_CTX_BOOT_INTERFACE_SEL_SERIAL_UART:
Patrick Delaunay9c5ee782021-07-06 14:07:56 +0200568 case BOOT_API_CTX_BOOT_INTERFACE_SEL_SERIAL_USB:
569 /* Invalidate the downloaded buffer used with io_memmap */
570 inv_dcache_range(DWL_BUFFER_BASE, DWL_BUFFER_SIZE);
571 break;
Patrick Delaunaye50571b2021-10-28 13:48:52 +0200572#endif /* STM32MP_UART_PROGRAMMER || STM32MP_USB_PROGRAMMER */
Patrick Delaunay9c5ee782021-07-06 14:07:56 +0200573 default:
574 /* Do nothing in default case */
575 break;
576 }
577
Yann Gautierd2d9b962021-08-16 11:58:01 +0200578 stm32mp1_security_setup();
579}