blob: 36c1353f249489adf5721b68610933065212e8fc [file] [log] [blame]
Thomas Gleixnerda607e12019-05-29 16:57:59 -07001// SPDX-License-Identifier: GPL-2.0-only
Takashi Sakamotoe453df42015-10-01 22:02:16 +09002/*
3 * tascam-pcm.c - a part of driver for TASCAM FireWire series
4 *
5 * Copyright (c) 2015 Takashi Sakamoto
Takashi Sakamotoe453df42015-10-01 22:02:16 +09006 */
7
8#include "tascam.h"
9
Takashi Sakamotoe453df42015-10-01 22:02:16 +090010static int pcm_init_hw_params(struct snd_tscm *tscm,
11 struct snd_pcm_substream *substream)
12{
Takashi Sakamotoe453df42015-10-01 22:02:16 +090013 struct snd_pcm_runtime *runtime = substream->runtime;
Takashi Sakamoto55799c52017-06-08 09:11:03 +090014 struct snd_pcm_hardware *hw = &runtime->hw;
Takashi Sakamotoe453df42015-10-01 22:02:16 +090015 struct amdtp_stream *stream;
16 unsigned int pcm_channels;
17
Takashi Sakamotoe453df42015-10-01 22:02:16 +090018 if (substream->stream == SNDRV_PCM_STREAM_CAPTURE) {
19 runtime->hw.formats = SNDRV_PCM_FMTBIT_S32;
20 stream = &tscm->tx_stream;
21 pcm_channels = tscm->spec->pcm_capture_analog_channels;
22 } else {
Takashi Sakamotoa02cb8f2017-05-22 22:22:21 +090023 runtime->hw.formats = SNDRV_PCM_FMTBIT_S32;
Takashi Sakamotoe453df42015-10-01 22:02:16 +090024 stream = &tscm->rx_stream;
25 pcm_channels = tscm->spec->pcm_playback_analog_channels;
26 }
27
28 if (tscm->spec->has_adat)
29 pcm_channels += 8;
30 if (tscm->spec->has_spdif)
31 pcm_channels += 2;
32 runtime->hw.channels_min = runtime->hw.channels_max = pcm_channels;
33
Takashi Sakamoto55799c52017-06-08 09:11:03 +090034 hw->rates = SNDRV_PCM_RATE_44100 |
35 SNDRV_PCM_RATE_48000 |
36 SNDRV_PCM_RATE_88200 |
37 SNDRV_PCM_RATE_96000;
38 snd_pcm_limit_hw_rates(runtime);
Takashi Sakamotoe453df42015-10-01 22:02:16 +090039
40 return amdtp_tscm_add_pcm_hw_constraints(stream, runtime);
41}
42
43static int pcm_open(struct snd_pcm_substream *substream)
44{
45 struct snd_tscm *tscm = substream->private_data;
Takashi Sakamoto6669a112019-10-07 20:05:30 +090046 struct amdtp_domain *d = &tscm->domain;
Takashi Sakamotoe453df42015-10-01 22:02:16 +090047 enum snd_tscm_clock clock;
Takashi Sakamotoe453df42015-10-01 22:02:16 +090048 int err;
49
Takashi Sakamotoe5e0c3d2015-10-01 22:02:17 +090050 err = snd_tscm_stream_lock_try(tscm);
51 if (err < 0)
Takashi Sakamoto6669a112019-10-07 20:05:30 +090052 return err;
Takashi Sakamotoe5e0c3d2015-10-01 22:02:17 +090053
Takashi Sakamotoe453df42015-10-01 22:02:16 +090054 err = pcm_init_hw_params(tscm, substream);
55 if (err < 0)
Takashi Sakamotoe5e0c3d2015-10-01 22:02:17 +090056 goto err_locked;
Takashi Sakamotoe453df42015-10-01 22:02:16 +090057
58 err = snd_tscm_stream_get_clock(tscm, &clock);
Takashi Sakamoto26171202019-09-10 22:51:51 +090059 if (err < 0)
60 goto err_locked;
61
Takashi Sakamoto6669a112019-10-07 20:05:30 +090062 mutex_lock(&tscm->mutex);
63
64 // When source of clock is not internal or any stream is reserved for
65 // transmission of PCM frames, the available sampling rate is limited
66 // at current one.
67 if (clock != SND_TSCM_CLOCK_INTERNAL || tscm->substreams_counter > 0) {
68 unsigned int frames_per_period = d->events_per_period;
Takashi Sakamoto128307d2019-10-18 00:54:19 +090069 unsigned int frames_per_buffer = d->events_per_buffer;
Takashi Sakamoto6669a112019-10-07 20:05:30 +090070 unsigned int rate;
71
Takashi Sakamotoe453df42015-10-01 22:02:16 +090072 err = snd_tscm_stream_get_rate(tscm, &rate);
Takashi Sakamoto6669a112019-10-07 20:05:30 +090073 if (err < 0) {
74 mutex_unlock(&tscm->mutex);
Takashi Sakamotoe5e0c3d2015-10-01 22:02:17 +090075 goto err_locked;
Takashi Sakamoto6669a112019-10-07 20:05:30 +090076 }
Takashi Sakamotoe453df42015-10-01 22:02:16 +090077 substream->runtime->hw.rate_min = rate;
78 substream->runtime->hw.rate_max = rate;
Takashi Sakamoto6669a112019-10-07 20:05:30 +090079
80 err = snd_pcm_hw_constraint_minmax(substream->runtime,
81 SNDRV_PCM_HW_PARAM_PERIOD_SIZE,
82 frames_per_period, frames_per_period);
83 if (err < 0) {
84 mutex_unlock(&tscm->mutex);
85 goto err_locked;
86 }
Takashi Sakamoto128307d2019-10-18 00:54:19 +090087
88 err = snd_pcm_hw_constraint_minmax(substream->runtime,
89 SNDRV_PCM_HW_PARAM_BUFFER_SIZE,
90 frames_per_buffer, frames_per_buffer);
91 if (err < 0) {
92 mutex_unlock(&tscm->mutex);
93 goto err_locked;
94 }
Takashi Sakamotoe453df42015-10-01 22:02:16 +090095 }
96
Takashi Sakamoto6669a112019-10-07 20:05:30 +090097 mutex_unlock(&tscm->mutex);
98
Takashi Sakamotoe453df42015-10-01 22:02:16 +090099 snd_pcm_set_sync(substream);
Takashi Sakamoto6669a112019-10-07 20:05:30 +0900100
101 return 0;
Takashi Sakamotoe5e0c3d2015-10-01 22:02:17 +0900102err_locked:
103 snd_tscm_stream_lock_release(tscm);
Takashi Sakamotoe453df42015-10-01 22:02:16 +0900104 return err;
105}
106
107static int pcm_close(struct snd_pcm_substream *substream)
108{
Takashi Sakamotoe5e0c3d2015-10-01 22:02:17 +0900109 struct snd_tscm *tscm = substream->private_data;
110
111 snd_tscm_stream_lock_release(tscm);
112
Takashi Sakamotoe453df42015-10-01 22:02:16 +0900113 return 0;
114}
115
Takashi Sakamotod8f291b2019-06-02 16:12:51 +0900116static int pcm_hw_params(struct snd_pcm_substream *substream,
117 struct snd_pcm_hw_params *hw_params)
Takashi Sakamotoe453df42015-10-01 22:02:16 +0900118{
119 struct snd_tscm *tscm = substream->private_data;
Takashi Iwai7641d542019-12-09 10:48:41 +0100120 int err = 0;
Takashi Sakamotoe453df42015-10-01 22:02:16 +0900121
122 if (substream->runtime->status->state == SNDRV_PCM_STATE_OPEN) {
Takashi Sakamoto07b26642019-06-02 16:12:48 +0900123 unsigned int rate = params_rate(hw_params);
Takashi Sakamoto262542e2019-10-07 20:05:22 +0900124 unsigned int frames_per_period = params_period_size(hw_params);
Takashi Sakamoto128307d2019-10-18 00:54:19 +0900125 unsigned int frames_per_buffer = params_buffer_size(hw_params);
Takashi Sakamoto07b26642019-06-02 16:12:48 +0900126
Takashi Sakamotoe453df42015-10-01 22:02:16 +0900127 mutex_lock(&tscm->mutex);
Takashi Sakamoto262542e2019-10-07 20:05:22 +0900128 err = snd_tscm_stream_reserve_duplex(tscm, rate,
Takashi Sakamoto128307d2019-10-18 00:54:19 +0900129 frames_per_period, frames_per_buffer);
Takashi Sakamoto07b26642019-06-02 16:12:48 +0900130 if (err >= 0)
131 ++tscm->substreams_counter;
Takashi Sakamotoe453df42015-10-01 22:02:16 +0900132 mutex_unlock(&tscm->mutex);
133 }
134
Takashi Sakamoto07b26642019-06-02 16:12:48 +0900135 return err;
Takashi Sakamotoe453df42015-10-01 22:02:16 +0900136}
137
Takashi Sakamotod8f291b2019-06-02 16:12:51 +0900138static int pcm_hw_free(struct snd_pcm_substream *substream)
Takashi Sakamotoe453df42015-10-01 22:02:16 +0900139{
140 struct snd_tscm *tscm = substream->private_data;
141
142 mutex_lock(&tscm->mutex);
143
144 if (substream->runtime->status->state != SNDRV_PCM_STATE_OPEN)
Takashi Sakamoto07b26642019-06-02 16:12:48 +0900145 --tscm->substreams_counter;
Takashi Sakamotoe453df42015-10-01 22:02:16 +0900146
147 snd_tscm_stream_stop_duplex(tscm);
148
149 mutex_unlock(&tscm->mutex);
150
Takashi Iwai7641d542019-12-09 10:48:41 +0100151 return 0;
Takashi Sakamotoe453df42015-10-01 22:02:16 +0900152}
153
154static int pcm_capture_prepare(struct snd_pcm_substream *substream)
155{
156 struct snd_tscm *tscm = substream->private_data;
157 struct snd_pcm_runtime *runtime = substream->runtime;
158 int err;
159
160 mutex_lock(&tscm->mutex);
161
162 err = snd_tscm_stream_start_duplex(tscm, runtime->rate);
163 if (err >= 0)
164 amdtp_stream_pcm_prepare(&tscm->tx_stream);
165
166 mutex_unlock(&tscm->mutex);
167
168 return err;
169}
170
171static int pcm_playback_prepare(struct snd_pcm_substream *substream)
172{
173 struct snd_tscm *tscm = substream->private_data;
174 struct snd_pcm_runtime *runtime = substream->runtime;
175 int err;
176
177 mutex_lock(&tscm->mutex);
178
179 err = snd_tscm_stream_start_duplex(tscm, runtime->rate);
180 if (err >= 0)
181 amdtp_stream_pcm_prepare(&tscm->rx_stream);
182
183 mutex_unlock(&tscm->mutex);
184
185 return err;
186}
187
188static int pcm_capture_trigger(struct snd_pcm_substream *substream, int cmd)
189{
190 struct snd_tscm *tscm = substream->private_data;
191
192 switch (cmd) {
193 case SNDRV_PCM_TRIGGER_START:
194 amdtp_stream_pcm_trigger(&tscm->tx_stream, substream);
195 break;
196 case SNDRV_PCM_TRIGGER_STOP:
197 amdtp_stream_pcm_trigger(&tscm->tx_stream, NULL);
198 break;
199 default:
200 return -EINVAL;
201 }
202
203 return 0;
204}
205
206static int pcm_playback_trigger(struct snd_pcm_substream *substream, int cmd)
207{
208 struct snd_tscm *tscm = substream->private_data;
209
210 switch (cmd) {
211 case SNDRV_PCM_TRIGGER_START:
212 amdtp_stream_pcm_trigger(&tscm->rx_stream, substream);
213 break;
214 case SNDRV_PCM_TRIGGER_STOP:
215 amdtp_stream_pcm_trigger(&tscm->rx_stream, NULL);
216 break;
217 default:
218 return -EINVAL;
219 }
220
221 return 0;
222}
223
224static snd_pcm_uframes_t pcm_capture_pointer(struct snd_pcm_substream *sbstrm)
225{
226 struct snd_tscm *tscm = sbstrm->private_data;
227
Takashi Sakamotof890f9a2019-10-18 15:19:07 +0900228 return amdtp_domain_stream_pcm_pointer(&tscm->domain, &tscm->tx_stream);
Takashi Sakamotoe453df42015-10-01 22:02:16 +0900229}
230
231static snd_pcm_uframes_t pcm_playback_pointer(struct snd_pcm_substream *sbstrm)
232{
233 struct snd_tscm *tscm = sbstrm->private_data;
234
Takashi Sakamotof890f9a2019-10-18 15:19:07 +0900235 return amdtp_domain_stream_pcm_pointer(&tscm->domain, &tscm->rx_stream);
Takashi Sakamotoe453df42015-10-01 22:02:16 +0900236}
237
Takashi Sakamoto875becf2017-06-07 09:38:05 +0900238static int pcm_capture_ack(struct snd_pcm_substream *substream)
239{
240 struct snd_tscm *tscm = substream->private_data;
241
Takashi Sakamotoe6dcc922019-10-18 15:19:08 +0900242 return amdtp_domain_stream_pcm_ack(&tscm->domain, &tscm->tx_stream);
Takashi Sakamoto875becf2017-06-07 09:38:05 +0900243}
244
245static int pcm_playback_ack(struct snd_pcm_substream *substream)
246{
247 struct snd_tscm *tscm = substream->private_data;
248
Takashi Sakamotoe6dcc922019-10-18 15:19:08 +0900249 return amdtp_domain_stream_pcm_ack(&tscm->domain, &tscm->rx_stream);
Takashi Sakamoto875becf2017-06-07 09:38:05 +0900250}
251
Takashi Sakamotoe453df42015-10-01 22:02:16 +0900252int snd_tscm_create_pcm_devices(struct snd_tscm *tscm)
253{
Takashi Sakamoto92128232017-01-05 21:48:12 +0900254 static const struct snd_pcm_ops capture_ops = {
255 .open = pcm_open,
256 .close = pcm_close,
Takashi Sakamotod8f291b2019-06-02 16:12:51 +0900257 .hw_params = pcm_hw_params,
258 .hw_free = pcm_hw_free,
Takashi Sakamoto92128232017-01-05 21:48:12 +0900259 .prepare = pcm_capture_prepare,
260 .trigger = pcm_capture_trigger,
261 .pointer = pcm_capture_pointer,
Takashi Sakamoto875becf2017-06-07 09:38:05 +0900262 .ack = pcm_capture_ack,
Takashi Sakamoto92128232017-01-05 21:48:12 +0900263 };
264 static const struct snd_pcm_ops playback_ops = {
265 .open = pcm_open,
266 .close = pcm_close,
Takashi Sakamotod8f291b2019-06-02 16:12:51 +0900267 .hw_params = pcm_hw_params,
268 .hw_free = pcm_hw_free,
Takashi Sakamoto92128232017-01-05 21:48:12 +0900269 .prepare = pcm_playback_prepare,
270 .trigger = pcm_playback_trigger,
271 .pointer = pcm_playback_pointer,
Takashi Sakamoto875becf2017-06-07 09:38:05 +0900272 .ack = pcm_playback_ack,
Takashi Sakamoto92128232017-01-05 21:48:12 +0900273 };
Takashi Sakamotoe453df42015-10-01 22:02:16 +0900274 struct snd_pcm *pcm;
275 int err;
276
277 err = snd_pcm_new(tscm->card, tscm->card->driver, 0, 1, 1, &pcm);
278 if (err < 0)
279 return err;
280
281 pcm->private_data = tscm;
282 snprintf(pcm->name, sizeof(pcm->name),
283 "%s PCM", tscm->card->shortname);
Takashi Sakamoto92128232017-01-05 21:48:12 +0900284 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_PLAYBACK, &playback_ops);
285 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_CAPTURE, &capture_ops);
Takashi Iwai7641d542019-12-09 10:48:41 +0100286 snd_pcm_set_managed_buffer_all(pcm, SNDRV_DMA_TYPE_VMALLOC, NULL, 0, 0);
Takashi Sakamotoe453df42015-10-01 22:02:16 +0900287
288 return 0;
289}