aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDong Aisheng <b29396@freescale.com>2013-11-04 03:38:26 -0500
committerChris Ball <chris@printf.net>2014-01-13 12:48:07 -0500
commitd131a71c951088704eabe1529de99188c9e2c22c (patch)
tree576e59f8888fddde5b5c331d25951e05fca89f6f
parentd433dc63182825538b85de6a85e2ea3fad7f2917 (diff)
mmc: sdhci-esdhc-imx: tuning bits should not be cleared during reset
We should not clear tuning bits during reset or the SD3.0/eMMC4.5 card working on UHS mode may not work after reset since the former tuning settings was lost. Signed-off-by: Dong Aisheng <b29396@freescale.com> Acked-by: Ulf Hansson <ulf.hansson@linaro.org> Signed-off-by: Chris Ball <cjb@laptop.org>
-rw-r--r--drivers/mmc/host/sdhci-esdhc-imx.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/drivers/mmc/host/sdhci-esdhc-imx.c b/drivers/mmc/host/sdhci-esdhc-imx.c
index d4ba277b572d..d85a6a6f9e29 100644
--- a/drivers/mmc/host/sdhci-esdhc-imx.c
+++ b/drivers/mmc/host/sdhci-esdhc-imx.c
@@ -45,6 +45,8 @@
45#define ESDHC_MIX_CTRL_FBCLK_SEL (1 << 25) 45#define ESDHC_MIX_CTRL_FBCLK_SEL (1 << 25)
46/* Bits 3 and 6 are not SDHCI standard definitions */ 46/* Bits 3 and 6 are not SDHCI standard definitions */
47#define ESDHC_MIX_CTRL_SDHCI_MASK 0xb7 47#define ESDHC_MIX_CTRL_SDHCI_MASK 0xb7
48/* Tuning bits */
49#define ESDHC_MIX_CTRL_TUNING_MASK 0x03c00000
48 50
49/* dll control register */ 51/* dll control register */
50#define ESDHC_DLL_CTRL 0x60 52#define ESDHC_DLL_CTRL 0x60
@@ -562,7 +564,10 @@ static void esdhc_writeb_le(struct sdhci_host *host, u8 val, int reg)
562 * Do it manually here. 564 * Do it manually here.
563 */ 565 */
564 if (esdhc_is_usdhc(imx_data)) { 566 if (esdhc_is_usdhc(imx_data)) {
565 writel(0, host->ioaddr + ESDHC_MIX_CTRL); 567 /* the tuning bits should be kept during reset */
568 new_val = readl(host->ioaddr + ESDHC_MIX_CTRL);
569 writel(new_val & ESDHC_MIX_CTRL_TUNING_MASK,
570 host->ioaddr + ESDHC_MIX_CTRL);
566 imx_data->is_ddr = 0; 571 imx_data->is_ddr = 0;
567 } 572 }
568 } 573 }