|
@@ -859,7 +859,7 @@ static void tmio_mmc_set_ios(struct mmc_host *mmc, struct mmc_ios *ios)
|
|
|
* is kept positive, so no suspending actually takes place.
|
|
|
*/
|
|
|
if (ios->power_mode == MMC_POWER_ON && ios->clock) {
|
|
|
- if (!host->power) {
|
|
|
+ if (host->power != TMIO_MMC_ON_RUN) {
|
|
|
tmio_mmc_clk_update(mmc);
|
|
|
pm_runtime_get_sync(dev);
|
|
|
if (host->resuming) {
|
|
@@ -868,27 +868,34 @@ static void tmio_mmc_set_ios(struct mmc_host *mmc, struct mmc_ios *ios)
|
|
|
}
|
|
|
}
|
|
|
tmio_mmc_set_clock(host, ios->clock);
|
|
|
- if (!host->power) {
|
|
|
+ if (host->power == TMIO_MMC_OFF_STOP)
|
|
|
/* power up SD card and the bus */
|
|
|
tmio_mmc_power_on(host, ios->vdd);
|
|
|
- host->power = true;
|
|
|
- }
|
|
|
+ host->power = TMIO_MMC_ON_RUN;
|
|
|
/* start bus clock */
|
|
|
tmio_mmc_clk_start(host);
|
|
|
} else if (ios->power_mode != MMC_POWER_UP) {
|
|
|
- if (host->power) {
|
|
|
- struct tmio_mmc_data *pdata = host->pdata;
|
|
|
- if (ios->power_mode == MMC_POWER_OFF)
|
|
|
+ struct tmio_mmc_data *pdata = host->pdata;
|
|
|
+ unsigned int old_power = host->power;
|
|
|
+
|
|
|
+ if (old_power != TMIO_MMC_OFF_STOP) {
|
|
|
+ if (ios->power_mode == MMC_POWER_OFF) {
|
|
|
tmio_mmc_power_off(host);
|
|
|
+ host->power = TMIO_MMC_OFF_STOP;
|
|
|
+ } else {
|
|
|
+ host->power = TMIO_MMC_ON_STOP;
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ if (old_power == TMIO_MMC_ON_RUN) {
|
|
|
tmio_mmc_clk_stop(host);
|
|
|
- host->power = false;
|
|
|
pm_runtime_put(dev);
|
|
|
if (pdata->clk_disable)
|
|
|
pdata->clk_disable(host->pdev);
|
|
|
}
|
|
|
}
|
|
|
|
|
|
- if (host->power) {
|
|
|
+ if (host->power != TMIO_MMC_OFF_STOP) {
|
|
|
switch (ios->bus_width) {
|
|
|
case MMC_BUS_WIDTH_1:
|
|
|
sd_ctrl_write16(host, CTL_SD_MEM_CARD_OPT, 0x80e0);
|
|
@@ -1029,7 +1036,7 @@ int tmio_mmc_host_probe(struct tmio_mmc_host **host,
|
|
|
mmc->caps & MMC_CAP_NONREMOVABLE ||
|
|
|
mmc->slot.cd_irq >= 0);
|
|
|
|
|
|
- _host->power = false;
|
|
|
+ _host->power = TMIO_MMC_OFF_STOP;
|
|
|
pm_runtime_enable(&pdev->dev);
|
|
|
ret = pm_runtime_resume(&pdev->dev);
|
|
|
if (ret < 0)
|