aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSugar Zhang <sugar.zhang@rock-chips.com>2016-09-07 02:27:33 -0400
committerMark Brown <broonie@kernel.org>2016-09-12 15:00:45 -0400
commitf0447f6cbb202e1be8244d15aee390a96d65e490 (patch)
tree55d4ff29bdf50f6a419f964ef8e667fd309201a9
parentf506513ad80dc7ca0b4bfe26a228a801c08d1db7 (diff)
ASoC: rockchip: i2s: restore register during runtime_suspend/resume cycle
when step into runtime_suspend, i2s pd will be disabled and loss state. so need to restore register when runtime_resume. Signed-off-by: Sugar Zhang <sugar.zhang@rock-chips.com> Signed-off-by: Mark Brown <broonie@kernel.org>
-rw-r--r--sound/soc/rockchip/rockchip_i2s.c10
1 files changed, 9 insertions, 1 deletions
diff --git a/sound/soc/rockchip/rockchip_i2s.c b/sound/soc/rockchip/rockchip_i2s.c
index 652e8c5ea166..974915cb4c4f 100644
--- a/sound/soc/rockchip/rockchip_i2s.c
+++ b/sound/soc/rockchip/rockchip_i2s.c
@@ -57,6 +57,7 @@ static int i2s_runtime_suspend(struct device *dev)
57{ 57{
58 struct rk_i2s_dev *i2s = dev_get_drvdata(dev); 58 struct rk_i2s_dev *i2s = dev_get_drvdata(dev);
59 59
60 regcache_cache_only(i2s->regmap, true);
60 clk_disable_unprepare(i2s->mclk); 61 clk_disable_unprepare(i2s->mclk);
61 62
62 return 0; 63 return 0;
@@ -73,7 +74,14 @@ static int i2s_runtime_resume(struct device *dev)
73 return ret; 74 return ret;
74 } 75 }
75 76
76 return 0; 77 regcache_cache_only(i2s->regmap, false);
78 regcache_mark_dirty(i2s->regmap);
79
80 ret = regcache_sync(i2s->regmap);
81 if (ret)
82 clk_disable_unprepare(i2s->mclk);
83
84 return ret;
77} 85}
78 86
79static inline struct rk_i2s_dev *to_info(struct snd_soc_dai *dai) 87static inline struct rk_i2s_dev *to_info(struct snd_soc_dai *dai)