blob: 04d3e46031e51f71ca62ccc0015a6f9b3ac8c660 [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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070021
22#include "internals.h"
23
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -080024/*
25 * lockdep: we want to handle all irq_desc locks as a single lock-class:
26 */
Yinghai Lu48a1b102008-12-11 00:15:01 -080027struct lock_class_key irq_desc_lock_class;
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -080028
Thomas Gleixner6a6de9e2006-06-29 02:24:51 -070029/**
30 * handle_bad_irq - handle spurious and unhandled irqs
Henrik Kretzschmar43a1dd52006-08-31 21:27:44 -070031 * @irq: the interrupt number
32 * @desc: description of the interrupt
Henrik Kretzschmar43a1dd52006-08-31 21:27:44 -070033 *
34 * Handles spurious and unhandled IRQ's. It also prints a debugmessage.
Thomas Gleixner6a6de9e2006-06-29 02:24:51 -070035 */
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +020036void handle_bad_irq(unsigned int irq, struct irq_desc *desc)
Thomas Gleixner6a6de9e2006-06-29 02:24:51 -070037{
Ingo Molnar43f77752006-06-29 02:24:58 -070038 print_irq_desc(irq, desc);
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +020039 kstat_incr_irqs_this_cpu(irq, desc);
Thomas Gleixner6a6de9e2006-06-29 02:24:51 -070040 ack_bad_irq(irq);
41}
42
Linus Torvalds1da177e2005-04-16 15:20:36 -070043/*
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 Molnar06fcb0c2006-06-29 02:24:40 -070047 * interrupt source is transparently wired to the appropriate
Linus Torvalds1da177e2005-04-16 15:20:36 -070048 * 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 Lu85c0f902008-08-19 20:49:47 -070057int nr_irqs = NR_IRQS;
Ingo Molnarfa42d102008-08-19 20:50:30 -070058EXPORT_SYMBOL_GPL(nr_irqs);
Yinghai Lud60458b2008-08-19 20:50:00 -070059
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -080060#ifdef CONFIG_SPARSE_IRQ
Mike Travis92296c62009-01-11 09:22:58 -080061
62#ifndef max_nr_irqs
63#define max_nr_irqs(nr_cpus) NR_IRQS
64#endif
65
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -080066static struct irq_desc irq_desc_init = {
67 .irq = -1,
68 .status = IRQ_DISABLED,
69 .chip = &no_irq_chip,
70 .handle_irq = handle_bad_irq,
71 .depth = 1,
72 .lock = __SPIN_LOCK_UNLOCKED(irq_desc_init.lock),
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -080073};
74
Yinghai Lu48a1b102008-12-11 00:15:01 -080075void init_kstat_irqs(struct irq_desc *desc, int cpu, int nr)
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -080076{
77 unsigned long bytes;
78 char *ptr;
79 int node;
80
81 /* Compute how many bytes we need per irq and allocate them */
82 bytes = nr * sizeof(unsigned int);
83
84 node = cpu_to_node(cpu);
85 ptr = kzalloc_node(bytes, GFP_ATOMIC, node);
86 printk(KERN_DEBUG " alloc kstat_irqs on cpu %d node %d\n", cpu, node);
87
88 if (ptr)
89 desc->kstat_irqs = (unsigned int *)ptr;
90}
91
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -080092static void init_one_irq_desc(int irq, struct irq_desc *desc, int cpu)
93{
94 memcpy(desc, &irq_desc_init, sizeof(struct irq_desc));
Ingo Molnar793f7b12008-12-26 19:02:20 +010095
96 spin_lock_init(&desc->lock);
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -080097 desc->irq = irq;
98#ifdef CONFIG_SMP
99 desc->cpu = cpu;
100#endif
101 lockdep_set_class(&desc->lock, &irq_desc_lock_class);
102 init_kstat_irqs(desc, cpu, nr_cpu_ids);
103 if (!desc->kstat_irqs) {
104 printk(KERN_ERR "can not alloc kstat_irqs\n");
105 BUG_ON(1);
106 }
Mike Travis802bf932009-01-10 21:58:09 -0800107 if (!init_alloc_desc_masks(desc, cpu, false)) {
Mike Travis7f7ace02009-01-10 21:58:08 -0800108 printk(KERN_ERR "can not alloc irq_desc cpumasks\n");
109 BUG_ON(1);
110 }
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800111 arch_init_chip_data(desc, cpu);
112}
113
114/*
115 * Protect the sparse_irqs:
116 */
Yinghai Lu48a1b102008-12-11 00:15:01 -0800117DEFINE_SPINLOCK(sparse_irq_lock);
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800118
Mike Travis0fa0ebb2009-01-10 22:24:06 -0800119struct irq_desc **irq_desc_ptrs __read_mostly;
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800120
Yinghai Lu99d093d2008-12-05 18:58:32 -0800121static struct irq_desc irq_desc_legacy[NR_IRQS_LEGACY] __cacheline_aligned_in_smp = {
122 [0 ... NR_IRQS_LEGACY-1] = {
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800123 .irq = -1,
124 .status = IRQ_DISABLED,
125 .chip = &no_irq_chip,
126 .handle_irq = handle_bad_irq,
127 .depth = 1,
128 .lock = __SPIN_LOCK_UNLOCKED(irq_desc_init.lock),
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800129 }
130};
131
Mike Travis542d8652009-01-10 22:24:07 -0800132static unsigned int *kstat_irqs_legacy;
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800133
Yinghai Lu13a0c3c2008-12-26 02:05:47 -0800134int __init early_irq_init(void)
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800135{
136 struct irq_desc *desc;
137 int legacy_count;
138 int i;
139
Mike Travis9332fcc2009-01-10 22:24:07 -0800140 /* initialize nr_irqs based on nr_cpu_ids */
141 nr_irqs = max_nr_irqs(nr_cpu_ids);
142
Mike Travis95949492009-01-10 22:24:06 -0800143 printk(KERN_INFO "NR_IRQS:%d nr_irqs:%d\n", NR_IRQS, nr_irqs);
144
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800145 desc = irq_desc_legacy;
146 legacy_count = ARRAY_SIZE(irq_desc_legacy);
147
Mike Travis0fa0ebb2009-01-10 22:24:06 -0800148 /* allocate irq_desc_ptrs array based on nr_irqs */
149 irq_desc_ptrs = alloc_bootmem(nr_irqs * sizeof(void *));
150
Mike Travis542d8652009-01-10 22:24:07 -0800151 /* allocate based on nr_cpu_ids */
152 /* FIXME: invert kstat_irgs, and it'd be a per_cpu_alloc'd thing */
153 kstat_irqs_legacy = alloc_bootmem(NR_IRQS_LEGACY * nr_cpu_ids *
154 sizeof(int));
155
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800156 for (i = 0; i < legacy_count; i++) {
157 desc[i].irq = i;
Mike Travis542d8652009-01-10 22:24:07 -0800158 desc[i].kstat_irqs = kstat_irqs_legacy + i * nr_cpu_ids;
Yinghai Lufa6beb32008-12-22 20:24:09 -0800159 lockdep_set_class(&desc[i].lock, &irq_desc_lock_class);
Mike Travis7f7ace02009-01-10 21:58:08 -0800160 init_alloc_desc_masks(&desc[i], 0, true);
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800161 irq_desc_ptrs[i] = desc + i;
162 }
163
Mike Travis95949492009-01-10 22:24:06 -0800164 for (i = legacy_count; i < nr_irqs; i++)
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800165 irq_desc_ptrs[i] = NULL;
166
Yinghai Lu13a0c3c2008-12-26 02:05:47 -0800167 return arch_early_irq_init();
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800168}
169
170struct irq_desc *irq_to_desc(unsigned int irq)
171{
Mike Travis0fa0ebb2009-01-10 22:24:06 -0800172 if (irq_desc_ptrs && irq < nr_irqs)
173 return irq_desc_ptrs[irq];
174
175 return NULL;
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800176}
177
178struct irq_desc *irq_to_desc_alloc_cpu(unsigned int irq, int cpu)
179{
180 struct irq_desc *desc;
181 unsigned long flags;
182 int node;
183
Mike Travis95949492009-01-10 22:24:06 -0800184 if (irq >= nr_irqs) {
Mike Travise2f4d062009-01-10 22:24:06 -0800185 WARN(1, "irq (%d) >= nr_irqs (%d) in irq_to_desc_alloc\n",
186 irq, nr_irqs);
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800187 return NULL;
188 }
189
190 desc = irq_desc_ptrs[irq];
191 if (desc)
192 return desc;
193
194 spin_lock_irqsave(&sparse_irq_lock, flags);
195
196 /* We have to check it to avoid races with another CPU */
197 desc = irq_desc_ptrs[irq];
198 if (desc)
199 goto out_unlock;
200
201 node = cpu_to_node(cpu);
202 desc = kzalloc_node(sizeof(*desc), GFP_ATOMIC, node);
203 printk(KERN_DEBUG " alloc irq_desc for %d on cpu %d node %d\n",
204 irq, cpu, node);
205 if (!desc) {
206 printk(KERN_ERR "can not alloc irq_desc\n");
207 BUG_ON(1);
208 }
209 init_one_irq_desc(irq, desc, cpu);
210
211 irq_desc_ptrs[irq] = desc;
212
213out_unlock:
214 spin_unlock_irqrestore(&sparse_irq_lock, flags);
215
216 return desc;
217}
218
KOSAKI Motohirof9af0e72008-12-26 12:24:24 +0900219#else /* !CONFIG_SPARSE_IRQ */
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800220
Ravikiran G Thirumalaie729aa12007-05-08 00:29:13 -0700221struct irq_desc irq_desc[NR_IRQS] __cacheline_aligned_in_smp = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 [0 ... NR_IRQS-1] = {
Zhang, Yanmin4f167fb2005-05-16 21:53:43 -0700223 .status = IRQ_DISABLED,
Ingo Molnarf1c26622006-06-29 02:24:57 -0700224 .chip = &no_irq_chip,
Ingo Molnar7a557132006-06-29 02:24:54 -0700225 .handle_irq = handle_bad_irq,
Thomas Gleixner94d39e12006-06-29 02:24:50 -0700226 .depth = 1,
Yinghai Luaac3f2b2008-09-24 19:04:35 -0700227 .lock = __SPIN_LOCK_UNLOCKED(irq_desc->lock),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 }
229};
Yinghai Lu08678b02008-08-19 20:50:05 -0700230
Yinghai Lu12026ea2008-12-26 22:38:15 -0800231int __init early_irq_init(void)
232{
233 struct irq_desc *desc;
234 int count;
235 int i;
236
Mike Travis95949492009-01-10 22:24:06 -0800237 printk(KERN_INFO "NR_IRQS:%d\n", NR_IRQS);
238
Yinghai Lu12026ea2008-12-26 22:38:15 -0800239 desc = irq_desc;
240 count = ARRAY_SIZE(irq_desc);
241
Mike Travis7f7ace02009-01-10 21:58:08 -0800242 for (i = 0; i < count; i++) {
Yinghai Lu12026ea2008-12-26 22:38:15 -0800243 desc[i].irq = i;
Mike Travis7f7ace02009-01-10 21:58:08 -0800244 init_alloc_desc_masks(&desc[i], 0, true);
245 }
Yinghai Lu12026ea2008-12-26 22:38:15 -0800246 return arch_early_irq_init();
247}
248
KOSAKI Motohirof9af0e72008-12-26 12:24:24 +0900249struct irq_desc *irq_to_desc(unsigned int irq)
250{
251 return (irq < NR_IRQS) ? irq_desc + irq : NULL;
252}
253
254struct irq_desc *irq_to_desc_alloc_cpu(unsigned int irq, int cpu)
255{
256 return irq_to_desc(irq);
257}
258#endif /* !CONFIG_SPARSE_IRQ */
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800259
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260/*
Ingo Molnar77a5afe2006-06-29 02:24:46 -0700261 * What should we do if we get a hw irq event on an illegal vector?
262 * Each architecture has to answer this themself.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263 */
Ingo Molnar77a5afe2006-06-29 02:24:46 -0700264static void ack_bad(unsigned int irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265{
Thomas Gleixnerd3c60042008-10-16 09:55:00 +0200266 struct irq_desc *desc = irq_to_desc(irq);
Yinghai Lu08678b02008-08-19 20:50:05 -0700267
Yinghai Lu08678b02008-08-19 20:50:05 -0700268 print_irq_desc(irq, desc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269 ack_bad_irq(irq);
270}
271
Ingo Molnar77a5afe2006-06-29 02:24:46 -0700272/*
273 * NOP functions
274 */
275static void noop(unsigned int irq)
276{
277}
278
279static unsigned int noop_ret(unsigned int irq)
280{
281 return 0;
282}
283
284/*
285 * Generic no controller implementation
286 */
Ingo Molnarf1c26622006-06-29 02:24:57 -0700287struct irq_chip no_irq_chip = {
288 .name = "none",
Ingo Molnar77a5afe2006-06-29 02:24:46 -0700289 .startup = noop_ret,
290 .shutdown = noop,
291 .enable = noop,
292 .disable = noop,
293 .ack = ack_bad,
294 .end = noop,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295};
296
297/*
Thomas Gleixnerf8b54732006-07-01 22:30:08 +0100298 * Generic dummy implementation which can be used for
299 * real dumb interrupt sources
300 */
301struct irq_chip dummy_irq_chip = {
302 .name = "dummy",
303 .startup = noop_ret,
304 .shutdown = noop,
305 .enable = noop,
306 .disable = noop,
307 .ack = noop,
308 .mask = noop,
309 .unmask = noop,
310 .end = noop,
311};
312
313/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314 * Special, empty irq handler:
315 */
David Howells7d12e782006-10-05 14:55:46 +0100316irqreturn_t no_action(int cpl, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317{
318 return IRQ_NONE;
319}
320
Ingo Molnar8d28bc72006-06-29 02:24:46 -0700321/**
322 * handle_IRQ_event - irq action chain handler
323 * @irq: the interrupt number
Ingo Molnar8d28bc72006-06-29 02:24:46 -0700324 * @action: the interrupt action chain for this irq
325 *
326 * Handles the action chain of an irq event
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327 */
David Howells7d12e782006-10-05 14:55:46 +0100328irqreturn_t handle_IRQ_event(unsigned int irq, struct irqaction *action)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329{
Jan Beulich908dcec2006-06-23 02:06:00 -0700330 irqreturn_t ret, retval = IRQ_NONE;
331 unsigned int status = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332
Thomas Gleixner3cca53b2006-07-01 19:29:31 -0700333 if (!(action->flags & IRQF_DISABLED))
Ingo Molnar366c7f52006-07-03 00:25:25 -0700334 local_irq_enable_in_hardirq();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335
336 do {
David Howells7d12e782006-10-05 14:55:46 +0100337 ret = action->handler(irq, action->dev_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338 if (ret == IRQ_HANDLED)
339 status |= action->flags;
340 retval |= ret;
341 action = action->next;
342 } while (action);
343
Thomas Gleixner3cca53b2006-07-01 19:29:31 -0700344 if (status & IRQF_SAMPLE_RANDOM)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345 add_interrupt_randomness(irq);
346 local_irq_disable();
347
348 return retval;
349}
350
David Howellsaf8c65b2006-09-25 23:32:07 -0700351#ifndef CONFIG_GENERIC_HARDIRQS_NO__DO_IRQ
Ingo Molnar8d28bc72006-06-29 02:24:46 -0700352/**
353 * __do_IRQ - original all in one highlevel IRQ handler
354 * @irq: the interrupt number
Ingo Molnar8d28bc72006-06-29 02:24:46 -0700355 *
356 * __do_IRQ handles all normal device IRQ's (the special
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357 * SMP cross-CPU interrupts have their own specific
358 * handlers).
Ingo Molnar8d28bc72006-06-29 02:24:46 -0700359 *
360 * This is the original x86 implementation which is used for every
361 * interrupt type.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362 */
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -0800363unsigned int __do_IRQ(unsigned int irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364{
Yinghai Lu08678b02008-08-19 20:50:05 -0700365 struct irq_desc *desc = irq_to_desc(irq);
Ingo Molnar06fcb0c2006-06-29 02:24:40 -0700366 struct irqaction *action;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 unsigned int status;
368
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +0200369 kstat_incr_irqs_this_cpu(irq, desc);
370
Karsten Wiesef26fdd52005-09-06 15:17:25 -0700371 if (CHECK_IRQ_PER_CPU(desc->status)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372 irqreturn_t action_ret;
373
374 /*
375 * No locking required for CPU-local interrupts:
376 */
Yinghai Lu48a1b102008-12-11 00:15:01 -0800377 if (desc->chip->ack) {
Ingo Molnard1bef4e2006-06-29 02:24:36 -0700378 desc->chip->ack(irq);
Yinghai Lu48a1b102008-12-11 00:15:01 -0800379 /* get new one */
380 desc = irq_remap_to_desc(irq, desc);
381 }
Russ Andersonc642b832007-11-14 17:00:15 -0800382 if (likely(!(desc->status & IRQ_DISABLED))) {
383 action_ret = handle_IRQ_event(irq, desc->action);
384 if (!noirqdebug)
385 note_interrupt(irq, desc, action_ret);
386 }
Ingo Molnard1bef4e2006-06-29 02:24:36 -0700387 desc->chip->end(irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388 return 1;
389 }
390
391 spin_lock(&desc->lock);
Yinghai Lu48a1b102008-12-11 00:15:01 -0800392 if (desc->chip->ack) {
Ingo Molnard1bef4e2006-06-29 02:24:36 -0700393 desc->chip->ack(irq);
Yinghai Lu48a1b102008-12-11 00:15:01 -0800394 desc = irq_remap_to_desc(irq, desc);
395 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396 /*
397 * REPLAY is when Linux resends an IRQ that was dropped earlier
398 * WAITING is used by probe to mark irqs that are being tested
399 */
400 status = desc->status & ~(IRQ_REPLAY | IRQ_WAITING);
401 status |= IRQ_PENDING; /* we _want_ to handle it */
402
403 /*
404 * If the IRQ is disabled for whatever reason, we cannot
405 * use the action we have.
406 */
407 action = NULL;
408 if (likely(!(status & (IRQ_DISABLED | IRQ_INPROGRESS)))) {
409 action = desc->action;
410 status &= ~IRQ_PENDING; /* we commit to handling */
411 status |= IRQ_INPROGRESS; /* we are handling it */
412 }
413 desc->status = status;
414
415 /*
416 * If there is no IRQ handler or it was disabled, exit early.
417 * Since we set PENDING, if another processor is handling
418 * a different instance of this same irq, the other processor
419 * will take care of it.
420 */
421 if (unlikely(!action))
422 goto out;
423
424 /*
425 * Edge triggered interrupts need to remember
426 * pending events.
427 * This applies to any hw interrupts that allow a second
428 * instance of the same irq to arrive while we are in do_IRQ
429 * or in the handler. But the code here only handles the _second_
430 * instance of the irq, not the third or fourth. So it is mostly
431 * useful for irq hardware that does not mask cleanly in an
432 * SMP environment.
433 */
434 for (;;) {
435 irqreturn_t action_ret;
436
437 spin_unlock(&desc->lock);
438
David Howells7d12e782006-10-05 14:55:46 +0100439 action_ret = handle_IRQ_event(irq, action);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440 if (!noirqdebug)
David Howells7d12e782006-10-05 14:55:46 +0100441 note_interrupt(irq, desc, action_ret);
Linus Torvaldsb42172f2006-11-22 09:32:06 -0800442
443 spin_lock(&desc->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444 if (likely(!(desc->status & IRQ_PENDING)))
445 break;
446 desc->status &= ~IRQ_PENDING;
447 }
448 desc->status &= ~IRQ_INPROGRESS;
449
450out:
451 /*
452 * The ->end() handler has to deal with interrupts which got
453 * disabled while the handler was running.
454 */
Ingo Molnard1bef4e2006-06-29 02:24:36 -0700455 desc->chip->end(irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456 spin_unlock(&desc->lock);
457
458 return 1;
459}
David Howellsaf8c65b2006-09-25 23:32:07 -0700460#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461
Ingo Molnar243c7622006-07-03 00:25:06 -0700462void early_init_irq_lock_class(void)
463{
Thomas Gleixner10e58082008-10-16 14:19:04 +0200464 struct irq_desc *desc;
Ingo Molnar243c7622006-07-03 00:25:06 -0700465 int i;
466
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800467 for_each_irq_desc(i, desc) {
Thomas Gleixner10e58082008-10-16 14:19:04 +0200468 lockdep_set_class(&desc->lock, &irq_desc_lock_class);
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800469 }
Yinghai Lu08678b02008-08-19 20:50:05 -0700470}
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800471
472#ifdef CONFIG_SPARSE_IRQ
473unsigned int kstat_irqs_cpu(unsigned int irq, int cpu)
474{
475 struct irq_desc *desc = irq_to_desc(irq);
KOSAKI Motohiro26ddd8d2008-12-26 14:24:10 +0900476 return desc ? desc->kstat_irqs[cpu] : 0;
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800477}
478#endif
479EXPORT_SYMBOL(kstat_irqs_cpu);
480