]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - sound/soc/at91/eti_b1_wm8731.c
Merge branch 'sbp2-spindown' of git://git.kernel.org/pub/scm/linux/kernel/git/ieee139...
[mirror_ubuntu-artful-kernel.git] / sound / soc / at91 / eti_b1_wm8731.c
CommitLineData
b41bf38a 1/*
9f0ac6e1 2 * eti_b1_wm8731 -- SoC audio for AT91RM9200-based Endrelia ETI_B1 board.
b41bf38a
FM
3 *
4 * Author: Frank Mandarino <fmandarino@endrelia.com>
5 * Endrelia Technologies Inc.
6 * Created: Mar 29, 2006
7 *
8 * Based on corgi.c by:
9 *
10 * Copyright 2005 Wolfson Microelectronics PLC.
11 * Copyright 2005 Openedhand Ltd.
12 *
13 * Authors: Liam Girdwood <liam.girdwood@wolfsonmicro.com>
14 * Richard Purdie <richard@openedhand.com>
15 *
16 * This program is free software; you can redistribute it and/or modify it
17 * under the terms of the GNU General Public License as published by the
18 * Free Software Foundation; either version 2 of the License, or (at your
19 * option) any later version.
20 *
b41bf38a
FM
21 */
22
23#include <linux/module.h>
24#include <linux/moduleparam.h>
25#include <linux/version.h>
26#include <linux/kernel.h>
27#include <linux/clk.h>
28#include <linux/timer.h>
29#include <linux/interrupt.h>
30#include <linux/platform_device.h>
b41bf38a
FM
31#include <sound/core.h>
32#include <sound/pcm.h>
33#include <sound/soc.h>
34#include <sound/soc-dapm.h>
35
c21098ea 36#include <asm/hardware.h>
9f0ac6e1 37#include <asm/arch/gpio.h>
b41bf38a
FM
38
39#include "../codecs/wm8731.h"
9f0ac6e1 40#include "at91-pcm.h"
eb831da5 41#include "at91-ssc.h"
b41bf38a
FM
42
43#if 0
c8044274 44#define DBG(x...) printk(KERN_INFO "eti_b1_wm8731: " x)
b41bf38a
FM
45#else
46#define DBG(x...)
47#endif
48
49static struct clk *pck1_clk;
50static struct clk *pllb_clk;
51
c8044274 52
9f0ac6e1 53static int eti_b1_startup(struct snd_pcm_substream *substream)
b41bf38a 54{
c8044274 55 struct snd_soc_pcm_runtime *rtd = substream->private_data;
d37ae539
LG
56 struct snd_soc_dai *codec_dai = rtd->dai->codec_dai;
57 struct snd_soc_dai *cpu_dai = rtd->dai->cpu_dai;
c8044274
FM
58 int ret;
59
60 /* cpu clock is the AT91 master clock sent to the SSC */
64105cfd 61 ret = snd_soc_dai_set_sysclk(cpu_dai, AT91_SYSCLK_MCK,
c8044274
FM
62 60000000, SND_SOC_CLOCK_IN);
63 if (ret < 0)
64 return ret;
65
66 /* codec system clock is supplied by PCK1, set to 12MHz */
64105cfd 67 ret = snd_soc_dai_set_sysclk(codec_dai, WM8731_SYSCLK,
c8044274
FM
68 12000000, SND_SOC_CLOCK_IN);
69 if (ret < 0)
70 return ret;
71
b41bf38a
FM
72 /* Start PCK1 clock. */
73 clk_enable(pck1_clk);
74 DBG("pck1 started\n");
75
76 return 0;
77}
78
9f0ac6e1 79static void eti_b1_shutdown(struct snd_pcm_substream *substream)
b41bf38a
FM
80{
81 /* Stop PCK1 clock. */
82 clk_disable(pck1_clk);
83 DBG("pck1 stopped\n");
84}
85
c8044274
FM
86static int eti_b1_hw_params(struct snd_pcm_substream *substream,
87 struct snd_pcm_hw_params *params)
88{
89 struct snd_soc_pcm_runtime *rtd = substream->private_data;
d37ae539
LG
90 struct snd_soc_dai *codec_dai = rtd->dai->codec_dai;
91 struct snd_soc_dai *cpu_dai = rtd->dai->cpu_dai;
c8044274
FM
92 int ret;
93
94#ifdef CONFIG_SND_AT91_SOC_ETI_SLAVE
95 unsigned int rate;
96 int cmr_div, period;
97
98 /* set codec DAI configuration */
64105cfd 99 ret = snd_soc_dai_set_fmt(codec_dai, SND_SOC_DAIFMT_I2S |
c8044274
FM
100 SND_SOC_DAIFMT_NB_NF | SND_SOC_DAIFMT_CBS_CFS);
101 if (ret < 0)
102 return ret;
103
104 /* set cpu DAI configuration */
64105cfd 105 ret = snd_soc_dai_set_fmt(cpu_dai, SND_SOC_DAIFMT_I2S |
c8044274
FM
106 SND_SOC_DAIFMT_NB_NF | SND_SOC_DAIFMT_CBS_CFS);
107 if (ret < 0)
108 return ret;
109
110 /*
111 * The SSC clock dividers depend on the sample rate. The CMR.DIV
112 * field divides the system master clock MCK to drive the SSC TK
113 * signal which provides the codec BCLK. The TCMR.PERIOD and
114 * RCMR.PERIOD fields further divide the BCLK signal to drive
115 * the SSC TF and RF signals which provide the codec DACLRC and
116 * ADCLRC clocks.
117 *
118 * The dividers were determined through trial and error, where a
119 * CMR.DIV value is chosen such that the resulting BCLK value is
120 * divisible, or almost divisible, by (2 * sample rate), and then
121 * the TCMR.PERIOD or RCMR.PERIOD is BCLK / (2 * sample rate) - 1.
122 */
123 rate = params_rate(params);
124
125 switch (rate) {
126 case 8000:
127 cmr_div = 25; /* BCLK = 60MHz/(2*25) = 1.2MHz */
128 period = 74; /* LRC = BCLK/(2*(74+1)) = 8000Hz */
129 break;
130 case 32000:
131 cmr_div = 7; /* BCLK = 60MHz/(2*7) ~= 4.28571428MHz */
132 period = 66; /* LRC = BCLK/(2*(66+1)) = 31982.942Hz */
133 break;
134 case 48000:
135 cmr_div = 13; /* BCLK = 60MHz/(2*13) ~= 2.3076923MHz */
136 period = 23; /* LRC = BCLK/(2*(23+1)) = 48076.923Hz */
137 break;
138 default:
139 printk(KERN_WARNING "unsupported rate %d on ETI-B1 board\n", rate);
140 return -EINVAL;
141 }
142
143 /* set the MCK divider for BCLK */
64105cfd 144 ret = snd_soc_dai_set_clkdiv(cpu_dai, AT91SSC_CMR_DIV, cmr_div);
c8044274
FM
145 if (ret < 0)
146 return ret;
147
148 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) {
149 /* set the BCLK divider for DACLRC */
64105cfd 150 ret = snd_soc_dai_set_clkdiv(cpu_dai,
c8044274
FM
151 AT91SSC_TCMR_PERIOD, period);
152 } else {
153 /* set the BCLK divider for ADCLRC */
64105cfd 154 ret = snd_soc_dai_set_clkdiv(cpu_dai,
c8044274
FM
155 AT91SSC_RCMR_PERIOD, period);
156 }
157 if (ret < 0)
158 return ret;
159
160#else /* CONFIG_SND_AT91_SOC_ETI_SLAVE */
161 /*
162 * Codec in Master Mode.
163 */
164
165 /* set codec DAI configuration */
64105cfd 166 ret = snd_soc_dai_set_fmt(codec_dai, SND_SOC_DAIFMT_I2S |
c8044274
FM
167 SND_SOC_DAIFMT_NB_NF | SND_SOC_DAIFMT_CBM_CFM);
168 if (ret < 0)
169 return ret;
170
171 /* set cpu DAI configuration */
64105cfd 172 ret = snd_soc_dai_set_fmt(cpu_dai, SND_SOC_DAIFMT_I2S |
c8044274
FM
173 SND_SOC_DAIFMT_NB_NF | SND_SOC_DAIFMT_CBM_CFM);
174 if (ret < 0)
175 return ret;
176
177#endif /* CONFIG_SND_AT91_SOC_ETI_SLAVE */
178
179 return 0;
180}
181
b41bf38a
FM
182static struct snd_soc_ops eti_b1_ops = {
183 .startup = eti_b1_startup,
c8044274 184 .hw_params = eti_b1_hw_params,
b41bf38a
FM
185 .shutdown = eti_b1_shutdown,
186};
187
188
189static const struct snd_soc_dapm_widget eti_b1_dapm_widgets[] = {
190 SND_SOC_DAPM_MIC("Int Mic", NULL),
191 SND_SOC_DAPM_SPK("Ext Spk", NULL),
192};
193
51e6a841 194static const struct snd_soc_dapm_route intercon[] = {
b41bf38a
FM
195
196 /* speaker connected to LHPOUT */
197 {"Ext Spk", NULL, "LHPOUT"},
198
199 /* mic is connected to Mic Jack, with WM8731 Mic Bias */
200 {"MICIN", NULL, "Mic Bias"},
201 {"Mic Bias", NULL, "Int Mic"},
b41bf38a
FM
202};
203
204/*
205 * Logic for a wm8731 as connected on a Endrelia ETI-B1 board.
206 */
207static int eti_b1_wm8731_init(struct snd_soc_codec *codec)
208{
b41bf38a
FM
209 DBG("eti_b1_wm8731_init() called\n");
210
211 /* Add specific widgets */
51e6a841
MB
212 snd_soc_dapm_new_controls(codec, eti_b1_dapm_widgets,
213 ARRAY_SIZE(eti_b1_dapm_widgets));
b41bf38a
FM
214
215 /* Set up specific audio path interconnects */
51e6a841 216 snd_soc_dapm_add_route(codec, intercon, ARRAY_SIZE(intercon));
b41bf38a
FM
217
218 /* not connected */
a5302181
LG
219 snd_soc_dapm_disable_pin(codec, "RLINEIN");
220 snd_soc_dapm_disable_pin(codec, "LLINEIN");
b41bf38a
FM
221
222 /* always connected */
a5302181
LG
223 snd_soc_dapm_enable_pin(codec, "Int Mic");
224 snd_soc_dapm_enable_pin(codec, "Ext Spk");
b41bf38a 225
a5302181 226 snd_soc_dapm_sync(codec);
b41bf38a
FM
227
228 return 0;
229}
230
b41bf38a
FM
231static struct snd_soc_dai_link eti_b1_dai = {
232 .name = "WM8731",
eb831da5
FM
233 .stream_name = "WM8731 PCM",
234 .cpu_dai = &at91_ssc_dai[1],
b41bf38a
FM
235 .codec_dai = &wm8731_dai,
236 .init = eti_b1_wm8731_init,
c8044274 237 .ops = &eti_b1_ops,
b41bf38a
FM
238};
239
240static struct snd_soc_machine snd_soc_machine_eti_b1 = {
eb831da5 241 .name = "ETI_B1_WM8731",
b41bf38a
FM
242 .dai_link = &eti_b1_dai,
243 .num_links = 1,
b41bf38a
FM
244};
245
246static struct wm8731_setup_data eti_b1_wm8731_setup = {
247 .i2c_address = 0x1a,
248};
249
250static struct snd_soc_device eti_b1_snd_devdata = {
251 .machine = &snd_soc_machine_eti_b1,
9f0ac6e1 252 .platform = &at91_soc_platform,
b41bf38a
FM
253 .codec_dev = &soc_codec_dev_wm8731,
254 .codec_data = &eti_b1_wm8731_setup,
255};
256
257static struct platform_device *eti_b1_snd_device;
258
259static int __init eti_b1_init(void)
260{
261 int ret;
9f0ac6e1
FM
262 struct at91_ssc_periph *ssc = eti_b1_dai.cpu_dai->private_data;
263
264 if (!request_mem_region(AT91RM9200_BASE_SSC1, SZ_16K, "soc-audio")) {
265 DBG("SSC1 memory region is busy\n");
266 return -EBUSY;
267 }
268
269 ssc->base = ioremap(AT91RM9200_BASE_SSC1, SZ_16K);
270 if (!ssc->base) {
271 DBG("SSC1 memory ioremap failed\n");
272 ret = -ENOMEM;
273 goto fail_release_mem;
274 }
275
276 ssc->pid = AT91RM9200_ID_SSC1;
b41bf38a
FM
277
278 eti_b1_snd_device = platform_device_alloc("soc-audio", -1);
9f0ac6e1
FM
279 if (!eti_b1_snd_device) {
280 DBG("platform device allocation failed\n");
281 ret = -ENOMEM;
282 goto fail_io_unmap;
283 }
b41bf38a
FM
284
285 platform_set_drvdata(eti_b1_snd_device, &eti_b1_snd_devdata);
286 eti_b1_snd_devdata.dev = &eti_b1_snd_device->dev;
287
288 ret = platform_device_add(eti_b1_snd_device);
289 if (ret) {
9f0ac6e1 290 DBG("platform device add failed\n");
b41bf38a 291 platform_device_put(eti_b1_snd_device);
9f0ac6e1 292 goto fail_io_unmap;
b41bf38a
FM
293 }
294
c21098ea
AV
295 at91_set_A_periph(AT91_PIN_PB6, 0); /* TF1 */
296 at91_set_A_periph(AT91_PIN_PB7, 0); /* TK1 */
297 at91_set_A_periph(AT91_PIN_PB8, 0); /* TD1 */
298 at91_set_A_periph(AT91_PIN_PB9, 0); /* RD1 */
299/* at91_set_A_periph(AT91_PIN_PB10, 0);*/ /* RK1 */
300 at91_set_A_periph(AT91_PIN_PB11, 0); /* RF1 */
b41bf38a
FM
301
302 /*
303 * Set PCK1 parent to PLLB and its rate to 12 Mhz.
304 */
305 pllb_clk = clk_get(NULL, "pllb");
306 pck1_clk = clk_get(NULL, "pck1");
307
308 clk_set_parent(pck1_clk, pllb_clk);
309 clk_set_rate(pck1_clk, 12000000);
310
311 DBG("MCLK rate %luHz\n", clk_get_rate(pck1_clk));
312
313 /* assign the GPIO pin to PCK1 */
314 at91_set_B_periph(AT91_PIN_PA24, 0);
315
c8044274
FM
316#ifdef CONFIG_SND_AT91_SOC_ETI_SLAVE
317 printk(KERN_INFO "eti_b1_wm8731: Codec in Slave Mode\n");
318#else
319 printk(KERN_INFO "eti_b1_wm8731: Codec in Master Mode\n");
320#endif
b41bf38a 321 return ret;
9f0ac6e1
FM
322
323fail_io_unmap:
324 iounmap(ssc->base);
325fail_release_mem:
326 release_mem_region(AT91RM9200_BASE_SSC1, SZ_16K);
327 return ret;
b41bf38a
FM
328}
329
330static void __exit eti_b1_exit(void)
331{
9f0ac6e1
FM
332 struct at91_ssc_periph *ssc = eti_b1_dai.cpu_dai->private_data;
333
b41bf38a
FM
334 clk_put(pck1_clk);
335 clk_put(pllb_clk);
336
337 platform_device_unregister(eti_b1_snd_device);
9f0ac6e1
FM
338
339 iounmap(ssc->base);
340 release_mem_region(AT91RM9200_BASE_SSC1, SZ_16K);
b41bf38a
FM
341}
342
343module_init(eti_b1_init);
344module_exit(eti_b1_exit);
345
346/* Module information */
347MODULE_AUTHOR("Frank Mandarino <fmandarino@endrelia.com>");
348MODULE_DESCRIPTION("ALSA SoC ETI-B1-WM8731");
349MODULE_LICENSE("GPL");