]> git.sur5r.net Git - u-boot/blobdiff - arch/arm/mach-mvebu/spl.c
arm: mvebu: Add DM and OF_CONTROL support to SPL
[u-boot] / arch / arm / mach-mvebu / spl.c
index 26ff1a24ac103458307014ddea30ac41b9b87e3c..4eeef2dcdaa3dbe6291f3b527d75cbf370a668d8 100644 (file)
@@ -1,10 +1,13 @@
 /*
- * Copyright (C) 2014 Stefan Roese <sr@denx.de>
+ * Copyright (C) 2014-2015 Stefan Roese <sr@denx.de>
  *
  * SPDX-License-Identifier:    GPL-2.0+
  */
 
 #include <common.h>
+#include <dm.h>
+#include <debug_uart.h>
+#include <fdtdec.h>
 #include <spl.h>
 #include <asm/io.h>
 #include <asm/arch/cpu.h>
@@ -31,8 +34,7 @@ u32 spl_boot_mode(void)
 
 void board_init_f(ulong dummy)
 {
-       /* Set global data pointer */
-       gd = &gdata;
+       int ret;
 
 #ifndef CONFIG_MVEBU_BOOTROM_UARTBOOT
        /*
@@ -54,6 +56,27 @@ void board_init_f(ulong dummy)
         */
        board_early_init_f();
 
+       /* Example code showing how to enable the debug UART on MVEBU */
+#ifdef EARLY_UART
+       /*
+        * Debug UART can be used from here if required:
+        *
+        * debug_uart_init();
+        * printch('a');
+        * printhex8(0x1234);
+        * printascii("string");
+        */
+#endif
+
+       ret = spl_init();
+       if (ret) {
+               debug("spl_init() failed: %d\n", ret);
+               hang();
+       }
+
+       /* Use special translation offset for SPL */
+       dm_set_translation_offset(0xd0000000 - 0xf1000000);
+
        preloader_console_init();
 
        timer_init();
@@ -78,6 +101,4 @@ void board_init_f(ulong dummy)
         */
        return_to_bootrom();
 #endif
-
-       board_init_r(NULL, 0);
 }