blob: e07abbe21c1acf63ea25157697abda997fe19291 [file] [log] [blame]
Tom Rini4549e782018-05-06 18:27:01 -04001// SPDX-License-Identifier: GPL-2.0+ OR BSD-3-Clause
Patrick Delaunay2514c2d2018-03-12 10:46:10 +01002/*
3 * Copyright (C) 2018, STMicroelectronics - All Rights Reserved
Patrick Delaunay2514c2d2018-03-12 10:46:10 +01004 */
Patrick Delaunayeb653ac2020-11-06 19:01:29 +01005
6#define LOG_CATEGORY LOGC_ARCH
7
Patrick Delaunay2514c2d2018-03-12 10:46:10 +01008#include <common.h>
9#include <clk.h>
Simon Glass9edefc22019-11-14 12:57:37 -070010#include <cpu_func.h>
Patrick Delaunay320d2662018-05-17 14:50:46 +020011#include <debug_uart.h>
Simon Glass9fb625c2019-08-01 09:46:51 -060012#include <env.h>
Simon Glass691d7192020-05-10 11:40:02 -060013#include <init.h>
Simon Glassf7ae49f2020-05-10 11:40:05 -060014#include <log.h>
Patrick Delaunayade4e042021-05-07 14:50:35 +020015#include <lmb.h>
Patrick Delaunay7f7deb02018-05-17 15:24:07 +020016#include <misc.h>
Simon Glass90526e92020-05-10 11:39:56 -060017#include <net.h>
Simon Glass1e94b462023-09-14 18:21:46 -060018#include <spl.h>
Patrick Delaunay2514c2d2018-03-12 10:46:10 +010019#include <asm/io.h>
20#include <asm/arch/stm32.h>
Patrick Delaunay96583cd2018-03-19 19:09:21 +010021#include <asm/arch/sys_proto.h>
Simon Glass401d1c42020-10-30 21:38:53 -060022#include <asm/global_data.h>
Patrick Delaunay7f7deb02018-05-17 15:24:07 +020023#include <dm/device.h>
Patrick Delaunay08772f62018-03-20 10:54:53 +010024#include <dm/uclass.h>
Simon Glasscd93d622020-05-10 11:40:13 -060025#include <linux/bitops.h>
Simon Glass1e94b462023-09-14 18:21:46 -060026#include <linux/printk.h>
Patrick Delaunay2514c2d2018-03-12 10:46:10 +010027
Patrick Delaunay7e8471c2020-04-30 16:30:20 +020028/*
29 * early TLB into the .data section so that it not get cleared
30 * with 16kB allignment (see TTBR0_BASE_ADDR_MASK)
31 */
32u8 early_tlb[PGTABLE_SIZE] __section(".data") __aligned(0x4000);
33
Patrick Delaunayade4e042021-05-07 14:50:35 +020034struct lmb lmb;
35
Patrick Delaunay7f63c1e2019-02-27 17:01:12 +010036u32 get_bootmode(void)
37{
38 /* read bootmode from TAMP backup register */
39 return (readl(TAMP_BOOT_CONTEXT) & TAMP_BOOT_MODE_MASK) >>
40 TAMP_BOOT_MODE_SHIFT;
Patrick Delaunay08772f62018-03-20 10:54:53 +010041}
42
43/*
Patrick Delaunayaad84142021-02-05 13:53:33 +010044 * weak function overidde: set the DDR/SYSRAM executable before to enable the
45 * MMU and configure DACR, for early early_enable_caches (SPL or pre-reloc)
46 */
47void dram_bank_mmu_setup(int bank)
48{
49 struct bd_info *bd = gd->bd;
50 int i;
51 phys_addr_t start;
52 phys_size_t size;
Patrick Delaunayade4e042021-05-07 14:50:35 +020053 bool use_lmb = false;
54 enum dcache_option option;
Patrick Delaunayaad84142021-02-05 13:53:33 +010055
56 if (IS_ENABLED(CONFIG_SPL_BUILD)) {
Patrick Delaunay960debb2022-05-20 18:24:46 +020057/* STM32_SYSRAM_BASE exist only when SPL is supported */
58#ifdef CONFIG_SPL
Patrick Delaunayaad84142021-02-05 13:53:33 +010059 start = ALIGN_DOWN(STM32_SYSRAM_BASE, MMU_SECTION_SIZE);
60 size = ALIGN(STM32_SYSRAM_SIZE, MMU_SECTION_SIZE);
Patrick Delaunay960debb2022-05-20 18:24:46 +020061#endif
Patrick Delaunayaad84142021-02-05 13:53:33 +010062 } else if (gd->flags & GD_FLG_RELOC) {
63 /* bd->bi_dram is available only after relocation */
64 start = bd->bi_dram[bank].start;
65 size = bd->bi_dram[bank].size;
Patrick Delaunayade4e042021-05-07 14:50:35 +020066 use_lmb = true;
Patrick Delaunayaad84142021-02-05 13:53:33 +010067 } else {
68 /* mark cacheable and executable the beggining of the DDR */
69 start = STM32_DDR_BASE;
70 size = CONFIG_DDR_CACHEABLE_SIZE;
71 }
72
73 for (i = start >> MMU_SECTION_SHIFT;
74 i < (start >> MMU_SECTION_SHIFT) + (size >> MMU_SECTION_SHIFT);
Patrick Delaunayade4e042021-05-07 14:50:35 +020075 i++) {
76 option = DCACHE_DEFAULT_OPTION;
77 if (use_lmb && lmb_is_reserved_flags(&lmb, i << MMU_SECTION_SHIFT, LMB_NOMAP))
78 option = 0; /* INVALID ENTRY in TLB */
79 set_section_dcache(i, option);
80 }
Patrick Delaunayaad84142021-02-05 13:53:33 +010081}
82/*
Patrick Delaunay7e8471c2020-04-30 16:30:20 +020083 * initialize the MMU and activate cache in SPL or in U-Boot pre-reloc stage
84 * MMU/TLB is updated in enable_caches() for U-Boot after relocation
85 * or is deactivated in U-Boot entry function start.S::cpu_init_cp15
86 */
87static void early_enable_caches(void)
88{
89 /* I-cache is already enabled in start.S: cpu_init_cp15 */
90
91 if (CONFIG_IS_ENABLED(SYS_DCACHE_OFF))
92 return;
93
Patrice Chotard23e20b22021-02-24 13:53:27 +010094 if (!(CONFIG_IS_ENABLED(SYS_ICACHE_OFF) && CONFIG_IS_ENABLED(SYS_DCACHE_OFF))) {
95 gd->arch.tlb_size = PGTABLE_SIZE;
96 gd->arch.tlb_addr = (unsigned long)&early_tlb;
97 }
Patrick Delaunay7e8471c2020-04-30 16:30:20 +020098
Patrick Delaunayaad84142021-02-05 13:53:33 +010099 /* enable MMU (default configuration) */
Patrick Delaunay7e8471c2020-04-30 16:30:20 +0200100 dcache_enable();
Patrick Delaunay7e8471c2020-04-30 16:30:20 +0200101}
102
103/*
Patrick Delaunay08772f62018-03-20 10:54:53 +0100104 * Early system init
105 */
Patrick Delaunay2514c2d2018-03-12 10:46:10 +0100106int arch_cpu_init(void)
107{
Patrick Delaunay7e8471c2020-04-30 16:30:20 +0200108 early_enable_caches();
109
Patrick Delaunay2514c2d2018-03-12 10:46:10 +0100110 /* early armv7 timer init: needed for polling */
111 timer_init();
112
Patrick Delaunay6df271a2022-05-20 18:24:42 +0200113 return 0;
114}
115
116/* weak function for SOC specific initialization */
117__weak void stm32mp_cpu_init(void)
118{
119}
120
121int mach_cpu_init(void)
122{
123 u32 boot_mode;
124
125 stm32mp_cpu_init();
Patrick Delaunay320d2662018-05-17 14:50:46 +0200126
Patrick Delaunay320d2662018-05-17 14:50:46 +0200127 boot_mode = get_bootmode();
128
Patrick Delaunay5a05af82021-02-25 13:37:01 +0100129 if (IS_ENABLED(CONFIG_CMD_STM32PROG_SERIAL) &&
130 (boot_mode & TAMP_BOOT_DEVICE_MASK) == BOOT_SERIAL_UART)
Patrick Delaunay320d2662018-05-17 14:50:46 +0200131 gd->flags |= GD_FLG_SILENT | GD_FLG_DISABLE_CONSOLE;
Patrick Delaunayc8b2eef2021-10-11 09:52:51 +0200132 else if (IS_ENABLED(CONFIG_DEBUG_UART) && IS_ENABLED(CONFIG_SPL_BUILD))
Patrick Delaunay320d2662018-05-17 14:50:46 +0200133 debug_uart_init();
Patrick Delaunay2514c2d2018-03-12 10:46:10 +0100134
135 return 0;
136}
137
Patrick Delaunaycda3dcb2018-03-19 19:09:20 +0100138void enable_caches(void)
139{
Patrick Delaunayade4e042021-05-07 14:50:35 +0200140 /* parse device tree when data cache is still activated */
141 lmb_init_and_reserve(&lmb, gd->bd, (void *)gd->fdt_blob);
142
Patrick Delaunay7e8471c2020-04-30 16:30:20 +0200143 /* I-cache is already enabled in start.S: icache_enable() not needed */
144
145 /* deactivate the data cache, early enabled in arch_cpu_init() */
146 dcache_disable();
147 /*
148 * update MMU after relocation and enable the data cache
149 * warning: the TLB location udpated in board_f.c::reserve_mmu
150 */
Patrick Delaunaycda3dcb2018-03-19 19:09:20 +0100151 dcache_enable();
152}
153
Patrick Delaunayc8b2eef2021-10-11 09:52:51 +0200154/* used when CONFIG_DISPLAY_CPUINFO is activated */
Patrick Delaunayac5e4d82020-02-12 19:37:43 +0100155int print_cpuinfo(void)
156{
157 char name[SOC_NAME_SIZE];
158
159 get_soc_name(name);
160 printf("CPU: %s\n", name);
Patrick Delaunay2514c2d2018-03-12 10:46:10 +0100161
162 return 0;
163}
Patrick Delaunay2514c2d2018-03-12 10:46:10 +0100164
Patrick Delaunay08772f62018-03-20 10:54:53 +0100165static void setup_boot_mode(void)
166{
Patrick Delaunay7f63c1e2019-02-27 17:01:12 +0100167 const u32 serial_addr[] = {
168 STM32_USART1_BASE,
169 STM32_USART2_BASE,
170 STM32_USART3_BASE,
171 STM32_UART4_BASE,
172 STM32_UART5_BASE,
173 STM32_USART6_BASE,
174 STM32_UART7_BASE,
175 STM32_UART8_BASE
176 };
Patrick Delaunay3c1057c2021-07-06 17:19:45 +0200177 const u32 sdmmc_addr[] = {
178 STM32_SDMMC1_BASE,
179 STM32_SDMMC2_BASE,
180 STM32_SDMMC3_BASE
181 };
Patrick Delaunay08772f62018-03-20 10:54:53 +0100182 char cmd[60];
183 u32 boot_ctx = readl(TAMP_BOOT_CONTEXT);
184 u32 boot_mode =
185 (boot_ctx & TAMP_BOOT_MODE_MASK) >> TAMP_BOOT_MODE_SHIFT;
Patrick Delaunaye609e132019-06-21 15:26:39 +0200186 unsigned int instance = (boot_mode & TAMP_BOOT_INSTANCE_MASK) - 1;
Patrick Delaunay9a2ba282019-02-27 17:01:20 +0100187 u32 forced_mode = (boot_ctx & TAMP_BOOT_FORCED_MASK);
Patrick Delaunay7f63c1e2019-02-27 17:01:12 +0100188 struct udevice *dev;
Patrick Delaunay08772f62018-03-20 10:54:53 +0100189
Patrick Delaunayeb653ac2020-11-06 19:01:29 +0100190 log_debug("%s: boot_ctx=0x%x => boot_mode=%x, instance=%d forced=%x\n",
191 __func__, boot_ctx, boot_mode, instance, forced_mode);
Patrick Delaunay08772f62018-03-20 10:54:53 +0100192 switch (boot_mode & TAMP_BOOT_DEVICE_MASK) {
193 case BOOT_SERIAL_UART:
Rasmus Villemoesdaf07212023-03-24 08:55:19 +0100194 if (instance >= ARRAY_SIZE(serial_addr))
Patrick Delaunay7f63c1e2019-02-27 17:01:12 +0100195 break;
Patrick Delaunayf49eb162021-02-25 13:37:03 +0100196 /* serial : search associated node in devicetree */
Patrick Delaunay7f63c1e2019-02-27 17:01:12 +0100197 sprintf(cmd, "serial@%x", serial_addr[instance]);
Patrick Delaunayf49eb162021-02-25 13:37:03 +0100198 if (uclass_get_device_by_name(UCLASS_SERIAL, cmd, &dev)) {
Patrick Delaunayb9d5e3a2021-02-25 13:37:02 +0100199 /* restore console on error */
200 if (IS_ENABLED(CONFIG_CMD_STM32PROG_SERIAL))
201 gd->flags &= ~(GD_FLG_SILENT |
202 GD_FLG_DISABLE_CONSOLE);
Patrick Delaunaycbea7b32021-04-06 09:27:39 +0200203 log_err("uart%d = %s not found in device tree!\n",
204 instance + 1, cmd);
Patrick Delaunay7f63c1e2019-02-27 17:01:12 +0100205 break;
Patrick Delaunayb9d5e3a2021-02-25 13:37:02 +0100206 }
Patrick Delaunayf49eb162021-02-25 13:37:03 +0100207 sprintf(cmd, "%d", dev_seq(dev));
Patrick Delaunay7f63c1e2019-02-27 17:01:12 +0100208 env_set("boot_device", "serial");
Patrick Delaunay08772f62018-03-20 10:54:53 +0100209 env_set("boot_instance", cmd);
Patrick Delaunay7f63c1e2019-02-27 17:01:12 +0100210
211 /* restore console on uart when not used */
Patrick Delaunay5a05af82021-02-25 13:37:01 +0100212 if (IS_ENABLED(CONFIG_CMD_STM32PROG_SERIAL) && gd->cur_serial_dev != dev) {
Patrick Delaunay7f63c1e2019-02-27 17:01:12 +0100213 gd->flags &= ~(GD_FLG_SILENT |
214 GD_FLG_DISABLE_CONSOLE);
Patrick Delaunaycbea7b32021-04-06 09:27:39 +0200215 log_info("serial boot with console enabled!\n");
Patrick Delaunay7f63c1e2019-02-27 17:01:12 +0100216 }
Patrick Delaunay08772f62018-03-20 10:54:53 +0100217 break;
218 case BOOT_SERIAL_USB:
219 env_set("boot_device", "usb");
220 env_set("boot_instance", "0");
221 break;
222 case BOOT_FLASH_SD:
223 case BOOT_FLASH_EMMC:
Rasmus Villemoesdaf07212023-03-24 08:55:19 +0100224 if (instance >= ARRAY_SIZE(sdmmc_addr))
Patrick Delaunay3c1057c2021-07-06 17:19:45 +0200225 break;
226 /* search associated sdmmc node in devicetree */
227 sprintf(cmd, "mmc@%x", sdmmc_addr[instance]);
228 if (uclass_get_device_by_name(UCLASS_MMC, cmd, &dev)) {
229 printf("mmc%d = %s not found in device tree!\n",
230 instance, cmd);
231 break;
232 }
233 sprintf(cmd, "%d", dev_seq(dev));
Patrick Delaunay08772f62018-03-20 10:54:53 +0100234 env_set("boot_device", "mmc");
235 env_set("boot_instance", cmd);
236 break;
237 case BOOT_FLASH_NAND:
238 env_set("boot_device", "nand");
239 env_set("boot_instance", "0");
240 break;
Patrick Delaunayb664a742020-03-18 09:22:52 +0100241 case BOOT_FLASH_SPINAND:
242 env_set("boot_device", "spi-nand");
243 env_set("boot_instance", "0");
244 break;
Patrick Delaunay08772f62018-03-20 10:54:53 +0100245 case BOOT_FLASH_NOR:
246 env_set("boot_device", "nor");
247 env_set("boot_instance", "0");
248 break;
249 default:
Patrick Delaunay8b71b202021-07-08 10:53:56 +0200250 env_set("boot_device", "invalid");
251 env_set("boot_instance", "");
252 log_err("unexpected boot mode = %x\n", boot_mode);
Patrick Delaunay08772f62018-03-20 10:54:53 +0100253 break;
254 }
Patrick Delaunay9a2ba282019-02-27 17:01:20 +0100255
256 switch (forced_mode) {
257 case BOOT_FASTBOOT:
Patrick Delaunaycbea7b32021-04-06 09:27:39 +0200258 log_info("Enter fastboot!\n");
Patrick Delaunay9a2ba282019-02-27 17:01:20 +0100259 env_set("preboot", "env set preboot; fastboot 0");
260 break;
261 case BOOT_STM32PROG:
262 env_set("boot_device", "usb");
263 env_set("boot_instance", "0");
264 break;
265 case BOOT_UMS_MMC0:
266 case BOOT_UMS_MMC1:
267 case BOOT_UMS_MMC2:
Patrick Delaunaycbea7b32021-04-06 09:27:39 +0200268 log_info("Enter UMS!\n");
Patrick Delaunay9a2ba282019-02-27 17:01:20 +0100269 instance = forced_mode - BOOT_UMS_MMC0;
270 sprintf(cmd, "env set preboot; ums 0 mmc %d", instance);
271 env_set("preboot", cmd);
272 break;
273 case BOOT_RECOVERY:
274 env_set("preboot", "env set preboot; run altbootcmd");
275 break;
276 case BOOT_NORMAL:
277 break;
278 default:
Patrick Delaunayeb653ac2020-11-06 19:01:29 +0100279 log_debug("unexpected forced boot mode = %x\n", forced_mode);
Patrick Delaunay9a2ba282019-02-27 17:01:20 +0100280 break;
281 }
282
283 /* clear TAMP for next reboot */
284 clrsetbits_le32(TAMP_BOOT_CONTEXT, TAMP_BOOT_FORCED_MASK, BOOT_NORMAL);
Patrick Delaunay08772f62018-03-20 10:54:53 +0100285}
286
Patrick Delaunay7f7deb02018-05-17 15:24:07 +0200287/*
288 * If there is no MAC address in the environment, then it will be initialized
289 * (silently) from the value in the OTP.
290 */
Marek Vasute71b9a62019-12-18 16:52:19 +0100291__weak int setup_mac_address(void)
Patrick Delaunay7f7deb02018-05-17 15:24:07 +0200292{
Patrick Delaunay7f7deb02018-05-17 15:24:07 +0200293 int ret;
294 int i;
Patrick Delaunay46f9eb52022-05-20 18:24:47 +0200295 u32 otp[3];
Patrick Delaunay7f7deb02018-05-17 15:24:07 +0200296 uchar enetaddr[6];
297 struct udevice *dev;
Patrick Delaunay46f9eb52022-05-20 18:24:47 +0200298 int nb_eth, nb_otp, index;
Patrick Delaunay7f7deb02018-05-17 15:24:07 +0200299
Patrick Delaunayc8b2eef2021-10-11 09:52:51 +0200300 if (!IS_ENABLED(CONFIG_NET))
301 return 0;
302
Patrick Delaunay46f9eb52022-05-20 18:24:47 +0200303 nb_eth = get_eth_nb();
304
305 /* 6 bytes for each MAC addr and 4 bytes for each OTP */
306 nb_otp = DIV_ROUND_UP(6 * nb_eth, 4);
Patrick Delaunay7f7deb02018-05-17 15:24:07 +0200307
308 ret = uclass_get_device_by_driver(UCLASS_MISC,
Simon Glass65e25be2020-12-28 20:34:56 -0700309 DM_DRIVER_GET(stm32mp_bsec),
Patrick Delaunay7f7deb02018-05-17 15:24:07 +0200310 &dev);
311 if (ret)
312 return ret;
313
Patrick Delaunay46f9eb52022-05-20 18:24:47 +0200314 ret = misc_read(dev, STM32_BSEC_SHADOW(BSEC_OTP_MAC), otp, 4 * nb_otp);
Simon Glass8729b1a2018-11-06 15:21:39 -0700315 if (ret < 0)
Patrick Delaunay7f7deb02018-05-17 15:24:07 +0200316 return ret;
317
Patrick Delaunay46f9eb52022-05-20 18:24:47 +0200318 for (index = 0; index < nb_eth; index++) {
319 /* MAC already in environment */
320 if (eth_env_get_enetaddr_by_index("eth", index, enetaddr))
321 continue;
Patrick Delaunay7f7deb02018-05-17 15:24:07 +0200322
Patrick Delaunay46f9eb52022-05-20 18:24:47 +0200323 for (i = 0; i < 6; i++)
324 enetaddr[i] = ((uint8_t *)&otp)[i + 6 * index];
325
326 if (!is_valid_ethaddr(enetaddr)) {
327 log_err("invalid MAC address %d in OTP %pM\n",
328 index, enetaddr);
329 return -EINVAL;
330 }
331 log_debug("OTP MAC address %d = %pM\n", index, enetaddr);
332 ret = eth_env_set_enetaddr_by_index("eth", index, enetaddr);
333 if (ret) {
334 log_err("Failed to set mac address %pM from OTP: %d\n",
335 enetaddr, ret);
336 return ret;
337 }
Patrick Delaunay7f7deb02018-05-17 15:24:07 +0200338 }
Patrick Delaunay7f7deb02018-05-17 15:24:07 +0200339
340 return 0;
341}
342
343static int setup_serial_number(void)
344{
345 char serial_string[25];
346 u32 otp[3] = {0, 0, 0 };
347 struct udevice *dev;
348 int ret;
349
350 if (env_get("serial#"))
351 return 0;
352
353 ret = uclass_get_device_by_driver(UCLASS_MISC,
Simon Glass65e25be2020-12-28 20:34:56 -0700354 DM_DRIVER_GET(stm32mp_bsec),
Patrick Delaunay7f7deb02018-05-17 15:24:07 +0200355 &dev);
356 if (ret)
357 return ret;
358
Patrick Delaunay17f1f9b2019-02-27 17:01:29 +0100359 ret = misc_read(dev, STM32_BSEC_SHADOW(BSEC_OTP_SERIAL),
Patrick Delaunay7f7deb02018-05-17 15:24:07 +0200360 otp, sizeof(otp));
Simon Glass8729b1a2018-11-06 15:21:39 -0700361 if (ret < 0)
Patrick Delaunay7f7deb02018-05-17 15:24:07 +0200362 return ret;
363
Patrick Delaunay8983ba22019-02-27 17:01:25 +0100364 sprintf(serial_string, "%08X%08X%08X", otp[0], otp[1], otp[2]);
Patrick Delaunay7f7deb02018-05-17 15:24:07 +0200365 env_set("serial#", serial_string);
366
367 return 0;
368}
369
Patrick Delaunay6df271a2022-05-20 18:24:42 +0200370__weak void stm32mp_misc_init(void)
Marek Vasut2c2d7d62021-03-31 14:15:09 +0200371{
Marek Vasut2c2d7d62021-03-31 14:15:09 +0200372}
373
Patrick Delaunay08772f62018-03-20 10:54:53 +0100374int arch_misc_init(void)
375{
376 setup_boot_mode();
Patrick Delaunay7f7deb02018-05-17 15:24:07 +0200377 setup_mac_address();
378 setup_serial_number();
Patrick Delaunay6df271a2022-05-20 18:24:42 +0200379 stm32mp_misc_init();
Patrick Delaunay08772f62018-03-20 10:54:53 +0100380
381 return 0;
382}
Marek Vasutdbeaca72023-01-12 18:58:40 +0100383
384/*
385 * Without forcing the ".data" section, this would get saved in ".bss". BSS
386 * will be cleared soon after, so it's not suitable.
387 */
388static uintptr_t rom_api_table __section(".data");
389static uintptr_t nt_fw_dtb __section(".data");
390
391/*
392 * The ROM gives us the API location in r0 when starting. This is only available
393 * during SPL, as there isn't (yet) a mechanism to pass this on to u-boot. Save
394 * the FDT address provided by TF-A in r2 at boot time. This function is called
395 * from start.S
396 */
397void save_boot_params(unsigned long r0, unsigned long r1, unsigned long r2,
398 unsigned long r3)
399{
400 if (IS_ENABLED(CONFIG_STM32_ECDSA_VERIFY))
401 rom_api_table = r0;
402
403 if (IS_ENABLED(CONFIG_TFABOOT))
404 nt_fw_dtb = r2;
405
406 save_boot_params_ret();
407}
408
409uintptr_t get_stm32mp_rom_api_table(void)
410{
411 return rom_api_table;
412}
413
414uintptr_t get_stm32mp_bl2_dtb(void)
415{
416 return nt_fw_dtb;
417}
Marek Vasut6eea5412023-01-12 18:58:41 +0100418
419#ifdef CONFIG_SPL_BUILD
420void __noreturn jump_to_image_no_args(struct spl_image_info *spl_image)
421{
422 typedef void __noreturn (*image_entry_stm32_t)(u32 romapi);
423 uintptr_t romapi = get_stm32mp_rom_api_table();
424
425 image_entry_stm32_t image_entry =
426 (image_entry_stm32_t)spl_image->entry_point;
427
428 printf("image entry point: 0x%lx\n", spl_image->entry_point);
429 image_entry(romapi);
430}
431#endif