mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* [PATCH] ufs: core: Disable auto h8 before ssu
@ 2022-10-11  2:16 Ten Gao
  2022-10-11  3:39 ` kernel test robot
                   ` (2 more replies)
  0 siblings, 3 replies; 14+ messages in thread
From: Ten Gao @ 2022-10-11  2:16 UTC (permalink / raw)
  To: Alim Akhtar, Avri Altman, Bart Van Assche,
	James E . J . Bottomley, Bean Huo, Adrian Hunter
  Cc: linux-scsi, linux-kernel

From: Ten Gao <ten.gao@unisoc.com>

Ensure auto h8 will not hit dme h8,and there won't be two h8 in a row
after ssu.

Signed-off-by: Ten Gao <ten.gao@unisoc.com>
---
 drivers/ufs/core/ufshcd.c | 10 ++++++++++
 1 file changed, 10 insertions(+)

diff --git a/drivers/ufs/core/ufshcd.c b/drivers/ufs/core/ufshcd.c
index a202d7d5240d..42f93648d796 100644
--- a/drivers/ufs/core/ufshcd.c
+++ b/drivers/ufs/core/ufshcd.c
@@ -4256,6 +4256,14 @@ void ufshcd_auto_hibern8_update(struct ufs_hba *hba, u32 ahit)
 }
 EXPORT_SYMBOL_GPL(ufshcd_auto_hibern8_update);
 
+void ufshcd_auto_hibern8_disable(struct ufs_hba *hba)
+{
+	if (!ufshcd_is_auto_hibern8_supported(hba))
+		return;
+
+	ufshcd_writel(hba, 0, REG_AUTO_HIBERNATE_IDLE_TIMER);
+}
+
 void ufshcd_auto_hibern8_enable(struct ufs_hba *hba)
 {
 	if (!ufshcd_is_auto_hibern8_supported(hba))
@@ -9036,6 +9044,8 @@ static int __ufshcd_wl_suspend(struct ufs_hba *hba, enum ufs_pm_op pm_op)
 	if (ret)
 		goto enable_scaling;
 
+	ufshcd_auto_hibern8_disable(hba);
+
 	if (req_dev_pwr_mode != hba->curr_dev_pwr_mode) {
 		if (pm_op != UFS_RUNTIME_PM)
 			/* ensure that bkops is disabled */
-- 
2.17.1


^ permalink raw reply	[flat|nested] 14+ messages in thread

end of thread, other threads:[~2022-10-20 17:47 UTC | newest]

Thread overview: 14+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-10-11  2:16 [PATCH] ufs: core: Disable auto h8 before ssu Ten Gao
2022-10-11  3:39 ` kernel test robot
2022-10-11  7:07 ` Avri Altman
2022-10-11 11:53   ` 高严凯
2022-10-12  6:28     ` Avri Altman
2022-10-12  8:12       ` Avri Altman
2022-10-12  8:49         ` 高严凯
2022-10-12 14:25     ` Bean Huo
2022-10-14  2:44       ` 高严凯
2022-10-14  5:48         ` Bean Huo
2022-10-14 10:15           ` 高严凯
2022-10-20  5:15             ` 高严凯
2022-10-20 17:47               ` Bart Van Assche
2022-10-11  9:59 ` kernel test robot

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

Powered by JetHome