blob: f856330e684a0285010c3a94d74759c06e2a5670 [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
21/**
Eric W. Biederman3a16d712006-10-04 02:16:37 -070022 * dynamic_irq_init - initialize a dynamically allocated irq
23 * @irq: irq number to initialize
24 */
25void dynamic_irq_init(unsigned int irq)
26{
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -080027 struct irq_desc *desc;
Eric W. Biederman3a16d712006-10-04 02:16:37 -070028 unsigned long flags;
29
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -080030 desc = irq_to_desc(irq);
Yinghai Lu7d94f7c2008-08-19 20:50:14 -070031 if (!desc) {
Arjan van de Ven261c40c2008-07-25 19:45:37 -070032 WARN(1, KERN_ERR "Trying to initialize invalid IRQ%d\n", irq);
Eric W. Biederman3a16d712006-10-04 02:16:37 -070033 return;
34 }
35
36 /* Ensure we don't have left over values from a previous use of this irq */
Eric W. Biederman3a16d712006-10-04 02:16:37 -070037 spin_lock_irqsave(&desc->lock, flags);
38 desc->status = IRQ_DISABLED;
39 desc->chip = &no_irq_chip;
40 desc->handle_irq = handle_bad_irq;
41 desc->depth = 1;
Eric W. Biederman5b912c12007-01-28 12:52:03 -070042 desc->msi_desc = NULL;
Eric W. Biederman3a16d712006-10-04 02:16:37 -070043 desc->handler_data = NULL;
44 desc->chip_data = NULL;
45 desc->action = NULL;
46 desc->irq_count = 0;
47 desc->irqs_unhandled = 0;
48#ifdef CONFIG_SMP
Mike Travis7f7ace02009-01-10 21:58:08 -080049 cpumask_setall(desc->affinity);
50#ifdef CONFIG_GENERIC_PENDING_IRQ
51 cpumask_clear(desc->pending_mask);
52#endif
Eric W. Biederman3a16d712006-10-04 02:16:37 -070053#endif
54 spin_unlock_irqrestore(&desc->lock, flags);
55}
56
57/**
58 * dynamic_irq_cleanup - cleanup a dynamically allocated irq
59 * @irq: irq number to initialize
60 */
61void dynamic_irq_cleanup(unsigned int irq)
62{
Thomas Gleixnerd3c60042008-10-16 09:55:00 +020063 struct irq_desc *desc = irq_to_desc(irq);
Eric W. Biederman3a16d712006-10-04 02:16:37 -070064 unsigned long flags;
65
Yinghai Lu7d94f7c2008-08-19 20:50:14 -070066 if (!desc) {
Arjan van de Ven261c40c2008-07-25 19:45:37 -070067 WARN(1, KERN_ERR "Trying to cleanup invalid IRQ%d\n", irq);
Eric W. Biederman3a16d712006-10-04 02:16:37 -070068 return;
69 }
70
Eric W. Biederman3a16d712006-10-04 02:16:37 -070071 spin_lock_irqsave(&desc->lock, flags);
Eric W. Biederman1f800252006-10-04 02:16:56 -070072 if (desc->action) {
73 spin_unlock_irqrestore(&desc->lock, flags);
Arjan van de Ven261c40c2008-07-25 19:45:37 -070074 WARN(1, KERN_ERR "Destroying IRQ%d without calling free_irq\n",
Eric W. Biederman1f800252006-10-04 02:16:56 -070075 irq);
Eric W. Biederman1f800252006-10-04 02:16:56 -070076 return;
77 }
Eric W. Biederman5b912c12007-01-28 12:52:03 -070078 desc->msi_desc = NULL;
79 desc->handler_data = NULL;
80 desc->chip_data = NULL;
Eric W. Biederman3a16d712006-10-04 02:16:37 -070081 desc->handle_irq = handle_bad_irq;
82 desc->chip = &no_irq_chip;
Dean Nelsonb6f3b782008-10-18 16:06:56 -070083 desc->name = NULL;
Yinghai Lu0f3c2a82009-02-08 16:18:03 -080084 clear_kstat_irqs(desc);
Eric W. Biederman3a16d712006-10-04 02:16:37 -070085 spin_unlock_irqrestore(&desc->lock, flags);
86}
87
88
89/**
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -070090 * set_irq_chip - set the irq chip for an irq
91 * @irq: irq number
92 * @chip: pointer to irq chip description structure
93 */
94int set_irq_chip(unsigned int irq, struct irq_chip *chip)
95{
Thomas Gleixnerd3c60042008-10-16 09:55:00 +020096 struct irq_desc *desc = irq_to_desc(irq);
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -070097 unsigned long flags;
98
Yinghai Lu7d94f7c2008-08-19 20:50:14 -070099 if (!desc) {
Arjan van de Ven261c40c2008-07-25 19:45:37 -0700100 WARN(1, KERN_ERR "Trying to install chip for IRQ%d\n", irq);
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700101 return -EINVAL;
102 }
103
104 if (!chip)
105 chip = &no_irq_chip;
106
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700107 spin_lock_irqsave(&desc->lock, flags);
108 irq_chip_set_defaults(chip);
109 desc->chip = chip;
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700110 spin_unlock_irqrestore(&desc->lock, flags);
111
112 return 0;
113}
114EXPORT_SYMBOL(set_irq_chip);
115
116/**
David Brownell0c5d1eb2008-10-01 14:46:18 -0700117 * set_irq_type - set the irq trigger type for an irq
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700118 * @irq: irq number
David Brownell0c5d1eb2008-10-01 14:46:18 -0700119 * @type: IRQ_TYPE_{LEVEL,EDGE}_* value - see include/linux/irq.h
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700120 */
121int set_irq_type(unsigned int irq, unsigned int type)
122{
Thomas Gleixnerd3c60042008-10-16 09:55:00 +0200123 struct irq_desc *desc = irq_to_desc(irq);
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700124 unsigned long flags;
125 int ret = -ENXIO;
126
Yinghai Lu7d94f7c2008-08-19 20:50:14 -0700127 if (!desc) {
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700128 printk(KERN_ERR "Trying to set irq type for IRQ%d\n", irq);
129 return -ENODEV;
130 }
131
David Brownellf2b662d2008-12-01 14:31:38 -0800132 type &= IRQ_TYPE_SENSE_MASK;
David Brownell0c5d1eb2008-10-01 14:46:18 -0700133 if (type == IRQ_TYPE_NONE)
134 return 0;
135
136 spin_lock_irqsave(&desc->lock, flags);
Chris Friesen0b3682ba32008-10-20 12:41:58 -0600137 ret = __irq_set_trigger(desc, irq, type);
David Brownell0c5d1eb2008-10-01 14:46:18 -0700138 spin_unlock_irqrestore(&desc->lock, flags);
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700139 return ret;
140}
141EXPORT_SYMBOL(set_irq_type);
142
143/**
144 * set_irq_data - set irq type data for an irq
145 * @irq: Interrupt number
146 * @data: Pointer to interrupt specific data
147 *
148 * Set the hardware irq controller data for an irq
149 */
150int set_irq_data(unsigned int irq, void *data)
151{
Thomas Gleixnerd3c60042008-10-16 09:55:00 +0200152 struct irq_desc *desc = irq_to_desc(irq);
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700153 unsigned long flags;
154
Yinghai Lu7d94f7c2008-08-19 20:50:14 -0700155 if (!desc) {
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700156 printk(KERN_ERR
157 "Trying to install controller data for IRQ%d\n", irq);
158 return -EINVAL;
159 }
160
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700161 spin_lock_irqsave(&desc->lock, flags);
162 desc->handler_data = data;
163 spin_unlock_irqrestore(&desc->lock, flags);
164 return 0;
165}
166EXPORT_SYMBOL(set_irq_data);
167
168/**
Eric W. Biederman5b912c12007-01-28 12:52:03 -0700169 * set_irq_data - set irq type data for an irq
170 * @irq: Interrupt number
Randy Dunlap472900b2007-02-16 01:28:25 -0800171 * @entry: Pointer to MSI descriptor data
Eric W. Biederman5b912c12007-01-28 12:52:03 -0700172 *
173 * Set the hardware irq controller data for an irq
174 */
175int set_irq_msi(unsigned int irq, struct msi_desc *entry)
176{
Thomas Gleixnerd3c60042008-10-16 09:55:00 +0200177 struct irq_desc *desc = irq_to_desc(irq);
Eric W. Biederman5b912c12007-01-28 12:52:03 -0700178 unsigned long flags;
179
Yinghai Lu7d94f7c2008-08-19 20:50:14 -0700180 if (!desc) {
Eric W. Biederman5b912c12007-01-28 12:52:03 -0700181 printk(KERN_ERR
182 "Trying to install msi data for IRQ%d\n", irq);
183 return -EINVAL;
184 }
Yinghai Lu7d94f7c2008-08-19 20:50:14 -0700185
Eric W. Biederman5b912c12007-01-28 12:52:03 -0700186 spin_lock_irqsave(&desc->lock, flags);
187 desc->msi_desc = entry;
Michael Ellerman7fe37302007-04-18 19:39:21 +1000188 if (entry)
189 entry->irq = irq;
Eric W. Biederman5b912c12007-01-28 12:52:03 -0700190 spin_unlock_irqrestore(&desc->lock, flags);
191 return 0;
192}
193
194/**
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700195 * set_irq_chip_data - set irq chip data for an irq
196 * @irq: Interrupt number
197 * @data: Pointer to chip specific data
198 *
199 * Set the hardware irq chip data for an irq
200 */
201int set_irq_chip_data(unsigned int irq, void *data)
202{
Thomas Gleixnerd3c60042008-10-16 09:55:00 +0200203 struct irq_desc *desc = irq_to_desc(irq);
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700204 unsigned long flags;
205
Yinghai Lu7d94f7c2008-08-19 20:50:14 -0700206 if (!desc) {
207 printk(KERN_ERR
208 "Trying to install chip data for IRQ%d\n", irq);
209 return -EINVAL;
210 }
211
212 if (!desc->chip) {
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700213 printk(KERN_ERR "BUG: bad set_irq_chip_data(IRQ#%d)\n", irq);
214 return -EINVAL;
215 }
216
217 spin_lock_irqsave(&desc->lock, flags);
218 desc->chip_data = data;
219 spin_unlock_irqrestore(&desc->lock, flags);
220
221 return 0;
222}
223EXPORT_SYMBOL(set_irq_chip_data);
224
225/*
226 * default enable function
227 */
228static void default_enable(unsigned int irq)
229{
Thomas Gleixnerd3c60042008-10-16 09:55:00 +0200230 struct irq_desc *desc = irq_to_desc(irq);
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700231
232 desc->chip->unmask(irq);
233 desc->status &= ~IRQ_MASKED;
234}
235
236/*
237 * default disable function
238 */
239static void default_disable(unsigned int irq)
240{
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700241}
242
243/*
244 * default startup function
245 */
246static unsigned int default_startup(unsigned int irq)
247{
Thomas Gleixnerd3c60042008-10-16 09:55:00 +0200248 struct irq_desc *desc = irq_to_desc(irq);
Yinghai Lu08678b02008-08-19 20:50:05 -0700249
Yinghai Lu08678b02008-08-19 20:50:05 -0700250 desc->chip->enable(irq);
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700251 return 0;
252}
253
254/*
Thomas Gleixner89d694b2008-02-18 18:25:17 +0100255 * default shutdown function
256 */
257static void default_shutdown(unsigned int irq)
258{
Thomas Gleixnerd3c60042008-10-16 09:55:00 +0200259 struct irq_desc *desc = irq_to_desc(irq);
Thomas Gleixner89d694b2008-02-18 18:25:17 +0100260
261 desc->chip->mask(irq);
262 desc->status |= IRQ_MASKED;
263}
264
265/*
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700266 * Fixup enable/disable function pointers
267 */
268void irq_chip_set_defaults(struct irq_chip *chip)
269{
270 if (!chip->enable)
271 chip->enable = default_enable;
272 if (!chip->disable)
273 chip->disable = default_disable;
274 if (!chip->startup)
275 chip->startup = default_startup;
Thomas Gleixner89d694b2008-02-18 18:25:17 +0100276 /*
277 * We use chip->disable, when the user provided its own. When
278 * we have default_disable set for chip->disable, then we need
279 * to use default_shutdown, otherwise the irq line is not
280 * disabled on free_irq():
281 */
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700282 if (!chip->shutdown)
Thomas Gleixner89d694b2008-02-18 18:25:17 +0100283 chip->shutdown = chip->disable != default_disable ?
284 chip->disable : default_shutdown;
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700285 if (!chip->name)
286 chip->name = chip->typename;
Zhang, Yanminb86432b2006-11-16 01:19:10 -0800287 if (!chip->end)
288 chip->end = dummy_irq_chip.end;
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700289}
290
291static inline void mask_ack_irq(struct irq_desc *desc, int irq)
292{
293 if (desc->chip->mask_ack)
294 desc->chip->mask_ack(irq);
295 else {
296 desc->chip->mask(irq);
Wang Chenefdc64f2008-12-29 13:35:11 +0800297 if (desc->chip->ack)
298 desc->chip->ack(irq);
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700299 }
300}
301
302/**
303 * handle_simple_irq - Simple and software-decoded IRQs.
304 * @irq: the interrupt number
305 * @desc: the interrupt description structure for this irq
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700306 *
307 * Simple interrupts are either sent from a demultiplexing interrupt
308 * handler or come from hardware, where no interrupt hardware control
309 * is necessary.
310 *
311 * Note: The caller is expected to handle the ack, clear, mask and
312 * unmask issues if necessary.
313 */
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -0800314void
David Howells7d12e782006-10-05 14:55:46 +0100315handle_simple_irq(unsigned int irq, struct irq_desc *desc)
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700316{
317 struct irqaction *action;
318 irqreturn_t action_ret;
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700319
320 spin_lock(&desc->lock);
321
322 if (unlikely(desc->status & IRQ_INPROGRESS))
323 goto out_unlock;
Steven Rostedt971e5b35f2007-12-18 18:05:58 +0100324 desc->status &= ~(IRQ_REPLAY | IRQ_WAITING);
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +0200325 kstat_incr_irqs_this_cpu(irq, desc);
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700326
327 action = desc->action;
Steven Rostedt971e5b35f2007-12-18 18:05:58 +0100328 if (unlikely(!action || (desc->status & IRQ_DISABLED)))
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700329 goto out_unlock;
330
331 desc->status |= IRQ_INPROGRESS;
332 spin_unlock(&desc->lock);
333
David Howells7d12e782006-10-05 14:55:46 +0100334 action_ret = handle_IRQ_event(irq, action);
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700335 if (!noirqdebug)
David Howells7d12e782006-10-05 14:55:46 +0100336 note_interrupt(irq, desc, action_ret);
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700337
338 spin_lock(&desc->lock);
339 desc->status &= ~IRQ_INPROGRESS;
340out_unlock:
341 spin_unlock(&desc->lock);
342}
343
344/**
345 * handle_level_irq - Level type irq handler
346 * @irq: the interrupt number
347 * @desc: the interrupt description structure for this irq
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700348 *
349 * Level type interrupts are active as long as the hardware line has
350 * the active level. This may require to mask the interrupt and unmask
351 * it after the associated handler has acknowledged the device, so the
352 * interrupt line is back to inactive.
353 */
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -0800354void
David Howells7d12e782006-10-05 14:55:46 +0100355handle_level_irq(unsigned int irq, struct irq_desc *desc)
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700356{
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700357 struct irqaction *action;
358 irqreturn_t action_ret;
359
360 spin_lock(&desc->lock);
361 mask_ack_irq(desc, irq);
362
363 if (unlikely(desc->status & IRQ_INPROGRESS))
Ingo Molnar86998aa2006-09-19 11:14:34 +0200364 goto out_unlock;
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700365 desc->status &= ~(IRQ_REPLAY | IRQ_WAITING);
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +0200366 kstat_incr_irqs_this_cpu(irq, desc);
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700367
368 /*
369 * If its disabled or no action available
370 * keep it masked and get out of here
371 */
372 action = desc->action;
Thomas Gleixner49663422007-08-12 15:46:34 +0000373 if (unlikely(!action || (desc->status & IRQ_DISABLED)))
Ingo Molnar86998aa2006-09-19 11:14:34 +0200374 goto out_unlock;
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700375
376 desc->status |= IRQ_INPROGRESS;
377 spin_unlock(&desc->lock);
378
David Howells7d12e782006-10-05 14:55:46 +0100379 action_ret = handle_IRQ_event(irq, action);
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700380 if (!noirqdebug)
David Howells7d12e782006-10-05 14:55:46 +0100381 note_interrupt(irq, desc, action_ret);
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700382
383 spin_lock(&desc->lock);
384 desc->status &= ~IRQ_INPROGRESS;
Thomas Gleixnerb25c3402009-08-13 12:17:22 +0200385
386 if (unlikely(desc->status & IRQ_ONESHOT))
387 desc->status |= IRQ_MASKED;
388 else if (!(desc->status & IRQ_DISABLED) && desc->chip->unmask)
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700389 desc->chip->unmask(irq);
Ingo Molnar86998aa2006-09-19 11:14:34 +0200390out_unlock:
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700391 spin_unlock(&desc->lock);
392}
Ingo Molnar14819ea2009-01-14 12:34:21 +0100393EXPORT_SYMBOL_GPL(handle_level_irq);
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700394
395/**
Ingo Molnar47c2a3a2006-06-29 02:25:03 -0700396 * handle_fasteoi_irq - irq handler for transparent controllers
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700397 * @irq: the interrupt number
398 * @desc: the interrupt description structure for this irq
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700399 *
Ingo Molnar47c2a3a2006-06-29 02:25:03 -0700400 * Only a single callback will be issued to the chip: an ->eoi()
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700401 * call when the interrupt has been serviced. This enables support
402 * for modern forms of interrupt handlers, which handle the flow
403 * details in hardware, transparently.
404 */
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -0800405void
David Howells7d12e782006-10-05 14:55:46 +0100406handle_fasteoi_irq(unsigned int irq, struct irq_desc *desc)
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700407{
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700408 struct irqaction *action;
409 irqreturn_t action_ret;
410
411 spin_lock(&desc->lock);
412
413 if (unlikely(desc->status & IRQ_INPROGRESS))
414 goto out;
415
416 desc->status &= ~(IRQ_REPLAY | IRQ_WAITING);
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +0200417 kstat_incr_irqs_this_cpu(irq, desc);
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700418
419 /*
420 * If its disabled or no action available
Ingo Molnar76d21602007-02-16 01:28:24 -0800421 * then mask it and get out of here:
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700422 */
423 action = desc->action;
Benjamin Herrenschmidt98bb2442006-06-29 02:25:01 -0700424 if (unlikely(!action || (desc->status & IRQ_DISABLED))) {
425 desc->status |= IRQ_PENDING;
Ingo Molnar76d21602007-02-16 01:28:24 -0800426 if (desc->chip->mask)
427 desc->chip->mask(irq);
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700428 goto out;
Benjamin Herrenschmidt98bb2442006-06-29 02:25:01 -0700429 }
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700430
431 desc->status |= IRQ_INPROGRESS;
Benjamin Herrenschmidt98bb2442006-06-29 02:25:01 -0700432 desc->status &= ~IRQ_PENDING;
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700433 spin_unlock(&desc->lock);
434
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
439 spin_lock(&desc->lock);
440 desc->status &= ~IRQ_INPROGRESS;
441out:
Ingo Molnar47c2a3a2006-06-29 02:25:03 -0700442 desc->chip->eoi(irq);
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700443
444 spin_unlock(&desc->lock);
445}
446
447/**
448 * handle_edge_irq - edge type IRQ handler
449 * @irq: the interrupt number
450 * @desc: the interrupt description structure for this irq
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700451 *
452 * Interrupt occures on the falling and/or rising edge of a hardware
453 * signal. The occurence is latched into the irq controller hardware
454 * and must be acked in order to be reenabled. After the ack another
455 * interrupt can happen on the same source even before the first one
456 * is handled by the assosiacted event handler. If this happens it
457 * might be necessary to disable (mask) the interrupt depending on the
458 * controller hardware. This requires to reenable the interrupt inside
459 * of the loop which handles the interrupts which have arrived while
460 * the handler was running. If all pending interrupts are handled, the
461 * loop is left.
462 */
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -0800463void
David Howells7d12e782006-10-05 14:55:46 +0100464handle_edge_irq(unsigned int irq, struct irq_desc *desc)
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700465{
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700466 spin_lock(&desc->lock);
467
468 desc->status &= ~(IRQ_REPLAY | IRQ_WAITING);
469
470 /*
471 * If we're currently running this IRQ, or its disabled,
472 * we shouldn't process the IRQ. Mark it pending, handle
473 * the necessary masking and go out
474 */
475 if (unlikely((desc->status & (IRQ_INPROGRESS | IRQ_DISABLED)) ||
476 !desc->action)) {
477 desc->status |= (IRQ_PENDING | IRQ_MASKED);
478 mask_ack_irq(desc, irq);
479 goto out_unlock;
480 }
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +0200481 kstat_incr_irqs_this_cpu(irq, desc);
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700482
483 /* Start handling the irq */
Thomas Gleixnerb25c3402009-08-13 12:17:22 +0200484 if (unlikely(desc->status & IRQ_ONESHOT)) {
485 desc->status |= IRQ_MASKED;
486 mask_ack_irq(desc, irq);
487 } else {
488 if (desc->chip->ack)
489 desc->chip->ack(irq);
490 }
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700491
492 /* Mark the IRQ currently in progress.*/
493 desc->status |= IRQ_INPROGRESS;
494
495 do {
496 struct irqaction *action = desc->action;
497 irqreturn_t action_ret;
498
499 if (unlikely(!action)) {
500 desc->chip->mask(irq);
501 goto out_unlock;
502 }
503
504 /*
505 * When another irq arrived while we were handling
506 * one, we could have masked the irq.
507 * Renable it, if it was not disabled in meantime.
508 */
509 if (unlikely((desc->status &
510 (IRQ_PENDING | IRQ_MASKED | IRQ_DISABLED)) ==
511 (IRQ_PENDING | IRQ_MASKED))) {
512 desc->chip->unmask(irq);
513 desc->status &= ~IRQ_MASKED;
514 }
515
516 desc->status &= ~IRQ_PENDING;
517 spin_unlock(&desc->lock);
David Howells7d12e782006-10-05 14:55:46 +0100518 action_ret = handle_IRQ_event(irq, action);
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700519 if (!noirqdebug)
David Howells7d12e782006-10-05 14:55:46 +0100520 note_interrupt(irq, desc, action_ret);
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700521 spin_lock(&desc->lock);
522
523 } while ((desc->status & (IRQ_PENDING | IRQ_DISABLED)) == IRQ_PENDING);
524
525 desc->status &= ~IRQ_INPROGRESS;
526out_unlock:
527 spin_unlock(&desc->lock);
528}
529
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700530/**
531 * handle_percpu_IRQ - Per CPU local irq handler
532 * @irq: the interrupt number
533 * @desc: the interrupt description structure for this irq
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700534 *
535 * Per CPU interrupts on SMP machines without locking requirements
536 */
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -0800537void
David Howells7d12e782006-10-05 14:55:46 +0100538handle_percpu_irq(unsigned int irq, struct irq_desc *desc)
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700539{
540 irqreturn_t action_ret;
541
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +0200542 kstat_incr_irqs_this_cpu(irq, desc);
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700543
544 if (desc->chip->ack)
545 desc->chip->ack(irq);
546
David Howells7d12e782006-10-05 14:55:46 +0100547 action_ret = handle_IRQ_event(irq, desc->action);
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700548 if (!noirqdebug)
David Howells7d12e782006-10-05 14:55:46 +0100549 note_interrupt(irq, desc, action_ret);
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700550
Yinghai Lufcef5912009-04-27 17:58:23 -0700551 if (desc->chip->eoi)
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700552 desc->chip->eoi(irq);
553}
554
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700555void
Ingo Molnara460e742006-10-17 00:10:03 -0700556__set_irq_handler(unsigned int irq, irq_flow_handler_t handle, int is_chained,
557 const char *name)
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700558{
Thomas Gleixnerd3c60042008-10-16 09:55:00 +0200559 struct irq_desc *desc = irq_to_desc(irq);
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700560 unsigned long flags;
561
Yinghai Lu7d94f7c2008-08-19 20:50:14 -0700562 if (!desc) {
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700563 printk(KERN_ERR
564 "Trying to install type control for IRQ%d\n", irq);
565 return;
566 }
567
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700568 if (!handle)
569 handle = handle_bad_irq;
Thomas Gleixner9d7ac8b2006-12-22 01:08:14 -0800570 else if (desc->chip == &no_irq_chip) {
Thomas Gleixnerf8b54732006-07-01 22:30:08 +0100571 printk(KERN_WARNING "Trying to install %sinterrupt handler "
Geert Uytterhoevenb039db82006-12-20 15:59:48 +0100572 "for IRQ%d\n", is_chained ? "chained " : "", irq);
Thomas Gleixnerf8b54732006-07-01 22:30:08 +0100573 /*
574 * Some ARM implementations install a handler for really dumb
575 * interrupt hardware without setting an irq_chip. This worked
576 * with the ARM no_irq_chip but the check in setup_irq would
577 * prevent us to setup the interrupt at all. Switch it to
578 * dummy_irq_chip for easy transition.
579 */
580 desc->chip = &dummy_irq_chip;
581 }
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700582
Thomas Gleixner70aedd22009-08-13 12:17:48 +0200583 chip_bus_lock(irq, desc);
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700584 spin_lock_irqsave(&desc->lock, flags);
585
586 /* Uninstall? */
587 if (handle == handle_bad_irq) {
Yinghai Lufcef5912009-04-27 17:58:23 -0700588 if (desc->chip != &no_irq_chip)
Jan Beulich5575ddf2007-02-16 01:28:26 -0800589 mask_ack_irq(desc, irq);
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700590 desc->status |= IRQ_DISABLED;
591 desc->depth = 1;
592 }
593 desc->handle_irq = handle;
Ingo Molnara460e742006-10-17 00:10:03 -0700594 desc->name = name;
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700595
596 if (handle != handle_bad_irq && is_chained) {
597 desc->status &= ~IRQ_DISABLED;
598 desc->status |= IRQ_NOREQUEST | IRQ_NOPROBE;
599 desc->depth = 0;
Pawel MOLL7e6e1782008-09-01 10:12:11 +0100600 desc->chip->startup(irq);
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700601 }
602 spin_unlock_irqrestore(&desc->lock, flags);
Thomas Gleixner70aedd22009-08-13 12:17:48 +0200603 chip_bus_sync_unlock(irq, desc);
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700604}
Ingo Molnar14819ea2009-01-14 12:34:21 +0100605EXPORT_SYMBOL_GPL(__set_irq_handler);
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700606
607void
608set_irq_chip_and_handler(unsigned int irq, struct irq_chip *chip,
David Howells57a58a92006-10-05 13:06:34 +0100609 irq_flow_handler_t handle)
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700610{
611 set_irq_chip(irq, chip);
Ingo Molnara460e742006-10-17 00:10:03 -0700612 __set_irq_handler(irq, handle, 0, NULL);
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700613}
614
Ingo Molnara460e742006-10-17 00:10:03 -0700615void
616set_irq_chip_and_handler_name(unsigned int irq, struct irq_chip *chip,
617 irq_flow_handler_t handle, const char *name)
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700618{
Ingo Molnara460e742006-10-17 00:10:03 -0700619 set_irq_chip(irq, chip);
620 __set_irq_handler(irq, handle, 0, name);
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700621}
Ralf Baechle46f4f8f2008-02-08 04:22:01 -0800622
623void __init set_irq_noprobe(unsigned int irq)
624{
Thomas Gleixnerd3c60042008-10-16 09:55:00 +0200625 struct irq_desc *desc = irq_to_desc(irq);
Ralf Baechle46f4f8f2008-02-08 04:22:01 -0800626 unsigned long flags;
627
Yinghai Lu7d94f7c2008-08-19 20:50:14 -0700628 if (!desc) {
Ralf Baechle46f4f8f2008-02-08 04:22:01 -0800629 printk(KERN_ERR "Trying to mark IRQ%d non-probeable\n", irq);
Ralf Baechle46f4f8f2008-02-08 04:22:01 -0800630 return;
631 }
632
Ralf Baechle46f4f8f2008-02-08 04:22:01 -0800633 spin_lock_irqsave(&desc->lock, flags);
634 desc->status |= IRQ_NOPROBE;
635 spin_unlock_irqrestore(&desc->lock, flags);
636}
637
638void __init set_irq_probe(unsigned int irq)
639{
Thomas Gleixnerd3c60042008-10-16 09:55:00 +0200640 struct irq_desc *desc = irq_to_desc(irq);
Ralf Baechle46f4f8f2008-02-08 04:22:01 -0800641 unsigned long flags;
642
Yinghai Lu7d94f7c2008-08-19 20:50:14 -0700643 if (!desc) {
Ralf Baechle46f4f8f2008-02-08 04:22:01 -0800644 printk(KERN_ERR "Trying to mark IRQ%d probeable\n", irq);
Ralf Baechle46f4f8f2008-02-08 04:22:01 -0800645 return;
646 }
647
Ralf Baechle46f4f8f2008-02-08 04:22:01 -0800648 spin_lock_irqsave(&desc->lock, flags);
649 desc->status &= ~IRQ_NOPROBE;
650 spin_unlock_irqrestore(&desc->lock, flags);
651}