From: Thomas Gleixner <tglx@linutronix.de>
To: "Nuno Sá" <noname.nuno@gmail.com>,
"Uwe Kleine-König" <u.kleine-koenig@baylibre.com>
Cc: linux-kernel@vger.kernel.org, Jonathan Cameron <jic23@kernel.org>
Subject: Re: can/should a disabled irq become pending?
Date: Wed, 13 Nov 2024 16:50:34 +0100 [thread overview]
Message-ID: <87servku9h.ffs@tglx> (raw)
In-Reply-To: <c12201672bf99729caada3e8c8f61ad7f4612a23.camel@gmail.com>
On Wed, Nov 13 2024 at 11:34, Nuno Sá wrote:
> On Wed, 2024-11-13 at 04:40 +0100, Thomas Gleixner wrote:
>> The interrupt does not get to the device handler even in the lazy
>> disable case. Once the driver invoked disable_irq*() the low level flow
>> handlers (edge, level ...) mask the interrupt line and marks the
>> interrupt pending. enable_irq() retriggers the interrupt when the
>> pending bit is set, except when the interrupt line is level triggered.
>
> There's something that I'm still trying to figure... For IRQ controllers that not
> disable edge detection, can't we get the device handler called twice if we don't set
> unlazy?
>
> irq_enable() - > check_irq_resend()
>
> and then
>
> handle_edge_irq() raised by the controller
You're right. We should have a flag which controls the replay
requirements of an interrupt controller. So far it only skips for level
triggered interrupts, but for those controllers it should skip for edge
too. Something like IRQCHIP_NO_RESEND ...
> Or is the core handling this somehow? I thought IRQS_REPLAY could be
> doing the trick but I'm not seeing how...
IRQS_REPLAY is just internal state to avoid double replay.
>> On controllers which suffer from the #2 problem UNLAZY should indeed be
>> ignored for edge type interrupts. That's something which the controller
>> should signal via a irqchip flag and the core code can act upon it and
>> ignore UNLAZY for edge type interrupts.
>>
>> But that won't fix the problem at hand. Let's take a step back and look
>> at the larger picture whether this can be reliably "fixed" at all.
>>
>
> Yeah, I'm still trying to figure when it's correct for a device to do UNLAZY? If I'm
> understanding things, devices that rely on disable_irq*() should set
> it?
Not necessarily. In most cases devices are not re-raising interrupts
before the previous one has been handled and acknowledged in the device.
> Because problem #2 is something that needs to be handled at the
> controller and core level if I got you right.
Yes. We need a irqchip flag for that.
>> > Ack. If there is no way to read back the line state and it's unknown if
>> > the irq controller suffers from problem #2, the only way to still
>> > benefit from the irq is to not use IRQ_DISABLE_UNLAZY and only act on
>> > each 2nd irq; or ignore irqs based on timing. That doesn't sound very
>> > robust though, so maybe the driver has to fall back on polling the
>> > status register and not use irqs at all in that case.
>>
>> Actually ignoring the first interrupt after a SPI transfer and waiting
>> for the next conversion to raise the interrupt again should be robust
>> enough. The ADC has to be in continous conversion mode for that
>> obviously.
>>
> Might be the only sane option we have, Uwe? If we do this, we could be
> dropping valid samples but only with controllers that suffer from
> #2.
No. You have the same problem with the controllers which do not disable
the edge detection logic.
The interrupt controller raises the interrupt on unmask (enable_irq()).
Depending on timing the device handler might be invoked _before_ the
sample is ready, no?
Thanks,
tglx
next prev parent reply other threads:[~2024-11-13 15:50 UTC|newest]
Thread overview: 13+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-11-11 13:03 can/should a disabled irq become pending? Uwe Kleine-König
2024-11-12 19:35 ` Thomas Gleixner
2024-11-12 22:08 ` Uwe Kleine-König
2024-11-13 3:40 ` Thomas Gleixner
2024-11-13 10:34 ` Nuno Sá
2024-11-13 15:50 ` Thomas Gleixner [this message]
2024-11-14 7:49 ` Nuno Sá
2024-11-14 10:59 ` Uwe Kleine-König
2024-11-14 12:04 ` Nuno Sá
2024-11-23 11:28 ` Jonathan Cameron
2024-11-24 13:18 ` Nuno Sá
2024-11-25 8:50 ` Uwe Kleine-König
2024-11-25 9:08 ` Nuno Sá
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=87servku9h.ffs@tglx \
--to=tglx@linutronix.de \
--cc=jic23@kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=noname.nuno@gmail.com \
--cc=u.kleine-koenig@baylibre.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