summaryrefslogtreecommitdiffstats
path: root/drivers/mmc/host/dw_mmc.c
diff options
context:
space:
mode:
authorShawn Lin <shawn.lin@rock-chips.com>2016-10-12 10:50:38 +0800
committerUlf Hansson <ulf.hansson@linaro.org>2016-11-29 09:00:38 +0100
commit1f5c51d76e8f3040fd5c2e711d5760d696281307 (patch)
treeee506678e7b9d32d888a24adcfee85e19ed2cdb5 /drivers/mmc/host/dw_mmc.c
parent50fcbbbb79de4b95a765ea170677c9810fcb9cee (diff)
mmc: dw_mmc: disable biu clk if possible
We could disable biu clk if gpio card detect available, or it is a non-removable device. Signed-off-by: Shawn Lin <shawn.lin@rock-chips.com> Signed-off-by: Jaehoon Chung <jh80.chung@samsung.com> Signed-off-by: Ulf Hansson <ulf.hansson@linaro.org>
Diffstat (limited to 'drivers/mmc/host/dw_mmc.c')
-rw-r--r--drivers/mmc/host/dw_mmc.c13
1 files changed, 13 insertions, 0 deletions
diff --git a/drivers/mmc/host/dw_mmc.c b/drivers/mmc/host/dw_mmc.c
index 875ce2d0ac87..7cf3394139e4 100644
--- a/drivers/mmc/host/dw_mmc.c
+++ b/drivers/mmc/host/dw_mmc.c
@@ -3337,6 +3337,11 @@ int dw_mci_runtime_suspend(struct device *dev)
clk_disable_unprepare(host->ciu_clk);
+ if (host->cur_slot &&
+ (mmc_can_gpio_cd(host->cur_slot->mmc) ||
+ !mmc_card_is_removable(host->cur_slot->mmc)))
+ clk_disable_unprepare(host->biu_clk);
+
return err;
}
EXPORT_SYMBOL(dw_mci_runtime_suspend);
@@ -3346,6 +3351,14 @@ int dw_mci_runtime_resume(struct device *dev)
int ret = 0;
struct dw_mci *host = dev_get_drvdata(dev);
+ if (host->cur_slot &&
+ (mmc_can_gpio_cd(host->cur_slot->mmc) ||
+ !mmc_card_is_removable(host->cur_slot->mmc))) {
+ ret = clk_prepare_enable(host->biu_clk);
+ if (ret)
+ return ret;
+ }
+
ret = clk_prepare_enable(host->ciu_clk);
if (ret)
return ret;