linux-iio.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* Adding "fault count" support to opt3001
@ 2019-09-27 17:08 David Frey
  2019-10-06  9:40 ` Jonathan Cameron
  0 siblings, 1 reply; 2+ messages in thread
From: David Frey @ 2019-09-27 17:08 UTC (permalink / raw)
  To: linux-iio

Hi,

The TI opt3001 light sensor has a fault count field in its configuration
register.  See http://www.ti.com/lit/ds/symlink/opt3001.pdf on page 23.
Basically, this field controls how many samples must be above the high
threshold or below the low threshold in order to trigger the interrupt.
Currently the driver initializes this field to 0 meaning that one fault
will trigger an interrupt.

0b00 -> 1
0b01 -> 2
0b10 -> 4
0b11 -> 8

The driver has an IIO event which allows for the high/low threshold to
be set and enabled/disabled.  I would like to add the ability to specify
the fault count as well and I'm wondering how this should be done.  I
believe it should be done by adding a .mask_shared_by_type =
BIT(IIO_EV_INFO_???) definition within the struct iio_event_spec, but
I'm not sure if any of the existing IIO_EV_INFO_ values are appropriate.
 The only one that might be appropriate is IIO_EV_INFO_HYSTERESIS.

Am I going about this the right way?
Is IIO_EV_INFO_HYSTERESIS appropriate?
Should a new enum value be defined?

Thanks,
David

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2019-10-06  9:40 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-09-27 17:08 Adding "fault count" support to opt3001 David Frey
2019-10-06  9:40 ` Jonathan Cameron

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).