Skip to content

Commit

Permalink
ALSA: dice: Support for non SYT-Match sampling clock source mode
Browse files Browse the repository at this point in the history
This commit allows this driver to handle devices with non SYT-Match
sampling clock source.

When sampling clock source is SYT-Match mode, devices handle
'presentation timestamp' in received packets and generates sampling clock
according to the information. In this case, driver is synchronization master
and must transfer correct value in SYT field of each packets in outgoing
stream, then the outgoing stream is a master stream.

On the other hand, non SYT-Match mode, devices do this. So drivers must pick
up the value in SYT field of incoming packets and use the value for outgoing
stream. Currently firewire-lib module achieve this work.

Furthermore, without SYT-Match and internal clock source, the sampling rate
should be fixed for the other devices connected to the handled device. This
commit add a restriction of sampling rate at this situation.

With these implementations, this driver has no need to set clock source.
This commit remove set function.

Signed-off-by: Takashi Sakamoto <o-takashi@sakamocchi.jp>
Acked-by: Clemens Ladisch <clemens@ladisch.de>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
  • Loading branch information
Takashi Sakamoto authored and Takashi Iwai committed Dec 10, 2014
1 parent 9a02843 commit 8fc01fc
Show file tree
Hide file tree
Showing 4 changed files with 58 additions and 19 deletions.
35 changes: 35 additions & 0 deletions sound/firewire/dice/dice-pcm.c
Original file line number Diff line number Diff line change
Expand Up @@ -140,6 +140,8 @@ static int init_hw_info(struct snd_dice *dice,
static int pcm_open(struct snd_pcm_substream *substream)
{
struct snd_dice *dice = substream->private_data;
unsigned int source, rate;
bool internal;
int err;

err = snd_dice_stream_lock_try(dice);
Expand All @@ -149,6 +151,39 @@ static int pcm_open(struct snd_pcm_substream *substream)
err = init_hw_info(dice, substream);
if (err < 0)
goto err_locked;

err = snd_dice_transaction_get_clock_source(dice, &source);
if (err < 0)
goto err_locked;
switch (source) {
case CLOCK_SOURCE_AES1:
case CLOCK_SOURCE_AES2:
case CLOCK_SOURCE_AES3:
case CLOCK_SOURCE_AES4:
case CLOCK_SOURCE_AES_ANY:
case CLOCK_SOURCE_ADAT:
case CLOCK_SOURCE_TDIF:
case CLOCK_SOURCE_WC:
internal = false;
break;
default:
internal = true;
break;
}

/*
* When source of clock is not internal, available sampling rate is
* limited at current sampling rate.
*/
if (!internal) {
err = snd_dice_transaction_get_rate(dice, &rate);
if (err < 0)
goto err_locked;
substream->runtime->hw.rate_min = rate;
substream->runtime->hw.rate_max = rate;
}

snd_pcm_set_sync(substream);
end:
return err;
err_locked:
Expand Down
35 changes: 23 additions & 12 deletions sound/firewire/dice/dice-stream.c
Original file line number Diff line number Diff line change
Expand Up @@ -161,9 +161,29 @@ static int start_stream(struct snd_dice *dice, struct amdtp_stream *stream,

static int get_sync_mode(struct snd_dice *dice, enum cip_flags *sync_mode)
{
/* Currently, clock source is fixed at SYT-Match mode. */
*sync_mode = 0;
return 0;
u32 source;
int err;

err = snd_dice_transaction_get_clock_source(dice, &source);
if (err < 0)
goto end;

switch (source) {
/* So-called 'SYT Match' modes, sync_to_syt value of packets received */
case CLOCK_SOURCE_ARX4: /* in 4th stream */
case CLOCK_SOURCE_ARX3: /* in 3rd stream */
case CLOCK_SOURCE_ARX2: /* in 2nd stream */
err = -ENOSYS;
break;
case CLOCK_SOURCE_ARX1: /* in 1st stream, which this driver uses */
*sync_mode = 0;
break;
default:
*sync_mode = CIP_SYNC_TO_DEVICE;
break;
}
end:
return err;
}

int snd_dice_stream_start_duplex(struct snd_dice *dice, unsigned int rate)
Expand Down Expand Up @@ -310,15 +330,6 @@ int snd_dice_stream_init_duplex(struct snd_dice *dice)
goto end;

err = init_stream(dice, &dice->rx_stream);
if (err < 0)
goto end;

/* Currently, clock source is fixed at SYT-Match mode. */
err = snd_dice_transaction_set_clock_source(dice, CLOCK_SOURCE_ARX1);
if (err < 0) {
destroy_stream(dice, &dice->rx_stream);
destroy_stream(dice, &dice->tx_stream);
}
end:
return err;
}
Expand Down
5 changes: 0 additions & 5 deletions sound/firewire/dice/dice-transaction.c
Original file line number Diff line number Diff line change
Expand Up @@ -137,11 +137,6 @@ int snd_dice_transaction_get_clock_source(struct snd_dice *dice,

return err;
}
int snd_dice_transaction_set_clock_source(struct snd_dice *dice,
unsigned int source)
{
return set_clock_info(dice, UINT_MAX, source);
}

int snd_dice_transaction_get_rate(struct snd_dice *dice, unsigned int *rate)
{
Expand Down
2 changes: 0 additions & 2 deletions sound/firewire/dice/dice.h
Original file line number Diff line number Diff line change
Expand Up @@ -152,8 +152,6 @@ static inline int snd_dice_transaction_read_sync(struct snd_dice *dice,
buf, len);
}

int snd_dice_transaction_set_clock_source(struct snd_dice *dice,
unsigned int source);
int snd_dice_transaction_get_clock_source(struct snd_dice *dice,
unsigned int *source);
int snd_dice_transaction_set_rate(struct snd_dice *dice, unsigned int rate);
Expand Down

0 comments on commit 8fc01fc

Please sign in to comment.