]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
usb: dwc3: gadget: clear events in top-half handler
authorJohn Youn <johnyoun@synopsys.com>
Tue, 15 Nov 2016 11:08:59 +0000 (13:08 +0200)
committerFelipe Balbi <felipe.balbi@linux.intel.com>
Fri, 18 Nov 2016 11:54:43 +0000 (13:54 +0200)
Now that all the infrastructure is in place, we can
clear events in the top-half handler in order to
bring IRQ line low ASAP.

This is also a necessary step in order to implement
workaround for known erratum in follow-up patches.

Signed-off-by: John Youn <johnyoun@synopsys.com>
Signed-off-by: Felipe Balbi <felipe.balbi@linux.intel.com>
drivers/usb/dwc3/gadget.c

index 0481cb7d71421d88c4540fa5b32d88bbc854f415..3d5ba4106979bc93c2534727c88d987f5abe24e8 100644 (file)
@@ -2836,8 +2836,6 @@ static irqreturn_t dwc3_process_event_buf(struct dwc3_event_buffer *evt)
                 */
                evt->lpos = (evt->lpos + 4) % evt->length;
                left -= 4;
-
-               dwc3_writel(dwc->regs, DWC3_GEVNTCOUNT(0), 4);
        }
 
        evt->count = 0;
@@ -2899,6 +2897,8 @@ static irqreturn_t dwc3_check_event_buf(struct dwc3_event_buffer *evt)
        if (amount < count)
                memcpy(evt->cache, evt->buf, count - amount);
 
+       dwc3_writel(dwc->regs, DWC3_GEVNTCOUNT(0), count);
+
        return IRQ_WAKE_THREAD;
 }