2 * omap-dmic.c -- OMAP ASoC DMIC DAI driver
4 * Copyright (C) 2010 - 2011 Texas Instruments
6 * Author: David Lambert <dlambert@ti.com>
7 * Misael Lopez Cruz <misael.lopez@ti.com>
8 * Liam Girdwood <lrg@ti.com>
9 * Peter Ujfalusi <peter.ujfalusi@ti.com>
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.
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.
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
27 #include <linux/init.h>
28 #include <linux/module.h>
29 #include <linux/platform_device.h>
30 #include <linux/err.h>
31 #include <linux/clk.h>
33 #include <linux/slab.h>
34 #include <linux/pm_runtime.h>
35 #include <linux/of_device.h>
37 #include <sound/core.h>
38 #include <sound/pcm.h>
39 #include <sound/pcm_params.h>
40 #include <sound/initval.h>
41 #include <sound/soc.h>
42 #include <sound/dmaengine_pcm.h>
44 #include "omap-dmic.h"
49 void __iomem
*io_base
;
51 struct pm_qos_request pm_qos_req
;
62 struct snd_dmaengine_dai_dma_data dma_data
;
65 static inline void omap_dmic_write(struct omap_dmic
*dmic
, u16 reg
, u32 val
)
67 writel_relaxed(val
, dmic
->io_base
+ reg
);
70 static inline int omap_dmic_read(struct omap_dmic
*dmic
, u16 reg
)
72 return readl_relaxed(dmic
->io_base
+ reg
);
75 static inline void omap_dmic_start(struct omap_dmic
*dmic
)
77 u32 ctrl
= omap_dmic_read(dmic
, OMAP_DMIC_CTRL_REG
);
79 /* Configure DMA controller */
80 omap_dmic_write(dmic
, OMAP_DMIC_DMAENABLE_SET_REG
,
81 OMAP_DMIC_DMA_ENABLE
);
83 omap_dmic_write(dmic
, OMAP_DMIC_CTRL_REG
, ctrl
| dmic
->ch_enabled
);
86 static inline void omap_dmic_stop(struct omap_dmic
*dmic
)
88 u32 ctrl
= omap_dmic_read(dmic
, OMAP_DMIC_CTRL_REG
);
89 omap_dmic_write(dmic
, OMAP_DMIC_CTRL_REG
,
90 ctrl
& ~OMAP_DMIC_UP_ENABLE_MASK
);
92 /* Disable DMA request generation */
93 omap_dmic_write(dmic
, OMAP_DMIC_DMAENABLE_CLR_REG
,
94 OMAP_DMIC_DMA_ENABLE
);
98 static inline int dmic_is_enabled(struct omap_dmic
*dmic
)
100 return omap_dmic_read(dmic
, OMAP_DMIC_CTRL_REG
) &
101 OMAP_DMIC_UP_ENABLE_MASK
;
104 static int omap_dmic_dai_startup(struct snd_pcm_substream
*substream
,
105 struct snd_soc_dai
*dai
)
107 struct omap_dmic
*dmic
= snd_soc_dai_get_drvdata(dai
);
110 mutex_lock(&dmic
->mutex
);
117 mutex_unlock(&dmic
->mutex
);
122 static void omap_dmic_dai_shutdown(struct snd_pcm_substream
*substream
,
123 struct snd_soc_dai
*dai
)
125 struct omap_dmic
*dmic
= snd_soc_dai_get_drvdata(dai
);
127 mutex_lock(&dmic
->mutex
);
129 pm_qos_remove_request(&dmic
->pm_qos_req
);
134 mutex_unlock(&dmic
->mutex
);
137 static int omap_dmic_select_divider(struct omap_dmic
*dmic
, int sample_rate
)
139 int divider
= -EINVAL
;
142 * 192KHz rate is only supported with 19.2MHz/3.84MHz clock
145 if (sample_rate
== 192000) {
146 if (dmic
->fclk_freq
== 19200000 && dmic
->out_freq
== 3840000)
147 divider
= 0x6; /* Divider: 5 (192KHz sampling rate) */
150 "invalid clock configuration for 192KHz\n");
155 switch (dmic
->out_freq
) {
157 if (dmic
->fclk_freq
!= 24576000)
159 divider
= 0x4; /* Divider: 16 */
162 switch (dmic
->fclk_freq
) {
164 divider
= 0x5; /* Divider: 5 */
167 divider
= 0x0; /* Divider: 8 */
170 divider
= 0x2; /* Divider: 10 */
177 if (dmic
->fclk_freq
!= 24576000)
179 divider
= 0x3; /* Divider: 8 */
182 if (dmic
->fclk_freq
!= 19200000)
184 divider
= 0x1; /* Divider: 5 (96KHz sampling rate) */
187 dev_err(dmic
->dev
, "invalid out frequency: %dHz\n",
195 dev_err(dmic
->dev
, "invalid out frequency %dHz for %dHz input\n",
196 dmic
->out_freq
, dmic
->fclk_freq
);
200 static int omap_dmic_dai_hw_params(struct snd_pcm_substream
*substream
,
201 struct snd_pcm_hw_params
*params
,
202 struct snd_soc_dai
*dai
)
204 struct omap_dmic
*dmic
= snd_soc_dai_get_drvdata(dai
);
205 struct snd_dmaengine_dai_dma_data
*dma_data
;
208 dmic
->clk_div
= omap_dmic_select_divider(dmic
, params_rate(params
));
209 if (dmic
->clk_div
< 0) {
210 dev_err(dmic
->dev
, "no valid divider for %dHz from %dHz\n",
211 dmic
->out_freq
, dmic
->fclk_freq
);
215 dmic
->ch_enabled
= 0;
216 channels
= params_channels(params
);
219 dmic
->ch_enabled
|= OMAP_DMIC_UP3_ENABLE
;
222 dmic
->ch_enabled
|= OMAP_DMIC_UP2_ENABLE
;
225 dmic
->ch_enabled
|= OMAP_DMIC_UP1_ENABLE
;
228 dev_err(dmic
->dev
, "invalid number of legacy channels\n");
232 /* packet size is threshold * channels */
233 dma_data
= snd_soc_dai_get_dma_data(dai
, substream
);
234 dma_data
->maxburst
= dmic
->threshold
* channels
;
235 dmic
->latency
= (OMAP_DMIC_THRES_MAX
- dmic
->threshold
) * USEC_PER_SEC
/
241 static int omap_dmic_dai_prepare(struct snd_pcm_substream
*substream
,
242 struct snd_soc_dai
*dai
)
244 struct omap_dmic
*dmic
= snd_soc_dai_get_drvdata(dai
);
247 if (pm_qos_request_active(&dmic
->pm_qos_req
))
248 pm_qos_update_request(&dmic
->pm_qos_req
, dmic
->latency
);
250 /* Configure uplink threshold */
251 omap_dmic_write(dmic
, OMAP_DMIC_FIFO_CTRL_REG
, dmic
->threshold
);
253 ctrl
= omap_dmic_read(dmic
, OMAP_DMIC_CTRL_REG
);
255 /* Set dmic out format */
256 ctrl
&= ~(OMAP_DMIC_FORMAT
| OMAP_DMIC_POLAR_MASK
);
257 ctrl
|= (OMAP_DMICOUTFORMAT_LJUST
| OMAP_DMIC_POLAR1
|
258 OMAP_DMIC_POLAR2
| OMAP_DMIC_POLAR3
);
260 /* Configure dmic clock divider */
261 ctrl
&= ~OMAP_DMIC_CLK_DIV_MASK
;
262 ctrl
|= OMAP_DMIC_CLK_DIV(dmic
->clk_div
);
264 omap_dmic_write(dmic
, OMAP_DMIC_CTRL_REG
, ctrl
);
266 omap_dmic_write(dmic
, OMAP_DMIC_CTRL_REG
,
267 ctrl
| OMAP_DMICOUTFORMAT_LJUST
| OMAP_DMIC_POLAR1
|
268 OMAP_DMIC_POLAR2
| OMAP_DMIC_POLAR3
);
273 static int omap_dmic_dai_trigger(struct snd_pcm_substream
*substream
,
274 int cmd
, struct snd_soc_dai
*dai
)
276 struct omap_dmic
*dmic
= snd_soc_dai_get_drvdata(dai
);
279 case SNDRV_PCM_TRIGGER_START
:
280 omap_dmic_start(dmic
);
282 case SNDRV_PCM_TRIGGER_STOP
:
283 omap_dmic_stop(dmic
);
292 static int omap_dmic_select_fclk(struct omap_dmic
*dmic
, int clk_id
,
295 struct clk
*parent_clk
, *mux
;
296 char *parent_clk_name
;
306 dev_err(dmic
->dev
, "invalid input frequency: %dHz\n", freq
);
311 if (dmic
->sysclk
== clk_id
) {
312 dmic
->fclk_freq
= freq
;
316 /* re-parent not allowed if a stream is ongoing */
317 if (dmic
->active
&& dmic_is_enabled(dmic
)) {
318 dev_err(dmic
->dev
, "can't re-parent when DMIC active\n");
323 case OMAP_DMIC_SYSCLK_PAD_CLKS
:
324 parent_clk_name
= "pad_clks_ck";
326 case OMAP_DMIC_SYSCLK_SLIMBLUS_CLKS
:
327 parent_clk_name
= "slimbus_clk";
329 case OMAP_DMIC_SYSCLK_SYNC_MUX_CLKS
:
330 parent_clk_name
= "dmic_sync_mux_ck";
333 dev_err(dmic
->dev
, "fclk clk_id (%d) not supported\n", clk_id
);
337 parent_clk
= clk_get(dmic
->dev
, parent_clk_name
);
338 if (IS_ERR(parent_clk
)) {
339 dev_err(dmic
->dev
, "can't get %s\n", parent_clk_name
);
343 mux
= clk_get_parent(dmic
->fclk
);
345 dev_err(dmic
->dev
, "can't get fck mux parent\n");
350 mutex_lock(&dmic
->mutex
);
352 /* disable clock while reparenting */
353 pm_runtime_put_sync(dmic
->dev
);
354 ret
= clk_set_parent(mux
, parent_clk
);
355 pm_runtime_get_sync(dmic
->dev
);
357 ret
= clk_set_parent(mux
, parent_clk
);
359 mutex_unlock(&dmic
->mutex
);
362 dev_err(dmic
->dev
, "re-parent failed\n");
366 dmic
->sysclk
= clk_id
;
367 dmic
->fclk_freq
= freq
;
376 static int omap_dmic_select_outclk(struct omap_dmic
*dmic
, int clk_id
,
381 if (clk_id
!= OMAP_DMIC_ABE_DMIC_CLK
) {
382 dev_err(dmic
->dev
, "output clk_id (%d) not supported\n",
392 dmic
->out_freq
= freq
;
395 dev_err(dmic
->dev
, "invalid out frequency: %dHz\n", freq
);
403 static int omap_dmic_set_dai_sysclk(struct snd_soc_dai
*dai
, int clk_id
,
404 unsigned int freq
, int dir
)
406 struct omap_dmic
*dmic
= snd_soc_dai_get_drvdata(dai
);
408 if (dir
== SND_SOC_CLOCK_IN
)
409 return omap_dmic_select_fclk(dmic
, clk_id
, freq
);
410 else if (dir
== SND_SOC_CLOCK_OUT
)
411 return omap_dmic_select_outclk(dmic
, clk_id
, freq
);
413 dev_err(dmic
->dev
, "invalid clock direction (%d)\n", dir
);
417 static const struct snd_soc_dai_ops omap_dmic_dai_ops
= {
418 .startup
= omap_dmic_dai_startup
,
419 .shutdown
= omap_dmic_dai_shutdown
,
420 .hw_params
= omap_dmic_dai_hw_params
,
421 .prepare
= omap_dmic_dai_prepare
,
422 .trigger
= omap_dmic_dai_trigger
,
423 .set_sysclk
= omap_dmic_set_dai_sysclk
,
426 static int omap_dmic_probe(struct snd_soc_dai
*dai
)
428 struct omap_dmic
*dmic
= snd_soc_dai_get_drvdata(dai
);
430 pm_runtime_enable(dmic
->dev
);
432 /* Disable lines while request is ongoing */
433 pm_runtime_get_sync(dmic
->dev
);
434 omap_dmic_write(dmic
, OMAP_DMIC_CTRL_REG
, 0x00);
435 pm_runtime_put_sync(dmic
->dev
);
437 /* Configure DMIC threshold value */
438 dmic
->threshold
= OMAP_DMIC_THRES_MAX
- 3;
440 snd_soc_dai_init_dma_data(dai
, NULL
, &dmic
->dma_data
);
445 static int omap_dmic_remove(struct snd_soc_dai
*dai
)
447 struct omap_dmic
*dmic
= snd_soc_dai_get_drvdata(dai
);
449 pm_runtime_disable(dmic
->dev
);
454 static struct snd_soc_dai_driver omap_dmic_dai
= {
456 .probe
= omap_dmic_probe
,
457 .remove
= omap_dmic_remove
,
461 .rates
= SNDRV_PCM_RATE_96000
| SNDRV_PCM_RATE_192000
,
462 .formats
= SNDRV_PCM_FMTBIT_S32_LE
,
465 .ops
= &omap_dmic_dai_ops
,
468 static const struct snd_soc_component_driver omap_dmic_component
= {
472 static int asoc_dmic_probe(struct platform_device
*pdev
)
474 struct omap_dmic
*dmic
;
475 struct resource
*res
;
478 dmic
= devm_kzalloc(&pdev
->dev
, sizeof(struct omap_dmic
), GFP_KERNEL
);
482 platform_set_drvdata(pdev
, dmic
);
483 dmic
->dev
= &pdev
->dev
;
484 dmic
->sysclk
= OMAP_DMIC_SYSCLK_SYNC_MUX_CLKS
;
486 mutex_init(&dmic
->mutex
);
488 dmic
->fclk
= devm_clk_get(dmic
->dev
, "fck");
489 if (IS_ERR(dmic
->fclk
)) {
490 dev_err(dmic
->dev
, "cant get fck\n");
494 res
= platform_get_resource_byname(pdev
, IORESOURCE_MEM
, "dma");
496 dev_err(dmic
->dev
, "invalid dma memory resource\n");
499 dmic
->dma_data
.addr
= res
->start
+ OMAP_DMIC_DATA_REG
;
501 dmic
->dma_data
.filter_data
= "up_link";
503 res
= platform_get_resource_byname(pdev
, IORESOURCE_MEM
, "mpu");
504 dmic
->io_base
= devm_ioremap_resource(&pdev
->dev
, res
);
505 if (IS_ERR(dmic
->io_base
))
506 return PTR_ERR(dmic
->io_base
);
509 ret
= devm_snd_soc_register_component(&pdev
->dev
,
510 &omap_dmic_component
,
515 ret
= sdma_pcm_platform_register(&pdev
->dev
, NULL
, "up_link");
522 static const struct of_device_id omap_dmic_of_match
[] = {
523 { .compatible
= "ti,omap4-dmic", },
526 MODULE_DEVICE_TABLE(of
, omap_dmic_of_match
);
528 static struct platform_driver asoc_dmic_driver
= {
531 .of_match_table
= omap_dmic_of_match
,
533 .probe
= asoc_dmic_probe
,
536 module_platform_driver(asoc_dmic_driver
);
538 MODULE_ALIAS("platform:omap-dmic");
539 MODULE_AUTHOR("Peter Ujfalusi <peter.ujfalusi@ti.com>");
540 MODULE_DESCRIPTION("OMAP DMIC ASoC Interface");
541 MODULE_LICENSE("GPL");