summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLinux Build Service Account <lnxbuild@localhost>2016-10-05 19:29:27 -0700
committerGerrit - the friendly Code Review server <code-review@localhost>2016-10-05 19:29:27 -0700
commit7cfcfc9a0922edbf873ea1f882d82fca1ce90d87 (patch)
tree9f87d73cbb071792e9b11a793a0a3e5e5a698e3d
parent2721b89e03823dcbf1483278faedf0b22f59e639 (diff)
parent48ecffa1a06b133d1ba1c5e7bba0caa455b6c4fc (diff)
Merge "Revert "scsi: ufs: gate ref_clk during aggressive clk gating""
-rw-r--r--drivers/scsi/ufs/ufs-qcom.c19
-rw-r--r--drivers/scsi/ufs/ufshcd.c7
2 files changed, 12 insertions, 14 deletions
diff --git a/drivers/scsi/ufs/ufs-qcom.c b/drivers/scsi/ufs/ufs-qcom.c
index 1a1dd804ffb3..ad4b6ffef36e 100644
--- a/drivers/scsi/ufs/ufs-qcom.c
+++ b/drivers/scsi/ufs/ufs-qcom.c
@@ -1498,14 +1498,10 @@ static int ufs_qcom_setup_clocks(struct ufs_hba *hba, bool on,
/* M-PHY RMMI interface clocks can be turned off */
ufs_qcom_phy_disable_iface_clk(host->generic_phy);
- /*
- * If auto hibern8 is supported then the link will already
- * be in hibern8 state and the ref clock can be gated.
- */
- if (ufshcd_is_auto_hibern8_supported(hba) ||
- !ufs_qcom_is_link_active(hba)) {
- /* turn off UFS local PHY ref_clk */
- ufs_qcom_phy_disable_ref_clk(host->generic_phy);
+ if (!ufs_qcom_is_link_active(hba)) {
+ if (!is_gating_context)
+ /* turn off UFS local PHY ref_clk */
+ ufs_qcom_phy_disable_ref_clk(host->generic_phy);
/* disable device ref_clk */
ufs_qcom_dev_ref_clk_ctrl(host, false);
}
@@ -1960,6 +1956,13 @@ static int ufs_qcom_init(struct ufs_hba *hba)
host->hba = hba;
ufshcd_set_variant(hba, host);
+ /*
+ * voting/devoting device ref_clk source is time consuming hence
+ * skip devoting it during aggressive clock gating. This clock
+ * will still be gated off during runtime suspend.
+ */
+ hba->no_ref_clk_gating = true;
+
err = ufs_qcom_ice_get_dev(host);
if (err == -EPROBE_DEFER) {
/*
diff --git a/drivers/scsi/ufs/ufshcd.c b/drivers/scsi/ufs/ufshcd.c
index 311a4ea24973..d478767ad3dd 100644
--- a/drivers/scsi/ufs/ufshcd.c
+++ b/drivers/scsi/ufs/ufshcd.c
@@ -1346,12 +1346,7 @@ static void ufshcd_gate_work(struct work_struct *work)
ufshcd_set_link_hibern8(hba);
}
- /*
- * If auto hibern8 is supported then the link will already
- * be in hibern8 state and the ref clock can be gated.
- */
- if ((ufshcd_is_auto_hibern8_supported(hba) ||
- !ufshcd_is_link_active(hba)) && !hba->no_ref_clk_gating)
+ if (!ufshcd_is_link_active(hba) && !hba->no_ref_clk_gating)
ufshcd_disable_clocks(hba, true);
else
/* If link is active, device ref_clk can't be switched off */