Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
Uwe Zeisberger | f30c226 | 2006-10-03 23:01:26 +0200 | [diff] [blame] | 2 | * linux/arch/ia64/kernel/irq_ia64.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3 | * |
| 4 | * Copyright (C) 1998-2001 Hewlett-Packard Co |
| 5 | * Stephane Eranian <eranian@hpl.hp.com> |
| 6 | * David Mosberger-Tang <davidm@hpl.hp.com> |
| 7 | * |
| 8 | * 6/10/99: Updated to bring in sync with x86 version to facilitate |
| 9 | * support for SMP and different interrupt controllers. |
| 10 | * |
| 11 | * 09/15/00 Goutham Rao <goutham.rao@intel.com> Implemented pci_irq_to_vector |
| 12 | * PCI to vector allocation routine. |
| 13 | * 04/14/2004 Ashok Raj <ashok.raj@intel.com> |
| 14 | * Added CPU Hotplug handling for IPF. |
| 15 | */ |
| 16 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 17 | #include <linux/module.h> |
| 18 | |
| 19 | #include <linux/jiffies.h> |
| 20 | #include <linux/errno.h> |
| 21 | #include <linux/init.h> |
| 22 | #include <linux/interrupt.h> |
| 23 | #include <linux/ioport.h> |
| 24 | #include <linux/kernel_stat.h> |
| 25 | #include <linux/slab.h> |
| 26 | #include <linux/ptrace.h> |
| 27 | #include <linux/random.h> /* for rand_initialize_irq() */ |
| 28 | #include <linux/signal.h> |
| 29 | #include <linux/smp.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 30 | #include <linux/threads.h> |
| 31 | #include <linux/bitops.h> |
Eric W. Biederman | b6cf258 | 2006-10-04 02:16:38 -0700 | [diff] [blame] | 32 | #include <linux/irq.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 33 | |
| 34 | #include <asm/delay.h> |
| 35 | #include <asm/intrinsics.h> |
| 36 | #include <asm/io.h> |
| 37 | #include <asm/hw_irq.h> |
| 38 | #include <asm/machvec.h> |
| 39 | #include <asm/pgtable.h> |
| 40 | #include <asm/system.h> |
Jack Steiner | 3be44b9 | 2007-05-08 14:50:43 -0700 | [diff] [blame] | 41 | #include <asm/tlbflush.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 42 | |
| 43 | #ifdef CONFIG_PERFMON |
| 44 | # include <asm/perfmon.h> |
| 45 | #endif |
| 46 | |
| 47 | #define IRQ_DEBUG 0 |
| 48 | |
Yasuaki Ishimatsu | e1b30a3 | 2007-07-17 21:22:23 +0900 | [diff] [blame] | 49 | #define IRQ_VECTOR_UNASSIGNED (0) |
| 50 | |
| 51 | #define IRQ_UNUSED (0) |
| 52 | #define IRQ_USED (1) |
| 53 | #define IRQ_RSVD (2) |
| 54 | |
Mark Maule | 1008307 | 2006-04-14 16:03:49 -0500 | [diff] [blame] | 55 | /* These can be overridden in platform_irq_init */ |
| 56 | int ia64_first_device_vector = IA64_DEF_FIRST_DEVICE_VECTOR; |
| 57 | int ia64_last_device_vector = IA64_DEF_LAST_DEVICE_VECTOR; |
| 58 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 59 | /* default base addr of IPI table */ |
| 60 | void __iomem *ipi_base_addr = ((void __iomem *) |
| 61 | (__IA64_UNCACHED_OFFSET | IA64_IPI_DEFAULT_BASE_ADDR)); |
| 62 | |
Yasuaki Ishimatsu | 4994be1 | 2007-07-17 21:22:33 +0900 | [diff] [blame] | 63 | static cpumask_t vector_allocation_domain(int cpu); |
| 64 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 65 | /* |
| 66 | * Legacy IRQ to IA-64 vector translation table. |
| 67 | */ |
| 68 | __u8 isa_irq_to_vector_map[16] = { |
| 69 | /* 8259 IRQ translation, first 16 entries */ |
| 70 | 0x2f, 0x20, 0x2e, 0x2d, 0x2c, 0x2b, 0x2a, 0x29, |
| 71 | 0x28, 0x27, 0x26, 0x25, 0x24, 0x23, 0x22, 0x21 |
| 72 | }; |
| 73 | EXPORT_SYMBOL(isa_irq_to_vector_map); |
| 74 | |
Yasuaki Ishimatsu | e1b30a3 | 2007-07-17 21:22:23 +0900 | [diff] [blame] | 75 | DEFINE_SPINLOCK(vector_lock); |
| 76 | |
| 77 | struct irq_cfg irq_cfg[NR_IRQS] __read_mostly = { |
Yasuaki Ishimatsu | 4994be1 | 2007-07-17 21:22:33 +0900 | [diff] [blame] | 78 | [0 ... NR_IRQS - 1] = { |
| 79 | .vector = IRQ_VECTOR_UNASSIGNED, |
| 80 | .domain = CPU_MASK_NONE |
| 81 | } |
Yasuaki Ishimatsu | e1b30a3 | 2007-07-17 21:22:23 +0900 | [diff] [blame] | 82 | }; |
| 83 | |
| 84 | DEFINE_PER_CPU(int[IA64_NUM_VECTORS], vector_irq) = { |
| 85 | [0 ... IA64_NUM_VECTORS - 1] = IA64_SPURIOUS_INT_VECTOR |
| 86 | }; |
| 87 | |
Kenji Kaneshige | 6ffbc823 | 2007-07-25 17:59:22 +0900 | [diff] [blame^] | 88 | static cpumask_t vector_table[IA64_NUM_VECTORS] = { |
| 89 | [0 ... IA64_NUM_VECTORS - 1] = CPU_MASK_NONE |
Yasuaki Ishimatsu | 4994be1 | 2007-07-17 21:22:33 +0900 | [diff] [blame] | 90 | }; |
| 91 | |
Yasuaki Ishimatsu | e1b30a3 | 2007-07-17 21:22:23 +0900 | [diff] [blame] | 92 | static int irq_status[NR_IRQS] = { |
| 93 | [0 ... NR_IRQS -1] = IRQ_UNUSED |
| 94 | }; |
| 95 | |
| 96 | int check_irq_used(int irq) |
| 97 | { |
| 98 | if (irq_status[irq] == IRQ_USED) |
| 99 | return 1; |
| 100 | |
| 101 | return -1; |
| 102 | } |
| 103 | |
| 104 | static void reserve_irq(unsigned int irq) |
| 105 | { |
| 106 | unsigned long flags; |
| 107 | |
| 108 | spin_lock_irqsave(&vector_lock, flags); |
| 109 | irq_status[irq] = IRQ_RSVD; |
| 110 | spin_unlock_irqrestore(&vector_lock, flags); |
| 111 | } |
| 112 | |
| 113 | static inline int find_unassigned_irq(void) |
| 114 | { |
| 115 | int irq; |
| 116 | |
| 117 | for (irq = IA64_FIRST_DEVICE_VECTOR; irq < NR_IRQS; irq++) |
| 118 | if (irq_status[irq] == IRQ_UNUSED) |
| 119 | return irq; |
| 120 | return -ENOSPC; |
| 121 | } |
| 122 | |
Yasuaki Ishimatsu | 4994be1 | 2007-07-17 21:22:33 +0900 | [diff] [blame] | 123 | static inline int find_unassigned_vector(cpumask_t domain) |
Yasuaki Ishimatsu | e1b30a3 | 2007-07-17 21:22:23 +0900 | [diff] [blame] | 124 | { |
Yasuaki Ishimatsu | 4994be1 | 2007-07-17 21:22:33 +0900 | [diff] [blame] | 125 | cpumask_t mask; |
Kenji Kaneshige | 6ffbc823 | 2007-07-25 17:59:22 +0900 | [diff] [blame^] | 126 | int pos, vector; |
Yasuaki Ishimatsu | e1b30a3 | 2007-07-17 21:22:23 +0900 | [diff] [blame] | 127 | |
Yasuaki Ishimatsu | 4994be1 | 2007-07-17 21:22:33 +0900 | [diff] [blame] | 128 | cpus_and(mask, domain, cpu_online_map); |
| 129 | if (cpus_empty(mask)) |
| 130 | return -EINVAL; |
| 131 | |
| 132 | for (pos = 0; pos < IA64_NUM_DEVICE_VECTORS; pos++) { |
Kenji Kaneshige | 6ffbc823 | 2007-07-25 17:59:22 +0900 | [diff] [blame^] | 133 | vector = IA64_FIRST_DEVICE_VECTOR + pos; |
| 134 | cpus_and(mask, domain, vector_table[vector]); |
Yasuaki Ishimatsu | 4994be1 | 2007-07-17 21:22:33 +0900 | [diff] [blame] | 135 | if (!cpus_empty(mask)) |
| 136 | continue; |
Kenji Kaneshige | 6ffbc823 | 2007-07-25 17:59:22 +0900 | [diff] [blame^] | 137 | return vector; |
Yasuaki Ishimatsu | 4994be1 | 2007-07-17 21:22:33 +0900 | [diff] [blame] | 138 | } |
Yasuaki Ishimatsu | e1b30a3 | 2007-07-17 21:22:23 +0900 | [diff] [blame] | 139 | return -ENOSPC; |
| 140 | } |
| 141 | |
Yasuaki Ishimatsu | 4994be1 | 2007-07-17 21:22:33 +0900 | [diff] [blame] | 142 | static int __bind_irq_vector(int irq, int vector, cpumask_t domain) |
Yasuaki Ishimatsu | e1b30a3 | 2007-07-17 21:22:23 +0900 | [diff] [blame] | 143 | { |
Yasuaki Ishimatsu | 4994be1 | 2007-07-17 21:22:33 +0900 | [diff] [blame] | 144 | cpumask_t mask; |
Kenji Kaneshige | 6ffbc823 | 2007-07-25 17:59:22 +0900 | [diff] [blame^] | 145 | int cpu; |
Yasuaki Ishimatsu | 4994be1 | 2007-07-17 21:22:33 +0900 | [diff] [blame] | 146 | struct irq_cfg *cfg = &irq_cfg[irq]; |
Yasuaki Ishimatsu | e1b30a3 | 2007-07-17 21:22:23 +0900 | [diff] [blame] | 147 | |
Yasuaki Ishimatsu | 4994be1 | 2007-07-17 21:22:33 +0900 | [diff] [blame] | 148 | cpus_and(mask, domain, cpu_online_map); |
| 149 | if (cpus_empty(mask)) |
| 150 | return -EINVAL; |
| 151 | if ((cfg->vector == vector) && cpus_equal(cfg->domain, domain)) |
Yasuaki Ishimatsu | e1b30a3 | 2007-07-17 21:22:23 +0900 | [diff] [blame] | 152 | return 0; |
Yasuaki Ishimatsu | 4994be1 | 2007-07-17 21:22:33 +0900 | [diff] [blame] | 153 | if (cfg->vector != IRQ_VECTOR_UNASSIGNED) |
Yasuaki Ishimatsu | e1b30a3 | 2007-07-17 21:22:23 +0900 | [diff] [blame] | 154 | return -EBUSY; |
Yasuaki Ishimatsu | 4994be1 | 2007-07-17 21:22:33 +0900 | [diff] [blame] | 155 | for_each_cpu_mask(cpu, mask) |
Yasuaki Ishimatsu | e1b30a3 | 2007-07-17 21:22:23 +0900 | [diff] [blame] | 156 | per_cpu(vector_irq, cpu)[vector] = irq; |
Yasuaki Ishimatsu | 4994be1 | 2007-07-17 21:22:33 +0900 | [diff] [blame] | 157 | cfg->vector = vector; |
| 158 | cfg->domain = domain; |
Yasuaki Ishimatsu | e1b30a3 | 2007-07-17 21:22:23 +0900 | [diff] [blame] | 159 | irq_status[irq] = IRQ_USED; |
Kenji Kaneshige | 6ffbc823 | 2007-07-25 17:59:22 +0900 | [diff] [blame^] | 160 | cpus_or(vector_table[vector], vector_table[vector], domain); |
Yasuaki Ishimatsu | e1b30a3 | 2007-07-17 21:22:23 +0900 | [diff] [blame] | 161 | return 0; |
| 162 | } |
| 163 | |
Yasuaki Ishimatsu | 4994be1 | 2007-07-17 21:22:33 +0900 | [diff] [blame] | 164 | int bind_irq_vector(int irq, int vector, cpumask_t domain) |
Yasuaki Ishimatsu | e1b30a3 | 2007-07-17 21:22:23 +0900 | [diff] [blame] | 165 | { |
| 166 | unsigned long flags; |
| 167 | int ret; |
| 168 | |
| 169 | spin_lock_irqsave(&vector_lock, flags); |
Yasuaki Ishimatsu | 4994be1 | 2007-07-17 21:22:33 +0900 | [diff] [blame] | 170 | ret = __bind_irq_vector(irq, vector, domain); |
Yasuaki Ishimatsu | e1b30a3 | 2007-07-17 21:22:23 +0900 | [diff] [blame] | 171 | spin_unlock_irqrestore(&vector_lock, flags); |
| 172 | return ret; |
| 173 | } |
| 174 | |
Yasuaki Ishimatsu | cd378f1 | 2007-07-17 21:22:48 +0900 | [diff] [blame] | 175 | static void __clear_irq_vector(int irq) |
Yasuaki Ishimatsu | e1b30a3 | 2007-07-17 21:22:23 +0900 | [diff] [blame] | 176 | { |
Kenji Kaneshige | 6ffbc823 | 2007-07-25 17:59:22 +0900 | [diff] [blame^] | 177 | int vector, cpu; |
Yasuaki Ishimatsu | 4994be1 | 2007-07-17 21:22:33 +0900 | [diff] [blame] | 178 | cpumask_t mask; |
| 179 | cpumask_t domain; |
| 180 | struct irq_cfg *cfg = &irq_cfg[irq]; |
Yasuaki Ishimatsu | e1b30a3 | 2007-07-17 21:22:23 +0900 | [diff] [blame] | 181 | |
Yasuaki Ishimatsu | e1b30a3 | 2007-07-17 21:22:23 +0900 | [diff] [blame] | 182 | BUG_ON((unsigned)irq >= NR_IRQS); |
Yasuaki Ishimatsu | 4994be1 | 2007-07-17 21:22:33 +0900 | [diff] [blame] | 183 | BUG_ON(cfg->vector == IRQ_VECTOR_UNASSIGNED); |
| 184 | vector = cfg->vector; |
| 185 | domain = cfg->domain; |
| 186 | cpus_and(mask, cfg->domain, cpu_online_map); |
| 187 | for_each_cpu_mask(cpu, mask) |
Yasuaki Ishimatsu | e1b30a3 | 2007-07-17 21:22:23 +0900 | [diff] [blame] | 188 | per_cpu(vector_irq, cpu)[vector] = IA64_SPURIOUS_INT_VECTOR; |
Yasuaki Ishimatsu | 4994be1 | 2007-07-17 21:22:33 +0900 | [diff] [blame] | 189 | cfg->vector = IRQ_VECTOR_UNASSIGNED; |
| 190 | cfg->domain = CPU_MASK_NONE; |
Yasuaki Ishimatsu | e1b30a3 | 2007-07-17 21:22:23 +0900 | [diff] [blame] | 191 | irq_status[irq] = IRQ_UNUSED; |
Kenji Kaneshige | 6ffbc823 | 2007-07-25 17:59:22 +0900 | [diff] [blame^] | 192 | cpus_andnot(vector_table[vector], vector_table[vector], domain); |
Yasuaki Ishimatsu | cd378f1 | 2007-07-17 21:22:48 +0900 | [diff] [blame] | 193 | } |
| 194 | |
| 195 | static void clear_irq_vector(int irq) |
| 196 | { |
| 197 | unsigned long flags; |
| 198 | |
| 199 | spin_lock_irqsave(&vector_lock, flags); |
| 200 | __clear_irq_vector(irq); |
Yasuaki Ishimatsu | e1b30a3 | 2007-07-17 21:22:23 +0900 | [diff] [blame] | 201 | spin_unlock_irqrestore(&vector_lock, flags); |
| 202 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 203 | |
| 204 | int |
Kenji Kaneshige | 3b5cc09 | 2005-07-10 21:49:00 -0700 | [diff] [blame] | 205 | assign_irq_vector (int irq) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 206 | { |
Yasuaki Ishimatsu | e1b30a3 | 2007-07-17 21:22:23 +0900 | [diff] [blame] | 207 | unsigned long flags; |
Yasuaki Ishimatsu | 4994be1 | 2007-07-17 21:22:33 +0900 | [diff] [blame] | 208 | int vector, cpu; |
| 209 | cpumask_t domain; |
Yasuaki Ishimatsu | e1b30a3 | 2007-07-17 21:22:23 +0900 | [diff] [blame] | 210 | |
Yasuaki Ishimatsu | 4994be1 | 2007-07-17 21:22:33 +0900 | [diff] [blame] | 211 | vector = -ENOSPC; |
| 212 | |
| 213 | spin_lock_irqsave(&vector_lock, flags); |
Yasuaki Ishimatsu | 4994be1 | 2007-07-17 21:22:33 +0900 | [diff] [blame] | 214 | for_each_online_cpu(cpu) { |
| 215 | domain = vector_allocation_domain(cpu); |
| 216 | vector = find_unassigned_vector(domain); |
| 217 | if (vector >= 0) |
| 218 | break; |
| 219 | } |
Yasuaki Ishimatsu | e1b30a3 | 2007-07-17 21:22:23 +0900 | [diff] [blame] | 220 | if (vector < 0) |
| 221 | goto out; |
Yasuaki Ishimatsu | 8f5ad1a | 2007-07-24 22:09:09 +0900 | [diff] [blame] | 222 | if (irq == AUTO_ASSIGN) |
| 223 | irq = vector; |
Yasuaki Ishimatsu | 4994be1 | 2007-07-17 21:22:33 +0900 | [diff] [blame] | 224 | BUG_ON(__bind_irq_vector(irq, vector, domain)); |
Yasuaki Ishimatsu | e1b30a3 | 2007-07-17 21:22:23 +0900 | [diff] [blame] | 225 | out: |
Yasuaki Ishimatsu | 4994be1 | 2007-07-17 21:22:33 +0900 | [diff] [blame] | 226 | spin_unlock_irqrestore(&vector_lock, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 227 | return vector; |
| 228 | } |
| 229 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 230 | void |
| 231 | free_irq_vector (int vector) |
| 232 | { |
Yasuaki Ishimatsu | e1b30a3 | 2007-07-17 21:22:23 +0900 | [diff] [blame] | 233 | if (vector < IA64_FIRST_DEVICE_VECTOR || |
| 234 | vector > IA64_LAST_DEVICE_VECTOR) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 235 | return; |
Yasuaki Ishimatsu | e1b30a3 | 2007-07-17 21:22:23 +0900 | [diff] [blame] | 236 | clear_irq_vector(vector); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 237 | } |
| 238 | |
Mark Maule | 1008307 | 2006-04-14 16:03:49 -0500 | [diff] [blame] | 239 | int |
| 240 | reserve_irq_vector (int vector) |
| 241 | { |
Mark Maule | 1008307 | 2006-04-14 16:03:49 -0500 | [diff] [blame] | 242 | if (vector < IA64_FIRST_DEVICE_VECTOR || |
| 243 | vector > IA64_LAST_DEVICE_VECTOR) |
| 244 | return -EINVAL; |
Yasuaki Ishimatsu | 4994be1 | 2007-07-17 21:22:33 +0900 | [diff] [blame] | 245 | return !!bind_irq_vector(vector, vector, CPU_MASK_ALL); |
Yasuaki Ishimatsu | e1b30a3 | 2007-07-17 21:22:23 +0900 | [diff] [blame] | 246 | } |
Mark Maule | 1008307 | 2006-04-14 16:03:49 -0500 | [diff] [blame] | 247 | |
Yasuaki Ishimatsu | e1b30a3 | 2007-07-17 21:22:23 +0900 | [diff] [blame] | 248 | /* |
| 249 | * Initialize vector_irq on a new cpu. This function must be called |
| 250 | * with vector_lock held. |
| 251 | */ |
| 252 | void __setup_vector_irq(int cpu) |
| 253 | { |
| 254 | int irq, vector; |
| 255 | |
| 256 | /* Clear vector_irq */ |
| 257 | for (vector = 0; vector < IA64_NUM_VECTORS; ++vector) |
| 258 | per_cpu(vector_irq, cpu)[vector] = IA64_SPURIOUS_INT_VECTOR; |
| 259 | /* Mark the inuse vectors */ |
| 260 | for (irq = 0; irq < NR_IRQS; ++irq) { |
Yasuaki Ishimatsu | 4994be1 | 2007-07-17 21:22:33 +0900 | [diff] [blame] | 261 | if (!cpu_isset(cpu, irq_cfg[irq].domain)) |
| 262 | continue; |
| 263 | vector = irq_to_vector(irq); |
| 264 | per_cpu(vector_irq, cpu)[vector] = irq; |
Yasuaki Ishimatsu | e1b30a3 | 2007-07-17 21:22:23 +0900 | [diff] [blame] | 265 | } |
| 266 | } |
| 267 | |
Yasuaki Ishimatsu | e5bd762 | 2007-07-17 21:23:03 +0900 | [diff] [blame] | 268 | #if defined(CONFIG_SMP) && (defined(CONFIG_IA64_GENERIC) || defined(CONFIG_IA64_DIG)) |
Yasuaki Ishimatsu | d080d39 | 2007-07-17 21:22:55 +0900 | [diff] [blame] | 269 | static enum vector_domain_type { |
| 270 | VECTOR_DOMAIN_NONE, |
| 271 | VECTOR_DOMAIN_PERCPU |
| 272 | } vector_domain_type = VECTOR_DOMAIN_NONE; |
| 273 | |
| 274 | static cpumask_t vector_allocation_domain(int cpu) |
| 275 | { |
| 276 | if (vector_domain_type == VECTOR_DOMAIN_PERCPU) |
| 277 | return cpumask_of_cpu(cpu); |
| 278 | return CPU_MASK_ALL; |
| 279 | } |
| 280 | |
| 281 | static int __init parse_vector_domain(char *arg) |
| 282 | { |
| 283 | if (!arg) |
| 284 | return -EINVAL; |
| 285 | if (!strcmp(arg, "percpu")) { |
| 286 | vector_domain_type = VECTOR_DOMAIN_PERCPU; |
| 287 | no_int_routing = 1; |
| 288 | } |
| 289 | return 1; |
| 290 | } |
| 291 | early_param("vector", parse_vector_domain); |
| 292 | #else |
Yasuaki Ishimatsu | 4994be1 | 2007-07-17 21:22:33 +0900 | [diff] [blame] | 293 | static cpumask_t vector_allocation_domain(int cpu) |
| 294 | { |
| 295 | return CPU_MASK_ALL; |
| 296 | } |
Yasuaki Ishimatsu | d080d39 | 2007-07-17 21:22:55 +0900 | [diff] [blame] | 297 | #endif |
Yasuaki Ishimatsu | 4994be1 | 2007-07-17 21:22:33 +0900 | [diff] [blame] | 298 | |
| 299 | |
Yasuaki Ishimatsu | e1b30a3 | 2007-07-17 21:22:23 +0900 | [diff] [blame] | 300 | void destroy_and_reserve_irq(unsigned int irq) |
| 301 | { |
| 302 | dynamic_irq_cleanup(irq); |
| 303 | |
| 304 | clear_irq_vector(irq); |
| 305 | reserve_irq(irq); |
Mark Maule | 1008307 | 2006-04-14 16:03:49 -0500 | [diff] [blame] | 306 | } |
| 307 | |
Yasuaki Ishimatsu | cd378f1 | 2007-07-17 21:22:48 +0900 | [diff] [blame] | 308 | static int __reassign_irq_vector(int irq, int cpu) |
| 309 | { |
| 310 | struct irq_cfg *cfg = &irq_cfg[irq]; |
| 311 | int vector; |
| 312 | cpumask_t domain; |
| 313 | |
| 314 | if (cfg->vector == IRQ_VECTOR_UNASSIGNED || !cpu_online(cpu)) |
| 315 | return -EINVAL; |
| 316 | if (cpu_isset(cpu, cfg->domain)) |
| 317 | return 0; |
| 318 | domain = vector_allocation_domain(cpu); |
| 319 | vector = find_unassigned_vector(domain); |
| 320 | if (vector < 0) |
| 321 | return -ENOSPC; |
| 322 | __clear_irq_vector(irq); |
| 323 | BUG_ON(__bind_irq_vector(irq, vector, domain)); |
| 324 | return 0; |
| 325 | } |
| 326 | |
| 327 | int reassign_irq_vector(int irq, int cpu) |
| 328 | { |
| 329 | unsigned long flags; |
| 330 | int ret; |
| 331 | |
| 332 | spin_lock_irqsave(&vector_lock, flags); |
| 333 | ret = __reassign_irq_vector(irq, cpu); |
| 334 | spin_unlock_irqrestore(&vector_lock, flags); |
| 335 | return ret; |
| 336 | } |
| 337 | |
Eric W. Biederman | b6cf258 | 2006-10-04 02:16:38 -0700 | [diff] [blame] | 338 | /* |
| 339 | * Dynamic irq allocate and deallocation for MSI |
| 340 | */ |
| 341 | int create_irq(void) |
| 342 | { |
Yasuaki Ishimatsu | e1b30a3 | 2007-07-17 21:22:23 +0900 | [diff] [blame] | 343 | unsigned long flags; |
Yasuaki Ishimatsu | 4994be1 | 2007-07-17 21:22:33 +0900 | [diff] [blame] | 344 | int irq, vector, cpu; |
| 345 | cpumask_t domain; |
Eric W. Biederman | b6cf258 | 2006-10-04 02:16:38 -0700 | [diff] [blame] | 346 | |
Yasuaki Ishimatsu | 4994be1 | 2007-07-17 21:22:33 +0900 | [diff] [blame] | 347 | irq = vector = -ENOSPC; |
Yasuaki Ishimatsu | e1b30a3 | 2007-07-17 21:22:23 +0900 | [diff] [blame] | 348 | spin_lock_irqsave(&vector_lock, flags); |
Yasuaki Ishimatsu | 4994be1 | 2007-07-17 21:22:33 +0900 | [diff] [blame] | 349 | for_each_online_cpu(cpu) { |
| 350 | domain = vector_allocation_domain(cpu); |
| 351 | vector = find_unassigned_vector(domain); |
| 352 | if (vector >= 0) |
| 353 | break; |
| 354 | } |
Yasuaki Ishimatsu | e1b30a3 | 2007-07-17 21:22:23 +0900 | [diff] [blame] | 355 | if (vector < 0) |
| 356 | goto out; |
| 357 | irq = find_unassigned_irq(); |
| 358 | if (irq < 0) |
| 359 | goto out; |
Yasuaki Ishimatsu | 4994be1 | 2007-07-17 21:22:33 +0900 | [diff] [blame] | 360 | BUG_ON(__bind_irq_vector(irq, vector, domain)); |
Yasuaki Ishimatsu | e1b30a3 | 2007-07-17 21:22:23 +0900 | [diff] [blame] | 361 | out: |
| 362 | spin_unlock_irqrestore(&vector_lock, flags); |
| 363 | if (irq >= 0) |
| 364 | dynamic_irq_init(irq); |
| 365 | return irq; |
Eric W. Biederman | b6cf258 | 2006-10-04 02:16:38 -0700 | [diff] [blame] | 366 | } |
| 367 | |
| 368 | void destroy_irq(unsigned int irq) |
| 369 | { |
| 370 | dynamic_irq_cleanup(irq); |
Yasuaki Ishimatsu | e1b30a3 | 2007-07-17 21:22:23 +0900 | [diff] [blame] | 371 | clear_irq_vector(irq); |
Eric W. Biederman | b6cf258 | 2006-10-04 02:16:38 -0700 | [diff] [blame] | 372 | } |
| 373 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 374 | #ifdef CONFIG_SMP |
| 375 | # define IS_RESCHEDULE(vec) (vec == IA64_IPI_RESCHEDULE) |
Jack Steiner | 3be44b9 | 2007-05-08 14:50:43 -0700 | [diff] [blame] | 376 | # define IS_LOCAL_TLB_FLUSH(vec) (vec == IA64_IPI_LOCAL_TLB_FLUSH) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 377 | #else |
| 378 | # define IS_RESCHEDULE(vec) (0) |
Jack Steiner | 3be44b9 | 2007-05-08 14:50:43 -0700 | [diff] [blame] | 379 | # define IS_LOCAL_TLB_FLUSH(vec) (0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 380 | #endif |
| 381 | /* |
| 382 | * That's where the IVT branches when we get an external |
| 383 | * interrupt. This branches to the correct hardware IRQ handler via |
| 384 | * function ptr. |
| 385 | */ |
| 386 | void |
| 387 | ia64_handle_irq (ia64_vector vector, struct pt_regs *regs) |
| 388 | { |
David Howells | 7d12e78 | 2006-10-05 14:55:46 +0100 | [diff] [blame] | 389 | struct pt_regs *old_regs = set_irq_regs(regs); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 390 | unsigned long saved_tpr; |
| 391 | |
| 392 | #if IRQ_DEBUG |
| 393 | { |
| 394 | unsigned long bsp, sp; |
| 395 | |
| 396 | /* |
| 397 | * Note: if the interrupt happened while executing in |
| 398 | * the context switch routine (ia64_switch_to), we may |
| 399 | * get a spurious stack overflow here. This is |
| 400 | * because the register and the memory stack are not |
| 401 | * switched atomically. |
| 402 | */ |
| 403 | bsp = ia64_getreg(_IA64_REG_AR_BSP); |
| 404 | sp = ia64_getreg(_IA64_REG_SP); |
| 405 | |
| 406 | if ((sp - bsp) < 1024) { |
| 407 | static unsigned char count; |
| 408 | static long last_time; |
| 409 | |
| 410 | if (jiffies - last_time > 5*HZ) |
| 411 | count = 0; |
| 412 | if (++count < 5) { |
| 413 | last_time = jiffies; |
| 414 | printk("ia64_handle_irq: DANGER: less than " |
| 415 | "1KB of free stack space!!\n" |
| 416 | "(bsp=0x%lx, sp=%lx)\n", bsp, sp); |
| 417 | } |
| 418 | } |
| 419 | } |
| 420 | #endif /* IRQ_DEBUG */ |
| 421 | |
| 422 | /* |
| 423 | * Always set TPR to limit maximum interrupt nesting depth to |
| 424 | * 16 (without this, it would be ~240, which could easily lead |
| 425 | * to kernel stack overflows). |
| 426 | */ |
| 427 | irq_enter(); |
| 428 | saved_tpr = ia64_getreg(_IA64_REG_CR_TPR); |
| 429 | ia64_srlz_d(); |
| 430 | while (vector != IA64_SPURIOUS_INT_VECTOR) { |
Jack Steiner | 3be44b9 | 2007-05-08 14:50:43 -0700 | [diff] [blame] | 431 | if (unlikely(IS_LOCAL_TLB_FLUSH(vector))) { |
| 432 | smp_local_flush_tlb(); |
| 433 | kstat_this_cpu.irqs[vector]++; |
| 434 | } else if (unlikely(IS_RESCHEDULE(vector))) |
| 435 | kstat_this_cpu.irqs[vector]++; |
Jack Steiner | 9b3377f | 2006-10-16 16:17:43 -0500 | [diff] [blame] | 436 | else { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 437 | ia64_setreg(_IA64_REG_CR_TPR, vector); |
| 438 | ia64_srlz_d(); |
| 439 | |
Ingo Molnar | 5fbb004 | 2006-11-16 00:43:07 -0800 | [diff] [blame] | 440 | generic_handle_irq(local_vector_to_irq(vector)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 441 | |
| 442 | /* |
| 443 | * Disable interrupts and send EOI: |
| 444 | */ |
| 445 | local_irq_disable(); |
| 446 | ia64_setreg(_IA64_REG_CR_TPR, saved_tpr); |
| 447 | } |
| 448 | ia64_eoi(); |
| 449 | vector = ia64_get_ivr(); |
| 450 | } |
| 451 | /* |
| 452 | * This must be done *after* the ia64_eoi(). For example, the keyboard softirq |
| 453 | * handler needs to be able to wait for further keyboard interrupts, which can't |
| 454 | * come through until ia64_eoi() has been done. |
| 455 | */ |
| 456 | irq_exit(); |
David Howells | 7d12e78 | 2006-10-05 14:55:46 +0100 | [diff] [blame] | 457 | set_irq_regs(old_regs); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 458 | } |
| 459 | |
| 460 | #ifdef CONFIG_HOTPLUG_CPU |
| 461 | /* |
| 462 | * This function emulates a interrupt processing when a cpu is about to be |
| 463 | * brought down. |
| 464 | */ |
| 465 | void ia64_process_pending_intr(void) |
| 466 | { |
| 467 | ia64_vector vector; |
| 468 | unsigned long saved_tpr; |
| 469 | extern unsigned int vectors_in_migration[NR_IRQS]; |
| 470 | |
| 471 | vector = ia64_get_ivr(); |
| 472 | |
| 473 | irq_enter(); |
| 474 | saved_tpr = ia64_getreg(_IA64_REG_CR_TPR); |
| 475 | ia64_srlz_d(); |
| 476 | |
| 477 | /* |
| 478 | * Perform normal interrupt style processing |
| 479 | */ |
| 480 | while (vector != IA64_SPURIOUS_INT_VECTOR) { |
Jack Steiner | 3be44b9 | 2007-05-08 14:50:43 -0700 | [diff] [blame] | 481 | if (unlikely(IS_LOCAL_TLB_FLUSH(vector))) { |
| 482 | smp_local_flush_tlb(); |
| 483 | kstat_this_cpu.irqs[vector]++; |
| 484 | } else if (unlikely(IS_RESCHEDULE(vector))) |
| 485 | kstat_this_cpu.irqs[vector]++; |
Jack Steiner | 9b3377f | 2006-10-16 16:17:43 -0500 | [diff] [blame] | 486 | else { |
Tony Luck | 8c1addb | 2006-10-06 10:09:41 -0700 | [diff] [blame] | 487 | struct pt_regs *old_regs = set_irq_regs(NULL); |
| 488 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 489 | ia64_setreg(_IA64_REG_CR_TPR, vector); |
| 490 | ia64_srlz_d(); |
| 491 | |
| 492 | /* |
| 493 | * Now try calling normal ia64_handle_irq as it would have got called |
| 494 | * from a real intr handler. Try passing null for pt_regs, hopefully |
| 495 | * it will work. I hope it works!. |
| 496 | * Probably could shared code. |
| 497 | */ |
| 498 | vectors_in_migration[local_vector_to_irq(vector)]=0; |
Ingo Molnar | 5fbb004 | 2006-11-16 00:43:07 -0800 | [diff] [blame] | 499 | generic_handle_irq(local_vector_to_irq(vector)); |
Tony Luck | 8c1addb | 2006-10-06 10:09:41 -0700 | [diff] [blame] | 500 | set_irq_regs(old_regs); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 501 | |
| 502 | /* |
| 503 | * Disable interrupts and send EOI |
| 504 | */ |
| 505 | local_irq_disable(); |
| 506 | ia64_setreg(_IA64_REG_CR_TPR, saved_tpr); |
| 507 | } |
| 508 | ia64_eoi(); |
| 509 | vector = ia64_get_ivr(); |
| 510 | } |
| 511 | irq_exit(); |
| 512 | } |
| 513 | #endif |
| 514 | |
| 515 | |
| 516 | #ifdef CONFIG_SMP |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 517 | |
Jack Steiner | 9b3377f | 2006-10-16 16:17:43 -0500 | [diff] [blame] | 518 | static irqreturn_t dummy_handler (int irq, void *dev_id) |
| 519 | { |
| 520 | BUG(); |
| 521 | } |
Jack Steiner | 3be44b9 | 2007-05-08 14:50:43 -0700 | [diff] [blame] | 522 | extern irqreturn_t handle_IPI (int irq, void *dev_id); |
Jack Steiner | 9b3377f | 2006-10-16 16:17:43 -0500 | [diff] [blame] | 523 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 524 | static struct irqaction ipi_irqaction = { |
| 525 | .handler = handle_IPI, |
Thomas Gleixner | 121a422 | 2006-07-01 19:29:17 -0700 | [diff] [blame] | 526 | .flags = IRQF_DISABLED, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 527 | .name = "IPI" |
| 528 | }; |
Jack Steiner | 9b3377f | 2006-10-16 16:17:43 -0500 | [diff] [blame] | 529 | |
| 530 | static struct irqaction resched_irqaction = { |
| 531 | .handler = dummy_handler, |
Thomas Gleixner | 38515e9 | 2007-02-14 00:33:16 -0800 | [diff] [blame] | 532 | .flags = IRQF_DISABLED, |
Jack Steiner | 9b3377f | 2006-10-16 16:17:43 -0500 | [diff] [blame] | 533 | .name = "resched" |
| 534 | }; |
Jack Steiner | 3be44b9 | 2007-05-08 14:50:43 -0700 | [diff] [blame] | 535 | |
| 536 | static struct irqaction tlb_irqaction = { |
| 537 | .handler = dummy_handler, |
akpm@linux-foundation.org | 5329571 | 2007-05-09 00:43:17 -0700 | [diff] [blame] | 538 | .flags = IRQF_DISABLED, |
Jack Steiner | 3be44b9 | 2007-05-08 14:50:43 -0700 | [diff] [blame] | 539 | .name = "tlb_flush" |
| 540 | }; |
| 541 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 542 | #endif |
| 543 | |
| 544 | void |
| 545 | register_percpu_irq (ia64_vector vec, struct irqaction *action) |
| 546 | { |
| 547 | irq_desc_t *desc; |
| 548 | unsigned int irq; |
| 549 | |
Yasuaki Ishimatsu | e1b30a3 | 2007-07-17 21:22:23 +0900 | [diff] [blame] | 550 | irq = vec; |
Yasuaki Ishimatsu | 4994be1 | 2007-07-17 21:22:33 +0900 | [diff] [blame] | 551 | BUG_ON(bind_irq_vector(irq, vec, CPU_MASK_ALL)); |
Yasuaki Ishimatsu | e1b30a3 | 2007-07-17 21:22:23 +0900 | [diff] [blame] | 552 | desc = irq_desc + irq; |
| 553 | desc->status |= IRQ_PER_CPU; |
| 554 | desc->chip = &irq_type_ia64_lsapic; |
| 555 | if (action) |
| 556 | setup_irq(irq, action); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 557 | } |
| 558 | |
| 559 | void __init |
| 560 | init_IRQ (void) |
| 561 | { |
| 562 | register_percpu_irq(IA64_SPURIOUS_INT_VECTOR, NULL); |
| 563 | #ifdef CONFIG_SMP |
| 564 | register_percpu_irq(IA64_IPI_VECTOR, &ipi_irqaction); |
Jack Steiner | 9b3377f | 2006-10-16 16:17:43 -0500 | [diff] [blame] | 565 | register_percpu_irq(IA64_IPI_RESCHEDULE, &resched_irqaction); |
Jack Steiner | 3be44b9 | 2007-05-08 14:50:43 -0700 | [diff] [blame] | 566 | register_percpu_irq(IA64_IPI_LOCAL_TLB_FLUSH, &tlb_irqaction); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 567 | #endif |
| 568 | #ifdef CONFIG_PERFMON |
| 569 | pfm_init_percpu(); |
| 570 | #endif |
| 571 | platform_irq_init(); |
| 572 | } |
| 573 | |
| 574 | void |
| 575 | ia64_send_ipi (int cpu, int vector, int delivery_mode, int redirect) |
| 576 | { |
| 577 | void __iomem *ipi_addr; |
| 578 | unsigned long ipi_data; |
| 579 | unsigned long phys_cpu_id; |
| 580 | |
| 581 | #ifdef CONFIG_SMP |
| 582 | phys_cpu_id = cpu_physical_id(cpu); |
| 583 | #else |
| 584 | phys_cpu_id = (ia64_getreg(_IA64_REG_CR_LID) >> 16) & 0xffff; |
| 585 | #endif |
| 586 | |
| 587 | /* |
| 588 | * cpu number is in 8bit ID and 8bit EID |
| 589 | */ |
| 590 | |
| 591 | ipi_data = (delivery_mode << 8) | (vector & 0xff); |
| 592 | ipi_addr = ipi_base_addr + ((phys_cpu_id << 4) | ((redirect & 1) << 3)); |
| 593 | |
| 594 | writeq(ipi_data, ipi_addr); |
| 595 | } |