arm: xea: Call spl_early_init() before DM serial console is enabled in SPL
authorLukasz Majewski <lukma@denx.de>
Fri, 19 May 2023 10:43:55 +0000 (12:43 +0200)
committerStefano Babic <sbabic@denx.de>
Tue, 11 Jul 2023 12:40:04 +0000 (14:40 +0200)
The in-spl enabled DM serial console requires the board setup to be
able to parse SPL_OF_PLATDATA based serial driver (pl01x) for the
imx28 based XEA board.

Signed-off-by: Lukasz Majewski <lukma@denx.de>
board/liebherr/xea/xea.c

index ed2b39f..e4d2eb6 100644 (file)
@@ -62,6 +62,7 @@ static void init_clocks(void)
 void board_init_f(ulong arg)
 {
        init_clocks();
+       spl_early_init();
        preloader_console_init();
 }