2 * omap-mcbsp.c -- OMAP ALSA SoC DAI driver using McBSP port
4 * Copyright (C) 2008 Nokia Corporation
6 * Contact: Jarkko Nikula <jarkko.nikula@nokia.com>
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License
10 * version 2 as published by the Free Software Foundation.
12 * This program is distributed in the hope that it will be useful, but
13 * WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
24 #include <linux/init.h>
25 #include <linux/module.h>
26 #include <linux/device.h>
27 #include <sound/core.h>
28 #include <sound/pcm.h>
29 #include <sound/pcm_params.h>
30 #include <sound/initval.h>
31 #include <sound/soc.h>
33 #include <mach/control.h>
35 #include <mach/mcbsp.h>
36 #include "omap-mcbsp.h"
39 #define OMAP_MCBSP_RATES (SNDRV_PCM_RATE_44100 | \
40 SNDRV_PCM_RATE_48000 | \
43 struct omap_mcbsp_data
{
45 struct omap_mcbsp_reg_cfg regs
;
47 * Flags indicating is the bus already activated and configured by
54 #define to_mcbsp(priv) container_of((priv), struct omap_mcbsp_data, bus_id)
56 static struct omap_mcbsp_data mcbsp_data
[NUM_LINKS
];
59 * Stream DMA parameters. DMA request line and port address are set runtime
60 * since they are different between OMAP1 and later OMAPs
62 static struct omap_pcm_dma_data omap_mcbsp_dai_dma_params
[NUM_LINKS
][2];
64 #if defined(CONFIG_ARCH_OMAP15XX) || defined(CONFIG_ARCH_OMAP16XX)
65 static 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
},
70 static 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
},
79 static const int omap1_dma_reqs
[][2] = {};
80 static const unsigned long omap1_mcbsp_port
[][2] = {};
83 #if defined(CONFIG_ARCH_OMAP24XX) || defined(CONFIG_ARCH_OMAP34XX)
84 static const int omap24xx_dma_reqs
[][2] = {
85 { OMAP24XX_DMA_MCBSP1_TX
, OMAP24XX_DMA_MCBSP1_RX
},
86 { OMAP24XX_DMA_MCBSP2_TX
, OMAP24XX_DMA_MCBSP2_RX
},
87 #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
},
94 static const int omap24xx_dma_reqs
[][2] = {};
97 #if defined(CONFIG_ARCH_OMAP2420)
98 static 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
},
105 static const unsigned long omap2420_mcbsp_port
[][2] = {};
108 #if defined(CONFIG_ARCH_OMAP2430)
109 static 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
},
122 static const unsigned long omap2430_mcbsp_port
[][2] = {};
125 #if defined(CONFIG_ARCH_OMAP34XX)
126 static 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
},
139 static const unsigned long omap34xx_mcbsp_port
[][2] = {};
142 static int omap_mcbsp_dai_startup(struct snd_pcm_substream
*substream
)
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
);
149 if (!cpu_dai
->active
)
150 err
= omap_mcbsp_request(mcbsp_data
->bus_id
);
155 static void omap_mcbsp_dai_shutdown(struct snd_pcm_substream
*substream
)
157 struct snd_soc_pcm_runtime
*rtd
= substream
->private_data
;
158 struct snd_soc_dai
*cpu_dai
= rtd
->dai
->cpu_dai
;
159 struct omap_mcbsp_data
*mcbsp_data
= to_mcbsp(cpu_dai
->private_data
);
161 if (!cpu_dai
->active
) {
162 omap_mcbsp_free(mcbsp_data
->bus_id
);
163 mcbsp_data
->configured
= 0;
167 static int omap_mcbsp_dai_trigger(struct snd_pcm_substream
*substream
, int cmd
)
169 struct snd_soc_pcm_runtime
*rtd
= substream
->private_data
;
170 struct snd_soc_dai
*cpu_dai
= rtd
->dai
->cpu_dai
;
171 struct omap_mcbsp_data
*mcbsp_data
= to_mcbsp(cpu_dai
->private_data
);
175 case SNDRV_PCM_TRIGGER_START
:
176 case SNDRV_PCM_TRIGGER_RESUME
:
177 case SNDRV_PCM_TRIGGER_PAUSE_RELEASE
:
178 if (!mcbsp_data
->active
++)
179 omap_mcbsp_start(mcbsp_data
->bus_id
);
182 case SNDRV_PCM_TRIGGER_STOP
:
183 case SNDRV_PCM_TRIGGER_SUSPEND
:
184 case SNDRV_PCM_TRIGGER_PAUSE_PUSH
:
185 if (!--mcbsp_data
->active
)
186 omap_mcbsp_stop(mcbsp_data
->bus_id
);
195 static int omap_mcbsp_dai_hw_params(struct snd_pcm_substream
*substream
,
196 struct snd_pcm_hw_params
*params
)
198 struct snd_soc_pcm_runtime
*rtd
= substream
->private_data
;
199 struct snd_soc_dai
*cpu_dai
= rtd
->dai
->cpu_dai
;
200 struct omap_mcbsp_data
*mcbsp_data
= to_mcbsp(cpu_dai
->private_data
);
201 struct omap_mcbsp_reg_cfg
*regs
= &mcbsp_data
->regs
;
202 int dma
, bus_id
= mcbsp_data
->bus_id
, id
= cpu_dai
->id
;
205 if (cpu_class_is_omap1()) {
206 dma
= omap1_dma_reqs
[bus_id
][substream
->stream
];
207 port
= omap1_mcbsp_port
[bus_id
][substream
->stream
];
208 } else if (cpu_is_omap2420()) {
209 dma
= omap24xx_dma_reqs
[bus_id
][substream
->stream
];
210 port
= omap2420_mcbsp_port
[bus_id
][substream
->stream
];
211 } else if (cpu_is_omap2430()) {
212 dma
= omap24xx_dma_reqs
[bus_id
][substream
->stream
];
213 port
= omap2430_mcbsp_port
[bus_id
][substream
->stream
];
214 } else if (cpu_is_omap343x()) {
215 dma
= omap24xx_dma_reqs
[bus_id
][substream
->stream
];
216 port
= omap34xx_mcbsp_port
[bus_id
][substream
->stream
];
220 omap_mcbsp_dai_dma_params
[id
][substream
->stream
].name
=
221 substream
->stream
? "Audio Capture" : "Audio Playback";
222 omap_mcbsp_dai_dma_params
[id
][substream
->stream
].dma_req
= dma
;
223 omap_mcbsp_dai_dma_params
[id
][substream
->stream
].port_addr
= port
;
224 cpu_dai
->dma_data
= &omap_mcbsp_dai_dma_params
[id
][substream
->stream
];
226 if (mcbsp_data
->configured
) {
227 /* McBSP already configured by another stream */
231 switch (params_channels(params
)) {
233 /* Set 1 word per (McBPSP) frame and use dual-phase frames */
234 regs
->rcr2
|= RFRLEN2(1 - 1) | RPHASE
;
235 regs
->rcr1
|= RFRLEN1(1 - 1);
236 regs
->xcr2
|= XFRLEN2(1 - 1) | XPHASE
;
237 regs
->xcr1
|= XFRLEN1(1 - 1);
240 /* Unsupported number of channels */
244 switch (params_format(params
)) {
245 case SNDRV_PCM_FORMAT_S16_LE
:
246 /* Set word lengths */
247 regs
->rcr2
|= RWDLEN2(OMAP_MCBSP_WORD_16
);
248 regs
->rcr1
|= RWDLEN1(OMAP_MCBSP_WORD_16
);
249 regs
->xcr2
|= XWDLEN2(OMAP_MCBSP_WORD_16
);
250 regs
->xcr1
|= XWDLEN1(OMAP_MCBSP_WORD_16
);
251 /* Set FS period and length in terms of bit clock periods */
252 regs
->srgr2
|= FPER(16 * 2 - 1);
253 regs
->srgr1
|= FWID(16 - 1);
256 /* Unsupported PCM format */
260 omap_mcbsp_config(bus_id
, &mcbsp_data
->regs
);
261 mcbsp_data
->configured
= 1;
267 * This must be called before _set_clkdiv and _set_sysclk since McBSP register
268 * cache is initialized here
270 static int omap_mcbsp_dai_set_dai_fmt(struct snd_soc_dai
*cpu_dai
,
273 struct omap_mcbsp_data
*mcbsp_data
= to_mcbsp(cpu_dai
->private_data
);
274 struct omap_mcbsp_reg_cfg
*regs
= &mcbsp_data
->regs
;
276 if (mcbsp_data
->configured
)
279 memset(regs
, 0, sizeof(*regs
));
280 /* Generic McBSP register settings */
281 regs
->spcr2
|= XINTM(3) | FREE
;
282 regs
->spcr1
|= RINTM(3);
286 switch (fmt
& SND_SOC_DAIFMT_FORMAT_MASK
) {
287 case SND_SOC_DAIFMT_I2S
:
288 /* 1-bit data delay */
289 regs
->rcr2
|= RDATDLY(1);
290 regs
->xcr2
|= XDATDLY(1);
292 case SND_SOC_DAIFMT_DSP_A
:
293 /* 0-bit data delay */
294 regs
->rcr2
|= RDATDLY(0);
295 regs
->xcr2
|= XDATDLY(0);
298 /* Unsupported data format */
302 switch (fmt
& SND_SOC_DAIFMT_MASTER_MASK
) {
303 case SND_SOC_DAIFMT_CBS_CFS
:
304 /* McBSP master. Set FS and bit clocks as outputs */
305 regs
->pcr0
|= FSXM
| FSRM
|
307 /* Sample rate generator drives the FS */
310 case SND_SOC_DAIFMT_CBM_CFM
:
314 /* Unsupported master/slave configuration */
318 /* Set bit clock (CLKX/CLKR) and FS polarities */
319 switch (fmt
& SND_SOC_DAIFMT_INV_MASK
) {
320 case SND_SOC_DAIFMT_NB_NF
:
323 * FS active low. TX data driven on falling edge of bit clock
324 * and RX data sampled on rising edge of bit clock.
326 regs
->pcr0
|= FSXP
| FSRP
|
329 case SND_SOC_DAIFMT_NB_IF
:
330 regs
->pcr0
|= CLKXP
| CLKRP
;
332 case SND_SOC_DAIFMT_IB_NF
:
333 regs
->pcr0
|= FSXP
| FSRP
;
335 case SND_SOC_DAIFMT_IB_IF
:
344 static int omap_mcbsp_dai_set_clkdiv(struct snd_soc_dai
*cpu_dai
,
347 struct omap_mcbsp_data
*mcbsp_data
= to_mcbsp(cpu_dai
->private_data
);
348 struct omap_mcbsp_reg_cfg
*regs
= &mcbsp_data
->regs
;
350 if (div_id
!= OMAP_MCBSP_CLKGDV
)
353 regs
->srgr1
|= CLKGDV(div
- 1);
358 static int omap_mcbsp_dai_set_clks_src(struct omap_mcbsp_data
*mcbsp_data
,
362 u16 reg
, reg_devconf1
= OMAP243X_CONTROL_DEVCONF1
;
364 if (cpu_class_is_omap1()) {
365 /* OMAP1's can use only external source clock */
366 if (unlikely(clk_id
== OMAP_MCBSP_SYSCLK_CLKS_FCLK
))
372 if (cpu_is_omap2420() && mcbsp_data
->bus_id
> 1)
375 if (cpu_is_omap343x())
376 reg_devconf1
= OMAP343X_CONTROL_DEVCONF1
;
378 switch (mcbsp_data
->bus_id
) {
380 reg
= OMAP2_CONTROL_DEVCONF0
;
384 reg
= OMAP2_CONTROL_DEVCONF0
;
403 if (clk_id
== OMAP_MCBSP_SYSCLK_CLKS_FCLK
)
404 omap_ctrl_writel(omap_ctrl_readl(reg
) & ~(1 << sel_bit
), reg
);
406 omap_ctrl_writel(omap_ctrl_readl(reg
) | (1 << sel_bit
), reg
);
411 static int omap_mcbsp_dai_set_dai_sysclk(struct snd_soc_dai
*cpu_dai
,
412 int clk_id
, unsigned int freq
,
415 struct omap_mcbsp_data
*mcbsp_data
= to_mcbsp(cpu_dai
->private_data
);
416 struct omap_mcbsp_reg_cfg
*regs
= &mcbsp_data
->regs
;
420 case OMAP_MCBSP_SYSCLK_CLK
:
421 regs
->srgr2
|= CLKSM
;
423 case OMAP_MCBSP_SYSCLK_CLKS_FCLK
:
424 case OMAP_MCBSP_SYSCLK_CLKS_EXT
:
425 err
= omap_mcbsp_dai_set_clks_src(mcbsp_data
, clk_id
);
428 case OMAP_MCBSP_SYSCLK_CLKX_EXT
:
429 regs
->srgr2
|= CLKSM
;
430 case OMAP_MCBSP_SYSCLK_CLKR_EXT
:
431 regs
->pcr0
|= SCLKME
;
440 #define OMAP_MCBSP_DAI_BUILDER(link_id) \
442 .name = "omap-mcbsp-dai-(link_id)", \
444 .type = SND_SOC_DAI_I2S, \
448 .rates = OMAP_MCBSP_RATES, \
449 .formats = SNDRV_PCM_FMTBIT_S16_LE, \
454 .rates = OMAP_MCBSP_RATES, \
455 .formats = SNDRV_PCM_FMTBIT_S16_LE, \
458 .startup = omap_mcbsp_dai_startup, \
459 .shutdown = omap_mcbsp_dai_shutdown, \
460 .trigger = omap_mcbsp_dai_trigger, \
461 .hw_params = omap_mcbsp_dai_hw_params, \
464 .set_fmt = omap_mcbsp_dai_set_dai_fmt, \
465 .set_clkdiv = omap_mcbsp_dai_set_clkdiv, \
466 .set_sysclk = omap_mcbsp_dai_set_dai_sysclk, \
468 .private_data = &mcbsp_data[(link_id)].bus_id, \
471 struct snd_soc_dai omap_mcbsp_dai
[] = {
472 OMAP_MCBSP_DAI_BUILDER(0),
473 OMAP_MCBSP_DAI_BUILDER(1),
475 OMAP_MCBSP_DAI_BUILDER(2),
478 OMAP_MCBSP_DAI_BUILDER(3),
479 OMAP_MCBSP_DAI_BUILDER(4),
483 EXPORT_SYMBOL_GPL(omap_mcbsp_dai
);
485 MODULE_AUTHOR("Jarkko Nikula <jarkko.nikula@nokia.com>");
486 MODULE_DESCRIPTION("OMAP I2S SoC Interface");
487 MODULE_LICENSE("GPL");