ASoC: blackfin: bf5xx-i2s-pcm: Use snd_pcm_lib_preallocate_pages_for_all()
[firefly-linux-kernel-4.4.55.git] / sound / soc / blackfin / bf5xx-i2s-pcm.c
1 /*
2  * File:         sound/soc/blackfin/bf5xx-i2s-pcm.c
3  * Author:       Cliff Cai <Cliff.Cai@analog.com>
4  *
5  * Created:      Tue June 06 2008
6  * Description:  DMA driver for i2s codec
7  *
8  * Modified:
9  *               Copyright 2008 Analog Devices Inc.
10  *
11  * Bugs:         Enter bugs at http://blackfin.uclinux.org/
12  *
13  * This program is free software; you can redistribute it and/or modify
14  * it under the terms of the GNU General Public License as published by
15  * the Free Software Foundation; either version 2 of the License, or
16  * (at your option) any later version.
17  *
18  * This program is distributed in the hope that it will be useful,
19  * but WITHOUT ANY WARRANTY; without even the implied warranty of
20  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
21  * GNU General Public License for more details.
22  *
23  * You should have received a copy of the GNU General Public License
24  * along with this program; if not, see the file COPYING, or write
25  * to the Free Software Foundation, Inc.,
26  * 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
27  */
28
29 #include <linux/module.h>
30 #include <linux/init.h>
31 #include <linux/platform_device.h>
32 #include <linux/dma-mapping.h>
33 #include <linux/gfp.h>
34
35 #include <sound/core.h>
36 #include <sound/pcm.h>
37 #include <sound/pcm_params.h>
38 #include <sound/soc.h>
39
40 #include <asm/dma.h>
41
42 #include "bf5xx-sport.h"
43
44 static void bf5xx_dma_irq(void *data)
45 {
46         struct snd_pcm_substream *pcm = data;
47         snd_pcm_period_elapsed(pcm);
48 }
49
50 static const struct snd_pcm_hardware bf5xx_pcm_hardware = {
51         .info                   = SNDRV_PCM_INFO_INTERLEAVED |
52                                    SNDRV_PCM_INFO_MMAP |
53                                    SNDRV_PCM_INFO_MMAP_VALID |
54                                    SNDRV_PCM_INFO_BLOCK_TRANSFER,
55         .formats                = SNDRV_PCM_FMTBIT_S16_LE |
56                                    SNDRV_PCM_FMTBIT_S24_LE |
57                                    SNDRV_PCM_FMTBIT_S32_LE,
58         .period_bytes_min       = 32,
59         .period_bytes_max       = 0x10000,
60         .periods_min            = 1,
61         .periods_max            = PAGE_SIZE/32,
62         .buffer_bytes_max       = 0x20000, /* 128 kbytes */
63         .fifo_size              = 16,
64 };
65
66 static int bf5xx_pcm_hw_params(struct snd_pcm_substream *substream,
67         struct snd_pcm_hw_params *params)
68 {
69         return snd_pcm_lib_malloc_pages(substream, params_buffer_bytes(params));
70 }
71
72 static int bf5xx_pcm_hw_free(struct snd_pcm_substream *substream)
73 {
74         snd_pcm_lib_free_pages(substream);
75
76         return 0;
77 }
78
79 static int bf5xx_pcm_prepare(struct snd_pcm_substream *substream)
80 {
81         struct snd_pcm_runtime *runtime = substream->runtime;
82         struct sport_device *sport = runtime->private_data;
83         int period_bytes = frames_to_bytes(runtime, runtime->period_size);
84
85         pr_debug("%s enter\n", __func__);
86         if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) {
87                 sport_set_tx_callback(sport, bf5xx_dma_irq, substream);
88                 sport_config_tx_dma(sport, runtime->dma_area,
89                         runtime->periods, period_bytes);
90         } else {
91                 sport_set_rx_callback(sport, bf5xx_dma_irq, substream);
92                 sport_config_rx_dma(sport, runtime->dma_area,
93                         runtime->periods, period_bytes);
94         }
95
96         return 0;
97 }
98
99 static int bf5xx_pcm_trigger(struct snd_pcm_substream *substream, int cmd)
100 {
101         struct snd_pcm_runtime *runtime = substream->runtime;
102         struct sport_device *sport = runtime->private_data;
103         int ret = 0;
104
105         pr_debug("%s enter\n", __func__);
106         switch (cmd) {
107         case SNDRV_PCM_TRIGGER_START:
108                 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
109                         sport_tx_start(sport);
110                 else
111                         sport_rx_start(sport);
112                 break;
113         case SNDRV_PCM_TRIGGER_STOP:
114         case SNDRV_PCM_TRIGGER_SUSPEND:
115         case SNDRV_PCM_TRIGGER_PAUSE_PUSH:
116                 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
117                         sport_tx_stop(sport);
118                 else
119                         sport_rx_stop(sport);
120                 break;
121         default:
122                 ret = -EINVAL;
123         }
124
125         return ret;
126 }
127
128 static snd_pcm_uframes_t bf5xx_pcm_pointer(struct snd_pcm_substream *substream)
129 {
130         struct snd_pcm_runtime *runtime = substream->runtime;
131         struct sport_device *sport = runtime->private_data;
132         unsigned int diff;
133         snd_pcm_uframes_t frames;
134         pr_debug("%s enter\n", __func__);
135         if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) {
136                 diff = sport_curr_offset_tx(sport);
137         } else {
138                 diff = sport_curr_offset_rx(sport);
139         }
140
141         /*
142          * TX at least can report one frame beyond the end of the
143          * buffer if we hit the wraparound case - clamp to within the
144          * buffer as the ALSA APIs require.
145          */
146         if (diff == snd_pcm_lib_buffer_bytes(substream))
147                 diff = 0;
148
149         frames = bytes_to_frames(substream->runtime, diff);
150
151         return frames;
152 }
153
154 static int bf5xx_pcm_open(struct snd_pcm_substream *substream)
155 {
156         struct snd_soc_pcm_runtime *rtd = substream->private_data;
157         struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
158         struct sport_device *sport_handle = snd_soc_dai_get_drvdata(cpu_dai);
159         struct snd_pcm_runtime *runtime = substream->runtime;
160         struct snd_dma_buffer *buf = &substream->dma_buffer;
161         int ret;
162
163         pr_debug("%s enter\n", __func__);
164
165         snd_soc_set_runtime_hwparams(substream, &bf5xx_pcm_hardware);
166
167         ret = snd_pcm_hw_constraint_integer(runtime,
168                         SNDRV_PCM_HW_PARAM_PERIODS);
169         if (ret < 0)
170                 goto out;
171
172         if (sport_handle != NULL) {
173                 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
174                         sport_handle->tx_buf = buf->area;
175                 else
176                         sport_handle->rx_buf = buf->area;
177
178                 runtime->private_data = sport_handle;
179         } else {
180                 pr_err("sport_handle is NULL\n");
181                 return -1;
182         }
183         return 0;
184
185  out:
186         return ret;
187 }
188
189 static int bf5xx_pcm_mmap(struct snd_pcm_substream *substream,
190         struct vm_area_struct *vma)
191 {
192         struct snd_pcm_runtime *runtime = substream->runtime;
193         size_t size = vma->vm_end - vma->vm_start;
194         vma->vm_start = (unsigned long)runtime->dma_area;
195         vma->vm_end = vma->vm_start + size;
196         vma->vm_flags |=  VM_SHARED;
197
198         return 0 ;
199 }
200
201 static struct snd_pcm_ops bf5xx_pcm_i2s_ops = {
202         .open           = bf5xx_pcm_open,
203         .ioctl          = snd_pcm_lib_ioctl,
204         .hw_params      = bf5xx_pcm_hw_params,
205         .hw_free        = bf5xx_pcm_hw_free,
206         .prepare        = bf5xx_pcm_prepare,
207         .trigger        = bf5xx_pcm_trigger,
208         .pointer        = bf5xx_pcm_pointer,
209         .mmap           = bf5xx_pcm_mmap,
210 };
211
212 static u64 bf5xx_pcm_dmamask = DMA_BIT_MASK(32);
213
214 static int bf5xx_pcm_i2s_new(struct snd_soc_pcm_runtime *rtd)
215 {
216         struct snd_card *card = rtd->card->snd_card;
217         size_t size = bf5xx_pcm_hardware.buffer_bytes_max;
218
219         pr_debug("%s enter\n", __func__);
220         if (!card->dev->dma_mask)
221                 card->dev->dma_mask = &bf5xx_pcm_dmamask;
222         if (!card->dev->coherent_dma_mask)
223                 card->dev->coherent_dma_mask = DMA_BIT_MASK(32);
224
225         return snd_pcm_lib_preallocate_pages_for_all(rtd->pcm,
226                                 SNDRV_DMA_TYPE_DEV, card->dev, size, size);
227 }
228
229 static struct snd_soc_platform_driver bf5xx_i2s_soc_platform = {
230         .ops            = &bf5xx_pcm_i2s_ops,
231         .pcm_new        = bf5xx_pcm_i2s_new,
232 };
233
234 static int bfin_i2s_soc_platform_probe(struct platform_device *pdev)
235 {
236         return snd_soc_register_platform(&pdev->dev, &bf5xx_i2s_soc_platform);
237 }
238
239 static int bfin_i2s_soc_platform_remove(struct platform_device *pdev)
240 {
241         snd_soc_unregister_platform(&pdev->dev);
242         return 0;
243 }
244
245 static struct platform_driver bfin_i2s_pcm_driver = {
246         .driver = {
247                 .name = "bfin-i2s-pcm-audio",
248                 .owner = THIS_MODULE,
249         },
250
251         .probe = bfin_i2s_soc_platform_probe,
252         .remove = bfin_i2s_soc_platform_remove,
253 };
254
255 module_platform_driver(bfin_i2s_pcm_driver);
256
257 MODULE_AUTHOR("Cliff Cai");
258 MODULE_DESCRIPTION("ADI Blackfin I2S PCM DMA module");
259 MODULE_LICENSE("GPL");