]> git.sur5r.net Git - u-boot/commitdiff
arm: mvebu: spl.c: Add call to board_early_init_f()
authorStefan Roese <sr@denx.de>
Fri, 17 Apr 2015 16:13:06 +0000 (18:13 +0200)
committerLuka Perkov <luka.perkov@sartura.hr>
Thu, 23 Jul 2015 08:37:20 +0000 (10:37 +0200)
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>
arch/arm/mach-mvebu/spl.c

index ab045b01b7fcf1c05cbc98c8787eaad0a0352e32..e65f6ca03ed6a4c2de85edebe5b283ce29fe3b75 100644 (file)
@@ -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();