aboutsummaryrefslogtreecommitdiffstats
path: root/sound
diff options
context:
space:
mode:
authorBo Shen <voice.shen@atmel.com>2014-06-08 23:31:44 -0400
committerMark Brown <broonie@linaro.org>2014-06-09 16:12:55 -0400
commit8b9920e3f4019313803419923b8c5c486fa82d84 (patch)
tree6b3660d490c0047c8873f9c048e4bd3c0fe367fc /sound
parente1d4d3c854f25cff6c6c139588570e124d5e8fa4 (diff)
ASoC: wm8904: switch to CCF
Enable WM8904 to support common clock framework. Signed-off-by: Bo Shen <voice.shen@atmel.com> Signed-off-by: Mark Brown <broonie@linaro.org>
Diffstat (limited to 'sound')
-rw-r--r--sound/soc/codecs/wm8904.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/sound/soc/codecs/wm8904.c b/sound/soc/codecs/wm8904.c
index f7c549949c54..da46c2ad0566 100644
--- a/sound/soc/codecs/wm8904.c
+++ b/sound/soc/codecs/wm8904.c
@@ -11,6 +11,7 @@
11 * published by the Free Software Foundation. 11 * published by the Free Software Foundation.
12 */ 12 */
13 13
14#include <linux/clk.h>
14#include <linux/module.h> 15#include <linux/module.h>
15#include <linux/moduleparam.h> 16#include <linux/moduleparam.h>
16#include <linux/init.h> 17#include <linux/init.h>
@@ -49,6 +50,7 @@ static const char *wm8904_supply_names[WM8904_NUM_SUPPLIES] = {
49/* codec private data */ 50/* codec private data */
50struct wm8904_priv { 51struct wm8904_priv {
51 struct regmap *regmap; 52 struct regmap *regmap;
53 struct clk *mclk;
52 54
53 enum wm8904_type devtype; 55 enum wm8904_type devtype;
54 56
@@ -1828,6 +1830,7 @@ static int wm8904_set_bias_level(struct snd_soc_codec *codec,
1828 1830
1829 switch (level) { 1831 switch (level) {
1830 case SND_SOC_BIAS_ON: 1832 case SND_SOC_BIAS_ON:
1833 clk_prepare_enable(wm8904->mclk);
1831 break; 1834 break;
1832 1835
1833 case SND_SOC_BIAS_PREPARE: 1836 case SND_SOC_BIAS_PREPARE:
@@ -1894,6 +1897,7 @@ static int wm8904_set_bias_level(struct snd_soc_codec *codec,
1894 1897
1895 regulator_bulk_disable(ARRAY_SIZE(wm8904->supplies), 1898 regulator_bulk_disable(ARRAY_SIZE(wm8904->supplies),
1896 wm8904->supplies); 1899 wm8904->supplies);
1900 clk_disable_unprepare(wm8904->mclk);
1897 break; 1901 break;
1898 } 1902 }
1899 codec->dapm.bias_level = level; 1903 codec->dapm.bias_level = level;
@@ -2110,6 +2114,13 @@ static int wm8904_i2c_probe(struct i2c_client *i2c,
2110 if (wm8904 == NULL) 2114 if (wm8904 == NULL)
2111 return -ENOMEM; 2115 return -ENOMEM;
2112 2116
2117 wm8904->mclk = devm_clk_get(&i2c->dev, "mclk");
2118 if (IS_ERR(wm8904->mclk)) {
2119 ret = PTR_ERR(wm8904->mclk);
2120 dev_err(&i2c->dev, "Failed to get MCLK\n");
2121 return ret;
2122 }
2123
2113 wm8904->regmap = devm_regmap_init_i2c(i2c, &wm8904_regmap); 2124 wm8904->regmap = devm_regmap_init_i2c(i2c, &wm8904_regmap);
2114 if (IS_ERR(wm8904->regmap)) { 2125 if (IS_ERR(wm8904->regmap)) {
2115 ret = PTR_ERR(wm8904->regmap); 2126 ret = PTR_ERR(wm8904->regmap);