diff options
author | Tom Rini <trini@ti.com> | 2012-08-14 12:25:23 -0700 |
---|---|---|
committer | Tom Rini <trini@ti.com> | 2012-09-27 09:49:58 -0700 |
commit | d4c4e0e11710f26904c288ad1bf05d8b73abddf7 (patch) | |
tree | 46a57a884bc9dad4cd3e98e45c61e774a443912f /arch/arm/cpu | |
parent | 026b2fe32c3d5658befb54521dcfed46444e6bf8 (diff) | |
download | u-boot-imx-d4c4e0e11710f26904c288ad1bf05d8b73abddf7.zip u-boot-imx-d4c4e0e11710f26904c288ad1bf05d8b73abddf7.tar.gz u-boot-imx-d4c4e0e11710f26904c288ad1bf05d8b73abddf7.tar.bz2 |
ARM: SPL: Start hooking in the current SPI SPL support
Signed-off-by: Tom Rini <trini@ti.com>
Diffstat (limited to 'arch/arm/cpu')
-rw-r--r-- | arch/arm/cpu/armv7/omap-common/spl.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/arch/arm/cpu/armv7/omap-common/spl.c b/arch/arm/cpu/armv7/omap-common/spl.c index 3a1029f..dc26750 100644 --- a/arch/arm/cpu/armv7/omap-common/spl.c +++ b/arch/arm/cpu/armv7/omap-common/spl.c @@ -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); |