2 * linux/kernel/irq/chip.c
4 * Copyright (C) 1992, 1998-2006 Linus Torvalds, Ingo Molnar
5 * Copyright (C) 2005-2006, Thomas Gleixner, Russell King
7 * This file contains the core interrupt handling code, for irq-chip
10 * Detailed information is available in Documentation/DocBook/genericirq
13 #include <linux/irq.h>
14 #include <linux/msi.h>
15 #include <linux/module.h>
16 #include <linux/interrupt.h>
17 #include <linux/kernel_stat.h>
19 #include "internals.h"
22 * dynamic_irq_init - initialize a dynamically allocated irq
23 * @irq: irq number to initialize
25 void dynamic_irq_init(unsigned int irq
)
27 struct irq_desc
*desc
;
30 desc
= irq_to_desc(irq
);
32 WARN(1, KERN_ERR
"Trying to initialize invalid IRQ%d\n", irq
);
36 /* Ensure we don't have left over values from a previous use of this irq */
37 spin_lock_irqsave(&desc
->lock
, flags
);
38 desc
->status
= IRQ_DISABLED
;
39 desc
->chip
= &no_irq_chip
;
40 desc
->handle_irq
= handle_bad_irq
;
42 desc
->msi_desc
= NULL
;
43 desc
->handler_data
= NULL
;
44 desc
->chip_data
= NULL
;
47 desc
->irqs_unhandled
= 0;
49 cpumask_setall(desc
->affinity
);
50 #ifdef CONFIG_GENERIC_PENDING_IRQ
51 cpumask_clear(desc
->pending_mask
);
54 spin_unlock_irqrestore(&desc
->lock
, flags
);
58 * dynamic_irq_cleanup - cleanup a dynamically allocated irq
59 * @irq: irq number to initialize
61 void dynamic_irq_cleanup(unsigned int irq
)
63 struct irq_desc
*desc
= irq_to_desc(irq
);
67 WARN(1, KERN_ERR
"Trying to cleanup invalid IRQ%d\n", irq
);
71 spin_lock_irqsave(&desc
->lock
, flags
);
73 spin_unlock_irqrestore(&desc
->lock
, flags
);
74 WARN(1, KERN_ERR
"Destroying IRQ%d without calling free_irq\n",
78 desc
->msi_desc
= NULL
;
79 desc
->handler_data
= NULL
;
80 desc
->chip_data
= NULL
;
81 desc
->handle_irq
= handle_bad_irq
;
82 desc
->chip
= &no_irq_chip
;
84 clear_kstat_irqs(desc
);
85 spin_unlock_irqrestore(&desc
->lock
, flags
);
90 * set_irq_chip - set the irq chip for an irq
92 * @chip: pointer to irq chip description structure
94 int set_irq_chip(unsigned int irq
, struct irq_chip
*chip
)
96 struct irq_desc
*desc
= irq_to_desc(irq
);
100 WARN(1, KERN_ERR
"Trying to install chip for IRQ%d\n", irq
);
107 spin_lock_irqsave(&desc
->lock
, flags
);
108 irq_chip_set_defaults(chip
);
110 spin_unlock_irqrestore(&desc
->lock
, flags
);
114 EXPORT_SYMBOL(set_irq_chip
);
117 * set_irq_type - set the irq trigger type for an irq
119 * @type: IRQ_TYPE_{LEVEL,EDGE}_* value - see include/linux/irq.h
121 int set_irq_type(unsigned int irq
, unsigned int type
)
123 struct irq_desc
*desc
= irq_to_desc(irq
);
128 printk(KERN_ERR
"Trying to set irq type for IRQ%d\n", irq
);
132 type
&= IRQ_TYPE_SENSE_MASK
;
133 if (type
== IRQ_TYPE_NONE
)
136 spin_lock_irqsave(&desc
->lock
, flags
);
137 ret
= __irq_set_trigger(desc
, irq
, type
);
138 spin_unlock_irqrestore(&desc
->lock
, flags
);
141 EXPORT_SYMBOL(set_irq_type
);
144 * set_irq_data - set irq type data for an irq
145 * @irq: Interrupt number
146 * @data: Pointer to interrupt specific data
148 * Set the hardware irq controller data for an irq
150 int set_irq_data(unsigned int irq
, void *data
)
152 struct irq_desc
*desc
= irq_to_desc(irq
);
157 "Trying to install controller data for IRQ%d\n", irq
);
161 spin_lock_irqsave(&desc
->lock
, flags
);
162 desc
->handler_data
= data
;
163 spin_unlock_irqrestore(&desc
->lock
, flags
);
166 EXPORT_SYMBOL(set_irq_data
);
169 * set_irq_data - set irq type data for an irq
170 * @irq: Interrupt number
171 * @entry: Pointer to MSI descriptor data
173 * Set the hardware irq controller data for an irq
175 int set_irq_msi(unsigned int irq
, struct msi_desc
*entry
)
177 struct irq_desc
*desc
= irq_to_desc(irq
);
182 "Trying to install msi data for IRQ%d\n", irq
);
186 spin_lock_irqsave(&desc
->lock
, flags
);
187 desc
->msi_desc
= entry
;
190 spin_unlock_irqrestore(&desc
->lock
, flags
);
195 * set_irq_chip_data - set irq chip data for an irq
196 * @irq: Interrupt number
197 * @data: Pointer to chip specific data
199 * Set the hardware irq chip data for an irq
201 int set_irq_chip_data(unsigned int irq
, void *data
)
203 struct irq_desc
*desc
= irq_to_desc(irq
);
208 "Trying to install chip data for IRQ%d\n", irq
);
213 printk(KERN_ERR
"BUG: bad set_irq_chip_data(IRQ#%d)\n", irq
);
217 spin_lock_irqsave(&desc
->lock
, flags
);
218 desc
->chip_data
= data
;
219 spin_unlock_irqrestore(&desc
->lock
, flags
);
223 EXPORT_SYMBOL(set_irq_chip_data
);
226 * default enable function
228 static void default_enable(unsigned int irq
)
230 struct irq_desc
*desc
= irq_to_desc(irq
);
232 desc
->chip
->unmask(irq
);
233 desc
->status
&= ~IRQ_MASKED
;
237 * default disable function
239 static void default_disable(unsigned int irq
)
244 * default startup function
246 static unsigned int default_startup(unsigned int irq
)
248 struct irq_desc
*desc
= irq_to_desc(irq
);
250 desc
->chip
->enable(irq
);
255 * default shutdown function
257 static void default_shutdown(unsigned int irq
)
259 struct irq_desc
*desc
= irq_to_desc(irq
);
261 desc
->chip
->mask(irq
);
262 desc
->status
|= IRQ_MASKED
;
266 * Fixup enable/disable function pointers
268 void irq_chip_set_defaults(struct irq_chip
*chip
)
271 chip
->enable
= default_enable
;
273 chip
->disable
= default_disable
;
275 chip
->startup
= default_startup
;
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():
283 chip
->shutdown
= chip
->disable
!= default_disable
?
284 chip
->disable
: default_shutdown
;
286 chip
->name
= chip
->typename
;
288 chip
->end
= dummy_irq_chip
.end
;
291 static inline void mask_ack_irq(struct irq_desc
*desc
, int irq
)
293 if (desc
->chip
->mask_ack
)
294 desc
->chip
->mask_ack(irq
);
296 desc
->chip
->mask(irq
);
298 desc
->chip
->ack(irq
);
303 * handle_simple_irq - Simple and software-decoded IRQs.
304 * @irq: the interrupt number
305 * @desc: the interrupt description structure for this irq
307 * Simple interrupts are either sent from a demultiplexing interrupt
308 * handler or come from hardware, where no interrupt hardware control
311 * Note: The caller is expected to handle the ack, clear, mask and
312 * unmask issues if necessary.
315 handle_simple_irq(unsigned int irq
, struct irq_desc
*desc
)
317 struct irqaction
*action
;
318 irqreturn_t action_ret
;
320 spin_lock(&desc
->lock
);
322 if (unlikely(desc
->status
& IRQ_INPROGRESS
))
324 desc
->status
&= ~(IRQ_REPLAY
| IRQ_WAITING
);
325 kstat_incr_irqs_this_cpu(irq
, desc
);
327 action
= desc
->action
;
328 if (unlikely(!action
|| (desc
->status
& IRQ_DISABLED
)))
331 desc
->status
|= IRQ_INPROGRESS
;
332 spin_unlock(&desc
->lock
);
334 action_ret
= handle_IRQ_event(irq
, action
);
336 note_interrupt(irq
, desc
, action_ret
);
338 spin_lock(&desc
->lock
);
339 desc
->status
&= ~IRQ_INPROGRESS
;
341 spin_unlock(&desc
->lock
);
345 * handle_level_irq - Level type irq handler
346 * @irq: the interrupt number
347 * @desc: the interrupt description structure for this irq
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.
355 handle_level_irq(unsigned int irq
, struct irq_desc
*desc
)
357 struct irqaction
*action
;
358 irqreturn_t action_ret
;
360 spin_lock(&desc
->lock
);
361 mask_ack_irq(desc
, irq
);
362 desc
= irq_remap_to_desc(irq
, desc
);
364 if (unlikely(desc
->status
& IRQ_INPROGRESS
))
366 desc
->status
&= ~(IRQ_REPLAY
| IRQ_WAITING
);
367 kstat_incr_irqs_this_cpu(irq
, desc
);
370 * If its disabled or no action available
371 * keep it masked and get out of here
373 action
= desc
->action
;
374 if (unlikely(!action
|| (desc
->status
& IRQ_DISABLED
)))
377 desc
->status
|= IRQ_INPROGRESS
;
378 spin_unlock(&desc
->lock
);
380 action_ret
= handle_IRQ_event(irq
, action
);
382 note_interrupt(irq
, desc
, action_ret
);
384 spin_lock(&desc
->lock
);
385 desc
->status
&= ~IRQ_INPROGRESS
;
386 if (!(desc
->status
& IRQ_DISABLED
) && desc
->chip
->unmask
)
387 desc
->chip
->unmask(irq
);
389 spin_unlock(&desc
->lock
);
391 EXPORT_SYMBOL_GPL(handle_level_irq
);
394 * handle_fasteoi_irq - irq handler for transparent controllers
395 * @irq: the interrupt number
396 * @desc: the interrupt description structure for this irq
398 * Only a single callback will be issued to the chip: an ->eoi()
399 * call when the interrupt has been serviced. This enables support
400 * for modern forms of interrupt handlers, which handle the flow
401 * details in hardware, transparently.
404 handle_fasteoi_irq(unsigned int irq
, struct irq_desc
*desc
)
406 struct irqaction
*action
;
407 irqreturn_t action_ret
;
409 spin_lock(&desc
->lock
);
411 if (unlikely(desc
->status
& IRQ_INPROGRESS
))
414 desc
->status
&= ~(IRQ_REPLAY
| IRQ_WAITING
);
415 kstat_incr_irqs_this_cpu(irq
, desc
);
418 * If its disabled or no action available
419 * then mask it and get out of here:
421 action
= desc
->action
;
422 if (unlikely(!action
|| (desc
->status
& IRQ_DISABLED
))) {
423 desc
->status
|= IRQ_PENDING
;
424 if (desc
->chip
->mask
)
425 desc
->chip
->mask(irq
);
429 desc
->status
|= IRQ_INPROGRESS
;
430 desc
->status
&= ~IRQ_PENDING
;
431 spin_unlock(&desc
->lock
);
433 action_ret
= handle_IRQ_event(irq
, action
);
435 note_interrupt(irq
, desc
, action_ret
);
437 spin_lock(&desc
->lock
);
438 desc
->status
&= ~IRQ_INPROGRESS
;
440 desc
->chip
->eoi(irq
);
441 desc
= irq_remap_to_desc(irq
, desc
);
443 spin_unlock(&desc
->lock
);
447 * handle_edge_irq - edge type IRQ handler
448 * @irq: the interrupt number
449 * @desc: the interrupt description structure for this irq
451 * Interrupt occures on the falling and/or rising edge of a hardware
452 * signal. The occurence is latched into the irq controller hardware
453 * and must be acked in order to be reenabled. After the ack another
454 * interrupt can happen on the same source even before the first one
455 * is handled by the assosiacted event handler. If this happens it
456 * might be necessary to disable (mask) the interrupt depending on the
457 * controller hardware. This requires to reenable the interrupt inside
458 * of the loop which handles the interrupts which have arrived while
459 * the handler was running. If all pending interrupts are handled, the
463 handle_edge_irq(unsigned int irq
, struct irq_desc
*desc
)
465 spin_lock(&desc
->lock
);
467 desc
->status
&= ~(IRQ_REPLAY
| IRQ_WAITING
);
470 * If we're currently running this IRQ, or its disabled,
471 * we shouldn't process the IRQ. Mark it pending, handle
472 * the necessary masking and go out
474 if (unlikely((desc
->status
& (IRQ_INPROGRESS
| IRQ_DISABLED
)) ||
476 desc
->status
|= (IRQ_PENDING
| IRQ_MASKED
);
477 mask_ack_irq(desc
, irq
);
478 desc
= irq_remap_to_desc(irq
, desc
);
481 kstat_incr_irqs_this_cpu(irq
, desc
);
483 /* Start handling the irq */
485 desc
->chip
->ack(irq
);
486 desc
= irq_remap_to_desc(irq
, desc
);
488 /* Mark the IRQ currently in progress.*/
489 desc
->status
|= IRQ_INPROGRESS
;
492 struct irqaction
*action
= desc
->action
;
493 irqreturn_t action_ret
;
495 if (unlikely(!action
)) {
496 desc
->chip
->mask(irq
);
501 * When another irq arrived while we were handling
502 * one, we could have masked the irq.
503 * Renable it, if it was not disabled in meantime.
505 if (unlikely((desc
->status
&
506 (IRQ_PENDING
| IRQ_MASKED
| IRQ_DISABLED
)) ==
507 (IRQ_PENDING
| IRQ_MASKED
))) {
508 desc
->chip
->unmask(irq
);
509 desc
->status
&= ~IRQ_MASKED
;
512 desc
->status
&= ~IRQ_PENDING
;
513 spin_unlock(&desc
->lock
);
514 action_ret
= handle_IRQ_event(irq
, action
);
516 note_interrupt(irq
, desc
, action_ret
);
517 spin_lock(&desc
->lock
);
519 } while ((desc
->status
& (IRQ_PENDING
| IRQ_DISABLED
)) == IRQ_PENDING
);
521 desc
->status
&= ~IRQ_INPROGRESS
;
523 spin_unlock(&desc
->lock
);
527 * handle_percpu_IRQ - Per CPU local irq handler
528 * @irq: the interrupt number
529 * @desc: the interrupt description structure for this irq
531 * Per CPU interrupts on SMP machines without locking requirements
534 handle_percpu_irq(unsigned int irq
, struct irq_desc
*desc
)
536 irqreturn_t action_ret
;
538 kstat_incr_irqs_this_cpu(irq
, desc
);
541 desc
->chip
->ack(irq
);
543 action_ret
= handle_IRQ_event(irq
, desc
->action
);
545 note_interrupt(irq
, desc
, action_ret
);
547 if (desc
->chip
->eoi
) {
548 desc
->chip
->eoi(irq
);
549 desc
= irq_remap_to_desc(irq
, desc
);
554 __set_irq_handler(unsigned int irq
, irq_flow_handler_t handle
, int is_chained
,
557 struct irq_desc
*desc
= irq_to_desc(irq
);
562 "Trying to install type control for IRQ%d\n", irq
);
567 handle
= handle_bad_irq
;
568 else if (desc
->chip
== &no_irq_chip
) {
569 printk(KERN_WARNING
"Trying to install %sinterrupt handler "
570 "for IRQ%d\n", is_chained
? "chained " : "", irq
);
572 * Some ARM implementations install a handler for really dumb
573 * interrupt hardware without setting an irq_chip. This worked
574 * with the ARM no_irq_chip but the check in setup_irq would
575 * prevent us to setup the interrupt at all. Switch it to
576 * dummy_irq_chip for easy transition.
578 desc
->chip
= &dummy_irq_chip
;
581 spin_lock_irqsave(&desc
->lock
, flags
);
584 if (handle
== handle_bad_irq
) {
585 if (desc
->chip
!= &no_irq_chip
) {
586 mask_ack_irq(desc
, irq
);
587 desc
= irq_remap_to_desc(irq
, desc
);
589 desc
->status
|= IRQ_DISABLED
;
592 desc
->handle_irq
= handle
;
595 if (handle
!= handle_bad_irq
&& is_chained
) {
596 desc
->status
&= ~IRQ_DISABLED
;
597 desc
->status
|= IRQ_NOREQUEST
| IRQ_NOPROBE
;
599 desc
->chip
->startup(irq
);
601 spin_unlock_irqrestore(&desc
->lock
, flags
);
603 EXPORT_SYMBOL_GPL(__set_irq_handler
);
606 set_irq_chip_and_handler(unsigned int irq
, struct irq_chip
*chip
,
607 irq_flow_handler_t handle
)
609 set_irq_chip(irq
, chip
);
610 __set_irq_handler(irq
, handle
, 0, NULL
);
614 set_irq_chip_and_handler_name(unsigned int irq
, struct irq_chip
*chip
,
615 irq_flow_handler_t handle
, const char *name
)
617 set_irq_chip(irq
, chip
);
618 __set_irq_handler(irq
, handle
, 0, name
);
621 void __init
set_irq_noprobe(unsigned int irq
)
623 struct irq_desc
*desc
= irq_to_desc(irq
);
627 printk(KERN_ERR
"Trying to mark IRQ%d non-probeable\n", irq
);
631 spin_lock_irqsave(&desc
->lock
, flags
);
632 desc
->status
|= IRQ_NOPROBE
;
633 spin_unlock_irqrestore(&desc
->lock
, flags
);
636 void __init
set_irq_probe(unsigned int irq
)
638 struct irq_desc
*desc
= irq_to_desc(irq
);
642 printk(KERN_ERR
"Trying to mark IRQ%d probeable\n", irq
);
646 spin_lock_irqsave(&desc
->lock
, flags
);
647 desc
->status
&= ~IRQ_NOPROBE
;
648 spin_unlock_irqrestore(&desc
->lock
, flags
);