blob: 3fcef37154a18d98a0b2ee7e35c80cbff81741dd [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 = {
Thomas Gleixnerff7dcd42010-09-27 12:44:25 +000078 .status = IRQ_DISABLED,
79 .handle_irq = handle_bad_irq,
80 .depth = 1,
81 .lock = __RAW_SPIN_LOCK_UNLOCKED(irq_desc_init.lock),
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -080082};
83
Paul Mundt948cd522009-05-22 10:40:09 +090084void __ref init_kstat_irqs(struct irq_desc *desc, int node, int nr)
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -080085{
Yinghai Lu005bf0e62009-02-08 16:18:03 -080086 void *ptr;
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -080087
Yinghai Lufebcb0c2010-02-10 01:20:32 -080088 ptr = kzalloc_node(nr * sizeof(*desc->kstat_irqs),
89 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) {
Yinghai Lu85ac16d2009-04-27 18:00:38 -070096 printk(KERN_DEBUG " alloc kstat_irqs on node %d\n", node);
Yinghai Lu005bf0e62009-02-08 16:18:03 -080097 desc->kstat_irqs = ptr;
98 }
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -080099}
100
Yinghai Lu85ac16d2009-04-27 18:00:38 -0700101static void init_one_irq_desc(int irq, struct irq_desc *desc, int node)
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800102{
103 memcpy(desc, &irq_desc_init, sizeof(struct irq_desc));
Ingo Molnar793f7b12008-12-26 19:02:20 +0100104
Thomas Gleixner239007b2009-11-17 16:46:45 +0100105 raw_spin_lock_init(&desc->lock);
Thomas Gleixnerff7dcd42010-09-27 12:44:25 +0000106 desc->irq_data.irq = irq;
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800107#ifdef CONFIG_SMP
Thomas Gleixner6b8ff312010-10-01 12:58:38 +0200108 desc->irq_data.node = node;
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800109#endif
110 lockdep_set_class(&desc->lock, &irq_desc_lock_class);
Yinghai Lu85ac16d2009-04-27 18:00:38 -0700111 init_kstat_irqs(desc, node, nr_cpu_ids);
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800112 if (!desc->kstat_irqs) {
113 printk(KERN_ERR "can not alloc kstat_irqs\n");
114 BUG_ON(1);
115 }
Yinghai Lu85ac16d2009-04-27 18:00:38 -0700116 if (!alloc_desc_masks(desc, node, false)) {
Mike Travis7f7ace02009-01-10 21:58:08 -0800117 printk(KERN_ERR "can not alloc irq_desc cpumasks\n");
118 BUG_ON(1);
119 }
Yinghai Lu9ec4fa22009-04-27 17:57:18 -0700120 init_desc_masks(desc);
Yinghai Lu85ac16d2009-04-27 18:00:38 -0700121 arch_init_chip_data(desc, node);
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800122}
123
124/*
125 * Protect the sparse_irqs:
126 */
Thomas Gleixner239007b2009-11-17 16:46:45 +0100127DEFINE_RAW_SPINLOCK(sparse_irq_lock);
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800128
Yinghai Lub5eb78f2010-02-10 01:20:35 -0800129static RADIX_TREE(irq_desc_tree, GFP_ATOMIC);
130
131static void set_irq_desc(unsigned int irq, struct irq_desc *desc)
132{
133 radix_tree_insert(&irq_desc_tree, irq, desc);
134}
135
136struct irq_desc *irq_to_desc(unsigned int irq)
137{
138 return radix_tree_lookup(&irq_desc_tree, irq);
139}
140
141void replace_irq_desc(unsigned int irq, struct irq_desc *desc)
142{
143 void **ptr;
144
145 ptr = radix_tree_lookup_slot(&irq_desc_tree, irq);
146 if (ptr)
147 radix_tree_replace_slot(ptr, desc);
148}
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800149
Yinghai Lu99d093d2008-12-05 18:58:32 -0800150static struct irq_desc irq_desc_legacy[NR_IRQS_LEGACY] __cacheline_aligned_in_smp = {
151 [0 ... NR_IRQS_LEGACY-1] = {
Thomas Gleixnerff7dcd42010-09-27 12:44:25 +0000152 .status = IRQ_DISABLED,
153 .handle_irq = handle_bad_irq,
154 .depth = 1,
155 .lock = __RAW_SPIN_LOCK_UNLOCKED(irq_desc_init.lock),
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800156 }
157};
158
Mike Travis542d8652009-01-10 22:24:07 -0800159static unsigned int *kstat_irqs_legacy;
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800160
Yinghai Lu13a0c3c2008-12-26 02:05:47 -0800161int __init early_irq_init(void)
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800162{
163 struct irq_desc *desc;
164 int legacy_count;
Yinghai Ludad213a2009-05-28 18:14:40 -0700165 int node;
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800166 int i;
167
David Daney97179fd2009-01-27 09:53:22 -0800168 init_irq_default_affinity();
169
Yinghai Lu4a046d12009-01-12 17:39:24 -0800170 /* initialize nr_irqs based on nr_cpu_ids */
171 arch_probe_nr_irqs();
Mike Travis95949492009-01-10 22:24:06 -0800172 printk(KERN_INFO "NR_IRQS:%d nr_irqs:%d\n", NR_IRQS, nr_irqs);
173
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800174 desc = irq_desc_legacy;
175 legacy_count = ARRAY_SIZE(irq_desc_legacy);
Yinghai Lu372e24b2009-08-26 16:20:13 -0700176 node = first_online_node;
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800177
Mike Travis542d8652009-01-10 22:24:07 -0800178 /* allocate based on nr_cpu_ids */
Yinghai Ludad213a2009-05-28 18:14:40 -0700179 kstat_irqs_legacy = kzalloc_node(NR_IRQS_LEGACY * nr_cpu_ids *
180 sizeof(int), GFP_NOWAIT, node);
Mike Travis542d8652009-01-10 22:24:07 -0800181
Thomas Gleixnerff7dcd42010-09-27 12:44:25 +0000182 irq_desc_init.irq_data.chip = &no_irq_chip;
183
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800184 for (i = 0; i < legacy_count; i++) {
Thomas Gleixnerff7dcd42010-09-27 12:44:25 +0000185 desc[i].irq_data.irq = i;
186 desc[i].irq_data.chip = &no_irq_chip;
Yinghai Lu372e24b2009-08-26 16:20:13 -0700187#ifdef CONFIG_SMP
Thomas Gleixner6b8ff312010-10-01 12:58:38 +0200188 desc[i].irq_data.node = node;
Yinghai Lu372e24b2009-08-26 16:20:13 -0700189#endif
Mike Travis542d8652009-01-10 22:24:07 -0800190 desc[i].kstat_irqs = kstat_irqs_legacy + i * nr_cpu_ids;
Yinghai Lufa6beb32008-12-22 20:24:09 -0800191 lockdep_set_class(&desc[i].lock, &irq_desc_lock_class);
Yinghai Ludad213a2009-05-28 18:14:40 -0700192 alloc_desc_masks(&desc[i], node, true);
Yinghai Lu9ec4fa22009-04-27 17:57:18 -0700193 init_desc_masks(&desc[i]);
Yinghai Lub5eb78f2010-02-10 01:20:35 -0800194 set_irq_desc(i, &desc[i]);
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800195 }
196
Yinghai Lu13a0c3c2008-12-26 02:05:47 -0800197 return arch_early_irq_init();
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800198}
199
Paul Mundt948cd522009-05-22 10:40:09 +0900200struct irq_desc * __ref irq_to_desc_alloc_node(unsigned int irq, int node)
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800201{
202 struct irq_desc *desc;
203 unsigned long flags;
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800204
Mike Travis95949492009-01-10 22:24:06 -0800205 if (irq >= nr_irqs) {
Mike Travise2f4d062009-01-10 22:24:06 -0800206 WARN(1, "irq (%d) >= nr_irqs (%d) in irq_to_desc_alloc\n",
207 irq, nr_irqs);
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800208 return NULL;
209 }
210
Yinghai Lub5eb78f2010-02-10 01:20:35 -0800211 desc = irq_to_desc(irq);
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800212 if (desc)
213 return desc;
214
Thomas Gleixner239007b2009-11-17 16:46:45 +0100215 raw_spin_lock_irqsave(&sparse_irq_lock, flags);
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800216
217 /* We have to check it to avoid races with another CPU */
Yinghai Lub5eb78f2010-02-10 01:20:35 -0800218 desc = irq_to_desc(irq);
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800219 if (desc)
220 goto out_unlock;
221
Yinghai Lufebcb0c2010-02-10 01:20:32 -0800222 desc = kzalloc_node(sizeof(*desc), GFP_ATOMIC, node);
Paul Mundt948cd522009-05-22 10:40:09 +0900223
Yinghai Lu85ac16d2009-04-27 18:00:38 -0700224 printk(KERN_DEBUG " alloc irq_desc for %d on node %d\n", irq, node);
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800225 if (!desc) {
226 printk(KERN_ERR "can not alloc irq_desc\n");
227 BUG_ON(1);
228 }
Yinghai Lu85ac16d2009-04-27 18:00:38 -0700229 init_one_irq_desc(irq, desc, node);
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800230
Yinghai Lub5eb78f2010-02-10 01:20:35 -0800231 set_irq_desc(irq, desc);
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800232
233out_unlock:
Thomas Gleixner239007b2009-11-17 16:46:45 +0100234 raw_spin_unlock_irqrestore(&sparse_irq_lock, flags);
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800235
236 return desc;
237}
238
KOSAKI Motohirof9af0e72008-12-26 12:24:24 +0900239#else /* !CONFIG_SPARSE_IRQ */
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800240
Ravikiran G Thirumalaie729aa12007-05-08 00:29:13 -0700241struct irq_desc irq_desc[NR_IRQS] __cacheline_aligned_in_smp = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 [0 ... NR_IRQS-1] = {
Thomas Gleixnerff7dcd42010-09-27 12:44:25 +0000243 .status = IRQ_DISABLED,
244 .handle_irq = handle_bad_irq,
245 .depth = 1,
246 .lock = __RAW_SPIN_LOCK_UNLOCKED(irq_desc->lock),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247 }
248};
Yinghai Lu08678b02008-08-19 20:50:05 -0700249
Yinghai Lud7e51e62009-01-07 15:03:13 -0800250static unsigned int kstat_irqs_all[NR_IRQS][NR_CPUS];
Yinghai Lu12026ea2008-12-26 22:38:15 -0800251int __init early_irq_init(void)
252{
253 struct irq_desc *desc;
254 int count;
255 int i;
256
David Daney97179fd2009-01-27 09:53:22 -0800257 init_irq_default_affinity();
258
Mike Travis95949492009-01-10 22:24:06 -0800259 printk(KERN_INFO "NR_IRQS:%d\n", NR_IRQS);
260
Yinghai Lu12026ea2008-12-26 22:38:15 -0800261 desc = irq_desc;
262 count = ARRAY_SIZE(irq_desc);
263
Yinghai Lud7e51e62009-01-07 15:03:13 -0800264 for (i = 0; i < count; i++) {
Thomas Gleixnerff7dcd42010-09-27 12:44:25 +0000265 desc[i].irq_data.irq = i;
266 desc[i].irq_data.chip = &no_irq_chip;
Yinghai Lu9ec4fa22009-04-27 17:57:18 -0700267 alloc_desc_masks(&desc[i], 0, true);
268 init_desc_masks(&desc[i]);
Yinghai Lud7e51e62009-01-07 15:03:13 -0800269 desc[i].kstat_irqs = kstat_irqs_all[i];
270 }
Yinghai Lu12026ea2008-12-26 22:38:15 -0800271 return arch_early_irq_init();
272}
273
KOSAKI Motohirof9af0e72008-12-26 12:24:24 +0900274struct irq_desc *irq_to_desc(unsigned int irq)
275{
276 return (irq < NR_IRQS) ? irq_desc + irq : NULL;
277}
278
Yinghai Lu85ac16d2009-04-27 18:00:38 -0700279struct irq_desc *irq_to_desc_alloc_node(unsigned int irq, int node)
KOSAKI Motohirof9af0e72008-12-26 12:24:24 +0900280{
281 return irq_to_desc(irq);
282}
283#endif /* !CONFIG_SPARSE_IRQ */
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800284
Yinghai Lu0f3c2a82009-02-08 16:18:03 -0800285void clear_kstat_irqs(struct irq_desc *desc)
286{
287 memset(desc->kstat_irqs, 0, nr_cpu_ids * sizeof(*(desc->kstat_irqs)));
288}
289
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290/*
Ingo Molnar77a5afe2006-06-29 02:24:46 -0700291 * What should we do if we get a hw irq event on an illegal vector?
292 * Each architecture has to answer this themself.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293 */
Thomas Gleixnera77c4632010-10-01 14:44:58 +0200294static void ack_bad(struct irq_data *data)
295{
296 struct irq_desc *desc = irq_data_to_desc(data);
297
298 print_irq_desc(data->irq, desc);
299 ack_bad_irq(data->irq);
300}
301
Ingo Molnar77a5afe2006-06-29 02:24:46 -0700302/*
303 * NOP functions
304 */
Thomas Gleixnera77c4632010-10-01 14:44:58 +0200305static void noop(struct irq_data *data) { }
306
307static unsigned int noop_ret(struct irq_data *data)
Ingo Molnar77a5afe2006-06-29 02:24:46 -0700308{
Thomas Gleixnera77c4632010-10-01 14:44:58 +0200309 return 0;
Ingo Molnar77a5afe2006-06-29 02:24:46 -0700310}
311
Thomas Gleixnerbd151412010-10-01 15:17:14 +0200312#ifndef CONFIG_GENERIC_HARDIRQS_NO_DEPRECATED
Thomas Gleixnera77c4632010-10-01 14:44:58 +0200313static void compat_noop(unsigned int irq) { }
Thomas Gleixnerbd151412010-10-01 15:17:14 +0200314#define END_INIT .end = compat_noop
315#else
316#define END_INIT
317#endif
Thomas Gleixnera77c4632010-10-01 14:44:58 +0200318
Ingo Molnar77a5afe2006-06-29 02:24:46 -0700319/*
320 * Generic no controller implementation
321 */
Ingo Molnarf1c26622006-06-29 02:24:57 -0700322struct irq_chip no_irq_chip = {
323 .name = "none",
Thomas Gleixnera77c4632010-10-01 14:44:58 +0200324 .irq_startup = noop_ret,
325 .irq_shutdown = noop,
326 .irq_enable = noop,
327 .irq_disable = noop,
328 .irq_ack = ack_bad,
Thomas Gleixnerbd151412010-10-01 15:17:14 +0200329 END_INIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330};
331
332/*
Thomas Gleixnerf8b54732006-07-01 22:30:08 +0100333 * Generic dummy implementation which can be used for
334 * real dumb interrupt sources
335 */
336struct irq_chip dummy_irq_chip = {
337 .name = "dummy",
Thomas Gleixnera77c4632010-10-01 14:44:58 +0200338 .irq_startup = noop_ret,
339 .irq_shutdown = noop,
340 .irq_enable = noop,
341 .irq_disable = noop,
342 .irq_ack = noop,
343 .irq_mask = noop,
344 .irq_unmask = noop,
Thomas Gleixnerbd151412010-10-01 15:17:14 +0200345 END_INIT
Thomas Gleixnerf8b54732006-07-01 22:30:08 +0100346};
347
348/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349 * Special, empty irq handler:
350 */
David Howells7d12e782006-10-05 14:55:46 +0100351irqreturn_t no_action(int cpl, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352{
353 return IRQ_NONE;
354}
355
Thomas Gleixnerf48fe812009-03-24 11:46:22 +0100356static void warn_no_thread(unsigned int irq, struct irqaction *action)
357{
358 if (test_and_set_bit(IRQTF_WARNED, &action->thread_flags))
359 return;
360
361 printk(KERN_WARNING "IRQ %d device %s returned IRQ_WAKE_THREAD "
362 "but no thread function available.", irq, action->name);
363}
364
Ingo Molnar8d28bc72006-06-29 02:24:46 -0700365/**
366 * handle_IRQ_event - irq action chain handler
367 * @irq: the interrupt number
Ingo Molnar8d28bc72006-06-29 02:24:46 -0700368 * @action: the interrupt action chain for this irq
369 *
370 * Handles the action chain of an irq event
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 */
David Howells7d12e782006-10-05 14:55:46 +0100372irqreturn_t handle_IRQ_event(unsigned int irq, struct irqaction *action)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373{
Jan Beulich908dcec2006-06-23 02:06:00 -0700374 irqreturn_t ret, retval = IRQ_NONE;
375 unsigned int status = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377 do {
Jason Baronaf392412009-02-26 10:11:05 -0500378 trace_irq_handler_entry(irq, action);
David Howells7d12e782006-10-05 14:55:46 +0100379 ret = action->handler(irq, action->dev_id);
Jason Baronaf392412009-02-26 10:11:05 -0500380 trace_irq_handler_exit(irq, action, ret);
Thomas Gleixner3aa551c2009-03-23 18:28:15 +0100381
382 switch (ret) {
383 case IRQ_WAKE_THREAD:
384 /*
Thomas Gleixnerf48fe812009-03-24 11:46:22 +0100385 * Set result to handled so the spurious check
386 * does not trigger.
387 */
388 ret = IRQ_HANDLED;
389
390 /*
391 * Catch drivers which return WAKE_THREAD but
392 * did not set up a thread function
393 */
394 if (unlikely(!action->thread_fn)) {
395 warn_no_thread(irq, action);
396 break;
397 }
398
399 /*
Thomas Gleixner3aa551c2009-03-23 18:28:15 +0100400 * Wake up the handler thread for this
401 * action. In case the thread crashed and was
402 * killed we just pretend that we handled the
403 * interrupt. The hardirq handler above has
404 * disabled the device interrupt, so no irq
405 * storm is lurking.
406 */
407 if (likely(!test_bit(IRQTF_DIED,
408 &action->thread_flags))) {
409 set_bit(IRQTF_RUNTHREAD, &action->thread_flags);
410 wake_up_process(action->thread);
411 }
412
Thomas Gleixner3aa551c2009-03-23 18:28:15 +0100413 /* Fall through to add to randomness */
414 case IRQ_HANDLED:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415 status |= action->flags;
Thomas Gleixner3aa551c2009-03-23 18:28:15 +0100416 break;
417
418 default:
419 break;
420 }
421
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422 retval |= ret;
423 action = action->next;
424 } while (action);
425
Thomas Gleixner3cca53b2006-07-01 19:29:31 -0700426 if (status & IRQF_SAMPLE_RANDOM)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427 add_interrupt_randomness(irq);
428 local_irq_disable();
429
430 return retval;
431}
432
David Howellsaf8c65b2006-09-25 23:32:07 -0700433#ifndef CONFIG_GENERIC_HARDIRQS_NO__DO_IRQ
Thomas Gleixner0e57aa12009-03-13 14:34:05 +0100434
435#ifdef CONFIG_ENABLE_WARN_DEPRECATED
436# warning __do_IRQ is deprecated. Please convert to proper flow handlers
437#endif
438
Ingo Molnar8d28bc72006-06-29 02:24:46 -0700439/**
440 * __do_IRQ - original all in one highlevel IRQ handler
441 * @irq: the interrupt number
Ingo Molnar8d28bc72006-06-29 02:24:46 -0700442 *
443 * __do_IRQ handles all normal device IRQ's (the special
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444 * SMP cross-CPU interrupts have their own specific
445 * handlers).
Ingo Molnar8d28bc72006-06-29 02:24:46 -0700446 *
447 * This is the original x86 implementation which is used for every
448 * interrupt type.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449 */
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -0800450unsigned int __do_IRQ(unsigned int irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451{
Yinghai Lu08678b02008-08-19 20:50:05 -0700452 struct irq_desc *desc = irq_to_desc(irq);
Ingo Molnar06fcb0c2006-06-29 02:24:40 -0700453 struct irqaction *action;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454 unsigned int status;
455
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +0200456 kstat_incr_irqs_this_cpu(irq, desc);
457
Karsten Wiesef26fdd52005-09-06 15:17:25 -0700458 if (CHECK_IRQ_PER_CPU(desc->status)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459 irqreturn_t action_ret;
460
461 /*
462 * No locking required for CPU-local interrupts:
463 */
Thomas Gleixner6b8ff312010-10-01 12:58:38 +0200464 if (desc->irq_data.chip->ack)
465 desc->irq_data.chip->ack(irq);
Russ Andersonc642b832007-11-14 17:00:15 -0800466 if (likely(!(desc->status & IRQ_DISABLED))) {
467 action_ret = handle_IRQ_event(irq, desc->action);
468 if (!noirqdebug)
469 note_interrupt(irq, desc, action_ret);
470 }
Thomas Gleixner6b8ff312010-10-01 12:58:38 +0200471 desc->irq_data.chip->end(irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472 return 1;
473 }
474
Thomas Gleixner239007b2009-11-17 16:46:45 +0100475 raw_spin_lock(&desc->lock);
Thomas Gleixner6b8ff312010-10-01 12:58:38 +0200476 if (desc->irq_data.chip->ack)
477 desc->irq_data.chip->ack(irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478 /*
479 * REPLAY is when Linux resends an IRQ that was dropped earlier
480 * WAITING is used by probe to mark irqs that are being tested
481 */
482 status = desc->status & ~(IRQ_REPLAY | IRQ_WAITING);
483 status |= IRQ_PENDING; /* we _want_ to handle it */
484
485 /*
486 * If the IRQ is disabled for whatever reason, we cannot
487 * use the action we have.
488 */
489 action = NULL;
490 if (likely(!(status & (IRQ_DISABLED | IRQ_INPROGRESS)))) {
491 action = desc->action;
492 status &= ~IRQ_PENDING; /* we commit to handling */
493 status |= IRQ_INPROGRESS; /* we are handling it */
494 }
495 desc->status = status;
496
497 /*
498 * If there is no IRQ handler or it was disabled, exit early.
499 * Since we set PENDING, if another processor is handling
500 * a different instance of this same irq, the other processor
501 * will take care of it.
502 */
503 if (unlikely(!action))
504 goto out;
505
506 /*
507 * Edge triggered interrupts need to remember
508 * pending events.
509 * This applies to any hw interrupts that allow a second
510 * instance of the same irq to arrive while we are in do_IRQ
511 * or in the handler. But the code here only handles the _second_
512 * instance of the irq, not the third or fourth. So it is mostly
513 * useful for irq hardware that does not mask cleanly in an
514 * SMP environment.
515 */
516 for (;;) {
517 irqreturn_t action_ret;
518
Thomas Gleixner239007b2009-11-17 16:46:45 +0100519 raw_spin_unlock(&desc->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520
David Howells7d12e782006-10-05 14:55:46 +0100521 action_ret = handle_IRQ_event(irq, action);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522 if (!noirqdebug)
David Howells7d12e782006-10-05 14:55:46 +0100523 note_interrupt(irq, desc, action_ret);
Linus Torvaldsb42172f2006-11-22 09:32:06 -0800524
Thomas Gleixner239007b2009-11-17 16:46:45 +0100525 raw_spin_lock(&desc->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526 if (likely(!(desc->status & IRQ_PENDING)))
527 break;
528 desc->status &= ~IRQ_PENDING;
529 }
530 desc->status &= ~IRQ_INPROGRESS;
531
532out:
533 /*
534 * The ->end() handler has to deal with interrupts which got
535 * disabled while the handler was running.
536 */
Thomas Gleixner6b8ff312010-10-01 12:58:38 +0200537 desc->irq_data.chip->end(irq);
Thomas Gleixner239007b2009-11-17 16:46:45 +0100538 raw_spin_unlock(&desc->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539
540 return 1;
541}
David Howellsaf8c65b2006-09-25 23:32:07 -0700542#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543
Ingo Molnar243c7622006-07-03 00:25:06 -0700544void early_init_irq_lock_class(void)
545{
Thomas Gleixner10e58082008-10-16 14:19:04 +0200546 struct irq_desc *desc;
Ingo Molnar243c7622006-07-03 00:25:06 -0700547 int i;
548
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800549 for_each_irq_desc(i, desc) {
Thomas Gleixner10e58082008-10-16 14:19:04 +0200550 lockdep_set_class(&desc->lock, &irq_desc_lock_class);
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800551 }
Yinghai Lu08678b02008-08-19 20:50:05 -0700552}
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800553
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800554unsigned int kstat_irqs_cpu(unsigned int irq, int cpu)
555{
556 struct irq_desc *desc = irq_to_desc(irq);
KOSAKI Motohiro26ddd8d2008-12-26 14:24:10 +0900557 return desc ? desc->kstat_irqs[cpu] : 0;
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800558}
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800559EXPORT_SYMBOL(kstat_irqs_cpu);
560