Add linux-next specific files for 20110831
[linux-2.6/next.git] / sound / soc / samsung / speyside.c
blobbfed1ff7093fe703620d4ebae6683523de098e68
1 /*
2 * Speyside 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>
17 #include "../codecs/wm8996.h"
18 #include "../codecs/wm9081.h"
20 #define WM8996_HPSEL_GPIO 214
22 static int speyside_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;
27 int ret;
29 if (dapm->dev != codec_dai->dev)
30 return 0;
32 switch (level) {
33 case SND_SOC_BIAS_STANDBY:
34 ret = snd_soc_dai_set_sysclk(codec_dai, WM8996_SYSCLK_MCLK2,
35 32768, SND_SOC_CLOCK_IN);
36 if (ret < 0)
37 return ret;
39 ret = snd_soc_dai_set_pll(codec_dai, WM8996_FLL_MCLK2,
40 0, 0, 0);
41 if (ret < 0) {
42 pr_err("Failed to stop FLL\n");
43 return ret;
45 break;
47 default:
48 break;
51 return 0;
54 static int speyside_set_bias_level_post(struct snd_soc_card *card,
55 struct snd_soc_dapm_context *dapm,
56 enum snd_soc_bias_level level)
58 struct snd_soc_dai *codec_dai = card->rtd[0].codec_dai;
59 int ret;
61 if (dapm->dev != codec_dai->dev)
62 return 0;
64 switch (level) {
65 case SND_SOC_BIAS_PREPARE:
66 if (card->dapm.bias_level == SND_SOC_BIAS_STANDBY) {
67 ret = snd_soc_dai_set_pll(codec_dai, 0,
68 WM8996_FLL_MCLK2,
69 32768, 48000 * 256);
70 if (ret < 0) {
71 pr_err("Failed to start FLL\n");
72 return ret;
75 ret = snd_soc_dai_set_sysclk(codec_dai,
76 WM8996_SYSCLK_FLL,
77 48000 * 256,
78 SND_SOC_CLOCK_IN);
79 if (ret < 0)
80 return ret;
82 break;
84 default:
85 break;
88 card->dapm.bias_level = level;
90 return 0;
93 static int speyside_hw_params(struct snd_pcm_substream *substream,
94 struct snd_pcm_hw_params *params)
96 struct snd_soc_pcm_runtime *rtd = substream->private_data;
97 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
98 struct snd_soc_dai *codec_dai = rtd->codec_dai;
99 int ret;
101 ret = snd_soc_dai_set_fmt(codec_dai, SND_SOC_DAIFMT_I2S
102 | SND_SOC_DAIFMT_NB_NF
103 | SND_SOC_DAIFMT_CBM_CFM);
104 if (ret < 0)
105 return ret;
107 ret = snd_soc_dai_set_fmt(cpu_dai, SND_SOC_DAIFMT_I2S
108 | SND_SOC_DAIFMT_NB_NF
109 | SND_SOC_DAIFMT_CBM_CFM);
110 if (ret < 0)
111 return ret;
113 return 0;
116 static struct snd_soc_ops speyside_ops = {
117 .hw_params = speyside_hw_params,
120 static struct snd_soc_jack speyside_headset;
122 /* Headset jack detection DAPM pins */
123 static struct snd_soc_jack_pin speyside_headset_pins[] = {
125 .pin = "Headset Mic",
126 .mask = SND_JACK_MICROPHONE,
130 /* Default the headphone selection to active high */
131 static int speyside_jack_polarity;
133 static int speyside_get_micbias(struct snd_soc_dapm_widget *source,
134 struct snd_soc_dapm_widget *sink)
136 if (speyside_jack_polarity && (strcmp(source->name, "MICB1") == 0))
137 return 1;
138 if (!speyside_jack_polarity && (strcmp(source->name, "MICB2") == 0))
139 return 1;
141 return 0;
144 static void speyside_set_polarity(struct snd_soc_codec *codec,
145 int polarity)
147 speyside_jack_polarity = !polarity;
148 gpio_direction_output(WM8996_HPSEL_GPIO, speyside_jack_polarity);
150 /* Re-run DAPM to make sure we're using the correct mic bias */
151 snd_soc_dapm_sync(&codec->dapm);
154 static int speyside_wm8996_init(struct snd_soc_pcm_runtime *rtd)
156 struct snd_soc_dai *dai = rtd->codec_dai;
157 struct snd_soc_codec *codec = rtd->codec;
158 int ret;
160 ret = snd_soc_dai_set_sysclk(dai, WM8996_SYSCLK_MCLK2, 32768, 0);
161 if (ret < 0)
162 return ret;
164 ret = gpio_request(WM8996_HPSEL_GPIO, "HP_SEL");
165 if (ret != 0)
166 pr_err("Failed to request HP_SEL GPIO: %d\n", ret);
167 gpio_direction_output(WM8996_HPSEL_GPIO, speyside_jack_polarity);
169 ret = snd_soc_jack_new(codec, "Headset",
170 SND_JACK_HEADSET | SND_JACK_BTN_0,
171 &speyside_headset);
172 if (ret)
173 return ret;
175 ret = snd_soc_jack_add_pins(&speyside_headset,
176 ARRAY_SIZE(speyside_headset_pins),
177 speyside_headset_pins);
178 if (ret)
179 return ret;
181 wm8996_detect(codec, &speyside_headset, speyside_set_polarity);
183 return 0;
186 static int speyside_late_probe(struct snd_soc_card *card)
188 snd_soc_dapm_ignore_suspend(&card->dapm, "Headphone");
189 snd_soc_dapm_ignore_suspend(&card->dapm, "Headset Mic");
190 snd_soc_dapm_ignore_suspend(&card->dapm, "Main AMIC");
191 snd_soc_dapm_ignore_suspend(&card->dapm, "Main DMIC");
192 snd_soc_dapm_ignore_suspend(&card->dapm, "Speaker");
193 snd_soc_dapm_ignore_suspend(&card->dapm, "WM1250 Output");
194 snd_soc_dapm_ignore_suspend(&card->dapm, "WM1250 Input");
196 return 0;
199 static struct snd_soc_dai_link speyside_dai[] = {
201 .name = "CPU",
202 .stream_name = "CPU",
203 .cpu_dai_name = "samsung-i2s.0",
204 .codec_dai_name = "wm8996-aif1",
205 .platform_name = "samsung-audio",
206 .codec_name = "wm8996.1-001a",
207 .init = speyside_wm8996_init,
208 .ops = &speyside_ops,
211 .name = "Baseband",
212 .stream_name = "Baseband",
213 .cpu_dai_name = "wm8996-aif2",
214 .codec_dai_name = "wm1250-ev1",
215 .codec_name = "wm1250-ev1.1-0027",
216 .ops = &speyside_ops,
217 .ignore_suspend = 1,
221 static int speyside_wm9081_init(struct snd_soc_dapm_context *dapm)
223 snd_soc_dapm_nc_pin(dapm, "LINEOUT");
225 /* At any time the WM9081 is active it will have this clock */
226 return snd_soc_codec_set_sysclk(dapm->codec, WM9081_SYSCLK_MCLK,
227 48000 * 256, 0);
230 static struct snd_soc_aux_dev speyside_aux_dev[] = {
232 .name = "wm9081",
233 .codec_name = "wm9081.1-006c",
234 .init = speyside_wm9081_init,
238 static struct snd_soc_codec_conf speyside_codec_conf[] = {
240 .dev_name = "wm9081.1-006c",
241 .name_prefix = "Sub",
245 static const struct snd_kcontrol_new controls[] = {
246 SOC_DAPM_PIN_SWITCH("Main Speaker"),
247 SOC_DAPM_PIN_SWITCH("Main DMIC"),
248 SOC_DAPM_PIN_SWITCH("Main AMIC"),
249 SOC_DAPM_PIN_SWITCH("WM1250 Input"),
250 SOC_DAPM_PIN_SWITCH("WM1250 Output"),
251 SOC_DAPM_PIN_SWITCH("Headphone"),
254 static struct snd_soc_dapm_widget widgets[] = {
255 SND_SOC_DAPM_HP("Headphone", NULL),
256 SND_SOC_DAPM_MIC("Headset Mic", NULL),
258 SND_SOC_DAPM_SPK("Main Speaker", NULL),
260 SND_SOC_DAPM_MIC("Main AMIC", NULL),
261 SND_SOC_DAPM_MIC("Main DMIC", NULL),
264 static struct snd_soc_dapm_route audio_paths[] = {
265 { "IN1RN", NULL, "MICB1" },
266 { "IN1RP", NULL, "MICB1" },
267 { "IN1RN", NULL, "MICB2" },
268 { "IN1RP", NULL, "MICB2" },
269 { "MICB1", NULL, "Headset Mic", speyside_get_micbias },
270 { "MICB2", NULL, "Headset Mic", speyside_get_micbias },
272 { "IN1LP", NULL, "MICB2" },
273 { "IN1RN", NULL, "MICB1" },
274 { "MICB2", NULL, "Main AMIC" },
276 { "DMIC1DAT", NULL, "MICB1" },
277 { "DMIC2DAT", NULL, "MICB1" },
278 { "MICB1", NULL, "Main DMIC" },
280 { "Headphone", NULL, "HPOUT1L" },
281 { "Headphone", NULL, "HPOUT1R" },
283 { "Sub IN1", NULL, "HPOUT2L" },
284 { "Sub IN2", NULL, "HPOUT2R" },
286 { "Main Speaker", NULL, "Sub SPKN" },
287 { "Main Speaker", NULL, "Sub SPKP" },
288 { "Main Speaker", NULL, "SPKDAT" },
291 static struct snd_soc_card speyside = {
292 .name = "Speyside",
293 .dai_link = speyside_dai,
294 .num_links = ARRAY_SIZE(speyside_dai),
295 .aux_dev = speyside_aux_dev,
296 .num_aux_devs = ARRAY_SIZE(speyside_aux_dev),
297 .codec_conf = speyside_codec_conf,
298 .num_configs = ARRAY_SIZE(speyside_codec_conf),
300 .set_bias_level = speyside_set_bias_level,
301 .set_bias_level_post = speyside_set_bias_level_post,
303 .controls = controls,
304 .num_controls = ARRAY_SIZE(controls),
305 .dapm_widgets = widgets,
306 .num_dapm_widgets = ARRAY_SIZE(widgets),
307 .dapm_routes = audio_paths,
308 .num_dapm_routes = ARRAY_SIZE(audio_paths),
310 .late_probe = speyside_late_probe,
313 static __devinit int speyside_probe(struct platform_device *pdev)
315 struct snd_soc_card *card = &speyside;
316 int ret;
318 card->dev = &pdev->dev;
320 ret = snd_soc_register_card(card);
321 if (ret) {
322 dev_err(&pdev->dev, "snd_soc_register_card() failed: %d\n",
323 ret);
324 return ret;
327 return 0;
330 static int __devexit speyside_remove(struct platform_device *pdev)
332 struct snd_soc_card *card = platform_get_drvdata(pdev);
334 snd_soc_unregister_card(card);
336 return 0;
339 static struct platform_driver speyside_driver = {
340 .driver = {
341 .name = "speyside",
342 .owner = THIS_MODULE,
343 .pm = &snd_soc_pm_ops,
345 .probe = speyside_probe,
346 .remove = __devexit_p(speyside_remove),
349 static int __init speyside_audio_init(void)
351 return platform_driver_register(&speyside_driver);
353 module_init(speyside_audio_init);
355 static void __exit speyside_audio_exit(void)
357 platform_driver_unregister(&speyside_driver);
359 module_exit(speyside_audio_exit);
361 MODULE_DESCRIPTION("Speyside audio support");
362 MODULE_AUTHOR("Mark Brown <broonie@opensource.wolfsonmicro.com>");
363 MODULE_LICENSE("GPL");
364 MODULE_ALIAS("platform:speyside");