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