[PATCH] genirq: add ->retrigger() irq op to consolidate hw_irq_resend()
[linux-2.6] / include / linux / irq.h
1 #ifndef _LINUX_IRQ_H
2 #define _LINUX_IRQ_H
3
4 /*
5  * Please do not include this file in generic code.  There is currently
6  * no requirement for any architecture to implement anything held
7  * within this file.
8  *
9  * Thanks. --rmk
10  */
11
12 #include <linux/smp.h>
13
14 #ifndef CONFIG_S390
15
16 #include <linux/linkage.h>
17 #include <linux/cache.h>
18 #include <linux/spinlock.h>
19 #include <linux/cpumask.h>
20 #include <linux/irqreturn.h>
21
22 #include <asm/irq.h>
23 #include <asm/ptrace.h>
24
25 /*
26  * IRQ line status.
27  */
28 #define IRQ_INPROGRESS  1       /* IRQ handler active - do not enter! */
29 #define IRQ_DISABLED    2       /* IRQ disabled - do not enter! */
30 #define IRQ_PENDING     4       /* IRQ pending - replay on enable */
31 #define IRQ_REPLAY      8       /* IRQ has been replayed but not acked yet */
32 #define IRQ_AUTODETECT  16      /* IRQ is being autodetected */
33 #define IRQ_WAITING     32      /* IRQ not yet seen - for autodetection */
34 #define IRQ_LEVEL       64      /* IRQ level triggered */
35 #define IRQ_MASKED      128     /* IRQ masked - shouldn't be seen again */
36 #ifdef CONFIG_IRQ_PER_CPU
37 # define IRQ_PER_CPU    256     /* IRQ is per CPU */
38 # define CHECK_IRQ_PER_CPU(var) ((var) & IRQ_PER_CPU)
39 #else
40 # define CHECK_IRQ_PER_CPU(var) 0
41 #endif
42
43 /*
44  * Interrupt controller descriptor. This is all we need
45  * to describe about the low-level hardware. 
46  */
47 struct hw_interrupt_type {
48         const char      *typename;
49         unsigned int    (*startup)(unsigned int irq);
50         void            (*shutdown)(unsigned int irq);
51         void            (*enable)(unsigned int irq);
52         void            (*disable)(unsigned int irq);
53         void            (*ack)(unsigned int irq);
54         void            (*end)(unsigned int irq);
55         void            (*set_affinity)(unsigned int irq, cpumask_t dest);
56         int             (*retrigger)(unsigned int irq);
57
58         /* Currently used only by UML, might disappear one day.*/
59 #ifdef CONFIG_IRQ_RELEASE_METHOD
60         void            (*release)(unsigned int irq, void *dev_id);
61 #endif
62 };
63
64 typedef struct hw_interrupt_type  hw_irq_controller;
65
66 struct proc_dir_entry;
67
68 /*
69  * This is the "IRQ descriptor", which contains various information
70  * about the irq, including what kind of hardware handling it has,
71  * whether it is disabled etc etc.
72  *
73  * Pad this out to 32 bytes for cache and indexing reasons.
74  */
75 struct irq_desc {
76         hw_irq_controller       *chip;
77         void                    *chip_data;
78         struct irqaction        *action;        /* IRQ action list */
79         unsigned int            status;         /* IRQ status */
80         unsigned int            depth;          /* nested irq disables */
81         unsigned int            irq_count;      /* For detecting broken IRQs */
82         unsigned int            irqs_unhandled;
83         spinlock_t              lock;
84 #ifdef CONFIG_SMP
85         cpumask_t               affinity;
86 #endif
87 #if defined(CONFIG_GENERIC_PENDING_IRQ) || defined(CONFIG_IRQBALANCE)
88         cpumask_t               pending_mask;
89         unsigned int            move_irq;       /* need to re-target IRQ dest */
90 #endif
91 #ifdef CONFIG_PROC_FS
92         struct proc_dir_entry *dir;
93 #endif
94 } ____cacheline_aligned;
95
96 extern struct irq_desc irq_desc[NR_IRQS];
97
98 /*
99  * Migration helpers for obsolete names, they will go away:
100  */
101 typedef struct irq_desc         irq_desc_t;
102
103 /*
104  * Pick up the arch-dependent methods:
105  */
106 #include <asm/hw_irq.h>
107
108 extern int setup_irq(unsigned int irq, struct irqaction *new);
109
110 #ifdef CONFIG_GENERIC_HARDIRQS
111
112 #ifdef CONFIG_SMP
113 static inline void set_native_irq_info(int irq, cpumask_t mask)
114 {
115         irq_desc[irq].affinity = mask;
116 }
117 #else
118 static inline void set_native_irq_info(int irq, cpumask_t mask)
119 {
120 }
121 #endif
122
123 #ifdef CONFIG_SMP
124
125 #if defined(CONFIG_GENERIC_PENDING_IRQ) || defined(CONFIG_IRQBALANCE)
126
127 void set_pending_irq(unsigned int irq, cpumask_t mask);
128 void move_native_irq(int irq);
129
130 #ifdef CONFIG_PCI_MSI
131 /*
132  * Wonder why these are dummies?
133  * For e.g the set_ioapic_affinity_vector() calls the set_ioapic_affinity_irq()
134  * counter part after translating the vector to irq info. We need to perform
135  * this operation on the real irq, when we dont use vector, i.e when
136  * pci_use_vector() is false.
137  */
138 static inline void move_irq(int irq)
139 {
140 }
141
142 static inline void set_irq_info(int irq, cpumask_t mask)
143 {
144 }
145
146 #else /* CONFIG_PCI_MSI */
147
148 static inline void move_irq(int irq)
149 {
150         move_native_irq(irq);
151 }
152
153 static inline void set_irq_info(int irq, cpumask_t mask)
154 {
155         set_native_irq_info(irq, mask);
156 }
157
158 #endif /* CONFIG_PCI_MSI */
159
160 #else /* CONFIG_GENERIC_PENDING_IRQ || CONFIG_IRQBALANCE */
161
162 static inline void move_irq(int irq)
163 {
164 }
165
166 static inline void move_native_irq(int irq)
167 {
168 }
169
170 static inline void set_pending_irq(unsigned int irq, cpumask_t mask)
171 {
172 }
173
174 static inline void set_irq_info(int irq, cpumask_t mask)
175 {
176         set_native_irq_info(irq, mask);
177 }
178
179 #endif /* CONFIG_GENERIC_PENDING_IRQ */
180
181 #else /* CONFIG_SMP */
182
183 #define move_irq(x)
184 #define move_native_irq(x)
185
186 #endif /* CONFIG_SMP */
187
188 #ifdef CONFIG_IRQBALANCE
189 extern void set_balance_irq_affinity(unsigned int irq, cpumask_t mask);
190 #else
191 static inline void set_balance_irq_affinity(unsigned int irq, cpumask_t mask)
192 {
193 }
194 #endif
195
196 #ifdef CONFIG_AUTO_IRQ_AFFINITY
197 extern int select_smp_affinity(unsigned int irq);
198 #else
199 static inline int select_smp_affinity(unsigned int irq)
200 {
201         return 1;
202 }
203 #endif
204
205 extern int no_irq_affinity;
206 extern int noirqdebug_setup(char *str);
207
208 extern irqreturn_t handle_IRQ_event(unsigned int irq, struct pt_regs *regs,
209                                     struct irqaction *action);
210 /*
211  * Explicit fastcall, because i386 4KSTACKS calls it from assembly:
212  */
213 extern fastcall unsigned int __do_IRQ(unsigned int irq, struct pt_regs *regs);
214
215 extern void note_interrupt(unsigned int irq, struct irq_desc *desc,
216                            int action_ret, struct pt_regs *regs);
217 extern int can_request_irq(unsigned int irq, unsigned long irqflags);
218
219 extern void init_irq_proc(void);
220
221 #endif /* CONFIG_GENERIC_HARDIRQS */
222
223 extern hw_irq_controller no_irq_type;  /* needed in every arch ? */
224
225 #endif /* !CONFIG_S390 */
226
227 #endif /* _LINUX_IRQ_H */