OSDN Git Service

phy: ti-pipe3: Disable clocks on system suspend
authorRoger Quadros <rogerq@ti.com>
Tue, 13 Jan 2015 12:23:19 +0000 (14:23 +0200)
committerKishon Vijay Abraham I <kishon@ti.com>
Wed, 21 Jan 2015 09:53:06 +0000 (15:23 +0530)
commit6e7384320ffa28a3732513f51fc56119003edbd3
treedf29d5b9579a5d8aa4ad36dd234af3f920377634
parentec6f34e5b552fb0a52e6aae1a5afbbb1605cc6cc
phy: ti-pipe3: Disable clocks on system suspend

On system suspend, the runtime_suspend() driver hook doesn't get
called for USB phy and so the clocks are not disabled in the driver.
This causes the L3INIT_960M_GFCLK and L3INIT_480M_GFCLK to remain
active on the DRA7 platform while in system suspend.

In case of pcie-phy, the runtime_suspend hook gets called after
the suspend hook so we introduce a flag phy->enabled to keep
track if our clocks are enabled or not to prevent multiple
enable/disables.

Add suspend/resume hooks to the driver.
Move enabling/disabling clock code into helper functions.

Reported-by: Nishant Menon <nm@ti.com>
Signed-off-by: Roger Quadros <rogerq@ti.com>
Signed-off-by: Kishon Vijay Abraham I <kishon@ti.com>
drivers/phy/phy-ti-pipe3.c