2 * linux/kernel/irq/spurious.c
4 * Copyright (C) 1992, 1998-2004 Linus Torvalds, Ingo Molnar
6 * This file contains spurious interrupt handling.
10 #include <linux/module.h>
11 #include <linux/kallsyms.h>
12 #include <linux/interrupt.h>
14 static int irqfixup __read_mostly
;
17 * Recovery handler for misrouted interrupts.
19 static int misrouted_irq(int irq
, struct pt_regs
*regs
)
23 int work
= 0; /* Did we do work for a real IRQ */
25 for (i
= 1; i
< NR_IRQS
; i
++) {
26 struct irq_desc
*desc
= irq_desc
+ i
;
27 struct irqaction
*action
;
29 if (i
== irq
) /* Already tried */
32 spin_lock(&desc
->lock
);
33 /* Already running on another processor */
34 if (desc
->status
& IRQ_INPROGRESS
) {
36 * Already running: If it is shared get the other
37 * CPU to go looking for our mystery interrupt too
39 if (desc
->action
&& (desc
->action
->flags
& IRQF_SHARED
))
40 desc
->status
|= IRQ_PENDING
;
41 spin_unlock(&desc
->lock
);
44 /* Honour the normal IRQ locking */
45 desc
->status
|= IRQ_INPROGRESS
;
46 action
= desc
->action
;
47 spin_unlock(&desc
->lock
);
50 /* Only shared IRQ handlers are safe to call */
51 if (action
->flags
& IRQF_SHARED
) {
52 if (action
->handler(i
, action
->dev_id
, regs
) ==
56 action
= action
->next
;
59 /* Now clean up the flags */
60 spin_lock(&desc
->lock
);
61 action
= desc
->action
;
64 * While we were looking for a fixup someone queued a real
65 * IRQ clashing with our walk:
67 while ((desc
->status
& IRQ_PENDING
) && action
) {
69 * Perform real IRQ processing for the IRQ we deferred
72 spin_unlock(&desc
->lock
);
73 handle_IRQ_event(i
, regs
, action
);
74 spin_lock(&desc
->lock
);
75 desc
->status
&= ~IRQ_PENDING
;
77 desc
->status
&= ~IRQ_INPROGRESS
;
79 * If we did actual work for the real IRQ line we must let the
80 * IRQ controller clean up too
82 if (work
&& desc
->chip
&& desc
->chip
->end
)
84 spin_unlock(&desc
->lock
);
86 /* So the caller can adjust the irq error counts */
91 * If 99,900 of the previous 100,000 interrupts have not been handled
92 * then assume that the IRQ is stuck in some manner. Drop a diagnostic
93 * and try to turn the IRQ off.
95 * (The other 100-of-100,000 interrupts may have been a correctly
96 * functioning device sharing an IRQ with the failing one)
98 * Called under desc->lock
102 __report_bad_irq(unsigned int irq
, struct irq_desc
*desc
,
103 irqreturn_t action_ret
)
105 struct irqaction
*action
;
107 if (action_ret
!= IRQ_HANDLED
&& action_ret
!= IRQ_NONE
) {
108 printk(KERN_ERR
"irq event %d: bogus return value %x\n",
111 printk(KERN_ERR
"irq %d: nobody cared (try booting with "
112 "the \"irqpoll\" option)\n", irq
);
115 printk(KERN_ERR
"handlers:\n");
117 action
= desc
->action
;
119 printk(KERN_ERR
"[<%p>]", action
->handler
);
120 print_symbol(" (%s)",
121 (unsigned long)action
->handler
);
123 action
= action
->next
;
128 report_bad_irq(unsigned int irq
, struct irq_desc
*desc
, irqreturn_t action_ret
)
130 static int count
= 100;
134 __report_bad_irq(irq
, desc
, action_ret
);
138 void note_interrupt(unsigned int irq
, struct irq_desc
*desc
,
139 irqreturn_t action_ret
, struct pt_regs
*regs
)
141 if (unlikely(action_ret
!= IRQ_HANDLED
)) {
142 desc
->irqs_unhandled
++;
143 if (unlikely(action_ret
!= IRQ_NONE
))
144 report_bad_irq(irq
, desc
, action_ret
);
147 if (unlikely(irqfixup
)) {
148 /* Don't punish working computers */
149 if ((irqfixup
== 2 && irq
== 0) || action_ret
== IRQ_NONE
) {
150 int ok
= misrouted_irq(irq
, regs
);
151 if (action_ret
== IRQ_NONE
)
152 desc
->irqs_unhandled
-= ok
;
157 if (likely(desc
->irq_count
< 100000))
161 if (unlikely(desc
->irqs_unhandled
> 99900)) {
163 * The interrupt is stuck
165 __report_bad_irq(irq
, desc
, action_ret
);
169 printk(KERN_EMERG
"Disabling IRQ #%d\n", irq
);
170 desc
->status
|= IRQ_DISABLED
;
172 desc
->chip
->disable(irq
);
174 desc
->irqs_unhandled
= 0;
177 int noirqdebug __read_mostly
;
179 int __init
noirqdebug_setup(char *str
)
182 printk(KERN_INFO
"IRQ lockup detection disabled\n");
187 __setup("noirqdebug", noirqdebug_setup
);
189 static int __init
irqfixup_setup(char *str
)
192 printk(KERN_WARNING
"Misrouted IRQ fixup support enabled.\n");
193 printk(KERN_WARNING
"This may impact system performance.\n");
198 __setup("irqfixup", irqfixup_setup
);
200 static int __init
irqpoll_setup(char *str
)
203 printk(KERN_WARNING
"Misrouted IRQ fixup and polling support "
205 printk(KERN_WARNING
"This may significantly impact system "
210 __setup("irqpoll", irqpoll_setup
);