diff options
author | Charles Keepax <ckeepax@opensource.wolfsonmicro.com> | 2015-04-07 12:55:10 +0100 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2015-04-08 19:25:40 +0100 |
commit | 1a60667fc81fdab3733a1d41480da3a5d0ccecea (patch) | |
tree | d146cc70eb718062b3f7546a896c21bbaf9e4b1d /sound/soc/codecs/wm8804-i2c.c | |
parent | 5631f18763f1b0989cec7cbf8f3badcb74dfe469 (diff) | |
download | blackbird-obmc-linux-1a60667fc81fdab3733a1d41480da3a5d0ccecea.tar.gz blackbird-obmc-linux-1a60667fc81fdab3733a1d41480da3a5d0ccecea.zip |
ASoC: wm8804: Enable runtime PM
Currently both the oscillator and the PLL are powered up in
set_bias_level. This can be problematic when using output clocks from
the wm8804 for other devices. The snd_soc_codec_set_pll API defines that
a clock should be available once the call returns, however, with all the
clocking controlled in set_bias_level this is not currently the case.
This patch enables pm_runtime for the wm8804, enabling both the
regulators and the oscillator when the chip resumes, and enabling the
PLL in the snd_soc_codec_set_pll call. Naturally the enabling the PLL
will also cause the chip to resume.
Signed-off-by: Charles Keepax <ckeepax@opensource.wolfsonmicro.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'sound/soc/codecs/wm8804-i2c.c')
-rw-r--r-- | sound/soc/codecs/wm8804-i2c.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sound/soc/codecs/wm8804-i2c.c b/sound/soc/codecs/wm8804-i2c.c index 5bd4af2b4059..6596f5f3a0c3 100644 --- a/sound/soc/codecs/wm8804-i2c.c +++ b/sound/soc/codecs/wm8804-i2c.c @@ -50,6 +50,7 @@ static struct i2c_driver wm8804_i2c_driver = { .driver = { .name = "wm8804", .owner = THIS_MODULE, + .pm = &wm8804_pm, .of_match_table = wm8804_of_match, }, .probe = wm8804_i2c_probe, |