]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/blob - include/linux/irq.h
dbe8734ae86ceb421a284793c8b4515ff894476f
[linux-2.6-omap-h63xx.git] / 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_GENERIC_HARDIRQS
15 # define nr_irqs                NR_IRQS
16
17 # define for_each_irq_desc(irq, desc)           \
18         for (irq = 0; irq < nr_irqs; irq++)
19 #else
20 extern int nr_irqs;
21
22 # define for_each_irq_desc(irq, desc)           \
23         for (irq = 0, desc = irq_desc; irq < nr_irqs; irq++, desc++)
24 #endif
25
26 #ifndef CONFIG_S390
27
28 #include <linux/linkage.h>
29 #include <linux/cache.h>
30 #include <linux/spinlock.h>
31 #include <linux/cpumask.h>
32 #include <linux/irqreturn.h>
33 #include <linux/errno.h>
34
35 #include <asm/irq.h>
36 #include <asm/ptrace.h>
37 #include <asm/irq_regs.h>
38
39 struct irq_desc;
40 typedef void (*irq_flow_handler_t)(unsigned int irq,
41                                             struct irq_desc *desc);
42
43
44 /*
45  * IRQ line status.
46  *
47  * Bits 0-7 are reserved for the IRQF_* bits in linux/interrupt.h
48  *
49  * IRQ types
50  */
51 #define IRQ_TYPE_NONE           0x00000000      /* Default, unspecified type */
52 #define IRQ_TYPE_EDGE_RISING    0x00000001      /* Edge rising type */
53 #define IRQ_TYPE_EDGE_FALLING   0x00000002      /* Edge falling type */
54 #define IRQ_TYPE_EDGE_BOTH (IRQ_TYPE_EDGE_FALLING | IRQ_TYPE_EDGE_RISING)
55 #define IRQ_TYPE_LEVEL_HIGH     0x00000004      /* Level high type */
56 #define IRQ_TYPE_LEVEL_LOW      0x00000008      /* Level low type */
57 #define IRQ_TYPE_SENSE_MASK     0x0000000f      /* Mask of the above */
58 #define IRQ_TYPE_PROBE          0x00000010      /* Probing in progress */
59
60 /* Internal flags */
61 #define IRQ_INPROGRESS          0x00000100      /* IRQ handler active - do not enter! */
62 #define IRQ_DISABLED            0x00000200      /* IRQ disabled - do not enter! */
63 #define IRQ_PENDING             0x00000400      /* IRQ pending - replay on enable */
64 #define IRQ_REPLAY              0x00000800      /* IRQ has been replayed but not acked yet */
65 #define IRQ_AUTODETECT          0x00001000      /* IRQ is being autodetected */
66 #define IRQ_WAITING             0x00002000      /* IRQ not yet seen - for autodetection */
67 #define IRQ_LEVEL               0x00004000      /* IRQ level triggered */
68 #define IRQ_MASKED              0x00008000      /* IRQ masked - shouldn't be seen again */
69 #define IRQ_PER_CPU             0x00010000      /* IRQ is per CPU */
70 #define IRQ_NOPROBE             0x00020000      /* IRQ is not valid for probing */
71 #define IRQ_NOREQUEST           0x00040000      /* IRQ cannot be requested */
72 #define IRQ_NOAUTOEN            0x00080000      /* IRQ will not be enabled on request irq */
73 #define IRQ_WAKEUP              0x00100000      /* IRQ triggers system wakeup */
74 #define IRQ_MOVE_PENDING        0x00200000      /* need to re-target IRQ destination */
75 #define IRQ_NO_BALANCING        0x00400000      /* IRQ is excluded from balancing */
76 #define IRQ_SPURIOUS_DISABLED   0x00800000      /* IRQ was disabled by the spurious trap */
77 #define IRQ_MOVE_PCNTXT 0x01000000      /* IRQ migration from process context */
78
79 #ifdef CONFIG_IRQ_PER_CPU
80 # define CHECK_IRQ_PER_CPU(var) ((var) & IRQ_PER_CPU)
81 # define IRQ_NO_BALANCING_MASK  (IRQ_PER_CPU | IRQ_NO_BALANCING)
82 #else
83 # define CHECK_IRQ_PER_CPU(var) 0
84 # define IRQ_NO_BALANCING_MASK  IRQ_NO_BALANCING
85 #endif
86
87 struct proc_dir_entry;
88 struct msi_desc;
89
90 /**
91  * struct irq_chip - hardware interrupt chip descriptor
92  *
93  * @name:               name for /proc/interrupts
94  * @startup:            start up the interrupt (defaults to ->enable if NULL)
95  * @shutdown:           shut down the interrupt (defaults to ->disable if NULL)
96  * @enable:             enable the interrupt (defaults to chip->unmask if NULL)
97  * @disable:            disable the interrupt (defaults to chip->mask if NULL)
98  * @ack:                start of a new interrupt
99  * @mask:               mask an interrupt source
100  * @mask_ack:           ack and mask an interrupt source
101  * @unmask:             unmask an interrupt source
102  * @eoi:                end of interrupt - chip level
103  * @end:                end of interrupt - flow level
104  * @set_affinity:       set the CPU affinity on SMP machines
105  * @retrigger:          resend an IRQ to the CPU
106  * @set_type:           set the flow type (IRQ_TYPE_LEVEL/etc.) of an IRQ
107  * @set_wake:           enable/disable power-management wake-on of an IRQ
108  *
109  * @release:            release function solely used by UML
110  * @typename:           obsoleted by name, kept as migration helper
111  */
112 struct irq_chip {
113         const char      *name;
114         unsigned int    (*startup)(unsigned int irq);
115         void            (*shutdown)(unsigned int irq);
116         void            (*enable)(unsigned int irq);
117         void            (*disable)(unsigned int irq);
118
119         void            (*ack)(unsigned int irq);
120         void            (*mask)(unsigned int irq);
121         void            (*mask_ack)(unsigned int irq);
122         void            (*unmask)(unsigned int irq);
123         void            (*eoi)(unsigned int irq);
124
125         void            (*end)(unsigned int irq);
126         void            (*set_affinity)(unsigned int irq, cpumask_t dest);
127         int             (*retrigger)(unsigned int irq);
128         int             (*set_type)(unsigned int irq, unsigned int flow_type);
129         int             (*set_wake)(unsigned int irq, unsigned int on);
130
131         /* Currently used only by UML, might disappear one day.*/
132 #ifdef CONFIG_IRQ_RELEASE_METHOD
133         void            (*release)(unsigned int irq, void *dev_id);
134 #endif
135         /*
136          * For compatibility, ->typename is copied into ->name.
137          * Will disappear.
138          */
139         const char      *typename;
140 };
141
142 struct timer_rand_state;
143 struct irq_2_iommu;
144 /**
145  * struct irq_desc - interrupt descriptor
146  *
147  * @handle_irq:         highlevel irq-events handler [if NULL, __do_IRQ()]
148  * @chip:               low level interrupt hardware access
149  * @msi_desc:           MSI descriptor
150  * @handler_data:       per-IRQ data for the irq_chip methods
151  * @chip_data:          platform-specific per-chip private data for the chip
152  *                      methods, to allow shared chip implementations
153  * @action:             the irq action chain
154  * @status:             status information
155  * @depth:              disable-depth, for nested irq_disable() calls
156  * @wake_depth:         enable depth, for multiple set_irq_wake() callers
157  * @irq_count:          stats field to detect stalled irqs
158  * @irqs_unhandled:     stats field for spurious unhandled interrupts
159  * @last_unhandled:     aging timer for unhandled count
160  * @lock:               locking for SMP
161  * @affinity:           IRQ affinity on SMP
162  * @cpu:                cpu index useful for balancing
163  * @pending_mask:       pending rebalanced interrupts
164  * @dir:                /proc/irq/ procfs entry
165  * @affinity_entry:     /proc/irq/smp_affinity procfs entry on SMP
166  * @name:               flow handler name for /proc/interrupts output
167  */
168 struct irq_desc {
169         unsigned int            irq;
170 #ifdef CONFIG_HAVE_SPARSE_IRQ
171         struct irq_desc         *next;
172         struct timer_rand_state *timer_rand_state;
173 #endif
174 #ifdef CONFIG_HAVE_DYN_ARRAY
175         unsigned int            *kstat_irqs;
176 #endif
177 #if defined(CONFIG_INTR_REMAP) && defined(CONFIG_HAVE_SPARSE_IRQ)
178        struct irq_2_iommu      *irq_2_iommu;
179 #endif
180         irq_flow_handler_t      handle_irq;
181         struct irq_chip         *chip;
182         struct msi_desc         *msi_desc;
183         void                    *handler_data;
184         void                    *chip_data;
185         struct irqaction        *action;        /* IRQ action list */
186         unsigned int            status;         /* IRQ status */
187
188         unsigned int            depth;          /* nested irq disables */
189         unsigned int            wake_depth;     /* nested wake enables */
190         unsigned int            irq_count;      /* For detecting broken IRQs */
191         unsigned int            irqs_unhandled;
192         unsigned long           last_unhandled; /* Aging timer for unhandled count */
193         spinlock_t              lock;
194 #ifdef CONFIG_SMP
195         cpumask_t               affinity;
196         unsigned int            cpu;
197 #endif
198 #ifdef CONFIG_GENERIC_PENDING_IRQ
199         cpumask_t               pending_mask;
200 #endif
201 #ifdef CONFIG_PROC_FS
202         struct proc_dir_entry   *dir;
203 #endif
204         const char              *name;
205 } ____cacheline_internodealigned_in_smp;
206
207 extern struct irq_desc *irq_to_desc(unsigned int irq);
208 extern struct irq_desc *irq_to_desc_alloc(unsigned int irq);
209
210 #ifndef CONFIG_HAVE_SPARSE_IRQ
211
212 #ifndef CONFIG_HAVE_DYN_ARRAY
213 /* could be removed if we get rid of all irq_desc reference */
214 extern struct irq_desc irq_desc[NR_IRQS];
215 #else
216 extern struct irq_desc *irq_desc;
217 #endif
218
219 #else
220
221 extern struct irq_desc *sparse_irqs;
222 #define for_each_irq_desc(irqX, desc)           \
223         for (desc = sparse_irqs, irqX = desc->irq; desc; desc = desc->next, irqX = desc ? desc->irq : -1U)
224
225 #endif
226
227 #ifdef CONFIG_HAVE_DYN_ARRAY
228 #define kstat_irqs_this_cpu(DESC) \
229         ((DESC)->kstat_irqs[smp_processor_id()])
230 #endif
231
232 /*
233  * Migration helpers for obsolete names, they will go away:
234  */
235 #define hw_interrupt_type       irq_chip
236 typedef struct irq_chip         hw_irq_controller;
237 #define no_irq_type             no_irq_chip
238 typedef struct irq_desc         irq_desc_t;
239
240 /*
241  * Pick up the arch-dependent methods:
242  */
243 #include <asm/hw_irq.h>
244
245 extern int setup_irq(unsigned int irq, struct irqaction *new);
246
247 #ifdef CONFIG_GENERIC_HARDIRQS
248
249 #ifdef CONFIG_SMP
250
251 #ifdef CONFIG_GENERIC_PENDING_IRQ
252
253 void set_pending_irq(unsigned int irq, cpumask_t mask);
254 void move_native_irq(int irq);
255 void move_masked_irq(int irq);
256
257 #else /* CONFIG_GENERIC_PENDING_IRQ */
258
259 static inline void move_irq(int irq)
260 {
261 }
262
263 static inline void move_native_irq(int irq)
264 {
265 }
266
267 static inline void move_masked_irq(int irq)
268 {
269 }
270
271 static inline void set_pending_irq(unsigned int irq, cpumask_t mask)
272 {
273 }
274
275 #endif /* CONFIG_GENERIC_PENDING_IRQ */
276
277 #else /* CONFIG_SMP */
278
279 #define move_native_irq(x)
280 #define move_masked_irq(x)
281
282 #endif /* CONFIG_SMP */
283
284 extern int no_irq_affinity;
285
286 static inline int irq_balancing_disabled(unsigned int irq)
287 {
288         struct irq_desc *desc;
289
290         desc = irq_to_desc(irq);
291         return desc->status & IRQ_NO_BALANCING_MASK;
292 }
293
294 /* Handle irq action chains: */
295 extern int handle_IRQ_event(unsigned int irq, struct irqaction *action);
296
297 /*
298  * Built-in IRQ handlers for various IRQ types,
299  * callable via desc->chip->handle_irq()
300  */
301 extern void handle_level_irq(unsigned int irq, struct irq_desc *desc);
302 extern void handle_fasteoi_irq(unsigned int irq, struct irq_desc *desc);
303 extern void handle_edge_irq(unsigned int irq, struct irq_desc *desc);
304 extern void handle_simple_irq(unsigned int irq, struct irq_desc *desc);
305 extern void handle_percpu_irq(unsigned int irq, struct irq_desc *desc);
306 extern void handle_bad_irq(unsigned int irq, struct irq_desc *desc);
307
308 /*
309  * Monolithic do_IRQ implementation.
310  */
311 #ifndef CONFIG_GENERIC_HARDIRQS_NO__DO_IRQ
312 extern unsigned int __do_IRQ(unsigned int irq);
313 #endif
314
315 /*
316  * Architectures call this to let the generic IRQ layer
317  * handle an interrupt. If the descriptor is attached to an
318  * irqchip-style controller then we call the ->handle_irq() handler,
319  * and it calls __do_IRQ() if it's attached to an irqtype-style controller.
320  */
321 static inline void generic_handle_irq_desc(unsigned int irq, struct irq_desc *desc)
322 {
323 #ifdef CONFIG_GENERIC_HARDIRQS_NO__DO_IRQ
324         desc->handle_irq(irq, desc);
325 #else
326         if (likely(desc->handle_irq))
327                 desc->handle_irq(irq, desc);
328         else
329                 __do_IRQ(irq);
330 #endif
331 }
332
333 static inline void generic_handle_irq(unsigned int irq)
334 {
335         generic_handle_irq_desc(irq, irq_to_desc(irq));
336 }
337
338 /* Handling of unhandled and spurious interrupts: */
339 extern void note_interrupt(unsigned int irq, struct irq_desc *desc,
340                            int action_ret);
341
342 /* Resending of interrupts :*/
343 void check_irq_resend(struct irq_desc *desc, unsigned int irq);
344
345 /* Enable/disable irq debugging output: */
346 extern int noirqdebug_setup(char *str);
347
348 /* Checks whether the interrupt can be requested by request_irq(): */
349 extern int can_request_irq(unsigned int irq, unsigned long irqflags);
350
351 /* Dummy irq-chip implementations: */
352 extern struct irq_chip no_irq_chip;
353 extern struct irq_chip dummy_irq_chip;
354
355 extern void
356 set_irq_chip_and_handler(unsigned int irq, struct irq_chip *chip,
357                          irq_flow_handler_t handle);
358 extern void
359 set_irq_chip_and_handler_name(unsigned int irq, struct irq_chip *chip,
360                               irq_flow_handler_t handle, const char *name);
361
362 extern void
363 __set_irq_handler(unsigned int irq, irq_flow_handler_t handle, int is_chained,
364                   const char *name);
365
366 /* caller has locked the irq_desc and both params are valid */
367 static inline void __set_irq_handler_unlocked(int irq,
368                                               irq_flow_handler_t handler)
369 {
370         struct irq_desc *desc;
371
372         desc = irq_to_desc(irq);
373         desc->handle_irq = handler;
374 }
375
376 /*
377  * Set a highlevel flow handler for a given IRQ:
378  */
379 static inline void
380 set_irq_handler(unsigned int irq, irq_flow_handler_t handle)
381 {
382         __set_irq_handler(irq, handle, 0, NULL);
383 }
384
385 /*
386  * Set a highlevel chained flow handler for a given IRQ.
387  * (a chained handler is automatically enabled and set to
388  *  IRQ_NOREQUEST and IRQ_NOPROBE)
389  */
390 static inline void
391 set_irq_chained_handler(unsigned int irq,
392                         irq_flow_handler_t handle)
393 {
394         __set_irq_handler(irq, handle, 1, NULL);
395 }
396
397 extern void set_irq_noprobe(unsigned int irq);
398 extern void set_irq_probe(unsigned int irq);
399
400 /* Handle dynamic irq creation and destruction */
401 extern unsigned int create_irq_nr(unsigned int irq_want);
402 extern int create_irq(void);
403 extern void destroy_irq(unsigned int irq);
404
405 /* Test to see if a driver has successfully requested an irq */
406 static inline int irq_has_action(unsigned int irq)
407 {
408         struct irq_desc *desc = irq_to_desc(irq);
409         return desc->action != NULL;
410 }
411
412 /* Dynamic irq helper functions */
413 extern void dynamic_irq_init(unsigned int irq);
414 extern void dynamic_irq_cleanup(unsigned int irq);
415
416 /* Set/get chip/data for an IRQ: */
417 extern int set_irq_chip(unsigned int irq, struct irq_chip *chip);
418 extern int set_irq_data(unsigned int irq, void *data);
419 extern int set_irq_chip_data(unsigned int irq, void *data);
420 extern int set_irq_type(unsigned int irq, unsigned int type);
421 extern int set_irq_msi(unsigned int irq, struct msi_desc *entry);
422
423 #define get_irq_chip(irq)       (irq_to_desc(irq)->chip)
424 #define get_irq_chip_data(irq)  (irq_to_desc(irq)->chip_data)
425 #define get_irq_data(irq)       (irq_to_desc(irq)->handler_data)
426 #define get_irq_msi(irq)        (irq_to_desc(irq)->msi_desc)
427
428 #endif /* CONFIG_GENERIC_HARDIRQS */
429
430 #endif /* !CONFIG_S390 */
431
432 #endif /* _LINUX_IRQ_H */