]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - sound/soc/dwc/designware_pcm.c
ASoC: rockchip: add bindings for rk3368 i2s
[mirror_ubuntu-bionic-kernel.git] / sound / soc / dwc / designware_pcm.c
CommitLineData
79361b2b
JA
1/*
2 * ALSA SoC Synopsys PIO PCM for I2S driver
3 *
4 * sound/soc/dwc/designware_pcm.c
5 *
6 * Copyright (C) 2016 Synopsys
7 * Jose Abreu <joabreu@synopsys.com>
8 *
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.
12 */
13
14#include <linux/io.h>
15#include <linux/rcupdate.h>
16#include <sound/pcm.h>
17#include <sound/pcm_params.h>
18#include "local.h"
19
20#define BUFFER_BYTES_MAX (3 * 2 * 8 * PERIOD_BYTES_MIN)
21#define PERIOD_BYTES_MIN 4096
22#define PERIODS_MIN 2
23
24#define dw_pcm_tx_fn(sample_bits) \
25static unsigned int dw_pcm_tx_##sample_bits(struct dw_i2s_dev *dev, \
26 struct snd_pcm_runtime *runtime, unsigned int tx_ptr, \
27 bool *period_elapsed) \
28{ \
29 const u##sample_bits (*p)[2] = (void *)runtime->dma_area; \
30 unsigned int period_pos = tx_ptr % runtime->period_size; \
31 int i; \
32\
33 for (i = 0; i < dev->fifo_th; i++) { \
34 iowrite32(p[tx_ptr][0], dev->i2s_base + LRBR_LTHR(0)); \
35 iowrite32(p[tx_ptr][1], dev->i2s_base + RRBR_RTHR(0)); \
36 period_pos++; \
37 if (++tx_ptr >= runtime->buffer_size) \
38 tx_ptr = 0; \
39 } \
40 *period_elapsed = period_pos >= runtime->period_size; \
41 return tx_ptr; \
42}
43
e2f748e0
JA
44#define dw_pcm_rx_fn(sample_bits) \
45static unsigned int dw_pcm_rx_##sample_bits(struct dw_i2s_dev *dev, \
46 struct snd_pcm_runtime *runtime, unsigned int rx_ptr, \
47 bool *period_elapsed) \
48{ \
49 u##sample_bits (*p)[2] = (void *)runtime->dma_area; \
50 unsigned int period_pos = rx_ptr % runtime->period_size; \
51 int i; \
52\
53 for (i = 0; i < dev->fifo_th; i++) { \
54 p[rx_ptr][0] = ioread32(dev->i2s_base + LRBR_LTHR(0)); \
55 p[rx_ptr][1] = ioread32(dev->i2s_base + RRBR_RTHR(0)); \
56 period_pos++; \
57 if (++rx_ptr >= runtime->buffer_size) \
58 rx_ptr = 0; \
59 } \
60 *period_elapsed = period_pos >= runtime->period_size; \
61 return rx_ptr; \
62}
63
79361b2b
JA
64dw_pcm_tx_fn(16);
65dw_pcm_tx_fn(32);
e2f748e0
JA
66dw_pcm_rx_fn(16);
67dw_pcm_rx_fn(32);
79361b2b
JA
68
69#undef dw_pcm_tx_fn
e2f748e0 70#undef dw_pcm_rx_fn
79361b2b
JA
71
72static const struct snd_pcm_hardware dw_pcm_hardware = {
73 .info = SNDRV_PCM_INFO_INTERLEAVED |
74 SNDRV_PCM_INFO_MMAP |
75 SNDRV_PCM_INFO_MMAP_VALID |
76 SNDRV_PCM_INFO_BLOCK_TRANSFER,
77 .rates = SNDRV_PCM_RATE_32000 |
78 SNDRV_PCM_RATE_44100 |
79 SNDRV_PCM_RATE_48000,
80 .rate_min = 32000,
81 .rate_max = 48000,
82 .formats = SNDRV_PCM_FMTBIT_S16_LE |
e21ab179 83 SNDRV_PCM_FMTBIT_S24_LE |
79361b2b
JA
84 SNDRV_PCM_FMTBIT_S32_LE,
85 .channels_min = 2,
86 .channels_max = 2,
87 .buffer_bytes_max = BUFFER_BYTES_MAX,
88 .period_bytes_min = PERIOD_BYTES_MIN,
89 .period_bytes_max = BUFFER_BYTES_MAX / PERIODS_MIN,
90 .periods_min = PERIODS_MIN,
91 .periods_max = BUFFER_BYTES_MAX / PERIOD_BYTES_MIN,
92 .fifo_size = 16,
93};
94
e2f748e0 95static void dw_pcm_transfer(struct dw_i2s_dev *dev, bool push)
79361b2b 96{
e2f748e0
JA
97 struct snd_pcm_substream *substream;
98 bool active, period_elapsed;
79361b2b
JA
99
100 rcu_read_lock();
e2f748e0
JA
101 if (push)
102 substream = rcu_dereference(dev->tx_substream);
103 else
104 substream = rcu_dereference(dev->rx_substream);
105 active = substream && snd_pcm_running(substream);
106 if (active) {
107 unsigned int ptr;
108 unsigned int new_ptr;
109
110 if (push) {
111 ptr = READ_ONCE(dev->tx_ptr);
112 new_ptr = dev->tx_fn(dev, substream->runtime, ptr,
113 &period_elapsed);
114 cmpxchg(&dev->tx_ptr, ptr, new_ptr);
115 } else {
116 ptr = READ_ONCE(dev->rx_ptr);
117 new_ptr = dev->rx_fn(dev, substream->runtime, ptr,
118 &period_elapsed);
119 cmpxchg(&dev->rx_ptr, ptr, new_ptr);
120 }
79361b2b
JA
121
122 if (period_elapsed)
e2f748e0 123 snd_pcm_period_elapsed(substream);
79361b2b
JA
124 }
125 rcu_read_unlock();
126}
e2f748e0
JA
127
128void dw_pcm_push_tx(struct dw_i2s_dev *dev)
129{
130 dw_pcm_transfer(dev, true);
131}
79361b2b
JA
132EXPORT_SYMBOL_GPL(dw_pcm_push_tx);
133
e2f748e0
JA
134void dw_pcm_pop_rx(struct dw_i2s_dev *dev)
135{
136 dw_pcm_transfer(dev, false);
137}
138EXPORT_SYMBOL_GPL(dw_pcm_pop_rx);
139
79361b2b
JA
140static int dw_pcm_open(struct snd_pcm_substream *substream)
141{
142 struct snd_pcm_runtime *runtime = substream->runtime;
143 struct snd_soc_pcm_runtime *rtd = substream->private_data;
144 struct dw_i2s_dev *dev = snd_soc_dai_get_drvdata(rtd->cpu_dai);
145
146 snd_soc_set_runtime_hwparams(substream, &dw_pcm_hardware);
147 snd_pcm_hw_constraint_integer(runtime, SNDRV_PCM_HW_PARAM_PERIODS);
148 runtime->private_data = dev;
149
150 return 0;
151}
152
153static int dw_pcm_close(struct snd_pcm_substream *substream)
154{
155 synchronize_rcu();
156 return 0;
157}
158
159static int dw_pcm_hw_params(struct snd_pcm_substream *substream,
160 struct snd_pcm_hw_params *hw_params)
161{
162 struct snd_pcm_runtime *runtime = substream->runtime;
163 struct dw_i2s_dev *dev = runtime->private_data;
164 int ret;
165
166 switch (params_channels(hw_params)) {
167 case 2:
168 break;
169 default:
170 dev_err(dev->dev, "invalid channels number\n");
171 return -EINVAL;
172 }
173
174 switch (params_format(hw_params)) {
175 case SNDRV_PCM_FORMAT_S16_LE:
176 dev->tx_fn = dw_pcm_tx_16;
e2f748e0 177 dev->rx_fn = dw_pcm_rx_16;
79361b2b 178 break;
e21ab179 179 case SNDRV_PCM_FORMAT_S24_LE:
79361b2b
JA
180 case SNDRV_PCM_FORMAT_S32_LE:
181 dev->tx_fn = dw_pcm_tx_32;
e2f748e0 182 dev->rx_fn = dw_pcm_rx_32;
79361b2b
JA
183 break;
184 default:
185 dev_err(dev->dev, "invalid format\n");
186 return -EINVAL;
187 }
188
79361b2b
JA
189 ret = snd_pcm_lib_malloc_pages(substream,
190 params_buffer_bytes(hw_params));
191 if (ret < 0)
192 return ret;
193 else
194 return 0;
195}
196
197static int dw_pcm_hw_free(struct snd_pcm_substream *substream)
198{
199 return snd_pcm_lib_free_pages(substream);
200}
201
202static int dw_pcm_trigger(struct snd_pcm_substream *substream, int cmd)
203{
204 struct snd_pcm_runtime *runtime = substream->runtime;
205 struct dw_i2s_dev *dev = runtime->private_data;
206 int ret = 0;
207
208 switch (cmd) {
209 case SNDRV_PCM_TRIGGER_START:
210 case SNDRV_PCM_TRIGGER_RESUME:
211 case SNDRV_PCM_TRIGGER_PAUSE_RELEASE:
e2f748e0
JA
212 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) {
213 WRITE_ONCE(dev->tx_ptr, 0);
214 rcu_assign_pointer(dev->tx_substream, substream);
215 } else {
216 WRITE_ONCE(dev->rx_ptr, 0);
217 rcu_assign_pointer(dev->rx_substream, substream);
218 }
79361b2b
JA
219 break;
220 case SNDRV_PCM_TRIGGER_STOP:
221 case SNDRV_PCM_TRIGGER_SUSPEND:
222 case SNDRV_PCM_TRIGGER_PAUSE_PUSH:
e2f748e0
JA
223 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
224 rcu_assign_pointer(dev->tx_substream, NULL);
225 else
226 rcu_assign_pointer(dev->rx_substream, NULL);
79361b2b
JA
227 break;
228 default:
229 ret = -EINVAL;
230 break;
231 }
232
233 return ret;
234}
235
236static snd_pcm_uframes_t dw_pcm_pointer(struct snd_pcm_substream *substream)
237{
238 struct snd_pcm_runtime *runtime = substream->runtime;
239 struct dw_i2s_dev *dev = runtime->private_data;
e2f748e0
JA
240 snd_pcm_uframes_t pos;
241
242 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
243 pos = READ_ONCE(dev->tx_ptr);
244 else
245 pos = READ_ONCE(dev->rx_ptr);
79361b2b
JA
246
247 return pos < runtime->buffer_size ? pos : 0;
248}
249
250static int dw_pcm_new(struct snd_soc_pcm_runtime *rtd)
251{
252 size_t size = dw_pcm_hardware.buffer_bytes_max;
253
254 return snd_pcm_lib_preallocate_pages_for_all(rtd->pcm,
255 SNDRV_DMA_TYPE_CONTINUOUS,
256 snd_dma_continuous_data(GFP_KERNEL), size, size);
257}
258
259static void dw_pcm_free(struct snd_pcm *pcm)
260{
261 snd_pcm_lib_preallocate_free_for_all(pcm);
262}
263
264static const struct snd_pcm_ops dw_pcm_ops = {
265 .open = dw_pcm_open,
266 .close = dw_pcm_close,
267 .ioctl = snd_pcm_lib_ioctl,
268 .hw_params = dw_pcm_hw_params,
269 .hw_free = dw_pcm_hw_free,
270 .trigger = dw_pcm_trigger,
271 .pointer = dw_pcm_pointer,
272};
273
274static const struct snd_soc_platform_driver dw_pcm_platform = {
275 .pcm_new = dw_pcm_new,
276 .pcm_free = dw_pcm_free,
277 .ops = &dw_pcm_ops,
278};
279
280int dw_pcm_register(struct platform_device *pdev)
281{
282 return devm_snd_soc_register_platform(&pdev->dev, &dw_pcm_platform);
283}
284EXPORT_SYMBOL_GPL(dw_pcm_register);