Skip to content

Commit 58a66db

Browse files
tmlindkishon
authored andcommitted
phy: twl4030-usb: Fix unbalanced pm_runtime_enable on module reload
If we reload phy-twl4030-usb, we get a warning about unbalanced pm_runtime_enable. Let's fix the issue and also fix idling of the device on unload before we attempt to shut it down. If we don't properly idle the PHY before shutting it down on removal, the twl4030 ends up consuming about 62mW of extra power compared to running idle with the module loaded. Cc: stable@vger.kernel.org Cc: Bin Liu <b-liu@ti.com> Cc: Felipe Balbi <balbi@ti.com> Cc: Kishon Vijay Abraham I <kishon@ti.com> Cc: NeilBrown <neil@brown.name> Signed-off-by: Tony Lindgren <tony@atomide.com> Signed-off-by: Kishon Vijay Abraham I <kishon@ti.com>
1 parent b241d31 commit 58a66db

File tree

1 file changed

+8
-5
lines changed

1 file changed

+8
-5
lines changed

drivers/phy/phy-twl4030-usb.c

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -715,6 +715,7 @@ static int twl4030_usb_probe(struct platform_device *pdev)
715715
pm_runtime_use_autosuspend(&pdev->dev);
716716
pm_runtime_set_autosuspend_delay(&pdev->dev, 2000);
717717
pm_runtime_enable(&pdev->dev);
718+
pm_runtime_get_sync(&pdev->dev);
718719

719720
/* Our job is to use irqs and status from the power module
720721
* to keep the transceiver disabled when nothing's connected.
@@ -758,6 +759,13 @@ static int twl4030_usb_remove(struct platform_device *pdev)
758759
/* set transceiver mode to power on defaults */
759760
twl4030_usb_set_mode(twl, -1);
760761

762+
/* idle ulpi before powering off */
763+
if (cable_present(twl->linkstat))
764+
pm_runtime_put_noidle(twl->dev);
765+
pm_runtime_mark_last_busy(twl->dev);
766+
pm_runtime_put_sync_suspend(twl->dev);
767+
pm_runtime_disable(twl->dev);
768+
761769
/* autogate 60MHz ULPI clock,
762770
* clear dpll clock request for i2c access,
763771
* disable 32KHz
@@ -772,11 +780,6 @@ static int twl4030_usb_remove(struct platform_device *pdev)
772780
/* disable complete OTG block */
773781
twl4030_usb_clear_bits(twl, POWER_CTRL, POWER_CTRL_OTG_ENAB);
774782

775-
if (cable_present(twl->linkstat))
776-
pm_runtime_put_noidle(twl->dev);
777-
pm_runtime_mark_last_busy(twl->dev);
778-
pm_runtime_put(twl->dev);
779-
780783
return 0;
781784
}
782785

0 commit comments

Comments
 (0)