blob: dc4112d5e6cf2c6680abbcedf8aad8ac10d22fc0 [file] [log] [blame]
Tom Rini8b0c8a12018-05-06 18:27:01 -04001// SPDX-License-Identifier: GPL-2.0+ OR BSD-3-Clause
Patrick Delaunay85b53972018-03-12 10:46:10 +01002/*
3 * Copyright (C) 2018, STMicroelectronics - All Rights Reserved
Patrick Delaunay85b53972018-03-12 10:46:10 +01004 */
Patrick Delaunayba779402020-11-06 19:01:29 +01005
6#define LOG_CATEGORY LOGC_ARCH
7
Patrick Delaunay85b53972018-03-12 10:46:10 +01008#include <common.h>
9#include <clk.h>
Simon Glass1d91ba72019-11-14 12:57:37 -070010#include <cpu_func.h>
Patrick Delaunay82168e82018-05-17 14:50:46 +020011#include <debug_uart.h>
Simon Glass5e6201b2019-08-01 09:46:51 -060012#include <env.h>
Simon Glass97589732020-05-10 11:40:02 -060013#include <init.h>
Simon Glass0f2af882020-05-10 11:40:05 -060014#include <log.h>
Patrick Delaunayc9468742021-05-07 14:50:35 +020015#include <lmb.h>
Patrick Delaunayf3674a42018-05-17 15:24:07 +020016#include <misc.h>
Simon Glass274e0b02020-05-10 11:39:56 -060017#include <net.h>
Patrick Delaunay85b53972018-03-12 10:46:10 +010018#include <asm/io.h>
19#include <asm/arch/stm32.h>
Patrick Delaunay01e3afe2018-03-19 19:09:21 +010020#include <asm/arch/sys_proto.h>
Simon Glass3ba929a2020-10-30 21:38:53 -060021#include <asm/global_data.h>
Patrick Delaunayf3674a42018-05-17 15:24:07 +020022#include <dm/device.h>
Patrick Delaunayc5d15652018-03-20 10:54:53 +010023#include <dm/uclass.h>
Simon Glass4dcacfc2020-05-10 11:40:13 -060024#include <linux/bitops.h>
Marek Vasut7cf2c332023-01-12 18:58:41 +010025#include <spl.h>
Patrick Delaunay85b53972018-03-12 10:46:10 +010026
Patrick Delaunay8e6985b2020-04-30 16:30:20 +020027/*
28 * early TLB into the .data section so that it not get cleared
29 * with 16kB allignment (see TTBR0_BASE_ADDR_MASK)
30 */
31u8 early_tlb[PGTABLE_SIZE] __section(".data") __aligned(0x4000);
32
Patrick Delaunayc9468742021-05-07 14:50:35 +020033struct lmb lmb;
34
Patrick Delaunay18660a62019-02-27 17:01:12 +010035u32 get_bootmode(void)
36{
37 /* read bootmode from TAMP backup register */
38 return (readl(TAMP_BOOT_CONTEXT) & TAMP_BOOT_MODE_MASK) >>
39 TAMP_BOOT_MODE_SHIFT;
Patrick Delaunayc5d15652018-03-20 10:54:53 +010040}
41
42/*
Patrick Delaunay4ad5a122021-02-05 13:53:33 +010043 * weak function overidde: set the DDR/SYSRAM executable before to enable the
44 * MMU and configure DACR, for early early_enable_caches (SPL or pre-reloc)
45 */
46void dram_bank_mmu_setup(int bank)
47{
48 struct bd_info *bd = gd->bd;
49 int i;
50 phys_addr_t start;
51 phys_size_t size;
Patrick Delaunayc9468742021-05-07 14:50:35 +020052 bool use_lmb = false;
53 enum dcache_option option;
Patrick Delaunay4ad5a122021-02-05 13:53:33 +010054
55 if (IS_ENABLED(CONFIG_SPL_BUILD)) {
Patrick Delaunay123687c2022-05-20 18:24:46 +020056/* STM32_SYSRAM_BASE exist only when SPL is supported */
57#ifdef CONFIG_SPL
Patrick Delaunay4ad5a122021-02-05 13:53:33 +010058 start = ALIGN_DOWN(STM32_SYSRAM_BASE, MMU_SECTION_SIZE);
59 size = ALIGN(STM32_SYSRAM_SIZE, MMU_SECTION_SIZE);
Patrick Delaunay123687c2022-05-20 18:24:46 +020060#endif
Patrick Delaunay4ad5a122021-02-05 13:53:33 +010061 } else if (gd->flags & GD_FLG_RELOC) {
62 /* bd->bi_dram is available only after relocation */
63 start = bd->bi_dram[bank].start;
64 size = bd->bi_dram[bank].size;
Patrick Delaunayc9468742021-05-07 14:50:35 +020065 use_lmb = true;
Patrick Delaunay4ad5a122021-02-05 13:53:33 +010066 } else {
67 /* mark cacheable and executable the beggining of the DDR */
68 start = STM32_DDR_BASE;
69 size = CONFIG_DDR_CACHEABLE_SIZE;
70 }
71
72 for (i = start >> MMU_SECTION_SHIFT;
73 i < (start >> MMU_SECTION_SHIFT) + (size >> MMU_SECTION_SHIFT);
Patrick Delaunayc9468742021-05-07 14:50:35 +020074 i++) {
75 option = DCACHE_DEFAULT_OPTION;
76 if (use_lmb && lmb_is_reserved_flags(&lmb, i << MMU_SECTION_SHIFT, LMB_NOMAP))
77 option = 0; /* INVALID ENTRY in TLB */
78 set_section_dcache(i, option);
79 }
Patrick Delaunay4ad5a122021-02-05 13:53:33 +010080}
81/*
Patrick Delaunay8e6985b2020-04-30 16:30:20 +020082 * initialize the MMU and activate cache in SPL or in U-Boot pre-reloc stage
83 * MMU/TLB is updated in enable_caches() for U-Boot after relocation
84 * or is deactivated in U-Boot entry function start.S::cpu_init_cp15
85 */
86static void early_enable_caches(void)
87{
88 /* I-cache is already enabled in start.S: cpu_init_cp15 */
89
90 if (CONFIG_IS_ENABLED(SYS_DCACHE_OFF))
91 return;
92
Patrice Chotard18a87162021-02-24 13:53:27 +010093 if (!(CONFIG_IS_ENABLED(SYS_ICACHE_OFF) && CONFIG_IS_ENABLED(SYS_DCACHE_OFF))) {
94 gd->arch.tlb_size = PGTABLE_SIZE;
95 gd->arch.tlb_addr = (unsigned long)&early_tlb;
96 }
Patrick Delaunay8e6985b2020-04-30 16:30:20 +020097
Patrick Delaunay4ad5a122021-02-05 13:53:33 +010098 /* enable MMU (default configuration) */
Patrick Delaunay8e6985b2020-04-30 16:30:20 +020099 dcache_enable();
Patrick Delaunay8e6985b2020-04-30 16:30:20 +0200100}
101
102/*
Patrick Delaunayc5d15652018-03-20 10:54:53 +0100103 * Early system init
104 */
Patrick Delaunay85b53972018-03-12 10:46:10 +0100105int arch_cpu_init(void)
106{
Patrick Delaunay8e6985b2020-04-30 16:30:20 +0200107 early_enable_caches();
108
Patrick Delaunay85b53972018-03-12 10:46:10 +0100109 /* early armv7 timer init: needed for polling */
110 timer_init();
111
Patrick Delaunaye4bdd542022-05-20 18:24:42 +0200112 return 0;
113}
114
115/* weak function for SOC specific initialization */
116__weak void stm32mp_cpu_init(void)
117{
118}
119
120int mach_cpu_init(void)
121{
122 u32 boot_mode;
123
124 stm32mp_cpu_init();
Patrick Delaunay82168e82018-05-17 14:50:46 +0200125
Patrick Delaunay82168e82018-05-17 14:50:46 +0200126 boot_mode = get_bootmode();
127
Patrick Delaunay29b2e2e2021-02-25 13:37:01 +0100128 if (IS_ENABLED(CONFIG_CMD_STM32PROG_SERIAL) &&
129 (boot_mode & TAMP_BOOT_DEVICE_MASK) == BOOT_SERIAL_UART)
Patrick Delaunay82168e82018-05-17 14:50:46 +0200130 gd->flags |= GD_FLG_SILENT | GD_FLG_DISABLE_CONSOLE;
Patrick Delaunayd8299de2021-10-11 09:52:51 +0200131 else if (IS_ENABLED(CONFIG_DEBUG_UART) && IS_ENABLED(CONFIG_SPL_BUILD))
Patrick Delaunay82168e82018-05-17 14:50:46 +0200132 debug_uart_init();
Patrick Delaunay85b53972018-03-12 10:46:10 +0100133
134 return 0;
135}
136
Patrick Delaunay58e95532018-03-19 19:09:20 +0100137void enable_caches(void)
138{
Patrick Delaunayc9468742021-05-07 14:50:35 +0200139 /* parse device tree when data cache is still activated */
140 lmb_init_and_reserve(&lmb, gd->bd, (void *)gd->fdt_blob);
141
Patrick Delaunay8e6985b2020-04-30 16:30:20 +0200142 /* I-cache is already enabled in start.S: icache_enable() not needed */
143
144 /* deactivate the data cache, early enabled in arch_cpu_init() */
145 dcache_disable();
146 /*
147 * update MMU after relocation and enable the data cache
148 * warning: the TLB location udpated in board_f.c::reserve_mmu
149 */
Patrick Delaunay58e95532018-03-19 19:09:20 +0100150 dcache_enable();
151}
152
Patrick Delaunayd8299de2021-10-11 09:52:51 +0200153/* used when CONFIG_DISPLAY_CPUINFO is activated */
Patrick Delaunay3e738f22020-02-12 19:37:43 +0100154int print_cpuinfo(void)
155{
156 char name[SOC_NAME_SIZE];
157
158 get_soc_name(name);
159 printf("CPU: %s\n", name);
Patrick Delaunay85b53972018-03-12 10:46:10 +0100160
161 return 0;
162}
Patrick Delaunay85b53972018-03-12 10:46:10 +0100163
Patrick Delaunayc5d15652018-03-20 10:54:53 +0100164static void setup_boot_mode(void)
165{
Patrick Delaunay18660a62019-02-27 17:01:12 +0100166 const u32 serial_addr[] = {
167 STM32_USART1_BASE,
168 STM32_USART2_BASE,
169 STM32_USART3_BASE,
170 STM32_UART4_BASE,
171 STM32_UART5_BASE,
172 STM32_USART6_BASE,
173 STM32_UART7_BASE,
174 STM32_UART8_BASE
175 };
Patrick Delaunay5c2f6d72021-07-06 17:19:45 +0200176 const u32 sdmmc_addr[] = {
177 STM32_SDMMC1_BASE,
178 STM32_SDMMC2_BASE,
179 STM32_SDMMC3_BASE
180 };
Patrick Delaunayc5d15652018-03-20 10:54:53 +0100181 char cmd[60];
182 u32 boot_ctx = readl(TAMP_BOOT_CONTEXT);
183 u32 boot_mode =
184 (boot_ctx & TAMP_BOOT_MODE_MASK) >> TAMP_BOOT_MODE_SHIFT;
Patrick Delaunay1b03eb02019-06-21 15:26:39 +0200185 unsigned int instance = (boot_mode & TAMP_BOOT_INSTANCE_MASK) - 1;
Patrick Delaunay008d3c32019-02-27 17:01:20 +0100186 u32 forced_mode = (boot_ctx & TAMP_BOOT_FORCED_MASK);
Patrick Delaunay18660a62019-02-27 17:01:12 +0100187 struct udevice *dev;
Patrick Delaunayc5d15652018-03-20 10:54:53 +0100188
Patrick Delaunayba779402020-11-06 19:01:29 +0100189 log_debug("%s: boot_ctx=0x%x => boot_mode=%x, instance=%d forced=%x\n",
190 __func__, boot_ctx, boot_mode, instance, forced_mode);
Patrick Delaunayc5d15652018-03-20 10:54:53 +0100191 switch (boot_mode & TAMP_BOOT_DEVICE_MASK) {
192 case BOOT_SERIAL_UART:
Patrick Delaunay18660a62019-02-27 17:01:12 +0100193 if (instance > ARRAY_SIZE(serial_addr))
194 break;
Patrick Delaunaye2592992021-02-25 13:37:03 +0100195 /* serial : search associated node in devicetree */
Patrick Delaunay18660a62019-02-27 17:01:12 +0100196 sprintf(cmd, "serial@%x", serial_addr[instance]);
Patrick Delaunaye2592992021-02-25 13:37:03 +0100197 if (uclass_get_device_by_name(UCLASS_SERIAL, cmd, &dev)) {
Patrick Delaunay7540d872021-02-25 13:37:02 +0100198 /* restore console on error */
199 if (IS_ENABLED(CONFIG_CMD_STM32PROG_SERIAL))
200 gd->flags &= ~(GD_FLG_SILENT |
201 GD_FLG_DISABLE_CONSOLE);
Patrick Delaunay643e4042021-04-06 09:27:39 +0200202 log_err("uart%d = %s not found in device tree!\n",
203 instance + 1, cmd);
Patrick Delaunay18660a62019-02-27 17:01:12 +0100204 break;
Patrick Delaunay7540d872021-02-25 13:37:02 +0100205 }
Patrick Delaunaye2592992021-02-25 13:37:03 +0100206 sprintf(cmd, "%d", dev_seq(dev));
Patrick Delaunay18660a62019-02-27 17:01:12 +0100207 env_set("boot_device", "serial");
Patrick Delaunayc5d15652018-03-20 10:54:53 +0100208 env_set("boot_instance", cmd);
Patrick Delaunay18660a62019-02-27 17:01:12 +0100209
210 /* restore console on uart when not used */
Patrick Delaunay29b2e2e2021-02-25 13:37:01 +0100211 if (IS_ENABLED(CONFIG_CMD_STM32PROG_SERIAL) && gd->cur_serial_dev != dev) {
Patrick Delaunay18660a62019-02-27 17:01:12 +0100212 gd->flags &= ~(GD_FLG_SILENT |
213 GD_FLG_DISABLE_CONSOLE);
Patrick Delaunay643e4042021-04-06 09:27:39 +0200214 log_info("serial boot with console enabled!\n");
Patrick Delaunay18660a62019-02-27 17:01:12 +0100215 }
Patrick Delaunayc5d15652018-03-20 10:54:53 +0100216 break;
217 case BOOT_SERIAL_USB:
218 env_set("boot_device", "usb");
219 env_set("boot_instance", "0");
220 break;
221 case BOOT_FLASH_SD:
222 case BOOT_FLASH_EMMC:
Patrick Delaunay5c2f6d72021-07-06 17:19:45 +0200223 if (instance > ARRAY_SIZE(sdmmc_addr))
224 break;
225 /* search associated sdmmc node in devicetree */
226 sprintf(cmd, "mmc@%x", sdmmc_addr[instance]);
227 if (uclass_get_device_by_name(UCLASS_MMC, cmd, &dev)) {
228 printf("mmc%d = %s not found in device tree!\n",
229 instance, cmd);
230 break;
231 }
232 sprintf(cmd, "%d", dev_seq(dev));
Patrick Delaunayc5d15652018-03-20 10:54:53 +0100233 env_set("boot_device", "mmc");
234 env_set("boot_instance", cmd);
235 break;
236 case BOOT_FLASH_NAND:
237 env_set("boot_device", "nand");
238 env_set("boot_instance", "0");
239 break;
Patrick Delaunayb5a7ca22020-03-18 09:22:52 +0100240 case BOOT_FLASH_SPINAND:
241 env_set("boot_device", "spi-nand");
242 env_set("boot_instance", "0");
243 break;
Patrick Delaunayc5d15652018-03-20 10:54:53 +0100244 case BOOT_FLASH_NOR:
245 env_set("boot_device", "nor");
246 env_set("boot_instance", "0");
247 break;
248 default:
Patrick Delaunay02e91972021-07-08 10:53:56 +0200249 env_set("boot_device", "invalid");
250 env_set("boot_instance", "");
251 log_err("unexpected boot mode = %x\n", boot_mode);
Patrick Delaunayc5d15652018-03-20 10:54:53 +0100252 break;
253 }
Patrick Delaunay008d3c32019-02-27 17:01:20 +0100254
255 switch (forced_mode) {
256 case BOOT_FASTBOOT:
Patrick Delaunay643e4042021-04-06 09:27:39 +0200257 log_info("Enter fastboot!\n");
Patrick Delaunay008d3c32019-02-27 17:01:20 +0100258 env_set("preboot", "env set preboot; fastboot 0");
259 break;
260 case BOOT_STM32PROG:
261 env_set("boot_device", "usb");
262 env_set("boot_instance", "0");
263 break;
264 case BOOT_UMS_MMC0:
265 case BOOT_UMS_MMC1:
266 case BOOT_UMS_MMC2:
Patrick Delaunay643e4042021-04-06 09:27:39 +0200267 log_info("Enter UMS!\n");
Patrick Delaunay008d3c32019-02-27 17:01:20 +0100268 instance = forced_mode - BOOT_UMS_MMC0;
269 sprintf(cmd, "env set preboot; ums 0 mmc %d", instance);
270 env_set("preboot", cmd);
271 break;
272 case BOOT_RECOVERY:
273 env_set("preboot", "env set preboot; run altbootcmd");
274 break;
275 case BOOT_NORMAL:
276 break;
277 default:
Patrick Delaunayba779402020-11-06 19:01:29 +0100278 log_debug("unexpected forced boot mode = %x\n", forced_mode);
Patrick Delaunay008d3c32019-02-27 17:01:20 +0100279 break;
280 }
281
282 /* clear TAMP for next reboot */
283 clrsetbits_le32(TAMP_BOOT_CONTEXT, TAMP_BOOT_FORCED_MASK, BOOT_NORMAL);
Patrick Delaunayf3674a42018-05-17 15:24:07 +0200284}
285
286/*
287 * If there is no MAC address in the environment, then it will be initialized
288 * (silently) from the value in the OTP.
289 */
Marek Vasut187cae22019-12-18 16:52:19 +0100290__weak int setup_mac_address(void)
Patrick Delaunayf3674a42018-05-17 15:24:07 +0200291{
Patrick Delaunayf3674a42018-05-17 15:24:07 +0200292 int ret;
293 int i;
Patrick Delaunay6425f582022-05-20 18:24:47 +0200294 u32 otp[3];
Patrick Delaunayf3674a42018-05-17 15:24:07 +0200295 uchar enetaddr[6];
296 struct udevice *dev;
Patrick Delaunay6425f582022-05-20 18:24:47 +0200297 int nb_eth, nb_otp, index;
Patrick Delaunayf3674a42018-05-17 15:24:07 +0200298
Patrick Delaunayd8299de2021-10-11 09:52:51 +0200299 if (!IS_ENABLED(CONFIG_NET))
300 return 0;
301
Patrick Delaunay6425f582022-05-20 18:24:47 +0200302 nb_eth = get_eth_nb();
303
304 /* 6 bytes for each MAC addr and 4 bytes for each OTP */
305 nb_otp = DIV_ROUND_UP(6 * nb_eth, 4);
Patrick Delaunayf3674a42018-05-17 15:24:07 +0200306
307 ret = uclass_get_device_by_driver(UCLASS_MISC,
Simon Glass65130cd2020-12-28 20:34:56 -0700308 DM_DRIVER_GET(stm32mp_bsec),
Patrick Delaunayf3674a42018-05-17 15:24:07 +0200309 &dev);
310 if (ret)
311 return ret;
312
Patrick Delaunay6425f582022-05-20 18:24:47 +0200313 ret = misc_read(dev, STM32_BSEC_SHADOW(BSEC_OTP_MAC), otp, 4 * nb_otp);
Simon Glass587dc402018-11-06 15:21:39 -0700314 if (ret < 0)
Patrick Delaunayf3674a42018-05-17 15:24:07 +0200315 return ret;
316
Patrick Delaunay6425f582022-05-20 18:24:47 +0200317 for (index = 0; index < nb_eth; index++) {
318 /* MAC already in environment */
319 if (eth_env_get_enetaddr_by_index("eth", index, enetaddr))
320 continue;
Patrick Delaunayf3674a42018-05-17 15:24:07 +0200321
Patrick Delaunay6425f582022-05-20 18:24:47 +0200322 for (i = 0; i < 6; i++)
323 enetaddr[i] = ((uint8_t *)&otp)[i + 6 * index];
324
325 if (!is_valid_ethaddr(enetaddr)) {
326 log_err("invalid MAC address %d in OTP %pM\n",
327 index, enetaddr);
328 return -EINVAL;
329 }
330 log_debug("OTP MAC address %d = %pM\n", index, enetaddr);
331 ret = eth_env_set_enetaddr_by_index("eth", index, enetaddr);
332 if (ret) {
333 log_err("Failed to set mac address %pM from OTP: %d\n",
334 enetaddr, ret);
335 return ret;
336 }
Patrick Delaunayf3674a42018-05-17 15:24:07 +0200337 }
Patrick Delaunayf3674a42018-05-17 15:24:07 +0200338
339 return 0;
340}
341
342static int setup_serial_number(void)
343{
344 char serial_string[25];
345 u32 otp[3] = {0, 0, 0 };
346 struct udevice *dev;
347 int ret;
348
349 if (env_get("serial#"))
350 return 0;
351
352 ret = uclass_get_device_by_driver(UCLASS_MISC,
Simon Glass65130cd2020-12-28 20:34:56 -0700353 DM_DRIVER_GET(stm32mp_bsec),
Patrick Delaunayf3674a42018-05-17 15:24:07 +0200354 &dev);
355 if (ret)
356 return ret;
357
Patrick Delaunay10263a52019-02-27 17:01:29 +0100358 ret = misc_read(dev, STM32_BSEC_SHADOW(BSEC_OTP_SERIAL),
Patrick Delaunayf3674a42018-05-17 15:24:07 +0200359 otp, sizeof(otp));
Simon Glass587dc402018-11-06 15:21:39 -0700360 if (ret < 0)
Patrick Delaunayf3674a42018-05-17 15:24:07 +0200361 return ret;
362
Patrick Delaunayaf5564a2019-02-27 17:01:25 +0100363 sprintf(serial_string, "%08X%08X%08X", otp[0], otp[1], otp[2]);
Patrick Delaunayf3674a42018-05-17 15:24:07 +0200364 env_set("serial#", serial_string);
365
366 return 0;
Patrick Delaunayc5d15652018-03-20 10:54:53 +0100367}
368
Patrick Delaunaye4bdd542022-05-20 18:24:42 +0200369__weak void stm32mp_misc_init(void)
Marek Vasut0eda28c2021-03-31 14:15:09 +0200370{
Marek Vasut0eda28c2021-03-31 14:15:09 +0200371}
372
Patrick Delaunayc5d15652018-03-20 10:54:53 +0100373int arch_misc_init(void)
374{
375 setup_boot_mode();
Patrick Delaunayf3674a42018-05-17 15:24:07 +0200376 setup_mac_address();
377 setup_serial_number();
Patrick Delaunaye4bdd542022-05-20 18:24:42 +0200378 stm32mp_misc_init();
Patrick Delaunayc5d15652018-03-20 10:54:53 +0100379
380 return 0;
381}
Marek Vasutefdedcb2023-01-12 18:58:40 +0100382
383/*
384 * Without forcing the ".data" section, this would get saved in ".bss". BSS
385 * will be cleared soon after, so it's not suitable.
386 */
387static uintptr_t rom_api_table __section(".data");
388static uintptr_t nt_fw_dtb __section(".data");
389
390/*
391 * The ROM gives us the API location in r0 when starting. This is only available
392 * during SPL, as there isn't (yet) a mechanism to pass this on to u-boot. Save
393 * the FDT address provided by TF-A in r2 at boot time. This function is called
394 * from start.S
395 */
396void save_boot_params(unsigned long r0, unsigned long r1, unsigned long r2,
397 unsigned long r3)
398{
399 if (IS_ENABLED(CONFIG_STM32_ECDSA_VERIFY))
400 rom_api_table = r0;
401
402 if (IS_ENABLED(CONFIG_TFABOOT))
403 nt_fw_dtb = r2;
404
405 save_boot_params_ret();
406}
407
408uintptr_t get_stm32mp_rom_api_table(void)
409{
410 return rom_api_table;
411}
412
413uintptr_t get_stm32mp_bl2_dtb(void)
414{
415 return nt_fw_dtb;
416}
Marek Vasut7cf2c332023-01-12 18:58:41 +0100417
418#ifdef CONFIG_SPL_BUILD
419void __noreturn jump_to_image_no_args(struct spl_image_info *spl_image)
420{
421 typedef void __noreturn (*image_entry_stm32_t)(u32 romapi);
422 uintptr_t romapi = get_stm32mp_rom_api_table();
423
424 image_entry_stm32_t image_entry =
425 (image_entry_stm32_t)spl_image->entry_point;
426
427 printf("image entry point: 0x%lx\n", spl_image->entry_point);
428 image_entry(romapi);
429}
430#endif