]> git.hungrycats.org Git - linux/commitdiff
usb: renesas_usbhs: disable TX IRQ before starting TX DMAC transfer
authorYoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
Thu, 10 Mar 2016 02:30:15 +0000 (11:30 +0900)
committerJiri Slaby <jslaby@suse.cz>
Wed, 20 Apr 2016 06:46:48 +0000 (08:46 +0200)
commit 6490865c67825277b29638e839850882600b48ec upstream.

This patch adds a code to surely disable TX IRQ of the pipe before
starting TX DMAC transfer. Otherwise, a lot of unnecessary TX IRQs
may happen in rare cases when DMAC is used.

Fixes: e73a989 ("usb: renesas_usbhs: add DMAEngine support")
Signed-off-by: Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
Signed-off-by: Felipe Balbi <felipe.balbi@linux.intel.com>
Signed-off-by: Jiri Slaby <jslaby@suse.cz>
drivers/usb/renesas_usbhs/fifo.c

index 1550c103f8a3ea0fdbbcd6759cdf0e4093c55c67..13170ed3c39289c2489c3f84bf2eb3cb8f6099da 100644 (file)
@@ -946,6 +946,7 @@ static int usbhsf_dma_try_pop(struct usbhs_pkt *pkt, int *is_done)
 
        pkt->trans = len;
 
+       usbhsf_tx_irq_ctrl(pipe, 0);
        INIT_WORK(&pkt->work, xfer_work);
        schedule_work(&pkt->work);