1 // SPDX-License-Identifier: GPL-2.0-only
3 * fireworks_pcm.c - a part of driver for Fireworks based devices
5 * Copyright (c) 2009-2010 Clemens Ladisch
6 * Copyright (c) 2013-2014 Takashi Sakamoto
8 #include "./fireworks.h"
12 * Fireworks changes its AMDTP channels for PCM data according to its sampling
13 * rate. There are three modes. Here _XX is either _rx or _tx.
14 * 0: 32.0- 48.0 kHz then snd_efw_hwinfo.amdtp_XX_pcm_channels applied
15 * 1: 88.2- 96.0 kHz then snd_efw_hwinfo.amdtp_XX_pcm_channels_2x applied
16 * 2: 176.4-192.0 kHz then snd_efw_hwinfo.amdtp_XX_pcm_channels_4x applied
18 * The number of PCM channels for analog input and output are always fixed but
19 * the number of PCM channels for digital input and output are differed.
21 * Additionally, according to "AudioFire Owner's Manual Version 2.2", in some
22 * model, the number of PCM channels for digital input has more restriction
23 * depending on which digital interface is selected.
24 * - S/PDIF coaxial and optical : use input 1-2
25 * - ADAT optical at 32.0-48.0 kHz : use input 1-8
26 * - ADAT optical at 88.2-96.0 kHz : use input 1-4 (S/MUX format)
28 * The data in AMDTP channels for blank PCM channels are zero.
30 static const unsigned int freq_table
[] = {
31 /* multiplier mode 0 */
35 /* multiplier mode 1 */
38 /* multiplier mode 2 */
43 static inline unsigned int
44 get_multiplier_mode_with_index(unsigned int index
)
46 return ((int)index
- 1) / 2;
49 int snd_efw_get_multiplier_mode(unsigned int sampling_rate
, unsigned int *mode
)
53 for (i
= 0; i
< ARRAY_SIZE(freq_table
); i
++) {
54 if (freq_table
[i
] == sampling_rate
) {
55 *mode
= get_multiplier_mode_with_index(i
);
64 hw_rule_rate(struct snd_pcm_hw_params
*params
, struct snd_pcm_hw_rule
*rule
)
66 unsigned int *pcm_channels
= rule
->private;
67 struct snd_interval
*r
=
68 hw_param_interval(params
, SNDRV_PCM_HW_PARAM_RATE
);
69 const struct snd_interval
*c
=
70 hw_param_interval_c(params
, SNDRV_PCM_HW_PARAM_CHANNELS
);
71 struct snd_interval t
= {
72 .min
= UINT_MAX
, .max
= 0, .integer
= 1
76 for (i
= 0; i
< ARRAY_SIZE(freq_table
); i
++) {
77 mode
= get_multiplier_mode_with_index(i
);
78 if (!snd_interval_test(c
, pcm_channels
[mode
]))
81 t
.min
= min(t
.min
, freq_table
[i
]);
82 t
.max
= max(t
.max
, freq_table
[i
]);
85 return snd_interval_refine(r
, &t
);
89 hw_rule_channels(struct snd_pcm_hw_params
*params
, struct snd_pcm_hw_rule
*rule
)
91 unsigned int *pcm_channels
= rule
->private;
92 struct snd_interval
*c
=
93 hw_param_interval(params
, SNDRV_PCM_HW_PARAM_CHANNELS
);
94 const struct snd_interval
*r
=
95 hw_param_interval_c(params
, SNDRV_PCM_HW_PARAM_RATE
);
96 struct snd_interval t
= {
97 .min
= UINT_MAX
, .max
= 0, .integer
= 1
101 for (i
= 0; i
< ARRAY_SIZE(freq_table
); i
++) {
102 mode
= get_multiplier_mode_with_index(i
);
103 if (!snd_interval_test(r
, freq_table
[i
]))
106 t
.min
= min(t
.min
, pcm_channels
[mode
]);
107 t
.max
= max(t
.max
, pcm_channels
[mode
]);
110 return snd_interval_refine(c
, &t
);
114 limit_channels(struct snd_pcm_hardware
*hw
, unsigned int *pcm_channels
)
116 unsigned int i
, mode
;
118 hw
->channels_min
= UINT_MAX
;
119 hw
->channels_max
= 0;
121 for (i
= 0; i
< ARRAY_SIZE(freq_table
); i
++) {
122 mode
= get_multiplier_mode_with_index(i
);
123 if (pcm_channels
[mode
] == 0)
126 hw
->channels_min
= min(hw
->channels_min
, pcm_channels
[mode
]);
127 hw
->channels_max
= max(hw
->channels_max
, pcm_channels
[mode
]);
132 pcm_init_hw_params(struct snd_efw
*efw
,
133 struct snd_pcm_substream
*substream
)
135 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
136 struct amdtp_stream
*s
;
137 unsigned int *pcm_channels
;
140 if (substream
->stream
== SNDRV_PCM_STREAM_CAPTURE
) {
141 runtime
->hw
.formats
= AM824_IN_PCM_FORMAT_BITS
;
143 pcm_channels
= efw
->pcm_capture_channels
;
145 runtime
->hw
.formats
= AM824_OUT_PCM_FORMAT_BITS
;
147 pcm_channels
= efw
->pcm_playback_channels
;
151 runtime
->hw
.rates
= efw
->supported_sampling_rate
,
152 snd_pcm_limit_hw_rates(runtime
);
154 limit_channels(&runtime
->hw
, pcm_channels
);
156 err
= snd_pcm_hw_rule_add(runtime
, 0, SNDRV_PCM_HW_PARAM_CHANNELS
,
157 hw_rule_channels
, pcm_channels
,
158 SNDRV_PCM_HW_PARAM_RATE
, -1);
162 err
= snd_pcm_hw_rule_add(runtime
, 0, SNDRV_PCM_HW_PARAM_RATE
,
163 hw_rule_rate
, pcm_channels
,
164 SNDRV_PCM_HW_PARAM_CHANNELS
, -1);
168 err
= amdtp_am824_add_pcm_hw_constraints(s
, runtime
);
173 static int pcm_open(struct snd_pcm_substream
*substream
)
175 struct snd_efw
*efw
= substream
->private_data
;
176 struct amdtp_domain
*d
= &efw
->domain
;
177 enum snd_efw_clock_source clock_source
;
180 err
= snd_efw_stream_lock_try(efw
);
184 err
= pcm_init_hw_params(efw
, substream
);
188 err
= snd_efw_command_get_clock_source(efw
, &clock_source
);
192 mutex_lock(&efw
->mutex
);
194 // When source of clock is not internal or any stream is reserved for
195 // transmission of PCM frames, the available sampling rate is limited
197 if ((clock_source
!= SND_EFW_CLOCK_SOURCE_INTERNAL
) ||
198 (efw
->substreams_counter
> 0 && d
->events_per_period
> 0)) {
199 unsigned int frames_per_period
= d
->events_per_period
;
200 unsigned int frames_per_buffer
= d
->events_per_buffer
;
201 unsigned int sampling_rate
;
203 err
= snd_efw_command_get_sampling_rate(efw
, &sampling_rate
);
205 mutex_unlock(&efw
->mutex
);
208 substream
->runtime
->hw
.rate_min
= sampling_rate
;
209 substream
->runtime
->hw
.rate_max
= sampling_rate
;
211 if (frames_per_period
> 0) {
212 err
= snd_pcm_hw_constraint_minmax(substream
->runtime
,
213 SNDRV_PCM_HW_PARAM_PERIOD_SIZE
,
214 frames_per_period
, frames_per_period
);
216 mutex_unlock(&efw
->mutex
);
220 err
= snd_pcm_hw_constraint_minmax(substream
->runtime
,
221 SNDRV_PCM_HW_PARAM_BUFFER_SIZE
,
222 frames_per_buffer
, frames_per_buffer
);
224 mutex_unlock(&efw
->mutex
);
230 mutex_unlock(&efw
->mutex
);
232 snd_pcm_set_sync(substream
);
236 snd_efw_stream_lock_release(efw
);
240 static int pcm_close(struct snd_pcm_substream
*substream
)
242 struct snd_efw
*efw
= substream
->private_data
;
243 snd_efw_stream_lock_release(efw
);
247 static int pcm_hw_params(struct snd_pcm_substream
*substream
,
248 struct snd_pcm_hw_params
*hw_params
)
250 struct snd_efw
*efw
= substream
->private_data
;
253 err
= snd_pcm_lib_malloc_pages(substream
, params_buffer_bytes(hw_params
));
257 if (substream
->runtime
->status
->state
== SNDRV_PCM_STATE_OPEN
) {
258 unsigned int rate
= params_rate(hw_params
);
259 unsigned int frames_per_period
= params_period_size(hw_params
);
260 unsigned int frames_per_buffer
= params_buffer_size(hw_params
);
262 mutex_lock(&efw
->mutex
);
263 err
= snd_efw_stream_reserve_duplex(efw
, rate
,
264 frames_per_period
, frames_per_buffer
);
266 ++efw
->substreams_counter
;
267 mutex_unlock(&efw
->mutex
);
273 static int pcm_hw_free(struct snd_pcm_substream
*substream
)
275 struct snd_efw
*efw
= substream
->private_data
;
277 mutex_lock(&efw
->mutex
);
279 if (substream
->runtime
->status
->state
!= SNDRV_PCM_STATE_OPEN
)
280 --efw
->substreams_counter
;
282 snd_efw_stream_stop_duplex(efw
);
284 mutex_unlock(&efw
->mutex
);
286 return snd_pcm_lib_free_pages(substream
);
289 static int pcm_capture_prepare(struct snd_pcm_substream
*substream
)
291 struct snd_efw
*efw
= substream
->private_data
;
294 err
= snd_efw_stream_start_duplex(efw
);
296 amdtp_stream_pcm_prepare(&efw
->tx_stream
);
300 static int pcm_playback_prepare(struct snd_pcm_substream
*substream
)
302 struct snd_efw
*efw
= substream
->private_data
;
305 err
= snd_efw_stream_start_duplex(efw
);
307 amdtp_stream_pcm_prepare(&efw
->rx_stream
);
312 static int pcm_capture_trigger(struct snd_pcm_substream
*substream
, int cmd
)
314 struct snd_efw
*efw
= substream
->private_data
;
317 case SNDRV_PCM_TRIGGER_START
:
318 amdtp_stream_pcm_trigger(&efw
->tx_stream
, substream
);
320 case SNDRV_PCM_TRIGGER_STOP
:
321 amdtp_stream_pcm_trigger(&efw
->tx_stream
, NULL
);
329 static int pcm_playback_trigger(struct snd_pcm_substream
*substream
, int cmd
)
331 struct snd_efw
*efw
= substream
->private_data
;
334 case SNDRV_PCM_TRIGGER_START
:
335 amdtp_stream_pcm_trigger(&efw
->rx_stream
, substream
);
337 case SNDRV_PCM_TRIGGER_STOP
:
338 amdtp_stream_pcm_trigger(&efw
->rx_stream
, NULL
);
347 static snd_pcm_uframes_t
pcm_capture_pointer(struct snd_pcm_substream
*sbstrm
)
349 struct snd_efw
*efw
= sbstrm
->private_data
;
351 return amdtp_domain_stream_pcm_pointer(&efw
->domain
, &efw
->tx_stream
);
353 static snd_pcm_uframes_t
pcm_playback_pointer(struct snd_pcm_substream
*sbstrm
)
355 struct snd_efw
*efw
= sbstrm
->private_data
;
357 return amdtp_domain_stream_pcm_pointer(&efw
->domain
, &efw
->rx_stream
);
360 static int pcm_capture_ack(struct snd_pcm_substream
*substream
)
362 struct snd_efw
*efw
= substream
->private_data
;
364 return amdtp_domain_stream_pcm_ack(&efw
->domain
, &efw
->tx_stream
);
367 static int pcm_playback_ack(struct snd_pcm_substream
*substream
)
369 struct snd_efw
*efw
= substream
->private_data
;
371 return amdtp_domain_stream_pcm_ack(&efw
->domain
, &efw
->rx_stream
);
374 int snd_efw_create_pcm_devices(struct snd_efw
*efw
)
376 static const struct snd_pcm_ops capture_ops
= {
379 .ioctl
= snd_pcm_lib_ioctl
,
380 .hw_params
= pcm_hw_params
,
381 .hw_free
= pcm_hw_free
,
382 .prepare
= pcm_capture_prepare
,
383 .trigger
= pcm_capture_trigger
,
384 .pointer
= pcm_capture_pointer
,
385 .ack
= pcm_capture_ack
,
387 static const struct snd_pcm_ops playback_ops
= {
390 .ioctl
= snd_pcm_lib_ioctl
,
391 .hw_params
= pcm_hw_params
,
392 .hw_free
= pcm_hw_free
,
393 .prepare
= pcm_playback_prepare
,
394 .trigger
= pcm_playback_trigger
,
395 .pointer
= pcm_playback_pointer
,
396 .ack
= pcm_playback_ack
,
401 err
= snd_pcm_new(efw
->card
, efw
->card
->driver
, 0, 1, 1, &pcm
);
405 pcm
->private_data
= efw
;
406 snprintf(pcm
->name
, sizeof(pcm
->name
), "%s PCM", efw
->card
->shortname
);
407 snd_pcm_set_ops(pcm
, SNDRV_PCM_STREAM_PLAYBACK
, &playback_ops
);
408 snd_pcm_set_ops(pcm
, SNDRV_PCM_STREAM_CAPTURE
, &capture_ops
);
409 snd_pcm_lib_preallocate_pages_for_all(pcm
, SNDRV_DMA_TYPE_VMALLOC
,