]> 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 e65f6ca03ed6a4c2de85edebe5b283ce29fe3b75..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>
@@ -14,17 +17,37 @@ DECLARE_GLOBAL_DATA_PTR;
 
 u32 spl_boot_device(void)
 {
-       /* Right now only booting via SPI NOR flash is supported */
+#if defined(CONFIG_SPL_SPI_FLASH_SUPPORT)
        return BOOT_DEVICE_SPI;
+#endif
+#if defined(CONFIG_SPL_MMC_SUPPORT)
+       return BOOT_DEVICE_MMC1;
+#endif
 }
 
+#ifdef CONFIG_SPL_MMC_SUPPORT
+u32 spl_boot_mode(void)
+{
+       return MMCSD_MODE_RAW;
+}
+#endif
+
 void board_init_f(ulong dummy)
 {
-       /* Set global data pointer */
-       gd = &gdata;
+       int ret;
+
+#ifndef CONFIG_MVEBU_BOOTROM_UARTBOOT
+       /*
+        * Only call arch_cpu_init() when not returning to the
+        * Marvell BootROM, which is done when booting via
+        * the xmodem protocol (kwboot tool). Otherwise the
+        * internal register will get remapped and the BootROM
+        * can't continue to run correctly.
+        */
 
        /* Linux expects the internal registers to be at 0xf1000000 */
        arch_cpu_init();
+#endif
 
        /*
         * Pin muxing needs to be done before UART output, since
@@ -33,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();
@@ -43,5 +87,18 @@ void board_init_f(ulong dummy)
        /* Setup DDR */
        ddr3_init();
 
-       board_init_r(NULL, 0);
+#ifdef CONFIG_MVEBU_BOOTROM_UARTBOOT
+       /*
+        * Return to the BootROM to continue the Marvell xmodem
+        * UART boot protocol. As initiated by the kwboot tool.
+        *
+        * This can only be done by the BootROM and not by the
+        * U-Boot SPL infrastructure, since the beginning of the
+        * image is already read and interpreted by the BootROM.
+        * SPL has no chance to receive this information. So we
+        * need to return to the BootROM to enable this xmodem
+        * UART download.
+        */
+       return_to_bootrom();
+#endif
 }