]> git.kernelconcepts.de Git - karo-tx-uboot.git/commitdiff
TI OMAP3 SDP3430: Use generic MMC driver
authorTom Rini <trini@ti.com>
Sun, 4 Sep 2011 01:52:21 +0000 (21:52 -0400)
committerAlbert ARIBAUD <albert.u.boot@aribaud.net>
Sun, 4 Sep 2011 09:36:18 +0000 (11:36 +0200)
Switch from the legacy omap3 mmc driver to the new generic omap hsmmc
driver.  This patch is based on the work done for Beagle, etc.

Signed-off-by: Tom Rini <trini@ti.com>
Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
board/ti/sdp3430/sdp.c
include/configs/omap3_sdp3430.h

index 72f0984d67c5606cf74558d033366939adb65174..d73f5018193ffa158ee9c88cb470eae823d73d0d 100644 (file)
@@ -25,6 +25,7 @@
 #include <netdev.h>
 #include <twl4030.h>
 #include <asm/io.h>
+#include <asm/arch/mmc_host_def.h>
 #include <asm/arch/mux.h>
 #include <asm/arch/mem.h>
 #include <asm/arch/sys_proto.h>
@@ -204,3 +205,11 @@ void set_muxconf_regs(void)
        /* platform specific muxes */
        MUX_SDP3430();
 }
+
+#ifdef CONFIG_GENERIC_MMC
+int board_mmc_init(bd_t *bis)
+{
+       omap_mmc_init(0);
+       return 0;
+}
+#endif
index a47cb6bbc44758effa2688aa145a4b1d68fe4407..6a826ba69b671b95595b9bf325aae11a544f7d03 100644 (file)
  */
 
 #if defined(CONFIG_CMD_MMC)
+#define CONFIG_GENERIC_MMC             1
 #define CONFIG_MMC                     1
-#define CONFIG_OMAP3_MMC               1
+#define CONFIG_OMAP_HSMMC              1
 #define CONFIG_DOS_PARTITION           1
 #endif