blob: f8a0c1879e9b023bda2a10bda759d2de07a8e90f [file] [log] [blame]
Yann Gautier4b0c72a2018-07-16 10:54:09 +02001/*
Nicolas Toromanoff44adc4f2022-02-07 10:12:29 +01002 * Copyright (c) 2015-2023, 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>
Antonio Nino Diaze0f90632018-12-14 00:18:21 +00008#include <string.h>
9
Antonio Nino Diaze0f90632018-12-14 00:18:21 +000010#include <arch_helpers.h>
11#include <common/debug.h>
Yann Gautiera3bd8d12021-06-18 11:33:26 +020012#include <common/desc_image_load.h>
Sughosh Ganub721f8a2021-12-01 16:45:11 +053013#include <drivers/fwu/fwu.h>
14#include <drivers/fwu/fwu_metadata.h>
Antonio Nino Diaze0f90632018-12-14 00:18:21 +000015#include <drivers/io/io_block.h>
16#include <drivers/io/io_driver.h>
Lionel Debieve5adcd502022-10-05 16:51:12 +020017#include <drivers/io/io_encrypted.h>
Yann Gautier0ed7b2a2021-05-19 18:48:16 +020018#include <drivers/io/io_fip.h>
Patrick Delaunay9c5ee782021-07-06 14:07:56 +020019#include <drivers/io/io_memmap.h>
Lionel Debieve402a46b2019-11-04 12:28:15 +010020#include <drivers/io/io_mtd.h>
Antonio Nino Diaze0f90632018-12-14 00:18:21 +000021#include <drivers/io/io_storage.h>
22#include <drivers/mmc.h>
Sughosh Ganub721f8a2021-12-01 16:45:11 +053023#include <drivers/partition/efi.h>
Antonio Nino Diaze0f90632018-12-14 00:18:21 +000024#include <drivers/partition/partition.h>
Lionel Debieve402a46b2019-11-04 12:28:15 +010025#include <drivers/raw_nand.h>
Lionel Debieve186b0462019-09-24 18:30:12 +020026#include <drivers/spi_nand.h>
Lionel Debievecb0dbc42019-09-25 09:11:31 +020027#include <drivers/spi_nor.h>
Lionel Debieve402a46b2019-11-04 12:28:15 +010028#include <drivers/st/stm32_fmc2_nand.h>
Lionel Debieve186b0462019-09-24 18:30:12 +020029#include <drivers/st/stm32_qspi.h>
Antonio Nino Diaze0f90632018-12-14 00:18:21 +000030#include <drivers/st/stm32_sdmmc2.h>
Patrick Delaunay9c5ee782021-07-06 14:07:56 +020031#include <drivers/usb_device.h>
Yann Gautier29f1f942021-07-13 18:07:41 +020032#include <lib/fconf/fconf.h>
Antonio Nino Diaze0f90632018-12-14 00:18:21 +000033#include <lib/mmio.h>
34#include <lib/utils.h>
35#include <plat/common/platform.h>
Yann Gautier0ed7b2a2021-05-19 18:48:16 +020036#include <tools_share/firmware_image_package.h>
37
38#include <platform_def.h>
Patrick Delaunay9c5ee782021-07-06 14:07:56 +020039#include <stm32cubeprogrammer.h>
Lionel Debieve5e111c52022-02-24 18:58:46 +010040#include <stm32mp_efi.h>
Yann Gautier29f1f942021-07-13 18:07:41 +020041#include <stm32mp_fconf_getter.h>
Yann Gautier8636a5f2022-05-06 15:27:32 +020042#include <stm32mp_io_storage.h>
Patrick Delaunay9c5ee782021-07-06 14:07:56 +020043#include <usb_dfu.h>
Antonio Nino Diaze0f90632018-12-14 00:18:21 +000044
Yann Gautier4b0c72a2018-07-16 10:54:09 +020045/* IO devices */
Yann Gautier0ed7b2a2021-05-19 18:48:16 +020046uintptr_t fip_dev_handle;
47uintptr_t storage_dev_handle;
Yann Gautier4b0c72a2018-07-16 10:54:09 +020048
Yann Gautier0ed7b2a2021-05-19 18:48:16 +020049static const io_dev_connector_t *fip_dev_con;
Yann Gautier8244e1d2018-10-15 09:36:58 +020050
Lionel Debieve5adcd502022-10-05 16:51:12 +020051#ifndef DECRYPTION_SUPPORT_none
52static const io_dev_connector_t *enc_dev_con;
53uintptr_t enc_dev_handle;
54#endif
55
Nicolas Le Bayon3f42cad2019-09-03 09:52:05 +020056#if STM32MP_SDMMC || STM32MP_EMMC
Yann Gautierac22dd52021-03-22 14:22:14 +010057static struct mmc_device_info mmc_info;
Yann Gautier8244e1d2018-10-15 09:36:58 +020058
Yann Gautier438c4c62023-08-17 11:44:07 +020059static uint8_t block_buffer[MMC_BLOCK_SIZE] __aligned(MMC_BLOCK_SIZE);
Yann Gautier8244e1d2018-10-15 09:36:58 +020060
Yann Gautiera3bd8d12021-06-18 11:33:26 +020061static io_block_dev_spec_t mmc_block_dev_spec = {
Yann Gautier8244e1d2018-10-15 09:36:58 +020062 /* It's used as temp buffer in block driver */
63 .buffer = {
64 .offset = (size_t)&block_buffer,
65 .length = MMC_BLOCK_SIZE,
66 },
67 .ops = {
68 .read = mmc_read_blocks,
69 .write = NULL,
70 },
71 .block_size = MMC_BLOCK_SIZE,
72};
Vyacheslav Yurkove43a0802021-06-04 10:10:51 +020073
Yann Gautier8244e1d2018-10-15 09:36:58 +020074static const io_dev_connector_t *mmc_dev_con;
Nicolas Le Bayon3f42cad2019-09-03 09:52:05 +020075#endif /* STM32MP_SDMMC || STM32MP_EMMC */
Yann Gautier8244e1d2018-10-15 09:36:58 +020076
Lionel Debievecb0dbc42019-09-25 09:11:31 +020077#if STM32MP_SPI_NOR
78static io_mtd_dev_spec_t spi_nor_dev_spec = {
79 .ops = {
80 .init = spi_nor_init,
81 .read = spi_nor_read,
82 },
83};
84#endif
85
Lionel Debieve402a46b2019-11-04 12:28:15 +010086#if STM32MP_RAW_NAND
87static io_mtd_dev_spec_t nand_dev_spec = {
88 .ops = {
89 .init = nand_raw_init,
90 .read = nand_read,
Yann Gautier0ed7b2a2021-05-19 18:48:16 +020091 .seek = nand_seek_bb
Lionel Debieve402a46b2019-11-04 12:28:15 +010092 },
93};
94
95static const io_dev_connector_t *nand_dev_con;
96#endif
97
Lionel Debieve186b0462019-09-24 18:30:12 +020098#if STM32MP_SPI_NAND
99static io_mtd_dev_spec_t spi_nand_dev_spec = {
100 .ops = {
101 .init = spi_nand_init,
102 .read = nand_read,
Yann Gautier0ed7b2a2021-05-19 18:48:16 +0200103 .seek = nand_seek_bb
Lionel Debieve186b0462019-09-24 18:30:12 +0200104 },
105};
Lionel Debievecb0dbc42019-09-25 09:11:31 +0200106#endif
Lionel Debieve186b0462019-09-24 18:30:12 +0200107
Lionel Debievecb0dbc42019-09-25 09:11:31 +0200108#if STM32MP_SPI_NAND || STM32MP_SPI_NOR
Lionel Debieve186b0462019-09-24 18:30:12 +0200109static const io_dev_connector_t *spi_dev_con;
110#endif
111
Patrick Delaunaye50571b2021-10-28 13:48:52 +0200112#if STM32MP_UART_PROGRAMMER || STM32MP_USB_PROGRAMMER
Patrick Delaunay9c5ee782021-07-06 14:07:56 +0200113static const io_dev_connector_t *memmap_dev_con;
114#endif
115
Yann Gautier29f1f942021-07-13 18:07:41 +0200116io_block_spec_t image_block_spec = {
Yann Gautier0ed7b2a2021-05-19 18:48:16 +0200117 .offset = 0U,
118 .length = 0U,
119};
Yann Gautier4b0c72a2018-07-16 10:54:09 +0200120
Yann Gautier29f1f942021-07-13 18:07:41 +0200121int open_fip(const uintptr_t spec)
Yann Gautier4b0c72a2018-07-16 10:54:09 +0200122{
Yann Gautier0ed7b2a2021-05-19 18:48:16 +0200123 return io_dev_init(fip_dev_handle, (uintptr_t)FIP_IMAGE_ID);
Yann Gautier4b0c72a2018-07-16 10:54:09 +0200124}
Yann Gautier8244e1d2018-10-15 09:36:58 +0200125
Lionel Debieve5adcd502022-10-05 16:51:12 +0200126#ifndef DECRYPTION_SUPPORT_none
127int open_enc_fip(const uintptr_t spec)
128{
129 int result;
130 uintptr_t local_image_handle;
131
132 result = io_dev_init(enc_dev_handle, (uintptr_t)ENC_IMAGE_ID);
133 if (result != 0) {
134 return result;
135 }
136
137 result = io_open(enc_dev_handle, spec, &local_image_handle);
138 if (result != 0) {
139 return result;
140 }
141
142 VERBOSE("Using encrypted FIP\n");
143 io_close(local_image_handle);
144
145 return 0;
146}
147#endif
148
Yann Gautier29f1f942021-07-13 18:07:41 +0200149int open_storage(const uintptr_t spec)
Yann Gautier8244e1d2018-10-15 09:36:58 +0200150{
151 return io_dev_init(storage_dev_handle, 0);
152}
Vyacheslav Yurkove43a0802021-06-04 10:10:51 +0200153
Ahmad Fatoumbd685282022-05-19 07:42:33 +0200154#if STM32MP_EMMC_BOOT
155static uint32_t get_boot_part_fip_header(void)
156{
157 io_block_spec_t emmc_boot_fip_block_spec = {
158 .offset = STM32MP_EMMC_BOOT_FIP_OFFSET,
159 .length = MMC_BLOCK_SIZE, /* We are interested only in first 4 bytes */
160 };
161 uint32_t magic = 0U;
162 int io_result;
163 size_t bytes_read;
164 uintptr_t fip_hdr_handle;
165
166 io_result = io_open(storage_dev_handle, (uintptr_t)&emmc_boot_fip_block_spec,
167 &fip_hdr_handle);
168 assert(io_result == 0);
169
170 io_result = io_read(fip_hdr_handle, (uintptr_t)&magic, sizeof(magic),
171 &bytes_read);
172 if ((io_result != 0) || (bytes_read != sizeof(magic))) {
173 panic();
174 }
175
176 io_close(fip_hdr_handle);
177
178 VERBOSE("%s: eMMC boot magic at offset 256K: %08x\n",
179 __func__, magic);
180
181 return magic;
182}
183#endif
184
Yann Gautier4b0c72a2018-07-16 10:54:09 +0200185static void print_boot_device(boot_api_context_t *boot_context)
186{
187 switch (boot_context->boot_interface_selected) {
188 case BOOT_API_CTX_BOOT_INTERFACE_SEL_FLASH_SD:
189 INFO("Using SDMMC\n");
190 break;
191 case BOOT_API_CTX_BOOT_INTERFACE_SEL_FLASH_EMMC:
192 INFO("Using EMMC\n");
193 break;
Yann Gautiercdb0ec92020-08-31 15:00:19 +0200194 case BOOT_API_CTX_BOOT_INTERFACE_SEL_FLASH_NOR_SPI:
195 INFO("Using SPI NOR\n");
Lionel Debievecb0dbc42019-09-25 09:11:31 +0200196 break;
Lionel Debieve402a46b2019-11-04 12:28:15 +0100197 case BOOT_API_CTX_BOOT_INTERFACE_SEL_FLASH_NAND_FMC:
198 INFO("Using FMC NAND\n");
199 break;
Yann Gautiercdb0ec92020-08-31 15:00:19 +0200200 case BOOT_API_CTX_BOOT_INTERFACE_SEL_FLASH_NAND_SPI:
Lionel Debieve186b0462019-09-24 18:30:12 +0200201 INFO("Using SPI NAND\n");
202 break;
Patrick Delaunaye50571b2021-10-28 13:48:52 +0200203 case BOOT_API_CTX_BOOT_INTERFACE_SEL_SERIAL_UART:
204 INFO("Using UART\n");
205 break;
Patrick Delaunay9c5ee782021-07-06 14:07:56 +0200206 case BOOT_API_CTX_BOOT_INTERFACE_SEL_SERIAL_USB:
207 INFO("Using USB\n");
208 break;
Yann Gautier4b0c72a2018-07-16 10:54:09 +0200209 default:
Yann Gautier0ed7b2a2021-05-19 18:48:16 +0200210 ERROR("Boot interface %u not found\n",
211 boot_context->boot_interface_selected);
Yann Gautier4b0c72a2018-07-16 10:54:09 +0200212 panic();
213 break;
214 }
215
216 if (boot_context->boot_interface_instance != 0U) {
217 INFO(" Instance %d\n", boot_context->boot_interface_instance);
218 }
Yann Gautier4b0c72a2018-07-16 10:54:09 +0200219}
220
Nicolas Le Bayon3f42cad2019-09-03 09:52:05 +0200221#if STM32MP_SDMMC || STM32MP_EMMC
Yann Gautiereae3fbf2019-04-23 13:34:03 +0200222static void boot_mmc(enum mmc_device_type mmc_dev_type,
223 uint16_t boot_interface_instance)
Yann Gautier4b0c72a2018-07-16 10:54:09 +0200224{
Nicolas Toromanoff44adc4f2022-02-07 10:12:29 +0100225 int io_result __maybe_unused;
Yann Gautier8244e1d2018-10-15 09:36:58 +0200226 struct stm32_sdmmc2_params params;
Yann Gautier4b0c72a2018-07-16 10:54:09 +0200227
Yann Gautiereae3fbf2019-04-23 13:34:03 +0200228 zeromem(&params, sizeof(struct stm32_sdmmc2_params));
Yann Gautier4b0c72a2018-07-16 10:54:09 +0200229
Yann Gautierac22dd52021-03-22 14:22:14 +0100230 mmc_info.mmc_dev_type = mmc_dev_type;
Yann Gautiereae3fbf2019-04-23 13:34:03 +0200231
232 switch (boot_interface_instance) {
233 case 1:
234 params.reg_base = STM32MP_SDMMC1_BASE;
235 break;
236 case 2:
237 params.reg_base = STM32MP_SDMMC2_BASE;
238 break;
239 case 3:
240 params.reg_base = STM32MP_SDMMC3_BASE;
241 break;
242 default:
243 WARN("SDMMC instance not found, using default\n");
244 if (mmc_dev_type == MMC_IS_SD) {
245 params.reg_base = STM32MP_SDMMC1_BASE;
246 } else {
247 params.reg_base = STM32MP_SDMMC2_BASE;
248 }
249 break;
Yann Gautier4b0c72a2018-07-16 10:54:09 +0200250 }
251
Yann Gautierb218faa2019-08-14 16:44:48 +0200252 if (mmc_dev_type != MMC_IS_EMMC) {
253 params.flags = MMC_FLAG_SD_CMD6;
254 }
255
Yann Gautierac22dd52021-03-22 14:22:14 +0100256 params.device_info = &mmc_info;
Yann Gautiereae3fbf2019-04-23 13:34:03 +0200257 if (stm32_sdmmc2_mmc_init(&params) != 0) {
258 ERROR("SDMMC%u init failed\n", boot_interface_instance);
259 panic();
260 }
Yann Gautier4b0c72a2018-07-16 10:54:09 +0200261
Ahmad Fatoumbd685282022-05-19 07:42:33 +0200262 /* Open MMC as a block device to read FIP */
Yann Gautiereae3fbf2019-04-23 13:34:03 +0200263 io_result = register_io_dev_block(&mmc_dev_con);
264 if (io_result != 0) {
265 panic();
266 }
Yann Gautier8244e1d2018-10-15 09:36:58 +0200267
Yann Gautiereae3fbf2019-04-23 13:34:03 +0200268 io_result = io_dev_open(mmc_dev_con, (uintptr_t)&mmc_block_dev_spec,
269 &storage_dev_handle);
270 assert(io_result == 0);
Ahmad Fatoumbd685282022-05-19 07:42:33 +0200271
272#if STM32MP_EMMC_BOOT
273 if (mmc_dev_type == MMC_IS_EMMC) {
274 io_result = mmc_part_switch_current_boot();
275 assert(io_result == 0);
276
277 if (get_boot_part_fip_header() != TOC_HEADER_NAME) {
278 WARN("%s: Can't find FIP header on eMMC boot partition. Trying GPT\n",
279 __func__);
280 io_result = mmc_part_switch_user();
281 assert(io_result == 0);
282 return;
283 }
284
285 VERBOSE("%s: FIP header found on eMMC boot partition\n",
286 __func__);
287 image_block_spec.offset = STM32MP_EMMC_BOOT_FIP_OFFSET;
Yann Gautier637cd9e2022-09-02 08:36:40 +0200288 image_block_spec.length = mmc_boot_part_size() - STM32MP_EMMC_BOOT_FIP_OFFSET;
Ahmad Fatoumbd685282022-05-19 07:42:33 +0200289 }
290#endif
Yann Gautiereae3fbf2019-04-23 13:34:03 +0200291}
Nicolas Le Bayon3f42cad2019-09-03 09:52:05 +0200292#endif /* STM32MP_SDMMC || STM32MP_EMMC */
Yann Gautier8244e1d2018-10-15 09:36:58 +0200293
Lionel Debievecb0dbc42019-09-25 09:11:31 +0200294#if STM32MP_SPI_NOR
295static void boot_spi_nor(boot_api_context_t *boot_context)
296{
Nicolas Toromanoff44adc4f2022-02-07 10:12:29 +0100297 int io_result __maybe_unused;
Lionel Debievecb0dbc42019-09-25 09:11:31 +0200298
299 io_result = stm32_qspi_init();
300 assert(io_result == 0);
301
302 io_result = register_io_dev_mtd(&spi_dev_con);
303 assert(io_result == 0);
304
305 /* Open connections to device */
306 io_result = io_dev_open(spi_dev_con,
307 (uintptr_t)&spi_nor_dev_spec,
308 &storage_dev_handle);
309 assert(io_result == 0);
Lionel Debievecb0dbc42019-09-25 09:11:31 +0200310}
311#endif /* STM32MP_SPI_NOR */
312
Lionel Debieve402a46b2019-11-04 12:28:15 +0100313#if STM32MP_RAW_NAND
314static void boot_fmc2_nand(boot_api_context_t *boot_context)
315{
Nicolas Toromanoff44adc4f2022-02-07 10:12:29 +0100316 int io_result __maybe_unused;
Lionel Debieve402a46b2019-11-04 12:28:15 +0100317
318 io_result = stm32_fmc2_init();
319 assert(io_result == 0);
320
321 /* Register the IO device on this platform */
322 io_result = register_io_dev_mtd(&nand_dev_con);
323 assert(io_result == 0);
324
325 /* Open connections to device */
326 io_result = io_dev_open(nand_dev_con, (uintptr_t)&nand_dev_spec,
327 &storage_dev_handle);
328 assert(io_result == 0);
Lionel Debieve402a46b2019-11-04 12:28:15 +0100329}
330#endif /* STM32MP_RAW_NAND */
331
Lionel Debieve186b0462019-09-24 18:30:12 +0200332#if STM32MP_SPI_NAND
333static void boot_spi_nand(boot_api_context_t *boot_context)
334{
Nicolas Toromanoff44adc4f2022-02-07 10:12:29 +0100335 int io_result __maybe_unused;
Lionel Debieve186b0462019-09-24 18:30:12 +0200336
337 io_result = stm32_qspi_init();
338 assert(io_result == 0);
339
340 io_result = register_io_dev_mtd(&spi_dev_con);
341 assert(io_result == 0);
342
343 /* Open connections to device */
344 io_result = io_dev_open(spi_dev_con,
345 (uintptr_t)&spi_nand_dev_spec,
346 &storage_dev_handle);
347 assert(io_result == 0);
Lionel Debieve186b0462019-09-24 18:30:12 +0200348}
349#endif /* STM32MP_SPI_NAND */
350
Patrick Delaunaye50571b2021-10-28 13:48:52 +0200351#if STM32MP_UART_PROGRAMMER || STM32MP_USB_PROGRAMMER
Patrick Delaunay9c5ee782021-07-06 14:07:56 +0200352static void mmap_io_setup(void)
353{
Nicolas Toromanoff44adc4f2022-02-07 10:12:29 +0100354 int io_result __maybe_unused;
Patrick Delaunay9c5ee782021-07-06 14:07:56 +0200355
356 io_result = register_io_dev_memmap(&memmap_dev_con);
357 assert(io_result == 0);
358
359 io_result = io_dev_open(memmap_dev_con, (uintptr_t)NULL,
360 &storage_dev_handle);
361 assert(io_result == 0);
362}
363
Patrick Delaunaye50571b2021-10-28 13:48:52 +0200364#if STM32MP_UART_PROGRAMMER
365static void stm32cubeprogrammer_uart(void)
366{
Nicolas Toromanoff44adc4f2022-02-07 10:12:29 +0100367 int ret __maybe_unused;
Patrick Delaunaye50571b2021-10-28 13:48:52 +0200368 boot_api_context_t *boot_context =
369 (boot_api_context_t *)stm32mp_get_boot_ctx_address();
370 uintptr_t uart_base;
371
372 uart_base = get_uart_address(boot_context->boot_interface_instance);
373 ret = stm32cubeprog_uart_load(uart_base, DWL_BUFFER_BASE, DWL_BUFFER_SIZE);
374 assert(ret == 0);
375}
376#endif
377
378#if STM32MP_USB_PROGRAMMER
Patrick Delaunay9c5ee782021-07-06 14:07:56 +0200379static void stm32cubeprogrammer_usb(void)
380{
Nicolas Toromanoff44adc4f2022-02-07 10:12:29 +0100381 int ret __maybe_unused;
Patrick Delaunay9c5ee782021-07-06 14:07:56 +0200382 struct usb_handle *pdev;
383
384 /* Init USB on platform */
385 pdev = usb_dfu_plat_init();
386
387 ret = stm32cubeprog_usb_load(pdev, DWL_BUFFER_BASE, DWL_BUFFER_SIZE);
388 assert(ret == 0);
389}
390#endif
Patrick Delaunaye50571b2021-10-28 13:48:52 +0200391#endif /* STM32MP_UART_PROGRAMMER || STM32MP_USB_PROGRAMMER */
392
Yann Gautiereae3fbf2019-04-23 13:34:03 +0200393void stm32mp_io_setup(void)
394{
Nicolas Toromanoff44adc4f2022-02-07 10:12:29 +0100395 int io_result __maybe_unused;
Yann Gautiereae3fbf2019-04-23 13:34:03 +0200396 boot_api_context_t *boot_context =
397 (boot_api_context_t *)stm32mp_get_boot_ctx_address();
Yann Gautierf9d40d52019-01-17 14:41:46 +0100398
Yann Gautiereae3fbf2019-04-23 13:34:03 +0200399 print_boot_device(boot_context);
Yann Gautier8244e1d2018-10-15 09:36:58 +0200400
Yann Gautiereae3fbf2019-04-23 13:34:03 +0200401 if ((boot_context->boot_partition_used_toboot == 1U) ||
402 (boot_context->boot_partition_used_toboot == 2U)) {
Yann Gautier0ed7b2a2021-05-19 18:48:16 +0200403 INFO("Boot used partition fsbl%u\n",
Yann Gautiereae3fbf2019-04-23 13:34:03 +0200404 boot_context->boot_partition_used_toboot);
405 }
Yann Gautier8244e1d2018-10-15 09:36:58 +0200406
Yann Gautier0ed7b2a2021-05-19 18:48:16 +0200407 io_result = register_io_dev_fip(&fip_dev_con);
Yann Gautiereae3fbf2019-04-23 13:34:03 +0200408 assert(io_result == 0);
Yann Gautier8244e1d2018-10-15 09:36:58 +0200409
Yann Gautier0ed7b2a2021-05-19 18:48:16 +0200410 io_result = io_dev_open(fip_dev_con, (uintptr_t)NULL,
411 &fip_dev_handle);
Yann Gautier8244e1d2018-10-15 09:36:58 +0200412
Lionel Debieve5adcd502022-10-05 16:51:12 +0200413#ifndef DECRYPTION_SUPPORT_none
414 io_result = register_io_dev_enc(&enc_dev_con);
415 assert(io_result == 0);
416
417 io_result = io_dev_open(enc_dev_con, (uintptr_t)NULL,
418 &enc_dev_handle);
419 assert(io_result == 0);
420#endif
421
Yann Gautiereae3fbf2019-04-23 13:34:03 +0200422 switch (boot_context->boot_interface_selected) {
Nicolas Le Bayon3f42cad2019-09-03 09:52:05 +0200423#if STM32MP_SDMMC
Yann Gautiereae3fbf2019-04-23 13:34:03 +0200424 case BOOT_API_CTX_BOOT_INTERFACE_SEL_FLASH_SD:
425 dmbsy();
426 boot_mmc(MMC_IS_SD, boot_context->boot_interface_instance);
427 break;
Nicolas Le Bayon3f42cad2019-09-03 09:52:05 +0200428#endif
429#if STM32MP_EMMC
Yann Gautiereae3fbf2019-04-23 13:34:03 +0200430 case BOOT_API_CTX_BOOT_INTERFACE_SEL_FLASH_EMMC:
431 dmbsy();
432 boot_mmc(MMC_IS_EMMC, boot_context->boot_interface_instance);
Yann Gautier8244e1d2018-10-15 09:36:58 +0200433 break;
Nicolas Le Bayon3f42cad2019-09-03 09:52:05 +0200434#endif
Lionel Debievecb0dbc42019-09-25 09:11:31 +0200435#if STM32MP_SPI_NOR
Yann Gautiercdb0ec92020-08-31 15:00:19 +0200436 case BOOT_API_CTX_BOOT_INTERFACE_SEL_FLASH_NOR_SPI:
Lionel Debievecb0dbc42019-09-25 09:11:31 +0200437 dmbsy();
438 boot_spi_nor(boot_context);
439 break;
440#endif
Lionel Debieve402a46b2019-11-04 12:28:15 +0100441#if STM32MP_RAW_NAND
442 case BOOT_API_CTX_BOOT_INTERFACE_SEL_FLASH_NAND_FMC:
443 dmbsy();
444 boot_fmc2_nand(boot_context);
445 break;
446#endif
Lionel Debieve186b0462019-09-24 18:30:12 +0200447#if STM32MP_SPI_NAND
Yann Gautiercdb0ec92020-08-31 15:00:19 +0200448 case BOOT_API_CTX_BOOT_INTERFACE_SEL_FLASH_NAND_SPI:
Lionel Debieve186b0462019-09-24 18:30:12 +0200449 dmbsy();
450 boot_spi_nand(boot_context);
451 break;
452#endif
Patrick Delaunaye50571b2021-10-28 13:48:52 +0200453#if STM32MP_UART_PROGRAMMER || STM32MP_USB_PROGRAMMER
454#if STM32MP_UART_PROGRAMMER
455 case BOOT_API_CTX_BOOT_INTERFACE_SEL_SERIAL_UART:
456#endif
Patrick Delaunay9c5ee782021-07-06 14:07:56 +0200457#if STM32MP_USB_PROGRAMMER
458 case BOOT_API_CTX_BOOT_INTERFACE_SEL_SERIAL_USB:
Patrick Delaunaye50571b2021-10-28 13:48:52 +0200459#endif
Patrick Delaunay9c5ee782021-07-06 14:07:56 +0200460 dmbsy();
461 mmap_io_setup();
462 break;
463#endif
Yann Gautier8244e1d2018-10-15 09:36:58 +0200464
465 default:
466 ERROR("Boot interface %d not supported\n",
467 boot_context->boot_interface_selected);
Yann Gautier4c2b73d2021-06-30 17:04:22 +0200468 panic();
Yann Gautier8244e1d2018-10-15 09:36:58 +0200469 break;
Yann Gautier0ed7b2a2021-05-19 18:48:16 +0200470 }
471}
472
473int bl2_plat_handle_pre_image_load(unsigned int image_id)
474{
Nicolas Toromanoff44adc4f2022-02-07 10:12:29 +0100475 static bool gpt_init_done __maybe_unused;
Yann Gautier0ed7b2a2021-05-19 18:48:16 +0200476 uint16_t boot_itf = stm32mp_get_boot_itf_selected();
477
478 switch (boot_itf) {
479#if STM32MP_SDMMC || STM32MP_EMMC
Yann Gautier0ed7b2a2021-05-19 18:48:16 +0200480 case BOOT_API_CTX_BOOT_INTERFACE_SEL_FLASH_EMMC:
Ahmad Fatoumbd685282022-05-19 07:42:33 +0200481#if STM32MP_EMMC_BOOT
482 if (image_block_spec.offset == STM32MP_EMMC_BOOT_FIP_OFFSET) {
483 break;
484 }
485#endif
486 /* fallthrough */
487 case BOOT_API_CTX_BOOT_INTERFACE_SEL_FLASH_SD:
Yann Gautier0ed7b2a2021-05-19 18:48:16 +0200488 if (!gpt_init_done) {
Sughosh Ganub721f8a2021-12-01 16:45:11 +0530489/*
490 * With FWU Multi Bank feature enabled, the selection of
491 * the image to boot will be done by fwu_init calling the
492 * platform hook, plat_fwu_set_images_source.
493 */
494#if !PSA_FWU_SUPPORT
Yann Gautier0ed7b2a2021-05-19 18:48:16 +0200495 const partition_entry_t *entry;
Sughosh Ganu52794a32024-02-02 15:35:18 +0530496 const struct efi_guid fip_guid = STM32MP_FIP_GUID;
Yann Gautier0ed7b2a2021-05-19 18:48:16 +0200497
498 partition_init(GPT_IMAGE_ID);
Sughosh Ganu52794a32024-02-02 15:35:18 +0530499 entry = get_partition_entry_by_type(&fip_guid);
Yann Gautier0ed7b2a2021-05-19 18:48:16 +0200500 if (entry == NULL) {
Lionel Debieve5e111c52022-02-24 18:58:46 +0100501 entry = get_partition_entry(FIP_IMAGE_NAME);
502 if (entry == NULL) {
503 ERROR("Could NOT find the %s partition!\n",
504 FIP_IMAGE_NAME);
505
506 return -ENOENT;
507 }
Yann Gautier0ed7b2a2021-05-19 18:48:16 +0200508 }
509
510 image_block_spec.offset = entry->start;
511 image_block_spec.length = entry->length;
Sughosh Ganub721f8a2021-12-01 16:45:11 +0530512#endif
Yann Gautier0ed7b2a2021-05-19 18:48:16 +0200513 gpt_init_done = true;
Yann Gautiera3bd8d12021-06-18 11:33:26 +0200514 } else {
515 bl_mem_params_node_t *bl_mem_params = get_bl_mem_params_node(image_id);
Nicolas Toromanoff44adc4f2022-02-07 10:12:29 +0100516
Yann Gautierc6f77b02022-05-06 09:50:43 +0200517 assert(bl_mem_params != NULL);
Yann Gautiera3bd8d12021-06-18 11:33:26 +0200518
519 mmc_block_dev_spec.buffer.offset = bl_mem_params->image_info.image_base;
520 mmc_block_dev_spec.buffer.length = bl_mem_params->image_info.image_max_size;
Yann Gautier0ed7b2a2021-05-19 18:48:16 +0200521 }
522
523 break;
524#endif
525
526#if STM32MP_RAW_NAND || STM32MP_SPI_NAND
527#if STM32MP_RAW_NAND
528 case BOOT_API_CTX_BOOT_INTERFACE_SEL_FLASH_NAND_FMC:
529#endif
530#if STM32MP_SPI_NAND
Yann Gautiercdb0ec92020-08-31 15:00:19 +0200531 case BOOT_API_CTX_BOOT_INTERFACE_SEL_FLASH_NAND_SPI:
Yann Gautier0ed7b2a2021-05-19 18:48:16 +0200532#endif
533 image_block_spec.offset = STM32MP_NAND_FIP_OFFSET;
534 break;
535#endif
536
537#if STM32MP_SPI_NOR
Yann Gautiercdb0ec92020-08-31 15:00:19 +0200538 case BOOT_API_CTX_BOOT_INTERFACE_SEL_FLASH_NOR_SPI:
Nicolas Toromanoff44adc4f2022-02-07 10:12:29 +0100539/*
540 * With FWU Multi Bank feature enabled, the selection of
541 * the image to boot will be done by fwu_init calling the
542 * platform hook, plat_fwu_set_images_source.
543 */
544#if !PSA_FWU_SUPPORT
Yann Gautier0ed7b2a2021-05-19 18:48:16 +0200545 image_block_spec.offset = STM32MP_NOR_FIP_OFFSET;
Nicolas Toromanoff44adc4f2022-02-07 10:12:29 +0100546#endif
Yann Gautier0ed7b2a2021-05-19 18:48:16 +0200547 break;
548#endif
549
Patrick Delaunaye50571b2021-10-28 13:48:52 +0200550#if STM32MP_UART_PROGRAMMER
551 case BOOT_API_CTX_BOOT_INTERFACE_SEL_SERIAL_UART:
552 if (image_id == FW_CONFIG_ID) {
553 stm32cubeprogrammer_uart();
554 /* FIP loaded at DWL address */
555 image_block_spec.offset = DWL_BUFFER_BASE;
556 image_block_spec.length = DWL_BUFFER_SIZE;
557 }
558 break;
559#endif
Patrick Delaunay9c5ee782021-07-06 14:07:56 +0200560#if STM32MP_USB_PROGRAMMER
561 case BOOT_API_CTX_BOOT_INTERFACE_SEL_SERIAL_USB:
562 if (image_id == FW_CONFIG_ID) {
563 stm32cubeprogrammer_usb();
564 /* FIP loaded at DWL address */
565 image_block_spec.offset = DWL_BUFFER_BASE;
566 image_block_spec.length = DWL_BUFFER_SIZE;
567 }
568 break;
569#endif
570
Yann Gautier0ed7b2a2021-05-19 18:48:16 +0200571 default:
572 ERROR("FIP Not found\n");
573 panic();
Yann Gautier8244e1d2018-10-15 09:36:58 +0200574 }
Yann Gautier0ed7b2a2021-05-19 18:48:16 +0200575
576 return 0;
Yann Gautier4b0c72a2018-07-16 10:54:09 +0200577}
578
579/*
580 * Return an IO device handle and specification which can be used to access
581 * an image. Use this to enforce platform load policy.
582 */
583int plat_get_image_source(unsigned int image_id, uintptr_t *dev_handle,
584 uintptr_t *image_spec)
585{
586 int rc;
587 const struct plat_io_policy *policy;
588
Yann Gautier29f1f942021-07-13 18:07:41 +0200589 policy = FCONF_GET_PROPERTY(stm32mp, io_policies, image_id);
Yann Gautier4b0c72a2018-07-16 10:54:09 +0200590 rc = policy->check(policy->image_spec);
591 if (rc == 0) {
592 *image_spec = policy->image_spec;
593 *dev_handle = *(policy->dev_handle);
594 }
595
596 return rc;
597}
Sughosh Ganub721f8a2021-12-01 16:45:11 +0530598
Nicolas Toromanoff44adc4f2022-02-07 10:12:29 +0100599#if (STM32MP_SDMMC || STM32MP_EMMC || STM32MP_SPI_NOR) && PSA_FWU_SUPPORT
Sughosh Ganub721f8a2021-12-01 16:45:11 +0530600/*
Nicolas Toromanoff5a937cd2022-02-07 10:12:04 +0100601 * In each boot in non-trial mode, we set the BKP register to
602 * FWU_MAX_TRIAL_REBOOT, and return the active_index from metadata.
603 *
604 * As long as the update agent didn't update the "accepted" field in metadata
605 * (i.e. we are in trial mode), we select the new active_index.
606 * To avoid infinite boot loop at trial boot we decrement a BKP register.
607 * If this counter is 0:
608 * - an unexpected TAMPER event raised (that resets the BKP registers to 0)
609 * - a power-off occurs before the update agent was able to update the
610 * "accepted' field
611 * - we already boot FWU_MAX_TRIAL_REBOOT times in trial mode.
612 * we select the previous_active_index.
Sughosh Ganub721f8a2021-12-01 16:45:11 +0530613 */
614uint32_t plat_fwu_get_boot_idx(void)
615{
Nicolas Toromanoff5a937cd2022-02-07 10:12:04 +0100616 /*
617 * Select boot index and update boot counter only once per boot
618 * even if this function is called several times.
619 */
620 static uint32_t boot_idx = INVALID_BOOT_IDX;
Nicolas Toromanoff5a937cd2022-02-07 10:12:04 +0100621
622 if (boot_idx == INVALID_BOOT_IDX) {
Sughosh Ganuda28e4c2024-02-20 14:20:41 +0530623 const struct fwu_metadata *data = fwu_get_metadata();
624
Nicolas Toromanoff5a937cd2022-02-07 10:12:04 +0100625 boot_idx = data->active_index;
Sughosh Ganuda28e4c2024-02-20 14:20:41 +0530626
Sughosh Ganu63576f02024-02-01 16:56:27 +0530627 if (data->bank_state[boot_idx] == FWU_BANK_STATE_VALID) {
Nicolas Toromanoff5a937cd2022-02-07 10:12:04 +0100628 if (stm32_get_and_dec_fwu_trial_boot_cnt() == 0U) {
629 WARN("Trial FWU fails %u times\n",
630 FWU_MAX_TRIAL_REBOOT);
Sughosh Ganuda28e4c2024-02-20 14:20:41 +0530631 boot_idx = fwu_get_alternate_boot_bank();
Nicolas Toromanoff5a937cd2022-02-07 10:12:04 +0100632 }
Sughosh Ganuda28e4c2024-02-20 14:20:41 +0530633 } else if (data->bank_state[boot_idx] ==
634 FWU_BANK_STATE_ACCEPTED) {
Nicolas Toromanoff5a937cd2022-02-07 10:12:04 +0100635 stm32_set_max_fwu_trial_boot_cnt();
Sughosh Ganuda28e4c2024-02-20 14:20:41 +0530636 } else {
637 ERROR("The active bank(%u) of the platform is in Invalid State.\n",
638 boot_idx);
639 boot_idx = fwu_get_alternate_boot_bank();
640 stm32_clear_fwu_trial_boot_cnt();
Nicolas Toromanoff5a937cd2022-02-07 10:12:04 +0100641 }
642 }
Sughosh Ganub721f8a2021-12-01 16:45:11 +0530643
Nicolas Toromanoff5a937cd2022-02-07 10:12:04 +0100644 return boot_idx;
Sughosh Ganub721f8a2021-12-01 16:45:11 +0530645}
646
Sughosh Ganu52794a32024-02-02 15:35:18 +0530647static void *stm32_get_image_spec(const struct efi_guid *img_type_guid)
Sughosh Ganub721f8a2021-12-01 16:45:11 +0530648{
649 unsigned int i;
650
651 for (i = 0U; i < MAX_NUMBER_IDS; i++) {
Sughosh Ganu52794a32024-02-02 15:35:18 +0530652 if ((guidcmp(&policies[i].img_type_guid, img_type_guid)) == 0) {
Sughosh Ganub721f8a2021-12-01 16:45:11 +0530653 return (void *)policies[i].image_spec;
654 }
655 }
656
657 return NULL;
658}
659
660void plat_fwu_set_images_source(const struct fwu_metadata *metadata)
661{
662 unsigned int i;
663 uint32_t boot_idx;
Nicolas Toromanoff44adc4f2022-02-07 10:12:29 +0100664 const partition_entry_t *entry __maybe_unused;
Sughosh Ganu52794a32024-02-02 15:35:18 +0530665 const struct fwu_image_entry *img_entry;
666 const void *img_type_guid;
667 const void *img_guid;
Sughosh Ganub721f8a2021-12-01 16:45:11 +0530668 io_block_spec_t *image_spec;
Nicolas Toromanoff44adc4f2022-02-07 10:12:29 +0100669 const uint16_t boot_itf = stm32mp_get_boot_itf_selected();
Sughosh Ganub721f8a2021-12-01 16:45:11 +0530670
671 boot_idx = plat_fwu_get_boot_idx();
672 assert(boot_idx < NR_OF_FW_BANKS);
Sughosh Ganuda28e4c2024-02-20 14:20:41 +0530673 VERBOSE("Selecting to boot from bank %u\n", boot_idx);
Sughosh Ganub721f8a2021-12-01 16:45:11 +0530674
Sughosh Ganu52794a32024-02-02 15:35:18 +0530675 img_entry = (void *)&metadata->fw_desc.img_entry;
Sughosh Ganub721f8a2021-12-01 16:45:11 +0530676 for (i = 0U; i < NR_OF_IMAGES_IN_FW_BANK; i++) {
Sughosh Ganu52794a32024-02-02 15:35:18 +0530677 img_type_guid = &img_entry[i].img_type_guid;
Nicolas Toromanoff44adc4f2022-02-07 10:12:29 +0100678
Sughosh Ganu52794a32024-02-02 15:35:18 +0530679 img_guid = &img_entry[i].img_bank_info[boot_idx].img_guid;
Nicolas Toromanoff44adc4f2022-02-07 10:12:29 +0100680
Sughosh Ganu52794a32024-02-02 15:35:18 +0530681 image_spec = stm32_get_image_spec(img_type_guid);
Sughosh Ganub721f8a2021-12-01 16:45:11 +0530682 if (image_spec == NULL) {
683 ERROR("Unable to get image spec for the image in the metadata\n");
684 panic();
685 }
686
Nicolas Toromanoff44adc4f2022-02-07 10:12:29 +0100687 switch (boot_itf) {
688#if (STM32MP_SDMMC || STM32MP_EMMC)
689 case BOOT_API_CTX_BOOT_INTERFACE_SEL_FLASH_SD:
690 case BOOT_API_CTX_BOOT_INTERFACE_SEL_FLASH_EMMC:
Sughosh Ganu52794a32024-02-02 15:35:18 +0530691 entry = get_partition_entry_by_guid(img_guid);
Nicolas Toromanoff44adc4f2022-02-07 10:12:29 +0100692 if (entry == NULL) {
693 ERROR("No partition with the uuid mentioned in metadata\n");
694 panic();
695 }
Sughosh Ganub721f8a2021-12-01 16:45:11 +0530696
Nicolas Toromanoff44adc4f2022-02-07 10:12:29 +0100697 image_spec->offset = entry->start;
698 image_spec->length = entry->length;
699 break;
700#endif
701#if STM32MP_SPI_NOR
Yann Gautiercdb0ec92020-08-31 15:00:19 +0200702 case BOOT_API_CTX_BOOT_INTERFACE_SEL_FLASH_NOR_SPI:
Sughosh Ganu52794a32024-02-02 15:35:18 +0530703 if (guidcmp(img_guid, &STM32MP_NOR_FIP_A_GUID) == 0) {
Nicolas Toromanoff44adc4f2022-02-07 10:12:29 +0100704 image_spec->offset = STM32MP_NOR_FIP_A_OFFSET;
Sughosh Ganu52794a32024-02-02 15:35:18 +0530705 } else if (guidcmp(img_guid, &STM32MP_NOR_FIP_B_GUID) == 0) {
Nicolas Toromanoff44adc4f2022-02-07 10:12:29 +0100706 image_spec->offset = STM32MP_NOR_FIP_B_OFFSET;
707 } else {
708 ERROR("Invalid uuid mentioned in metadata\n");
709 panic();
710 }
711 break;
712#endif
713 default:
Sughosh Ganub721f8a2021-12-01 16:45:11 +0530714 panic();
Nicolas Toromanoff44adc4f2022-02-07 10:12:29 +0100715 break;
Sughosh Ganub721f8a2021-12-01 16:45:11 +0530716 }
Sughosh Ganub721f8a2021-12-01 16:45:11 +0530717 }
718}
Sughosh Ganud1f87132021-12-01 16:46:34 +0530719
720static int plat_set_image_source(unsigned int image_id,
721 uintptr_t *handle,
Nicolas Toromanoff44adc4f2022-02-07 10:12:29 +0100722 uintptr_t *image_spec)
Sughosh Ganud1f87132021-12-01 16:46:34 +0530723{
724 struct plat_io_policy *policy;
Nicolas Toromanoff44adc4f2022-02-07 10:12:29 +0100725 io_block_spec_t *spec __maybe_unused;
726 const partition_entry_t *entry __maybe_unused;
727 const uint16_t boot_itf = stm32mp_get_boot_itf_selected();
Sughosh Ganud1f87132021-12-01 16:46:34 +0530728
729 policy = &policies[image_id];
Sughosh Ganud1f87132021-12-01 16:46:34 +0530730 spec = (io_block_spec_t *)policy->image_spec;
Nicolas Toromanoff44adc4f2022-02-07 10:12:29 +0100731
732 switch (boot_itf) {
733#if (STM32MP_SDMMC || STM32MP_EMMC)
734 case BOOT_API_CTX_BOOT_INTERFACE_SEL_FLASH_SD:
735 case BOOT_API_CTX_BOOT_INTERFACE_SEL_FLASH_EMMC:
736 partition_init(GPT_IMAGE_ID);
737
738 if (image_id == FWU_METADATA_IMAGE_ID) {
739 entry = get_partition_entry(METADATA_PART_1);
740 } else {
741 entry = get_partition_entry(METADATA_PART_2);
742 }
743
744 if (entry == NULL) {
745 ERROR("Unable to find a metadata partition\n");
746 return -ENOENT;
747 }
748
749 spec->offset = entry->start;
750 spec->length = entry->length;
751 break;
752#endif
753
754#if STM32MP_SPI_NOR
Yann Gautiercdb0ec92020-08-31 15:00:19 +0200755 case BOOT_API_CTX_BOOT_INTERFACE_SEL_FLASH_NOR_SPI:
Nicolas Toromanoff44adc4f2022-02-07 10:12:29 +0100756 if (image_id == FWU_METADATA_IMAGE_ID) {
757 spec->offset = STM32MP_NOR_METADATA1_OFFSET;
758 } else {
759 spec->offset = STM32MP_NOR_METADATA2_OFFSET;
760 }
761
762 spec->length = sizeof(struct fwu_metadata);
763 break;
764#endif
765 default:
766 panic();
767 break;
768 }
Sughosh Ganud1f87132021-12-01 16:46:34 +0530769
770 *image_spec = policy->image_spec;
771 *handle = *policy->dev_handle;
772
773 return 0;
774}
775
776int plat_fwu_set_metadata_image_source(unsigned int image_id,
777 uintptr_t *handle,
778 uintptr_t *image_spec)
779{
Sughosh Ganud1f87132021-12-01 16:46:34 +0530780 assert((image_id == FWU_METADATA_IMAGE_ID) ||
781 (image_id == BKUP_FWU_METADATA_IMAGE_ID));
782
Nicolas Toromanoff44adc4f2022-02-07 10:12:29 +0100783 return plat_set_image_source(image_id, handle, image_spec);
Sughosh Ganud1f87132021-12-01 16:46:34 +0530784}
Nicolas Toromanoff44adc4f2022-02-07 10:12:29 +0100785#endif /* (STM32MP_SDMMC || STM32MP_EMMC || STM32MP_SPI_NOR) && PSA_FWU_SUPPORT */