aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/mmc/host/sdhci.c
diff options
context:
space:
mode:
authorAnton Vorontsov <avorontsov@ru.mvista.com>2009-06-17 16:14:08 -0400
committerPierre Ossman <pierre@ossman.eu>2009-06-21 15:00:59 -0400
commit5fe23c7f51def59f66bc6aeee988ef1a467a2c8c (patch)
tree6d10aa3966cf105a8c6d6b758660fa6f00a49896 /drivers/mmc/host/sdhci.c
parent04ac2f46d6ecb995f78c9ae4e2e4707d00b5339f (diff)
sdhci: Add support for hosts that are only capable of 1-bit transfers
Some hosts (hardware configurations, or particular SD/MMC slots) may not support 4-bit bus. For example, on MPC8569E-MDS boards we can switch between serial (1-bit only) and nibble (4-bit) modes, thought we have to disable more peripherals to work in 4-bit mode. Along with some small core changes, this patch modifies sdhci-of driver, so that now it looks for "sdhci,1-bit-only" property in the device-tree, and if specified we enable a proper quirk. Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com> Acked-by: Grant Likely <grant.likely@secretlab.ca> Signed-off-by: Pierre Ossman <pierre@ossman.eu>
Diffstat (limited to 'drivers/mmc/host/sdhci.c')
-rw-r--r--drivers/mmc/host/sdhci.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/drivers/mmc/host/sdhci.c b/drivers/mmc/host/sdhci.c
index 3856669aa7e8..c7586739be1e 100644
--- a/drivers/mmc/host/sdhci.c
+++ b/drivers/mmc/host/sdhci.c
@@ -1761,7 +1761,10 @@ int sdhci_add_host(struct sdhci_host *host)
1761 mmc->ops = &sdhci_ops; 1761 mmc->ops = &sdhci_ops;
1762 mmc->f_min = host->max_clk / 256; 1762 mmc->f_min = host->max_clk / 256;
1763 mmc->f_max = host->max_clk; 1763 mmc->f_max = host->max_clk;
1764 mmc->caps = MMC_CAP_4_BIT_DATA | MMC_CAP_SDIO_IRQ; 1764 mmc->caps = MMC_CAP_SDIO_IRQ;
1765
1766 if (!(host->quirks & SDHCI_QUIRK_FORCE_1_BIT_DATA))
1767 mmc->caps |= MMC_CAP_4_BIT_DATA;
1765 1768
1766 if (caps & SDHCI_CAN_DO_HISPD) 1769 if (caps & SDHCI_CAN_DO_HISPD)
1767 mmc->caps |= MMC_CAP_SD_HIGHSPEED; 1770 mmc->caps |= MMC_CAP_SD_HIGHSPEED;