2 * linux/kernel/irq/handle.c
4 * Copyright (C) 1992, 1998-2006 Linus Torvalds, Ingo Molnar
5 * Copyright (C) 2005-2006, Thomas Gleixner, Russell King
7 * This file contains the core interrupt handling code.
9 * Detailed information is available in Documentation/DocBook/genericirq
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>
19 #include "internals.h"
21 #ifdef CONFIG_TRACE_IRQFLAGS
24 * lockdep: we want to handle all irq_desc locks as a single lock-class:
26 static struct lock_class_key irq_desc_lock_class;
30 * handle_bad_irq - handle spurious and unhandled irqs
31 * @irq: the interrupt number
32 * @desc: description of the interrupt
34 * Handles spurious and unhandled IRQ's. It also prints a debugmessage.
37 handle_bad_irq(unsigned int irq, struct irq_desc *desc)
39 print_irq_desc(irq, desc);
40 kstat_irqs_this_cpu(desc)++;
45 * Linux has a controller-independent interrupt architecture.
46 * Every controller has a 'controller-template', that is used
47 * by the main code to do the right thing. Each driver-visible
48 * interrupt source is transparently wired to the appropriate
49 * controller. Thus drivers need not be aware of the
50 * interrupt-controller.
52 * The code is designed to be easily extended with new/different
53 * interrupt controllers, without having to do assembly magic or
54 * having to touch the generic code.
56 * Controller mappings for all interrupt sources:
58 int nr_irqs = NR_IRQS;
59 EXPORT_SYMBOL_GPL(nr_irqs);
61 #ifdef CONFIG_HAVE_DYN_ARRAY
62 static struct irq_desc irq_desc_init = {
64 .status = IRQ_DISABLED,
66 .handle_irq = handle_bad_irq,
68 .lock = __SPIN_LOCK_UNLOCKED(irq_desc_init.lock),
70 .affinity = CPU_MASK_ALL
75 static void init_one_irq_desc(struct irq_desc *desc)
77 memcpy(desc, &irq_desc_init, sizeof(struct irq_desc));
78 #ifdef CONFIG_TRACE_IRQFLAGS
79 lockdep_set_class(&desc->lock, &irq_desc_lock_class);
83 extern int after_bootmem;
84 extern void *__alloc_bootmem_nopanic(unsigned long size,
88 static void init_kstat_irqs(struct irq_desc *desc, int nr_desc, int nr)
90 unsigned long bytes, total_bytes;
95 /* Compute how many bytes we need per irq and allocate them */
96 bytes = nr * sizeof(unsigned int);
97 total_bytes = bytes * nr_desc;
99 ptr = kzalloc(total_bytes, GFP_ATOMIC);
101 ptr = __alloc_bootmem_nopanic(total_bytes, PAGE_SIZE, 0);
104 panic(" can not allocate kstat_irqs\n");
107 printk(KERN_DEBUG "kstat_irqs ==> [%#lx - %#lx]\n", phys, phys + total_bytes);
109 for (i = 0; i < nr_desc; i++) {
110 desc[i].kstat_irqs = (unsigned int *)ptr;
115 static void __init init_work(void *data)
117 struct dyn_array *da = data;
119 struct irq_desc *desc;
123 for (i = 0; i < *da->nr; i++) {
124 init_one_irq_desc(&desc[i]);
125 #ifndef CONFIG_HAVE_SPARSE_IRQ
130 #ifdef CONFIG_HAVE_SPARSE_IRQ
131 for (i = 1; i < *da->nr; i++)
132 desc[i-1].next = &desc[i];
135 /* init kstat_irqs, nr_cpu_ids is ready already */
136 init_kstat_irqs(desc, *da->nr, nr_cpu_ids);
139 #ifdef CONFIG_HAVE_SPARSE_IRQ
140 static int nr_irq_desc = 32;
142 static int __init parse_nr_irq_desc(char *arg)
145 nr_irq_desc = simple_strtoul(arg, NULL, 0);
149 early_param("nr_irq_desc", parse_nr_irq_desc);
151 struct irq_desc *sparse_irqs;
152 DEFINE_DYN_ARRAY(sparse_irqs, sizeof(struct irq_desc), nr_irq_desc, PAGE_SIZE, init_work);
154 struct irq_desc *__irq_to_desc(unsigned int irq)
156 struct irq_desc *desc;
160 desc = &sparse_irqs[0];
162 if (desc->irq == irq)
165 if (desc->irq == -1U)
172 struct irq_desc *irq_to_desc(unsigned int irq)
174 struct irq_desc *desc, *desc_pri;
178 unsigned long total_bytes;
182 desc_pri = desc = &sparse_irqs[0];
184 if (desc->irq == irq)
187 if (desc->irq == -1U) {
197 * we run out of pre-allocate ones, allocate more
199 printk(KERN_DEBUG "try to get more irq_desc %d\n", nr_irq_desc);
201 total_bytes = sizeof(struct irq_desc) * nr_irq_desc;
203 desc = kzalloc(total_bytes, GFP_ATOMIC);
205 desc = __alloc_bootmem_nopanic(total_bytes, PAGE_SIZE, 0);
208 panic("please boot with nr_irq_desc= %d\n", count * 2);
211 printk(KERN_DEBUG "irq_desc ==> [%#lx - %#lx]\n", phys, phys + total_bytes);
213 for (i = 0; i < nr_irq_desc; i++)
214 init_one_irq_desc(&desc[i]);
216 for (i = 1; i < nr_irq_desc; i++)
217 desc[i-1].next = &desc[i];
219 /* init kstat_irqs, nr_cpu_ids is ready already */
220 init_kstat_irqs(desc, nr_irq_desc, nr_cpu_ids);
223 desc_pri->next = desc;
228 struct irq_desc *irq_desc;
229 DEFINE_DYN_ARRAY(irq_desc, sizeof(struct irq_desc), nr_irqs, PAGE_SIZE, init_work);
235 struct irq_desc irq_desc[NR_IRQS] __cacheline_aligned_in_smp = {
236 [0 ... NR_IRQS-1] = {
237 .status = IRQ_DISABLED,
238 .chip = &no_irq_chip,
239 .handle_irq = handle_bad_irq,
241 .lock = __SPIN_LOCK_UNLOCKED(sparse_irqs->lock),
243 .affinity = CPU_MASK_ALL
250 #ifndef CONFIG_HAVE_SPARSE_IRQ
251 struct irq_desc *irq_to_desc(unsigned int irq)
254 return &irq_desc[irq];
258 struct irq_desc *__irq_to_desc(unsigned int irq)
260 return irq_to_desc(irq);
265 * What should we do if we get a hw irq event on an illegal vector?
266 * Each architecture has to answer this themself.
268 static void ack_bad(unsigned int irq)
270 struct irq_desc *desc;
272 desc = irq_to_desc(irq);
273 print_irq_desc(irq, desc);
280 static void noop(unsigned int irq)
284 static unsigned int noop_ret(unsigned int irq)
290 * Generic no controller implementation
292 struct irq_chip no_irq_chip = {
303 * Generic dummy implementation which can be used for
304 * real dumb interrupt sources
306 struct irq_chip dummy_irq_chip = {
319 * Special, empty irq handler:
321 irqreturn_t no_action(int cpl, void *dev_id)
327 * handle_IRQ_event - irq action chain handler
328 * @irq: the interrupt number
329 * @action: the interrupt action chain for this irq
331 * Handles the action chain of an irq event
333 irqreturn_t handle_IRQ_event(unsigned int irq, struct irqaction *action)
335 irqreturn_t ret, retval = IRQ_NONE;
336 unsigned int status = 0;
338 if (!(action->flags & IRQF_DISABLED))
339 local_irq_enable_in_hardirq();
342 ret = action->handler(irq, action->dev_id);
343 if (ret == IRQ_HANDLED)
344 status |= action->flags;
346 action = action->next;
349 if (status & IRQF_SAMPLE_RANDOM)
350 add_interrupt_randomness(irq);
356 #ifndef CONFIG_GENERIC_HARDIRQS_NO__DO_IRQ
358 * __do_IRQ - original all in one highlevel IRQ handler
359 * @irq: the interrupt number
361 * __do_IRQ handles all normal device IRQ's (the special
362 * SMP cross-CPU interrupts have their own specific
365 * This is the original x86 implementation which is used for every
368 unsigned int __do_IRQ(unsigned int irq)
370 struct irq_desc *desc = irq_to_desc(irq);
371 struct irqaction *action;
374 kstat_irqs_this_cpu(desc)++;
375 if (CHECK_IRQ_PER_CPU(desc->status)) {
376 irqreturn_t action_ret;
379 * No locking required for CPU-local interrupts:
382 desc->chip->ack(irq);
383 if (likely(!(desc->status & IRQ_DISABLED))) {
384 action_ret = handle_IRQ_event(irq, desc->action);
386 note_interrupt(irq, desc, action_ret);
388 desc->chip->end(irq);
392 spin_lock(&desc->lock);
394 desc->chip->ack(irq);
396 * REPLAY is when Linux resends an IRQ that was dropped earlier
397 * WAITING is used by probe to mark irqs that are being tested
399 status = desc->status & ~(IRQ_REPLAY | IRQ_WAITING);
400 status |= IRQ_PENDING; /* we _want_ to handle it */
403 * If the IRQ is disabled for whatever reason, we cannot
404 * use the action we have.
407 if (likely(!(status & (IRQ_DISABLED | IRQ_INPROGRESS)))) {
408 action = desc->action;
409 status &= ~IRQ_PENDING; /* we commit to handling */
410 status |= IRQ_INPROGRESS; /* we are handling it */
412 desc->status = status;
415 * If there is no IRQ handler or it was disabled, exit early.
416 * Since we set PENDING, if another processor is handling
417 * a different instance of this same irq, the other processor
418 * will take care of it.
420 if (unlikely(!action))
424 * Edge triggered interrupts need to remember
426 * This applies to any hw interrupts that allow a second
427 * instance of the same irq to arrive while we are in do_IRQ
428 * or in the handler. But the code here only handles the _second_
429 * instance of the irq, not the third or fourth. So it is mostly
430 * useful for irq hardware that does not mask cleanly in an
434 irqreturn_t action_ret;
436 spin_unlock(&desc->lock);
438 action_ret = handle_IRQ_event(irq, action);
440 note_interrupt(irq, desc, action_ret);
442 spin_lock(&desc->lock);
443 if (likely(!(desc->status & IRQ_PENDING)))
445 desc->status &= ~IRQ_PENDING;
447 desc->status &= ~IRQ_INPROGRESS;
451 * The ->end() handler has to deal with interrupts which got
452 * disabled while the handler was running.
454 desc->chip->end(irq);
455 spin_unlock(&desc->lock);
462 #ifdef CONFIG_TRACE_IRQFLAGS
463 void early_init_irq_lock_class(void)
465 #ifndef CONFIG_HAVE_DYN_ARRAY
468 for (i = 0; i < nr_irqs; i++)
469 lockdep_set_class(&irq_desc[i].lock, &irq_desc_lock_class);
474 unsigned int kstat_irqs_cpu(unsigned int irq, int cpu)
476 struct irq_desc *desc = irq_to_desc(irq);
477 return desc->kstat_irqs[cpu];
479 EXPORT_SYMBOL(kstat_irqs_cpu);