Commit ad306505 authored by Takashi Sakamoto's avatar Takashi Sakamoto Committed by Takashi Iwai

ALSA: firewire-digi00x: code refactoring to keep isochronous resources

This commit is a part of preparation to perform allocation/release
of isochronous resources in pcm.hw_params/hw_free callbacks.

All of models in Digidesign Digi00x family have the same formation of
data channels in isochronous packet for both directions. This commit
simplifies allocation of isochronous resources in this point.
Signed-off-by: default avatarTakashi Sakamoto <o-takashi@sakamocchi.jp>
Signed-off-by: default avatarTakashi Iwai <tiwai@suse.de>
parent 638e19fc
...@@ -196,12 +196,14 @@ static void release_resources(struct snd_dg00x *dg00x) ...@@ -196,12 +196,14 @@ static void release_resources(struct snd_dg00x *dg00x)
fw_iso_resources_free(&dg00x->rx_resources); fw_iso_resources_free(&dg00x->rx_resources);
} }
static int keep_resources(struct snd_dg00x *dg00x, unsigned int rate) static int keep_resources(struct snd_dg00x *dg00x, struct amdtp_stream *stream,
unsigned int rate)
{ {
unsigned int i; struct fw_iso_resources *resources;
int i;
int err; int err;
/* Check sampling rate. */ // Check sampling rate.
for (i = 0; i < SND_DG00X_RATE_COUNT; i++) { for (i = 0; i < SND_DG00X_RATE_COUNT; i++) {
if (snd_dg00x_stream_rates[i] == rate) if (snd_dg00x_stream_rates[i] == rate)
break; break;
...@@ -209,31 +211,19 @@ static int keep_resources(struct snd_dg00x *dg00x, unsigned int rate) ...@@ -209,31 +211,19 @@ static int keep_resources(struct snd_dg00x *dg00x, unsigned int rate)
if (i == SND_DG00X_RATE_COUNT) if (i == SND_DG00X_RATE_COUNT)
return -EINVAL; return -EINVAL;
/* Keep resources for out-stream. */ if (stream == &dg00x->tx_stream)
err = amdtp_dot_set_parameters(&dg00x->rx_stream, rate, resources = &dg00x->tx_resources;
snd_dg00x_stream_pcm_channels[i]); else
if (err < 0) resources = &dg00x->rx_resources;
return err;
err = fw_iso_resources_allocate(&dg00x->rx_resources,
amdtp_stream_get_max_payload(&dg00x->rx_stream),
fw_parent_device(dg00x->unit)->max_speed);
if (err < 0)
return err;
/* Keep resources for in-stream. */ err = amdtp_dot_set_parameters(stream, rate,
err = amdtp_dot_set_parameters(&dg00x->tx_stream, rate,
snd_dg00x_stream_pcm_channels[i]); snd_dg00x_stream_pcm_channels[i]);
if (err < 0) if (err < 0)
return err; return err;
err = fw_iso_resources_allocate(&dg00x->tx_resources,
amdtp_stream_get_max_payload(&dg00x->tx_stream),
fw_parent_device(dg00x->unit)->max_speed);
if (err < 0) {
fw_iso_resources_free(&dg00x->rx_resources);
return err;
}
return 0; return fw_iso_resources_allocate(resources,
amdtp_stream_get_max_payload(stream),
fw_parent_device(dg00x->unit)->max_speed);
} }
int snd_dg00x_stream_init_duplex(struct snd_dg00x *dg00x) int snd_dg00x_stream_init_duplex(struct snd_dg00x *dg00x)
...@@ -306,7 +296,11 @@ int snd_dg00x_stream_start_duplex(struct snd_dg00x *dg00x, unsigned int rate) ...@@ -306,7 +296,11 @@ int snd_dg00x_stream_start_duplex(struct snd_dg00x *dg00x, unsigned int rate)
if (err < 0) if (err < 0)
goto error; goto error;
err = keep_resources(dg00x, rate); err = keep_resources(dg00x, &dg00x->rx_stream, rate);
if (err < 0)
goto error;
err = keep_resources(dg00x, &dg00x->tx_stream, rate);
if (err < 0) if (err < 0)
goto error; goto error;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment