ASoC: AM3517: ASoC driver not getting compiled
[deliverable/linux.git] / sound / soc / omap / omap3pandora.c
CommitLineData
68fb7407
GI
1/*
2 * omap3pandora.c -- SoC audio for Pandora Handheld Console
3 *
4 * Author: GraÅžvydas Ignotas <notasas@gmail.com>
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * version 2 as published by the Free Software Foundation.
9 *
10 * This program is distributed in the hope that it will be useful, but
11 * WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
18 * 02110-1301 USA
19 *
20 */
21
22#include <linux/clk.h>
23#include <linux/platform_device.h>
24#include <linux/gpio.h>
25#include <linux/delay.h>
26
27#include <sound/core.h>
28#include <sound/pcm.h>
29#include <sound/soc.h>
30#include <sound/soc-dapm.h>
31
32#include <asm/mach-types.h>
33
34#include "omap-mcbsp.h"
35#include "omap-pcm.h"
36#include "../codecs/twl4030.h"
37
38#define OMAP3_PANDORA_DAC_POWER_GPIO 118
39#define OMAP3_PANDORA_AMP_POWER_GPIO 14
40
41#define PREFIX "ASoC omap3pandora: "
42
9e5d86fe
JN
43static int omap3pandora_cmn_hw_params(struct snd_pcm_substream *substream,
44 struct snd_pcm_hw_params *params, unsigned int fmt)
68fb7407 45{
9e5d86fe
JN
46 struct snd_soc_pcm_runtime *rtd = substream->private_data;
47 struct snd_soc_dai *codec_dai = rtd->dai->codec_dai;
48 struct snd_soc_dai *cpu_dai = rtd->dai->cpu_dai;
68fb7407
GI
49 int ret;
50
51 /* Set codec DAI configuration */
52 ret = snd_soc_dai_set_fmt(codec_dai, fmt);
53 if (ret < 0) {
54 pr_err(PREFIX "can't set codec DAI configuration\n");
55 return ret;
56 }
57
58 /* Set cpu DAI configuration */
59 ret = snd_soc_dai_set_fmt(cpu_dai, fmt);
60 if (ret < 0) {
61 pr_err(PREFIX "can't set cpu DAI configuration\n");
62 return ret;
63 }
64
65 /* Set the codec system clock for DAC and ADC */
66 ret = snd_soc_dai_set_sysclk(codec_dai, 0, 26000000,
67 SND_SOC_CLOCK_IN);
68 if (ret < 0) {
69 pr_err(PREFIX "can't set codec system clock\n");
70 return ret;
71 }
72
73 /* Set McBSP clock to external */
9e5d86fe
JN
74 ret = snd_soc_dai_set_sysclk(cpu_dai, OMAP_MCBSP_SYSCLK_CLKS_EXT,
75 256 * params_rate(params),
76 SND_SOC_CLOCK_IN);
68fb7407
GI
77 if (ret < 0) {
78 pr_err(PREFIX "can't set cpu system clock\n");
79 return ret;
80 }
81
82 ret = snd_soc_dai_set_clkdiv(cpu_dai, OMAP_MCBSP_CLKGDV, 8);
83 if (ret < 0) {
84 pr_err(PREFIX "can't set SRG clock divider\n");
85 return ret;
86 }
87
88 return 0;
89}
90
91static int omap3pandora_out_hw_params(struct snd_pcm_substream *substream,
92 struct snd_pcm_hw_params *params)
93{
9e5d86fe 94 return omap3pandora_cmn_hw_params(substream, params,
68fb7407
GI
95 SND_SOC_DAIFMT_I2S |
96 SND_SOC_DAIFMT_IB_NF |
97 SND_SOC_DAIFMT_CBS_CFS);
98}
99
100static int omap3pandora_in_hw_params(struct snd_pcm_substream *substream,
101 struct snd_pcm_hw_params *params)
102{
9e5d86fe 103 return omap3pandora_cmn_hw_params(substream, params,
68fb7407
GI
104 SND_SOC_DAIFMT_I2S |
105 SND_SOC_DAIFMT_NB_NF |
106 SND_SOC_DAIFMT_CBS_CFS);
107}
108
109static int omap3pandora_hp_event(struct snd_soc_dapm_widget *w,
110 struct snd_kcontrol *k, int event)
111{
112 if (SND_SOC_DAPM_EVENT_ON(event)) {
113 gpio_set_value(OMAP3_PANDORA_DAC_POWER_GPIO, 1);
114 gpio_set_value(OMAP3_PANDORA_AMP_POWER_GPIO, 1);
115 } else {
116 gpio_set_value(OMAP3_PANDORA_AMP_POWER_GPIO, 0);
117 mdelay(1);
118 gpio_set_value(OMAP3_PANDORA_DAC_POWER_GPIO, 0);
119 }
120
121 return 0;
122}
123
124/*
125 * Audio paths on Pandora board:
126 *
127 * |O| ---> PCM DAC +-> AMP -> Headphone Jack
128 * |M| A +--------> Line Out
129 * |A| <~~clk~~+
130 * |P| <--- TWL4030 <--------- Line In and MICs
131 */
132static const struct snd_soc_dapm_widget omap3pandora_out_dapm_widgets[] = {
f3dd7041 133 SND_SOC_DAPM_DAC("PCM DAC", "HiFi Playback", SND_SOC_NOPM, 0, 0),
68fb7407
GI
134 SND_SOC_DAPM_PGA_E("Headphone Amplifier", SND_SOC_NOPM,
135 0, 0, NULL, 0, omap3pandora_hp_event,
136 SND_SOC_DAPM_POST_PMU | SND_SOC_DAPM_PRE_PMD),
137 SND_SOC_DAPM_HP("Headphone Jack", NULL),
138 SND_SOC_DAPM_LINE("Line Out", NULL),
139};
140
141static const struct snd_soc_dapm_widget omap3pandora_in_dapm_widgets[] = {
8f008062 142 SND_SOC_DAPM_MIC("Mic (internal)", NULL),
68fb7407
GI
143 SND_SOC_DAPM_MIC("Mic (external)", NULL),
144 SND_SOC_DAPM_LINE("Line In", NULL),
145};
146
147static const struct snd_soc_dapm_route omap3pandora_out_map[] = {
148 {"Headphone Amplifier", NULL, "PCM DAC"},
149 {"Line Out", NULL, "PCM DAC"},
150 {"Headphone Jack", NULL, "Headphone Amplifier"},
151};
152
153static const struct snd_soc_dapm_route omap3pandora_in_map[] = {
8f008062
GI
154 {"AUXL", NULL, "Line In"},
155 {"AUXR", NULL, "Line In"},
156
157 {"MAINMIC", NULL, "Mic Bias 1"},
158 {"Mic Bias 1", NULL, "Mic (internal)"},
159
160 {"SUBMIC", NULL, "Mic Bias 2"},
161 {"Mic Bias 2", NULL, "Mic (external)"},
68fb7407
GI
162};
163
164static int omap3pandora_out_init(struct snd_soc_codec *codec)
165{
166 int ret;
167
8f008062
GI
168 /* All TWL4030 output pins are floating */
169 snd_soc_dapm_nc_pin(codec, "OUTL");
170 snd_soc_dapm_nc_pin(codec, "OUTR");
171 snd_soc_dapm_nc_pin(codec, "EARPIECE");
172 snd_soc_dapm_nc_pin(codec, "PREDRIVEL");
173 snd_soc_dapm_nc_pin(codec, "PREDRIVER");
174 snd_soc_dapm_nc_pin(codec, "HSOL");
175 snd_soc_dapm_nc_pin(codec, "HSOR");
176 snd_soc_dapm_nc_pin(codec, "CARKITL");
177 snd_soc_dapm_nc_pin(codec, "CARKITR");
178 snd_soc_dapm_nc_pin(codec, "HFL");
179 snd_soc_dapm_nc_pin(codec, "HFR");
f3dd7041 180 snd_soc_dapm_nc_pin(codec, "VIBRA");
8f008062 181
68fb7407
GI
182 ret = snd_soc_dapm_new_controls(codec, omap3pandora_out_dapm_widgets,
183 ARRAY_SIZE(omap3pandora_out_dapm_widgets));
184 if (ret < 0)
185 return ret;
186
187 snd_soc_dapm_add_routes(codec, omap3pandora_out_map,
188 ARRAY_SIZE(omap3pandora_out_map));
189
190 return snd_soc_dapm_sync(codec);
191}
192
193static int omap3pandora_in_init(struct snd_soc_codec *codec)
194{
195 int ret;
196
8f008062
GI
197 /* Not comnnected */
198 snd_soc_dapm_nc_pin(codec, "HSMIC");
199 snd_soc_dapm_nc_pin(codec, "CARKITMIC");
200 snd_soc_dapm_nc_pin(codec, "DIGIMIC0");
201 snd_soc_dapm_nc_pin(codec, "DIGIMIC1");
7f185340 202
68fb7407
GI
203 ret = snd_soc_dapm_new_controls(codec, omap3pandora_in_dapm_widgets,
204 ARRAY_SIZE(omap3pandora_in_dapm_widgets));
205 if (ret < 0)
206 return ret;
207
208 snd_soc_dapm_add_routes(codec, omap3pandora_in_map,
209 ARRAY_SIZE(omap3pandora_in_map));
210
211 return snd_soc_dapm_sync(codec);
212}
213
214static struct snd_soc_ops omap3pandora_out_ops = {
215 .hw_params = omap3pandora_out_hw_params,
216};
217
218static struct snd_soc_ops omap3pandora_in_ops = {
219 .hw_params = omap3pandora_in_hw_params,
220};
221
222/* Digital audio interface glue - connects codec <--> CPU */
223static struct snd_soc_dai_link omap3pandora_dai[] = {
224 {
225 .name = "PCM1773",
226 .stream_name = "HiFi Out",
227 .cpu_dai = &omap_mcbsp_dai[0],
7154b3e8 228 .codec_dai = &twl4030_dai[TWL4030_DAI_HIFI],
68fb7407
GI
229 .ops = &omap3pandora_out_ops,
230 .init = omap3pandora_out_init,
231 }, {
232 .name = "TWL4030",
233 .stream_name = "Line/Mic In",
234 .cpu_dai = &omap_mcbsp_dai[1],
7154b3e8 235 .codec_dai = &twl4030_dai[TWL4030_DAI_HIFI],
68fb7407
GI
236 .ops = &omap3pandora_in_ops,
237 .init = omap3pandora_in_init,
238 }
239};
240
241/* SoC card */
242static struct snd_soc_card snd_soc_card_omap3pandora = {
243 .name = "omap3pandora",
244 .platform = &omap_soc_platform,
245 .dai_link = omap3pandora_dai,
246 .num_links = ARRAY_SIZE(omap3pandora_dai),
247};
248
249/* Audio subsystem */
250static struct snd_soc_device omap3pandora_snd_data = {
251 .card = &snd_soc_card_omap3pandora,
252 .codec_dev = &soc_codec_dev_twl4030,
253};
254
255static struct platform_device *omap3pandora_snd_device;
256
257static int __init omap3pandora_soc_init(void)
258{
259 int ret;
260
8f008062 261 if (!machine_is_omap3_pandora())
68fb7407 262 return -ENODEV;
8f008062 263
68fb7407
GI
264 pr_info("OMAP3 Pandora SoC init\n");
265
266 ret = gpio_request(OMAP3_PANDORA_DAC_POWER_GPIO, "dac_power");
267 if (ret) {
268 pr_err(PREFIX "Failed to get DAC power GPIO\n");
269 return ret;
270 }
271
272 ret = gpio_direction_output(OMAP3_PANDORA_DAC_POWER_GPIO, 0);
273 if (ret) {
274 pr_err(PREFIX "Failed to set DAC power GPIO direction\n");
275 goto fail0;
276 }
277
278 ret = gpio_request(OMAP3_PANDORA_AMP_POWER_GPIO, "amp_power");
279 if (ret) {
280 pr_err(PREFIX "Failed to get amp power GPIO\n");
281 goto fail0;
282 }
283
284 ret = gpio_direction_output(OMAP3_PANDORA_AMP_POWER_GPIO, 0);
285 if (ret) {
286 pr_err(PREFIX "Failed to set amp power GPIO direction\n");
287 goto fail1;
288 }
289
290 omap3pandora_snd_device = platform_device_alloc("soc-audio", -1);
291 if (omap3pandora_snd_device == NULL) {
292 pr_err(PREFIX "Platform device allocation failed\n");
293 ret = -ENOMEM;
294 goto fail1;
295 }
296
297 platform_set_drvdata(omap3pandora_snd_device, &omap3pandora_snd_data);
298 omap3pandora_snd_data.dev = &omap3pandora_snd_device->dev;
299 *(unsigned int *)omap_mcbsp_dai[0].private_data = 1; /* McBSP2 */
300 *(unsigned int *)omap_mcbsp_dai[1].private_data = 3; /* McBSP4 */
301
302 ret = platform_device_add(omap3pandora_snd_device);
303 if (ret) {
304 pr_err(PREFIX "Unable to add platform device\n");
305 goto fail2;
306 }
307
308 return 0;
309
310fail2:
311 platform_device_put(omap3pandora_snd_device);
312fail1:
313 gpio_free(OMAP3_PANDORA_AMP_POWER_GPIO);
314fail0:
315 gpio_free(OMAP3_PANDORA_DAC_POWER_GPIO);
316 return ret;
317}
318module_init(omap3pandora_soc_init);
319
320static void __exit omap3pandora_soc_exit(void)
321{
322 platform_device_unregister(omap3pandora_snd_device);
323 gpio_free(OMAP3_PANDORA_AMP_POWER_GPIO);
324 gpio_free(OMAP3_PANDORA_DAC_POWER_GPIO);
325}
326module_exit(omap3pandora_soc_exit);
327
328MODULE_AUTHOR("Grazvydas Ignotas <notasas@gmail.com>");
329MODULE_DESCRIPTION("ALSA SoC OMAP3 Pandora");
330MODULE_LICENSE("GPL");
This page took 0.077716 seconds and 5 git commands to generate.