From: Ansuel Smith <ansuelsmth@gmail.com>
To: Vinod Koul <vkoul@kernel.org>
Cc: Andy Gross <agross@kernel.org>,
Bjorn Andersson <bjorn.andersson@linaro.org>,
Kishon Vijay Abraham I <kishon@ti.com>,
linux-arm-msm@vger.kernel.org, linux-phy@lists.infradead.org,
linux-kernel@vger.kernel.org
Subject: Re: [PATCH 2/2] drivers: phy: qcom: ipq806x-usb: conver latch function to pool macro
Date: Sun, 23 Jan 2022 15:46:25 +0100 [thread overview]
Message-ID: <61ed6a44.1c69fb81.35728.5e8b@mx.google.com> (raw)
In-Reply-To: <Ye1BcvaneH0sWeQV@matsya>
On Sun, Jan 23, 2022 at 05:22:18PM +0530, Vinod Koul wrote:
> On 17-01-22, 01:26, Ansuel Smith wrote:
> > Convert latch function to readl pool macro to tidy things up.
> >
> > Signed-off-by: Ansuel Smith <ansuelsmth@gmail.com>
> > ---
> > drivers/phy/qualcomm/phy-qcom-ipq806x-usb.c | 17 +++++------------
> > 1 file changed, 5 insertions(+), 12 deletions(-)
> >
> > diff --git a/drivers/phy/qualcomm/phy-qcom-ipq806x-usb.c b/drivers/phy/qualcomm/phy-qcom-ipq806x-usb.c
> > index 6788e0e8272a..ab2d1431546d 100644
> > --- a/drivers/phy/qualcomm/phy-qcom-ipq806x-usb.c
> > +++ b/drivers/phy/qualcomm/phy-qcom-ipq806x-usb.c
> > @@ -112,6 +112,9 @@
> > #define SS_CR_READ_REG BIT(0)
> > #define SS_CR_WRITE_REG BIT(0)
> >
> > +#define LATCH_SLEEP 40
> > +#define LATCH_TIMEOUT 100
> > +
> > struct usb_phy {
> > void __iomem *base;
> > struct device *dev;
> > @@ -156,19 +159,9 @@ static inline void usb_phy_write_readback(struct usb_phy *phy_dwc3,
> >
> > static int wait_for_latch(void __iomem *addr)
> > {
> > - u32 retry = 10;
> > -
> > - while (true) {
> > - if (!readl(addr))
> > - break;
>
> we break if read returns non zero value...
>
> Do you know what is the value expected?
>
If I understand the logic here, we write a value and we wait for it to
get applied. To confirm that we execute a writel and then we readl the
same address until it does return a value. That is the way used to
understand that the write process has finished and that the value has
been applied/we can write again.
> > -
> > - if (--retry == 0)
> > - return -ETIMEDOUT;
> > -
> > - usleep_range(10, 20);
> > - }
> > + u32 val;
>
> Okay this contains garbage..
I think I didn't understand, val value will get replaced by readl in
the pool_timeout function.
> >
> > - return 0;
> > + return readl_poll_timeout(addr, val, !val, LATCH_SLEEP, LATCH_TIMEOUT);
>
> and we are waiting for it read a garbage value!
>
Again could be very confused and wrong but the pool_timeout macro does
the exact same thing of the wait_for_latch function with th only
difference of handling the sleep differently. We put in val the return
of readl and the break condition as !val. Or I didn't understand the
concern about garbage value.
>
> --
> ~Vinod
--
Ansuel
WARNING: multiple messages have this Message-ID (diff)
From: Ansuel Smith <ansuelsmth@gmail.com>
To: Vinod Koul <vkoul@kernel.org>
Cc: Andy Gross <agross@kernel.org>,
Bjorn Andersson <bjorn.andersson@linaro.org>,
Kishon Vijay Abraham I <kishon@ti.com>,
linux-arm-msm@vger.kernel.org, linux-phy@lists.infradead.org,
linux-kernel@vger.kernel.org
Subject: Re: [PATCH 2/2] drivers: phy: qcom: ipq806x-usb: conver latch function to pool macro
Date: Sun, 23 Jan 2022 15:46:25 +0100 [thread overview]
Message-ID: <61ed6a44.1c69fb81.35728.5e8b@mx.google.com> (raw)
In-Reply-To: <Ye1BcvaneH0sWeQV@matsya>
On Sun, Jan 23, 2022 at 05:22:18PM +0530, Vinod Koul wrote:
> On 17-01-22, 01:26, Ansuel Smith wrote:
> > Convert latch function to readl pool macro to tidy things up.
> >
> > Signed-off-by: Ansuel Smith <ansuelsmth@gmail.com>
> > ---
> > drivers/phy/qualcomm/phy-qcom-ipq806x-usb.c | 17 +++++------------
> > 1 file changed, 5 insertions(+), 12 deletions(-)
> >
> > diff --git a/drivers/phy/qualcomm/phy-qcom-ipq806x-usb.c b/drivers/phy/qualcomm/phy-qcom-ipq806x-usb.c
> > index 6788e0e8272a..ab2d1431546d 100644
> > --- a/drivers/phy/qualcomm/phy-qcom-ipq806x-usb.c
> > +++ b/drivers/phy/qualcomm/phy-qcom-ipq806x-usb.c
> > @@ -112,6 +112,9 @@
> > #define SS_CR_READ_REG BIT(0)
> > #define SS_CR_WRITE_REG BIT(0)
> >
> > +#define LATCH_SLEEP 40
> > +#define LATCH_TIMEOUT 100
> > +
> > struct usb_phy {
> > void __iomem *base;
> > struct device *dev;
> > @@ -156,19 +159,9 @@ static inline void usb_phy_write_readback(struct usb_phy *phy_dwc3,
> >
> > static int wait_for_latch(void __iomem *addr)
> > {
> > - u32 retry = 10;
> > -
> > - while (true) {
> > - if (!readl(addr))
> > - break;
>
> we break if read returns non zero value...
>
> Do you know what is the value expected?
>
If I understand the logic here, we write a value and we wait for it to
get applied. To confirm that we execute a writel and then we readl the
same address until it does return a value. That is the way used to
understand that the write process has finished and that the value has
been applied/we can write again.
> > -
> > - if (--retry == 0)
> > - return -ETIMEDOUT;
> > -
> > - usleep_range(10, 20);
> > - }
> > + u32 val;
>
> Okay this contains garbage..
I think I didn't understand, val value will get replaced by readl in
the pool_timeout function.
> >
> > - return 0;
> > + return readl_poll_timeout(addr, val, !val, LATCH_SLEEP, LATCH_TIMEOUT);
>
> and we are waiting for it read a garbage value!
>
Again could be very confused and wrong but the pool_timeout macro does
the exact same thing of the wait_for_latch function with th only
difference of handling the sleep differently. We put in val the return
of readl and the break condition as !val. Or I didn't understand the
concern about garbage value.
>
> --
> ~Vinod
--
Ansuel
--
linux-phy mailing list
linux-phy@lists.infradead.org
https://lists.infradead.org/mailman/listinfo/linux-phy
next prev parent reply other threads:[~2022-01-23 14:46 UTC|newest]
Thread overview: 12+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-01-17 0:26 [PATCH 1/2] drivers: phy: qcom: ipq806x-usb: convert to BITFIELD macro Ansuel Smith
2022-01-17 0:26 ` Ansuel Smith
2022-01-17 0:26 ` [PATCH 2/2] drivers: phy: qcom: ipq806x-usb: conver latch function to pool macro Ansuel Smith
2022-01-17 0:26 ` Ansuel Smith
2022-01-23 11:52 ` Vinod Koul
2022-01-23 11:52 ` Vinod Koul
2022-01-23 14:46 ` Ansuel Smith [this message]
2022-01-23 14:46 ` Ansuel Smith
2022-01-24 4:27 ` Vinod Koul
2022-01-24 4:27 ` Vinod Koul
2022-01-24 4:28 ` [PATCH 1/2] drivers: phy: qcom: ipq806x-usb: convert to BITFIELD macro Vinod Koul
2022-01-24 4:28 ` Vinod Koul
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=61ed6a44.1c69fb81.35728.5e8b@mx.google.com \
--to=ansuelsmth@gmail.com \
--cc=agross@kernel.org \
--cc=bjorn.andersson@linaro.org \
--cc=kishon@ti.com \
--cc=linux-arm-msm@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-phy@lists.infradead.org \
--cc=vkoul@kernel.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 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.