diff options
author | Sevak Arakelyan <sevaka@synopsys.com> | 2016-04-27 23:20:53 -0400 |
---|---|---|
committer | Felipe Balbi <felipe.balbi@linux.intel.com> | 2016-04-28 02:41:26 -0400 |
commit | 907a444718b8f93956acac1c944d880c54ab900d (patch) | |
tree | 77a998cd0c9d4332a8761e01eaf4434f4dd4bb1c | |
parent | b0d659022e5c96ee5c4bd62d22d3da2d66de306b (diff) |
usb: dwc2: Fixed SOF interrupt enabling/disabling
In case of DDMA mode we don't need to get an SOF interrupt so disable
the unmasking of SOF interrupt in DDMA mode.
Signed-off-by: Sevak Arakelyan <sevaka@synopsys.com>
Signed-off-by: John Youn <johnyoun@synopsys.com>
Signed-off-by: Felipe Balbi <felipe.balbi@linux.intel.com>
-rw-r--r-- | drivers/usb/dwc2/hcd_queue.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/usb/dwc2/hcd_queue.c b/drivers/usb/dwc2/hcd_queue.c index 7f634fd771c7..b5c7793a2df2 100644 --- a/drivers/usb/dwc2/hcd_queue.c +++ b/drivers/usb/dwc2/hcd_queue.c | |||
@@ -1709,7 +1709,8 @@ void dwc2_hcd_qh_unlink(struct dwc2_hsotg *hsotg, struct dwc2_qh *qh) | |||
1709 | 1709 | ||
1710 | dwc2_deschedule_periodic(hsotg, qh); | 1710 | dwc2_deschedule_periodic(hsotg, qh); |
1711 | hsotg->periodic_qh_count--; | 1711 | hsotg->periodic_qh_count--; |
1712 | if (!hsotg->periodic_qh_count) { | 1712 | if (!hsotg->periodic_qh_count && |
1713 | hsotg->core_params->dma_desc_enable <= 0) { | ||
1713 | intr_mask = dwc2_readl(hsotg->regs + GINTMSK); | 1714 | intr_mask = dwc2_readl(hsotg->regs + GINTMSK); |
1714 | intr_mask &= ~GINTSTS_SOF; | 1715 | intr_mask &= ~GINTSTS_SOF; |
1715 | dwc2_writel(intr_mask, hsotg->regs + GINTMSK); | 1716 | dwc2_writel(intr_mask, hsotg->regs + GINTMSK); |