projects
/
u-boot.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
191f683
)
arm: xea: Call spl_early_init() before DM serial console is enabled in SPL
author
Lukasz Majewski
<lukma@denx.de>
Fri, 19 May 2023 10:43:55 +0000
(12:43 +0200)
committer
Stefano 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
patch
|
blob
|
history
diff --git
a/board/liebherr/xea/xea.c
b/board/liebherr/xea/xea.c
index ed2b39f70e12cee778bc51fd96c837b05c6d51b7..e4d2eb65cc4251c5da049f62425176483a7dd1bb 100644
(file)
--- 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();
}