Hello. On 08-06-2011 12:23, yauheni.kaliuta@xxxxxxxxx wrote:
From: Yauheni Kaliuta<yauheni.kaliuta@xxxxxxxxx>
It fixes MUSB's hardware feature, that it doesn't actually flush FIFOs, when PKTRDY flag was set before and we are flushing setting both FIFONOTEMPTY and PKTRDY (at least for the TX path).
Huh? Wa can't set FIFONOTEMPTY.
The specification says about FLUSHFIFO, that it "May be set simultaneously with TxPktRdy to abort the packet that is currently being loaded into the FIFO". This is a situation, where TxPktRdy hasn't been set yet, but some data already loaded into the fifo. It looks, that if TxPktRdy has been set before and there is no loading in progress but we set FLUSHFIFO with the TxPktRdy, controller tries to use the same logic to abort loading and as the result just does nothing (because there is no loading in progress)
Signed-off-by: Yauheni Kaliuta<yauheni.kaliuta@xxxxxxxxx> --- drivers/usb/musb/musb_gadget.c | 2 ++ 1 files changed, 2 insertions(+), 0 deletions(-)
diff --git a/drivers/usb/musb/musb_gadget.c b/drivers/usb/musb/musb_gadget.c index 0a50a35..830768f 100644 --- a/drivers/usb/musb/musb_gadget.c +++ b/drivers/usb/musb/musb_gadget.c @@ -1524,6 +1524,7 @@ static void musb_gadget_fifo_flush(struct usb_ep *ep) csr = musb_readw(epio, MUSB_TXCSR); if (csr& MUSB_TXCSR_FIFONOTEMPTY) { csr |= MUSB_TXCSR_FLUSHFIFO | MUSB_TXCSR_P_WZC_BITS; + csr &= ~MUSB_TXCSR_TXPKTRDY;
A comment wouldn't hurt here either...
musb_writew(epio, MUSB_TXCSR, csr); /* REVISIT may be inappropriate w/o FIFONOTEMPTY ... */ musb_writew(epio, MUSB_TXCSR, csr); @@ -1531,6 +1532,7 @@ static void musb_gadget_fifo_flush(struct usb_ep *ep) } else { csr = musb_readw(epio, MUSB_RXCSR); csr |= MUSB_RXCSR_FLUSHFIFO | MUSB_RXCSR_P_WZC_BITS; + csr &= ~MUSB_RXCSR_RXPKTRDY;
This still contradicts the manual. Did you really see the issue here? WBR, Sergei -- To unsubscribe from this list: send the line "unsubscribe linux-usb" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html