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