lkml.org 
[lkml]   [2024]   [Feb]   [22]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
Patch in this message
/
Date
From
SubjectRe: [PATCH v3 2/6] usb: dwc3: gadget: cancel requests instead of release after missed isoc
Sorry for digging up this grave! :)

I once more came accross the whole situation we are still encountering
since one year or so again and found the some reasons why:

#1 there are so many latencies, so that the system is not fast enough to
enqueue requests back into an running HW-Transfer. At least on our
system setup.

and

#2 there are so many missed transfers leading to broken frames
when adding request with no_interrupt set.

For #1: There sometimes are situations in the system where the threaded
interrupt handler for the dwc3 is not called fast enough, although the
HW-irq was called early and enqueued the irq event and woke the irq
thread early. In our case this often happens, when there are other tasks
involved on the same CPU and the scheduler is not able to pipeline the
irq thread in the necessary time. In our case the main issue is an
HW-irq handler of the ethernet controller (cadence macb) that runs
berserk on CPU0 and therefor is taking a lot of CPU time. Per default on
our system all irq handlers are running on the same CPU. As per
definition all interrupt threads will be started on the same CPU as the
irq was called, this forces a lot of pressure on one Core. So changing
the smp_affinity of the dwc3 irq to the second CPU only, already solves
a lot of the underruns.

For #2: I found an issue in the handling of the completion of requests in
the started list. When the interrupt handler is *explicitly* calling
stop_active_transfer if the overall event of the request was an missed
event. This event value only represents the value of the request that
was actually triggering the interrupt.

It also calls ep_cleanup_completed_requests and is iterating over the
started requests and will call giveback/complete functions of the
requests with the proper request status.

So this will also catch missed requests in the queue. However, since
there might be, lets say 5 good requests and one missed request, what
will happen is, that each complete call for the first good requests will
enqueue new requests into the started list and will also call the
updatecmd on that transfer that was already missed until the loop will
reach the one request with the MISSED status bit set.

So in my opinion the patch from Jeff makes sense when adding the
following change aswell. With those both changes the underruns and
broken frames finally disappear. I am still unsure about the complete
solution about that, since with this the mentioned 5 good requests
will be cancelled aswell. So this is still a WIP status here.

diff --git a/drivers/usb/dwc3/gadget.c b/drivers/usb/dwc3/gadget.c
index e031813c5769b..b991d25bbf897 100644
--- a/drivers/usb/dwc3/gadget.c
+++ b/drivers/usb/dwc3/gadget.c
@@ -3509,6 +3509,45 @@ static int dwc3_gadget_ep_cleanup_completed_request(struct dwc3_ep *dep,
return ret;
}

+static int dwc3_gadget_ep_check_missed_requests(struct dwc3_ep *dep)
+{
+ struct dwc3_request *req;
+ struct dwc3_request *tmp;
+ int ret = 0;
+
+ list_for_each_entry_safe(req, tmp, &dep->started_list, list) {
+ struct dwc3_trb *trb;
+
+ /* TOOD: check if the trb association is correct */
+ trb = req->trb;
+ switch (DWC3_TRB_SIZE_TRBSTS(trb->size)) {
+ case DWC3_TRBSTS_MISSED_ISOC:
+ /* Isoc endpoint only */
+ ret = -EXDEV;
+ break;
+ case DWC3_TRB_STS_XFER_IN_PROG:
+ /* Applicable when End Transfer with ForceRM=0 */
+ case DWC3_TRBSTS_SETUP_PENDING:
+ /* Control endpoint only */
+ case DWC3_TRBSTS_OK:
+ default:
+ ret = 0;
+ break;
+ }
+ }
+
+ return ret;
+}
+
static void dwc3_gadget_ep_cleanup_completed_requests(struct dwc3_ep *dep,
const struct dwc3_event_depevt *event, int status)
{
@@ -3566,7 +3605,7 @@ static bool dwc3_gadget_endpoint_trbs_complete(struct dwc3_ep *dep,
struct dwc3 *dwc = dep->dwc;
bool no_started_trb = true;

- if (status == -EXDEV) {
+ if (status == -EXDEV || dwc3_gadget_ep_check_missed_requests(dep)) {
struct dwc3_request *tmp;
struct dwc3_request *req;

On Mon, Oct 17, 2022 at 03:54:40PM -0500, Dan Vacura wrote:
>From: Jeff Vanhoof <qjv001@motorola.com>
>
>arm-smmu related crashes seen after a Missed ISOC interrupt when
>no_interrupt=1 is used. This can happen if the hardware is still using
>the data associated with a TRB after the usb_request's ->complete call
>has been made. Instead of immediately releasing a request when a Missed
>ISOC interrupt has occurred, this change will add logic to cancel the
>request instead where it will eventually be released when the
>END_TRANSFER command has completed. This logic is similar to some of the
>cleanup done in dwc3_gadget_ep_dequeue.
>
>Fixes: 6d8a019614f3 ("usb: dwc3: gadget: check for Missed Isoc from event status")
>Cc: <stable@vger.kernel.org>
>Signed-off-by: Jeff Vanhoof <qjv001@motorola.com>
>Co-developed-by: Dan Vacura <w36195@motorola.com>
>Signed-off-by: Dan Vacura <w36195@motorola.com>
>---
>V1 -> V3:
>- no change, new patch in series
>
> drivers/usb/dwc3/core.h | 1 +
> drivers/usb/dwc3/gadget.c | 38 ++++++++++++++++++++++++++------------
> 2 files changed, 27 insertions(+), 12 deletions(-)
>
>diff --git a/drivers/usb/dwc3/core.h b/drivers/usb/dwc3/core.h
>index 8f9959ba9fd4..9b005d912241 100644
>--- a/drivers/usb/dwc3/core.h
>+++ b/drivers/usb/dwc3/core.h
>@@ -943,6 +943,7 @@ struct dwc3_request {
> #define DWC3_REQUEST_STATUS_DEQUEUED 3
> #define DWC3_REQUEST_STATUS_STALLED 4
> #define DWC3_REQUEST_STATUS_COMPLETED 5
>+#define DWC3_REQUEST_STATUS_MISSED_ISOC 6
> #define DWC3_REQUEST_STATUS_UNKNOWN -1
>
> u8 epnum;
>diff --git a/drivers/usb/dwc3/gadget.c b/drivers/usb/dwc3/gadget.c
>index 079cd333632e..411532c5c378 100644
>--- a/drivers/usb/dwc3/gadget.c
>+++ b/drivers/usb/dwc3/gadget.c
>@@ -2021,6 +2021,9 @@ static void dwc3_gadget_ep_cleanup_cancelled_requests(struct dwc3_ep *dep)
> case DWC3_REQUEST_STATUS_STALLED:
> dwc3_gadget_giveback(dep, req, -EPIPE);
> break;
>+ case DWC3_REQUEST_STATUS_MISSED_ISOC:
>+ dwc3_gadget_giveback(dep, req, -EXDEV);
>+ break;
> default:
> dev_err(dwc->dev, "request cancelled with wrong reason:%d\n", req->status);
> dwc3_gadget_giveback(dep, req, -ECONNRESET);
>@@ -3402,21 +3405,32 @@ static bool dwc3_gadget_endpoint_trbs_complete(struct dwc3_ep *dep,
> struct dwc3 *dwc = dep->dwc;
> bool no_started_trb = true;
>
>- dwc3_gadget_ep_cleanup_completed_requests(dep, event, status);
>+ if (status == -EXDEV) {
>+ struct dwc3_request *tmp;
>+ struct dwc3_request *req;
>
>- if (dep->flags & DWC3_EP_END_TRANSFER_PENDING)
>- goto out;
>+ if (!(dep->flags & DWC3_EP_END_TRANSFER_PENDING))
>+ dwc3_stop_active_transfer(dep, true, true);
>
>- if (!dep->endpoint.desc)
>- return no_started_trb;
>+ list_for_each_entry_safe(req, tmp, &dep->started_list, list)
>+ dwc3_gadget_move_cancelled_request(req,
>+ DWC3_REQUEST_STATUS_MISSED_ISOC);
>+ } else {
>+ dwc3_gadget_ep_cleanup_completed_requests(dep, event, status);
>
>- if (usb_endpoint_xfer_isoc(dep->endpoint.desc) &&
>- list_empty(&dep->started_list) &&
>- (list_empty(&dep->pending_list) || status == -EXDEV))
>- dwc3_stop_active_transfer(dep, true, true);
>- else if (dwc3_gadget_ep_should_continue(dep))
>- if (__dwc3_gadget_kick_transfer(dep) == 0)
>- no_started_trb = false;
>+ if (dep->flags & DWC3_EP_END_TRANSFER_PENDING)
>+ goto out;
>+
>+ if (!dep->endpoint.desc)
>+ return no_started_trb;
>+
>+ if (usb_endpoint_xfer_isoc(dep->endpoint.desc) &&
>+ list_empty(&dep->started_list) && list_empty(&dep->pending_list))
>+ dwc3_stop_active_transfer(dep, true, true);
>+ else if (dwc3_gadget_ep_should_continue(dep))
>+ if (__dwc3_gadget_kick_transfer(dep) == 0)
>+ no_started_trb = false;
>+ }
>
> out:
> /*
>--
>2.34.1
>

--
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 |[unhandled content-type:application/pgp-signature]
\
 
 \ /
  Last update: 2024-02-22 01:04    [W:0.181 / U:0.264 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site