blob: ea053c3d2ab1f8455a9d9e238895c390a0e0fe99 [file] [log] [blame]
Misael Lopez Cruzdb72c2f2010-02-22 15:09:22 -06001/*
2 * omap-mcpdm.c -- OMAP ALSA SoC DAI driver using McPDM port
3 *
Misael Lopez Cruzf5f9d7b2011-07-05 19:50:45 +03004 * Copyright (C) 2009 - 2011 Texas Instruments
Misael Lopez Cruzdb72c2f2010-02-22 15:09:22 -06005 *
Misael Lopez Cruzf5f9d7b2011-07-05 19:50:45 +03006 * Author: Misael Lopez Cruz <misael.lopez@ti.com>
Misael Lopez Cruzdb72c2f2010-02-22 15:09:22 -06007 * Contact: Jorge Eduardo Candelaria <x0107209@ti.com>
8 * Margarita Olaya <magi.olaya@ti.com>
Misael Lopez Cruzf5f9d7b2011-07-05 19:50:45 +03009 * Peter Ujfalusi <peter.ujfalusi@ti.com>
Misael Lopez Cruzdb72c2f2010-02-22 15:09:22 -060010 *
11 * This program is free software; you can redistribute it and/or
12 * modify it under the terms of the GNU General Public License
13 * version 2 as published by the Free Software Foundation.
14 *
15 * This program is distributed in the hope that it will be useful, but
16 * WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18 * General Public License for more details.
19 *
20 * You should have received a copy of the GNU General Public License
21 * along with this program; if not, write to the Free Software
22 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
23 * 02110-1301 USA
24 *
25 */
26
27#include <linux/init.h>
28#include <linux/module.h>
Misael Lopez Cruzf5f9d7b2011-07-05 19:50:45 +030029#include <linux/platform_device.h>
30#include <linux/interrupt.h>
31#include <linux/err.h>
32#include <linux/io.h>
33#include <linux/irq.h>
34#include <linux/slab.h>
35#include <linux/pm_runtime.h>
Peter Ujfalusi7cb8a1b2011-11-15 11:32:14 +020036#include <linux/of_device.h>
Misael Lopez Cruzf5f9d7b2011-07-05 19:50:45 +030037
Misael Lopez Cruzdb72c2f2010-02-22 15:09:22 -060038#include <sound/core.h>
39#include <sound/pcm.h>
40#include <sound/pcm_params.h>
Misael Lopez Cruzdb72c2f2010-02-22 15:09:22 -060041#include <sound/soc.h>
42
Misael Lopez Cruzdb72c2f2010-02-22 15:09:22 -060043#include <plat/dma.h>
Misael Lopez Cruzf5f9d7b2011-07-05 19:50:45 +030044#include <plat/omap_hwmod.h>
45#include "omap-mcpdm.h"
Misael Lopez Cruzdb72c2f2010-02-22 15:09:22 -060046#include "omap-pcm.h"
47
Tony Lindgrendbc04162012-08-31 10:59:07 -070048#define OMAP44XX_MCPDM_L3_BASE 0x49032000
49
Misael Lopez Cruzf5f9d7b2011-07-05 19:50:45 +030050struct omap_mcpdm {
51 struct device *dev;
52 unsigned long phys_base;
53 void __iomem *io_base;
54 int irq;
Misael Lopez Cruzdb72c2f2010-02-22 15:09:22 -060055
Misael Lopez Cruzf5f9d7b2011-07-05 19:50:45 +030056 struct mutex mutex;
Misael Lopez Cruzdb72c2f2010-02-22 15:09:22 -060057
Misael Lopez Cruzf5f9d7b2011-07-05 19:50:45 +030058 /* channel data */
59 u32 dn_channels;
60 u32 up_channels;
61
62 /* McPDM FIFO thresholds */
63 u32 dn_threshold;
64 u32 up_threshold;
Peter Ujfalusi89b0d552011-09-26 16:05:58 +030065
66 /* McPDM dn offsets for rx1, and 2 channels */
67 u32 dn_rx_offset;
Misael Lopez Cruzdb72c2f2010-02-22 15:09:22 -060068};
69
70/*
71 * Stream DMA parameters
72 */
73static struct omap_pcm_dma_data omap_mcpdm_dai_dma_params[] = {
74 {
75 .name = "Audio playback",
76 .dma_req = OMAP44XX_DMA_MCPDM_DL,
77 .data_type = OMAP_DMA_DATA_TYPE_S32,
78 .sync_mode = OMAP_DMA_SYNC_PACKET,
Misael Lopez Cruzf5f9d7b2011-07-05 19:50:45 +030079 .port_addr = OMAP44XX_MCPDM_L3_BASE + MCPDM_REG_DN_DATA,
Misael Lopez Cruzdb72c2f2010-02-22 15:09:22 -060080 },
81 {
82 .name = "Audio capture",
83 .dma_req = OMAP44XX_DMA_MCPDM_UP,
84 .data_type = OMAP_DMA_DATA_TYPE_S32,
85 .sync_mode = OMAP_DMA_SYNC_PACKET,
Misael Lopez Cruzf5f9d7b2011-07-05 19:50:45 +030086 .port_addr = OMAP44XX_MCPDM_L3_BASE + MCPDM_REG_UP_DATA,
Misael Lopez Cruzdb72c2f2010-02-22 15:09:22 -060087 },
88};
89
Misael Lopez Cruzf5f9d7b2011-07-05 19:50:45 +030090static inline void omap_mcpdm_write(struct omap_mcpdm *mcpdm, u16 reg, u32 val)
91{
92 __raw_writel(val, mcpdm->io_base + reg);
93}
94
95static inline int omap_mcpdm_read(struct omap_mcpdm *mcpdm, u16 reg)
96{
97 return __raw_readl(mcpdm->io_base + reg);
98}
99
100#ifdef DEBUG
101static void omap_mcpdm_reg_dump(struct omap_mcpdm *mcpdm)
102{
103 dev_dbg(mcpdm->dev, "***********************\n");
104 dev_dbg(mcpdm->dev, "IRQSTATUS_RAW: 0x%04x\n",
105 omap_mcpdm_read(mcpdm, MCPDM_REG_IRQSTATUS_RAW));
106 dev_dbg(mcpdm->dev, "IRQSTATUS: 0x%04x\n",
107 omap_mcpdm_read(mcpdm, MCPDM_REG_IRQSTATUS));
108 dev_dbg(mcpdm->dev, "IRQENABLE_SET: 0x%04x\n",
109 omap_mcpdm_read(mcpdm, MCPDM_REG_IRQENABLE_SET));
110 dev_dbg(mcpdm->dev, "IRQENABLE_CLR: 0x%04x\n",
111 omap_mcpdm_read(mcpdm, MCPDM_REG_IRQENABLE_CLR));
112 dev_dbg(mcpdm->dev, "IRQWAKE_EN: 0x%04x\n",
113 omap_mcpdm_read(mcpdm, MCPDM_REG_IRQWAKE_EN));
114 dev_dbg(mcpdm->dev, "DMAENABLE_SET: 0x%04x\n",
115 omap_mcpdm_read(mcpdm, MCPDM_REG_DMAENABLE_SET));
116 dev_dbg(mcpdm->dev, "DMAENABLE_CLR: 0x%04x\n",
117 omap_mcpdm_read(mcpdm, MCPDM_REG_DMAENABLE_CLR));
118 dev_dbg(mcpdm->dev, "DMAWAKEEN: 0x%04x\n",
119 omap_mcpdm_read(mcpdm, MCPDM_REG_DMAWAKEEN));
120 dev_dbg(mcpdm->dev, "CTRL: 0x%04x\n",
121 omap_mcpdm_read(mcpdm, MCPDM_REG_CTRL));
122 dev_dbg(mcpdm->dev, "DN_DATA: 0x%04x\n",
123 omap_mcpdm_read(mcpdm, MCPDM_REG_DN_DATA));
124 dev_dbg(mcpdm->dev, "UP_DATA: 0x%04x\n",
125 omap_mcpdm_read(mcpdm, MCPDM_REG_UP_DATA));
126 dev_dbg(mcpdm->dev, "FIFO_CTRL_DN: 0x%04x\n",
127 omap_mcpdm_read(mcpdm, MCPDM_REG_FIFO_CTRL_DN));
128 dev_dbg(mcpdm->dev, "FIFO_CTRL_UP: 0x%04x\n",
129 omap_mcpdm_read(mcpdm, MCPDM_REG_FIFO_CTRL_UP));
130 dev_dbg(mcpdm->dev, "***********************\n");
131}
132#else
133static void omap_mcpdm_reg_dump(struct omap_mcpdm *mcpdm) {}
134#endif
135
136/*
137 * Enables the transfer through the PDM interface to/from the Phoenix
138 * codec by enabling the corresponding UP or DN channels.
139 */
140static void omap_mcpdm_start(struct omap_mcpdm *mcpdm)
141{
142 u32 ctrl = omap_mcpdm_read(mcpdm, MCPDM_REG_CTRL);
143
144 ctrl |= (MCPDM_SW_DN_RST | MCPDM_SW_UP_RST);
145 omap_mcpdm_write(mcpdm, MCPDM_REG_CTRL, ctrl);
146
147 ctrl |= mcpdm->dn_channels | mcpdm->up_channels;
148 omap_mcpdm_write(mcpdm, MCPDM_REG_CTRL, ctrl);
149
150 ctrl &= ~(MCPDM_SW_DN_RST | MCPDM_SW_UP_RST);
151 omap_mcpdm_write(mcpdm, MCPDM_REG_CTRL, ctrl);
152}
153
154/*
155 * Disables the transfer through the PDM interface to/from the Phoenix
156 * codec by disabling the corresponding UP or DN channels.
157 */
158static void omap_mcpdm_stop(struct omap_mcpdm *mcpdm)
159{
160 u32 ctrl = omap_mcpdm_read(mcpdm, MCPDM_REG_CTRL);
161
162 ctrl |= (MCPDM_SW_DN_RST | MCPDM_SW_UP_RST);
163 omap_mcpdm_write(mcpdm, MCPDM_REG_CTRL, ctrl);
164
165 ctrl &= ~(mcpdm->dn_channels | mcpdm->up_channels);
166 omap_mcpdm_write(mcpdm, MCPDM_REG_CTRL, ctrl);
167
168 ctrl &= ~(MCPDM_SW_DN_RST | MCPDM_SW_UP_RST);
169 omap_mcpdm_write(mcpdm, MCPDM_REG_CTRL, ctrl);
170
171}
172
173/*
174 * Is the physical McPDM interface active.
175 */
176static inline int omap_mcpdm_active(struct omap_mcpdm *mcpdm)
177{
178 return omap_mcpdm_read(mcpdm, MCPDM_REG_CTRL) &
179 (MCPDM_PDM_DN_MASK | MCPDM_PDM_UP_MASK);
180}
181
182/*
183 * Configures McPDM uplink, and downlink for audio.
184 * This function should be called before omap_mcpdm_start.
185 */
186static void omap_mcpdm_open_streams(struct omap_mcpdm *mcpdm)
187{
188 omap_mcpdm_write(mcpdm, MCPDM_REG_IRQENABLE_SET,
189 MCPDM_DN_IRQ_EMPTY | MCPDM_DN_IRQ_FULL |
190 MCPDM_UP_IRQ_EMPTY | MCPDM_UP_IRQ_FULL);
191
Peter Ujfalusi89b0d552011-09-26 16:05:58 +0300192 /* Enable DN RX1/2 offset cancellation feature, if configured */
193 if (mcpdm->dn_rx_offset) {
194 u32 dn_offset = mcpdm->dn_rx_offset;
195
196 omap_mcpdm_write(mcpdm, MCPDM_REG_DN_OFFSET, dn_offset);
197 dn_offset |= (MCPDM_DN_OFST_RX1_EN | MCPDM_DN_OFST_RX2_EN);
198 omap_mcpdm_write(mcpdm, MCPDM_REG_DN_OFFSET, dn_offset);
199 }
200
Misael Lopez Cruzf5f9d7b2011-07-05 19:50:45 +0300201 omap_mcpdm_write(mcpdm, MCPDM_REG_FIFO_CTRL_DN, mcpdm->dn_threshold);
202 omap_mcpdm_write(mcpdm, MCPDM_REG_FIFO_CTRL_UP, mcpdm->up_threshold);
203
204 omap_mcpdm_write(mcpdm, MCPDM_REG_DMAENABLE_SET,
205 MCPDM_DMA_DN_ENABLE | MCPDM_DMA_UP_ENABLE);
206}
207
208/*
209 * Cleans McPDM uplink, and downlink configuration.
210 * This function should be called when the stream is closed.
211 */
212static void omap_mcpdm_close_streams(struct omap_mcpdm *mcpdm)
213{
214 /* Disable irq request generation for downlink */
215 omap_mcpdm_write(mcpdm, MCPDM_REG_IRQENABLE_CLR,
216 MCPDM_DN_IRQ_EMPTY | MCPDM_DN_IRQ_FULL);
217
218 /* Disable DMA request generation for downlink */
219 omap_mcpdm_write(mcpdm, MCPDM_REG_DMAENABLE_CLR, MCPDM_DMA_DN_ENABLE);
220
221 /* Disable irq request generation for uplink */
222 omap_mcpdm_write(mcpdm, MCPDM_REG_IRQENABLE_CLR,
223 MCPDM_UP_IRQ_EMPTY | MCPDM_UP_IRQ_FULL);
224
225 /* Disable DMA request generation for uplink */
226 omap_mcpdm_write(mcpdm, MCPDM_REG_DMAENABLE_CLR, MCPDM_DMA_UP_ENABLE);
Peter Ujfalusi89b0d552011-09-26 16:05:58 +0300227
228 /* Disable RX1/2 offset cancellation */
229 if (mcpdm->dn_rx_offset)
230 omap_mcpdm_write(mcpdm, MCPDM_REG_DN_OFFSET, 0);
Misael Lopez Cruzf5f9d7b2011-07-05 19:50:45 +0300231}
232
233static irqreturn_t omap_mcpdm_irq_handler(int irq, void *dev_id)
234{
235 struct omap_mcpdm *mcpdm = dev_id;
236 int irq_status;
237
238 irq_status = omap_mcpdm_read(mcpdm, MCPDM_REG_IRQSTATUS);
239
240 /* Acknowledge irq event */
241 omap_mcpdm_write(mcpdm, MCPDM_REG_IRQSTATUS, irq_status);
242
243 if (irq_status & MCPDM_DN_IRQ_FULL)
244 dev_dbg(mcpdm->dev, "DN (playback) FIFO Full\n");
245
246 if (irq_status & MCPDM_DN_IRQ_EMPTY)
247 dev_dbg(mcpdm->dev, "DN (playback) FIFO Empty\n");
248
249 if (irq_status & MCPDM_DN_IRQ)
250 dev_dbg(mcpdm->dev, "DN (playback) write request\n");
251
252 if (irq_status & MCPDM_UP_IRQ_FULL)
253 dev_dbg(mcpdm->dev, "UP (capture) FIFO Full\n");
254
255 if (irq_status & MCPDM_UP_IRQ_EMPTY)
256 dev_dbg(mcpdm->dev, "UP (capture) FIFO Empty\n");
257
258 if (irq_status & MCPDM_UP_IRQ)
259 dev_dbg(mcpdm->dev, "UP (capture) write request\n");
260
261 return IRQ_HANDLED;
262}
263
Misael Lopez Cruzdb72c2f2010-02-22 15:09:22 -0600264static int omap_mcpdm_dai_startup(struct snd_pcm_substream *substream,
265 struct snd_soc_dai *dai)
266{
Misael Lopez Cruzf5f9d7b2011-07-05 19:50:45 +0300267 struct omap_mcpdm *mcpdm = snd_soc_dai_get_drvdata(dai);
Misael Lopez Cruzdb72c2f2010-02-22 15:09:22 -0600268
Misael Lopez Cruzf5f9d7b2011-07-05 19:50:45 +0300269 mutex_lock(&mcpdm->mutex);
Misael Lopez Cruzdb72c2f2010-02-22 15:09:22 -0600270
Misael Lopez Cruzf5f9d7b2011-07-05 19:50:45 +0300271 if (!dai->active) {
Misael Lopez Cruzf5f9d7b2011-07-05 19:50:45 +0300272 /* Enable watch dog for ES above ES 1.0 to avoid saturation */
273 if (omap_rev() != OMAP4430_REV_ES1_0) {
274 u32 ctrl = omap_mcpdm_read(mcpdm, MCPDM_REG_CTRL);
275
276 omap_mcpdm_write(mcpdm, MCPDM_REG_CTRL,
277 ctrl | MCPDM_WD_EN);
278 }
279 omap_mcpdm_open_streams(mcpdm);
280 }
281
282 mutex_unlock(&mcpdm->mutex);
283
284 return 0;
Misael Lopez Cruzdb72c2f2010-02-22 15:09:22 -0600285}
286
287static void omap_mcpdm_dai_shutdown(struct snd_pcm_substream *substream,
Misael Lopez Cruzdb72c2f2010-02-22 15:09:22 -0600288 struct snd_soc_dai *dai)
289{
Misael Lopez Cruzf5f9d7b2011-07-05 19:50:45 +0300290 struct omap_mcpdm *mcpdm = snd_soc_dai_get_drvdata(dai);
Misael Lopez Cruzdb72c2f2010-02-22 15:09:22 -0600291
Misael Lopez Cruzf5f9d7b2011-07-05 19:50:45 +0300292 mutex_lock(&mcpdm->mutex);
Misael Lopez Cruzdb72c2f2010-02-22 15:09:22 -0600293
Misael Lopez Cruzf5f9d7b2011-07-05 19:50:45 +0300294 if (!dai->active) {
295 if (omap_mcpdm_active(mcpdm)) {
296 omap_mcpdm_stop(mcpdm);
297 omap_mcpdm_close_streams(mcpdm);
298 }
Misael Lopez Cruzdb72c2f2010-02-22 15:09:22 -0600299 }
300
Misael Lopez Cruzf5f9d7b2011-07-05 19:50:45 +0300301 mutex_unlock(&mcpdm->mutex);
Misael Lopez Cruzdb72c2f2010-02-22 15:09:22 -0600302}
303
304static int omap_mcpdm_dai_hw_params(struct snd_pcm_substream *substream,
305 struct snd_pcm_hw_params *params,
306 struct snd_soc_dai *dai)
307{
Misael Lopez Cruzf5f9d7b2011-07-05 19:50:45 +0300308 struct omap_mcpdm *mcpdm = snd_soc_dai_get_drvdata(dai);
Misael Lopez Cruzdb72c2f2010-02-22 15:09:22 -0600309 int stream = substream->stream;
Misael Lopez Cruzf5f9d7b2011-07-05 19:50:45 +0300310 struct omap_pcm_dma_data *dma_data;
311 int channels;
312 int link_mask = 0;
Misael Lopez Cruzdb72c2f2010-02-22 15:09:22 -0600313
Misael Lopez Cruzdb72c2f2010-02-22 15:09:22 -0600314 channels = params_channels(params);
315 switch (channels) {
Peter Ujfalusi3b5b5162011-09-23 09:49:43 +0300316 case 5:
317 if (stream == SNDRV_PCM_STREAM_CAPTURE)
318 /* up to 3 channels for capture */
319 return -EINVAL;
320 link_mask |= 1 << 4;
Misael Lopez Cruzdb72c2f2010-02-22 15:09:22 -0600321 case 4:
322 if (stream == SNDRV_PCM_STREAM_CAPTURE)
Peter Ujfalusi3b5b5162011-09-23 09:49:43 +0300323 /* up to 3 channels for capture */
Misael Lopez Cruzdb72c2f2010-02-22 15:09:22 -0600324 return -EINVAL;
325 link_mask |= 1 << 3;
326 case 3:
Misael Lopez Cruzdb72c2f2010-02-22 15:09:22 -0600327 link_mask |= 1 << 2;
328 case 2:
329 link_mask |= 1 << 1;
330 case 1:
331 link_mask |= 1 << 0;
332 break;
333 default:
334 /* unsupported number of channels */
335 return -EINVAL;
336 }
337
Peter Ujfalusib199adf2011-08-02 13:35:30 +0300338 dma_data = &omap_mcpdm_dai_dma_params[stream];
Peter Ujfalusib199adf2011-08-02 13:35:30 +0300339
Misael Lopez Cruzf5f9d7b2011-07-05 19:50:45 +0300340 /* Configure McPDM channels, and DMA packet size */
Misael Lopez Cruzdb72c2f2010-02-22 15:09:22 -0600341 if (stream == SNDRV_PCM_STREAM_PLAYBACK) {
Misael Lopez Cruzf5f9d7b2011-07-05 19:50:45 +0300342 mcpdm->dn_channels = link_mask << 3;
343 dma_data->packet_size =
344 (MCPDM_DN_THRES_MAX - mcpdm->dn_threshold) * channels;
Misael Lopez Cruzdb72c2f2010-02-22 15:09:22 -0600345 } else {
Misael Lopez Cruzf5f9d7b2011-07-05 19:50:45 +0300346 mcpdm->up_channels = link_mask << 0;
347 dma_data->packet_size = mcpdm->up_threshold * channels;
Misael Lopez Cruzdb72c2f2010-02-22 15:09:22 -0600348 }
349
Peter Ujfalusib199adf2011-08-02 13:35:30 +0300350 snd_soc_dai_set_dma_data(dai, substream, dma_data);
Misael Lopez Cruzf5f9d7b2011-07-05 19:50:45 +0300351
352 return 0;
Misael Lopez Cruzdb72c2f2010-02-22 15:09:22 -0600353}
354
Misael Lopez Cruzf5f9d7b2011-07-05 19:50:45 +0300355static int omap_mcpdm_prepare(struct snd_pcm_substream *substream,
Misael Lopez Cruzdb72c2f2010-02-22 15:09:22 -0600356 struct snd_soc_dai *dai)
357{
Misael Lopez Cruzf5f9d7b2011-07-05 19:50:45 +0300358 struct omap_mcpdm *mcpdm = snd_soc_dai_get_drvdata(dai);
Misael Lopez Cruzdb72c2f2010-02-22 15:09:22 -0600359
Misael Lopez Cruzf5f9d7b2011-07-05 19:50:45 +0300360 if (!omap_mcpdm_active(mcpdm)) {
361 omap_mcpdm_start(mcpdm);
362 omap_mcpdm_reg_dump(mcpdm);
363 }
Misael Lopez Cruzdb72c2f2010-02-22 15:09:22 -0600364
Misael Lopez Cruzf5f9d7b2011-07-05 19:50:45 +0300365 return 0;
Misael Lopez Cruzdb72c2f2010-02-22 15:09:22 -0600366}
367
Lars-Peter Clausen85e76522011-11-23 11:40:40 +0100368static const struct snd_soc_dai_ops omap_mcpdm_dai_ops = {
Misael Lopez Cruzdb72c2f2010-02-22 15:09:22 -0600369 .startup = omap_mcpdm_dai_startup,
370 .shutdown = omap_mcpdm_dai_shutdown,
Misael Lopez Cruzdb72c2f2010-02-22 15:09:22 -0600371 .hw_params = omap_mcpdm_dai_hw_params,
Misael Lopez Cruzf5f9d7b2011-07-05 19:50:45 +0300372 .prepare = omap_mcpdm_prepare,
Misael Lopez Cruzdb72c2f2010-02-22 15:09:22 -0600373};
374
Misael Lopez Cruzf5f9d7b2011-07-05 19:50:45 +0300375static int omap_mcpdm_probe(struct snd_soc_dai *dai)
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000376{
Misael Lopez Cruzf5f9d7b2011-07-05 19:50:45 +0300377 struct omap_mcpdm *mcpdm = snd_soc_dai_get_drvdata(dai);
378 int ret;
379
380 pm_runtime_enable(mcpdm->dev);
381
382 /* Disable lines while request is ongoing */
383 pm_runtime_get_sync(mcpdm->dev);
384 omap_mcpdm_write(mcpdm, MCPDM_REG_CTRL, 0x00);
385
386 ret = request_irq(mcpdm->irq, omap_mcpdm_irq_handler,
387 0, "McPDM", (void *)mcpdm);
388
389 pm_runtime_put_sync(mcpdm->dev);
390
391 if (ret) {
392 dev_err(mcpdm->dev, "Request for IRQ failed\n");
393 pm_runtime_disable(mcpdm->dev);
394 }
395
396 /* Configure McPDM threshold values */
397 mcpdm->dn_threshold = 2;
398 mcpdm->up_threshold = MCPDM_UP_THRES_MAX - 3;
399 return ret;
400}
401
402static int omap_mcpdm_remove(struct snd_soc_dai *dai)
403{
404 struct omap_mcpdm *mcpdm = snd_soc_dai_get_drvdata(dai);
405
406 free_irq(mcpdm->irq, (void *)mcpdm);
407 pm_runtime_disable(mcpdm->dev);
408
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000409 return 0;
410}
411
Misael Lopez Cruzf5f9d7b2011-07-05 19:50:45 +0300412#define OMAP_MCPDM_RATES (SNDRV_PCM_RATE_88200 | SNDRV_PCM_RATE_96000)
413#define OMAP_MCPDM_FORMATS SNDRV_PCM_FMTBIT_S32_LE
414
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000415static struct snd_soc_dai_driver omap_mcpdm_dai = {
Misael Lopez Cruzf5f9d7b2011-07-05 19:50:45 +0300416 .probe = omap_mcpdm_probe,
417 .remove = omap_mcpdm_remove,
418 .probe_order = SND_SOC_COMP_ORDER_LATE,
419 .remove_order = SND_SOC_COMP_ORDER_EARLY,
Misael Lopez Cruzdb72c2f2010-02-22 15:09:22 -0600420 .playback = {
421 .channels_min = 1,
Peter Ujfalusi3b5b5162011-09-23 09:49:43 +0300422 .channels_max = 5,
Misael Lopez Cruzdb72c2f2010-02-22 15:09:22 -0600423 .rates = OMAP_MCPDM_RATES,
424 .formats = OMAP_MCPDM_FORMATS,
Peter Ujfalusib4badd42012-01-18 12:18:24 +0100425 .sig_bits = 24,
Misael Lopez Cruzdb72c2f2010-02-22 15:09:22 -0600426 },
427 .capture = {
428 .channels_min = 1,
Peter Ujfalusi3b5b5162011-09-23 09:49:43 +0300429 .channels_max = 3,
Misael Lopez Cruzdb72c2f2010-02-22 15:09:22 -0600430 .rates = OMAP_MCPDM_RATES,
431 .formats = OMAP_MCPDM_FORMATS,
Peter Ujfalusib4badd42012-01-18 12:18:24 +0100432 .sig_bits = 24,
Misael Lopez Cruzdb72c2f2010-02-22 15:09:22 -0600433 },
434 .ops = &omap_mcpdm_dai_ops,
Misael Lopez Cruzdb72c2f2010-02-22 15:09:22 -0600435};
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000436
Peter Ujfalusi89b0d552011-09-26 16:05:58 +0300437void omap_mcpdm_configure_dn_offsets(struct snd_soc_pcm_runtime *rtd,
438 u8 rx1, u8 rx2)
439{
440 struct omap_mcpdm *mcpdm = snd_soc_dai_get_drvdata(rtd->cpu_dai);
441
442 mcpdm->dn_rx_offset = MCPDM_DNOFST_RX1(rx1) | MCPDM_DNOFST_RX2(rx2);
443}
444EXPORT_SYMBOL_GPL(omap_mcpdm_configure_dn_offsets);
445
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000446static __devinit int asoc_mcpdm_probe(struct platform_device *pdev)
447{
Misael Lopez Cruzf5f9d7b2011-07-05 19:50:45 +0300448 struct omap_mcpdm *mcpdm;
449 struct resource *res;
450 int ret = 0;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000451
Misael Lopez Cruzf5f9d7b2011-07-05 19:50:45 +0300452 mcpdm = kzalloc(sizeof(struct omap_mcpdm), GFP_KERNEL);
453 if (!mcpdm)
454 return -ENOMEM;
455
456 platform_set_drvdata(pdev, mcpdm);
457
458 mutex_init(&mcpdm->mutex);
459
460 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
461 if (res == NULL) {
462 dev_err(&pdev->dev, "no resource\n");
463 goto err_res;
464 }
465
466 if (!request_mem_region(res->start, resource_size(res), "McPDM")) {
467 ret = -EBUSY;
468 goto err_res;
469 }
470
471 mcpdm->io_base = ioremap(res->start, resource_size(res));
472 if (!mcpdm->io_base) {
473 ret = -ENOMEM;
474 goto err_iomap;
475 }
476
477 mcpdm->irq = platform_get_irq(pdev, 0);
478 if (mcpdm->irq < 0) {
479 ret = mcpdm->irq;
480 goto err_irq;
481 }
482
483 mcpdm->dev = &pdev->dev;
484
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000485 ret = snd_soc_register_dai(&pdev->dev, &omap_mcpdm_dai);
Misael Lopez Cruzf5f9d7b2011-07-05 19:50:45 +0300486 if (!ret)
487 return 0;
488
489err_irq:
490 iounmap(mcpdm->io_base);
491err_iomap:
492 release_mem_region(res->start, resource_size(res));
493err_res:
494 kfree(mcpdm);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000495 return ret;
496}
497
498static int __devexit asoc_mcpdm_remove(struct platform_device *pdev)
499{
Misael Lopez Cruzf5f9d7b2011-07-05 19:50:45 +0300500 struct omap_mcpdm *mcpdm = platform_get_drvdata(pdev);
501 struct resource *res;
502
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000503 snd_soc_unregister_dai(&pdev->dev);
Misael Lopez Cruzf5f9d7b2011-07-05 19:50:45 +0300504
505 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
506 iounmap(mcpdm->io_base);
507 release_mem_region(res->start, resource_size(res));
508
509 kfree(mcpdm);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000510 return 0;
511}
512
Peter Ujfalusi7cb8a1b2011-11-15 11:32:14 +0200513static const struct of_device_id omap_mcpdm_of_match[] = {
514 { .compatible = "ti,omap4-mcpdm", },
515 { }
516};
517MODULE_DEVICE_TABLE(of, omap_mcpdm_of_match);
518
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000519static struct platform_driver asoc_mcpdm_driver = {
520 .driver = {
Misael Lopez Cruzf5f9d7b2011-07-05 19:50:45 +0300521 .name = "omap-mcpdm",
522 .owner = THIS_MODULE,
Peter Ujfalusi7cb8a1b2011-11-15 11:32:14 +0200523 .of_match_table = omap_mcpdm_of_match,
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000524 },
525
Misael Lopez Cruzf5f9d7b2011-07-05 19:50:45 +0300526 .probe = asoc_mcpdm_probe,
527 .remove = __devexit_p(asoc_mcpdm_remove),
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000528};
Misael Lopez Cruzdb72c2f2010-02-22 15:09:22 -0600529
Axel Linbeda5bf52011-11-25 10:12:16 +0800530module_platform_driver(asoc_mcpdm_driver);
Misael Lopez Cruzdb72c2f2010-02-22 15:09:22 -0600531
Peter Ujfalusid66a5472012-07-06 12:19:10 +0200532MODULE_ALIAS("platform:omap-mcpdm");
Misael Lopez Cruzf5f9d7b2011-07-05 19:50:45 +0300533MODULE_AUTHOR("Misael Lopez Cruz <misael.lopez@ti.com>");
Misael Lopez Cruzdb72c2f2010-02-22 15:09:22 -0600534MODULE_DESCRIPTION("OMAP PDM SoC Interface");
535MODULE_LICENSE("GPL");