diff options
author | Roger Quadros <rogerq@ti.com> | 2014-03-06 09:38:44 -0500 |
---|---|---|
committer | Kishon Vijay Abraham I <kishon@ti.com> | 2014-03-09 03:15:11 -0400 |
commit | 56042e4e975ce7b0817ebc024d02fa96ee01e107 (patch) | |
tree | e161f81c77811cc4ee757e7d042a6d2374920d94 /drivers/phy | |
parent | 629138dbaec33cecbb61fda1f5c1f047a1374993 (diff) |
phy: ti-pipe3: Fix suspend/resume and module reload
Due to Errata i783, SATA breaks if its DPLL is idled. The recommeded
workaround to issue a softreset to the SATA controller doesn't seem to
work. Here we just prevent SATA DPLL from Idling and hence avoid
the issue altogether.
Signed-off-by: Roger Quadros <rogerq@ti.com>
Signed-off-by: Kishon Vijay Abraham I <kishon@ti.com>
Diffstat (limited to 'drivers/phy')
-rw-r--r-- | drivers/phy/phy-ti-pipe3.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/drivers/phy/phy-ti-pipe3.c b/drivers/phy/phy-ti-pipe3.c index 12cc900491a4..591367654613 100644 --- a/drivers/phy/phy-ti-pipe3.c +++ b/drivers/phy/phy-ti-pipe3.c | |||
@@ -238,6 +238,10 @@ static int ti_pipe3_exit(struct phy *x) | |||
238 | u32 val; | 238 | u32 val; |
239 | unsigned long timeout; | 239 | unsigned long timeout; |
240 | 240 | ||
241 | /* SATA DPLL can't be powered down due to Errata i783 */ | ||
242 | if (of_device_is_compatible(phy->dev->of_node, "ti,phy-pipe3-sata")) | ||
243 | return 0; | ||
244 | |||
241 | /* Put DPLL in IDLE mode */ | 245 | /* Put DPLL in IDLE mode */ |
242 | val = ti_pipe3_readl(phy->pll_ctrl_base, PLL_CONFIGURATION2); | 246 | val = ti_pipe3_readl(phy->pll_ctrl_base, PLL_CONFIGURATION2); |
243 | val |= PLL_IDLE; | 247 | val |= PLL_IDLE; |