From: Jonathan Cameron <jic23@kernel.org>
To: Jonathan Cameron <jic23@cam.ac.uk>
Cc: "linux-iio@vger.kernel.org" <linux-iio@vger.kernel.org>,
"Hennerich, Michael" <Michael.Hennerich@analog.com>,
Lars-Peter Clausen <lars@metafoo.de>,
Manuel Stahl <manuel.stahl@iis.fraunhofer.de>
Subject: Re: RFC usecases for simultaneous buffered / sysfs access to data
Date: Sun, 20 Nov 2011 12:56:44 +0000 [thread overview]
Message-ID: <4EC8F90C.30704@kernel.org> (raw)
In-Reply-To: <4EC8F518.6010102@cam.ac.uk>
On 11/20/2011 12:39 PM, Jonathan Cameron wrote:
> Hi All,
>
> One nasty issue is kicking around in how to handle in kernel interfaces.
>
> It comes down to what happens when a sysfs read is performed on a device
> doing buffered capture. Right now some drivers will look into the
> buffer, see if the relevant channel is there, and then pull out the
> latest reading.
>
> Now, with in kernel push interfaces (buffer_cb etc) things are more
> complex as we have several 'buffers' and it may be that none of them
> is the traditional IIO buffer. Thus working out whether the data is
> available anywhere is a pain.
>
> Clearly the same issue effects other in kernel 'pull' users (which
> make direct calls to read_raw). Now in these cases they have
> specifically requested a set of channels. Given we have a tightly
> defined subset of channels we can add another 'buffer' that caches
> the latest value and the demux code can handle this fine. It's costly
> in terms of bus transactions, but probably the only way we can keep
> things consistent and predictable.
>
> This approach doesn't work for the IIO sysfs accesses though as these
> frequently involve incompatible sets of channel reads (differential and
> non differential on a typical adc for example). We simply can't do
> buffered capture of these in a single pass on some devices (max1363 for
> example). If there is a really strong use case some sort of fallback to
> a faked 'scan' might be possible but is going to be very fiddly and in
> my view doesn't want to be in drivers unless there is a user.
>
>
> Hence this question comes down to what we do for iio sysfs interfaces
> and that is dependent on why people actually use the sysfs interfaces.
>
> 1) Drop the reading from the buffer (to output via sysfs) across all
> drivers that do it. (does this hurt any one? I wrote the first driver
> that does this and it doesn't effect any use case I have!)
>
> 2) Implement something like in0_reserve to allow us to specify which
> channels should still be available for sysfs reads when buffered reading
> is going on.
>
> 3) Add an iio on iio driver that uses the mapping infrastructure to
> allow it to pretend to be like the other in kernel users described above.
>
>
>
> So my thoughts are that 1) is the best plan unless someone has a real
> pressing use case that requires us to read from the buffer.
>
> We may migrate towards 3, but for now there are far too many weird and
> wonderful quirks that are not handled via the chan_spec and hence not
> available to inkernel users. Note if we get to the stage where
> everything is well handled then there 'may' be a case for separating the
> IIO userspace access stuff out so it is 'just another' in kernel user of
> the IIO device side stuff. We aren't there now and it won't come soon.
>
> Option 1 also has the nice sideeffect of clearer out some fiddly code.
Also worth noting is that kfifo_buf never supported this, and that's the
buffer implementation we will be moving out of staging first.
Jonathan
next prev parent reply other threads:[~2011-11-20 12:56 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-11-20 12:39 RFC usecases for simultaneous buffered / sysfs access to data Jonathan Cameron
2011-11-20 12:56 ` Jonathan Cameron [this message]
2011-11-21 8:12 ` Lars-Peter Clausen
2011-11-21 8:35 ` Manuel Stahl
2011-11-21 9:05 ` Hennerich, Michael
2011-11-21 21:49 ` Jonathan Cameron
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=4EC8F90C.30704@kernel.org \
--to=jic23@kernel.org \
--cc=Michael.Hennerich@analog.com \
--cc=jic23@cam.ac.uk \
--cc=lars@metafoo.de \
--cc=linux-iio@vger.kernel.org \
--cc=manuel.stahl@iis.fraunhofer.de \
/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.