ALSA: fireface: share PCM buffer size for both direction
authorTakashi Sakamoto <o-takashi@sakamocchi.jp>
Thu, 17 Oct 2019 15:54:21 +0000 (00:54 +0900)
committerTakashi Iwai <tiwai@suse.de>
Fri, 18 Oct 2019 02:35:52 +0000 (04:35 +0200)
This commit allows ALSA fireface driver to share PCM buffer size for
both capture and playback PCM substream. When AMDTP domain starts for
one of the PCM substream, buffer size of the PCM substream is stores to
AMDTP domain structure. Some AMDTP streams have already run with the
buffer size when another PCM substream starts, therefore the PCM
substream has a constraint to its buffer size.

Signed-off-by: Takashi Sakamoto <o-takashi@sakamocchi.jp>
Link: https://lore.kernel.org/r/20191017155424.885-10-o-takashi@sakamocchi.jp
Signed-off-by: Takashi Iwai <tiwai@suse.de>
sound/firewire/fireface/ff-pcm.c
sound/firewire/fireface/ff-stream.c
sound/firewire/fireface/ff.h

index 415bc9ccd1c70d63c48138beba897a95748b749e..005d959f86517fbf04e7151d60577e040601939b 100644 (file)
@@ -180,6 +180,7 @@ static int pcm_open(struct snd_pcm_substream *substream)
        } else {
                if (ff->substreams_counter > 0) {
                        unsigned int frames_per_period = d->events_per_period;
+                       unsigned int frames_per_buffer = d->events_per_buffer;
 
                        rate = amdtp_rate_table[ff->rx_stream.sfc];
                        substream->runtime->hw.rate_min = rate;
@@ -192,6 +193,14 @@ static int pcm_open(struct snd_pcm_substream *substream)
                                mutex_unlock(&ff->mutex);
                                goto release_lock;
                        }
+
+                       err = snd_pcm_hw_constraint_minmax(substream->runtime,
+                                       SNDRV_PCM_HW_PARAM_BUFFER_SIZE,
+                                       frames_per_buffer, frames_per_buffer);
+                       if (err < 0) {
+                               mutex_unlock(&ff->mutex);
+                               goto release_lock;
+                       }
                }
        }
 
@@ -229,9 +238,11 @@ static int pcm_hw_params(struct snd_pcm_substream *substream,
        if (substream->runtime->status->state == SNDRV_PCM_STATE_OPEN) {
                unsigned int rate = params_rate(hw_params);
                unsigned int frames_per_period = params_period_size(hw_params);
+               unsigned int frames_per_buffer = params_buffer_size(hw_params);
 
                mutex_lock(&ff->mutex);
-               err = snd_ff_stream_reserve_duplex(ff, rate, frames_per_period);
+               err = snd_ff_stream_reserve_duplex(ff, rate, frames_per_period,
+                                                  frames_per_buffer);
                if (err >= 0)
                        ++ff->substreams_counter;
                mutex_unlock(&ff->mutex);
index cbe0e5087b05e27668ab08b9b2732ece90a73ec3..a13754f914e8aad33dbd3e8a66efa8bce6411f0c 100644 (file)
@@ -107,7 +107,8 @@ void snd_ff_stream_destroy_duplex(struct snd_ff *ff)
 }
 
 int snd_ff_stream_reserve_duplex(struct snd_ff *ff, unsigned int rate,
-                                unsigned int frames_per_period)
+                                unsigned int frames_per_period,
+                                unsigned int frames_per_buffer)
 {
        unsigned int curr_rate;
        enum snd_ff_clock_src src;
@@ -153,7 +154,7 @@ int snd_ff_stream_reserve_duplex(struct snd_ff *ff, unsigned int rate,
                        return err;
 
                err = amdtp_domain_set_events_per_period(&ff->domain,
-                                                        frames_per_period, 0);
+                                       frames_per_period, frames_per_buffer);
                if (err < 0) {
                        fw_iso_resources_free(&ff->tx_resources);
                        fw_iso_resources_free(&ff->rx_resources);
index 970d4ae571ee119530f34535530511572bb3545e..dc7a20f75983fa71dfea27312cfddf074590bbb6 100644 (file)
@@ -140,7 +140,8 @@ int snd_ff_stream_get_multiplier_mode(enum cip_sfc sfc,
 int snd_ff_stream_init_duplex(struct snd_ff *ff);
 void snd_ff_stream_destroy_duplex(struct snd_ff *ff);
 int snd_ff_stream_reserve_duplex(struct snd_ff *ff, unsigned int rate,
-                                unsigned int frames_per_period);
+                                unsigned int frames_per_period,
+                                unsigned int frames_per_buffer);
 int snd_ff_stream_start_duplex(struct snd_ff *ff, unsigned int rate);
 void snd_ff_stream_stop_duplex(struct snd_ff *ff);
 void snd_ff_stream_update_duplex(struct snd_ff *ff);