|
@@ -174,20 +174,31 @@ static void sdhci_reset(struct sdhci_host *host, u8 mask)
|
|
sdhci_clear_set_irqs(host, SDHCI_INT_ALL_MASK, ier);
|
|
sdhci_clear_set_irqs(host, SDHCI_INT_ALL_MASK, ier);
|
|
}
|
|
}
|
|
|
|
|
|
-static void sdhci_init(struct sdhci_host *host)
|
|
|
|
|
|
+static void sdhci_set_ios(struct mmc_host *mmc, struct mmc_ios *ios);
|
|
|
|
+
|
|
|
|
+static void sdhci_init(struct sdhci_host *host, int soft)
|
|
{
|
|
{
|
|
- sdhci_reset(host, SDHCI_RESET_ALL);
|
|
|
|
|
|
+ if (soft)
|
|
|
|
+ sdhci_reset(host, SDHCI_RESET_CMD|SDHCI_RESET_DATA);
|
|
|
|
+ else
|
|
|
|
+ sdhci_reset(host, SDHCI_RESET_ALL);
|
|
|
|
|
|
sdhci_clear_set_irqs(host, SDHCI_INT_ALL_MASK,
|
|
sdhci_clear_set_irqs(host, SDHCI_INT_ALL_MASK,
|
|
SDHCI_INT_BUS_POWER | SDHCI_INT_DATA_END_BIT |
|
|
SDHCI_INT_BUS_POWER | SDHCI_INT_DATA_END_BIT |
|
|
SDHCI_INT_DATA_CRC | SDHCI_INT_DATA_TIMEOUT | SDHCI_INT_INDEX |
|
|
SDHCI_INT_DATA_CRC | SDHCI_INT_DATA_TIMEOUT | SDHCI_INT_INDEX |
|
|
SDHCI_INT_END_BIT | SDHCI_INT_CRC | SDHCI_INT_TIMEOUT |
|
|
SDHCI_INT_END_BIT | SDHCI_INT_CRC | SDHCI_INT_TIMEOUT |
|
|
SDHCI_INT_DATA_END | SDHCI_INT_RESPONSE);
|
|
SDHCI_INT_DATA_END | SDHCI_INT_RESPONSE);
|
|
|
|
+
|
|
|
|
+ if (soft) {
|
|
|
|
+ /* force clock reconfiguration */
|
|
|
|
+ host->clock = 0;
|
|
|
|
+ sdhci_set_ios(host->mmc, &host->mmc->ios);
|
|
|
|
+ }
|
|
}
|
|
}
|
|
|
|
|
|
static void sdhci_reinit(struct sdhci_host *host)
|
|
static void sdhci_reinit(struct sdhci_host *host)
|
|
{
|
|
{
|
|
- sdhci_init(host);
|
|
|
|
|
|
+ sdhci_init(host, 0);
|
|
sdhci_enable_card_detection(host);
|
|
sdhci_enable_card_detection(host);
|
|
}
|
|
}
|
|
|
|
|
|
@@ -1600,16 +1611,13 @@ int sdhci_resume_host(struct sdhci_host *host)
|
|
if (ret)
|
|
if (ret)
|
|
return ret;
|
|
return ret;
|
|
|
|
|
|
- sdhci_init(host);
|
|
|
|
|
|
+ sdhci_init(host, (host->mmc->pm_flags & MMC_PM_KEEP_POWER));
|
|
mmiowb();
|
|
mmiowb();
|
|
|
|
|
|
ret = mmc_resume_host(host->mmc);
|
|
ret = mmc_resume_host(host->mmc);
|
|
- if (ret)
|
|
|
|
- return ret;
|
|
|
|
-
|
|
|
|
sdhci_enable_card_detection(host);
|
|
sdhci_enable_card_detection(host);
|
|
|
|
|
|
- return 0;
|
|
|
|
|
|
+ return ret;
|
|
}
|
|
}
|
|
|
|
|
|
EXPORT_SYMBOL_GPL(sdhci_resume_host);
|
|
EXPORT_SYMBOL_GPL(sdhci_resume_host);
|
|
@@ -1864,7 +1872,7 @@ int sdhci_add_host(struct sdhci_host *host)
|
|
if (ret)
|
|
if (ret)
|
|
goto untasklet;
|
|
goto untasklet;
|
|
|
|
|
|
- sdhci_init(host);
|
|
|
|
|
|
+ sdhci_init(host, 0);
|
|
|
|
|
|
#ifdef CONFIG_MMC_DEBUG
|
|
#ifdef CONFIG_MMC_DEBUG
|
|
sdhci_dumpregs(host);
|
|
sdhci_dumpregs(host);
|