Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * linux/kernel/irq/spurious.c |
| 3 | * |
| 4 | * Copyright (C) 1992, 1998-2004 Linus Torvalds, Ingo Molnar |
| 5 | * |
| 6 | * This file contains spurious interrupt handling. |
| 7 | */ |
| 8 | |
S.Caglar Onur | 188fd89 | 2008-02-14 17:36:51 +0200 | [diff] [blame] | 9 | #include <linux/jiffies.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10 | #include <linux/irq.h> |
| 11 | #include <linux/module.h> |
| 12 | #include <linux/kallsyms.h> |
| 13 | #include <linux/interrupt.h> |
Andi Kleen | 9e094c1 | 2008-01-30 13:32:48 +0100 | [diff] [blame] | 14 | #include <linux/moduleparam.h> |
Eric W. Biederman | f84dbb9 | 2008-07-10 14:48:54 -0700 | [diff] [blame] | 15 | #include <linux/timer.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 16 | |
Thomas Gleixner | bd15141 | 2010-10-01 15:17:14 +0200 | [diff] [blame] | 17 | #include "internals.h" |
| 18 | |
Andreas Mohr | 83d4e6e | 2006-06-23 02:05:32 -0700 | [diff] [blame] | 19 | static int irqfixup __read_mostly; |
Alan Cox | 200803d | 2005-06-28 20:45:18 -0700 | [diff] [blame] | 20 | |
Eric W. Biederman | f84dbb9 | 2008-07-10 14:48:54 -0700 | [diff] [blame] | 21 | #define POLL_SPURIOUS_IRQ_INTERVAL (HZ/10) |
| 22 | static void poll_spurious_irqs(unsigned long dummy); |
| 23 | static DEFINE_TIMER(poll_spurious_irq_timer, poll_spurious_irqs, 0, 0); |
| 24 | |
Alan Cox | 200803d | 2005-06-28 20:45:18 -0700 | [diff] [blame] | 25 | /* |
| 26 | * Recovery handler for misrouted interrupts. |
| 27 | */ |
Eric W. Biederman | f84dbb9 | 2008-07-10 14:48:54 -0700 | [diff] [blame] | 28 | static int try_one_irq(int irq, struct irq_desc *desc) |
| 29 | { |
| 30 | struct irqaction *action; |
Thomas Gleixner | d3c6004 | 2008-10-16 09:55:00 +0200 | [diff] [blame] | 31 | int ok = 0, work = 0; |
Eric W. Biederman | f84dbb9 | 2008-07-10 14:48:54 -0700 | [diff] [blame] | 32 | |
Thomas Gleixner | 239007b | 2009-11-17 16:46:45 +0100 | [diff] [blame] | 33 | raw_spin_lock(&desc->lock); |
Eric W. Biederman | f84dbb9 | 2008-07-10 14:48:54 -0700 | [diff] [blame] | 34 | /* Already running on another processor */ |
| 35 | if (desc->status & IRQ_INPROGRESS) { |
| 36 | /* |
| 37 | * Already running: If it is shared get the other |
| 38 | * CPU to go looking for our mystery interrupt too |
| 39 | */ |
| 40 | if (desc->action && (desc->action->flags & IRQF_SHARED)) |
| 41 | desc->status |= IRQ_PENDING; |
Thomas Gleixner | 239007b | 2009-11-17 16:46:45 +0100 | [diff] [blame] | 42 | raw_spin_unlock(&desc->lock); |
Eric W. Biederman | f84dbb9 | 2008-07-10 14:48:54 -0700 | [diff] [blame] | 43 | return ok; |
| 44 | } |
| 45 | /* Honour the normal IRQ locking */ |
| 46 | desc->status |= IRQ_INPROGRESS; |
| 47 | action = desc->action; |
Thomas Gleixner | 239007b | 2009-11-17 16:46:45 +0100 | [diff] [blame] | 48 | raw_spin_unlock(&desc->lock); |
Eric W. Biederman | f84dbb9 | 2008-07-10 14:48:54 -0700 | [diff] [blame] | 49 | |
| 50 | while (action) { |
| 51 | /* Only shared IRQ handlers are safe to call */ |
| 52 | if (action->flags & IRQF_SHARED) { |
| 53 | if (action->handler(irq, action->dev_id) == |
| 54 | IRQ_HANDLED) |
| 55 | ok = 1; |
| 56 | } |
| 57 | action = action->next; |
| 58 | } |
| 59 | local_irq_disable(); |
| 60 | /* Now clean up the flags */ |
Thomas Gleixner | 239007b | 2009-11-17 16:46:45 +0100 | [diff] [blame] | 61 | raw_spin_lock(&desc->lock); |
Eric W. Biederman | f84dbb9 | 2008-07-10 14:48:54 -0700 | [diff] [blame] | 62 | action = desc->action; |
| 63 | |
| 64 | /* |
| 65 | * While we were looking for a fixup someone queued a real |
| 66 | * IRQ clashing with our walk: |
| 67 | */ |
| 68 | while ((desc->status & IRQ_PENDING) && action) { |
| 69 | /* |
| 70 | * Perform real IRQ processing for the IRQ we deferred |
| 71 | */ |
| 72 | work = 1; |
Thomas Gleixner | 239007b | 2009-11-17 16:46:45 +0100 | [diff] [blame] | 73 | raw_spin_unlock(&desc->lock); |
Eric W. Biederman | f84dbb9 | 2008-07-10 14:48:54 -0700 | [diff] [blame] | 74 | handle_IRQ_event(irq, action); |
Thomas Gleixner | 239007b | 2009-11-17 16:46:45 +0100 | [diff] [blame] | 75 | raw_spin_lock(&desc->lock); |
Eric W. Biederman | f84dbb9 | 2008-07-10 14:48:54 -0700 | [diff] [blame] | 76 | desc->status &= ~IRQ_PENDING; |
| 77 | } |
| 78 | desc->status &= ~IRQ_INPROGRESS; |
| 79 | /* |
| 80 | * If we did actual work for the real IRQ line we must let the |
| 81 | * IRQ controller clean up too |
| 82 | */ |
Thomas Gleixner | bd15141 | 2010-10-01 15:17:14 +0200 | [diff] [blame] | 83 | if (work) |
| 84 | irq_end(irq, desc); |
Thomas Gleixner | 239007b | 2009-11-17 16:46:45 +0100 | [diff] [blame] | 85 | raw_spin_unlock(&desc->lock); |
Eric W. Biederman | f84dbb9 | 2008-07-10 14:48:54 -0700 | [diff] [blame] | 86 | |
| 87 | return ok; |
| 88 | } |
| 89 | |
David Howells | 7d12e78 | 2006-10-05 14:55:46 +0100 | [diff] [blame] | 90 | static int misrouted_irq(int irq) |
Alan Cox | 200803d | 2005-06-28 20:45:18 -0700 | [diff] [blame] | 91 | { |
Yinghai Lu | e00585b | 2008-09-15 01:53:50 -0700 | [diff] [blame] | 92 | struct irq_desc *desc; |
Thomas Gleixner | d3c6004 | 2008-10-16 09:55:00 +0200 | [diff] [blame] | 93 | int i, ok = 0; |
Alan Cox | 200803d | 2005-06-28 20:45:18 -0700 | [diff] [blame] | 94 | |
Yinghai Lu | e00585b | 2008-09-15 01:53:50 -0700 | [diff] [blame] | 95 | for_each_irq_desc(i, desc) { |
| 96 | if (!i) |
| 97 | continue; |
Alan Cox | 200803d | 2005-06-28 20:45:18 -0700 | [diff] [blame] | 98 | |
| 99 | if (i == irq) /* Already tried */ |
| 100 | continue; |
Ingo Molnar | 06fcb0c | 2006-06-29 02:24:40 -0700 | [diff] [blame] | 101 | |
Eric W. Biederman | f84dbb9 | 2008-07-10 14:48:54 -0700 | [diff] [blame] | 102 | if (try_one_irq(i, desc)) |
| 103 | ok = 1; |
Alan Cox | 200803d | 2005-06-28 20:45:18 -0700 | [diff] [blame] | 104 | } |
| 105 | /* So the caller can adjust the irq error counts */ |
| 106 | return ok; |
| 107 | } |
| 108 | |
Thomas Gleixner | 663e695 | 2009-11-04 14:22:21 +0100 | [diff] [blame] | 109 | static void poll_spurious_irqs(unsigned long dummy) |
Eric W. Biederman | f84dbb9 | 2008-07-10 14:48:54 -0700 | [diff] [blame] | 110 | { |
Yinghai Lu | e00585b | 2008-09-15 01:53:50 -0700 | [diff] [blame] | 111 | struct irq_desc *desc; |
Thomas Gleixner | d3c6004 | 2008-10-16 09:55:00 +0200 | [diff] [blame] | 112 | int i; |
Yinghai Lu | e00585b | 2008-09-15 01:53:50 -0700 | [diff] [blame] | 113 | |
| 114 | for_each_irq_desc(i, desc) { |
Eric W. Biederman | f84dbb9 | 2008-07-10 14:48:54 -0700 | [diff] [blame] | 115 | unsigned int status; |
| 116 | |
Yinghai Lu | e00585b | 2008-09-15 01:53:50 -0700 | [diff] [blame] | 117 | if (!i) |
| 118 | continue; |
| 119 | |
Eric W. Biederman | f84dbb9 | 2008-07-10 14:48:54 -0700 | [diff] [blame] | 120 | /* Racy but it doesn't matter */ |
| 121 | status = desc->status; |
| 122 | barrier(); |
| 123 | if (!(status & IRQ_SPURIOUS_DISABLED)) |
| 124 | continue; |
| 125 | |
Yong Zhang | e7e7e0c | 2009-11-07 11:16:13 +0800 | [diff] [blame] | 126 | local_irq_disable(); |
Eric W. Biederman | f84dbb9 | 2008-07-10 14:48:54 -0700 | [diff] [blame] | 127 | try_one_irq(i, desc); |
Yong Zhang | e7e7e0c | 2009-11-07 11:16:13 +0800 | [diff] [blame] | 128 | local_irq_enable(); |
Eric W. Biederman | f84dbb9 | 2008-07-10 14:48:54 -0700 | [diff] [blame] | 129 | } |
| 130 | |
Thomas Gleixner | d3c6004 | 2008-10-16 09:55:00 +0200 | [diff] [blame] | 131 | mod_timer(&poll_spurious_irq_timer, |
| 132 | jiffies + POLL_SPURIOUS_IRQ_INTERVAL); |
Eric W. Biederman | f84dbb9 | 2008-07-10 14:48:54 -0700 | [diff] [blame] | 133 | } |
| 134 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 135 | /* |
| 136 | * If 99,900 of the previous 100,000 interrupts have not been handled |
| 137 | * then assume that the IRQ is stuck in some manner. Drop a diagnostic |
| 138 | * and try to turn the IRQ off. |
| 139 | * |
| 140 | * (The other 100-of-100,000 interrupts may have been a correctly |
| 141 | * functioning device sharing an IRQ with the failing one) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 142 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 143 | static void |
Ingo Molnar | 34ffdb7 | 2006-06-29 02:24:40 -0700 | [diff] [blame] | 144 | __report_bad_irq(unsigned int irq, struct irq_desc *desc, |
| 145 | irqreturn_t action_ret) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 146 | { |
| 147 | struct irqaction *action; |
Thomas Gleixner | 1082687 | 2011-02-07 09:05:05 +0100 | [diff] [blame^] | 148 | unsigned long flags; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 149 | |
| 150 | if (action_ret != IRQ_HANDLED && action_ret != IRQ_NONE) { |
| 151 | printk(KERN_ERR "irq event %d: bogus return value %x\n", |
| 152 | irq, action_ret); |
| 153 | } else { |
Alan Cox | 200803d | 2005-06-28 20:45:18 -0700 | [diff] [blame] | 154 | printk(KERN_ERR "irq %d: nobody cared (try booting with " |
| 155 | "the \"irqpoll\" option)\n", irq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 156 | } |
| 157 | dump_stack(); |
| 158 | printk(KERN_ERR "handlers:\n"); |
Ingo Molnar | 06fcb0c | 2006-06-29 02:24:40 -0700 | [diff] [blame] | 159 | |
Thomas Gleixner | 1082687 | 2011-02-07 09:05:05 +0100 | [diff] [blame^] | 160 | /* |
| 161 | * We need to take desc->lock here. note_interrupt() is called |
| 162 | * w/o desc->lock held, but IRQ_PROGRESS set. We might race |
| 163 | * with something else removing an action. It's ok to take |
| 164 | * desc->lock here. See synchronize_irq(). |
| 165 | */ |
| 166 | raw_spin_lock_irqsave(&desc->lock, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 167 | action = desc->action; |
| 168 | while (action) { |
| 169 | printk(KERN_ERR "[<%p>]", action->handler); |
| 170 | print_symbol(" (%s)", |
| 171 | (unsigned long)action->handler); |
| 172 | printk("\n"); |
| 173 | action = action->next; |
| 174 | } |
Thomas Gleixner | 1082687 | 2011-02-07 09:05:05 +0100 | [diff] [blame^] | 175 | raw_spin_unlock_irqrestore(&desc->lock, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 176 | } |
| 177 | |
Ingo Molnar | 06fcb0c | 2006-06-29 02:24:40 -0700 | [diff] [blame] | 178 | static void |
Ingo Molnar | 34ffdb7 | 2006-06-29 02:24:40 -0700 | [diff] [blame] | 179 | report_bad_irq(unsigned int irq, struct irq_desc *desc, irqreturn_t action_ret) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 180 | { |
| 181 | static int count = 100; |
| 182 | |
| 183 | if (count > 0) { |
| 184 | count--; |
| 185 | __report_bad_irq(irq, desc, action_ret); |
| 186 | } |
| 187 | } |
| 188 | |
Thomas Gleixner | d3c6004 | 2008-10-16 09:55:00 +0200 | [diff] [blame] | 189 | static inline int |
| 190 | try_misrouted_irq(unsigned int irq, struct irq_desc *desc, |
| 191 | irqreturn_t action_ret) |
Linus Torvalds | 92ea772 | 2007-05-24 08:37:14 -0700 | [diff] [blame] | 192 | { |
| 193 | struct irqaction *action; |
| 194 | |
| 195 | if (!irqfixup) |
| 196 | return 0; |
| 197 | |
| 198 | /* We didn't actually handle the IRQ - see if it was misrouted? */ |
| 199 | if (action_ret == IRQ_NONE) |
| 200 | return 1; |
| 201 | |
| 202 | /* |
| 203 | * But for 'irqfixup == 2' we also do it for handled interrupts if |
| 204 | * they are marked as IRQF_IRQPOLL (or for irq zero, which is the |
| 205 | * traditional PC timer interrupt.. Legacy) |
| 206 | */ |
| 207 | if (irqfixup < 2) |
| 208 | return 0; |
| 209 | |
| 210 | if (!irq) |
| 211 | return 1; |
| 212 | |
| 213 | /* |
| 214 | * Since we don't get the descriptor lock, "action" can |
| 215 | * change under us. We don't really care, but we don't |
| 216 | * want to follow a NULL pointer. So tell the compiler to |
| 217 | * just load it once by using a barrier. |
| 218 | */ |
| 219 | action = desc->action; |
| 220 | barrier(); |
| 221 | return action && (action->flags & IRQF_IRQPOLL); |
| 222 | } |
| 223 | |
Ingo Molnar | 34ffdb7 | 2006-06-29 02:24:40 -0700 | [diff] [blame] | 224 | void note_interrupt(unsigned int irq, struct irq_desc *desc, |
David Howells | 7d12e78 | 2006-10-05 14:55:46 +0100 | [diff] [blame] | 225 | irqreturn_t action_ret) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 226 | { |
Andreas Mohr | 83d4e6e | 2006-06-23 02:05:32 -0700 | [diff] [blame] | 227 | if (unlikely(action_ret != IRQ_HANDLED)) { |
Alan Cox | 4f27c00 | 2007-07-15 23:40:55 -0700 | [diff] [blame] | 228 | /* |
| 229 | * If we are seeing only the odd spurious IRQ caused by |
| 230 | * bus asynchronicity then don't eventually trigger an error, |
Uwe Kleine-König | fbfecd3 | 2009-10-28 20:11:04 +0100 | [diff] [blame] | 231 | * otherwise the counter becomes a doomsday timer for otherwise |
Alan Cox | 4f27c00 | 2007-07-15 23:40:55 -0700 | [diff] [blame] | 232 | * working systems |
| 233 | */ |
S.Caglar Onur | 188fd89 | 2008-02-14 17:36:51 +0200 | [diff] [blame] | 234 | if (time_after(jiffies, desc->last_unhandled + HZ/10)) |
Alan Cox | 4f27c00 | 2007-07-15 23:40:55 -0700 | [diff] [blame] | 235 | desc->irqs_unhandled = 1; |
| 236 | else |
| 237 | desc->irqs_unhandled++; |
| 238 | desc->last_unhandled = jiffies; |
Andreas Mohr | 83d4e6e | 2006-06-23 02:05:32 -0700 | [diff] [blame] | 239 | if (unlikely(action_ret != IRQ_NONE)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 240 | report_bad_irq(irq, desc, action_ret); |
| 241 | } |
| 242 | |
Linus Torvalds | 92ea772 | 2007-05-24 08:37:14 -0700 | [diff] [blame] | 243 | if (unlikely(try_misrouted_irq(irq, desc, action_ret))) { |
| 244 | int ok = misrouted_irq(irq); |
| 245 | if (action_ret == IRQ_NONE) |
| 246 | desc->irqs_unhandled -= ok; |
Alan Cox | 200803d | 2005-06-28 20:45:18 -0700 | [diff] [blame] | 247 | } |
| 248 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 249 | desc->irq_count++; |
Andreas Mohr | 83d4e6e | 2006-06-23 02:05:32 -0700 | [diff] [blame] | 250 | if (likely(desc->irq_count < 100000)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 251 | return; |
| 252 | |
| 253 | desc->irq_count = 0; |
Andreas Mohr | 83d4e6e | 2006-06-23 02:05:32 -0700 | [diff] [blame] | 254 | if (unlikely(desc->irqs_unhandled > 99900)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 255 | /* |
| 256 | * The interrupt is stuck |
| 257 | */ |
| 258 | __report_bad_irq(irq, desc, action_ret); |
| 259 | /* |
| 260 | * Now kill the IRQ |
| 261 | */ |
| 262 | printk(KERN_EMERG "Disabling IRQ #%d\n", irq); |
Thomas Gleixner | 1adb085 | 2008-04-28 17:01:56 +0200 | [diff] [blame] | 263 | desc->status |= IRQ_DISABLED | IRQ_SPURIOUS_DISABLED; |
| 264 | desc->depth++; |
Thomas Gleixner | bc310dd | 2010-09-27 12:45:02 +0000 | [diff] [blame] | 265 | desc->irq_data.chip->irq_disable(&desc->irq_data); |
Eric W. Biederman | f84dbb9 | 2008-07-10 14:48:54 -0700 | [diff] [blame] | 266 | |
Thomas Gleixner | d3c6004 | 2008-10-16 09:55:00 +0200 | [diff] [blame] | 267 | mod_timer(&poll_spurious_irq_timer, |
| 268 | jiffies + POLL_SPURIOUS_IRQ_INTERVAL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 269 | } |
| 270 | desc->irqs_unhandled = 0; |
| 271 | } |
| 272 | |
Andreas Mohr | 83d4e6e | 2006-06-23 02:05:32 -0700 | [diff] [blame] | 273 | int noirqdebug __read_mostly; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 274 | |
Vivek Goyal | 343cde5 | 2007-01-11 01:52:44 +0100 | [diff] [blame] | 275 | int noirqdebug_setup(char *str) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 276 | { |
| 277 | noirqdebug = 1; |
| 278 | printk(KERN_INFO "IRQ lockup detection disabled\n"); |
Ingo Molnar | 06fcb0c | 2006-06-29 02:24:40 -0700 | [diff] [blame] | 279 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 280 | return 1; |
| 281 | } |
| 282 | |
| 283 | __setup("noirqdebug", noirqdebug_setup); |
Andi Kleen | 9e094c1 | 2008-01-30 13:32:48 +0100 | [diff] [blame] | 284 | module_param(noirqdebug, bool, 0644); |
| 285 | MODULE_PARM_DESC(noirqdebug, "Disable irq lockup detection when true"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 286 | |
Alan Cox | 200803d | 2005-06-28 20:45:18 -0700 | [diff] [blame] | 287 | static int __init irqfixup_setup(char *str) |
| 288 | { |
| 289 | irqfixup = 1; |
| 290 | printk(KERN_WARNING "Misrouted IRQ fixup support enabled.\n"); |
| 291 | printk(KERN_WARNING "This may impact system performance.\n"); |
Ingo Molnar | 06fcb0c | 2006-06-29 02:24:40 -0700 | [diff] [blame] | 292 | |
Alan Cox | 200803d | 2005-06-28 20:45:18 -0700 | [diff] [blame] | 293 | return 1; |
| 294 | } |
| 295 | |
| 296 | __setup("irqfixup", irqfixup_setup); |
Andi Kleen | 9e094c1 | 2008-01-30 13:32:48 +0100 | [diff] [blame] | 297 | module_param(irqfixup, int, 0644); |
Alan Cox | 200803d | 2005-06-28 20:45:18 -0700 | [diff] [blame] | 298 | |
| 299 | static int __init irqpoll_setup(char *str) |
| 300 | { |
| 301 | irqfixup = 2; |
| 302 | printk(KERN_WARNING "Misrouted IRQ fixup and polling support " |
| 303 | "enabled\n"); |
| 304 | printk(KERN_WARNING "This may significantly impact system " |
| 305 | "performance\n"); |
| 306 | return 1; |
| 307 | } |
| 308 | |
| 309 | __setup("irqpoll", irqpoll_setup); |