armv8: fsl-layerscape: spl: call spl_early_init()

DM_SERIAL needs both the device tree as well as an early heap. Thus, we
have to call spl_early_init() to initialize the memory allocator and the
setup the device tree.

Signed-off-by: Michael Walle <michael@walle.cc>
Reviewed-by: Priyanka Jain <priyanka.jain@nxp.com>
This commit is contained in:
Michael Walle 2021-03-26 19:40:56 +01:00 committed by Priyanka Jain
parent 019438e4fd
commit 918c72f3f2

View file

@ -8,6 +8,7 @@
#include <cpu_func.h> #include <cpu_func.h>
#include <debug_uart.h> #include <debug_uart.h>
#include <env.h> #include <env.h>
#include <hang.h>
#include <image.h> #include <image.h>
#include <init.h> #include <init.h>
#include <log.h> #include <log.h>
@ -68,12 +69,19 @@ void spl_board_init(void)
void board_init_f(ulong dummy) void board_init_f(ulong dummy)
{ {
int ret;
icache_enable(); icache_enable();
/* Clear global data */ /* Clear global data */
memset((void *)gd, 0, sizeof(gd_t)); memset((void *)gd, 0, sizeof(gd_t));
if (IS_ENABLED(CONFIG_DEBUG_UART)) if (IS_ENABLED(CONFIG_DEBUG_UART))
debug_uart_init(); debug_uart_init();
board_early_init_f(); board_early_init_f();
ret = spl_early_init();
if (ret) {
debug("spl_early_init() failed: %d\n", ret);
hang();
}
timer_init(); timer_init();
#ifdef CONFIG_ARCH_LS2080A #ifdef CONFIG_ARCH_LS2080A
env_init(); env_init();