]> git.karo-electronics.de Git - karo-tx-linux.git/commit
genirq: Add flag to force mask in disable_irq[_nosync]()
authorThomas Gleixner <tglx@linutronix.de>
Fri, 9 Oct 2015 21:28:58 +0000 (23:28 +0200)
committerThomas Gleixner <tglx@linutronix.de>
Sun, 11 Oct 2015 09:33:42 +0000 (11:33 +0200)
commite9849777d0e27cdd2902805be51da73e7c79578c
tree398bab5d6a91973d2e8a281bae6dff8ebd57ac8b
parentfcf8ab690e3decf8335c51fdabea773a3f5ea026
genirq: Add flag to force mask in disable_irq[_nosync]()

If an irq chip does not implement the irq_disable callback, then we
use a lazy approach for disabling the interrupt. That means that the
interrupt is marked disabled, but the interrupt line is not
immediately masked in the interrupt chip. It only becomes masked if
the interrupt is raised while it's marked disabled. We use this to avoid
possibly expensive mask/unmask operations for common case operations.

Unfortunately there are devices which do not allow the interrupt to be
disabled easily at the device level. They are forced to use
disable_irq_nosync(). This can result in taking each interrupt twice.

Instead of enforcing the non lazy mode on all interrupts of a irq
chip, provide a settings flag, which can be set by the driver for that
particular interrupt line.

Reported-and-tested-by: Duc Dang <dhdang@apm.com>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Cc: Marc Zyngier <marc.zyngier@arm.com>
Cc: Jason Cooper <jason@lakedaemon.net>
Link: http://lkml.kernel.org/r/alpine.DEB.2.11.1510092348370.6097@nanos
include/linux/irq.h
kernel/irq/chip.c
kernel/irq/manage.c
kernel/irq/settings.h