From: Marek Szyprowski Date: Tue, 3 Mar 2015 16:32:10 +0000 (+0100) Subject: usb: dwc3: add a workaround for too small OUT requests X-Git-Tag: v2015.07-rc1~357 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=5dc4538bf3fea0baf4ca2e4191e0e62991fbd779;p=u-boot usb: dwc3: add a workaround for too small OUT requests DWC3 hangs on OUT requests smaller than maxpacket size, so HACK the request length to be at least equal to maxpacket size. Signed-off-by: Marek Szyprowski --- diff --git a/drivers/usb/dwc3/gadget.c b/drivers/usb/dwc3/gadget.c index de4d90859c..7c342c63ec 100644 --- a/drivers/usb/dwc3/gadget.c +++ b/drivers/usb/dwc3/gadget.c @@ -974,6 +974,14 @@ static int __dwc3_gadget_ep_queue(struct dwc3_ep *dep, struct dwc3_request *req) req->direction = dep->direction; req->epnum = dep->number; + /* + * DWC3 hangs on OUT requests smaller than maxpacket size, + * so HACK the request length + */ + if (dep->direction == 0 && + req->request.length < dep->endpoint.maxpacket) + req->request.length = dep->endpoint.maxpacket; + /* * We only add to our list of requests now and * start consuming the list once we get XferNotReady