diff options
Diffstat (limited to 'drivers/mmc/host/sdhci-pxa.c')
-rw-r--r-- | drivers/mmc/host/sdhci-pxa.c | 48 |
1 files changed, 47 insertions, 1 deletions
diff --git a/drivers/mmc/host/sdhci-pxa.c b/drivers/mmc/host/sdhci-pxa.c index 5a61208cbc66..089c9a68b7b1 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 | ||
@@ -136,11 +174,19 @@ static int __devinit sdhci_pxa_probe(struct platform_device *pdev) | |||
136 | host->hw_name = "MMC"; | 174 | host->hw_name = "MMC"; |
137 | host->ops = &sdhci_pxa_ops; | 175 | host->ops = &sdhci_pxa_ops; |
138 | host->irq = irq; | 176 | host->irq = irq; |
139 | host->quirks = SDHCI_QUIRK_BROKEN_ADMA | SDHCI_QUIRK_BROKEN_TIMEOUT_VAL; | 177 | host->quirks = SDHCI_QUIRK_BROKEN_ADMA |
178 | | SDHCI_QUIRK_BROKEN_TIMEOUT_VAL | ||
179 | | SDHCI_QUIRK_32BIT_DMA_ADDR | ||
180 | | SDHCI_QUIRK_32BIT_DMA_SIZE | ||
181 | | SDHCI_QUIRK_32BIT_ADMA_SIZE | ||
182 | | SDHCI_QUIRK_NO_ENDATTR_IN_NOPDESC; | ||
140 | 183 | ||
141 | if (pdata->quirks) | 184 | if (pdata->quirks) |
142 | host->quirks |= pdata->quirks; | 185 | host->quirks |= pdata->quirks; |
143 | 186 | ||
187 | /* enable 1/8V DDR capable */ | ||
188 | host->mmc->caps |= MMC_CAP_1_8V_DDR; | ||
189 | |||
144 | /* If slot design supports 8 bit data, indicate this to MMC. */ | 190 | /* If slot design supports 8 bit data, indicate this to MMC. */ |
145 | if (pdata->flags & PXA_FLAG_SD_8_BIT_CAPABLE_SLOT) | 191 | if (pdata->flags & PXA_FLAG_SD_8_BIT_CAPABLE_SLOT) |
146 | host->mmc->caps |= MMC_CAP_8_BIT_DATA; | 192 | host->mmc->caps |= MMC_CAP_8_BIT_DATA; |