mirror of
https://github.com/u-boot/u-boot.git
synced 2025-05-03 18:23:34 +00:00
arm: mvebu: spl.c: Add call to board_early_init_f()
Pin muxing needs to be done before UART output, since on A38x the UART pins need some re-muxing for output to work. Signed-off-by: Stefan Roese <sr@denx.de>
This commit is contained in:
parent
21427708a6
commit
e3cccf9eb2
1 changed files with 7 additions and 0 deletions
|
@ -26,6 +26,13 @@ void board_init_f(ulong dummy)
|
|||
/* Linux expects the internal registers to be at 0xf1000000 */
|
||||
arch_cpu_init();
|
||||
|
||||
/*
|
||||
* Pin muxing needs to be done before UART output, since
|
||||
* on A38x the UART pins need some re-muxing for output
|
||||
* to work.
|
||||
*/
|
||||
board_early_init_f();
|
||||
|
||||
preloader_console_init();
|
||||
|
||||
timer_init();
|
||||
|
|
Loading…
Add table
Reference in a new issue