blob: a84f677234f08c5bd1ddaa7cd4a444111d4d8cf5 [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>
Lars-Peter Clausen76a77f42014-06-19 09:40:29 +020034#include <sound/omap-pcm.h>
Jarkko Nikula2e747962008-04-25 13:55:19 +020035
Tony Lindgren27615a92012-10-15 16:24:23 -070036#ifdef CONFIG_ARCH_OMAP1
37#define pcm_omap1510() cpu_is_omap1510()
38#else
39#define pcm_omap1510() 0
40#endif
41
Jyri Sarha6742e152015-03-03 13:28:53 +020042static struct snd_pcm_hardware omap_pcm_hardware = {
Jarkko Nikula2e747962008-04-25 13:55:19 +020043 .info = SNDRV_PCM_INFO_MMAP |
44 SNDRV_PCM_INFO_MMAP_VALID |
45 SNDRV_PCM_INFO_INTERLEAVED |
46 SNDRV_PCM_INFO_PAUSE |
Peter Ujfalusib4173822011-05-12 13:04:55 +030047 SNDRV_PCM_INFO_RESUME |
48 SNDRV_PCM_INFO_NO_PERIOD_WAKEUP,
Jarkko Nikula2e747962008-04-25 13:55:19 +020049 .period_bytes_min = 32,
50 .period_bytes_max = 64 * 1024,
51 .periods_min = 2,
52 .periods_max = 255,
53 .buffer_bytes_max = 128 * 1024,
54};
55
Jyri Sarha6742e152015-03-03 13:28:53 +020056/* sDMA supports only 1, 2, and 4 byte transfer elements. */
57static void omap_pcm_limit_supported_formats(void)
58{
59 int i;
60
61 for (i = 0; i < SNDRV_PCM_FORMAT_LAST; i++) {
62 switch (snd_pcm_format_physical_width(i)) {
63 case 8:
64 case 16:
65 case 32:
66 omap_pcm_hardware.formats |= (1LL << i);
67 break;
68 default:
69 break;
70 }
71 }
72}
73
Jarkko Nikula2e747962008-04-25 13:55:19 +020074/* this may get called several times by oss emulation */
75static int omap_pcm_hw_params(struct snd_pcm_substream *substream,
76 struct snd_pcm_hw_params *params)
77{
78 struct snd_pcm_runtime *runtime = substream->runtime;
79 struct snd_soc_pcm_runtime *rtd = substream->private_data;
Daniel Mack5f712b22010-03-22 10:11:15 +010080 struct omap_pcm_dma_data *dma_data;
Peter Ujfalusi946cc362012-09-14 15:05:58 +030081 struct dma_slave_config config;
82 struct dma_chan *chan;
Jarkko Nikula2e747962008-04-25 13:55:19 +020083 int err = 0;
84
Jim Lodes989ff772016-04-25 11:10:07 -050085 memset(&config, 0x00, sizeof(config));
86
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +000087 dma_data = snd_soc_dai_get_dma_data(rtd->cpu_dai, substream);
Daniel Mack5f712b22010-03-22 10:11:15 +010088
Joonyoung Shim1b4246a2009-04-22 10:56:50 +090089 /* return if this is a bufferless transfer e.g.
90 * codec <--> BT codec or GSM modem -- lg FIXME */
Jarkko Nikula2e747962008-04-25 13:55:19 +020091 if (!dma_data)
Joonyoung Shim1b4246a2009-04-22 10:56:50 +090092 return 0;
Jarkko Nikula2e747962008-04-25 13:55:19 +020093
94 snd_pcm_set_runtime_buffer(substream, &substream->dma_buffer);
95 runtime->dma_bytes = params_buffer_bytes(params);
96
Peter Ujfalusi946cc362012-09-14 15:05:58 +030097 chan = snd_dmaengine_pcm_get_chan(substream);
98 if (!chan)
99 return -EINVAL;
100
101 /* fills in addr_width and direction */
102 err = snd_hwparams_to_dma_slave_config(substream, params, &config);
103 if (err)
104 return err;
105
Lars-Peter Clausen09ae3aa2013-04-03 11:06:05 +0200106 snd_dmaengine_pcm_set_config_from_dai_data(substream,
107 snd_soc_dai_get_dma_data(rtd->cpu_dai, substream),
108 &config);
Peter Ujfalusi946cc362012-09-14 15:05:58 +0300109
110 return dmaengine_slave_config(chan, &config);
Jarkko Nikula2e747962008-04-25 13:55:19 +0200111}
112
113static int omap_pcm_hw_free(struct snd_pcm_substream *substream)
114{
Jarkko Nikula2e747962008-04-25 13:55:19 +0200115 snd_pcm_set_runtime_buffer(substream, NULL);
Jarkko Nikula2e747962008-04-25 13:55:19 +0200116 return 0;
117}
118
Jarkko Nikula2e747962008-04-25 13:55:19 +0200119static snd_pcm_uframes_t omap_pcm_pointer(struct snd_pcm_substream *substream)
120{
Jarkko Nikula2e747962008-04-25 13:55:19 +0200121 snd_pcm_uframes_t offset;
122
Tony Lindgren27615a92012-10-15 16:24:23 -0700123 if (pcm_omap1510())
Peter Ujfalusi946cc362012-09-14 15:05:58 +0300124 offset = snd_dmaengine_pcm_pointer_no_residue(substream);
125 else
126 offset = snd_dmaengine_pcm_pointer(substream);
Jarkko Nikula2e747962008-04-25 13:55:19 +0200127
128 return offset;
129}
130
131static int omap_pcm_open(struct snd_pcm_substream *substream)
132{
Peter Ujfalusi946cc362012-09-14 15:05:58 +0300133 struct snd_soc_pcm_runtime *rtd = substream->private_data;
Lars-Peter Clausen09ae3aa2013-04-03 11:06:05 +0200134 struct snd_dmaengine_dai_dma_data *dma_data;
Peter Ujfalusif6becf02013-07-11 14:35:43 +0200135 int ret;
Jarkko Nikula2e747962008-04-25 13:55:19 +0200136
137 snd_soc_set_runtime_hwparams(substream, &omap_pcm_hardware);
138
Peter Ujfalusi946cc362012-09-14 15:05:58 +0300139 dma_data = snd_soc_dai_get_dma_data(rtd->cpu_dai, substream);
Peter Ujfalusia92b5312013-02-05 13:43:39 +0100140
Peter Ujfalusif6becf02013-07-11 14:35:43 +0200141 /* DT boot: filter_data is the DMA name */
142 if (rtd->cpu_dai->dev->of_node) {
143 struct dma_chan *chan;
144
145 chan = dma_request_slave_channel(rtd->cpu_dai->dev,
146 dma_data->filter_data);
147 ret = snd_dmaengine_pcm_open(substream, chan);
148 } else {
149 ret = snd_dmaengine_pcm_open_request_chan(substream,
150 omap_dma_filter_fn,
151 dma_data->filter_data);
152 }
153 return ret;
Jarkko Nikula2e747962008-04-25 13:55:19 +0200154}
155
Jarkko Nikula2e747962008-04-25 13:55:19 +0200156static int omap_pcm_mmap(struct snd_pcm_substream *substream,
157 struct vm_area_struct *vma)
158{
159 struct snd_pcm_runtime *runtime = substream->runtime;
160
Luis R. Rodriguezf6e45662016-01-22 18:34:22 -0800161 return dma_mmap_wc(substream->pcm->card->dev, vma, runtime->dma_area,
162 runtime->dma_addr, runtime->dma_bytes);
Jarkko Nikula2e747962008-04-25 13:55:19 +0200163}
164
Mark Brownb2a19d02009-01-17 19:14:26 +0000165static struct snd_pcm_ops omap_pcm_ops = {
Jarkko Nikula2e747962008-04-25 13:55:19 +0200166 .open = omap_pcm_open,
Lars-Peter Clausen7c1c1d42013-04-15 19:19:48 +0200167 .close = snd_dmaengine_pcm_close_release_chan,
Jarkko Nikula2e747962008-04-25 13:55:19 +0200168 .ioctl = snd_pcm_lib_ioctl,
169 .hw_params = omap_pcm_hw_params,
170 .hw_free = omap_pcm_hw_free,
Lars-Peter Clausenabe99372013-03-25 16:58:16 +0100171 .trigger = snd_dmaengine_pcm_trigger,
Jarkko Nikula2e747962008-04-25 13:55:19 +0200172 .pointer = omap_pcm_pointer,
173 .mmap = omap_pcm_mmap,
174};
175
Jarkko Nikula2e747962008-04-25 13:55:19 +0200176static int omap_pcm_preallocate_dma_buffer(struct snd_pcm *pcm,
177 int stream)
178{
179 struct snd_pcm_substream *substream = pcm->streams[stream].substream;
180 struct snd_dma_buffer *buf = &substream->dma_buffer;
181 size_t size = omap_pcm_hardware.buffer_bytes_max;
182
183 buf->dev.type = SNDRV_DMA_TYPE_DEV;
184 buf->dev.dev = pcm->card->dev;
185 buf->private_data = NULL;
Luis R. Rodriguezf6e45662016-01-22 18:34:22 -0800186 buf->area = dma_alloc_wc(pcm->card->dev, size, &buf->addr, GFP_KERNEL);
Jarkko Nikula2e747962008-04-25 13:55:19 +0200187 if (!buf->area)
188 return -ENOMEM;
189
190 buf->bytes = size;
191 return 0;
192}
193
194static void omap_pcm_free_dma_buffers(struct snd_pcm *pcm)
195{
196 struct snd_pcm_substream *substream;
197 struct snd_dma_buffer *buf;
198 int stream;
199
200 for (stream = 0; stream < 2; stream++) {
201 substream = pcm->streams[stream].substream;
202 if (!substream)
203 continue;
204
205 buf = &substream->dma_buffer;
206 if (!buf->area)
207 continue;
208
Luis R. Rodriguezf6e45662016-01-22 18:34:22 -0800209 dma_free_wc(pcm->card->dev, buf->bytes, buf->area, buf->addr);
Jarkko Nikula2e747962008-04-25 13:55:19 +0200210 buf->area = NULL;
211 }
212}
213
Liam Girdwood552d1ef2011-06-07 16:08:33 +0100214static int omap_pcm_new(struct snd_soc_pcm_runtime *rtd)
Jarkko Nikula2e747962008-04-25 13:55:19 +0200215{
Liam Girdwood552d1ef2011-06-07 16:08:33 +0100216 struct snd_card *card = rtd->card->snd_card;
Liam Girdwood552d1ef2011-06-07 16:08:33 +0100217 struct snd_pcm *pcm = rtd->pcm;
Russell Kingc9bd5e62013-06-27 12:53:37 +0100218 int ret;
Jarkko Nikula2e747962008-04-25 13:55:19 +0200219
Peter Ujfalusid51199a2015-03-03 13:38:14 +0200220 ret = dma_coerce_mask_and_coherent(card->dev, DMA_BIT_MASK(32));
Russell Kingc9bd5e62013-06-27 12:53:37 +0100221 if (ret)
222 return ret;
Jarkko Nikula2e747962008-04-25 13:55:19 +0200223
Joachim Eastwood25e9e752012-01-01 01:58:44 +0100224 if (pcm->streams[SNDRV_PCM_STREAM_PLAYBACK].substream) {
Jarkko Nikula2e747962008-04-25 13:55:19 +0200225 ret = omap_pcm_preallocate_dma_buffer(pcm,
226 SNDRV_PCM_STREAM_PLAYBACK);
227 if (ret)
228 goto out;
229 }
230
Joachim Eastwood25e9e752012-01-01 01:58:44 +0100231 if (pcm->streams[SNDRV_PCM_STREAM_CAPTURE].substream) {
Jarkko Nikula2e747962008-04-25 13:55:19 +0200232 ret = omap_pcm_preallocate_dma_buffer(pcm,
233 SNDRV_PCM_STREAM_CAPTURE);
234 if (ret)
235 goto out;
236 }
237
238out:
Oleg Matcovschifad93652012-04-24 19:02:02 -0700239 /* free preallocated buffers in case of error */
240 if (ret)
241 omap_pcm_free_dma_buffers(pcm);
242
Jarkko Nikula2e747962008-04-25 13:55:19 +0200243 return ret;
244}
245
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000246static struct snd_soc_platform_driver omap_soc_platform = {
247 .ops = &omap_pcm_ops,
Jarkko Nikula2e747962008-04-25 13:55:19 +0200248 .pcm_new = omap_pcm_new,
249 .pcm_free = omap_pcm_free_dma_buffers,
250};
Jarkko Nikula2e747962008-04-25 13:55:19 +0200251
Peter Ujfalusife7b5862014-04-16 15:46:12 +0300252int omap_pcm_platform_register(struct device *dev)
253{
Jyri Sarha6742e152015-03-03 13:28:53 +0200254 omap_pcm_limit_supported_formats();
Peter Ujfalusife7b5862014-04-16 15:46:12 +0300255 return devm_snd_soc_register_platform(dev, &omap_soc_platform);
256}
257EXPORT_SYMBOL_GPL(omap_pcm_platform_register);
258
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");