From: Shawn Lin Date: Wed, 12 Oct 2016 02:50:38 +0000 (+0800) Subject: mmc: dw_mmc: disable biu clk if possible X-Git-Tag: v5.15~12284^2~119 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=1f5c51d76e8f3040fd5c2e711d5760d696281307;p=platform%2Fkernel%2Flinux-starfive.git 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 Signed-off-by: Jaehoon Chung Signed-off-by: Ulf Hansson --- diff --git a/drivers/mmc/host/dw_mmc-rockchip.c b/drivers/mmc/host/dw_mmc-rockchip.c index 0a05ad3..9a46e46 100644 --- a/drivers/mmc/host/dw_mmc-rockchip.c +++ b/drivers/mmc/host/dw_mmc-rockchip.c @@ -13,6 +13,7 @@ #include #include #include +#include #include #include diff --git a/drivers/mmc/host/dw_mmc.c b/drivers/mmc/host/dw_mmc.c index 875ce2d..7cf3394 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;