blob: d70394f12ee914e313057e2e560f96088a136af0 [file] [log] [blame]
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -07001/*
2 * linux/kernel/irq/chip.c
3 *
4 * Copyright (C) 1992, 1998-2006 Linus Torvalds, Ingo Molnar
5 * Copyright (C) 2005-2006, Thomas Gleixner, Russell King
6 *
7 * This file contains the core interrupt handling code, for irq-chip
8 * based architectures.
9 *
10 * Detailed information is available in Documentation/DocBook/genericirq
11 */
12
13#include <linux/irq.h>
Michael Ellerman7fe37302007-04-18 19:39:21 +100014#include <linux/msi.h>
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -070015#include <linux/module.h>
16#include <linux/interrupt.h>
17#include <linux/kernel_stat.h>
18
19#include "internals.h"
20
Brandon Phiilpsced5b692010-02-10 01:20:06 -080021static void dynamic_irq_init_x(unsigned int irq, bool keep_chip_data)
Eric W. Biederman3a16d712006-10-04 02:16:37 -070022{
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -080023 struct irq_desc *desc;
Eric W. Biederman3a16d712006-10-04 02:16:37 -070024 unsigned long flags;
25
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -080026 desc = irq_to_desc(irq);
Yinghai Lu7d94f7c2008-08-19 20:50:14 -070027 if (!desc) {
Arjan van de Ven261c40c2008-07-25 19:45:37 -070028 WARN(1, KERN_ERR "Trying to initialize invalid IRQ%d\n", irq);
Eric W. Biederman3a16d712006-10-04 02:16:37 -070029 return;
30 }
31
32 /* Ensure we don't have left over values from a previous use of this irq */
Thomas Gleixner239007b2009-11-17 16:46:45 +010033 raw_spin_lock_irqsave(&desc->lock, flags);
Eric W. Biederman3a16d712006-10-04 02:16:37 -070034 desc->status = IRQ_DISABLED;
35 desc->chip = &no_irq_chip;
36 desc->handle_irq = handle_bad_irq;
37 desc->depth = 1;
Eric W. Biederman5b912c12007-01-28 12:52:03 -070038 desc->msi_desc = NULL;
Eric W. Biederman3a16d712006-10-04 02:16:37 -070039 desc->handler_data = NULL;
Brandon Phiilpsced5b692010-02-10 01:20:06 -080040 if (!keep_chip_data)
41 desc->chip_data = NULL;
Eric W. Biederman3a16d712006-10-04 02:16:37 -070042 desc->action = NULL;
43 desc->irq_count = 0;
44 desc->irqs_unhandled = 0;
45#ifdef CONFIG_SMP
Mike Travis7f7ace02009-01-10 21:58:08 -080046 cpumask_setall(desc->affinity);
47#ifdef CONFIG_GENERIC_PENDING_IRQ
48 cpumask_clear(desc->pending_mask);
49#endif
Eric W. Biederman3a16d712006-10-04 02:16:37 -070050#endif
Thomas Gleixner239007b2009-11-17 16:46:45 +010051 raw_spin_unlock_irqrestore(&desc->lock, flags);
Eric W. Biederman3a16d712006-10-04 02:16:37 -070052}
53
54/**
Brandon Phiilpsced5b692010-02-10 01:20:06 -080055 * dynamic_irq_init - initialize a dynamically allocated irq
Eric W. Biederman3a16d712006-10-04 02:16:37 -070056 * @irq: irq number to initialize
57 */
Brandon Phiilpsced5b692010-02-10 01:20:06 -080058void dynamic_irq_init(unsigned int irq)
59{
60 dynamic_irq_init_x(irq, false);
61}
62
63/**
64 * dynamic_irq_init_keep_chip_data - initialize a dynamically allocated irq
65 * @irq: irq number to initialize
66 *
67 * does not set irq_to_desc(irq)->chip_data to NULL
68 */
69void dynamic_irq_init_keep_chip_data(unsigned int irq)
70{
71 dynamic_irq_init_x(irq, true);
72}
73
74static void dynamic_irq_cleanup_x(unsigned int irq, bool keep_chip_data)
Eric W. Biederman3a16d712006-10-04 02:16:37 -070075{
Thomas Gleixnerd3c60042008-10-16 09:55:00 +020076 struct irq_desc *desc = irq_to_desc(irq);
Eric W. Biederman3a16d712006-10-04 02:16:37 -070077 unsigned long flags;
78
Yinghai Lu7d94f7c2008-08-19 20:50:14 -070079 if (!desc) {
Arjan van de Ven261c40c2008-07-25 19:45:37 -070080 WARN(1, KERN_ERR "Trying to cleanup invalid IRQ%d\n", irq);
Eric W. Biederman3a16d712006-10-04 02:16:37 -070081 return;
82 }
83
Thomas Gleixner239007b2009-11-17 16:46:45 +010084 raw_spin_lock_irqsave(&desc->lock, flags);
Eric W. Biederman1f800252006-10-04 02:16:56 -070085 if (desc->action) {
Thomas Gleixner239007b2009-11-17 16:46:45 +010086 raw_spin_unlock_irqrestore(&desc->lock, flags);
Arjan van de Ven261c40c2008-07-25 19:45:37 -070087 WARN(1, KERN_ERR "Destroying IRQ%d without calling free_irq\n",
Eric W. Biederman1f800252006-10-04 02:16:56 -070088 irq);
Eric W. Biederman1f800252006-10-04 02:16:56 -070089 return;
90 }
Eric W. Biederman5b912c12007-01-28 12:52:03 -070091 desc->msi_desc = NULL;
92 desc->handler_data = NULL;
Brandon Phiilpsced5b692010-02-10 01:20:06 -080093 if (!keep_chip_data)
94 desc->chip_data = NULL;
Eric W. Biederman3a16d712006-10-04 02:16:37 -070095 desc->handle_irq = handle_bad_irq;
96 desc->chip = &no_irq_chip;
Dean Nelsonb6f3b782008-10-18 16:06:56 -070097 desc->name = NULL;
Yinghai Lu0f3c2a82009-02-08 16:18:03 -080098 clear_kstat_irqs(desc);
Thomas Gleixner239007b2009-11-17 16:46:45 +010099 raw_spin_unlock_irqrestore(&desc->lock, flags);
Eric W. Biederman3a16d712006-10-04 02:16:37 -0700100}
101
Brandon Phiilpsced5b692010-02-10 01:20:06 -0800102/**
103 * dynamic_irq_cleanup - cleanup a dynamically allocated irq
104 * @irq: irq number to initialize
105 */
106void dynamic_irq_cleanup(unsigned int irq)
107{
108 dynamic_irq_cleanup_x(irq, false);
109}
110
111/**
112 * dynamic_irq_cleanup_keep_chip_data - cleanup a dynamically allocated irq
113 * @irq: irq number to initialize
114 *
115 * does not set irq_to_desc(irq)->chip_data to NULL
116 */
117void dynamic_irq_cleanup_keep_chip_data(unsigned int irq)
118{
119 dynamic_irq_cleanup_x(irq, true);
120}
121
Eric W. Biederman3a16d712006-10-04 02:16:37 -0700122
123/**
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700124 * set_irq_chip - set the irq chip for an irq
125 * @irq: irq number
126 * @chip: pointer to irq chip description structure
127 */
128int set_irq_chip(unsigned int irq, struct irq_chip *chip)
129{
Thomas Gleixnerd3c60042008-10-16 09:55:00 +0200130 struct irq_desc *desc = irq_to_desc(irq);
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700131 unsigned long flags;
132
Yinghai Lu7d94f7c2008-08-19 20:50:14 -0700133 if (!desc) {
Arjan van de Ven261c40c2008-07-25 19:45:37 -0700134 WARN(1, KERN_ERR "Trying to install chip for IRQ%d\n", irq);
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700135 return -EINVAL;
136 }
137
138 if (!chip)
139 chip = &no_irq_chip;
140
Thomas Gleixner239007b2009-11-17 16:46:45 +0100141 raw_spin_lock_irqsave(&desc->lock, flags);
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700142 irq_chip_set_defaults(chip);
143 desc->chip = chip;
Thomas Gleixner239007b2009-11-17 16:46:45 +0100144 raw_spin_unlock_irqrestore(&desc->lock, flags);
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700145
146 return 0;
147}
148EXPORT_SYMBOL(set_irq_chip);
149
150/**
David Brownell0c5d1eb2008-10-01 14:46:18 -0700151 * set_irq_type - set the irq trigger type for an irq
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700152 * @irq: irq number
David Brownell0c5d1eb2008-10-01 14:46:18 -0700153 * @type: IRQ_TYPE_{LEVEL,EDGE}_* value - see include/linux/irq.h
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700154 */
155int set_irq_type(unsigned int irq, unsigned int type)
156{
Thomas Gleixnerd3c60042008-10-16 09:55:00 +0200157 struct irq_desc *desc = irq_to_desc(irq);
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700158 unsigned long flags;
159 int ret = -ENXIO;
160
Yinghai Lu7d94f7c2008-08-19 20:50:14 -0700161 if (!desc) {
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700162 printk(KERN_ERR "Trying to set irq type for IRQ%d\n", irq);
163 return -ENODEV;
164 }
165
David Brownellf2b662d2008-12-01 14:31:38 -0800166 type &= IRQ_TYPE_SENSE_MASK;
David Brownell0c5d1eb2008-10-01 14:46:18 -0700167 if (type == IRQ_TYPE_NONE)
168 return 0;
169
Thomas Gleixner239007b2009-11-17 16:46:45 +0100170 raw_spin_lock_irqsave(&desc->lock, flags);
Chris Friesen0b3682ba32008-10-20 12:41:58 -0600171 ret = __irq_set_trigger(desc, irq, type);
Thomas Gleixner239007b2009-11-17 16:46:45 +0100172 raw_spin_unlock_irqrestore(&desc->lock, flags);
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700173 return ret;
174}
175EXPORT_SYMBOL(set_irq_type);
176
177/**
178 * set_irq_data - set irq type data for an irq
179 * @irq: Interrupt number
180 * @data: Pointer to interrupt specific data
181 *
182 * Set the hardware irq controller data for an irq
183 */
184int set_irq_data(unsigned int irq, void *data)
185{
Thomas Gleixnerd3c60042008-10-16 09:55:00 +0200186 struct irq_desc *desc = irq_to_desc(irq);
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700187 unsigned long flags;
188
Yinghai Lu7d94f7c2008-08-19 20:50:14 -0700189 if (!desc) {
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700190 printk(KERN_ERR
191 "Trying to install controller data for IRQ%d\n", irq);
192 return -EINVAL;
193 }
194
Thomas Gleixner239007b2009-11-17 16:46:45 +0100195 raw_spin_lock_irqsave(&desc->lock, flags);
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700196 desc->handler_data = data;
Thomas Gleixner239007b2009-11-17 16:46:45 +0100197 raw_spin_unlock_irqrestore(&desc->lock, flags);
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700198 return 0;
199}
200EXPORT_SYMBOL(set_irq_data);
201
202/**
Liuweni24b26d42009-11-04 20:11:05 +0800203 * set_irq_msi - set MSI descriptor data for an irq
Eric W. Biederman5b912c12007-01-28 12:52:03 -0700204 * @irq: Interrupt number
Randy Dunlap472900b2007-02-16 01:28:25 -0800205 * @entry: Pointer to MSI descriptor data
Eric W. Biederman5b912c12007-01-28 12:52:03 -0700206 *
Liuweni24b26d42009-11-04 20:11:05 +0800207 * Set the MSI descriptor entry for an irq
Eric W. Biederman5b912c12007-01-28 12:52:03 -0700208 */
209int set_irq_msi(unsigned int irq, struct msi_desc *entry)
210{
Thomas Gleixnerd3c60042008-10-16 09:55:00 +0200211 struct irq_desc *desc = irq_to_desc(irq);
Eric W. Biederman5b912c12007-01-28 12:52:03 -0700212 unsigned long flags;
213
Yinghai Lu7d94f7c2008-08-19 20:50:14 -0700214 if (!desc) {
Eric W. Biederman5b912c12007-01-28 12:52:03 -0700215 printk(KERN_ERR
216 "Trying to install msi data for IRQ%d\n", irq);
217 return -EINVAL;
218 }
Yinghai Lu7d94f7c2008-08-19 20:50:14 -0700219
Thomas Gleixner239007b2009-11-17 16:46:45 +0100220 raw_spin_lock_irqsave(&desc->lock, flags);
Eric W. Biederman5b912c12007-01-28 12:52:03 -0700221 desc->msi_desc = entry;
Michael Ellerman7fe37302007-04-18 19:39:21 +1000222 if (entry)
223 entry->irq = irq;
Thomas Gleixner239007b2009-11-17 16:46:45 +0100224 raw_spin_unlock_irqrestore(&desc->lock, flags);
Eric W. Biederman5b912c12007-01-28 12:52:03 -0700225 return 0;
226}
227
228/**
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700229 * set_irq_chip_data - set irq chip data for an irq
230 * @irq: Interrupt number
231 * @data: Pointer to chip specific data
232 *
233 * Set the hardware irq chip data for an irq
234 */
235int set_irq_chip_data(unsigned int irq, void *data)
236{
Thomas Gleixnerd3c60042008-10-16 09:55:00 +0200237 struct irq_desc *desc = irq_to_desc(irq);
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700238 unsigned long flags;
239
Yinghai Lu7d94f7c2008-08-19 20:50:14 -0700240 if (!desc) {
241 printk(KERN_ERR
242 "Trying to install chip data for IRQ%d\n", irq);
243 return -EINVAL;
244 }
245
246 if (!desc->chip) {
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700247 printk(KERN_ERR "BUG: bad set_irq_chip_data(IRQ#%d)\n", irq);
248 return -EINVAL;
249 }
250
Thomas Gleixner239007b2009-11-17 16:46:45 +0100251 raw_spin_lock_irqsave(&desc->lock, flags);
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700252 desc->chip_data = data;
Thomas Gleixner239007b2009-11-17 16:46:45 +0100253 raw_spin_unlock_irqrestore(&desc->lock, flags);
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700254
255 return 0;
256}
257EXPORT_SYMBOL(set_irq_chip_data);
258
Thomas Gleixner399b5da2009-08-13 13:21:38 +0200259/**
260 * set_irq_nested_thread - Set/Reset the IRQ_NESTED_THREAD flag of an irq
261 *
262 * @irq: Interrupt number
263 * @nest: 0 to clear / 1 to set the IRQ_NESTED_THREAD flag
264 *
265 * The IRQ_NESTED_THREAD flag indicates that on
266 * request_threaded_irq() no separate interrupt thread should be
267 * created for the irq as the handler are called nested in the
268 * context of a demultiplexing interrupt handler thread.
269 */
270void set_irq_nested_thread(unsigned int irq, int nest)
271{
272 struct irq_desc *desc = irq_to_desc(irq);
273 unsigned long flags;
274
275 if (!desc)
276 return;
277
Thomas Gleixner239007b2009-11-17 16:46:45 +0100278 raw_spin_lock_irqsave(&desc->lock, flags);
Thomas Gleixner399b5da2009-08-13 13:21:38 +0200279 if (nest)
280 desc->status |= IRQ_NESTED_THREAD;
281 else
282 desc->status &= ~IRQ_NESTED_THREAD;
Thomas Gleixner239007b2009-11-17 16:46:45 +0100283 raw_spin_unlock_irqrestore(&desc->lock, flags);
Thomas Gleixner399b5da2009-08-13 13:21:38 +0200284}
285EXPORT_SYMBOL_GPL(set_irq_nested_thread);
286
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700287/*
288 * default enable function
289 */
290static void default_enable(unsigned int irq)
291{
Thomas Gleixnerd3c60042008-10-16 09:55:00 +0200292 struct irq_desc *desc = irq_to_desc(irq);
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700293
294 desc->chip->unmask(irq);
295 desc->status &= ~IRQ_MASKED;
296}
297
298/*
299 * default disable function
300 */
301static void default_disable(unsigned int irq)
302{
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700303}
304
305/*
306 * default startup function
307 */
308static unsigned int default_startup(unsigned int irq)
309{
Thomas Gleixnerd3c60042008-10-16 09:55:00 +0200310 struct irq_desc *desc = irq_to_desc(irq);
Yinghai Lu08678b02008-08-19 20:50:05 -0700311
Yinghai Lu08678b02008-08-19 20:50:05 -0700312 desc->chip->enable(irq);
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700313 return 0;
314}
315
316/*
Thomas Gleixner89d694b2008-02-18 18:25:17 +0100317 * default shutdown function
318 */
319static void default_shutdown(unsigned int irq)
320{
Thomas Gleixnerd3c60042008-10-16 09:55:00 +0200321 struct irq_desc *desc = irq_to_desc(irq);
Thomas Gleixner89d694b2008-02-18 18:25:17 +0100322
323 desc->chip->mask(irq);
324 desc->status |= IRQ_MASKED;
325}
326
327/*
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700328 * Fixup enable/disable function pointers
329 */
330void irq_chip_set_defaults(struct irq_chip *chip)
331{
332 if (!chip->enable)
333 chip->enable = default_enable;
334 if (!chip->disable)
335 chip->disable = default_disable;
336 if (!chip->startup)
337 chip->startup = default_startup;
Thomas Gleixner89d694b2008-02-18 18:25:17 +0100338 /*
339 * We use chip->disable, when the user provided its own. When
340 * we have default_disable set for chip->disable, then we need
341 * to use default_shutdown, otherwise the irq line is not
342 * disabled on free_irq():
343 */
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700344 if (!chip->shutdown)
Thomas Gleixner89d694b2008-02-18 18:25:17 +0100345 chip->shutdown = chip->disable != default_disable ?
346 chip->disable : default_shutdown;
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700347 if (!chip->name)
348 chip->name = chip->typename;
Zhang, Yanminb86432b2006-11-16 01:19:10 -0800349 if (!chip->end)
350 chip->end = dummy_irq_chip.end;
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700351}
352
353static inline void mask_ack_irq(struct irq_desc *desc, int irq)
354{
355 if (desc->chip->mask_ack)
356 desc->chip->mask_ack(irq);
357 else {
358 desc->chip->mask(irq);
Wang Chenefdc64f2008-12-29 13:35:11 +0800359 if (desc->chip->ack)
360 desc->chip->ack(irq);
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700361 }
362}
363
Thomas Gleixner399b5da2009-08-13 13:21:38 +0200364/*
365 * handle_nested_irq - Handle a nested irq from a irq thread
366 * @irq: the interrupt number
367 *
368 * Handle interrupts which are nested into a threaded interrupt
369 * handler. The handler function is called inside the calling
370 * threads context.
371 */
372void handle_nested_irq(unsigned int irq)
373{
374 struct irq_desc *desc = irq_to_desc(irq);
375 struct irqaction *action;
376 irqreturn_t action_ret;
377
378 might_sleep();
379
Thomas Gleixner239007b2009-11-17 16:46:45 +0100380 raw_spin_lock_irq(&desc->lock);
Thomas Gleixner399b5da2009-08-13 13:21:38 +0200381
382 kstat_incr_irqs_this_cpu(irq, desc);
383
384 action = desc->action;
385 if (unlikely(!action || (desc->status & IRQ_DISABLED)))
386 goto out_unlock;
387
388 desc->status |= IRQ_INPROGRESS;
Thomas Gleixner239007b2009-11-17 16:46:45 +0100389 raw_spin_unlock_irq(&desc->lock);
Thomas Gleixner399b5da2009-08-13 13:21:38 +0200390
391 action_ret = action->thread_fn(action->irq, action->dev_id);
392 if (!noirqdebug)
393 note_interrupt(irq, desc, action_ret);
394
Thomas Gleixner239007b2009-11-17 16:46:45 +0100395 raw_spin_lock_irq(&desc->lock);
Thomas Gleixner399b5da2009-08-13 13:21:38 +0200396 desc->status &= ~IRQ_INPROGRESS;
397
398out_unlock:
Thomas Gleixner239007b2009-11-17 16:46:45 +0100399 raw_spin_unlock_irq(&desc->lock);
Thomas Gleixner399b5da2009-08-13 13:21:38 +0200400}
401EXPORT_SYMBOL_GPL(handle_nested_irq);
402
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700403/**
404 * handle_simple_irq - Simple and software-decoded IRQs.
405 * @irq: the interrupt number
406 * @desc: the interrupt description structure for this irq
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700407 *
408 * Simple interrupts are either sent from a demultiplexing interrupt
409 * handler or come from hardware, where no interrupt hardware control
410 * is necessary.
411 *
412 * Note: The caller is expected to handle the ack, clear, mask and
413 * unmask issues if necessary.
414 */
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -0800415void
David Howells7d12e782006-10-05 14:55:46 +0100416handle_simple_irq(unsigned int irq, struct irq_desc *desc)
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700417{
418 struct irqaction *action;
419 irqreturn_t action_ret;
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700420
Thomas Gleixner239007b2009-11-17 16:46:45 +0100421 raw_spin_lock(&desc->lock);
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700422
423 if (unlikely(desc->status & IRQ_INPROGRESS))
424 goto out_unlock;
Steven Rostedt971e5b35f2007-12-18 18:05:58 +0100425 desc->status &= ~(IRQ_REPLAY | IRQ_WAITING);
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +0200426 kstat_incr_irqs_this_cpu(irq, desc);
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700427
428 action = desc->action;
Steven Rostedt971e5b35f2007-12-18 18:05:58 +0100429 if (unlikely(!action || (desc->status & IRQ_DISABLED)))
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700430 goto out_unlock;
431
432 desc->status |= IRQ_INPROGRESS;
Thomas Gleixner239007b2009-11-17 16:46:45 +0100433 raw_spin_unlock(&desc->lock);
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700434
David Howells7d12e782006-10-05 14:55:46 +0100435 action_ret = handle_IRQ_event(irq, action);
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700436 if (!noirqdebug)
David Howells7d12e782006-10-05 14:55:46 +0100437 note_interrupt(irq, desc, action_ret);
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700438
Thomas Gleixner239007b2009-11-17 16:46:45 +0100439 raw_spin_lock(&desc->lock);
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700440 desc->status &= ~IRQ_INPROGRESS;
441out_unlock:
Thomas Gleixner239007b2009-11-17 16:46:45 +0100442 raw_spin_unlock(&desc->lock);
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700443}
444
445/**
446 * handle_level_irq - Level type irq handler
447 * @irq: the interrupt number
448 * @desc: the interrupt description structure for this irq
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700449 *
450 * Level type interrupts are active as long as the hardware line has
451 * the active level. This may require to mask the interrupt and unmask
452 * it after the associated handler has acknowledged the device, so the
453 * interrupt line is back to inactive.
454 */
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -0800455void
David Howells7d12e782006-10-05 14:55:46 +0100456handle_level_irq(unsigned int irq, struct irq_desc *desc)
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700457{
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700458 struct irqaction *action;
459 irqreturn_t action_ret;
460
Thomas Gleixner239007b2009-11-17 16:46:45 +0100461 raw_spin_lock(&desc->lock);
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700462 mask_ack_irq(desc, irq);
463
464 if (unlikely(desc->status & IRQ_INPROGRESS))
Ingo Molnar86998aa2006-09-19 11:14:34 +0200465 goto out_unlock;
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700466 desc->status &= ~(IRQ_REPLAY | IRQ_WAITING);
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +0200467 kstat_incr_irqs_this_cpu(irq, desc);
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700468
469 /*
470 * If its disabled or no action available
471 * keep it masked and get out of here
472 */
473 action = desc->action;
Thomas Gleixner49663422007-08-12 15:46:34 +0000474 if (unlikely(!action || (desc->status & IRQ_DISABLED)))
Ingo Molnar86998aa2006-09-19 11:14:34 +0200475 goto out_unlock;
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700476
477 desc->status |= IRQ_INPROGRESS;
Thomas Gleixner239007b2009-11-17 16:46:45 +0100478 raw_spin_unlock(&desc->lock);
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700479
David Howells7d12e782006-10-05 14:55:46 +0100480 action_ret = handle_IRQ_event(irq, action);
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700481 if (!noirqdebug)
David Howells7d12e782006-10-05 14:55:46 +0100482 note_interrupt(irq, desc, action_ret);
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700483
Thomas Gleixner239007b2009-11-17 16:46:45 +0100484 raw_spin_lock(&desc->lock);
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700485 desc->status &= ~IRQ_INPROGRESS;
Thomas Gleixnerb25c3402009-08-13 12:17:22 +0200486
487 if (unlikely(desc->status & IRQ_ONESHOT))
488 desc->status |= IRQ_MASKED;
489 else if (!(desc->status & IRQ_DISABLED) && desc->chip->unmask)
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700490 desc->chip->unmask(irq);
Ingo Molnar86998aa2006-09-19 11:14:34 +0200491out_unlock:
Thomas Gleixner239007b2009-11-17 16:46:45 +0100492 raw_spin_unlock(&desc->lock);
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700493}
Ingo Molnar14819ea2009-01-14 12:34:21 +0100494EXPORT_SYMBOL_GPL(handle_level_irq);
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700495
496/**
Ingo Molnar47c2a3a2006-06-29 02:25:03 -0700497 * handle_fasteoi_irq - irq handler for transparent controllers
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700498 * @irq: the interrupt number
499 * @desc: the interrupt description structure for this irq
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700500 *
Ingo Molnar47c2a3a2006-06-29 02:25:03 -0700501 * Only a single callback will be issued to the chip: an ->eoi()
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700502 * call when the interrupt has been serviced. This enables support
503 * for modern forms of interrupt handlers, which handle the flow
504 * details in hardware, transparently.
505 */
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -0800506void
David Howells7d12e782006-10-05 14:55:46 +0100507handle_fasteoi_irq(unsigned int irq, struct irq_desc *desc)
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700508{
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700509 struct irqaction *action;
510 irqreturn_t action_ret;
511
Thomas Gleixner239007b2009-11-17 16:46:45 +0100512 raw_spin_lock(&desc->lock);
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700513
514 if (unlikely(desc->status & IRQ_INPROGRESS))
515 goto out;
516
517 desc->status &= ~(IRQ_REPLAY | IRQ_WAITING);
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +0200518 kstat_incr_irqs_this_cpu(irq, desc);
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700519
520 /*
521 * If its disabled or no action available
Ingo Molnar76d21602007-02-16 01:28:24 -0800522 * then mask it and get out of here:
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700523 */
524 action = desc->action;
Benjamin Herrenschmidt98bb2442006-06-29 02:25:01 -0700525 if (unlikely(!action || (desc->status & IRQ_DISABLED))) {
526 desc->status |= IRQ_PENDING;
Ingo Molnar76d21602007-02-16 01:28:24 -0800527 if (desc->chip->mask)
528 desc->chip->mask(irq);
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700529 goto out;
Benjamin Herrenschmidt98bb2442006-06-29 02:25:01 -0700530 }
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700531
532 desc->status |= IRQ_INPROGRESS;
Benjamin Herrenschmidt98bb2442006-06-29 02:25:01 -0700533 desc->status &= ~IRQ_PENDING;
Thomas Gleixner239007b2009-11-17 16:46:45 +0100534 raw_spin_unlock(&desc->lock);
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700535
David Howells7d12e782006-10-05 14:55:46 +0100536 action_ret = handle_IRQ_event(irq, action);
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700537 if (!noirqdebug)
David Howells7d12e782006-10-05 14:55:46 +0100538 note_interrupt(irq, desc, action_ret);
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700539
Thomas Gleixner239007b2009-11-17 16:46:45 +0100540 raw_spin_lock(&desc->lock);
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700541 desc->status &= ~IRQ_INPROGRESS;
542out:
Ingo Molnar47c2a3a2006-06-29 02:25:03 -0700543 desc->chip->eoi(irq);
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700544
Thomas Gleixner239007b2009-11-17 16:46:45 +0100545 raw_spin_unlock(&desc->lock);
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700546}
547
548/**
549 * handle_edge_irq - edge type IRQ handler
550 * @irq: the interrupt number
551 * @desc: the interrupt description structure for this irq
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700552 *
553 * Interrupt occures on the falling and/or rising edge of a hardware
554 * signal. The occurence is latched into the irq controller hardware
555 * and must be acked in order to be reenabled. After the ack another
556 * interrupt can happen on the same source even before the first one
557 * is handled by the assosiacted event handler. If this happens it
558 * might be necessary to disable (mask) the interrupt depending on the
559 * controller hardware. This requires to reenable the interrupt inside
560 * of the loop which handles the interrupts which have arrived while
561 * the handler was running. If all pending interrupts are handled, the
562 * loop is left.
563 */
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -0800564void
David Howells7d12e782006-10-05 14:55:46 +0100565handle_edge_irq(unsigned int irq, struct irq_desc *desc)
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700566{
Thomas Gleixner239007b2009-11-17 16:46:45 +0100567 raw_spin_lock(&desc->lock);
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700568
569 desc->status &= ~(IRQ_REPLAY | IRQ_WAITING);
570
571 /*
572 * If we're currently running this IRQ, or its disabled,
573 * we shouldn't process the IRQ. Mark it pending, handle
574 * the necessary masking and go out
575 */
576 if (unlikely((desc->status & (IRQ_INPROGRESS | IRQ_DISABLED)) ||
577 !desc->action)) {
578 desc->status |= (IRQ_PENDING | IRQ_MASKED);
579 mask_ack_irq(desc, irq);
580 goto out_unlock;
581 }
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +0200582 kstat_incr_irqs_this_cpu(irq, desc);
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700583
584 /* Start handling the irq */
Thomas Gleixner4dbc9ca2009-08-27 09:38:49 +0200585 if (desc->chip->ack)
586 desc->chip->ack(irq);
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700587
588 /* Mark the IRQ currently in progress.*/
589 desc->status |= IRQ_INPROGRESS;
590
591 do {
592 struct irqaction *action = desc->action;
593 irqreturn_t action_ret;
594
595 if (unlikely(!action)) {
596 desc->chip->mask(irq);
597 goto out_unlock;
598 }
599
600 /*
601 * When another irq arrived while we were handling
602 * one, we could have masked the irq.
603 * Renable it, if it was not disabled in meantime.
604 */
605 if (unlikely((desc->status &
606 (IRQ_PENDING | IRQ_MASKED | IRQ_DISABLED)) ==
607 (IRQ_PENDING | IRQ_MASKED))) {
608 desc->chip->unmask(irq);
609 desc->status &= ~IRQ_MASKED;
610 }
611
612 desc->status &= ~IRQ_PENDING;
Thomas Gleixner239007b2009-11-17 16:46:45 +0100613 raw_spin_unlock(&desc->lock);
David Howells7d12e782006-10-05 14:55:46 +0100614 action_ret = handle_IRQ_event(irq, action);
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700615 if (!noirqdebug)
David Howells7d12e782006-10-05 14:55:46 +0100616 note_interrupt(irq, desc, action_ret);
Thomas Gleixner239007b2009-11-17 16:46:45 +0100617 raw_spin_lock(&desc->lock);
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700618
619 } while ((desc->status & (IRQ_PENDING | IRQ_DISABLED)) == IRQ_PENDING);
620
621 desc->status &= ~IRQ_INPROGRESS;
622out_unlock:
Thomas Gleixner239007b2009-11-17 16:46:45 +0100623 raw_spin_unlock(&desc->lock);
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700624}
625
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700626/**
Liuweni24b26d42009-11-04 20:11:05 +0800627 * handle_percpu_irq - Per CPU local irq handler
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700628 * @irq: the interrupt number
629 * @desc: the interrupt description structure for this irq
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700630 *
631 * Per CPU interrupts on SMP machines without locking requirements
632 */
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -0800633void
David Howells7d12e782006-10-05 14:55:46 +0100634handle_percpu_irq(unsigned int irq, struct irq_desc *desc)
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700635{
636 irqreturn_t action_ret;
637
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +0200638 kstat_incr_irqs_this_cpu(irq, desc);
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700639
640 if (desc->chip->ack)
641 desc->chip->ack(irq);
642
David Howells7d12e782006-10-05 14:55:46 +0100643 action_ret = handle_IRQ_event(irq, desc->action);
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700644 if (!noirqdebug)
David Howells7d12e782006-10-05 14:55:46 +0100645 note_interrupt(irq, desc, action_ret);
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700646
Yinghai Lufcef5912009-04-27 17:58:23 -0700647 if (desc->chip->eoi)
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700648 desc->chip->eoi(irq);
649}
650
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700651void
Ingo Molnara460e742006-10-17 00:10:03 -0700652__set_irq_handler(unsigned int irq, irq_flow_handler_t handle, int is_chained,
653 const char *name)
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700654{
Thomas Gleixnerd3c60042008-10-16 09:55:00 +0200655 struct irq_desc *desc = irq_to_desc(irq);
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700656 unsigned long flags;
657
Yinghai Lu7d94f7c2008-08-19 20:50:14 -0700658 if (!desc) {
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700659 printk(KERN_ERR
660 "Trying to install type control for IRQ%d\n", irq);
661 return;
662 }
663
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700664 if (!handle)
665 handle = handle_bad_irq;
Thomas Gleixner9d7ac8b2006-12-22 01:08:14 -0800666 else if (desc->chip == &no_irq_chip) {
Thomas Gleixnerf8b54732006-07-01 22:30:08 +0100667 printk(KERN_WARNING "Trying to install %sinterrupt handler "
Geert Uytterhoevenb039db82006-12-20 15:59:48 +0100668 "for IRQ%d\n", is_chained ? "chained " : "", irq);
Thomas Gleixnerf8b54732006-07-01 22:30:08 +0100669 /*
670 * Some ARM implementations install a handler for really dumb
671 * interrupt hardware without setting an irq_chip. This worked
672 * with the ARM no_irq_chip but the check in setup_irq would
673 * prevent us to setup the interrupt at all. Switch it to
674 * dummy_irq_chip for easy transition.
675 */
676 desc->chip = &dummy_irq_chip;
677 }
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700678
Thomas Gleixner70aedd22009-08-13 12:17:48 +0200679 chip_bus_lock(irq, desc);
Thomas Gleixner239007b2009-11-17 16:46:45 +0100680 raw_spin_lock_irqsave(&desc->lock, flags);
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700681
682 /* Uninstall? */
683 if (handle == handle_bad_irq) {
Yinghai Lufcef5912009-04-27 17:58:23 -0700684 if (desc->chip != &no_irq_chip)
Jan Beulich5575ddf2007-02-16 01:28:26 -0800685 mask_ack_irq(desc, irq);
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700686 desc->status |= IRQ_DISABLED;
687 desc->depth = 1;
688 }
689 desc->handle_irq = handle;
Ingo Molnara460e742006-10-17 00:10:03 -0700690 desc->name = name;
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700691
692 if (handle != handle_bad_irq && is_chained) {
693 desc->status &= ~IRQ_DISABLED;
694 desc->status |= IRQ_NOREQUEST | IRQ_NOPROBE;
695 desc->depth = 0;
Pawel MOLL7e6e1782008-09-01 10:12:11 +0100696 desc->chip->startup(irq);
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700697 }
Thomas Gleixner239007b2009-11-17 16:46:45 +0100698 raw_spin_unlock_irqrestore(&desc->lock, flags);
Thomas Gleixner70aedd22009-08-13 12:17:48 +0200699 chip_bus_sync_unlock(irq, desc);
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700700}
Ingo Molnar14819ea2009-01-14 12:34:21 +0100701EXPORT_SYMBOL_GPL(__set_irq_handler);
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700702
703void
704set_irq_chip_and_handler(unsigned int irq, struct irq_chip *chip,
David Howells57a58a92006-10-05 13:06:34 +0100705 irq_flow_handler_t handle)
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700706{
707 set_irq_chip(irq, chip);
Ingo Molnara460e742006-10-17 00:10:03 -0700708 __set_irq_handler(irq, handle, 0, NULL);
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700709}
710
Ingo Molnara460e742006-10-17 00:10:03 -0700711void
712set_irq_chip_and_handler_name(unsigned int irq, struct irq_chip *chip,
713 irq_flow_handler_t handle, const char *name)
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700714{
Ingo Molnara460e742006-10-17 00:10:03 -0700715 set_irq_chip(irq, chip);
716 __set_irq_handler(irq, handle, 0, name);
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700717}
Ralf Baechle46f4f8f2008-02-08 04:22:01 -0800718
719void __init set_irq_noprobe(unsigned int irq)
720{
Thomas Gleixnerd3c60042008-10-16 09:55:00 +0200721 struct irq_desc *desc = irq_to_desc(irq);
Ralf Baechle46f4f8f2008-02-08 04:22:01 -0800722 unsigned long flags;
723
Yinghai Lu7d94f7c2008-08-19 20:50:14 -0700724 if (!desc) {
Ralf Baechle46f4f8f2008-02-08 04:22:01 -0800725 printk(KERN_ERR "Trying to mark IRQ%d non-probeable\n", irq);
Ralf Baechle46f4f8f2008-02-08 04:22:01 -0800726 return;
727 }
728
Thomas Gleixner239007b2009-11-17 16:46:45 +0100729 raw_spin_lock_irqsave(&desc->lock, flags);
Ralf Baechle46f4f8f2008-02-08 04:22:01 -0800730 desc->status |= IRQ_NOPROBE;
Thomas Gleixner239007b2009-11-17 16:46:45 +0100731 raw_spin_unlock_irqrestore(&desc->lock, flags);
Ralf Baechle46f4f8f2008-02-08 04:22:01 -0800732}
733
734void __init set_irq_probe(unsigned int irq)
735{
Thomas Gleixnerd3c60042008-10-16 09:55:00 +0200736 struct irq_desc *desc = irq_to_desc(irq);
Ralf Baechle46f4f8f2008-02-08 04:22:01 -0800737 unsigned long flags;
738
Yinghai Lu7d94f7c2008-08-19 20:50:14 -0700739 if (!desc) {
Ralf Baechle46f4f8f2008-02-08 04:22:01 -0800740 printk(KERN_ERR "Trying to mark IRQ%d probeable\n", irq);
Ralf Baechle46f4f8f2008-02-08 04:22:01 -0800741 return;
742 }
743
Thomas Gleixner239007b2009-11-17 16:46:45 +0100744 raw_spin_lock_irqsave(&desc->lock, flags);
Ralf Baechle46f4f8f2008-02-08 04:22:01 -0800745 desc->status &= ~IRQ_NOPROBE;
Thomas Gleixner239007b2009-11-17 16:46:45 +0100746 raw_spin_unlock_irqrestore(&desc->lock, flags);
Ralf Baechle46f4f8f2008-02-08 04:22:01 -0800747}