ARM: SPL: Start hooking in the current SPI SPL support
authorTom Rini <trini@ti.com>
Tue, 14 Aug 2012 19:25:23 +0000 (12:25 -0700)
committerTom Rini <trini@ti.com>
Thu, 27 Sep 2012 16:49:58 +0000 (09:49 -0700)
Signed-off-by: Tom Rini <trini@ti.com>
arch/arm/cpu/armv7/omap-common/spl.c
arch/arm/include/asm/spl.h

index 3a1029f..dc26750 100644 (file)
@@ -175,6 +175,11 @@ void board_init_r(gd_t *id, ulong dummy)
                spl_ymodem_load_image();
                break;
 #endif
+#ifdef CONFIG_SPL_SPI_SUPPORT
+       case BOOT_DEVICE_SPI:
+               spi_boot();
+       break;
+#endif
        default:
                puts("SPL: Un-supported Boot Device\n");
                debug("Found: %d\n", boot_device);
index fdb78b5..47ca1b6 100644 (file)
@@ -60,6 +60,9 @@ void spl_mmc_load_image(void);
 /* YMODEM SPL functions */
 void spl_ymodem_load_image(void);
 
+/* SPI SPL functions */
+void spi_boot(void);
+
 #ifdef CONFIG_SPL_BOARD_INIT
 void spl_board_init(void);
 #endif