genirq: Handle NOAUTOEN interrupt setup proper
authorThomas Gleixner <tglx@linutronix.de>
Wed, 31 May 2017 09:58:32 +0000 (11:58 +0200)
committerThomas Gleixner <tglx@linutronix.de>
Sun, 4 Jun 2017 12:35:13 +0000 (14:35 +0200)
commit201d7f47f34bd7cb19161d0426f13b141e381f30
tree37a9d882bc18d9975b4b8b2e40f4e43a190d0c24
parent5a29ef22098874db79af7bf92a247a0f503bfa6e
genirq: Handle NOAUTOEN interrupt setup proper

If an interrupt is marked NOAUTOEN then request_irq() installs the action,
but does not enable the interrupt via startup_irq().  The interrupt is
enabled via enable_irq() later from the driver. enable_irq() calls
irq_enable().

That means that for interrupts which have a irq_startup() callback this
callback is never invoked. Neither is irq_domain_activate_irq() invoked for
such interrupts.

If an interrupt depends on irq_startup() or irq_domain_activate_irq() then
the enable via irq_enable() is not enough.

Add a status flag IRQD_IRQ_STARTED_UP and use this to select the proper
mechanism in enable_irq(). Use the flag also to avoid pointless calls into
the low level functions.

Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Acked-by: Marc Zyngier <marc.zyngier@arm.com>
Cc: dianders@chromium.org
Cc: jeffy <jeffy.chen@rock-chips.com>
Cc: Brian Norris <briannorris@chromium.org>
Cc: tfiga@chromium.org
Link: http://lkml.kernel.org/r/20170531100212.130986205@linutronix.de
include/linux/irq.h
kernel/irq/chip.c
kernel/irq/manage.c