blob: 9b3431999fc8b6df8dac3b58c42d6e1604c617e4 [file] [log] [blame]
Takashi Sakamotoc50fb912014-11-29 00:59:15 +09001/*
2 * dice_pcm.c - a part of driver for DICE based devices
3 *
4 * Copyright (c) Clemens Ladisch <clemens@ladisch.de>
5 * Copyright (c) 2014 Takashi Sakamoto <o-takashi@sakamocchi.jp>
6 *
7 * Licensed under the terms of the GNU General Public License, version 2.
8 */
9
10#include "dice.h"
11
12static int dice_rate_constraint(struct snd_pcm_hw_params *params,
13 struct snd_pcm_hw_rule *rule)
14{
Takashi Sakamoto69dcf3e2014-12-09 00:10:38 +090015 struct snd_pcm_substream *substream = rule->private;
16 struct snd_dice *dice = substream->private_data;
Takashi Sakamotoc50fb912014-11-29 00:59:15 +090017
18 const struct snd_interval *c =
19 hw_param_interval_c(params, SNDRV_PCM_HW_PARAM_CHANNELS);
20 struct snd_interval *r =
21 hw_param_interval(params, SNDRV_PCM_HW_PARAM_RATE);
22 struct snd_interval rates = {
23 .min = UINT_MAX, .max = 0, .integer = 1
24 };
Takashi Sakamoto69dcf3e2014-12-09 00:10:38 +090025 unsigned int i, rate, mode, *pcm_channels;
26
27 if (substream->stream == SNDRV_PCM_STREAM_CAPTURE)
28 pcm_channels = dice->tx_channels;
29 else
30 pcm_channels = dice->rx_channels;
Takashi Sakamotoc50fb912014-11-29 00:59:15 +090031
32 for (i = 0; i < ARRAY_SIZE(snd_dice_rates); ++i) {
33 rate = snd_dice_rates[i];
34 if (snd_dice_stream_get_rate_mode(dice, rate, &mode) < 0)
35 continue;
36
37 if (!snd_interval_test(c, pcm_channels[mode]))
38 continue;
39
40 rates.min = min(rates.min, rate);
41 rates.max = max(rates.max, rate);
42 }
43
44 return snd_interval_refine(r, &rates);
45}
46
47static int dice_channels_constraint(struct snd_pcm_hw_params *params,
48 struct snd_pcm_hw_rule *rule)
49{
Takashi Sakamoto69dcf3e2014-12-09 00:10:38 +090050 struct snd_pcm_substream *substream = rule->private;
51 struct snd_dice *dice = substream->private_data;
Takashi Sakamotoc50fb912014-11-29 00:59:15 +090052
53 const struct snd_interval *r =
54 hw_param_interval_c(params, SNDRV_PCM_HW_PARAM_RATE);
55 struct snd_interval *c =
56 hw_param_interval(params, SNDRV_PCM_HW_PARAM_CHANNELS);
57 struct snd_interval channels = {
58 .min = UINT_MAX, .max = 0, .integer = 1
59 };
Takashi Sakamoto69dcf3e2014-12-09 00:10:38 +090060 unsigned int i, rate, mode, *pcm_channels;
61
62 if (substream->stream == SNDRV_PCM_STREAM_CAPTURE)
63 pcm_channels = dice->tx_channels;
64 else
65 pcm_channels = dice->rx_channels;
Takashi Sakamotoc50fb912014-11-29 00:59:15 +090066
67 for (i = 0; i < ARRAY_SIZE(snd_dice_rates); ++i) {
68 rate = snd_dice_rates[i];
69 if (snd_dice_stream_get_rate_mode(dice, rate, &mode) < 0)
70 continue;
71
72 if (!snd_interval_test(r, rate))
73 continue;
74
75 channels.min = min(channels.min, pcm_channels[mode]);
76 channels.max = max(channels.max, pcm_channels[mode]);
77 }
78
79 return snd_interval_refine(c, &channels);
80}
81
Takashi Sakamoto2c2416c2014-11-29 00:59:18 +090082static void limit_channels_and_rates(struct snd_dice *dice,
83 struct snd_pcm_runtime *runtime,
84 unsigned int *pcm_channels)
Takashi Sakamotoc50fb912014-11-29 00:59:15 +090085{
Takashi Sakamoto2c2416c2014-11-29 00:59:18 +090086 struct snd_pcm_hardware *hw = &runtime->hw;
87 unsigned int i, rate, mode;
Takashi Sakamotoc50fb912014-11-29 00:59:15 +090088
Takashi Sakamoto2c2416c2014-11-29 00:59:18 +090089 hw->channels_min = UINT_MAX;
90 hw->channels_max = 0;
Takashi Sakamotoc50fb912014-11-29 00:59:15 +090091
92 for (i = 0; i < ARRAY_SIZE(snd_dice_rates); ++i) {
Takashi Sakamoto2c2416c2014-11-29 00:59:18 +090093 rate = snd_dice_rates[i];
94 if (snd_dice_stream_get_rate_mode(dice, rate, &mode) < 0)
95 continue;
96 hw->rates |= snd_pcm_rate_to_rate_bit(rate);
Takashi Sakamotoc50fb912014-11-29 00:59:15 +090097
Takashi Sakamoto2c2416c2014-11-29 00:59:18 +090098 if (pcm_channels[mode] == 0)
99 continue;
100 hw->channels_min = min(hw->channels_min, pcm_channels[mode]);
101 hw->channels_max = max(hw->channels_max, pcm_channels[mode]);
Takashi Sakamotoc50fb912014-11-29 00:59:15 +0900102 }
103
Takashi Sakamoto2c2416c2014-11-29 00:59:18 +0900104 snd_pcm_limit_hw_rates(runtime);
105}
106
107static void limit_period_and_buffer(struct snd_pcm_hardware *hw)
108{
109 hw->periods_min = 2; /* SNDRV_PCM_INFO_BATCH */
110 hw->periods_max = UINT_MAX;
111
112 hw->period_bytes_min = 4 * hw->channels_max; /* byte for a frame */
113
114 /* Just to prevent from allocating much pages. */
115 hw->period_bytes_max = hw->period_bytes_min * 2048;
116 hw->buffer_bytes_max = hw->period_bytes_max * hw->periods_min;
117}
118
119static int init_hw_info(struct snd_dice *dice,
120 struct snd_pcm_substream *substream)
121{
122 struct snd_pcm_runtime *runtime = substream->runtime;
123 struct snd_pcm_hardware *hw = &runtime->hw;
Takashi Sakamoto69dcf3e2014-12-09 00:10:38 +0900124 struct amdtp_stream *stream;
125 unsigned int *pcm_channels;
Takashi Sakamoto2c2416c2014-11-29 00:59:18 +0900126 int err;
127
128 hw->info = SNDRV_PCM_INFO_MMAP |
129 SNDRV_PCM_INFO_MMAP_VALID |
130 SNDRV_PCM_INFO_BATCH |
131 SNDRV_PCM_INFO_INTERLEAVED |
Takashi Sakamoto69dcf3e2014-12-09 00:10:38 +0900132 SNDRV_PCM_INFO_JOINT_DUPLEX |
Takashi Sakamoto2c2416c2014-11-29 00:59:18 +0900133 SNDRV_PCM_INFO_BLOCK_TRANSFER;
Takashi Sakamoto2c2416c2014-11-29 00:59:18 +0900134
Takashi Sakamoto69dcf3e2014-12-09 00:10:38 +0900135 if (substream->stream == SNDRV_PCM_STREAM_CAPTURE) {
Takashi Sakamoto49c7b3f2015-09-19 11:22:01 +0900136 hw->formats = AM824_IN_PCM_FORMAT_BITS;
Takashi Sakamoto69dcf3e2014-12-09 00:10:38 +0900137 stream = &dice->tx_stream;
138 pcm_channels = dice->tx_channels;
139 } else {
Takashi Sakamoto49c7b3f2015-09-19 11:22:01 +0900140 hw->formats = AM824_OUT_PCM_FORMAT_BITS;
Takashi Sakamoto69dcf3e2014-12-09 00:10:38 +0900141 stream = &dice->rx_stream;
142 pcm_channels = dice->rx_channels;
143 }
144
145 limit_channels_and_rates(dice, runtime, pcm_channels);
Takashi Sakamoto2c2416c2014-11-29 00:59:18 +0900146 limit_period_and_buffer(hw);
147
Takashi Sakamotoc50fb912014-11-29 00:59:15 +0900148 err = snd_pcm_hw_rule_add(runtime, 0, SNDRV_PCM_HW_PARAM_RATE,
Takashi Sakamoto69dcf3e2014-12-09 00:10:38 +0900149 dice_rate_constraint, substream,
Takashi Sakamotoc50fb912014-11-29 00:59:15 +0900150 SNDRV_PCM_HW_PARAM_CHANNELS, -1);
151 if (err < 0)
Takashi Sakamoto2c2416c2014-11-29 00:59:18 +0900152 goto end;
Takashi Sakamotoc50fb912014-11-29 00:59:15 +0900153 err = snd_pcm_hw_rule_add(runtime, 0, SNDRV_PCM_HW_PARAM_CHANNELS,
Takashi Sakamoto69dcf3e2014-12-09 00:10:38 +0900154 dice_channels_constraint, substream,
Takashi Sakamotoc50fb912014-11-29 00:59:15 +0900155 SNDRV_PCM_HW_PARAM_RATE, -1);
156 if (err < 0)
Takashi Sakamoto2c2416c2014-11-29 00:59:18 +0900157 goto end;
Takashi Sakamotoc50fb912014-11-29 00:59:15 +0900158
Takashi Sakamotobc8500d2015-09-19 11:21:57 +0900159 err = amdtp_am824_add_pcm_hw_constraints(stream, runtime);
Takashi Sakamoto2c2416c2014-11-29 00:59:18 +0900160end:
161 return err;
162}
163
164static int pcm_open(struct snd_pcm_substream *substream)
165{
166 struct snd_dice *dice = substream->private_data;
Takashi Sakamoto8fc01fc2014-12-09 00:10:37 +0900167 unsigned int source, rate;
168 bool internal;
Takashi Sakamoto2c2416c2014-11-29 00:59:18 +0900169 int err;
170
171 err = snd_dice_stream_lock_try(dice);
Takashi Sakamotoc50fb912014-11-29 00:59:15 +0900172 if (err < 0)
Takashi Sakamoto2c2416c2014-11-29 00:59:18 +0900173 goto end;
Takashi Sakamotoc50fb912014-11-29 00:59:15 +0900174
Takashi Sakamoto2c2416c2014-11-29 00:59:18 +0900175 err = init_hw_info(dice, substream);
176 if (err < 0)
177 goto err_locked;
Takashi Sakamoto8fc01fc2014-12-09 00:10:37 +0900178
179 err = snd_dice_transaction_get_clock_source(dice, &source);
180 if (err < 0)
181 goto err_locked;
182 switch (source) {
183 case CLOCK_SOURCE_AES1:
184 case CLOCK_SOURCE_AES2:
185 case CLOCK_SOURCE_AES3:
186 case CLOCK_SOURCE_AES4:
187 case CLOCK_SOURCE_AES_ANY:
188 case CLOCK_SOURCE_ADAT:
189 case CLOCK_SOURCE_TDIF:
190 case CLOCK_SOURCE_WC:
191 internal = false;
192 break;
193 default:
194 internal = true;
195 break;
196 }
197
198 /*
Takashi Sakamoto69dcf3e2014-12-09 00:10:38 +0900199 * When source of clock is not internal or any PCM streams are running,
200 * available sampling rate is limited at current sampling rate.
Takashi Sakamoto8fc01fc2014-12-09 00:10:37 +0900201 */
Takashi Sakamoto69dcf3e2014-12-09 00:10:38 +0900202 if (!internal ||
203 amdtp_stream_pcm_running(&dice->tx_stream) ||
204 amdtp_stream_pcm_running(&dice->rx_stream)) {
Takashi Sakamoto8fc01fc2014-12-09 00:10:37 +0900205 err = snd_dice_transaction_get_rate(dice, &rate);
206 if (err < 0)
207 goto err_locked;
208 substream->runtime->hw.rate_min = rate;
209 substream->runtime->hw.rate_max = rate;
210 }
211
212 snd_pcm_set_sync(substream);
Takashi Sakamoto2c2416c2014-11-29 00:59:18 +0900213end:
214 return err;
215err_locked:
Takashi Sakamotoc50fb912014-11-29 00:59:15 +0900216 snd_dice_stream_lock_release(dice);
Takashi Sakamotoc50fb912014-11-29 00:59:15 +0900217 return err;
218}
219
220static int pcm_close(struct snd_pcm_substream *substream)
221{
222 struct snd_dice *dice = substream->private_data;
223
224 snd_dice_stream_lock_release(dice);
225
226 return 0;
227}
228
Takashi Sakamoto69dcf3e2014-12-09 00:10:38 +0900229static int capture_hw_params(struct snd_pcm_substream *substream,
230 struct snd_pcm_hw_params *hw_params)
231{
232 struct snd_dice *dice = substream->private_data;
Takashi Sakamoto22c103c2015-08-29 10:38:46 +0900233 int err;
234
235 err = snd_pcm_lib_alloc_vmalloc_buffer(substream,
236 params_buffer_bytes(hw_params));
237 if (err < 0)
238 return err;
Takashi Sakamoto69dcf3e2014-12-09 00:10:38 +0900239
240 if (substream->runtime->status->state == SNDRV_PCM_STATE_OPEN) {
241 mutex_lock(&dice->mutex);
242 dice->substreams_counter++;
243 mutex_unlock(&dice->mutex);
244 }
245
Takashi Sakamoto85130cb2015-09-19 11:22:00 +0900246 amdtp_am824_set_pcm_format(&dice->tx_stream, params_format(hw_params));
Takashi Sakamoto69dcf3e2014-12-09 00:10:38 +0900247
Takashi Sakamoto22c103c2015-08-29 10:38:46 +0900248 return 0;
Takashi Sakamoto69dcf3e2014-12-09 00:10:38 +0900249}
Takashi Sakamotoc50fb912014-11-29 00:59:15 +0900250static int playback_hw_params(struct snd_pcm_substream *substream,
251 struct snd_pcm_hw_params *hw_params)
252{
253 struct snd_dice *dice = substream->private_data;
Takashi Sakamoto22c103c2015-08-29 10:38:46 +0900254 int err;
255
256 err = snd_pcm_lib_alloc_vmalloc_buffer(substream,
257 params_buffer_bytes(hw_params));
258 if (err < 0)
259 return err;
Takashi Sakamoto69dcf3e2014-12-09 00:10:38 +0900260
261 if (substream->runtime->status->state == SNDRV_PCM_STATE_OPEN) {
262 mutex_lock(&dice->mutex);
263 dice->substreams_counter++;
264 mutex_unlock(&dice->mutex);
265 }
266
Takashi Sakamoto85130cb2015-09-19 11:22:00 +0900267 amdtp_am824_set_pcm_format(&dice->rx_stream, params_format(hw_params));
Takashi Sakamotoc50fb912014-11-29 00:59:15 +0900268
Takashi Sakamoto22c103c2015-08-29 10:38:46 +0900269 return 0;
Takashi Sakamotoc50fb912014-11-29 00:59:15 +0900270}
271
Takashi Sakamoto69dcf3e2014-12-09 00:10:38 +0900272static int capture_hw_free(struct snd_pcm_substream *substream)
Takashi Sakamotoc50fb912014-11-29 00:59:15 +0900273{
274 struct snd_dice *dice = substream->private_data;
275
276 mutex_lock(&dice->mutex);
Takashi Sakamoto69dcf3e2014-12-09 00:10:38 +0900277
278 if (substream->runtime->status->state != SNDRV_PCM_STATE_OPEN)
279 dice->substreams_counter--;
280
Takashi Sakamoto9a028432014-12-09 00:10:36 +0900281 snd_dice_stream_stop_duplex(dice);
Takashi Sakamoto69dcf3e2014-12-09 00:10:38 +0900282
Takashi Sakamotoc50fb912014-11-29 00:59:15 +0900283 mutex_unlock(&dice->mutex);
284
285 return snd_pcm_lib_free_vmalloc_buffer(substream);
286}
287
Takashi Sakamoto69dcf3e2014-12-09 00:10:38 +0900288static int playback_hw_free(struct snd_pcm_substream *substream)
289{
290 struct snd_dice *dice = substream->private_data;
291
292 mutex_lock(&dice->mutex);
293
294 if (substream->runtime->status->state != SNDRV_PCM_STATE_OPEN)
295 dice->substreams_counter--;
296
297 snd_dice_stream_stop_duplex(dice);
298
299 mutex_unlock(&dice->mutex);
300
301 return snd_pcm_lib_free_vmalloc_buffer(substream);
302}
303
304static int capture_prepare(struct snd_pcm_substream *substream)
305{
306 struct snd_dice *dice = substream->private_data;
307 int err;
308
309 mutex_lock(&dice->mutex);
310 err = snd_dice_stream_start_duplex(dice, substream->runtime->rate);
311 mutex_unlock(&dice->mutex);
312 if (err >= 0)
313 amdtp_stream_pcm_prepare(&dice->tx_stream);
314
315 return 0;
316}
Takashi Sakamotoc50fb912014-11-29 00:59:15 +0900317static int playback_prepare(struct snd_pcm_substream *substream)
318{
319 struct snd_dice *dice = substream->private_data;
320 int err;
321
322 mutex_lock(&dice->mutex);
Takashi Sakamoto9a028432014-12-09 00:10:36 +0900323 err = snd_dice_stream_start_duplex(dice, substream->runtime->rate);
Takashi Sakamotoc50fb912014-11-29 00:59:15 +0900324 mutex_unlock(&dice->mutex);
Takashi Sakamoto288a8d02014-12-09 00:10:35 +0900325 if (err >= 0)
326 amdtp_stream_pcm_prepare(&dice->rx_stream);
Takashi Sakamotoc50fb912014-11-29 00:59:15 +0900327
Takashi Sakamoto288a8d02014-12-09 00:10:35 +0900328 return err;
Takashi Sakamotoc50fb912014-11-29 00:59:15 +0900329}
330
Takashi Sakamoto69dcf3e2014-12-09 00:10:38 +0900331static int capture_trigger(struct snd_pcm_substream *substream, int cmd)
332{
333 struct snd_dice *dice = substream->private_data;
334
335 switch (cmd) {
336 case SNDRV_PCM_TRIGGER_START:
337 amdtp_stream_pcm_trigger(&dice->tx_stream, substream);
338 break;
339 case SNDRV_PCM_TRIGGER_STOP:
340 amdtp_stream_pcm_trigger(&dice->tx_stream, NULL);
341 break;
342 default:
343 return -EINVAL;
344 }
345
346 return 0;
347}
Takashi Sakamotoc50fb912014-11-29 00:59:15 +0900348static int playback_trigger(struct snd_pcm_substream *substream, int cmd)
349{
350 struct snd_dice *dice = substream->private_data;
351
352 switch (cmd) {
353 case SNDRV_PCM_TRIGGER_START:
354 amdtp_stream_pcm_trigger(&dice->rx_stream, substream);
355 break;
356 case SNDRV_PCM_TRIGGER_STOP:
357 amdtp_stream_pcm_trigger(&dice->rx_stream, NULL);
358 break;
359 default:
360 return -EINVAL;
361 }
362
363 return 0;
364}
365
Takashi Sakamoto69dcf3e2014-12-09 00:10:38 +0900366static snd_pcm_uframes_t capture_pointer(struct snd_pcm_substream *substream)
367{
368 struct snd_dice *dice = substream->private_data;
369
370 return amdtp_stream_pcm_pointer(&dice->tx_stream);
371}
Takashi Sakamotoc50fb912014-11-29 00:59:15 +0900372static snd_pcm_uframes_t playback_pointer(struct snd_pcm_substream *substream)
373{
374 struct snd_dice *dice = substream->private_data;
375
376 return amdtp_stream_pcm_pointer(&dice->rx_stream);
377}
378
379int snd_dice_create_pcm(struct snd_dice *dice)
380{
Takashi Sakamoto69dcf3e2014-12-09 00:10:38 +0900381 static struct snd_pcm_ops capture_ops = {
382 .open = pcm_open,
383 .close = pcm_close,
384 .ioctl = snd_pcm_lib_ioctl,
385 .hw_params = capture_hw_params,
386 .hw_free = capture_hw_free,
387 .prepare = capture_prepare,
388 .trigger = capture_trigger,
389 .pointer = capture_pointer,
390 .page = snd_pcm_lib_get_vmalloc_page,
391 .mmap = snd_pcm_lib_mmap_vmalloc,
392 };
Takashi Sakamotoc50fb912014-11-29 00:59:15 +0900393 static struct snd_pcm_ops playback_ops = {
394 .open = pcm_open,
395 .close = pcm_close,
396 .ioctl = snd_pcm_lib_ioctl,
397 .hw_params = playback_hw_params,
398 .hw_free = playback_hw_free,
399 .prepare = playback_prepare,
400 .trigger = playback_trigger,
401 .pointer = playback_pointer,
402 .page = snd_pcm_lib_get_vmalloc_page,
403 .mmap = snd_pcm_lib_mmap_vmalloc,
404 };
405 struct snd_pcm *pcm;
Takashi Sakamoto69dcf3e2014-12-09 00:10:38 +0900406 unsigned int i, capture, playback;
Takashi Sakamotoc50fb912014-11-29 00:59:15 +0900407 int err;
408
Takashi Sakamoto69dcf3e2014-12-09 00:10:38 +0900409 capture = playback = 0;
410 for (i = 0; i < 3; i++) {
411 if (dice->tx_channels[i] > 0)
412 capture = 1;
413 if (dice->rx_channels[i] > 0)
414 playback = 1;
415 }
416
417 err = snd_pcm_new(dice->card, "DICE", 0, playback, capture, &pcm);
Takashi Sakamotoc50fb912014-11-29 00:59:15 +0900418 if (err < 0)
419 return err;
420 pcm->private_data = dice;
421 strcpy(pcm->name, dice->card->shortname);
Takashi Sakamoto69dcf3e2014-12-09 00:10:38 +0900422
423 if (capture > 0)
424 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_CAPTURE, &capture_ops);
425
426 if (playback > 0)
427 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_PLAYBACK, &playback_ops);
Takashi Sakamotoc50fb912014-11-29 00:59:15 +0900428
429 return 0;
430}