aboutsummaryrefslogtreecommitdiff
path: root/board/liebherr
diff options
context:
space:
mode:
authorLukasz Majewski <lukma@denx.de>2023-05-19 12:43:55 +0200
committerStefano Babic <sbabic@denx.de>2023-07-11 14:40:04 +0200
commit8134853b9329e751c206b5e713e340de4e789ca2 (patch)
treeb1a770a1b714755e45f09ef75fd2dbbbeaae0490 /board/liebherr
parent191f683ee204c68eab2d6b28b9e4e81b1c6a0885 (diff)
downloadu-boot-8134853b9329e751c206b5e713e340de4e789ca2.zip
u-boot-8134853b9329e751c206b5e713e340de4e789ca2.tar.gz
u-boot-8134853b9329e751c206b5e713e340de4e789ca2.tar.bz2
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>
Diffstat (limited to 'board/liebherr')
-rw-r--r--board/liebherr/xea/xea.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/board/liebherr/xea/xea.c b/board/liebherr/xea/xea.c
index ed2b39f..e4d2eb6 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();
}