]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
usb: dwc3: gadget: check if dep->frame_number is still valid
authorFelipe Balbi <felipe.balbi@linux.intel.com>
Tue, 14 Aug 2018 07:42:43 +0000 (10:42 +0300)
committerFelipe Balbi <felipe.balbi@linux.intel.com>
Tue, 27 Nov 2018 13:01:41 +0000 (15:01 +0200)
Gadget driver may take an unbounded amount of time to queue requests
after XferNotReady. This is important for isochronous endpoints which
need to be started for a specific (micro-)frame.

If we fail to start a transfer for isochronous endpoint, let's try
queueing to a future interval and see if that helps. We will stop trying
if we fail a start transfer for 5 intervals in the future.

Signed-off-by: Felipe Balbi <felipe.balbi@linux.intel.com>
drivers/usb/dwc3/core.h
drivers/usb/dwc3/gadget.c

index 58f4aa5e34433775bb4c13a447c9a18b672db5a3..15c07b2b5866f07e316347b5fbdac1c685d9bf54 100644 (file)
@@ -37,6 +37,7 @@
 #define DWC3_EP0_SETUP_SIZE    512
 #define DWC3_ENDPOINTS_NUM     32
 #define DWC3_XHCI_RESOURCES_NUM        2
+#define DWC3_ISOC_MAX_RETRIES  5
 
 #define DWC3_SCRATCHBUF_SIZE   4096    /* each buffer is assumed to be 4KiB */
 #define DWC3_EVENT_BUFFERS_SIZE        4096
index e94971a7f46887340f3135d501b005a6edd0038f..c4e91c6d4fce951996a024eeffa62b79bd4c3e36 100644 (file)
@@ -27,7 +27,7 @@
 #include "gadget.h"
 #include "io.h"
 
-#define DWC3_ALIGN_FRAME(d)    (((d)->frame_number + (d)->interval) \
+#define DWC3_ALIGN_FRAME(d, n) (((d)->frame_number + ((d)->interval * (n))) \
                                        & ~((d)->interval - 1))
 
 /**
@@ -1384,6 +1384,8 @@ static int dwc3_gadget_start_isoc_quirk(struct dwc3_ep *dep)
 static int __dwc3_gadget_start_isoc(struct dwc3_ep *dep)
 {
        struct dwc3 *dwc = dep->dwc;
+       int ret;
+       int i;
 
        if (list_empty(&dep->pending_list)) {
                dep->flags |= DWC3_EP_PENDING_REQUEST;
@@ -1400,8 +1402,15 @@ static int __dwc3_gadget_start_isoc(struct dwc3_ep *dep)
                        return dwc3_gadget_start_isoc_quirk(dep);
        }
 
-       dep->frame_number = DWC3_ALIGN_FRAME(dep);
-       return __dwc3_gadget_kick_transfer(dep);
+       for (i = 0; i < DWC3_ISOC_MAX_RETRIES; i++) {
+               dep->frame_number = DWC3_ALIGN_FRAME(dep, i + 1);
+
+               ret = __dwc3_gadget_kick_transfer(dep);
+               if (ret != -EAGAIN)
+                       break;
+       }
+
+       return ret;
 }
 
 static int __dwc3_gadget_ep_queue(struct dwc3_ep *dep, struct dwc3_request *req)