diff options
Diffstat (limited to 'arch/arm/cpu/armv7/omap-common/boot-common.c')
| -rw-r--r-- | arch/arm/cpu/armv7/omap-common/boot-common.c | 16 | 
1 files changed, 16 insertions, 0 deletions
| diff --git a/arch/arm/cpu/armv7/omap-common/boot-common.c b/arch/arm/cpu/armv7/omap-common/boot-common.c index 53568acf3..3406cfbbe 100644 --- a/arch/arm/cpu/armv7/omap-common/boot-common.c +++ b/arch/arm/cpu/armv7/omap-common/boot-common.c @@ -17,8 +17,10 @@   */  #include <common.h> +#include <asm/spl.h>  #include <asm/omap_common.h>  #include <asm/arch/omap.h> +#include <asm/arch/mmc_host_def.h>  /*   * This is used to verify if the configuration header @@ -46,4 +48,18 @@ u32 spl_boot_mode(void)  {  	return omap_bootmode;  } + +int board_mmc_init(bd_t *bis) +{ +	switch (spl_boot_device()) { +	case BOOT_DEVICE_MMC1: +		omap_mmc_init(0, 0, 0); +		break; +	case BOOT_DEVICE_MMC2: +	case BOOT_DEVICE_MMC2_2: +		omap_mmc_init(1, 0, 0); +		break; +	} +	return 0; +}  #endif |