linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH RESEND] scsi: ufs: Add checking lifetime attribute for WriteBooster
       [not found] <CGME20220126104125epcms2p50afb250190ffc3f2dc7b16df31757c94@epcms2p3>
@ 2022-01-27  3:00 ` Jinyoung CHOI
  2022-01-28 16:05   ` Asutosh Das
                     ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: Jinyoung CHOI @ 2022-01-27  3:00 UTC (permalink / raw)
  To: ALIM AKHTAR, avri.altman, jejb, martin.petersen, bvanassche,
	cang, adrian.hunter, asutoshd, linux-scsi, linux-kernel, huobean

Because WB performs write in SLC mode, it is difficult to use WB
infinitely.

Vendors can set the Lifetime limit value to the device.
If Lifetime exceeds the limit value, the device itself can disable the
WB feature.

WB feature supports "bWriteBoosterBufferLifeTimeEst (IDN = 1E)" attribute.

With Lifetime exceeding the limit value,
the current driver continuously performs the following query.

	- Write Flag: WB_ENABLE / DISABLE
	- Read attr: Available Buffer Size
	- Read attr: Current Buffer Size

This patch recognizes that WriteBooster is no longer supported by the device,
and prevent unnecessary query issues.

Signed-off-by: Jinyoung Choi <j-young.choi@samsung.com>
---
 drivers/scsi/ufs/ufs.h    |  6 +++++
 drivers/scsi/ufs/ufshcd.c | 52 +++++++++++++++++++++++++++++++++++++++
 2 files changed, 58 insertions(+)

diff --git a/drivers/scsi/ufs/ufs.h b/drivers/scsi/ufs/ufs.h
index 0bfdca3e648e..4a00c24a3209 100644
--- a/drivers/scsi/ufs/ufs.h
+++ b/drivers/scsi/ufs/ufs.h
@@ -43,6 +43,12 @@
 /* WriteBooster buffer is available only for the logical unit from 0 to 7 */
 #define UFS_UPIU_MAX_WB_LUN_ID	8
 
+/*
+ * WriteBooster buffer lifetime has a limit setted by vendor.
+ * If it is over the limit, WriteBooster feature will be disabled.
+ */
+#define UFS_WB_EXCEED_LIFETIME		0x0B
+
 /* Well known logical unit id in LUN field of UPIU */
 enum {
 	UFS_UPIU_REPORT_LUNS_WLUN	= 0x81,
diff --git a/drivers/scsi/ufs/ufshcd.c b/drivers/scsi/ufs/ufshcd.c
index 460d2b440d2e..41d85b69fa50 100644
--- a/drivers/scsi/ufs/ufshcd.c
+++ b/drivers/scsi/ufs/ufshcd.c
@@ -5778,6 +5778,47 @@ static bool ufshcd_wb_presrv_usrspc_keep_vcc_on(struct ufs_hba *hba,
 	return false;
 }
 
+static void ufshcd_wb_force_disable(struct ufs_hba *hba)
+{
+	if (!(hba->quirks & UFSHCI_QUIRK_SKIP_MANUAL_WB_FLUSH_CTRL))
+		ufshcd_wb_toggle_flush(hba, false);
+
+	ufshcd_wb_toggle_flush_during_h8(hba, false);
+	ufshcd_wb_toggle(hba, false);
+	hba->caps &= ~UFSHCD_CAP_WB_EN;
+
+	dev_info(hba->dev, "%s: WB force disabled\n", __func__);
+}
+
+static bool ufshcd_is_wb_buf_lifetime_available(struct ufs_hba *hba)
+{
+	u32 lifetime;
+	int ret;
+	u8 index;
+
+	index = ufshcd_wb_get_query_index(hba);
+	ret = ufshcd_query_attr_retry(hba, UPIU_QUERY_OPCODE_READ_ATTR,
+				      QUERY_ATTR_IDN_WB_BUFF_LIFE_TIME_EST,
+				      index, 0, &lifetime);
+	if (ret) {
+		dev_err(hba->dev,
+			"%s: bWriteBoosterBufferLifeTimeEst read failed %d\n",
+			__func__, ret);
+		return false;
+	}
+
+	if (lifetime == UFS_WB_EXCEED_LIFETIME) {
+		dev_err(hba->dev, "%s: WB buf lifetime is exhausted 0x%02X\n",
+			__func__, lifetime);
+		return false;
+	}
+
+	dev_dbg(hba->dev, "%s: WB buf lifetime is 0x%02X\n",
+		__func__, lifetime);
+
+	return true;
+}
+
 static bool ufshcd_wb_need_flush(struct ufs_hba *hba)
 {
 	int ret;
@@ -5786,6 +5827,12 @@ static bool ufshcd_wb_need_flush(struct ufs_hba *hba)
 
 	if (!ufshcd_is_wb_allowed(hba))
 		return false;
+
+	if (!ufshcd_is_wb_buf_lifetime_available(hba)) {
+		ufshcd_wb_force_disable(hba);
+		return false;
+	}
+
 	/*
 	 * The ufs device needs the vcc to be ON to flush.
 	 * With user-space reduction enabled, it's enough to enable flush
@@ -7486,6 +7533,7 @@ static void ufshcd_wb_probe(struct ufs_hba *hba, u8 *desc_buf)
 
 	if (!ufshcd_is_wb_allowed(hba))
 		return;
+
 	/*
 	 * Probe WB only for UFS-2.2 and UFS-3.1 (and later) devices or
 	 * UFS devices with quirk UFS_DEVICE_QUIRK_SUPPORT_EXTENDED_FEATURES
@@ -7537,6 +7585,10 @@ static void ufshcd_wb_probe(struct ufs_hba *hba, u8 *desc_buf)
 		if (!d_lu_wb_buf_alloc)
 			goto wb_disabled;
 	}
+
+	if (!ufshcd_is_wb_buf_lifetime_available(hba))
+		goto wb_disabled;
+
 	return;
 
 wb_disabled:
-- 
2.25.1

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

* Re: [PATCH RESEND] scsi: ufs: Add checking lifetime attribute for WriteBooster
  2022-01-27  3:00 ` [PATCH RESEND] scsi: ufs: Add checking lifetime attribute for WriteBooster Jinyoung CHOI
@ 2022-01-28 16:05   ` Asutosh Das
  2022-01-28 16:15   ` Avri Altman
                     ` (2 subsequent siblings)
  3 siblings, 0 replies; 5+ messages in thread
From: Asutosh Das @ 2022-01-28 16:05 UTC (permalink / raw)
  To: Jinyoung CHOI
  Cc: ALIM AKHTAR, avri.altman, jejb, martin.petersen, bvanassche,
	cang, adrian.hunter, asutoshd, linux-scsi, linux-kernel, huobean

On Thu, Jan 27 2022 at 19:07 -0800, Jinyoung CHOI wrote:
>Because WB performs write in SLC mode, it is difficult to use WB
>infinitely.
>
>Vendors can set the Lifetime limit value to the device.
>If Lifetime exceeds the limit value, the device itself can disable the
>WB feature.
>
>WB feature supports "bWriteBoosterBufferLifeTimeEst (IDN = 1E)" attribute.
>
>With Lifetime exceeding the limit value,
>the current driver continuously performs the following query.
>
>	- Write Flag: WB_ENABLE / DISABLE
>	- Read attr: Available Buffer Size
>	- Read attr: Current Buffer Size
>
>This patch recognizes that WriteBooster is no longer supported by the device,
>and prevent unnecessary query issues.
>
>Signed-off-by: Jinyoung Choi <j-young.choi@samsung.com>
>---

LGTM.

Reviewed-by: Asutosh Das <quic_asutoshd@quicinc.com>

> drivers/scsi/ufs/ufs.h    |  6 +++++
> drivers/scsi/ufs/ufshcd.c | 52 +++++++++++++++++++++++++++++++++++++++
> 2 files changed, 58 insertions(+)
>
>diff --git a/drivers/scsi/ufs/ufs.h b/drivers/scsi/ufs/ufs.h
>index 0bfdca3e648e..4a00c24a3209 100644
>--- a/drivers/scsi/ufs/ufs.h
>+++ b/drivers/scsi/ufs/ufs.h
>@@ -43,6 +43,12 @@
> /* WriteBooster buffer is available only for the logical unit from 0 to 7 */
> #define UFS_UPIU_MAX_WB_LUN_ID	8
>
>+/*
>+ * WriteBooster buffer lifetime has a limit setted by vendor.
>+ * If it is over the limit, WriteBooster feature will be disabled.
>+ */
>+#define UFS_WB_EXCEED_LIFETIME		0x0B
>+
> /* Well known logical unit id in LUN field of UPIU */
> enum {
> 	UFS_UPIU_REPORT_LUNS_WLUN	= 0x81,
>diff --git a/drivers/scsi/ufs/ufshcd.c b/drivers/scsi/ufs/ufshcd.c
>index 460d2b440d2e..41d85b69fa50 100644
>--- a/drivers/scsi/ufs/ufshcd.c
>+++ b/drivers/scsi/ufs/ufshcd.c
>@@ -5778,6 +5778,47 @@ static bool ufshcd_wb_presrv_usrspc_keep_vcc_on(struct ufs_hba *hba,
> 	return false;
> }
>
>+static void ufshcd_wb_force_disable(struct ufs_hba *hba)
>+{
>+	if (!(hba->quirks & UFSHCI_QUIRK_SKIP_MANUAL_WB_FLUSH_CTRL))
>+		ufshcd_wb_toggle_flush(hba, false);
>+
>+	ufshcd_wb_toggle_flush_during_h8(hba, false);
>+	ufshcd_wb_toggle(hba, false);
>+	hba->caps &= ~UFSHCD_CAP_WB_EN;
>+
>+	dev_info(hba->dev, "%s: WB force disabled\n", __func__);
>+}
>+
>+static bool ufshcd_is_wb_buf_lifetime_available(struct ufs_hba *hba)
>+{
>+	u32 lifetime;
>+	int ret;
>+	u8 index;
>+
>+	index = ufshcd_wb_get_query_index(hba);
>+	ret = ufshcd_query_attr_retry(hba, UPIU_QUERY_OPCODE_READ_ATTR,
>+				      QUERY_ATTR_IDN_WB_BUFF_LIFE_TIME_EST,
>+				      index, 0, &lifetime);
>+	if (ret) {
>+		dev_err(hba->dev,
>+			"%s: bWriteBoosterBufferLifeTimeEst read failed %d\n",
>+			__func__, ret);
>+		return false;
>+	}
>+
>+	if (lifetime == UFS_WB_EXCEED_LIFETIME) {
>+		dev_err(hba->dev, "%s: WB buf lifetime is exhausted 0x%02X\n",
>+			__func__, lifetime);
>+		return false;
>+	}
>+
>+	dev_dbg(hba->dev, "%s: WB buf lifetime is 0x%02X\n",
>+		__func__, lifetime);
>+
>+	return true;
>+}
>+
> static bool ufshcd_wb_need_flush(struct ufs_hba *hba)
> {
> 	int ret;
>@@ -5786,6 +5827,12 @@ static bool ufshcd_wb_need_flush(struct ufs_hba *hba)
>
> 	if (!ufshcd_is_wb_allowed(hba))
> 		return false;
>+
>+	if (!ufshcd_is_wb_buf_lifetime_available(hba)) {
>+		ufshcd_wb_force_disable(hba);
>+		return false;
>+	}
>+
> 	/*
> 	 * The ufs device needs the vcc to be ON to flush.
> 	 * With user-space reduction enabled, it's enough to enable flush
>@@ -7486,6 +7533,7 @@ static void ufshcd_wb_probe(struct ufs_hba *hba, u8 *desc_buf)
>
> 	if (!ufshcd_is_wb_allowed(hba))
> 		return;
>+
> 	/*
> 	 * Probe WB only for UFS-2.2 and UFS-3.1 (and later) devices or
> 	 * UFS devices with quirk UFS_DEVICE_QUIRK_SUPPORT_EXTENDED_FEATURES
>@@ -7537,6 +7585,10 @@ static void ufshcd_wb_probe(struct ufs_hba *hba, u8 *desc_buf)
> 		if (!d_lu_wb_buf_alloc)
> 			goto wb_disabled;
> 	}
>+
>+	if (!ufshcd_is_wb_buf_lifetime_available(hba))
>+		goto wb_disabled;
>+
> 	return;
>
> wb_disabled:
>-- 
>2.25.1

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

* RE: [PATCH RESEND] scsi: ufs: Add checking lifetime attribute for WriteBooster
  2022-01-27  3:00 ` [PATCH RESEND] scsi: ufs: Add checking lifetime attribute for WriteBooster Jinyoung CHOI
  2022-01-28 16:05   ` Asutosh Das
@ 2022-01-28 16:15   ` Avri Altman
  2022-01-31 21:45   ` Martin K. Petersen
  2022-02-08  4:52   ` Martin K. Petersen
  3 siblings, 0 replies; 5+ messages in thread
From: Avri Altman @ 2022-01-28 16:15 UTC (permalink / raw)
  To: j-young.choi, ALIM AKHTAR, jejb, martin.petersen, bvanassche,
	cang, adrian.hunter, asutoshd, linux-scsi, linux-kernel, huobean

> Because WB performs write in SLC mode, it is difficult to use WB infinitely.
> 
> Vendors can set the Lifetime limit value to the device.
> If Lifetime exceeds the limit value, the device itself can disable the WB feature.
> 
> WB feature supports "bWriteBoosterBufferLifeTimeEst (IDN = 1E)" attribute.
> 
> With Lifetime exceeding the limit value, the current driver continuously performs
> the following query.
> 
>         - Write Flag: WB_ENABLE / DISABLE
>         - Read attr: Available Buffer Size
>         - Read attr: Current Buffer Size
> 
> This patch recognizes that WriteBooster is no longer supported by the device,
> and prevent unnecessary query issues.
> 
> Signed-off-by: Jinyoung Choi <j-young.choi@samsung.com>
Acked-by: Avri Altman <avri.altman@wdc.com>

> ---
>  drivers/scsi/ufs/ufs.h    |  6 +++++
>  drivers/scsi/ufs/ufshcd.c | 52 +++++++++++++++++++++++++++++++++++++++
>  2 files changed, 58 insertions(+)
> 
> diff --git a/drivers/scsi/ufs/ufs.h b/drivers/scsi/ufs/ufs.h index
> 0bfdca3e648e..4a00c24a3209 100644
> --- a/drivers/scsi/ufs/ufs.h
> +++ b/drivers/scsi/ufs/ufs.h
> @@ -43,6 +43,12 @@
>  /* WriteBooster buffer is available only for the logical unit from 0 to 7 */
> #define UFS_UPIU_MAX_WB_LUN_ID 8
> 
> +/*
> + * WriteBooster buffer lifetime has a limit setted by vendor.
> + * If it is over the limit, WriteBooster feature will be disabled.
> + */
> +#define UFS_WB_EXCEED_LIFETIME         0x0B
> +
>  /* Well known logical unit id in LUN field of UPIU */  enum {
>         UFS_UPIU_REPORT_LUNS_WLUN       = 0x81,
> diff --git a/drivers/scsi/ufs/ufshcd.c b/drivers/scsi/ufs/ufshcd.c index
> 460d2b440d2e..41d85b69fa50 100644
> --- a/drivers/scsi/ufs/ufshcd.c
> +++ b/drivers/scsi/ufs/ufshcd.c
> @@ -5778,6 +5778,47 @@ static bool
> ufshcd_wb_presrv_usrspc_keep_vcc_on(struct ufs_hba *hba,
>         return false;
>  }
> 
> +static void ufshcd_wb_force_disable(struct ufs_hba *hba) {
> +       if (!(hba->quirks & UFSHCI_QUIRK_SKIP_MANUAL_WB_FLUSH_CTRL))
> +               ufshcd_wb_toggle_flush(hba, false);
> +
> +       ufshcd_wb_toggle_flush_during_h8(hba, false);
> +       ufshcd_wb_toggle(hba, false);
> +       hba->caps &= ~UFSHCD_CAP_WB_EN;
> +
> +       dev_info(hba->dev, "%s: WB force disabled\n", __func__); }
> +
> +static bool ufshcd_is_wb_buf_lifetime_available(struct ufs_hba *hba) {
> +       u32 lifetime;
> +       int ret;
> +       u8 index;
> +
> +       index = ufshcd_wb_get_query_index(hba);
> +       ret = ufshcd_query_attr_retry(hba, UPIU_QUERY_OPCODE_READ_ATTR,
> +                                     QUERY_ATTR_IDN_WB_BUFF_LIFE_TIME_EST,
> +                                     index, 0, &lifetime);
> +       if (ret) {
> +               dev_err(hba->dev,
> +                       "%s: bWriteBoosterBufferLifeTimeEst read failed %d\n",
> +                       __func__, ret);
> +               return false;
> +       }
> +
> +       if (lifetime == UFS_WB_EXCEED_LIFETIME) {
> +               dev_err(hba->dev, "%s: WB buf lifetime is exhausted 0x%02X\n",
> +                       __func__, lifetime);
> +               return false;
> +       }
> +
> +       dev_dbg(hba->dev, "%s: WB buf lifetime is 0x%02X\n",
> +               __func__, lifetime);
> +
> +       return true;
> +}
> +
>  static bool ufshcd_wb_need_flush(struct ufs_hba *hba)  {
>         int ret;
> @@ -5786,6 +5827,12 @@ static bool ufshcd_wb_need_flush(struct ufs_hba
> *hba)
> 
>         if (!ufshcd_is_wb_allowed(hba))
>                 return false;
> +
> +       if (!ufshcd_is_wb_buf_lifetime_available(hba)) {
> +               ufshcd_wb_force_disable(hba);
> +               return false;
> +       }
> +
>         /*
>          * The ufs device needs the vcc to be ON to flush.
>          * With user-space reduction enabled, it's enough to enable flush @@ -
> 7486,6 +7533,7 @@ static void ufshcd_wb_probe(struct ufs_hba *hba, u8
> *desc_buf)
> 
>         if (!ufshcd_is_wb_allowed(hba))
>                 return;
> +
>         /*
>          * Probe WB only for UFS-2.2 and UFS-3.1 (and later) devices or
>          * UFS devices with quirk
> UFS_DEVICE_QUIRK_SUPPORT_EXTENDED_FEATURES
> @@ -7537,6 +7585,10 @@ static void ufshcd_wb_probe(struct ufs_hba *hba,
> u8 *desc_buf)
>                 if (!d_lu_wb_buf_alloc)
>                         goto wb_disabled;
>         }
> +
> +       if (!ufshcd_is_wb_buf_lifetime_available(hba))
> +               goto wb_disabled;
> +
>         return;
> 
>  wb_disabled:
> --
> 2.25.1

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

* Re: [PATCH RESEND] scsi: ufs: Add checking lifetime attribute for WriteBooster
  2022-01-27  3:00 ` [PATCH RESEND] scsi: ufs: Add checking lifetime attribute for WriteBooster Jinyoung CHOI
  2022-01-28 16:05   ` Asutosh Das
  2022-01-28 16:15   ` Avri Altman
@ 2022-01-31 21:45   ` Martin K. Petersen
  2022-02-08  4:52   ` Martin K. Petersen
  3 siblings, 0 replies; 5+ messages in thread
From: Martin K. Petersen @ 2022-01-31 21:45 UTC (permalink / raw)
  To: Jinyoung CHOI
  Cc: ALIM AKHTAR, avri.altman, jejb, martin.petersen, bvanassche,
	cang, adrian.hunter, asutoshd, linux-scsi, linux-kernel, huobean


Jinyoung,

> Because WB performs write in SLC mode, it is difficult to use WB
> infinitely.

Applied to 5.18/scsi-staging, thanks!

-- 
Martin K. Petersen	Oracle Linux Engineering

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

* Re: [PATCH RESEND] scsi: ufs: Add checking lifetime attribute for WriteBooster
  2022-01-27  3:00 ` [PATCH RESEND] scsi: ufs: Add checking lifetime attribute for WriteBooster Jinyoung CHOI
                     ` (2 preceding siblings ...)
  2022-01-31 21:45   ` Martin K. Petersen
@ 2022-02-08  4:52   ` Martin K. Petersen
  3 siblings, 0 replies; 5+ messages in thread
From: Martin K. Petersen @ 2022-02-08  4:52 UTC (permalink / raw)
  To: ALIM AKHTAR, avri.altman, jejb, huobean, linux-scsi, asutoshd,
	bvanassche, cang, Jinyoung CHOI, linux-kernel, adrian.hunter
  Cc: Martin K . Petersen

On Thu, 27 Jan 2022 12:00:25 +0900, Jinyoung CHOI wrote:

> Because WB performs write in SLC mode, it is difficult to use WB
> infinitely.
> 
> Vendors can set the Lifetime limit value to the device.
> If Lifetime exceeds the limit value, the device itself can disable the
> WB feature.
> 
> [...]

Applied to 5.18/scsi-queue, thanks!

[1/1] scsi: ufs: Add checking lifetime attribute for WriteBooster
      https://git.kernel.org/mkp/scsi/c/f681d1078d45

-- 
Martin K. Petersen	Oracle Linux Engineering

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

end of thread, other threads:[~2022-02-08  5:33 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <CGME20220126104125epcms2p50afb250190ffc3f2dc7b16df31757c94@epcms2p3>
2022-01-27  3:00 ` [PATCH RESEND] scsi: ufs: Add checking lifetime attribute for WriteBooster Jinyoung CHOI
2022-01-28 16:05   ` Asutosh Das
2022-01-28 16:15   ` Avri Altman
2022-01-31 21:45   ` Martin K. Petersen
2022-02-08  4:52   ` Martin K. Petersen

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).