aboutsummaryrefslogtreecommitdiffstats
path: root/sound/soc/codecs/wm8994.c
diff options
context:
space:
mode:
authorMark Brown <broonie@opensource.wolfsonmicro.com>2010-07-07 22:25:43 -0400
committerMark Brown <broonie@opensource.wolfsonmicro.com>2010-07-08 19:50:12 -0400
commit66b47fdb851924956b6e4696fb43a3496ae2c462 (patch)
tree6f15ecb7e2254dfe53339457adbd372dfee81621 /sound/soc/codecs/wm8994.c
parente88ff1e6db0ae6462e881d9f10776f7bdfd32e64 (diff)
ASoC: Implement WM8994 OPCLK support
The WM8994 can output a clock derived from its internal SYSCLK, called OPCLK. The rate can be selected as a sysclk, with a division from the SYSCLK rate specified (multiplied by 10 since a division of 5.5 is supported) and the clock can be disabled by specifying a divisor of zero. Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com> Acked-by: Liam Girdwood <lrg@slimlogic.co.uk>
Diffstat (limited to 'sound/soc/codecs/wm8994.c')
-rw-r--r--sound/soc/codecs/wm8994.c23
1 files changed, 23 insertions, 0 deletions
diff --git a/sound/soc/codecs/wm8994.c b/sound/soc/codecs/wm8994.c
index ed8be9db2b02..c41cf47f4009 100644
--- a/sound/soc/codecs/wm8994.c
+++ b/sound/soc/codecs/wm8994.c
@@ -2492,6 +2492,7 @@ static const struct snd_kcontrol_new aif3adc_mux =
2492static const struct snd_soc_dapm_widget wm8994_dapm_widgets[] = { 2492static const struct snd_soc_dapm_widget wm8994_dapm_widgets[] = {
2493SND_SOC_DAPM_INPUT("DMIC1DAT"), 2493SND_SOC_DAPM_INPUT("DMIC1DAT"),
2494SND_SOC_DAPM_INPUT("DMIC2DAT"), 2494SND_SOC_DAPM_INPUT("DMIC2DAT"),
2495SND_SOC_DAPM_INPUT("Clock"),
2495 2496
2496SND_SOC_DAPM_SUPPLY("CLK_SYS", SND_SOC_NOPM, 0, 0, clk_sys_event, 2497SND_SOC_DAPM_SUPPLY("CLK_SYS", SND_SOC_NOPM, 0, 0, clk_sys_event,
2497 SND_SOC_DAPM_POST_PMU | SND_SOC_DAPM_PRE_PMD), 2498 SND_SOC_DAPM_POST_PMU | SND_SOC_DAPM_PRE_PMD),
@@ -2966,11 +2967,14 @@ static int wm8994_set_fll(struct snd_soc_dai *dai, int id, int src,
2966 return 0; 2967 return 0;
2967} 2968}
2968 2969
2970static int opclk_divs[] = { 10, 20, 30, 40, 55, 60, 80, 120, 160 };
2971
2969static int wm8994_set_dai_sysclk(struct snd_soc_dai *dai, 2972static int wm8994_set_dai_sysclk(struct snd_soc_dai *dai,
2970 int clk_id, unsigned int freq, int dir) 2973 int clk_id, unsigned int freq, int dir)
2971{ 2974{
2972 struct snd_soc_codec *codec = dai->codec; 2975 struct snd_soc_codec *codec = dai->codec;
2973 struct wm8994_priv *wm8994 = snd_soc_codec_get_drvdata(codec); 2976 struct wm8994_priv *wm8994 = snd_soc_codec_get_drvdata(codec);
2977 int i;
2974 2978
2975 switch (dai->id) { 2979 switch (dai->id) {
2976 case 1: 2980 case 1:
@@ -3008,6 +3012,25 @@ static int wm8994_set_dai_sysclk(struct snd_soc_dai *dai,
3008 dev_dbg(dai->dev, "AIF%d using FLL2\n", dai->id); 3012 dev_dbg(dai->dev, "AIF%d using FLL2\n", dai->id);
3009 break; 3013 break;
3010 3014
3015 case WM8994_SYSCLK_OPCLK:
3016 /* Special case - a division (times 10) is given and
3017 * no effect on main clocking.
3018 */
3019 if (freq) {
3020 for (i = 0; i < ARRAY_SIZE(opclk_divs); i++)
3021 if (opclk_divs[i] == freq)
3022 break;
3023 if (i == ARRAY_SIZE(opclk_divs))
3024 return -EINVAL;
3025 snd_soc_update_bits(codec, WM8994_CLOCKING_2,
3026 WM8994_OPCLK_DIV_MASK, i);
3027 snd_soc_update_bits(codec, WM8994_POWER_MANAGEMENT_2,
3028 WM8994_OPCLK_ENA, WM8994_OPCLK_ENA);
3029 } else {
3030 snd_soc_update_bits(codec, WM8994_POWER_MANAGEMENT_2,
3031 WM8994_OPCLK_ENA, 0);
3032 }
3033
3011 default: 3034 default:
3012 return -EINVAL; 3035 return -EINVAL;
3013 } 3036 }