blob: 0bef3ecb7a0e464e1c1966b9db6eff68cd34f197 [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
Yinghai Lu13a0c3c2008-12-26 02:05:47 -080089int __weak arch_init_chip_data(struct irq_desc *desc, int cpu)
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -080090{
Yinghai Lu13a0c3c2008-12-26 02:05:47 -080091 return 0;
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -080092}
93
94static void init_one_irq_desc(int irq, struct irq_desc *desc, int cpu)
95{
96 memcpy(desc, &irq_desc_init, sizeof(struct irq_desc));
Ingo Molnar793f7b12008-12-26 19:02:20 +010097
98 spin_lock_init(&desc->lock);
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -080099 desc->irq = irq;
100#ifdef CONFIG_SMP
101 desc->cpu = cpu;
102#endif
103 lockdep_set_class(&desc->lock, &irq_desc_lock_class);
104 init_kstat_irqs(desc, cpu, nr_cpu_ids);
105 if (!desc->kstat_irqs) {
106 printk(KERN_ERR "can not alloc kstat_irqs\n");
107 BUG_ON(1);
108 }
109 arch_init_chip_data(desc, cpu);
110}
111
112/*
113 * Protect the sparse_irqs:
114 */
Yinghai Lu48a1b102008-12-11 00:15:01 -0800115DEFINE_SPINLOCK(sparse_irq_lock);
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800116
117struct irq_desc *irq_desc_ptrs[NR_IRQS] __read_mostly;
118
Yinghai Lu99d093d2008-12-05 18:58:32 -0800119static struct irq_desc irq_desc_legacy[NR_IRQS_LEGACY] __cacheline_aligned_in_smp = {
120 [0 ... NR_IRQS_LEGACY-1] = {
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800121 .irq = -1,
122 .status = IRQ_DISABLED,
123 .chip = &no_irq_chip,
124 .handle_irq = handle_bad_irq,
125 .depth = 1,
126 .lock = __SPIN_LOCK_UNLOCKED(irq_desc_init.lock),
127#ifdef CONFIG_SMP
128 .affinity = CPU_MASK_ALL
129#endif
130 }
131};
132
133/* FIXME: use bootmem alloc ...*/
Yinghai Lu99d093d2008-12-05 18:58:32 -0800134static unsigned int kstat_irqs_legacy[NR_IRQS_LEGACY][NR_CPUS];
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800135
Yinghai Lu13a0c3c2008-12-26 02:05:47 -0800136int __init early_irq_init(void)
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800137{
138 struct irq_desc *desc;
139 int legacy_count;
140 int i;
141
142 desc = irq_desc_legacy;
143 legacy_count = ARRAY_SIZE(irq_desc_legacy);
144
145 for (i = 0; i < legacy_count; i++) {
146 desc[i].irq = i;
147 desc[i].kstat_irqs = kstat_irqs_legacy[i];
148
149 irq_desc_ptrs[i] = desc + i;
150 }
151
152 for (i = legacy_count; i < NR_IRQS; i++)
153 irq_desc_ptrs[i] = NULL;
154
Yinghai Lu13a0c3c2008-12-26 02:05:47 -0800155 return arch_early_irq_init();
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800156}
157
158struct irq_desc *irq_to_desc(unsigned int irq)
159{
160 return (irq < NR_IRQS) ? irq_desc_ptrs[irq] : NULL;
161}
162
163struct irq_desc *irq_to_desc_alloc_cpu(unsigned int irq, int cpu)
164{
165 struct irq_desc *desc;
166 unsigned long flags;
167 int node;
168
169 if (irq >= NR_IRQS) {
170 printk(KERN_WARNING "irq >= NR_IRQS in irq_to_desc_alloc: %d %d\n",
171 irq, NR_IRQS);
172 WARN_ON(1);
173 return NULL;
174 }
175
176 desc = irq_desc_ptrs[irq];
177 if (desc)
178 return desc;
179
180 spin_lock_irqsave(&sparse_irq_lock, flags);
181
182 /* We have to check it to avoid races with another CPU */
183 desc = irq_desc_ptrs[irq];
184 if (desc)
185 goto out_unlock;
186
187 node = cpu_to_node(cpu);
188 desc = kzalloc_node(sizeof(*desc), GFP_ATOMIC, node);
189 printk(KERN_DEBUG " alloc irq_desc for %d on cpu %d node %d\n",
190 irq, cpu, node);
191 if (!desc) {
192 printk(KERN_ERR "can not alloc irq_desc\n");
193 BUG_ON(1);
194 }
195 init_one_irq_desc(irq, desc, cpu);
196
197 irq_desc_ptrs[irq] = desc;
198
199out_unlock:
200 spin_unlock_irqrestore(&sparse_irq_lock, flags);
201
202 return desc;
203}
204
KOSAKI Motohirof9af0e72008-12-26 12:24:24 +0900205#else /* !CONFIG_SPARSE_IRQ */
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800206
Ravikiran G Thirumalaie729aa12007-05-08 00:29:13 -0700207struct irq_desc irq_desc[NR_IRQS] __cacheline_aligned_in_smp = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208 [0 ... NR_IRQS-1] = {
Zhang, Yanmin4f167fb2005-05-16 21:53:43 -0700209 .status = IRQ_DISABLED,
Ingo Molnarf1c26622006-06-29 02:24:57 -0700210 .chip = &no_irq_chip,
Ingo Molnar7a557132006-06-29 02:24:54 -0700211 .handle_irq = handle_bad_irq,
Thomas Gleixner94d39e12006-06-29 02:24:50 -0700212 .depth = 1,
Yinghai Luaac3f2b2008-09-24 19:04:35 -0700213 .lock = __SPIN_LOCK_UNLOCKED(irq_desc->lock),
Ingo Molnara53da522006-06-29 02:24:38 -0700214#ifdef CONFIG_SMP
215 .affinity = CPU_MASK_ALL
216#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217 }
218};
Yinghai Lu08678b02008-08-19 20:50:05 -0700219
KOSAKI Motohirof9af0e72008-12-26 12:24:24 +0900220struct irq_desc *irq_to_desc(unsigned int irq)
221{
222 return (irq < NR_IRQS) ? irq_desc + irq : NULL;
223}
224
225struct irq_desc *irq_to_desc_alloc_cpu(unsigned int irq, int cpu)
226{
227 return irq_to_desc(irq);
228}
229#endif /* !CONFIG_SPARSE_IRQ */
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800230
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231/*
Ingo Molnar77a5afe2006-06-29 02:24:46 -0700232 * What should we do if we get a hw irq event on an illegal vector?
233 * Each architecture has to answer this themself.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 */
Ingo Molnar77a5afe2006-06-29 02:24:46 -0700235static void ack_bad(unsigned int irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236{
Thomas Gleixnerd3c60042008-10-16 09:55:00 +0200237 struct irq_desc *desc = irq_to_desc(irq);
Yinghai Lu08678b02008-08-19 20:50:05 -0700238
Yinghai Lu08678b02008-08-19 20:50:05 -0700239 print_irq_desc(irq, desc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240 ack_bad_irq(irq);
241}
242
Ingo Molnar77a5afe2006-06-29 02:24:46 -0700243/*
244 * NOP functions
245 */
246static void noop(unsigned int irq)
247{
248}
249
250static unsigned int noop_ret(unsigned int irq)
251{
252 return 0;
253}
254
255/*
256 * Generic no controller implementation
257 */
Ingo Molnarf1c26622006-06-29 02:24:57 -0700258struct irq_chip no_irq_chip = {
259 .name = "none",
Ingo Molnar77a5afe2006-06-29 02:24:46 -0700260 .startup = noop_ret,
261 .shutdown = noop,
262 .enable = noop,
263 .disable = noop,
264 .ack = ack_bad,
265 .end = noop,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266};
267
268/*
Thomas Gleixnerf8b54732006-07-01 22:30:08 +0100269 * Generic dummy implementation which can be used for
270 * real dumb interrupt sources
271 */
272struct irq_chip dummy_irq_chip = {
273 .name = "dummy",
274 .startup = noop_ret,
275 .shutdown = noop,
276 .enable = noop,
277 .disable = noop,
278 .ack = noop,
279 .mask = noop,
280 .unmask = noop,
281 .end = noop,
282};
283
284/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285 * Special, empty irq handler:
286 */
David Howells7d12e782006-10-05 14:55:46 +0100287irqreturn_t no_action(int cpl, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288{
289 return IRQ_NONE;
290}
291
Ingo Molnar8d28bc72006-06-29 02:24:46 -0700292/**
293 * handle_IRQ_event - irq action chain handler
294 * @irq: the interrupt number
Ingo Molnar8d28bc72006-06-29 02:24:46 -0700295 * @action: the interrupt action chain for this irq
296 *
297 * Handles the action chain of an irq event
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298 */
David Howells7d12e782006-10-05 14:55:46 +0100299irqreturn_t handle_IRQ_event(unsigned int irq, struct irqaction *action)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300{
Jan Beulich908dcec2006-06-23 02:06:00 -0700301 irqreturn_t ret, retval = IRQ_NONE;
302 unsigned int status = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303
Thomas Gleixner3cca53b2006-07-01 19:29:31 -0700304 if (!(action->flags & IRQF_DISABLED))
Ingo Molnar366c7f52006-07-03 00:25:25 -0700305 local_irq_enable_in_hardirq();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306
307 do {
David Howells7d12e782006-10-05 14:55:46 +0100308 ret = action->handler(irq, action->dev_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309 if (ret == IRQ_HANDLED)
310 status |= action->flags;
311 retval |= ret;
312 action = action->next;
313 } while (action);
314
Thomas Gleixner3cca53b2006-07-01 19:29:31 -0700315 if (status & IRQF_SAMPLE_RANDOM)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316 add_interrupt_randomness(irq);
317 local_irq_disable();
318
319 return retval;
320}
321
David Howellsaf8c65b2006-09-25 23:32:07 -0700322#ifndef CONFIG_GENERIC_HARDIRQS_NO__DO_IRQ
Ingo Molnar8d28bc72006-06-29 02:24:46 -0700323/**
324 * __do_IRQ - original all in one highlevel IRQ handler
325 * @irq: the interrupt number
Ingo Molnar8d28bc72006-06-29 02:24:46 -0700326 *
327 * __do_IRQ handles all normal device IRQ's (the special
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328 * SMP cross-CPU interrupts have their own specific
329 * handlers).
Ingo Molnar8d28bc72006-06-29 02:24:46 -0700330 *
331 * This is the original x86 implementation which is used for every
332 * interrupt type.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333 */
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -0800334unsigned int __do_IRQ(unsigned int irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335{
Yinghai Lu08678b02008-08-19 20:50:05 -0700336 struct irq_desc *desc = irq_to_desc(irq);
Ingo Molnar06fcb0c2006-06-29 02:24:40 -0700337 struct irqaction *action;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338 unsigned int status;
339
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +0200340 kstat_incr_irqs_this_cpu(irq, desc);
341
Karsten Wiesef26fdd52005-09-06 15:17:25 -0700342 if (CHECK_IRQ_PER_CPU(desc->status)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 irqreturn_t action_ret;
344
345 /*
346 * No locking required for CPU-local interrupts:
347 */
Yinghai Lu48a1b102008-12-11 00:15:01 -0800348 if (desc->chip->ack) {
Ingo Molnard1bef4e2006-06-29 02:24:36 -0700349 desc->chip->ack(irq);
Yinghai Lu48a1b102008-12-11 00:15:01 -0800350 /* get new one */
351 desc = irq_remap_to_desc(irq, desc);
352 }
Russ Andersonc642b832007-11-14 17:00:15 -0800353 if (likely(!(desc->status & IRQ_DISABLED))) {
354 action_ret = handle_IRQ_event(irq, desc->action);
355 if (!noirqdebug)
356 note_interrupt(irq, desc, action_ret);
357 }
Ingo Molnard1bef4e2006-06-29 02:24:36 -0700358 desc->chip->end(irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 return 1;
360 }
361
362 spin_lock(&desc->lock);
Yinghai Lu48a1b102008-12-11 00:15:01 -0800363 if (desc->chip->ack) {
Ingo Molnard1bef4e2006-06-29 02:24:36 -0700364 desc->chip->ack(irq);
Yinghai Lu48a1b102008-12-11 00:15:01 -0800365 desc = irq_remap_to_desc(irq, desc);
366 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 /*
368 * REPLAY is when Linux resends an IRQ that was dropped earlier
369 * WAITING is used by probe to mark irqs that are being tested
370 */
371 status = desc->status & ~(IRQ_REPLAY | IRQ_WAITING);
372 status |= IRQ_PENDING; /* we _want_ to handle it */
373
374 /*
375 * If the IRQ is disabled for whatever reason, we cannot
376 * use the action we have.
377 */
378 action = NULL;
379 if (likely(!(status & (IRQ_DISABLED | IRQ_INPROGRESS)))) {
380 action = desc->action;
381 status &= ~IRQ_PENDING; /* we commit to handling */
382 status |= IRQ_INPROGRESS; /* we are handling it */
383 }
384 desc->status = status;
385
386 /*
387 * If there is no IRQ handler or it was disabled, exit early.
388 * Since we set PENDING, if another processor is handling
389 * a different instance of this same irq, the other processor
390 * will take care of it.
391 */
392 if (unlikely(!action))
393 goto out;
394
395 /*
396 * Edge triggered interrupts need to remember
397 * pending events.
398 * This applies to any hw interrupts that allow a second
399 * instance of the same irq to arrive while we are in do_IRQ
400 * or in the handler. But the code here only handles the _second_
401 * instance of the irq, not the third or fourth. So it is mostly
402 * useful for irq hardware that does not mask cleanly in an
403 * SMP environment.
404 */
405 for (;;) {
406 irqreturn_t action_ret;
407
408 spin_unlock(&desc->lock);
409
David Howells7d12e782006-10-05 14:55:46 +0100410 action_ret = handle_IRQ_event(irq, action);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411 if (!noirqdebug)
David Howells7d12e782006-10-05 14:55:46 +0100412 note_interrupt(irq, desc, action_ret);
Linus Torvaldsb42172f2006-11-22 09:32:06 -0800413
414 spin_lock(&desc->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415 if (likely(!(desc->status & IRQ_PENDING)))
416 break;
417 desc->status &= ~IRQ_PENDING;
418 }
419 desc->status &= ~IRQ_INPROGRESS;
420
421out:
422 /*
423 * The ->end() handler has to deal with interrupts which got
424 * disabled while the handler was running.
425 */
Ingo Molnard1bef4e2006-06-29 02:24:36 -0700426 desc->chip->end(irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427 spin_unlock(&desc->lock);
428
429 return 1;
430}
David Howellsaf8c65b2006-09-25 23:32:07 -0700431#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432
Ingo Molnar243c7622006-07-03 00:25:06 -0700433void early_init_irq_lock_class(void)
434{
Thomas Gleixner10e58082008-10-16 14:19:04 +0200435 struct irq_desc *desc;
Ingo Molnar243c7622006-07-03 00:25:06 -0700436 int i;
437
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800438 for_each_irq_desc(i, desc) {
Thomas Gleixner10e58082008-10-16 14:19:04 +0200439 lockdep_set_class(&desc->lock, &irq_desc_lock_class);
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800440 }
Yinghai Lu08678b02008-08-19 20:50:05 -0700441}
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800442
443#ifdef CONFIG_SPARSE_IRQ
444unsigned int kstat_irqs_cpu(unsigned int irq, int cpu)
445{
446 struct irq_desc *desc = irq_to_desc(irq);
KOSAKI Motohiro26ddd8d2008-12-26 14:24:10 +0900447 return desc ? desc->kstat_irqs[cpu] : 0;
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800448}
449#endif
450EXPORT_SYMBOL(kstat_irqs_cpu);
451