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>
17 #include "../codecs/wm8962.h"
19 static int speyside_wm8962_set_bias_level(struct snd_soc_card
*card
,
20 struct snd_soc_dapm_context
*dapm
,
21 enum snd_soc_bias_level level
)
23 struct snd_soc_dai
*codec_dai
= card
->rtd
[0].codec_dai
;
27 case SND_SOC_BIAS_PREPARE
:
28 if (dapm
->bias_level
== SND_SOC_BIAS_STANDBY
) {
29 ret
= snd_soc_dai_set_pll(codec_dai
, WM8962_FLL
,
30 WM8962_FLL_MCLK
, 32768,
33 pr_err("Failed to start FLL: %d\n", ret
);
35 ret
= snd_soc_dai_set_sysclk(codec_dai
,
40 pr_err("Failed to set SYSCLK: %d\n", ret
);
53 static int speyside_wm8962_set_bias_level_post(struct snd_soc_card
*card
,
54 struct snd_soc_dapm_context
*dapm
,
55 enum snd_soc_bias_level level
)
57 struct snd_soc_dai
*codec_dai
= card
->rtd
[0].codec_dai
;
61 case SND_SOC_BIAS_STANDBY
:
62 ret
= snd_soc_dai_set_sysclk(codec_dai
, WM8962_SYSCLK_MCLK
,
63 32768, SND_SOC_CLOCK_IN
);
65 pr_err("Failed to switch away from FLL: %d\n", ret
);
69 ret
= snd_soc_dai_set_pll(codec_dai
, WM8962_FLL
,
72 pr_err("Failed to stop FLL: %d\n", ret
);
81 dapm
->bias_level
= level
;
86 static int speyside_wm8962_hw_params(struct snd_pcm_substream
*substream
,
87 struct snd_pcm_hw_params
*params
)
89 struct snd_soc_pcm_runtime
*rtd
= substream
->private_data
;
90 struct snd_soc_dai
*cpu_dai
= rtd
->cpu_dai
;
91 struct snd_soc_dai
*codec_dai
= rtd
->codec_dai
;
94 ret
= snd_soc_dai_set_fmt(codec_dai
, SND_SOC_DAIFMT_I2S
95 | SND_SOC_DAIFMT_NB_NF
96 | SND_SOC_DAIFMT_CBM_CFM
);
100 ret
= snd_soc_dai_set_fmt(cpu_dai
, SND_SOC_DAIFMT_I2S
101 | SND_SOC_DAIFMT_NB_NF
102 | SND_SOC_DAIFMT_CBM_CFM
);
109 static struct snd_soc_ops speyside_wm8962_ops
= {
110 .hw_params
= speyside_wm8962_hw_params
,
113 static struct snd_soc_dai_link speyside_wm8962_dai
[] = {
116 .stream_name
= "CPU",
117 .cpu_dai_name
= "samsung-i2s.0",
118 .codec_dai_name
= "wm8962",
119 .platform_name
= "samsung-audio",
120 .codec_name
= "wm8962.1-001a",
121 .ops
= &speyside_wm8962_ops
,
125 static const struct snd_kcontrol_new controls
[] = {
126 SOC_DAPM_PIN_SWITCH("Main Speaker"),
129 static struct snd_soc_dapm_widget widgets
[] = {
130 SND_SOC_DAPM_HP("Headphone", NULL
),
131 SND_SOC_DAPM_MIC("Headset Mic", NULL
),
133 SND_SOC_DAPM_MIC("DMIC", NULL
),
135 SND_SOC_DAPM_SPK("Main Speaker", NULL
),
138 static struct snd_soc_dapm_route audio_paths
[] = {
139 { "Headphone", NULL
, "HPOUTL" },
140 { "Headphone", NULL
, "HPOUTR" },
142 { "Main Speaker", NULL
, "SPKOUTL" },
143 { "Main Speaker", NULL
, "SPKOUTR" },
145 { "MICBIAS", NULL
, "Headset Mic" },
146 { "IN4L", NULL
, "MICBIAS" },
147 { "IN4R", NULL
, "MICBIAS" },
149 { "MICBIAS", NULL
, "DMIC" },
150 { "DMICDAT", NULL
, "MICBIAS" },
153 static struct snd_soc_jack speyside_wm8962_headset
;
155 /* Headset jack detection DAPM pins */
156 static struct snd_soc_jack_pin speyside_wm8962_headset_pins
[] = {
158 .pin
= "Headset Mic",
159 .mask
= SND_JACK_MICROPHONE
,
163 .mask
= SND_JACK_MICROPHONE
,
167 static int speyside_wm8962_late_probe(struct snd_soc_card
*card
)
169 struct snd_soc_codec
*codec
= card
->rtd
[0].codec
;
170 struct snd_soc_dai
*codec_dai
= card
->rtd
[0].codec_dai
;
173 ret
= snd_soc_dai_set_sysclk(codec_dai
, WM8962_SYSCLK_MCLK
,
174 32768, SND_SOC_CLOCK_IN
);
178 ret
= snd_soc_jack_new(codec
, "Headset",
179 SND_JACK_HEADSET
| SND_JACK_BTN_0
,
180 &speyside_wm8962_headset
);
184 ret
= snd_soc_jack_add_pins(&speyside_wm8962_headset
,
185 ARRAY_SIZE(speyside_wm8962_headset_pins
),
186 speyside_wm8962_headset_pins
);
190 wm8962_mic_detect(codec
, &speyside_wm8962_headset
);
195 static struct snd_soc_card speyside_wm8962
= {
196 .name
= "Speyside WM8962",
197 .dai_link
= speyside_wm8962_dai
,
198 .num_links
= ARRAY_SIZE(speyside_wm8962_dai
),
200 .set_bias_level
= speyside_wm8962_set_bias_level
,
201 .set_bias_level_post
= speyside_wm8962_set_bias_level_post
,
203 .controls
= controls
,
204 .num_controls
= ARRAY_SIZE(controls
),
205 .dapm_widgets
= widgets
,
206 .num_dapm_widgets
= ARRAY_SIZE(widgets
),
207 .dapm_routes
= audio_paths
,
208 .num_dapm_routes
= ARRAY_SIZE(audio_paths
),
210 .late_probe
= speyside_wm8962_late_probe
,
213 static __devinit
int speyside_wm8962_probe(struct platform_device
*pdev
)
215 struct snd_soc_card
*card
= &speyside_wm8962
;
218 card
->dev
= &pdev
->dev
;
220 ret
= snd_soc_register_card(card
);
222 dev_err(&pdev
->dev
, "snd_soc_register_card() failed: %d\n",
230 static int __devexit
speyside_wm8962_remove(struct platform_device
*pdev
)
232 struct snd_soc_card
*card
= platform_get_drvdata(pdev
);
234 snd_soc_unregister_card(card
);
239 static struct platform_driver speyside_wm8962_driver
= {
241 .name
= "speyside-wm8962",
242 .owner
= THIS_MODULE
,
243 .pm
= &snd_soc_pm_ops
,
245 .probe
= speyside_wm8962_probe
,
246 .remove
= __devexit_p(speyside_wm8962_remove
),
249 static int __init
speyside_wm8962_audio_init(void)
251 return platform_driver_register(&speyside_wm8962_driver
);
253 module_init(speyside_wm8962_audio_init
);
255 static void __exit
speyside_wm8962_audio_exit(void)
257 platform_driver_unregister(&speyside_wm8962_driver
);
259 module_exit(speyside_wm8962_audio_exit
);
261 MODULE_DESCRIPTION("Speyside WM8962 audio support");
262 MODULE_AUTHOR("Mark Brown <broonie@opensource.wolfsonmicro.com>");
263 MODULE_LICENSE("GPL");
264 MODULE_ALIAS("platform:speyside-wm8962");