* [PATCH] usb: dwc3: Toggle GCTL.CORESOFTRESET as a first step
@ 2019-03-07 7:48 Andrey Smirnov
2019-03-11 7:13 ` Sascha Hauer
0 siblings, 1 reply; 3+ messages in thread
From: Andrey Smirnov @ 2019-03-07 7:48 UTC (permalink / raw)
To: barebox; +Cc: Andrey Smirnov
Toggle GCTL.CORESOFTRESET before trying to access any of the block's
registers. Without this additional step, first read of DWC3_GHWPARAMS*
that follows results in assertion of GSTS.CSRTIMEOUT and IP block
stuck in a non-functional state.
Note that all above has only been observed on i.MX8MQ (ZII Zest board)
for USB1 controller. USB2 doesn't seem to be affected by this.
Signed-off-by: Andrey Smirnov <andrew.smirnov@gmail.com>
---
drivers/usb/dwc3/core.c | 17 +++++++++++++++++
1 file changed, 17 insertions(+)
diff --git a/drivers/usb/dwc3/core.c b/drivers/usb/dwc3/core.c
index 2e7031a34..1fc24a441 100644
--- a/drivers/usb/dwc3/core.c
+++ b/drivers/usb/dwc3/core.c
@@ -663,6 +663,21 @@ static void dwc3_check_params(struct dwc3 *dwc)
}
}
+static void dwc3_coresoft_reset(struct dwc3 *dwc)
+{
+ u32 reg;
+
+ reg = dwc3_readl(dwc->regs, DWC3_GCTL);
+ reg |= DWC3_GCTL_CORESOFTRESET;
+ dwc3_writel(dwc->regs, DWC3_GCTL, reg);
+
+ mdelay(100);
+
+ reg = dwc3_readl(dwc->regs, DWC3_GCTL);
+ reg &= ~DWC3_GCTL_CORESOFTRESET;
+ dwc3_writel(dwc->regs, DWC3_GCTL, reg);
+}
+
static int dwc3_probe(struct device_d *dev)
{
struct dwc3 *dwc;
@@ -695,6 +710,8 @@ static int dwc3_probe(struct device_d *dev)
if (ret)
return ret;
+ dwc3_coresoft_reset(dwc);
+
dwc3_cache_hwparams(dwc);
ret = dwc3_core_init(dwc);
--
2.20.1
_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] usb: dwc3: Toggle GCTL.CORESOFTRESET as a first step
2019-03-07 7:48 [PATCH] usb: dwc3: Toggle GCTL.CORESOFTRESET as a first step Andrey Smirnov
@ 2019-03-11 7:13 ` Sascha Hauer
2019-03-12 1:48 ` Andrey Smirnov
0 siblings, 1 reply; 3+ messages in thread
From: Sascha Hauer @ 2019-03-11 7:13 UTC (permalink / raw)
To: Andrey Smirnov; +Cc: barebox
On Wed, Mar 06, 2019 at 11:48:13PM -0800, Andrey Smirnov wrote:
> Toggle GCTL.CORESOFTRESET before trying to access any of the block's
> registers. Without this additional step, first read of DWC3_GHWPARAMS*
> that follows results in assertion of GSTS.CSRTIMEOUT and IP block
> stuck in a non-functional state.
>
> Note that all above has only been observed on i.MX8MQ (ZII Zest board)
> for USB1 controller. USB2 doesn't seem to be affected by this.
>
> Signed-off-by: Andrey Smirnov <andrew.smirnov@gmail.com>
> ---
> drivers/usb/dwc3/core.c | 17 +++++++++++++++++
> 1 file changed, 17 insertions(+)
>
> diff --git a/drivers/usb/dwc3/core.c b/drivers/usb/dwc3/core.c
> index 2e7031a34..1fc24a441 100644
> --- a/drivers/usb/dwc3/core.c
> +++ b/drivers/usb/dwc3/core.c
> @@ -663,6 +663,21 @@ static void dwc3_check_params(struct dwc3 *dwc)
> }
> }
>
> +static void dwc3_coresoft_reset(struct dwc3 *dwc)
> +{
> + u32 reg;
> +
> + reg = dwc3_readl(dwc->regs, DWC3_GCTL);
> + reg |= DWC3_GCTL_CORESOFTRESET;
> + dwc3_writel(dwc->regs, DWC3_GCTL, reg);
> +
> + mdelay(100);
100ms is quite long. Isn't a shorter delay enough?
Sascha
--
Pengutronix e.K. | |
Industrial Linux Solutions | http://www.pengutronix.de/ |
Peiner Str. 6-8, 31137 Hildesheim, Germany | Phone: +49-5121-206917-0 |
Amtsgericht Hildesheim, HRA 2686 | Fax: +49-5121-206917-5555 |
_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] usb: dwc3: Toggle GCTL.CORESOFTRESET as a first step
2019-03-11 7:13 ` Sascha Hauer
@ 2019-03-12 1:48 ` Andrey Smirnov
0 siblings, 0 replies; 3+ messages in thread
From: Andrey Smirnov @ 2019-03-12 1:48 UTC (permalink / raw)
To: Sascha Hauer; +Cc: Barebox List
On Mon, Mar 11, 2019 at 12:13 AM Sascha Hauer <s.hauer@pengutronix.de> wrote:
>
> On Wed, Mar 06, 2019 at 11:48:13PM -0800, Andrey Smirnov wrote:
> > Toggle GCTL.CORESOFTRESET before trying to access any of the block's
> > registers. Without this additional step, first read of DWC3_GHWPARAMS*
> > that follows results in assertion of GSTS.CSRTIMEOUT and IP block
> > stuck in a non-functional state.
> >
> > Note that all above has only been observed on i.MX8MQ (ZII Zest board)
> > for USB1 controller. USB2 doesn't seem to be affected by this.
> >
> > Signed-off-by: Andrey Smirnov <andrew.smirnov@gmail.com>
> > ---
> > drivers/usb/dwc3/core.c | 17 +++++++++++++++++
> > 1 file changed, 17 insertions(+)
> >
> > diff --git a/drivers/usb/dwc3/core.c b/drivers/usb/dwc3/core.c
> > index 2e7031a34..1fc24a441 100644
> > --- a/drivers/usb/dwc3/core.c
> > +++ b/drivers/usb/dwc3/core.c
> > @@ -663,6 +663,21 @@ static void dwc3_check_params(struct dwc3 *dwc)
> > }
> > }
> >
> > +static void dwc3_coresoft_reset(struct dwc3 *dwc)
> > +{
> > + u32 reg;
> > +
> > + reg = dwc3_readl(dwc->regs, DWC3_GCTL);
> > + reg |= DWC3_GCTL_CORESOFTRESET;
> > + dwc3_writel(dwc->regs, DWC3_GCTL, reg);
> > +
> > + mdelay(100);
>
> 100ms is quite long. Isn't a shorter delay enough?
Hmm, not sure, that's the number I got from similar reset sequence
found in U-Boot. I'll experiment on bringing it down and submit a v2
if smaller delay is enough.
Thanks,
Andrey Smirnov
_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2019-03-12 1:48 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-03-07 7:48 [PATCH] usb: dwc3: Toggle GCTL.CORESOFTRESET as a first step Andrey Smirnov
2019-03-11 7:13 ` Sascha Hauer
2019-03-12 1:48 ` Andrey Smirnov
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox