blob: c1660194d1153a4b55adda2263b752547daa8563 [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
Thomas Gleixner399b5da2009-08-13 13:21:38 +0200225/**
226 * set_irq_nested_thread - Set/Reset the IRQ_NESTED_THREAD flag of an irq
227 *
228 * @irq: Interrupt number
229 * @nest: 0 to clear / 1 to set the IRQ_NESTED_THREAD flag
230 *
231 * The IRQ_NESTED_THREAD flag indicates that on
232 * request_threaded_irq() no separate interrupt thread should be
233 * created for the irq as the handler are called nested in the
234 * context of a demultiplexing interrupt handler thread.
235 */
236void set_irq_nested_thread(unsigned int irq, int nest)
237{
238 struct irq_desc *desc = irq_to_desc(irq);
239 unsigned long flags;
240
241 if (!desc)
242 return;
243
244 spin_lock_irqsave(&desc->lock, flags);
245 if (nest)
246 desc->status |= IRQ_NESTED_THREAD;
247 else
248 desc->status &= ~IRQ_NESTED_THREAD;
249 spin_unlock_irqrestore(&desc->lock, flags);
250}
251EXPORT_SYMBOL_GPL(set_irq_nested_thread);
252
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700253/*
254 * default enable function
255 */
256static void default_enable(unsigned int irq)
257{
Thomas Gleixnerd3c60042008-10-16 09:55:00 +0200258 struct irq_desc *desc = irq_to_desc(irq);
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700259
260 desc->chip->unmask(irq);
261 desc->status &= ~IRQ_MASKED;
262}
263
264/*
265 * default disable function
266 */
267static void default_disable(unsigned int irq)
268{
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700269}
270
271/*
272 * default startup function
273 */
274static unsigned int default_startup(unsigned int irq)
275{
Thomas Gleixnerd3c60042008-10-16 09:55:00 +0200276 struct irq_desc *desc = irq_to_desc(irq);
Yinghai Lu08678b02008-08-19 20:50:05 -0700277
Yinghai Lu08678b02008-08-19 20:50:05 -0700278 desc->chip->enable(irq);
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700279 return 0;
280}
281
282/*
Thomas Gleixner89d694b2008-02-18 18:25:17 +0100283 * default shutdown function
284 */
285static void default_shutdown(unsigned int irq)
286{
Thomas Gleixnerd3c60042008-10-16 09:55:00 +0200287 struct irq_desc *desc = irq_to_desc(irq);
Thomas Gleixner89d694b2008-02-18 18:25:17 +0100288
289 desc->chip->mask(irq);
290 desc->status |= IRQ_MASKED;
291}
292
293/*
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700294 * Fixup enable/disable function pointers
295 */
296void irq_chip_set_defaults(struct irq_chip *chip)
297{
298 if (!chip->enable)
299 chip->enable = default_enable;
300 if (!chip->disable)
301 chip->disable = default_disable;
302 if (!chip->startup)
303 chip->startup = default_startup;
Thomas Gleixner89d694b2008-02-18 18:25:17 +0100304 /*
305 * We use chip->disable, when the user provided its own. When
306 * we have default_disable set for chip->disable, then we need
307 * to use default_shutdown, otherwise the irq line is not
308 * disabled on free_irq():
309 */
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700310 if (!chip->shutdown)
Thomas Gleixner89d694b2008-02-18 18:25:17 +0100311 chip->shutdown = chip->disable != default_disable ?
312 chip->disable : default_shutdown;
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700313 if (!chip->name)
314 chip->name = chip->typename;
Zhang, Yanminb86432b2006-11-16 01:19:10 -0800315 if (!chip->end)
316 chip->end = dummy_irq_chip.end;
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700317}
318
319static inline void mask_ack_irq(struct irq_desc *desc, int irq)
320{
321 if (desc->chip->mask_ack)
322 desc->chip->mask_ack(irq);
323 else {
324 desc->chip->mask(irq);
Wang Chenefdc64f2008-12-29 13:35:11 +0800325 if (desc->chip->ack)
326 desc->chip->ack(irq);
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700327 }
328}
329
Thomas Gleixner399b5da2009-08-13 13:21:38 +0200330/*
331 * handle_nested_irq - Handle a nested irq from a irq thread
332 * @irq: the interrupt number
333 *
334 * Handle interrupts which are nested into a threaded interrupt
335 * handler. The handler function is called inside the calling
336 * threads context.
337 */
338void handle_nested_irq(unsigned int irq)
339{
340 struct irq_desc *desc = irq_to_desc(irq);
341 struct irqaction *action;
342 irqreturn_t action_ret;
343
344 might_sleep();
345
346 spin_lock_irq(&desc->lock);
347
348 kstat_incr_irqs_this_cpu(irq, desc);
349
350 action = desc->action;
351 if (unlikely(!action || (desc->status & IRQ_DISABLED)))
352 goto out_unlock;
353
354 desc->status |= IRQ_INPROGRESS;
355 spin_unlock_irq(&desc->lock);
356
357 action_ret = action->thread_fn(action->irq, action->dev_id);
358 if (!noirqdebug)
359 note_interrupt(irq, desc, action_ret);
360
361 spin_lock_irq(&desc->lock);
362 desc->status &= ~IRQ_INPROGRESS;
363
364out_unlock:
365 spin_unlock_irq(&desc->lock);
366}
367EXPORT_SYMBOL_GPL(handle_nested_irq);
368
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700369/**
370 * handle_simple_irq - Simple and software-decoded IRQs.
371 * @irq: the interrupt number
372 * @desc: the interrupt description structure for this irq
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700373 *
374 * Simple interrupts are either sent from a demultiplexing interrupt
375 * handler or come from hardware, where no interrupt hardware control
376 * is necessary.
377 *
378 * Note: The caller is expected to handle the ack, clear, mask and
379 * unmask issues if necessary.
380 */
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -0800381void
David Howells7d12e782006-10-05 14:55:46 +0100382handle_simple_irq(unsigned int irq, struct irq_desc *desc)
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700383{
384 struct irqaction *action;
385 irqreturn_t action_ret;
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700386
387 spin_lock(&desc->lock);
388
389 if (unlikely(desc->status & IRQ_INPROGRESS))
390 goto out_unlock;
Steven Rostedt971e5b35f2007-12-18 18:05:58 +0100391 desc->status &= ~(IRQ_REPLAY | IRQ_WAITING);
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +0200392 kstat_incr_irqs_this_cpu(irq, desc);
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700393
394 action = desc->action;
Steven Rostedt971e5b35f2007-12-18 18:05:58 +0100395 if (unlikely(!action || (desc->status & IRQ_DISABLED)))
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700396 goto out_unlock;
397
398 desc->status |= IRQ_INPROGRESS;
399 spin_unlock(&desc->lock);
400
David Howells7d12e782006-10-05 14:55:46 +0100401 action_ret = handle_IRQ_event(irq, action);
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700402 if (!noirqdebug)
David Howells7d12e782006-10-05 14:55:46 +0100403 note_interrupt(irq, desc, action_ret);
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700404
405 spin_lock(&desc->lock);
406 desc->status &= ~IRQ_INPROGRESS;
407out_unlock:
408 spin_unlock(&desc->lock);
409}
410
411/**
412 * handle_level_irq - Level type irq handler
413 * @irq: the interrupt number
414 * @desc: the interrupt description structure for this irq
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700415 *
416 * Level type interrupts are active as long as the hardware line has
417 * the active level. This may require to mask the interrupt and unmask
418 * it after the associated handler has acknowledged the device, so the
419 * interrupt line is back to inactive.
420 */
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -0800421void
David Howells7d12e782006-10-05 14:55:46 +0100422handle_level_irq(unsigned int irq, struct irq_desc *desc)
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700423{
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700424 struct irqaction *action;
425 irqreturn_t action_ret;
426
427 spin_lock(&desc->lock);
428 mask_ack_irq(desc, irq);
429
430 if (unlikely(desc->status & IRQ_INPROGRESS))
Ingo Molnar86998aa2006-09-19 11:14:34 +0200431 goto out_unlock;
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700432 desc->status &= ~(IRQ_REPLAY | IRQ_WAITING);
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +0200433 kstat_incr_irqs_this_cpu(irq, desc);
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700434
435 /*
436 * If its disabled or no action available
437 * keep it masked and get out of here
438 */
439 action = desc->action;
Thomas Gleixner49663422007-08-12 15:46:34 +0000440 if (unlikely(!action || (desc->status & IRQ_DISABLED)))
Ingo Molnar86998aa2006-09-19 11:14:34 +0200441 goto out_unlock;
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700442
443 desc->status |= IRQ_INPROGRESS;
444 spin_unlock(&desc->lock);
445
David Howells7d12e782006-10-05 14:55:46 +0100446 action_ret = handle_IRQ_event(irq, action);
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700447 if (!noirqdebug)
David Howells7d12e782006-10-05 14:55:46 +0100448 note_interrupt(irq, desc, action_ret);
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700449
450 spin_lock(&desc->lock);
451 desc->status &= ~IRQ_INPROGRESS;
Thomas Gleixnerb25c3402009-08-13 12:17:22 +0200452
453 if (unlikely(desc->status & IRQ_ONESHOT))
454 desc->status |= IRQ_MASKED;
455 else if (!(desc->status & IRQ_DISABLED) && desc->chip->unmask)
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700456 desc->chip->unmask(irq);
Ingo Molnar86998aa2006-09-19 11:14:34 +0200457out_unlock:
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700458 spin_unlock(&desc->lock);
459}
Ingo Molnar14819ea2009-01-14 12:34:21 +0100460EXPORT_SYMBOL_GPL(handle_level_irq);
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700461
462/**
Ingo Molnar47c2a3a2006-06-29 02:25:03 -0700463 * handle_fasteoi_irq - irq handler for transparent controllers
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700464 * @irq: the interrupt number
465 * @desc: the interrupt description structure for this irq
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700466 *
Ingo Molnar47c2a3a2006-06-29 02:25:03 -0700467 * Only a single callback will be issued to the chip: an ->eoi()
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700468 * call when the interrupt has been serviced. This enables support
469 * for modern forms of interrupt handlers, which handle the flow
470 * details in hardware, transparently.
471 */
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -0800472void
David Howells7d12e782006-10-05 14:55:46 +0100473handle_fasteoi_irq(unsigned int irq, struct irq_desc *desc)
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700474{
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700475 struct irqaction *action;
476 irqreturn_t action_ret;
477
478 spin_lock(&desc->lock);
479
480 if (unlikely(desc->status & IRQ_INPROGRESS))
481 goto out;
482
483 desc->status &= ~(IRQ_REPLAY | IRQ_WAITING);
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +0200484 kstat_incr_irqs_this_cpu(irq, desc);
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700485
486 /*
487 * If its disabled or no action available
Ingo Molnar76d21602007-02-16 01:28:24 -0800488 * then mask it and get out of here:
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700489 */
490 action = desc->action;
Benjamin Herrenschmidt98bb2442006-06-29 02:25:01 -0700491 if (unlikely(!action || (desc->status & IRQ_DISABLED))) {
492 desc->status |= IRQ_PENDING;
Ingo Molnar76d21602007-02-16 01:28:24 -0800493 if (desc->chip->mask)
494 desc->chip->mask(irq);
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700495 goto out;
Benjamin Herrenschmidt98bb2442006-06-29 02:25:01 -0700496 }
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700497
498 desc->status |= IRQ_INPROGRESS;
Benjamin Herrenschmidt98bb2442006-06-29 02:25:01 -0700499 desc->status &= ~IRQ_PENDING;
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700500 spin_unlock(&desc->lock);
501
David Howells7d12e782006-10-05 14:55:46 +0100502 action_ret = handle_IRQ_event(irq, action);
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700503 if (!noirqdebug)
David Howells7d12e782006-10-05 14:55:46 +0100504 note_interrupt(irq, desc, action_ret);
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700505
506 spin_lock(&desc->lock);
507 desc->status &= ~IRQ_INPROGRESS;
508out:
Ingo Molnar47c2a3a2006-06-29 02:25:03 -0700509 desc->chip->eoi(irq);
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700510
511 spin_unlock(&desc->lock);
512}
513
514/**
515 * handle_edge_irq - edge type IRQ handler
516 * @irq: the interrupt number
517 * @desc: the interrupt description structure for this irq
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700518 *
519 * Interrupt occures on the falling and/or rising edge of a hardware
520 * signal. The occurence is latched into the irq controller hardware
521 * and must be acked in order to be reenabled. After the ack another
522 * interrupt can happen on the same source even before the first one
523 * is handled by the assosiacted event handler. If this happens it
524 * might be necessary to disable (mask) the interrupt depending on the
525 * controller hardware. This requires to reenable the interrupt inside
526 * of the loop which handles the interrupts which have arrived while
527 * the handler was running. If all pending interrupts are handled, the
528 * loop is left.
529 */
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -0800530void
David Howells7d12e782006-10-05 14:55:46 +0100531handle_edge_irq(unsigned int irq, struct irq_desc *desc)
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700532{
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700533 spin_lock(&desc->lock);
534
535 desc->status &= ~(IRQ_REPLAY | IRQ_WAITING);
536
537 /*
538 * If we're currently running this IRQ, or its disabled,
539 * we shouldn't process the IRQ. Mark it pending, handle
540 * the necessary masking and go out
541 */
542 if (unlikely((desc->status & (IRQ_INPROGRESS | IRQ_DISABLED)) ||
543 !desc->action)) {
544 desc->status |= (IRQ_PENDING | IRQ_MASKED);
545 mask_ack_irq(desc, irq);
546 goto out_unlock;
547 }
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +0200548 kstat_incr_irqs_this_cpu(irq, desc);
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700549
550 /* Start handling the irq */
Thomas Gleixner4dbc9ca2009-08-27 09:38:49 +0200551 if (desc->chip->ack)
552 desc->chip->ack(irq);
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700553
554 /* Mark the IRQ currently in progress.*/
555 desc->status |= IRQ_INPROGRESS;
556
557 do {
558 struct irqaction *action = desc->action;
559 irqreturn_t action_ret;
560
561 if (unlikely(!action)) {
562 desc->chip->mask(irq);
563 goto out_unlock;
564 }
565
566 /*
567 * When another irq arrived while we were handling
568 * one, we could have masked the irq.
569 * Renable it, if it was not disabled in meantime.
570 */
571 if (unlikely((desc->status &
572 (IRQ_PENDING | IRQ_MASKED | IRQ_DISABLED)) ==
573 (IRQ_PENDING | IRQ_MASKED))) {
574 desc->chip->unmask(irq);
575 desc->status &= ~IRQ_MASKED;
576 }
577
578 desc->status &= ~IRQ_PENDING;
579 spin_unlock(&desc->lock);
David Howells7d12e782006-10-05 14:55:46 +0100580 action_ret = handle_IRQ_event(irq, action);
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700581 if (!noirqdebug)
David Howells7d12e782006-10-05 14:55:46 +0100582 note_interrupt(irq, desc, action_ret);
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700583 spin_lock(&desc->lock);
584
585 } while ((desc->status & (IRQ_PENDING | IRQ_DISABLED)) == IRQ_PENDING);
586
587 desc->status &= ~IRQ_INPROGRESS;
588out_unlock:
589 spin_unlock(&desc->lock);
590}
591
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700592/**
593 * handle_percpu_IRQ - Per CPU local irq handler
594 * @irq: the interrupt number
595 * @desc: the interrupt description structure for this irq
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700596 *
597 * Per CPU interrupts on SMP machines without locking requirements
598 */
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -0800599void
David Howells7d12e782006-10-05 14:55:46 +0100600handle_percpu_irq(unsigned int irq, struct irq_desc *desc)
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700601{
602 irqreturn_t action_ret;
603
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +0200604 kstat_incr_irqs_this_cpu(irq, desc);
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700605
606 if (desc->chip->ack)
607 desc->chip->ack(irq);
608
David Howells7d12e782006-10-05 14:55:46 +0100609 action_ret = handle_IRQ_event(irq, desc->action);
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700610 if (!noirqdebug)
David Howells7d12e782006-10-05 14:55:46 +0100611 note_interrupt(irq, desc, action_ret);
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700612
Yinghai Lufcef5912009-04-27 17:58:23 -0700613 if (desc->chip->eoi)
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700614 desc->chip->eoi(irq);
615}
616
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700617void
Ingo Molnara460e742006-10-17 00:10:03 -0700618__set_irq_handler(unsigned int irq, irq_flow_handler_t handle, int is_chained,
619 const char *name)
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700620{
Thomas Gleixnerd3c60042008-10-16 09:55:00 +0200621 struct irq_desc *desc = irq_to_desc(irq);
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700622 unsigned long flags;
623
Yinghai Lu7d94f7c2008-08-19 20:50:14 -0700624 if (!desc) {
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700625 printk(KERN_ERR
626 "Trying to install type control for IRQ%d\n", irq);
627 return;
628 }
629
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700630 if (!handle)
631 handle = handle_bad_irq;
Thomas Gleixner9d7ac8b2006-12-22 01:08:14 -0800632 else if (desc->chip == &no_irq_chip) {
Thomas Gleixnerf8b54732006-07-01 22:30:08 +0100633 printk(KERN_WARNING "Trying to install %sinterrupt handler "
Geert Uytterhoevenb039db82006-12-20 15:59:48 +0100634 "for IRQ%d\n", is_chained ? "chained " : "", irq);
Thomas Gleixnerf8b54732006-07-01 22:30:08 +0100635 /*
636 * Some ARM implementations install a handler for really dumb
637 * interrupt hardware without setting an irq_chip. This worked
638 * with the ARM no_irq_chip but the check in setup_irq would
639 * prevent us to setup the interrupt at all. Switch it to
640 * dummy_irq_chip for easy transition.
641 */
642 desc->chip = &dummy_irq_chip;
643 }
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700644
Thomas Gleixner70aedd22009-08-13 12:17:48 +0200645 chip_bus_lock(irq, desc);
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700646 spin_lock_irqsave(&desc->lock, flags);
647
648 /* Uninstall? */
649 if (handle == handle_bad_irq) {
Yinghai Lufcef5912009-04-27 17:58:23 -0700650 if (desc->chip != &no_irq_chip)
Jan Beulich5575ddf2007-02-16 01:28:26 -0800651 mask_ack_irq(desc, irq);
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700652 desc->status |= IRQ_DISABLED;
653 desc->depth = 1;
654 }
655 desc->handle_irq = handle;
Ingo Molnara460e742006-10-17 00:10:03 -0700656 desc->name = name;
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700657
658 if (handle != handle_bad_irq && is_chained) {
659 desc->status &= ~IRQ_DISABLED;
660 desc->status |= IRQ_NOREQUEST | IRQ_NOPROBE;
661 desc->depth = 0;
Pawel MOLL7e6e1782008-09-01 10:12:11 +0100662 desc->chip->startup(irq);
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700663 }
664 spin_unlock_irqrestore(&desc->lock, flags);
Thomas Gleixner70aedd22009-08-13 12:17:48 +0200665 chip_bus_sync_unlock(irq, desc);
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700666}
Ingo Molnar14819ea2009-01-14 12:34:21 +0100667EXPORT_SYMBOL_GPL(__set_irq_handler);
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700668
669void
670set_irq_chip_and_handler(unsigned int irq, struct irq_chip *chip,
David Howells57a58a92006-10-05 13:06:34 +0100671 irq_flow_handler_t handle)
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700672{
673 set_irq_chip(irq, chip);
Ingo Molnara460e742006-10-17 00:10:03 -0700674 __set_irq_handler(irq, handle, 0, NULL);
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700675}
676
Ingo Molnara460e742006-10-17 00:10:03 -0700677void
678set_irq_chip_and_handler_name(unsigned int irq, struct irq_chip *chip,
679 irq_flow_handler_t handle, const char *name)
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700680{
Ingo Molnara460e742006-10-17 00:10:03 -0700681 set_irq_chip(irq, chip);
682 __set_irq_handler(irq, handle, 0, name);
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700683}
Ralf Baechle46f4f8f2008-02-08 04:22:01 -0800684
685void __init set_irq_noprobe(unsigned int irq)
686{
Thomas Gleixnerd3c60042008-10-16 09:55:00 +0200687 struct irq_desc *desc = irq_to_desc(irq);
Ralf Baechle46f4f8f2008-02-08 04:22:01 -0800688 unsigned long flags;
689
Yinghai Lu7d94f7c2008-08-19 20:50:14 -0700690 if (!desc) {
Ralf Baechle46f4f8f2008-02-08 04:22:01 -0800691 printk(KERN_ERR "Trying to mark IRQ%d non-probeable\n", irq);
Ralf Baechle46f4f8f2008-02-08 04:22:01 -0800692 return;
693 }
694
Ralf Baechle46f4f8f2008-02-08 04:22:01 -0800695 spin_lock_irqsave(&desc->lock, flags);
696 desc->status |= IRQ_NOPROBE;
697 spin_unlock_irqrestore(&desc->lock, flags);
698}
699
700void __init set_irq_probe(unsigned int irq)
701{
Thomas Gleixnerd3c60042008-10-16 09:55:00 +0200702 struct irq_desc *desc = irq_to_desc(irq);
Ralf Baechle46f4f8f2008-02-08 04:22:01 -0800703 unsigned long flags;
704
Yinghai Lu7d94f7c2008-08-19 20:50:14 -0700705 if (!desc) {
Ralf Baechle46f4f8f2008-02-08 04:22:01 -0800706 printk(KERN_ERR "Trying to mark IRQ%d probeable\n", irq);
Ralf Baechle46f4f8f2008-02-08 04:22:01 -0800707 return;
708 }
709
Ralf Baechle46f4f8f2008-02-08 04:22:01 -0800710 spin_lock_irqsave(&desc->lock, flags);
711 desc->status &= ~IRQ_NOPROBE;
712 spin_unlock_irqrestore(&desc->lock, flags);
713}