mirror of
https://github.com/torvalds/linux
synced 2024-11-05 18:23:50 +00:00
mmc: sh_mmcif: support aggressive clock gating
To support MMC aggressive clock gating the driver has to stop the interface clock when the .set_ios() method is called with .clock == 0. Signed-off-by: Guennadi Liakhovetski <g.liakhovetski@gmx.de> Signed-off-by: Chris Ball <cjb@laptop.org>
This commit is contained in:
parent
b676f0391a
commit
f5e0cec449
1 changed files with 7 additions and 7 deletions
|
@ -844,15 +844,15 @@ static void sh_mmcif_set_ios(struct mmc_host *mmc, struct mmc_ios *ios)
|
|||
struct sh_mmcif_host *host = mmc_priv(mmc);
|
||||
struct sh_mmcif_plat_data *p = host->pd->dev.platform_data;
|
||||
|
||||
if (ios->power_mode == MMC_POWER_OFF) {
|
||||
/* clock stop */
|
||||
sh_mmcif_clock_control(host, 0);
|
||||
if (p->down_pwr)
|
||||
p->down_pwr(host->pd);
|
||||
return;
|
||||
} else if (ios->power_mode == MMC_POWER_UP) {
|
||||
if (ios->power_mode == MMC_POWER_UP) {
|
||||
if (p->set_pwr)
|
||||
p->set_pwr(host->pd, ios->power_mode);
|
||||
} else if (ios->power_mode == MMC_POWER_OFF || !ios->clock) {
|
||||
/* clock stop */
|
||||
sh_mmcif_clock_control(host, 0);
|
||||
if (ios->power_mode == MMC_POWER_OFF && p->down_pwr)
|
||||
p->down_pwr(host->pd);
|
||||
return;
|
||||
}
|
||||
|
||||
if (ios->clock)
|
||||
|
|
Loading…
Reference in a new issue