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 <asm/arch/control.h>
34 #include <asm/arch/dma.h>
35 #include <asm/arch/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 { .name
= "I2S PCM Stereo out", },
65 { .name
= "I2S PCM Stereo in", },
69 #if defined(CONFIG_ARCH_OMAP15XX) || defined(CONFIG_ARCH_OMAP16XX)
70 static const int omap1_dma_reqs
[][2] = {
71 { OMAP_DMA_MCBSP1_TX
, OMAP_DMA_MCBSP1_RX
},
72 { OMAP_DMA_MCBSP2_TX
, OMAP_DMA_MCBSP2_RX
},
73 { OMAP_DMA_MCBSP3_TX
, OMAP_DMA_MCBSP3_RX
},
75 static const unsigned long omap1_mcbsp_port
[][2] = {
76 { OMAP1510_MCBSP1_BASE
+ OMAP_MCBSP_REG_DXR1
,
77 OMAP1510_MCBSP1_BASE
+ OMAP_MCBSP_REG_DRR1
},
78 { OMAP1510_MCBSP2_BASE
+ OMAP_MCBSP_REG_DXR1
,
79 OMAP1510_MCBSP2_BASE
+ OMAP_MCBSP_REG_DRR1
},
80 { OMAP1510_MCBSP3_BASE
+ OMAP_MCBSP_REG_DXR1
,
81 OMAP1510_MCBSP3_BASE
+ OMAP_MCBSP_REG_DRR1
},
84 static const int omap1_dma_reqs
[][2] = {};
85 static const unsigned long omap1_mcbsp_port
[][2] = {};
87 #if defined(CONFIG_ARCH_OMAP2420)
88 static const int omap2420_dma_reqs
[][2] = {
89 { OMAP24XX_DMA_MCBSP1_TX
, OMAP24XX_DMA_MCBSP1_RX
},
90 { OMAP24XX_DMA_MCBSP2_TX
, OMAP24XX_DMA_MCBSP2_RX
},
92 static const unsigned long omap2420_mcbsp_port
[][2] = {
93 { OMAP24XX_MCBSP1_BASE
+ OMAP_MCBSP_REG_DXR1
,
94 OMAP24XX_MCBSP1_BASE
+ OMAP_MCBSP_REG_DRR1
},
95 { OMAP24XX_MCBSP2_BASE
+ OMAP_MCBSP_REG_DXR1
,
96 OMAP24XX_MCBSP2_BASE
+ OMAP_MCBSP_REG_DRR1
},
99 static const int omap2420_dma_reqs
[][2] = {};
100 static const unsigned long omap2420_mcbsp_port
[][2] = {};
103 static int omap_mcbsp_dai_startup(struct snd_pcm_substream
*substream
)
105 struct snd_soc_pcm_runtime
*rtd
= substream
->private_data
;
106 struct snd_soc_cpu_dai
*cpu_dai
= rtd
->dai
->cpu_dai
;
107 struct omap_mcbsp_data
*mcbsp_data
= to_mcbsp(cpu_dai
->private_data
);
110 if (!cpu_dai
->active
)
111 err
= omap_mcbsp_request(mcbsp_data
->bus_id
);
116 static void omap_mcbsp_dai_shutdown(struct snd_pcm_substream
*substream
)
118 struct snd_soc_pcm_runtime
*rtd
= substream
->private_data
;
119 struct snd_soc_cpu_dai
*cpu_dai
= rtd
->dai
->cpu_dai
;
120 struct omap_mcbsp_data
*mcbsp_data
= to_mcbsp(cpu_dai
->private_data
);
122 if (!cpu_dai
->active
) {
123 omap_mcbsp_free(mcbsp_data
->bus_id
);
124 mcbsp_data
->configured
= 0;
128 static int omap_mcbsp_dai_trigger(struct snd_pcm_substream
*substream
, int cmd
)
130 struct snd_soc_pcm_runtime
*rtd
= substream
->private_data
;
131 struct snd_soc_cpu_dai
*cpu_dai
= rtd
->dai
->cpu_dai
;
132 struct omap_mcbsp_data
*mcbsp_data
= to_mcbsp(cpu_dai
->private_data
);
136 case SNDRV_PCM_TRIGGER_START
:
137 case SNDRV_PCM_TRIGGER_RESUME
:
138 case SNDRV_PCM_TRIGGER_PAUSE_RELEASE
:
139 if (!mcbsp_data
->active
++)
140 omap_mcbsp_start(mcbsp_data
->bus_id
);
143 case SNDRV_PCM_TRIGGER_STOP
:
144 case SNDRV_PCM_TRIGGER_SUSPEND
:
145 case SNDRV_PCM_TRIGGER_PAUSE_PUSH
:
146 if (!--mcbsp_data
->active
)
147 omap_mcbsp_stop(mcbsp_data
->bus_id
);
156 static int omap_mcbsp_dai_hw_params(struct snd_pcm_substream
*substream
,
157 struct snd_pcm_hw_params
*params
)
159 struct snd_soc_pcm_runtime
*rtd
= substream
->private_data
;
160 struct snd_soc_cpu_dai
*cpu_dai
= rtd
->dai
->cpu_dai
;
161 struct omap_mcbsp_data
*mcbsp_data
= to_mcbsp(cpu_dai
->private_data
);
162 struct omap_mcbsp_reg_cfg
*regs
= &mcbsp_data
->regs
;
163 int dma
, bus_id
= mcbsp_data
->bus_id
, id
= cpu_dai
->id
;
166 if (cpu_class_is_omap1()) {
167 dma
= omap1_dma_reqs
[bus_id
][substream
->stream
];
168 port
= omap1_mcbsp_port
[bus_id
][substream
->stream
];
169 } else if (cpu_is_omap2420()) {
170 dma
= omap2420_dma_reqs
[bus_id
][substream
->stream
];
171 port
= omap2420_mcbsp_port
[bus_id
][substream
->stream
];
174 * TODO: Add support for 2430 and 3430
178 omap_mcbsp_dai_dma_params
[id
][substream
->stream
].dma_req
= dma
;
179 omap_mcbsp_dai_dma_params
[id
][substream
->stream
].port_addr
= port
;
180 cpu_dai
->dma_data
= &omap_mcbsp_dai_dma_params
[id
][substream
->stream
];
182 if (mcbsp_data
->configured
) {
183 /* McBSP already configured by another stream */
187 switch (params_channels(params
)) {
189 /* Set 1 word per (McBPSP) frame and use dual-phase frames */
190 regs
->rcr2
|= RFRLEN2(1 - 1) | RPHASE
;
191 regs
->rcr1
|= RFRLEN1(1 - 1);
192 regs
->xcr2
|= XFRLEN2(1 - 1) | XPHASE
;
193 regs
->xcr1
|= XFRLEN1(1 - 1);
196 /* Unsupported number of channels */
200 switch (params_format(params
)) {
201 case SNDRV_PCM_FORMAT_S16_LE
:
202 /* Set word lengths */
203 regs
->rcr2
|= RWDLEN2(OMAP_MCBSP_WORD_16
);
204 regs
->rcr1
|= RWDLEN1(OMAP_MCBSP_WORD_16
);
205 regs
->xcr2
|= XWDLEN2(OMAP_MCBSP_WORD_16
);
206 regs
->xcr1
|= XWDLEN1(OMAP_MCBSP_WORD_16
);
207 /* Set FS period and length in terms of bit clock periods */
208 regs
->srgr2
|= FPER(16 * 2 - 1);
209 regs
->srgr1
|= FWID(16 - 1);
212 /* Unsupported PCM format */
216 omap_mcbsp_config(bus_id
, &mcbsp_data
->regs
);
217 mcbsp_data
->configured
= 1;
223 * This must be called before _set_clkdiv and _set_sysclk since McBSP register
224 * cache is initialized here
226 static int omap_mcbsp_dai_set_dai_fmt(struct snd_soc_cpu_dai
*cpu_dai
,
229 struct omap_mcbsp_data
*mcbsp_data
= to_mcbsp(cpu_dai
->private_data
);
230 struct omap_mcbsp_reg_cfg
*regs
= &mcbsp_data
->regs
;
232 if (mcbsp_data
->configured
)
235 memset(regs
, 0, sizeof(*regs
));
236 /* Generic McBSP register settings */
237 regs
->spcr2
|= XINTM(3) | FREE
;
238 regs
->spcr1
|= RINTM(3);
242 switch (fmt
& SND_SOC_DAIFMT_FORMAT_MASK
) {
243 case SND_SOC_DAIFMT_I2S
:
244 /* 1-bit data delay */
245 regs
->rcr2
|= RDATDLY(1);
246 regs
->xcr2
|= XDATDLY(1);
249 /* Unsupported data format */
253 switch (fmt
& SND_SOC_DAIFMT_MASTER_MASK
) {
254 case SND_SOC_DAIFMT_CBS_CFS
:
255 /* McBSP master. Set FS and bit clocks as outputs */
256 regs
->pcr0
|= FSXM
| FSRM
|
258 /* Sample rate generator drives the FS */
261 case SND_SOC_DAIFMT_CBM_CFM
:
265 /* Unsupported master/slave configuration */
269 /* Set bit clock (CLKX/CLKR) and FS polarities */
270 switch (fmt
& SND_SOC_DAIFMT_INV_MASK
) {
271 case SND_SOC_DAIFMT_NB_NF
:
274 * FS active low. TX data driven on falling edge of bit clock
275 * and RX data sampled on rising edge of bit clock.
277 regs
->pcr0
|= FSXP
| FSRP
|
280 case SND_SOC_DAIFMT_NB_IF
:
281 regs
->pcr0
|= CLKXP
| CLKRP
;
283 case SND_SOC_DAIFMT_IB_NF
:
284 regs
->pcr0
|= FSXP
| FSRP
;
286 case SND_SOC_DAIFMT_IB_IF
:
295 static int omap_mcbsp_dai_set_clkdiv(struct snd_soc_cpu_dai
*cpu_dai
,
298 struct omap_mcbsp_data
*mcbsp_data
= to_mcbsp(cpu_dai
->private_data
);
299 struct omap_mcbsp_reg_cfg
*regs
= &mcbsp_data
->regs
;
301 if (div_id
!= OMAP_MCBSP_CLKGDV
)
304 regs
->srgr1
|= CLKGDV(div
- 1);
309 static int omap_mcbsp_dai_set_clks_src(struct omap_mcbsp_data
*mcbsp_data
,
315 if (cpu_class_is_omap1()) {
316 /* OMAP1's can use only external source clock */
317 if (unlikely(clk_id
== OMAP_MCBSP_SYSCLK_CLKS_FCLK
))
323 switch (mcbsp_data
->bus_id
) {
325 reg
= OMAP2_CONTROL_DEVCONF0
;
329 reg
= OMAP2_CONTROL_DEVCONF0
;
332 /* TODO: Support for ports 3 - 5 in OMAP2430 and OMAP34xx */
337 if (cpu_class_is_omap2()) {
338 if (clk_id
== OMAP_MCBSP_SYSCLK_CLKS_FCLK
) {
339 omap_ctrl_writel(omap_ctrl_readl(reg
) &
340 ~(1 << sel_bit
), reg
);
342 omap_ctrl_writel(omap_ctrl_readl(reg
) |
343 (1 << sel_bit
), reg
);
350 static int omap_mcbsp_dai_set_dai_sysclk(struct snd_soc_cpu_dai
*cpu_dai
,
351 int clk_id
, unsigned int freq
,
354 struct omap_mcbsp_data
*mcbsp_data
= to_mcbsp(cpu_dai
->private_data
);
355 struct omap_mcbsp_reg_cfg
*regs
= &mcbsp_data
->regs
;
359 case OMAP_MCBSP_SYSCLK_CLK
:
360 regs
->srgr2
|= CLKSM
;
362 case OMAP_MCBSP_SYSCLK_CLKS_FCLK
:
363 case OMAP_MCBSP_SYSCLK_CLKS_EXT
:
364 err
= omap_mcbsp_dai_set_clks_src(mcbsp_data
, clk_id
);
367 case OMAP_MCBSP_SYSCLK_CLKX_EXT
:
368 regs
->srgr2
|= CLKSM
;
369 case OMAP_MCBSP_SYSCLK_CLKR_EXT
:
370 regs
->pcr0
|= SCLKME
;
379 struct snd_soc_cpu_dai omap_mcbsp_dai
[NUM_LINKS
] = {
381 .name
= "omap-mcbsp-dai",
383 .type
= SND_SOC_DAI_I2S
,
387 .rates
= OMAP_MCBSP_RATES
,
388 .formats
= SNDRV_PCM_FMTBIT_S16_LE
,
393 .rates
= OMAP_MCBSP_RATES
,
394 .formats
= SNDRV_PCM_FMTBIT_S16_LE
,
397 .startup
= omap_mcbsp_dai_startup
,
398 .shutdown
= omap_mcbsp_dai_shutdown
,
399 .trigger
= omap_mcbsp_dai_trigger
,
400 .hw_params
= omap_mcbsp_dai_hw_params
,
403 .set_fmt
= omap_mcbsp_dai_set_dai_fmt
,
404 .set_clkdiv
= omap_mcbsp_dai_set_clkdiv
,
405 .set_sysclk
= omap_mcbsp_dai_set_dai_sysclk
,
407 .private_data
= &mcbsp_data
[0].bus_id
,
410 EXPORT_SYMBOL_GPL(omap_mcbsp_dai
);
412 MODULE_AUTHOR("Jarkko Nikula <jarkko.nikula@nokia.com>");
413 MODULE_DESCRIPTION("OMAP I2S SoC Interface");
414 MODULE_LICENSE("GPL");