blob: a31a7d8acdb23c16e906549d677efa27af2639f2 [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.
Thomas Gleixner6e213612006-07-01 19:29:03 -070027 *
28 * Bits 0-16 are reserved for the IRQF_* bits in linux/interrupt.h
29 *
30 * IRQ types
Linus Torvalds1da177e2005-04-16 15:20:36 -070031 */
Thomas Gleixner6e213612006-07-01 19:29:03 -070032#define IRQ_TYPE_NONE 0x00000000 /* Default, unspecified type */
33#define IRQ_TYPE_EDGE_RISING 0x00000001 /* Edge rising type */
34#define IRQ_TYPE_EDGE_FALLING 0x00000002 /* Edge falling type */
35#define IRQ_TYPE_EDGE_BOTH (IRQ_TYPE_EDGE_FALLING | IRQ_TYPE_EDGE_RISING)
36#define IRQ_TYPE_LEVEL_HIGH 0x00000004 /* Level high type */
37#define IRQ_TYPE_LEVEL_LOW 0x00000008 /* Level low type */
38#define IRQ_TYPE_SENSE_MASK 0x0000000f /* Mask of the above */
39#define IRQ_TYPE_PROBE 0x00000010 /* Probing in progress */
40
41/* Internal flags */
42#define IRQ_INPROGRESS 0x00010000 /* IRQ handler active - do not enter! */
43#define IRQ_DISABLED 0x00020000 /* IRQ disabled - do not enter! */
44#define IRQ_PENDING 0x00040000 /* IRQ pending - replay on enable */
45#define IRQ_REPLAY 0x00080000 /* IRQ has been replayed but not acked yet */
46#define IRQ_AUTODETECT 0x00100000 /* IRQ is being autodetected */
47#define IRQ_WAITING 0x00200000 /* IRQ not yet seen - for autodetection */
48#define IRQ_LEVEL 0x00400000 /* IRQ level triggered */
49#define IRQ_MASKED 0x00800000 /* IRQ masked - shouldn't be seen again */
Yoichi Yuasab8bdb462006-07-30 03:03:33 -070050#define IRQ_PER_CPU 0x01000000 /* IRQ is per CPU */
Ingo Molnar0d7012a2006-06-29 02:24:43 -070051#ifdef CONFIG_IRQ_PER_CPU
Karsten Wiesef26fdd52005-09-06 15:17:25 -070052# define CHECK_IRQ_PER_CPU(var) ((var) & IRQ_PER_CPU)
53#else
54# define CHECK_IRQ_PER_CPU(var) 0
55#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070056
Thomas Gleixner6e213612006-07-01 19:29:03 -070057#define IRQ_NOPROBE 0x02000000 /* IRQ is not valid for probing */
58#define IRQ_NOREQUEST 0x04000000 /* IRQ cannot be requested */
59#define IRQ_NOAUTOEN 0x08000000 /* IRQ will not be enabled on request irq */
60#define IRQ_DELAYED_DISABLE 0x10000000 /* IRQ disable (masking) happens delayed. */
David Brownell15a647e2006-07-30 03:03:08 -070061#define IRQ_WAKEUP 0x20000000 /* IRQ triggers system wakeup */
Eric W. Biedermana24ceab2006-10-04 02:16:27 -070062#define IRQ_MOVE_PENDING 0x40000000 /* need to re-target IRQ destination */
Thomas Gleixner6a6de9e2006-06-29 02:24:51 -070063
64struct proc_dir_entry;
65
Ingo Molnar8fee5c32006-06-29 02:24:45 -070066/**
Thomas Gleixner6a6de9e2006-06-29 02:24:51 -070067 * struct irq_chip - hardware interrupt chip descriptor
Ingo Molnar8fee5c32006-06-29 02:24:45 -070068 *
69 * @name: name for /proc/interrupts
70 * @startup: start up the interrupt (defaults to ->enable if NULL)
71 * @shutdown: shut down the interrupt (defaults to ->disable if NULL)
72 * @enable: enable the interrupt (defaults to chip->unmask if NULL)
73 * @disable: disable the interrupt (defaults to chip->mask if NULL)
Ingo Molnar8fee5c32006-06-29 02:24:45 -070074 * @ack: start of a new interrupt
75 * @mask: mask an interrupt source
76 * @mask_ack: ack and mask an interrupt source
77 * @unmask: unmask an interrupt source
Ingo Molnar47c2a3a2006-06-29 02:25:03 -070078 * @eoi: end of interrupt - chip level
79 * @end: end of interrupt - flow level
Ingo Molnar8fee5c32006-06-29 02:24:45 -070080 * @set_affinity: set the CPU affinity on SMP machines
81 * @retrigger: resend an IRQ to the CPU
82 * @set_type: set the flow type (IRQ_TYPE_LEVEL/etc.) of an IRQ
83 * @set_wake: enable/disable power-management wake-on of an IRQ
84 *
85 * @release: release function solely used by UML
Thomas Gleixner6a6de9e2006-06-29 02:24:51 -070086 * @typename: obsoleted by name, kept as migration helper
Linus Torvalds1da177e2005-04-16 15:20:36 -070087 */
Thomas Gleixner6a6de9e2006-06-29 02:24:51 -070088struct irq_chip {
89 const char *name;
Ingo Molnar71d218b2006-06-29 02:24:41 -070090 unsigned int (*startup)(unsigned int irq);
91 void (*shutdown)(unsigned int irq);
92 void (*enable)(unsigned int irq);
93 void (*disable)(unsigned int irq);
Thomas Gleixner6a6de9e2006-06-29 02:24:51 -070094
Ingo Molnar71d218b2006-06-29 02:24:41 -070095 void (*ack)(unsigned int irq);
Thomas Gleixner6a6de9e2006-06-29 02:24:51 -070096 void (*mask)(unsigned int irq);
97 void (*mask_ack)(unsigned int irq);
98 void (*unmask)(unsigned int irq);
Ingo Molnar47c2a3a2006-06-29 02:25:03 -070099 void (*eoi)(unsigned int irq);
Thomas Gleixner6a6de9e2006-06-29 02:24:51 -0700100
Ingo Molnar71d218b2006-06-29 02:24:41 -0700101 void (*end)(unsigned int irq);
102 void (*set_affinity)(unsigned int irq, cpumask_t dest);
Ingo Molnarc0ad90a2006-06-29 02:24:44 -0700103 int (*retrigger)(unsigned int irq);
Thomas Gleixner6a6de9e2006-06-29 02:24:51 -0700104 int (*set_type)(unsigned int irq, unsigned int flow_type);
105 int (*set_wake)(unsigned int irq, unsigned int on);
Ingo Molnarc0ad90a2006-06-29 02:24:44 -0700106
Paolo 'Blaisorblade' Giarrussob77d6ad2005-06-21 17:16:24 -0700107 /* Currently used only by UML, might disappear one day.*/
108#ifdef CONFIG_IRQ_RELEASE_METHOD
Ingo Molnar71d218b2006-06-29 02:24:41 -0700109 void (*release)(unsigned int irq, void *dev_id);
Paolo 'Blaisorblade' Giarrussob77d6ad2005-06-21 17:16:24 -0700110#endif
Thomas Gleixner6a6de9e2006-06-29 02:24:51 -0700111 /*
112 * For compatibility, ->typename is copied into ->name.
113 * Will disappear.
114 */
115 const char *typename;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116};
117
Ingo Molnar8fee5c32006-06-29 02:24:45 -0700118/**
119 * struct irq_desc - interrupt descriptor
120 *
Thomas Gleixner6a6de9e2006-06-29 02:24:51 -0700121 * @handle_irq: highlevel irq-events handler [if NULL, __do_IRQ()]
122 * @chip: low level interrupt hardware access
123 * @handler_data: per-IRQ data for the irq_chip methods
124 * @chip_data: platform-specific per-chip private data for the chip
125 * methods, to allow shared chip implementations
Ingo Molnar8fee5c32006-06-29 02:24:45 -0700126 * @action: the irq action chain
127 * @status: status information
128 * @depth: disable-depth, for nested irq_disable() calls
David Brownell15a647e2006-07-30 03:03:08 -0700129 * @wake_depth: enable depth, for multiple set_irq_wake() callers
Ingo Molnar8fee5c32006-06-29 02:24:45 -0700130 * @irq_count: stats field to detect stalled irqs
131 * @irqs_unhandled: stats field for spurious unhandled interrupts
132 * @lock: locking for SMP
133 * @affinity: IRQ affinity on SMP
Thomas Gleixner6a6de9e2006-06-29 02:24:51 -0700134 * @cpu: cpu index useful for balancing
Ingo Molnar8fee5c32006-06-29 02:24:45 -0700135 * @pending_mask: pending rebalanced interrupts
Ingo Molnar8fee5c32006-06-29 02:24:45 -0700136 * @dir: /proc/irq/ procfs entry
137 * @affinity_entry: /proc/irq/smp_affinity procfs entry on SMP
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138 *
139 * Pad this out to 32 bytes for cache and indexing reasons.
140 */
Ingo Molnar34ffdb72006-06-29 02:24:40 -0700141struct irq_desc {
Thomas Gleixner6a6de9e2006-06-29 02:24:51 -0700142 void fastcall (*handle_irq)(unsigned int irq,
143 struct irq_desc *desc,
144 struct pt_regs *regs);
145 struct irq_chip *chip;
146 void *handler_data;
Ingo Molnar71d218b2006-06-29 02:24:41 -0700147 void *chip_data;
148 struct irqaction *action; /* IRQ action list */
149 unsigned int status; /* IRQ status */
Thomas Gleixner6a6de9e2006-06-29 02:24:51 -0700150
Ingo Molnar71d218b2006-06-29 02:24:41 -0700151 unsigned int depth; /* nested irq disables */
David Brownell15a647e2006-07-30 03:03:08 -0700152 unsigned int wake_depth; /* nested wake enables */
Ingo Molnar71d218b2006-06-29 02:24:41 -0700153 unsigned int irq_count; /* For detecting broken IRQs */
154 unsigned int irqs_unhandled;
155 spinlock_t lock;
Ingo Molnara53da522006-06-29 02:24:38 -0700156#ifdef CONFIG_SMP
Ingo Molnar71d218b2006-06-29 02:24:41 -0700157 cpumask_t affinity;
Thomas Gleixner6a6de9e2006-06-29 02:24:51 -0700158 unsigned int cpu;
Ingo Molnara53da522006-06-29 02:24:38 -0700159#endif
Ingo Molnar06fcb0c2006-06-29 02:24:40 -0700160#if defined(CONFIG_GENERIC_PENDING_IRQ) || defined(CONFIG_IRQBALANCE)
Ingo Molnarcd916d32006-06-29 02:24:42 -0700161 cpumask_t pending_mask;
Ashok Raj54d5d422005-09-06 15:16:15 -0700162#endif
Ingo Molnar4a733ee2006-06-29 02:24:42 -0700163#ifdef CONFIG_PROC_FS
164 struct proc_dir_entry *dir;
165#endif
Ingo Molnar34ffdb72006-06-29 02:24:40 -0700166} ____cacheline_aligned;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167
Ingo Molnar34ffdb72006-06-29 02:24:40 -0700168extern struct irq_desc irq_desc[NR_IRQS];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169
Ingo Molnar34ffdb72006-06-29 02:24:40 -0700170/*
171 * Migration helpers for obsolete names, they will go away:
172 */
Thomas Gleixner6a6de9e2006-06-29 02:24:51 -0700173#define hw_interrupt_type irq_chip
174typedef struct irq_chip hw_irq_controller;
175#define no_irq_type no_irq_chip
Ingo Molnar34ffdb72006-06-29 02:24:40 -0700176typedef struct irq_desc irq_desc_t;
177
178/*
179 * Pick up the arch-dependent methods:
180 */
181#include <asm/hw_irq.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182
Ingo Molnar06fcb0c2006-06-29 02:24:40 -0700183extern int setup_irq(unsigned int irq, struct irqaction *new);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184
185#ifdef CONFIG_GENERIC_HARDIRQS
Ingo Molnar06fcb0c2006-06-29 02:24:40 -0700186
Thomas Gleixnerd061daa2006-07-03 02:18:48 +0200187#ifndef handle_dynamic_tick
188# define handle_dynamic_tick(a) do { } while (0)
189#endif
190
Ashok Raj54d5d422005-09-06 15:16:15 -0700191#ifdef CONFIG_SMP
192static inline void set_native_irq_info(int irq, cpumask_t mask)
193{
Ingo Molnara53da522006-06-29 02:24:38 -0700194 irq_desc[irq].affinity = mask;
Ashok Raj54d5d422005-09-06 15:16:15 -0700195}
196#else
197static inline void set_native_irq_info(int irq, cpumask_t mask)
198{
199}
200#endif
201
202#ifdef CONFIG_SMP
203
Ingo Molnar06fcb0c2006-06-29 02:24:40 -0700204#if defined(CONFIG_GENERIC_PENDING_IRQ) || defined(CONFIG_IRQBALANCE)
Ashok Raj54d5d422005-09-06 15:16:15 -0700205
Andrew Mortonc777ac52006-03-25 03:07:36 -0800206void set_pending_irq(unsigned int irq, cpumask_t mask);
207void move_native_irq(int irq);
Eric W. Biedermane7b946e2006-10-04 02:16:29 -0700208void move_masked_irq(int irq);
Ashok Raj54d5d422005-09-06 15:16:15 -0700209
210#ifdef CONFIG_PCI_MSI
211/*
212 * Wonder why these are dummies?
213 * For e.g the set_ioapic_affinity_vector() calls the set_ioapic_affinity_irq()
214 * counter part after translating the vector to irq info. We need to perform
215 * this operation on the real irq, when we dont use vector, i.e when
216 * pci_use_vector() is false.
217 */
218static inline void move_irq(int irq)
219{
220}
221
222static inline void set_irq_info(int irq, cpumask_t mask)
223{
224}
225
Ingo Molnar06fcb0c2006-06-29 02:24:40 -0700226#else /* CONFIG_PCI_MSI */
Ashok Raj54d5d422005-09-06 15:16:15 -0700227
228static inline void move_irq(int irq)
229{
230 move_native_irq(irq);
231}
232
233static inline void set_irq_info(int irq, cpumask_t mask)
234{
235 set_native_irq_info(irq, mask);
236}
Ashok Raj54d5d422005-09-06 15:16:15 -0700237
Ingo Molnar06fcb0c2006-06-29 02:24:40 -0700238#endif /* CONFIG_PCI_MSI */
Ashok Raj54d5d422005-09-06 15:16:15 -0700239
Ingo Molnar06fcb0c2006-06-29 02:24:40 -0700240#else /* CONFIG_GENERIC_PENDING_IRQ || CONFIG_IRQBALANCE */
241
242static inline void move_irq(int irq)
243{
244}
245
246static inline void move_native_irq(int irq)
247{
248}
249
Eric W. Biedermane7b946e2006-10-04 02:16:29 -0700250static inline void move_masked_irq(int irq)
251{
252}
253
Ingo Molnar06fcb0c2006-06-29 02:24:40 -0700254static inline void set_pending_irq(unsigned int irq, cpumask_t mask)
255{
256}
257
Ashok Raj54d5d422005-09-06 15:16:15 -0700258static inline void set_irq_info(int irq, cpumask_t mask)
259{
260 set_native_irq_info(irq, mask);
261}
262
Ingo Molnar06fcb0c2006-06-29 02:24:40 -0700263#endif /* CONFIG_GENERIC_PENDING_IRQ */
Ashok Raj54d5d422005-09-06 15:16:15 -0700264
Ingo Molnar06fcb0c2006-06-29 02:24:40 -0700265#else /* CONFIG_SMP */
Ashok Raj54d5d422005-09-06 15:16:15 -0700266
267#define move_irq(x)
268#define move_native_irq(x)
Eric W. Biedermane7b946e2006-10-04 02:16:29 -0700269#define move_masked_irq(x)
Ashok Raj54d5d422005-09-06 15:16:15 -0700270
Ingo Molnar06fcb0c2006-06-29 02:24:40 -0700271#endif /* CONFIG_SMP */
Ashok Raj54d5d422005-09-06 15:16:15 -0700272
Zhang Yanmin1b61b912006-06-23 02:04:22 -0700273#ifdef CONFIG_IRQBALANCE
274extern void set_balance_irq_affinity(unsigned int irq, cpumask_t mask);
275#else
276static inline void set_balance_irq_affinity(unsigned int irq, cpumask_t mask)
277{
278}
279#endif
280
Ingo Molnar71d218b2006-06-29 02:24:41 -0700281#ifdef CONFIG_AUTO_IRQ_AFFINITY
282extern int select_smp_affinity(unsigned int irq);
283#else
284static inline int select_smp_affinity(unsigned int irq)
285{
286 return 1;
287}
288#endif
289
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290extern int no_irq_affinity;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291
Thomas Gleixner6a6de9e2006-06-29 02:24:51 -0700292/* Handle irq action chains: */
293extern int handle_IRQ_event(unsigned int irq, struct pt_regs *regs,
294 struct irqaction *action);
295
Ingo Molnar2e60bbb2006-06-29 02:24:39 -0700296/*
Thomas Gleixner6a6de9e2006-06-29 02:24:51 -0700297 * Built-in IRQ handlers for various IRQ types,
298 * callable via desc->chip->handle_irq()
299 */
300extern void fastcall
301handle_level_irq(unsigned int irq, struct irq_desc *desc, struct pt_regs *regs);
302extern void fastcall
Ingo Molnar47c2a3a2006-06-29 02:25:03 -0700303handle_fasteoi_irq(unsigned int irq, struct irq_desc *desc,
Thomas Gleixner6a6de9e2006-06-29 02:24:51 -0700304 struct pt_regs *regs);
305extern void fastcall
306handle_edge_irq(unsigned int irq, struct irq_desc *desc, struct pt_regs *regs);
307extern void fastcall
308handle_simple_irq(unsigned int irq, struct irq_desc *desc,
309 struct pt_regs *regs);
310extern void fastcall
311handle_percpu_irq(unsigned int irq, struct irq_desc *desc,
312 struct pt_regs *regs);
313extern void fastcall
314handle_bad_irq(unsigned int irq, struct irq_desc *desc, struct pt_regs *regs);
315
316/*
317 * Get a descriptive string for the highlevel handler, for
318 * /proc/interrupts output:
319 */
320extern const char *
321handle_irq_name(void fastcall (*handle)(unsigned int, struct irq_desc *,
322 struct pt_regs *));
323
324/*
325 * Monolithic do_IRQ implementation.
326 * (is an explicit fastcall, because i386 4KSTACKS calls it from assembly)
Ingo Molnar2e60bbb2006-06-29 02:24:39 -0700327 */
David Howellsaf8c65b2006-09-25 23:32:07 -0700328#ifndef CONFIG_GENERIC_HARDIRQS_NO__DO_IRQ
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329extern fastcall unsigned int __do_IRQ(unsigned int irq, struct pt_regs *regs);
David Howellsaf8c65b2006-09-25 23:32:07 -0700330#endif
Ingo Molnar2e60bbb2006-06-29 02:24:39 -0700331
Ingo Molnardae86202006-06-29 02:24:52 -0700332/*
333 * Architectures call this to let the generic IRQ layer
334 * handle an interrupt. If the descriptor is attached to an
335 * irqchip-style controller then we call the ->handle_irq() handler,
336 * and it calls __do_IRQ() if it's attached to an irqtype-style controller.
337 */
338static inline void generic_handle_irq(unsigned int irq, struct pt_regs *regs)
339{
340 struct irq_desc *desc = irq_desc + irq;
341
David Howellsaf8c65b2006-09-25 23:32:07 -0700342#ifdef CONFIG_GENERIC_HARDIRQS_NO__DO_IRQ
343 desc->handle_irq(irq, desc, regs);
344#else
Ingo Molnardae86202006-06-29 02:24:52 -0700345 if (likely(desc->handle_irq))
346 desc->handle_irq(irq, desc, regs);
347 else
348 __do_IRQ(irq, regs);
David Howellsaf8c65b2006-09-25 23:32:07 -0700349#endif
Ingo Molnardae86202006-06-29 02:24:52 -0700350}
351
Thomas Gleixner6a6de9e2006-06-29 02:24:51 -0700352/* Handling of unhandled and spurious interrupts: */
Ingo Molnar34ffdb72006-06-29 02:24:40 -0700353extern void note_interrupt(unsigned int irq, struct irq_desc *desc,
Ingo Molnar2e60bbb2006-06-29 02:24:39 -0700354 int action_ret, struct pt_regs *regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355
Thomas Gleixnera4633adc2006-06-29 02:24:48 -0700356/* Resending of interrupts :*/
357void check_irq_resend(struct irq_desc *desc, unsigned int irq);
358
Thomas Gleixner6a6de9e2006-06-29 02:24:51 -0700359/* Initialize /proc/irq/ */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360extern void init_irq_proc(void);
Ivan Kokshayskyeee45262006-01-06 00:12:21 -0800361
Thomas Gleixner6a6de9e2006-06-29 02:24:51 -0700362/* Enable/disable irq debugging output: */
363extern int noirqdebug_setup(char *str);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364
Thomas Gleixner6a6de9e2006-06-29 02:24:51 -0700365/* Checks whether the interrupt can be requested by request_irq(): */
366extern int can_request_irq(unsigned int irq, unsigned long irqflags);
367
Thomas Gleixnerf8b54732006-07-01 22:30:08 +0100368/* Dummy irq-chip implementations: */
Thomas Gleixner6a6de9e2006-06-29 02:24:51 -0700369extern struct irq_chip no_irq_chip;
Thomas Gleixnerf8b54732006-07-01 22:30:08 +0100370extern struct irq_chip dummy_irq_chip;
Thomas Gleixner6a6de9e2006-06-29 02:24:51 -0700371
372extern void
373set_irq_chip_and_handler(unsigned int irq, struct irq_chip *chip,
374 void fastcall (*handle)(unsigned int,
375 struct irq_desc *,
376 struct pt_regs *));
377extern void
378__set_irq_handler(unsigned int irq,
379 void fastcall (*handle)(unsigned int, struct irq_desc *,
380 struct pt_regs *),
381 int is_chained);
382
383/*
384 * Set a highlevel flow handler for a given IRQ:
385 */
386static inline void
387set_irq_handler(unsigned int irq,
388 void fastcall (*handle)(unsigned int, struct irq_desc *,
389 struct pt_regs *))
390{
391 __set_irq_handler(irq, handle, 0);
392}
393
394/*
395 * Set a highlevel chained flow handler for a given IRQ.
396 * (a chained handler is automatically enabled and set to
397 * IRQ_NOREQUEST and IRQ_NOPROBE)
398 */
399static inline void
400set_irq_chained_handler(unsigned int irq,
401 void fastcall (*handle)(unsigned int, struct irq_desc *,
402 struct pt_regs *))
403{
404 __set_irq_handler(irq, handle, 1);
405}
406
Thomas Gleixnerdd87eb32006-06-29 02:24:53 -0700407/* Set/get chip/data for an IRQ: */
408
409extern int set_irq_chip(unsigned int irq, struct irq_chip *chip);
410extern int set_irq_data(unsigned int irq, void *data);
411extern int set_irq_chip_data(unsigned int irq, void *data);
412extern int set_irq_type(unsigned int irq, unsigned int type);
413
414#define get_irq_chip(irq) (irq_desc[irq].chip)
415#define get_irq_chip_data(irq) (irq_desc[irq].chip_data)
416#define get_irq_data(irq) (irq_desc[irq].handler_data)
417
Thomas Gleixner6a6de9e2006-06-29 02:24:51 -0700418#endif /* CONFIG_GENERIC_HARDIRQS */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419
Ingo Molnar06fcb0c2006-06-29 02:24:40 -0700420#endif /* !CONFIG_S390 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421
Ingo Molnar06fcb0c2006-06-29 02:24:40 -0700422#endif /* _LINUX_IRQ_H */