]> git.baikalelectronics.ru Git - kernel.git/commit
usb: dwc3: Fix lock-up on ID change during system suspend/resume
authorRoger Quadros <rogerq@ti.com>
Tue, 27 Feb 2018 10:41:41 +0000 (12:41 +0200)
committerFelipe Balbi <felipe.balbi@linux.intel.com>
Wed, 28 Feb 2018 07:57:04 +0000 (09:57 +0200)
commite981c053d024d232acf5901be1232bb25f94c6b7
tree7025fc50f713f415a54aed3ffc54c4979f72ab1d
parentbbe11a1155cbc6079fdd2c18f95f119157e6b7ca
usb: dwc3: Fix lock-up on ID change during system suspend/resume

To reproduce the lock up do the following
- connect otg host adapter and a USB device to the dual-role port
so that it is in host mode.
- suspend to mem.
- disconnect otg adapter.
- resume the system.

If we call dwc3_host_exit() before tasks are thawed
xhci_plat_remove() seems to lock up at the second usb_remove_hcd() call.

To work around this we queue the _dwc3_set_mode() work on
the system_freezable_wq.

Fixes: 3dad5b872821 ("usb: dwc3: core: make dwc3_set_mode() work properly")
Cc: <stable@vger.kernel.org> # v4.12+
Suggested-by: Manu Gautam <mgautam@codeaurora.org>
Signed-off-by: Roger Quadros <rogerq@ti.com>
Signed-off-by: Felipe Balbi <felipe.balbi@linux.intel.com>
drivers/usb/dwc3/core.c