blob: 0d8eaf3e40361206bc0d5002b19e049d42416636 [file] [log] [blame]
Ingo Molnar06fcb0c2006-06-29 02:24:40 -07001#ifndef _LINUX_IRQ_H
2#define _LINUX_IRQ_H
Linus Torvalds1da177e2005-04-16 15:20:36 -07003
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
Adrian Bunk23f9b312005-12-21 02:27:50 +010012#include <linux/smp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070013
Ingo Molnar06fcb0c2006-06-29 02:24:40 -070014#ifndef CONFIG_S390
Linus Torvalds1da177e2005-04-16 15:20:36 -070015
16#include <linux/linkage.h>
17#include <linux/cache.h>
18#include <linux/spinlock.h>
19#include <linux/cpumask.h>
Jan Beulich908dcec2006-06-23 02:06:00 -070020#include <linux/irqreturn.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070021
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 */
Ingo Molnar0d7012a2006-06-29 02:24:43 -070036#ifdef CONFIG_IRQ_PER_CPU
Karsten Wiesef26fdd52005-09-06 15:17:25 -070037# 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
Linus Torvalds1da177e2005-04-16 15:20:36 -070042
Thomas Gleixner3418d722006-06-29 02:24:49 -070043#define IRQ_NOPROBE 512 /* IRQ is not valid for probing */
Thomas Gleixner6550c772006-06-29 02:24:49 -070044#define IRQ_NOREQUEST 1024 /* IRQ cannot be requested */
Thomas Gleixner94d39e12006-06-29 02:24:50 -070045#define IRQ_NOAUTOEN 2048 /* IRQ will not be enabled on request irq */
Thomas Gleixner6a6de9e2006-06-29 02:24:51 -070046#define IRQ_DELAYED_DISABLE \
47 4096 /* IRQ disable (masking) happens delayed. */
48
49/*
50 * IRQ types, see also include/linux/interrupt.h
51 */
52#define IRQ_TYPE_NONE 0x0000 /* Default, unspecified type */
53#define IRQ_TYPE_EDGE_RISING 0x0001 /* Edge rising type */
54#define IRQ_TYPE_EDGE_FALLING 0x0002 /* Edge falling type */
55#define IRQ_TYPE_EDGE_BOTH (IRQ_TYPE_EDGE_FALLING | IRQ_TYPE_EDGE_RISING)
56#define IRQ_TYPE_LEVEL_HIGH 0x0004 /* Level high type */
57#define IRQ_TYPE_LEVEL_LOW 0x0008 /* Level low type */
Benjamin Herrenschmidtf210be12006-06-29 02:25:00 -070058#define IRQ_TYPE_SENSE_MASK 0x000f /* Mask of the above */
Thomas Gleixner6a6de9e2006-06-29 02:24:51 -070059#define IRQ_TYPE_SIMPLE 0x0010 /* Simple type */
60#define IRQ_TYPE_PERCPU 0x0020 /* Per CPU type */
61#define IRQ_TYPE_PROBE 0x0040 /* Probing in progress */
62
63struct proc_dir_entry;
64
Ingo Molnar8fee5c32006-06-29 02:24:45 -070065/**
Thomas Gleixner6a6de9e2006-06-29 02:24:51 -070066 * struct irq_chip - hardware interrupt chip descriptor
Ingo Molnar8fee5c32006-06-29 02:24:45 -070067 *
68 * @name: name for /proc/interrupts
69 * @startup: start up the interrupt (defaults to ->enable if NULL)
70 * @shutdown: shut down the interrupt (defaults to ->disable if NULL)
71 * @enable: enable the interrupt (defaults to chip->unmask if NULL)
72 * @disable: disable the interrupt (defaults to chip->mask if NULL)
Ingo Molnar8fee5c32006-06-29 02:24:45 -070073 * @ack: start of a new interrupt
74 * @mask: mask an interrupt source
75 * @mask_ack: ack and mask an interrupt source
76 * @unmask: unmask an interrupt source
Ingo Molnar8fee5c32006-06-29 02:24:45 -070077 * @end: end of interrupt
78 * @set_affinity: set the CPU affinity on SMP machines
79 * @retrigger: resend an IRQ to the CPU
80 * @set_type: set the flow type (IRQ_TYPE_LEVEL/etc.) of an IRQ
81 * @set_wake: enable/disable power-management wake-on of an IRQ
82 *
83 * @release: release function solely used by UML
Thomas Gleixner6a6de9e2006-06-29 02:24:51 -070084 * @typename: obsoleted by name, kept as migration helper
Linus Torvalds1da177e2005-04-16 15:20:36 -070085 */
Thomas Gleixner6a6de9e2006-06-29 02:24:51 -070086struct irq_chip {
87 const char *name;
Ingo Molnar71d218b2006-06-29 02:24:41 -070088 unsigned int (*startup)(unsigned int irq);
89 void (*shutdown)(unsigned int irq);
90 void (*enable)(unsigned int irq);
91 void (*disable)(unsigned int irq);
Thomas Gleixner6a6de9e2006-06-29 02:24:51 -070092
Ingo Molnar71d218b2006-06-29 02:24:41 -070093 void (*ack)(unsigned int irq);
Thomas Gleixner6a6de9e2006-06-29 02:24:51 -070094 void (*mask)(unsigned int irq);
95 void (*mask_ack)(unsigned int irq);
96 void (*unmask)(unsigned int irq);
97
Ingo Molnar71d218b2006-06-29 02:24:41 -070098 void (*end)(unsigned int irq);
99 void (*set_affinity)(unsigned int irq, cpumask_t dest);
Ingo Molnarc0ad90a2006-06-29 02:24:44 -0700100 int (*retrigger)(unsigned int irq);
Thomas Gleixner6a6de9e2006-06-29 02:24:51 -0700101 int (*set_type)(unsigned int irq, unsigned int flow_type);
102 int (*set_wake)(unsigned int irq, unsigned int on);
Ingo Molnarc0ad90a2006-06-29 02:24:44 -0700103
Paolo 'Blaisorblade' Giarrussob77d6ad2005-06-21 17:16:24 -0700104 /* Currently used only by UML, might disappear one day.*/
105#ifdef CONFIG_IRQ_RELEASE_METHOD
Ingo Molnar71d218b2006-06-29 02:24:41 -0700106 void (*release)(unsigned int irq, void *dev_id);
Paolo 'Blaisorblade' Giarrussob77d6ad2005-06-21 17:16:24 -0700107#endif
Thomas Gleixner6a6de9e2006-06-29 02:24:51 -0700108 /*
109 * For compatibility, ->typename is copied into ->name.
110 * Will disappear.
111 */
112 const char *typename;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113};
114
Ingo Molnar8fee5c32006-06-29 02:24:45 -0700115/**
116 * struct irq_desc - interrupt descriptor
117 *
Thomas Gleixner6a6de9e2006-06-29 02:24:51 -0700118 * @handle_irq: highlevel irq-events handler [if NULL, __do_IRQ()]
119 * @chip: low level interrupt hardware access
120 * @handler_data: per-IRQ data for the irq_chip methods
121 * @chip_data: platform-specific per-chip private data for the chip
122 * methods, to allow shared chip implementations
Ingo Molnar8fee5c32006-06-29 02:24:45 -0700123 * @action: the irq action chain
124 * @status: status information
125 * @depth: disable-depth, for nested irq_disable() calls
126 * @irq_count: stats field to detect stalled irqs
127 * @irqs_unhandled: stats field for spurious unhandled interrupts
128 * @lock: locking for SMP
129 * @affinity: IRQ affinity on SMP
Thomas Gleixner6a6de9e2006-06-29 02:24:51 -0700130 * @cpu: cpu index useful for balancing
Ingo Molnar8fee5c32006-06-29 02:24:45 -0700131 * @pending_mask: pending rebalanced interrupts
132 * @move_irq: need to re-target IRQ destination
133 * @dir: /proc/irq/ procfs entry
134 * @affinity_entry: /proc/irq/smp_affinity procfs entry on SMP
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135 *
136 * Pad this out to 32 bytes for cache and indexing reasons.
137 */
Ingo Molnar34ffdb72006-06-29 02:24:40 -0700138struct irq_desc {
Thomas Gleixner6a6de9e2006-06-29 02:24:51 -0700139 void fastcall (*handle_irq)(unsigned int irq,
140 struct irq_desc *desc,
141 struct pt_regs *regs);
142 struct irq_chip *chip;
143 void *handler_data;
Ingo Molnar71d218b2006-06-29 02:24:41 -0700144 void *chip_data;
145 struct irqaction *action; /* IRQ action list */
146 unsigned int status; /* IRQ status */
Thomas Gleixner6a6de9e2006-06-29 02:24:51 -0700147
Ingo Molnar71d218b2006-06-29 02:24:41 -0700148 unsigned int depth; /* nested irq disables */
149 unsigned int irq_count; /* For detecting broken IRQs */
150 unsigned int irqs_unhandled;
151 spinlock_t lock;
Ingo Molnara53da522006-06-29 02:24:38 -0700152#ifdef CONFIG_SMP
Ingo Molnar71d218b2006-06-29 02:24:41 -0700153 cpumask_t affinity;
Thomas Gleixner6a6de9e2006-06-29 02:24:51 -0700154 unsigned int cpu;
Ingo Molnara53da522006-06-29 02:24:38 -0700155#endif
Ingo Molnar06fcb0c2006-06-29 02:24:40 -0700156#if defined(CONFIG_GENERIC_PENDING_IRQ) || defined(CONFIG_IRQBALANCE)
Ingo Molnarcd916d32006-06-29 02:24:42 -0700157 cpumask_t pending_mask;
Ingo Molnar71d218b2006-06-29 02:24:41 -0700158 unsigned int move_irq; /* need to re-target IRQ dest */
Ashok Raj54d5d422005-09-06 15:16:15 -0700159#endif
Ingo Molnar4a733ee2006-06-29 02:24:42 -0700160#ifdef CONFIG_PROC_FS
161 struct proc_dir_entry *dir;
162#endif
Ingo Molnar34ffdb72006-06-29 02:24:40 -0700163} ____cacheline_aligned;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164
Ingo Molnar34ffdb72006-06-29 02:24:40 -0700165extern struct irq_desc irq_desc[NR_IRQS];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166
Ingo Molnar34ffdb72006-06-29 02:24:40 -0700167/*
168 * Migration helpers for obsolete names, they will go away:
169 */
Thomas Gleixner6a6de9e2006-06-29 02:24:51 -0700170#define hw_interrupt_type irq_chip
171typedef struct irq_chip hw_irq_controller;
172#define no_irq_type no_irq_chip
Ingo Molnar34ffdb72006-06-29 02:24:40 -0700173typedef struct irq_desc irq_desc_t;
174
175/*
176 * Pick up the arch-dependent methods:
177 */
178#include <asm/hw_irq.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179
Ingo Molnar06fcb0c2006-06-29 02:24:40 -0700180extern int setup_irq(unsigned int irq, struct irqaction *new);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181
182#ifdef CONFIG_GENERIC_HARDIRQS
Ingo Molnar06fcb0c2006-06-29 02:24:40 -0700183
Ashok Raj54d5d422005-09-06 15:16:15 -0700184#ifdef CONFIG_SMP
185static inline void set_native_irq_info(int irq, cpumask_t mask)
186{
Ingo Molnara53da522006-06-29 02:24:38 -0700187 irq_desc[irq].affinity = mask;
Ashok Raj54d5d422005-09-06 15:16:15 -0700188}
189#else
190static inline void set_native_irq_info(int irq, cpumask_t mask)
191{
192}
193#endif
194
195#ifdef CONFIG_SMP
196
Ingo Molnar06fcb0c2006-06-29 02:24:40 -0700197#if defined(CONFIG_GENERIC_PENDING_IRQ) || defined(CONFIG_IRQBALANCE)
Ashok Raj54d5d422005-09-06 15:16:15 -0700198
Andrew Mortonc777ac52006-03-25 03:07:36 -0800199void set_pending_irq(unsigned int irq, cpumask_t mask);
200void move_native_irq(int irq);
Ashok Raj54d5d422005-09-06 15:16:15 -0700201
202#ifdef CONFIG_PCI_MSI
203/*
204 * Wonder why these are dummies?
205 * For e.g the set_ioapic_affinity_vector() calls the set_ioapic_affinity_irq()
206 * counter part after translating the vector to irq info. We need to perform
207 * this operation on the real irq, when we dont use vector, i.e when
208 * pci_use_vector() is false.
209 */
210static inline void move_irq(int irq)
211{
212}
213
214static inline void set_irq_info(int irq, cpumask_t mask)
215{
216}
217
Ingo Molnar06fcb0c2006-06-29 02:24:40 -0700218#else /* CONFIG_PCI_MSI */
Ashok Raj54d5d422005-09-06 15:16:15 -0700219
220static inline void move_irq(int irq)
221{
222 move_native_irq(irq);
223}
224
225static inline void set_irq_info(int irq, cpumask_t mask)
226{
227 set_native_irq_info(irq, mask);
228}
Ashok Raj54d5d422005-09-06 15:16:15 -0700229
Ingo Molnar06fcb0c2006-06-29 02:24:40 -0700230#endif /* CONFIG_PCI_MSI */
Ashok Raj54d5d422005-09-06 15:16:15 -0700231
Ingo Molnar06fcb0c2006-06-29 02:24:40 -0700232#else /* CONFIG_GENERIC_PENDING_IRQ || CONFIG_IRQBALANCE */
233
234static inline void move_irq(int irq)
235{
236}
237
238static inline void move_native_irq(int irq)
239{
240}
241
242static inline void set_pending_irq(unsigned int irq, cpumask_t mask)
243{
244}
245
Ashok Raj54d5d422005-09-06 15:16:15 -0700246static inline void set_irq_info(int irq, cpumask_t mask)
247{
248 set_native_irq_info(irq, mask);
249}
250
Ingo Molnar06fcb0c2006-06-29 02:24:40 -0700251#endif /* CONFIG_GENERIC_PENDING_IRQ */
Ashok Raj54d5d422005-09-06 15:16:15 -0700252
Ingo Molnar06fcb0c2006-06-29 02:24:40 -0700253#else /* CONFIG_SMP */
Ashok Raj54d5d422005-09-06 15:16:15 -0700254
255#define move_irq(x)
256#define move_native_irq(x)
257
Ingo Molnar06fcb0c2006-06-29 02:24:40 -0700258#endif /* CONFIG_SMP */
Ashok Raj54d5d422005-09-06 15:16:15 -0700259
Zhang Yanmin1b61b912006-06-23 02:04:22 -0700260#ifdef CONFIG_IRQBALANCE
261extern void set_balance_irq_affinity(unsigned int irq, cpumask_t mask);
262#else
263static inline void set_balance_irq_affinity(unsigned int irq, cpumask_t mask)
264{
265}
266#endif
267
Ingo Molnar71d218b2006-06-29 02:24:41 -0700268#ifdef CONFIG_AUTO_IRQ_AFFINITY
269extern int select_smp_affinity(unsigned int irq);
270#else
271static inline int select_smp_affinity(unsigned int irq)
272{
273 return 1;
274}
275#endif
276
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277extern int no_irq_affinity;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278
Thomas Gleixner6a6de9e2006-06-29 02:24:51 -0700279/* Handle irq action chains: */
280extern int handle_IRQ_event(unsigned int irq, struct pt_regs *regs,
281 struct irqaction *action);
282
Ingo Molnar2e60bbb2006-06-29 02:24:39 -0700283/*
Thomas Gleixner6a6de9e2006-06-29 02:24:51 -0700284 * Built-in IRQ handlers for various IRQ types,
285 * callable via desc->chip->handle_irq()
286 */
287extern void fastcall
288handle_level_irq(unsigned int irq, struct irq_desc *desc, struct pt_regs *regs);
289extern void fastcall
290handle_fastack_irq(unsigned int irq, struct irq_desc *desc,
291 struct pt_regs *regs);
292extern void fastcall
293handle_edge_irq(unsigned int irq, struct irq_desc *desc, struct pt_regs *regs);
294extern void fastcall
295handle_simple_irq(unsigned int irq, struct irq_desc *desc,
296 struct pt_regs *regs);
297extern void fastcall
298handle_percpu_irq(unsigned int irq, struct irq_desc *desc,
299 struct pt_regs *regs);
300extern void fastcall
301handle_bad_irq(unsigned int irq, struct irq_desc *desc, struct pt_regs *regs);
302
303/*
304 * Get a descriptive string for the highlevel handler, for
305 * /proc/interrupts output:
306 */
307extern const char *
308handle_irq_name(void fastcall (*handle)(unsigned int, struct irq_desc *,
309 struct pt_regs *));
310
311/*
312 * Monolithic do_IRQ implementation.
313 * (is an explicit fastcall, because i386 4KSTACKS calls it from assembly)
Ingo Molnar2e60bbb2006-06-29 02:24:39 -0700314 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315extern fastcall unsigned int __do_IRQ(unsigned int irq, struct pt_regs *regs);
Ingo Molnar2e60bbb2006-06-29 02:24:39 -0700316
Ingo Molnardae86202006-06-29 02:24:52 -0700317/*
318 * Architectures call this to let the generic IRQ layer
319 * handle an interrupt. If the descriptor is attached to an
320 * irqchip-style controller then we call the ->handle_irq() handler,
321 * and it calls __do_IRQ() if it's attached to an irqtype-style controller.
322 */
323static inline void generic_handle_irq(unsigned int irq, struct pt_regs *regs)
324{
325 struct irq_desc *desc = irq_desc + irq;
326
327 if (likely(desc->handle_irq))
328 desc->handle_irq(irq, desc, regs);
329 else
330 __do_IRQ(irq, regs);
331}
332
Thomas Gleixner6a6de9e2006-06-29 02:24:51 -0700333/* Handling of unhandled and spurious interrupts: */
Ingo Molnar34ffdb72006-06-29 02:24:40 -0700334extern void note_interrupt(unsigned int irq, struct irq_desc *desc,
Ingo Molnar2e60bbb2006-06-29 02:24:39 -0700335 int action_ret, struct pt_regs *regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336
Thomas Gleixnera4633ad2006-06-29 02:24:48 -0700337/* Resending of interrupts :*/
338void check_irq_resend(struct irq_desc *desc, unsigned int irq);
339
Thomas Gleixner6a6de9e2006-06-29 02:24:51 -0700340/* Initialize /proc/irq/ */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341extern void init_irq_proc(void);
Ivan Kokshayskyeee45262006-01-06 00:12:21 -0800342
Thomas Gleixner6a6de9e2006-06-29 02:24:51 -0700343/* Enable/disable irq debugging output: */
344extern int noirqdebug_setup(char *str);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345
Thomas Gleixner6a6de9e2006-06-29 02:24:51 -0700346/* Checks whether the interrupt can be requested by request_irq(): */
347extern int can_request_irq(unsigned int irq, unsigned long irqflags);
348
349/* Dummy irq-chip implementation: */
350extern struct irq_chip no_irq_chip;
351
352extern void
353set_irq_chip_and_handler(unsigned int irq, struct irq_chip *chip,
354 void fastcall (*handle)(unsigned int,
355 struct irq_desc *,
356 struct pt_regs *));
357extern void
358__set_irq_handler(unsigned int irq,
359 void fastcall (*handle)(unsigned int, struct irq_desc *,
360 struct pt_regs *),
361 int is_chained);
362
363/*
364 * Set a highlevel flow handler for a given IRQ:
365 */
366static inline void
367set_irq_handler(unsigned int irq,
368 void fastcall (*handle)(unsigned int, struct irq_desc *,
369 struct pt_regs *))
370{
371 __set_irq_handler(irq, handle, 0);
372}
373
374/*
375 * Set a highlevel chained flow handler for a given IRQ.
376 * (a chained handler is automatically enabled and set to
377 * IRQ_NOREQUEST and IRQ_NOPROBE)
378 */
379static inline void
380set_irq_chained_handler(unsigned int irq,
381 void fastcall (*handle)(unsigned int, struct irq_desc *,
382 struct pt_regs *))
383{
384 __set_irq_handler(irq, handle, 1);
385}
386
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700387/* Set/get chip/data for an IRQ: */
388
389extern int set_irq_chip(unsigned int irq, struct irq_chip *chip);
390extern int set_irq_data(unsigned int irq, void *data);
391extern int set_irq_chip_data(unsigned int irq, void *data);
392extern int set_irq_type(unsigned int irq, unsigned int type);
393
394#define get_irq_chip(irq) (irq_desc[irq].chip)
395#define get_irq_chip_data(irq) (irq_desc[irq].chip_data)
396#define get_irq_data(irq) (irq_desc[irq].handler_data)
397
Thomas Gleixner6a6de9e2006-06-29 02:24:51 -0700398#endif /* CONFIG_GENERIC_HARDIRQS */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399
Ingo Molnar06fcb0c2006-06-29 02:24:40 -0700400#endif /* !CONFIG_S390 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401
Ingo Molnar06fcb0c2006-06-29 02:24:40 -0700402#endif /* _LINUX_IRQ_H */