]> pilppa.org Git - linux-2.6-omap-h63xx.git/blob - sound/soc/pxa/zylonite.c
Merge branch 'for-2.6.29' into for-2.6.30
[linux-2.6-omap-h63xx.git] / sound / soc / pxa / zylonite.c
1 /*
2  * zylonite.c  --  SoC audio for Zylonite
3  *
4  * Copyright 2008 Wolfson Microelectronics PLC.
5  * Author: Mark Brown <broonie@opensource.wolfsonmicro.com>
6  *
7  * This program is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU General Public License as
9  * published by the Free Software Foundation; either version 2 of the
10  * License, or (at your option) any later version.
11  *
12  */
13
14 #include <linux/module.h>
15 #include <linux/moduleparam.h>
16 #include <linux/device.h>
17 #include <linux/clk.h>
18 #include <linux/i2c.h>
19 #include <sound/core.h>
20 #include <sound/pcm.h>
21 #include <sound/pcm_params.h>
22 #include <sound/soc.h>
23 #include <sound/soc-dapm.h>
24
25 #include "../codecs/wm9713.h"
26 #include "pxa2xx-pcm.h"
27 #include "pxa2xx-ac97.h"
28 #include "pxa-ssp.h"
29
30 /*
31  * There is a physical switch SW15 on the board which changes the MCLK
32  * for the WM9713 between the standard AC97 master clock and the
33  * output of the CLK_POUT signal from the PXA.
34  */
35 static int clk_pout;
36 module_param(clk_pout, int, 0);
37 MODULE_PARM_DESC(clk_pout, "Use CLK_POUT as WM9713 MCLK (SW15 on board).");
38
39 static struct clk *pout;
40
41 static struct snd_soc_card zylonite;
42
43 static const struct snd_soc_dapm_widget zylonite_dapm_widgets[] = {
44         SND_SOC_DAPM_HP("Headphone", NULL),
45         SND_SOC_DAPM_MIC("Headset Microphone", NULL),
46         SND_SOC_DAPM_MIC("Handset Microphone", NULL),
47         SND_SOC_DAPM_SPK("Multiactor", NULL),
48         SND_SOC_DAPM_SPK("Headset Earpiece", NULL),
49 };
50
51 /* Currently supported audio map */
52 static const struct snd_soc_dapm_route audio_map[] = {
53
54         /* Headphone output connected to HPL/HPR */
55         { "Headphone", NULL,  "HPL" },
56         { "Headphone", NULL,  "HPR" },
57
58         /* On-board earpiece */
59         { "Headset Earpiece", NULL, "OUT3" },
60
61         /* Headphone mic */
62         { "MIC2A", NULL, "Mic Bias" },
63         { "Mic Bias", NULL, "Headset Microphone" },
64
65         /* On-board mic */
66         { "MIC1", NULL, "Mic Bias" },
67         { "Mic Bias", NULL, "Handset Microphone" },
68
69         /* Multiactor differentially connected over SPKL/SPKR */
70         { "Multiactor", NULL, "SPKL" },
71         { "Multiactor", NULL, "SPKR" },
72 };
73
74 static int zylonite_wm9713_init(struct snd_soc_codec *codec)
75 {
76         if (clk_pout)
77                 snd_soc_dai_set_pll(&codec->dai[0], 0, clk_get_rate(pout), 0);
78
79         snd_soc_dapm_new_controls(codec, zylonite_dapm_widgets,
80                                   ARRAY_SIZE(zylonite_dapm_widgets));
81
82         snd_soc_dapm_add_routes(codec, audio_map, ARRAY_SIZE(audio_map));
83
84         /* Static setup for now */
85         snd_soc_dapm_enable_pin(codec, "Headphone");
86         snd_soc_dapm_enable_pin(codec, "Headset Earpiece");
87
88         snd_soc_dapm_sync(codec);
89         return 0;
90 }
91
92 static int zylonite_voice_hw_params(struct snd_pcm_substream *substream,
93                                     struct snd_pcm_hw_params *params)
94 {
95         struct snd_soc_pcm_runtime *rtd = substream->private_data;
96         struct snd_soc_dai *codec_dai = rtd->dai->codec_dai;
97         struct snd_soc_dai *cpu_dai = rtd->dai->cpu_dai;
98         unsigned int pll_out = 0;
99         unsigned int acds = 0;
100         unsigned int wm9713_div = 0;
101         int ret = 0;
102
103         switch (params_rate(params)) {
104         case 8000:
105                 wm9713_div = 12;
106                 pll_out = 2048000;
107                 break;
108         case 16000:
109                 wm9713_div = 6;
110                 pll_out = 4096000;
111                 break;
112         case 48000:
113         default:
114                 wm9713_div = 2;
115                 pll_out = 12288000;
116                 acds = 1;
117                 break;
118         }
119
120         ret = snd_soc_dai_set_fmt(codec_dai, SND_SOC_DAIFMT_I2S |
121                 SND_SOC_DAIFMT_NB_NF | SND_SOC_DAIFMT_CBS_CFS);
122         if (ret < 0)
123                 return ret;
124
125         ret = snd_soc_dai_set_fmt(cpu_dai, SND_SOC_DAIFMT_I2S |
126                 SND_SOC_DAIFMT_NB_NF | SND_SOC_DAIFMT_CBS_CFS);
127         if (ret < 0)
128                 return ret;
129
130         ret = snd_soc_dai_set_tdm_slot(cpu_dai,
131                                        params_channels(params),
132                                        params_channels(params));
133         if (ret < 0)
134                 return ret;
135
136         ret = snd_soc_dai_set_pll(cpu_dai, 0, 0, pll_out);
137         if (ret < 0)
138                 return ret;
139
140         ret = snd_soc_dai_set_clkdiv(cpu_dai, PXA_SSP_AUDIO_DIV_ACDS, acds);
141         if (ret < 0)
142                 return ret;
143
144         ret = snd_soc_dai_set_sysclk(cpu_dai, PXA_SSP_CLK_AUDIO, 0, 1);
145         if (ret < 0)
146                 return ret;
147
148         if (clk_pout)
149                 ret = snd_soc_dai_set_clkdiv(codec_dai, WM9713_PCMCLK_PLL_DIV,
150                                              WM9713_PCMDIV(wm9713_div));
151         else
152                 ret = snd_soc_dai_set_clkdiv(codec_dai, WM9713_PCMCLK_DIV,
153                                              WM9713_PCMDIV(wm9713_div));
154         if (ret < 0)
155                 return ret;
156
157         return 0;
158 }
159
160 static struct snd_soc_ops zylonite_voice_ops = {
161         .hw_params = zylonite_voice_hw_params,
162 };
163
164 static struct snd_soc_dai_link zylonite_dai[] = {
165 {
166         .name = "AC97",
167         .stream_name = "AC97 HiFi",
168         .cpu_dai = &pxa_ac97_dai[PXA2XX_DAI_AC97_HIFI],
169         .codec_dai = &wm9713_dai[WM9713_DAI_AC97_HIFI],
170         .init = zylonite_wm9713_init,
171 },
172 {
173         .name = "AC97 Aux",
174         .stream_name = "AC97 Aux",
175         .cpu_dai = &pxa_ac97_dai[PXA2XX_DAI_AC97_AUX],
176         .codec_dai = &wm9713_dai[WM9713_DAI_AC97_AUX],
177 },
178 {
179         .name = "WM9713 Voice",
180         .stream_name = "WM9713 Voice",
181         .cpu_dai = &pxa_ssp_dai[PXA_DAI_SSP3],
182         .codec_dai = &wm9713_dai[WM9713_DAI_PCM_VOICE],
183         .ops = &zylonite_voice_ops,
184 },
185 };
186
187 static int zylonite_probe(struct platform_device *pdev)
188 {
189         int ret;
190
191         if (clk_pout) {
192                 pout = clk_get(NULL, "CLK_POUT");
193                 if (IS_ERR(pout)) {
194                         dev_err(&pdev->dev, "Unable to obtain CLK_POUT: %ld\n",
195                                 PTR_ERR(pout));
196                         return PTR_ERR(pout);
197                 }
198
199                 ret = clk_enable(pout);
200                 if (ret != 0) {
201                         dev_err(&pdev->dev, "Unable to enable CLK_POUT: %d\n",
202                                 ret);
203                         clk_put(pout);
204                         return ret;
205                 }
206
207                 dev_dbg(&pdev->dev, "MCLK enabled at %luHz\n",
208                         clk_get_rate(pout));
209         }
210
211         return 0;
212 }
213
214 static int zylonite_remove(struct platform_device *pdev)
215 {
216         if (clk_pout) {
217                 clk_disable(pout);
218                 clk_put(pout);
219         }
220
221         return 0;
222 }
223
224 static int zylonite_suspend_post(struct platform_device *pdev,
225                                  pm_message_t state)
226 {
227         if (clk_pout)
228                 clk_disable(pout);
229
230         return 0;
231 }
232
233 static int zylonite_resume_pre(struct platform_device *pdev)
234 {
235         int ret = 0;
236
237         if (clk_pout) {
238                 ret = clk_enable(pout);
239                 if (ret != 0)
240                         dev_err(&pdev->dev, "Unable to enable CLK_POUT: %d\n",
241                                 ret);
242         }
243
244         return ret;
245 }
246
247 static struct snd_soc_card zylonite = {
248         .name = "Zylonite",
249         .probe = &zylonite_probe,
250         .remove = &zylonite_remove,
251         .suspend_post = &zylonite_suspend_post,
252         .resume_pre = &zylonite_resume_pre,
253         .platform = &pxa2xx_soc_platform,
254         .dai_link = zylonite_dai,
255         .num_links = ARRAY_SIZE(zylonite_dai),
256 };
257
258 static struct snd_soc_device zylonite_snd_ac97_devdata = {
259         .card = &zylonite,
260         .codec_dev = &soc_codec_dev_wm9713,
261 };
262
263 static struct platform_device *zylonite_snd_ac97_device;
264
265 static int __init zylonite_init(void)
266 {
267         int ret;
268
269         zylonite_snd_ac97_device = platform_device_alloc("soc-audio", -1);
270         if (!zylonite_snd_ac97_device)
271                 return -ENOMEM;
272
273         platform_set_drvdata(zylonite_snd_ac97_device,
274                              &zylonite_snd_ac97_devdata);
275         zylonite_snd_ac97_devdata.dev = &zylonite_snd_ac97_device->dev;
276
277         ret = platform_device_add(zylonite_snd_ac97_device);
278         if (ret != 0)
279                 platform_device_put(zylonite_snd_ac97_device);
280
281         return ret;
282 }
283
284 static void __exit zylonite_exit(void)
285 {
286         platform_device_unregister(zylonite_snd_ac97_device);
287 }
288
289 module_init(zylonite_init);
290 module_exit(zylonite_exit);
291
292 MODULE_AUTHOR("Mark Brown <broonie@opensource.wolfsonmicro.com>");
293 MODULE_DESCRIPTION("ALSA SoC WM9713 Zylonite");
294 MODULE_LICENSE("GPL");