blob: 21ca3fe223067cab20cd985419c6f5602b9591d2 [file] [log] [blame]
Liam Girdwood3e7cc3d2006-10-12 14:28:10 +02001/*
2 * pxa2xx-i2s.c -- ALSA Soc Audio Layer
3 *
4 * Copyright 2005 Wolfson Microelectronics PLC.
5 * Author: Liam Girdwood
6 * liam.girdwood@wolfsonmicro.com or linux@wolfsonmicro.com
7 *
8 * This program is free software; you can redistribute it and/or modify it
9 * under the terms of the GNU General Public License as published by the
10 * Free Software Foundation; either version 2 of the License, or (at your
11 * option) any later version.
Liam Girdwood3e7cc3d2006-10-12 14:28:10 +020012 */
13
14#include <linux/init.h>
15#include <linux/module.h>
16#include <linux/device.h>
17#include <linux/delay.h>
eric miao5a2cc502008-05-26 03:28:09 +010018#include <linux/clk.h>
Dmitry Baryshkov6e5ea702008-08-31 00:45:02 +040019#include <linux/platform_device.h>
Liam Girdwood3e7cc3d2006-10-12 14:28:10 +020020#include <sound/core.h>
21#include <sound/pcm.h>
22#include <sound/initval.h>
23#include <sound/soc.h>
24
Russell Kinga09e64f2008-08-05 16:14:15 +010025#include <mach/hardware.h>
26#include <mach/pxa-regs.h>
27#include <mach/pxa2xx-gpio.h>
28#include <mach/audio.h>
Liam Girdwood3e7cc3d2006-10-12 14:28:10 +020029
30#include "pxa2xx-pcm.h"
Philipp Zabeleaff2ae2007-02-02 17:20:40 +010031#include "pxa2xx-i2s.h"
Liam Girdwood3e7cc3d2006-10-12 14:28:10 +020032
33struct pxa_i2s_port {
34 u32 sadiv;
35 u32 sacr0;
36 u32 sacr1;
37 u32 saimr;
38 int master;
Philipp Zabeleaff2ae2007-02-02 17:20:40 +010039 u32 fmt;
Liam Girdwood3e7cc3d2006-10-12 14:28:10 +020040};
41static struct pxa_i2s_port pxa_i2s;
eric miao5a2cc502008-05-26 03:28:09 +010042static struct clk *clk_i2s;
Liam Girdwood3e7cc3d2006-10-12 14:28:10 +020043
Liam Girdwood3e7cc3d2006-10-12 14:28:10 +020044static struct pxa2xx_pcm_dma_params pxa2xx_i2s_pcm_stereo_out = {
45 .name = "I2S PCM Stereo out",
46 .dev_addr = __PREG(SADR),
47 .drcmr = &DRCMRTXSADR,
48 .dcmd = DCMD_INCSRCADDR | DCMD_FLOWTRG |
49 DCMD_BURST32 | DCMD_WIDTH4,
50};
51
52static struct pxa2xx_pcm_dma_params pxa2xx_i2s_pcm_stereo_in = {
53 .name = "I2S PCM Stereo in",
54 .dev_addr = __PREG(SADR),
55 .drcmr = &DRCMRRXSADR,
56 .dcmd = DCMD_INCTRGADDR | DCMD_FLOWSRC |
57 DCMD_BURST32 | DCMD_WIDTH4,
58};
59
60static struct pxa2xx_gpio gpio_bus[] = {
61 { /* I2S SoC Slave */
62 .rx = GPIO29_SDATA_IN_I2S_MD,
63 .tx = GPIO30_SDATA_OUT_I2S_MD,
64 .clk = GPIO28_BITCLK_IN_I2S_MD,
65 .frm = GPIO31_SYNC_I2S_MD,
66 },
67 { /* I2S SoC Master */
Liam Girdwood3e7cc3d2006-10-12 14:28:10 +020068 .rx = GPIO29_SDATA_IN_I2S_MD,
69 .tx = GPIO30_SDATA_OUT_I2S_MD,
70 .clk = GPIO28_BITCLK_OUT_I2S_MD,
71 .frm = GPIO31_SYNC_I2S_MD,
72 },
73};
74
75static int pxa2xx_i2s_startup(struct snd_pcm_substream *substream)
76{
77 struct snd_soc_pcm_runtime *rtd = substream->private_data;
Liam Girdwood917f93a2008-07-07 16:08:11 +010078 struct snd_soc_dai *cpu_dai = rtd->dai->cpu_dai;
Liam Girdwood3e7cc3d2006-10-12 14:28:10 +020079
eric miao5a2cc502008-05-26 03:28:09 +010080 if (IS_ERR(clk_i2s))
81 return PTR_ERR(clk_i2s);
82
Philipp Zabeleaff2ae2007-02-02 17:20:40 +010083 if (!cpu_dai->active) {
Liam Girdwood3e7cc3d2006-10-12 14:28:10 +020084 SACR0 |= SACR0_RST;
85 SACR0 = 0;
86 }
87
88 return 0;
89}
90
91/* wait for I2S controller to be ready */
92static int pxa_i2s_wait(void)
93{
94 int i;
95
96 /* flush the Rx FIFO */
97 for(i = 0; i < 16; i++)
98 SADR;
99 return 0;
100}
101
Liam Girdwood917f93a2008-07-07 16:08:11 +0100102static int pxa2xx_i2s_set_dai_fmt(struct snd_soc_dai *cpu_dai,
Philipp Zabeleaff2ae2007-02-02 17:20:40 +0100103 unsigned int fmt)
104{
105 /* interface format */
106 switch (fmt & SND_SOC_DAIFMT_FORMAT_MASK) {
107 case SND_SOC_DAIFMT_I2S:
108 pxa_i2s.fmt = 0;
109 break;
110 case SND_SOC_DAIFMT_LEFT_J:
111 pxa_i2s.fmt = SACR1_AMSL;
112 break;
113 }
114
115 switch (fmt & SND_SOC_DAIFMT_MASTER_MASK) {
116 case SND_SOC_DAIFMT_CBS_CFS:
117 pxa_i2s.master = 1;
118 break;
119 case SND_SOC_DAIFMT_CBM_CFS:
120 pxa_i2s.master = 0;
121 break;
122 default:
123 break;
124 }
125 return 0;
126}
127
Liam Girdwood917f93a2008-07-07 16:08:11 +0100128static int pxa2xx_i2s_set_dai_sysclk(struct snd_soc_dai *cpu_dai,
Philipp Zabeleaff2ae2007-02-02 17:20:40 +0100129 int clk_id, unsigned int freq, int dir)
130{
131 if (clk_id != PXA2XX_I2S_SYSCLK)
132 return -ENODEV;
133
134 if (pxa_i2s.master && dir == SND_SOC_CLOCK_OUT)
135 pxa_gpio_mode(gpio_bus[pxa_i2s.master].sys);
136
137 return 0;
138}
139
Liam Girdwood3e7cc3d2006-10-12 14:28:10 +0200140static int pxa2xx_i2s_hw_params(struct snd_pcm_substream *substream,
141 struct snd_pcm_hw_params *params)
142{
143 struct snd_soc_pcm_runtime *rtd = substream->private_data;
Liam Girdwood917f93a2008-07-07 16:08:11 +0100144 struct snd_soc_dai *cpu_dai = rtd->dai->cpu_dai;
Liam Girdwood3e7cc3d2006-10-12 14:28:10 +0200145
146 pxa_gpio_mode(gpio_bus[pxa_i2s.master].rx);
147 pxa_gpio_mode(gpio_bus[pxa_i2s.master].tx);
148 pxa_gpio_mode(gpio_bus[pxa_i2s.master].frm);
149 pxa_gpio_mode(gpio_bus[pxa_i2s.master].clk);
Dmitry Baryshkov6e5ea702008-08-31 00:45:02 +0400150 BUG_ON(IS_ERR(clk_i2s));
eric miao5a2cc502008-05-26 03:28:09 +0100151 clk_enable(clk_i2s);
Liam Girdwood3e7cc3d2006-10-12 14:28:10 +0200152 pxa_i2s_wait();
153
154 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
Philipp Zabeleaff2ae2007-02-02 17:20:40 +0100155 cpu_dai->dma_data = &pxa2xx_i2s_pcm_stereo_out;
Liam Girdwood3e7cc3d2006-10-12 14:28:10 +0200156 else
Philipp Zabeleaff2ae2007-02-02 17:20:40 +0100157 cpu_dai->dma_data = &pxa2xx_i2s_pcm_stereo_in;
Liam Girdwood3e7cc3d2006-10-12 14:28:10 +0200158
159 /* is port used by another stream */
160 if (!(SACR0 & SACR0_ENB)) {
161
162 SACR0 = 0;
163 SACR1 = 0;
164 if (pxa_i2s.master)
165 SACR0 |= SACR0_BCKD;
166
167 SACR0 |= SACR0_RFTH(14) | SACR0_TFTH(1);
Philipp Zabeleaff2ae2007-02-02 17:20:40 +0100168 SACR1 |= pxa_i2s.fmt;
Liam Girdwood3e7cc3d2006-10-12 14:28:10 +0200169 }
170 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
171 SAIMR |= SAIMR_TFS;
172 else
173 SAIMR |= SAIMR_RFS;
174
Philipp Zabeleaff2ae2007-02-02 17:20:40 +0100175 switch (params_rate(params)) {
176 case 8000:
177 SADIV = 0x48;
178 break;
179 case 11025:
180 SADIV = 0x34;
181 break;
182 case 16000:
183 SADIV = 0x24;
184 break;
185 case 22050:
186 SADIV = 0x1a;
187 break;
188 case 44100:
189 SADIV = 0xd;
190 break;
191 case 48000:
192 SADIV = 0xc;
193 break;
194 case 96000: /* not in manual and possibly slightly inaccurate */
195 SADIV = 0x6;
196 break;
197 }
198
Liam Girdwood3e7cc3d2006-10-12 14:28:10 +0200199 return 0;
200}
201
202static int pxa2xx_i2s_trigger(struct snd_pcm_substream *substream, int cmd)
203{
204 int ret = 0;
205
206 switch (cmd) {
207 case SNDRV_PCM_TRIGGER_START:
208 SACR0 |= SACR0_ENB;
209 break;
210 case SNDRV_PCM_TRIGGER_RESUME:
211 case SNDRV_PCM_TRIGGER_PAUSE_RELEASE:
212 case SNDRV_PCM_TRIGGER_STOP:
213 case SNDRV_PCM_TRIGGER_SUSPEND:
214 case SNDRV_PCM_TRIGGER_PAUSE_PUSH:
215 break;
216 default:
217 ret = -EINVAL;
218 }
219
220 return ret;
221}
222
223static void pxa2xx_i2s_shutdown(struct snd_pcm_substream *substream)
224{
225 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) {
226 SACR1 |= SACR1_DRPL;
227 SAIMR &= ~SAIMR_TFS;
228 } else {
229 SACR1 |= SACR1_DREC;
230 SAIMR &= ~SAIMR_RFS;
231 }
232
233 if (SACR1 & (SACR1_DREC | SACR1_DRPL)) {
234 SACR0 &= ~SACR0_ENB;
235 pxa_i2s_wait();
eric miao5a2cc502008-05-26 03:28:09 +0100236 clk_disable(clk_i2s);
Liam Girdwood3e7cc3d2006-10-12 14:28:10 +0200237 }
eric miao5a2cc502008-05-26 03:28:09 +0100238
239 clk_put(clk_i2s);
Liam Girdwood3e7cc3d2006-10-12 14:28:10 +0200240}
241
242#ifdef CONFIG_PM
243static int pxa2xx_i2s_suspend(struct platform_device *dev,
Liam Girdwood917f93a2008-07-07 16:08:11 +0100244 struct snd_soc_dai *dai)
Liam Girdwood3e7cc3d2006-10-12 14:28:10 +0200245{
246 if (!dai->active)
247 return 0;
248
249 /* store registers */
250 pxa_i2s.sacr0 = SACR0;
251 pxa_i2s.sacr1 = SACR1;
252 pxa_i2s.saimr = SAIMR;
253 pxa_i2s.sadiv = SADIV;
254
255 /* deactivate link */
256 SACR0 &= ~SACR0_ENB;
257 pxa_i2s_wait();
258 return 0;
259}
260
261static int pxa2xx_i2s_resume(struct platform_device *pdev,
Liam Girdwood917f93a2008-07-07 16:08:11 +0100262 struct snd_soc_dai *dai)
Liam Girdwood3e7cc3d2006-10-12 14:28:10 +0200263{
264 if (!dai->active)
265 return 0;
266
267 pxa_i2s_wait();
268
269 SACR0 = pxa_i2s.sacr0 &= ~SACR0_ENB;
270 SACR1 = pxa_i2s.sacr1;
271 SAIMR = pxa_i2s.saimr;
272 SADIV = pxa_i2s.sadiv;
273 SACR0 |= SACR0_ENB;
274
275 return 0;
276}
277
278#else
279#define pxa2xx_i2s_suspend NULL
280#define pxa2xx_i2s_resume NULL
281#endif
282
Philipp Zabeleaff2ae2007-02-02 17:20:40 +0100283#define PXA2XX_I2S_RATES (SNDRV_PCM_RATE_8000 | SNDRV_PCM_RATE_11025 |\
284 SNDRV_PCM_RATE_16000 | SNDRV_PCM_RATE_22050 | SNDRV_PCM_RATE_44100 | \
285 SNDRV_PCM_RATE_48000 | SNDRV_PCM_RATE_96000)
Liam Girdwood3e7cc3d2006-10-12 14:28:10 +0200286
Liam Girdwood917f93a2008-07-07 16:08:11 +0100287struct snd_soc_dai pxa_i2s_dai = {
Liam Girdwood3e7cc3d2006-10-12 14:28:10 +0200288 .name = "pxa2xx-i2s",
289 .id = 0,
290 .type = SND_SOC_DAI_I2S,
291 .suspend = pxa2xx_i2s_suspend,
292 .resume = pxa2xx_i2s_resume,
Liam Girdwood3e7cc3d2006-10-12 14:28:10 +0200293 .playback = {
294 .channels_min = 2,
Philipp Zabeleaff2ae2007-02-02 17:20:40 +0100295 .channels_max = 2,
296 .rates = PXA2XX_I2S_RATES,
297 .formats = SNDRV_PCM_FMTBIT_S16_LE,},
Liam Girdwood3e7cc3d2006-10-12 14:28:10 +0200298 .capture = {
299 .channels_min = 2,
Philipp Zabeleaff2ae2007-02-02 17:20:40 +0100300 .channels_max = 2,
301 .rates = PXA2XX_I2S_RATES,
302 .formats = SNDRV_PCM_FMTBIT_S16_LE,},
Liam Girdwood3e7cc3d2006-10-12 14:28:10 +0200303 .ops = {
304 .startup = pxa2xx_i2s_startup,
305 .shutdown = pxa2xx_i2s_shutdown,
306 .trigger = pxa2xx_i2s_trigger,
307 .hw_params = pxa2xx_i2s_hw_params,},
Philipp Zabeleaff2ae2007-02-02 17:20:40 +0100308 .dai_ops = {
309 .set_fmt = pxa2xx_i2s_set_dai_fmt,
310 .set_sysclk = pxa2xx_i2s_set_dai_sysclk,
311 },
Liam Girdwood3e7cc3d2006-10-12 14:28:10 +0200312};
313
314EXPORT_SYMBOL_GPL(pxa_i2s_dai);
315
Dmitry Baryshkov6e5ea702008-08-31 00:45:02 +0400316static int pxa2xx_i2s_probe(struct platform_device *dev)
317{
318 clk_i2s = clk_get(&dev->dev, "I2SCLK");
319 return IS_ERR(clk_i2s) ? PTR_ERR(clk_i2s) : 0;
320}
321
322static int __devexit pxa2xx_i2s_remove(struct platform_device *dev)
323{
324 clk_put(clk_i2s);
325 clk_i2s = ERR_PTR(-ENOENT);
326 return 0;
327}
328
329static struct platform_driver pxa2xx_i2s_driver = {
330 .probe = pxa2xx_i2s_probe,
331 .remove = __devexit_p(pxa2xx_i2s_remove),
332
333 .driver = {
334 .name = "pxa2xx-i2s",
335 .owner = THIS_MODULE,
336 },
337};
338
339static int __init pxa2xx_i2s_init(void)
340{
Dmitry Baryshkov081b3552008-09-10 05:01:19 +0400341 if (cpu_is_pxa27x())
342 gpio_bus[1].sys = GPIO113_I2S_SYSCLK_MD;
343 else
344 gpio_bus[1].sys = GPIO32_SYSCLK_I2S_MD;
345
Dmitry Baryshkov6e5ea702008-08-31 00:45:02 +0400346 clk_i2s = ERR_PTR(-ENOENT);
347 return platform_driver_register(&pxa2xx_i2s_driver);
348}
349
350static void __exit pxa2xx_i2s_exit(void)
351{
352 platform_driver_unregister(&pxa2xx_i2s_driver);
353}
354
355module_init(pxa2xx_i2s_init);
356module_exit(pxa2xx_i2s_exit);
357
Liam Girdwood3e7cc3d2006-10-12 14:28:10 +0200358/* Module information */
359MODULE_AUTHOR("Liam Girdwood, liam.girdwood@wolfsonmicro.com, www.wolfsonmicro.com");
360MODULE_DESCRIPTION("pxa2xx I2S SoC Interface");
361MODULE_LICENSE("GPL");