blob: 580de5a8dba6f744c31bb6e03861d8c2763a45cc [file] [log] [blame]
Jarkko Nikula2e747962008-04-25 13:55:19 +02001/*
2 * omap-mcbsp.c -- OMAP ALSA SoC DAI driver using McBSP port
3 *
4 * Copyright (C) 2008 Nokia Corporation
5 *
Jarkko Nikulab08f7a62009-04-17 14:42:26 +03006 * Contact: Jarkko Nikula <jhnikula@gmail.com>
7 * Peter Ujfalusi <peter.ujfalusi@nokia.com>
Jarkko Nikula2e747962008-04-25 13:55:19 +02008 *
9 * This program is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU General Public License
11 * version 2 as published by the Free Software Foundation.
12 *
13 * This program is distributed in the hope that it will be useful, but
14 * WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
21 * 02110-1301 USA
22 *
23 */
24
25#include <linux/init.h>
26#include <linux/module.h>
27#include <linux/device.h>
28#include <sound/core.h>
29#include <sound/pcm.h>
30#include <sound/pcm_params.h>
31#include <sound/initval.h>
32#include <sound/soc.h>
33
Russell Kinga09e64f2008-08-05 16:14:15 +010034#include <mach/control.h>
35#include <mach/dma.h>
36#include <mach/mcbsp.h>
Jarkko Nikula2e747962008-04-25 13:55:19 +020037#include "omap-mcbsp.h"
38#include "omap-pcm.h"
39
Jarkko Nikula0b604852008-11-12 17:05:51 +020040#define OMAP_MCBSP_RATES (SNDRV_PCM_RATE_8000_96000)
Jarkko Nikula2e747962008-04-25 13:55:19 +020041
42struct omap_mcbsp_data {
43 unsigned int bus_id;
44 struct omap_mcbsp_reg_cfg regs;
Jarkko Nikulaba9d0fd2008-10-20 15:29:59 +030045 unsigned int fmt;
Jarkko Nikula2e747962008-04-25 13:55:19 +020046 /*
47 * Flags indicating is the bus already activated and configured by
48 * another substream
49 */
50 int active;
51 int configured;
52};
53
54#define to_mcbsp(priv) container_of((priv), struct omap_mcbsp_data, bus_id)
55
56static struct omap_mcbsp_data mcbsp_data[NUM_LINKS];
57
58/*
59 * Stream DMA parameters. DMA request line and port address are set runtime
60 * since they are different between OMAP1 and later OMAPs
61 */
Jarkko Nikula2e897132008-10-09 15:57:21 +030062static struct omap_pcm_dma_data omap_mcbsp_dai_dma_params[NUM_LINKS][2];
Jarkko Nikula2e747962008-04-25 13:55:19 +020063
64#if defined(CONFIG_ARCH_OMAP15XX) || defined(CONFIG_ARCH_OMAP16XX)
65static const int omap1_dma_reqs[][2] = {
66 { OMAP_DMA_MCBSP1_TX, OMAP_DMA_MCBSP1_RX },
67 { OMAP_DMA_MCBSP2_TX, OMAP_DMA_MCBSP2_RX },
68 { OMAP_DMA_MCBSP3_TX, OMAP_DMA_MCBSP3_RX },
69};
70static const unsigned long omap1_mcbsp_port[][2] = {
71 { OMAP1510_MCBSP1_BASE + OMAP_MCBSP_REG_DXR1,
72 OMAP1510_MCBSP1_BASE + OMAP_MCBSP_REG_DRR1 },
73 { OMAP1510_MCBSP2_BASE + OMAP_MCBSP_REG_DXR1,
74 OMAP1510_MCBSP2_BASE + OMAP_MCBSP_REG_DRR1 },
75 { OMAP1510_MCBSP3_BASE + OMAP_MCBSP_REG_DXR1,
76 OMAP1510_MCBSP3_BASE + OMAP_MCBSP_REG_DRR1 },
77};
78#else
79static const int omap1_dma_reqs[][2] = {};
80static const unsigned long omap1_mcbsp_port[][2] = {};
81#endif
Jarkko Nikula406e2c42008-10-09 15:57:20 +030082
83#if defined(CONFIG_ARCH_OMAP24XX) || defined(CONFIG_ARCH_OMAP34XX)
84static const int omap24xx_dma_reqs[][2] = {
Jarkko Nikula2e747962008-04-25 13:55:19 +020085 { OMAP24XX_DMA_MCBSP1_TX, OMAP24XX_DMA_MCBSP1_RX },
86 { OMAP24XX_DMA_MCBSP2_TX, OMAP24XX_DMA_MCBSP2_RX },
Jarkko Nikula406e2c42008-10-09 15:57:20 +030087#if defined(CONFIG_ARCH_OMAP2430) || defined(CONFIG_ARCH_OMAP34XX)
88 { OMAP24XX_DMA_MCBSP3_TX, OMAP24XX_DMA_MCBSP3_RX },
89 { OMAP24XX_DMA_MCBSP4_TX, OMAP24XX_DMA_MCBSP4_RX },
90 { OMAP24XX_DMA_MCBSP5_TX, OMAP24XX_DMA_MCBSP5_RX },
91#endif
Jarkko Nikula2e747962008-04-25 13:55:19 +020092};
Jarkko Nikula406e2c42008-10-09 15:57:20 +030093#else
94static const int omap24xx_dma_reqs[][2] = {};
95#endif
96
97#if defined(CONFIG_ARCH_OMAP2420)
Jarkko Nikula2e747962008-04-25 13:55:19 +020098static const unsigned long omap2420_mcbsp_port[][2] = {
99 { OMAP24XX_MCBSP1_BASE + OMAP_MCBSP_REG_DXR1,
100 OMAP24XX_MCBSP1_BASE + OMAP_MCBSP_REG_DRR1 },
101 { OMAP24XX_MCBSP2_BASE + OMAP_MCBSP_REG_DXR1,
102 OMAP24XX_MCBSP2_BASE + OMAP_MCBSP_REG_DRR1 },
103};
104#else
Jarkko Nikula2e747962008-04-25 13:55:19 +0200105static const unsigned long omap2420_mcbsp_port[][2] = {};
106#endif
107
Jarkko Nikula406e2c42008-10-09 15:57:20 +0300108#if defined(CONFIG_ARCH_OMAP2430)
109static const unsigned long omap2430_mcbsp_port[][2] = {
110 { OMAP24XX_MCBSP1_BASE + OMAP_MCBSP_REG_DXR,
111 OMAP24XX_MCBSP1_BASE + OMAP_MCBSP_REG_DRR },
112 { OMAP24XX_MCBSP2_BASE + OMAP_MCBSP_REG_DXR,
113 OMAP24XX_MCBSP2_BASE + OMAP_MCBSP_REG_DRR },
114 { OMAP2430_MCBSP3_BASE + OMAP_MCBSP_REG_DXR,
115 OMAP2430_MCBSP3_BASE + OMAP_MCBSP_REG_DRR },
116 { OMAP2430_MCBSP4_BASE + OMAP_MCBSP_REG_DXR,
117 OMAP2430_MCBSP4_BASE + OMAP_MCBSP_REG_DRR },
118 { OMAP2430_MCBSP5_BASE + OMAP_MCBSP_REG_DXR,
119 OMAP2430_MCBSP5_BASE + OMAP_MCBSP_REG_DRR },
120};
121#else
122static const unsigned long omap2430_mcbsp_port[][2] = {};
123#endif
124
125#if defined(CONFIG_ARCH_OMAP34XX)
126static const unsigned long omap34xx_mcbsp_port[][2] = {
127 { OMAP34XX_MCBSP1_BASE + OMAP_MCBSP_REG_DXR,
128 OMAP34XX_MCBSP1_BASE + OMAP_MCBSP_REG_DRR },
129 { OMAP34XX_MCBSP2_BASE + OMAP_MCBSP_REG_DXR,
130 OMAP34XX_MCBSP2_BASE + OMAP_MCBSP_REG_DRR },
131 { OMAP34XX_MCBSP3_BASE + OMAP_MCBSP_REG_DXR,
132 OMAP34XX_MCBSP3_BASE + OMAP_MCBSP_REG_DRR },
133 { OMAP34XX_MCBSP4_BASE + OMAP_MCBSP_REG_DXR,
134 OMAP34XX_MCBSP4_BASE + OMAP_MCBSP_REG_DRR },
135 { OMAP34XX_MCBSP5_BASE + OMAP_MCBSP_REG_DXR,
136 OMAP34XX_MCBSP5_BASE + OMAP_MCBSP_REG_DRR },
137};
138#else
139static const unsigned long omap34xx_mcbsp_port[][2] = {};
140#endif
141
Eduardo Valentincaebc0c2009-08-20 16:18:25 +0300142static void omap_mcbsp_set_threshold(struct snd_pcm_substream *substream)
143{
144 struct snd_soc_pcm_runtime *rtd = substream->private_data;
145 struct snd_soc_dai *cpu_dai = rtd->dai->cpu_dai;
146 struct omap_mcbsp_data *mcbsp_data = to_mcbsp(cpu_dai->private_data);
147 int samples = snd_pcm_lib_period_bytes(substream) >> 1;
148
149 /* Configure McBSP internal buffer usage */
150 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
151 omap_mcbsp_set_tx_threshold(mcbsp_data->bus_id, samples - 1);
152 else
153 omap_mcbsp_set_rx_threshold(mcbsp_data->bus_id, samples - 1);
154}
155
Mark Browndee89c42008-11-18 22:11:38 +0000156static int omap_mcbsp_dai_startup(struct snd_pcm_substream *substream,
157 struct snd_soc_dai *dai)
Jarkko Nikula2e747962008-04-25 13:55:19 +0200158{
159 struct snd_soc_pcm_runtime *rtd = substream->private_data;
Liam Girdwood8687eb82008-07-07 16:08:07 +0100160 struct snd_soc_dai *cpu_dai = rtd->dai->cpu_dai;
Jarkko Nikula2e747962008-04-25 13:55:19 +0200161 struct omap_mcbsp_data *mcbsp_data = to_mcbsp(cpu_dai->private_data);
Eduardo Valentincaebc0c2009-08-20 16:18:25 +0300162 int bus_id = mcbsp_data->bus_id;
Jarkko Nikula2e747962008-04-25 13:55:19 +0200163 int err = 0;
164
Eduardo Valentincaebc0c2009-08-20 16:18:25 +0300165 if (!cpu_dai->active)
166 err = omap_mcbsp_request(bus_id);
167
168 if (cpu_is_omap343x()) {
169 int max_period;
170
Jarkko Nikula69849922009-03-27 15:32:01 +0200171 /*
172 * McBSP2 in OMAP3 has 1024 * 32-bit internal audio buffer.
173 * Set constraint for minimum buffer size to the same than FIFO
174 * size in order to avoid underruns in playback startup because
175 * HW is keeping the DMA request active until FIFO is filled.
176 */
Eduardo Valentincaebc0c2009-08-20 16:18:25 +0300177 if (bus_id == 1)
178 snd_pcm_hw_constraint_minmax(substream->runtime,
179 SNDRV_PCM_HW_PARAM_BUFFER_BYTES,
180 4096, UINT_MAX);
Jarkko Nikula69849922009-03-27 15:32:01 +0200181
Eduardo Valentincaebc0c2009-08-20 16:18:25 +0300182 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
183 max_period = omap_mcbsp_get_max_tx_threshold(bus_id);
184 else
185 max_period = omap_mcbsp_get_max_rx_threshold(bus_id);
186
187 max_period++;
188 max_period <<= 1;
189
190 snd_pcm_hw_constraint_minmax(substream->runtime,
191 SNDRV_PCM_HW_PARAM_PERIOD_BYTES,
192 32, max_period);
193 }
Jarkko Nikula2e747962008-04-25 13:55:19 +0200194
195 return err;
196}
197
Mark Browndee89c42008-11-18 22:11:38 +0000198static void omap_mcbsp_dai_shutdown(struct snd_pcm_substream *substream,
199 struct snd_soc_dai *dai)
Jarkko Nikula2e747962008-04-25 13:55:19 +0200200{
201 struct snd_soc_pcm_runtime *rtd = substream->private_data;
Liam Girdwood8687eb82008-07-07 16:08:07 +0100202 struct snd_soc_dai *cpu_dai = rtd->dai->cpu_dai;
Jarkko Nikula2e747962008-04-25 13:55:19 +0200203 struct omap_mcbsp_data *mcbsp_data = to_mcbsp(cpu_dai->private_data);
204
205 if (!cpu_dai->active) {
206 omap_mcbsp_free(mcbsp_data->bus_id);
207 mcbsp_data->configured = 0;
208 }
209}
210
Mark Browndee89c42008-11-18 22:11:38 +0000211static int omap_mcbsp_dai_trigger(struct snd_pcm_substream *substream, int cmd,
212 struct snd_soc_dai *dai)
Jarkko Nikula2e747962008-04-25 13:55:19 +0200213{
214 struct snd_soc_pcm_runtime *rtd = substream->private_data;
Liam Girdwood8687eb82008-07-07 16:08:07 +0100215 struct snd_soc_dai *cpu_dai = rtd->dai->cpu_dai;
Jarkko Nikula2e747962008-04-25 13:55:19 +0200216 struct omap_mcbsp_data *mcbsp_data = to_mcbsp(cpu_dai->private_data);
Jarkko Nikulac12abc02009-08-07 09:59:47 +0300217 int err = 0, play = (substream->stream == SNDRV_PCM_STREAM_PLAYBACK);
Jarkko Nikula2e747962008-04-25 13:55:19 +0200218
219 switch (cmd) {
220 case SNDRV_PCM_TRIGGER_START:
221 case SNDRV_PCM_TRIGGER_RESUME:
222 case SNDRV_PCM_TRIGGER_PAUSE_RELEASE:
Jarkko Nikulac12abc02009-08-07 09:59:47 +0300223 mcbsp_data->active++;
224 omap_mcbsp_start(mcbsp_data->bus_id, play, !play);
Eero Nurkkalaca6e2ce2009-08-20 16:18:24 +0300225 /* Make sure data transfer is frame synchronized */
226 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
227 omap_mcbsp_xmit_enable(mcbsp_data->bus_id, 1);
228 else
229 omap_mcbsp_recv_enable(mcbsp_data->bus_id, 1);
Jarkko Nikula2e747962008-04-25 13:55:19 +0200230 break;
231
232 case SNDRV_PCM_TRIGGER_STOP:
233 case SNDRV_PCM_TRIGGER_SUSPEND:
234 case SNDRV_PCM_TRIGGER_PAUSE_PUSH:
Jarkko Nikulac12abc02009-08-07 09:59:47 +0300235 omap_mcbsp_stop(mcbsp_data->bus_id, play, !play);
236 mcbsp_data->active--;
Jarkko Nikula2e747962008-04-25 13:55:19 +0200237 break;
238 default:
239 err = -EINVAL;
240 }
241
242 return err;
243}
244
245static int omap_mcbsp_dai_hw_params(struct snd_pcm_substream *substream,
Mark Browndee89c42008-11-18 22:11:38 +0000246 struct snd_pcm_hw_params *params,
247 struct snd_soc_dai *dai)
Jarkko Nikula2e747962008-04-25 13:55:19 +0200248{
249 struct snd_soc_pcm_runtime *rtd = substream->private_data;
Liam Girdwood8687eb82008-07-07 16:08:07 +0100250 struct snd_soc_dai *cpu_dai = rtd->dai->cpu_dai;
Jarkko Nikula2e747962008-04-25 13:55:19 +0200251 struct omap_mcbsp_data *mcbsp_data = to_mcbsp(cpu_dai->private_data);
252 struct omap_mcbsp_reg_cfg *regs = &mcbsp_data->regs;
253 int dma, bus_id = mcbsp_data->bus_id, id = cpu_dai->id;
Eduardo Valentincaebc0c2009-08-20 16:18:25 +0300254 int wlen, channels, wpf, sync_mode = OMAP_DMA_SYNC_ELEMENT;
Jarkko Nikula2e747962008-04-25 13:55:19 +0200255 unsigned long port;
Peter Ujfalusic29b2062009-04-15 15:38:55 +0300256 unsigned int format;
Jarkko Nikula2e747962008-04-25 13:55:19 +0200257
258 if (cpu_class_is_omap1()) {
259 dma = omap1_dma_reqs[bus_id][substream->stream];
260 port = omap1_mcbsp_port[bus_id][substream->stream];
261 } else if (cpu_is_omap2420()) {
Jarkko Nikula406e2c42008-10-09 15:57:20 +0300262 dma = omap24xx_dma_reqs[bus_id][substream->stream];
Jarkko Nikula2e747962008-04-25 13:55:19 +0200263 port = omap2420_mcbsp_port[bus_id][substream->stream];
Jarkko Nikula406e2c42008-10-09 15:57:20 +0300264 } else if (cpu_is_omap2430()) {
265 dma = omap24xx_dma_reqs[bus_id][substream->stream];
266 port = omap2430_mcbsp_port[bus_id][substream->stream];
267 } else if (cpu_is_omap343x()) {
268 dma = omap24xx_dma_reqs[bus_id][substream->stream];
269 port = omap34xx_mcbsp_port[bus_id][substream->stream];
Eduardo Valentincaebc0c2009-08-20 16:18:25 +0300270 omap_mcbsp_dai_dma_params[id][substream->stream].set_threshold =
271 omap_mcbsp_set_threshold;
272 sync_mode = OMAP_DMA_SYNC_FRAME;
Jarkko Nikula2e747962008-04-25 13:55:19 +0200273 } else {
Jarkko Nikula2e747962008-04-25 13:55:19 +0200274 return -ENODEV;
275 }
Jarkko Nikula2e897132008-10-09 15:57:21 +0300276 omap_mcbsp_dai_dma_params[id][substream->stream].name =
277 substream->stream ? "Audio Capture" : "Audio Playback";
Jarkko Nikula2e747962008-04-25 13:55:19 +0200278 omap_mcbsp_dai_dma_params[id][substream->stream].dma_req = dma;
279 omap_mcbsp_dai_dma_params[id][substream->stream].port_addr = port;
Eduardo Valentincaebc0c2009-08-20 16:18:25 +0300280 omap_mcbsp_dai_dma_params[id][substream->stream].sync_mode = sync_mode;
Jarkko Nikula2e747962008-04-25 13:55:19 +0200281 cpu_dai->dma_data = &omap_mcbsp_dai_dma_params[id][substream->stream];
282
283 if (mcbsp_data->configured) {
284 /* McBSP already configured by another stream */
285 return 0;
286 }
287
Peter Ujfalusic29b2062009-04-15 15:38:55 +0300288 format = mcbsp_data->fmt & SND_SOC_DAIFMT_FORMAT_MASK;
289 wpf = channels = params_channels(params);
Jarkko Nikula375e8a72008-11-25 12:45:09 +0200290 switch (channels) {
Jarkko Nikula2e747962008-04-25 13:55:19 +0200291 case 2:
Peter Ujfalusic29b2062009-04-15 15:38:55 +0300292 if (format == SND_SOC_DAIFMT_I2S) {
293 /* Use dual-phase frames */
294 regs->rcr2 |= RPHASE;
295 regs->xcr2 |= XPHASE;
296 /* Set 1 word per (McBSP) frame for phase1 and phase2 */
297 wpf--;
298 regs->rcr2 |= RFRLEN2(wpf - 1);
299 regs->xcr2 |= XFRLEN2(wpf - 1);
300 }
Jarkko Nikula375e8a72008-11-25 12:45:09 +0200301 case 1:
Peter Ujfalusi31a00c62009-04-23 14:36:48 +0300302 case 4:
Peter Ujfalusic29b2062009-04-15 15:38:55 +0300303 /* Set word per (McBSP) frame for phase1 */
304 regs->rcr1 |= RFRLEN1(wpf - 1);
305 regs->xcr1 |= XFRLEN1(wpf - 1);
Jarkko Nikula2e747962008-04-25 13:55:19 +0200306 break;
307 default:
308 /* Unsupported number of channels */
309 return -EINVAL;
310 }
311
312 switch (params_format(params)) {
313 case SNDRV_PCM_FORMAT_S16_LE:
314 /* Set word lengths */
Jarkko Nikulaba9d0fd2008-10-20 15:29:59 +0300315 wlen = 16;
Jarkko Nikula2e747962008-04-25 13:55:19 +0200316 regs->rcr2 |= RWDLEN2(OMAP_MCBSP_WORD_16);
317 regs->rcr1 |= RWDLEN1(OMAP_MCBSP_WORD_16);
318 regs->xcr2 |= XWDLEN2(OMAP_MCBSP_WORD_16);
319 regs->xcr1 |= XWDLEN1(OMAP_MCBSP_WORD_16);
Jarkko Nikula2e747962008-04-25 13:55:19 +0200320 break;
321 default:
322 /* Unsupported PCM format */
323 return -EINVAL;
324 }
325
Jarkko Nikulaba9d0fd2008-10-20 15:29:59 +0300326 /* Set FS period and length in terms of bit clock periods */
Peter Ujfalusic29b2062009-04-15 15:38:55 +0300327 switch (format) {
Jarkko Nikulaba9d0fd2008-10-20 15:29:59 +0300328 case SND_SOC_DAIFMT_I2S:
Peter Ujfalusic29b2062009-04-15 15:38:55 +0300329 regs->srgr2 |= FPER(wlen * channels - 1);
Jarkko Nikulaba9d0fd2008-10-20 15:29:59 +0300330 regs->srgr1 |= FWID(wlen - 1);
331 break;
Peter Ujfalusi3ba191c2009-04-15 15:38:56 +0300332 case SND_SOC_DAIFMT_DSP_A:
Jarkko Nikulabd258672008-12-22 10:21:36 +0200333 case SND_SOC_DAIFMT_DSP_B:
Jarkko Nikula375e8a72008-11-25 12:45:09 +0200334 regs->srgr2 |= FPER(wlen * channels - 1);
Jarkko Nikula36ce8582009-04-15 13:48:16 +0300335 regs->srgr1 |= FWID(0);
Jarkko Nikulaba9d0fd2008-10-20 15:29:59 +0300336 break;
337 }
338
Jarkko Nikula2e747962008-04-25 13:55:19 +0200339 omap_mcbsp_config(bus_id, &mcbsp_data->regs);
340 mcbsp_data->configured = 1;
341
342 return 0;
343}
344
345/*
346 * This must be called before _set_clkdiv and _set_sysclk since McBSP register
347 * cache is initialized here
348 */
Liam Girdwood8687eb82008-07-07 16:08:07 +0100349static int omap_mcbsp_dai_set_dai_fmt(struct snd_soc_dai *cpu_dai,
Jarkko Nikula2e747962008-04-25 13:55:19 +0200350 unsigned int fmt)
351{
352 struct omap_mcbsp_data *mcbsp_data = to_mcbsp(cpu_dai->private_data);
353 struct omap_mcbsp_reg_cfg *regs = &mcbsp_data->regs;
Jarkko Nikula36ce8582009-04-15 13:48:16 +0300354 unsigned int temp_fmt = fmt;
Jarkko Nikula2e747962008-04-25 13:55:19 +0200355
356 if (mcbsp_data->configured)
357 return 0;
358
Jarkko Nikulaba9d0fd2008-10-20 15:29:59 +0300359 mcbsp_data->fmt = fmt;
Jarkko Nikula2e747962008-04-25 13:55:19 +0200360 memset(regs, 0, sizeof(*regs));
361 /* Generic McBSP register settings */
362 regs->spcr2 |= XINTM(3) | FREE;
363 regs->spcr1 |= RINTM(3);
Eero Nurkkalac721bbd2009-08-20 16:18:23 +0300364 /* RFIG and XFIG are not defined in 34xx */
365 if (!cpu_is_omap34xx()) {
366 regs->rcr2 |= RFIG;
367 regs->xcr2 |= XFIG;
368 }
Misael Lopez Cruzef390c02009-01-29 13:29:46 +0200369 if (cpu_is_omap2430() || cpu_is_omap34xx()) {
370 regs->xccr = DXENDLY(1) | XDMAEN;
371 regs->rccr = RFULL_CYCLE | RDMAEN;
372 }
Jarkko Nikula2e747962008-04-25 13:55:19 +0200373
374 switch (fmt & SND_SOC_DAIFMT_FORMAT_MASK) {
375 case SND_SOC_DAIFMT_I2S:
376 /* 1-bit data delay */
377 regs->rcr2 |= RDATDLY(1);
378 regs->xcr2 |= XDATDLY(1);
Eero Nurkkalaca6e2ce2009-08-20 16:18:24 +0300379 regs->rccr |= RFULL_CYCLE | RDMAEN | RDISABLE;
380 regs->xccr |= (DXENDLY(1) | XDMAEN | XDISABLE);
Jarkko Nikula2e747962008-04-25 13:55:19 +0200381 break;
Peter Ujfalusi3ba191c2009-04-15 15:38:56 +0300382 case SND_SOC_DAIFMT_DSP_A:
383 /* 1-bit data delay */
384 regs->rcr2 |= RDATDLY(1);
385 regs->xcr2 |= XDATDLY(1);
Eero Nurkkalaca6e2ce2009-08-20 16:18:24 +0300386 regs->rccr |= RFULL_CYCLE | RDMAEN | RDISABLE;
387 regs->xccr |= (DXENDLY(1) | XDMAEN | XDISABLE);
Peter Ujfalusi3ba191c2009-04-15 15:38:56 +0300388 /* Invert FS polarity configuration */
389 temp_fmt ^= SND_SOC_DAIFMT_NB_IF;
390 break;
Jarkko Nikulabd258672008-12-22 10:21:36 +0200391 case SND_SOC_DAIFMT_DSP_B:
Arun KS3336c5b2008-10-02 15:07:06 +0530392 /* 0-bit data delay */
393 regs->rcr2 |= RDATDLY(0);
394 regs->xcr2 |= XDATDLY(0);
Jarkko Nikula36ce8582009-04-15 13:48:16 +0300395 /* Invert FS polarity configuration */
396 temp_fmt ^= SND_SOC_DAIFMT_NB_IF;
Arun KS3336c5b2008-10-02 15:07:06 +0530397 break;
Jarkko Nikula2e747962008-04-25 13:55:19 +0200398 default:
399 /* Unsupported data format */
400 return -EINVAL;
401 }
402
403 switch (fmt & SND_SOC_DAIFMT_MASTER_MASK) {
404 case SND_SOC_DAIFMT_CBS_CFS:
405 /* McBSP master. Set FS and bit clocks as outputs */
406 regs->pcr0 |= FSXM | FSRM |
407 CLKXM | CLKRM;
408 /* Sample rate generator drives the FS */
409 regs->srgr2 |= FSGM;
410 break;
411 case SND_SOC_DAIFMT_CBM_CFM:
412 /* McBSP slave */
413 break;
414 default:
415 /* Unsupported master/slave configuration */
416 return -EINVAL;
417 }
418
419 /* Set bit clock (CLKX/CLKR) and FS polarities */
Jarkko Nikula36ce8582009-04-15 13:48:16 +0300420 switch (temp_fmt & SND_SOC_DAIFMT_INV_MASK) {
Jarkko Nikula2e747962008-04-25 13:55:19 +0200421 case SND_SOC_DAIFMT_NB_NF:
422 /*
423 * Normal BCLK + FS.
424 * FS active low. TX data driven on falling edge of bit clock
425 * and RX data sampled on rising edge of bit clock.
426 */
427 regs->pcr0 |= FSXP | FSRP |
428 CLKXP | CLKRP;
429 break;
430 case SND_SOC_DAIFMT_NB_IF:
431 regs->pcr0 |= CLKXP | CLKRP;
432 break;
433 case SND_SOC_DAIFMT_IB_NF:
434 regs->pcr0 |= FSXP | FSRP;
435 break;
436 case SND_SOC_DAIFMT_IB_IF:
437 break;
438 default:
439 return -EINVAL;
440 }
441
442 return 0;
443}
444
Liam Girdwood8687eb82008-07-07 16:08:07 +0100445static int omap_mcbsp_dai_set_clkdiv(struct snd_soc_dai *cpu_dai,
Jarkko Nikula2e747962008-04-25 13:55:19 +0200446 int div_id, int div)
447{
448 struct omap_mcbsp_data *mcbsp_data = to_mcbsp(cpu_dai->private_data);
449 struct omap_mcbsp_reg_cfg *regs = &mcbsp_data->regs;
450
451 if (div_id != OMAP_MCBSP_CLKGDV)
452 return -ENODEV;
453
454 regs->srgr1 |= CLKGDV(div - 1);
455
456 return 0;
457}
458
459static int omap_mcbsp_dai_set_clks_src(struct omap_mcbsp_data *mcbsp_data,
460 int clk_id)
461{
462 int sel_bit;
Jarkko Nikula406e2c42008-10-09 15:57:20 +0300463 u16 reg, reg_devconf1 = OMAP243X_CONTROL_DEVCONF1;
Jarkko Nikula2e747962008-04-25 13:55:19 +0200464
465 if (cpu_class_is_omap1()) {
466 /* OMAP1's can use only external source clock */
467 if (unlikely(clk_id == OMAP_MCBSP_SYSCLK_CLKS_FCLK))
468 return -EINVAL;
469 else
470 return 0;
471 }
472
Jarkko Nikula406e2c42008-10-09 15:57:20 +0300473 if (cpu_is_omap2420() && mcbsp_data->bus_id > 1)
474 return -EINVAL;
475
476 if (cpu_is_omap343x())
477 reg_devconf1 = OMAP343X_CONTROL_DEVCONF1;
478
Jarkko Nikula2e747962008-04-25 13:55:19 +0200479 switch (mcbsp_data->bus_id) {
480 case 0:
481 reg = OMAP2_CONTROL_DEVCONF0;
482 sel_bit = 2;
483 break;
484 case 1:
485 reg = OMAP2_CONTROL_DEVCONF0;
486 sel_bit = 6;
487 break;
Jarkko Nikula406e2c42008-10-09 15:57:20 +0300488 case 2:
489 reg = reg_devconf1;
490 sel_bit = 0;
491 break;
492 case 3:
493 reg = reg_devconf1;
494 sel_bit = 2;
495 break;
496 case 4:
497 reg = reg_devconf1;
498 sel_bit = 4;
499 break;
Jarkko Nikula2e747962008-04-25 13:55:19 +0200500 default:
501 return -EINVAL;
502 }
503
Jarkko Nikula406e2c42008-10-09 15:57:20 +0300504 if (clk_id == OMAP_MCBSP_SYSCLK_CLKS_FCLK)
505 omap_ctrl_writel(omap_ctrl_readl(reg) & ~(1 << sel_bit), reg);
506 else
507 omap_ctrl_writel(omap_ctrl_readl(reg) | (1 << sel_bit), reg);
Jarkko Nikula2e747962008-04-25 13:55:19 +0200508
509 return 0;
510}
511
Liam Girdwood8687eb82008-07-07 16:08:07 +0100512static int omap_mcbsp_dai_set_dai_sysclk(struct snd_soc_dai *cpu_dai,
Jarkko Nikula2e747962008-04-25 13:55:19 +0200513 int clk_id, unsigned int freq,
514 int dir)
515{
516 struct omap_mcbsp_data *mcbsp_data = to_mcbsp(cpu_dai->private_data);
517 struct omap_mcbsp_reg_cfg *regs = &mcbsp_data->regs;
518 int err = 0;
519
520 switch (clk_id) {
521 case OMAP_MCBSP_SYSCLK_CLK:
522 regs->srgr2 |= CLKSM;
523 break;
524 case OMAP_MCBSP_SYSCLK_CLKS_FCLK:
525 case OMAP_MCBSP_SYSCLK_CLKS_EXT:
526 err = omap_mcbsp_dai_set_clks_src(mcbsp_data, clk_id);
527 break;
528
529 case OMAP_MCBSP_SYSCLK_CLKX_EXT:
530 regs->srgr2 |= CLKSM;
531 case OMAP_MCBSP_SYSCLK_CLKR_EXT:
532 regs->pcr0 |= SCLKME;
533 break;
534 default:
535 err = -ENODEV;
536 }
537
538 return err;
539}
540
Eric Miao6335d052009-03-03 09:41:00 +0800541static struct snd_soc_dai_ops omap_mcbsp_dai_ops = {
542 .startup = omap_mcbsp_dai_startup,
543 .shutdown = omap_mcbsp_dai_shutdown,
544 .trigger = omap_mcbsp_dai_trigger,
545 .hw_params = omap_mcbsp_dai_hw_params,
546 .set_fmt = omap_mcbsp_dai_set_dai_fmt,
547 .set_clkdiv = omap_mcbsp_dai_set_clkdiv,
548 .set_sysclk = omap_mcbsp_dai_set_dai_sysclk,
549};
550
Jarkko Nikula8def4642008-10-09 15:57:22 +0300551#define OMAP_MCBSP_DAI_BUILDER(link_id) \
552{ \
Jarkko Nikula0c758bd2008-11-21 14:31:33 +0200553 .name = "omap-mcbsp-dai-"#link_id, \
Jarkko Nikula8def4642008-10-09 15:57:22 +0300554 .id = (link_id), \
Jarkko Nikula8def4642008-10-09 15:57:22 +0300555 .playback = { \
Jarkko Nikula375e8a72008-11-25 12:45:09 +0200556 .channels_min = 1, \
Peter Ujfalusi31a00c62009-04-23 14:36:48 +0300557 .channels_max = 4, \
Jarkko Nikula8def4642008-10-09 15:57:22 +0300558 .rates = OMAP_MCBSP_RATES, \
559 .formats = SNDRV_PCM_FMTBIT_S16_LE, \
560 }, \
561 .capture = { \
Jarkko Nikula375e8a72008-11-25 12:45:09 +0200562 .channels_min = 1, \
Peter Ujfalusi31a00c62009-04-23 14:36:48 +0300563 .channels_max = 4, \
Jarkko Nikula8def4642008-10-09 15:57:22 +0300564 .rates = OMAP_MCBSP_RATES, \
565 .formats = SNDRV_PCM_FMTBIT_S16_LE, \
566 }, \
Eric Miao6335d052009-03-03 09:41:00 +0800567 .ops = &omap_mcbsp_dai_ops, \
Jarkko Nikula8def4642008-10-09 15:57:22 +0300568 .private_data = &mcbsp_data[(link_id)].bus_id, \
569}
570
571struct snd_soc_dai omap_mcbsp_dai[] = {
572 OMAP_MCBSP_DAI_BUILDER(0),
573 OMAP_MCBSP_DAI_BUILDER(1),
574#if NUM_LINKS >= 3
575 OMAP_MCBSP_DAI_BUILDER(2),
576#endif
577#if NUM_LINKS == 5
578 OMAP_MCBSP_DAI_BUILDER(3),
579 OMAP_MCBSP_DAI_BUILDER(4),
580#endif
Jarkko Nikula2e747962008-04-25 13:55:19 +0200581};
Jarkko Nikula8def4642008-10-09 15:57:22 +0300582
Jarkko Nikula2e747962008-04-25 13:55:19 +0200583EXPORT_SYMBOL_GPL(omap_mcbsp_dai);
584
Takashi Iwaif73f2a62008-12-10 07:59:33 +0100585static int __init snd_omap_mcbsp_init(void)
Mark Brown3f4b7832008-12-03 19:26:35 +0000586{
587 return snd_soc_register_dais(omap_mcbsp_dai,
588 ARRAY_SIZE(omap_mcbsp_dai));
589}
Takashi Iwaif73f2a62008-12-10 07:59:33 +0100590module_init(snd_omap_mcbsp_init);
Mark Brown3f4b7832008-12-03 19:26:35 +0000591
Takashi Iwaif73f2a62008-12-10 07:59:33 +0100592static void __exit snd_omap_mcbsp_exit(void)
Mark Brown3f4b7832008-12-03 19:26:35 +0000593{
594 snd_soc_unregister_dais(omap_mcbsp_dai, ARRAY_SIZE(omap_mcbsp_dai));
595}
Takashi Iwaif73f2a62008-12-10 07:59:33 +0100596module_exit(snd_omap_mcbsp_exit);
Mark Brown3f4b7832008-12-03 19:26:35 +0000597
Jarkko Nikulab08f7a62009-04-17 14:42:26 +0300598MODULE_AUTHOR("Jarkko Nikula <jhnikula@gmail.com>");
Jarkko Nikula2e747962008-04-25 13:55:19 +0200599MODULE_DESCRIPTION("OMAP I2S SoC Interface");
600MODULE_LICENSE("GPL");