iMX8QM mek SPL: Add FIT image loading support
Add support for FIT image loading of ATF and uboot proper for iMX8QM mek. Signed-off-by: Abel Vesa <abel.vesa@nxp.com>
This commit is contained in:
parent
80d961517f
commit
c4f65b65c1
|
|
@ -203,6 +203,16 @@ void spl_board_prepare_for_boot(void)
|
|||
}
|
||||
|
||||
|
||||
#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);
|
||||
|
||||
return 0;
|
||||
}
|
||||
#endif
|
||||
|
||||
void board_init_f(ulong dummy)
|
||||
{
|
||||
/* Clear global data */
|
||||
|
|
|
|||
|
|
@ -19,6 +19,8 @@ CONFIG_CMD_I2C=y
|
|||
CONFIG_SPL=y
|
||||
CONFIG_SPL_GPIO_SUPPORT=y
|
||||
CONFIG_SPL_MMC_SUPPORT=y
|
||||
CONFIG_FIT=y
|
||||
CONFIG_SPL_LOAD_FIT=y
|
||||
CONFIG_SPL_BOARD_INIT=y
|
||||
CONFIG_SPL_SYS_MALLOC_SIMPLE=y
|
||||
CONFIG_SPL_TINY_MEMSET=y
|
||||
|
|
|
|||
|
|
@ -19,6 +19,8 @@ CONFIG_CMD_I2C=y
|
|||
CONFIG_SPL=y
|
||||
CONFIG_SPL_GPIO_SUPPORT=y
|
||||
CONFIG_SPL_MMC_SUPPORT=y
|
||||
CONFIG_FIT=y
|
||||
CONFIG_SPL_LOAD_FIT=y
|
||||
CONFIG_SPL_BOARD_INIT=y
|
||||
CONFIG_SPL_SYS_MALLOC_SIMPLE=y
|
||||
CONFIG_SPL_TINY_MEMSET=y
|
||||
|
|
|
|||
Loading…
Reference in New Issue