blob: 893da67b7781b0dd46cadc59dc33a32b1d516595 [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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070020
21#include "internals.h"
22
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -080023/*
24 * lockdep: we want to handle all irq_desc locks as a single lock-class:
25 */
Yinghai Lu48a1b102008-12-11 00:15:01 -080026struct lock_class_key irq_desc_lock_class;
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -080027
Thomas Gleixner6a6de9e2006-06-29 02:24:51 -070028/**
29 * handle_bad_irq - handle spurious and unhandled irqs
Henrik Kretzschmar43a1dd52006-08-31 21:27:44 -070030 * @irq: the interrupt number
31 * @desc: description of the interrupt
Henrik Kretzschmar43a1dd52006-08-31 21:27:44 -070032 *
33 * Handles spurious and unhandled IRQ's. It also prints a debugmessage.
Thomas Gleixner6a6de9e2006-06-29 02:24:51 -070034 */
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +020035void handle_bad_irq(unsigned int irq, struct irq_desc *desc)
Thomas Gleixner6a6de9e2006-06-29 02:24:51 -070036{
Ingo Molnar43f77752006-06-29 02:24:58 -070037 print_irq_desc(irq, desc);
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +020038 kstat_incr_irqs_this_cpu(irq, desc);
Thomas Gleixner6a6de9e2006-06-29 02:24:51 -070039 ack_bad_irq(irq);
40}
41
Linus Torvalds1da177e2005-04-16 15:20:36 -070042/*
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 Molnar06fcb0c2006-06-29 02:24:40 -070046 * interrupt source is transparently wired to the appropriate
Linus Torvalds1da177e2005-04-16 15:20:36 -070047 * 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 Lu85c0f902008-08-19 20:49:47 -070056int nr_irqs = NR_IRQS;
Ingo Molnarfa42d102008-08-19 20:50:30 -070057EXPORT_SYMBOL_GPL(nr_irqs);
Yinghai Lud60458b2008-08-19 20:50:00 -070058
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -080059#ifdef CONFIG_SPARSE_IRQ
60static 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 Lu48a1b102008-12-11 00:15:01 -080072void init_kstat_irqs(struct irq_desc *desc, int cpu, int nr)
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -080073{
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
89void __attribute__((weak)) arch_init_chip_data(struct irq_desc *desc, int cpu)
90{
91}
92
93static void init_one_irq_desc(int irq, struct irq_desc *desc, int cpu)
94{
95 memcpy(desc, &irq_desc_init, sizeof(struct irq_desc));
Ingo Molnar793f7b12008-12-26 19:02:20 +010096
97 spin_lock_init(&desc->lock);
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -080098 desc->irq = irq;
99#ifdef CONFIG_SMP
100 desc->cpu = cpu;
101#endif
102 lockdep_set_class(&desc->lock, &irq_desc_lock_class);
103 init_kstat_irqs(desc, cpu, nr_cpu_ids);
104 if (!desc->kstat_irqs) {
105 printk(KERN_ERR "can not alloc kstat_irqs\n");
106 BUG_ON(1);
107 }
108 arch_init_chip_data(desc, cpu);
109}
110
111/*
112 * Protect the sparse_irqs:
113 */
Yinghai Lu48a1b102008-12-11 00:15:01 -0800114DEFINE_SPINLOCK(sparse_irq_lock);
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800115
116struct irq_desc *irq_desc_ptrs[NR_IRQS] __read_mostly;
117
Yinghai Lu99d093d2008-12-05 18:58:32 -0800118static struct irq_desc irq_desc_legacy[NR_IRQS_LEGACY] __cacheline_aligned_in_smp = {
119 [0 ... NR_IRQS_LEGACY-1] = {
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800120 .irq = -1,
121 .status = IRQ_DISABLED,
122 .chip = &no_irq_chip,
123 .handle_irq = handle_bad_irq,
124 .depth = 1,
125 .lock = __SPIN_LOCK_UNLOCKED(irq_desc_init.lock),
126#ifdef CONFIG_SMP
127 .affinity = CPU_MASK_ALL
128#endif
129 }
130};
131
132/* FIXME: use bootmem alloc ...*/
Yinghai Lu99d093d2008-12-05 18:58:32 -0800133static unsigned int kstat_irqs_legacy[NR_IRQS_LEGACY][NR_CPUS];
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800134
135void __init early_irq_init(void)
136{
137 struct irq_desc *desc;
138 int legacy_count;
139 int i;
140
141 desc = irq_desc_legacy;
142 legacy_count = ARRAY_SIZE(irq_desc_legacy);
143
144 for (i = 0; i < legacy_count; i++) {
145 desc[i].irq = i;
146 desc[i].kstat_irqs = kstat_irqs_legacy[i];
147
148 irq_desc_ptrs[i] = desc + i;
149 }
150
151 for (i = legacy_count; i < NR_IRQS; i++)
152 irq_desc_ptrs[i] = NULL;
153
154 arch_early_irq_init();
155}
156
157struct irq_desc *irq_to_desc(unsigned int irq)
158{
159 return (irq < NR_IRQS) ? irq_desc_ptrs[irq] : NULL;
160}
161
162struct irq_desc *irq_to_desc_alloc_cpu(unsigned int irq, int cpu)
163{
164 struct irq_desc *desc;
165 unsigned long flags;
166 int node;
167
168 if (irq >= NR_IRQS) {
169 printk(KERN_WARNING "irq >= NR_IRQS in irq_to_desc_alloc: %d %d\n",
170 irq, NR_IRQS);
171 WARN_ON(1);
172 return NULL;
173 }
174
175 desc = irq_desc_ptrs[irq];
176 if (desc)
177 return desc;
178
179 spin_lock_irqsave(&sparse_irq_lock, flags);
180
181 /* We have to check it to avoid races with another CPU */
182 desc = irq_desc_ptrs[irq];
183 if (desc)
184 goto out_unlock;
185
186 node = cpu_to_node(cpu);
187 desc = kzalloc_node(sizeof(*desc), GFP_ATOMIC, node);
188 printk(KERN_DEBUG " alloc irq_desc for %d on cpu %d node %d\n",
189 irq, cpu, node);
190 if (!desc) {
191 printk(KERN_ERR "can not alloc irq_desc\n");
192 BUG_ON(1);
193 }
194 init_one_irq_desc(irq, desc, cpu);
195
196 irq_desc_ptrs[irq] = desc;
197
198out_unlock:
199 spin_unlock_irqrestore(&sparse_irq_lock, flags);
200
201 return desc;
202}
203
KOSAKI Motohirof9af0e72008-12-26 12:24:24 +0900204#else /* !CONFIG_SPARSE_IRQ */
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800205
Ravikiran G Thirumalaie729aa12007-05-08 00:29:13 -0700206struct irq_desc irq_desc[NR_IRQS] __cacheline_aligned_in_smp = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207 [0 ... NR_IRQS-1] = {
Zhang, Yanmin4f167fb2005-05-16 21:53:43 -0700208 .status = IRQ_DISABLED,
Ingo Molnarf1c26622006-06-29 02:24:57 -0700209 .chip = &no_irq_chip,
Ingo Molnar7a557132006-06-29 02:24:54 -0700210 .handle_irq = handle_bad_irq,
Thomas Gleixner94d39e12006-06-29 02:24:50 -0700211 .depth = 1,
Yinghai Luaac3f2b2008-09-24 19:04:35 -0700212 .lock = __SPIN_LOCK_UNLOCKED(irq_desc->lock),
Ingo Molnara53da522006-06-29 02:24:38 -0700213#ifdef CONFIG_SMP
214 .affinity = CPU_MASK_ALL
215#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 }
217};
Yinghai Lu08678b02008-08-19 20:50:05 -0700218
KOSAKI Motohirof9af0e72008-12-26 12:24:24 +0900219struct irq_desc *irq_to_desc(unsigned int irq)
220{
221 return (irq < NR_IRQS) ? irq_desc + irq : NULL;
222}
223
224struct irq_desc *irq_to_desc_alloc_cpu(unsigned int irq, int cpu)
225{
226 return irq_to_desc(irq);
227}
228#endif /* !CONFIG_SPARSE_IRQ */
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800229
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230/*
Ingo Molnar77a5afe2006-06-29 02:24:46 -0700231 * What should we do if we get a hw irq event on an illegal vector?
232 * Each architecture has to answer this themself.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233 */
Ingo Molnar77a5afe2006-06-29 02:24:46 -0700234static void ack_bad(unsigned int irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235{
Thomas Gleixnerd3c60042008-10-16 09:55:00 +0200236 struct irq_desc *desc = irq_to_desc(irq);
Yinghai Lu08678b02008-08-19 20:50:05 -0700237
Yinghai Lu08678b02008-08-19 20:50:05 -0700238 print_irq_desc(irq, desc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239 ack_bad_irq(irq);
240}
241
Ingo Molnar77a5afe2006-06-29 02:24:46 -0700242/*
243 * NOP functions
244 */
245static void noop(unsigned int irq)
246{
247}
248
249static unsigned int noop_ret(unsigned int irq)
250{
251 return 0;
252}
253
254/*
255 * Generic no controller implementation
256 */
Ingo Molnarf1c26622006-06-29 02:24:57 -0700257struct irq_chip no_irq_chip = {
258 .name = "none",
Ingo Molnar77a5afe2006-06-29 02:24:46 -0700259 .startup = noop_ret,
260 .shutdown = noop,
261 .enable = noop,
262 .disable = noop,
263 .ack = ack_bad,
264 .end = noop,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265};
266
267/*
Thomas Gleixnerf8b54732006-07-01 22:30:08 +0100268 * Generic dummy implementation which can be used for
269 * real dumb interrupt sources
270 */
271struct irq_chip dummy_irq_chip = {
272 .name = "dummy",
273 .startup = noop_ret,
274 .shutdown = noop,
275 .enable = noop,
276 .disable = noop,
277 .ack = noop,
278 .mask = noop,
279 .unmask = noop,
280 .end = noop,
281};
282
283/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 * Special, empty irq handler:
285 */
David Howells7d12e782006-10-05 14:55:46 +0100286irqreturn_t no_action(int cpl, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287{
288 return IRQ_NONE;
289}
290
Ingo Molnar8d28bc72006-06-29 02:24:46 -0700291/**
292 * handle_IRQ_event - irq action chain handler
293 * @irq: the interrupt number
Ingo Molnar8d28bc72006-06-29 02:24:46 -0700294 * @action: the interrupt action chain for this irq
295 *
296 * Handles the action chain of an irq event
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297 */
David Howells7d12e782006-10-05 14:55:46 +0100298irqreturn_t handle_IRQ_event(unsigned int irq, struct irqaction *action)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299{
Jan Beulich908dcec2006-06-23 02:06:00 -0700300 irqreturn_t ret, retval = IRQ_NONE;
301 unsigned int status = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302
Thomas Gleixner3cca53b2006-07-01 19:29:31 -0700303 if (!(action->flags & IRQF_DISABLED))
Ingo Molnar366c7f52006-07-03 00:25:25 -0700304 local_irq_enable_in_hardirq();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305
306 do {
David Howells7d12e782006-10-05 14:55:46 +0100307 ret = action->handler(irq, action->dev_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308 if (ret == IRQ_HANDLED)
309 status |= action->flags;
310 retval |= ret;
311 action = action->next;
312 } while (action);
313
Thomas Gleixner3cca53b2006-07-01 19:29:31 -0700314 if (status & IRQF_SAMPLE_RANDOM)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315 add_interrupt_randomness(irq);
316 local_irq_disable();
317
318 return retval;
319}
320
David Howellsaf8c65b2006-09-25 23:32:07 -0700321#ifndef CONFIG_GENERIC_HARDIRQS_NO__DO_IRQ
Ingo Molnar8d28bc72006-06-29 02:24:46 -0700322/**
323 * __do_IRQ - original all in one highlevel IRQ handler
324 * @irq: the interrupt number
Ingo Molnar8d28bc72006-06-29 02:24:46 -0700325 *
326 * __do_IRQ handles all normal device IRQ's (the special
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327 * SMP cross-CPU interrupts have their own specific
328 * handlers).
Ingo Molnar8d28bc72006-06-29 02:24:46 -0700329 *
330 * This is the original x86 implementation which is used for every
331 * interrupt type.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332 */
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -0800333unsigned int __do_IRQ(unsigned int irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334{
Yinghai Lu08678b02008-08-19 20:50:05 -0700335 struct irq_desc *desc = irq_to_desc(irq);
Ingo Molnar06fcb0c2006-06-29 02:24:40 -0700336 struct irqaction *action;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337 unsigned int status;
338
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +0200339 kstat_incr_irqs_this_cpu(irq, desc);
340
Karsten Wiesef26fdd52005-09-06 15:17:25 -0700341 if (CHECK_IRQ_PER_CPU(desc->status)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342 irqreturn_t action_ret;
343
344 /*
345 * No locking required for CPU-local interrupts:
346 */
Yinghai Lu48a1b102008-12-11 00:15:01 -0800347 if (desc->chip->ack) {
Ingo Molnard1bef4e2006-06-29 02:24:36 -0700348 desc->chip->ack(irq);
Yinghai Lu48a1b102008-12-11 00:15:01 -0800349 /* get new one */
350 desc = irq_remap_to_desc(irq, desc);
351 }
Russ Andersonc642b832007-11-14 17:00:15 -0800352 if (likely(!(desc->status & IRQ_DISABLED))) {
353 action_ret = handle_IRQ_event(irq, desc->action);
354 if (!noirqdebug)
355 note_interrupt(irq, desc, action_ret);
356 }
Ingo Molnard1bef4e2006-06-29 02:24:36 -0700357 desc->chip->end(irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358 return 1;
359 }
360
361 spin_lock(&desc->lock);
Yinghai Lu48a1b102008-12-11 00:15:01 -0800362 if (desc->chip->ack) {
Ingo Molnard1bef4e2006-06-29 02:24:36 -0700363 desc->chip->ack(irq);
Yinghai Lu48a1b102008-12-11 00:15:01 -0800364 desc = irq_remap_to_desc(irq, desc);
365 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366 /*
367 * REPLAY is when Linux resends an IRQ that was dropped earlier
368 * WAITING is used by probe to mark irqs that are being tested
369 */
370 status = desc->status & ~(IRQ_REPLAY | IRQ_WAITING);
371 status |= IRQ_PENDING; /* we _want_ to handle it */
372
373 /*
374 * If the IRQ is disabled for whatever reason, we cannot
375 * use the action we have.
376 */
377 action = NULL;
378 if (likely(!(status & (IRQ_DISABLED | IRQ_INPROGRESS)))) {
379 action = desc->action;
380 status &= ~IRQ_PENDING; /* we commit to handling */
381 status |= IRQ_INPROGRESS; /* we are handling it */
382 }
383 desc->status = status;
384
385 /*
386 * If there is no IRQ handler or it was disabled, exit early.
387 * Since we set PENDING, if another processor is handling
388 * a different instance of this same irq, the other processor
389 * will take care of it.
390 */
391 if (unlikely(!action))
392 goto out;
393
394 /*
395 * Edge triggered interrupts need to remember
396 * pending events.
397 * This applies to any hw interrupts that allow a second
398 * instance of the same irq to arrive while we are in do_IRQ
399 * or in the handler. But the code here only handles the _second_
400 * instance of the irq, not the third or fourth. So it is mostly
401 * useful for irq hardware that does not mask cleanly in an
402 * SMP environment.
403 */
404 for (;;) {
405 irqreturn_t action_ret;
406
407 spin_unlock(&desc->lock);
408
David Howells7d12e782006-10-05 14:55:46 +0100409 action_ret = handle_IRQ_event(irq, action);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410 if (!noirqdebug)
David Howells7d12e782006-10-05 14:55:46 +0100411 note_interrupt(irq, desc, action_ret);
Linus Torvaldsb42172f2006-11-22 09:32:06 -0800412
413 spin_lock(&desc->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414 if (likely(!(desc->status & IRQ_PENDING)))
415 break;
416 desc->status &= ~IRQ_PENDING;
417 }
418 desc->status &= ~IRQ_INPROGRESS;
419
420out:
421 /*
422 * The ->end() handler has to deal with interrupts which got
423 * disabled while the handler was running.
424 */
Ingo Molnard1bef4e2006-06-29 02:24:36 -0700425 desc->chip->end(irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426 spin_unlock(&desc->lock);
427
428 return 1;
429}
David Howellsaf8c65b2006-09-25 23:32:07 -0700430#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431
Ingo Molnar243c7622006-07-03 00:25:06 -0700432void early_init_irq_lock_class(void)
433{
Thomas Gleixner10e58082008-10-16 14:19:04 +0200434 struct irq_desc *desc;
Ingo Molnar243c7622006-07-03 00:25:06 -0700435 int i;
436
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800437 for_each_irq_desc(i, desc) {
Thomas Gleixner10e58082008-10-16 14:19:04 +0200438 lockdep_set_class(&desc->lock, &irq_desc_lock_class);
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800439 }
Yinghai Lu08678b02008-08-19 20:50:05 -0700440}
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800441
442#ifdef CONFIG_SPARSE_IRQ
443unsigned int kstat_irqs_cpu(unsigned int irq, int cpu)
444{
445 struct irq_desc *desc = irq_to_desc(irq);
KOSAKI Motohiro26ddd8d2008-12-26 14:24:10 +0900446 return desc ? desc->kstat_irqs[cpu] : 0;
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800447}
448#endif
449EXPORT_SYMBOL(kstat_irqs_cpu);
450