blob: e68bb5aebe02e15c4d566519196b484b07597551 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/kernel/irq/handle.c
3 *
Ingo Molnara34db9b2006-06-29 02:24:50 -07004 * Copyright (C) 1992, 1998-2006 Linus Torvalds, Ingo Molnar
5 * Copyright (C) 2005-2006, Thomas Gleixner, Russell King
Linus Torvalds1da177e2005-04-16 15:20:36 -07006 *
7 * This file contains the core interrupt handling code.
Ingo Molnara34db9b2006-06-29 02:24:50 -07008 *
9 * Detailed information is available in Documentation/DocBook/genericirq
10 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070011 */
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 Lu0b8f1ef2008-12-05 18:58:31 -080018#include <linux/rculist.h>
19#include <linux/hash.h>
Mike Travis0fa0ebb2009-01-10 22:24:06 -080020#include <linux/bootmem.h>
Steven Rostedtad8d75f2009-04-14 19:39:12 -040021#include <trace/events/irq.h>
Steven Rostedta8d154b2009-04-10 09:36:00 -040022
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#include "internals.h"
24
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -080025/*
26 * lockdep: we want to handle all irq_desc locks as a single lock-class:
27 */
Yinghai Lu48a1b102008-12-11 00:15:01 -080028struct lock_class_key irq_desc_lock_class;
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -080029
Thomas Gleixner6a6de9e2006-06-29 02:24:51 -070030/**
31 * handle_bad_irq - handle spurious and unhandled irqs
Henrik Kretzschmar43a1dd52006-08-31 21:27:44 -070032 * @irq: the interrupt number
33 * @desc: description of the interrupt
Henrik Kretzschmar43a1dd52006-08-31 21:27:44 -070034 *
35 * Handles spurious and unhandled IRQ's. It also prints a debugmessage.
Thomas Gleixner6a6de9e2006-06-29 02:24:51 -070036 */
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +020037void handle_bad_irq(unsigned int irq, struct irq_desc *desc)
Thomas Gleixner6a6de9e2006-06-29 02:24:51 -070038{
Ingo Molnar43f77752006-06-29 02:24:58 -070039 print_irq_desc(irq, desc);
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +020040 kstat_incr_irqs_this_cpu(irq, desc);
Thomas Gleixner6a6de9e2006-06-29 02:24:51 -070041 ack_bad_irq(irq);
42}
43
David Daney97179fd2009-01-27 09:53:22 -080044#if defined(CONFIG_SMP) && defined(CONFIG_GENERIC_HARDIRQS)
45static void __init init_irq_default_affinity(void)
46{
47 alloc_bootmem_cpumask_var(&irq_default_affinity);
48 cpumask_setall(irq_default_affinity);
49}
50#else
51static void __init init_irq_default_affinity(void)
52{
53}
54#endif
55
Linus Torvalds1da177e2005-04-16 15:20:36 -070056/*
57 * Linux has a controller-independent interrupt architecture.
58 * Every controller has a 'controller-template', that is used
59 * by the main code to do the right thing. Each driver-visible
Ingo Molnar06fcb0c2006-06-29 02:24:40 -070060 * interrupt source is transparently wired to the appropriate
Linus Torvalds1da177e2005-04-16 15:20:36 -070061 * controller. Thus drivers need not be aware of the
62 * interrupt-controller.
63 *
64 * The code is designed to be easily extended with new/different
65 * interrupt controllers, without having to do assembly magic or
66 * having to touch the generic code.
67 *
68 * Controller mappings for all interrupt sources:
69 */
Yinghai Lu85c0f902008-08-19 20:49:47 -070070int nr_irqs = NR_IRQS;
Ingo Molnarfa42d102008-08-19 20:50:30 -070071EXPORT_SYMBOL_GPL(nr_irqs);
Yinghai Lud60458b2008-08-19 20:50:00 -070072
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -080073#ifdef CONFIG_SPARSE_IRQ
Mike Travis92296c62009-01-11 09:22:58 -080074
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -080075static struct irq_desc irq_desc_init = {
76 .irq = -1,
77 .status = IRQ_DISABLED,
78 .chip = &no_irq_chip,
79 .handle_irq = handle_bad_irq,
80 .depth = 1,
81 .lock = __SPIN_LOCK_UNLOCKED(irq_desc_init.lock),
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -080082};
83
Yinghai Lu48a1b102008-12-11 00:15:01 -080084void init_kstat_irqs(struct irq_desc *desc, int cpu, int nr)
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -080085{
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -080086 int node;
Yinghai Lu005bf0e62009-02-08 16:18:03 -080087 void *ptr;
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -080088
89 node = cpu_to_node(cpu);
Yinghai Lu005bf0e62009-02-08 16:18:03 -080090 ptr = kzalloc_node(nr * sizeof(*desc->kstat_irqs), GFP_ATOMIC, node);
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -080091
Yinghai Lu005bf0e62009-02-08 16:18:03 -080092 /*
93 * don't overwite if can not get new one
94 * init_copy_kstat_irqs() could still use old one
95 */
96 if (ptr) {
97 printk(KERN_DEBUG " alloc kstat_irqs on cpu %d node %d\n",
98 cpu, node);
99 desc->kstat_irqs = ptr;
100 }
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800101}
102
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800103static void init_one_irq_desc(int irq, struct irq_desc *desc, int cpu)
104{
105 memcpy(desc, &irq_desc_init, sizeof(struct irq_desc));
Ingo Molnar793f7b12008-12-26 19:02:20 +0100106
107 spin_lock_init(&desc->lock);
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800108 desc->irq = irq;
109#ifdef CONFIG_SMP
110 desc->cpu = cpu;
111#endif
112 lockdep_set_class(&desc->lock, &irq_desc_lock_class);
113 init_kstat_irqs(desc, cpu, nr_cpu_ids);
114 if (!desc->kstat_irqs) {
115 printk(KERN_ERR "can not alloc kstat_irqs\n");
116 BUG_ON(1);
117 }
Mike Travis802bf932009-01-10 21:58:09 -0800118 if (!init_alloc_desc_masks(desc, cpu, false)) {
Mike Travis7f7ace02009-01-10 21:58:08 -0800119 printk(KERN_ERR "can not alloc irq_desc cpumasks\n");
120 BUG_ON(1);
121 }
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800122 arch_init_chip_data(desc, cpu);
123}
124
125/*
126 * Protect the sparse_irqs:
127 */
Yinghai Lu48a1b102008-12-11 00:15:01 -0800128DEFINE_SPINLOCK(sparse_irq_lock);
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800129
Mike Travis0fa0ebb2009-01-10 22:24:06 -0800130struct irq_desc **irq_desc_ptrs __read_mostly;
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800131
Yinghai Lu99d093d2008-12-05 18:58:32 -0800132static struct irq_desc irq_desc_legacy[NR_IRQS_LEGACY] __cacheline_aligned_in_smp = {
133 [0 ... NR_IRQS_LEGACY-1] = {
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800134 .irq = -1,
135 .status = IRQ_DISABLED,
136 .chip = &no_irq_chip,
137 .handle_irq = handle_bad_irq,
138 .depth = 1,
139 .lock = __SPIN_LOCK_UNLOCKED(irq_desc_init.lock),
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800140 }
141};
142
Mike Travis542d8652009-01-10 22:24:07 -0800143static unsigned int *kstat_irqs_legacy;
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800144
Yinghai Lu13a0c3c2008-12-26 02:05:47 -0800145int __init early_irq_init(void)
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800146{
147 struct irq_desc *desc;
148 int legacy_count;
149 int i;
150
David Daney97179fd2009-01-27 09:53:22 -0800151 init_irq_default_affinity();
152
Yinghai Lu4a046d12009-01-12 17:39:24 -0800153 /* initialize nr_irqs based on nr_cpu_ids */
154 arch_probe_nr_irqs();
Mike Travis95949492009-01-10 22:24:06 -0800155 printk(KERN_INFO "NR_IRQS:%d nr_irqs:%d\n", NR_IRQS, nr_irqs);
156
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800157 desc = irq_desc_legacy;
158 legacy_count = ARRAY_SIZE(irq_desc_legacy);
159
Mike Travis0fa0ebb2009-01-10 22:24:06 -0800160 /* allocate irq_desc_ptrs array based on nr_irqs */
161 irq_desc_ptrs = alloc_bootmem(nr_irqs * sizeof(void *));
162
Mike Travis542d8652009-01-10 22:24:07 -0800163 /* allocate based on nr_cpu_ids */
164 /* FIXME: invert kstat_irgs, and it'd be a per_cpu_alloc'd thing */
165 kstat_irqs_legacy = alloc_bootmem(NR_IRQS_LEGACY * nr_cpu_ids *
166 sizeof(int));
167
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800168 for (i = 0; i < legacy_count; i++) {
169 desc[i].irq = i;
Mike Travis542d8652009-01-10 22:24:07 -0800170 desc[i].kstat_irqs = kstat_irqs_legacy + i * nr_cpu_ids;
Yinghai Lufa6beb32008-12-22 20:24:09 -0800171 lockdep_set_class(&desc[i].lock, &irq_desc_lock_class);
Mike Travis7f7ace02009-01-10 21:58:08 -0800172 init_alloc_desc_masks(&desc[i], 0, true);
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800173 irq_desc_ptrs[i] = desc + i;
174 }
175
Mike Travis95949492009-01-10 22:24:06 -0800176 for (i = legacy_count; i < nr_irqs; i++)
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800177 irq_desc_ptrs[i] = NULL;
178
Yinghai Lu13a0c3c2008-12-26 02:05:47 -0800179 return arch_early_irq_init();
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800180}
181
182struct irq_desc *irq_to_desc(unsigned int irq)
183{
Mike Travis0fa0ebb2009-01-10 22:24:06 -0800184 if (irq_desc_ptrs && irq < nr_irqs)
185 return irq_desc_ptrs[irq];
186
187 return NULL;
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800188}
189
190struct irq_desc *irq_to_desc_alloc_cpu(unsigned int irq, int cpu)
191{
192 struct irq_desc *desc;
193 unsigned long flags;
194 int node;
195
Mike Travis95949492009-01-10 22:24:06 -0800196 if (irq >= nr_irqs) {
Mike Travise2f4d062009-01-10 22:24:06 -0800197 WARN(1, "irq (%d) >= nr_irqs (%d) in irq_to_desc_alloc\n",
198 irq, nr_irqs);
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800199 return NULL;
200 }
201
202 desc = irq_desc_ptrs[irq];
203 if (desc)
204 return desc;
205
206 spin_lock_irqsave(&sparse_irq_lock, flags);
207
208 /* We have to check it to avoid races with another CPU */
209 desc = irq_desc_ptrs[irq];
210 if (desc)
211 goto out_unlock;
212
213 node = cpu_to_node(cpu);
214 desc = kzalloc_node(sizeof(*desc), GFP_ATOMIC, node);
215 printk(KERN_DEBUG " alloc irq_desc for %d on cpu %d node %d\n",
216 irq, cpu, node);
217 if (!desc) {
218 printk(KERN_ERR "can not alloc irq_desc\n");
219 BUG_ON(1);
220 }
221 init_one_irq_desc(irq, desc, cpu);
222
223 irq_desc_ptrs[irq] = desc;
224
225out_unlock:
226 spin_unlock_irqrestore(&sparse_irq_lock, flags);
227
228 return desc;
229}
230
KOSAKI Motohirof9af0e72008-12-26 12:24:24 +0900231#else /* !CONFIG_SPARSE_IRQ */
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800232
Ravikiran G Thirumalaie729aa12007-05-08 00:29:13 -0700233struct irq_desc irq_desc[NR_IRQS] __cacheline_aligned_in_smp = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 [0 ... NR_IRQS-1] = {
Zhang, Yanmin4f167fb2005-05-16 21:53:43 -0700235 .status = IRQ_DISABLED,
Ingo Molnarf1c26622006-06-29 02:24:57 -0700236 .chip = &no_irq_chip,
Ingo Molnar7a557132006-06-29 02:24:54 -0700237 .handle_irq = handle_bad_irq,
Thomas Gleixner94d39e12006-06-29 02:24:50 -0700238 .depth = 1,
Yinghai Luaac3f2b2008-09-24 19:04:35 -0700239 .lock = __SPIN_LOCK_UNLOCKED(irq_desc->lock),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240 }
241};
Yinghai Lu08678b02008-08-19 20:50:05 -0700242
Yinghai Lud7e51e62009-01-07 15:03:13 -0800243static unsigned int kstat_irqs_all[NR_IRQS][NR_CPUS];
Yinghai Lu12026ea2008-12-26 22:38:15 -0800244int __init early_irq_init(void)
245{
246 struct irq_desc *desc;
247 int count;
248 int i;
249
David Daney97179fd2009-01-27 09:53:22 -0800250 init_irq_default_affinity();
251
Mike Travis95949492009-01-10 22:24:06 -0800252 printk(KERN_INFO "NR_IRQS:%d\n", NR_IRQS);
253
Yinghai Lu12026ea2008-12-26 22:38:15 -0800254 desc = irq_desc;
255 count = ARRAY_SIZE(irq_desc);
256
Yinghai Lud7e51e62009-01-07 15:03:13 -0800257 for (i = 0; i < count; i++) {
Yinghai Lu12026ea2008-12-26 22:38:15 -0800258 desc[i].irq = i;
Mike Travis7f7ace02009-01-10 21:58:08 -0800259 init_alloc_desc_masks(&desc[i], 0, true);
Yinghai Lud7e51e62009-01-07 15:03:13 -0800260 desc[i].kstat_irqs = kstat_irqs_all[i];
261 }
Yinghai Lu12026ea2008-12-26 22:38:15 -0800262 return arch_early_irq_init();
263}
264
KOSAKI Motohirof9af0e72008-12-26 12:24:24 +0900265struct irq_desc *irq_to_desc(unsigned int irq)
266{
267 return (irq < NR_IRQS) ? irq_desc + irq : NULL;
268}
269
270struct irq_desc *irq_to_desc_alloc_cpu(unsigned int irq, int cpu)
271{
272 return irq_to_desc(irq);
273}
274#endif /* !CONFIG_SPARSE_IRQ */
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800275
Yinghai Lu0f3c2a82009-02-08 16:18:03 -0800276void clear_kstat_irqs(struct irq_desc *desc)
277{
278 memset(desc->kstat_irqs, 0, nr_cpu_ids * sizeof(*(desc->kstat_irqs)));
279}
280
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281/*
Ingo Molnar77a5afe2006-06-29 02:24:46 -0700282 * What should we do if we get a hw irq event on an illegal vector?
283 * Each architecture has to answer this themself.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 */
Ingo Molnar77a5afe2006-06-29 02:24:46 -0700285static void ack_bad(unsigned int irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286{
Thomas Gleixnerd3c60042008-10-16 09:55:00 +0200287 struct irq_desc *desc = irq_to_desc(irq);
Yinghai Lu08678b02008-08-19 20:50:05 -0700288
Yinghai Lu08678b02008-08-19 20:50:05 -0700289 print_irq_desc(irq, desc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290 ack_bad_irq(irq);
291}
292
Ingo Molnar77a5afe2006-06-29 02:24:46 -0700293/*
294 * NOP functions
295 */
296static void noop(unsigned int irq)
297{
298}
299
300static unsigned int noop_ret(unsigned int irq)
301{
302 return 0;
303}
304
305/*
306 * Generic no controller implementation
307 */
Ingo Molnarf1c26622006-06-29 02:24:57 -0700308struct irq_chip no_irq_chip = {
309 .name = "none",
Ingo Molnar77a5afe2006-06-29 02:24:46 -0700310 .startup = noop_ret,
311 .shutdown = noop,
312 .enable = noop,
313 .disable = noop,
314 .ack = ack_bad,
315 .end = noop,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316};
317
318/*
Thomas Gleixnerf8b54732006-07-01 22:30:08 +0100319 * Generic dummy implementation which can be used for
320 * real dumb interrupt sources
321 */
322struct irq_chip dummy_irq_chip = {
323 .name = "dummy",
324 .startup = noop_ret,
325 .shutdown = noop,
326 .enable = noop,
327 .disable = noop,
328 .ack = noop,
329 .mask = noop,
330 .unmask = noop,
331 .end = noop,
332};
333
334/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335 * Special, empty irq handler:
336 */
David Howells7d12e782006-10-05 14:55:46 +0100337irqreturn_t no_action(int cpl, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338{
339 return IRQ_NONE;
340}
341
Thomas Gleixnerf48fe812009-03-24 11:46:22 +0100342static void warn_no_thread(unsigned int irq, struct irqaction *action)
343{
344 if (test_and_set_bit(IRQTF_WARNED, &action->thread_flags))
345 return;
346
347 printk(KERN_WARNING "IRQ %d device %s returned IRQ_WAKE_THREAD "
348 "but no thread function available.", irq, action->name);
349}
350
Ingo Molnar8d28bc72006-06-29 02:24:46 -0700351/**
352 * handle_IRQ_event - irq action chain handler
353 * @irq: the interrupt number
Ingo Molnar8d28bc72006-06-29 02:24:46 -0700354 * @action: the interrupt action chain for this irq
355 *
356 * Handles the action chain of an irq event
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357 */
David Howells7d12e782006-10-05 14:55:46 +0100358irqreturn_t handle_IRQ_event(unsigned int irq, struct irqaction *action)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359{
Jan Beulich908dcec2006-06-23 02:06:00 -0700360 irqreturn_t ret, retval = IRQ_NONE;
361 unsigned int status = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362
Peter Zijlstra044d4082009-03-02 16:13:32 +0100363 WARN_ONCE(!in_irq(), "BUG: IRQ handler called from non-hardirq context!");
364
Thomas Gleixner3cca53b2006-07-01 19:29:31 -0700365 if (!(action->flags & IRQF_DISABLED))
Ingo Molnar366c7f52006-07-03 00:25:25 -0700366 local_irq_enable_in_hardirq();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367
368 do {
Jason Baronaf392412009-02-26 10:11:05 -0500369 trace_irq_handler_entry(irq, action);
David Howells7d12e782006-10-05 14:55:46 +0100370 ret = action->handler(irq, action->dev_id);
Jason Baronaf392412009-02-26 10:11:05 -0500371 trace_irq_handler_exit(irq, action, ret);
Thomas Gleixner3aa551c2009-03-23 18:28:15 +0100372
373 switch (ret) {
374 case IRQ_WAKE_THREAD:
375 /*
Thomas Gleixnerf48fe812009-03-24 11:46:22 +0100376 * Set result to handled so the spurious check
377 * does not trigger.
378 */
379 ret = IRQ_HANDLED;
380
381 /*
382 * Catch drivers which return WAKE_THREAD but
383 * did not set up a thread function
384 */
385 if (unlikely(!action->thread_fn)) {
386 warn_no_thread(irq, action);
387 break;
388 }
389
390 /*
Thomas Gleixner3aa551c2009-03-23 18:28:15 +0100391 * Wake up the handler thread for this
392 * action. In case the thread crashed and was
393 * killed we just pretend that we handled the
394 * interrupt. The hardirq handler above has
395 * disabled the device interrupt, so no irq
396 * storm is lurking.
397 */
398 if (likely(!test_bit(IRQTF_DIED,
399 &action->thread_flags))) {
400 set_bit(IRQTF_RUNTHREAD, &action->thread_flags);
401 wake_up_process(action->thread);
402 }
403
Thomas Gleixner3aa551c2009-03-23 18:28:15 +0100404 /* Fall through to add to randomness */
405 case IRQ_HANDLED:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406 status |= action->flags;
Thomas Gleixner3aa551c2009-03-23 18:28:15 +0100407 break;
408
409 default:
410 break;
411 }
412
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413 retval |= ret;
414 action = action->next;
415 } while (action);
416
Thomas Gleixner3cca53b2006-07-01 19:29:31 -0700417 if (status & IRQF_SAMPLE_RANDOM)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418 add_interrupt_randomness(irq);
419 local_irq_disable();
420
421 return retval;
422}
423
David Howellsaf8c65b2006-09-25 23:32:07 -0700424#ifndef CONFIG_GENERIC_HARDIRQS_NO__DO_IRQ
Thomas Gleixner0e57aa12009-03-13 14:34:05 +0100425
426#ifdef CONFIG_ENABLE_WARN_DEPRECATED
427# warning __do_IRQ is deprecated. Please convert to proper flow handlers
428#endif
429
Ingo Molnar8d28bc72006-06-29 02:24:46 -0700430/**
431 * __do_IRQ - original all in one highlevel IRQ handler
432 * @irq: the interrupt number
Ingo Molnar8d28bc72006-06-29 02:24:46 -0700433 *
434 * __do_IRQ handles all normal device IRQ's (the special
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435 * SMP cross-CPU interrupts have their own specific
436 * handlers).
Ingo Molnar8d28bc72006-06-29 02:24:46 -0700437 *
438 * This is the original x86 implementation which is used for every
439 * interrupt type.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440 */
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -0800441unsigned int __do_IRQ(unsigned int irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442{
Yinghai Lu08678b02008-08-19 20:50:05 -0700443 struct irq_desc *desc = irq_to_desc(irq);
Ingo Molnar06fcb0c2006-06-29 02:24:40 -0700444 struct irqaction *action;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445 unsigned int status;
446
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +0200447 kstat_incr_irqs_this_cpu(irq, desc);
448
Karsten Wiesef26fdd52005-09-06 15:17:25 -0700449 if (CHECK_IRQ_PER_CPU(desc->status)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450 irqreturn_t action_ret;
451
452 /*
453 * No locking required for CPU-local interrupts:
454 */
Yinghai Lu48a1b102008-12-11 00:15:01 -0800455 if (desc->chip->ack) {
Ingo Molnard1bef4e2006-06-29 02:24:36 -0700456 desc->chip->ack(irq);
Yinghai Lu48a1b102008-12-11 00:15:01 -0800457 /* get new one */
458 desc = irq_remap_to_desc(irq, desc);
459 }
Russ Andersonc642b832007-11-14 17:00:15 -0800460 if (likely(!(desc->status & IRQ_DISABLED))) {
461 action_ret = handle_IRQ_event(irq, desc->action);
462 if (!noirqdebug)
463 note_interrupt(irq, desc, action_ret);
464 }
Ingo Molnard1bef4e2006-06-29 02:24:36 -0700465 desc->chip->end(irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466 return 1;
467 }
468
469 spin_lock(&desc->lock);
Yinghai Lu48a1b102008-12-11 00:15:01 -0800470 if (desc->chip->ack) {
Ingo Molnard1bef4e2006-06-29 02:24:36 -0700471 desc->chip->ack(irq);
Yinghai Lu48a1b102008-12-11 00:15:01 -0800472 desc = irq_remap_to_desc(irq, desc);
473 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474 /*
475 * REPLAY is when Linux resends an IRQ that was dropped earlier
476 * WAITING is used by probe to mark irqs that are being tested
477 */
478 status = desc->status & ~(IRQ_REPLAY | IRQ_WAITING);
479 status |= IRQ_PENDING; /* we _want_ to handle it */
480
481 /*
482 * If the IRQ is disabled for whatever reason, we cannot
483 * use the action we have.
484 */
485 action = NULL;
486 if (likely(!(status & (IRQ_DISABLED | IRQ_INPROGRESS)))) {
487 action = desc->action;
488 status &= ~IRQ_PENDING; /* we commit to handling */
489 status |= IRQ_INPROGRESS; /* we are handling it */
490 }
491 desc->status = status;
492
493 /*
494 * If there is no IRQ handler or it was disabled, exit early.
495 * Since we set PENDING, if another processor is handling
496 * a different instance of this same irq, the other processor
497 * will take care of it.
498 */
499 if (unlikely(!action))
500 goto out;
501
502 /*
503 * Edge triggered interrupts need to remember
504 * pending events.
505 * This applies to any hw interrupts that allow a second
506 * instance of the same irq to arrive while we are in do_IRQ
507 * or in the handler. But the code here only handles the _second_
508 * instance of the irq, not the third or fourth. So it is mostly
509 * useful for irq hardware that does not mask cleanly in an
510 * SMP environment.
511 */
512 for (;;) {
513 irqreturn_t action_ret;
514
515 spin_unlock(&desc->lock);
516
David Howells7d12e782006-10-05 14:55:46 +0100517 action_ret = handle_IRQ_event(irq, action);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518 if (!noirqdebug)
David Howells7d12e782006-10-05 14:55:46 +0100519 note_interrupt(irq, desc, action_ret);
Linus Torvaldsb42172f2006-11-22 09:32:06 -0800520
521 spin_lock(&desc->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522 if (likely(!(desc->status & IRQ_PENDING)))
523 break;
524 desc->status &= ~IRQ_PENDING;
525 }
526 desc->status &= ~IRQ_INPROGRESS;
527
528out:
529 /*
530 * The ->end() handler has to deal with interrupts which got
531 * disabled while the handler was running.
532 */
Ingo Molnard1bef4e2006-06-29 02:24:36 -0700533 desc->chip->end(irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534 spin_unlock(&desc->lock);
535
536 return 1;
537}
David Howellsaf8c65b2006-09-25 23:32:07 -0700538#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539
Ingo Molnar243c7622006-07-03 00:25:06 -0700540void early_init_irq_lock_class(void)
541{
Thomas Gleixner10e58082008-10-16 14:19:04 +0200542 struct irq_desc *desc;
Ingo Molnar243c7622006-07-03 00:25:06 -0700543 int i;
544
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800545 for_each_irq_desc(i, desc) {
Thomas Gleixner10e58082008-10-16 14:19:04 +0200546 lockdep_set_class(&desc->lock, &irq_desc_lock_class);
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800547 }
Yinghai Lu08678b02008-08-19 20:50:05 -0700548}
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800549
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800550unsigned int kstat_irqs_cpu(unsigned int irq, int cpu)
551{
552 struct irq_desc *desc = irq_to_desc(irq);
KOSAKI Motohiro26ddd8d2008-12-26 14:24:10 +0900553 return desc ? desc->kstat_irqs[cpu] : 0;
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800554}
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800555EXPORT_SYMBOL(kstat_irqs_cpu);
556