2 * omap-mcpdm.c -- OMAP ALSA SoC DAI driver using McPDM port
4 * Copyright (C) 2009 Texas Instruments
6 * Author: Misael Lopez Cruz <x0052729@ti.com>
7 * Contact: Jorge Eduardo Candelaria <x0107209@ti.com>
8 * Margarita Olaya <magi.olaya@ti.com>
10 * This program is free software; you can redistribute it and/or
11 * modify it under the terms of the GNU General Public License
12 * version 2 as published by the Free Software Foundation.
14 * This program is distributed in the hope that it will be useful, but
15 * WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 * General Public License for more details.
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
26 #include <linux/init.h>
27 #include <linux/module.h>
28 #include <linux/device.h>
29 #include <sound/core.h>
30 #include <sound/pcm.h>
31 #include <sound/pcm_params.h>
32 #include <sound/initval.h>
33 #include <sound/soc.h>
35 #include <plat/control.h>
37 #include <plat/mcbsp.h>
39 #include "omap-mcpdm.h"
42 struct omap_mcpdm_data
{
43 struct omap_mcpdm_link
*links
;
47 static struct omap_mcpdm_link omap_mcpdm_links
[] = {
50 .irq_mask
= MCPDM_DN_IRQ_EMPTY
| MCPDM_DN_IRQ_FULL
,
52 .format
= PDMOUTFORMAT_LJUST
,
56 .irq_mask
= MCPDM_UP_IRQ_EMPTY
| MCPDM_UP_IRQ_FULL
,
58 .format
= PDMOUTFORMAT_LJUST
,
62 static struct omap_mcpdm_data mcpdm_data
= {
63 .links
= omap_mcpdm_links
,
68 * Stream DMA parameters
70 static struct omap_pcm_dma_data omap_mcpdm_dai_dma_params
[] = {
72 .name
= "Audio playback",
73 .dma_req
= OMAP44XX_DMA_MCPDM_DL
,
74 .data_type
= OMAP_DMA_DATA_TYPE_S32
,
75 .sync_mode
= OMAP_DMA_SYNC_PACKET
,
77 .port_addr
= OMAP44XX_MCPDM_L3_BASE
+ MCPDM_DN_DATA
,
80 .name
= "Audio capture",
81 .dma_req
= OMAP44XX_DMA_MCPDM_UP
,
82 .data_type
= OMAP_DMA_DATA_TYPE_S32
,
83 .sync_mode
= OMAP_DMA_SYNC_PACKET
,
85 .port_addr
= OMAP44XX_MCPDM_L3_BASE
+ MCPDM_UP_DATA
,
89 static int omap_mcpdm_dai_startup(struct snd_pcm_substream
*substream
,
90 struct snd_soc_dai
*dai
)
92 struct snd_soc_pcm_runtime
*rtd
= substream
->private_data
;
93 struct snd_soc_dai
*cpu_dai
= rtd
->dai
->cpu_dai
;
97 err
= omap_mcpdm_request();
102 static void omap_mcpdm_dai_shutdown(struct snd_pcm_substream
*substream
,
103 struct snd_soc_dai
*dai
)
105 struct snd_soc_pcm_runtime
*rtd
= substream
->private_data
;
106 struct snd_soc_dai
*cpu_dai
= rtd
->dai
->cpu_dai
;
108 if (!cpu_dai
->active
)
112 static int omap_mcpdm_dai_trigger(struct snd_pcm_substream
*substream
, int cmd
,
113 struct snd_soc_dai
*dai
)
115 struct snd_soc_pcm_runtime
*rtd
= substream
->private_data
;
116 struct snd_soc_dai
*cpu_dai
= rtd
->dai
->cpu_dai
;
117 struct omap_mcpdm_data
*mcpdm_priv
= cpu_dai
->private_data
;
118 int stream
= substream
->stream
;
122 case SNDRV_PCM_TRIGGER_START
:
123 case SNDRV_PCM_TRIGGER_RESUME
:
124 case SNDRV_PCM_TRIGGER_PAUSE_RELEASE
:
125 if (!mcpdm_priv
->active
++)
126 omap_mcpdm_start(stream
);
129 case SNDRV_PCM_TRIGGER_STOP
:
130 case SNDRV_PCM_TRIGGER_SUSPEND
:
131 case SNDRV_PCM_TRIGGER_PAUSE_PUSH
:
132 if (!--mcpdm_priv
->active
)
133 omap_mcpdm_stop(stream
);
142 static int omap_mcpdm_dai_hw_params(struct snd_pcm_substream
*substream
,
143 struct snd_pcm_hw_params
*params
,
144 struct snd_soc_dai
*dai
)
146 struct snd_soc_pcm_runtime
*rtd
= substream
->private_data
;
147 struct snd_soc_dai
*cpu_dai
= rtd
->dai
->cpu_dai
;
148 struct omap_mcpdm_data
*mcpdm_priv
= cpu_dai
->private_data
;
149 struct omap_mcpdm_link
*mcpdm_links
= mcpdm_priv
->links
;
150 int stream
= substream
->stream
;
151 int channels
, err
, link_mask
= 0;
153 snd_soc_dai_set_dma_data(cpu_dai
, substream
,
154 &omap_mcpdm_dai_dma_params
[stream
]);
156 channels
= params_channels(params
);
159 if (stream
== SNDRV_PCM_STREAM_CAPTURE
)
160 /* up to 2 channels for capture */
164 if (stream
== SNDRV_PCM_STREAM_CAPTURE
)
165 /* up to 2 channels for capture */
174 /* unsupported number of channels */
178 if (stream
== SNDRV_PCM_STREAM_PLAYBACK
) {
179 mcpdm_links
[stream
].channels
= link_mask
<< 3;
180 err
= omap_mcpdm_playback_open(&mcpdm_links
[stream
]);
182 mcpdm_links
[stream
].channels
= link_mask
<< 0;
183 err
= omap_mcpdm_capture_open(&mcpdm_links
[stream
]);
189 static int omap_mcpdm_dai_hw_free(struct snd_pcm_substream
*substream
,
190 struct snd_soc_dai
*dai
)
192 struct snd_soc_pcm_runtime
*rtd
= substream
->private_data
;
193 struct snd_soc_dai
*cpu_dai
= rtd
->dai
->cpu_dai
;
194 struct omap_mcpdm_data
*mcpdm_priv
= cpu_dai
->private_data
;
195 struct omap_mcpdm_link
*mcpdm_links
= mcpdm_priv
->links
;
196 int stream
= substream
->stream
;
199 if (substream
->stream
== SNDRV_PCM_STREAM_PLAYBACK
)
200 err
= omap_mcpdm_playback_close(&mcpdm_links
[stream
]);
202 err
= omap_mcpdm_capture_close(&mcpdm_links
[stream
]);
207 static struct snd_soc_dai_ops omap_mcpdm_dai_ops
= {
208 .startup
= omap_mcpdm_dai_startup
,
209 .shutdown
= omap_mcpdm_dai_shutdown
,
210 .trigger
= omap_mcpdm_dai_trigger
,
211 .hw_params
= omap_mcpdm_dai_hw_params
,
212 .hw_free
= omap_mcpdm_dai_hw_free
,
215 #define OMAP_MCPDM_RATES (SNDRV_PCM_RATE_88200 | SNDRV_PCM_RATE_96000)
216 #define OMAP_MCPDM_FORMATS (SNDRV_PCM_FMTBIT_S32_LE)
218 struct snd_soc_dai omap_mcpdm_dai
= {
219 .name
= "omap-mcpdm",
224 .rates
= OMAP_MCPDM_RATES
,
225 .formats
= OMAP_MCPDM_FORMATS
,
230 .rates
= OMAP_MCPDM_RATES
,
231 .formats
= OMAP_MCPDM_FORMATS
,
233 .ops
= &omap_mcpdm_dai_ops
,
234 .private_data
= &mcpdm_data
,
236 EXPORT_SYMBOL_GPL(omap_mcpdm_dai
);
238 static int __init
snd_omap_mcpdm_init(void)
240 return snd_soc_register_dai(&omap_mcpdm_dai
);
242 module_init(snd_omap_mcpdm_init
);
244 static void __exit
snd_omap_mcpdm_exit(void)
246 snd_soc_unregister_dai(&omap_mcpdm_dai
);
248 module_exit(snd_omap_mcpdm_exit
);
250 MODULE_AUTHOR("Misael Lopez Cruz <x0052729@ti.com>");
251 MODULE_DESCRIPTION("OMAP PDM SoC Interface");
252 MODULE_LICENSE("GPL");