blob: 07b8b7bc9d20f4e3cceebcb3dbb16492f51ddc46 [file] [log] [blame]
Jarkko Nikula2e747962008-04-25 13:55:19 +02001/*
2 * omap-pcm.c -- ALSA PCM interface for the OMAP SoC
3 *
4 * Copyright (C) 2008 Nokia Corporation
5 *
Jarkko Nikula7ec41ee2011-08-11 15:44:57 +03006 * Contact: Jarkko Nikula <jarkko.nikula@bitmer.com>
Peter Ujfalusi1c7687b2011-05-03 18:14:43 +03007 * Peter Ujfalusi <peter.ujfalusi@ti.com>
Jarkko Nikula2e747962008-04-25 13:55:19 +02008 *
9 * This program is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU General Public License
11 * version 2 as published by the Free Software Foundation.
12 *
13 * This program is distributed in the hope that it will be useful, but
14 * WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
21 * 02110-1301 USA
22 *
23 */
24
25#include <linux/dma-mapping.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090026#include <linux/slab.h>
Paul Gortmakerda155d52011-07-15 12:38:28 -040027#include <linux/module.h>
Peter Ujfalusi946cc362012-09-14 15:05:58 +030028#include <linux/omap-dma.h>
Jarkko Nikula2e747962008-04-25 13:55:19 +020029#include <sound/core.h>
30#include <sound/pcm.h>
31#include <sound/pcm_params.h>
Peter Ujfalusi946cc362012-09-14 15:05:58 +030032#include <sound/dmaengine_pcm.h>
Jarkko Nikula2e747962008-04-25 13:55:19 +020033#include <sound/soc.h>
34
Tony Lindgren27615a92012-10-15 16:24:23 -070035#ifdef CONFIG_ARCH_OMAP1
36#define pcm_omap1510() cpu_is_omap1510()
37#else
38#define pcm_omap1510() 0
39#endif
40
Jarkko Nikula2e747962008-04-25 13:55:19 +020041static const struct snd_pcm_hardware omap_pcm_hardware = {
42 .info = SNDRV_PCM_INFO_MMAP |
43 SNDRV_PCM_INFO_MMAP_VALID |
44 SNDRV_PCM_INFO_INTERLEAVED |
45 SNDRV_PCM_INFO_PAUSE |
Peter Ujfalusib4173822011-05-12 13:04:55 +030046 SNDRV_PCM_INFO_RESUME |
47 SNDRV_PCM_INFO_NO_PERIOD_WAKEUP,
Jarkko Nikula2e747962008-04-25 13:55:19 +020048 .period_bytes_min = 32,
49 .period_bytes_max = 64 * 1024,
50 .periods_min = 2,
51 .periods_max = 255,
52 .buffer_bytes_max = 128 * 1024,
53};
54
Jarkko Nikula2e747962008-04-25 13:55:19 +020055/* this may get called several times by oss emulation */
56static int omap_pcm_hw_params(struct snd_pcm_substream *substream,
57 struct snd_pcm_hw_params *params)
58{
59 struct snd_pcm_runtime *runtime = substream->runtime;
60 struct snd_soc_pcm_runtime *rtd = substream->private_data;
Daniel Mack5f712b22010-03-22 10:11:15 +010061 struct omap_pcm_dma_data *dma_data;
Peter Ujfalusi946cc362012-09-14 15:05:58 +030062 struct dma_slave_config config;
63 struct dma_chan *chan;
Jarkko Nikula2e747962008-04-25 13:55:19 +020064 int err = 0;
65
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +000066 dma_data = snd_soc_dai_get_dma_data(rtd->cpu_dai, substream);
Daniel Mack5f712b22010-03-22 10:11:15 +010067
Joonyoung Shim1b4246a2009-04-22 10:56:50 +090068 /* return if this is a bufferless transfer e.g.
69 * codec <--> BT codec or GSM modem -- lg FIXME */
Jarkko Nikula2e747962008-04-25 13:55:19 +020070 if (!dma_data)
Joonyoung Shim1b4246a2009-04-22 10:56:50 +090071 return 0;
Jarkko Nikula2e747962008-04-25 13:55:19 +020072
73 snd_pcm_set_runtime_buffer(substream, &substream->dma_buffer);
74 runtime->dma_bytes = params_buffer_bytes(params);
75
Peter Ujfalusi946cc362012-09-14 15:05:58 +030076 chan = snd_dmaengine_pcm_get_chan(substream);
77 if (!chan)
78 return -EINVAL;
79
80 /* fills in addr_width and direction */
81 err = snd_hwparams_to_dma_slave_config(substream, params, &config);
82 if (err)
83 return err;
84
Lars-Peter Clausen09ae3aa2013-04-03 11:06:05 +020085 snd_dmaengine_pcm_set_config_from_dai_data(substream,
86 snd_soc_dai_get_dma_data(rtd->cpu_dai, substream),
87 &config);
Peter Ujfalusi946cc362012-09-14 15:05:58 +030088
89 return dmaengine_slave_config(chan, &config);
Jarkko Nikula2e747962008-04-25 13:55:19 +020090}
91
92static int omap_pcm_hw_free(struct snd_pcm_substream *substream)
93{
Jarkko Nikula2e747962008-04-25 13:55:19 +020094 snd_pcm_set_runtime_buffer(substream, NULL);
Jarkko Nikula2e747962008-04-25 13:55:19 +020095 return 0;
96}
97
Jarkko Nikula2e747962008-04-25 13:55:19 +020098static snd_pcm_uframes_t omap_pcm_pointer(struct snd_pcm_substream *substream)
99{
Jarkko Nikula2e747962008-04-25 13:55:19 +0200100 snd_pcm_uframes_t offset;
101
Tony Lindgren27615a92012-10-15 16:24:23 -0700102 if (pcm_omap1510())
Peter Ujfalusi946cc362012-09-14 15:05:58 +0300103 offset = snd_dmaengine_pcm_pointer_no_residue(substream);
104 else
105 offset = snd_dmaengine_pcm_pointer(substream);
Jarkko Nikula2e747962008-04-25 13:55:19 +0200106
107 return offset;
108}
109
110static int omap_pcm_open(struct snd_pcm_substream *substream)
111{
Peter Ujfalusi946cc362012-09-14 15:05:58 +0300112 struct snd_soc_pcm_runtime *rtd = substream->private_data;
Lars-Peter Clausen09ae3aa2013-04-03 11:06:05 +0200113 struct snd_dmaengine_dai_dma_data *dma_data;
Peter Ujfalusif6becf02013-07-11 14:35:43 +0200114 int ret;
Jarkko Nikula2e747962008-04-25 13:55:19 +0200115
116 snd_soc_set_runtime_hwparams(substream, &omap_pcm_hardware);
117
Peter Ujfalusi946cc362012-09-14 15:05:58 +0300118 dma_data = snd_soc_dai_get_dma_data(rtd->cpu_dai, substream);
Peter Ujfalusia92b5312013-02-05 13:43:39 +0100119
Peter Ujfalusif6becf02013-07-11 14:35:43 +0200120 /* DT boot: filter_data is the DMA name */
121 if (rtd->cpu_dai->dev->of_node) {
122 struct dma_chan *chan;
123
124 chan = dma_request_slave_channel(rtd->cpu_dai->dev,
125 dma_data->filter_data);
126 ret = snd_dmaengine_pcm_open(substream, chan);
127 } else {
128 ret = snd_dmaengine_pcm_open_request_chan(substream,
129 omap_dma_filter_fn,
130 dma_data->filter_data);
131 }
132 return ret;
Jarkko Nikula2e747962008-04-25 13:55:19 +0200133}
134
Jarkko Nikula2e747962008-04-25 13:55:19 +0200135static int omap_pcm_mmap(struct snd_pcm_substream *substream,
136 struct vm_area_struct *vma)
137{
138 struct snd_pcm_runtime *runtime = substream->runtime;
139
140 return dma_mmap_writecombine(substream->pcm->card->dev, vma,
141 runtime->dma_area,
142 runtime->dma_addr,
143 runtime->dma_bytes);
144}
145
Mark Brownb2a19d02009-01-17 19:14:26 +0000146static struct snd_pcm_ops omap_pcm_ops = {
Jarkko Nikula2e747962008-04-25 13:55:19 +0200147 .open = omap_pcm_open,
Lars-Peter Clausen7c1c1d42013-04-15 19:19:48 +0200148 .close = snd_dmaengine_pcm_close_release_chan,
Jarkko Nikula2e747962008-04-25 13:55:19 +0200149 .ioctl = snd_pcm_lib_ioctl,
150 .hw_params = omap_pcm_hw_params,
151 .hw_free = omap_pcm_hw_free,
Lars-Peter Clausenabe99372013-03-25 16:58:16 +0100152 .trigger = snd_dmaengine_pcm_trigger,
Jarkko Nikula2e747962008-04-25 13:55:19 +0200153 .pointer = omap_pcm_pointer,
154 .mmap = omap_pcm_mmap,
155};
156
Jarkko Nikula2e747962008-04-25 13:55:19 +0200157static int omap_pcm_preallocate_dma_buffer(struct snd_pcm *pcm,
158 int stream)
159{
160 struct snd_pcm_substream *substream = pcm->streams[stream].substream;
161 struct snd_dma_buffer *buf = &substream->dma_buffer;
162 size_t size = omap_pcm_hardware.buffer_bytes_max;
163
164 buf->dev.type = SNDRV_DMA_TYPE_DEV;
165 buf->dev.dev = pcm->card->dev;
166 buf->private_data = NULL;
167 buf->area = dma_alloc_writecombine(pcm->card->dev, size,
168 &buf->addr, GFP_KERNEL);
169 if (!buf->area)
170 return -ENOMEM;
171
172 buf->bytes = size;
173 return 0;
174}
175
176static void omap_pcm_free_dma_buffers(struct snd_pcm *pcm)
177{
178 struct snd_pcm_substream *substream;
179 struct snd_dma_buffer *buf;
180 int stream;
181
182 for (stream = 0; stream < 2; stream++) {
183 substream = pcm->streams[stream].substream;
184 if (!substream)
185 continue;
186
187 buf = &substream->dma_buffer;
188 if (!buf->area)
189 continue;
190
191 dma_free_writecombine(pcm->card->dev, buf->bytes,
192 buf->area, buf->addr);
193 buf->area = NULL;
194 }
195}
196
Liam Girdwood552d1ef2011-06-07 16:08:33 +0100197static int omap_pcm_new(struct snd_soc_pcm_runtime *rtd)
Jarkko Nikula2e747962008-04-25 13:55:19 +0200198{
Liam Girdwood552d1ef2011-06-07 16:08:33 +0100199 struct snd_card *card = rtd->card->snd_card;
Liam Girdwood552d1ef2011-06-07 16:08:33 +0100200 struct snd_pcm *pcm = rtd->pcm;
Russell Kingc9bd5e62013-06-27 12:53:37 +0100201 int ret;
Jarkko Nikula2e747962008-04-25 13:55:19 +0200202
Russell Kingc9bd5e62013-06-27 12:53:37 +0100203 ret = dma_coerce_mask_and_coherent(card->dev, DMA_BIT_MASK(64));
204 if (ret)
205 return ret;
Jarkko Nikula2e747962008-04-25 13:55:19 +0200206
Joachim Eastwood25e9e752012-01-01 01:58:44 +0100207 if (pcm->streams[SNDRV_PCM_STREAM_PLAYBACK].substream) {
Jarkko Nikula2e747962008-04-25 13:55:19 +0200208 ret = omap_pcm_preallocate_dma_buffer(pcm,
209 SNDRV_PCM_STREAM_PLAYBACK);
210 if (ret)
211 goto out;
212 }
213
Joachim Eastwood25e9e752012-01-01 01:58:44 +0100214 if (pcm->streams[SNDRV_PCM_STREAM_CAPTURE].substream) {
Jarkko Nikula2e747962008-04-25 13:55:19 +0200215 ret = omap_pcm_preallocate_dma_buffer(pcm,
216 SNDRV_PCM_STREAM_CAPTURE);
217 if (ret)
218 goto out;
219 }
220
221out:
Oleg Matcovschifad93652012-04-24 19:02:02 -0700222 /* free preallocated buffers in case of error */
223 if (ret)
224 omap_pcm_free_dma_buffers(pcm);
225
Jarkko Nikula2e747962008-04-25 13:55:19 +0200226 return ret;
227}
228
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000229static struct snd_soc_platform_driver omap_soc_platform = {
230 .ops = &omap_pcm_ops,
Jarkko Nikula2e747962008-04-25 13:55:19 +0200231 .pcm_new = omap_pcm_new,
232 .pcm_free = omap_pcm_free_dma_buffers,
233};
Jarkko Nikula2e747962008-04-25 13:55:19 +0200234
Bill Pemberton7ff60002012-12-07 09:26:29 -0500235static int omap_pcm_probe(struct platform_device *pdev)
Mark Brown958e7922008-12-03 19:58:17 +0000236{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000237 return snd_soc_register_platform(&pdev->dev,
238 &omap_soc_platform);
Mark Brown958e7922008-12-03 19:58:17 +0000239}
Mark Brown958e7922008-12-03 19:58:17 +0000240
Bill Pemberton7ff60002012-12-07 09:26:29 -0500241static int omap_pcm_remove(struct platform_device *pdev)
Mark Brown958e7922008-12-03 19:58:17 +0000242{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000243 snd_soc_unregister_platform(&pdev->dev);
244 return 0;
Mark Brown958e7922008-12-03 19:58:17 +0000245}
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000246
247static struct platform_driver omap_pcm_driver = {
248 .driver = {
249 .name = "omap-pcm-audio",
250 .owner = THIS_MODULE,
251 },
252
253 .probe = omap_pcm_probe,
Bill Pemberton7ff60002012-12-07 09:26:29 -0500254 .remove = omap_pcm_remove,
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000255};
256
Axel Linbeda5bf52011-11-25 10:12:16 +0800257module_platform_driver(omap_pcm_driver);
Mark Brown958e7922008-12-03 19:58:17 +0000258
Jarkko Nikula7ec41ee2011-08-11 15:44:57 +0300259MODULE_AUTHOR("Jarkko Nikula <jarkko.nikula@bitmer.com>");
Jarkko Nikula2e747962008-04-25 13:55:19 +0200260MODULE_DESCRIPTION("OMAP PCM DMA module");
261MODULE_LICENSE("GPL");
Guillaume Gardet5e70b7fc2012-07-12 15:08:16 +0200262MODULE_ALIAS("platform:omap-pcm-audio");