Thomas Gleixner | a4633ad | 2006-06-29 02:24:48 -0700 | [diff] [blame] | 1 | /* |
| 2 | * linux/kernel/irq/resend.c |
| 3 | * |
| 4 | * Copyright (C) 1992, 1998-2006 Linus Torvalds, Ingo Molnar |
| 5 | * Copyright (C) 2005-2006, Thomas Gleixner |
| 6 | * |
| 7 | * This file contains the IRQ-resend code |
| 8 | * |
| 9 | * If the interrupt is waiting to be processed, we try to re-run it. |
| 10 | * We can't directly run it from here since the caller might be in an |
| 11 | * interrupt-protected region. Not all irq controller chips can |
| 12 | * retrigger interrupts at the hardware level, so in those cases |
| 13 | * we allow the resending of IRQs via a tasklet. |
| 14 | */ |
| 15 | |
| 16 | #include <linux/irq.h> |
| 17 | #include <linux/module.h> |
| 18 | #include <linux/random.h> |
| 19 | #include <linux/interrupt.h> |
| 20 | |
| 21 | #include "internals.h" |
| 22 | |
| 23 | #ifdef CONFIG_HARDIRQS_SW_RESEND |
| 24 | |
| 25 | /* Bitmap to handle software resend of interrupts: */ |
Thomas Gleixner | c1ee626 | 2011-02-17 17:45:15 +0100 | [diff] [blame] | 26 | static DECLARE_BITMAP(irqs_resend, IRQ_BITMAP_BITS); |
Thomas Gleixner | a4633ad | 2006-06-29 02:24:48 -0700 | [diff] [blame] | 27 | |
| 28 | /* |
| 29 | * Run software resends of IRQ's |
| 30 | */ |
| 31 | static void resend_irqs(unsigned long arg) |
| 32 | { |
| 33 | struct irq_desc *desc; |
| 34 | int irq; |
| 35 | |
Yinghai Lu | 85c0f90 | 2008-08-19 20:49:47 -0700 | [diff] [blame] | 36 | while (!bitmap_empty(irqs_resend, nr_irqs)) { |
| 37 | irq = find_first_bit(irqs_resend, nr_irqs); |
Thomas Gleixner | a4633ad | 2006-06-29 02:24:48 -0700 | [diff] [blame] | 38 | clear_bit(irq, irqs_resend); |
Yinghai Lu | 08678b0 | 2008-08-19 20:50:05 -0700 | [diff] [blame] | 39 | desc = irq_to_desc(irq); |
Thomas Gleixner | 6a6de9e | 2006-06-29 02:24:51 -0700 | [diff] [blame] | 40 | local_irq_disable(); |
Frederik Deweerdt | e317c8c | 2006-10-06 18:58:24 +0000 | [diff] [blame] | 41 | desc->handle_irq(irq, desc); |
Thomas Gleixner | 6a6de9e | 2006-06-29 02:24:51 -0700 | [diff] [blame] | 42 | local_irq_enable(); |
Thomas Gleixner | a4633ad | 2006-06-29 02:24:48 -0700 | [diff] [blame] | 43 | } |
| 44 | } |
| 45 | |
| 46 | /* Tasklet to handle resend: */ |
| 47 | static DECLARE_TASKLET(resend_tasklet, resend_irqs, 0); |
| 48 | |
| 49 | #endif |
| 50 | |
| 51 | /* |
| 52 | * IRQ resend |
| 53 | * |
| 54 | * Is called with interrupts disabled and desc->lock held. |
| 55 | */ |
| 56 | void check_irq_resend(struct irq_desc *desc, unsigned int irq) |
| 57 | { |
Thomas Gleixner | a4633ad | 2006-06-29 02:24:48 -0700 | [diff] [blame] | 58 | /* |
Thomas Gleixner | 2464286 | 2007-08-12 15:46:35 +0000 | [diff] [blame] | 59 | * We do not resend level type interrupts. Level type |
| 60 | * interrupts are resent by hardware when they are still |
| 61 | * active. |
| 62 | */ |
Thomas Gleixner | 876dbd4 | 2011-02-08 17:28:12 +0100 | [diff] [blame] | 63 | if (irq_settings_is_level(desc)) |
Thomas Gleixner | 8792347 | 2011-02-03 12:27:44 +0100 | [diff] [blame] | 64 | return; |
Thomas Gleixner | 163ef30 | 2011-02-08 11:39:15 +0100 | [diff] [blame] | 65 | if (desc->istate & IRQS_REPLAY) |
| 66 | return; |
Thomas Gleixner | 2a0d6fb | 2011-02-08 12:17:57 +0100 | [diff] [blame] | 67 | if (desc->istate & IRQS_PENDING) { |
Thomas Gleixner | 2a0d6fb | 2011-02-08 12:17:57 +0100 | [diff] [blame] | 68 | desc->istate &= ~IRQS_PENDING; |
Thomas Gleixner | 163ef30 | 2011-02-08 11:39:15 +0100 | [diff] [blame] | 69 | desc->istate |= IRQS_REPLAY; |
Thomas Gleixner | a4633ad | 2006-06-29 02:24:48 -0700 | [diff] [blame] | 70 | |
Thomas Gleixner | 21e2b8c | 2010-09-27 12:45:53 +0000 | [diff] [blame] | 71 | if (!desc->irq_data.chip->irq_retrigger || |
| 72 | !desc->irq_data.chip->irq_retrigger(&desc->irq_data)) { |
Thomas Gleixner | a4633ad | 2006-06-29 02:24:48 -0700 | [diff] [blame] | 73 | #ifdef CONFIG_HARDIRQS_SW_RESEND |
| 74 | /* Set it pending and activate the softirq: */ |
| 75 | set_bit(irq, irqs_resend); |
| 76 | tasklet_schedule(&resend_tasklet); |
| 77 | #endif |
| 78 | } |
| 79 | } |
| 80 | } |