diff mbox series

[v1,13/16] arm: xea: Call spl_early_init() before DM serial console is enabled in SPL

Message ID 20230519104359.2048821-14-lukma@denx.de
State Accepted
Commit 8134853b9329e751c206b5e713e340de4e789ca2
Delegated to: Stefano Babic
Headers show
Series arm: xea: Update i.MX28 XEA board to use DM_SERIAL | expand

Commit Message

Lukasz Majewski May 19, 2023, 10:43 a.m. UTC
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 | 1 +
 1 file changed, 1 insertion(+)

Comments

Stefano Babic July 11, 2023, 7:47 p.m. UTC | #1
> 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>
Applied to u-boot-imx, master, thanks !

Best regards,
Stefano Babic
diff mbox series

Patch

diff --git a/board/liebherr/xea/xea.c b/board/liebherr/xea/xea.c
index ed2b39f70e..e4d2eb65cc 100644
--- a/board/liebherr/xea/xea.c
+++ b/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();
 }