blob: 6e3ad6245bd3e79154dec1ea21bbcca2e28e78af [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#ifndef __irq_h
2#define __irq_h
3
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
Martin Schwidefsky347a8dc2006-01-06 00:19:28 -080014#if !defined(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 */
Karsten Wiesef26fdd52005-09-06 15:17:25 -070036#if defined(ARCH_HAS_IRQ_PER_CPU)
37# 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
43/*
44 * Interrupt controller descriptor. This is all we need
45 * to describe about the low-level hardware.
46 */
47struct hw_interrupt_type {
48 const char * typename;
49 unsigned int (*startup)(unsigned int irq);
50 void (*shutdown)(unsigned int irq);
51 void (*enable)(unsigned int irq);
52 void (*disable)(unsigned int irq);
53 void (*ack)(unsigned int irq);
54 void (*end)(unsigned int irq);
55 void (*set_affinity)(unsigned int irq, cpumask_t dest);
Paolo 'Blaisorblade' Giarrussob77d6ad2005-06-21 17:16:24 -070056 /* Currently used only by UML, might disappear one day.*/
57#ifdef CONFIG_IRQ_RELEASE_METHOD
Paolo 'Blaisorblade' Giarrussodbce7062005-06-21 17:16:19 -070058 void (*release)(unsigned int irq, void *dev_id);
Paolo 'Blaisorblade' Giarrussob77d6ad2005-06-21 17:16:24 -070059#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070060};
61
62typedef struct hw_interrupt_type hw_irq_controller;
63
64/*
65 * This is the "IRQ descriptor", which contains various information
66 * about the irq, including what kind of hardware handling it has,
67 * whether it is disabled etc etc.
68 *
69 * Pad this out to 32 bytes for cache and indexing reasons.
70 */
71typedef struct irq_desc {
Ingo Molnard1bef4e2006-06-29 02:24:36 -070072 hw_irq_controller *chip;
73 void *chip_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -070074 struct irqaction *action; /* IRQ action list */
75 unsigned int status; /* IRQ status */
76 unsigned int depth; /* nested irq disables */
77 unsigned int irq_count; /* For detecting broken interrupts */
78 unsigned int irqs_unhandled;
79 spinlock_t lock;
Ingo Molnara53da522006-06-29 02:24:38 -070080#ifdef CONFIG_SMP
81 cpumask_t affinity;
82#endif
Ashok Raj54d5d422005-09-06 15:16:15 -070083#if defined (CONFIG_GENERIC_PENDING_IRQ) || defined (CONFIG_IRQBALANCE)
84 unsigned int move_irq; /* Flag need to re-target intr dest*/
85#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070086} ____cacheline_aligned irq_desc_t;
87
88extern irq_desc_t irq_desc [NR_IRQS];
89
Ashok Raj54d5d422005-09-06 15:16:15 -070090/* Return a pointer to the irq descriptor for IRQ. */
91static inline irq_desc_t *
92irq_descp (int irq)
93{
94 return irq_desc + irq;
95}
96
Linus Torvalds1da177e2005-04-16 15:20:36 -070097#include <asm/hw_irq.h> /* the arch dependent stuff */
98
99extern int setup_irq(unsigned int irq, struct irqaction * new);
100
101#ifdef CONFIG_GENERIC_HARDIRQS
Ashok Raj54d5d422005-09-06 15:16:15 -0700102#ifdef CONFIG_SMP
103static inline void set_native_irq_info(int irq, cpumask_t mask)
104{
Ingo Molnara53da522006-06-29 02:24:38 -0700105 irq_desc[irq].affinity = mask;
Ashok Raj54d5d422005-09-06 15:16:15 -0700106}
107#else
108static inline void set_native_irq_info(int irq, cpumask_t mask)
109{
110}
111#endif
112
113#ifdef CONFIG_SMP
114
115#if defined (CONFIG_GENERIC_PENDING_IRQ) || defined (CONFIG_IRQBALANCE)
116extern cpumask_t pending_irq_cpumask[NR_IRQS];
117
Andrew Mortonc777ac52006-03-25 03:07:36 -0800118void set_pending_irq(unsigned int irq, cpumask_t mask);
119void move_native_irq(int irq);
Ashok Raj54d5d422005-09-06 15:16:15 -0700120
121#ifdef CONFIG_PCI_MSI
122/*
123 * Wonder why these are dummies?
124 * For e.g the set_ioapic_affinity_vector() calls the set_ioapic_affinity_irq()
125 * counter part after translating the vector to irq info. We need to perform
126 * this operation on the real irq, when we dont use vector, i.e when
127 * pci_use_vector() is false.
128 */
129static inline void move_irq(int irq)
130{
131}
132
133static inline void set_irq_info(int irq, cpumask_t mask)
134{
135}
136
137#else // CONFIG_PCI_MSI
138
139static inline void move_irq(int irq)
140{
141 move_native_irq(irq);
142}
143
144static inline void set_irq_info(int irq, cpumask_t mask)
145{
146 set_native_irq_info(irq, mask);
147}
148#endif // CONFIG_PCI_MSI
149
150#else // CONFIG_GENERIC_PENDING_IRQ || CONFIG_IRQBALANCE
151
152#define move_irq(x)
153#define move_native_irq(x)
154#define set_pending_irq(x,y)
155static inline void set_irq_info(int irq, cpumask_t mask)
156{
157 set_native_irq_info(irq, mask);
158}
159
160#endif // CONFIG_GENERIC_PENDING_IRQ
161
162#else // CONFIG_SMP
163
164#define move_irq(x)
165#define move_native_irq(x)
166
167#endif // CONFIG_SMP
168
Zhang Yanmin1b61b912006-06-23 02:04:22 -0700169#ifdef CONFIG_IRQBALANCE
170extern void set_balance_irq_affinity(unsigned int irq, cpumask_t mask);
171#else
172static inline void set_balance_irq_affinity(unsigned int irq, cpumask_t mask)
173{
174}
175#endif
176
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177extern int no_irq_affinity;
178extern int noirqdebug_setup(char *str);
179
Jan Beulich908dcec2006-06-23 02:06:00 -0700180extern fastcall irqreturn_t handle_IRQ_event(unsigned int irq, struct pt_regs *regs,
Alan Cox200803d2005-06-28 20:45:18 -0700181 struct irqaction *action);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182extern fastcall unsigned int __do_IRQ(unsigned int irq, struct pt_regs *regs);
Alan Cox200803d2005-06-28 20:45:18 -0700183extern void note_interrupt(unsigned int irq, irq_desc_t *desc,
184 int action_ret, struct pt_regs *regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185extern int can_request_irq(unsigned int irq, unsigned long irqflags);
186
187extern void init_irq_proc(void);
Ivan Kokshayskyeee45262006-01-06 00:12:21 -0800188
189#ifdef CONFIG_AUTO_IRQ_AFFINITY
190extern int select_smp_affinity(unsigned int irq);
191#else
192static inline int
193select_smp_affinity(unsigned int irq)
194{
195 return 1;
196}
197#endif
198
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199#endif
200
201extern hw_irq_controller no_irq_type; /* needed in every arch ? */
202
203#endif
204
205#endif /* __irq_h */