aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/irq.h
diff options
context:
space:
mode:
authorThomas Gleixner <tglx@linutronix.de>2011-02-15 04:33:57 -0500
committerThomas Gleixner <tglx@linutronix.de>2011-02-19 06:58:24 -0500
commit77694b408abb8f92195ad5ed6ce5492f1d794c77 (patch)
treea0f7e81a0a155523f69146cd560cc2f49543a99e /include/linux/irq.h
parent781295762defc709a609efc01d8bb065276cd9a2 (diff)
genirq; Add fasteoi irq_chip quirk
Some chips want irq_eoi() only called when an interrupt is actually handled. So they have checks for INPROGRESS and DISABLED in their irq_eoi callbacks. Add a chip flag, which allows to handle that in the generic code. No impact on the fastpath. Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Diffstat (limited to 'include/linux/irq.h')
-rw-r--r--include/linux/irq.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/include/linux/irq.h b/include/linux/irq.h
index 36390970693c..ea2970c294aa 100644
--- a/include/linux/irq.h
+++ b/include/linux/irq.h
@@ -328,10 +328,12 @@ struct irq_chip {
328/* 328/*
329 * irq_chip specific flags 329 * irq_chip specific flags
330 * 330 *
331 * IRQCHIP_SET_TYPE_MASKED: Mask before calling chip.irq_set_type() 331 * IRQCHIP_SET_TYPE_MASKED: Mask before calling chip.irq_set_type()
332 * IRQCHIP_EOI_IF_HANDLED: Only issue irq_eoi() when irq was handled
332 */ 333 */
333enum { 334enum {
334 IRQCHIP_SET_TYPE_MASKED = (1 << 0), 335 IRQCHIP_SET_TYPE_MASKED = (1 << 0),
336 IRQCHIP_EOI_IF_HANDLED = (1 << 1),
335}; 337};
336 338
337/* This include will go away once we isolated irq_desc usage to core code */ 339/* This include will go away once we isolated irq_desc usage to core code */