Skip to content

Commit e11d2bf

Browse files
author
Peter Chen
committed
usb: cdns3: gadget: own the lock wrongly at the suspend routine
When the system goes to suspend, if the controller is at device mode with cable connecting to host, the call stack is: cdns3_suspend-> cdns3_gadget_suspend -> cdns3_disconnect_gadget, after cdns3_disconnect_gadget is called, it owns lock wrongly, it causes the system being deadlock after resume due to at cdns3_device_thread_irq_handler, it tries to get the lock, but can't get it forever. To fix it, we delete the unlock-lock operations at cdns3_disconnect_gadget, and do it at the caller. Fixes: b1234e3 ("usb: cdns3: add runtime PM support") Acked-by: Pawel Laszczak <pawell@cadence.com> Signed-off-by: Peter Chen <peter.chen@nxp.com>
1 parent 52d3967 commit e11d2bf

1 file changed

Lines changed: 7 additions & 4 deletions

File tree

drivers/usb/cdns3/gadget.c

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1750,11 +1750,8 @@ static int cdns3_check_ep_interrupt_proceed(struct cdns3_endpoint *priv_ep)
17501750

17511751
static void cdns3_disconnect_gadget(struct cdns3_device *priv_dev)
17521752
{
1753-
if (priv_dev->gadget_driver && priv_dev->gadget_driver->disconnect) {
1754-
spin_unlock(&priv_dev->lock);
1753+
if (priv_dev->gadget_driver && priv_dev->gadget_driver->disconnect)
17551754
priv_dev->gadget_driver->disconnect(&priv_dev->gadget);
1756-
spin_lock(&priv_dev->lock);
1757-
}
17581755
}
17591756

17601757
/**
@@ -1765,6 +1762,7 @@ static void cdns3_disconnect_gadget(struct cdns3_device *priv_dev)
17651762
*/
17661763
static void cdns3_check_usb_interrupt_proceed(struct cdns3_device *priv_dev,
17671764
u32 usb_ists)
1765+
__must_hold(&priv_dev->lock)
17681766
{
17691767
int speed = 0;
17701768

@@ -1789,7 +1787,9 @@ static void cdns3_check_usb_interrupt_proceed(struct cdns3_device *priv_dev,
17891787

17901788
/* Disconnection detected */
17911789
if (usb_ists & (USB_ISTS_DIS2I | USB_ISTS_DISI)) {
1790+
spin_unlock(&priv_dev->lock);
17921791
cdns3_disconnect_gadget(priv_dev);
1792+
spin_lock(&priv_dev->lock);
17931793
priv_dev->gadget.speed = USB_SPEED_UNKNOWN;
17941794
usb_gadget_set_state(&priv_dev->gadget, USB_STATE_NOTATTACHED);
17951795
cdns3_hw_reset_eps_config(priv_dev);
@@ -3275,10 +3275,13 @@ static int __cdns3_gadget_init(struct cdns3 *cdns)
32753275
}
32763276

32773277
static int cdns3_gadget_suspend(struct cdns3 *cdns, bool do_wakeup)
3278+
__must_hold(&cdns->lock)
32783279
{
32793280
struct cdns3_device *priv_dev = cdns->gadget_dev;
32803281

3282+
spin_unlock(&cdns->lock);
32813283
cdns3_disconnect_gadget(priv_dev);
3284+
spin_lock(&cdns->lock);
32823285

32833286
priv_dev->gadget.speed = USB_SPEED_UNKNOWN;
32843287
usb_gadget_set_state(&priv_dev->gadget, USB_STATE_NOTATTACHED);

0 commit comments

Comments
 (0)