Re: [PATCH 10/10] iio: core: Clarify the modes

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



Hi Jonathan,

jic23@xxxxxxxxxx wrote on Sat, 15 Jan 2022 17:30:50 +0000:

> On Wed, 15 Dec 2021 16:13:44 +0100
> Miquel Raynal <miquel.raynal@xxxxxxxxxxx> wrote:
> 
> > As part of a previous discussion with Jonathan Cameron [1], it appeared
> > necessary to clarify the meaning of each mode so that new developers
> > could understand better what they should use or not use and when.
> > 
> > The idea of renaming these modes as been let aside because naming is a
> > big deal and requires a lot of thinking. So for now let's focus on
> > correctly explaining what each mode implies.
> > 
> > [1] https://lore.kernel.org/linux-iio/20210930165510.2295e6c4@jic23-huawei/
> > 
> > Suggested-by: Jonathan Cameron <jic23@xxxxxxxxxx>
> > Signed-off-by: Miquel Raynal <miquel.raynal@xxxxxxxxxxx>
> > ---
> >  include/linux/iio/iio.h | 40 +++++++++++++++++++++++++++++++++++++++-
> >  1 file changed, 39 insertions(+), 1 deletion(-)
> > 
> > diff --git a/include/linux/iio/iio.h b/include/linux/iio/iio.h
> > index d04ab89fa0c2..75b561fd63d0 100644
> > --- a/include/linux/iio/iio.h
> > +++ b/include/linux/iio/iio.h
> > @@ -314,7 +314,45 @@ static inline bool iio_channel_has_available(const struct iio_chan_spec *chan,
> >  s64 iio_get_time_ns(const struct iio_dev *indio_dev);
> >  unsigned int iio_get_time_res(const struct iio_dev *indio_dev);
> >  
> > -/* Device operating modes */
> > +/**
> > + * Device operating modes
> > + * @INDIO_DIRECT_MODE: There is an access to the last single value available.  
> 
> I'd avoid 'last' as not obvious wrt to what time point.  Perhaps use something
> horrible like "timely"?

I don't feel a big difference between the two, besides timely being far
from easy to understand IMHO, but I'll use it if you think it's best.

> > + * On most devices, this is a single-shot read. On some devices with data
> > + * streams without an 'on-demand' function, this might also be the 'last value'
> > + * feature. Above all, this mode internally means that we are not in any of the
> > + * other modes, and sysfs reads will definitely work.  
> 
> Should work ;)  They might fail for a wide variety of other reasons.

Right.

> > + * Device drivers are pleased to inquire the core about this mode.  
> Not totally sure what you mean here.  Perhaps
> Device drivers should inform the core if they support this mode.

Ok.

> > + * @INDIO_BUFFER_TRIGGERED: Most common mode when dealing with kfifo buffers.  
> 
> Avoid "common". That may well change in future as fifos are become increasingly
> common on devices over time.  Perhaps just drop this first sentence.

I don't think dropping this sentence is a good idea. My first goal here
is to make it easier for newcomers to understand these modes. Here it
clearly states "if you're dealing with a kfifo, keep reading, otherwise
just check out the next mode". Of course this might evolve over time
and if it is the case we can later update the documentation.

I've dropped the "Most" instead, to still indicate this is fairly
common but should not be read like something almost automatic.

> > + * It indicates that there is an explicit trigger that must be used. This  
> 
> Indicates that an explicit trigger is required. (subtle difference from what you
> wrote in that you kind of imply there is only one possible choice)

Fair enough.

> > + * requests the core to attach a poll function when enabling the buffer, which
> > + * is indicated by the _TRIGGERED suffix.
> > + * The core will ensure this mode is set when registering a triggered buffer.  
> 
> I'd call out the function name (mostly to be inline with below where you need
> to because there isn't a particularly good way to describe what it is doing).

Done.

> 
> > + * @INDIO_BUFFER_SOFTWARE: Another kfifo buffer mode, but not event triggered.
> > + * No poll function can be attached because there is no triggered infrastructure
> > + * we can use to cause capture. There is a kfifo that the hardware will fill,
> > + * but not "one scan at a time", just like in a continuous stream.  
> 
> No real relationship to a continuous stream that I can see.  Perhaps something like
> "Typically hardware will have a buffer that can hold multiple scans. Software may
>  read one or more scans at a single time and push the available data to a Kfifo."

Added.

> 
> > This means
> > + * the core will not attach any poll function when enabling the buffer.
> > + * The core will ensure this mode is set when registering a simple kfifo buffer.  
> 
> I'd call out the function name here.  The above registers a kfifo as well which is
> pretty simple...

Sure.

> 
> > + * @INDIO_BUFFER_HARDWARE: For specific hardware, if unsure do not use this mode.
> > + * Same as above but this time the buffer is not a kfifo where we have direct
> > + * access to the data. Instead, the consumer driver must access the data through
> > + * side-channels   
> What do you mean by side-channels here?  That term gets over used - perhaps
> "non software visible channels"

Clear.

> 
>  + (or DMA when there is no demux possible in software).
> > + * The core will ensure this mode is set when registering a dmaengine buffer.  
> 
> > + * @INDIO_EVENT_TRIGGERED: Very specific, do not use this mode.  
> 
> :) That's harsh..

Looks like you changed your mind, that's almost what you proposed back
in September ;)

> If you happen to be supporting hardware that works this way
> it's a valid setting.  Perhaps we'd be safe to say:
> "Very unusual."
> 
> > + * Triggers usually refer to an external event which will start data capture.
> > + * Here it is kind of the opposite as, a particular state of the data might
> > + * produce an event which can be considered as an event. We don't necessarily
> > + * have access to the data itself, but to the event produced. For example, this
> > + * can be a threshold detector. The internal path of this mode is very close to
> > + * the INDIO_BUFFER_TRIGGERED mode.
> > + * The core will ensure this mode is set when registering a triggered event.
> > + * @INDIO_HARDWARE_TRIGGERED: STM32 specific mode, do not use it.  
> 
> I'd avoid that comment because it'll rot when some other hardware needs something
> like this.  Again, perhaps "Very rare / unusual." will be enough to put people
> off using it.

As you prefer.

> > + * Here, triggers can result in data capture and can be routed to multiple
> > + * hardware components, which make them close to regular triggers in the way
> > + * they must be managed by the core, but without the entire interrupts/poll
> > + * functions burden. All of this is irrelevant as it is all hardware mediated
> > + * and distributed.  
> 
> "All this" is not totally clear.  Interrupts are irrelevant as the data flow
> is hardware mediated and distributed.

Thanks for the alternative.

> 
> Nice descriptions in general.  Nature of these things is without a straw man
> to poke holes in I'd never get around to documenting this very much
> appreciated that you took the time to figure all the weird corners out and
> write this up.
> 

I'm happy if this can be useful!

V2 finally coming soon.

Thanks,
Miquèl




[Index of Archives]     [Linux USB Devel]     [Video for Linux]     [Linux Audio Users]     [Yosemite News]     [Linux Input]     [Linux Kernel]     [Linux SCSI]     [X.org]

  Powered by Linux