From: Sascha Hauer <s.hauer@pengutronix.de>
To: Christian Eggers <ceggers@arri.de>
Cc: barebox@lists.infradead.org
Subject: Re: [PATCH] Revert "usb: host: ehci: Use to USBSTS to wait for transfer completion"
Date: Fri, 14 Aug 2020 15:21:08 +0200 [thread overview]
Message-ID: <20200814132108.GJ13023@pengutronix.de> (raw)
In-Reply-To: <20200812083559.18189-1-ceggers@arri.de>
On Wed, Aug 12, 2020 at 10:35:59AM +0200, Christian Eggers wrote:
> Since 6044d6c08e, some USB mass storage devices (in my case some USB
> memory sticks and one SD card reader) are not detected anymore. Waiting
> once for USBSTS::USBINT is not sufficient as it takes multiple USBINT
> events until QT_TOKEN_STATUS_ACTIVE is cleared.
>
> Fixes: 6044d6c08e ("usb: host: ehci: Use to USBSTS to wait for transfer completion")
> Signed-off-by: Christian Eggers <ceggers@arri.de>
> ---
> On Tue, Aug 11, 2020, Sascha Hauer wrote:
> > I am fine with reverting 6044d6c08e, but let's give Andrey some time to
> > react before doing this.
>
> I'll be on holiday next week. So it send it now before it gets lost.
>
> drivers/usb/host/ehci-hcd.c | 21 ++++++++++++++-------
> drivers/usb/host/ehci.h | 1 -
> 2 files changed, 14 insertions(+), 8 deletions(-)
Applied, thanks
Sascha
>
> diff --git a/drivers/usb/host/ehci-hcd.c b/drivers/usb/host/ehci-hcd.c
> index ead63b2c9f..38999927c5 100644
> --- a/drivers/usb/host/ehci-hcd.c
> +++ b/drivers/usb/host/ehci-hcd.c
> @@ -308,12 +308,14 @@ ehci_submit_async(struct usb_device *dev, unsigned long pipe, void *buffer,
> dma_addr_t buffer_dma, req_dma;
> struct QH *qh = &ehci->qh_list[1];
> struct qTD *td;
> + volatile struct qTD *vtd;
> uint32_t *tdp;
> uint32_t endpt, token, usbsts;
> uint32_t status;
> uint32_t toggle;
> bool c;
> int ret;
> + uint64_t start, timeout_val;
>
>
> dev_dbg(ehci->dev, "pipe=%lx, buffer=%p, length=%d, req=%p\n", pipe,
> @@ -442,13 +444,18 @@ ehci_submit_async(struct usb_device *dev, unsigned long pipe, void *buffer,
> return ret;
> }
>
> - ret = handshake(&ehci->hcor->or_usbsts, STS_USBINT, STS_USBINT,
> - timeout_ms * 1000);
> - if (ret < 0) {
> - ehci_enable_async_schedule(ehci, false);
> - ehci_writel(&qh->qt_token, 0);
> - return -ETIMEDOUT;
> - }
> + /* Wait for TDs to be processed. */
> + timeout_val = timeout_ms * MSECOND;
> + start = get_time_ns();
> + vtd = td;
> + do {
> + token = hc32_to_cpu(vtd->qt_token);
> + if (is_timeout_non_interruptible(start, timeout_val)) {
> + ehci_enable_async_schedule(ehci, false);
> + ehci_writel(&qh->qt_token, 0);
> + return -ETIMEDOUT;
> + }
> + } while (token & QT_TOKEN_STATUS_ACTIVE);
>
> if (req)
> dma_unmap_single(ehci->dev, req_dma, sizeof(*req),
> diff --git a/drivers/usb/host/ehci.h b/drivers/usb/host/ehci.h
> index e88e37e14c..4b9092d1fe 100644
> --- a/drivers/usb/host/ehci.h
> +++ b/drivers/usb/host/ehci.h
> @@ -53,7 +53,6 @@ struct ehci_hcor {
> #define STD_ASS (1 << 15)
> #define STS_PSS (1 << 14)
> #define STS_HALT (1 << 12)
> -#define STS_USBINT BIT(0)
> uint32_t or_usbintr;
> uint32_t or_frindex;
> uint32_t or_ctrldssegment;
> --
> Christian Eggers
> Embedded software developer
>
> Arnold & Richter Cine Technik GmbH & Co. Betriebs KG
> Sitz: Muenchen - Registergericht: Amtsgericht Muenchen - Handelsregisternummer: HRA 57918
> Persoenlich haftender Gesellschafter: Arnold & Richter Cine Technik GmbH
> Sitz: Muenchen - Registergericht: Amtsgericht Muenchen - Handelsregisternummer: HRB 54477
> Geschaeftsfuehrer: Dr. Michael Neuhaeuser; Stephan Schenk; Walter Trauninger; Markus Zeiler
>
>
--
Pengutronix e.K. | |
Steuerwalder Str. 21 | http://www.pengutronix.de/ |
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
prev parent reply other threads:[~2020-08-14 13:21 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-08-06 14:29 Some USB memory sticks not (fully) recognized Christian Eggers
2020-08-10 11:52 ` Christian Eggers
2020-08-10 19:26 ` Sascha Hauer
2020-08-11 6:10 ` Christian Eggers
2020-08-11 6:33 ` Sascha Hauer
2020-08-12 8:35 ` [PATCH] Revert "usb: host: ehci: Use to USBSTS to wait for transfer completion" Christian Eggers
2020-08-14 13:21 ` Sascha Hauer [this message]
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=20200814132108.GJ13023@pengutronix.de \
--to=s.hauer@pengutronix.de \
--cc=barebox@lists.infradead.org \
--cc=ceggers@arri.de \
/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