2 * omap-mcbsp.c -- OMAP ALSA SoC DAI driver using McBSP port
4 * Copyright (C) 2008 Nokia Corporation
6 * Contact: Jarkko Nikula <jhnikula@gmail.com>
7 * Peter Ujfalusi <peter.ujfalusi@nokia.com>
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.
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.
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
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>
35 #include <plat/mcbsp.h>
36 #include "omap-mcbsp.h"
39 #define OMAP_MCBSP_RATES (SNDRV_PCM_RATE_8000_96000)
41 #define OMAP_MCBSP_SOC_SINGLE_S16_EXT(xname, xmin, xmax, \
42 xhandler_get, xhandler_put) \
43 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, \
44 .info = omap_mcbsp_st_info_volsw, \
45 .get = xhandler_get, .put = xhandler_put, \
46 .private_value = (unsigned long) &(struct soc_mixer_control) \
47 {.min = xmin, .max = xmax} }
49 struct omap_mcbsp_data
{
51 struct omap_mcbsp_reg_cfg regs
;
54 * Flags indicating is the bus already activated and configured by
64 static struct omap_mcbsp_data mcbsp_data
[NUM_LINKS
];
67 * Stream DMA parameters. DMA request line and port address are set runtime
68 * since they are different between OMAP1 and later OMAPs
70 static struct omap_pcm_dma_data omap_mcbsp_dai_dma_params
[NUM_LINKS
][2];
72 #if defined(CONFIG_ARCH_OMAP15XX) || defined(CONFIG_ARCH_OMAP16XX)
73 static const int omap1_dma_reqs
[][2] = {
74 { OMAP_DMA_MCBSP1_TX
, OMAP_DMA_MCBSP1_RX
},
75 { OMAP_DMA_MCBSP2_TX
, OMAP_DMA_MCBSP2_RX
},
76 { OMAP_DMA_MCBSP3_TX
, OMAP_DMA_MCBSP3_RX
},
78 static const unsigned long omap1_mcbsp_port
[][2] = {
79 { OMAP1510_MCBSP1_BASE
+ OMAP_MCBSP_REG_DXR1
,
80 OMAP1510_MCBSP1_BASE
+ OMAP_MCBSP_REG_DRR1
},
81 { OMAP1510_MCBSP2_BASE
+ OMAP_MCBSP_REG_DXR1
,
82 OMAP1510_MCBSP2_BASE
+ OMAP_MCBSP_REG_DRR1
},
83 { OMAP1510_MCBSP3_BASE
+ OMAP_MCBSP_REG_DXR1
,
84 OMAP1510_MCBSP3_BASE
+ OMAP_MCBSP_REG_DRR1
},
87 static const int omap1_dma_reqs
[][2] = {};
88 static const unsigned long omap1_mcbsp_port
[][2] = {};
91 #if defined(CONFIG_ARCH_OMAP2) || defined(CONFIG_ARCH_OMAP3)
92 static const int omap24xx_dma_reqs
[][2] = {
93 { OMAP24XX_DMA_MCBSP1_TX
, OMAP24XX_DMA_MCBSP1_RX
},
94 { OMAP24XX_DMA_MCBSP2_TX
, OMAP24XX_DMA_MCBSP2_RX
},
95 #if defined(CONFIG_ARCH_OMAP2430) || defined(CONFIG_ARCH_OMAP3)
96 { OMAP24XX_DMA_MCBSP3_TX
, OMAP24XX_DMA_MCBSP3_RX
},
97 { OMAP24XX_DMA_MCBSP4_TX
, OMAP24XX_DMA_MCBSP4_RX
},
98 { OMAP24XX_DMA_MCBSP5_TX
, OMAP24XX_DMA_MCBSP5_RX
},
102 static const int omap24xx_dma_reqs
[][2] = {};
105 #if defined(CONFIG_ARCH_OMAP4)
106 static const int omap44xx_dma_reqs
[][2] = {
107 { OMAP44XX_DMA_MCBSP1_TX
, OMAP44XX_DMA_MCBSP1_RX
},
108 { OMAP44XX_DMA_MCBSP2_TX
, OMAP44XX_DMA_MCBSP2_RX
},
109 { OMAP44XX_DMA_MCBSP3_TX
, OMAP44XX_DMA_MCBSP3_RX
},
110 { OMAP44XX_DMA_MCBSP4_TX
, OMAP44XX_DMA_MCBSP4_RX
},
113 static const int omap44xx_dma_reqs
[][2] = {};
116 #if defined(CONFIG_ARCH_OMAP2420)
117 static const unsigned long omap2420_mcbsp_port
[][2] = {
118 { OMAP24XX_MCBSP1_BASE
+ OMAP_MCBSP_REG_DXR1
,
119 OMAP24XX_MCBSP1_BASE
+ OMAP_MCBSP_REG_DRR1
},
120 { OMAP24XX_MCBSP2_BASE
+ OMAP_MCBSP_REG_DXR1
,
121 OMAP24XX_MCBSP2_BASE
+ OMAP_MCBSP_REG_DRR1
},
124 static const unsigned long omap2420_mcbsp_port
[][2] = {};
127 #if defined(CONFIG_ARCH_OMAP2430)
128 static const unsigned long omap2430_mcbsp_port
[][2] = {
129 { OMAP24XX_MCBSP1_BASE
+ OMAP_MCBSP_REG_DXR
,
130 OMAP24XX_MCBSP1_BASE
+ OMAP_MCBSP_REG_DRR
},
131 { OMAP24XX_MCBSP2_BASE
+ OMAP_MCBSP_REG_DXR
,
132 OMAP24XX_MCBSP2_BASE
+ OMAP_MCBSP_REG_DRR
},
133 { OMAP2430_MCBSP3_BASE
+ OMAP_MCBSP_REG_DXR
,
134 OMAP2430_MCBSP3_BASE
+ OMAP_MCBSP_REG_DRR
},
135 { OMAP2430_MCBSP4_BASE
+ OMAP_MCBSP_REG_DXR
,
136 OMAP2430_MCBSP4_BASE
+ OMAP_MCBSP_REG_DRR
},
137 { OMAP2430_MCBSP5_BASE
+ OMAP_MCBSP_REG_DXR
,
138 OMAP2430_MCBSP5_BASE
+ OMAP_MCBSP_REG_DRR
},
141 static const unsigned long omap2430_mcbsp_port
[][2] = {};
144 #if defined(CONFIG_ARCH_OMAP3)
145 static const unsigned long omap34xx_mcbsp_port
[][2] = {
146 { OMAP34XX_MCBSP1_BASE
+ OMAP_MCBSP_REG_DXR
,
147 OMAP34XX_MCBSP1_BASE
+ OMAP_MCBSP_REG_DRR
},
148 { OMAP34XX_MCBSP2_BASE
+ OMAP_MCBSP_REG_DXR
,
149 OMAP34XX_MCBSP2_BASE
+ OMAP_MCBSP_REG_DRR
},
150 { OMAP34XX_MCBSP3_BASE
+ OMAP_MCBSP_REG_DXR
,
151 OMAP34XX_MCBSP3_BASE
+ OMAP_MCBSP_REG_DRR
},
152 { OMAP34XX_MCBSP4_BASE
+ OMAP_MCBSP_REG_DXR
,
153 OMAP34XX_MCBSP4_BASE
+ OMAP_MCBSP_REG_DRR
},
154 { OMAP34XX_MCBSP5_BASE
+ OMAP_MCBSP_REG_DXR
,
155 OMAP34XX_MCBSP5_BASE
+ OMAP_MCBSP_REG_DRR
},
158 static const unsigned long omap34xx_mcbsp_port
[][2] = {};
161 #if defined(CONFIG_ARCH_OMAP4)
162 static const unsigned long omap44xx_mcbsp_port
[][2] = {
163 { OMAP44XX_MCBSP1_BASE
+ OMAP_MCBSP_REG_DXR
,
164 OMAP44XX_MCBSP1_BASE
+ OMAP_MCBSP_REG_DRR
},
165 { OMAP44XX_MCBSP2_BASE
+ OMAP_MCBSP_REG_DXR
,
166 OMAP44XX_MCBSP2_BASE
+ OMAP_MCBSP_REG_DRR
},
167 { OMAP44XX_MCBSP3_BASE
+ OMAP_MCBSP_REG_DXR
,
168 OMAP44XX_MCBSP3_BASE
+ OMAP_MCBSP_REG_DRR
},
169 { OMAP44XX_MCBSP4_BASE
+ OMAP_MCBSP_REG_DXR
,
170 OMAP44XX_MCBSP4_BASE
+ OMAP_MCBSP_REG_DRR
},
173 static const unsigned long omap44xx_mcbsp_port
[][2] = {};
176 static void omap_mcbsp_set_threshold(struct snd_pcm_substream
*substream
)
178 struct snd_soc_pcm_runtime
*rtd
= substream
->private_data
;
179 struct snd_soc_dai
*cpu_dai
= rtd
->cpu_dai
;
180 struct omap_mcbsp_data
*mcbsp_data
= snd_soc_dai_get_drvdata(cpu_dai
);
181 struct omap_pcm_dma_data
*dma_data
;
182 int dma_op_mode
= omap_mcbsp_get_dma_op_mode(mcbsp_data
->bus_id
);
185 dma_data
= snd_soc_dai_get_dma_data(rtd
->cpu_dai
, substream
);
187 /* TODO: Currently, MODE_ELEMENT == MODE_FRAME */
188 if (dma_op_mode
== MCBSP_DMA_MODE_THRESHOLD
)
190 * Configure McBSP threshold based on either:
191 * packet_size, when the sDMA is in packet mode, or
192 * based on the period size.
194 if (dma_data
->packet_size
)
195 words
= dma_data
->packet_size
;
197 words
= snd_pcm_lib_period_bytes(substream
) /
198 (mcbsp_data
->wlen
/ 8);
202 /* Configure McBSP internal buffer usage */
203 if (substream
->stream
== SNDRV_PCM_STREAM_PLAYBACK
)
204 omap_mcbsp_set_tx_threshold(mcbsp_data
->bus_id
, words
);
206 omap_mcbsp_set_rx_threshold(mcbsp_data
->bus_id
, words
);
209 static int omap_mcbsp_hwrule_min_buffersize(struct snd_pcm_hw_params
*params
,
210 struct snd_pcm_hw_rule
*rule
)
212 struct snd_interval
*buffer_size
= hw_param_interval(params
,
213 SNDRV_PCM_HW_PARAM_BUFFER_SIZE
);
214 struct snd_interval
*channels
= hw_param_interval(params
,
215 SNDRV_PCM_HW_PARAM_CHANNELS
);
216 struct omap_mcbsp_data
*mcbsp_data
= rule
->private;
217 struct snd_interval frames
;
220 snd_interval_any(&frames
);
221 size
= omap_mcbsp_get_fifo_size(mcbsp_data
->bus_id
);
223 frames
.min
= size
/ channels
->min
;
225 return snd_interval_refine(buffer_size
, &frames
);
228 static int omap_mcbsp_dai_startup(struct snd_pcm_substream
*substream
,
229 struct snd_soc_dai
*cpu_dai
)
231 struct omap_mcbsp_data
*mcbsp_data
= snd_soc_dai_get_drvdata(cpu_dai
);
232 int bus_id
= mcbsp_data
->bus_id
;
235 if (!cpu_dai
->active
)
236 err
= omap_mcbsp_request(bus_id
);
239 * OMAP3 McBSP FIFO is word structured.
240 * McBSP2 has 1024 + 256 = 1280 word long buffer,
241 * McBSP1,3,4,5 has 128 word long buffer
242 * This means that the size of the FIFO depends on the sample format.
243 * For example on McBSP3:
244 * 16bit samples: size is 128 * 2 = 256 bytes
245 * 32bit samples: size is 128 * 4 = 512 bytes
246 * It is simpler to place constraint for buffer and period based on
248 * McBSP3 as example again (16 or 32 bit samples):
249 * 1 channel (mono): size is 128 frames (128 words)
250 * 2 channels (stereo): size is 128 / 2 = 64 frames (2 * 64 words)
251 * 4 channels: size is 128 / 4 = 32 frames (4 * 32 words)
253 if (cpu_is_omap343x() || cpu_is_omap44xx()) {
255 * Rule for the buffer size. We should not allow
256 * smaller buffer than the FIFO size to avoid underruns
258 snd_pcm_hw_rule_add(substream
->runtime
, 0,
259 SNDRV_PCM_HW_PARAM_CHANNELS
,
260 omap_mcbsp_hwrule_min_buffersize
,
262 SNDRV_PCM_HW_PARAM_BUFFER_SIZE
, -1);
264 /* Make sure, that the period size is always even */
265 snd_pcm_hw_constraint_step(substream
->runtime
, 0,
266 SNDRV_PCM_HW_PARAM_PERIOD_SIZE
, 2);
272 static void omap_mcbsp_dai_shutdown(struct snd_pcm_substream
*substream
,
273 struct snd_soc_dai
*cpu_dai
)
275 struct omap_mcbsp_data
*mcbsp_data
= snd_soc_dai_get_drvdata(cpu_dai
);
277 if (!cpu_dai
->active
) {
278 omap_mcbsp_free(mcbsp_data
->bus_id
);
279 mcbsp_data
->configured
= 0;
283 static int omap_mcbsp_dai_trigger(struct snd_pcm_substream
*substream
, int cmd
,
284 struct snd_soc_dai
*cpu_dai
)
286 struct omap_mcbsp_data
*mcbsp_data
= snd_soc_dai_get_drvdata(cpu_dai
);
287 int err
= 0, play
= (substream
->stream
== SNDRV_PCM_STREAM_PLAYBACK
);
290 case SNDRV_PCM_TRIGGER_START
:
291 case SNDRV_PCM_TRIGGER_RESUME
:
292 case SNDRV_PCM_TRIGGER_PAUSE_RELEASE
:
293 mcbsp_data
->active
++;
294 omap_mcbsp_start(mcbsp_data
->bus_id
, play
, !play
);
297 case SNDRV_PCM_TRIGGER_STOP
:
298 case SNDRV_PCM_TRIGGER_SUSPEND
:
299 case SNDRV_PCM_TRIGGER_PAUSE_PUSH
:
300 omap_mcbsp_stop(mcbsp_data
->bus_id
, play
, !play
);
301 mcbsp_data
->active
--;
310 static snd_pcm_sframes_t
omap_mcbsp_dai_delay(
311 struct snd_pcm_substream
*substream
,
312 struct snd_soc_dai
*dai
)
314 struct snd_soc_pcm_runtime
*rtd
= substream
->private_data
;
315 struct snd_soc_dai
*cpu_dai
= rtd
->cpu_dai
;
316 struct omap_mcbsp_data
*mcbsp_data
= snd_soc_dai_get_drvdata(cpu_dai
);
318 snd_pcm_sframes_t delay
;
320 if (substream
->stream
== SNDRV_PCM_STREAM_PLAYBACK
)
321 fifo_use
= omap_mcbsp_get_tx_delay(mcbsp_data
->bus_id
);
323 fifo_use
= omap_mcbsp_get_rx_delay(mcbsp_data
->bus_id
);
326 * Divide the used locations with the channel count to get the
327 * FIFO usage in samples (don't care about partial samples in the
330 delay
= fifo_use
/ substream
->runtime
->channels
;
335 static int omap_mcbsp_dai_hw_params(struct snd_pcm_substream
*substream
,
336 struct snd_pcm_hw_params
*params
,
337 struct snd_soc_dai
*cpu_dai
)
339 struct omap_mcbsp_data
*mcbsp_data
= snd_soc_dai_get_drvdata(cpu_dai
);
340 struct omap_mcbsp_reg_cfg
*regs
= &mcbsp_data
->regs
;
341 struct omap_pcm_dma_data
*dma_data
;
342 int dma
, bus_id
= mcbsp_data
->bus_id
;
343 int wlen
, channels
, wpf
, sync_mode
= OMAP_DMA_SYNC_ELEMENT
;
346 unsigned int format
, div
, framesize
, master
;
348 dma_data
= &omap_mcbsp_dai_dma_params
[cpu_dai
->id
][substream
->stream
];
349 if (cpu_class_is_omap1()) {
350 dma
= omap1_dma_reqs
[bus_id
][substream
->stream
];
351 port
= omap1_mcbsp_port
[bus_id
][substream
->stream
];
352 } else if (cpu_is_omap2420()) {
353 dma
= omap24xx_dma_reqs
[bus_id
][substream
->stream
];
354 port
= omap2420_mcbsp_port
[bus_id
][substream
->stream
];
355 } else if (cpu_is_omap2430()) {
356 dma
= omap24xx_dma_reqs
[bus_id
][substream
->stream
];
357 port
= omap2430_mcbsp_port
[bus_id
][substream
->stream
];
358 } else if (cpu_is_omap343x()) {
359 dma
= omap24xx_dma_reqs
[bus_id
][substream
->stream
];
360 port
= omap34xx_mcbsp_port
[bus_id
][substream
->stream
];
361 } else if (cpu_is_omap44xx()) {
362 dma
= omap44xx_dma_reqs
[bus_id
][substream
->stream
];
363 port
= omap44xx_mcbsp_port
[bus_id
][substream
->stream
];
367 switch (params_format(params
)) {
368 case SNDRV_PCM_FORMAT_S16_LE
:
369 dma_data
->data_type
= OMAP_DMA_DATA_TYPE_S16
;
372 case SNDRV_PCM_FORMAT_S32_LE
:
373 dma_data
->data_type
= OMAP_DMA_DATA_TYPE_S32
;
379 if (cpu_is_omap343x()) {
380 dma_data
->set_threshold
= omap_mcbsp_set_threshold
;
381 /* TODO: Currently, MODE_ELEMENT == MODE_FRAME */
382 if (omap_mcbsp_get_dma_op_mode(bus_id
) ==
383 MCBSP_DMA_MODE_THRESHOLD
) {
384 int period_words
, max_thrsh
;
386 period_words
= params_period_bytes(params
) / (wlen
/ 8);
387 if (substream
->stream
== SNDRV_PCM_STREAM_PLAYBACK
)
388 max_thrsh
= omap_mcbsp_get_max_tx_threshold(
391 max_thrsh
= omap_mcbsp_get_max_rx_threshold(
394 * If the period contains less or equal number of words,
395 * we are using the original threshold mode setup:
396 * McBSP threshold = sDMA frame size = period_size
397 * Otherwise we switch to sDMA packet mode:
398 * McBSP threshold = sDMA packet size
399 * sDMA frame size = period size
401 if (period_words
> max_thrsh
) {
405 * Look for the biggest threshold value, which
406 * divides the period size evenly.
408 divider
= period_words
/ max_thrsh
;
409 if (period_words
% max_thrsh
)
411 while (period_words
% divider
&&
412 divider
< period_words
)
414 if (divider
== period_words
)
417 pkt_size
= period_words
/ divider
;
418 sync_mode
= OMAP_DMA_SYNC_PACKET
;
420 sync_mode
= OMAP_DMA_SYNC_FRAME
;
425 dma_data
->name
= substream
->stream
? "Audio Capture" : "Audio Playback";
426 dma_data
->dma_req
= dma
;
427 dma_data
->port_addr
= port
;
428 dma_data
->sync_mode
= sync_mode
;
429 dma_data
->packet_size
= pkt_size
;
431 snd_soc_dai_set_dma_data(cpu_dai
, substream
, dma_data
);
433 if (mcbsp_data
->configured
) {
434 /* McBSP already configured by another stream */
438 format
= mcbsp_data
->fmt
& SND_SOC_DAIFMT_FORMAT_MASK
;
439 wpf
= channels
= params_channels(params
);
440 if (channels
== 2 && (format
== SND_SOC_DAIFMT_I2S
||
441 format
== SND_SOC_DAIFMT_LEFT_J
)) {
442 /* Use dual-phase frames */
443 regs
->rcr2
|= RPHASE
;
444 regs
->xcr2
|= XPHASE
;
445 /* Set 1 word per (McBSP) frame for phase1 and phase2 */
447 regs
->rcr2
|= RFRLEN2(wpf
- 1);
448 regs
->xcr2
|= XFRLEN2(wpf
- 1);
451 regs
->rcr1
|= RFRLEN1(wpf
- 1);
452 regs
->xcr1
|= XFRLEN1(wpf
- 1);
454 switch (params_format(params
)) {
455 case SNDRV_PCM_FORMAT_S16_LE
:
456 /* Set word lengths */
457 regs
->rcr2
|= RWDLEN2(OMAP_MCBSP_WORD_16
);
458 regs
->rcr1
|= RWDLEN1(OMAP_MCBSP_WORD_16
);
459 regs
->xcr2
|= XWDLEN2(OMAP_MCBSP_WORD_16
);
460 regs
->xcr1
|= XWDLEN1(OMAP_MCBSP_WORD_16
);
462 case SNDRV_PCM_FORMAT_S32_LE
:
463 /* Set word lengths */
464 regs
->rcr2
|= RWDLEN2(OMAP_MCBSP_WORD_32
);
465 regs
->rcr1
|= RWDLEN1(OMAP_MCBSP_WORD_32
);
466 regs
->xcr2
|= XWDLEN2(OMAP_MCBSP_WORD_32
);
467 regs
->xcr1
|= XWDLEN1(OMAP_MCBSP_WORD_32
);
470 /* Unsupported PCM format */
474 /* In McBSP master modes, FRAME (i.e. sample rate) is generated
475 * by _counting_ BCLKs. Calculate frame size in BCLKs */
476 master
= mcbsp_data
->fmt
& SND_SOC_DAIFMT_MASTER_MASK
;
477 if (master
== SND_SOC_DAIFMT_CBS_CFS
) {
478 div
= mcbsp_data
->clk_div
? mcbsp_data
->clk_div
: 1;
479 framesize
= (mcbsp_data
->in_freq
/ div
) / params_rate(params
);
481 if (framesize
< wlen
* channels
) {
482 printk(KERN_ERR
"%s: not enough bandwidth for desired rate and "
483 "channels\n", __func__
);
487 framesize
= wlen
* channels
;
489 /* Set FS period and length in terms of bit clock periods */
491 case SND_SOC_DAIFMT_I2S
:
492 case SND_SOC_DAIFMT_LEFT_J
:
493 regs
->srgr2
|= FPER(framesize
- 1);
494 regs
->srgr1
|= FWID((framesize
>> 1) - 1);
496 case SND_SOC_DAIFMT_DSP_A
:
497 case SND_SOC_DAIFMT_DSP_B
:
498 regs
->srgr2
|= FPER(framesize
- 1);
499 regs
->srgr1
|= FWID(0);
503 omap_mcbsp_config(bus_id
, &mcbsp_data
->regs
);
504 mcbsp_data
->wlen
= wlen
;
505 mcbsp_data
->configured
= 1;
511 * This must be called before _set_clkdiv and _set_sysclk since McBSP register
512 * cache is initialized here
514 static int omap_mcbsp_dai_set_dai_fmt(struct snd_soc_dai
*cpu_dai
,
517 struct omap_mcbsp_data
*mcbsp_data
= snd_soc_dai_get_drvdata(cpu_dai
);
518 struct omap_mcbsp_reg_cfg
*regs
= &mcbsp_data
->regs
;
519 unsigned int temp_fmt
= fmt
;
521 if (mcbsp_data
->configured
)
524 mcbsp_data
->fmt
= fmt
;
525 memset(regs
, 0, sizeof(*regs
));
526 /* Generic McBSP register settings */
527 regs
->spcr2
|= XINTM(3) | FREE
;
528 regs
->spcr1
|= RINTM(3);
529 /* RFIG and XFIG are not defined in 34xx */
530 if (!cpu_is_omap34xx() && !cpu_is_omap44xx()) {
534 if (cpu_is_omap2430() || cpu_is_omap34xx() || cpu_is_omap44xx()) {
535 regs
->xccr
= DXENDLY(1) | XDMAEN
| XDISABLE
;
536 regs
->rccr
= RFULL_CYCLE
| RDMAEN
| RDISABLE
;
539 switch (fmt
& SND_SOC_DAIFMT_FORMAT_MASK
) {
540 case SND_SOC_DAIFMT_I2S
:
541 /* 1-bit data delay */
542 regs
->rcr2
|= RDATDLY(1);
543 regs
->xcr2
|= XDATDLY(1);
545 case SND_SOC_DAIFMT_LEFT_J
:
546 /* 0-bit data delay */
547 regs
->rcr2
|= RDATDLY(0);
548 regs
->xcr2
|= XDATDLY(0);
549 regs
->spcr1
|= RJUST(2);
550 /* Invert FS polarity configuration */
551 temp_fmt
^= SND_SOC_DAIFMT_NB_IF
;
553 case SND_SOC_DAIFMT_DSP_A
:
554 /* 1-bit data delay */
555 regs
->rcr2
|= RDATDLY(1);
556 regs
->xcr2
|= XDATDLY(1);
557 /* Invert FS polarity configuration */
558 temp_fmt
^= SND_SOC_DAIFMT_NB_IF
;
560 case SND_SOC_DAIFMT_DSP_B
:
561 /* 0-bit data delay */
562 regs
->rcr2
|= RDATDLY(0);
563 regs
->xcr2
|= XDATDLY(0);
564 /* Invert FS polarity configuration */
565 temp_fmt
^= SND_SOC_DAIFMT_NB_IF
;
568 /* Unsupported data format */
572 switch (fmt
& SND_SOC_DAIFMT_MASTER_MASK
) {
573 case SND_SOC_DAIFMT_CBS_CFS
:
574 /* McBSP master. Set FS and bit clocks as outputs */
575 regs
->pcr0
|= FSXM
| FSRM
|
577 /* Sample rate generator drives the FS */
580 case SND_SOC_DAIFMT_CBM_CFM
:
584 /* Unsupported master/slave configuration */
588 /* Set bit clock (CLKX/CLKR) and FS polarities */
589 switch (temp_fmt
& SND_SOC_DAIFMT_INV_MASK
) {
590 case SND_SOC_DAIFMT_NB_NF
:
593 * FS active low. TX data driven on falling edge of bit clock
594 * and RX data sampled on rising edge of bit clock.
596 regs
->pcr0
|= FSXP
| FSRP
|
599 case SND_SOC_DAIFMT_NB_IF
:
600 regs
->pcr0
|= CLKXP
| CLKRP
;
602 case SND_SOC_DAIFMT_IB_NF
:
603 regs
->pcr0
|= FSXP
| FSRP
;
605 case SND_SOC_DAIFMT_IB_IF
:
614 static int omap_mcbsp_dai_set_clkdiv(struct snd_soc_dai
*cpu_dai
,
617 struct omap_mcbsp_data
*mcbsp_data
= snd_soc_dai_get_drvdata(cpu_dai
);
618 struct omap_mcbsp_reg_cfg
*regs
= &mcbsp_data
->regs
;
620 if (div_id
!= OMAP_MCBSP_CLKGDV
)
623 mcbsp_data
->clk_div
= div
;
624 regs
->srgr1
|= CLKGDV(div
- 1);
629 static int omap_mcbsp_dai_set_dai_sysclk(struct snd_soc_dai
*cpu_dai
,
630 int clk_id
, unsigned int freq
,
633 struct omap_mcbsp_data
*mcbsp_data
= snd_soc_dai_get_drvdata(cpu_dai
);
634 struct omap_mcbsp_reg_cfg
*regs
= &mcbsp_data
->regs
;
637 /* The McBSP signal muxing functions are only available on McBSP1 */
638 if (clk_id
== OMAP_MCBSP_CLKR_SRC_CLKR
||
639 clk_id
== OMAP_MCBSP_CLKR_SRC_CLKX
||
640 clk_id
== OMAP_MCBSP_FSR_SRC_FSR
||
641 clk_id
== OMAP_MCBSP_FSR_SRC_FSX
)
642 if (cpu_class_is_omap1() || mcbsp_data
->bus_id
!= 0)
645 mcbsp_data
->in_freq
= freq
;
648 case OMAP_MCBSP_SYSCLK_CLK
:
649 regs
->srgr2
|= CLKSM
;
651 case OMAP_MCBSP_SYSCLK_CLKS_FCLK
:
652 if (cpu_class_is_omap1()) {
656 err
= omap2_mcbsp_set_clks_src(mcbsp_data
->bus_id
,
657 MCBSP_CLKS_PRCM_SRC
);
659 case OMAP_MCBSP_SYSCLK_CLKS_EXT
:
660 if (cpu_class_is_omap1()) {
664 err
= omap2_mcbsp_set_clks_src(mcbsp_data
->bus_id
,
668 case OMAP_MCBSP_SYSCLK_CLKX_EXT
:
669 regs
->srgr2
|= CLKSM
;
670 case OMAP_MCBSP_SYSCLK_CLKR_EXT
:
671 regs
->pcr0
|= SCLKME
;
675 case OMAP_MCBSP_CLKR_SRC_CLKR
:
676 if (cpu_class_is_omap1())
678 omap2_mcbsp1_mux_clkr_src(CLKR_SRC_CLKR
);
680 case OMAP_MCBSP_CLKR_SRC_CLKX
:
681 if (cpu_class_is_omap1())
683 omap2_mcbsp1_mux_clkr_src(CLKR_SRC_CLKX
);
685 case OMAP_MCBSP_FSR_SRC_FSR
:
686 if (cpu_class_is_omap1())
688 omap2_mcbsp1_mux_fsr_src(FSR_SRC_FSR
);
690 case OMAP_MCBSP_FSR_SRC_FSX
:
691 if (cpu_class_is_omap1())
693 omap2_mcbsp1_mux_fsr_src(FSR_SRC_FSX
);
702 static struct snd_soc_dai_ops mcbsp_dai_ops
= {
703 .startup
= omap_mcbsp_dai_startup
,
704 .shutdown
= omap_mcbsp_dai_shutdown
,
705 .trigger
= omap_mcbsp_dai_trigger
,
706 .delay
= omap_mcbsp_dai_delay
,
707 .hw_params
= omap_mcbsp_dai_hw_params
,
708 .set_fmt
= omap_mcbsp_dai_set_dai_fmt
,
709 .set_clkdiv
= omap_mcbsp_dai_set_clkdiv
,
710 .set_sysclk
= omap_mcbsp_dai_set_dai_sysclk
,
713 static int mcbsp_dai_probe(struct snd_soc_dai
*dai
)
715 mcbsp_data
[dai
->id
].bus_id
= dai
->id
;
716 snd_soc_dai_set_drvdata(dai
, &mcbsp_data
[dai
->id
].bus_id
);
720 static struct snd_soc_dai_driver omap_mcbsp_dai
=
722 .probe
= mcbsp_dai_probe
,
726 .rates
= OMAP_MCBSP_RATES
,
727 .formats
= SNDRV_PCM_FMTBIT_S16_LE
| SNDRV_PCM_FMTBIT_S32_LE
,
732 .rates
= OMAP_MCBSP_RATES
,
733 .formats
= SNDRV_PCM_FMTBIT_S16_LE
| SNDRV_PCM_FMTBIT_S32_LE
,
735 .ops
= &mcbsp_dai_ops
,
738 static int omap_mcbsp_st_info_volsw(struct snd_kcontrol
*kcontrol
,
739 struct snd_ctl_elem_info
*uinfo
)
741 struct soc_mixer_control
*mc
=
742 (struct soc_mixer_control
*)kcontrol
->private_value
;
746 uinfo
->type
= SNDRV_CTL_ELEM_TYPE_INTEGER
;
748 uinfo
->value
.integer
.min
= min
;
749 uinfo
->value
.integer
.max
= max
;
753 #define OMAP_MCBSP_ST_SET_CHANNEL_VOLUME(id, channel) \
755 omap_mcbsp##id##_set_st_ch##channel##_volume(struct snd_kcontrol *kc, \
756 struct snd_ctl_elem_value *uc) \
758 struct soc_mixer_control *mc = \
759 (struct soc_mixer_control *)kc->private_value; \
762 int val = uc->value.integer.value[0]; \
764 if (val < min || val > max) \
767 /* OMAP McBSP implementation uses index values 0..4 */ \
768 return omap_st_set_chgain((id)-1, channel, val); \
771 #define OMAP_MCBSP_ST_GET_CHANNEL_VOLUME(id, channel) \
773 omap_mcbsp##id##_get_st_ch##channel##_volume(struct snd_kcontrol *kc, \
774 struct snd_ctl_elem_value *uc) \
778 if (omap_st_get_chgain((id)-1, channel, &chgain)) \
781 uc->value.integer.value[0] = chgain; \
785 OMAP_MCBSP_ST_SET_CHANNEL_VOLUME(2, 0)
786 OMAP_MCBSP_ST_SET_CHANNEL_VOLUME(2, 1)
787 OMAP_MCBSP_ST_SET_CHANNEL_VOLUME(3, 0)
788 OMAP_MCBSP_ST_SET_CHANNEL_VOLUME(3, 1)
789 OMAP_MCBSP_ST_GET_CHANNEL_VOLUME(2, 0)
790 OMAP_MCBSP_ST_GET_CHANNEL_VOLUME(2, 1)
791 OMAP_MCBSP_ST_GET_CHANNEL_VOLUME(3, 0)
792 OMAP_MCBSP_ST_GET_CHANNEL_VOLUME(3, 1)
794 static int omap_mcbsp_st_put_mode(struct snd_kcontrol
*kcontrol
,
795 struct snd_ctl_elem_value
*ucontrol
)
797 struct soc_mixer_control
*mc
=
798 (struct soc_mixer_control
*)kcontrol
->private_value
;
799 u8 value
= ucontrol
->value
.integer
.value
[0];
801 if (value
== omap_st_is_enabled(mc
->reg
))
805 omap_st_enable(mc
->reg
);
807 omap_st_disable(mc
->reg
);
812 static int omap_mcbsp_st_get_mode(struct snd_kcontrol
*kcontrol
,
813 struct snd_ctl_elem_value
*ucontrol
)
815 struct soc_mixer_control
*mc
=
816 (struct soc_mixer_control
*)kcontrol
->private_value
;
818 ucontrol
->value
.integer
.value
[0] = omap_st_is_enabled(mc
->reg
);
822 static const struct snd_kcontrol_new omap_mcbsp2_st_controls
[] = {
823 SOC_SINGLE_EXT("McBSP2 Sidetone Switch", 1, 0, 1, 0,
824 omap_mcbsp_st_get_mode
, omap_mcbsp_st_put_mode
),
825 OMAP_MCBSP_SOC_SINGLE_S16_EXT("McBSP2 Sidetone Channel 0 Volume",
827 omap_mcbsp2_get_st_ch0_volume
,
828 omap_mcbsp2_set_st_ch0_volume
),
829 OMAP_MCBSP_SOC_SINGLE_S16_EXT("McBSP2 Sidetone Channel 1 Volume",
831 omap_mcbsp2_get_st_ch1_volume
,
832 omap_mcbsp2_set_st_ch1_volume
),
835 static const struct snd_kcontrol_new omap_mcbsp3_st_controls
[] = {
836 SOC_SINGLE_EXT("McBSP3 Sidetone Switch", 2, 0, 1, 0,
837 omap_mcbsp_st_get_mode
, omap_mcbsp_st_put_mode
),
838 OMAP_MCBSP_SOC_SINGLE_S16_EXT("McBSP3 Sidetone Channel 0 Volume",
840 omap_mcbsp3_get_st_ch0_volume
,
841 omap_mcbsp3_set_st_ch0_volume
),
842 OMAP_MCBSP_SOC_SINGLE_S16_EXT("McBSP3 Sidetone Channel 1 Volume",
844 omap_mcbsp3_get_st_ch1_volume
,
845 omap_mcbsp3_set_st_ch1_volume
),
848 int omap_mcbsp_st_add_controls(struct snd_soc_codec
*codec
, int mcbsp_id
)
850 if (!cpu_is_omap34xx())
854 case 1: /* McBSP 2 */
855 return snd_soc_add_controls(codec
, omap_mcbsp2_st_controls
,
856 ARRAY_SIZE(omap_mcbsp2_st_controls
));
857 case 2: /* McBSP 3 */
858 return snd_soc_add_controls(codec
, omap_mcbsp3_st_controls
,
859 ARRAY_SIZE(omap_mcbsp3_st_controls
));
866 EXPORT_SYMBOL_GPL(omap_mcbsp_st_add_controls
);
868 static __devinit
int asoc_mcbsp_probe(struct platform_device
*pdev
)
870 return snd_soc_register_dai(&pdev
->dev
, &omap_mcbsp_dai
);
873 static int __devexit
asoc_mcbsp_remove(struct platform_device
*pdev
)
875 snd_soc_unregister_dai(&pdev
->dev
);
879 static struct platform_driver asoc_mcbsp_driver
= {
881 .name
= "omap-mcbsp-dai",
882 .owner
= THIS_MODULE
,
885 .probe
= asoc_mcbsp_probe
,
886 .remove
= __devexit_p(asoc_mcbsp_remove
),
889 static int __init
snd_omap_mcbsp_init(void)
891 return platform_driver_register(&asoc_mcbsp_driver
);
893 module_init(snd_omap_mcbsp_init
);
895 static void __exit
snd_omap_mcbsp_exit(void)
897 platform_driver_unregister(&asoc_mcbsp_driver
);
899 module_exit(snd_omap_mcbsp_exit
);
901 MODULE_AUTHOR("Jarkko Nikula <jhnikula@gmail.com>");
902 MODULE_DESCRIPTION("OMAP I2S SoC Interface");
903 MODULE_LICENSE("GPL");