blob: 437f2c635db62dbebf10acee93405f21ba6010c5 [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 */
58#define IRQ_TYPE_SIMPLE 0x0010 /* Simple type */
59#define IRQ_TYPE_PERCPU 0x0020 /* Per CPU type */
60#define IRQ_TYPE_PROBE 0x0040 /* Probing in progress */
61
62struct proc_dir_entry;
63
Ingo Molnar8fee5c32006-06-29 02:24:45 -070064/**
Thomas Gleixner6a6de9e2006-06-29 02:24:51 -070065 * struct irq_chip - hardware interrupt chip descriptor
Ingo Molnar8fee5c32006-06-29 02:24:45 -070066 *
67 * @name: name for /proc/interrupts
68 * @startup: start up the interrupt (defaults to ->enable if NULL)
69 * @shutdown: shut down the interrupt (defaults to ->disable if NULL)
70 * @enable: enable the interrupt (defaults to chip->unmask if NULL)
71 * @disable: disable the interrupt (defaults to chip->mask if NULL)
Ingo Molnar8fee5c32006-06-29 02:24:45 -070072 * @ack: start of a new interrupt
73 * @mask: mask an interrupt source
74 * @mask_ack: ack and mask an interrupt source
75 * @unmask: unmask an interrupt source
Ingo Molnar8fee5c32006-06-29 02:24:45 -070076 * @end: end of interrupt
77 * @set_affinity: set the CPU affinity on SMP machines
78 * @retrigger: resend an IRQ to the CPU
79 * @set_type: set the flow type (IRQ_TYPE_LEVEL/etc.) of an IRQ
80 * @set_wake: enable/disable power-management wake-on of an IRQ
81 *
82 * @release: release function solely used by UML
Thomas Gleixner6a6de9e2006-06-29 02:24:51 -070083 * @typename: obsoleted by name, kept as migration helper
Linus Torvalds1da177e2005-04-16 15:20:36 -070084 */
Thomas Gleixner6a6de9e2006-06-29 02:24:51 -070085struct irq_chip {
86 const char *name;
Ingo Molnar71d218b2006-06-29 02:24:41 -070087 unsigned int (*startup)(unsigned int irq);
88 void (*shutdown)(unsigned int irq);
89 void (*enable)(unsigned int irq);
90 void (*disable)(unsigned int irq);
Thomas Gleixner6a6de9e2006-06-29 02:24:51 -070091
Ingo Molnar71d218b2006-06-29 02:24:41 -070092 void (*ack)(unsigned int irq);
Thomas Gleixner6a6de9e2006-06-29 02:24:51 -070093 void (*mask)(unsigned int irq);
94 void (*mask_ack)(unsigned int irq);
95 void (*unmask)(unsigned int irq);
96
Ingo Molnar71d218b2006-06-29 02:24:41 -070097 void (*end)(unsigned int irq);
98 void (*set_affinity)(unsigned int irq, cpumask_t dest);
Ingo Molnarc0ad90a2006-06-29 02:24:44 -070099 int (*retrigger)(unsigned int irq);
Thomas Gleixner6a6de9e2006-06-29 02:24:51 -0700100 int (*set_type)(unsigned int irq, unsigned int flow_type);
101 int (*set_wake)(unsigned int irq, unsigned int on);
Ingo Molnarc0ad90a2006-06-29 02:24:44 -0700102
Paolo 'Blaisorblade' Giarrussob77d6ad2005-06-21 17:16:24 -0700103 /* Currently used only by UML, might disappear one day.*/
104#ifdef CONFIG_IRQ_RELEASE_METHOD
Ingo Molnar71d218b2006-06-29 02:24:41 -0700105 void (*release)(unsigned int irq, void *dev_id);
Paolo 'Blaisorblade' Giarrussob77d6ad2005-06-21 17:16:24 -0700106#endif
Thomas Gleixner6a6de9e2006-06-29 02:24:51 -0700107 /*
108 * For compatibility, ->typename is copied into ->name.
109 * Will disappear.
110 */
111 const char *typename;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112};
113
Ingo Molnar8fee5c32006-06-29 02:24:45 -0700114/**
115 * struct irq_desc - interrupt descriptor
116 *
Thomas Gleixner6a6de9e2006-06-29 02:24:51 -0700117 * @handle_irq: highlevel irq-events handler [if NULL, __do_IRQ()]
118 * @chip: low level interrupt hardware access
119 * @handler_data: per-IRQ data for the irq_chip methods
120 * @chip_data: platform-specific per-chip private data for the chip
121 * methods, to allow shared chip implementations
Ingo Molnar8fee5c32006-06-29 02:24:45 -0700122 * @action: the irq action chain
123 * @status: status information
124 * @depth: disable-depth, for nested irq_disable() calls
125 * @irq_count: stats field to detect stalled irqs
126 * @irqs_unhandled: stats field for spurious unhandled interrupts
127 * @lock: locking for SMP
128 * @affinity: IRQ affinity on SMP
Thomas Gleixner6a6de9e2006-06-29 02:24:51 -0700129 * @cpu: cpu index useful for balancing
Ingo Molnar8fee5c32006-06-29 02:24:45 -0700130 * @pending_mask: pending rebalanced interrupts
131 * @move_irq: need to re-target IRQ destination
132 * @dir: /proc/irq/ procfs entry
133 * @affinity_entry: /proc/irq/smp_affinity procfs entry on SMP
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134 *
135 * Pad this out to 32 bytes for cache and indexing reasons.
136 */
Ingo Molnar34ffdb72006-06-29 02:24:40 -0700137struct irq_desc {
Thomas Gleixner6a6de9e2006-06-29 02:24:51 -0700138 void fastcall (*handle_irq)(unsigned int irq,
139 struct irq_desc *desc,
140 struct pt_regs *regs);
141 struct irq_chip *chip;
142 void *handler_data;
Ingo Molnar71d218b2006-06-29 02:24:41 -0700143 void *chip_data;
144 struct irqaction *action; /* IRQ action list */
145 unsigned int status; /* IRQ status */
Thomas Gleixner6a6de9e2006-06-29 02:24:51 -0700146
Ingo Molnar71d218b2006-06-29 02:24:41 -0700147 unsigned int depth; /* nested irq disables */
148 unsigned int irq_count; /* For detecting broken IRQs */
149 unsigned int irqs_unhandled;
150 spinlock_t lock;
Ingo Molnara53da522006-06-29 02:24:38 -0700151#ifdef CONFIG_SMP
Ingo Molnar71d218b2006-06-29 02:24:41 -0700152 cpumask_t affinity;
Thomas Gleixner6a6de9e2006-06-29 02:24:51 -0700153 unsigned int cpu;
Ingo Molnara53da522006-06-29 02:24:38 -0700154#endif
Ingo Molnar06fcb0c2006-06-29 02:24:40 -0700155#if defined(CONFIG_GENERIC_PENDING_IRQ) || defined(CONFIG_IRQBALANCE)
Ingo Molnarcd916d32006-06-29 02:24:42 -0700156 cpumask_t pending_mask;
Ingo Molnar71d218b2006-06-29 02:24:41 -0700157 unsigned int move_irq; /* need to re-target IRQ dest */
Ashok Raj54d5d422005-09-06 15:16:15 -0700158#endif
Ingo Molnar4a733ee2006-06-29 02:24:42 -0700159#ifdef CONFIG_PROC_FS
160 struct proc_dir_entry *dir;
161#endif
Ingo Molnar34ffdb72006-06-29 02:24:40 -0700162} ____cacheline_aligned;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163
Ingo Molnar34ffdb72006-06-29 02:24:40 -0700164extern struct irq_desc irq_desc[NR_IRQS];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165
Ingo Molnar34ffdb72006-06-29 02:24:40 -0700166/*
167 * Migration helpers for obsolete names, they will go away:
168 */
Thomas Gleixner6a6de9e2006-06-29 02:24:51 -0700169#define hw_interrupt_type irq_chip
170typedef struct irq_chip hw_irq_controller;
171#define no_irq_type no_irq_chip
Ingo Molnar34ffdb72006-06-29 02:24:40 -0700172typedef struct irq_desc irq_desc_t;
173
174/*
175 * Pick up the arch-dependent methods:
176 */
177#include <asm/hw_irq.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178
Thomas Gleixner6a6de9e2006-06-29 02:24:51 -0700179/*
180 * Architectures call this to let the generic IRQ layer
181 * handle an interrupt:
182 */
183static inline void generic_handle_irq(unsigned int irq, struct pt_regs *regs)
184{
185 struct irq_desc *desc = irq_desc + irq;
186
187 desc->handle_irq(irq, desc, regs);
188}
189
Ingo Molnar06fcb0c2006-06-29 02:24:40 -0700190extern int setup_irq(unsigned int irq, struct irqaction *new);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191
192#ifdef CONFIG_GENERIC_HARDIRQS
Ingo Molnar06fcb0c2006-06-29 02:24:40 -0700193
Ashok Raj54d5d422005-09-06 15:16:15 -0700194#ifdef CONFIG_SMP
195static inline void set_native_irq_info(int irq, cpumask_t mask)
196{
Ingo Molnara53da522006-06-29 02:24:38 -0700197 irq_desc[irq].affinity = mask;
Ashok Raj54d5d422005-09-06 15:16:15 -0700198}
199#else
200static inline void set_native_irq_info(int irq, cpumask_t mask)
201{
202}
203#endif
204
205#ifdef CONFIG_SMP
206
Ingo Molnar06fcb0c2006-06-29 02:24:40 -0700207#if defined(CONFIG_GENERIC_PENDING_IRQ) || defined(CONFIG_IRQBALANCE)
Ashok Raj54d5d422005-09-06 15:16:15 -0700208
Andrew Mortonc777ac52006-03-25 03:07:36 -0800209void set_pending_irq(unsigned int irq, cpumask_t mask);
210void move_native_irq(int irq);
Ashok Raj54d5d422005-09-06 15:16:15 -0700211
212#ifdef CONFIG_PCI_MSI
213/*
214 * Wonder why these are dummies?
215 * For e.g the set_ioapic_affinity_vector() calls the set_ioapic_affinity_irq()
216 * counter part after translating the vector to irq info. We need to perform
217 * this operation on the real irq, when we dont use vector, i.e when
218 * pci_use_vector() is false.
219 */
220static inline void move_irq(int irq)
221{
222}
223
224static inline void set_irq_info(int irq, cpumask_t mask)
225{
226}
227
Ingo Molnar06fcb0c2006-06-29 02:24:40 -0700228#else /* CONFIG_PCI_MSI */
Ashok Raj54d5d422005-09-06 15:16:15 -0700229
230static inline void move_irq(int irq)
231{
232 move_native_irq(irq);
233}
234
235static inline void set_irq_info(int irq, cpumask_t mask)
236{
237 set_native_irq_info(irq, mask);
238}
Ashok Raj54d5d422005-09-06 15:16:15 -0700239
Ingo Molnar06fcb0c2006-06-29 02:24:40 -0700240#endif /* CONFIG_PCI_MSI */
Ashok Raj54d5d422005-09-06 15:16:15 -0700241
Ingo Molnar06fcb0c2006-06-29 02:24:40 -0700242#else /* CONFIG_GENERIC_PENDING_IRQ || CONFIG_IRQBALANCE */
243
244static inline void move_irq(int irq)
245{
246}
247
248static inline void move_native_irq(int irq)
249{
250}
251
252static inline void set_pending_irq(unsigned int irq, cpumask_t mask)
253{
254}
255
Ashok Raj54d5d422005-09-06 15:16:15 -0700256static inline void set_irq_info(int irq, cpumask_t mask)
257{
258 set_native_irq_info(irq, mask);
259}
260
Ingo Molnar06fcb0c2006-06-29 02:24:40 -0700261#endif /* CONFIG_GENERIC_PENDING_IRQ */
Ashok Raj54d5d422005-09-06 15:16:15 -0700262
Ingo Molnar06fcb0c2006-06-29 02:24:40 -0700263#else /* CONFIG_SMP */
Ashok Raj54d5d422005-09-06 15:16:15 -0700264
265#define move_irq(x)
266#define move_native_irq(x)
267
Ingo Molnar06fcb0c2006-06-29 02:24:40 -0700268#endif /* CONFIG_SMP */
Ashok Raj54d5d422005-09-06 15:16:15 -0700269
Zhang Yanmin1b61b912006-06-23 02:04:22 -0700270#ifdef CONFIG_IRQBALANCE
271extern void set_balance_irq_affinity(unsigned int irq, cpumask_t mask);
272#else
273static inline void set_balance_irq_affinity(unsigned int irq, cpumask_t mask)
274{
275}
276#endif
277
Ingo Molnar71d218b2006-06-29 02:24:41 -0700278#ifdef CONFIG_AUTO_IRQ_AFFINITY
279extern int select_smp_affinity(unsigned int irq);
280#else
281static inline int select_smp_affinity(unsigned int irq)
282{
283 return 1;
284}
285#endif
286
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287extern int no_irq_affinity;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288
Thomas Gleixner6a6de9e2006-06-29 02:24:51 -0700289/* Handle irq action chains: */
290extern int handle_IRQ_event(unsigned int irq, struct pt_regs *regs,
291 struct irqaction *action);
292
Ingo Molnar2e60bbb2006-06-29 02:24:39 -0700293/*
Thomas Gleixner6a6de9e2006-06-29 02:24:51 -0700294 * Built-in IRQ handlers for various IRQ types,
295 * callable via desc->chip->handle_irq()
296 */
297extern void fastcall
298handle_level_irq(unsigned int irq, struct irq_desc *desc, struct pt_regs *regs);
299extern void fastcall
300handle_fastack_irq(unsigned int irq, struct irq_desc *desc,
301 struct pt_regs *regs);
302extern void fastcall
303handle_edge_irq(unsigned int irq, struct irq_desc *desc, struct pt_regs *regs);
304extern void fastcall
305handle_simple_irq(unsigned int irq, struct irq_desc *desc,
306 struct pt_regs *regs);
307extern void fastcall
308handle_percpu_irq(unsigned int irq, struct irq_desc *desc,
309 struct pt_regs *regs);
310extern void fastcall
311handle_bad_irq(unsigned int irq, struct irq_desc *desc, struct pt_regs *regs);
312
313/*
314 * Get a descriptive string for the highlevel handler, for
315 * /proc/interrupts output:
316 */
317extern const char *
318handle_irq_name(void fastcall (*handle)(unsigned int, struct irq_desc *,
319 struct pt_regs *));
320
321/*
322 * Monolithic do_IRQ implementation.
323 * (is an explicit fastcall, because i386 4KSTACKS calls it from assembly)
Ingo Molnar2e60bbb2006-06-29 02:24:39 -0700324 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325extern fastcall unsigned int __do_IRQ(unsigned int irq, struct pt_regs *regs);
Ingo Molnar2e60bbb2006-06-29 02:24:39 -0700326
Thomas Gleixner6a6de9e2006-06-29 02:24:51 -0700327/* Handling of unhandled and spurious interrupts: */
Ingo Molnar34ffdb72006-06-29 02:24:40 -0700328extern void note_interrupt(unsigned int irq, struct irq_desc *desc,
Ingo Molnar2e60bbb2006-06-29 02:24:39 -0700329 int action_ret, struct pt_regs *regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330
Thomas Gleixnera4633adc2006-06-29 02:24:48 -0700331/* Resending of interrupts :*/
332void check_irq_resend(struct irq_desc *desc, unsigned int irq);
333
Thomas Gleixner6a6de9e2006-06-29 02:24:51 -0700334/* Initialize /proc/irq/ */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335extern void init_irq_proc(void);
Ivan Kokshayskyeee45262006-01-06 00:12:21 -0800336
Thomas Gleixner6a6de9e2006-06-29 02:24:51 -0700337/* Enable/disable irq debugging output: */
338extern int noirqdebug_setup(char *str);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339
Thomas Gleixner6a6de9e2006-06-29 02:24:51 -0700340/* Checks whether the interrupt can be requested by request_irq(): */
341extern int can_request_irq(unsigned int irq, unsigned long irqflags);
342
343/* Dummy irq-chip implementation: */
344extern struct irq_chip no_irq_chip;
345
346extern void
347set_irq_chip_and_handler(unsigned int irq, struct irq_chip *chip,
348 void fastcall (*handle)(unsigned int,
349 struct irq_desc *,
350 struct pt_regs *));
351extern void
352__set_irq_handler(unsigned int irq,
353 void fastcall (*handle)(unsigned int, struct irq_desc *,
354 struct pt_regs *),
355 int is_chained);
356
357/*
358 * Set a highlevel flow handler for a given IRQ:
359 */
360static inline void
361set_irq_handler(unsigned int irq,
362 void fastcall (*handle)(unsigned int, struct irq_desc *,
363 struct pt_regs *))
364{
365 __set_irq_handler(irq, handle, 0);
366}
367
368/*
369 * Set a highlevel chained flow handler for a given IRQ.
370 * (a chained handler is automatically enabled and set to
371 * IRQ_NOREQUEST and IRQ_NOPROBE)
372 */
373static inline void
374set_irq_chained_handler(unsigned int irq,
375 void fastcall (*handle)(unsigned int, struct irq_desc *,
376 struct pt_regs *))
377{
378 __set_irq_handler(irq, handle, 1);
379}
380
381#endif /* CONFIG_GENERIC_HARDIRQS */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382
Ingo Molnar06fcb0c2006-06-29 02:24:40 -0700383#endif /* !CONFIG_S390 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384
Ingo Molnar06fcb0c2006-06-29 02:24:40 -0700385#endif /* _LINUX_IRQ_H */