diff options
author | Tomoya MORINAGA <tomoya.rohm@gmail.com> | 2012-01-11 21:27:09 -0500 |
---|---|---|
committer | Felipe Balbi <balbi@ti.com> | 2012-01-24 04:35:25 -0500 |
commit | 833310402c54ad9b676b465fc53ad276b13d36be (patch) | |
tree | 41b203194cc58686e12b9cd882448463f4727bfd /drivers/usb/gadget/pch_udc.c | |
parent | 1c575d2d2e3ff2a7cb3c2e2165064199cfd8ad32 (diff) |
usb: gadget: pch_udc: Reduce redundant interrupt
ISSUE:
USB Suspend interrupts occur frequently.
CAUSE:
When it is called pch_udc_reconnect() in USB Suspend, it repeats reset and
Suspend.
SOLUTION:
pch_udc_reconnect() does not enable all interrupts. When an enumeration event
occurred the driver enables all interrupts.
Signed-off-by: Tomoya MORINAGA <tomoya.rohm@gmail.com>
Signed-off-by: Felipe Balbi <balbi@ti.com>
Diffstat (limited to 'drivers/usb/gadget/pch_udc.c')
-rw-r--r-- | drivers/usb/gadget/pch_udc.c | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/drivers/usb/gadget/pch_udc.c b/drivers/usb/gadget/pch_udc.c index c2f19752c074..4da98141e058 100644 --- a/drivers/usb/gadget/pch_udc.c +++ b/drivers/usb/gadget/pch_udc.c | |||
@@ -568,9 +568,7 @@ static void pch_udc_reconnect(struct pch_udc_dev *dev) | |||
568 | /* enable device interrupts */ | 568 | /* enable device interrupts */ |
569 | /* pch_udc_enable_interrupts() */ | 569 | /* pch_udc_enable_interrupts() */ |
570 | pch_udc_bit_clr(dev, UDC_DEVIRQMSK_ADDR, | 570 | pch_udc_bit_clr(dev, UDC_DEVIRQMSK_ADDR, |
571 | UDC_DEVINT_UR | UDC_DEVINT_US | | 571 | UDC_DEVINT_UR | UDC_DEVINT_ENUM); |
572 | UDC_DEVINT_ENUM | | ||
573 | UDC_DEVINT_SI | UDC_DEVINT_SC); | ||
574 | 572 | ||
575 | /* Clear the disconnect */ | 573 | /* Clear the disconnect */ |
576 | pch_udc_bit_set(dev, UDC_DEVCTL_ADDR, UDC_DEVCTL_RES); | 574 | pch_udc_bit_set(dev, UDC_DEVCTL_ADDR, UDC_DEVCTL_RES); |
@@ -2419,6 +2417,11 @@ static void pch_udc_svc_enum_interrupt(struct pch_udc_dev *dev) | |||
2419 | pch_udc_set_dma(dev, DMA_DIR_TX); | 2417 | pch_udc_set_dma(dev, DMA_DIR_TX); |
2420 | pch_udc_set_dma(dev, DMA_DIR_RX); | 2418 | pch_udc_set_dma(dev, DMA_DIR_RX); |
2421 | pch_udc_ep_set_rrdy(&(dev->ep[UDC_EP0OUT_IDX])); | 2419 | pch_udc_ep_set_rrdy(&(dev->ep[UDC_EP0OUT_IDX])); |
2420 | |||
2421 | /* enable device interrupts */ | ||
2422 | pch_udc_enable_interrupts(dev, UDC_DEVINT_UR | UDC_DEVINT_US | | ||
2423 | UDC_DEVINT_ES | UDC_DEVINT_ENUM | | ||
2424 | UDC_DEVINT_SI | UDC_DEVINT_SC); | ||
2422 | } | 2425 | } |
2423 | 2426 | ||
2424 | /** | 2427 | /** |