blob: c54814e160ed28582b6ad7a8dd5dab0b4778aafa [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();
Yann Gautierb2ba78e2022-01-18 10:39:52 +0100351 if (pmic_voltages_init() != 0) {
352 ERROR("PMIC voltages init failed\n");
353 panic();
354 }
Nicolas Le Bayon0b10b652019-11-18 13:13:36 +0100355 print_pmic_info_and_debug();
Yann Gautier45c1e582020-09-17 11:54:52 +0200356 }
357
358 stm32mp1_syscfg_init();
359
Yann Gautier091eab52019-06-04 18:06:34 +0200360 if (stm32_iwdg_init() < 0) {
361 panic();
362 }
363
364 stm32_iwdg_refresh();
365
Lionel Debieve7192a002020-01-28 09:02:41 +0100366 if (bsec_read_debug_conf() != 0U) {
367 if (stm32mp_is_closed_device()) {
368#if DEBUG
369 WARN("\n%s", debug_msg);
370#else
371 ERROR("***Debug opened on closed chip***\n");
372#endif
373 }
374 }
375
Yann Gautiercc5f89a2020-02-12 09:36:23 +0100376#if STM32MP15
Lionel Debieve06bc62d2019-12-06 12:42:20 +0100377 if (stm32mp_is_auth_supported()) {
378 stm32mp1_auth_ops.check_key =
379 boot_context->bootrom_ecdsa_check_key;
380 stm32mp1_auth_ops.verify_signature =
381 boot_context->bootrom_ecdsa_verify_signature;
Lionel Debieve7bd96f42019-09-03 12:22:23 +0200382
Lionel Debieve06bc62d2019-12-06 12:42:20 +0100383 stm32mp_init_auth(&stm32mp1_auth_ops);
384 }
Yann Gautiercc5f89a2020-02-12 09:36:23 +0100385#endif
Lionel Debieve7bd96f42019-09-03 12:22:23 +0200386
Yann Gautiercaf575b2018-07-24 17:18:19 +0200387 stm32mp1_arch_security_setup();
388
Yann Gautierf9d40d52019-01-17 14:41:46 +0100389 print_reset_reason();
390
Yann Gautiercc5f89a2020-02-12 09:36:23 +0100391#if STM32MP15
Yann Gautier5c1dab32019-04-17 15:12:58 +0200392 update_monotonic_counter();
Yann Gautiercc5f89a2020-02-12 09:36:23 +0100393#endif
Yann Gautier5c1dab32019-04-17 15:12:58 +0200394
Yann Gautierb76c61a2020-12-16 10:17:35 +0100395 stm32mp1_syscfg_enable_io_compensation_finish();
396
Yann Gautier29f1f942021-07-13 18:07:41 +0200397#if !STM32MP_USE_STM32IMAGE
398 fconf_populate("TB_FW", STM32MP_DTB_BASE);
399#endif /* !STM32MP_USE_STM32IMAGE */
400
Yann Gautiera2e2a302019-02-14 11:13:39 +0100401 stm32mp_io_setup();
Yann Gautier4b0c72a2018-07-16 10:54:09 +0200402}
Yann Gautierb3386f72019-04-19 09:41:01 +0200403
Yann Gautierb3386f72019-04-19 09:41:01 +0200404/*******************************************************************************
405 * This function can be used by the platforms to update/use image
406 * information for given `image_id`.
407 ******************************************************************************/
408int bl2_plat_handle_post_image_load(unsigned int image_id)
409{
410 int err = 0;
411 bl_mem_params_node_t *bl_mem_params = get_bl_mem_params_node(image_id);
412 bl_mem_params_node_t *bl32_mem_params;
Yann Gautier0ed7b2a2021-05-19 18:48:16 +0200413 bl_mem_params_node_t *pager_mem_params __unused;
414 bl_mem_params_node_t *paged_mem_params __unused;
Yann Gautier658775c2021-07-06 10:00:44 +0200415#if !STM32MP_USE_STM32IMAGE
416 const struct dyn_cfg_dtb_info_t *config_info;
417 bl_mem_params_node_t *tos_fw_mem_params;
418 unsigned int i;
Yann Gautierfd648352021-12-13 15:24:41 +0100419 unsigned int idx;
Yann Gautier658775c2021-07-06 10:00:44 +0200420 unsigned long long ddr_top __unused;
421 const unsigned int image_ids[] = {
422 BL32_IMAGE_ID,
423 BL33_IMAGE_ID,
424 HW_CONFIG_ID,
425 TOS_FW_CONFIG_ID,
426 };
427#endif /* !STM32MP_USE_STM32IMAGE */
Yann Gautierb3386f72019-04-19 09:41:01 +0200428
429 assert(bl_mem_params != NULL);
430
431 switch (image_id) {
Yann Gautier658775c2021-07-06 10:00:44 +0200432#if !STM32MP_USE_STM32IMAGE
433 case FW_CONFIG_ID:
434 /* Set global DTB info for fixed fw_config information */
Manish V Badarkhefab76282022-03-16 13:51:26 +0000435 set_config_info(STM32MP_FW_CONFIG_BASE, ~0UL, STM32MP_FW_CONFIG_MAX_SIZE,
436 FW_CONFIG_ID);
Yann Gautier658775c2021-07-06 10:00:44 +0200437 fconf_populate("FW_CONFIG", STM32MP_FW_CONFIG_BASE);
438
Yann Gautierfd648352021-12-13 15:24:41 +0100439 idx = dyn_cfg_dtb_info_get_index(TOS_FW_CONFIG_ID);
440
Yann Gautier658775c2021-07-06 10:00:44 +0200441 /* Iterate through all the fw config IDs */
442 for (i = 0U; i < ARRAY_SIZE(image_ids); i++) {
Yann Gautierfd648352021-12-13 15:24:41 +0100443 if ((image_ids[i] == TOS_FW_CONFIG_ID) && (idx == FCONF_INVALID_IDX)) {
444 continue;
445 }
446
Yann Gautier658775c2021-07-06 10:00:44 +0200447 bl_mem_params = get_bl_mem_params_node(image_ids[i]);
448 assert(bl_mem_params != NULL);
449
450 config_info = FCONF_GET_PROPERTY(dyn_cfg, dtb, image_ids[i]);
451 if (config_info == NULL) {
452 continue;
453 }
454
455 bl_mem_params->image_info.image_base = config_info->config_addr;
456 bl_mem_params->image_info.image_max_size = config_info->config_max_size;
457
458 bl_mem_params->image_info.h.attr &= ~IMAGE_ATTRIB_SKIP_LOADING;
459
460 switch (image_ids[i]) {
461 case BL32_IMAGE_ID:
462 bl_mem_params->ep_info.pc = config_info->config_addr;
463
464 /* In case of OPTEE, initialize address space with tos_fw addr */
465 pager_mem_params = get_bl_mem_params_node(BL32_EXTRA1_IMAGE_ID);
Yann Gautierc6f77b02022-05-06 09:50:43 +0200466 assert(pager_mem_params != NULL);
Yann Gautier658775c2021-07-06 10:00:44 +0200467 pager_mem_params->image_info.image_base = config_info->config_addr;
468 pager_mem_params->image_info.image_max_size =
469 config_info->config_max_size;
470
471 /* Init base and size for pager if exist */
472 paged_mem_params = get_bl_mem_params_node(BL32_EXTRA2_IMAGE_ID);
Yann Gautiere622a3d2022-06-20 11:43:17 +0200473 if (paged_mem_params != NULL) {
474 paged_mem_params->image_info.image_base = STM32MP_DDR_BASE +
475 (dt_get_ddr_size() - STM32MP_DDR_S_SIZE -
476 STM32MP_DDR_SHMEM_SIZE);
477 paged_mem_params->image_info.image_max_size =
478 STM32MP_DDR_S_SIZE;
479 }
Yann Gautier658775c2021-07-06 10:00:44 +0200480 break;
481
482 case BL33_IMAGE_ID:
483 bl_mem_params->ep_info.pc = config_info->config_addr;
484 break;
485
486 case HW_CONFIG_ID:
487 case TOS_FW_CONFIG_ID:
488 break;
489
490 default:
491 return -EINVAL;
492 }
493 }
494 break;
495#endif /* !STM32MP_USE_STM32IMAGE */
496
Yann Gautierb3386f72019-04-19 09:41:01 +0200497 case BL32_IMAGE_ID:
Yann Gautier90f84d72021-07-13 14:44:09 +0200498 if (optee_header_is_valid(bl_mem_params->image_info.image_base)) {
Yann Gautiere622a3d2022-06-20 11:43:17 +0200499 image_info_t *paged_image_info = NULL;
500
Yann Gautier90f84d72021-07-13 14:44:09 +0200501 /* BL32 is OP-TEE header */
502 bl_mem_params->ep_info.pc = bl_mem_params->image_info.image_base;
503 pager_mem_params = get_bl_mem_params_node(BL32_EXTRA1_IMAGE_ID);
Yann Gautiere622a3d2022-06-20 11:43:17 +0200504 assert(pager_mem_params != NULL);
505
Yann Gautier90f84d72021-07-13 14:44:09 +0200506 paged_mem_params = get_bl_mem_params_node(BL32_EXTRA2_IMAGE_ID);
Yann Gautiere622a3d2022-06-20 11:43:17 +0200507 if (paged_mem_params != NULL) {
508 paged_image_info = &paged_mem_params->image_info;
509 }
Yann Gautierb3386f72019-04-19 09:41:01 +0200510
Yann Gautier0ed7b2a2021-05-19 18:48:16 +0200511#if STM32MP_USE_STM32IMAGE && defined(AARCH32_SP_OPTEE)
Yann Gautier90f84d72021-07-13 14:44:09 +0200512 /* Set OP-TEE extra image load areas at run-time */
513 pager_mem_params->image_info.image_base = STM32MP_OPTEE_BASE;
514 pager_mem_params->image_info.image_max_size = STM32MP_OPTEE_SIZE;
Yann Gautierb3386f72019-04-19 09:41:01 +0200515
Yann Gautier90f84d72021-07-13 14:44:09 +0200516 paged_mem_params->image_info.image_base = STM32MP_DDR_BASE +
517 dt_get_ddr_size() -
518 STM32MP_DDR_S_SIZE -
519 STM32MP_DDR_SHMEM_SIZE;
520 paged_mem_params->image_info.image_max_size = STM32MP_DDR_S_SIZE;
Yann Gautier0ed7b2a2021-05-19 18:48:16 +0200521#endif /* STM32MP_USE_STM32IMAGE && defined(AARCH32_SP_OPTEE) */
Yann Gautierb3386f72019-04-19 09:41:01 +0200522
Yann Gautier90f84d72021-07-13 14:44:09 +0200523 err = parse_optee_header(&bl_mem_params->ep_info,
524 &pager_mem_params->image_info,
Yann Gautiere622a3d2022-06-20 11:43:17 +0200525 paged_image_info);
526 if (err != 0) {
Yann Gautier90f84d72021-07-13 14:44:09 +0200527 ERROR("OPTEE header parse error.\n");
528 panic();
529 }
Yann Gautierb3386f72019-04-19 09:41:01 +0200530
Yann Gautier90f84d72021-07-13 14:44:09 +0200531 /* Set optee boot info from parsed header data */
Yann Gautiere622a3d2022-06-20 11:43:17 +0200532 if (paged_mem_params != NULL) {
533 bl_mem_params->ep_info.args.arg0 =
534 paged_mem_params->image_info.image_base;
535 } else {
536 bl_mem_params->ep_info.args.arg0 = 0U;
537 }
538
539 bl_mem_params->ep_info.args.arg1 = 0U; /* Unused */
540 bl_mem_params->ep_info.args.arg2 = 0U; /* No DT supported */
Yann Gautier0ed7b2a2021-05-19 18:48:16 +0200541 } else {
542#if !STM32MP_USE_STM32IMAGE
543 bl_mem_params->ep_info.pc = bl_mem_params->image_info.image_base;
Yann Gautier658775c2021-07-06 10:00:44 +0200544 tos_fw_mem_params = get_bl_mem_params_node(TOS_FW_CONFIG_ID);
Yann Gautierc6f77b02022-05-06 09:50:43 +0200545 assert(tos_fw_mem_params != NULL);
Yann Gautier658775c2021-07-06 10:00:44 +0200546 bl_mem_params->image_info.image_max_size +=
547 tos_fw_mem_params->image_info.image_max_size;
Yann Gautier0ed7b2a2021-05-19 18:48:16 +0200548#endif /* !STM32MP_USE_STM32IMAGE */
549 bl_mem_params->ep_info.args.arg0 = 0;
Yann Gautier90f84d72021-07-13 14:44:09 +0200550 }
Yann Gautierb3386f72019-04-19 09:41:01 +0200551 break;
552
553 case BL33_IMAGE_ID:
554 bl32_mem_params = get_bl_mem_params_node(BL32_IMAGE_ID);
555 assert(bl32_mem_params != NULL);
556 bl32_mem_params->ep_info.lr_svc = bl_mem_params->ep_info.pc;
Sughosh Ganu03e2f802021-12-01 15:56:27 +0530557#if !STM32MP_USE_STM32IMAGE && PSA_FWU_SUPPORT
558 stm32mp1_fwu_set_boot_idx();
559#endif /* !STM32MP_USE_STM32IMAGE && PSA_FWU_SUPPORT */
Yann Gautierb3386f72019-04-19 09:41:01 +0200560 break;
561
562 default:
563 /* Do nothing in default case */
564 break;
565 }
566
Yann Gautiera3bd8d12021-06-18 11:33:26 +0200567#if STM32MP_SDMMC || STM32MP_EMMC
568 /*
569 * Invalidate remaining data read from MMC but not flushed by load_image_flush().
570 * We take the worst case which is 2 MMC blocks.
571 */
572 if ((image_id != FW_CONFIG_ID) &&
573 ((bl_mem_params->image_info.h.attr & IMAGE_ATTRIB_SKIP_LOADING) == 0U)) {
574 inv_dcache_range(bl_mem_params->image_info.image_base +
575 bl_mem_params->image_info.image_size,
576 2U * MMC_BLOCK_SIZE);
577 }
578#endif /* STM32MP_SDMMC || STM32MP_EMMC */
579
Yann Gautierb3386f72019-04-19 09:41:01 +0200580 return err;
581}
Yann Gautierd2d9b962021-08-16 11:58:01 +0200582
583void bl2_el3_plat_prepare_exit(void)
584{
Patrick Delaunay9c5ee782021-07-06 14:07:56 +0200585 uint16_t boot_itf = stm32mp_get_boot_itf_selected();
586
587 switch (boot_itf) {
Patrick Delaunaye50571b2021-10-28 13:48:52 +0200588#if STM32MP_UART_PROGRAMMER || STM32MP_USB_PROGRAMMER
589 case BOOT_API_CTX_BOOT_INTERFACE_SEL_SERIAL_UART:
Patrick Delaunay9c5ee782021-07-06 14:07:56 +0200590 case BOOT_API_CTX_BOOT_INTERFACE_SEL_SERIAL_USB:
591 /* Invalidate the downloaded buffer used with io_memmap */
592 inv_dcache_range(DWL_BUFFER_BASE, DWL_BUFFER_SIZE);
593 break;
Patrick Delaunaye50571b2021-10-28 13:48:52 +0200594#endif /* STM32MP_UART_PROGRAMMER || STM32MP_USB_PROGRAMMER */
Patrick Delaunay9c5ee782021-07-06 14:07:56 +0200595 default:
596 /* Do nothing in default case */
597 break;
598 }
599
Yann Gautierd2d9b962021-08-16 11:58:01 +0200600 stm32mp1_security_setup();
601}