]> git.karo-electronics.de Git - karo-tx-linux.git/commit
usb: dwc3: gadget: fix 'endpoint always busy' bug
authorFelipe Balbi <balbi@ti.com>
Thu, 4 Oct 2012 08:58:00 +0000 (11:58 +0300)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sun, 28 Oct 2012 17:56:14 +0000 (10:56 -0700)
commit740b0a623f05bbb796a441e2c51ebfe37eef1c21
treebe446d9435c065274e73d4479460901b36846c52
parent11c7a299c9846320859916e81f0f5d38fc596a4d
usb: dwc3: gadget: fix 'endpoint always busy' bug

commit 041d81f493d90c940ec41f0ec98bc7c4f2fba431 upstream.

If a USB transfer has already been started, meaning
we have already issued StartTransfer command to that
particular endpoint, DWC3_EP_BUSY flag has also
already been set.

When we try to cancel this transfer which is already
in controller's cache, we will not receive XferComplete
event and we must clear DWC3_EP_BUSY in order to allow
subsequent requests to be properly started.

The best place to clear that flag is right after issuing
DWC3_DEPCMD_ENDTRANSFER.

Reported-by: Moiz Sonasath <m-sonasath@ti.com>
Signed-off-by: Felipe Balbi <balbi@ti.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/usb/dwc3/gadget.c