blob: 6069e5fb775690bd17fa4e7933d8df6d5b7cbf88 [file] [log] [blame]
Yann Gautier4b0c72a2018-07-16 10:54:09 +02001/*
Yann Gautierac22dd52021-03-22 14:22:14 +01002 * Copyright (c) 2015-2021, 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>
Antonio Nino Diaze0f90632018-12-14 00:18:21 +000013#include <drivers/io/io_block.h>
14#include <drivers/io/io_driver.h>
Yann Gautier0ed7b2a2021-05-19 18:48:16 +020015#include <drivers/io/io_fip.h>
Patrick Delaunay9c5ee782021-07-06 14:07:56 +020016#include <drivers/io/io_memmap.h>
Lionel Debieve402a46b2019-11-04 12:28:15 +010017#include <drivers/io/io_mtd.h>
Antonio Nino Diaze0f90632018-12-14 00:18:21 +000018#include <drivers/io/io_storage.h>
19#include <drivers/mmc.h>
20#include <drivers/partition/partition.h>
Lionel Debieve402a46b2019-11-04 12:28:15 +010021#include <drivers/raw_nand.h>
Lionel Debieve186b0462019-09-24 18:30:12 +020022#include <drivers/spi_nand.h>
Lionel Debievecb0dbc42019-09-25 09:11:31 +020023#include <drivers/spi_nor.h>
Antonio Nino Diaze0f90632018-12-14 00:18:21 +000024#include <drivers/st/io_mmc.h>
Lionel Debieve402a46b2019-11-04 12:28:15 +010025#include <drivers/st/stm32_fmc2_nand.h>
Lionel Debieve186b0462019-09-24 18:30:12 +020026#include <drivers/st/stm32_qspi.h>
Antonio Nino Diaze0f90632018-12-14 00:18:21 +000027#include <drivers/st/stm32_sdmmc2.h>
Patrick Delaunay9c5ee782021-07-06 14:07:56 +020028#include <drivers/usb_device.h>
Yann Gautier29f1f942021-07-13 18:07:41 +020029#include <lib/fconf/fconf.h>
Antonio Nino Diaze0f90632018-12-14 00:18:21 +000030#include <lib/mmio.h>
31#include <lib/utils.h>
32#include <plat/common/platform.h>
Yann Gautier0ed7b2a2021-05-19 18:48:16 +020033#include <tools_share/firmware_image_package.h>
34
35#include <platform_def.h>
Patrick Delaunay9c5ee782021-07-06 14:07:56 +020036#include <stm32cubeprogrammer.h>
Yann Gautier29f1f942021-07-13 18:07:41 +020037#include <stm32mp_fconf_getter.h>
Patrick Delaunay9c5ee782021-07-06 14:07:56 +020038#include <usb_dfu.h>
Antonio Nino Diaze0f90632018-12-14 00:18:21 +000039
Yann Gautier4b0c72a2018-07-16 10:54:09 +020040/* IO devices */
Yann Gautier0ed7b2a2021-05-19 18:48:16 +020041uintptr_t fip_dev_handle;
42uintptr_t storage_dev_handle;
Yann Gautier4b0c72a2018-07-16 10:54:09 +020043
Yann Gautier0ed7b2a2021-05-19 18:48:16 +020044static const io_dev_connector_t *fip_dev_con;
Yann Gautier8244e1d2018-10-15 09:36:58 +020045
Nicolas Le Bayon3f42cad2019-09-03 09:52:05 +020046#if STM32MP_SDMMC || STM32MP_EMMC
Yann Gautierac22dd52021-03-22 14:22:14 +010047static struct mmc_device_info mmc_info;
Yann Gautier8244e1d2018-10-15 09:36:58 +020048
Yann Gautierf9af3bc2018-11-09 15:57:18 +010049static uint32_t block_buffer[MMC_BLOCK_SIZE] __aligned(MMC_BLOCK_SIZE);
Yann Gautier8244e1d2018-10-15 09:36:58 +020050
Yann Gautiera3bd8d12021-06-18 11:33:26 +020051static io_block_dev_spec_t mmc_block_dev_spec = {
Yann Gautier8244e1d2018-10-15 09:36:58 +020052 /* It's used as temp buffer in block driver */
53 .buffer = {
54 .offset = (size_t)&block_buffer,
55 .length = MMC_BLOCK_SIZE,
56 },
57 .ops = {
58 .read = mmc_read_blocks,
59 .write = NULL,
60 },
61 .block_size = MMC_BLOCK_SIZE,
62};
Vyacheslav Yurkove43a0802021-06-04 10:10:51 +020063
Yann Gautier8244e1d2018-10-15 09:36:58 +020064static const io_dev_connector_t *mmc_dev_con;
Nicolas Le Bayon3f42cad2019-09-03 09:52:05 +020065#endif /* STM32MP_SDMMC || STM32MP_EMMC */
Yann Gautier8244e1d2018-10-15 09:36:58 +020066
Lionel Debievecb0dbc42019-09-25 09:11:31 +020067#if STM32MP_SPI_NOR
68static io_mtd_dev_spec_t spi_nor_dev_spec = {
69 .ops = {
70 .init = spi_nor_init,
71 .read = spi_nor_read,
72 },
73};
74#endif
75
Lionel Debieve402a46b2019-11-04 12:28:15 +010076#if STM32MP_RAW_NAND
77static io_mtd_dev_spec_t nand_dev_spec = {
78 .ops = {
79 .init = nand_raw_init,
80 .read = nand_read,
Yann Gautier0ed7b2a2021-05-19 18:48:16 +020081 .seek = nand_seek_bb
Lionel Debieve402a46b2019-11-04 12:28:15 +010082 },
83};
84
85static const io_dev_connector_t *nand_dev_con;
86#endif
87
Lionel Debieve186b0462019-09-24 18:30:12 +020088#if STM32MP_SPI_NAND
89static io_mtd_dev_spec_t spi_nand_dev_spec = {
90 .ops = {
91 .init = spi_nand_init,
92 .read = nand_read,
Yann Gautier0ed7b2a2021-05-19 18:48:16 +020093 .seek = nand_seek_bb
Lionel Debieve186b0462019-09-24 18:30:12 +020094 },
95};
Lionel Debievecb0dbc42019-09-25 09:11:31 +020096#endif
Lionel Debieve186b0462019-09-24 18:30:12 +020097
Lionel Debievecb0dbc42019-09-25 09:11:31 +020098#if STM32MP_SPI_NAND || STM32MP_SPI_NOR
Lionel Debieve186b0462019-09-24 18:30:12 +020099static const io_dev_connector_t *spi_dev_con;
100#endif
101
Patrick Delaunaye50571b2021-10-28 13:48:52 +0200102#if STM32MP_UART_PROGRAMMER || STM32MP_USB_PROGRAMMER
Patrick Delaunay9c5ee782021-07-06 14:07:56 +0200103static const io_dev_connector_t *memmap_dev_con;
104#endif
105
Yann Gautier29f1f942021-07-13 18:07:41 +0200106io_block_spec_t image_block_spec = {
Yann Gautier0ed7b2a2021-05-19 18:48:16 +0200107 .offset = 0U,
108 .length = 0U,
109};
Yann Gautier4b0c72a2018-07-16 10:54:09 +0200110
Yann Gautier29f1f942021-07-13 18:07:41 +0200111int open_fip(const uintptr_t spec)
Yann Gautier4b0c72a2018-07-16 10:54:09 +0200112{
Yann Gautier0ed7b2a2021-05-19 18:48:16 +0200113 return io_dev_init(fip_dev_handle, (uintptr_t)FIP_IMAGE_ID);
Yann Gautier4b0c72a2018-07-16 10:54:09 +0200114}
Yann Gautier8244e1d2018-10-15 09:36:58 +0200115
Yann Gautier29f1f942021-07-13 18:07:41 +0200116int open_storage(const uintptr_t spec)
Yann Gautier8244e1d2018-10-15 09:36:58 +0200117{
118 return io_dev_init(storage_dev_handle, 0);
119}
Vyacheslav Yurkove43a0802021-06-04 10:10:51 +0200120
Yann Gautier4b0c72a2018-07-16 10:54:09 +0200121static void print_boot_device(boot_api_context_t *boot_context)
122{
123 switch (boot_context->boot_interface_selected) {
124 case BOOT_API_CTX_BOOT_INTERFACE_SEL_FLASH_SD:
125 INFO("Using SDMMC\n");
126 break;
127 case BOOT_API_CTX_BOOT_INTERFACE_SEL_FLASH_EMMC:
128 INFO("Using EMMC\n");
129 break;
Lionel Debievecb0dbc42019-09-25 09:11:31 +0200130 case BOOT_API_CTX_BOOT_INTERFACE_SEL_FLASH_NOR_QSPI:
131 INFO("Using QSPI NOR\n");
132 break;
Lionel Debieve402a46b2019-11-04 12:28:15 +0100133 case BOOT_API_CTX_BOOT_INTERFACE_SEL_FLASH_NAND_FMC:
134 INFO("Using FMC NAND\n");
135 break;
Lionel Debieve186b0462019-09-24 18:30:12 +0200136 case BOOT_API_CTX_BOOT_INTERFACE_SEL_FLASH_NAND_QSPI:
137 INFO("Using SPI NAND\n");
138 break;
Patrick Delaunaye50571b2021-10-28 13:48:52 +0200139 case BOOT_API_CTX_BOOT_INTERFACE_SEL_SERIAL_UART:
140 INFO("Using UART\n");
141 break;
Patrick Delaunay9c5ee782021-07-06 14:07:56 +0200142 case BOOT_API_CTX_BOOT_INTERFACE_SEL_SERIAL_USB:
143 INFO("Using USB\n");
144 break;
Yann Gautier4b0c72a2018-07-16 10:54:09 +0200145 default:
Yann Gautier0ed7b2a2021-05-19 18:48:16 +0200146 ERROR("Boot interface %u not found\n",
147 boot_context->boot_interface_selected);
Yann Gautier4b0c72a2018-07-16 10:54:09 +0200148 panic();
149 break;
150 }
151
152 if (boot_context->boot_interface_instance != 0U) {
153 INFO(" Instance %d\n", boot_context->boot_interface_instance);
154 }
Yann Gautier4b0c72a2018-07-16 10:54:09 +0200155}
156
Nicolas Le Bayon3f42cad2019-09-03 09:52:05 +0200157#if STM32MP_SDMMC || STM32MP_EMMC
Yann Gautiereae3fbf2019-04-23 13:34:03 +0200158static void boot_mmc(enum mmc_device_type mmc_dev_type,
159 uint16_t boot_interface_instance)
Yann Gautier4b0c72a2018-07-16 10:54:09 +0200160{
161 int io_result __unused;
Yann Gautier8244e1d2018-10-15 09:36:58 +0200162 struct stm32_sdmmc2_params params;
Yann Gautier4b0c72a2018-07-16 10:54:09 +0200163
Yann Gautiereae3fbf2019-04-23 13:34:03 +0200164 zeromem(&params, sizeof(struct stm32_sdmmc2_params));
Yann Gautier4b0c72a2018-07-16 10:54:09 +0200165
Yann Gautierac22dd52021-03-22 14:22:14 +0100166 mmc_info.mmc_dev_type = mmc_dev_type;
Yann Gautiereae3fbf2019-04-23 13:34:03 +0200167
168 switch (boot_interface_instance) {
169 case 1:
170 params.reg_base = STM32MP_SDMMC1_BASE;
171 break;
172 case 2:
173 params.reg_base = STM32MP_SDMMC2_BASE;
174 break;
175 case 3:
176 params.reg_base = STM32MP_SDMMC3_BASE;
177 break;
178 default:
179 WARN("SDMMC instance not found, using default\n");
180 if (mmc_dev_type == MMC_IS_SD) {
181 params.reg_base = STM32MP_SDMMC1_BASE;
182 } else {
183 params.reg_base = STM32MP_SDMMC2_BASE;
184 }
185 break;
Yann Gautier4b0c72a2018-07-16 10:54:09 +0200186 }
187
Yann Gautierac22dd52021-03-22 14:22:14 +0100188 params.device_info = &mmc_info;
Yann Gautiereae3fbf2019-04-23 13:34:03 +0200189 if (stm32_sdmmc2_mmc_init(&params) != 0) {
190 ERROR("SDMMC%u init failed\n", boot_interface_instance);
191 panic();
192 }
Yann Gautier4b0c72a2018-07-16 10:54:09 +0200193
Yann Gautiereae3fbf2019-04-23 13:34:03 +0200194 /* Open MMC as a block device to read GPT table */
195 io_result = register_io_dev_block(&mmc_dev_con);
196 if (io_result != 0) {
197 panic();
198 }
Yann Gautier8244e1d2018-10-15 09:36:58 +0200199
Yann Gautiereae3fbf2019-04-23 13:34:03 +0200200 io_result = io_dev_open(mmc_dev_con, (uintptr_t)&mmc_block_dev_spec,
201 &storage_dev_handle);
202 assert(io_result == 0);
Yann Gautiereae3fbf2019-04-23 13:34:03 +0200203}
Nicolas Le Bayon3f42cad2019-09-03 09:52:05 +0200204#endif /* STM32MP_SDMMC || STM32MP_EMMC */
Yann Gautier8244e1d2018-10-15 09:36:58 +0200205
Lionel Debievecb0dbc42019-09-25 09:11:31 +0200206#if STM32MP_SPI_NOR
207static void boot_spi_nor(boot_api_context_t *boot_context)
208{
209 int io_result __unused;
Lionel Debievecb0dbc42019-09-25 09:11:31 +0200210
211 io_result = stm32_qspi_init();
212 assert(io_result == 0);
213
214 io_result = register_io_dev_mtd(&spi_dev_con);
215 assert(io_result == 0);
216
217 /* Open connections to device */
218 io_result = io_dev_open(spi_dev_con,
219 (uintptr_t)&spi_nor_dev_spec,
220 &storage_dev_handle);
221 assert(io_result == 0);
Lionel Debievecb0dbc42019-09-25 09:11:31 +0200222}
223#endif /* STM32MP_SPI_NOR */
224
Lionel Debieve402a46b2019-11-04 12:28:15 +0100225#if STM32MP_RAW_NAND
226static void boot_fmc2_nand(boot_api_context_t *boot_context)
227{
228 int io_result __unused;
Lionel Debieve402a46b2019-11-04 12:28:15 +0100229
230 io_result = stm32_fmc2_init();
231 assert(io_result == 0);
232
233 /* Register the IO device on this platform */
234 io_result = register_io_dev_mtd(&nand_dev_con);
235 assert(io_result == 0);
236
237 /* Open connections to device */
238 io_result = io_dev_open(nand_dev_con, (uintptr_t)&nand_dev_spec,
239 &storage_dev_handle);
240 assert(io_result == 0);
Lionel Debieve402a46b2019-11-04 12:28:15 +0100241}
242#endif /* STM32MP_RAW_NAND */
243
Lionel Debieve186b0462019-09-24 18:30:12 +0200244#if STM32MP_SPI_NAND
245static void boot_spi_nand(boot_api_context_t *boot_context)
246{
247 int io_result __unused;
Lionel Debieve186b0462019-09-24 18:30:12 +0200248
249 io_result = stm32_qspi_init();
250 assert(io_result == 0);
251
252 io_result = register_io_dev_mtd(&spi_dev_con);
253 assert(io_result == 0);
254
255 /* Open connections to device */
256 io_result = io_dev_open(spi_dev_con,
257 (uintptr_t)&spi_nand_dev_spec,
258 &storage_dev_handle);
259 assert(io_result == 0);
Lionel Debieve186b0462019-09-24 18:30:12 +0200260}
261#endif /* STM32MP_SPI_NAND */
262
Patrick Delaunaye50571b2021-10-28 13:48:52 +0200263#if STM32MP_UART_PROGRAMMER || STM32MP_USB_PROGRAMMER
Patrick Delaunay9c5ee782021-07-06 14:07:56 +0200264static void mmap_io_setup(void)
265{
266 int io_result __unused;
267
268 io_result = register_io_dev_memmap(&memmap_dev_con);
269 assert(io_result == 0);
270
271 io_result = io_dev_open(memmap_dev_con, (uintptr_t)NULL,
272 &storage_dev_handle);
273 assert(io_result == 0);
274}
275
Patrick Delaunaye50571b2021-10-28 13:48:52 +0200276#if STM32MP_UART_PROGRAMMER
277static void stm32cubeprogrammer_uart(void)
278{
279 int ret __unused;
280 boot_api_context_t *boot_context =
281 (boot_api_context_t *)stm32mp_get_boot_ctx_address();
282 uintptr_t uart_base;
283
284 uart_base = get_uart_address(boot_context->boot_interface_instance);
285 ret = stm32cubeprog_uart_load(uart_base, DWL_BUFFER_BASE, DWL_BUFFER_SIZE);
286 assert(ret == 0);
287}
288#endif
289
290#if STM32MP_USB_PROGRAMMER
Patrick Delaunay9c5ee782021-07-06 14:07:56 +0200291static void stm32cubeprogrammer_usb(void)
292{
293 int ret __unused;
294 struct usb_handle *pdev;
295
296 /* Init USB on platform */
297 pdev = usb_dfu_plat_init();
298
299 ret = stm32cubeprog_usb_load(pdev, DWL_BUFFER_BASE, DWL_BUFFER_SIZE);
300 assert(ret == 0);
301}
302#endif
Patrick Delaunaye50571b2021-10-28 13:48:52 +0200303#endif /* STM32MP_UART_PROGRAMMER || STM32MP_USB_PROGRAMMER */
304
Patrick Delaunay9c5ee782021-07-06 14:07:56 +0200305
Yann Gautiereae3fbf2019-04-23 13:34:03 +0200306void stm32mp_io_setup(void)
307{
308 int io_result __unused;
309 boot_api_context_t *boot_context =
310 (boot_api_context_t *)stm32mp_get_boot_ctx_address();
Yann Gautierf9d40d52019-01-17 14:41:46 +0100311
Yann Gautiereae3fbf2019-04-23 13:34:03 +0200312 print_boot_device(boot_context);
Yann Gautier8244e1d2018-10-15 09:36:58 +0200313
Yann Gautiereae3fbf2019-04-23 13:34:03 +0200314 if ((boot_context->boot_partition_used_toboot == 1U) ||
315 (boot_context->boot_partition_used_toboot == 2U)) {
Yann Gautier0ed7b2a2021-05-19 18:48:16 +0200316 INFO("Boot used partition fsbl%u\n",
Yann Gautiereae3fbf2019-04-23 13:34:03 +0200317 boot_context->boot_partition_used_toboot);
318 }
Yann Gautier8244e1d2018-10-15 09:36:58 +0200319
Yann Gautier0ed7b2a2021-05-19 18:48:16 +0200320 io_result = register_io_dev_fip(&fip_dev_con);
Yann Gautiereae3fbf2019-04-23 13:34:03 +0200321 assert(io_result == 0);
Yann Gautier8244e1d2018-10-15 09:36:58 +0200322
Yann Gautier0ed7b2a2021-05-19 18:48:16 +0200323 io_result = io_dev_open(fip_dev_con, (uintptr_t)NULL,
324 &fip_dev_handle);
Yann Gautier8244e1d2018-10-15 09:36:58 +0200325
Yann Gautiereae3fbf2019-04-23 13:34:03 +0200326 switch (boot_context->boot_interface_selected) {
Nicolas Le Bayon3f42cad2019-09-03 09:52:05 +0200327#if STM32MP_SDMMC
Yann Gautiereae3fbf2019-04-23 13:34:03 +0200328 case BOOT_API_CTX_BOOT_INTERFACE_SEL_FLASH_SD:
329 dmbsy();
330 boot_mmc(MMC_IS_SD, boot_context->boot_interface_instance);
331 break;
Nicolas Le Bayon3f42cad2019-09-03 09:52:05 +0200332#endif
333#if STM32MP_EMMC
Yann Gautiereae3fbf2019-04-23 13:34:03 +0200334 case BOOT_API_CTX_BOOT_INTERFACE_SEL_FLASH_EMMC:
335 dmbsy();
336 boot_mmc(MMC_IS_EMMC, boot_context->boot_interface_instance);
Yann Gautier8244e1d2018-10-15 09:36:58 +0200337 break;
Nicolas Le Bayon3f42cad2019-09-03 09:52:05 +0200338#endif
Lionel Debievecb0dbc42019-09-25 09:11:31 +0200339#if STM32MP_SPI_NOR
340 case BOOT_API_CTX_BOOT_INTERFACE_SEL_FLASH_NOR_QSPI:
341 dmbsy();
342 boot_spi_nor(boot_context);
343 break;
344#endif
Lionel Debieve402a46b2019-11-04 12:28:15 +0100345#if STM32MP_RAW_NAND
346 case BOOT_API_CTX_BOOT_INTERFACE_SEL_FLASH_NAND_FMC:
347 dmbsy();
348 boot_fmc2_nand(boot_context);
349 break;
350#endif
Lionel Debieve186b0462019-09-24 18:30:12 +0200351#if STM32MP_SPI_NAND
352 case BOOT_API_CTX_BOOT_INTERFACE_SEL_FLASH_NAND_QSPI:
353 dmbsy();
354 boot_spi_nand(boot_context);
355 break;
356#endif
Patrick Delaunaye50571b2021-10-28 13:48:52 +0200357#if STM32MP_UART_PROGRAMMER || STM32MP_USB_PROGRAMMER
358#if STM32MP_UART_PROGRAMMER
359 case BOOT_API_CTX_BOOT_INTERFACE_SEL_SERIAL_UART:
360#endif
Patrick Delaunay9c5ee782021-07-06 14:07:56 +0200361#if STM32MP_USB_PROGRAMMER
362 case BOOT_API_CTX_BOOT_INTERFACE_SEL_SERIAL_USB:
Patrick Delaunaye50571b2021-10-28 13:48:52 +0200363#endif
Patrick Delaunay9c5ee782021-07-06 14:07:56 +0200364 dmbsy();
365 mmap_io_setup();
366 break;
367#endif
Yann Gautier8244e1d2018-10-15 09:36:58 +0200368
369 default:
370 ERROR("Boot interface %d not supported\n",
371 boot_context->boot_interface_selected);
Yann Gautier4c2b73d2021-06-30 17:04:22 +0200372 panic();
Yann Gautier8244e1d2018-10-15 09:36:58 +0200373 break;
Yann Gautier0ed7b2a2021-05-19 18:48:16 +0200374 }
375}
376
377int bl2_plat_handle_pre_image_load(unsigned int image_id)
378{
379 static bool gpt_init_done __unused;
380 uint16_t boot_itf = stm32mp_get_boot_itf_selected();
381
382 switch (boot_itf) {
383#if STM32MP_SDMMC || STM32MP_EMMC
384 case BOOT_API_CTX_BOOT_INTERFACE_SEL_FLASH_SD:
385 case BOOT_API_CTX_BOOT_INTERFACE_SEL_FLASH_EMMC:
386 if (!gpt_init_done) {
387 const partition_entry_t *entry;
388
389 partition_init(GPT_IMAGE_ID);
390 entry = get_partition_entry(FIP_IMAGE_NAME);
391 if (entry == NULL) {
392 ERROR("Could NOT find the %s partition!\n",
393 FIP_IMAGE_NAME);
394 return -ENOENT;
395 }
396
397 image_block_spec.offset = entry->start;
398 image_block_spec.length = entry->length;
399
400 gpt_init_done = true;
Yann Gautiera3bd8d12021-06-18 11:33:26 +0200401 } else {
402 bl_mem_params_node_t *bl_mem_params = get_bl_mem_params_node(image_id);
403
404 mmc_block_dev_spec.buffer.offset = bl_mem_params->image_info.image_base;
405 mmc_block_dev_spec.buffer.length = bl_mem_params->image_info.image_max_size;
Yann Gautier0ed7b2a2021-05-19 18:48:16 +0200406 }
407
408 break;
409#endif
410
411#if STM32MP_RAW_NAND || STM32MP_SPI_NAND
412#if STM32MP_RAW_NAND
413 case BOOT_API_CTX_BOOT_INTERFACE_SEL_FLASH_NAND_FMC:
414#endif
415#if STM32MP_SPI_NAND
416 case BOOT_API_CTX_BOOT_INTERFACE_SEL_FLASH_NAND_QSPI:
417#endif
418 image_block_spec.offset = STM32MP_NAND_FIP_OFFSET;
419 break;
420#endif
421
422#if STM32MP_SPI_NOR
423 case BOOT_API_CTX_BOOT_INTERFACE_SEL_FLASH_NOR_QSPI:
424 image_block_spec.offset = STM32MP_NOR_FIP_OFFSET;
425 break;
426#endif
427
Patrick Delaunaye50571b2021-10-28 13:48:52 +0200428#if STM32MP_UART_PROGRAMMER
429 case BOOT_API_CTX_BOOT_INTERFACE_SEL_SERIAL_UART:
430 if (image_id == FW_CONFIG_ID) {
431 stm32cubeprogrammer_uart();
432 /* FIP loaded at DWL address */
433 image_block_spec.offset = DWL_BUFFER_BASE;
434 image_block_spec.length = DWL_BUFFER_SIZE;
435 }
436 break;
437#endif
Patrick Delaunay9c5ee782021-07-06 14:07:56 +0200438#if STM32MP_USB_PROGRAMMER
439 case BOOT_API_CTX_BOOT_INTERFACE_SEL_SERIAL_USB:
440 if (image_id == FW_CONFIG_ID) {
441 stm32cubeprogrammer_usb();
442 /* FIP loaded at DWL address */
443 image_block_spec.offset = DWL_BUFFER_BASE;
444 image_block_spec.length = DWL_BUFFER_SIZE;
445 }
446 break;
447#endif
448
Yann Gautier0ed7b2a2021-05-19 18:48:16 +0200449 default:
450 ERROR("FIP Not found\n");
451 panic();
Yann Gautier8244e1d2018-10-15 09:36:58 +0200452 }
Yann Gautier0ed7b2a2021-05-19 18:48:16 +0200453
454 return 0;
Yann Gautier4b0c72a2018-07-16 10:54:09 +0200455}
456
457/*
458 * Return an IO device handle and specification which can be used to access
459 * an image. Use this to enforce platform load policy.
460 */
461int plat_get_image_source(unsigned int image_id, uintptr_t *dev_handle,
462 uintptr_t *image_spec)
463{
464 int rc;
465 const struct plat_io_policy *policy;
466
Yann Gautier29f1f942021-07-13 18:07:41 +0200467 policy = FCONF_GET_PROPERTY(stm32mp, io_policies, image_id);
Yann Gautier4b0c72a2018-07-16 10:54:09 +0200468 rc = policy->check(policy->image_spec);
469 if (rc == 0) {
470 *image_spec = policy->image_spec;
471 *dev_handle = *(policy->dev_handle);
472 }
473
474 return rc;
475}