blob: 0832149cdb180df6e8ba75e1f7a951c438b03546 [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 Molnar47c2a3a2006-06-29 02:25:03 -070077 * @eoi: end of interrupt - chip level
78 * @end: end of interrupt - flow level
Ingo Molnar8fee5c32006-06-29 02:24:45 -070079 * @set_affinity: set the CPU affinity on SMP machines
80 * @retrigger: resend an IRQ to the CPU
81 * @set_type: set the flow type (IRQ_TYPE_LEVEL/etc.) of an IRQ
82 * @set_wake: enable/disable power-management wake-on of an IRQ
83 *
84 * @release: release function solely used by UML
Thomas Gleixner6a6de9e2006-06-29 02:24:51 -070085 * @typename: obsoleted by name, kept as migration helper
Linus Torvalds1da177e2005-04-16 15:20:36 -070086 */
Thomas Gleixner6a6de9e2006-06-29 02:24:51 -070087struct irq_chip {
88 const char *name;
Ingo Molnar71d218b2006-06-29 02:24:41 -070089 unsigned int (*startup)(unsigned int irq);
90 void (*shutdown)(unsigned int irq);
91 void (*enable)(unsigned int irq);
92 void (*disable)(unsigned int irq);
Thomas Gleixner6a6de9e2006-06-29 02:24:51 -070093
Ingo Molnar71d218b2006-06-29 02:24:41 -070094 void (*ack)(unsigned int irq);
Thomas Gleixner6a6de9e2006-06-29 02:24:51 -070095 void (*mask)(unsigned int irq);
96 void (*mask_ack)(unsigned int irq);
97 void (*unmask)(unsigned int irq);
Ingo Molnar47c2a3a2006-06-29 02:25:03 -070098 void (*eoi)(unsigned int irq);
Thomas Gleixner6a6de9e2006-06-29 02:24:51 -070099
Ingo Molnar71d218b2006-06-29 02:24:41 -0700100 void (*end)(unsigned int irq);
101 void (*set_affinity)(unsigned int irq, cpumask_t dest);
Ingo Molnarc0ad90a2006-06-29 02:24:44 -0700102 int (*retrigger)(unsigned int irq);
Thomas Gleixner6a6de9e2006-06-29 02:24:51 -0700103 int (*set_type)(unsigned int irq, unsigned int flow_type);
104 int (*set_wake)(unsigned int irq, unsigned int on);
Ingo Molnarc0ad90a2006-06-29 02:24:44 -0700105
Paolo 'Blaisorblade' Giarrussob77d6ad2005-06-21 17:16:24 -0700106 /* Currently used only by UML, might disappear one day.*/
107#ifdef CONFIG_IRQ_RELEASE_METHOD
Ingo Molnar71d218b2006-06-29 02:24:41 -0700108 void (*release)(unsigned int irq, void *dev_id);
Paolo 'Blaisorblade' Giarrussob77d6ad2005-06-21 17:16:24 -0700109#endif
Thomas Gleixner6a6de9e2006-06-29 02:24:51 -0700110 /*
111 * For compatibility, ->typename is copied into ->name.
112 * Will disappear.
113 */
114 const char *typename;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115};
116
Ingo Molnar8fee5c32006-06-29 02:24:45 -0700117/**
118 * struct irq_desc - interrupt descriptor
119 *
Thomas Gleixner6a6de9e2006-06-29 02:24:51 -0700120 * @handle_irq: highlevel irq-events handler [if NULL, __do_IRQ()]
121 * @chip: low level interrupt hardware access
122 * @handler_data: per-IRQ data for the irq_chip methods
123 * @chip_data: platform-specific per-chip private data for the chip
124 * methods, to allow shared chip implementations
Ingo Molnar8fee5c32006-06-29 02:24:45 -0700125 * @action: the irq action chain
126 * @status: status information
127 * @depth: disable-depth, for nested irq_disable() calls
128 * @irq_count: stats field to detect stalled irqs
129 * @irqs_unhandled: stats field for spurious unhandled interrupts
130 * @lock: locking for SMP
131 * @affinity: IRQ affinity on SMP
Thomas Gleixner6a6de9e2006-06-29 02:24:51 -0700132 * @cpu: cpu index useful for balancing
Ingo Molnar8fee5c32006-06-29 02:24:45 -0700133 * @pending_mask: pending rebalanced interrupts
134 * @move_irq: need to re-target IRQ destination
135 * @dir: /proc/irq/ procfs entry
136 * @affinity_entry: /proc/irq/smp_affinity procfs entry on SMP
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137 *
138 * Pad this out to 32 bytes for cache and indexing reasons.
139 */
Ingo Molnar34ffdb72006-06-29 02:24:40 -0700140struct irq_desc {
Thomas Gleixner6a6de9e2006-06-29 02:24:51 -0700141 void fastcall (*handle_irq)(unsigned int irq,
142 struct irq_desc *desc,
143 struct pt_regs *regs);
144 struct irq_chip *chip;
145 void *handler_data;
Ingo Molnar71d218b2006-06-29 02:24:41 -0700146 void *chip_data;
147 struct irqaction *action; /* IRQ action list */
148 unsigned int status; /* IRQ status */
Thomas Gleixner6a6de9e2006-06-29 02:24:51 -0700149
Ingo Molnar71d218b2006-06-29 02:24:41 -0700150 unsigned int depth; /* nested irq disables */
151 unsigned int irq_count; /* For detecting broken IRQs */
152 unsigned int irqs_unhandled;
153 spinlock_t lock;
Ingo Molnara53da522006-06-29 02:24:38 -0700154#ifdef CONFIG_SMP
Ingo Molnar71d218b2006-06-29 02:24:41 -0700155 cpumask_t affinity;
Thomas Gleixner6a6de9e2006-06-29 02:24:51 -0700156 unsigned int cpu;
Ingo Molnara53da522006-06-29 02:24:38 -0700157#endif
Ingo Molnar06fcb0c2006-06-29 02:24:40 -0700158#if defined(CONFIG_GENERIC_PENDING_IRQ) || defined(CONFIG_IRQBALANCE)
Ingo Molnarcd916d32006-06-29 02:24:42 -0700159 cpumask_t pending_mask;
Ingo Molnar71d218b2006-06-29 02:24:41 -0700160 unsigned int move_irq; /* need to re-target IRQ dest */
Ashok Raj54d5d422005-09-06 15:16:15 -0700161#endif
Ingo Molnar4a733ee2006-06-29 02:24:42 -0700162#ifdef CONFIG_PROC_FS
163 struct proc_dir_entry *dir;
164#endif
Ingo Molnar34ffdb72006-06-29 02:24:40 -0700165} ____cacheline_aligned;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166
Ingo Molnar34ffdb72006-06-29 02:24:40 -0700167extern struct irq_desc irq_desc[NR_IRQS];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168
Ingo Molnar34ffdb72006-06-29 02:24:40 -0700169/*
170 * Migration helpers for obsolete names, they will go away:
171 */
Thomas Gleixner6a6de9e2006-06-29 02:24:51 -0700172#define hw_interrupt_type irq_chip
173typedef struct irq_chip hw_irq_controller;
174#define no_irq_type no_irq_chip
Ingo Molnar34ffdb72006-06-29 02:24:40 -0700175typedef struct irq_desc irq_desc_t;
176
177/*
178 * Pick up the arch-dependent methods:
179 */
180#include <asm/hw_irq.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181
Ingo Molnar06fcb0c2006-06-29 02:24:40 -0700182extern int setup_irq(unsigned int irq, struct irqaction *new);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183
184#ifdef CONFIG_GENERIC_HARDIRQS
Ingo Molnar06fcb0c2006-06-29 02:24:40 -0700185
Ashok Raj54d5d422005-09-06 15:16:15 -0700186#ifdef CONFIG_SMP
187static inline void set_native_irq_info(int irq, cpumask_t mask)
188{
Ingo Molnara53da522006-06-29 02:24:38 -0700189 irq_desc[irq].affinity = mask;
Ashok Raj54d5d422005-09-06 15:16:15 -0700190}
191#else
192static inline void set_native_irq_info(int irq, cpumask_t mask)
193{
194}
195#endif
196
197#ifdef CONFIG_SMP
198
Ingo Molnar06fcb0c2006-06-29 02:24:40 -0700199#if defined(CONFIG_GENERIC_PENDING_IRQ) || defined(CONFIG_IRQBALANCE)
Ashok Raj54d5d422005-09-06 15:16:15 -0700200
Andrew Mortonc777ac52006-03-25 03:07:36 -0800201void set_pending_irq(unsigned int irq, cpumask_t mask);
202void move_native_irq(int irq);
Ashok Raj54d5d422005-09-06 15:16:15 -0700203
204#ifdef CONFIG_PCI_MSI
205/*
206 * Wonder why these are dummies?
207 * For e.g the set_ioapic_affinity_vector() calls the set_ioapic_affinity_irq()
208 * counter part after translating the vector to irq info. We need to perform
209 * this operation on the real irq, when we dont use vector, i.e when
210 * pci_use_vector() is false.
211 */
212static inline void move_irq(int irq)
213{
214}
215
216static inline void set_irq_info(int irq, cpumask_t mask)
217{
218}
219
Ingo Molnar06fcb0c2006-06-29 02:24:40 -0700220#else /* CONFIG_PCI_MSI */
Ashok Raj54d5d422005-09-06 15:16:15 -0700221
222static inline void move_irq(int irq)
223{
224 move_native_irq(irq);
225}
226
227static inline void set_irq_info(int irq, cpumask_t mask)
228{
229 set_native_irq_info(irq, mask);
230}
Ashok Raj54d5d422005-09-06 15:16:15 -0700231
Ingo Molnar06fcb0c2006-06-29 02:24:40 -0700232#endif /* CONFIG_PCI_MSI */
Ashok Raj54d5d422005-09-06 15:16:15 -0700233
Ingo Molnar06fcb0c2006-06-29 02:24:40 -0700234#else /* CONFIG_GENERIC_PENDING_IRQ || CONFIG_IRQBALANCE */
235
236static inline void move_irq(int irq)
237{
238}
239
240static inline void move_native_irq(int irq)
241{
242}
243
244static inline void set_pending_irq(unsigned int irq, cpumask_t mask)
245{
246}
247
Ashok Raj54d5d422005-09-06 15:16:15 -0700248static inline void set_irq_info(int irq, cpumask_t mask)
249{
250 set_native_irq_info(irq, mask);
251}
252
Ingo Molnar06fcb0c2006-06-29 02:24:40 -0700253#endif /* CONFIG_GENERIC_PENDING_IRQ */
Ashok Raj54d5d422005-09-06 15:16:15 -0700254
Ingo Molnar06fcb0c2006-06-29 02:24:40 -0700255#else /* CONFIG_SMP */
Ashok Raj54d5d422005-09-06 15:16:15 -0700256
257#define move_irq(x)
258#define move_native_irq(x)
259
Ingo Molnar06fcb0c2006-06-29 02:24:40 -0700260#endif /* CONFIG_SMP */
Ashok Raj54d5d422005-09-06 15:16:15 -0700261
Zhang Yanmin1b61b912006-06-23 02:04:22 -0700262#ifdef CONFIG_IRQBALANCE
263extern void set_balance_irq_affinity(unsigned int irq, cpumask_t mask);
264#else
265static inline void set_balance_irq_affinity(unsigned int irq, cpumask_t mask)
266{
267}
268#endif
269
Ingo Molnar71d218b2006-06-29 02:24:41 -0700270#ifdef CONFIG_AUTO_IRQ_AFFINITY
271extern int select_smp_affinity(unsigned int irq);
272#else
273static inline int select_smp_affinity(unsigned int irq)
274{
275 return 1;
276}
277#endif
278
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279extern int no_irq_affinity;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280
Thomas Gleixner6a6de9e2006-06-29 02:24:51 -0700281/* Handle irq action chains: */
282extern int handle_IRQ_event(unsigned int irq, struct pt_regs *regs,
283 struct irqaction *action);
284
Ingo Molnar2e60bbb2006-06-29 02:24:39 -0700285/*
Thomas Gleixner6a6de9e2006-06-29 02:24:51 -0700286 * Built-in IRQ handlers for various IRQ types,
287 * callable via desc->chip->handle_irq()
288 */
289extern void fastcall
290handle_level_irq(unsigned int irq, struct irq_desc *desc, struct pt_regs *regs);
291extern void fastcall
Ingo Molnar47c2a3a2006-06-29 02:25:03 -0700292handle_fasteoi_irq(unsigned int irq, struct irq_desc *desc,
Thomas Gleixner6a6de9e2006-06-29 02:24:51 -0700293 struct pt_regs *regs);
294extern void fastcall
295handle_edge_irq(unsigned int irq, struct irq_desc *desc, struct pt_regs *regs);
296extern void fastcall
297handle_simple_irq(unsigned int irq, struct irq_desc *desc,
298 struct pt_regs *regs);
299extern void fastcall
300handle_percpu_irq(unsigned int irq, struct irq_desc *desc,
301 struct pt_regs *regs);
302extern void fastcall
303handle_bad_irq(unsigned int irq, struct irq_desc *desc, struct pt_regs *regs);
304
305/*
306 * Get a descriptive string for the highlevel handler, for
307 * /proc/interrupts output:
308 */
309extern const char *
310handle_irq_name(void fastcall (*handle)(unsigned int, struct irq_desc *,
311 struct pt_regs *));
312
313/*
314 * Monolithic do_IRQ implementation.
315 * (is an explicit fastcall, because i386 4KSTACKS calls it from assembly)
Ingo Molnar2e60bbb2006-06-29 02:24:39 -0700316 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317extern fastcall unsigned int __do_IRQ(unsigned int irq, struct pt_regs *regs);
Ingo Molnar2e60bbb2006-06-29 02:24:39 -0700318
Ingo Molnardae86202006-06-29 02:24:52 -0700319/*
320 * Architectures call this to let the generic IRQ layer
321 * handle an interrupt. If the descriptor is attached to an
322 * irqchip-style controller then we call the ->handle_irq() handler,
323 * and it calls __do_IRQ() if it's attached to an irqtype-style controller.
324 */
325static inline void generic_handle_irq(unsigned int irq, struct pt_regs *regs)
326{
327 struct irq_desc *desc = irq_desc + irq;
328
329 if (likely(desc->handle_irq))
330 desc->handle_irq(irq, desc, regs);
331 else
332 __do_IRQ(irq, regs);
333}
334
Thomas Gleixner6a6de9e2006-06-29 02:24:51 -0700335/* Handling of unhandled and spurious interrupts: */
Ingo Molnar34ffdb72006-06-29 02:24:40 -0700336extern void note_interrupt(unsigned int irq, struct irq_desc *desc,
Ingo Molnar2e60bbb2006-06-29 02:24:39 -0700337 int action_ret, struct pt_regs *regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338
Thomas Gleixnera4633ad2006-06-29 02:24:48 -0700339/* Resending of interrupts :*/
340void check_irq_resend(struct irq_desc *desc, unsigned int irq);
341
Thomas Gleixner6a6de9e2006-06-29 02:24:51 -0700342/* Initialize /proc/irq/ */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343extern void init_irq_proc(void);
Ivan Kokshayskyeee45262006-01-06 00:12:21 -0800344
Thomas Gleixner6a6de9e2006-06-29 02:24:51 -0700345/* Enable/disable irq debugging output: */
346extern int noirqdebug_setup(char *str);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347
Thomas Gleixner6a6de9e2006-06-29 02:24:51 -0700348/* Checks whether the interrupt can be requested by request_irq(): */
349extern int can_request_irq(unsigned int irq, unsigned long irqflags);
350
351/* Dummy irq-chip implementation: */
352extern struct irq_chip no_irq_chip;
353
354extern void
355set_irq_chip_and_handler(unsigned int irq, struct irq_chip *chip,
356 void fastcall (*handle)(unsigned int,
357 struct irq_desc *,
358 struct pt_regs *));
359extern void
360__set_irq_handler(unsigned int irq,
361 void fastcall (*handle)(unsigned int, struct irq_desc *,
362 struct pt_regs *),
363 int is_chained);
364
365/*
366 * Set a highlevel flow handler for a given IRQ:
367 */
368static inline void
369set_irq_handler(unsigned int irq,
370 void fastcall (*handle)(unsigned int, struct irq_desc *,
371 struct pt_regs *))
372{
373 __set_irq_handler(irq, handle, 0);
374}
375
376/*
377 * Set a highlevel chained flow handler for a given IRQ.
378 * (a chained handler is automatically enabled and set to
379 * IRQ_NOREQUEST and IRQ_NOPROBE)
380 */
381static inline void
382set_irq_chained_handler(unsigned int irq,
383 void fastcall (*handle)(unsigned int, struct irq_desc *,
384 struct pt_regs *))
385{
386 __set_irq_handler(irq, handle, 1);
387}
388
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700389/* Set/get chip/data for an IRQ: */
390
391extern int set_irq_chip(unsigned int irq, struct irq_chip *chip);
392extern int set_irq_data(unsigned int irq, void *data);
393extern int set_irq_chip_data(unsigned int irq, void *data);
394extern int set_irq_type(unsigned int irq, unsigned int type);
395
396#define get_irq_chip(irq) (irq_desc[irq].chip)
397#define get_irq_chip_data(irq) (irq_desc[irq].chip_data)
398#define get_irq_data(irq) (irq_desc[irq].handler_data)
399
Thomas Gleixner6a6de9e2006-06-29 02:24:51 -0700400#endif /* CONFIG_GENERIC_HARDIRQS */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401
Ingo Molnar06fcb0c2006-06-29 02:24:40 -0700402#endif /* !CONFIG_S390 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403
Ingo Molnar06fcb0c2006-06-29 02:24:40 -0700404#endif /* _LINUX_IRQ_H */