public inbox for linux-doc@vger.kernel.org
 help / color / mirror / Atom feed
From: Jonathan Cameron <jic23@kernel.org>
To: Julien Stephan <jstephan@baylibre.com>
Cc: "David Lechner" <dlechner@baylibre.com>,
	"Lars-Peter Clausen" <lars@metafoo.de>,
	"Michael Hennerich" <Michael.Hennerich@analog.com>,
	"Nuno Sá" <nuno.sa@analog.com>,
	"Jonathan Corbet" <corbet@lwn.net>,
	linux-iio@vger.kernel.org, linux-kernel@vger.kernel.org,
	linux-doc@vger.kernel.org
Subject: Re: [PATCH RFC v2 3/4] iio: adc: ad7380: add alert support
Date: Sat, 11 Jan 2025 12:51:45 +0000	[thread overview]
Message-ID: <20250111125145.343484b5@jic23-huawei> (raw)
In-Reply-To: <CAEHHSvb_BRB-ygksULL4+o4eFEPSC4zOs1yBptFd8QzZtS0Dhw@mail.gmail.com>

On Tue, 7 Jan 2025 09:51:23 +0100
Julien Stephan <jstephan@baylibre.com> wrote:

> Le lun. 6 janv. 2025 à 16:29, David Lechner <dlechner@baylibre.com> a écrit :
> >
> > On 12/28/24 8:24 AM, Jonathan Cameron wrote:  
> > > On Tue, 24 Dec 2024 10:34:32 +0100
> > > Julien Stephan <jstephan@baylibre.com> wrote:
> > >  
> > >> The alert functionality is an out of range indicator and can be used as an
> > >> early indicator of an out of bounds conversion result.
> > >>
> > >> ALERT_LOW_THRESHOLD and ALERT_HIGH_THRESHOLD registers are common to all
> > >> channels.
> > >>
> > >> When using 1 SDO line (only mode supported by the driver right now), i.e
> > >> data outputs only on SDOA, SDOB (or SDOD for 4 channels variants) is
> > >> used as an alert pin. The alert pin is updated at the end of the
> > >> conversion (set to low if an alert occurs) and is cleared on a falling
> > >> edge of CS.
> > >>
> > >> The ALERT register contains information about the exact alert status:
> > >> channel and direction. Unfortunately we can't read this register because
> > >> in buffered read we cannot claim for direct mode.
> > >>
> > >> User can set high/low thresholds and enable event detection using the
> > >> regular iio events:
> > >>
> > >>   events/in_thresh_falling_value
> > >>   events/in_thresh_rising_value
> > >>   events/thresh_either_en
> > >>
> > >> If the interrupt properties is present in the device tree, an IIO event
> > >> will be generated for each interrupt received.
> > >> Because we cannot read ALERT register, we can't determine the exact
> > >> channel that triggers the alert, neither the direction (hight/low
> > >> threshold violation), so we send and IIO_EV_DIR_EITHER event for all
> > >> channels.
> > >>
> > >> In buffered reads, if input stays out of thresholds limit, an interrupt
> > >> will be generated for each sample read, because the alert pin is cleared
> > >> on a falling edge of CS (i.e when starting a new conversion). To avoid
> > >> generating to much interrupt, we introduce a reset_timeout that can be
> > >> used to disable interrupt for a given time (in ms)
> > >>
> > >>   events/thresh_either_reset_timeout
> > >>
> > >> When an interrupt is received, interrupts are disabled and re-enabled
> > >> after thresh_either_reset_timeout ms. If the reset timeout is set to 0,
> > >> interrupt are re-enabled directly.
> > >> Note: interrupts are always disabled at least during the handling of the
> > >> previous interrupt, because each read triggers 2 transactions, that can
> > >> lead to 2 interrupts for a single user read. IRQF_ONESHOT is not enough,
> > >> because, it postpones the 2nd irq after the handling of the first one,
> > >> which can still trigger 2 interrupts for a single user read.  
> > >
> > > After some of our recent discussions around interrupt handling and
> > > the guarantees (that aren't) made, even disabling the interrupt doesn't
> > > prevent some irq chips queuing up future interrupts.
> > >
> > > https://lore.kernel.org/all/io53lznz3qp3jd5rohqsjhosnmdzd6d44sdbwu5jcfrs3rz2a2@orquwgflrtyc/
> > >
> > > I'm not sure this alert can actually work as a result :(
> > > I am struggling to come up with a scheme that will work.
> > >  
> > Would it work if we change it to a level-triggered interrupt instead of edge
> > triggered?

Whilst I'd hope it would I'm not 100% sure.

> >
> > Since the main purpose of this is to trigger a hardware shutdown, perhaps we
> > could just omit the interrupt/emitting the event and keep the threshold and
> > enable attributes if we can't come up with a reasonable way to handle the
> > interrupts?
> >  
> 
> Hi Jonathan, and David,
> 
> I think this is getting very complicated for something not that useful
> in practice.
> If needed we can go back on this later to find an appropriate solution.
> I sent a non RFC V3 version, removing the interrupt handling? Does
> that work for you?

Works for me.

> 
> Cheers
> Julein
> 


  reply	other threads:[~2025-01-11 12:51 UTC|newest]

Thread overview: 17+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-12-24  9:34 [PATCH RFC v2 0/4] iio: adc: ad7380: add alert support Julien Stephan
2024-12-24  9:34 ` [PATCH RFC v2 1/4] iio: adc: ad7380: do not use iio_device_claim_direct_scoped anymore Julien Stephan
2024-12-27  8:43   ` Uwe Kleine-König
2024-12-28 13:51     ` Jonathan Cameron
2024-12-28 13:49   ` Jonathan Cameron
2024-12-24  9:34 ` [PATCH RFC v2 2/4] iio: adc: ad7380: enable regmap cache Julien Stephan
2024-12-27  8:48   ` Uwe Kleine-König
2024-12-28 14:07     ` Jonathan Cameron
2024-12-28 14:02   ` Jonathan Cameron
2024-12-24  9:34 ` [PATCH RFC v2 3/4] iio: adc: ad7380: add alert support Julien Stephan
2024-12-27  9:39   ` Uwe Kleine-König
2024-12-28 14:24   ` Jonathan Cameron
2025-01-06 15:29     ` David Lechner
2025-01-07  8:51       ` Julien Stephan
2025-01-11 12:51         ` Jonathan Cameron [this message]
2025-01-12 11:40           ` Jonathan Cameron
2024-12-24  9:34 ` [PATCH RFC v2 4/4] docs: iio: " Julien Stephan

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=20250111125145.343484b5@jic23-huawei \
    --to=jic23@kernel.org \
    --cc=Michael.Hennerich@analog.com \
    --cc=corbet@lwn.net \
    --cc=dlechner@baylibre.com \
    --cc=jstephan@baylibre.com \
    --cc=lars@metafoo.de \
    --cc=linux-doc@vger.kernel.org \
    --cc=linux-iio@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=nuno.sa@analog.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