]> git.hungrycats.org Git - linux/commitdiff
usb: dwc3: gadget: clear stall when disabling endpoint
authorFelipe Balbi <balbi@ti.com>
Wed, 16 Apr 2014 15:30:33 +0000 (10:30 -0500)
committerJiri Slaby <jslaby@suse.cz>
Wed, 2 Jul 2014 10:06:06 +0000 (12:06 +0200)
commit 687ef9817df7ed960d14575b9033dde3d04631fe upstream.

so it seems like DWC3 IP doesn't clear stalls
automatically when we disable an endpoint, because
of that, we _must_ make sure stalls are cleared
before clearing the proper bit in DALEPENA register.

Reported-by: Johannes Stezenbach <js@sig21.net>
Signed-off-by: Felipe Balbi <balbi@ti.com>
Signed-off-by: Jiri Slaby <jslaby@suse.cz>
drivers/usb/dwc3/gadget.c

index 02e44fcaf205e3eaf4a69e706c41d6e081c6c1e5..c37da0c9a076070823006c542e519941b8df879c 100644 (file)
@@ -586,6 +586,10 @@ static int __dwc3_gadget_ep_disable(struct dwc3_ep *dep)
 
        dwc3_remove_requests(dwc, dep);
 
+       /* make sure HW endpoint isn't stalled */
+       if (dep->flags & DWC3_EP_STALL)
+               __dwc3_gadget_ep_set_halt(dep, 0);
+
        reg = dwc3_readl(dwc->regs, DWC3_DALEPENA);
        reg &= ~DWC3_DALEPENA_EP(dep->number);
        dwc3_writel(dwc->regs, DWC3_DALEPENA, reg);