Commit 32808237 authored by Roger Quadros's avatar Roger Quadros Committed by Felipe Balbi

usb: dwc3: fix runtime PM in error path

If there is a failure after pm_runtime_enable/get_sync()
we need to call pm_runtime_disable/put_sync().

Otherwise it will lead to an unbalanced pm_runtime_enable() on the
subsequent probe if the earlier probe bailed out due to -EPROBE_DEFER.

pm_runtime_get_sync() can fail as well so deal with that case too.
Signed-off-by: default avatarRoger Quadros <rogerq@ti.com>
Signed-off-by: default avatarFelipe Balbi <felipe.balbi@linux.intel.com>
parent b6d4e16e
...@@ -965,14 +965,17 @@ static int dwc3_probe(struct platform_device *pdev) ...@@ -965,14 +965,17 @@ static int dwc3_probe(struct platform_device *pdev)
pm_runtime_use_autosuspend(dev); pm_runtime_use_autosuspend(dev);
pm_runtime_set_autosuspend_delay(dev, DWC3_DEFAULT_AUTOSUSPEND_DELAY); pm_runtime_set_autosuspend_delay(dev, DWC3_DEFAULT_AUTOSUSPEND_DELAY);
pm_runtime_enable(dev); pm_runtime_enable(dev);
pm_runtime_get_sync(dev); ret = pm_runtime_get_sync(dev);
if (ret < 0)
goto err1;
pm_runtime_forbid(dev); pm_runtime_forbid(dev);
ret = dwc3_alloc_event_buffers(dwc, DWC3_EVENT_BUFFERS_SIZE); ret = dwc3_alloc_event_buffers(dwc, DWC3_EVENT_BUFFERS_SIZE);
if (ret) { if (ret) {
dev_err(dwc->dev, "failed to allocate event buffers\n"); dev_err(dwc->dev, "failed to allocate event buffers\n");
ret = -ENOMEM; ret = -ENOMEM;
goto err0; goto err2;
} }
if (IS_ENABLED(CONFIG_USB_DWC3_HOST) && if (IS_ENABLED(CONFIG_USB_DWC3_HOST) &&
...@@ -989,12 +992,12 @@ static int dwc3_probe(struct platform_device *pdev) ...@@ -989,12 +992,12 @@ static int dwc3_probe(struct platform_device *pdev)
ret = dwc3_alloc_scratch_buffers(dwc); ret = dwc3_alloc_scratch_buffers(dwc);
if (ret) if (ret)
goto err1; goto err3;
ret = dwc3_core_init(dwc); ret = dwc3_core_init(dwc);
if (ret) { if (ret) {
dev_err(dev, "failed to initialize core\n"); dev_err(dev, "failed to initialize core\n");
goto err2; goto err4;
} }
/* Check the maximum_speed parameter */ /* Check the maximum_speed parameter */
...@@ -1026,23 +1029,30 @@ static int dwc3_probe(struct platform_device *pdev) ...@@ -1026,23 +1029,30 @@ static int dwc3_probe(struct platform_device *pdev)
ret = dwc3_core_init_mode(dwc); ret = dwc3_core_init_mode(dwc);
if (ret) if (ret)
goto err3; goto err5;
dwc3_debugfs_init(dwc); dwc3_debugfs_init(dwc);
pm_runtime_put(dev); pm_runtime_put(dev);
return 0; return 0;
err3: err5:
dwc3_event_buffers_cleanup(dwc); dwc3_event_buffers_cleanup(dwc);
err2: err4:
dwc3_free_scratch_buffers(dwc); dwc3_free_scratch_buffers(dwc);
err1: err3:
dwc3_free_event_buffers(dwc); dwc3_free_event_buffers(dwc);
dwc3_ulpi_exit(dwc); dwc3_ulpi_exit(dwc);
err2:
pm_runtime_allow(&pdev->dev);
err1:
pm_runtime_put_sync(&pdev->dev);
pm_runtime_disable(&pdev->dev);
err0: err0:
/* /*
* restore res->start back to its original value so that, in case the * restore res->start back to its original value so that, in case the
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment