All of lore.kernel.org
 help / color / mirror / Atom feed
From: Can Guo <can.guo@oss.qualcomm.com>
To: "Peter Wang (王信友)" <peter.wang@mediatek.com>,
	"beanhuo@micron.com" <beanhuo@micron.com>,
	"mani@kernel.org" <mani@kernel.org>,
	"avri.altman@wdc.com" <avri.altman@wdc.com>,
	"bvanassche@acm.org" <bvanassche@acm.org>,
	"martin.petersen@oracle.com" <martin.petersen@oracle.com>
Cc: "linux-scsi@vger.kernel.org" <linux-scsi@vger.kernel.org>,
	"adrian.hunter@intel.com" <adrian.hunter@intel.com>,
	"alim.akhtar@samsung.com" <alim.akhtar@samsung.com>,
	"James.Bottomley@HansenPartnership.com"
	<James.Bottomley@HansenPartnership.com>,
	"quic_nguyenb@quicinc.com" <quic_nguyenb@quicinc.com>,
	"linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>
Subject: Re: [PATCH v4 04/12] scsi: ufs: core: Add support for TX Equalization
Date: Tue, 24 Mar 2026 18:09:17 +0800	[thread overview]
Message-ID: <1a038159-c847-4e58-a60c-cd5ecabeeed9@oss.qualcomm.com> (raw)
In-Reply-To: <bf904a137c1a3b8f6ec0dd712e15611155ce3e11.camel@mediatek.com>

Hi Peter,

On 3/24/2026 3:46 PM, Peter Wang (王信友) wrote:
>
> On Fri, 2026-03-20 at 20:10 -0700, Can Guo wrote:
> > +static int ufshcd_tx_eqtr(struct ufs_hba *hba,
> > +                         struct ufshcd_tx_eq_params *params,
> > +                         struct ufs_pa_layer_attr *pwr_mode)
> > +{
> > +       struct ufs_pa_layer_attr old_pwr_info;
> > +       u32 gear = pwr_mode->gear_tx;
> > +       int ret;
> > +
> > +       if (gear < UFS_HS_G4 || gear > UFS_HS_G6) {
> > +               dev_err(hba->dev, "TX EQTR is not implemented for HS-
> > G%u\n",
> > +                       gear);
> > +               return -EINVAL;
> > +       }
> > 
>
> Hi Can,
>
> This check can be removed since ufshcd_config_tx_eq_settings
> has already checked it.
OK.
>
>
> > +       params = &hba->tx_eq_params[gear - 1];
> > +
> > +       if (gear < UFS_HS_G1 || gear > UFS_HS_GEAR_MAX) {
> > +               dev_err(hba->dev, "Invalid HS-Gear (%u) for TX
> > Equalization\n",
> > +                       gear);
> > +               return -EINVAL;
> > +       } else if (gear < adaptive_txeq_gear) {
> > +               return 0;
> > +       }
> > 
>
> "gear" should be checked before use?
I don't understand this comment.
>
> > +       /* TX EQTR is supported for HS-G4 and higher Gears */
> > +       if (gear < UFS_HS_G4)
> > +               goto apply_tx_eq_settings;
> > +
>
> Could we return 0 directly?
> and move this to the previous check, like this:
> } else if (gear < max_t(u32, adaptive_txeq_gear, UFS_HS_G4) {
> return 0;
> }
Sounds good.

Thanks,
Can Guo.
>
> Thanks
> Peter
>
> ************* MEDIATEK Confidentiality Notice
>   ********************
> The information contained in this e-mail message (including any
> attachments) may be confidential, proprietary, privileged, or otherwise
> exempt from disclosure under applicable laws. It is intended to be
> conveyed only to the designated recipient(s). Any use, dissemination,
> distribution, printing, retaining or copying of this e-mail (including its
> attachments) by unintended recipient(s) is strictly prohibited and may
> be unlawful. If you are not an intended recipient of this e-mail, or believe
>   
> that you have received this e-mail in error, please notify the sender
> immediately (by replying to this e-mail), delete any and all copies of
> this e-mail (including any attachments) from your system, and do not
> disclose the content of this e-mail to any other person. Thank you!


  reply	other threads:[~2026-03-24 10:09 UTC|newest]

Thread overview: 35+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-03-21  3:10 [PATCH v4 00/12] scsi: ufs: Add TX Equalization support for UFS 5.0 Can Guo
2026-03-21  3:10 ` [PATCH v4 01/12] scsi: ufs: core: Introduce a new ufshcd vops negotiate_pwr_mode() Can Guo
2026-03-23  9:10   ` Bean Huo
2026-03-21  3:10 ` [PATCH v4 02/12] scsi: ufs: core: Pass force_pmc to ufshcd_config_pwr_mode() as a parameter Can Guo
2026-03-23  9:11   ` Bean Huo
2026-03-21  3:10 ` [PATCH v4 03/12] scsi: ufs: core: Add UFS_HS_G6 and UFS_HS_GEAR_MAX to enum ufs_hs_gear_tag Can Guo
2026-03-23  9:11   ` Bean Huo
2026-03-21  3:10 ` [PATCH v4 04/12] scsi: ufs: core: Add support for TX Equalization Can Guo
2026-03-22  9:48   ` Bean Huo
2026-03-22 14:26     ` Bean Huo
2026-03-23  6:05       ` Can Guo
2026-03-23  9:15   ` Bean Huo
2026-03-24  7:46   ` Peter Wang (王信友)
2026-03-24 10:09     ` Can Guo [this message]
2026-03-24 11:54       ` Peter Wang (王信友)
2026-03-24 12:32         ` Can Guo
2026-03-21  3:10 ` [PATCH v4 05/12] scsi: ufs: core: Add debugfs entries for TX Equalization params Can Guo
2026-03-23  9:16   ` Bean Huo
2026-03-21  3:10 ` [PATCH v4 06/12] scsi: ufs: core: Add helpers to pause and resume command processing Can Guo
2026-03-23  9:17   ` Bean Huo
2026-03-21  3:10 ` [PATCH v4 07/12] scsi: ufs: core: Add support to retrain TX Equalization via debugfs Can Guo
2026-03-22 13:36   ` Bean Huo
2026-03-23  6:13     ` Can Guo
2026-03-23  9:21   ` Bean Huo
2026-03-21  3:10 ` [PATCH v4 08/12] scsi: ufs: ufs-qcom: Fixup PAM-4 TX L0_L1_L2_L3 adaptation pattern length Can Guo
2026-03-23  9:22   ` Bean Huo
2026-03-21  3:10 ` [PATCH v4 09/12] scsi: ufs: ufs-qcom: Implement vops tx_eqtr_notify() Can Guo
2026-03-23  9:23   ` Bean Huo
2026-03-21  3:10 ` [PATCH v4 10/12] scsi: ufs: ufs-qcom: Implement vops get_rx_fom() Can Guo
2026-03-23  9:24   ` Bean Huo
2026-03-21  3:10 ` [PATCH v4 11/12] scsi: ufs: ufs-qcom: Implement vops apply_tx_eqtr_settings() Can Guo
2026-03-23  9:24   ` Bean Huo
2026-03-21  3:10 ` [PATCH v4 12/12] scsi: ufs: ufs-qcom: Enable TX Equalization Can Guo
2026-03-23  9:25   ` Bean Huo
2026-03-23 16:50 ` [PATCH v4 00/12] scsi: ufs: Add TX Equalization support for UFS 5.0 Bart Van Assche

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1a038159-c847-4e58-a60c-cd5ecabeeed9@oss.qualcomm.com \
    --to=can.guo@oss.qualcomm.com \
    --cc=James.Bottomley@HansenPartnership.com \
    --cc=adrian.hunter@intel.com \
    --cc=alim.akhtar@samsung.com \
    --cc=avri.altman@wdc.com \
    --cc=beanhuo@micron.com \
    --cc=bvanassche@acm.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-scsi@vger.kernel.org \
    --cc=mani@kernel.org \
    --cc=martin.petersen@oracle.com \
    --cc=peter.wang@mediatek.com \
    --cc=quic_nguyenb@quicinc.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.