2 * Speyside with WM8962 audio support
4 * Copyright 2011 Wolfson Microelectronics
6 * This program is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License as published by the
8 * Free Software Foundation; either version 2 of the License, or (at your
9 * option) any later version.
12 #include <sound/soc.h>
13 #include <sound/soc-dapm.h>
14 #include <sound/jack.h>
15 #include <linux/gpio.h>
16 #include <linux/module.h>
18 #include "../codecs/wm8962.h"
20 static int sample_rate
= 44100;
22 static int speyside_wm8962_set_bias_level(struct snd_soc_card
*card
,
23 struct snd_soc_dapm_context
*dapm
,
24 enum snd_soc_bias_level level
)
26 struct snd_soc_dai
*codec_dai
= card
->rtd
[0].codec_dai
;
29 if (dapm
->dev
!= codec_dai
->dev
)
33 case SND_SOC_BIAS_PREPARE
:
34 if (dapm
->bias_level
== SND_SOC_BIAS_STANDBY
) {
35 ret
= snd_soc_dai_set_pll(codec_dai
, WM8962_FLL
,
36 WM8962_FLL_MCLK
, 32768,
39 pr_err("Failed to start FLL: %d\n", ret
);
41 ret
= snd_soc_dai_set_sysclk(codec_dai
,
46 pr_err("Failed to set SYSCLK: %d\n", ret
);
59 static int speyside_wm8962_set_bias_level_post(struct snd_soc_card
*card
,
60 struct snd_soc_dapm_context
*dapm
,
61 enum snd_soc_bias_level level
)
63 struct snd_soc_dai
*codec_dai
= card
->rtd
[0].codec_dai
;
66 if (dapm
->dev
!= codec_dai
->dev
)
70 case SND_SOC_BIAS_STANDBY
:
71 ret
= snd_soc_dai_set_sysclk(codec_dai
, WM8962_SYSCLK_MCLK
,
72 32768, SND_SOC_CLOCK_IN
);
74 pr_err("Failed to switch away from FLL: %d\n", ret
);
78 ret
= snd_soc_dai_set_pll(codec_dai
, WM8962_FLL
,
81 pr_err("Failed to stop FLL: %d\n", ret
);
90 dapm
->bias_level
= level
;
95 static int speyside_wm8962_hw_params(struct snd_pcm_substream
*substream
,
96 struct snd_pcm_hw_params
*params
)
98 sample_rate
= params_rate(params
);
103 static struct snd_soc_ops speyside_wm8962_ops
= {
104 .hw_params
= speyside_wm8962_hw_params
,
107 static struct snd_soc_dai_link speyside_wm8962_dai
[] = {
110 .stream_name
= "CPU",
111 .cpu_dai_name
= "samsung-i2s.0",
112 .codec_dai_name
= "wm8962",
113 .platform_name
= "samsung-audio",
114 .codec_name
= "wm8962.1-001a",
115 .dai_fmt
= SND_SOC_DAIFMT_I2S
| SND_SOC_DAIFMT_NB_NF
116 | SND_SOC_DAIFMT_CBM_CFM
,
117 .ops
= &speyside_wm8962_ops
,
121 static const struct snd_kcontrol_new controls
[] = {
122 SOC_DAPM_PIN_SWITCH("Main Speaker"),
123 SOC_DAPM_PIN_SWITCH("DMIC"),
126 static struct snd_soc_dapm_widget widgets
[] = {
127 SND_SOC_DAPM_HP("Headphone", NULL
),
128 SND_SOC_DAPM_MIC("Headset Mic", NULL
),
130 SND_SOC_DAPM_MIC("DMIC", NULL
),
131 SND_SOC_DAPM_MIC("AMIC", NULL
),
133 SND_SOC_DAPM_SPK("Main Speaker", NULL
),
136 static struct snd_soc_dapm_route audio_paths
[] = {
137 { "Headphone", NULL
, "HPOUTL" },
138 { "Headphone", NULL
, "HPOUTR" },
140 { "Main Speaker", NULL
, "SPKOUTL" },
141 { "Main Speaker", NULL
, "SPKOUTR" },
143 { "Headset Mic", NULL
, "MICBIAS" },
144 { "IN4L", NULL
, "Headset Mic" },
145 { "IN4R", NULL
, "Headset Mic" },
147 { "AMIC", NULL
, "MICBIAS" },
148 { "IN1L", NULL
, "AMIC" },
149 { "IN1R", NULL
, "AMIC" },
151 { "DMIC", NULL
, "MICBIAS" },
152 { "DMICDAT", NULL
, "DMIC" },
155 static struct snd_soc_jack speyside_wm8962_headset
;
157 /* Headset jack detection DAPM pins */
158 static struct snd_soc_jack_pin speyside_wm8962_headset_pins
[] = {
160 .pin
= "Headset Mic",
161 .mask
= SND_JACK_MICROPHONE
,
165 .mask
= SND_JACK_MICROPHONE
,
169 static int speyside_wm8962_late_probe(struct snd_soc_card
*card
)
171 struct snd_soc_codec
*codec
= card
->rtd
[0].codec
;
172 struct snd_soc_dai
*codec_dai
= card
->rtd
[0].codec_dai
;
175 ret
= snd_soc_dai_set_sysclk(codec_dai
, WM8962_SYSCLK_MCLK
,
176 32768, SND_SOC_CLOCK_IN
);
180 ret
= snd_soc_jack_new(codec
, "Headset",
181 SND_JACK_HEADSET
| SND_JACK_BTN_0
,
182 &speyside_wm8962_headset
);
186 ret
= snd_soc_jack_add_pins(&speyside_wm8962_headset
,
187 ARRAY_SIZE(speyside_wm8962_headset_pins
),
188 speyside_wm8962_headset_pins
);
192 wm8962_mic_detect(codec
, &speyside_wm8962_headset
);
197 static struct snd_soc_card speyside_wm8962
= {
198 .name
= "Speyside WM8962",
199 .dai_link
= speyside_wm8962_dai
,
200 .num_links
= ARRAY_SIZE(speyside_wm8962_dai
),
202 .set_bias_level
= speyside_wm8962_set_bias_level
,
203 .set_bias_level_post
= speyside_wm8962_set_bias_level_post
,
205 .controls
= controls
,
206 .num_controls
= ARRAY_SIZE(controls
),
207 .dapm_widgets
= widgets
,
208 .num_dapm_widgets
= ARRAY_SIZE(widgets
),
209 .dapm_routes
= audio_paths
,
210 .num_dapm_routes
= ARRAY_SIZE(audio_paths
),
212 .late_probe
= speyside_wm8962_late_probe
,
215 static __devinit
int speyside_wm8962_probe(struct platform_device
*pdev
)
217 struct snd_soc_card
*card
= &speyside_wm8962
;
220 card
->dev
= &pdev
->dev
;
222 ret
= snd_soc_register_card(card
);
224 dev_err(&pdev
->dev
, "snd_soc_register_card() failed: %d\n",
232 static int __devexit
speyside_wm8962_remove(struct platform_device
*pdev
)
234 struct snd_soc_card
*card
= platform_get_drvdata(pdev
);
236 snd_soc_unregister_card(card
);
241 static struct platform_driver speyside_wm8962_driver
= {
243 .name
= "speyside-wm8962",
244 .owner
= THIS_MODULE
,
245 .pm
= &snd_soc_pm_ops
,
247 .probe
= speyside_wm8962_probe
,
248 .remove
= __devexit_p(speyside_wm8962_remove
),
251 static int __init
speyside_wm8962_audio_init(void)
253 return platform_driver_register(&speyside_wm8962_driver
);
255 module_init(speyside_wm8962_audio_init
);
257 static void __exit
speyside_wm8962_audio_exit(void)
259 platform_driver_unregister(&speyside_wm8962_driver
);
261 module_exit(speyside_wm8962_audio_exit
);
263 MODULE_DESCRIPTION("Speyside WM8962 audio support");
264 MODULE_AUTHOR("Mark Brown <broonie@opensource.wolfsonmicro.com>");
265 MODULE_LICENSE("GPL");
266 MODULE_ALIAS("platform:speyside-wm8962");