OMAP3: pandora: Use generic MMC driver
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>
This commit is contained in:
parent
cfc4384c84
commit
86c5c54409
|
@ -32,6 +32,7 @@
|
||||||
#include <common.h>
|
#include <common.h>
|
||||||
#include <twl4030.h>
|
#include <twl4030.h>
|
||||||
#include <asm/io.h>
|
#include <asm/io.h>
|
||||||
|
#include <asm/arch/mmc_host_def.h>
|
||||||
#include <asm/arch/mux.h>
|
#include <asm/arch/mux.h>
|
||||||
#include <asm/arch/gpio.h>
|
#include <asm/arch/gpio.h>
|
||||||
#include <asm/arch/sys_proto.h>
|
#include <asm/arch/sys_proto.h>
|
||||||
|
@ -103,3 +104,11 @@ void set_muxconf_regs(void)
|
||||||
{
|
{
|
||||||
MUX_PANDORA();
|
MUX_PANDORA();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#ifdef CONFIG_GENERIC_MMC
|
||||||
|
int board_mmc_init(bd_t *bis)
|
||||||
|
{
|
||||||
|
omap_mmc_init(0);
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
|
@ -100,8 +100,9 @@
|
||||||
#define CONFIG_BAUDRATE 115200
|
#define CONFIG_BAUDRATE 115200
|
||||||
#define CONFIG_SYS_BAUDRATE_TABLE {4800, 9600, 19200, 38400, 57600, \
|
#define CONFIG_SYS_BAUDRATE_TABLE {4800, 9600, 19200, 38400, 57600, \
|
||||||
115200}
|
115200}
|
||||||
|
#define CONFIG_GENERIC_MMC 1
|
||||||
#define CONFIG_MMC 1
|
#define CONFIG_MMC 1
|
||||||
#define CONFIG_OMAP3_MMC 1
|
#define CONFIG_OMAP_HSMMC 1
|
||||||
#define CONFIG_DOS_PARTITION 1
|
#define CONFIG_DOS_PARTITION 1
|
||||||
|
|
||||||
/* DDR - I use Micron DDR */
|
/* DDR - I use Micron DDR */
|
||||||
|
@ -182,7 +183,7 @@
|
||||||
"mtdparts=" MTDPARTS_DEFAULT "\0" \
|
"mtdparts=" MTDPARTS_DEFAULT "\0" \
|
||||||
|
|
||||||
#define CONFIG_BOOTCOMMAND \
|
#define CONFIG_BOOTCOMMAND \
|
||||||
"if mmc init && fatload mmc1 0 ${loadaddr} autoboot.scr || " \
|
"if mmc rescan && fatload mmc1 0 ${loadaddr} autoboot.scr || " \
|
||||||
"ext2load mmc1 0 ${loadaddr} autoboot.scr; then " \
|
"ext2load mmc1 0 ${loadaddr} autoboot.scr; then " \
|
||||||
"source ${loadaddr}; " \
|
"source ${loadaddr}; " \
|
||||||
"fi; " \
|
"fi; " \
|
||||||
|
|
Loading…
Reference in New Issue