blob: 27e5c69112235c2f0cebe18981bb1f5504ed6807 [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>
Alexey Dobriyand43c36d2009-10-07 17:09:06 +040014#include <linux/sched.h>
Paul Mundt948cd522009-05-22 10:40:09 +090015#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070016#include <linux/module.h>
17#include <linux/random.h>
18#include <linux/interrupt.h>
19#include <linux/kernel_stat.h>
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -080020#include <linux/rculist.h>
21#include <linux/hash.h>
Yinghai Lub5eb78f2010-02-10 01:20:35 -080022#include <linux/radix-tree.h>
Steven Rostedtad8d75f2009-04-14 19:39:12 -040023#include <trace/events/irq.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024
25#include "internals.h"
26
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -080027/*
28 * lockdep: we want to handle all irq_desc locks as a single lock-class:
29 */
Yinghai Lu48a1b102008-12-11 00:15:01 -080030struct lock_class_key irq_desc_lock_class;
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -080031
Thomas Gleixner6a6de9e2006-06-29 02:24:51 -070032/**
33 * handle_bad_irq - handle spurious and unhandled irqs
Henrik Kretzschmar43a1dd52006-08-31 21:27:44 -070034 * @irq: the interrupt number
35 * @desc: description of the interrupt
Henrik Kretzschmar43a1dd52006-08-31 21:27:44 -070036 *
37 * Handles spurious and unhandled IRQ's. It also prints a debugmessage.
Thomas Gleixner6a6de9e2006-06-29 02:24:51 -070038 */
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +020039void handle_bad_irq(unsigned int irq, struct irq_desc *desc)
Thomas Gleixner6a6de9e2006-06-29 02:24:51 -070040{
Ingo Molnar43f77752006-06-29 02:24:58 -070041 print_irq_desc(irq, desc);
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +020042 kstat_incr_irqs_this_cpu(irq, desc);
Thomas Gleixner6a6de9e2006-06-29 02:24:51 -070043 ack_bad_irq(irq);
44}
45
David Daney97179fd2009-01-27 09:53:22 -080046#if defined(CONFIG_SMP) && defined(CONFIG_GENERIC_HARDIRQS)
47static void __init init_irq_default_affinity(void)
48{
Yinghai Lu28be2252009-06-12 11:33:02 +030049 alloc_cpumask_var(&irq_default_affinity, GFP_NOWAIT);
David Daney97179fd2009-01-27 09:53:22 -080050 cpumask_setall(irq_default_affinity);
51}
52#else
53static void __init init_irq_default_affinity(void)
54{
55}
56#endif
57
Linus Torvalds1da177e2005-04-16 15:20:36 -070058/*
59 * Linux has a controller-independent interrupt architecture.
60 * Every controller has a 'controller-template', that is used
61 * by the main code to do the right thing. Each driver-visible
Ingo Molnar06fcb0c2006-06-29 02:24:40 -070062 * interrupt source is transparently wired to the appropriate
Linus Torvalds1da177e2005-04-16 15:20:36 -070063 * controller. Thus drivers need not be aware of the
64 * interrupt-controller.
65 *
66 * The code is designed to be easily extended with new/different
67 * interrupt controllers, without having to do assembly magic or
68 * having to touch the generic code.
69 *
70 * Controller mappings for all interrupt sources:
71 */
Yinghai Lu85c0f902008-08-19 20:49:47 -070072int nr_irqs = NR_IRQS;
Ingo Molnarfa42d102008-08-19 20:50:30 -070073EXPORT_SYMBOL_GPL(nr_irqs);
Yinghai Lud60458b2008-08-19 20:50:00 -070074
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -080075#ifdef CONFIG_SPARSE_IRQ
Mike Travis92296c62009-01-11 09:22:58 -080076
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -080077static struct irq_desc irq_desc_init = {
78 .irq = -1,
79 .status = IRQ_DISABLED,
80 .chip = &no_irq_chip,
81 .handle_irq = handle_bad_irq,
82 .depth = 1,
Thomas Gleixner239007b2009-11-17 16:46:45 +010083 .lock = __RAW_SPIN_LOCK_UNLOCKED(irq_desc_init.lock),
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -080084};
85
Paul Mundt948cd522009-05-22 10:40:09 +090086void __ref init_kstat_irqs(struct irq_desc *desc, int node, int nr)
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -080087{
Yinghai Lu005bf0e62009-02-08 16:18:03 -080088 void *ptr;
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -080089
Yinghai Lufebcb0c2010-02-10 01:20:32 -080090 ptr = kzalloc_node(nr * sizeof(*desc->kstat_irqs),
91 GFP_ATOMIC, node);
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -080092
Yinghai Lu005bf0e62009-02-08 16:18:03 -080093 /*
94 * don't overwite if can not get new one
95 * init_copy_kstat_irqs() could still use old one
96 */
97 if (ptr) {
Yinghai Lu85ac16d2009-04-27 18:00:38 -070098 printk(KERN_DEBUG " alloc kstat_irqs on node %d\n", node);
Yinghai Lu005bf0e62009-02-08 16:18:03 -080099 desc->kstat_irqs = ptr;
100 }
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800101}
102
Yinghai Lu85ac16d2009-04-27 18:00:38 -0700103static void init_one_irq_desc(int irq, struct irq_desc *desc, int node)
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800104{
105 memcpy(desc, &irq_desc_init, sizeof(struct irq_desc));
Ingo Molnar793f7b12008-12-26 19:02:20 +0100106
Thomas Gleixner239007b2009-11-17 16:46:45 +0100107 raw_spin_lock_init(&desc->lock);
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800108 desc->irq = irq;
109#ifdef CONFIG_SMP
Yinghai Lu85ac16d2009-04-27 18:00:38 -0700110 desc->node = node;
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800111#endif
112 lockdep_set_class(&desc->lock, &irq_desc_lock_class);
Yinghai Lu85ac16d2009-04-27 18:00:38 -0700113 init_kstat_irqs(desc, node, nr_cpu_ids);
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800114 if (!desc->kstat_irqs) {
115 printk(KERN_ERR "can not alloc kstat_irqs\n");
116 BUG_ON(1);
117 }
Yinghai Lu85ac16d2009-04-27 18:00:38 -0700118 if (!alloc_desc_masks(desc, node, false)) {
Mike Travis7f7ace02009-01-10 21:58:08 -0800119 printk(KERN_ERR "can not alloc irq_desc cpumasks\n");
120 BUG_ON(1);
121 }
Yinghai Lu9ec4fa22009-04-27 17:57:18 -0700122 init_desc_masks(desc);
Yinghai Lu85ac16d2009-04-27 18:00:38 -0700123 arch_init_chip_data(desc, node);
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800124}
125
126/*
127 * Protect the sparse_irqs:
128 */
Thomas Gleixner239007b2009-11-17 16:46:45 +0100129DEFINE_RAW_SPINLOCK(sparse_irq_lock);
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800130
Yinghai Lub5eb78f2010-02-10 01:20:35 -0800131static RADIX_TREE(irq_desc_tree, GFP_ATOMIC);
132
133static void set_irq_desc(unsigned int irq, struct irq_desc *desc)
134{
135 radix_tree_insert(&irq_desc_tree, irq, desc);
136}
137
138struct irq_desc *irq_to_desc(unsigned int irq)
139{
140 return radix_tree_lookup(&irq_desc_tree, irq);
141}
142
143void replace_irq_desc(unsigned int irq, struct irq_desc *desc)
144{
145 void **ptr;
146
147 ptr = radix_tree_lookup_slot(&irq_desc_tree, irq);
148 if (ptr)
149 radix_tree_replace_slot(ptr, desc);
150}
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800151
Yinghai Lu99d093d2008-12-05 18:58:32 -0800152static struct irq_desc irq_desc_legacy[NR_IRQS_LEGACY] __cacheline_aligned_in_smp = {
153 [0 ... NR_IRQS_LEGACY-1] = {
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800154 .irq = -1,
155 .status = IRQ_DISABLED,
156 .chip = &no_irq_chip,
157 .handle_irq = handle_bad_irq,
158 .depth = 1,
Thomas Gleixner239007b2009-11-17 16:46:45 +0100159 .lock = __RAW_SPIN_LOCK_UNLOCKED(irq_desc_init.lock),
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800160 }
161};
162
Mike Travis542d8652009-01-10 22:24:07 -0800163static unsigned int *kstat_irqs_legacy;
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800164
Yinghai Lu13a0c3c2008-12-26 02:05:47 -0800165int __init early_irq_init(void)
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800166{
167 struct irq_desc *desc;
168 int legacy_count;
Yinghai Ludad213a2009-05-28 18:14:40 -0700169 int node;
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800170 int i;
171
David Daney97179fd2009-01-27 09:53:22 -0800172 init_irq_default_affinity();
173
Yinghai Lu4a046d12009-01-12 17:39:24 -0800174 /* initialize nr_irqs based on nr_cpu_ids */
175 arch_probe_nr_irqs();
Mike Travis95949492009-01-10 22:24:06 -0800176 printk(KERN_INFO "NR_IRQS:%d nr_irqs:%d\n", NR_IRQS, nr_irqs);
177
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800178 desc = irq_desc_legacy;
179 legacy_count = ARRAY_SIZE(irq_desc_legacy);
Yinghai Lu372e24b2009-08-26 16:20:13 -0700180 node = first_online_node;
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800181
Mike Travis542d8652009-01-10 22:24:07 -0800182 /* allocate based on nr_cpu_ids */
Yinghai Ludad213a2009-05-28 18:14:40 -0700183 kstat_irqs_legacy = kzalloc_node(NR_IRQS_LEGACY * nr_cpu_ids *
184 sizeof(int), GFP_NOWAIT, node);
Mike Travis542d8652009-01-10 22:24:07 -0800185
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800186 for (i = 0; i < legacy_count; i++) {
187 desc[i].irq = i;
Yinghai Lu372e24b2009-08-26 16:20:13 -0700188#ifdef CONFIG_SMP
189 desc[i].node = node;
190#endif
Mike Travis542d8652009-01-10 22:24:07 -0800191 desc[i].kstat_irqs = kstat_irqs_legacy + i * nr_cpu_ids;
Yinghai Lufa6beb32008-12-22 20:24:09 -0800192 lockdep_set_class(&desc[i].lock, &irq_desc_lock_class);
Yinghai Ludad213a2009-05-28 18:14:40 -0700193 alloc_desc_masks(&desc[i], node, true);
Yinghai Lu9ec4fa22009-04-27 17:57:18 -0700194 init_desc_masks(&desc[i]);
Yinghai Lub5eb78f2010-02-10 01:20:35 -0800195 set_irq_desc(i, &desc[i]);
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800196 }
197
Yinghai Lu13a0c3c2008-12-26 02:05:47 -0800198 return arch_early_irq_init();
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800199}
200
Paul Mundt948cd522009-05-22 10:40:09 +0900201struct irq_desc * __ref irq_to_desc_alloc_node(unsigned int irq, int node)
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800202{
203 struct irq_desc *desc;
204 unsigned long flags;
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800205
Mike Travis95949492009-01-10 22:24:06 -0800206 if (irq >= nr_irqs) {
Mike Travise2f4d062009-01-10 22:24:06 -0800207 WARN(1, "irq (%d) >= nr_irqs (%d) in irq_to_desc_alloc\n",
208 irq, nr_irqs);
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800209 return NULL;
210 }
211
Yinghai Lub5eb78f2010-02-10 01:20:35 -0800212 desc = irq_to_desc(irq);
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800213 if (desc)
214 return desc;
215
Thomas Gleixner239007b2009-11-17 16:46:45 +0100216 raw_spin_lock_irqsave(&sparse_irq_lock, flags);
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800217
218 /* We have to check it to avoid races with another CPU */
Yinghai Lub5eb78f2010-02-10 01:20:35 -0800219 desc = irq_to_desc(irq);
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800220 if (desc)
221 goto out_unlock;
222
Yinghai Lufebcb0c2010-02-10 01:20:32 -0800223 desc = kzalloc_node(sizeof(*desc), GFP_ATOMIC, node);
Paul Mundt948cd522009-05-22 10:40:09 +0900224
Yinghai Lu85ac16d2009-04-27 18:00:38 -0700225 printk(KERN_DEBUG " alloc irq_desc for %d on node %d\n", irq, node);
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800226 if (!desc) {
227 printk(KERN_ERR "can not alloc irq_desc\n");
228 BUG_ON(1);
229 }
Yinghai Lu85ac16d2009-04-27 18:00:38 -0700230 init_one_irq_desc(irq, desc, node);
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800231
Yinghai Lub5eb78f2010-02-10 01:20:35 -0800232 set_irq_desc(irq, desc);
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800233
234out_unlock:
Thomas Gleixner239007b2009-11-17 16:46:45 +0100235 raw_spin_unlock_irqrestore(&sparse_irq_lock, flags);
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800236
237 return desc;
238}
239
KOSAKI Motohirof9af0e72008-12-26 12:24:24 +0900240#else /* !CONFIG_SPARSE_IRQ */
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800241
Ravikiran G Thirumalaie729aa12007-05-08 00:29:13 -0700242struct irq_desc irq_desc[NR_IRQS] __cacheline_aligned_in_smp = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 [0 ... NR_IRQS-1] = {
Zhang, Yanmin4f167fb2005-05-16 21:53:43 -0700244 .status = IRQ_DISABLED,
Ingo Molnarf1c26622006-06-29 02:24:57 -0700245 .chip = &no_irq_chip,
Ingo Molnar7a557132006-06-29 02:24:54 -0700246 .handle_irq = handle_bad_irq,
Thomas Gleixner94d39e12006-06-29 02:24:50 -0700247 .depth = 1,
Thomas Gleixner239007b2009-11-17 16:46:45 +0100248 .lock = __RAW_SPIN_LOCK_UNLOCKED(irq_desc->lock),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249 }
250};
Yinghai Lu08678b02008-08-19 20:50:05 -0700251
Yinghai Lud7e51e62009-01-07 15:03:13 -0800252static unsigned int kstat_irqs_all[NR_IRQS][NR_CPUS];
Yinghai Lu12026ea2008-12-26 22:38:15 -0800253int __init early_irq_init(void)
254{
255 struct irq_desc *desc;
256 int count;
257 int i;
258
David Daney97179fd2009-01-27 09:53:22 -0800259 init_irq_default_affinity();
260
Mike Travis95949492009-01-10 22:24:06 -0800261 printk(KERN_INFO "NR_IRQS:%d\n", NR_IRQS);
262
Yinghai Lu12026ea2008-12-26 22:38:15 -0800263 desc = irq_desc;
264 count = ARRAY_SIZE(irq_desc);
265
Yinghai Lud7e51e62009-01-07 15:03:13 -0800266 for (i = 0; i < count; i++) {
Yinghai Lu12026ea2008-12-26 22:38:15 -0800267 desc[i].irq = i;
Yinghai Lu9ec4fa22009-04-27 17:57:18 -0700268 alloc_desc_masks(&desc[i], 0, true);
269 init_desc_masks(&desc[i]);
Yinghai Lud7e51e62009-01-07 15:03:13 -0800270 desc[i].kstat_irqs = kstat_irqs_all[i];
271 }
Yinghai Lu12026ea2008-12-26 22:38:15 -0800272 return arch_early_irq_init();
273}
274
KOSAKI Motohirof9af0e72008-12-26 12:24:24 +0900275struct irq_desc *irq_to_desc(unsigned int irq)
276{
277 return (irq < NR_IRQS) ? irq_desc + irq : NULL;
278}
279
Yinghai Lu85ac16d2009-04-27 18:00:38 -0700280struct irq_desc *irq_to_desc_alloc_node(unsigned int irq, int node)
KOSAKI Motohirof9af0e72008-12-26 12:24:24 +0900281{
282 return irq_to_desc(irq);
283}
284#endif /* !CONFIG_SPARSE_IRQ */
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800285
Yinghai Lu0f3c2a82009-02-08 16:18:03 -0800286void clear_kstat_irqs(struct irq_desc *desc)
287{
288 memset(desc->kstat_irqs, 0, nr_cpu_ids * sizeof(*(desc->kstat_irqs)));
289}
290
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291/*
Ingo Molnar77a5afe2006-06-29 02:24:46 -0700292 * What should we do if we get a hw irq event on an illegal vector?
293 * Each architecture has to answer this themself.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 */
Ingo Molnar77a5afe2006-06-29 02:24:46 -0700295static void ack_bad(unsigned int irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296{
Thomas Gleixnerd3c60042008-10-16 09:55:00 +0200297 struct irq_desc *desc = irq_to_desc(irq);
Yinghai Lu08678b02008-08-19 20:50:05 -0700298
Yinghai Lu08678b02008-08-19 20:50:05 -0700299 print_irq_desc(irq, desc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300 ack_bad_irq(irq);
301}
302
Ingo Molnar77a5afe2006-06-29 02:24:46 -0700303/*
304 * NOP functions
305 */
306static void noop(unsigned int irq)
307{
308}
309
310static unsigned int noop_ret(unsigned int irq)
311{
312 return 0;
313}
314
315/*
316 * Generic no controller implementation
317 */
Ingo Molnarf1c26622006-06-29 02:24:57 -0700318struct irq_chip no_irq_chip = {
319 .name = "none",
Ingo Molnar77a5afe2006-06-29 02:24:46 -0700320 .startup = noop_ret,
321 .shutdown = noop,
322 .enable = noop,
323 .disable = noop,
324 .ack = ack_bad,
325 .end = noop,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326};
327
328/*
Thomas Gleixnerf8b54732006-07-01 22:30:08 +0100329 * Generic dummy implementation which can be used for
330 * real dumb interrupt sources
331 */
332struct irq_chip dummy_irq_chip = {
333 .name = "dummy",
334 .startup = noop_ret,
335 .shutdown = noop,
336 .enable = noop,
337 .disable = noop,
338 .ack = noop,
339 .mask = noop,
340 .unmask = noop,
341 .end = noop,
342};
343
344/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345 * Special, empty irq handler:
346 */
David Howells7d12e782006-10-05 14:55:46 +0100347irqreturn_t no_action(int cpl, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348{
349 return IRQ_NONE;
350}
351
Thomas Gleixnerf48fe812009-03-24 11:46:22 +0100352static void warn_no_thread(unsigned int irq, struct irqaction *action)
353{
354 if (test_and_set_bit(IRQTF_WARNED, &action->thread_flags))
355 return;
356
357 printk(KERN_WARNING "IRQ %d device %s returned IRQ_WAKE_THREAD "
358 "but no thread function available.", irq, action->name);
359}
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
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373 do {
Jason Baronaf392412009-02-26 10:11:05 -0500374 trace_irq_handler_entry(irq, action);
David Howells7d12e782006-10-05 14:55:46 +0100375 ret = action->handler(irq, action->dev_id);
Jason Baronaf392412009-02-26 10:11:05 -0500376 trace_irq_handler_exit(irq, action, ret);
Thomas Gleixner3aa551c2009-03-23 18:28:15 +0100377
378 switch (ret) {
379 case IRQ_WAKE_THREAD:
380 /*
Thomas Gleixnerf48fe812009-03-24 11:46:22 +0100381 * Set result to handled so the spurious check
382 * does not trigger.
383 */
384 ret = IRQ_HANDLED;
385
386 /*
387 * Catch drivers which return WAKE_THREAD but
388 * did not set up a thread function
389 */
390 if (unlikely(!action->thread_fn)) {
391 warn_no_thread(irq, action);
392 break;
393 }
394
395 /*
Thomas Gleixner3aa551c2009-03-23 18:28:15 +0100396 * Wake up the handler thread for this
397 * action. In case the thread crashed and was
398 * killed we just pretend that we handled the
399 * interrupt. The hardirq handler above has
400 * disabled the device interrupt, so no irq
401 * storm is lurking.
402 */
403 if (likely(!test_bit(IRQTF_DIED,
404 &action->thread_flags))) {
405 set_bit(IRQTF_RUNTHREAD, &action->thread_flags);
406 wake_up_process(action->thread);
407 }
408
Thomas Gleixner3aa551c2009-03-23 18:28:15 +0100409 /* Fall through to add to randomness */
410 case IRQ_HANDLED:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411 status |= action->flags;
Thomas Gleixner3aa551c2009-03-23 18:28:15 +0100412 break;
413
414 default:
415 break;
416 }
417
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418 retval |= ret;
419 action = action->next;
420 } while (action);
421
Thomas Gleixner3cca53b2006-07-01 19:29:31 -0700422 if (status & IRQF_SAMPLE_RANDOM)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423 add_interrupt_randomness(irq);
424 local_irq_disable();
425
426 return retval;
427}
428
David Howellsaf8c65b2006-09-25 23:32:07 -0700429#ifndef CONFIG_GENERIC_HARDIRQS_NO__DO_IRQ
Thomas Gleixner0e57aa12009-03-13 14:34:05 +0100430
431#ifdef CONFIG_ENABLE_WARN_DEPRECATED
432# warning __do_IRQ is deprecated. Please convert to proper flow handlers
433#endif
434
Ingo Molnar8d28bc72006-06-29 02:24:46 -0700435/**
436 * __do_IRQ - original all in one highlevel IRQ handler
437 * @irq: the interrupt number
Ingo Molnar8d28bc72006-06-29 02:24:46 -0700438 *
439 * __do_IRQ handles all normal device IRQ's (the special
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440 * SMP cross-CPU interrupts have their own specific
441 * handlers).
Ingo Molnar8d28bc72006-06-29 02:24:46 -0700442 *
443 * This is the original x86 implementation which is used for every
444 * interrupt type.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445 */
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -0800446unsigned int __do_IRQ(unsigned int irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447{
Yinghai Lu08678b02008-08-19 20:50:05 -0700448 struct irq_desc *desc = irq_to_desc(irq);
Ingo Molnar06fcb0c2006-06-29 02:24:40 -0700449 struct irqaction *action;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450 unsigned int status;
451
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +0200452 kstat_incr_irqs_this_cpu(irq, desc);
453
Karsten Wiesef26fdd52005-09-06 15:17:25 -0700454 if (CHECK_IRQ_PER_CPU(desc->status)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455 irqreturn_t action_ret;
456
457 /*
458 * No locking required for CPU-local interrupts:
459 */
Yinghai Lufcef5912009-04-27 17:58:23 -0700460 if (desc->chip->ack)
Ingo Molnard1bef4e2006-06-29 02:24:36 -0700461 desc->chip->ack(irq);
Russ Andersonc642b832007-11-14 17:00:15 -0800462 if (likely(!(desc->status & IRQ_DISABLED))) {
463 action_ret = handle_IRQ_event(irq, desc->action);
464 if (!noirqdebug)
465 note_interrupt(irq, desc, action_ret);
466 }
Ingo Molnard1bef4e2006-06-29 02:24:36 -0700467 desc->chip->end(irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468 return 1;
469 }
470
Thomas Gleixner239007b2009-11-17 16:46:45 +0100471 raw_spin_lock(&desc->lock);
Yinghai Lufcef5912009-04-27 17:58:23 -0700472 if (desc->chip->ack)
Ingo Molnard1bef4e2006-06-29 02:24:36 -0700473 desc->chip->ack(irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474 /*
475 * REPLAY is when Linux resends an IRQ that was dropped earlier
476 * WAITING is used by probe to mark irqs that are being tested
477 */
478 status = desc->status & ~(IRQ_REPLAY | IRQ_WAITING);
479 status |= IRQ_PENDING; /* we _want_ to handle it */
480
481 /*
482 * If the IRQ is disabled for whatever reason, we cannot
483 * use the action we have.
484 */
485 action = NULL;
486 if (likely(!(status & (IRQ_DISABLED | IRQ_INPROGRESS)))) {
487 action = desc->action;
488 status &= ~IRQ_PENDING; /* we commit to handling */
489 status |= IRQ_INPROGRESS; /* we are handling it */
490 }
491 desc->status = status;
492
493 /*
494 * If there is no IRQ handler or it was disabled, exit early.
495 * Since we set PENDING, if another processor is handling
496 * a different instance of this same irq, the other processor
497 * will take care of it.
498 */
499 if (unlikely(!action))
500 goto out;
501
502 /*
503 * Edge triggered interrupts need to remember
504 * pending events.
505 * This applies to any hw interrupts that allow a second
506 * instance of the same irq to arrive while we are in do_IRQ
507 * or in the handler. But the code here only handles the _second_
508 * instance of the irq, not the third or fourth. So it is mostly
509 * useful for irq hardware that does not mask cleanly in an
510 * SMP environment.
511 */
512 for (;;) {
513 irqreturn_t action_ret;
514
Thomas Gleixner239007b2009-11-17 16:46:45 +0100515 raw_spin_unlock(&desc->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516
David Howells7d12e782006-10-05 14:55:46 +0100517 action_ret = handle_IRQ_event(irq, action);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518 if (!noirqdebug)
David Howells7d12e782006-10-05 14:55:46 +0100519 note_interrupt(irq, desc, action_ret);
Linus Torvaldsb42172f2006-11-22 09:32:06 -0800520
Thomas Gleixner239007b2009-11-17 16:46:45 +0100521 raw_spin_lock(&desc->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522 if (likely(!(desc->status & IRQ_PENDING)))
523 break;
524 desc->status &= ~IRQ_PENDING;
525 }
526 desc->status &= ~IRQ_INPROGRESS;
527
528out:
529 /*
530 * The ->end() handler has to deal with interrupts which got
531 * disabled while the handler was running.
532 */
Ingo Molnard1bef4e2006-06-29 02:24:36 -0700533 desc->chip->end(irq);
Thomas Gleixner239007b2009-11-17 16:46:45 +0100534 raw_spin_unlock(&desc->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535
536 return 1;
537}
David Howellsaf8c65b2006-09-25 23:32:07 -0700538#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539
Ingo Molnar243c7622006-07-03 00:25:06 -0700540void early_init_irq_lock_class(void)
541{
Thomas Gleixner10e58082008-10-16 14:19:04 +0200542 struct irq_desc *desc;
Ingo Molnar243c7622006-07-03 00:25:06 -0700543 int i;
544
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800545 for_each_irq_desc(i, desc) {
Thomas Gleixner10e58082008-10-16 14:19:04 +0200546 lockdep_set_class(&desc->lock, &irq_desc_lock_class);
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800547 }
Yinghai Lu08678b02008-08-19 20:50:05 -0700548}
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800549
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800550unsigned int kstat_irqs_cpu(unsigned int irq, int cpu)
551{
552 struct irq_desc *desc = irq_to_desc(irq);
KOSAKI Motohiro26ddd8d2008-12-26 14:24:10 +0900553 return desc ? desc->kstat_irqs[cpu] : 0;
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800554}
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800555EXPORT_SYMBOL(kstat_irqs_cpu);
556