mirror of
https://github.com/raspberrypi/linux.git
synced 2025-12-06 18:09:56 +00:00
usb: dwc3: gadget: fix isoc END TRANSFER Condition
commit cdc359dd87 upstream.
There were still some corner cases where isoc transfer was not able to
restart, specially when missed isoc does not happen , and in fact gadget does
not queue any new request during giveback.
Cleanup function calls giveback first, which provides a way to queue
another request to gadget. But gadget did not had any data. So , it did
not call ep_queue. To twist it further, gadget did not queue till
cleanup for last queued TRB is called. If we ever reach this scenario,
we must call END TRANSFER, so that we receive a new xfernotready with
information about current microframe number.
Also insure that there is no request submitted to core when issuing END
TRANSFER.
Signed-off-by: Pratyush Anand <pratyush.anand@st.com>
Signed-off-by: Felipe Balbi <balbi@ti.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
2f097fdb6b
commit
3f08ff607d
@@ -1091,7 +1091,10 @@ static int __dwc3_gadget_ep_queue(struct dwc3_ep *dep, struct dwc3_request *req)
|
|||||||
* notion of current microframe.
|
* notion of current microframe.
|
||||||
*/
|
*/
|
||||||
if (usb_endpoint_xfer_isoc(dep->endpoint.desc)) {
|
if (usb_endpoint_xfer_isoc(dep->endpoint.desc)) {
|
||||||
|
if (list_empty(&dep->req_queued)) {
|
||||||
dwc3_stop_active_transfer(dwc, dep->number);
|
dwc3_stop_active_transfer(dwc, dep->number);
|
||||||
|
dep->flags = DWC3_EP_ENABLED;
|
||||||
|
}
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -1728,10 +1731,20 @@ static int dwc3_cleanup_done_reqs(struct dwc3 *dwc, struct dwc3_ep *dep,
|
|||||||
break;
|
break;
|
||||||
} while (1);
|
} while (1);
|
||||||
|
|
||||||
if (list_empty(&dep->req_queued) &&
|
if (usb_endpoint_xfer_isoc(dep->endpoint.desc) &&
|
||||||
(dep->flags & DWC3_EP_MISSED_ISOC)) {
|
list_empty(&dep->req_queued)) {
|
||||||
|
if (list_empty(&dep->request_list)) {
|
||||||
|
/*
|
||||||
|
* If there is no entry in request list then do
|
||||||
|
* not issue END TRANSFER now. Just set PENDING
|
||||||
|
* flag, so that END TRANSFER is issued when an
|
||||||
|
* entry is added into request list.
|
||||||
|
*/
|
||||||
|
dep->flags = DWC3_EP_PENDING_REQUEST;
|
||||||
|
} else {
|
||||||
dwc3_stop_active_transfer(dwc, dep->number);
|
dwc3_stop_active_transfer(dwc, dep->number);
|
||||||
dep->flags &= ~DWC3_EP_MISSED_ISOC;
|
dep->flags = DWC3_EP_ENABLED;
|
||||||
|
}
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user