Input: unified force feedback support for memoryless devices
[linux-2.6/openmoko-kernel.git] / kernel / irq / resend.c
blob872f91ba2ce89f414450550c3287e20a758ec474
1 /*
2 * linux/kernel/irq/resend.c
4 * Copyright (C) 1992, 1998-2006 Linus Torvalds, Ingo Molnar
5 * Copyright (C) 2005-2006, Thomas Gleixner
7 * This file contains the IRQ-resend code
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.
16 #include <linux/irq.h>
17 #include <linux/module.h>
18 #include <linux/random.h>
19 #include <linux/interrupt.h>
21 #include "internals.h"
23 #ifdef CONFIG_HARDIRQS_SW_RESEND
25 /* Bitmap to handle software resend of interrupts: */
26 static DECLARE_BITMAP(irqs_resend, NR_IRQS);
29 * Run software resends of IRQ's
31 static void resend_irqs(unsigned long arg)
33 struct irq_desc *desc;
34 int irq;
36 while (!bitmap_empty(irqs_resend, NR_IRQS)) {
37 irq = find_first_bit(irqs_resend, NR_IRQS);
38 clear_bit(irq, irqs_resend);
39 desc = irq_desc + irq;
40 local_irq_disable();
41 desc->handle_irq(irq, desc, NULL);
42 local_irq_enable();
46 /* Tasklet to handle resend: */
47 static DECLARE_TASKLET(resend_tasklet, resend_irqs, 0);
49 #endif
52 * IRQ resend
54 * Is called with interrupts disabled and desc->lock held.
56 void check_irq_resend(struct irq_desc *desc, unsigned int irq)
58 unsigned int status = desc->status;
61 * Make sure the interrupt is enabled, before resending it:
63 desc->chip->enable(irq);
65 if ((status & (IRQ_PENDING | IRQ_REPLAY)) == IRQ_PENDING) {
66 desc->status &= ~IRQ_PENDING;
67 desc->status = status | IRQ_REPLAY;
69 if (!desc->chip || !desc->chip->retrigger ||
70 !desc->chip->retrigger(irq)) {
71 #ifdef CONFIG_HARDIRQS_SW_RESEND
72 /* Set it pending and activate the softirq: */
73 set_bit(irq, irqs_resend);
74 tasklet_schedule(&resend_tasklet);
75 #endif