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"
48 void __iomem *io_base;
59 struct snd_dmaengine_dai_dma_data dma_data;
62 static inline void omap_dmic_write(struct omap_dmic *dmic, u16 reg, u32 val)
64 __raw_writel(val, dmic->io_base + reg);
67 static inline int omap_dmic_read(struct omap_dmic *dmic, u16 reg)
69 return __raw_readl(dmic->io_base + reg);
72 static inline void omap_dmic_start(struct omap_dmic *dmic)
74 u32 ctrl = omap_dmic_read(dmic, OMAP_DMIC_CTRL_REG);
76 /* Configure DMA controller */
77 omap_dmic_write(dmic, OMAP_DMIC_DMAENABLE_SET_REG,
78 OMAP_DMIC_DMA_ENABLE);
80 omap_dmic_write(dmic, OMAP_DMIC_CTRL_REG, ctrl | dmic->ch_enabled);
83 static inline void omap_dmic_stop(struct omap_dmic *dmic)
85 u32 ctrl = omap_dmic_read(dmic, OMAP_DMIC_CTRL_REG);
86 omap_dmic_write(dmic, OMAP_DMIC_CTRL_REG,
87 ctrl & ~OMAP_DMIC_UP_ENABLE_MASK);
89 /* Disable DMA request generation */
90 omap_dmic_write(dmic, OMAP_DMIC_DMAENABLE_CLR_REG,
91 OMAP_DMIC_DMA_ENABLE);
95 static inline int dmic_is_enabled(struct omap_dmic *dmic)
97 return omap_dmic_read(dmic, OMAP_DMIC_CTRL_REG) &
98 OMAP_DMIC_UP_ENABLE_MASK;
101 static int omap_dmic_dai_startup(struct snd_pcm_substream *substream,
102 struct snd_soc_dai *dai)
104 struct omap_dmic *dmic = snd_soc_dai_get_drvdata(dai);
107 mutex_lock(&dmic->mutex);
114 mutex_unlock(&dmic->mutex);
116 snd_soc_dai_set_dma_data(dai, substream, &dmic->dma_data);
120 static void omap_dmic_dai_shutdown(struct snd_pcm_substream *substream,
121 struct snd_soc_dai *dai)
123 struct omap_dmic *dmic = snd_soc_dai_get_drvdata(dai);
125 mutex_lock(&dmic->mutex);
130 mutex_unlock(&dmic->mutex);
133 static int omap_dmic_select_divider(struct omap_dmic *dmic, int sample_rate)
135 int divider = -EINVAL;
138 * 192KHz rate is only supported with 19.2MHz/3.84MHz clock
141 if (sample_rate == 192000) {
142 if (dmic->fclk_freq == 19200000 && dmic->out_freq == 3840000)
143 divider = 0x6; /* Divider: 5 (192KHz sampling rate) */
146 "invalid clock configuration for 192KHz\n");
151 switch (dmic->out_freq) {
153 if (dmic->fclk_freq != 24576000)
155 divider = 0x4; /* Divider: 16 */
158 switch (dmic->fclk_freq) {
160 divider = 0x5; /* Divider: 5 */
163 divider = 0x0; /* Divider: 8 */
166 divider = 0x2; /* Divider: 10 */
173 if (dmic->fclk_freq != 24576000)
175 divider = 0x3; /* Divider: 8 */
178 if (dmic->fclk_freq != 19200000)
180 divider = 0x1; /* Divider: 5 (96KHz sampling rate) */
183 dev_err(dmic->dev, "invalid out frequency: %dHz\n",
191 dev_err(dmic->dev, "invalid out frequency %dHz for %dHz input\n",
192 dmic->out_freq, dmic->fclk_freq);
196 static int omap_dmic_dai_hw_params(struct snd_pcm_substream *substream,
197 struct snd_pcm_hw_params *params,
198 struct snd_soc_dai *dai)
200 struct omap_dmic *dmic = snd_soc_dai_get_drvdata(dai);
201 struct snd_dmaengine_dai_dma_data *dma_data;
204 dmic->clk_div = omap_dmic_select_divider(dmic, params_rate(params));
205 if (dmic->clk_div < 0) {
206 dev_err(dmic->dev, "no valid divider for %dHz from %dHz\n",
207 dmic->out_freq, dmic->fclk_freq);
211 dmic->ch_enabled = 0;
212 channels = params_channels(params);
215 dmic->ch_enabled |= OMAP_DMIC_UP3_ENABLE;
217 dmic->ch_enabled |= OMAP_DMIC_UP2_ENABLE;
219 dmic->ch_enabled |= OMAP_DMIC_UP1_ENABLE;
222 dev_err(dmic->dev, "invalid number of legacy channels\n");
226 /* packet size is threshold * channels */
227 dma_data = snd_soc_dai_get_dma_data(dai, substream);
228 dma_data->maxburst = dmic->threshold * channels;
233 static int omap_dmic_dai_prepare(struct snd_pcm_substream *substream,
234 struct snd_soc_dai *dai)
236 struct omap_dmic *dmic = snd_soc_dai_get_drvdata(dai);
239 /* Configure uplink threshold */
240 omap_dmic_write(dmic, OMAP_DMIC_FIFO_CTRL_REG, dmic->threshold);
242 ctrl = omap_dmic_read(dmic, OMAP_DMIC_CTRL_REG);
244 /* Set dmic out format */
245 ctrl &= ~(OMAP_DMIC_FORMAT | OMAP_DMIC_POLAR_MASK);
246 ctrl |= (OMAP_DMICOUTFORMAT_LJUST | OMAP_DMIC_POLAR1 |
247 OMAP_DMIC_POLAR2 | OMAP_DMIC_POLAR3);
249 /* Configure dmic clock divider */
250 ctrl &= ~OMAP_DMIC_CLK_DIV_MASK;
251 ctrl |= OMAP_DMIC_CLK_DIV(dmic->clk_div);
253 omap_dmic_write(dmic, OMAP_DMIC_CTRL_REG, ctrl);
255 omap_dmic_write(dmic, OMAP_DMIC_CTRL_REG,
256 ctrl | OMAP_DMICOUTFORMAT_LJUST | OMAP_DMIC_POLAR1 |
257 OMAP_DMIC_POLAR2 | OMAP_DMIC_POLAR3);
262 static int omap_dmic_dai_trigger(struct snd_pcm_substream *substream,
263 int cmd, struct snd_soc_dai *dai)
265 struct omap_dmic *dmic = snd_soc_dai_get_drvdata(dai);
268 case SNDRV_PCM_TRIGGER_START:
269 omap_dmic_start(dmic);
271 case SNDRV_PCM_TRIGGER_STOP:
272 omap_dmic_stop(dmic);
281 static int omap_dmic_select_fclk(struct omap_dmic *dmic, int clk_id,
284 struct clk *parent_clk;
285 char *parent_clk_name;
295 dev_err(dmic->dev, "invalid input frequency: %dHz\n", freq);
300 if (dmic->sysclk == clk_id) {
301 dmic->fclk_freq = freq;
305 /* re-parent not allowed if a stream is ongoing */
306 if (dmic->active && dmic_is_enabled(dmic)) {
307 dev_err(dmic->dev, "can't re-parent when DMIC active\n");
312 case OMAP_DMIC_SYSCLK_PAD_CLKS:
313 parent_clk_name = "pad_clks_ck";
315 case OMAP_DMIC_SYSCLK_SLIMBLUS_CLKS:
316 parent_clk_name = "slimbus_clk";
318 case OMAP_DMIC_SYSCLK_SYNC_MUX_CLKS:
319 parent_clk_name = "dmic_sync_mux_ck";
322 dev_err(dmic->dev, "fclk clk_id (%d) not supported\n", clk_id);
326 parent_clk = clk_get(dmic->dev, parent_clk_name);
327 if (IS_ERR(parent_clk)) {
328 dev_err(dmic->dev, "can't get %s\n", parent_clk_name);
332 mutex_lock(&dmic->mutex);
334 /* disable clock while reparenting */
335 pm_runtime_put_sync(dmic->dev);
336 ret = clk_set_parent(dmic->fclk, parent_clk);
337 pm_runtime_get_sync(dmic->dev);
339 ret = clk_set_parent(dmic->fclk, parent_clk);
341 mutex_unlock(&dmic->mutex);
344 dev_err(dmic->dev, "re-parent failed\n");
348 dmic->sysclk = clk_id;
349 dmic->fclk_freq = freq;
357 static int omap_dmic_select_outclk(struct omap_dmic *dmic, int clk_id,
362 if (clk_id != OMAP_DMIC_ABE_DMIC_CLK) {
363 dev_err(dmic->dev, "output clk_id (%d) not supported\n",
373 dmic->out_freq = freq;
376 dev_err(dmic->dev, "invalid out frequency: %dHz\n", freq);
384 static int omap_dmic_set_dai_sysclk(struct snd_soc_dai *dai, int clk_id,
385 unsigned int freq, int dir)
387 struct omap_dmic *dmic = snd_soc_dai_get_drvdata(dai);
389 if (dir == SND_SOC_CLOCK_IN)
390 return omap_dmic_select_fclk(dmic, clk_id, freq);
391 else if (dir == SND_SOC_CLOCK_OUT)
392 return omap_dmic_select_outclk(dmic, clk_id, freq);
394 dev_err(dmic->dev, "invalid clock direction (%d)\n", dir);
398 static const struct snd_soc_dai_ops omap_dmic_dai_ops = {
399 .startup = omap_dmic_dai_startup,
400 .shutdown = omap_dmic_dai_shutdown,
401 .hw_params = omap_dmic_dai_hw_params,
402 .prepare = omap_dmic_dai_prepare,
403 .trigger = omap_dmic_dai_trigger,
404 .set_sysclk = omap_dmic_set_dai_sysclk,
407 static int omap_dmic_probe(struct snd_soc_dai *dai)
409 struct omap_dmic *dmic = snd_soc_dai_get_drvdata(dai);
411 pm_runtime_enable(dmic->dev);
413 /* Disable lines while request is ongoing */
414 pm_runtime_get_sync(dmic->dev);
415 omap_dmic_write(dmic, OMAP_DMIC_CTRL_REG, 0x00);
416 pm_runtime_put_sync(dmic->dev);
418 /* Configure DMIC threshold value */
419 dmic->threshold = OMAP_DMIC_THRES_MAX - 3;
423 static int omap_dmic_remove(struct snd_soc_dai *dai)
425 struct omap_dmic *dmic = snd_soc_dai_get_drvdata(dai);
427 pm_runtime_disable(dmic->dev);
432 static struct snd_soc_dai_driver omap_dmic_dai = {
434 .probe = omap_dmic_probe,
435 .remove = omap_dmic_remove,
439 .rates = SNDRV_PCM_RATE_96000 | SNDRV_PCM_RATE_192000,
440 .formats = SNDRV_PCM_FMTBIT_S32_LE,
443 .ops = &omap_dmic_dai_ops,
446 static const struct snd_soc_component_driver omap_dmic_component = {
450 static int asoc_dmic_probe(struct platform_device *pdev)
452 struct omap_dmic *dmic;
453 struct resource *res;
456 dmic = devm_kzalloc(&pdev->dev, sizeof(struct omap_dmic), GFP_KERNEL);
460 platform_set_drvdata(pdev, dmic);
461 dmic->dev = &pdev->dev;
462 dmic->sysclk = OMAP_DMIC_SYSCLK_SYNC_MUX_CLKS;
464 mutex_init(&dmic->mutex);
466 dmic->fclk = clk_get(dmic->dev, "fck");
467 if (IS_ERR(dmic->fclk)) {
468 dev_err(dmic->dev, "cant get fck\n");
472 res = platform_get_resource_byname(pdev, IORESOURCE_MEM, "dma");
474 dev_err(dmic->dev, "invalid dma memory resource\n");
478 dmic->dma_data.addr = res->start + OMAP_DMIC_DATA_REG;
480 dmic->dma_data.filter_data = "up_link";
482 res = platform_get_resource_byname(pdev, IORESOURCE_MEM, "mpu");
483 dmic->io_base = devm_ioremap_resource(&pdev->dev, res);
484 if (IS_ERR(dmic->io_base)) {
485 ret = PTR_ERR(dmic->io_base);
490 ret = snd_soc_register_component(&pdev->dev, &omap_dmic_component,
502 static int asoc_dmic_remove(struct platform_device *pdev)
504 struct omap_dmic *dmic = platform_get_drvdata(pdev);
506 snd_soc_unregister_component(&pdev->dev);
512 static const struct of_device_id omap_dmic_of_match[] = {
513 { .compatible = "ti,omap4-dmic", },
516 MODULE_DEVICE_TABLE(of, omap_dmic_of_match);
518 static struct platform_driver asoc_dmic_driver = {
521 .owner = THIS_MODULE,
522 .of_match_table = omap_dmic_of_match,
524 .probe = asoc_dmic_probe,
525 .remove = asoc_dmic_remove,
528 module_platform_driver(asoc_dmic_driver);
530 MODULE_ALIAS("platform:omap-dmic");
531 MODULE_AUTHOR("Peter Ujfalusi <peter.ujfalusi@ti.com>");
532 MODULE_DESCRIPTION("OMAP DMIC ASoC Interface");
533 MODULE_LICENSE("GPL");