blob: 38b49a9e508a77be0670f48b2f970c0b01df0f0a [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
David Daney97179fd2009-01-27 09:53:22 -080043#if defined(CONFIG_SMP) && defined(CONFIG_GENERIC_HARDIRQS)
44static void __init init_irq_default_affinity(void)
45{
46 alloc_bootmem_cpumask_var(&irq_default_affinity);
47 cpumask_setall(irq_default_affinity);
48}
49#else
50static void __init init_irq_default_affinity(void)
51{
52}
53#endif
54
Linus Torvalds1da177e2005-04-16 15:20:36 -070055/*
56 * Linux has a controller-independent interrupt architecture.
57 * Every controller has a 'controller-template', that is used
58 * by the main code to do the right thing. Each driver-visible
Ingo Molnar06fcb0c2006-06-29 02:24:40 -070059 * interrupt source is transparently wired to the appropriate
Linus Torvalds1da177e2005-04-16 15:20:36 -070060 * controller. Thus drivers need not be aware of the
61 * interrupt-controller.
62 *
63 * The code is designed to be easily extended with new/different
64 * interrupt controllers, without having to do assembly magic or
65 * having to touch the generic code.
66 *
67 * Controller mappings for all interrupt sources:
68 */
Yinghai Lu85c0f902008-08-19 20:49:47 -070069int nr_irqs = NR_IRQS;
Ingo Molnarfa42d102008-08-19 20:50:30 -070070EXPORT_SYMBOL_GPL(nr_irqs);
Yinghai Lud60458b2008-08-19 20:50:00 -070071
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -080072#ifdef CONFIG_SPARSE_IRQ
Mike Travis92296c62009-01-11 09:22:58 -080073
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -080074static struct irq_desc irq_desc_init = {
75 .irq = -1,
76 .status = IRQ_DISABLED,
77 .chip = &no_irq_chip,
78 .handle_irq = handle_bad_irq,
79 .depth = 1,
80 .lock = __SPIN_LOCK_UNLOCKED(irq_desc_init.lock),
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -080081};
82
Yinghai Lu48a1b102008-12-11 00:15:01 -080083void init_kstat_irqs(struct irq_desc *desc, int cpu, int nr)
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -080084{
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -080085 int node;
Yinghai Lu005bf0e62009-02-08 16:18:03 -080086 void *ptr;
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -080087
88 node = cpu_to_node(cpu);
Yinghai Lu005bf0e62009-02-08 16:18:03 -080089 ptr = kzalloc_node(nr * sizeof(*desc->kstat_irqs), GFP_ATOMIC, node);
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -080090
Yinghai Lu005bf0e62009-02-08 16:18:03 -080091 /*
92 * don't overwite if can not get new one
93 * init_copy_kstat_irqs() could still use old one
94 */
95 if (ptr) {
96 printk(KERN_DEBUG " alloc kstat_irqs on cpu %d node %d\n",
97 cpu, node);
98 desc->kstat_irqs = ptr;
99 }
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800100}
101
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800102static void init_one_irq_desc(int irq, struct irq_desc *desc, int cpu)
103{
104 memcpy(desc, &irq_desc_init, sizeof(struct irq_desc));
Ingo Molnar793f7b12008-12-26 19:02:20 +0100105
106 spin_lock_init(&desc->lock);
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800107 desc->irq = irq;
108#ifdef CONFIG_SMP
109 desc->cpu = cpu;
110#endif
111 lockdep_set_class(&desc->lock, &irq_desc_lock_class);
112 init_kstat_irqs(desc, cpu, nr_cpu_ids);
113 if (!desc->kstat_irqs) {
114 printk(KERN_ERR "can not alloc kstat_irqs\n");
115 BUG_ON(1);
116 }
Mike Travis802bf932009-01-10 21:58:09 -0800117 if (!init_alloc_desc_masks(desc, cpu, false)) {
Mike Travis7f7ace02009-01-10 21:58:08 -0800118 printk(KERN_ERR "can not alloc irq_desc cpumasks\n");
119 BUG_ON(1);
120 }
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800121 arch_init_chip_data(desc, cpu);
122}
123
124/*
125 * Protect the sparse_irqs:
126 */
Yinghai Lu48a1b102008-12-11 00:15:01 -0800127DEFINE_SPINLOCK(sparse_irq_lock);
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800128
Mike Travis0fa0ebb2009-01-10 22:24:06 -0800129struct irq_desc **irq_desc_ptrs __read_mostly;
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800130
Yinghai Lu99d093d2008-12-05 18:58:32 -0800131static struct irq_desc irq_desc_legacy[NR_IRQS_LEGACY] __cacheline_aligned_in_smp = {
132 [0 ... NR_IRQS_LEGACY-1] = {
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800133 .irq = -1,
134 .status = IRQ_DISABLED,
135 .chip = &no_irq_chip,
136 .handle_irq = handle_bad_irq,
137 .depth = 1,
138 .lock = __SPIN_LOCK_UNLOCKED(irq_desc_init.lock),
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800139 }
140};
141
Mike Travis542d8652009-01-10 22:24:07 -0800142static unsigned int *kstat_irqs_legacy;
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800143
Yinghai Lu13a0c3c2008-12-26 02:05:47 -0800144int __init early_irq_init(void)
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800145{
146 struct irq_desc *desc;
147 int legacy_count;
148 int i;
149
David Daney97179fd2009-01-27 09:53:22 -0800150 init_irq_default_affinity();
151
Yinghai Lu4a046d12009-01-12 17:39:24 -0800152 /* initialize nr_irqs based on nr_cpu_ids */
153 arch_probe_nr_irqs();
Mike Travis95949492009-01-10 22:24:06 -0800154 printk(KERN_INFO "NR_IRQS:%d nr_irqs:%d\n", NR_IRQS, nr_irqs);
155
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800156 desc = irq_desc_legacy;
157 legacy_count = ARRAY_SIZE(irq_desc_legacy);
158
Mike Travis0fa0ebb2009-01-10 22:24:06 -0800159 /* allocate irq_desc_ptrs array based on nr_irqs */
160 irq_desc_ptrs = alloc_bootmem(nr_irqs * sizeof(void *));
161
Mike Travis542d8652009-01-10 22:24:07 -0800162 /* allocate based on nr_cpu_ids */
163 /* FIXME: invert kstat_irgs, and it'd be a per_cpu_alloc'd thing */
164 kstat_irqs_legacy = alloc_bootmem(NR_IRQS_LEGACY * nr_cpu_ids *
165 sizeof(int));
166
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800167 for (i = 0; i < legacy_count; i++) {
168 desc[i].irq = i;
Mike Travis542d8652009-01-10 22:24:07 -0800169 desc[i].kstat_irqs = kstat_irqs_legacy + i * nr_cpu_ids;
Yinghai Lufa6beb32008-12-22 20:24:09 -0800170 lockdep_set_class(&desc[i].lock, &irq_desc_lock_class);
Mike Travis7f7ace02009-01-10 21:58:08 -0800171 init_alloc_desc_masks(&desc[i], 0, true);
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800172 irq_desc_ptrs[i] = desc + i;
173 }
174
Mike Travis95949492009-01-10 22:24:06 -0800175 for (i = legacy_count; i < nr_irqs; i++)
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800176 irq_desc_ptrs[i] = NULL;
177
Yinghai Lu13a0c3c2008-12-26 02:05:47 -0800178 return arch_early_irq_init();
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800179}
180
181struct irq_desc *irq_to_desc(unsigned int irq)
182{
Mike Travis0fa0ebb2009-01-10 22:24:06 -0800183 if (irq_desc_ptrs && irq < nr_irqs)
184 return irq_desc_ptrs[irq];
185
186 return NULL;
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800187}
188
189struct irq_desc *irq_to_desc_alloc_cpu(unsigned int irq, int cpu)
190{
191 struct irq_desc *desc;
192 unsigned long flags;
193 int node;
194
Mike Travis95949492009-01-10 22:24:06 -0800195 if (irq >= nr_irqs) {
Mike Travise2f4d062009-01-10 22:24:06 -0800196 WARN(1, "irq (%d) >= nr_irqs (%d) in irq_to_desc_alloc\n",
197 irq, nr_irqs);
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800198 return NULL;
199 }
200
201 desc = irq_desc_ptrs[irq];
202 if (desc)
203 return desc;
204
205 spin_lock_irqsave(&sparse_irq_lock, flags);
206
207 /* We have to check it to avoid races with another CPU */
208 desc = irq_desc_ptrs[irq];
209 if (desc)
210 goto out_unlock;
211
212 node = cpu_to_node(cpu);
213 desc = kzalloc_node(sizeof(*desc), GFP_ATOMIC, node);
214 printk(KERN_DEBUG " alloc irq_desc for %d on cpu %d node %d\n",
215 irq, cpu, node);
216 if (!desc) {
217 printk(KERN_ERR "can not alloc irq_desc\n");
218 BUG_ON(1);
219 }
220 init_one_irq_desc(irq, desc, cpu);
221
222 irq_desc_ptrs[irq] = desc;
223
224out_unlock:
225 spin_unlock_irqrestore(&sparse_irq_lock, flags);
226
227 return desc;
228}
229
KOSAKI Motohirof9af0e72008-12-26 12:24:24 +0900230#else /* !CONFIG_SPARSE_IRQ */
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800231
Ravikiran G Thirumalaie729aa12007-05-08 00:29:13 -0700232struct irq_desc irq_desc[NR_IRQS] __cacheline_aligned_in_smp = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233 [0 ... NR_IRQS-1] = {
Zhang, Yanmin4f167fb2005-05-16 21:53:43 -0700234 .status = IRQ_DISABLED,
Ingo Molnarf1c26622006-06-29 02:24:57 -0700235 .chip = &no_irq_chip,
Ingo Molnar7a557132006-06-29 02:24:54 -0700236 .handle_irq = handle_bad_irq,
Thomas Gleixner94d39e12006-06-29 02:24:50 -0700237 .depth = 1,
Yinghai Luaac3f2b2008-09-24 19:04:35 -0700238 .lock = __SPIN_LOCK_UNLOCKED(irq_desc->lock),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239 }
240};
Yinghai Lu08678b02008-08-19 20:50:05 -0700241
Yinghai Lud7e51e62009-01-07 15:03:13 -0800242static unsigned int kstat_irqs_all[NR_IRQS][NR_CPUS];
Yinghai Lu12026ea2008-12-26 22:38:15 -0800243int __init early_irq_init(void)
244{
245 struct irq_desc *desc;
246 int count;
247 int i;
248
David Daney97179fd2009-01-27 09:53:22 -0800249 init_irq_default_affinity();
250
Mike Travis95949492009-01-10 22:24:06 -0800251 printk(KERN_INFO "NR_IRQS:%d\n", NR_IRQS);
252
Yinghai Lu12026ea2008-12-26 22:38:15 -0800253 desc = irq_desc;
254 count = ARRAY_SIZE(irq_desc);
255
Yinghai Lud7e51e62009-01-07 15:03:13 -0800256 for (i = 0; i < count; i++) {
Yinghai Lu12026ea2008-12-26 22:38:15 -0800257 desc[i].irq = i;
Mike Travis7f7ace02009-01-10 21:58:08 -0800258 init_alloc_desc_masks(&desc[i], 0, true);
Yinghai Lud7e51e62009-01-07 15:03:13 -0800259 desc[i].kstat_irqs = kstat_irqs_all[i];
260 }
Yinghai Lu12026ea2008-12-26 22:38:15 -0800261 return arch_early_irq_init();
262}
263
KOSAKI Motohirof9af0e72008-12-26 12:24:24 +0900264struct irq_desc *irq_to_desc(unsigned int irq)
265{
266 return (irq < NR_IRQS) ? irq_desc + irq : NULL;
267}
268
269struct irq_desc *irq_to_desc_alloc_cpu(unsigned int irq, int cpu)
270{
271 return irq_to_desc(irq);
272}
273#endif /* !CONFIG_SPARSE_IRQ */
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800274
Yinghai Lu0f3c2a82009-02-08 16:18:03 -0800275void clear_kstat_irqs(struct irq_desc *desc)
276{
277 memset(desc->kstat_irqs, 0, nr_cpu_ids * sizeof(*(desc->kstat_irqs)));
278}
279
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280/*
Ingo Molnar77a5afe2006-06-29 02:24:46 -0700281 * What should we do if we get a hw irq event on an illegal vector?
282 * Each architecture has to answer this themself.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283 */
Ingo Molnar77a5afe2006-06-29 02:24:46 -0700284static void ack_bad(unsigned int irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285{
Thomas Gleixnerd3c60042008-10-16 09:55:00 +0200286 struct irq_desc *desc = irq_to_desc(irq);
Yinghai Lu08678b02008-08-19 20:50:05 -0700287
Yinghai Lu08678b02008-08-19 20:50:05 -0700288 print_irq_desc(irq, desc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289 ack_bad_irq(irq);
290}
291
Ingo Molnar77a5afe2006-06-29 02:24:46 -0700292/*
293 * NOP functions
294 */
295static void noop(unsigned int irq)
296{
297}
298
299static unsigned int noop_ret(unsigned int irq)
300{
301 return 0;
302}
303
304/*
305 * Generic no controller implementation
306 */
Ingo Molnarf1c26622006-06-29 02:24:57 -0700307struct irq_chip no_irq_chip = {
308 .name = "none",
Ingo Molnar77a5afe2006-06-29 02:24:46 -0700309 .startup = noop_ret,
310 .shutdown = noop,
311 .enable = noop,
312 .disable = noop,
313 .ack = ack_bad,
314 .end = noop,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315};
316
317/*
Thomas Gleixnerf8b54732006-07-01 22:30:08 +0100318 * Generic dummy implementation which can be used for
319 * real dumb interrupt sources
320 */
321struct irq_chip dummy_irq_chip = {
322 .name = "dummy",
323 .startup = noop_ret,
324 .shutdown = noop,
325 .enable = noop,
326 .disable = noop,
327 .ack = noop,
328 .mask = noop,
329 .unmask = noop,
330 .end = noop,
331};
332
333/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334 * Special, empty irq handler:
335 */
David Howells7d12e782006-10-05 14:55:46 +0100336irqreturn_t no_action(int cpl, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337{
338 return IRQ_NONE;
339}
340
Thomas Gleixnerf48fe812009-03-24 11:46:22 +0100341static void warn_no_thread(unsigned int irq, struct irqaction *action)
342{
343 if (test_and_set_bit(IRQTF_WARNED, &action->thread_flags))
344 return;
345
346 printk(KERN_WARNING "IRQ %d device %s returned IRQ_WAKE_THREAD "
347 "but no thread function available.", irq, action->name);
348}
349
Ingo Molnar8d28bc72006-06-29 02:24:46 -0700350/**
351 * handle_IRQ_event - irq action chain handler
352 * @irq: the interrupt number
Ingo Molnar8d28bc72006-06-29 02:24:46 -0700353 * @action: the interrupt action chain for this irq
354 *
355 * Handles the action chain of an irq event
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356 */
David Howells7d12e782006-10-05 14:55:46 +0100357irqreturn_t handle_IRQ_event(unsigned int irq, struct irqaction *action)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358{
Jan Beulich908dcec2006-06-23 02:06:00 -0700359 irqreturn_t ret, retval = IRQ_NONE;
360 unsigned int status = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361
Peter Zijlstra044d4082009-03-02 16:13:32 +0100362 WARN_ONCE(!in_irq(), "BUG: IRQ handler called from non-hardirq context!");
363
Thomas Gleixner3cca53b2006-07-01 19:29:31 -0700364 if (!(action->flags & IRQF_DISABLED))
Ingo Molnar366c7f52006-07-03 00:25:25 -0700365 local_irq_enable_in_hardirq();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366
367 do {
David Howells7d12e782006-10-05 14:55:46 +0100368 ret = action->handler(irq, action->dev_id);
Thomas Gleixner3aa551c2009-03-23 18:28:15 +0100369
370 switch (ret) {
371 case IRQ_WAKE_THREAD:
372 /*
Thomas Gleixnerf48fe812009-03-24 11:46:22 +0100373 * Set result to handled so the spurious check
374 * does not trigger.
375 */
376 ret = IRQ_HANDLED;
377
378 /*
379 * Catch drivers which return WAKE_THREAD but
380 * did not set up a thread function
381 */
382 if (unlikely(!action->thread_fn)) {
383 warn_no_thread(irq, action);
384 break;
385 }
386
387 /*
Thomas Gleixner3aa551c2009-03-23 18:28:15 +0100388 * Wake up the handler thread for this
389 * action. In case the thread crashed and was
390 * killed we just pretend that we handled the
391 * interrupt. The hardirq handler above has
392 * disabled the device interrupt, so no irq
393 * storm is lurking.
394 */
395 if (likely(!test_bit(IRQTF_DIED,
396 &action->thread_flags))) {
397 set_bit(IRQTF_RUNTHREAD, &action->thread_flags);
398 wake_up_process(action->thread);
399 }
400
Thomas Gleixner3aa551c2009-03-23 18:28:15 +0100401 /* Fall through to add to randomness */
402 case IRQ_HANDLED:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403 status |= action->flags;
Thomas Gleixner3aa551c2009-03-23 18:28:15 +0100404 break;
405
406 default:
407 break;
408 }
409
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410 retval |= ret;
411 action = action->next;
412 } while (action);
413
Thomas Gleixner3cca53b2006-07-01 19:29:31 -0700414 if (status & IRQF_SAMPLE_RANDOM)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415 add_interrupt_randomness(irq);
416 local_irq_disable();
417
418 return retval;
419}
420
David Howellsaf8c65b2006-09-25 23:32:07 -0700421#ifndef CONFIG_GENERIC_HARDIRQS_NO__DO_IRQ
Thomas Gleixner0e57aa12009-03-13 14:34:05 +0100422
423#ifdef CONFIG_ENABLE_WARN_DEPRECATED
424# warning __do_IRQ is deprecated. Please convert to proper flow handlers
425#endif
426
Ingo Molnar8d28bc72006-06-29 02:24:46 -0700427/**
428 * __do_IRQ - original all in one highlevel IRQ handler
429 * @irq: the interrupt number
Ingo Molnar8d28bc72006-06-29 02:24:46 -0700430 *
431 * __do_IRQ handles all normal device IRQ's (the special
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 * SMP cross-CPU interrupts have their own specific
433 * handlers).
Ingo Molnar8d28bc72006-06-29 02:24:46 -0700434 *
435 * This is the original x86 implementation which is used for every
436 * interrupt type.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437 */
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -0800438unsigned int __do_IRQ(unsigned int irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439{
Yinghai Lu08678b02008-08-19 20:50:05 -0700440 struct irq_desc *desc = irq_to_desc(irq);
Ingo Molnar06fcb0c2006-06-29 02:24:40 -0700441 struct irqaction *action;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442 unsigned int status;
443
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +0200444 kstat_incr_irqs_this_cpu(irq, desc);
445
Karsten Wiesef26fdd52005-09-06 15:17:25 -0700446 if (CHECK_IRQ_PER_CPU(desc->status)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447 irqreturn_t action_ret;
448
449 /*
450 * No locking required for CPU-local interrupts:
451 */
Yinghai Lu48a1b102008-12-11 00:15:01 -0800452 if (desc->chip->ack) {
Ingo Molnard1bef4e2006-06-29 02:24:36 -0700453 desc->chip->ack(irq);
Yinghai Lu48a1b102008-12-11 00:15:01 -0800454 /* get new one */
455 desc = irq_remap_to_desc(irq, desc);
456 }
Russ Andersonc642b832007-11-14 17:00:15 -0800457 if (likely(!(desc->status & IRQ_DISABLED))) {
458 action_ret = handle_IRQ_event(irq, desc->action);
459 if (!noirqdebug)
460 note_interrupt(irq, desc, action_ret);
461 }
Ingo Molnard1bef4e2006-06-29 02:24:36 -0700462 desc->chip->end(irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463 return 1;
464 }
465
466 spin_lock(&desc->lock);
Yinghai Lu48a1b102008-12-11 00:15:01 -0800467 if (desc->chip->ack) {
Ingo Molnard1bef4e2006-06-29 02:24:36 -0700468 desc->chip->ack(irq);
Yinghai Lu48a1b102008-12-11 00:15:01 -0800469 desc = irq_remap_to_desc(irq, desc);
470 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471 /*
472 * REPLAY is when Linux resends an IRQ that was dropped earlier
473 * WAITING is used by probe to mark irqs that are being tested
474 */
475 status = desc->status & ~(IRQ_REPLAY | IRQ_WAITING);
476 status |= IRQ_PENDING; /* we _want_ to handle it */
477
478 /*
479 * If the IRQ is disabled for whatever reason, we cannot
480 * use the action we have.
481 */
482 action = NULL;
483 if (likely(!(status & (IRQ_DISABLED | IRQ_INPROGRESS)))) {
484 action = desc->action;
485 status &= ~IRQ_PENDING; /* we commit to handling */
486 status |= IRQ_INPROGRESS; /* we are handling it */
487 }
488 desc->status = status;
489
490 /*
491 * If there is no IRQ handler or it was disabled, exit early.
492 * Since we set PENDING, if another processor is handling
493 * a different instance of this same irq, the other processor
494 * will take care of it.
495 */
496 if (unlikely(!action))
497 goto out;
498
499 /*
500 * Edge triggered interrupts need to remember
501 * pending events.
502 * This applies to any hw interrupts that allow a second
503 * instance of the same irq to arrive while we are in do_IRQ
504 * or in the handler. But the code here only handles the _second_
505 * instance of the irq, not the third or fourth. So it is mostly
506 * useful for irq hardware that does not mask cleanly in an
507 * SMP environment.
508 */
509 for (;;) {
510 irqreturn_t action_ret;
511
512 spin_unlock(&desc->lock);
513
David Howells7d12e782006-10-05 14:55:46 +0100514 action_ret = handle_IRQ_event(irq, action);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515 if (!noirqdebug)
David Howells7d12e782006-10-05 14:55:46 +0100516 note_interrupt(irq, desc, action_ret);
Linus Torvaldsb42172f2006-11-22 09:32:06 -0800517
518 spin_lock(&desc->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519 if (likely(!(desc->status & IRQ_PENDING)))
520 break;
521 desc->status &= ~IRQ_PENDING;
522 }
523 desc->status &= ~IRQ_INPROGRESS;
524
525out:
526 /*
527 * The ->end() handler has to deal with interrupts which got
528 * disabled while the handler was running.
529 */
Ingo Molnard1bef4e2006-06-29 02:24:36 -0700530 desc->chip->end(irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 spin_unlock(&desc->lock);
532
533 return 1;
534}
David Howellsaf8c65b2006-09-25 23:32:07 -0700535#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536
Ingo Molnar243c7622006-07-03 00:25:06 -0700537void early_init_irq_lock_class(void)
538{
Thomas Gleixner10e58082008-10-16 14:19:04 +0200539 struct irq_desc *desc;
Ingo Molnar243c7622006-07-03 00:25:06 -0700540 int i;
541
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800542 for_each_irq_desc(i, desc) {
Thomas Gleixner10e58082008-10-16 14:19:04 +0200543 lockdep_set_class(&desc->lock, &irq_desc_lock_class);
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800544 }
Yinghai Lu08678b02008-08-19 20:50:05 -0700545}
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800546
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800547unsigned int kstat_irqs_cpu(unsigned int irq, int cpu)
548{
549 struct irq_desc *desc = irq_to_desc(irq);
KOSAKI Motohiro26ddd8d2008-12-26 14:24:10 +0900550 return desc ? desc->kstat_irqs[cpu] : 0;
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800551}
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800552EXPORT_SYMBOL(kstat_irqs_cpu);
553