aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm/mach-omap2
diff options
context:
space:
mode:
authorstanley.miao <stanley.miao@windriver.com>2010-05-13 08:39:30 -0400
committerTony Lindgren <tony@atomide.com>2010-05-20 14:17:51 -0400
commited8303fc111e58530e22bd29b0d7e08dced75999 (patch)
tree92f86f768e337d784bc4be590e19543c1d454f8c /arch/arm/mach-omap2
parentea221a6ae73c7696c60a52aefd8a7af0bb47033a (diff)
omap: init the gpio pinmux for mmc
There is two gpio for mmc use, one is for card detecting, another is used for checking write protect. Intialize its pinmux in case the bootloader doesn't set it. Signed-off-by: Stanley.Miao <stanley.miao@windriver.com> Signed-off-by: Tony Lindgren <tony@atomide.com>
Diffstat (limited to 'arch/arm/mach-omap2')
-rw-r--r--arch/arm/mach-omap2/devices.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/arch/arm/mach-omap2/devices.c b/arch/arm/mach-omap2/devices.c
index 10f3a3c58cc0..3d30f22c4c88 100644
--- a/arch/arm/mach-omap2/devices.c
+++ b/arch/arm/mach-omap2/devices.c
@@ -591,6 +591,15 @@ static inline void omap_hsmmc_reset(void) {}
591static inline void omap2_mmc_mux(struct omap_mmc_platform_data *mmc_controller, 591static inline void omap2_mmc_mux(struct omap_mmc_platform_data *mmc_controller,
592 int controller_nr) 592 int controller_nr)
593{ 593{
594 if ((mmc_controller->slots[0].switch_pin > 0) && \
595 (mmc_controller->slots[0].switch_pin < OMAP_MAX_GPIO_LINES))
596 omap_mux_init_gpio(mmc_controller->slots[0].switch_pin,
597 OMAP_PIN_INPUT_PULLUP);
598 if ((mmc_controller->slots[0].gpio_wp > 0) && \
599 (mmc_controller->slots[0].gpio_wp < OMAP_MAX_GPIO_LINES))
600 omap_mux_init_gpio(mmc_controller->slots[0].gpio_wp,
601 OMAP_PIN_INPUT_PULLUP);
602
594 if (cpu_is_omap2420() && controller_nr == 0) { 603 if (cpu_is_omap2420() && controller_nr == 0) {
595 omap_cfg_reg(H18_24XX_MMC_CMD); 604 omap_cfg_reg(H18_24XX_MMC_CMD);
596 omap_cfg_reg(H15_24XX_MMC_CLKI); 605 omap_cfg_reg(H15_24XX_MMC_CLKI);