Browse Source

arm: xea: Call spl_early_init() before DM serial console is enabled in SPL

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>
Lukasz Majewski 1 year ago
parent
commit
8134853b93
1 changed files with 1 additions and 0 deletions
  1. 1 0
      board/liebherr/xea/xea.c

+ 1 - 0
board/liebherr/xea/xea.c

@@ -62,6 +62,7 @@ static void init_clocks(void)
 void board_init_f(ulong arg)
 {
 	init_clocks();
+	spl_early_init();
 	preloader_console_init();
 }