blob: 18041a254d3246c7c95fa52918938132f2032efe [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>
Paul Mundt948cd522009-05-22 10:40:09 +090014#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#include <linux/module.h>
16#include <linux/random.h>
17#include <linux/interrupt.h>
18#include <linux/kernel_stat.h>
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -080019#include <linux/rculist.h>
20#include <linux/hash.h>
Jason Baronaf392412009-02-26 10:11:05 -050021#include <trace/irq.h>
Mike Travis0fa0ebb2009-01-10 22:24:06 -080022#include <linux/bootmem.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070023
24#include "internals.h"
25
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -080026/*
27 * lockdep: we want to handle all irq_desc locks as a single lock-class:
28 */
Yinghai Lu48a1b102008-12-11 00:15:01 -080029struct lock_class_key irq_desc_lock_class;
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -080030
Thomas Gleixner6a6de9e2006-06-29 02:24:51 -070031/**
32 * handle_bad_irq - handle spurious and unhandled irqs
Henrik Kretzschmar43a1dd52006-08-31 21:27:44 -070033 * @irq: the interrupt number
34 * @desc: description of the interrupt
Henrik Kretzschmar43a1dd52006-08-31 21:27:44 -070035 *
36 * Handles spurious and unhandled IRQ's. It also prints a debugmessage.
Thomas Gleixner6a6de9e2006-06-29 02:24:51 -070037 */
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +020038void handle_bad_irq(unsigned int irq, struct irq_desc *desc)
Thomas Gleixner6a6de9e2006-06-29 02:24:51 -070039{
Ingo Molnar43f77752006-06-29 02:24:58 -070040 print_irq_desc(irq, desc);
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +020041 kstat_incr_irqs_this_cpu(irq, desc);
Thomas Gleixner6a6de9e2006-06-29 02:24:51 -070042 ack_bad_irq(irq);
43}
44
David Daney97179fd2009-01-27 09:53:22 -080045#if defined(CONFIG_SMP) && defined(CONFIG_GENERIC_HARDIRQS)
46static void __init init_irq_default_affinity(void)
47{
48 alloc_bootmem_cpumask_var(&irq_default_affinity);
49 cpumask_setall(irq_default_affinity);
50}
51#else
52static void __init init_irq_default_affinity(void)
53{
54}
55#endif
56
Linus Torvalds1da177e2005-04-16 15:20:36 -070057/*
58 * Linux has a controller-independent interrupt architecture.
59 * Every controller has a 'controller-template', that is used
60 * by the main code to do the right thing. Each driver-visible
Ingo Molnar06fcb0c2006-06-29 02:24:40 -070061 * interrupt source is transparently wired to the appropriate
Linus Torvalds1da177e2005-04-16 15:20:36 -070062 * controller. Thus drivers need not be aware of the
63 * interrupt-controller.
64 *
65 * The code is designed to be easily extended with new/different
66 * interrupt controllers, without having to do assembly magic or
67 * having to touch the generic code.
68 *
69 * Controller mappings for all interrupt sources:
70 */
Yinghai Lu85c0f902008-08-19 20:49:47 -070071int nr_irqs = NR_IRQS;
Ingo Molnarfa42d102008-08-19 20:50:30 -070072EXPORT_SYMBOL_GPL(nr_irqs);
Yinghai Lud60458b2008-08-19 20:50:00 -070073
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -080074#ifdef CONFIG_SPARSE_IRQ
Mike Travis92296c62009-01-11 09:22:58 -080075
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -080076static struct irq_desc irq_desc_init = {
77 .irq = -1,
78 .status = IRQ_DISABLED,
79 .chip = &no_irq_chip,
80 .handle_irq = handle_bad_irq,
81 .depth = 1,
82 .lock = __SPIN_LOCK_UNLOCKED(irq_desc_init.lock),
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -080083};
84
Paul Mundt948cd522009-05-22 10:40:09 +090085void __ref init_kstat_irqs(struct irq_desc *desc, int node, int nr)
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -080086{
Yinghai Lu005bf0e62009-02-08 16:18:03 -080087 void *ptr;
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -080088
Paul Mundt948cd522009-05-22 10:40:09 +090089 if (slab_is_available())
90 ptr = kzalloc_node(nr * sizeof(*desc->kstat_irqs),
91 GFP_ATOMIC, node);
92 else
93 ptr = alloc_bootmem_node(NODE_DATA(node),
94 nr * sizeof(*desc->kstat_irqs));
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -080095
Yinghai Lu005bf0e62009-02-08 16:18:03 -080096 /*
97 * don't overwite if can not get new one
98 * init_copy_kstat_irqs() could still use old one
99 */
100 if (ptr) {
Yinghai Lu85ac16d2009-04-27 18:00:38 -0700101 printk(KERN_DEBUG " alloc kstat_irqs on node %d\n", node);
Yinghai Lu005bf0e62009-02-08 16:18:03 -0800102 desc->kstat_irqs = ptr;
103 }
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800104}
105
Yinghai Lu85ac16d2009-04-27 18:00:38 -0700106static void init_one_irq_desc(int irq, struct irq_desc *desc, int node)
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800107{
108 memcpy(desc, &irq_desc_init, sizeof(struct irq_desc));
Ingo Molnar793f7b12008-12-26 19:02:20 +0100109
110 spin_lock_init(&desc->lock);
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800111 desc->irq = irq;
112#ifdef CONFIG_SMP
Yinghai Lu85ac16d2009-04-27 18:00:38 -0700113 desc->node = node;
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800114#endif
115 lockdep_set_class(&desc->lock, &irq_desc_lock_class);
Yinghai Lu85ac16d2009-04-27 18:00:38 -0700116 init_kstat_irqs(desc, node, nr_cpu_ids);
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800117 if (!desc->kstat_irqs) {
118 printk(KERN_ERR "can not alloc kstat_irqs\n");
119 BUG_ON(1);
120 }
Yinghai Lu85ac16d2009-04-27 18:00:38 -0700121 if (!alloc_desc_masks(desc, node, false)) {
Mike Travis7f7ace02009-01-10 21:58:08 -0800122 printk(KERN_ERR "can not alloc irq_desc cpumasks\n");
123 BUG_ON(1);
124 }
Yinghai Lu9ec4fa22009-04-27 17:57:18 -0700125 init_desc_masks(desc);
Yinghai Lu85ac16d2009-04-27 18:00:38 -0700126 arch_init_chip_data(desc, node);
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800127}
128
129/*
130 * Protect the sparse_irqs:
131 */
Yinghai Lu48a1b102008-12-11 00:15:01 -0800132DEFINE_SPINLOCK(sparse_irq_lock);
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800133
Mike Travis0fa0ebb2009-01-10 22:24:06 -0800134struct irq_desc **irq_desc_ptrs __read_mostly;
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800135
Yinghai Lu99d093d2008-12-05 18:58:32 -0800136static struct irq_desc irq_desc_legacy[NR_IRQS_LEGACY] __cacheline_aligned_in_smp = {
137 [0 ... NR_IRQS_LEGACY-1] = {
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800138 .irq = -1,
139 .status = IRQ_DISABLED,
140 .chip = &no_irq_chip,
141 .handle_irq = handle_bad_irq,
142 .depth = 1,
143 .lock = __SPIN_LOCK_UNLOCKED(irq_desc_init.lock),
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800144 }
145};
146
Mike Travis542d8652009-01-10 22:24:07 -0800147static unsigned int *kstat_irqs_legacy;
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800148
Yinghai Lu13a0c3c2008-12-26 02:05:47 -0800149int __init early_irq_init(void)
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800150{
151 struct irq_desc *desc;
152 int legacy_count;
153 int i;
154
David Daney97179fd2009-01-27 09:53:22 -0800155 init_irq_default_affinity();
156
Yinghai Lu4a046d12009-01-12 17:39:24 -0800157 /* initialize nr_irqs based on nr_cpu_ids */
158 arch_probe_nr_irqs();
Mike Travis95949492009-01-10 22:24:06 -0800159 printk(KERN_INFO "NR_IRQS:%d nr_irqs:%d\n", NR_IRQS, nr_irqs);
160
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800161 desc = irq_desc_legacy;
162 legacy_count = ARRAY_SIZE(irq_desc_legacy);
163
Mike Travis0fa0ebb2009-01-10 22:24:06 -0800164 /* allocate irq_desc_ptrs array based on nr_irqs */
165 irq_desc_ptrs = alloc_bootmem(nr_irqs * sizeof(void *));
166
Mike Travis542d8652009-01-10 22:24:07 -0800167 /* allocate based on nr_cpu_ids */
168 /* FIXME: invert kstat_irgs, and it'd be a per_cpu_alloc'd thing */
169 kstat_irqs_legacy = alloc_bootmem(NR_IRQS_LEGACY * nr_cpu_ids *
170 sizeof(int));
171
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800172 for (i = 0; i < legacy_count; i++) {
173 desc[i].irq = i;
Mike Travis542d8652009-01-10 22:24:07 -0800174 desc[i].kstat_irqs = kstat_irqs_legacy + i * nr_cpu_ids;
Yinghai Lufa6beb32008-12-22 20:24:09 -0800175 lockdep_set_class(&desc[i].lock, &irq_desc_lock_class);
Yinghai Lu9ec4fa22009-04-27 17:57:18 -0700176 alloc_desc_masks(&desc[i], 0, true);
177 init_desc_masks(&desc[i]);
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800178 irq_desc_ptrs[i] = desc + i;
179 }
180
Mike Travis95949492009-01-10 22:24:06 -0800181 for (i = legacy_count; i < nr_irqs; i++)
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800182 irq_desc_ptrs[i] = NULL;
183
Yinghai Lu13a0c3c2008-12-26 02:05:47 -0800184 return arch_early_irq_init();
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800185}
186
187struct irq_desc *irq_to_desc(unsigned int irq)
188{
Mike Travis0fa0ebb2009-01-10 22:24:06 -0800189 if (irq_desc_ptrs && irq < nr_irqs)
190 return irq_desc_ptrs[irq];
191
192 return NULL;
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800193}
194
Paul Mundt948cd522009-05-22 10:40:09 +0900195struct irq_desc * __ref irq_to_desc_alloc_node(unsigned int irq, int node)
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800196{
197 struct irq_desc *desc;
198 unsigned long flags;
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800199
Mike Travis95949492009-01-10 22:24:06 -0800200 if (irq >= nr_irqs) {
Mike Travise2f4d062009-01-10 22:24:06 -0800201 WARN(1, "irq (%d) >= nr_irqs (%d) in irq_to_desc_alloc\n",
202 irq, nr_irqs);
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800203 return NULL;
204 }
205
206 desc = irq_desc_ptrs[irq];
207 if (desc)
208 return desc;
209
210 spin_lock_irqsave(&sparse_irq_lock, flags);
211
212 /* We have to check it to avoid races with another CPU */
213 desc = irq_desc_ptrs[irq];
214 if (desc)
215 goto out_unlock;
216
Paul Mundt948cd522009-05-22 10:40:09 +0900217 if (slab_is_available())
218 desc = kzalloc_node(sizeof(*desc), GFP_ATOMIC, node);
219 else
220 desc = alloc_bootmem_node(NODE_DATA(node), sizeof(*desc));
221
Yinghai Lu85ac16d2009-04-27 18:00:38 -0700222 printk(KERN_DEBUG " alloc irq_desc for %d on node %d\n", irq, node);
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800223 if (!desc) {
224 printk(KERN_ERR "can not alloc irq_desc\n");
225 BUG_ON(1);
226 }
Yinghai Lu85ac16d2009-04-27 18:00:38 -0700227 init_one_irq_desc(irq, desc, node);
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800228
229 irq_desc_ptrs[irq] = desc;
230
231out_unlock:
232 spin_unlock_irqrestore(&sparse_irq_lock, flags);
233
234 return desc;
235}
236
KOSAKI Motohirof9af0e72008-12-26 12:24:24 +0900237#else /* !CONFIG_SPARSE_IRQ */
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800238
Ravikiran G Thirumalaie729aa12007-05-08 00:29:13 -0700239struct irq_desc irq_desc[NR_IRQS] __cacheline_aligned_in_smp = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240 [0 ... NR_IRQS-1] = {
Zhang, Yanmin4f167fb2005-05-16 21:53:43 -0700241 .status = IRQ_DISABLED,
Ingo Molnarf1c26622006-06-29 02:24:57 -0700242 .chip = &no_irq_chip,
Ingo Molnar7a557132006-06-29 02:24:54 -0700243 .handle_irq = handle_bad_irq,
Thomas Gleixner94d39e12006-06-29 02:24:50 -0700244 .depth = 1,
Yinghai Luaac3f2b2008-09-24 19:04:35 -0700245 .lock = __SPIN_LOCK_UNLOCKED(irq_desc->lock),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246 }
247};
Yinghai Lu08678b02008-08-19 20:50:05 -0700248
Yinghai Lud7e51e62009-01-07 15:03:13 -0800249static unsigned int kstat_irqs_all[NR_IRQS][NR_CPUS];
Yinghai Lu12026ea2008-12-26 22:38:15 -0800250int __init early_irq_init(void)
251{
252 struct irq_desc *desc;
253 int count;
254 int i;
255
David Daney97179fd2009-01-27 09:53:22 -0800256 init_irq_default_affinity();
257
Mike Travis95949492009-01-10 22:24:06 -0800258 printk(KERN_INFO "NR_IRQS:%d\n", NR_IRQS);
259
Yinghai Lu12026ea2008-12-26 22:38:15 -0800260 desc = irq_desc;
261 count = ARRAY_SIZE(irq_desc);
262
Yinghai Lud7e51e62009-01-07 15:03:13 -0800263 for (i = 0; i < count; i++) {
Yinghai Lu12026ea2008-12-26 22:38:15 -0800264 desc[i].irq = i;
Yinghai Lu9ec4fa22009-04-27 17:57:18 -0700265 alloc_desc_masks(&desc[i], 0, true);
266 init_desc_masks(&desc[i]);
Yinghai Lud7e51e62009-01-07 15:03:13 -0800267 desc[i].kstat_irqs = kstat_irqs_all[i];
268 }
Yinghai Lu12026ea2008-12-26 22:38:15 -0800269 return arch_early_irq_init();
270}
271
KOSAKI Motohirof9af0e72008-12-26 12:24:24 +0900272struct irq_desc *irq_to_desc(unsigned int irq)
273{
274 return (irq < NR_IRQS) ? irq_desc + irq : NULL;
275}
276
Yinghai Lu85ac16d2009-04-27 18:00:38 -0700277struct irq_desc *irq_to_desc_alloc_node(unsigned int irq, int node)
KOSAKI Motohirof9af0e72008-12-26 12:24:24 +0900278{
279 return irq_to_desc(irq);
280}
281#endif /* !CONFIG_SPARSE_IRQ */
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800282
Yinghai Lu0f3c2a82009-02-08 16:18:03 -0800283void clear_kstat_irqs(struct irq_desc *desc)
284{
285 memset(desc->kstat_irqs, 0, nr_cpu_ids * sizeof(*(desc->kstat_irqs)));
286}
287
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288/*
Ingo Molnar77a5afe2006-06-29 02:24:46 -0700289 * What should we do if we get a hw irq event on an illegal vector?
290 * Each architecture has to answer this themself.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291 */
Ingo Molnar77a5afe2006-06-29 02:24:46 -0700292static void ack_bad(unsigned int irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293{
Thomas Gleixnerd3c60042008-10-16 09:55:00 +0200294 struct irq_desc *desc = irq_to_desc(irq);
Yinghai Lu08678b02008-08-19 20:50:05 -0700295
Yinghai Lu08678b02008-08-19 20:50:05 -0700296 print_irq_desc(irq, desc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297 ack_bad_irq(irq);
298}
299
Ingo Molnar77a5afe2006-06-29 02:24:46 -0700300/*
301 * NOP functions
302 */
303static void noop(unsigned int irq)
304{
305}
306
307static unsigned int noop_ret(unsigned int irq)
308{
309 return 0;
310}
311
312/*
313 * Generic no controller implementation
314 */
Ingo Molnarf1c26622006-06-29 02:24:57 -0700315struct irq_chip no_irq_chip = {
316 .name = "none",
Ingo Molnar77a5afe2006-06-29 02:24:46 -0700317 .startup = noop_ret,
318 .shutdown = noop,
319 .enable = noop,
320 .disable = noop,
321 .ack = ack_bad,
322 .end = noop,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323};
324
325/*
Thomas Gleixnerf8b54732006-07-01 22:30:08 +0100326 * Generic dummy implementation which can be used for
327 * real dumb interrupt sources
328 */
329struct irq_chip dummy_irq_chip = {
330 .name = "dummy",
331 .startup = noop_ret,
332 .shutdown = noop,
333 .enable = noop,
334 .disable = noop,
335 .ack = noop,
336 .mask = noop,
337 .unmask = noop,
338 .end = noop,
339};
340
341/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342 * Special, empty irq handler:
343 */
David Howells7d12e782006-10-05 14:55:46 +0100344irqreturn_t no_action(int cpl, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345{
346 return IRQ_NONE;
347}
348
Thomas Gleixnerf48fe812009-03-24 11:46:22 +0100349static void warn_no_thread(unsigned int irq, struct irqaction *action)
350{
351 if (test_and_set_bit(IRQTF_WARNED, &action->thread_flags))
352 return;
353
354 printk(KERN_WARNING "IRQ %d device %s returned IRQ_WAKE_THREAD "
355 "but no thread function available.", irq, action->name);
356}
357
Jason Baronaf392412009-02-26 10:11:05 -0500358DEFINE_TRACE(irq_handler_entry);
359DEFINE_TRACE(irq_handler_exit);
360
Ingo Molnar8d28bc72006-06-29 02:24:46 -0700361/**
362 * handle_IRQ_event - irq action chain handler
363 * @irq: the interrupt number
Ingo Molnar8d28bc72006-06-29 02:24:46 -0700364 * @action: the interrupt action chain for this irq
365 *
366 * Handles the action chain of an irq event
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 */
David Howells7d12e782006-10-05 14:55:46 +0100368irqreturn_t handle_IRQ_event(unsigned int irq, struct irqaction *action)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369{
Jan Beulich908dcec2006-06-23 02:06:00 -0700370 irqreturn_t ret, retval = IRQ_NONE;
371 unsigned int status = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372
Thomas Gleixner3cca53b2006-07-01 19:29:31 -0700373 if (!(action->flags & IRQF_DISABLED))
Ingo Molnar366c7f52006-07-03 00:25:25 -0700374 local_irq_enable_in_hardirq();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375
376 do {
Jason Baronaf392412009-02-26 10:11:05 -0500377 trace_irq_handler_entry(irq, action);
David Howells7d12e782006-10-05 14:55:46 +0100378 ret = action->handler(irq, action->dev_id);
Jason Baronaf392412009-02-26 10:11:05 -0500379 trace_irq_handler_exit(irq, action, ret);
Thomas Gleixner3aa551c2009-03-23 18:28:15 +0100380
381 switch (ret) {
382 case IRQ_WAKE_THREAD:
383 /*
Thomas Gleixnerf48fe812009-03-24 11:46:22 +0100384 * Set result to handled so the spurious check
385 * does not trigger.
386 */
387 ret = IRQ_HANDLED;
388
389 /*
390 * Catch drivers which return WAKE_THREAD but
391 * did not set up a thread function
392 */
393 if (unlikely(!action->thread_fn)) {
394 warn_no_thread(irq, action);
395 break;
396 }
397
398 /*
Thomas Gleixner3aa551c2009-03-23 18:28:15 +0100399 * Wake up the handler thread for this
400 * action. In case the thread crashed and was
401 * killed we just pretend that we handled the
402 * interrupt. The hardirq handler above has
403 * disabled the device interrupt, so no irq
404 * storm is lurking.
405 */
406 if (likely(!test_bit(IRQTF_DIED,
407 &action->thread_flags))) {
408 set_bit(IRQTF_RUNTHREAD, &action->thread_flags);
409 wake_up_process(action->thread);
410 }
411
Thomas Gleixner3aa551c2009-03-23 18:28:15 +0100412 /* Fall through to add to randomness */
413 case IRQ_HANDLED:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414 status |= action->flags;
Thomas Gleixner3aa551c2009-03-23 18:28:15 +0100415 break;
416
417 default:
418 break;
419 }
420
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421 retval |= ret;
422 action = action->next;
423 } while (action);
424
Thomas Gleixner3cca53b2006-07-01 19:29:31 -0700425 if (status & IRQF_SAMPLE_RANDOM)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426 add_interrupt_randomness(irq);
427 local_irq_disable();
428
429 return retval;
430}
431
David Howellsaf8c65b2006-09-25 23:32:07 -0700432#ifndef CONFIG_GENERIC_HARDIRQS_NO__DO_IRQ
Thomas Gleixner0e57aa12009-03-13 14:34:05 +0100433
434#ifdef CONFIG_ENABLE_WARN_DEPRECATED
435# warning __do_IRQ is deprecated. Please convert to proper flow handlers
436#endif
437
Ingo Molnar8d28bc72006-06-29 02:24:46 -0700438/**
439 * __do_IRQ - original all in one highlevel IRQ handler
440 * @irq: the interrupt number
Ingo Molnar8d28bc72006-06-29 02:24:46 -0700441 *
442 * __do_IRQ handles all normal device IRQ's (the special
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 * SMP cross-CPU interrupts have their own specific
444 * handlers).
Ingo Molnar8d28bc72006-06-29 02:24:46 -0700445 *
446 * This is the original x86 implementation which is used for every
447 * interrupt type.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448 */
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -0800449unsigned int __do_IRQ(unsigned int irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450{
Yinghai Lu08678b02008-08-19 20:50:05 -0700451 struct irq_desc *desc = irq_to_desc(irq);
Ingo Molnar06fcb0c2006-06-29 02:24:40 -0700452 struct irqaction *action;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453 unsigned int status;
454
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +0200455 kstat_incr_irqs_this_cpu(irq, desc);
456
Karsten Wiesef26fdd52005-09-06 15:17:25 -0700457 if (CHECK_IRQ_PER_CPU(desc->status)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458 irqreturn_t action_ret;
459
460 /*
461 * No locking required for CPU-local interrupts:
462 */
Yinghai Lufcef5912009-04-27 17:58:23 -0700463 if (desc->chip->ack)
Ingo Molnard1bef4e2006-06-29 02:24:36 -0700464 desc->chip->ack(irq);
Russ Andersonc642b832007-11-14 17:00:15 -0800465 if (likely(!(desc->status & IRQ_DISABLED))) {
466 action_ret = handle_IRQ_event(irq, desc->action);
467 if (!noirqdebug)
468 note_interrupt(irq, desc, action_ret);
469 }
Ingo Molnard1bef4e2006-06-29 02:24:36 -0700470 desc->chip->end(irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471 return 1;
472 }
473
474 spin_lock(&desc->lock);
Yinghai Lufcef5912009-04-27 17:58:23 -0700475 if (desc->chip->ack)
Ingo Molnard1bef4e2006-06-29 02:24:36 -0700476 desc->chip->ack(irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477 /*
478 * REPLAY is when Linux resends an IRQ that was dropped earlier
479 * WAITING is used by probe to mark irqs that are being tested
480 */
481 status = desc->status & ~(IRQ_REPLAY | IRQ_WAITING);
482 status |= IRQ_PENDING; /* we _want_ to handle it */
483
484 /*
485 * If the IRQ is disabled for whatever reason, we cannot
486 * use the action we have.
487 */
488 action = NULL;
489 if (likely(!(status & (IRQ_DISABLED | IRQ_INPROGRESS)))) {
490 action = desc->action;
491 status &= ~IRQ_PENDING; /* we commit to handling */
492 status |= IRQ_INPROGRESS; /* we are handling it */
493 }
494 desc->status = status;
495
496 /*
497 * If there is no IRQ handler or it was disabled, exit early.
498 * Since we set PENDING, if another processor is handling
499 * a different instance of this same irq, the other processor
500 * will take care of it.
501 */
502 if (unlikely(!action))
503 goto out;
504
505 /*
506 * Edge triggered interrupts need to remember
507 * pending events.
508 * This applies to any hw interrupts that allow a second
509 * instance of the same irq to arrive while we are in do_IRQ
510 * or in the handler. But the code here only handles the _second_
511 * instance of the irq, not the third or fourth. So it is mostly
512 * useful for irq hardware that does not mask cleanly in an
513 * SMP environment.
514 */
515 for (;;) {
516 irqreturn_t action_ret;
517
518 spin_unlock(&desc->lock);
519
David Howells7d12e782006-10-05 14:55:46 +0100520 action_ret = handle_IRQ_event(irq, action);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521 if (!noirqdebug)
David Howells7d12e782006-10-05 14:55:46 +0100522 note_interrupt(irq, desc, action_ret);
Linus Torvaldsb42172f2006-11-22 09:32:06 -0800523
524 spin_lock(&desc->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525 if (likely(!(desc->status & IRQ_PENDING)))
526 break;
527 desc->status &= ~IRQ_PENDING;
528 }
529 desc->status &= ~IRQ_INPROGRESS;
530
531out:
532 /*
533 * The ->end() handler has to deal with interrupts which got
534 * disabled while the handler was running.
535 */
Ingo Molnard1bef4e2006-06-29 02:24:36 -0700536 desc->chip->end(irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537 spin_unlock(&desc->lock);
538
539 return 1;
540}
David Howellsaf8c65b2006-09-25 23:32:07 -0700541#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542
Ingo Molnar243c7622006-07-03 00:25:06 -0700543void early_init_irq_lock_class(void)
544{
Thomas Gleixner10e58082008-10-16 14:19:04 +0200545 struct irq_desc *desc;
Ingo Molnar243c7622006-07-03 00:25:06 -0700546 int i;
547
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800548 for_each_irq_desc(i, desc) {
Thomas Gleixner10e58082008-10-16 14:19:04 +0200549 lockdep_set_class(&desc->lock, &irq_desc_lock_class);
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800550 }
Yinghai Lu08678b02008-08-19 20:50:05 -0700551}
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800552
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800553unsigned int kstat_irqs_cpu(unsigned int irq, int cpu)
554{
555 struct irq_desc *desc = irq_to_desc(irq);
KOSAKI Motohiro26ddd8d2008-12-26 14:24:10 +0900556 return desc ? desc->kstat_irqs[cpu] : 0;
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800557}
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800558EXPORT_SYMBOL(kstat_irqs_cpu);
559