]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
ENGR00235630 MX6 USB :fix USB does not work when plug in device during suspend
authormake shi <b15407@freescale.com>
Wed, 5 Dec 2012 06:31:41 +0000 (14:31 +0800)
committerLothar Waßmann <LW@KARO-electronics.de>
Fri, 24 May 2013 06:35:47 +0000 (08:35 +0200)
USB does not work when plug in a usb device during system suspend. Under this
case, USB driver will be in low power mode, but WIE bit not be set if usb wake
up is not enabled.So there are only ID change interrupt no USB wakeup interrupt
after system resume.In current bsp, after system resume ID change status not be
clear,and ID change interrupt will continue happen, which cause the system busy.
No checking WIR bit if ID change interrupt happen when USB in low power mode to
fix this issue.

Signed-off-by: make shi <b15407@freescale.com>
arch/arm/mach-mx6/usb_dr.c

index cf84cf2b1296700654b17d48a3bd218bfb2677ff..8f909321e219bb54d89c420eeee7e2c815472028 100644 (file)
@@ -513,10 +513,10 @@ static enum usb_wakeup_event _is_host_wakeup(struct fsl_usb2_platform_data *pdat
                pr_debug("the otgsc is 0x%x, usbsts is 0x%x, portsc is 0x%x, wakeup_irq is 0x%x\n", UOG_OTGSC, UOG_USBSTS, UOG_PORTSC1, wakeup_req);
        }
        /* if ID change sts, it is a host wakeup event */
-       if (wakeup_req && (otgsc & OTGSC_IS_USB_ID)) {
+       if (otgsc & OTGSC_IS_USB_ID) {
                pr_debug("otg host ID wakeup\n");
-               /* if host ID wakeup, we must clear the b session change sts */
-               otgsc &= (~OTGSC_IS_USB_ID);
+               /* if host ID wakeup, we must clear the ID change sts */
+               otgsc |= OTGSC_IS_USB_ID;
                return WAKEUP_EVENT_ID;
        }
        if (wakeup_req  && (!(otgsc & OTGSC_STS_USB_ID))) {