From: Stefan Roese Date: Fri, 17 Apr 2015 16:13:06 +0000 (+0200) Subject: arm: mvebu: spl.c: Add call to board_early_init_f() X-Git-Tag: v2015.10-rc1~78^2~8 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=e3cccf9eb2ed6e25d603272719bf0cad5561826c;p=platform%2Fkernel%2Fu-boot.git 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 --- diff --git a/arch/arm/mach-mvebu/spl.c b/arch/arm/mach-mvebu/spl.c index ab045b0..e65f6ca 100644 --- a/arch/arm/mach-mvebu/spl.c +++ b/arch/arm/mach-mvebu/spl.c @@ -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();