Commit d3ba622d authored by Bean Huo's avatar Bean Huo Committed by Martin K. Petersen

scsi: ufs: Cleanup WB buffer flush toggle implementation

Delete ufshcd_wb_buf_flush_enable() and ufshcd_wb_buf_flush_disable(). Move
the implementation into ufshcd_wb_toggle_flush().

Link: https://lore.kernel.org/r/20210121185736.12471-1-huobean@gmail.comReviewed-by: default avatarStanley Chu <stanley.chu@mediatek.com>
Reviewed-by: default avatarCan Guo <cang@codeaurora.org>
Signed-off-by: default avatarBean Huo <beanhuo@micron.com>
Signed-off-by: default avatarMartin K. Petersen <martin.petersen@oracle.com>
parent c750a9c9
...@@ -247,10 +247,8 @@ static int ufshcd_setup_vreg(struct ufs_hba *hba, bool on); ...@@ -247,10 +247,8 @@ static int ufshcd_setup_vreg(struct ufs_hba *hba, bool on);
static inline int ufshcd_config_vreg_hpm(struct ufs_hba *hba, static inline int ufshcd_config_vreg_hpm(struct ufs_hba *hba,
struct ufs_vreg *vreg); struct ufs_vreg *vreg);
static int ufshcd_try_to_abort_task(struct ufs_hba *hba, int tag); static int ufshcd_try_to_abort_task(struct ufs_hba *hba, int tag);
static int ufshcd_wb_buf_flush_enable(struct ufs_hba *hba);
static int ufshcd_wb_buf_flush_disable(struct ufs_hba *hba);
static int ufshcd_wb_toggle_flush_during_h8(struct ufs_hba *hba, bool set); static int ufshcd_wb_toggle_flush_during_h8(struct ufs_hba *hba, bool set);
static inline void ufshcd_wb_toggle_flush(struct ufs_hba *hba, bool enable); static inline int ufshcd_wb_toggle_flush(struct ufs_hba *hba, bool enable);
static void ufshcd_hba_vreg_set_lpm(struct ufs_hba *hba); static void ufshcd_hba_vreg_set_lpm(struct ufs_hba *hba);
static void ufshcd_hba_vreg_set_hpm(struct ufs_hba *hba); static void ufshcd_hba_vreg_set_hpm(struct ufs_hba *hba);
...@@ -5474,58 +5472,37 @@ static int ufshcd_wb_toggle_flush_during_h8(struct ufs_hba *hba, bool set) ...@@ -5474,58 +5472,37 @@ static int ufshcd_wb_toggle_flush_during_h8(struct ufs_hba *hba, bool set)
index, NULL); index, NULL);
} }
static inline void ufshcd_wb_toggle_flush(struct ufs_hba *hba, bool enable) static inline int ufshcd_wb_toggle_flush(struct ufs_hba *hba, bool enable)
{
if (enable)
ufshcd_wb_buf_flush_enable(hba);
else
ufshcd_wb_buf_flush_disable(hba);
}
static int ufshcd_wb_buf_flush_enable(struct ufs_hba *hba)
{ {
int ret; int ret;
u8 index; u8 index;
enum query_opcode opcode;
if (!ufshcd_is_wb_allowed(hba) || hba->dev_info.wb_buf_flush_enabled) if (!ufshcd_is_wb_allowed(hba) ||
hba->dev_info.wb_buf_flush_enabled == enable)
return 0; return 0;
index = ufshcd_wb_get_query_index(hba); if (enable)
ret = ufshcd_query_flag_retry(hba, UPIU_QUERY_OPCODE_SET_FLAG, opcode = UPIU_QUERY_OPCODE_SET_FLAG;
QUERY_FLAG_IDN_WB_BUFF_FLUSH_EN,
index, NULL);
if (ret)
dev_err(hba->dev, "%s WB - buf flush enable failed %d\n",
__func__, ret);
else else
hba->dev_info.wb_buf_flush_enabled = true; opcode = UPIU_QUERY_OPCODE_CLEAR_FLAG;
dev_dbg(hba->dev, "WB - Flush enabled: %d\n", ret);
return ret;
}
static int ufshcd_wb_buf_flush_disable(struct ufs_hba *hba)
{
int ret;
u8 index;
if (!ufshcd_is_wb_allowed(hba) || !hba->dev_info.wb_buf_flush_enabled)
return 0;
index = ufshcd_wb_get_query_index(hba); index = ufshcd_wb_get_query_index(hba);
ret = ufshcd_query_flag_retry(hba, UPIU_QUERY_OPCODE_CLEAR_FLAG, ret = ufshcd_query_flag_retry(hba, opcode,
QUERY_FLAG_IDN_WB_BUFF_FLUSH_EN, QUERY_FLAG_IDN_WB_BUFF_FLUSH_EN, index,
index, NULL); NULL);
if (ret) { if (ret) {
dev_warn(hba->dev, "%s: WB - buf flush disable failed %d\n", dev_err(hba->dev, "%s WB-Buf Flush %s failed %d\n", __func__,
__func__, ret); enable ? "enable" : "disable", ret);
} else { goto out;
hba->dev_info.wb_buf_flush_enabled = false;
dev_dbg(hba->dev, "WB - Flush disabled: %d\n", ret);
} }
hba->dev_info.wb_buf_flush_enabled = enable;
dev_dbg(hba->dev, "WB-Buf Flush %s\n", enable ? "enabled" : "disabled");
out:
return ret; return ret;
} }
static bool ufshcd_wb_presrv_usrspc_keep_vcc_on(struct ufs_hba *hba, static bool ufshcd_wb_presrv_usrspc_keep_vcc_on(struct ufs_hba *hba,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment