| Ingo Molnar | 06fcb0c | 2006-06-29 02:24:40 -0700 | [diff] [blame] | 1 | #ifndef _LINUX_IRQ_H | 
 | 2 | #define _LINUX_IRQ_H | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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 Bunk | 23f9b31 | 2005-12-21 02:27:50 +0100 | [diff] [blame] | 12 | #include <linux/smp.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 13 |  | 
| Ingo Molnar | 06fcb0c | 2006-06-29 02:24:40 -0700 | [diff] [blame] | 14 | #ifndef CONFIG_S390 | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 15 |  | 
 | 16 | #include <linux/linkage.h> | 
 | 17 | #include <linux/cache.h> | 
 | 18 | #include <linux/spinlock.h> | 
 | 19 | #include <linux/cpumask.h> | 
| Jan Beulich | 908dcec | 2006-06-23 02:06:00 -0700 | [diff] [blame] | 20 | #include <linux/irqreturn.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 21 |  | 
 | 22 | #include <asm/irq.h> | 
 | 23 | #include <asm/ptrace.h> | 
 | 24 |  | 
 | 25 | /* | 
 | 26 |  * IRQ line status. | 
| Thomas Gleixner | 6e21361 | 2006-07-01 19:29:03 -0700 | [diff] [blame] | 27 |  * | 
 | 28 |  * Bits 0-16 are reserved for the IRQF_* bits in linux/interrupt.h | 
 | 29 |  * | 
 | 30 |  * IRQ types | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 31 |  */ | 
| Thomas Gleixner | 6e21361 | 2006-07-01 19:29:03 -0700 | [diff] [blame] | 32 | #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 */ | 
| Ingo Molnar | 0d7012a | 2006-06-29 02:24:43 -0700 | [diff] [blame] | 50 | #ifdef CONFIG_IRQ_PER_CPU | 
| Thomas Gleixner | 6e21361 | 2006-07-01 19:29:03 -0700 | [diff] [blame] | 51 | # define IRQ_PER_CPU		0x01000000	/* IRQ is per CPU */ | 
| Karsten Wiese | f26fdd5 | 2005-09-06 15:17:25 -0700 | [diff] [blame] | 52 | # define CHECK_IRQ_PER_CPU(var) ((var) & IRQ_PER_CPU) | 
 | 53 | #else | 
 | 54 | # define CHECK_IRQ_PER_CPU(var) 0 | 
 | 55 | #endif | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 56 |  | 
| Thomas Gleixner | 6e21361 | 2006-07-01 19:29:03 -0700 | [diff] [blame] | 57 | #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. */ | 
| Thomas Gleixner | 6a6de9e | 2006-06-29 02:24:51 -0700 | [diff] [blame] | 61 |  | 
 | 62 | struct proc_dir_entry; | 
 | 63 |  | 
| Ingo Molnar | 8fee5c3 | 2006-06-29 02:24:45 -0700 | [diff] [blame] | 64 | /** | 
| Thomas Gleixner | 6a6de9e | 2006-06-29 02:24:51 -0700 | [diff] [blame] | 65 |  * struct irq_chip - hardware interrupt chip descriptor | 
| Ingo Molnar | 8fee5c3 | 2006-06-29 02:24:45 -0700 | [diff] [blame] | 66 |  * | 
 | 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 Molnar | 8fee5c3 | 2006-06-29 02:24:45 -0700 | [diff] [blame] | 72 |  * @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 Molnar | 47c2a3a | 2006-06-29 02:25:03 -0700 | [diff] [blame] | 76 |  * @eoi:		end of interrupt - chip level | 
 | 77 |  * @end:		end of interrupt - flow level | 
| Ingo Molnar | 8fee5c3 | 2006-06-29 02:24:45 -0700 | [diff] [blame] | 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 Gleixner | 6a6de9e | 2006-06-29 02:24:51 -0700 | [diff] [blame] | 84 |  * @typename:		obsoleted by name, kept as migration helper | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 85 |  */ | 
| Thomas Gleixner | 6a6de9e | 2006-06-29 02:24:51 -0700 | [diff] [blame] | 86 | struct irq_chip { | 
 | 87 | 	const char	*name; | 
| Ingo Molnar | 71d218b | 2006-06-29 02:24:41 -0700 | [diff] [blame] | 88 | 	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 Gleixner | 6a6de9e | 2006-06-29 02:24:51 -0700 | [diff] [blame] | 92 |  | 
| Ingo Molnar | 71d218b | 2006-06-29 02:24:41 -0700 | [diff] [blame] | 93 | 	void		(*ack)(unsigned int irq); | 
| Thomas Gleixner | 6a6de9e | 2006-06-29 02:24:51 -0700 | [diff] [blame] | 94 | 	void		(*mask)(unsigned int irq); | 
 | 95 | 	void		(*mask_ack)(unsigned int irq); | 
 | 96 | 	void		(*unmask)(unsigned int irq); | 
| Ingo Molnar | 47c2a3a | 2006-06-29 02:25:03 -0700 | [diff] [blame] | 97 | 	void		(*eoi)(unsigned int irq); | 
| Thomas Gleixner | 6a6de9e | 2006-06-29 02:24:51 -0700 | [diff] [blame] | 98 |  | 
| Ingo Molnar | 71d218b | 2006-06-29 02:24:41 -0700 | [diff] [blame] | 99 | 	void		(*end)(unsigned int irq); | 
 | 100 | 	void		(*set_affinity)(unsigned int irq, cpumask_t dest); | 
| Ingo Molnar | c0ad90a | 2006-06-29 02:24:44 -0700 | [diff] [blame] | 101 | 	int		(*retrigger)(unsigned int irq); | 
| Thomas Gleixner | 6a6de9e | 2006-06-29 02:24:51 -0700 | [diff] [blame] | 102 | 	int		(*set_type)(unsigned int irq, unsigned int flow_type); | 
 | 103 | 	int		(*set_wake)(unsigned int irq, unsigned int on); | 
| Ingo Molnar | c0ad90a | 2006-06-29 02:24:44 -0700 | [diff] [blame] | 104 |  | 
| Paolo 'Blaisorblade' Giarrusso | b77d6ad | 2005-06-21 17:16:24 -0700 | [diff] [blame] | 105 | 	/* Currently used only by UML, might disappear one day.*/ | 
 | 106 | #ifdef CONFIG_IRQ_RELEASE_METHOD | 
| Ingo Molnar | 71d218b | 2006-06-29 02:24:41 -0700 | [diff] [blame] | 107 | 	void		(*release)(unsigned int irq, void *dev_id); | 
| Paolo 'Blaisorblade' Giarrusso | b77d6ad | 2005-06-21 17:16:24 -0700 | [diff] [blame] | 108 | #endif | 
| Thomas Gleixner | 6a6de9e | 2006-06-29 02:24:51 -0700 | [diff] [blame] | 109 | 	/* | 
 | 110 | 	 * For compatibility, ->typename is copied into ->name. | 
 | 111 | 	 * Will disappear. | 
 | 112 | 	 */ | 
 | 113 | 	const char	*typename; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 114 | }; | 
 | 115 |  | 
| Ingo Molnar | 8fee5c3 | 2006-06-29 02:24:45 -0700 | [diff] [blame] | 116 | /** | 
 | 117 |  * struct irq_desc - interrupt descriptor | 
 | 118 |  * | 
| Thomas Gleixner | 6a6de9e | 2006-06-29 02:24:51 -0700 | [diff] [blame] | 119 |  * @handle_irq:		highlevel irq-events handler [if NULL, __do_IRQ()] | 
 | 120 |  * @chip:		low level interrupt hardware access | 
 | 121 |  * @handler_data:	per-IRQ data for the irq_chip methods | 
 | 122 |  * @chip_data:		platform-specific per-chip private data for the chip | 
 | 123 |  *			methods, to allow shared chip implementations | 
| Ingo Molnar | 8fee5c3 | 2006-06-29 02:24:45 -0700 | [diff] [blame] | 124 |  * @action:		the irq action chain | 
 | 125 |  * @status:		status information | 
 | 126 |  * @depth:		disable-depth, for nested irq_disable() calls | 
 | 127 |  * @irq_count:		stats field to detect stalled irqs | 
 | 128 |  * @irqs_unhandled:	stats field for spurious unhandled interrupts | 
 | 129 |  * @lock:		locking for SMP | 
 | 130 |  * @affinity:		IRQ affinity on SMP | 
| Thomas Gleixner | 6a6de9e | 2006-06-29 02:24:51 -0700 | [diff] [blame] | 131 |  * @cpu:		cpu index useful for balancing | 
| Ingo Molnar | 8fee5c3 | 2006-06-29 02:24:45 -0700 | [diff] [blame] | 132 |  * @pending_mask:	pending rebalanced interrupts | 
 | 133 |  * @move_irq:		need to re-target IRQ destination | 
 | 134 |  * @dir:		/proc/irq/ procfs entry | 
 | 135 |  * @affinity_entry:	/proc/irq/smp_affinity procfs entry on SMP | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 136 |  * | 
 | 137 |  * Pad this out to 32 bytes for cache and indexing reasons. | 
 | 138 |  */ | 
| Ingo Molnar | 34ffdb7 | 2006-06-29 02:24:40 -0700 | [diff] [blame] | 139 | struct irq_desc { | 
| Thomas Gleixner | 6a6de9e | 2006-06-29 02:24:51 -0700 | [diff] [blame] | 140 | 	void fastcall		(*handle_irq)(unsigned int irq, | 
 | 141 | 					      struct irq_desc *desc, | 
 | 142 | 					      struct pt_regs *regs); | 
 | 143 | 	struct irq_chip		*chip; | 
 | 144 | 	void			*handler_data; | 
| Ingo Molnar | 71d218b | 2006-06-29 02:24:41 -0700 | [diff] [blame] | 145 | 	void			*chip_data; | 
 | 146 | 	struct irqaction	*action;	/* IRQ action list */ | 
 | 147 | 	unsigned int		status;		/* IRQ status */ | 
| Thomas Gleixner | 6a6de9e | 2006-06-29 02:24:51 -0700 | [diff] [blame] | 148 |  | 
| Ingo Molnar | 71d218b | 2006-06-29 02:24:41 -0700 | [diff] [blame] | 149 | 	unsigned int		depth;		/* nested irq disables */ | 
 | 150 | 	unsigned int		irq_count;	/* For detecting broken IRQs */ | 
 | 151 | 	unsigned int		irqs_unhandled; | 
 | 152 | 	spinlock_t		lock; | 
| Ingo Molnar | a53da52 | 2006-06-29 02:24:38 -0700 | [diff] [blame] | 153 | #ifdef CONFIG_SMP | 
| Ingo Molnar | 71d218b | 2006-06-29 02:24:41 -0700 | [diff] [blame] | 154 | 	cpumask_t		affinity; | 
| Thomas Gleixner | 6a6de9e | 2006-06-29 02:24:51 -0700 | [diff] [blame] | 155 | 	unsigned int		cpu; | 
| Ingo Molnar | a53da52 | 2006-06-29 02:24:38 -0700 | [diff] [blame] | 156 | #endif | 
| Ingo Molnar | 06fcb0c | 2006-06-29 02:24:40 -0700 | [diff] [blame] | 157 | #if defined(CONFIG_GENERIC_PENDING_IRQ) || defined(CONFIG_IRQBALANCE) | 
| Ingo Molnar | cd916d3 | 2006-06-29 02:24:42 -0700 | [diff] [blame] | 158 | 	cpumask_t		pending_mask; | 
| Ingo Molnar | 71d218b | 2006-06-29 02:24:41 -0700 | [diff] [blame] | 159 | 	unsigned int		move_irq;	/* need to re-target IRQ dest */ | 
| Ashok Raj | 54d5d42 | 2005-09-06 15:16:15 -0700 | [diff] [blame] | 160 | #endif | 
| Ingo Molnar | 4a733ee | 2006-06-29 02:24:42 -0700 | [diff] [blame] | 161 | #ifdef CONFIG_PROC_FS | 
 | 162 | 	struct proc_dir_entry *dir; | 
 | 163 | #endif | 
| Ingo Molnar | 34ffdb7 | 2006-06-29 02:24:40 -0700 | [diff] [blame] | 164 | } ____cacheline_aligned; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 165 |  | 
| Ingo Molnar | 34ffdb7 | 2006-06-29 02:24:40 -0700 | [diff] [blame] | 166 | extern struct irq_desc irq_desc[NR_IRQS]; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 167 |  | 
| Ingo Molnar | 34ffdb7 | 2006-06-29 02:24:40 -0700 | [diff] [blame] | 168 | /* | 
 | 169 |  * Migration helpers for obsolete names, they will go away: | 
 | 170 |  */ | 
| Thomas Gleixner | 6a6de9e | 2006-06-29 02:24:51 -0700 | [diff] [blame] | 171 | #define hw_interrupt_type	irq_chip | 
 | 172 | typedef struct irq_chip		hw_irq_controller; | 
 | 173 | #define no_irq_type		no_irq_chip | 
| Ingo Molnar | 34ffdb7 | 2006-06-29 02:24:40 -0700 | [diff] [blame] | 174 | typedef struct irq_desc		irq_desc_t; | 
 | 175 |  | 
 | 176 | /* | 
 | 177 |  * Pick up the arch-dependent methods: | 
 | 178 |  */ | 
 | 179 | #include <asm/hw_irq.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 180 |  | 
| Ingo Molnar | 06fcb0c | 2006-06-29 02:24:40 -0700 | [diff] [blame] | 181 | extern int setup_irq(unsigned int irq, struct irqaction *new); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 182 |  | 
 | 183 | #ifdef CONFIG_GENERIC_HARDIRQS | 
| Ingo Molnar | 06fcb0c | 2006-06-29 02:24:40 -0700 | [diff] [blame] | 184 |  | 
| Thomas Gleixner | d061daa | 2006-07-03 02:18:48 +0200 | [diff] [blame] | 185 | #ifndef handle_dynamic_tick | 
 | 186 | # define handle_dynamic_tick(a)		do { } while (0) | 
 | 187 | #endif | 
 | 188 |  | 
| Ashok Raj | 54d5d42 | 2005-09-06 15:16:15 -0700 | [diff] [blame] | 189 | #ifdef CONFIG_SMP | 
 | 190 | static inline void set_native_irq_info(int irq, cpumask_t mask) | 
 | 191 | { | 
| Ingo Molnar | a53da52 | 2006-06-29 02:24:38 -0700 | [diff] [blame] | 192 | 	irq_desc[irq].affinity = mask; | 
| Ashok Raj | 54d5d42 | 2005-09-06 15:16:15 -0700 | [diff] [blame] | 193 | } | 
 | 194 | #else | 
 | 195 | static inline void set_native_irq_info(int irq, cpumask_t mask) | 
 | 196 | { | 
 | 197 | } | 
 | 198 | #endif | 
 | 199 |  | 
 | 200 | #ifdef CONFIG_SMP | 
 | 201 |  | 
| Ingo Molnar | 06fcb0c | 2006-06-29 02:24:40 -0700 | [diff] [blame] | 202 | #if defined(CONFIG_GENERIC_PENDING_IRQ) || defined(CONFIG_IRQBALANCE) | 
| Ashok Raj | 54d5d42 | 2005-09-06 15:16:15 -0700 | [diff] [blame] | 203 |  | 
| Andrew Morton | c777ac5 | 2006-03-25 03:07:36 -0800 | [diff] [blame] | 204 | void set_pending_irq(unsigned int irq, cpumask_t mask); | 
 | 205 | void move_native_irq(int irq); | 
| Ashok Raj | 54d5d42 | 2005-09-06 15:16:15 -0700 | [diff] [blame] | 206 |  | 
 | 207 | #ifdef CONFIG_PCI_MSI | 
 | 208 | /* | 
 | 209 |  * Wonder why these are dummies? | 
 | 210 |  * For e.g the set_ioapic_affinity_vector() calls the set_ioapic_affinity_irq() | 
 | 211 |  * counter part after translating the vector to irq info. We need to perform | 
 | 212 |  * this operation on the real irq, when we dont use vector, i.e when | 
 | 213 |  * pci_use_vector() is false. | 
 | 214 |  */ | 
 | 215 | static inline void move_irq(int irq) | 
 | 216 | { | 
 | 217 | } | 
 | 218 |  | 
 | 219 | static inline void set_irq_info(int irq, cpumask_t mask) | 
 | 220 | { | 
 | 221 | } | 
 | 222 |  | 
| Ingo Molnar | 06fcb0c | 2006-06-29 02:24:40 -0700 | [diff] [blame] | 223 | #else /* CONFIG_PCI_MSI */ | 
| Ashok Raj | 54d5d42 | 2005-09-06 15:16:15 -0700 | [diff] [blame] | 224 |  | 
 | 225 | static inline void move_irq(int irq) | 
 | 226 | { | 
 | 227 | 	move_native_irq(irq); | 
 | 228 | } | 
 | 229 |  | 
 | 230 | static inline void set_irq_info(int irq, cpumask_t mask) | 
 | 231 | { | 
 | 232 | 	set_native_irq_info(irq, mask); | 
 | 233 | } | 
| Ashok Raj | 54d5d42 | 2005-09-06 15:16:15 -0700 | [diff] [blame] | 234 |  | 
| Ingo Molnar | 06fcb0c | 2006-06-29 02:24:40 -0700 | [diff] [blame] | 235 | #endif /* CONFIG_PCI_MSI */ | 
| Ashok Raj | 54d5d42 | 2005-09-06 15:16:15 -0700 | [diff] [blame] | 236 |  | 
| Ingo Molnar | 06fcb0c | 2006-06-29 02:24:40 -0700 | [diff] [blame] | 237 | #else /* CONFIG_GENERIC_PENDING_IRQ || CONFIG_IRQBALANCE */ | 
 | 238 |  | 
 | 239 | static inline void move_irq(int irq) | 
 | 240 | { | 
 | 241 | } | 
 | 242 |  | 
 | 243 | static inline void move_native_irq(int irq) | 
 | 244 | { | 
 | 245 | } | 
 | 246 |  | 
 | 247 | static inline void set_pending_irq(unsigned int irq, cpumask_t mask) | 
 | 248 | { | 
 | 249 | } | 
 | 250 |  | 
| Ashok Raj | 54d5d42 | 2005-09-06 15:16:15 -0700 | [diff] [blame] | 251 | static inline void set_irq_info(int irq, cpumask_t mask) | 
 | 252 | { | 
 | 253 | 	set_native_irq_info(irq, mask); | 
 | 254 | } | 
 | 255 |  | 
| Ingo Molnar | 06fcb0c | 2006-06-29 02:24:40 -0700 | [diff] [blame] | 256 | #endif /* CONFIG_GENERIC_PENDING_IRQ */ | 
| Ashok Raj | 54d5d42 | 2005-09-06 15:16:15 -0700 | [diff] [blame] | 257 |  | 
| Ingo Molnar | 06fcb0c | 2006-06-29 02:24:40 -0700 | [diff] [blame] | 258 | #else /* CONFIG_SMP */ | 
| Ashok Raj | 54d5d42 | 2005-09-06 15:16:15 -0700 | [diff] [blame] | 259 |  | 
 | 260 | #define move_irq(x) | 
 | 261 | #define move_native_irq(x) | 
 | 262 |  | 
| Ingo Molnar | 06fcb0c | 2006-06-29 02:24:40 -0700 | [diff] [blame] | 263 | #endif /* CONFIG_SMP */ | 
| Ashok Raj | 54d5d42 | 2005-09-06 15:16:15 -0700 | [diff] [blame] | 264 |  | 
| Zhang Yanmin | 1b61b91 | 2006-06-23 02:04:22 -0700 | [diff] [blame] | 265 | #ifdef CONFIG_IRQBALANCE | 
 | 266 | extern void set_balance_irq_affinity(unsigned int irq, cpumask_t mask); | 
 | 267 | #else | 
 | 268 | static inline void set_balance_irq_affinity(unsigned int irq, cpumask_t mask) | 
 | 269 | { | 
 | 270 | } | 
 | 271 | #endif | 
 | 272 |  | 
| Ingo Molnar | 71d218b | 2006-06-29 02:24:41 -0700 | [diff] [blame] | 273 | #ifdef CONFIG_AUTO_IRQ_AFFINITY | 
 | 274 | extern int select_smp_affinity(unsigned int irq); | 
 | 275 | #else | 
 | 276 | static inline int select_smp_affinity(unsigned int irq) | 
 | 277 | { | 
 | 278 | 	return 1; | 
 | 279 | } | 
 | 280 | #endif | 
 | 281 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 282 | extern int no_irq_affinity; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 283 |  | 
| Thomas Gleixner | 6a6de9e | 2006-06-29 02:24:51 -0700 | [diff] [blame] | 284 | /* Handle irq action chains: */ | 
 | 285 | extern int handle_IRQ_event(unsigned int irq, struct pt_regs *regs, | 
 | 286 | 			    struct irqaction *action); | 
 | 287 |  | 
| Ingo Molnar | 2e60bbb | 2006-06-29 02:24:39 -0700 | [diff] [blame] | 288 | /* | 
| Thomas Gleixner | 6a6de9e | 2006-06-29 02:24:51 -0700 | [diff] [blame] | 289 |  * Built-in IRQ handlers for various IRQ types, | 
 | 290 |  * callable via desc->chip->handle_irq() | 
 | 291 |  */ | 
 | 292 | extern void fastcall | 
 | 293 | handle_level_irq(unsigned int irq, struct irq_desc *desc, struct pt_regs *regs); | 
 | 294 | extern void fastcall | 
| Ingo Molnar | 47c2a3a | 2006-06-29 02:25:03 -0700 | [diff] [blame] | 295 | handle_fasteoi_irq(unsigned int irq, struct irq_desc *desc, | 
| Thomas Gleixner | 6a6de9e | 2006-06-29 02:24:51 -0700 | [diff] [blame] | 296 | 			 struct pt_regs *regs); | 
 | 297 | extern void fastcall | 
 | 298 | handle_edge_irq(unsigned int irq, struct irq_desc *desc, struct pt_regs *regs); | 
 | 299 | extern void fastcall | 
 | 300 | handle_simple_irq(unsigned int irq, struct irq_desc *desc, | 
 | 301 | 		  struct pt_regs *regs); | 
 | 302 | extern void fastcall | 
 | 303 | handle_percpu_irq(unsigned int irq, struct irq_desc *desc, | 
 | 304 | 		  struct pt_regs *regs); | 
 | 305 | extern void fastcall | 
 | 306 | handle_bad_irq(unsigned int irq, struct irq_desc *desc, struct pt_regs *regs); | 
 | 307 |  | 
 | 308 | /* | 
 | 309 |  * Get a descriptive string for the highlevel handler, for | 
 | 310 |  * /proc/interrupts output: | 
 | 311 |  */ | 
 | 312 | extern const char * | 
 | 313 | handle_irq_name(void fastcall (*handle)(unsigned int, struct irq_desc *, | 
 | 314 | 					struct pt_regs *)); | 
 | 315 |  | 
 | 316 | /* | 
 | 317 |  * Monolithic do_IRQ implementation. | 
 | 318 |  * (is an explicit fastcall, because i386 4KSTACKS calls it from assembly) | 
| Ingo Molnar | 2e60bbb | 2006-06-29 02:24:39 -0700 | [diff] [blame] | 319 |  */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 320 | extern fastcall unsigned int __do_IRQ(unsigned int irq, struct pt_regs *regs); | 
| Ingo Molnar | 2e60bbb | 2006-06-29 02:24:39 -0700 | [diff] [blame] | 321 |  | 
| Ingo Molnar | dae8620 | 2006-06-29 02:24:52 -0700 | [diff] [blame] | 322 | /* | 
 | 323 |  * Architectures call this to let the generic IRQ layer | 
 | 324 |  * handle an interrupt. If the descriptor is attached to an | 
 | 325 |  * irqchip-style controller then we call the ->handle_irq() handler, | 
 | 326 |  * and it calls __do_IRQ() if it's attached to an irqtype-style controller. | 
 | 327 |  */ | 
 | 328 | static inline void generic_handle_irq(unsigned int irq, struct pt_regs *regs) | 
 | 329 | { | 
 | 330 | 	struct irq_desc *desc = irq_desc + irq; | 
 | 331 |  | 
 | 332 | 	if (likely(desc->handle_irq)) | 
 | 333 | 		desc->handle_irq(irq, desc, regs); | 
 | 334 | 	else | 
 | 335 | 		__do_IRQ(irq, regs); | 
 | 336 | } | 
 | 337 |  | 
| Thomas Gleixner | 6a6de9e | 2006-06-29 02:24:51 -0700 | [diff] [blame] | 338 | /* Handling of unhandled and spurious interrupts: */ | 
| Ingo Molnar | 34ffdb7 | 2006-06-29 02:24:40 -0700 | [diff] [blame] | 339 | extern void note_interrupt(unsigned int irq, struct irq_desc *desc, | 
| Ingo Molnar | 2e60bbb | 2006-06-29 02:24:39 -0700 | [diff] [blame] | 340 | 			   int action_ret, struct pt_regs *regs); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 341 |  | 
| Thomas Gleixner | a4633ad | 2006-06-29 02:24:48 -0700 | [diff] [blame] | 342 | /* Resending of interrupts :*/ | 
 | 343 | void check_irq_resend(struct irq_desc *desc, unsigned int irq); | 
 | 344 |  | 
| Thomas Gleixner | 6a6de9e | 2006-06-29 02:24:51 -0700 | [diff] [blame] | 345 | /* Initialize /proc/irq/ */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 346 | extern void init_irq_proc(void); | 
| Ivan Kokshaysky | eee4526 | 2006-01-06 00:12:21 -0800 | [diff] [blame] | 347 |  | 
| Thomas Gleixner | 6a6de9e | 2006-06-29 02:24:51 -0700 | [diff] [blame] | 348 | /* Enable/disable irq debugging output: */ | 
 | 349 | extern int noirqdebug_setup(char *str); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 350 |  | 
| Thomas Gleixner | 6a6de9e | 2006-06-29 02:24:51 -0700 | [diff] [blame] | 351 | /* Checks whether the interrupt can be requested by request_irq(): */ | 
 | 352 | extern int can_request_irq(unsigned int irq, unsigned long irqflags); | 
 | 353 |  | 
| Thomas Gleixner | f8b5473 | 2006-07-01 22:30:08 +0100 | [diff] [blame] | 354 | /* Dummy irq-chip implementations: */ | 
| Thomas Gleixner | 6a6de9e | 2006-06-29 02:24:51 -0700 | [diff] [blame] | 355 | extern struct irq_chip no_irq_chip; | 
| Thomas Gleixner | f8b5473 | 2006-07-01 22:30:08 +0100 | [diff] [blame] | 356 | extern struct irq_chip dummy_irq_chip; | 
| Thomas Gleixner | 6a6de9e | 2006-06-29 02:24:51 -0700 | [diff] [blame] | 357 |  | 
 | 358 | extern void | 
 | 359 | set_irq_chip_and_handler(unsigned int irq, struct irq_chip *chip, | 
 | 360 | 			 void fastcall (*handle)(unsigned int, | 
 | 361 | 						 struct irq_desc *, | 
 | 362 | 						 struct pt_regs *)); | 
 | 363 | extern void | 
 | 364 | __set_irq_handler(unsigned int irq, | 
 | 365 | 		  void fastcall (*handle)(unsigned int, struct irq_desc *, | 
 | 366 | 					  struct pt_regs *), | 
 | 367 | 		  int is_chained); | 
 | 368 |  | 
 | 369 | /* | 
 | 370 |  * Set a highlevel flow handler for a given IRQ: | 
 | 371 |  */ | 
 | 372 | static inline void | 
 | 373 | set_irq_handler(unsigned int irq, | 
 | 374 | 		void fastcall (*handle)(unsigned int, struct irq_desc *, | 
 | 375 | 					struct pt_regs *)) | 
 | 376 | { | 
 | 377 | 	__set_irq_handler(irq, handle, 0); | 
 | 378 | } | 
 | 379 |  | 
 | 380 | /* | 
 | 381 |  * Set a highlevel chained flow handler for a given IRQ. | 
 | 382 |  * (a chained handler is automatically enabled and set to | 
 | 383 |  *  IRQ_NOREQUEST and IRQ_NOPROBE) | 
 | 384 |  */ | 
 | 385 | static inline void | 
 | 386 | set_irq_chained_handler(unsigned int irq, | 
 | 387 | 			void fastcall (*handle)(unsigned int, struct irq_desc *, | 
 | 388 | 						struct pt_regs *)) | 
 | 389 | { | 
 | 390 | 	__set_irq_handler(irq, handle, 1); | 
 | 391 | } | 
 | 392 |  | 
| Thomas Gleixner | dd87eb3 | 2006-06-29 02:24:53 -0700 | [diff] [blame] | 393 | /* Set/get chip/data for an IRQ: */ | 
 | 394 |  | 
 | 395 | extern int set_irq_chip(unsigned int irq, struct irq_chip *chip); | 
 | 396 | extern int set_irq_data(unsigned int irq, void *data); | 
 | 397 | extern int set_irq_chip_data(unsigned int irq, void *data); | 
 | 398 | extern int set_irq_type(unsigned int irq, unsigned int type); | 
 | 399 |  | 
 | 400 | #define get_irq_chip(irq)	(irq_desc[irq].chip) | 
 | 401 | #define get_irq_chip_data(irq)	(irq_desc[irq].chip_data) | 
 | 402 | #define get_irq_data(irq)	(irq_desc[irq].handler_data) | 
 | 403 |  | 
| Thomas Gleixner | 6a6de9e | 2006-06-29 02:24:51 -0700 | [diff] [blame] | 404 | #endif /* CONFIG_GENERIC_HARDIRQS */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 405 |  | 
| Ingo Molnar | 06fcb0c | 2006-06-29 02:24:40 -0700 | [diff] [blame] | 406 | #endif /* !CONFIG_S390 */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 407 |  | 
| Ingo Molnar | 06fcb0c | 2006-06-29 02:24:40 -0700 | [diff] [blame] | 408 | #endif /* _LINUX_IRQ_H */ |