2 * ALSA PCM interface for ST SPEAr Processors
4 * sound/soc/spear/spear_pcm.c
6 * Copyright (C) 2012 ST Microelectronics
7 * Rajeev Kumar<rajeev-dlh.kumar@st.com>
9 * This file is licensed under the terms of the GNU General Public
10 * License version 2. This program is licensed "as is" without any
11 * warranty of any kind, whether express or implied.
14 #include <linux/module.h>
15 #include <linux/dmaengine.h>
16 #include <linux/dma-mapping.h>
17 #include <linux/init.h>
18 #include <linux/platform_device.h>
19 #include <linux/scatterlist.h>
20 #include <linux/slab.h>
21 #include <sound/core.h>
22 #include <sound/dmaengine_pcm.h>
23 #include <sound/pcm.h>
24 #include <sound/pcm_params.h>
25 #include <sound/soc.h>
26 #include <sound/spear_dma.h>
28 struct snd_pcm_hardware spear_pcm_hardware
= {
29 .info
= (SNDRV_PCM_INFO_INTERLEAVED
| SNDRV_PCM_INFO_BLOCK_TRANSFER
|
30 SNDRV_PCM_INFO_MMAP
| SNDRV_PCM_INFO_MMAP_VALID
|
31 SNDRV_PCM_INFO_PAUSE
| SNDRV_PCM_INFO_RESUME
),
32 .buffer_bytes_max
= 16 * 1024, /* max buffer size */
33 .period_bytes_min
= 2 * 1024, /* 1 msec data minimum period size */
34 .period_bytes_max
= 2 * 1024, /* maximum period size */
35 .periods_min
= 1, /* min # periods */
36 .periods_max
= 8, /* max # of periods */
37 .fifo_size
= 0, /* fifo size in bytes */
40 static int spear_pcm_hw_params(struct snd_pcm_substream
*substream
,
41 struct snd_pcm_hw_params
*params
)
43 snd_pcm_set_runtime_buffer(substream
, &substream
->dma_buffer
);
48 static int spear_pcm_hw_free(struct snd_pcm_substream
*substream
)
50 snd_pcm_set_runtime_buffer(substream
, NULL
);
55 static int spear_pcm_open(struct snd_pcm_substream
*substream
)
57 struct snd_soc_pcm_runtime
*rtd
= substream
->private_data
;
59 struct spear_dma_data
*dma_data
= (struct spear_dma_data
*)
60 snd_soc_dai_get_dma_data(rtd
->cpu_dai
, substream
);
63 ret
= snd_soc_set_runtime_hwparams(substream
, &spear_pcm_hardware
);
67 ret
= snd_dmaengine_pcm_open(substream
, dma_data
->filter
, dma_data
);
71 snd_dmaengine_pcm_set_data(substream
, dma_data
);
76 static int spear_pcm_close(struct snd_pcm_substream
*substream
)
79 snd_dmaengine_pcm_close(substream
);
84 static int spear_pcm_mmap(struct snd_pcm_substream
*substream
,
85 struct vm_area_struct
*vma
)
87 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
89 return dma_mmap_writecombine(substream
->pcm
->card
->dev
, vma
,
90 runtime
->dma_area
, runtime
->dma_addr
,
94 static struct snd_pcm_ops spear_pcm_ops
= {
95 .open
= spear_pcm_open
,
96 .close
= spear_pcm_close
,
97 .ioctl
= snd_pcm_lib_ioctl
,
98 .hw_params
= spear_pcm_hw_params
,
99 .hw_free
= spear_pcm_hw_free
,
100 .trigger
= snd_dmaengine_pcm_trigger
,
101 .pointer
= snd_dmaengine_pcm_pointer
,
102 .mmap
= spear_pcm_mmap
,
106 spear_pcm_preallocate_dma_buffer(struct snd_pcm
*pcm
, int stream
,
109 struct snd_pcm_substream
*substream
= pcm
->streams
[stream
].substream
;
110 struct snd_dma_buffer
*buf
= &substream
->dma_buffer
;
112 buf
->dev
.type
= SNDRV_DMA_TYPE_DEV
;
113 buf
->dev
.dev
= pcm
->card
->dev
;
114 buf
->private_data
= NULL
;
116 buf
->area
= dma_alloc_writecombine(pcm
->card
->dev
, size
,
117 &buf
->addr
, GFP_KERNEL
);
121 dev_info(buf
->dev
.dev
,
122 " preallocate_dma_buffer: area=%p, addr=%p, size=%d\n",
123 (void *)buf
->area
, (void *)buf
->addr
, size
);
129 static void spear_pcm_free(struct snd_pcm
*pcm
)
131 struct snd_pcm_substream
*substream
;
132 struct snd_dma_buffer
*buf
;
135 for (stream
= 0; stream
< 2; stream
++) {
136 substream
= pcm
->streams
[stream
].substream
;
140 buf
= &substream
->dma_buffer
;
141 if (!buf
|| !buf
->area
)
144 dma_free_writecombine(pcm
->card
->dev
, buf
->bytes
,
145 buf
->area
, buf
->addr
);
150 static u64 spear_pcm_dmamask
= DMA_BIT_MASK(32);
152 static int spear_pcm_new(struct snd_card
*card
,
153 struct snd_soc_dai
*dai
, struct snd_pcm
*pcm
)
157 if (!card
->dev
->dma_mask
)
158 card
->dev
->dma_mask
= &spear_pcm_dmamask
;
159 if (!card
->dev
->coherent_dma_mask
)
160 card
->dev
->coherent_dma_mask
= DMA_BIT_MASK(32);
162 if (dai
->driver
->playback
.channels_min
) {
163 ret
= spear_pcm_preallocate_dma_buffer(pcm
,
164 SNDRV_PCM_STREAM_PLAYBACK
,
165 spear_pcm_hardware
.buffer_bytes_max
);
170 if (dai
->driver
->capture
.channels_min
) {
171 ret
= spear_pcm_preallocate_dma_buffer(pcm
,
172 SNDRV_PCM_STREAM_CAPTURE
,
173 spear_pcm_hardware
.buffer_bytes_max
);
181 struct snd_soc_platform_driver spear_soc_platform
= {
182 .ops
= &spear_pcm_ops
,
183 .pcm_new
= spear_pcm_new
,
184 .pcm_free
= spear_pcm_free
,
187 static int spear_soc_platform_probe(struct platform_device
*pdev
)
189 return snd_soc_register_platform(&pdev
->dev
, &spear_soc_platform
);
192 static int spear_soc_platform_remove(struct platform_device
*pdev
)
194 snd_soc_unregister_platform(&pdev
->dev
);
199 static struct platform_driver spear_pcm_driver
= {
201 .name
= "spear-pcm-audio",
202 .owner
= THIS_MODULE
,
205 .probe
= spear_soc_platform_probe
,
206 .remove
= spear_soc_platform_remove
,
209 module_platform_driver(spear_pcm_driver
);
211 MODULE_AUTHOR("Rajeev Kumar <rajeev-dlh.kumar@st.com>");
212 MODULE_DESCRIPTION("SPEAr PCM DMA module");
213 MODULE_LICENSE("GPL");
214 MODULE_ALIAS("platform:spear-pcm-audio");