From: Takashi Iwai <tiwai@suse.de>
To: Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
Cc: alsa-devel@alsa-project.org
Subject: Re: [PATCH v5 04/10] ALSA: usb: update trigger timestamp on first non-zero URB submitted
Date: Mon, 09 Feb 2015 16:06:21 +0100 [thread overview]
Message-ID: <s5hy4o7ruoi.wl-tiwai@suse.de> (raw)
In-Reply-To: <1423259759-4100-5-git-send-email-pierre-louis.bossart@linux.intel.com>
At Fri, 6 Feb 2015 15:55:53 -0600,
Pierre-Louis Bossart wrote:
>
> The first URBs are submitted during the prepare stage. When .trigger is
> called, the ALSA core saves a trigger tstamp that doesn't correspond to
> the actual time when the samples are submitted. The trigger_tstamp is
> now updated when the first data are submitted to avoid any time offsets.
>
> A usb-specific trigger_tstamp_pending_update flag is used for now,
> at some point the flag would need to move to the ALSA core, USB
> is not the only interface where silent block transfers are programmed
> as part of the prepare stage, with actual data enabled when .trigger
> is called.
>
> Signed-off-by: Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
Applied, thanks.
Takashi
> ---
> sound/usb/card.h | 2 ++
> sound/usb/pcm.c | 9 +++++++++
> 2 files changed, 11 insertions(+)
>
> diff --git a/sound/usb/card.h b/sound/usb/card.h
> index 97acb90..ef580b4 100644
> --- a/sound/usb/card.h
> +++ b/sound/usb/card.h
> @@ -153,6 +153,8 @@ struct snd_usb_substream {
> int channel;
> int byte_idx;
> } dsd_dop;
> +
> + bool trigger_tstamp_pending_update; /* trigger timestamp being updated from initial estimate */
> };
>
> struct snd_usb_stream {
> diff --git a/sound/usb/pcm.c b/sound/usb/pcm.c
> index 0d8aba5..b4ef410 100644
> --- a/sound/usb/pcm.c
> +++ b/sound/usb/pcm.c
> @@ -1464,6 +1464,14 @@ static void prepare_playback_urb(struct snd_usb_substream *subs,
> subs->last_frame_number = usb_get_current_frame_number(subs->dev);
> subs->last_frame_number &= 0xFF; /* keep 8 LSBs */
>
> + if (subs->trigger_tstamp_pending_update) {
> + /* this is the first actual URB submitted,
> + * update trigger timestamp to reflect actual start time
> + */
> + snd_pcm_gettime(runtime, &runtime->trigger_tstamp);
> + subs->trigger_tstamp_pending_update = false;
> + }
> +
> spin_unlock_irqrestore(&subs->lock, flags);
> urb->transfer_buffer_length = bytes;
> if (period_elapsed)
> @@ -1550,6 +1558,7 @@ static int snd_usb_substream_playback_trigger(struct snd_pcm_substream *substrea
>
> switch (cmd) {
> case SNDRV_PCM_TRIGGER_START:
> + subs->trigger_tstamp_pending_update = true;
> case SNDRV_PCM_TRIGGER_PAUSE_RELEASE:
> subs->data_endpoint->prepare_data_urb = prepare_playback_urb;
> subs->data_endpoint->retire_data_urb = retire_playback_urb;
> --
> 1.9.1
>
> _______________________________________________
> Alsa-devel mailing list
> Alsa-devel@alsa-project.org
> http://mailman.alsa-project.org/mailman/listinfo/alsa-devel
>
next prev parent reply other threads:[~2015-02-09 15:06 UTC|newest]
Thread overview: 18+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-02-06 21:55 [PATCH v5 00/10] audio timestamping evolutions Pierre-Louis Bossart
2015-02-06 21:55 ` [PATCH v5 01/10] ALSA: core: don't override timestamp unconditionally Pierre-Louis Bossart
2015-02-09 15:05 ` Takashi Iwai
2015-02-06 21:55 ` [PATCH v5 02/10] ALSA: core: allow for trigger_tstamp snapshot in .trigger Pierre-Louis Bossart
2015-02-09 15:06 ` Takashi Iwai
2015-02-06 21:55 ` [PATCH v5 03/10] ALSA: hda: read trigger_timestamp immediately after starting DMA Pierre-Louis Bossart
2015-02-09 15:06 ` Takashi Iwai
2015-02-06 21:55 ` [PATCH v5 04/10] ALSA: usb: update trigger timestamp on first non-zero URB submitted Pierre-Louis Bossart
2015-02-09 15:06 ` Takashi Iwai [this message]
2015-02-06 21:55 ` [PATCH v5 05/10] ALSA: core: selection of audio_tstamp type and accuracy reports Pierre-Louis Bossart
2015-02-09 15:16 ` Takashi Iwai
2015-02-06 21:55 ` [PATCH v5 06/10] ALSA: core: pass audio tstamp config from userspace Pierre-Louis Bossart
2015-02-09 15:08 ` Takashi Iwai
2015-02-06 21:55 ` [PATCH v5 07/10] ALSA: core: pass audio tstamp config from userspace in compat mode Pierre-Louis Bossart
2015-02-06 21:55 ` [PATCH v5 08/10] ALSA: core: replace .wall_clock by .get_time_info Pierre-Louis Bossart
2015-02-09 15:19 ` Takashi Iwai
2015-02-06 21:55 ` [PATCH v5 09/10] ALSA: hda: replace .wallclock " Pierre-Louis Bossart
2015-02-06 21:55 ` [PATCH v5 10/10] ALSA: bump PCM protocol to 2.0.13 Pierre-Louis Bossart
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=s5hy4o7ruoi.wl-tiwai@suse.de \
--to=tiwai@suse.de \
--cc=alsa-devel@alsa-project.org \
--cc=pierre-louis.bossart@linux.intel.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox