]> git.sur5r.net Git - u-boot/commitdiff
ARC: init debug uart in early common arc code
authorEugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
Thu, 3 May 2018 12:01:58 +0000 (15:01 +0300)
committerAlexey Brodkin <abrodkin@synopsys.com>
Thu, 24 May 2018 12:59:17 +0000 (15:59 +0300)
The debug UART is intended for use very early in U-Boot to debug
problems before serial drivers are up.

Call debug_uart_init right before board_init_f.

Signed-off-by: Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
Signed-off-by: Alexey Brodkin <abrodkin@synopsys.com>
arch/arc/lib/start.S

index 3fb05606c7b6b6161454cc31d7d78a4f5c7f2110..e573ce7718b9bd38b370b215032df1397d569809 100644 (file)
@@ -75,6 +75,11 @@ ENTRY(_start)
        /* Initialize reserved area - note: r0 already contains address */
        bl      board_init_f_init_reserve
 
+#ifdef CONFIG_DEBUG_UART
+       /* Earliest point to set up early debug uart */
+       bl      debug_uart_init
+#endif
+
        /* Zero the one and only argument of "board_init_f" */
        mov_s   %r0, 0
        bl      board_init_f