From: Takashi Sakamoto <o-takashi@sakamocchi.jp>
To: Ricardo Biehl Pasquali <pasqualirb@gmail.com>
Cc: alsa-devel@alsa-project.org
Subject: Re: Coherence of status structure after SYNC_PTR
Date: Fri, 28 Dec 2018 12:45:49 +0900 [thread overview]
Message-ID: <20181228034549.GA22203@workstation> (raw)
In-Reply-To: <20181227172224.GA18933@localhost.localdomain>
On Thu, Dec 27, 2018 at 03:22:24PM -0200, Ricardo Biehl Pasquali wrote:
> In alsa-lib, pcm_hw, htimestamp(), avail is rechecked to
> ensure a valid timestamp.
>
> I guess this is for the case when status is mmaped, when
> hardware pointer is read, an interrupt occur, and timestamp
> is read.
>
> Does SYNC_PTR ioctl always fill a coherent status?
Exactly.
The ioctl command was firstly introduced to solve an issue in
cache-incoherent architectures such as arm or a part of atom platform
in Intel architecture.
In cache-coherent architectures, kernel memory can be mapped to
process VMA to share status and control data of runtime of PCM substream
('struct snd_pcm_runtime.status' = 'struct snd_pcm_mmap_status'
and 'struct snd_pcm_runtime.control' = 'struct snd_pcm_mmap_control').
For example, state of runtime of PCM substream is in the 'status' data.
Members of these two can be changed by both of kernel/userspace, thus
need to care of cache-coherency.
In cache-incoherent architectures, the mapped memory is not necessarily
cache-coherent, thus a call of the ioctl command delivers changed data
in temporary buffer to copy from process VMA to kernel memory or vise versa.
Of cource, the ioctl command works expectedly in cache-coherent
architecture as well.
I note that there're some levels of timestamp and autio timestamp.
Additionally, audio timestamp is updated only in any hardware/software IRQs,
thus it's not available with 'no-period-wakeup' runtime, FYI.
Regards
Takashi Sakamoto
next prev parent reply other threads:[~2018-12-28 3:45 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-12-27 17:22 Coherence of status structure after SYNC_PTR Ricardo Biehl Pasquali
2018-12-28 3:45 ` Takashi Sakamoto [this message]
2018-12-28 4:21 ` Takashi Sakamoto
2018-12-28 16:28 ` Ricardo Biehl Pasquali
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=20181228034549.GA22203@workstation \
--to=o-takashi@sakamocchi.jp \
--cc=alsa-devel@alsa-project.org \
--cc=pasqualirb@gmail.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.