From: Bjorn Andersson <bjorn.andersson@linaro.org>
To: Can Guo <cang@codeaurora.org>
Cc: nguyenb@codeaurora.org, Alim Akhtar <alim.akhtar@samsung.com>,
kwmad.kim@samsung.com, Bean Huo <beanhuo@micron.com>,
Satya Tangirala <satyat@google.com>,
vinholikatti@gmail.com, jejb@linux.vnet.ibm.com,
Bart Van Assche <bvanassche@acm.org>,
linux-scsi@vger.kernel.org, Ziqi Chen <ziqichen@codeaurora.org>,
Andy Gross <agross@kernel.org>,
kernel-team@android.com, salyzyn@google.com,
"open list:ARM/QUALCOMM SUPPORT" <linux-arm-msm@vger.kernel.org>,
"James E.J. Bottomley" <jejb@linux.ibm.com>,
Avri Altman <avri.altman@wdc.com>,
"moderated list:UNIVERSAL FLASH STORAGE HOST CONTROLLER
DRIVER..." <linux-mediatek@lists.infradead.org>,
Matthias Brugger <matthias.bgg@gmail.com>,
stanley.chu@mediatek.com,
"moderated list:ARM/Mediatek SoC support"
<linux-arm-kernel@lists.infradead.org>,
rnayak@codeaurora.org, saravanak@google.com,
martin.petersen@oracle.com,
Adrian Hunter <adrian.hunter@intel.com>,
open list <linux-kernel@vger.kernel.org>,
hongwus@codeaurora.org, asutoshd@codeaurora.org
Subject: Re: [PATCH RFC v4 1/1] scsi: ufs: Fix ufs power down/on specs violation
Date: Mon, 4 Jan 2021 12:59:00 -0600 [thread overview]
Message-ID: <X/NldGPnKeY0c2uO@builder.lan> (raw)
In-Reply-To: <182321abfc98e0cfca071d1ec1255f6d@codeaurora.org>
On Mon 28 Dec 19:48 CST 2020, Can Guo wrote:
> On 2020-12-29 09:18, Can Guo wrote:
> > On 2020-12-29 01:55, Bjorn Andersson wrote:
> > > On Tue 22 Dec 07:49 CST 2020, Ziqi Chen wrote:
> > >
> > > > As per specs, e.g, JESD220E chapter 7.2, while powering
> > > > off/on the ufs device, RST_N signal and REF_CLK signal
> > > > should be between VSS(Ground) and VCCQ/VCCQ2.
> > > >
> > > > To flexibly control device reset line, refactor the function
> > > > ufschd_vops_device_reset(sturct ufs_hba *hba) to ufshcd_
> > > > vops_device_reset(sturct ufs_hba *hba, bool asserted). The
> > > > new parameter "bool asserted" is used to separate device reset
> > > > line pulling down from pulling up.
> > > >
> > > > Cc: Kiwoong Kim <kwmad.kim@samsung.com>
> > > > Cc: Stanley Chu <stanley.chu@mediatek.com>
> > > > Signed-off-by: Ziqi Chen <ziqichen@codeaurora.org>
> > > > ---
> > > > drivers/scsi/ufs/ufs-mediatek.c | 32
> > > > ++++++++++++++++----------------
> > > > drivers/scsi/ufs/ufs-qcom.c | 24 +++++++++++++++---------
> > > > drivers/scsi/ufs/ufshcd.c | 36
> > > > +++++++++++++++++++++++++-----------
> > > > drivers/scsi/ufs/ufshcd.h | 8 ++++----
> > > > 4 files changed, 60 insertions(+), 40 deletions(-)
> > > >
> > > > diff --git a/drivers/scsi/ufs/ufs-mediatek.c
> > > > b/drivers/scsi/ufs/ufs-mediatek.c
> > > > index 80618af..072f4db 100644
> > > > --- a/drivers/scsi/ufs/ufs-mediatek.c
> > > > +++ b/drivers/scsi/ufs/ufs-mediatek.c
> > > > @@ -841,27 +841,27 @@ static int
> > > > ufs_mtk_link_startup_notify(struct ufs_hba *hba,
> > > > return ret;
> > > > }
> > > >
> > > > -static int ufs_mtk_device_reset(struct ufs_hba *hba)
> > > > +static int ufs_mtk_device_reset(struct ufs_hba *hba, bool asserted)
> > > > {
> > > > struct arm_smccc_res res;
> > > >
> > > > - ufs_mtk_device_reset_ctrl(0, res);
> > > > + if (asserted) {
> > > > + ufs_mtk_device_reset_ctrl(0, res);
> > > >
> > > > - /*
> > > > - * The reset signal is active low. UFS devices shall detect
> > > > - * more than or equal to 1us of positive or negative RST_n
> > > > - * pulse width.
> > > > - *
> > > > - * To be on safe side, keep the reset low for at least 10us.
> > > > - */
> > > > - usleep_range(10, 15);
> > > > -
> > > > - ufs_mtk_device_reset_ctrl(1, res);
> > > > -
> > > > - /* Some devices may need time to respond to rst_n */
> > > > - usleep_range(10000, 15000);
> > > > + /*
> > > > + * The reset signal is active low. UFS devices shall detect
> > > > + * more than or equal to 1us of positive or negative RST_n
> > > > + * pulse width.
> > > > + *
> > > > + * To be on safe side, keep the reset low for at least 10us.
> > > > + */
> > > > + usleep_range(10, 15);
> > >
> > > I see no point in allowing vendors to "tweak" the 1us->10us
> > > adjustment.
> > > The specification says 1us and we all agree that 10us gives us good
> > > enough slack. I.e. this is common code.
> >
> > Hi Bjron,
> >
> > We tried, but Samsung fellows wanted 5us. We couldn't get a agreement
> > on this delay in short term, so we chose to leave it in vops.
> >
> > >
> > > > + } else {
> > > > + ufs_mtk_device_reset_ctrl(1, res);
> > > >
> > > > - dev_info(hba->dev, "device reset done\n");
> > > > + /* Some devices may need time to respond to rst_n */
> > > > + usleep_range(10000, 15000);
> > >
> > > The comment in both the Qualcomm and Mediatek drivers claim that
> > > this is
> > > sleep relates to the UFS device (not host), so why should it be
> > > different?
> > >
> > > What happens if I take the device that Mediatek see a need for a 10ms
> > > delay and hook that up to a Qualcomm host? This really should go in
> > > the
> > > common code.
> > >
> >
> > Agree, but Qualcomm host didn't have any problems with 10us yet, so if
> > we put
> > the 10ms delay to common code, Qualcomm host would suffer longer delay
> > when
> > device reset happens - both bootup and resume(xpm_lvl = 5/6) latency
> > would
> > be increased.
> >
> > Regards,
> > Can Guo.
> >
>
> Besides, currently this device reset vops is only registered by ufs-qcom.c
> and ufs-mediatek.c, meaning any delays that we put in the common code are
> not
> necessary for those who do not have this vops registered, i.e ufs-exynos.c,
> ufs-hisi.c.
>
Surely we can detect this in the common code and only sleep if the vops
is implemented - and successfully deasserted the reset.
Regards,
Bjorn
_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel
next prev parent reply other threads:[~2021-01-04 19:00 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-12-22 13:49 [PATCH RFC v4 1/1] scsi: ufs: Fix ufs power down/on specs violation Ziqi Chen
2020-12-23 9:33 ` Stanley Chu
2020-12-23 20:45 ` Avri Altman
2020-12-28 17:55 ` Bjorn Andersson
[not found] ` <4c3035c418d0a0c4344be84fb1919314@codeaurora.org>
2021-01-04 18:57 ` Bjorn Andersson
[not found] ` <182321abfc98e0cfca071d1ec1255f6d@codeaurora.org>
2021-01-04 18:59 ` Bjorn Andersson [this message]
2021-01-04 9:15 ` Adrian Hunter
2021-01-04 18:55 ` Bjorn Andersson
2021-01-05 7:16 ` Adrian Hunter
[not found] ` <ff2c3c4379cb8bc41580d5615b01f86a@codeaurora.org>
2021-01-05 7:33 ` Adrian Hunter
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=X/NldGPnKeY0c2uO@builder.lan \
--to=bjorn.andersson@linaro.org \
--cc=adrian.hunter@intel.com \
--cc=agross@kernel.org \
--cc=alim.akhtar@samsung.com \
--cc=asutoshd@codeaurora.org \
--cc=avri.altman@wdc.com \
--cc=beanhuo@micron.com \
--cc=bvanassche@acm.org \
--cc=cang@codeaurora.org \
--cc=hongwus@codeaurora.org \
--cc=jejb@linux.ibm.com \
--cc=jejb@linux.vnet.ibm.com \
--cc=kernel-team@android.com \
--cc=kwmad.kim@samsung.com \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-arm-msm@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mediatek@lists.infradead.org \
--cc=linux-scsi@vger.kernel.org \
--cc=martin.petersen@oracle.com \
--cc=matthias.bgg@gmail.com \
--cc=nguyenb@codeaurora.org \
--cc=rnayak@codeaurora.org \
--cc=salyzyn@google.com \
--cc=saravanak@google.com \
--cc=satyat@google.com \
--cc=stanley.chu@mediatek.com \
--cc=vinholikatti@gmail.com \
--cc=ziqichen@codeaurora.org \
/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 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).