blob: d0b8f7e72790e357a5219bd4549fdb6132f2c5e2 [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
61static struct irq_desc irq_desc_init = {
62 .irq = -1,
63 .status = IRQ_DISABLED,
64 .chip = &no_irq_chip,
65 .handle_irq = handle_bad_irq,
66 .depth = 1,
67 .lock = __SPIN_LOCK_UNLOCKED(irq_desc_init.lock),
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -080068};
69
Yinghai Lu48a1b102008-12-11 00:15:01 -080070void init_kstat_irqs(struct irq_desc *desc, int cpu, int nr)
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -080071{
72 unsigned long bytes;
73 char *ptr;
74 int node;
75
76 /* Compute how many bytes we need per irq and allocate them */
77 bytes = nr * sizeof(unsigned int);
78
79 node = cpu_to_node(cpu);
80 ptr = kzalloc_node(bytes, GFP_ATOMIC, node);
81 printk(KERN_DEBUG " alloc kstat_irqs on cpu %d node %d\n", cpu, node);
82
83 if (ptr)
84 desc->kstat_irqs = (unsigned int *)ptr;
85}
86
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -080087static void init_one_irq_desc(int irq, struct irq_desc *desc, int cpu)
88{
89 memcpy(desc, &irq_desc_init, sizeof(struct irq_desc));
Ingo Molnar793f7b12008-12-26 19:02:20 +010090
91 spin_lock_init(&desc->lock);
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -080092 desc->irq = irq;
93#ifdef CONFIG_SMP
94 desc->cpu = cpu;
95#endif
96 lockdep_set_class(&desc->lock, &irq_desc_lock_class);
97 init_kstat_irqs(desc, cpu, nr_cpu_ids);
98 if (!desc->kstat_irqs) {
99 printk(KERN_ERR "can not alloc kstat_irqs\n");
100 BUG_ON(1);
101 }
Mike Travis802bf932009-01-10 21:58:09 -0800102 if (!init_alloc_desc_masks(desc, cpu, false)) {
Mike Travis7f7ace02009-01-10 21:58:08 -0800103 printk(KERN_ERR "can not alloc irq_desc cpumasks\n");
104 BUG_ON(1);
105 }
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800106 arch_init_chip_data(desc, cpu);
107}
108
109/*
110 * Protect the sparse_irqs:
111 */
Yinghai Lu48a1b102008-12-11 00:15:01 -0800112DEFINE_SPINLOCK(sparse_irq_lock);
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800113
Mike Travis0fa0ebb2009-01-10 22:24:06 -0800114struct irq_desc **irq_desc_ptrs __read_mostly;
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800115
Yinghai Lu99d093d2008-12-05 18:58:32 -0800116static struct irq_desc irq_desc_legacy[NR_IRQS_LEGACY] __cacheline_aligned_in_smp = {
117 [0 ... NR_IRQS_LEGACY-1] = {
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800118 .irq = -1,
119 .status = IRQ_DISABLED,
120 .chip = &no_irq_chip,
121 .handle_irq = handle_bad_irq,
122 .depth = 1,
123 .lock = __SPIN_LOCK_UNLOCKED(irq_desc_init.lock),
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800124 }
125};
126
127/* FIXME: use bootmem alloc ...*/
Yinghai Lu99d093d2008-12-05 18:58:32 -0800128static unsigned int kstat_irqs_legacy[NR_IRQS_LEGACY][NR_CPUS];
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800129
Yinghai Lu13a0c3c2008-12-26 02:05:47 -0800130int __init early_irq_init(void)
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800131{
132 struct irq_desc *desc;
133 int legacy_count;
134 int i;
135
Mike Travis95949492009-01-10 22:24:06 -0800136 printk(KERN_INFO "NR_IRQS:%d nr_irqs:%d\n", NR_IRQS, nr_irqs);
137
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800138 desc = irq_desc_legacy;
139 legacy_count = ARRAY_SIZE(irq_desc_legacy);
140
Mike Travis0fa0ebb2009-01-10 22:24:06 -0800141 /* allocate irq_desc_ptrs array based on nr_irqs */
142 irq_desc_ptrs = alloc_bootmem(nr_irqs * sizeof(void *));
143
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800144 for (i = 0; i < legacy_count; i++) {
145 desc[i].irq = i;
146 desc[i].kstat_irqs = kstat_irqs_legacy[i];
Yinghai Lufa6beb32008-12-22 20:24:09 -0800147 lockdep_set_class(&desc[i].lock, &irq_desc_lock_class);
Mike Travis7f7ace02009-01-10 21:58:08 -0800148 init_alloc_desc_masks(&desc[i], 0, true);
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800149 irq_desc_ptrs[i] = desc + i;
150 }
151
Mike Travis95949492009-01-10 22:24:06 -0800152 for (i = legacy_count; i < nr_irqs; i++)
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800153 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{
Mike Travis0fa0ebb2009-01-10 22:24:06 -0800160 if (irq_desc_ptrs && irq < nr_irqs)
161 return irq_desc_ptrs[irq];
162
163 return NULL;
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800164}
165
166struct irq_desc *irq_to_desc_alloc_cpu(unsigned int irq, int cpu)
167{
168 struct irq_desc *desc;
169 unsigned long flags;
170 int node;
171
Mike Travis95949492009-01-10 22:24:06 -0800172 if (irq >= nr_irqs) {
Mike Travise2f4d062009-01-10 22:24:06 -0800173 WARN(1, "irq (%d) >= nr_irqs (%d) in irq_to_desc_alloc\n",
174 irq, nr_irqs);
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800175 return NULL;
176 }
177
178 desc = irq_desc_ptrs[irq];
179 if (desc)
180 return desc;
181
182 spin_lock_irqsave(&sparse_irq_lock, flags);
183
184 /* We have to check it to avoid races with another CPU */
185 desc = irq_desc_ptrs[irq];
186 if (desc)
187 goto out_unlock;
188
189 node = cpu_to_node(cpu);
190 desc = kzalloc_node(sizeof(*desc), GFP_ATOMIC, node);
191 printk(KERN_DEBUG " alloc irq_desc for %d on cpu %d node %d\n",
192 irq, cpu, node);
193 if (!desc) {
194 printk(KERN_ERR "can not alloc irq_desc\n");
195 BUG_ON(1);
196 }
197 init_one_irq_desc(irq, desc, cpu);
198
199 irq_desc_ptrs[irq] = desc;
200
201out_unlock:
202 spin_unlock_irqrestore(&sparse_irq_lock, flags);
203
204 return desc;
205}
206
KOSAKI Motohirof9af0e72008-12-26 12:24:24 +0900207#else /* !CONFIG_SPARSE_IRQ */
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800208
Ravikiran G Thirumalaie729aa12007-05-08 00:29:13 -0700209struct irq_desc irq_desc[NR_IRQS] __cacheline_aligned_in_smp = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210 [0 ... NR_IRQS-1] = {
Zhang, Yanmin4f167fb2005-05-16 21:53:43 -0700211 .status = IRQ_DISABLED,
Ingo Molnarf1c26622006-06-29 02:24:57 -0700212 .chip = &no_irq_chip,
Ingo Molnar7a557132006-06-29 02:24:54 -0700213 .handle_irq = handle_bad_irq,
Thomas Gleixner94d39e12006-06-29 02:24:50 -0700214 .depth = 1,
Yinghai Luaac3f2b2008-09-24 19:04:35 -0700215 .lock = __SPIN_LOCK_UNLOCKED(irq_desc->lock),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 }
217};
Yinghai Lu08678b02008-08-19 20:50:05 -0700218
Yinghai Lu12026ea2008-12-26 22:38:15 -0800219int __init early_irq_init(void)
220{
221 struct irq_desc *desc;
222 int count;
223 int i;
224
Mike Travis95949492009-01-10 22:24:06 -0800225 printk(KERN_INFO "NR_IRQS:%d\n", NR_IRQS);
226
Yinghai Lu12026ea2008-12-26 22:38:15 -0800227 desc = irq_desc;
228 count = ARRAY_SIZE(irq_desc);
229
Mike Travis7f7ace02009-01-10 21:58:08 -0800230 for (i = 0; i < count; i++) {
Yinghai Lu12026ea2008-12-26 22:38:15 -0800231 desc[i].irq = i;
Mike Travis7f7ace02009-01-10 21:58:08 -0800232 init_alloc_desc_masks(&desc[i], 0, true);
233 }
Yinghai Lu12026ea2008-12-26 22:38:15 -0800234 return arch_early_irq_init();
235}
236
KOSAKI Motohirof9af0e72008-12-26 12:24:24 +0900237struct irq_desc *irq_to_desc(unsigned int irq)
238{
239 return (irq < NR_IRQS) ? irq_desc + irq : NULL;
240}
241
242struct irq_desc *irq_to_desc_alloc_cpu(unsigned int irq, int cpu)
243{
244 return irq_to_desc(irq);
245}
246#endif /* !CONFIG_SPARSE_IRQ */
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800247
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248/*
Ingo Molnar77a5afe2006-06-29 02:24:46 -0700249 * What should we do if we get a hw irq event on an illegal vector?
250 * Each architecture has to answer this themself.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251 */
Ingo Molnar77a5afe2006-06-29 02:24:46 -0700252static void ack_bad(unsigned int irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253{
Thomas Gleixnerd3c60042008-10-16 09:55:00 +0200254 struct irq_desc *desc = irq_to_desc(irq);
Yinghai Lu08678b02008-08-19 20:50:05 -0700255
Yinghai Lu08678b02008-08-19 20:50:05 -0700256 print_irq_desc(irq, desc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257 ack_bad_irq(irq);
258}
259
Ingo Molnar77a5afe2006-06-29 02:24:46 -0700260/*
261 * NOP functions
262 */
263static void noop(unsigned int irq)
264{
265}
266
267static unsigned int noop_ret(unsigned int irq)
268{
269 return 0;
270}
271
272/*
273 * Generic no controller implementation
274 */
Ingo Molnarf1c26622006-06-29 02:24:57 -0700275struct irq_chip no_irq_chip = {
276 .name = "none",
Ingo Molnar77a5afe2006-06-29 02:24:46 -0700277 .startup = noop_ret,
278 .shutdown = noop,
279 .enable = noop,
280 .disable = noop,
281 .ack = ack_bad,
282 .end = noop,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283};
284
285/*
Thomas Gleixnerf8b54732006-07-01 22:30:08 +0100286 * Generic dummy implementation which can be used for
287 * real dumb interrupt sources
288 */
289struct irq_chip dummy_irq_chip = {
290 .name = "dummy",
291 .startup = noop_ret,
292 .shutdown = noop,
293 .enable = noop,
294 .disable = noop,
295 .ack = noop,
296 .mask = noop,
297 .unmask = noop,
298 .end = noop,
299};
300
301/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302 * Special, empty irq handler:
303 */
David Howells7d12e782006-10-05 14:55:46 +0100304irqreturn_t no_action(int cpl, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305{
306 return IRQ_NONE;
307}
308
Ingo Molnar8d28bc72006-06-29 02:24:46 -0700309/**
310 * handle_IRQ_event - irq action chain handler
311 * @irq: the interrupt number
Ingo Molnar8d28bc72006-06-29 02:24:46 -0700312 * @action: the interrupt action chain for this irq
313 *
314 * Handles the action chain of an irq event
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315 */
David Howells7d12e782006-10-05 14:55:46 +0100316irqreturn_t handle_IRQ_event(unsigned int irq, struct irqaction *action)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317{
Jan Beulich908dcec2006-06-23 02:06:00 -0700318 irqreturn_t ret, retval = IRQ_NONE;
319 unsigned int status = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320
Thomas Gleixner3cca53b2006-07-01 19:29:31 -0700321 if (!(action->flags & IRQF_DISABLED))
Ingo Molnar366c7f52006-07-03 00:25:25 -0700322 local_irq_enable_in_hardirq();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323
324 do {
David Howells7d12e782006-10-05 14:55:46 +0100325 ret = action->handler(irq, action->dev_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326 if (ret == IRQ_HANDLED)
327 status |= action->flags;
328 retval |= ret;
329 action = action->next;
330 } while (action);
331
Thomas Gleixner3cca53b2006-07-01 19:29:31 -0700332 if (status & IRQF_SAMPLE_RANDOM)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333 add_interrupt_randomness(irq);
334 local_irq_disable();
335
336 return retval;
337}
338
David Howellsaf8c65b2006-09-25 23:32:07 -0700339#ifndef CONFIG_GENERIC_HARDIRQS_NO__DO_IRQ
Ingo Molnar8d28bc72006-06-29 02:24:46 -0700340/**
341 * __do_IRQ - original all in one highlevel IRQ handler
342 * @irq: the interrupt number
Ingo Molnar8d28bc72006-06-29 02:24:46 -0700343 *
344 * __do_IRQ handles all normal device IRQ's (the special
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345 * SMP cross-CPU interrupts have their own specific
346 * handlers).
Ingo Molnar8d28bc72006-06-29 02:24:46 -0700347 *
348 * This is the original x86 implementation which is used for every
349 * interrupt type.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350 */
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -0800351unsigned int __do_IRQ(unsigned int irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352{
Yinghai Lu08678b02008-08-19 20:50:05 -0700353 struct irq_desc *desc = irq_to_desc(irq);
Ingo Molnar06fcb0c2006-06-29 02:24:40 -0700354 struct irqaction *action;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355 unsigned int status;
356
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +0200357 kstat_incr_irqs_this_cpu(irq, desc);
358
Karsten Wiesef26fdd52005-09-06 15:17:25 -0700359 if (CHECK_IRQ_PER_CPU(desc->status)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360 irqreturn_t action_ret;
361
362 /*
363 * No locking required for CPU-local interrupts:
364 */
Yinghai Lu48a1b102008-12-11 00:15:01 -0800365 if (desc->chip->ack) {
Ingo Molnard1bef4e2006-06-29 02:24:36 -0700366 desc->chip->ack(irq);
Yinghai Lu48a1b102008-12-11 00:15:01 -0800367 /* get new one */
368 desc = irq_remap_to_desc(irq, desc);
369 }
Russ Andersonc642b832007-11-14 17:00:15 -0800370 if (likely(!(desc->status & IRQ_DISABLED))) {
371 action_ret = handle_IRQ_event(irq, desc->action);
372 if (!noirqdebug)
373 note_interrupt(irq, desc, action_ret);
374 }
Ingo Molnard1bef4e2006-06-29 02:24:36 -0700375 desc->chip->end(irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376 return 1;
377 }
378
379 spin_lock(&desc->lock);
Yinghai Lu48a1b102008-12-11 00:15:01 -0800380 if (desc->chip->ack) {
Ingo Molnard1bef4e2006-06-29 02:24:36 -0700381 desc->chip->ack(irq);
Yinghai Lu48a1b102008-12-11 00:15:01 -0800382 desc = irq_remap_to_desc(irq, desc);
383 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384 /*
385 * REPLAY is when Linux resends an IRQ that was dropped earlier
386 * WAITING is used by probe to mark irqs that are being tested
387 */
388 status = desc->status & ~(IRQ_REPLAY | IRQ_WAITING);
389 status |= IRQ_PENDING; /* we _want_ to handle it */
390
391 /*
392 * If the IRQ is disabled for whatever reason, we cannot
393 * use the action we have.
394 */
395 action = NULL;
396 if (likely(!(status & (IRQ_DISABLED | IRQ_INPROGRESS)))) {
397 action = desc->action;
398 status &= ~IRQ_PENDING; /* we commit to handling */
399 status |= IRQ_INPROGRESS; /* we are handling it */
400 }
401 desc->status = status;
402
403 /*
404 * If there is no IRQ handler or it was disabled, exit early.
405 * Since we set PENDING, if another processor is handling
406 * a different instance of this same irq, the other processor
407 * will take care of it.
408 */
409 if (unlikely(!action))
410 goto out;
411
412 /*
413 * Edge triggered interrupts need to remember
414 * pending events.
415 * This applies to any hw interrupts that allow a second
416 * instance of the same irq to arrive while we are in do_IRQ
417 * or in the handler. But the code here only handles the _second_
418 * instance of the irq, not the third or fourth. So it is mostly
419 * useful for irq hardware that does not mask cleanly in an
420 * SMP environment.
421 */
422 for (;;) {
423 irqreturn_t action_ret;
424
425 spin_unlock(&desc->lock);
426
David Howells7d12e782006-10-05 14:55:46 +0100427 action_ret = handle_IRQ_event(irq, action);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 if (!noirqdebug)
David Howells7d12e782006-10-05 14:55:46 +0100429 note_interrupt(irq, desc, action_ret);
Linus Torvaldsb42172f2006-11-22 09:32:06 -0800430
431 spin_lock(&desc->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 if (likely(!(desc->status & IRQ_PENDING)))
433 break;
434 desc->status &= ~IRQ_PENDING;
435 }
436 desc->status &= ~IRQ_INPROGRESS;
437
438out:
439 /*
440 * The ->end() handler has to deal with interrupts which got
441 * disabled while the handler was running.
442 */
Ingo Molnard1bef4e2006-06-29 02:24:36 -0700443 desc->chip->end(irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444 spin_unlock(&desc->lock);
445
446 return 1;
447}
David Howellsaf8c65b2006-09-25 23:32:07 -0700448#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449
Ingo Molnar243c7622006-07-03 00:25:06 -0700450void early_init_irq_lock_class(void)
451{
Thomas Gleixner10e58082008-10-16 14:19:04 +0200452 struct irq_desc *desc;
Ingo Molnar243c7622006-07-03 00:25:06 -0700453 int i;
454
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800455 for_each_irq_desc(i, desc) {
Thomas Gleixner10e58082008-10-16 14:19:04 +0200456 lockdep_set_class(&desc->lock, &irq_desc_lock_class);
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800457 }
Yinghai Lu08678b02008-08-19 20:50:05 -0700458}
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800459
460#ifdef CONFIG_SPARSE_IRQ
461unsigned int kstat_irqs_cpu(unsigned int irq, int cpu)
462{
463 struct irq_desc *desc = irq_to_desc(irq);
KOSAKI Motohiro26ddd8d2008-12-26 14:24:10 +0900464 return desc ? desc->kstat_irqs[cpu] : 0;
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800465}
466#endif
467EXPORT_SYMBOL(kstat_irqs_cpu);
468