aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/mmc/host
diff options
context:
space:
mode:
authorMarc Kleine-Budde <mkl@pengutronix.de>2013-04-10 05:13:43 -0400
committerChris Ball <cjb@laptop.org>2013-04-12 14:17:38 -0400
commit4c0c9be05004d1eb674b7586216b3d93cc04531c (patch)
tree4b1ee4ccf70914c987ce60483d3e06c253514216 /drivers/mmc/host
parent3bffb800b91bb128b61d83deb01ce63c455d108f (diff)
mmc: mxs-mmc: add cd-inverted property
The card-detect GPIO is inverted on some boards. Handle such case. Acked-by: Shawn Guo <shawn.guo@linaro.org> Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de> Signed-off-by: Chris Ball <cjb@laptop.org>
Diffstat (limited to 'drivers/mmc/host')
-rw-r--r--drivers/mmc/host/mxs-mmc.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/drivers/mmc/host/mxs-mmc.c b/drivers/mmc/host/mxs-mmc.c
index 4efe3021b217..0cdf1f6f3f43 100644
--- a/drivers/mmc/host/mxs-mmc.c
+++ b/drivers/mmc/host/mxs-mmc.c
@@ -72,6 +72,7 @@ struct mxs_mmc_host {
72 int sdio_irq_en; 72 int sdio_irq_en;
73 int wp_gpio; 73 int wp_gpio;
74 bool wp_inverted; 74 bool wp_inverted;
75 bool cd_inverted;
75}; 76};
76 77
77static int mxs_mmc_get_ro(struct mmc_host *mmc) 78static int mxs_mmc_get_ro(struct mmc_host *mmc)
@@ -96,7 +97,7 @@ static int mxs_mmc_get_cd(struct mmc_host *mmc)
96 struct mxs_ssp *ssp = &host->ssp; 97 struct mxs_ssp *ssp = &host->ssp;
97 98
98 return !(readl(ssp->base + HW_SSP_STATUS(ssp)) & 99 return !(readl(ssp->base + HW_SSP_STATUS(ssp)) &
99 BM_SSP_STATUS_CARD_DETECT); 100 BM_SSP_STATUS_CARD_DETECT)) ^ host->cd_inverted;
100} 101}
101 102
102static void mxs_mmc_reset(struct mxs_mmc_host *host) 103static void mxs_mmc_reset(struct mxs_mmc_host *host)
@@ -691,6 +692,8 @@ static int mxs_mmc_probe(struct platform_device *pdev)
691 if (flags & OF_GPIO_ACTIVE_LOW) 692 if (flags & OF_GPIO_ACTIVE_LOW)
692 host->wp_inverted = 1; 693 host->wp_inverted = 1;
693 694
695 host->cd_inverted = of_property_read_bool(np, "cd-inverted");
696
694 mmc->f_min = 400000; 697 mmc->f_min = 400000;
695 mmc->f_max = 288000000; 698 mmc->f_max = 288000000;
696 mmc->ocr_avail = MMC_VDD_32_33 | MMC_VDD_33_34; 699 mmc->ocr_avail = MMC_VDD_32_33 | MMC_VDD_33_34;