diff options
Diffstat (limited to 'drivers/mmc')
-rw-r--r-- | drivers/mmc/host/sdhci-pxa.c | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/drivers/mmc/host/sdhci-pxa.c b/drivers/mmc/host/sdhci-pxa.c index 5a61208cbc66..1dc9debf6a7f 100644 --- a/drivers/mmc/host/sdhci-pxa.c +++ b/drivers/mmc/host/sdhci-pxa.c | |||
@@ -69,7 +69,45 @@ static void set_clock(struct sdhci_host *host, unsigned int clock) | |||
69 | } | 69 | } |
70 | } | 70 | } |
71 | 71 | ||
72 | static int set_uhs_signaling(struct sdhci_host *host, unsigned int uhs) | ||
73 | { | ||
74 | u16 ctrl_2; | ||
75 | |||
76 | /* | ||
77 | * Set V18_EN -- UHS modes do not work without this. | ||
78 | * does not change signaling voltage | ||
79 | */ | ||
80 | ctrl_2 = sdhci_readw(host, SDHCI_HOST_CONTROL2); | ||
81 | |||
82 | /* Select Bus Speed Mode for host */ | ||
83 | ctrl_2 &= ~SDHCI_CTRL_UHS_MASK; | ||
84 | switch (uhs) { | ||
85 | case MMC_TIMING_UHS_SDR12: | ||
86 | ctrl_2 |= SDHCI_CTRL_UHS_SDR12; | ||
87 | break; | ||
88 | case MMC_TIMING_UHS_SDR25: | ||
89 | ctrl_2 |= SDHCI_CTRL_UHS_SDR25; | ||
90 | break; | ||
91 | case MMC_TIMING_UHS_SDR50: | ||
92 | ctrl_2 |= SDHCI_CTRL_UHS_SDR50 | SDHCI_CTRL_VDD_180; | ||
93 | break; | ||
94 | case MMC_TIMING_UHS_SDR104: | ||
95 | ctrl_2 |= SDHCI_CTRL_UHS_SDR104 | SDHCI_CTRL_VDD_180; | ||
96 | break; | ||
97 | case MMC_TIMING_UHS_DDR50: | ||
98 | ctrl_2 |= SDHCI_CTRL_UHS_DDR50 | SDHCI_CTRL_VDD_180; | ||
99 | break; | ||
100 | } | ||
101 | |||
102 | sdhci_writew(host, ctrl_2, SDHCI_HOST_CONTROL2); | ||
103 | pr_debug("%s:%s uhs = %d, ctrl_2 = %04X\n", | ||
104 | __func__, mmc_hostname(host->mmc), uhs, ctrl_2); | ||
105 | |||
106 | return 0; | ||
107 | } | ||
108 | |||
72 | static struct sdhci_ops sdhci_pxa_ops = { | 109 | static struct sdhci_ops sdhci_pxa_ops = { |
110 | .set_uhs_signaling = set_uhs_signaling, | ||
73 | .set_clock = set_clock, | 111 | .set_clock = set_clock, |
74 | }; | 112 | }; |
75 | 113 | ||
@@ -141,6 +179,9 @@ static int __devinit sdhci_pxa_probe(struct platform_device *pdev) | |||
141 | if (pdata->quirks) | 179 | if (pdata->quirks) |
142 | host->quirks |= pdata->quirks; | 180 | host->quirks |= pdata->quirks; |
143 | 181 | ||
182 | /* enable 1/8V DDR capable */ | ||
183 | host->mmc->caps |= MMC_CAP_1_8V_DDR; | ||
184 | |||
144 | /* If slot design supports 8 bit data, indicate this to MMC. */ | 185 | /* If slot design supports 8 bit data, indicate this to MMC. */ |
145 | if (pdata->flags & PXA_FLAG_SD_8_BIT_CAPABLE_SLOT) | 186 | if (pdata->flags & PXA_FLAG_SD_8_BIT_CAPABLE_SLOT) |
146 | host->mmc->caps |= MMC_CAP_8_BIT_DATA; | 187 | host->mmc->caps |= MMC_CAP_8_BIT_DATA; |