Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * linux/kernel/irq/handle.c |
| 3 | * |
Ingo Molnar | a34db9b | 2006-06-29 02:24:50 -0700 | [diff] [blame] | 4 | * Copyright (C) 1992, 1998-2006 Linus Torvalds, Ingo Molnar |
| 5 | * Copyright (C) 2005-2006, Thomas Gleixner, Russell King |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6 | * |
| 7 | * This file contains the core interrupt handling code. |
Ingo Molnar | a34db9b | 2006-06-29 02:24:50 -0700 | [diff] [blame] | 8 | * |
| 9 | * Detailed information is available in Documentation/DocBook/genericirq |
| 10 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 11 | */ |
| 12 | |
| 13 | #include <linux/irq.h> |
| 14 | #include <linux/module.h> |
| 15 | #include <linux/random.h> |
| 16 | #include <linux/interrupt.h> |
| 17 | #include <linux/kernel_stat.h> |
Yinghai Lu | 0b8f1ef | 2008-12-05 18:58:31 -0800 | [diff] [blame] | 18 | #include <linux/rculist.h> |
| 19 | #include <linux/hash.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 20 | |
| 21 | #include "internals.h" |
| 22 | |
Yinghai Lu | 0b8f1ef | 2008-12-05 18:58:31 -0800 | [diff] [blame] | 23 | /* |
| 24 | * lockdep: we want to handle all irq_desc locks as a single lock-class: |
| 25 | */ |
Yinghai Lu | 48a1b10 | 2008-12-11 00:15:01 -0800 | [diff] [blame] | 26 | struct lock_class_key irq_desc_lock_class; |
Yinghai Lu | 0b8f1ef | 2008-12-05 18:58:31 -0800 | [diff] [blame] | 27 | |
Thomas Gleixner | 6a6de9e | 2006-06-29 02:24:51 -0700 | [diff] [blame] | 28 | /** |
| 29 | * handle_bad_irq - handle spurious and unhandled irqs |
Henrik Kretzschmar | 43a1dd5 | 2006-08-31 21:27:44 -0700 | [diff] [blame] | 30 | * @irq: the interrupt number |
| 31 | * @desc: description of the interrupt |
Henrik Kretzschmar | 43a1dd5 | 2006-08-31 21:27:44 -0700 | [diff] [blame] | 32 | * |
| 33 | * Handles spurious and unhandled IRQ's. It also prints a debugmessage. |
Thomas Gleixner | 6a6de9e | 2006-06-29 02:24:51 -0700 | [diff] [blame] | 34 | */ |
Thomas Gleixner | d6c88a5 | 2008-10-15 15:27:23 +0200 | [diff] [blame] | 35 | void handle_bad_irq(unsigned int irq, struct irq_desc *desc) |
Thomas Gleixner | 6a6de9e | 2006-06-29 02:24:51 -0700 | [diff] [blame] | 36 | { |
Ingo Molnar | 43f7775 | 2006-06-29 02:24:58 -0700 | [diff] [blame] | 37 | print_irq_desc(irq, desc); |
Thomas Gleixner | d6c88a5 | 2008-10-15 15:27:23 +0200 | [diff] [blame] | 38 | kstat_incr_irqs_this_cpu(irq, desc); |
Thomas Gleixner | 6a6de9e | 2006-06-29 02:24:51 -0700 | [diff] [blame] | 39 | ack_bad_irq(irq); |
| 40 | } |
| 41 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 42 | /* |
| 43 | * Linux has a controller-independent interrupt architecture. |
| 44 | * Every controller has a 'controller-template', that is used |
| 45 | * by the main code to do the right thing. Each driver-visible |
Ingo Molnar | 06fcb0c | 2006-06-29 02:24:40 -0700 | [diff] [blame] | 46 | * interrupt source is transparently wired to the appropriate |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 47 | * controller. Thus drivers need not be aware of the |
| 48 | * interrupt-controller. |
| 49 | * |
| 50 | * The code is designed to be easily extended with new/different |
| 51 | * interrupt controllers, without having to do assembly magic or |
| 52 | * having to touch the generic code. |
| 53 | * |
| 54 | * Controller mappings for all interrupt sources: |
| 55 | */ |
Yinghai Lu | 85c0f90 | 2008-08-19 20:49:47 -0700 | [diff] [blame] | 56 | int nr_irqs = NR_IRQS; |
Ingo Molnar | fa42d10 | 2008-08-19 20:50:30 -0700 | [diff] [blame] | 57 | EXPORT_SYMBOL_GPL(nr_irqs); |
Yinghai Lu | d60458b | 2008-08-19 20:50:00 -0700 | [diff] [blame] | 58 | |
Yinghai Lu | 0b8f1ef | 2008-12-05 18:58:31 -0800 | [diff] [blame] | 59 | #ifdef CONFIG_SPARSE_IRQ |
| 60 | static struct irq_desc irq_desc_init = { |
| 61 | .irq = -1, |
| 62 | .status = IRQ_DISABLED, |
| 63 | .chip = &no_irq_chip, |
| 64 | .handle_irq = handle_bad_irq, |
| 65 | .depth = 1, |
| 66 | .lock = __SPIN_LOCK_UNLOCKED(irq_desc_init.lock), |
| 67 | #ifdef CONFIG_SMP |
| 68 | .affinity = CPU_MASK_ALL |
| 69 | #endif |
| 70 | }; |
| 71 | |
Yinghai Lu | 48a1b10 | 2008-12-11 00:15:01 -0800 | [diff] [blame] | 72 | void init_kstat_irqs(struct irq_desc *desc, int cpu, int nr) |
Yinghai Lu | 0b8f1ef | 2008-12-05 18:58:31 -0800 | [diff] [blame] | 73 | { |
| 74 | unsigned long bytes; |
| 75 | char *ptr; |
| 76 | int node; |
| 77 | |
| 78 | /* Compute how many bytes we need per irq and allocate them */ |
| 79 | bytes = nr * sizeof(unsigned int); |
| 80 | |
| 81 | node = cpu_to_node(cpu); |
| 82 | ptr = kzalloc_node(bytes, GFP_ATOMIC, node); |
| 83 | printk(KERN_DEBUG " alloc kstat_irqs on cpu %d node %d\n", cpu, node); |
| 84 | |
| 85 | if (ptr) |
| 86 | desc->kstat_irqs = (unsigned int *)ptr; |
| 87 | } |
| 88 | |
Yinghai Lu | 0b8f1ef | 2008-12-05 18:58:31 -0800 | [diff] [blame] | 89 | static void init_one_irq_desc(int irq, struct irq_desc *desc, int cpu) |
| 90 | { |
| 91 | memcpy(desc, &irq_desc_init, sizeof(struct irq_desc)); |
Ingo Molnar | 793f7b1 | 2008-12-26 19:02:20 +0100 | [diff] [blame] | 92 | |
| 93 | spin_lock_init(&desc->lock); |
Yinghai Lu | 0b8f1ef | 2008-12-05 18:58:31 -0800 | [diff] [blame] | 94 | desc->irq = irq; |
| 95 | #ifdef CONFIG_SMP |
| 96 | desc->cpu = cpu; |
| 97 | #endif |
| 98 | lockdep_set_class(&desc->lock, &irq_desc_lock_class); |
| 99 | init_kstat_irqs(desc, cpu, nr_cpu_ids); |
| 100 | if (!desc->kstat_irqs) { |
| 101 | printk(KERN_ERR "can not alloc kstat_irqs\n"); |
| 102 | BUG_ON(1); |
| 103 | } |
| 104 | arch_init_chip_data(desc, cpu); |
| 105 | } |
| 106 | |
| 107 | /* |
| 108 | * Protect the sparse_irqs: |
| 109 | */ |
Yinghai Lu | 48a1b10 | 2008-12-11 00:15:01 -0800 | [diff] [blame] | 110 | DEFINE_SPINLOCK(sparse_irq_lock); |
Yinghai Lu | 0b8f1ef | 2008-12-05 18:58:31 -0800 | [diff] [blame] | 111 | |
| 112 | struct irq_desc *irq_desc_ptrs[NR_IRQS] __read_mostly; |
| 113 | |
Yinghai Lu | 99d093d | 2008-12-05 18:58:32 -0800 | [diff] [blame] | 114 | static struct irq_desc irq_desc_legacy[NR_IRQS_LEGACY] __cacheline_aligned_in_smp = { |
| 115 | [0 ... NR_IRQS_LEGACY-1] = { |
Yinghai Lu | 0b8f1ef | 2008-12-05 18:58:31 -0800 | [diff] [blame] | 116 | .irq = -1, |
| 117 | .status = IRQ_DISABLED, |
| 118 | .chip = &no_irq_chip, |
| 119 | .handle_irq = handle_bad_irq, |
| 120 | .depth = 1, |
| 121 | .lock = __SPIN_LOCK_UNLOCKED(irq_desc_init.lock), |
| 122 | #ifdef CONFIG_SMP |
| 123 | .affinity = CPU_MASK_ALL |
| 124 | #endif |
| 125 | } |
| 126 | }; |
| 127 | |
| 128 | /* FIXME: use bootmem alloc ...*/ |
Yinghai Lu | 99d093d | 2008-12-05 18:58:32 -0800 | [diff] [blame] | 129 | static unsigned int kstat_irqs_legacy[NR_IRQS_LEGACY][NR_CPUS]; |
Yinghai Lu | 0b8f1ef | 2008-12-05 18:58:31 -0800 | [diff] [blame] | 130 | |
Yinghai Lu | 13a0c3c | 2008-12-26 02:05:47 -0800 | [diff] [blame] | 131 | int __init early_irq_init(void) |
Yinghai Lu | 0b8f1ef | 2008-12-05 18:58:31 -0800 | [diff] [blame] | 132 | { |
| 133 | struct irq_desc *desc; |
| 134 | int legacy_count; |
| 135 | int i; |
| 136 | |
| 137 | desc = irq_desc_legacy; |
| 138 | legacy_count = ARRAY_SIZE(irq_desc_legacy); |
| 139 | |
| 140 | for (i = 0; i < legacy_count; i++) { |
| 141 | desc[i].irq = i; |
| 142 | desc[i].kstat_irqs = kstat_irqs_legacy[i]; |
Yinghai Lu | fa6beb3 | 2008-12-22 20:24:09 -0800 | [diff] [blame] | 143 | lockdep_set_class(&desc[i].lock, &irq_desc_lock_class); |
Yinghai Lu | 0b8f1ef | 2008-12-05 18:58:31 -0800 | [diff] [blame] | 144 | |
| 145 | irq_desc_ptrs[i] = desc + i; |
| 146 | } |
| 147 | |
| 148 | for (i = legacy_count; i < NR_IRQS; i++) |
| 149 | irq_desc_ptrs[i] = NULL; |
| 150 | |
Yinghai Lu | 13a0c3c | 2008-12-26 02:05:47 -0800 | [diff] [blame] | 151 | return arch_early_irq_init(); |
Yinghai Lu | 0b8f1ef | 2008-12-05 18:58:31 -0800 | [diff] [blame] | 152 | } |
| 153 | |
| 154 | struct irq_desc *irq_to_desc(unsigned int irq) |
| 155 | { |
| 156 | return (irq < NR_IRQS) ? irq_desc_ptrs[irq] : NULL; |
| 157 | } |
| 158 | |
| 159 | struct irq_desc *irq_to_desc_alloc_cpu(unsigned int irq, int cpu) |
| 160 | { |
| 161 | struct irq_desc *desc; |
| 162 | unsigned long flags; |
| 163 | int node; |
| 164 | |
| 165 | if (irq >= NR_IRQS) { |
| 166 | printk(KERN_WARNING "irq >= NR_IRQS in irq_to_desc_alloc: %d %d\n", |
| 167 | irq, NR_IRQS); |
| 168 | WARN_ON(1); |
| 169 | return NULL; |
| 170 | } |
| 171 | |
| 172 | desc = irq_desc_ptrs[irq]; |
| 173 | if (desc) |
| 174 | return desc; |
| 175 | |
| 176 | spin_lock_irqsave(&sparse_irq_lock, flags); |
| 177 | |
| 178 | /* We have to check it to avoid races with another CPU */ |
| 179 | desc = irq_desc_ptrs[irq]; |
| 180 | if (desc) |
| 181 | goto out_unlock; |
| 182 | |
| 183 | node = cpu_to_node(cpu); |
| 184 | desc = kzalloc_node(sizeof(*desc), GFP_ATOMIC, node); |
| 185 | printk(KERN_DEBUG " alloc irq_desc for %d on cpu %d node %d\n", |
| 186 | irq, cpu, node); |
| 187 | if (!desc) { |
| 188 | printk(KERN_ERR "can not alloc irq_desc\n"); |
| 189 | BUG_ON(1); |
| 190 | } |
| 191 | init_one_irq_desc(irq, desc, cpu); |
| 192 | |
| 193 | irq_desc_ptrs[irq] = desc; |
| 194 | |
| 195 | out_unlock: |
| 196 | spin_unlock_irqrestore(&sparse_irq_lock, flags); |
| 197 | |
| 198 | return desc; |
| 199 | } |
| 200 | |
KOSAKI Motohiro | f9af0e7 | 2008-12-26 12:24:24 +0900 | [diff] [blame] | 201 | #else /* !CONFIG_SPARSE_IRQ */ |
Yinghai Lu | 0b8f1ef | 2008-12-05 18:58:31 -0800 | [diff] [blame] | 202 | |
Ravikiran G Thirumalai | e729aa1 | 2007-05-08 00:29:13 -0700 | [diff] [blame] | 203 | struct irq_desc irq_desc[NR_IRQS] __cacheline_aligned_in_smp = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 204 | [0 ... NR_IRQS-1] = { |
Zhang, Yanmin | 4f167fb | 2005-05-16 21:53:43 -0700 | [diff] [blame] | 205 | .status = IRQ_DISABLED, |
Ingo Molnar | f1c2662 | 2006-06-29 02:24:57 -0700 | [diff] [blame] | 206 | .chip = &no_irq_chip, |
Ingo Molnar | 7a55713 | 2006-06-29 02:24:54 -0700 | [diff] [blame] | 207 | .handle_irq = handle_bad_irq, |
Thomas Gleixner | 94d39e1 | 2006-06-29 02:24:50 -0700 | [diff] [blame] | 208 | .depth = 1, |
Yinghai Lu | aac3f2b | 2008-09-24 19:04:35 -0700 | [diff] [blame] | 209 | .lock = __SPIN_LOCK_UNLOCKED(irq_desc->lock), |
Ingo Molnar | a53da52 | 2006-06-29 02:24:38 -0700 | [diff] [blame] | 210 | #ifdef CONFIG_SMP |
| 211 | .affinity = CPU_MASK_ALL |
| 212 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 213 | } |
| 214 | }; |
Yinghai Lu | 08678b0 | 2008-08-19 20:50:05 -0700 | [diff] [blame] | 215 | |
Yinghai Lu | d7e51e6 | 2009-01-07 15:03:13 -0800 | [diff] [blame] | 216 | static unsigned int kstat_irqs_all[NR_IRQS][NR_CPUS]; |
Yinghai Lu | 12026ea | 2008-12-26 22:38:15 -0800 | [diff] [blame] | 217 | int __init early_irq_init(void) |
| 218 | { |
| 219 | struct irq_desc *desc; |
| 220 | int count; |
| 221 | int i; |
| 222 | |
| 223 | desc = irq_desc; |
| 224 | count = ARRAY_SIZE(irq_desc); |
| 225 | |
Yinghai Lu | d7e51e6 | 2009-01-07 15:03:13 -0800 | [diff] [blame] | 226 | for (i = 0; i < count; i++) { |
Yinghai Lu | 12026ea | 2008-12-26 22:38:15 -0800 | [diff] [blame] | 227 | desc[i].irq = i; |
Yinghai Lu | d7e51e6 | 2009-01-07 15:03:13 -0800 | [diff] [blame] | 228 | desc[i].kstat_irqs = kstat_irqs_all[i]; |
| 229 | } |
Yinghai Lu | 12026ea | 2008-12-26 22:38:15 -0800 | [diff] [blame] | 230 | |
| 231 | return arch_early_irq_init(); |
| 232 | } |
| 233 | |
KOSAKI Motohiro | f9af0e7 | 2008-12-26 12:24:24 +0900 | [diff] [blame] | 234 | struct irq_desc *irq_to_desc(unsigned int irq) |
| 235 | { |
| 236 | return (irq < NR_IRQS) ? irq_desc + irq : NULL; |
| 237 | } |
| 238 | |
| 239 | struct irq_desc *irq_to_desc_alloc_cpu(unsigned int irq, int cpu) |
| 240 | { |
| 241 | return irq_to_desc(irq); |
| 242 | } |
| 243 | #endif /* !CONFIG_SPARSE_IRQ */ |
Yinghai Lu | 0b8f1ef | 2008-12-05 18:58:31 -0800 | [diff] [blame] | 244 | |
Yinghai Lu | 0f3c2a8 | 2009-02-08 16:18:03 -0800 | [diff] [blame^] | 245 | void clear_kstat_irqs(struct irq_desc *desc) |
| 246 | { |
| 247 | memset(desc->kstat_irqs, 0, nr_cpu_ids * sizeof(*(desc->kstat_irqs))); |
| 248 | } |
| 249 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 250 | /* |
Ingo Molnar | 77a5afe | 2006-06-29 02:24:46 -0700 | [diff] [blame] | 251 | * What should we do if we get a hw irq event on an illegal vector? |
| 252 | * Each architecture has to answer this themself. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 253 | */ |
Ingo Molnar | 77a5afe | 2006-06-29 02:24:46 -0700 | [diff] [blame] | 254 | static void ack_bad(unsigned int irq) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 255 | { |
Thomas Gleixner | d3c6004 | 2008-10-16 09:55:00 +0200 | [diff] [blame] | 256 | struct irq_desc *desc = irq_to_desc(irq); |
Yinghai Lu | 08678b0 | 2008-08-19 20:50:05 -0700 | [diff] [blame] | 257 | |
Yinghai Lu | 08678b0 | 2008-08-19 20:50:05 -0700 | [diff] [blame] | 258 | print_irq_desc(irq, desc); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 259 | ack_bad_irq(irq); |
| 260 | } |
| 261 | |
Ingo Molnar | 77a5afe | 2006-06-29 02:24:46 -0700 | [diff] [blame] | 262 | /* |
| 263 | * NOP functions |
| 264 | */ |
| 265 | static void noop(unsigned int irq) |
| 266 | { |
| 267 | } |
| 268 | |
| 269 | static unsigned int noop_ret(unsigned int irq) |
| 270 | { |
| 271 | return 0; |
| 272 | } |
| 273 | |
| 274 | /* |
| 275 | * Generic no controller implementation |
| 276 | */ |
Ingo Molnar | f1c2662 | 2006-06-29 02:24:57 -0700 | [diff] [blame] | 277 | struct irq_chip no_irq_chip = { |
| 278 | .name = "none", |
Ingo Molnar | 77a5afe | 2006-06-29 02:24:46 -0700 | [diff] [blame] | 279 | .startup = noop_ret, |
| 280 | .shutdown = noop, |
| 281 | .enable = noop, |
| 282 | .disable = noop, |
| 283 | .ack = ack_bad, |
| 284 | .end = noop, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 285 | }; |
| 286 | |
| 287 | /* |
Thomas Gleixner | f8b5473 | 2006-07-01 22:30:08 +0100 | [diff] [blame] | 288 | * Generic dummy implementation which can be used for |
| 289 | * real dumb interrupt sources |
| 290 | */ |
| 291 | struct irq_chip dummy_irq_chip = { |
| 292 | .name = "dummy", |
| 293 | .startup = noop_ret, |
| 294 | .shutdown = noop, |
| 295 | .enable = noop, |
| 296 | .disable = noop, |
| 297 | .ack = noop, |
| 298 | .mask = noop, |
| 299 | .unmask = noop, |
| 300 | .end = noop, |
| 301 | }; |
| 302 | |
| 303 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 304 | * Special, empty irq handler: |
| 305 | */ |
David Howells | 7d12e78 | 2006-10-05 14:55:46 +0100 | [diff] [blame] | 306 | irqreturn_t no_action(int cpl, void *dev_id) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 307 | { |
| 308 | return IRQ_NONE; |
| 309 | } |
| 310 | |
Ingo Molnar | 8d28bc7 | 2006-06-29 02:24:46 -0700 | [diff] [blame] | 311 | /** |
| 312 | * handle_IRQ_event - irq action chain handler |
| 313 | * @irq: the interrupt number |
Ingo Molnar | 8d28bc7 | 2006-06-29 02:24:46 -0700 | [diff] [blame] | 314 | * @action: the interrupt action chain for this irq |
| 315 | * |
| 316 | * Handles the action chain of an irq event |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 317 | */ |
David Howells | 7d12e78 | 2006-10-05 14:55:46 +0100 | [diff] [blame] | 318 | irqreturn_t handle_IRQ_event(unsigned int irq, struct irqaction *action) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 319 | { |
Jan Beulich | 908dcec | 2006-06-23 02:06:00 -0700 | [diff] [blame] | 320 | irqreturn_t ret, retval = IRQ_NONE; |
| 321 | unsigned int status = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 322 | |
Thomas Gleixner | 3cca53b | 2006-07-01 19:29:31 -0700 | [diff] [blame] | 323 | if (!(action->flags & IRQF_DISABLED)) |
Ingo Molnar | 366c7f5 | 2006-07-03 00:25:25 -0700 | [diff] [blame] | 324 | local_irq_enable_in_hardirq(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 325 | |
| 326 | do { |
David Howells | 7d12e78 | 2006-10-05 14:55:46 +0100 | [diff] [blame] | 327 | ret = action->handler(irq, action->dev_id); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 328 | if (ret == IRQ_HANDLED) |
| 329 | status |= action->flags; |
| 330 | retval |= ret; |
| 331 | action = action->next; |
| 332 | } while (action); |
| 333 | |
Thomas Gleixner | 3cca53b | 2006-07-01 19:29:31 -0700 | [diff] [blame] | 334 | if (status & IRQF_SAMPLE_RANDOM) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 335 | add_interrupt_randomness(irq); |
| 336 | local_irq_disable(); |
| 337 | |
| 338 | return retval; |
| 339 | } |
| 340 | |
David Howells | af8c65b | 2006-09-25 23:32:07 -0700 | [diff] [blame] | 341 | #ifndef CONFIG_GENERIC_HARDIRQS_NO__DO_IRQ |
Ingo Molnar | 8d28bc7 | 2006-06-29 02:24:46 -0700 | [diff] [blame] | 342 | /** |
| 343 | * __do_IRQ - original all in one highlevel IRQ handler |
| 344 | * @irq: the interrupt number |
Ingo Molnar | 8d28bc7 | 2006-06-29 02:24:46 -0700 | [diff] [blame] | 345 | * |
| 346 | * __do_IRQ handles all normal device IRQ's (the special |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 347 | * SMP cross-CPU interrupts have their own specific |
| 348 | * handlers). |
Ingo Molnar | 8d28bc7 | 2006-06-29 02:24:46 -0700 | [diff] [blame] | 349 | * |
| 350 | * This is the original x86 implementation which is used for every |
| 351 | * interrupt type. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 352 | */ |
Harvey Harrison | 7ad5b3a | 2008-02-08 04:19:53 -0800 | [diff] [blame] | 353 | unsigned int __do_IRQ(unsigned int irq) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 354 | { |
Yinghai Lu | 08678b0 | 2008-08-19 20:50:05 -0700 | [diff] [blame] | 355 | struct irq_desc *desc = irq_to_desc(irq); |
Ingo Molnar | 06fcb0c | 2006-06-29 02:24:40 -0700 | [diff] [blame] | 356 | struct irqaction *action; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 357 | unsigned int status; |
| 358 | |
Thomas Gleixner | d6c88a5 | 2008-10-15 15:27:23 +0200 | [diff] [blame] | 359 | kstat_incr_irqs_this_cpu(irq, desc); |
| 360 | |
Karsten Wiese | f26fdd5 | 2005-09-06 15:17:25 -0700 | [diff] [blame] | 361 | if (CHECK_IRQ_PER_CPU(desc->status)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 362 | irqreturn_t action_ret; |
| 363 | |
| 364 | /* |
| 365 | * No locking required for CPU-local interrupts: |
| 366 | */ |
Yinghai Lu | 48a1b10 | 2008-12-11 00:15:01 -0800 | [diff] [blame] | 367 | if (desc->chip->ack) { |
Ingo Molnar | d1bef4e | 2006-06-29 02:24:36 -0700 | [diff] [blame] | 368 | desc->chip->ack(irq); |
Yinghai Lu | 48a1b10 | 2008-12-11 00:15:01 -0800 | [diff] [blame] | 369 | /* get new one */ |
| 370 | desc = irq_remap_to_desc(irq, desc); |
| 371 | } |
Russ Anderson | c642b83 | 2007-11-14 17:00:15 -0800 | [diff] [blame] | 372 | if (likely(!(desc->status & IRQ_DISABLED))) { |
| 373 | action_ret = handle_IRQ_event(irq, desc->action); |
| 374 | if (!noirqdebug) |
| 375 | note_interrupt(irq, desc, action_ret); |
| 376 | } |
Ingo Molnar | d1bef4e | 2006-06-29 02:24:36 -0700 | [diff] [blame] | 377 | desc->chip->end(irq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 378 | return 1; |
| 379 | } |
| 380 | |
| 381 | spin_lock(&desc->lock); |
Yinghai Lu | 48a1b10 | 2008-12-11 00:15:01 -0800 | [diff] [blame] | 382 | if (desc->chip->ack) { |
Ingo Molnar | d1bef4e | 2006-06-29 02:24:36 -0700 | [diff] [blame] | 383 | desc->chip->ack(irq); |
Yinghai Lu | 48a1b10 | 2008-12-11 00:15:01 -0800 | [diff] [blame] | 384 | desc = irq_remap_to_desc(irq, desc); |
| 385 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 386 | /* |
| 387 | * REPLAY is when Linux resends an IRQ that was dropped earlier |
| 388 | * WAITING is used by probe to mark irqs that are being tested |
| 389 | */ |
| 390 | status = desc->status & ~(IRQ_REPLAY | IRQ_WAITING); |
| 391 | status |= IRQ_PENDING; /* we _want_ to handle it */ |
| 392 | |
| 393 | /* |
| 394 | * If the IRQ is disabled for whatever reason, we cannot |
| 395 | * use the action we have. |
| 396 | */ |
| 397 | action = NULL; |
| 398 | if (likely(!(status & (IRQ_DISABLED | IRQ_INPROGRESS)))) { |
| 399 | action = desc->action; |
| 400 | status &= ~IRQ_PENDING; /* we commit to handling */ |
| 401 | status |= IRQ_INPROGRESS; /* we are handling it */ |
| 402 | } |
| 403 | desc->status = status; |
| 404 | |
| 405 | /* |
| 406 | * If there is no IRQ handler or it was disabled, exit early. |
| 407 | * Since we set PENDING, if another processor is handling |
| 408 | * a different instance of this same irq, the other processor |
| 409 | * will take care of it. |
| 410 | */ |
| 411 | if (unlikely(!action)) |
| 412 | goto out; |
| 413 | |
| 414 | /* |
| 415 | * Edge triggered interrupts need to remember |
| 416 | * pending events. |
| 417 | * This applies to any hw interrupts that allow a second |
| 418 | * instance of the same irq to arrive while we are in do_IRQ |
| 419 | * or in the handler. But the code here only handles the _second_ |
| 420 | * instance of the irq, not the third or fourth. So it is mostly |
| 421 | * useful for irq hardware that does not mask cleanly in an |
| 422 | * SMP environment. |
| 423 | */ |
| 424 | for (;;) { |
| 425 | irqreturn_t action_ret; |
| 426 | |
| 427 | spin_unlock(&desc->lock); |
| 428 | |
David Howells | 7d12e78 | 2006-10-05 14:55:46 +0100 | [diff] [blame] | 429 | action_ret = handle_IRQ_event(irq, action); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 430 | if (!noirqdebug) |
David Howells | 7d12e78 | 2006-10-05 14:55:46 +0100 | [diff] [blame] | 431 | note_interrupt(irq, desc, action_ret); |
Linus Torvalds | b42172f | 2006-11-22 09:32:06 -0800 | [diff] [blame] | 432 | |
| 433 | spin_lock(&desc->lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 434 | if (likely(!(desc->status & IRQ_PENDING))) |
| 435 | break; |
| 436 | desc->status &= ~IRQ_PENDING; |
| 437 | } |
| 438 | desc->status &= ~IRQ_INPROGRESS; |
| 439 | |
| 440 | out: |
| 441 | /* |
| 442 | * The ->end() handler has to deal with interrupts which got |
| 443 | * disabled while the handler was running. |
| 444 | */ |
Ingo Molnar | d1bef4e | 2006-06-29 02:24:36 -0700 | [diff] [blame] | 445 | desc->chip->end(irq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 446 | spin_unlock(&desc->lock); |
| 447 | |
| 448 | return 1; |
| 449 | } |
David Howells | af8c65b | 2006-09-25 23:32:07 -0700 | [diff] [blame] | 450 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 451 | |
Ingo Molnar | 243c762 | 2006-07-03 00:25:06 -0700 | [diff] [blame] | 452 | void early_init_irq_lock_class(void) |
| 453 | { |
Thomas Gleixner | 10e5808 | 2008-10-16 14:19:04 +0200 | [diff] [blame] | 454 | struct irq_desc *desc; |
Ingo Molnar | 243c762 | 2006-07-03 00:25:06 -0700 | [diff] [blame] | 455 | int i; |
| 456 | |
Yinghai Lu | 0b8f1ef | 2008-12-05 18:58:31 -0800 | [diff] [blame] | 457 | for_each_irq_desc(i, desc) { |
Thomas Gleixner | 10e5808 | 2008-10-16 14:19:04 +0200 | [diff] [blame] | 458 | lockdep_set_class(&desc->lock, &irq_desc_lock_class); |
Yinghai Lu | 0b8f1ef | 2008-12-05 18:58:31 -0800 | [diff] [blame] | 459 | } |
Yinghai Lu | 08678b0 | 2008-08-19 20:50:05 -0700 | [diff] [blame] | 460 | } |
Yinghai Lu | 0b8f1ef | 2008-12-05 18:58:31 -0800 | [diff] [blame] | 461 | |
Yinghai Lu | 0b8f1ef | 2008-12-05 18:58:31 -0800 | [diff] [blame] | 462 | unsigned int kstat_irqs_cpu(unsigned int irq, int cpu) |
| 463 | { |
| 464 | struct irq_desc *desc = irq_to_desc(irq); |
KOSAKI Motohiro | 26ddd8d | 2008-12-26 14:24:10 +0900 | [diff] [blame] | 465 | return desc ? desc->kstat_irqs[cpu] : 0; |
Yinghai Lu | 0b8f1ef | 2008-12-05 18:58:31 -0800 | [diff] [blame] | 466 | } |
Yinghai Lu | 0b8f1ef | 2008-12-05 18:58:31 -0800 | [diff] [blame] | 467 | EXPORT_SYMBOL(kstat_irqs_cpu); |
| 468 | |