| * SPDX-License-Identifier: GPL-2.0+ |
| #include <asm/global_data.h> |
| #include <dm/uclass-internal.h> |
| #include <dm/device-internal.h> |
| #include <asm/arch/sys_proto.h> |
| void spl_board_init(void) |
| uclass_find_first_device(UCLASS_MISC, &dev); |
| for (; dev; uclass_find_next_device(&dev)) { |
| preloader_console_init(); |
| void spl_board_prepare_for_boot(void) |
| imx8_power_off_pd_devices(NULL, 0); |
| #ifdef CONFIG_SPL_LOAD_FIT |
| int board_fit_config_name_match(const char *name) |
| /* Just empty function now - can't decide what to choose */ |
| debug("%s: %s\n", __func__, name); |
| void board_init_f(ulong dummy) |
| memset((void *)gd, 0, sizeof(gd_t)); |
| memset(__bss_start, 0, __bss_end - __bss_start); |