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