This source file includes following definitions.
- resend_irqs
- check_irq_resend
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15 #include <linux/irq.h>
16 #include <linux/module.h>
17 #include <linux/random.h>
18 #include <linux/interrupt.h>
19
20 #include "internals.h"
21
22 #ifdef CONFIG_HARDIRQS_SW_RESEND
23
24
25 static DECLARE_BITMAP(irqs_resend, IRQ_BITMAP_BITS);
26
27
28
29
30 static void resend_irqs(unsigned long arg)
31 {
32 struct irq_desc *desc;
33 int irq;
34
35 while (!bitmap_empty(irqs_resend, nr_irqs)) {
36 irq = find_first_bit(irqs_resend, nr_irqs);
37 clear_bit(irq, irqs_resend);
38 desc = irq_to_desc(irq);
39 if (!desc)
40 continue;
41 local_irq_disable();
42 desc->handle_irq(desc);
43 local_irq_enable();
44 }
45 }
46
47
48 static DECLARE_TASKLET(resend_tasklet, resend_irqs, 0);
49
50 #endif
51
52
53
54
55
56
57 void check_irq_resend(struct irq_desc *desc)
58 {
59
60
61
62
63
64
65 if (irq_settings_is_level(desc)) {
66 desc->istate &= ~IRQS_PENDING;
67 return;
68 }
69 if (desc->istate & IRQS_REPLAY)
70 return;
71 if (desc->istate & IRQS_PENDING) {
72 desc->istate &= ~IRQS_PENDING;
73 desc->istate |= IRQS_REPLAY;
74
75 if (!desc->irq_data.chip->irq_retrigger ||
76 !desc->irq_data.chip->irq_retrigger(&desc->irq_data)) {
77 #ifdef CONFIG_HARDIRQS_SW_RESEND
78 unsigned int irq = irq_desc_get_irq(desc);
79
80
81
82
83
84
85
86 if (irq_settings_is_nested_thread(desc)) {
87
88
89
90
91
92 if (!desc->parent_irq)
93 return;
94 irq = desc->parent_irq;
95 }
96
97 set_bit(irq, irqs_resend);
98 tasklet_schedule(&resend_tasklet);
99 #endif
100 }
101 }
102 }