usb: dwc2: skip L2 state of hcd if controller work in device mode
authorMeng Dongyang <daniel.meng@rock-chips.com>
Wed, 9 Aug 2017 02:34:09 +0000 (10:34 +0800)
committerFelipe Balbi <felipe.balbi@linux.intel.com>
Tue, 15 Aug 2017 11:18:55 +0000 (14:18 +0300)
In the case hcd autosuspend is enabled, the hcd will enter L2 state
if no device connected. But if the controller works in otg mode, the
gadget driver still works in L0 state if connected with host. This
may result in transfer fail when gadget enqueue new request but the
hcd driver has set the global state into L2. This patch prevent the
hcd enter L2 state if the controller work in device mode.

Signed-off-by: Meng Dongyang <daniel.meng@rock-chips.com>
Signed-off-by: Felipe Balbi <felipe.balbi@linux.intel.com>
drivers/usb/dwc2/hcd.c

index 740c7e86d31b912bf0f3c861a687b369acdc5b3d..c2631145f404943fc148b747c4620e0a5165153d 100644 (file)
@@ -4388,6 +4388,9 @@ static int _dwc2_hcd_suspend(struct usb_hcd *hcd)
 
        spin_lock_irqsave(&hsotg->lock, flags);
 
+       if (dwc2_is_device_mode(hsotg))
+               goto unlock;
+
        if (hsotg->lx_state != DWC2_L0)
                goto unlock;
 
@@ -4446,6 +4449,9 @@ static int _dwc2_hcd_resume(struct usb_hcd *hcd)
 
        spin_lock_irqsave(&hsotg->lock, flags);
 
+       if (dwc2_is_device_mode(hsotg))
+               goto unlock;
+
        if (hsotg->lx_state != DWC2_L2)
                goto unlock;