Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Intel IO-APIC support for multi-Pentium hosts. |
| 3 | * |
| 4 | * Copyright (C) 1997, 1998, 1999, 2000 Ingo Molnar, Hajnalka Szabo |
| 5 | * |
| 6 | * Many thanks to Stig Venaas for trying out countless experimental |
| 7 | * patches and reporting/debugging problems patiently! |
| 8 | * |
| 9 | * (c) 1999, Multiple IO-APIC support, developed by |
| 10 | * Ken-ichi Yaku <yaku@css1.kbnes.nec.co.jp> and |
| 11 | * Hidemi Kishimoto <kisimoto@css1.kbnes.nec.co.jp>, |
| 12 | * further tested and cleaned up by Zach Brown <zab@redhat.com> |
| 13 | * and Ingo Molnar <mingo@redhat.com> |
| 14 | * |
| 15 | * Fixes |
| 16 | * Maciej W. Rozycki : Bits for genuine 82489DX APICs; |
| 17 | * thanks to Eric Gilmore |
| 18 | * and Rolf G. Tews |
| 19 | * for testing these extensively |
| 20 | * Paul Diefenbaugh : Added full ACPI support |
| 21 | */ |
| 22 | |
| 23 | #include <linux/mm.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 24 | #include <linux/interrupt.h> |
| 25 | #include <linux/init.h> |
| 26 | #include <linux/delay.h> |
| 27 | #include <linux/sched.h> |
Yinghai Lu | d4057bd | 2008-08-19 20:50:38 -0700 | [diff] [blame] | 28 | #include <linux/pci.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 29 | #include <linux/mc146818rtc.h> |
| 30 | #include <linux/compiler.h> |
| 31 | #include <linux/acpi.h> |
Alexey Dobriyan | 129f694 | 2005-06-23 00:08:33 -0700 | [diff] [blame] | 32 | #include <linux/module.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 33 | #include <linux/sysdev.h> |
Eric W. Biederman | 3b7d192 | 2006-10-04 02:16:59 -0700 | [diff] [blame] | 34 | #include <linux/msi.h> |
Eric W. Biederman | 95d7788 | 2006-10-04 02:17:01 -0700 | [diff] [blame] | 35 | #include <linux/htirq.h> |
Nigel Cunningham | 7dfb710 | 2006-12-06 20:34:23 -0800 | [diff] [blame] | 36 | #include <linux/freezer.h> |
Eric W. Biederman | f26d6a2 | 2007-05-02 19:27:19 +0200 | [diff] [blame] | 37 | #include <linux/kthread.h> |
Ingo Molnar | 54168ed | 2008-08-20 09:07:45 +0200 | [diff] [blame] | 38 | #include <linux/jiffies.h> /* time_after() */ |
Yinghai Lu | d4057bd | 2008-08-19 20:50:38 -0700 | [diff] [blame] | 39 | #ifdef CONFIG_ACPI |
| 40 | #include <acpi/acpi_bus.h> |
| 41 | #endif |
| 42 | #include <linux/bootmem.h> |
| 43 | #include <linux/dmar.h> |
venkatesh.pallipadi@intel.com | 58ac1e7 | 2008-09-05 18:02:17 -0700 | [diff] [blame] | 44 | #include <linux/hpet.h> |
Ashok Raj | 54d5d42 | 2005-09-06 15:16:15 -0700 | [diff] [blame] | 45 | |
Yinghai Lu | d4057bd | 2008-08-19 20:50:38 -0700 | [diff] [blame] | 46 | #include <asm/idle.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 47 | #include <asm/io.h> |
| 48 | #include <asm/smp.h> |
| 49 | #include <asm/desc.h> |
Yinghai Lu | d4057bd | 2008-08-19 20:50:38 -0700 | [diff] [blame] | 50 | #include <asm/proto.h> |
| 51 | #include <asm/acpi.h> |
| 52 | #include <asm/dma.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 53 | #include <asm/timer.h> |
Ingo Molnar | 306e440 | 2005-06-30 02:58:55 -0700 | [diff] [blame] | 54 | #include <asm/i8259.h> |
Don Zickus | 3e4ff11 | 2006-06-26 13:57:01 +0200 | [diff] [blame] | 55 | #include <asm/nmi.h> |
Eric W. Biederman | 2d3fcc1 | 2006-10-04 02:16:43 -0700 | [diff] [blame] | 56 | #include <asm/msidef.h> |
Eric W. Biederman | 8b955b0 | 2006-10-04 02:16:55 -0700 | [diff] [blame] | 57 | #include <asm/hypertransport.h> |
Yinghai Lu | a4dbc34 | 2008-07-25 02:14:28 -0700 | [diff] [blame] | 58 | #include <asm/setup.h> |
Yinghai Lu | d4057bd | 2008-08-19 20:50:38 -0700 | [diff] [blame] | 59 | #include <asm/irq_remapping.h> |
venkatesh.pallipadi@intel.com | 58ac1e7 | 2008-09-05 18:02:17 -0700 | [diff] [blame] | 60 | #include <asm/hpet.h> |
Dean Nelson | 4173a0e | 2008-10-02 12:18:21 -0500 | [diff] [blame] | 61 | #include <asm/uv/uv_hub.h> |
| 62 | #include <asm/uv/uv_irq.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 63 | |
Yinghai Lu | 497c9a1 | 2008-08-19 20:50:28 -0700 | [diff] [blame] | 64 | #include <mach_ipi.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 65 | #include <mach_apic.h> |
Andi Kleen | 874c4fe | 2006-09-26 10:52:26 +0200 | [diff] [blame] | 66 | #include <mach_apicdef.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 67 | |
Maciej W. Rozycki | 32f71af | 2008-07-21 00:52:49 +0100 | [diff] [blame] | 68 | #define __apicdebuginit(type) static type __init |
| 69 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 70 | /* |
Ingo Molnar | 54168ed | 2008-08-20 09:07:45 +0200 | [diff] [blame] | 71 | * Is the SiS APIC rmw bug present ? |
| 72 | * -1 = don't know, 0 = no, 1 = yes |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 73 | */ |
| 74 | int sis_apic_bug = -1; |
| 75 | |
Yinghai Lu | efa2559 | 2008-08-19 20:50:36 -0700 | [diff] [blame] | 76 | static DEFINE_SPINLOCK(ioapic_lock); |
| 77 | static DEFINE_SPINLOCK(vector_lock); |
| 78 | |
Yinghai Lu | efa2559 | 2008-08-19 20:50:36 -0700 | [diff] [blame] | 79 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 80 | * # of IRQ routing registers |
| 81 | */ |
| 82 | int nr_ioapic_registers[MAX_IO_APICS]; |
| 83 | |
Alexey Starikovskiy | 9f640cc | 2008-04-04 23:41:13 +0400 | [diff] [blame] | 84 | /* I/O APIC entries */ |
Alexey Starikovskiy | ec2cd0a | 2008-05-14 19:03:10 +0400 | [diff] [blame] | 85 | struct mp_config_ioapic mp_ioapics[MAX_IO_APICS]; |
Alexey Starikovskiy | 9f640cc | 2008-04-04 23:41:13 +0400 | [diff] [blame] | 86 | int nr_ioapics; |
| 87 | |
Alexey Starikovskiy | 584f734 | 2008-04-04 23:41:32 +0400 | [diff] [blame] | 88 | /* MP IRQ source entries */ |
Alexey Starikovskiy | 2fddb6e28 | 2008-05-14 19:03:17 +0400 | [diff] [blame] | 89 | struct mp_config_intsrc mp_irqs[MAX_IRQ_SOURCES]; |
Alexey Starikovskiy | 584f734 | 2008-04-04 23:41:32 +0400 | [diff] [blame] | 90 | |
| 91 | /* # of MP IRQ source entries */ |
| 92 | int mp_irq_entries; |
| 93 | |
Alexey Starikovskiy | 8732fc4 | 2008-05-19 19:47:16 +0400 | [diff] [blame] | 94 | #if defined (CONFIG_MCA) || defined (CONFIG_EISA) |
| 95 | int mp_bus_id_to_type[MAX_MP_BUSSES]; |
| 96 | #endif |
| 97 | |
| 98 | DECLARE_BITMAP(mp_bus_not_pci, MAX_MP_BUSSES); |
| 99 | |
Yinghai Lu | efa2559 | 2008-08-19 20:50:36 -0700 | [diff] [blame] | 100 | int skip_ioapic_setup; |
| 101 | |
Ingo Molnar | 54168ed | 2008-08-20 09:07:45 +0200 | [diff] [blame] | 102 | static int __init parse_noapic(char *str) |
Yinghai Lu | efa2559 | 2008-08-19 20:50:36 -0700 | [diff] [blame] | 103 | { |
| 104 | /* disable IO-APIC */ |
| 105 | disable_ioapic_setup(); |
| 106 | return 0; |
| 107 | } |
| 108 | early_param("noapic", parse_noapic); |
Chuck Ebbert | 66759a0 | 2005-09-12 18:49:25 +0200 | [diff] [blame] | 109 | |
Yinghai Lu | 0f978f4 | 2008-08-19 20:50:26 -0700 | [diff] [blame] | 110 | struct irq_pin_list; |
Thomas Gleixner | d6c88a5 | 2008-10-15 15:27:23 +0200 | [diff] [blame] | 111 | |
| 112 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 113 | * This is performance-critical, we want to do it O(1) |
| 114 | * |
| 115 | * the indexing order of this array favors 1:1 mappings |
| 116 | * between pins and IRQs. |
| 117 | */ |
| 118 | |
Yinghai Lu | 0f978f4 | 2008-08-19 20:50:26 -0700 | [diff] [blame] | 119 | struct irq_pin_list { |
| 120 | int apic, pin; |
| 121 | struct irq_pin_list *next; |
| 122 | }; |
Yinghai Lu | 301e619 | 2008-08-19 20:50:02 -0700 | [diff] [blame] | 123 | |
Yinghai Lu | 0b8f1ef | 2008-12-05 18:58:31 -0800 | [diff] [blame] | 124 | static struct irq_pin_list *get_one_free_irq_2_pin(int cpu) |
Yinghai Lu | 0f978f4 | 2008-08-19 20:50:26 -0700 | [diff] [blame] | 125 | { |
Yinghai Lu | 0b8f1ef | 2008-12-05 18:58:31 -0800 | [diff] [blame] | 126 | struct irq_pin_list *pin; |
| 127 | int node; |
Yinghai Lu | 0f978f4 | 2008-08-19 20:50:26 -0700 | [diff] [blame] | 128 | |
Yinghai Lu | 0b8f1ef | 2008-12-05 18:58:31 -0800 | [diff] [blame] | 129 | node = cpu_to_node(cpu); |
Yinghai Lu | 0f978f4 | 2008-08-19 20:50:26 -0700 | [diff] [blame] | 130 | |
Yinghai Lu | 0b8f1ef | 2008-12-05 18:58:31 -0800 | [diff] [blame] | 131 | pin = kzalloc_node(sizeof(*pin), GFP_ATOMIC, node); |
| 132 | printk(KERN_DEBUG " alloc irq_2_pin on cpu %d node %d\n", cpu, node); |
Yinghai Lu | 0f978f4 | 2008-08-19 20:50:26 -0700 | [diff] [blame] | 133 | |
Yinghai Lu | 0f978f4 | 2008-08-19 20:50:26 -0700 | [diff] [blame] | 134 | return pin; |
Yinghai Lu | 0f978f4 | 2008-08-19 20:50:26 -0700 | [diff] [blame] | 135 | } |
| 136 | |
Yinghai Lu | 0b8f1ef | 2008-12-05 18:58:31 -0800 | [diff] [blame] | 137 | struct irq_cfg { |
| 138 | struct irq_pin_list *irq_2_pin; |
Mike Travis | 22f65d3 | 2008-12-16 17:33:56 -0800 | [diff] [blame] | 139 | cpumask_var_t domain; |
| 140 | cpumask_var_t old_domain; |
Yinghai Lu | 0b8f1ef | 2008-12-05 18:58:31 -0800 | [diff] [blame] | 141 | unsigned move_cleanup_count; |
| 142 | u8 vector; |
| 143 | u8 move_in_progress : 1; |
Yinghai Lu | 48a1b10 | 2008-12-11 00:15:01 -0800 | [diff] [blame] | 144 | #ifdef CONFIG_NUMA_MIGRATE_IRQ_DESC |
| 145 | u8 move_desc_pending : 1; |
| 146 | #endif |
Yinghai Lu | 0b8f1ef | 2008-12-05 18:58:31 -0800 | [diff] [blame] | 147 | }; |
| 148 | |
| 149 | /* irq_cfg is indexed by the sum of all RTEs in all I/O APICs. */ |
| 150 | #ifdef CONFIG_SPARSE_IRQ |
| 151 | static struct irq_cfg irq_cfgx[] = { |
| 152 | #else |
| 153 | static struct irq_cfg irq_cfgx[NR_IRQS] = { |
| 154 | #endif |
Mike Travis | 22f65d3 | 2008-12-16 17:33:56 -0800 | [diff] [blame] | 155 | [0] = { .vector = IRQ0_VECTOR, }, |
| 156 | [1] = { .vector = IRQ1_VECTOR, }, |
| 157 | [2] = { .vector = IRQ2_VECTOR, }, |
| 158 | [3] = { .vector = IRQ3_VECTOR, }, |
| 159 | [4] = { .vector = IRQ4_VECTOR, }, |
| 160 | [5] = { .vector = IRQ5_VECTOR, }, |
| 161 | [6] = { .vector = IRQ6_VECTOR, }, |
| 162 | [7] = { .vector = IRQ7_VECTOR, }, |
| 163 | [8] = { .vector = IRQ8_VECTOR, }, |
| 164 | [9] = { .vector = IRQ9_VECTOR, }, |
| 165 | [10] = { .vector = IRQ10_VECTOR, }, |
| 166 | [11] = { .vector = IRQ11_VECTOR, }, |
| 167 | [12] = { .vector = IRQ12_VECTOR, }, |
| 168 | [13] = { .vector = IRQ13_VECTOR, }, |
| 169 | [14] = { .vector = IRQ14_VECTOR, }, |
| 170 | [15] = { .vector = IRQ15_VECTOR, }, |
Yinghai Lu | 0b8f1ef | 2008-12-05 18:58:31 -0800 | [diff] [blame] | 171 | }; |
| 172 | |
| 173 | void __init arch_early_irq_init(void) |
Yinghai Lu | 0f978f4 | 2008-08-19 20:50:26 -0700 | [diff] [blame] | 174 | { |
Yinghai Lu | 0b8f1ef | 2008-12-05 18:58:31 -0800 | [diff] [blame] | 175 | struct irq_cfg *cfg; |
| 176 | struct irq_desc *desc; |
| 177 | int count; |
| 178 | int i; |
Yinghai Lu | 0f978f4 | 2008-08-19 20:50:26 -0700 | [diff] [blame] | 179 | |
Yinghai Lu | 0b8f1ef | 2008-12-05 18:58:31 -0800 | [diff] [blame] | 180 | cfg = irq_cfgx; |
| 181 | count = ARRAY_SIZE(irq_cfgx); |
Yinghai Lu | 0f978f4 | 2008-08-19 20:50:26 -0700 | [diff] [blame] | 182 | |
Yinghai Lu | 0b8f1ef | 2008-12-05 18:58:31 -0800 | [diff] [blame] | 183 | for (i = 0; i < count; i++) { |
| 184 | desc = irq_to_desc(i); |
| 185 | desc->chip_data = &cfg[i]; |
Mike Travis | 22f65d3 | 2008-12-16 17:33:56 -0800 | [diff] [blame] | 186 | alloc_bootmem_cpumask_var(&cfg[i].domain); |
| 187 | alloc_bootmem_cpumask_var(&cfg[i].old_domain); |
| 188 | if (i < NR_IRQS_LEGACY) |
| 189 | cpumask_setall(cfg[i].domain); |
Yinghai Lu | 0b8f1ef | 2008-12-05 18:58:31 -0800 | [diff] [blame] | 190 | } |
| 191 | } |
| 192 | |
| 193 | #ifdef CONFIG_SPARSE_IRQ |
| 194 | static struct irq_cfg *irq_cfg(unsigned int irq) |
| 195 | { |
| 196 | struct irq_cfg *cfg = NULL; |
| 197 | struct irq_desc *desc; |
| 198 | |
| 199 | desc = irq_to_desc(irq); |
| 200 | if (desc) |
| 201 | cfg = desc->chip_data; |
| 202 | |
| 203 | return cfg; |
| 204 | } |
| 205 | |
| 206 | static struct irq_cfg *get_one_free_irq_cfg(int cpu) |
| 207 | { |
| 208 | struct irq_cfg *cfg; |
| 209 | int node; |
| 210 | |
| 211 | node = cpu_to_node(cpu); |
| 212 | |
| 213 | cfg = kzalloc_node(sizeof(*cfg), GFP_ATOMIC, node); |
Mike Travis | 22f65d3 | 2008-12-16 17:33:56 -0800 | [diff] [blame] | 214 | if (cfg) { |
| 215 | /* FIXME: needs alloc_cpumask_var_node() */ |
| 216 | if (!alloc_cpumask_var(&cfg->domain, GFP_ATOMIC)) { |
| 217 | kfree(cfg); |
| 218 | cfg = NULL; |
| 219 | } else if (!alloc_cpumask_var(&cfg->old_domain, GFP_ATOMIC)) { |
| 220 | free_cpumask_var(cfg->domain); |
| 221 | kfree(cfg); |
| 222 | cfg = NULL; |
| 223 | } else { |
| 224 | cpumask_clear(cfg->domain); |
| 225 | cpumask_clear(cfg->old_domain); |
| 226 | } |
| 227 | } |
Yinghai Lu | 0b8f1ef | 2008-12-05 18:58:31 -0800 | [diff] [blame] | 228 | printk(KERN_DEBUG " alloc irq_cfg on cpu %d node %d\n", cpu, node); |
| 229 | |
| 230 | return cfg; |
| 231 | } |
| 232 | |
| 233 | void arch_init_chip_data(struct irq_desc *desc, int cpu) |
| 234 | { |
| 235 | struct irq_cfg *cfg; |
| 236 | |
| 237 | cfg = desc->chip_data; |
| 238 | if (!cfg) { |
| 239 | desc->chip_data = get_one_free_irq_cfg(cpu); |
| 240 | if (!desc->chip_data) { |
| 241 | printk(KERN_ERR "can not alloc irq_cfg\n"); |
| 242 | BUG_ON(1); |
| 243 | } |
| 244 | } |
| 245 | } |
| 246 | |
Yinghai Lu | 48a1b10 | 2008-12-11 00:15:01 -0800 | [diff] [blame] | 247 | #ifdef CONFIG_NUMA_MIGRATE_IRQ_DESC |
| 248 | |
| 249 | static void |
| 250 | init_copy_irq_2_pin(struct irq_cfg *old_cfg, struct irq_cfg *cfg, int cpu) |
| 251 | { |
| 252 | struct irq_pin_list *old_entry, *head, *tail, *entry; |
| 253 | |
| 254 | cfg->irq_2_pin = NULL; |
| 255 | old_entry = old_cfg->irq_2_pin; |
| 256 | if (!old_entry) |
| 257 | return; |
| 258 | |
| 259 | entry = get_one_free_irq_2_pin(cpu); |
| 260 | if (!entry) |
| 261 | return; |
| 262 | |
| 263 | entry->apic = old_entry->apic; |
| 264 | entry->pin = old_entry->pin; |
| 265 | head = entry; |
| 266 | tail = entry; |
| 267 | old_entry = old_entry->next; |
| 268 | while (old_entry) { |
| 269 | entry = get_one_free_irq_2_pin(cpu); |
| 270 | if (!entry) { |
| 271 | entry = head; |
| 272 | while (entry) { |
| 273 | head = entry->next; |
| 274 | kfree(entry); |
| 275 | entry = head; |
| 276 | } |
| 277 | /* still use the old one */ |
| 278 | return; |
| 279 | } |
| 280 | entry->apic = old_entry->apic; |
| 281 | entry->pin = old_entry->pin; |
| 282 | tail->next = entry; |
| 283 | tail = entry; |
| 284 | old_entry = old_entry->next; |
| 285 | } |
| 286 | |
| 287 | tail->next = NULL; |
| 288 | cfg->irq_2_pin = head; |
| 289 | } |
| 290 | |
| 291 | static void free_irq_2_pin(struct irq_cfg *old_cfg, struct irq_cfg *cfg) |
| 292 | { |
| 293 | struct irq_pin_list *entry, *next; |
| 294 | |
| 295 | if (old_cfg->irq_2_pin == cfg->irq_2_pin) |
| 296 | return; |
| 297 | |
| 298 | entry = old_cfg->irq_2_pin; |
| 299 | |
| 300 | while (entry) { |
| 301 | next = entry->next; |
| 302 | kfree(entry); |
| 303 | entry = next; |
| 304 | } |
| 305 | old_cfg->irq_2_pin = NULL; |
| 306 | } |
| 307 | |
| 308 | void arch_init_copy_chip_data(struct irq_desc *old_desc, |
| 309 | struct irq_desc *desc, int cpu) |
| 310 | { |
| 311 | struct irq_cfg *cfg; |
| 312 | struct irq_cfg *old_cfg; |
| 313 | |
| 314 | cfg = get_one_free_irq_cfg(cpu); |
| 315 | |
| 316 | if (!cfg) |
| 317 | return; |
| 318 | |
| 319 | desc->chip_data = cfg; |
| 320 | |
| 321 | old_cfg = old_desc->chip_data; |
| 322 | |
| 323 | memcpy(cfg, old_cfg, sizeof(struct irq_cfg)); |
| 324 | |
| 325 | init_copy_irq_2_pin(old_cfg, cfg, cpu); |
| 326 | } |
| 327 | |
| 328 | static void free_irq_cfg(struct irq_cfg *old_cfg) |
| 329 | { |
| 330 | kfree(old_cfg); |
| 331 | } |
| 332 | |
| 333 | void arch_free_chip_data(struct irq_desc *old_desc, struct irq_desc *desc) |
| 334 | { |
| 335 | struct irq_cfg *old_cfg, *cfg; |
| 336 | |
| 337 | old_cfg = old_desc->chip_data; |
| 338 | cfg = desc->chip_data; |
| 339 | |
| 340 | if (old_cfg == cfg) |
| 341 | return; |
| 342 | |
| 343 | if (old_cfg) { |
| 344 | free_irq_2_pin(old_cfg, cfg); |
| 345 | free_irq_cfg(old_cfg); |
| 346 | old_desc->chip_data = NULL; |
| 347 | } |
| 348 | } |
| 349 | |
Ingo Molnar | d733e00 | 2008-12-17 13:35:51 +0100 | [diff] [blame] | 350 | static void |
| 351 | set_extra_move_desc(struct irq_desc *desc, const struct cpumask *mask) |
Yinghai Lu | 48a1b10 | 2008-12-11 00:15:01 -0800 | [diff] [blame] | 352 | { |
| 353 | struct irq_cfg *cfg = desc->chip_data; |
| 354 | |
| 355 | if (!cfg->move_in_progress) { |
| 356 | /* it means that domain is not changed */ |
Ingo Molnar | d733e00 | 2008-12-17 13:35:51 +0100 | [diff] [blame] | 357 | if (!cpumask_intersects(&desc->affinity, mask)) |
Yinghai Lu | 48a1b10 | 2008-12-11 00:15:01 -0800 | [diff] [blame] | 358 | cfg->move_desc_pending = 1; |
| 359 | } |
| 360 | } |
| 361 | #endif |
| 362 | |
Yinghai Lu | 0b8f1ef | 2008-12-05 18:58:31 -0800 | [diff] [blame] | 363 | #else |
| 364 | static struct irq_cfg *irq_cfg(unsigned int irq) |
| 365 | { |
| 366 | return irq < nr_irqs ? irq_cfgx + irq : NULL; |
| 367 | } |
| 368 | |
| 369 | #endif |
| 370 | |
Yinghai Lu | 48a1b10 | 2008-12-11 00:15:01 -0800 | [diff] [blame] | 371 | #ifndef CONFIG_NUMA_MIGRATE_IRQ_DESC |
Mike Travis | e798673 | 2008-12-16 17:33:52 -0800 | [diff] [blame] | 372 | static inline void |
| 373 | set_extra_move_desc(struct irq_desc *desc, const struct cpumask *mask) |
Yinghai Lu | 3145e94 | 2008-12-05 18:58:34 -0800 | [diff] [blame] | 374 | { |
Yinghai Lu | 0f978f4 | 2008-08-19 20:50:26 -0700 | [diff] [blame] | 375 | } |
Yinghai Lu | 48a1b10 | 2008-12-11 00:15:01 -0800 | [diff] [blame] | 376 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 377 | |
Linus Torvalds | 130fe05 | 2006-11-01 09:11:00 -0800 | [diff] [blame] | 378 | struct io_apic { |
| 379 | unsigned int index; |
| 380 | unsigned int unused[3]; |
| 381 | unsigned int data; |
| 382 | }; |
| 383 | |
| 384 | static __attribute_const__ struct io_apic __iomem *io_apic_base(int idx) |
| 385 | { |
| 386 | return (void __iomem *) __fix_to_virt(FIX_IO_APIC_BASE_0 + idx) |
Alexey Starikovskiy | ec2cd0a | 2008-05-14 19:03:10 +0400 | [diff] [blame] | 387 | + (mp_ioapics[idx].mp_apicaddr & ~PAGE_MASK); |
Linus Torvalds | 130fe05 | 2006-11-01 09:11:00 -0800 | [diff] [blame] | 388 | } |
| 389 | |
| 390 | static inline unsigned int io_apic_read(unsigned int apic, unsigned int reg) |
| 391 | { |
| 392 | struct io_apic __iomem *io_apic = io_apic_base(apic); |
| 393 | writel(reg, &io_apic->index); |
| 394 | return readl(&io_apic->data); |
| 395 | } |
| 396 | |
| 397 | static inline void io_apic_write(unsigned int apic, unsigned int reg, unsigned int value) |
| 398 | { |
| 399 | struct io_apic __iomem *io_apic = io_apic_base(apic); |
| 400 | writel(reg, &io_apic->index); |
| 401 | writel(value, &io_apic->data); |
| 402 | } |
| 403 | |
| 404 | /* |
| 405 | * Re-write a value: to be used for read-modify-write |
| 406 | * cycles where the read already set up the index register. |
| 407 | * |
| 408 | * Older SiS APIC requires we rewrite the index register |
| 409 | */ |
| 410 | static inline void io_apic_modify(unsigned int apic, unsigned int reg, unsigned int value) |
| 411 | { |
Ingo Molnar | 54168ed | 2008-08-20 09:07:45 +0200 | [diff] [blame] | 412 | struct io_apic __iomem *io_apic = io_apic_base(apic); |
Thomas Gleixner | d6c88a5 | 2008-10-15 15:27:23 +0200 | [diff] [blame] | 413 | |
| 414 | if (sis_apic_bug) |
| 415 | writel(reg, &io_apic->index); |
Linus Torvalds | 130fe05 | 2006-11-01 09:11:00 -0800 | [diff] [blame] | 416 | writel(value, &io_apic->data); |
| 417 | } |
| 418 | |
Yinghai Lu | 3145e94 | 2008-12-05 18:58:34 -0800 | [diff] [blame] | 419 | static bool io_apic_level_ack_pending(struct irq_cfg *cfg) |
Yinghai Lu | 047c8fd | 2008-08-19 20:50:41 -0700 | [diff] [blame] | 420 | { |
| 421 | struct irq_pin_list *entry; |
| 422 | unsigned long flags; |
Yinghai Lu | 047c8fd | 2008-08-19 20:50:41 -0700 | [diff] [blame] | 423 | |
| 424 | spin_lock_irqsave(&ioapic_lock, flags); |
| 425 | entry = cfg->irq_2_pin; |
| 426 | for (;;) { |
| 427 | unsigned int reg; |
| 428 | int pin; |
| 429 | |
| 430 | if (!entry) |
| 431 | break; |
| 432 | pin = entry->pin; |
| 433 | reg = io_apic_read(entry->apic, 0x10 + pin*2); |
| 434 | /* Is the remote IRR bit set? */ |
| 435 | if (reg & IO_APIC_REDIR_REMOTE_IRR) { |
| 436 | spin_unlock_irqrestore(&ioapic_lock, flags); |
| 437 | return true; |
| 438 | } |
| 439 | if (!entry->next) |
| 440 | break; |
| 441 | entry = entry->next; |
| 442 | } |
| 443 | spin_unlock_irqrestore(&ioapic_lock, flags); |
| 444 | |
| 445 | return false; |
| 446 | } |
Yinghai Lu | 047c8fd | 2008-08-19 20:50:41 -0700 | [diff] [blame] | 447 | |
Andi Kleen | cf4c6a2 | 2006-09-26 10:52:30 +0200 | [diff] [blame] | 448 | union entry_union { |
| 449 | struct { u32 w1, w2; }; |
| 450 | struct IO_APIC_route_entry entry; |
| 451 | }; |
| 452 | |
| 453 | static struct IO_APIC_route_entry ioapic_read_entry(int apic, int pin) |
| 454 | { |
| 455 | union entry_union eu; |
| 456 | unsigned long flags; |
| 457 | spin_lock_irqsave(&ioapic_lock, flags); |
| 458 | eu.w1 = io_apic_read(apic, 0x10 + 2 * pin); |
| 459 | eu.w2 = io_apic_read(apic, 0x11 + 2 * pin); |
| 460 | spin_unlock_irqrestore(&ioapic_lock, flags); |
| 461 | return eu.entry; |
| 462 | } |
| 463 | |
Linus Torvalds | f9dadfa | 2006-11-01 10:05:35 -0800 | [diff] [blame] | 464 | /* |
| 465 | * When we write a new IO APIC routing entry, we need to write the high |
| 466 | * word first! If the mask bit in the low word is clear, we will enable |
| 467 | * the interrupt, and we need to make sure the entry is fully populated |
| 468 | * before that happens. |
| 469 | */ |
Andi Kleen | d15512f | 2006-12-07 02:14:07 +0100 | [diff] [blame] | 470 | static void |
| 471 | __ioapic_write_entry(int apic, int pin, struct IO_APIC_route_entry e) |
| 472 | { |
| 473 | union entry_union eu; |
| 474 | eu.entry = e; |
| 475 | io_apic_write(apic, 0x11 + 2*pin, eu.w2); |
| 476 | io_apic_write(apic, 0x10 + 2*pin, eu.w1); |
| 477 | } |
| 478 | |
Andi Kleen | cf4c6a2 | 2006-09-26 10:52:30 +0200 | [diff] [blame] | 479 | static void ioapic_write_entry(int apic, int pin, struct IO_APIC_route_entry e) |
| 480 | { |
| 481 | unsigned long flags; |
Andi Kleen | cf4c6a2 | 2006-09-26 10:52:30 +0200 | [diff] [blame] | 482 | spin_lock_irqsave(&ioapic_lock, flags); |
Andi Kleen | d15512f | 2006-12-07 02:14:07 +0100 | [diff] [blame] | 483 | __ioapic_write_entry(apic, pin, e); |
Linus Torvalds | f9dadfa | 2006-11-01 10:05:35 -0800 | [diff] [blame] | 484 | spin_unlock_irqrestore(&ioapic_lock, flags); |
| 485 | } |
| 486 | |
| 487 | /* |
| 488 | * When we mask an IO APIC routing entry, we need to write the low |
| 489 | * word first, in order to set the mask bit before we change the |
| 490 | * high bits! |
| 491 | */ |
| 492 | static void ioapic_mask_entry(int apic, int pin) |
| 493 | { |
| 494 | unsigned long flags; |
| 495 | union entry_union eu = { .entry.mask = 1 }; |
| 496 | |
| 497 | spin_lock_irqsave(&ioapic_lock, flags); |
Andi Kleen | cf4c6a2 | 2006-09-26 10:52:30 +0200 | [diff] [blame] | 498 | io_apic_write(apic, 0x10 + 2*pin, eu.w1); |
| 499 | io_apic_write(apic, 0x11 + 2*pin, eu.w2); |
| 500 | spin_unlock_irqrestore(&ioapic_lock, flags); |
| 501 | } |
| 502 | |
Yinghai Lu | 497c9a1 | 2008-08-19 20:50:28 -0700 | [diff] [blame] | 503 | #ifdef CONFIG_SMP |
Mike Travis | 22f65d3 | 2008-12-16 17:33:56 -0800 | [diff] [blame] | 504 | static void send_cleanup_vector(struct irq_cfg *cfg) |
| 505 | { |
| 506 | cpumask_var_t cleanup_mask; |
| 507 | |
| 508 | if (unlikely(!alloc_cpumask_var(&cleanup_mask, GFP_ATOMIC))) { |
| 509 | unsigned int i; |
| 510 | cfg->move_cleanup_count = 0; |
| 511 | for_each_cpu_and(i, cfg->old_domain, cpu_online_mask) |
| 512 | cfg->move_cleanup_count++; |
| 513 | for_each_cpu_and(i, cfg->old_domain, cpu_online_mask) |
| 514 | send_IPI_mask(cpumask_of(i), IRQ_MOVE_CLEANUP_VECTOR); |
| 515 | } else { |
| 516 | cpumask_and(cleanup_mask, cfg->old_domain, cpu_online_mask); |
| 517 | cfg->move_cleanup_count = cpumask_weight(cleanup_mask); |
| 518 | send_IPI_mask(cleanup_mask, IRQ_MOVE_CLEANUP_VECTOR); |
| 519 | free_cpumask_var(cleanup_mask); |
| 520 | } |
| 521 | cfg->move_in_progress = 0; |
| 522 | } |
| 523 | |
Yinghai Lu | 3145e94 | 2008-12-05 18:58:34 -0800 | [diff] [blame] | 524 | static void __target_IO_APIC_irq(unsigned int irq, unsigned int dest, struct irq_cfg *cfg) |
Yinghai Lu | 497c9a1 | 2008-08-19 20:50:28 -0700 | [diff] [blame] | 525 | { |
| 526 | int apic, pin; |
Yinghai Lu | 497c9a1 | 2008-08-19 20:50:28 -0700 | [diff] [blame] | 527 | struct irq_pin_list *entry; |
Yinghai Lu | 3145e94 | 2008-12-05 18:58:34 -0800 | [diff] [blame] | 528 | u8 vector = cfg->vector; |
Yinghai Lu | 497c9a1 | 2008-08-19 20:50:28 -0700 | [diff] [blame] | 529 | |
Yinghai Lu | 497c9a1 | 2008-08-19 20:50:28 -0700 | [diff] [blame] | 530 | entry = cfg->irq_2_pin; |
| 531 | for (;;) { |
| 532 | unsigned int reg; |
| 533 | |
| 534 | if (!entry) |
| 535 | break; |
| 536 | |
| 537 | apic = entry->apic; |
| 538 | pin = entry->pin; |
Ingo Molnar | 54168ed | 2008-08-20 09:07:45 +0200 | [diff] [blame] | 539 | #ifdef CONFIG_INTR_REMAP |
| 540 | /* |
| 541 | * With interrupt-remapping, destination information comes |
| 542 | * from interrupt-remapping table entry. |
| 543 | */ |
| 544 | if (!irq_remapped(irq)) |
| 545 | io_apic_write(apic, 0x11 + pin*2, dest); |
| 546 | #else |
Yinghai Lu | 497c9a1 | 2008-08-19 20:50:28 -0700 | [diff] [blame] | 547 | io_apic_write(apic, 0x11 + pin*2, dest); |
Ingo Molnar | 54168ed | 2008-08-20 09:07:45 +0200 | [diff] [blame] | 548 | #endif |
Yinghai Lu | 497c9a1 | 2008-08-19 20:50:28 -0700 | [diff] [blame] | 549 | reg = io_apic_read(apic, 0x10 + pin*2); |
| 550 | reg &= ~IO_APIC_REDIR_VECTOR_MASK; |
| 551 | reg |= vector; |
Ingo Molnar | 54168ed | 2008-08-20 09:07:45 +0200 | [diff] [blame] | 552 | io_apic_modify(apic, 0x10 + pin*2, reg); |
Yinghai Lu | 497c9a1 | 2008-08-19 20:50:28 -0700 | [diff] [blame] | 553 | if (!entry->next) |
| 554 | break; |
| 555 | entry = entry->next; |
| 556 | } |
| 557 | } |
Yinghai Lu | efa2559 | 2008-08-19 20:50:36 -0700 | [diff] [blame] | 558 | |
Mike Travis | e798673 | 2008-12-16 17:33:52 -0800 | [diff] [blame] | 559 | static int |
| 560 | assign_irq_vector(int irq, struct irq_cfg *cfg, const struct cpumask *mask); |
Yinghai Lu | efa2559 | 2008-08-19 20:50:36 -0700 | [diff] [blame] | 561 | |
Mike Travis | 22f65d3 | 2008-12-16 17:33:56 -0800 | [diff] [blame] | 562 | /* |
| 563 | * Either sets desc->affinity to a valid value, and returns cpu_mask_to_apicid |
| 564 | * of that, or returns BAD_APICID and leaves desc->affinity untouched. |
| 565 | */ |
| 566 | static unsigned int |
| 567 | set_desc_affinity(struct irq_desc *desc, const struct cpumask *mask) |
Yinghai Lu | 497c9a1 | 2008-08-19 20:50:28 -0700 | [diff] [blame] | 568 | { |
| 569 | struct irq_cfg *cfg; |
Yinghai Lu | 3145e94 | 2008-12-05 18:58:34 -0800 | [diff] [blame] | 570 | unsigned int irq; |
Yinghai Lu | 497c9a1 | 2008-08-19 20:50:28 -0700 | [diff] [blame] | 571 | |
Rusty Russell | 0de2652 | 2008-12-13 21:20:26 +1030 | [diff] [blame] | 572 | if (!cpumask_intersects(mask, cpu_online_mask)) |
Mike Travis | 22f65d3 | 2008-12-16 17:33:56 -0800 | [diff] [blame] | 573 | return BAD_APICID; |
Yinghai Lu | 497c9a1 | 2008-08-19 20:50:28 -0700 | [diff] [blame] | 574 | |
Yinghai Lu | 3145e94 | 2008-12-05 18:58:34 -0800 | [diff] [blame] | 575 | irq = desc->irq; |
| 576 | cfg = desc->chip_data; |
Mike Travis | e798673 | 2008-12-16 17:33:52 -0800 | [diff] [blame] | 577 | if (assign_irq_vector(irq, cfg, mask)) |
Mike Travis | 22f65d3 | 2008-12-16 17:33:56 -0800 | [diff] [blame] | 578 | return BAD_APICID; |
Yinghai Lu | 497c9a1 | 2008-08-19 20:50:28 -0700 | [diff] [blame] | 579 | |
Mike Travis | 22f65d3 | 2008-12-16 17:33:56 -0800 | [diff] [blame] | 580 | cpumask_and(&desc->affinity, cfg->domain, mask); |
Mike Travis | e798673 | 2008-12-16 17:33:52 -0800 | [diff] [blame] | 581 | set_extra_move_desc(desc, mask); |
Mike Travis | 22f65d3 | 2008-12-16 17:33:56 -0800 | [diff] [blame] | 582 | return cpu_mask_to_apicid_and(&desc->affinity, cpu_online_mask); |
| 583 | } |
Yinghai Lu | 3145e94 | 2008-12-05 18:58:34 -0800 | [diff] [blame] | 584 | |
Mike Travis | 22f65d3 | 2008-12-16 17:33:56 -0800 | [diff] [blame] | 585 | static void |
| 586 | set_ioapic_affinity_irq_desc(struct irq_desc *desc, const struct cpumask *mask) |
| 587 | { |
| 588 | struct irq_cfg *cfg; |
| 589 | unsigned long flags; |
| 590 | unsigned int dest; |
| 591 | unsigned int irq; |
| 592 | |
| 593 | irq = desc->irq; |
| 594 | cfg = desc->chip_data; |
Yinghai Lu | 497c9a1 | 2008-08-19 20:50:28 -0700 | [diff] [blame] | 595 | |
| 596 | spin_lock_irqsave(&ioapic_lock, flags); |
Mike Travis | 22f65d3 | 2008-12-16 17:33:56 -0800 | [diff] [blame] | 597 | dest = set_desc_affinity(desc, mask); |
| 598 | if (dest != BAD_APICID) { |
| 599 | /* Only the high 8 bits are valid. */ |
| 600 | dest = SET_APIC_LOGICAL_ID(dest); |
| 601 | __target_IO_APIC_irq(irq, dest, cfg); |
| 602 | } |
Yinghai Lu | 497c9a1 | 2008-08-19 20:50:28 -0700 | [diff] [blame] | 603 | spin_unlock_irqrestore(&ioapic_lock, flags); |
| 604 | } |
Yinghai Lu | 3145e94 | 2008-12-05 18:58:34 -0800 | [diff] [blame] | 605 | |
Mike Travis | 22f65d3 | 2008-12-16 17:33:56 -0800 | [diff] [blame] | 606 | static void |
| 607 | set_ioapic_affinity_irq(unsigned int irq, const struct cpumask *mask) |
Yinghai Lu | 3145e94 | 2008-12-05 18:58:34 -0800 | [diff] [blame] | 608 | { |
| 609 | struct irq_desc *desc; |
| 610 | |
| 611 | desc = irq_to_desc(irq); |
| 612 | |
| 613 | set_ioapic_affinity_irq_desc(desc, mask); |
| 614 | } |
Yinghai Lu | 497c9a1 | 2008-08-19 20:50:28 -0700 | [diff] [blame] | 615 | #endif /* CONFIG_SMP */ |
| 616 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 617 | /* |
| 618 | * The common case is 1:1 IRQ<->pin mappings. Sometimes there are |
| 619 | * shared ISA-space IRQs, so we have to support them. We are super |
| 620 | * fast in the common case, and fast for shared ISA-space IRQs. |
| 621 | */ |
Yinghai Lu | 3145e94 | 2008-12-05 18:58:34 -0800 | [diff] [blame] | 622 | static void add_pin_to_irq_cpu(struct irq_cfg *cfg, int cpu, int apic, int pin) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 623 | { |
Yinghai Lu | 0f978f4 | 2008-08-19 20:50:26 -0700 | [diff] [blame] | 624 | struct irq_pin_list *entry; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 625 | |
Yinghai Lu | 0f978f4 | 2008-08-19 20:50:26 -0700 | [diff] [blame] | 626 | entry = cfg->irq_2_pin; |
| 627 | if (!entry) { |
Yinghai Lu | 0b8f1ef | 2008-12-05 18:58:31 -0800 | [diff] [blame] | 628 | entry = get_one_free_irq_2_pin(cpu); |
| 629 | if (!entry) { |
| 630 | printk(KERN_ERR "can not alloc irq_2_pin to add %d - %d\n", |
| 631 | apic, pin); |
| 632 | return; |
| 633 | } |
Yinghai Lu | 0f978f4 | 2008-08-19 20:50:26 -0700 | [diff] [blame] | 634 | cfg->irq_2_pin = entry; |
| 635 | entry->apic = apic; |
| 636 | entry->pin = pin; |
Yinghai Lu | 0f978f4 | 2008-08-19 20:50:26 -0700 | [diff] [blame] | 637 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 638 | } |
Yinghai Lu | 0f978f4 | 2008-08-19 20:50:26 -0700 | [diff] [blame] | 639 | |
| 640 | while (entry->next) { |
| 641 | /* not again, please */ |
| 642 | if (entry->apic == apic && entry->pin == pin) |
| 643 | return; |
| 644 | |
| 645 | entry = entry->next; |
| 646 | } |
| 647 | |
Yinghai Lu | 0b8f1ef | 2008-12-05 18:58:31 -0800 | [diff] [blame] | 648 | entry->next = get_one_free_irq_2_pin(cpu); |
Yinghai Lu | 0f978f4 | 2008-08-19 20:50:26 -0700 | [diff] [blame] | 649 | entry = entry->next; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 650 | entry->apic = apic; |
| 651 | entry->pin = pin; |
| 652 | } |
| 653 | |
| 654 | /* |
| 655 | * Reroute an IRQ to a different pin. |
| 656 | */ |
Yinghai Lu | 3145e94 | 2008-12-05 18:58:34 -0800 | [diff] [blame] | 657 | static void __init replace_pin_at_irq_cpu(struct irq_cfg *cfg, int cpu, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 658 | int oldapic, int oldpin, |
| 659 | int newapic, int newpin) |
| 660 | { |
Yinghai Lu | 0f978f4 | 2008-08-19 20:50:26 -0700 | [diff] [blame] | 661 | struct irq_pin_list *entry = cfg->irq_2_pin; |
| 662 | int replaced = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 663 | |
Yinghai Lu | 0f978f4 | 2008-08-19 20:50:26 -0700 | [diff] [blame] | 664 | while (entry) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 665 | if (entry->apic == oldapic && entry->pin == oldpin) { |
| 666 | entry->apic = newapic; |
| 667 | entry->pin = newpin; |
Yinghai Lu | 0f978f4 | 2008-08-19 20:50:26 -0700 | [diff] [blame] | 668 | replaced = 1; |
| 669 | /* every one is different, right? */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 670 | break; |
Yinghai Lu | 0f978f4 | 2008-08-19 20:50:26 -0700 | [diff] [blame] | 671 | } |
| 672 | entry = entry->next; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 673 | } |
Yinghai Lu | 0f978f4 | 2008-08-19 20:50:26 -0700 | [diff] [blame] | 674 | |
| 675 | /* why? call replace before add? */ |
| 676 | if (!replaced) |
Yinghai Lu | 3145e94 | 2008-12-05 18:58:34 -0800 | [diff] [blame] | 677 | add_pin_to_irq_cpu(cfg, cpu, newapic, newpin); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 678 | } |
| 679 | |
Yinghai Lu | 3145e94 | 2008-12-05 18:58:34 -0800 | [diff] [blame] | 680 | static inline void io_apic_modify_irq(struct irq_cfg *cfg, |
Cyrill Gorcunov | 87783be | 2008-09-10 22:19:50 +0400 | [diff] [blame] | 681 | int mask_and, int mask_or, |
| 682 | void (*final)(struct irq_pin_list *entry)) |
| 683 | { |
| 684 | int pin; |
Cyrill Gorcunov | 87783be | 2008-09-10 22:19:50 +0400 | [diff] [blame] | 685 | struct irq_pin_list *entry; |
| 686 | |
Cyrill Gorcunov | 87783be | 2008-09-10 22:19:50 +0400 | [diff] [blame] | 687 | for (entry = cfg->irq_2_pin; entry != NULL; entry = entry->next) { |
| 688 | unsigned int reg; |
| 689 | pin = entry->pin; |
| 690 | reg = io_apic_read(entry->apic, 0x10 + pin * 2); |
| 691 | reg &= mask_and; |
| 692 | reg |= mask_or; |
| 693 | io_apic_modify(entry->apic, 0x10 + pin * 2, reg); |
| 694 | if (final) |
| 695 | final(entry); |
| 696 | } |
Yinghai Lu | 047c8fd | 2008-08-19 20:50:41 -0700 | [diff] [blame] | 697 | } |
| 698 | |
Yinghai Lu | 3145e94 | 2008-12-05 18:58:34 -0800 | [diff] [blame] | 699 | static void __unmask_IO_APIC_irq(struct irq_cfg *cfg) |
Cyrill Gorcunov | 87783be | 2008-09-10 22:19:50 +0400 | [diff] [blame] | 700 | { |
Yinghai Lu | 3145e94 | 2008-12-05 18:58:34 -0800 | [diff] [blame] | 701 | io_apic_modify_irq(cfg, ~IO_APIC_REDIR_MASKED, 0, NULL); |
Cyrill Gorcunov | 87783be | 2008-09-10 22:19:50 +0400 | [diff] [blame] | 702 | } |
Yinghai Lu | 4e738e2 | 2008-08-19 20:50:47 -0700 | [diff] [blame] | 703 | |
| 704 | #ifdef CONFIG_X86_64 |
Cyrill Gorcunov | 87783be | 2008-09-10 22:19:50 +0400 | [diff] [blame] | 705 | void io_apic_sync(struct irq_pin_list *entry) |
Yinghai Lu | 4e738e2 | 2008-08-19 20:50:47 -0700 | [diff] [blame] | 706 | { |
Cyrill Gorcunov | 87783be | 2008-09-10 22:19:50 +0400 | [diff] [blame] | 707 | /* |
| 708 | * Synchronize the IO-APIC and the CPU by doing |
| 709 | * a dummy read from the IO-APIC |
| 710 | */ |
| 711 | struct io_apic __iomem *io_apic; |
| 712 | io_apic = io_apic_base(entry->apic); |
Yinghai Lu | 4e738e2 | 2008-08-19 20:50:47 -0700 | [diff] [blame] | 713 | readl(&io_apic->data); |
| 714 | } |
| 715 | |
Yinghai Lu | 3145e94 | 2008-12-05 18:58:34 -0800 | [diff] [blame] | 716 | static void __mask_IO_APIC_irq(struct irq_cfg *cfg) |
Cyrill Gorcunov | 87783be | 2008-09-10 22:19:50 +0400 | [diff] [blame] | 717 | { |
Yinghai Lu | 3145e94 | 2008-12-05 18:58:34 -0800 | [diff] [blame] | 718 | io_apic_modify_irq(cfg, ~0, IO_APIC_REDIR_MASKED, &io_apic_sync); |
Cyrill Gorcunov | 87783be | 2008-09-10 22:19:50 +0400 | [diff] [blame] | 719 | } |
| 720 | #else /* CONFIG_X86_32 */ |
Yinghai Lu | 3145e94 | 2008-12-05 18:58:34 -0800 | [diff] [blame] | 721 | static void __mask_IO_APIC_irq(struct irq_cfg *cfg) |
Cyrill Gorcunov | 87783be | 2008-09-10 22:19:50 +0400 | [diff] [blame] | 722 | { |
Yinghai Lu | 3145e94 | 2008-12-05 18:58:34 -0800 | [diff] [blame] | 723 | io_apic_modify_irq(cfg, ~0, IO_APIC_REDIR_MASKED, NULL); |
Cyrill Gorcunov | 87783be | 2008-09-10 22:19:50 +0400 | [diff] [blame] | 724 | } |
Yinghai Lu | 047c8fd | 2008-08-19 20:50:41 -0700 | [diff] [blame] | 725 | |
Yinghai Lu | 3145e94 | 2008-12-05 18:58:34 -0800 | [diff] [blame] | 726 | static void __mask_and_edge_IO_APIC_irq(struct irq_cfg *cfg) |
Cyrill Gorcunov | 87783be | 2008-09-10 22:19:50 +0400 | [diff] [blame] | 727 | { |
Yinghai Lu | 3145e94 | 2008-12-05 18:58:34 -0800 | [diff] [blame] | 728 | io_apic_modify_irq(cfg, ~IO_APIC_REDIR_LEVEL_TRIGGER, |
Cyrill Gorcunov | 87783be | 2008-09-10 22:19:50 +0400 | [diff] [blame] | 729 | IO_APIC_REDIR_MASKED, NULL); |
| 730 | } |
Yinghai Lu | 047c8fd | 2008-08-19 20:50:41 -0700 | [diff] [blame] | 731 | |
Yinghai Lu | 3145e94 | 2008-12-05 18:58:34 -0800 | [diff] [blame] | 732 | static void __unmask_and_level_IO_APIC_irq(struct irq_cfg *cfg) |
Cyrill Gorcunov | 87783be | 2008-09-10 22:19:50 +0400 | [diff] [blame] | 733 | { |
Yinghai Lu | 3145e94 | 2008-12-05 18:58:34 -0800 | [diff] [blame] | 734 | io_apic_modify_irq(cfg, ~IO_APIC_REDIR_MASKED, |
Cyrill Gorcunov | 87783be | 2008-09-10 22:19:50 +0400 | [diff] [blame] | 735 | IO_APIC_REDIR_LEVEL_TRIGGER, NULL); |
| 736 | } |
| 737 | #endif /* CONFIG_X86_32 */ |
Yinghai Lu | 047c8fd | 2008-08-19 20:50:41 -0700 | [diff] [blame] | 738 | |
Yinghai Lu | 3145e94 | 2008-12-05 18:58:34 -0800 | [diff] [blame] | 739 | static void mask_IO_APIC_irq_desc(struct irq_desc *desc) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 740 | { |
Yinghai Lu | 3145e94 | 2008-12-05 18:58:34 -0800 | [diff] [blame] | 741 | struct irq_cfg *cfg = desc->chip_data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 742 | unsigned long flags; |
| 743 | |
Yinghai Lu | 3145e94 | 2008-12-05 18:58:34 -0800 | [diff] [blame] | 744 | BUG_ON(!cfg); |
| 745 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 746 | spin_lock_irqsave(&ioapic_lock, flags); |
Yinghai Lu | 3145e94 | 2008-12-05 18:58:34 -0800 | [diff] [blame] | 747 | __mask_IO_APIC_irq(cfg); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 748 | spin_unlock_irqrestore(&ioapic_lock, flags); |
| 749 | } |
| 750 | |
Yinghai Lu | 3145e94 | 2008-12-05 18:58:34 -0800 | [diff] [blame] | 751 | static void unmask_IO_APIC_irq_desc(struct irq_desc *desc) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 752 | { |
Yinghai Lu | 3145e94 | 2008-12-05 18:58:34 -0800 | [diff] [blame] | 753 | struct irq_cfg *cfg = desc->chip_data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 754 | unsigned long flags; |
| 755 | |
| 756 | spin_lock_irqsave(&ioapic_lock, flags); |
Yinghai Lu | 3145e94 | 2008-12-05 18:58:34 -0800 | [diff] [blame] | 757 | __unmask_IO_APIC_irq(cfg); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 758 | spin_unlock_irqrestore(&ioapic_lock, flags); |
| 759 | } |
| 760 | |
Yinghai Lu | 3145e94 | 2008-12-05 18:58:34 -0800 | [diff] [blame] | 761 | static void mask_IO_APIC_irq(unsigned int irq) |
| 762 | { |
| 763 | struct irq_desc *desc = irq_to_desc(irq); |
| 764 | |
| 765 | mask_IO_APIC_irq_desc(desc); |
| 766 | } |
| 767 | static void unmask_IO_APIC_irq(unsigned int irq) |
| 768 | { |
| 769 | struct irq_desc *desc = irq_to_desc(irq); |
| 770 | |
| 771 | unmask_IO_APIC_irq_desc(desc); |
| 772 | } |
| 773 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 774 | static void clear_IO_APIC_pin(unsigned int apic, unsigned int pin) |
| 775 | { |
| 776 | struct IO_APIC_route_entry entry; |
Paolo Ciarrocchi | 3606244 | 2008-06-08 13:07:18 +0200 | [diff] [blame] | 777 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 778 | /* Check delivery_mode to be sure we're not clearing an SMI pin */ |
Andi Kleen | cf4c6a2 | 2006-09-26 10:52:30 +0200 | [diff] [blame] | 779 | entry = ioapic_read_entry(apic, pin); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 780 | if (entry.delivery_mode == dest_SMI) |
| 781 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 782 | /* |
| 783 | * Disable it in the IO-APIC irq-routing table: |
| 784 | */ |
Linus Torvalds | f9dadfa | 2006-11-01 10:05:35 -0800 | [diff] [blame] | 785 | ioapic_mask_entry(apic, pin); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 786 | } |
| 787 | |
Ingo Molnar | 54168ed | 2008-08-20 09:07:45 +0200 | [diff] [blame] | 788 | static void clear_IO_APIC (void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 789 | { |
| 790 | int apic, pin; |
| 791 | |
| 792 | for (apic = 0; apic < nr_ioapics; apic++) |
| 793 | for (pin = 0; pin < nr_ioapic_registers[apic]; pin++) |
| 794 | clear_IO_APIC_pin(apic, pin); |
| 795 | } |
| 796 | |
Ingo Molnar | 54168ed | 2008-08-20 09:07:45 +0200 | [diff] [blame] | 797 | #if !defined(CONFIG_SMP) && defined(CONFIG_X86_32) |
Harvey Harrison | 75604d7 | 2008-01-30 13:31:17 +0100 | [diff] [blame] | 798 | void send_IPI_self(int vector) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 799 | { |
| 800 | unsigned int cfg; |
| 801 | |
| 802 | /* |
| 803 | * Wait for idle. |
| 804 | */ |
| 805 | apic_wait_icr_idle(); |
| 806 | cfg = APIC_DM_FIXED | APIC_DEST_SELF | vector | APIC_DEST_LOGICAL; |
| 807 | /* |
| 808 | * Send the IPI. The write to APIC_ICR fires this off. |
| 809 | */ |
Maciej W. Rozycki | 593f4a7 | 2008-07-16 19:15:30 +0100 | [diff] [blame] | 810 | apic_write(APIC_ICR, cfg); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 811 | } |
Ingo Molnar | 54168ed | 2008-08-20 09:07:45 +0200 | [diff] [blame] | 812 | #endif /* !CONFIG_SMP && CONFIG_X86_32*/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 813 | |
Ingo Molnar | 54168ed | 2008-08-20 09:07:45 +0200 | [diff] [blame] | 814 | #ifdef CONFIG_X86_32 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 815 | /* |
| 816 | * support for broken MP BIOSs, enables hand-redirection of PIRQ0-7 to |
| 817 | * specific CPU-side IRQs. |
| 818 | */ |
| 819 | |
| 820 | #define MAX_PIRQS 8 |
| 821 | static int pirq_entries [MAX_PIRQS]; |
| 822 | static int pirqs_enabled; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 823 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 824 | static int __init ioapic_pirq_setup(char *str) |
| 825 | { |
| 826 | int i, max; |
| 827 | int ints[MAX_PIRQS+1]; |
| 828 | |
| 829 | get_options(str, ARRAY_SIZE(ints), ints); |
| 830 | |
| 831 | for (i = 0; i < MAX_PIRQS; i++) |
| 832 | pirq_entries[i] = -1; |
| 833 | |
| 834 | pirqs_enabled = 1; |
| 835 | apic_printk(APIC_VERBOSE, KERN_INFO |
| 836 | "PIRQ redirection, working around broken MP-BIOS.\n"); |
| 837 | max = MAX_PIRQS; |
| 838 | if (ints[0] < MAX_PIRQS) |
| 839 | max = ints[0]; |
| 840 | |
| 841 | for (i = 0; i < max; i++) { |
| 842 | apic_printk(APIC_VERBOSE, KERN_DEBUG |
| 843 | "... PIRQ%d -> IRQ %d\n", i, ints[i+1]); |
| 844 | /* |
| 845 | * PIRQs are mapped upside down, usually. |
| 846 | */ |
| 847 | pirq_entries[MAX_PIRQS-i-1] = ints[i+1]; |
| 848 | } |
| 849 | return 1; |
| 850 | } |
| 851 | |
| 852 | __setup("pirq=", ioapic_pirq_setup); |
Ingo Molnar | 54168ed | 2008-08-20 09:07:45 +0200 | [diff] [blame] | 853 | #endif /* CONFIG_X86_32 */ |
| 854 | |
| 855 | #ifdef CONFIG_INTR_REMAP |
| 856 | /* I/O APIC RTE contents at the OS boot up */ |
| 857 | static struct IO_APIC_route_entry *early_ioapic_entries[MAX_IO_APICS]; |
| 858 | |
| 859 | /* |
| 860 | * Saves and masks all the unmasked IO-APIC RTE's |
| 861 | */ |
| 862 | int save_mask_IO_APIC_setup(void) |
| 863 | { |
| 864 | union IO_APIC_reg_01 reg_01; |
| 865 | unsigned long flags; |
| 866 | int apic, pin; |
| 867 | |
| 868 | /* |
| 869 | * The number of IO-APIC IRQ registers (== #pins): |
| 870 | */ |
| 871 | for (apic = 0; apic < nr_ioapics; apic++) { |
| 872 | spin_lock_irqsave(&ioapic_lock, flags); |
| 873 | reg_01.raw = io_apic_read(apic, 1); |
| 874 | spin_unlock_irqrestore(&ioapic_lock, flags); |
| 875 | nr_ioapic_registers[apic] = reg_01.bits.entries+1; |
| 876 | } |
| 877 | |
| 878 | for (apic = 0; apic < nr_ioapics; apic++) { |
| 879 | early_ioapic_entries[apic] = |
| 880 | kzalloc(sizeof(struct IO_APIC_route_entry) * |
| 881 | nr_ioapic_registers[apic], GFP_KERNEL); |
| 882 | if (!early_ioapic_entries[apic]) |
Cyrill Gorcunov | 5ffa4eb | 2008-09-18 23:37:57 +0400 | [diff] [blame] | 883 | goto nomem; |
Ingo Molnar | 54168ed | 2008-08-20 09:07:45 +0200 | [diff] [blame] | 884 | } |
| 885 | |
| 886 | for (apic = 0; apic < nr_ioapics; apic++) |
| 887 | for (pin = 0; pin < nr_ioapic_registers[apic]; pin++) { |
| 888 | struct IO_APIC_route_entry entry; |
| 889 | |
| 890 | entry = early_ioapic_entries[apic][pin] = |
| 891 | ioapic_read_entry(apic, pin); |
| 892 | if (!entry.mask) { |
| 893 | entry.mask = 1; |
| 894 | ioapic_write_entry(apic, pin, entry); |
| 895 | } |
| 896 | } |
Cyrill Gorcunov | 5ffa4eb | 2008-09-18 23:37:57 +0400 | [diff] [blame] | 897 | |
Ingo Molnar | 54168ed | 2008-08-20 09:07:45 +0200 | [diff] [blame] | 898 | return 0; |
Cyrill Gorcunov | 5ffa4eb | 2008-09-18 23:37:57 +0400 | [diff] [blame] | 899 | |
| 900 | nomem: |
Cyrill Gorcunov | c1370b4 | 2008-09-23 23:00:02 +0400 | [diff] [blame] | 901 | while (apic >= 0) |
| 902 | kfree(early_ioapic_entries[apic--]); |
Cyrill Gorcunov | 5ffa4eb | 2008-09-18 23:37:57 +0400 | [diff] [blame] | 903 | memset(early_ioapic_entries, 0, |
| 904 | ARRAY_SIZE(early_ioapic_entries)); |
| 905 | |
| 906 | return -ENOMEM; |
Ingo Molnar | 54168ed | 2008-08-20 09:07:45 +0200 | [diff] [blame] | 907 | } |
| 908 | |
| 909 | void restore_IO_APIC_setup(void) |
| 910 | { |
| 911 | int apic, pin; |
| 912 | |
Cyrill Gorcunov | 5ffa4eb | 2008-09-18 23:37:57 +0400 | [diff] [blame] | 913 | for (apic = 0; apic < nr_ioapics; apic++) { |
| 914 | if (!early_ioapic_entries[apic]) |
| 915 | break; |
Ingo Molnar | 54168ed | 2008-08-20 09:07:45 +0200 | [diff] [blame] | 916 | for (pin = 0; pin < nr_ioapic_registers[apic]; pin++) |
| 917 | ioapic_write_entry(apic, pin, |
| 918 | early_ioapic_entries[apic][pin]); |
Cyrill Gorcunov | 5ffa4eb | 2008-09-18 23:37:57 +0400 | [diff] [blame] | 919 | kfree(early_ioapic_entries[apic]); |
| 920 | early_ioapic_entries[apic] = NULL; |
| 921 | } |
Ingo Molnar | 54168ed | 2008-08-20 09:07:45 +0200 | [diff] [blame] | 922 | } |
| 923 | |
| 924 | void reinit_intr_remapped_IO_APIC(int intr_remapping) |
| 925 | { |
| 926 | /* |
| 927 | * for now plain restore of previous settings. |
| 928 | * TBD: In the case of OS enabling interrupt-remapping, |
| 929 | * IO-APIC RTE's need to be setup to point to interrupt-remapping |
| 930 | * table entries. for now, do a plain restore, and wait for |
| 931 | * the setup_IO_APIC_irqs() to do proper initialization. |
| 932 | */ |
| 933 | restore_IO_APIC_setup(); |
| 934 | } |
| 935 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 936 | |
| 937 | /* |
| 938 | * Find the IRQ entry number of a certain pin. |
| 939 | */ |
| 940 | static int find_irq_entry(int apic, int pin, int type) |
| 941 | { |
| 942 | int i; |
| 943 | |
| 944 | for (i = 0; i < mp_irq_entries; i++) |
Alexey Starikovskiy | 2fddb6e28 | 2008-05-14 19:03:17 +0400 | [diff] [blame] | 945 | if (mp_irqs[i].mp_irqtype == type && |
| 946 | (mp_irqs[i].mp_dstapic == mp_ioapics[apic].mp_apicid || |
| 947 | mp_irqs[i].mp_dstapic == MP_APIC_ALL) && |
| 948 | mp_irqs[i].mp_dstirq == pin) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 949 | return i; |
| 950 | |
| 951 | return -1; |
| 952 | } |
| 953 | |
| 954 | /* |
| 955 | * Find the pin to which IRQ[irq] (ISA) is connected |
| 956 | */ |
Eric W. Biederman | fcfd636 | 2005-10-30 14:59:39 -0800 | [diff] [blame] | 957 | static int __init find_isa_irq_pin(int irq, int type) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 958 | { |
| 959 | int i; |
| 960 | |
| 961 | for (i = 0; i < mp_irq_entries; i++) { |
Alexey Starikovskiy | 2fddb6e28 | 2008-05-14 19:03:17 +0400 | [diff] [blame] | 962 | int lbus = mp_irqs[i].mp_srcbus; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 963 | |
Alexey Starikovskiy | d27e2b8 | 2008-03-20 14:54:18 +0300 | [diff] [blame] | 964 | if (test_bit(lbus, mp_bus_not_pci) && |
Alexey Starikovskiy | 2fddb6e28 | 2008-05-14 19:03:17 +0400 | [diff] [blame] | 965 | (mp_irqs[i].mp_irqtype == type) && |
| 966 | (mp_irqs[i].mp_srcbusirq == irq)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 967 | |
Alexey Starikovskiy | 2fddb6e28 | 2008-05-14 19:03:17 +0400 | [diff] [blame] | 968 | return mp_irqs[i].mp_dstirq; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 969 | } |
| 970 | return -1; |
| 971 | } |
| 972 | |
Eric W. Biederman | fcfd636 | 2005-10-30 14:59:39 -0800 | [diff] [blame] | 973 | static int __init find_isa_irq_apic(int irq, int type) |
| 974 | { |
| 975 | int i; |
| 976 | |
| 977 | for (i = 0; i < mp_irq_entries; i++) { |
Alexey Starikovskiy | 2fddb6e28 | 2008-05-14 19:03:17 +0400 | [diff] [blame] | 978 | int lbus = mp_irqs[i].mp_srcbus; |
Eric W. Biederman | fcfd636 | 2005-10-30 14:59:39 -0800 | [diff] [blame] | 979 | |
Alexey Starikovskiy | 73b2961 | 2008-03-20 14:54:24 +0300 | [diff] [blame] | 980 | if (test_bit(lbus, mp_bus_not_pci) && |
Alexey Starikovskiy | 2fddb6e28 | 2008-05-14 19:03:17 +0400 | [diff] [blame] | 981 | (mp_irqs[i].mp_irqtype == type) && |
| 982 | (mp_irqs[i].mp_srcbusirq == irq)) |
Eric W. Biederman | fcfd636 | 2005-10-30 14:59:39 -0800 | [diff] [blame] | 983 | break; |
| 984 | } |
| 985 | if (i < mp_irq_entries) { |
| 986 | int apic; |
Ingo Molnar | 54168ed | 2008-08-20 09:07:45 +0200 | [diff] [blame] | 987 | for(apic = 0; apic < nr_ioapics; apic++) { |
Alexey Starikovskiy | 2fddb6e28 | 2008-05-14 19:03:17 +0400 | [diff] [blame] | 988 | if (mp_ioapics[apic].mp_apicid == mp_irqs[i].mp_dstapic) |
Eric W. Biederman | fcfd636 | 2005-10-30 14:59:39 -0800 | [diff] [blame] | 989 | return apic; |
| 990 | } |
| 991 | } |
| 992 | |
| 993 | return -1; |
| 994 | } |
| 995 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 996 | /* |
| 997 | * Find a specific PCI IRQ entry. |
| 998 | * Not an __init, possibly needed by modules |
| 999 | */ |
| 1000 | static int pin_2_irq(int idx, int apic, int pin); |
| 1001 | |
| 1002 | int IO_APIC_get_PCI_irq_vector(int bus, int slot, int pin) |
| 1003 | { |
| 1004 | int apic, i, best_guess = -1; |
| 1005 | |
Ingo Molnar | 54168ed | 2008-08-20 09:07:45 +0200 | [diff] [blame] | 1006 | apic_printk(APIC_DEBUG, "querying PCI -> IRQ mapping bus:%d, slot:%d, pin:%d.\n", |
| 1007 | bus, slot, pin); |
Alexey Starikovskiy | ce6444d | 2008-05-19 19:47:09 +0400 | [diff] [blame] | 1008 | if (test_bit(bus, mp_bus_not_pci)) { |
Ingo Molnar | 54168ed | 2008-08-20 09:07:45 +0200 | [diff] [blame] | 1009 | apic_printk(APIC_VERBOSE, "PCI BIOS passed nonexistent PCI bus %d!\n", bus); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1010 | return -1; |
| 1011 | } |
| 1012 | for (i = 0; i < mp_irq_entries; i++) { |
Alexey Starikovskiy | 2fddb6e28 | 2008-05-14 19:03:17 +0400 | [diff] [blame] | 1013 | int lbus = mp_irqs[i].mp_srcbus; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1014 | |
| 1015 | for (apic = 0; apic < nr_ioapics; apic++) |
Alexey Starikovskiy | 2fddb6e28 | 2008-05-14 19:03:17 +0400 | [diff] [blame] | 1016 | if (mp_ioapics[apic].mp_apicid == mp_irqs[i].mp_dstapic || |
| 1017 | mp_irqs[i].mp_dstapic == MP_APIC_ALL) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1018 | break; |
| 1019 | |
Alexey Starikovskiy | 47cab82 | 2008-03-20 14:54:30 +0300 | [diff] [blame] | 1020 | if (!test_bit(lbus, mp_bus_not_pci) && |
Alexey Starikovskiy | 2fddb6e28 | 2008-05-14 19:03:17 +0400 | [diff] [blame] | 1021 | !mp_irqs[i].mp_irqtype && |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1022 | (bus == lbus) && |
Alexey Starikovskiy | 2fddb6e28 | 2008-05-14 19:03:17 +0400 | [diff] [blame] | 1023 | (slot == ((mp_irqs[i].mp_srcbusirq >> 2) & 0x1f))) { |
Ingo Molnar | 54168ed | 2008-08-20 09:07:45 +0200 | [diff] [blame] | 1024 | int irq = pin_2_irq(i,apic,mp_irqs[i].mp_dstirq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1025 | |
| 1026 | if (!(apic || IO_APIC_IRQ(irq))) |
| 1027 | continue; |
| 1028 | |
Alexey Starikovskiy | 2fddb6e28 | 2008-05-14 19:03:17 +0400 | [diff] [blame] | 1029 | if (pin == (mp_irqs[i].mp_srcbusirq & 3)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1030 | return irq; |
| 1031 | /* |
| 1032 | * Use the first all-but-pin matching entry as a |
| 1033 | * best-guess fuzzy result for broken mptables. |
| 1034 | */ |
| 1035 | if (best_guess < 0) |
| 1036 | best_guess = irq; |
| 1037 | } |
| 1038 | } |
| 1039 | return best_guess; |
| 1040 | } |
Ingo Molnar | 54168ed | 2008-08-20 09:07:45 +0200 | [diff] [blame] | 1041 | |
Alexey Dobriyan | 129f694 | 2005-06-23 00:08:33 -0700 | [diff] [blame] | 1042 | EXPORT_SYMBOL(IO_APIC_get_PCI_irq_vector); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1043 | |
Alexey Starikovskiy | c0a282c | 2008-03-20 14:55:02 +0300 | [diff] [blame] | 1044 | #if defined(CONFIG_EISA) || defined(CONFIG_MCA) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1045 | /* |
| 1046 | * EISA Edge/Level control register, ELCR |
| 1047 | */ |
| 1048 | static int EISA_ELCR(unsigned int irq) |
| 1049 | { |
Yinghai Lu | 99d093d | 2008-12-05 18:58:32 -0800 | [diff] [blame] | 1050 | if (irq < NR_IRQS_LEGACY) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1051 | unsigned int port = 0x4d0 + (irq >> 3); |
| 1052 | return (inb(port) >> (irq & 7)) & 1; |
| 1053 | } |
| 1054 | apic_printk(APIC_VERBOSE, KERN_INFO |
| 1055 | "Broken MPtable reports ISA irq %d\n", irq); |
| 1056 | return 0; |
| 1057 | } |
Ingo Molnar | 54168ed | 2008-08-20 09:07:45 +0200 | [diff] [blame] | 1058 | |
Alexey Starikovskiy | c0a282c | 2008-03-20 14:55:02 +0300 | [diff] [blame] | 1059 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1060 | |
Alexey Starikovskiy | 6728801 | 2008-03-20 14:54:36 +0300 | [diff] [blame] | 1061 | /* ISA interrupts are always polarity zero edge triggered, |
| 1062 | * when listed as conforming in the MP table. */ |
| 1063 | |
| 1064 | #define default_ISA_trigger(idx) (0) |
| 1065 | #define default_ISA_polarity(idx) (0) |
| 1066 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1067 | /* EISA interrupts are always polarity zero and can be edge or level |
| 1068 | * trigger depending on the ELCR value. If an interrupt is listed as |
| 1069 | * EISA conforming in the MP table, that means its trigger type must |
| 1070 | * be read in from the ELCR */ |
| 1071 | |
Alexey Starikovskiy | 2fddb6e28 | 2008-05-14 19:03:17 +0400 | [diff] [blame] | 1072 | #define default_EISA_trigger(idx) (EISA_ELCR(mp_irqs[idx].mp_srcbusirq)) |
Alexey Starikovskiy | 6728801 | 2008-03-20 14:54:36 +0300 | [diff] [blame] | 1073 | #define default_EISA_polarity(idx) default_ISA_polarity(idx) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1074 | |
| 1075 | /* PCI interrupts are always polarity one level triggered, |
| 1076 | * when listed as conforming in the MP table. */ |
| 1077 | |
| 1078 | #define default_PCI_trigger(idx) (1) |
| 1079 | #define default_PCI_polarity(idx) (1) |
| 1080 | |
| 1081 | /* MCA interrupts are always polarity zero level triggered, |
| 1082 | * when listed as conforming in the MP table. */ |
| 1083 | |
| 1084 | #define default_MCA_trigger(idx) (1) |
Alexey Starikovskiy | 6728801 | 2008-03-20 14:54:36 +0300 | [diff] [blame] | 1085 | #define default_MCA_polarity(idx) default_ISA_polarity(idx) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1086 | |
Shaohua Li | 61fd47e | 2007-11-17 01:05:28 -0500 | [diff] [blame] | 1087 | static int MPBIOS_polarity(int idx) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1088 | { |
Alexey Starikovskiy | 2fddb6e28 | 2008-05-14 19:03:17 +0400 | [diff] [blame] | 1089 | int bus = mp_irqs[idx].mp_srcbus; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1090 | int polarity; |
| 1091 | |
| 1092 | /* |
| 1093 | * Determine IRQ line polarity (high active or low active): |
| 1094 | */ |
Ingo Molnar | 54168ed | 2008-08-20 09:07:45 +0200 | [diff] [blame] | 1095 | switch (mp_irqs[idx].mp_irqflag & 3) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1096 | { |
Ingo Molnar | 54168ed | 2008-08-20 09:07:45 +0200 | [diff] [blame] | 1097 | case 0: /* conforms, ie. bus-type dependent polarity */ |
| 1098 | if (test_bit(bus, mp_bus_not_pci)) |
| 1099 | polarity = default_ISA_polarity(idx); |
| 1100 | else |
| 1101 | polarity = default_PCI_polarity(idx); |
| 1102 | break; |
| 1103 | case 1: /* high active */ |
| 1104 | { |
| 1105 | polarity = 0; |
| 1106 | break; |
| 1107 | } |
| 1108 | case 2: /* reserved */ |
| 1109 | { |
| 1110 | printk(KERN_WARNING "broken BIOS!!\n"); |
| 1111 | polarity = 1; |
| 1112 | break; |
| 1113 | } |
| 1114 | case 3: /* low active */ |
| 1115 | { |
| 1116 | polarity = 1; |
| 1117 | break; |
| 1118 | } |
| 1119 | default: /* invalid */ |
| 1120 | { |
| 1121 | printk(KERN_WARNING "broken BIOS!!\n"); |
| 1122 | polarity = 1; |
| 1123 | break; |
| 1124 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1125 | } |
| 1126 | return polarity; |
| 1127 | } |
| 1128 | |
| 1129 | static int MPBIOS_trigger(int idx) |
| 1130 | { |
Alexey Starikovskiy | 2fddb6e28 | 2008-05-14 19:03:17 +0400 | [diff] [blame] | 1131 | int bus = mp_irqs[idx].mp_srcbus; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1132 | int trigger; |
| 1133 | |
| 1134 | /* |
| 1135 | * Determine IRQ trigger mode (edge or level sensitive): |
| 1136 | */ |
Ingo Molnar | 54168ed | 2008-08-20 09:07:45 +0200 | [diff] [blame] | 1137 | switch ((mp_irqs[idx].mp_irqflag>>2) & 3) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1138 | { |
Ingo Molnar | 54168ed | 2008-08-20 09:07:45 +0200 | [diff] [blame] | 1139 | case 0: /* conforms, ie. bus-type dependent */ |
| 1140 | if (test_bit(bus, mp_bus_not_pci)) |
| 1141 | trigger = default_ISA_trigger(idx); |
| 1142 | else |
| 1143 | trigger = default_PCI_trigger(idx); |
Alexey Starikovskiy | c0a282c | 2008-03-20 14:55:02 +0300 | [diff] [blame] | 1144 | #if defined(CONFIG_EISA) || defined(CONFIG_MCA) |
Ingo Molnar | 54168ed | 2008-08-20 09:07:45 +0200 | [diff] [blame] | 1145 | switch (mp_bus_id_to_type[bus]) { |
| 1146 | case MP_BUS_ISA: /* ISA pin */ |
| 1147 | { |
| 1148 | /* set before the switch */ |
| 1149 | break; |
| 1150 | } |
| 1151 | case MP_BUS_EISA: /* EISA pin */ |
| 1152 | { |
| 1153 | trigger = default_EISA_trigger(idx); |
| 1154 | break; |
| 1155 | } |
| 1156 | case MP_BUS_PCI: /* PCI pin */ |
| 1157 | { |
| 1158 | /* set before the switch */ |
| 1159 | break; |
| 1160 | } |
| 1161 | case MP_BUS_MCA: /* MCA pin */ |
| 1162 | { |
| 1163 | trigger = default_MCA_trigger(idx); |
| 1164 | break; |
| 1165 | } |
| 1166 | default: |
| 1167 | { |
| 1168 | printk(KERN_WARNING "broken BIOS!!\n"); |
| 1169 | trigger = 1; |
| 1170 | break; |
| 1171 | } |
| 1172 | } |
| 1173 | #endif |
| 1174 | break; |
| 1175 | case 1: /* edge */ |
Paolo Ciarrocchi | 3606244 | 2008-06-08 13:07:18 +0200 | [diff] [blame] | 1176 | { |
Ingo Molnar | 54168ed | 2008-08-20 09:07:45 +0200 | [diff] [blame] | 1177 | trigger = 0; |
Paolo Ciarrocchi | 3606244 | 2008-06-08 13:07:18 +0200 | [diff] [blame] | 1178 | break; |
| 1179 | } |
Ingo Molnar | 54168ed | 2008-08-20 09:07:45 +0200 | [diff] [blame] | 1180 | case 2: /* reserved */ |
Paolo Ciarrocchi | 3606244 | 2008-06-08 13:07:18 +0200 | [diff] [blame] | 1181 | { |
| 1182 | printk(KERN_WARNING "broken BIOS!!\n"); |
| 1183 | trigger = 1; |
| 1184 | break; |
| 1185 | } |
Ingo Molnar | 54168ed | 2008-08-20 09:07:45 +0200 | [diff] [blame] | 1186 | case 3: /* level */ |
| 1187 | { |
| 1188 | trigger = 1; |
| 1189 | break; |
| 1190 | } |
| 1191 | default: /* invalid */ |
| 1192 | { |
| 1193 | printk(KERN_WARNING "broken BIOS!!\n"); |
| 1194 | trigger = 0; |
| 1195 | break; |
| 1196 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1197 | } |
| 1198 | return trigger; |
| 1199 | } |
| 1200 | |
| 1201 | static inline int irq_polarity(int idx) |
| 1202 | { |
| 1203 | return MPBIOS_polarity(idx); |
| 1204 | } |
| 1205 | |
| 1206 | static inline int irq_trigger(int idx) |
| 1207 | { |
| 1208 | return MPBIOS_trigger(idx); |
| 1209 | } |
| 1210 | |
Yinghai Lu | efa2559 | 2008-08-19 20:50:36 -0700 | [diff] [blame] | 1211 | int (*ioapic_renumber_irq)(int ioapic, int irq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1212 | static int pin_2_irq(int idx, int apic, int pin) |
| 1213 | { |
| 1214 | int irq, i; |
Alexey Starikovskiy | 2fddb6e28 | 2008-05-14 19:03:17 +0400 | [diff] [blame] | 1215 | int bus = mp_irqs[idx].mp_srcbus; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1216 | |
| 1217 | /* |
| 1218 | * Debugging check, we are in big trouble if this message pops up! |
| 1219 | */ |
Alexey Starikovskiy | 2fddb6e28 | 2008-05-14 19:03:17 +0400 | [diff] [blame] | 1220 | if (mp_irqs[idx].mp_dstirq != pin) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1221 | printk(KERN_ERR "broken BIOS or MPTABLE parser, ayiee!!\n"); |
| 1222 | |
Ingo Molnar | 54168ed | 2008-08-20 09:07:45 +0200 | [diff] [blame] | 1223 | if (test_bit(bus, mp_bus_not_pci)) { |
Alexey Starikovskiy | 2fddb6e28 | 2008-05-14 19:03:17 +0400 | [diff] [blame] | 1224 | irq = mp_irqs[idx].mp_srcbusirq; |
Ingo Molnar | 54168ed | 2008-08-20 09:07:45 +0200 | [diff] [blame] | 1225 | } else { |
Alexey Starikovskiy | 643befe | 2008-03-20 14:54:49 +0300 | [diff] [blame] | 1226 | /* |
| 1227 | * PCI IRQs are mapped in order |
| 1228 | */ |
| 1229 | i = irq = 0; |
| 1230 | while (i < apic) |
| 1231 | irq += nr_ioapic_registers[i++]; |
| 1232 | irq += pin; |
Thomas Gleixner | d6c88a5 | 2008-10-15 15:27:23 +0200 | [diff] [blame] | 1233 | /* |
Ingo Molnar | 54168ed | 2008-08-20 09:07:45 +0200 | [diff] [blame] | 1234 | * For MPS mode, so far only needed by ES7000 platform |
| 1235 | */ |
Thomas Gleixner | d6c88a5 | 2008-10-15 15:27:23 +0200 | [diff] [blame] | 1236 | if (ioapic_renumber_irq) |
| 1237 | irq = ioapic_renumber_irq(apic, irq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1238 | } |
| 1239 | |
Ingo Molnar | 54168ed | 2008-08-20 09:07:45 +0200 | [diff] [blame] | 1240 | #ifdef CONFIG_X86_32 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1241 | /* |
| 1242 | * PCI IRQ command line redirection. Yes, limits are hardcoded. |
| 1243 | */ |
| 1244 | if ((pin >= 16) && (pin <= 23)) { |
| 1245 | if (pirq_entries[pin-16] != -1) { |
| 1246 | if (!pirq_entries[pin-16]) { |
| 1247 | apic_printk(APIC_VERBOSE, KERN_DEBUG |
| 1248 | "disabling PIRQ%d\n", pin-16); |
| 1249 | } else { |
| 1250 | irq = pirq_entries[pin-16]; |
| 1251 | apic_printk(APIC_VERBOSE, KERN_DEBUG |
| 1252 | "using PIRQ%d -> IRQ %d\n", |
| 1253 | pin-16, irq); |
| 1254 | } |
| 1255 | } |
| 1256 | } |
Ingo Molnar | 54168ed | 2008-08-20 09:07:45 +0200 | [diff] [blame] | 1257 | #endif |
| 1258 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1259 | return irq; |
| 1260 | } |
| 1261 | |
Yinghai Lu | 497c9a1 | 2008-08-19 20:50:28 -0700 | [diff] [blame] | 1262 | void lock_vector_lock(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1263 | { |
Yinghai Lu | 497c9a1 | 2008-08-19 20:50:28 -0700 | [diff] [blame] | 1264 | /* Used to the online set of cpus does not change |
| 1265 | * during assign_irq_vector. |
| 1266 | */ |
| 1267 | spin_lock(&vector_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1268 | } |
| 1269 | |
Yinghai Lu | 497c9a1 | 2008-08-19 20:50:28 -0700 | [diff] [blame] | 1270 | void unlock_vector_lock(void) |
Eric W. Biederman | ace80ab | 2006-10-04 02:16:47 -0700 | [diff] [blame] | 1271 | { |
Yinghai Lu | 497c9a1 | 2008-08-19 20:50:28 -0700 | [diff] [blame] | 1272 | spin_unlock(&vector_lock); |
| 1273 | } |
| 1274 | |
Mike Travis | e798673 | 2008-12-16 17:33:52 -0800 | [diff] [blame] | 1275 | static int |
| 1276 | __assign_irq_vector(int irq, struct irq_cfg *cfg, const struct cpumask *mask) |
Yinghai Lu | 497c9a1 | 2008-08-19 20:50:28 -0700 | [diff] [blame] | 1277 | { |
Yinghai Lu | 047c8fd | 2008-08-19 20:50:41 -0700 | [diff] [blame] | 1278 | /* |
| 1279 | * NOTE! The local APIC isn't very good at handling |
| 1280 | * multiple interrupts at the same interrupt level. |
| 1281 | * As the interrupt level is determined by taking the |
| 1282 | * vector number and shifting that right by 4, we |
| 1283 | * want to spread these out a bit so that they don't |
| 1284 | * all fall in the same interrupt level. |
| 1285 | * |
| 1286 | * Also, we've got to be careful not to trash gate |
| 1287 | * 0x80, because int 0x80 is hm, kind of importantish. ;) |
| 1288 | */ |
Ingo Molnar | 54168ed | 2008-08-20 09:07:45 +0200 | [diff] [blame] | 1289 | static int current_vector = FIRST_DEVICE_VECTOR, current_offset = 0; |
| 1290 | unsigned int old_vector; |
Mike Travis | 22f65d3 | 2008-12-16 17:33:56 -0800 | [diff] [blame] | 1291 | int cpu, err; |
| 1292 | cpumask_var_t tmp_mask; |
Yinghai Lu | 497c9a1 | 2008-08-19 20:50:28 -0700 | [diff] [blame] | 1293 | |
Ingo Molnar | 54168ed | 2008-08-20 09:07:45 +0200 | [diff] [blame] | 1294 | if ((cfg->move_in_progress) || cfg->move_cleanup_count) |
| 1295 | return -EBUSY; |
Yinghai Lu | 497c9a1 | 2008-08-19 20:50:28 -0700 | [diff] [blame] | 1296 | |
Mike Travis | 22f65d3 | 2008-12-16 17:33:56 -0800 | [diff] [blame] | 1297 | if (!alloc_cpumask_var(&tmp_mask, GFP_ATOMIC)) |
| 1298 | return -ENOMEM; |
| 1299 | |
Ingo Molnar | 54168ed | 2008-08-20 09:07:45 +0200 | [diff] [blame] | 1300 | old_vector = cfg->vector; |
| 1301 | if (old_vector) { |
Mike Travis | 22f65d3 | 2008-12-16 17:33:56 -0800 | [diff] [blame] | 1302 | cpumask_and(tmp_mask, mask, cpu_online_mask); |
| 1303 | cpumask_and(tmp_mask, cfg->domain, tmp_mask); |
| 1304 | if (!cpumask_empty(tmp_mask)) { |
| 1305 | free_cpumask_var(tmp_mask); |
Ingo Molnar | 54168ed | 2008-08-20 09:07:45 +0200 | [diff] [blame] | 1306 | return 0; |
Mike Travis | 22f65d3 | 2008-12-16 17:33:56 -0800 | [diff] [blame] | 1307 | } |
Ingo Molnar | 54168ed | 2008-08-20 09:07:45 +0200 | [diff] [blame] | 1308 | } |
Yinghai Lu | 497c9a1 | 2008-08-19 20:50:28 -0700 | [diff] [blame] | 1309 | |
Mike Travis | e798673 | 2008-12-16 17:33:52 -0800 | [diff] [blame] | 1310 | /* Only try and allocate irqs on cpus that are present */ |
Mike Travis | 22f65d3 | 2008-12-16 17:33:56 -0800 | [diff] [blame] | 1311 | err = -ENOSPC; |
| 1312 | for_each_cpu_and(cpu, mask, cpu_online_mask) { |
Ingo Molnar | 54168ed | 2008-08-20 09:07:45 +0200 | [diff] [blame] | 1313 | int new_cpu; |
| 1314 | int vector, offset; |
Yinghai Lu | 497c9a1 | 2008-08-19 20:50:28 -0700 | [diff] [blame] | 1315 | |
Mike Travis | 22f65d3 | 2008-12-16 17:33:56 -0800 | [diff] [blame] | 1316 | vector_allocation_domain(cpu, tmp_mask); |
Yinghai Lu | 497c9a1 | 2008-08-19 20:50:28 -0700 | [diff] [blame] | 1317 | |
Ingo Molnar | 54168ed | 2008-08-20 09:07:45 +0200 | [diff] [blame] | 1318 | vector = current_vector; |
| 1319 | offset = current_offset; |
Yinghai Lu | 497c9a1 | 2008-08-19 20:50:28 -0700 | [diff] [blame] | 1320 | next: |
Ingo Molnar | 54168ed | 2008-08-20 09:07:45 +0200 | [diff] [blame] | 1321 | vector += 8; |
| 1322 | if (vector >= first_system_vector) { |
Mike Travis | e798673 | 2008-12-16 17:33:52 -0800 | [diff] [blame] | 1323 | /* If out of vectors on large boxen, must share them. */ |
Ingo Molnar | 54168ed | 2008-08-20 09:07:45 +0200 | [diff] [blame] | 1324 | offset = (offset + 1) % 8; |
| 1325 | vector = FIRST_DEVICE_VECTOR + offset; |
Yinghai Lu | 7a959cf | 2008-08-19 20:50:32 -0700 | [diff] [blame] | 1326 | } |
Ingo Molnar | 54168ed | 2008-08-20 09:07:45 +0200 | [diff] [blame] | 1327 | if (unlikely(current_vector == vector)) |
| 1328 | continue; |
| 1329 | #ifdef CONFIG_X86_64 |
| 1330 | if (vector == IA32_SYSCALL_VECTOR) |
| 1331 | goto next; |
| 1332 | #else |
| 1333 | if (vector == SYSCALL_VECTOR) |
| 1334 | goto next; |
| 1335 | #endif |
Mike Travis | 22f65d3 | 2008-12-16 17:33:56 -0800 | [diff] [blame] | 1336 | for_each_cpu_and(new_cpu, tmp_mask, cpu_online_mask) |
Ingo Molnar | 54168ed | 2008-08-20 09:07:45 +0200 | [diff] [blame] | 1337 | if (per_cpu(vector_irq, new_cpu)[vector] != -1) |
| 1338 | goto next; |
| 1339 | /* Found one! */ |
| 1340 | current_vector = vector; |
| 1341 | current_offset = offset; |
| 1342 | if (old_vector) { |
| 1343 | cfg->move_in_progress = 1; |
Mike Travis | 22f65d3 | 2008-12-16 17:33:56 -0800 | [diff] [blame] | 1344 | cpumask_copy(cfg->old_domain, cfg->domain); |
Ingo Molnar | 54168ed | 2008-08-20 09:07:45 +0200 | [diff] [blame] | 1345 | } |
Mike Travis | 22f65d3 | 2008-12-16 17:33:56 -0800 | [diff] [blame] | 1346 | for_each_cpu_and(new_cpu, tmp_mask, cpu_online_mask) |
Ingo Molnar | 54168ed | 2008-08-20 09:07:45 +0200 | [diff] [blame] | 1347 | per_cpu(vector_irq, new_cpu)[vector] = irq; |
| 1348 | cfg->vector = vector; |
Mike Travis | 22f65d3 | 2008-12-16 17:33:56 -0800 | [diff] [blame] | 1349 | cpumask_copy(cfg->domain, tmp_mask); |
| 1350 | err = 0; |
| 1351 | break; |
Ingo Molnar | 54168ed | 2008-08-20 09:07:45 +0200 | [diff] [blame] | 1352 | } |
Mike Travis | 22f65d3 | 2008-12-16 17:33:56 -0800 | [diff] [blame] | 1353 | free_cpumask_var(tmp_mask); |
| 1354 | return err; |
Yinghai Lu | 497c9a1 | 2008-08-19 20:50:28 -0700 | [diff] [blame] | 1355 | } |
| 1356 | |
Mike Travis | e798673 | 2008-12-16 17:33:52 -0800 | [diff] [blame] | 1357 | static int |
| 1358 | assign_irq_vector(int irq, struct irq_cfg *cfg, const struct cpumask *mask) |
Yinghai Lu | 497c9a1 | 2008-08-19 20:50:28 -0700 | [diff] [blame] | 1359 | { |
| 1360 | int err; |
Eric W. Biederman | ace80ab | 2006-10-04 02:16:47 -0700 | [diff] [blame] | 1361 | unsigned long flags; |
Eric W. Biederman | ace80ab | 2006-10-04 02:16:47 -0700 | [diff] [blame] | 1362 | |
| 1363 | spin_lock_irqsave(&vector_lock, flags); |
Yinghai Lu | 3145e94 | 2008-12-05 18:58:34 -0800 | [diff] [blame] | 1364 | err = __assign_irq_vector(irq, cfg, mask); |
Eric W. Biederman | ace80ab | 2006-10-04 02:16:47 -0700 | [diff] [blame] | 1365 | spin_unlock_irqrestore(&vector_lock, flags); |
Yinghai Lu | 497c9a1 | 2008-08-19 20:50:28 -0700 | [diff] [blame] | 1366 | return err; |
| 1367 | } |
| 1368 | |
Yinghai Lu | 3145e94 | 2008-12-05 18:58:34 -0800 | [diff] [blame] | 1369 | static void __clear_irq_vector(int irq, struct irq_cfg *cfg) |
Yinghai Lu | 497c9a1 | 2008-08-19 20:50:28 -0700 | [diff] [blame] | 1370 | { |
Yinghai Lu | 497c9a1 | 2008-08-19 20:50:28 -0700 | [diff] [blame] | 1371 | int cpu, vector; |
| 1372 | |
Yinghai Lu | 497c9a1 | 2008-08-19 20:50:28 -0700 | [diff] [blame] | 1373 | BUG_ON(!cfg->vector); |
| 1374 | |
| 1375 | vector = cfg->vector; |
Mike Travis | 22f65d3 | 2008-12-16 17:33:56 -0800 | [diff] [blame] | 1376 | for_each_cpu_and(cpu, cfg->domain, cpu_online_mask) |
Yinghai Lu | 497c9a1 | 2008-08-19 20:50:28 -0700 | [diff] [blame] | 1377 | per_cpu(vector_irq, cpu)[vector] = -1; |
| 1378 | |
| 1379 | cfg->vector = 0; |
Mike Travis | 22f65d3 | 2008-12-16 17:33:56 -0800 | [diff] [blame] | 1380 | cpumask_clear(cfg->domain); |
Matthew Wilcox | 0ca4b6b | 2008-11-20 14:09:33 -0700 | [diff] [blame] | 1381 | |
| 1382 | if (likely(!cfg->move_in_progress)) |
| 1383 | return; |
Mike Travis | 22f65d3 | 2008-12-16 17:33:56 -0800 | [diff] [blame] | 1384 | for_each_cpu_and(cpu, cfg->old_domain, cpu_online_mask) { |
Matthew Wilcox | 0ca4b6b | 2008-11-20 14:09:33 -0700 | [diff] [blame] | 1385 | for (vector = FIRST_EXTERNAL_VECTOR; vector < NR_VECTORS; |
| 1386 | vector++) { |
| 1387 | if (per_cpu(vector_irq, cpu)[vector] != irq) |
| 1388 | continue; |
| 1389 | per_cpu(vector_irq, cpu)[vector] = -1; |
| 1390 | break; |
| 1391 | } |
| 1392 | } |
| 1393 | cfg->move_in_progress = 0; |
Yinghai Lu | 497c9a1 | 2008-08-19 20:50:28 -0700 | [diff] [blame] | 1394 | } |
| 1395 | |
| 1396 | void __setup_vector_irq(int cpu) |
| 1397 | { |
| 1398 | /* Initialize vector_irq on a new cpu */ |
| 1399 | /* This function must be called with vector_lock held */ |
| 1400 | int irq, vector; |
| 1401 | struct irq_cfg *cfg; |
Yinghai Lu | 0b8f1ef | 2008-12-05 18:58:31 -0800 | [diff] [blame] | 1402 | struct irq_desc *desc; |
Yinghai Lu | 497c9a1 | 2008-08-19 20:50:28 -0700 | [diff] [blame] | 1403 | |
| 1404 | /* Mark the inuse vectors */ |
Yinghai Lu | 0b8f1ef | 2008-12-05 18:58:31 -0800 | [diff] [blame] | 1405 | for_each_irq_desc(irq, desc) { |
| 1406 | if (!desc) |
| 1407 | continue; |
| 1408 | cfg = desc->chip_data; |
Mike Travis | 22f65d3 | 2008-12-16 17:33:56 -0800 | [diff] [blame] | 1409 | if (!cpumask_test_cpu(cpu, cfg->domain)) |
Yinghai Lu | 497c9a1 | 2008-08-19 20:50:28 -0700 | [diff] [blame] | 1410 | continue; |
| 1411 | vector = cfg->vector; |
Yinghai Lu | 497c9a1 | 2008-08-19 20:50:28 -0700 | [diff] [blame] | 1412 | per_cpu(vector_irq, cpu)[vector] = irq; |
| 1413 | } |
| 1414 | /* Mark the free vectors */ |
| 1415 | for (vector = 0; vector < NR_VECTORS; ++vector) { |
| 1416 | irq = per_cpu(vector_irq, cpu)[vector]; |
| 1417 | if (irq < 0) |
| 1418 | continue; |
| 1419 | |
| 1420 | cfg = irq_cfg(irq); |
Mike Travis | 22f65d3 | 2008-12-16 17:33:56 -0800 | [diff] [blame] | 1421 | if (!cpumask_test_cpu(cpu, cfg->domain)) |
Yinghai Lu | 497c9a1 | 2008-08-19 20:50:28 -0700 | [diff] [blame] | 1422 | per_cpu(vector_irq, cpu)[vector] = -1; |
Ingo Molnar | 54168ed | 2008-08-20 09:07:45 +0200 | [diff] [blame] | 1423 | } |
Eric W. Biederman | ace80ab | 2006-10-04 02:16:47 -0700 | [diff] [blame] | 1424 | } |
Glauber Costa | 3fde690 | 2008-05-28 20:34:19 -0700 | [diff] [blame] | 1425 | |
Ingo Molnar | f5b9ed7 | 2006-10-04 02:16:26 -0700 | [diff] [blame] | 1426 | static struct irq_chip ioapic_chip; |
Ingo Molnar | 54168ed | 2008-08-20 09:07:45 +0200 | [diff] [blame] | 1427 | #ifdef CONFIG_INTR_REMAP |
| 1428 | static struct irq_chip ir_ioapic_chip; |
| 1429 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1430 | |
Ingo Molnar | 54168ed | 2008-08-20 09:07:45 +0200 | [diff] [blame] | 1431 | #define IOAPIC_AUTO -1 |
| 1432 | #define IOAPIC_EDGE 0 |
| 1433 | #define IOAPIC_LEVEL 1 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1434 | |
Yinghai Lu | 047c8fd | 2008-08-19 20:50:41 -0700 | [diff] [blame] | 1435 | #ifdef CONFIG_X86_32 |
Yinghai Lu | 1d02519 | 2008-08-19 20:50:34 -0700 | [diff] [blame] | 1436 | static inline int IO_APIC_irq_trigger(int irq) |
| 1437 | { |
Thomas Gleixner | d6c88a5 | 2008-10-15 15:27:23 +0200 | [diff] [blame] | 1438 | int apic, idx, pin; |
Yinghai Lu | 1d02519 | 2008-08-19 20:50:34 -0700 | [diff] [blame] | 1439 | |
Thomas Gleixner | d6c88a5 | 2008-10-15 15:27:23 +0200 | [diff] [blame] | 1440 | for (apic = 0; apic < nr_ioapics; apic++) { |
| 1441 | for (pin = 0; pin < nr_ioapic_registers[apic]; pin++) { |
| 1442 | idx = find_irq_entry(apic, pin, mp_INT); |
| 1443 | if ((idx != -1) && (irq == pin_2_irq(idx, apic, pin))) |
| 1444 | return irq_trigger(idx); |
| 1445 | } |
| 1446 | } |
| 1447 | /* |
Ingo Molnar | 54168ed | 2008-08-20 09:07:45 +0200 | [diff] [blame] | 1448 | * nonexistent IRQs are edge default |
| 1449 | */ |
Thomas Gleixner | d6c88a5 | 2008-10-15 15:27:23 +0200 | [diff] [blame] | 1450 | return 0; |
Yinghai Lu | 1d02519 | 2008-08-19 20:50:34 -0700 | [diff] [blame] | 1451 | } |
Yinghai Lu | 047c8fd | 2008-08-19 20:50:41 -0700 | [diff] [blame] | 1452 | #else |
| 1453 | static inline int IO_APIC_irq_trigger(int irq) |
| 1454 | { |
Ingo Molnar | 54168ed | 2008-08-20 09:07:45 +0200 | [diff] [blame] | 1455 | return 1; |
Yinghai Lu | 047c8fd | 2008-08-19 20:50:41 -0700 | [diff] [blame] | 1456 | } |
| 1457 | #endif |
Yinghai Lu | 1d02519 | 2008-08-19 20:50:34 -0700 | [diff] [blame] | 1458 | |
Yinghai Lu | 3145e94 | 2008-12-05 18:58:34 -0800 | [diff] [blame] | 1459 | static void ioapic_register_intr(int irq, struct irq_desc *desc, unsigned long trigger) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1460 | { |
Yinghai Lu | 199751d | 2008-08-19 20:50:27 -0700 | [diff] [blame] | 1461 | |
Jan Beulich | 6ebcc00 | 2006-06-26 13:56:46 +0200 | [diff] [blame] | 1462 | if ((trigger == IOAPIC_AUTO && IO_APIC_irq_trigger(irq)) || |
Yinghai Lu | 047c8fd | 2008-08-19 20:50:41 -0700 | [diff] [blame] | 1463 | trigger == IOAPIC_LEVEL) |
Yinghai Lu | 08678b0 | 2008-08-19 20:50:05 -0700 | [diff] [blame] | 1464 | desc->status |= IRQ_LEVEL; |
Yinghai Lu | 047c8fd | 2008-08-19 20:50:41 -0700 | [diff] [blame] | 1465 | else |
| 1466 | desc->status &= ~IRQ_LEVEL; |
| 1467 | |
Ingo Molnar | 54168ed | 2008-08-20 09:07:45 +0200 | [diff] [blame] | 1468 | #ifdef CONFIG_INTR_REMAP |
| 1469 | if (irq_remapped(irq)) { |
| 1470 | desc->status |= IRQ_MOVE_PCNTXT; |
| 1471 | if (trigger) |
| 1472 | set_irq_chip_and_handler_name(irq, &ir_ioapic_chip, |
| 1473 | handle_fasteoi_irq, |
| 1474 | "fasteoi"); |
| 1475 | else |
| 1476 | set_irq_chip_and_handler_name(irq, &ir_ioapic_chip, |
| 1477 | handle_edge_irq, "edge"); |
| 1478 | return; |
| 1479 | } |
| 1480 | #endif |
Yinghai Lu | 047c8fd | 2008-08-19 20:50:41 -0700 | [diff] [blame] | 1481 | if ((trigger == IOAPIC_AUTO && IO_APIC_irq_trigger(irq)) || |
| 1482 | trigger == IOAPIC_LEVEL) |
Ingo Molnar | a460e74 | 2006-10-17 00:10:03 -0700 | [diff] [blame] | 1483 | set_irq_chip_and_handler_name(irq, &ioapic_chip, |
Ingo Molnar | 54168ed | 2008-08-20 09:07:45 +0200 | [diff] [blame] | 1484 | handle_fasteoi_irq, |
| 1485 | "fasteoi"); |
Yinghai Lu | 047c8fd | 2008-08-19 20:50:41 -0700 | [diff] [blame] | 1486 | else |
Ingo Molnar | a460e74 | 2006-10-17 00:10:03 -0700 | [diff] [blame] | 1487 | set_irq_chip_and_handler_name(irq, &ioapic_chip, |
Ingo Molnar | 54168ed | 2008-08-20 09:07:45 +0200 | [diff] [blame] | 1488 | handle_edge_irq, "edge"); |
Yinghai Lu | 497c9a1 | 2008-08-19 20:50:28 -0700 | [diff] [blame] | 1489 | } |
| 1490 | |
| 1491 | static int setup_ioapic_entry(int apic, int irq, |
| 1492 | struct IO_APIC_route_entry *entry, |
| 1493 | unsigned int destination, int trigger, |
| 1494 | int polarity, int vector) |
| 1495 | { |
| 1496 | /* |
| 1497 | * add it to the IO-APIC irq-routing table: |
| 1498 | */ |
| 1499 | memset(entry,0,sizeof(*entry)); |
| 1500 | |
Ingo Molnar | 54168ed | 2008-08-20 09:07:45 +0200 | [diff] [blame] | 1501 | #ifdef CONFIG_INTR_REMAP |
| 1502 | if (intr_remapping_enabled) { |
| 1503 | struct intel_iommu *iommu = map_ioapic_to_ir(apic); |
| 1504 | struct irte irte; |
| 1505 | struct IR_IO_APIC_route_entry *ir_entry = |
| 1506 | (struct IR_IO_APIC_route_entry *) entry; |
| 1507 | int index; |
Yinghai Lu | 497c9a1 | 2008-08-19 20:50:28 -0700 | [diff] [blame] | 1508 | |
Ingo Molnar | 54168ed | 2008-08-20 09:07:45 +0200 | [diff] [blame] | 1509 | if (!iommu) |
| 1510 | panic("No mapping iommu for ioapic %d\n", apic); |
| 1511 | |
| 1512 | index = alloc_irte(iommu, irq, 1); |
| 1513 | if (index < 0) |
| 1514 | panic("Failed to allocate IRTE for ioapic %d\n", apic); |
| 1515 | |
| 1516 | memset(&irte, 0, sizeof(irte)); |
| 1517 | |
| 1518 | irte.present = 1; |
| 1519 | irte.dst_mode = INT_DEST_MODE; |
| 1520 | irte.trigger_mode = trigger; |
| 1521 | irte.dlvry_mode = INT_DELIVERY_MODE; |
| 1522 | irte.vector = vector; |
| 1523 | irte.dest_id = IRTE_DEST(destination); |
| 1524 | |
| 1525 | modify_irte(irq, &irte); |
| 1526 | |
| 1527 | ir_entry->index2 = (index >> 15) & 0x1; |
| 1528 | ir_entry->zero = 0; |
| 1529 | ir_entry->format = 1; |
| 1530 | ir_entry->index = (index & 0x7fff); |
| 1531 | } else |
| 1532 | #endif |
| 1533 | { |
| 1534 | entry->delivery_mode = INT_DELIVERY_MODE; |
| 1535 | entry->dest_mode = INT_DEST_MODE; |
| 1536 | entry->dest = destination; |
| 1537 | } |
| 1538 | |
| 1539 | entry->mask = 0; /* enable IRQ */ |
Yinghai Lu | 497c9a1 | 2008-08-19 20:50:28 -0700 | [diff] [blame] | 1540 | entry->trigger = trigger; |
| 1541 | entry->polarity = polarity; |
| 1542 | entry->vector = vector; |
| 1543 | |
| 1544 | /* Mask level triggered irqs. |
| 1545 | * Use IRQ_DELAYED_DISABLE for edge triggered irqs. |
| 1546 | */ |
| 1547 | if (trigger) |
| 1548 | entry->mask = 1; |
Yinghai Lu | 497c9a1 | 2008-08-19 20:50:28 -0700 | [diff] [blame] | 1549 | return 0; |
| 1550 | } |
| 1551 | |
Yinghai Lu | 3145e94 | 2008-12-05 18:58:34 -0800 | [diff] [blame] | 1552 | static void setup_IO_APIC_irq(int apic, int pin, unsigned int irq, struct irq_desc *desc, |
Ingo Molnar | 54168ed | 2008-08-20 09:07:45 +0200 | [diff] [blame] | 1553 | int trigger, int polarity) |
Yinghai Lu | 497c9a1 | 2008-08-19 20:50:28 -0700 | [diff] [blame] | 1554 | { |
| 1555 | struct irq_cfg *cfg; |
| 1556 | struct IO_APIC_route_entry entry; |
Mike Travis | 22f65d3 | 2008-12-16 17:33:56 -0800 | [diff] [blame] | 1557 | unsigned int dest; |
Yinghai Lu | 497c9a1 | 2008-08-19 20:50:28 -0700 | [diff] [blame] | 1558 | |
| 1559 | if (!IO_APIC_IRQ(irq)) |
| 1560 | return; |
| 1561 | |
Yinghai Lu | 3145e94 | 2008-12-05 18:58:34 -0800 | [diff] [blame] | 1562 | cfg = desc->chip_data; |
Yinghai Lu | 497c9a1 | 2008-08-19 20:50:28 -0700 | [diff] [blame] | 1563 | |
Mike Travis | 22f65d3 | 2008-12-16 17:33:56 -0800 | [diff] [blame] | 1564 | if (assign_irq_vector(irq, cfg, TARGET_CPUS)) |
Yinghai Lu | 497c9a1 | 2008-08-19 20:50:28 -0700 | [diff] [blame] | 1565 | return; |
| 1566 | |
Mike Travis | 22f65d3 | 2008-12-16 17:33:56 -0800 | [diff] [blame] | 1567 | dest = cpu_mask_to_apicid_and(cfg->domain, TARGET_CPUS); |
Yinghai Lu | 497c9a1 | 2008-08-19 20:50:28 -0700 | [diff] [blame] | 1568 | |
| 1569 | apic_printk(APIC_VERBOSE,KERN_DEBUG |
| 1570 | "IOAPIC[%d]: Set routing entry (%d-%d -> 0x%x -> " |
| 1571 | "IRQ %d Mode:%i Active:%i)\n", |
| 1572 | apic, mp_ioapics[apic].mp_apicid, pin, cfg->vector, |
| 1573 | irq, trigger, polarity); |
| 1574 | |
| 1575 | |
| 1576 | if (setup_ioapic_entry(mp_ioapics[apic].mp_apicid, irq, &entry, |
Mike Travis | 22f65d3 | 2008-12-16 17:33:56 -0800 | [diff] [blame] | 1577 | dest, trigger, polarity, cfg->vector)) { |
Yinghai Lu | 497c9a1 | 2008-08-19 20:50:28 -0700 | [diff] [blame] | 1578 | printk("Failed to setup ioapic entry for ioapic %d, pin %d\n", |
| 1579 | mp_ioapics[apic].mp_apicid, pin); |
Yinghai Lu | 3145e94 | 2008-12-05 18:58:34 -0800 | [diff] [blame] | 1580 | __clear_irq_vector(irq, cfg); |
Yinghai Lu | 497c9a1 | 2008-08-19 20:50:28 -0700 | [diff] [blame] | 1581 | return; |
| 1582 | } |
| 1583 | |
Yinghai Lu | 3145e94 | 2008-12-05 18:58:34 -0800 | [diff] [blame] | 1584 | ioapic_register_intr(irq, desc, trigger); |
Yinghai Lu | 99d093d | 2008-12-05 18:58:32 -0800 | [diff] [blame] | 1585 | if (irq < NR_IRQS_LEGACY) |
Yinghai Lu | 497c9a1 | 2008-08-19 20:50:28 -0700 | [diff] [blame] | 1586 | disable_8259A_irq(irq); |
| 1587 | |
| 1588 | ioapic_write_entry(apic, pin, entry); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1589 | } |
| 1590 | |
| 1591 | static void __init setup_IO_APIC_irqs(void) |
| 1592 | { |
Cyrill Gorcunov | 3c2cbd2 | 2008-09-06 14:15:33 +0400 | [diff] [blame] | 1593 | int apic, pin, idx, irq; |
| 1594 | int notcon = 0; |
Yinghai Lu | 0b8f1ef | 2008-12-05 18:58:31 -0800 | [diff] [blame] | 1595 | struct irq_desc *desc; |
Yinghai Lu | 3145e94 | 2008-12-05 18:58:34 -0800 | [diff] [blame] | 1596 | struct irq_cfg *cfg; |
Yinghai Lu | 0b8f1ef | 2008-12-05 18:58:31 -0800 | [diff] [blame] | 1597 | int cpu = boot_cpu_id; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1598 | |
| 1599 | apic_printk(APIC_VERBOSE, KERN_DEBUG "init IO_APIC IRQs\n"); |
| 1600 | |
| 1601 | for (apic = 0; apic < nr_ioapics; apic++) { |
Cyrill Gorcunov | 3c2cbd2 | 2008-09-06 14:15:33 +0400 | [diff] [blame] | 1602 | for (pin = 0; pin < nr_ioapic_registers[apic]; pin++) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1603 | |
Cyrill Gorcunov | 3c2cbd2 | 2008-09-06 14:15:33 +0400 | [diff] [blame] | 1604 | idx = find_irq_entry(apic, pin, mp_INT); |
| 1605 | if (idx == -1) { |
Cyrill Gorcunov | 2a554fb | 2008-09-08 19:38:06 +0400 | [diff] [blame] | 1606 | if (!notcon) { |
Cyrill Gorcunov | 3c2cbd2 | 2008-09-06 14:15:33 +0400 | [diff] [blame] | 1607 | notcon = 1; |
Cyrill Gorcunov | 2a554fb | 2008-09-08 19:38:06 +0400 | [diff] [blame] | 1608 | apic_printk(APIC_VERBOSE, |
| 1609 | KERN_DEBUG " %d-%d", |
| 1610 | mp_ioapics[apic].mp_apicid, |
| 1611 | pin); |
| 1612 | } else |
| 1613 | apic_printk(APIC_VERBOSE, " %d-%d", |
| 1614 | mp_ioapics[apic].mp_apicid, |
| 1615 | pin); |
Cyrill Gorcunov | 3c2cbd2 | 2008-09-06 14:15:33 +0400 | [diff] [blame] | 1616 | continue; |
| 1617 | } |
Cyrill Gorcunov | 56ffa1a | 2008-09-13 13:11:16 +0400 | [diff] [blame] | 1618 | if (notcon) { |
| 1619 | apic_printk(APIC_VERBOSE, |
| 1620 | " (apicid-pin) not connected\n"); |
| 1621 | notcon = 0; |
| 1622 | } |
Yinghai Lu | 20d225b | 2007-10-17 18:04:41 +0200 | [diff] [blame] | 1623 | |
Cyrill Gorcunov | 3c2cbd2 | 2008-09-06 14:15:33 +0400 | [diff] [blame] | 1624 | irq = pin_2_irq(idx, apic, pin); |
Ingo Molnar | 54168ed | 2008-08-20 09:07:45 +0200 | [diff] [blame] | 1625 | #ifdef CONFIG_X86_32 |
Cyrill Gorcunov | 3c2cbd2 | 2008-09-06 14:15:33 +0400 | [diff] [blame] | 1626 | if (multi_timer_check(apic, irq)) |
| 1627 | continue; |
Ingo Molnar | 54168ed | 2008-08-20 09:07:45 +0200 | [diff] [blame] | 1628 | #endif |
Yinghai Lu | 0b8f1ef | 2008-12-05 18:58:31 -0800 | [diff] [blame] | 1629 | desc = irq_to_desc_alloc_cpu(irq, cpu); |
| 1630 | if (!desc) { |
| 1631 | printk(KERN_INFO "can not get irq_desc for %d\n", irq); |
| 1632 | continue; |
| 1633 | } |
Yinghai Lu | 3145e94 | 2008-12-05 18:58:34 -0800 | [diff] [blame] | 1634 | cfg = desc->chip_data; |
| 1635 | add_pin_to_irq_cpu(cfg, cpu, apic, pin); |
Paolo Ciarrocchi | 3606244 | 2008-06-08 13:07:18 +0200 | [diff] [blame] | 1636 | |
Yinghai Lu | 3145e94 | 2008-12-05 18:58:34 -0800 | [diff] [blame] | 1637 | setup_IO_APIC_irq(apic, pin, irq, desc, |
Cyrill Gorcunov | 3c2cbd2 | 2008-09-06 14:15:33 +0400 | [diff] [blame] | 1638 | irq_trigger(idx), irq_polarity(idx)); |
| 1639 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1640 | } |
| 1641 | |
Cyrill Gorcunov | 3c2cbd2 | 2008-09-06 14:15:33 +0400 | [diff] [blame] | 1642 | if (notcon) |
| 1643 | apic_printk(APIC_VERBOSE, |
Cyrill Gorcunov | 2a554fb | 2008-09-08 19:38:06 +0400 | [diff] [blame] | 1644 | " (apicid-pin) not connected\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1645 | } |
| 1646 | |
| 1647 | /* |
Maciej W. Rozycki | f7633ce | 2008-05-27 21:19:34 +0100 | [diff] [blame] | 1648 | * Set up the timer pin, possibly with the 8259A-master behind. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1649 | */ |
Maciej W. Rozycki | f7633ce | 2008-05-27 21:19:34 +0100 | [diff] [blame] | 1650 | static void __init setup_timer_IRQ0_pin(unsigned int apic, unsigned int pin, |
| 1651 | int vector) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1652 | { |
| 1653 | struct IO_APIC_route_entry entry; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1654 | |
Ingo Molnar | 54168ed | 2008-08-20 09:07:45 +0200 | [diff] [blame] | 1655 | #ifdef CONFIG_INTR_REMAP |
| 1656 | if (intr_remapping_enabled) |
| 1657 | return; |
| 1658 | #endif |
| 1659 | |
Paolo Ciarrocchi | 3606244 | 2008-06-08 13:07:18 +0200 | [diff] [blame] | 1660 | memset(&entry, 0, sizeof(entry)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1661 | |
| 1662 | /* |
| 1663 | * We use logical delivery to get the timer IRQ |
| 1664 | * to the first CPU. |
| 1665 | */ |
| 1666 | entry.dest_mode = INT_DEST_MODE; |
Maciej W. Rozycki | 03be750 | 2008-05-27 21:19:45 +0100 | [diff] [blame] | 1667 | entry.mask = 1; /* mask IRQ now */ |
Yinghai Lu | d83e94a | 2008-08-19 20:50:33 -0700 | [diff] [blame] | 1668 | entry.dest = cpu_mask_to_apicid(TARGET_CPUS); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1669 | entry.delivery_mode = INT_DELIVERY_MODE; |
| 1670 | entry.polarity = 0; |
| 1671 | entry.trigger = 0; |
| 1672 | entry.vector = vector; |
| 1673 | |
| 1674 | /* |
| 1675 | * The timer IRQ doesn't have to know that behind the |
Maciej W. Rozycki | f7633ce | 2008-05-27 21:19:34 +0100 | [diff] [blame] | 1676 | * scene we may have a 8259A-master in AEOI mode ... |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1677 | */ |
Ingo Molnar | 54168ed | 2008-08-20 09:07:45 +0200 | [diff] [blame] | 1678 | set_irq_chip_and_handler_name(0, &ioapic_chip, handle_edge_irq, "edge"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1679 | |
| 1680 | /* |
| 1681 | * Add it to the IO-APIC irq-routing table: |
| 1682 | */ |
Andi Kleen | cf4c6a2 | 2006-09-26 10:52:30 +0200 | [diff] [blame] | 1683 | ioapic_write_entry(apic, pin, entry); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1684 | } |
| 1685 | |
Maciej W. Rozycki | 32f71af | 2008-07-21 00:52:49 +0100 | [diff] [blame] | 1686 | |
| 1687 | __apicdebuginit(void) print_IO_APIC(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1688 | { |
| 1689 | int apic, i; |
| 1690 | union IO_APIC_reg_00 reg_00; |
| 1691 | union IO_APIC_reg_01 reg_01; |
| 1692 | union IO_APIC_reg_02 reg_02; |
| 1693 | union IO_APIC_reg_03 reg_03; |
| 1694 | unsigned long flags; |
Yinghai Lu | 0f978f4 | 2008-08-19 20:50:26 -0700 | [diff] [blame] | 1695 | struct irq_cfg *cfg; |
Yinghai Lu | 0b8f1ef | 2008-12-05 18:58:31 -0800 | [diff] [blame] | 1696 | struct irq_desc *desc; |
Yinghai Lu | 8f09cd2 | 2008-08-19 20:50:51 -0700 | [diff] [blame] | 1697 | unsigned int irq; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1698 | |
| 1699 | if (apic_verbosity == APIC_QUIET) |
| 1700 | return; |
| 1701 | |
Paolo Ciarrocchi | 3606244 | 2008-06-08 13:07:18 +0200 | [diff] [blame] | 1702 | printk(KERN_DEBUG "number of MP IRQ sources: %d.\n", mp_irq_entries); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1703 | for (i = 0; i < nr_ioapics; i++) |
| 1704 | printk(KERN_DEBUG "number of IO-APIC #%d registers: %d.\n", |
Alexey Starikovskiy | ec2cd0a | 2008-05-14 19:03:10 +0400 | [diff] [blame] | 1705 | mp_ioapics[i].mp_apicid, nr_ioapic_registers[i]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1706 | |
| 1707 | /* |
| 1708 | * We are a bit conservative about what we expect. We have to |
| 1709 | * know about every hardware change ASAP. |
| 1710 | */ |
| 1711 | printk(KERN_INFO "testing the IO APIC.......................\n"); |
| 1712 | |
| 1713 | for (apic = 0; apic < nr_ioapics; apic++) { |
| 1714 | |
| 1715 | spin_lock_irqsave(&ioapic_lock, flags); |
| 1716 | reg_00.raw = io_apic_read(apic, 0); |
| 1717 | reg_01.raw = io_apic_read(apic, 1); |
| 1718 | if (reg_01.bits.version >= 0x10) |
| 1719 | reg_02.raw = io_apic_read(apic, 2); |
Thomas Gleixner | d6c88a5 | 2008-10-15 15:27:23 +0200 | [diff] [blame] | 1720 | if (reg_01.bits.version >= 0x20) |
| 1721 | reg_03.raw = io_apic_read(apic, 3); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1722 | spin_unlock_irqrestore(&ioapic_lock, flags); |
| 1723 | |
Ingo Molnar | 54168ed | 2008-08-20 09:07:45 +0200 | [diff] [blame] | 1724 | printk("\n"); |
Alexey Starikovskiy | ec2cd0a | 2008-05-14 19:03:10 +0400 | [diff] [blame] | 1725 | printk(KERN_DEBUG "IO APIC #%d......\n", mp_ioapics[apic].mp_apicid); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1726 | printk(KERN_DEBUG ".... register #00: %08X\n", reg_00.raw); |
| 1727 | printk(KERN_DEBUG "....... : physical APIC id: %02X\n", reg_00.bits.ID); |
| 1728 | printk(KERN_DEBUG "....... : Delivery Type: %X\n", reg_00.bits.delivery_type); |
| 1729 | printk(KERN_DEBUG "....... : LTS : %X\n", reg_00.bits.LTS); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1730 | |
Ingo Molnar | 54168ed | 2008-08-20 09:07:45 +0200 | [diff] [blame] | 1731 | printk(KERN_DEBUG ".... register #01: %08X\n", *(int *)®_01); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1732 | printk(KERN_DEBUG "....... : max redirection entries: %04X\n", reg_01.bits.entries); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1733 | |
| 1734 | printk(KERN_DEBUG "....... : PRQ implemented: %X\n", reg_01.bits.PRQ); |
| 1735 | printk(KERN_DEBUG "....... : IO APIC version: %04X\n", reg_01.bits.version); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1736 | |
| 1737 | /* |
| 1738 | * Some Intel chipsets with IO APIC VERSION of 0x1? don't have reg_02, |
| 1739 | * but the value of reg_02 is read as the previous read register |
| 1740 | * value, so ignore it if reg_02 == reg_01. |
| 1741 | */ |
| 1742 | if (reg_01.bits.version >= 0x10 && reg_02.raw != reg_01.raw) { |
| 1743 | printk(KERN_DEBUG ".... register #02: %08X\n", reg_02.raw); |
| 1744 | printk(KERN_DEBUG "....... : arbitration: %02X\n", reg_02.bits.arbitration); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1745 | } |
| 1746 | |
| 1747 | /* |
| 1748 | * Some Intel chipsets with IO APIC VERSION of 0x2? don't have reg_02 |
| 1749 | * or reg_03, but the value of reg_0[23] is read as the previous read |
| 1750 | * register value, so ignore it if reg_03 == reg_0[12]. |
| 1751 | */ |
| 1752 | if (reg_01.bits.version >= 0x20 && reg_03.raw != reg_02.raw && |
| 1753 | reg_03.raw != reg_01.raw) { |
| 1754 | printk(KERN_DEBUG ".... register #03: %08X\n", reg_03.raw); |
| 1755 | printk(KERN_DEBUG "....... : Boot DT : %X\n", reg_03.bits.boot_DT); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1756 | } |
| 1757 | |
| 1758 | printk(KERN_DEBUG ".... IRQ redirection table:\n"); |
| 1759 | |
Yinghai Lu | d83e94a | 2008-08-19 20:50:33 -0700 | [diff] [blame] | 1760 | printk(KERN_DEBUG " NR Dst Mask Trig IRR Pol" |
| 1761 | " Stat Dmod Deli Vect: \n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1762 | |
| 1763 | for (i = 0; i <= reg_01.bits.entries; i++) { |
| 1764 | struct IO_APIC_route_entry entry; |
| 1765 | |
Andi Kleen | cf4c6a2 | 2006-09-26 10:52:30 +0200 | [diff] [blame] | 1766 | entry = ioapic_read_entry(apic, i); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1767 | |
Ingo Molnar | 54168ed | 2008-08-20 09:07:45 +0200 | [diff] [blame] | 1768 | printk(KERN_DEBUG " %02x %03X ", |
| 1769 | i, |
| 1770 | entry.dest |
| 1771 | ); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1772 | |
| 1773 | printk("%1d %1d %1d %1d %1d %1d %1d %02X\n", |
| 1774 | entry.mask, |
| 1775 | entry.trigger, |
| 1776 | entry.irr, |
| 1777 | entry.polarity, |
| 1778 | entry.delivery_status, |
| 1779 | entry.dest_mode, |
| 1780 | entry.delivery_mode, |
| 1781 | entry.vector |
| 1782 | ); |
| 1783 | } |
| 1784 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1785 | printk(KERN_DEBUG "IRQ to pin mappings:\n"); |
Yinghai Lu | 0b8f1ef | 2008-12-05 18:58:31 -0800 | [diff] [blame] | 1786 | for_each_irq_desc(irq, desc) { |
| 1787 | struct irq_pin_list *entry; |
| 1788 | |
| 1789 | if (!desc) |
| 1790 | continue; |
| 1791 | cfg = desc->chip_data; |
| 1792 | entry = cfg->irq_2_pin; |
Yinghai Lu | 0f978f4 | 2008-08-19 20:50:26 -0700 | [diff] [blame] | 1793 | if (!entry) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1794 | continue; |
Yinghai Lu | 8f09cd2 | 2008-08-19 20:50:51 -0700 | [diff] [blame] | 1795 | printk(KERN_DEBUG "IRQ%d ", irq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1796 | for (;;) { |
| 1797 | printk("-> %d:%d", entry->apic, entry->pin); |
| 1798 | if (!entry->next) |
| 1799 | break; |
Yinghai Lu | 0f978f4 | 2008-08-19 20:50:26 -0700 | [diff] [blame] | 1800 | entry = entry->next; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1801 | } |
| 1802 | printk("\n"); |
| 1803 | } |
| 1804 | |
| 1805 | printk(KERN_INFO ".................................... done.\n"); |
| 1806 | |
| 1807 | return; |
| 1808 | } |
| 1809 | |
Maciej W. Rozycki | 32f71af | 2008-07-21 00:52:49 +0100 | [diff] [blame] | 1810 | __apicdebuginit(void) print_APIC_bitfield(int base) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1811 | { |
| 1812 | unsigned int v; |
| 1813 | int i, j; |
| 1814 | |
| 1815 | if (apic_verbosity == APIC_QUIET) |
| 1816 | return; |
| 1817 | |
| 1818 | printk(KERN_DEBUG "0123456789abcdef0123456789abcdef\n" KERN_DEBUG); |
| 1819 | for (i = 0; i < 8; i++) { |
| 1820 | v = apic_read(base + i*0x10); |
| 1821 | for (j = 0; j < 32; j++) { |
| 1822 | if (v & (1<<j)) |
| 1823 | printk("1"); |
| 1824 | else |
| 1825 | printk("0"); |
| 1826 | } |
| 1827 | printk("\n"); |
| 1828 | } |
| 1829 | } |
| 1830 | |
Maciej W. Rozycki | 32f71af | 2008-07-21 00:52:49 +0100 | [diff] [blame] | 1831 | __apicdebuginit(void) print_local_APIC(void *dummy) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1832 | { |
| 1833 | unsigned int v, ver, maxlvt; |
Hiroshi Shimamoto | 7ab6af7 | 2008-07-30 17:36:48 -0700 | [diff] [blame] | 1834 | u64 icr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1835 | |
| 1836 | if (apic_verbosity == APIC_QUIET) |
| 1837 | return; |
| 1838 | |
| 1839 | printk("\n" KERN_DEBUG "printing local APIC contents on CPU#%d/%d:\n", |
| 1840 | smp_processor_id(), hard_smp_processor_id()); |
Andreas Herrmann | 6682311 | 2008-06-05 16:35:10 +0200 | [diff] [blame] | 1841 | v = apic_read(APIC_ID); |
Ingo Molnar | 54168ed | 2008-08-20 09:07:45 +0200 | [diff] [blame] | 1842 | printk(KERN_INFO "... APIC ID: %08x (%01x)\n", v, read_apic_id()); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1843 | v = apic_read(APIC_LVR); |
| 1844 | printk(KERN_INFO "... APIC VERSION: %08x\n", v); |
| 1845 | ver = GET_APIC_VERSION(v); |
Thomas Gleixner | e05d723 | 2007-02-16 01:27:58 -0800 | [diff] [blame] | 1846 | maxlvt = lapic_get_maxlvt(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1847 | |
| 1848 | v = apic_read(APIC_TASKPRI); |
| 1849 | printk(KERN_DEBUG "... APIC TASKPRI: %08x (%02x)\n", v, v & APIC_TPRI_MASK); |
| 1850 | |
Ingo Molnar | 54168ed | 2008-08-20 09:07:45 +0200 | [diff] [blame] | 1851 | if (APIC_INTEGRATED(ver)) { /* !82489DX */ |
Yinghai Lu | a11b5ab | 2008-09-03 16:58:31 -0700 | [diff] [blame] | 1852 | if (!APIC_XAPIC(ver)) { |
| 1853 | v = apic_read(APIC_ARBPRI); |
| 1854 | printk(KERN_DEBUG "... APIC ARBPRI: %08x (%02x)\n", v, |
| 1855 | v & APIC_ARBPRI_MASK); |
| 1856 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1857 | v = apic_read(APIC_PROCPRI); |
| 1858 | printk(KERN_DEBUG "... APIC PROCPRI: %08x\n", v); |
| 1859 | } |
| 1860 | |
Yinghai Lu | a11b5ab | 2008-09-03 16:58:31 -0700 | [diff] [blame] | 1861 | /* |
| 1862 | * Remote read supported only in the 82489DX and local APIC for |
| 1863 | * Pentium processors. |
| 1864 | */ |
| 1865 | if (!APIC_INTEGRATED(ver) || maxlvt == 3) { |
| 1866 | v = apic_read(APIC_RRR); |
| 1867 | printk(KERN_DEBUG "... APIC RRR: %08x\n", v); |
| 1868 | } |
| 1869 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1870 | v = apic_read(APIC_LDR); |
| 1871 | printk(KERN_DEBUG "... APIC LDR: %08x\n", v); |
Yinghai Lu | a11b5ab | 2008-09-03 16:58:31 -0700 | [diff] [blame] | 1872 | if (!x2apic_enabled()) { |
| 1873 | v = apic_read(APIC_DFR); |
| 1874 | printk(KERN_DEBUG "... APIC DFR: %08x\n", v); |
| 1875 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1876 | v = apic_read(APIC_SPIV); |
| 1877 | printk(KERN_DEBUG "... APIC SPIV: %08x\n", v); |
| 1878 | |
| 1879 | printk(KERN_DEBUG "... APIC ISR field:\n"); |
| 1880 | print_APIC_bitfield(APIC_ISR); |
| 1881 | printk(KERN_DEBUG "... APIC TMR field:\n"); |
| 1882 | print_APIC_bitfield(APIC_TMR); |
| 1883 | printk(KERN_DEBUG "... APIC IRR field:\n"); |
| 1884 | print_APIC_bitfield(APIC_IRR); |
| 1885 | |
Ingo Molnar | 54168ed | 2008-08-20 09:07:45 +0200 | [diff] [blame] | 1886 | if (APIC_INTEGRATED(ver)) { /* !82489DX */ |
| 1887 | if (maxlvt > 3) /* Due to the Pentium erratum 3AP. */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1888 | apic_write(APIC_ESR, 0); |
Ingo Molnar | 54168ed | 2008-08-20 09:07:45 +0200 | [diff] [blame] | 1889 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1890 | v = apic_read(APIC_ESR); |
| 1891 | printk(KERN_DEBUG "... APIC ESR: %08x\n", v); |
| 1892 | } |
| 1893 | |
Hiroshi Shimamoto | 7ab6af7 | 2008-07-30 17:36:48 -0700 | [diff] [blame] | 1894 | icr = apic_icr_read(); |
Ingo Molnar | 0c425ce | 2008-08-18 13:04:26 +0200 | [diff] [blame] | 1895 | printk(KERN_DEBUG "... APIC ICR: %08x\n", (u32)icr); |
| 1896 | printk(KERN_DEBUG "... APIC ICR2: %08x\n", (u32)(icr >> 32)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1897 | |
| 1898 | v = apic_read(APIC_LVTT); |
| 1899 | printk(KERN_DEBUG "... APIC LVTT: %08x\n", v); |
| 1900 | |
| 1901 | if (maxlvt > 3) { /* PC is LVT#4. */ |
| 1902 | v = apic_read(APIC_LVTPC); |
| 1903 | printk(KERN_DEBUG "... APIC LVTPC: %08x\n", v); |
| 1904 | } |
| 1905 | v = apic_read(APIC_LVT0); |
| 1906 | printk(KERN_DEBUG "... APIC LVT0: %08x\n", v); |
| 1907 | v = apic_read(APIC_LVT1); |
| 1908 | printk(KERN_DEBUG "... APIC LVT1: %08x\n", v); |
| 1909 | |
| 1910 | if (maxlvt > 2) { /* ERR is LVT#3. */ |
| 1911 | v = apic_read(APIC_LVTERR); |
| 1912 | printk(KERN_DEBUG "... APIC LVTERR: %08x\n", v); |
| 1913 | } |
| 1914 | |
| 1915 | v = apic_read(APIC_TMICT); |
| 1916 | printk(KERN_DEBUG "... APIC TMICT: %08x\n", v); |
| 1917 | v = apic_read(APIC_TMCCT); |
| 1918 | printk(KERN_DEBUG "... APIC TMCCT: %08x\n", v); |
| 1919 | v = apic_read(APIC_TDCR); |
| 1920 | printk(KERN_DEBUG "... APIC TDCR: %08x\n", v); |
| 1921 | printk("\n"); |
| 1922 | } |
| 1923 | |
Maciej W. Rozycki | 32f71af | 2008-07-21 00:52:49 +0100 | [diff] [blame] | 1924 | __apicdebuginit(void) print_all_local_APICs(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1925 | { |
Yinghai Lu | ffd5aae | 2008-08-19 20:50:50 -0700 | [diff] [blame] | 1926 | int cpu; |
| 1927 | |
| 1928 | preempt_disable(); |
| 1929 | for_each_online_cpu(cpu) |
| 1930 | smp_call_function_single(cpu, print_local_APIC, NULL, 1); |
| 1931 | preempt_enable(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1932 | } |
| 1933 | |
Maciej W. Rozycki | 32f71af | 2008-07-21 00:52:49 +0100 | [diff] [blame] | 1934 | __apicdebuginit(void) print_PIC(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1935 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1936 | unsigned int v; |
| 1937 | unsigned long flags; |
| 1938 | |
| 1939 | if (apic_verbosity == APIC_QUIET) |
| 1940 | return; |
| 1941 | |
| 1942 | printk(KERN_DEBUG "\nprinting PIC contents\n"); |
| 1943 | |
| 1944 | spin_lock_irqsave(&i8259A_lock, flags); |
| 1945 | |
| 1946 | v = inb(0xa1) << 8 | inb(0x21); |
| 1947 | printk(KERN_DEBUG "... PIC IMR: %04x\n", v); |
| 1948 | |
| 1949 | v = inb(0xa0) << 8 | inb(0x20); |
| 1950 | printk(KERN_DEBUG "... PIC IRR: %04x\n", v); |
| 1951 | |
Ingo Molnar | 54168ed | 2008-08-20 09:07:45 +0200 | [diff] [blame] | 1952 | outb(0x0b,0xa0); |
| 1953 | outb(0x0b,0x20); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1954 | v = inb(0xa0) << 8 | inb(0x20); |
Ingo Molnar | 54168ed | 2008-08-20 09:07:45 +0200 | [diff] [blame] | 1955 | outb(0x0a,0xa0); |
| 1956 | outb(0x0a,0x20); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1957 | |
| 1958 | spin_unlock_irqrestore(&i8259A_lock, flags); |
| 1959 | |
| 1960 | printk(KERN_DEBUG "... PIC ISR: %04x\n", v); |
| 1961 | |
| 1962 | v = inb(0x4d1) << 8 | inb(0x4d0); |
| 1963 | printk(KERN_DEBUG "... PIC ELCR: %04x\n", v); |
| 1964 | } |
| 1965 | |
Maciej W. Rozycki | 32f71af | 2008-07-21 00:52:49 +0100 | [diff] [blame] | 1966 | __apicdebuginit(int) print_all_ICs(void) |
| 1967 | { |
| 1968 | print_PIC(); |
| 1969 | print_all_local_APICs(); |
| 1970 | print_IO_APIC(); |
| 1971 | |
| 1972 | return 0; |
| 1973 | } |
| 1974 | |
| 1975 | fs_initcall(print_all_ICs); |
| 1976 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1977 | |
Yinghai Lu | efa2559 | 2008-08-19 20:50:36 -0700 | [diff] [blame] | 1978 | /* Where if anywhere is the i8259 connect in external int mode */ |
| 1979 | static struct { int pin, apic; } ioapic_i8259 = { -1, -1 }; |
| 1980 | |
Ingo Molnar | 54168ed | 2008-08-20 09:07:45 +0200 | [diff] [blame] | 1981 | void __init enable_IO_APIC(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1982 | { |
| 1983 | union IO_APIC_reg_01 reg_01; |
Eric W. Biederman | fcfd636 | 2005-10-30 14:59:39 -0800 | [diff] [blame] | 1984 | int i8259_apic, i8259_pin; |
Ingo Molnar | 54168ed | 2008-08-20 09:07:45 +0200 | [diff] [blame] | 1985 | int apic; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1986 | unsigned long flags; |
| 1987 | |
Ingo Molnar | 54168ed | 2008-08-20 09:07:45 +0200 | [diff] [blame] | 1988 | #ifdef CONFIG_X86_32 |
| 1989 | int i; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1990 | if (!pirqs_enabled) |
| 1991 | for (i = 0; i < MAX_PIRQS; i++) |
| 1992 | pirq_entries[i] = -1; |
Ingo Molnar | 54168ed | 2008-08-20 09:07:45 +0200 | [diff] [blame] | 1993 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1994 | |
| 1995 | /* |
| 1996 | * The number of IO-APIC IRQ registers (== #pins): |
| 1997 | */ |
Eric W. Biederman | fcfd636 | 2005-10-30 14:59:39 -0800 | [diff] [blame] | 1998 | for (apic = 0; apic < nr_ioapics; apic++) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1999 | spin_lock_irqsave(&ioapic_lock, flags); |
Eric W. Biederman | fcfd636 | 2005-10-30 14:59:39 -0800 | [diff] [blame] | 2000 | reg_01.raw = io_apic_read(apic, 1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2001 | spin_unlock_irqrestore(&ioapic_lock, flags); |
Eric W. Biederman | fcfd636 | 2005-10-30 14:59:39 -0800 | [diff] [blame] | 2002 | nr_ioapic_registers[apic] = reg_01.bits.entries+1; |
| 2003 | } |
Ingo Molnar | 54168ed | 2008-08-20 09:07:45 +0200 | [diff] [blame] | 2004 | for(apic = 0; apic < nr_ioapics; apic++) { |
Eric W. Biederman | fcfd636 | 2005-10-30 14:59:39 -0800 | [diff] [blame] | 2005 | int pin; |
| 2006 | /* See if any of the pins is in ExtINT mode */ |
Eric W. Biederman | 1008fdd | 2006-01-11 22:46:06 +0100 | [diff] [blame] | 2007 | for (pin = 0; pin < nr_ioapic_registers[apic]; pin++) { |
Eric W. Biederman | fcfd636 | 2005-10-30 14:59:39 -0800 | [diff] [blame] | 2008 | struct IO_APIC_route_entry entry; |
Andi Kleen | cf4c6a2 | 2006-09-26 10:52:30 +0200 | [diff] [blame] | 2009 | entry = ioapic_read_entry(apic, pin); |
Eric W. Biederman | fcfd636 | 2005-10-30 14:59:39 -0800 | [diff] [blame] | 2010 | |
Eric W. Biederman | fcfd636 | 2005-10-30 14:59:39 -0800 | [diff] [blame] | 2011 | /* If the interrupt line is enabled and in ExtInt mode |
| 2012 | * I have found the pin where the i8259 is connected. |
| 2013 | */ |
| 2014 | if ((entry.mask == 0) && (entry.delivery_mode == dest_ExtINT)) { |
| 2015 | ioapic_i8259.apic = apic; |
| 2016 | ioapic_i8259.pin = pin; |
| 2017 | goto found_i8259; |
| 2018 | } |
| 2019 | } |
| 2020 | } |
| 2021 | found_i8259: |
| 2022 | /* Look to see what if the MP table has reported the ExtINT */ |
| 2023 | /* If we could not find the appropriate pin by looking at the ioapic |
| 2024 | * the i8259 probably is not connected the ioapic but give the |
| 2025 | * mptable a chance anyway. |
| 2026 | */ |
| 2027 | i8259_pin = find_isa_irq_pin(0, mp_ExtINT); |
| 2028 | i8259_apic = find_isa_irq_apic(0, mp_ExtINT); |
| 2029 | /* Trust the MP table if nothing is setup in the hardware */ |
| 2030 | if ((ioapic_i8259.pin == -1) && (i8259_pin >= 0)) { |
| 2031 | printk(KERN_WARNING "ExtINT not setup in hardware but reported by MP table\n"); |
| 2032 | ioapic_i8259.pin = i8259_pin; |
| 2033 | ioapic_i8259.apic = i8259_apic; |
| 2034 | } |
| 2035 | /* Complain if the MP table and the hardware disagree */ |
| 2036 | if (((ioapic_i8259.apic != i8259_apic) || (ioapic_i8259.pin != i8259_pin)) && |
| 2037 | (i8259_pin >= 0) && (ioapic_i8259.pin >= 0)) |
| 2038 | { |
| 2039 | printk(KERN_WARNING "ExtINT in hardware and MP table differ\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2040 | } |
| 2041 | |
| 2042 | /* |
| 2043 | * Do not trust the IO-APIC being empty at bootup |
| 2044 | */ |
| 2045 | clear_IO_APIC(); |
| 2046 | } |
| 2047 | |
| 2048 | /* |
| 2049 | * Not an __init, needed by the reboot code |
| 2050 | */ |
| 2051 | void disable_IO_APIC(void) |
| 2052 | { |
| 2053 | /* |
| 2054 | * Clear the IO-APIC before rebooting: |
| 2055 | */ |
| 2056 | clear_IO_APIC(); |
| 2057 | |
Eric W. Biederman | 650927e | 2005-06-25 14:57:44 -0700 | [diff] [blame] | 2058 | /* |
Karsten Wiese | 0b968d2 | 2005-09-09 12:59:04 +0200 | [diff] [blame] | 2059 | * If the i8259 is routed through an IOAPIC |
Eric W. Biederman | 650927e | 2005-06-25 14:57:44 -0700 | [diff] [blame] | 2060 | * Put that IOAPIC in virtual wire mode |
Karsten Wiese | 0b968d2 | 2005-09-09 12:59:04 +0200 | [diff] [blame] | 2061 | * so legacy interrupts can be delivered. |
Eric W. Biederman | 650927e | 2005-06-25 14:57:44 -0700 | [diff] [blame] | 2062 | */ |
Eric W. Biederman | fcfd636 | 2005-10-30 14:59:39 -0800 | [diff] [blame] | 2063 | if (ioapic_i8259.pin != -1) { |
Eric W. Biederman | 650927e | 2005-06-25 14:57:44 -0700 | [diff] [blame] | 2064 | struct IO_APIC_route_entry entry; |
Eric W. Biederman | 650927e | 2005-06-25 14:57:44 -0700 | [diff] [blame] | 2065 | |
| 2066 | memset(&entry, 0, sizeof(entry)); |
| 2067 | entry.mask = 0; /* Enabled */ |
| 2068 | entry.trigger = 0; /* Edge */ |
| 2069 | entry.irr = 0; |
| 2070 | entry.polarity = 0; /* High */ |
| 2071 | entry.delivery_status = 0; |
| 2072 | entry.dest_mode = 0; /* Physical */ |
Eric W. Biederman | fcfd636 | 2005-10-30 14:59:39 -0800 | [diff] [blame] | 2073 | entry.delivery_mode = dest_ExtINT; /* ExtInt */ |
Eric W. Biederman | 650927e | 2005-06-25 14:57:44 -0700 | [diff] [blame] | 2074 | entry.vector = 0; |
Ingo Molnar | 54168ed | 2008-08-20 09:07:45 +0200 | [diff] [blame] | 2075 | entry.dest = read_apic_id(); |
Eric W. Biederman | 650927e | 2005-06-25 14:57:44 -0700 | [diff] [blame] | 2076 | |
| 2077 | /* |
| 2078 | * Add it to the IO-APIC irq-routing table: |
| 2079 | */ |
Andi Kleen | cf4c6a2 | 2006-09-26 10:52:30 +0200 | [diff] [blame] | 2080 | ioapic_write_entry(ioapic_i8259.apic, ioapic_i8259.pin, entry); |
Eric W. Biederman | 650927e | 2005-06-25 14:57:44 -0700 | [diff] [blame] | 2081 | } |
Ingo Molnar | 54168ed | 2008-08-20 09:07:45 +0200 | [diff] [blame] | 2082 | |
Eric W. Biederman | fcfd636 | 2005-10-30 14:59:39 -0800 | [diff] [blame] | 2083 | disconnect_bsp_APIC(ioapic_i8259.pin != -1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2084 | } |
| 2085 | |
Ingo Molnar | 54168ed | 2008-08-20 09:07:45 +0200 | [diff] [blame] | 2086 | #ifdef CONFIG_X86_32 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2087 | /* |
| 2088 | * function to set the IO-APIC physical IDs based on the |
| 2089 | * values stored in the MPC table. |
| 2090 | * |
| 2091 | * by Matt Domsch <Matt_Domsch@dell.com> Tue Dec 21 12:25:05 CST 1999 |
| 2092 | */ |
| 2093 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2094 | static void __init setup_ioapic_ids_from_mpc(void) |
| 2095 | { |
| 2096 | union IO_APIC_reg_00 reg_00; |
| 2097 | physid_mask_t phys_id_present_map; |
| 2098 | int apic; |
| 2099 | int i; |
| 2100 | unsigned char old_id; |
| 2101 | unsigned long flags; |
| 2102 | |
Yinghai Lu | a4dbc34 | 2008-07-25 02:14:28 -0700 | [diff] [blame] | 2103 | if (x86_quirks->setup_ioapic_ids && x86_quirks->setup_ioapic_ids()) |
Yinghai Lu | d49c428 | 2008-06-08 18:31:54 -0700 | [diff] [blame] | 2104 | return; |
Yinghai Lu | d49c428 | 2008-06-08 18:31:54 -0700 | [diff] [blame] | 2105 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2106 | /* |
Natalie Protasevich | ca05fea | 2005-06-23 00:08:22 -0700 | [diff] [blame] | 2107 | * Don't check I/O APIC IDs for xAPIC systems. They have |
| 2108 | * no meaning without the serial APIC bus. |
| 2109 | */ |
Shaohua Li | 7c5c1e4 | 2006-03-23 02:59:53 -0800 | [diff] [blame] | 2110 | if (!(boot_cpu_data.x86_vendor == X86_VENDOR_INTEL) |
| 2111 | || APIC_XAPIC(apic_version[boot_cpu_physical_apicid])) |
Natalie Protasevich | ca05fea | 2005-06-23 00:08:22 -0700 | [diff] [blame] | 2112 | return; |
| 2113 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2114 | * This is broken; anything with a real cpu count has to |
| 2115 | * circumvent this idiocy regardless. |
| 2116 | */ |
| 2117 | phys_id_present_map = ioapic_phys_id_map(phys_cpu_present_map); |
| 2118 | |
| 2119 | /* |
| 2120 | * Set the IOAPIC ID to the value stored in the MPC table. |
| 2121 | */ |
| 2122 | for (apic = 0; apic < nr_ioapics; apic++) { |
| 2123 | |
| 2124 | /* Read the register 0 value */ |
| 2125 | spin_lock_irqsave(&ioapic_lock, flags); |
| 2126 | reg_00.raw = io_apic_read(apic, 0); |
| 2127 | spin_unlock_irqrestore(&ioapic_lock, flags); |
Paolo Ciarrocchi | 3606244 | 2008-06-08 13:07:18 +0200 | [diff] [blame] | 2128 | |
Alexey Starikovskiy | ec2cd0a | 2008-05-14 19:03:10 +0400 | [diff] [blame] | 2129 | old_id = mp_ioapics[apic].mp_apicid; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2130 | |
Alexey Starikovskiy | ec2cd0a | 2008-05-14 19:03:10 +0400 | [diff] [blame] | 2131 | if (mp_ioapics[apic].mp_apicid >= get_physical_broadcast()) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2132 | printk(KERN_ERR "BIOS bug, IO-APIC#%d ID is %d in the MPC table!...\n", |
Alexey Starikovskiy | ec2cd0a | 2008-05-14 19:03:10 +0400 | [diff] [blame] | 2133 | apic, mp_ioapics[apic].mp_apicid); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2134 | printk(KERN_ERR "... fixing up to %d. (tell your hw vendor)\n", |
| 2135 | reg_00.bits.ID); |
Alexey Starikovskiy | ec2cd0a | 2008-05-14 19:03:10 +0400 | [diff] [blame] | 2136 | mp_ioapics[apic].mp_apicid = reg_00.bits.ID; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2137 | } |
| 2138 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2139 | /* |
| 2140 | * Sanity check, is the ID really free? Every APIC in a |
| 2141 | * system must have a unique ID or we get lots of nice |
| 2142 | * 'stuck on smp_invalidate_needed IPI wait' messages. |
| 2143 | */ |
| 2144 | if (check_apicid_used(phys_id_present_map, |
Alexey Starikovskiy | ec2cd0a | 2008-05-14 19:03:10 +0400 | [diff] [blame] | 2145 | mp_ioapics[apic].mp_apicid)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2146 | printk(KERN_ERR "BIOS bug, IO-APIC#%d ID %d is already used!...\n", |
Alexey Starikovskiy | ec2cd0a | 2008-05-14 19:03:10 +0400 | [diff] [blame] | 2147 | apic, mp_ioapics[apic].mp_apicid); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2148 | for (i = 0; i < get_physical_broadcast(); i++) |
| 2149 | if (!physid_isset(i, phys_id_present_map)) |
| 2150 | break; |
| 2151 | if (i >= get_physical_broadcast()) |
| 2152 | panic("Max APIC ID exceeded!\n"); |
| 2153 | printk(KERN_ERR "... fixing up to %d. (tell your hw vendor)\n", |
| 2154 | i); |
| 2155 | physid_set(i, phys_id_present_map); |
Alexey Starikovskiy | ec2cd0a | 2008-05-14 19:03:10 +0400 | [diff] [blame] | 2156 | mp_ioapics[apic].mp_apicid = i; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2157 | } else { |
| 2158 | physid_mask_t tmp; |
Alexey Starikovskiy | ec2cd0a | 2008-05-14 19:03:10 +0400 | [diff] [blame] | 2159 | tmp = apicid_to_cpu_present(mp_ioapics[apic].mp_apicid); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2160 | apic_printk(APIC_VERBOSE, "Setting %d in the " |
| 2161 | "phys_id_present_map\n", |
Alexey Starikovskiy | ec2cd0a | 2008-05-14 19:03:10 +0400 | [diff] [blame] | 2162 | mp_ioapics[apic].mp_apicid); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2163 | physids_or(phys_id_present_map, phys_id_present_map, tmp); |
| 2164 | } |
| 2165 | |
| 2166 | |
| 2167 | /* |
| 2168 | * We need to adjust the IRQ routing table |
| 2169 | * if the ID changed. |
| 2170 | */ |
Alexey Starikovskiy | ec2cd0a | 2008-05-14 19:03:10 +0400 | [diff] [blame] | 2171 | if (old_id != mp_ioapics[apic].mp_apicid) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2172 | for (i = 0; i < mp_irq_entries; i++) |
Alexey Starikovskiy | 2fddb6e28 | 2008-05-14 19:03:17 +0400 | [diff] [blame] | 2173 | if (mp_irqs[i].mp_dstapic == old_id) |
| 2174 | mp_irqs[i].mp_dstapic |
Alexey Starikovskiy | ec2cd0a | 2008-05-14 19:03:10 +0400 | [diff] [blame] | 2175 | = mp_ioapics[apic].mp_apicid; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2176 | |
| 2177 | /* |
| 2178 | * Read the right value from the MPC table and |
| 2179 | * write it into the ID register. |
Paolo Ciarrocchi | 3606244 | 2008-06-08 13:07:18 +0200 | [diff] [blame] | 2180 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2181 | apic_printk(APIC_VERBOSE, KERN_INFO |
| 2182 | "...changing IO-APIC physical APIC ID to %d ...", |
Alexey Starikovskiy | ec2cd0a | 2008-05-14 19:03:10 +0400 | [diff] [blame] | 2183 | mp_ioapics[apic].mp_apicid); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2184 | |
Alexey Starikovskiy | ec2cd0a | 2008-05-14 19:03:10 +0400 | [diff] [blame] | 2185 | reg_00.bits.ID = mp_ioapics[apic].mp_apicid; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2186 | spin_lock_irqsave(&ioapic_lock, flags); |
Yinghai Lu | a2d332f | 2008-08-21 12:56:32 -0700 | [diff] [blame] | 2187 | io_apic_write(apic, 0, reg_00.raw); |
| 2188 | spin_unlock_irqrestore(&ioapic_lock, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2189 | |
| 2190 | /* |
| 2191 | * Sanity check |
| 2192 | */ |
| 2193 | spin_lock_irqsave(&ioapic_lock, flags); |
| 2194 | reg_00.raw = io_apic_read(apic, 0); |
| 2195 | spin_unlock_irqrestore(&ioapic_lock, flags); |
Alexey Starikovskiy | ec2cd0a | 2008-05-14 19:03:10 +0400 | [diff] [blame] | 2196 | if (reg_00.bits.ID != mp_ioapics[apic].mp_apicid) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2197 | printk("could not set ID!\n"); |
| 2198 | else |
| 2199 | apic_printk(APIC_VERBOSE, " ok.\n"); |
| 2200 | } |
| 2201 | } |
Ingo Molnar | 54168ed | 2008-08-20 09:07:45 +0200 | [diff] [blame] | 2202 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2203 | |
Zachary Amsden | 7ce0bcf | 2007-02-13 13:26:21 +0100 | [diff] [blame] | 2204 | int no_timer_check __initdata; |
Zachary Amsden | 8542b20 | 2006-12-07 02:14:09 +0100 | [diff] [blame] | 2205 | |
| 2206 | static int __init notimercheck(char *s) |
| 2207 | { |
| 2208 | no_timer_check = 1; |
| 2209 | return 1; |
| 2210 | } |
| 2211 | __setup("no_timer_check", notimercheck); |
| 2212 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2213 | /* |
| 2214 | * There is a nasty bug in some older SMP boards, their mptable lies |
| 2215 | * about the timer IRQ. We do the following to work around the situation: |
| 2216 | * |
| 2217 | * - timer IRQ defaults to IO-APIC IRQ |
| 2218 | * - if this function detects that timer IRQs are defunct, then we fall |
| 2219 | * back to ISA timer IRQs |
| 2220 | */ |
Adrian Bunk | f0a7a5c | 2007-07-21 17:10:29 +0200 | [diff] [blame] | 2221 | static int __init timer_irq_works(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2222 | { |
| 2223 | unsigned long t1 = jiffies; |
Ingo Molnar | 4aae070 | 2007-12-18 18:05:58 +0100 | [diff] [blame] | 2224 | unsigned long flags; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2225 | |
Zachary Amsden | 8542b20 | 2006-12-07 02:14:09 +0100 | [diff] [blame] | 2226 | if (no_timer_check) |
| 2227 | return 1; |
| 2228 | |
Ingo Molnar | 4aae070 | 2007-12-18 18:05:58 +0100 | [diff] [blame] | 2229 | local_save_flags(flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2230 | local_irq_enable(); |
| 2231 | /* Let ten ticks pass... */ |
| 2232 | mdelay((10 * 1000) / HZ); |
Ingo Molnar | 4aae070 | 2007-12-18 18:05:58 +0100 | [diff] [blame] | 2233 | local_irq_restore(flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2234 | |
| 2235 | /* |
| 2236 | * Expect a few ticks at least, to be sure some possible |
| 2237 | * glue logic does not lock up after one or two first |
| 2238 | * ticks in a non-ExtINT mode. Also the local APIC |
| 2239 | * might have cached one ExtINT interrupt. Finally, at |
| 2240 | * least one tick may be lost due to delays. |
| 2241 | */ |
Ingo Molnar | 54168ed | 2008-08-20 09:07:45 +0200 | [diff] [blame] | 2242 | |
| 2243 | /* jiffies wrap? */ |
Julia Lawall | 1d16b53 | 2008-01-30 13:32:19 +0100 | [diff] [blame] | 2244 | if (time_after(jiffies, t1 + 4)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2245 | return 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2246 | return 0; |
| 2247 | } |
| 2248 | |
| 2249 | /* |
| 2250 | * In the SMP+IOAPIC case it might happen that there are an unspecified |
| 2251 | * number of pending IRQ events unhandled. These cases are very rare, |
| 2252 | * so we 'resend' these IRQs via IPIs, to the same CPU. It's much |
| 2253 | * better to do it this way as thus we do not have to be aware of |
| 2254 | * 'pending' interrupts in the IRQ path, except at this point. |
| 2255 | */ |
| 2256 | /* |
| 2257 | * Edge triggered needs to resend any interrupt |
| 2258 | * that was delayed but this is now handled in the device |
| 2259 | * independent code. |
| 2260 | */ |
| 2261 | |
| 2262 | /* |
| 2263 | * Starting up a edge-triggered IO-APIC interrupt is |
| 2264 | * nasty - we need to make sure that we get the edge. |
| 2265 | * If it is already asserted for some reason, we need |
| 2266 | * return 1 to indicate that is was pending. |
| 2267 | * |
| 2268 | * This is not complete - we should be able to fake |
| 2269 | * an edge even if it isn't on the 8259A... |
| 2270 | */ |
Ingo Molnar | 54168ed | 2008-08-20 09:07:45 +0200 | [diff] [blame] | 2271 | |
Ingo Molnar | f5b9ed7 | 2006-10-04 02:16:26 -0700 | [diff] [blame] | 2272 | static unsigned int startup_ioapic_irq(unsigned int irq) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2273 | { |
| 2274 | int was_pending = 0; |
| 2275 | unsigned long flags; |
Yinghai Lu | 0b8f1ef | 2008-12-05 18:58:31 -0800 | [diff] [blame] | 2276 | struct irq_cfg *cfg; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2277 | |
| 2278 | spin_lock_irqsave(&ioapic_lock, flags); |
Yinghai Lu | 99d093d | 2008-12-05 18:58:32 -0800 | [diff] [blame] | 2279 | if (irq < NR_IRQS_LEGACY) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2280 | disable_8259A_irq(irq); |
| 2281 | if (i8259A_irq_pending(irq)) |
| 2282 | was_pending = 1; |
| 2283 | } |
Yinghai Lu | 0b8f1ef | 2008-12-05 18:58:31 -0800 | [diff] [blame] | 2284 | cfg = irq_cfg(irq); |
Yinghai Lu | 3145e94 | 2008-12-05 18:58:34 -0800 | [diff] [blame] | 2285 | __unmask_IO_APIC_irq(cfg); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2286 | spin_unlock_irqrestore(&ioapic_lock, flags); |
| 2287 | |
| 2288 | return was_pending; |
| 2289 | } |
| 2290 | |
Ingo Molnar | 54168ed | 2008-08-20 09:07:45 +0200 | [diff] [blame] | 2291 | #ifdef CONFIG_X86_64 |
Eric W. Biederman | ace80ab | 2006-10-04 02:16:47 -0700 | [diff] [blame] | 2292 | static int ioapic_retrigger_irq(unsigned int irq) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2293 | { |
Ingo Molnar | 54168ed | 2008-08-20 09:07:45 +0200 | [diff] [blame] | 2294 | |
| 2295 | struct irq_cfg *cfg = irq_cfg(irq); |
| 2296 | unsigned long flags; |
| 2297 | |
| 2298 | spin_lock_irqsave(&vector_lock, flags); |
Mike Travis | 22f65d3 | 2008-12-16 17:33:56 -0800 | [diff] [blame] | 2299 | send_IPI_mask(cpumask_of(cpumask_first(cfg->domain)), cfg->vector); |
Ingo Molnar | 54168ed | 2008-08-20 09:07:45 +0200 | [diff] [blame] | 2300 | spin_unlock_irqrestore(&vector_lock, flags); |
Ingo Molnar | c0ad90a | 2006-06-29 02:24:44 -0700 | [diff] [blame] | 2301 | |
| 2302 | return 1; |
| 2303 | } |
Ingo Molnar | 54168ed | 2008-08-20 09:07:45 +0200 | [diff] [blame] | 2304 | #else |
| 2305 | static int ioapic_retrigger_irq(unsigned int irq) |
| 2306 | { |
Thomas Gleixner | d6c88a5 | 2008-10-15 15:27:23 +0200 | [diff] [blame] | 2307 | send_IPI_self(irq_cfg(irq)->vector); |
Ingo Molnar | 54168ed | 2008-08-20 09:07:45 +0200 | [diff] [blame] | 2308 | |
Thomas Gleixner | d6c88a5 | 2008-10-15 15:27:23 +0200 | [diff] [blame] | 2309 | return 1; |
Ingo Molnar | 54168ed | 2008-08-20 09:07:45 +0200 | [diff] [blame] | 2310 | } |
| 2311 | #endif |
| 2312 | |
| 2313 | /* |
| 2314 | * Level and edge triggered IO-APIC interrupts need different handling, |
| 2315 | * so we use two separate IRQ descriptors. Edge triggered IRQs can be |
| 2316 | * handled with the level-triggered descriptor, but that one has slightly |
| 2317 | * more overhead. Level-triggered interrupts cannot be handled with the |
| 2318 | * edge-triggered handler, without risking IRQ storms and other ugly |
| 2319 | * races. |
| 2320 | */ |
Ingo Molnar | c0ad90a | 2006-06-29 02:24:44 -0700 | [diff] [blame] | 2321 | |
Yinghai Lu | 497c9a1 | 2008-08-19 20:50:28 -0700 | [diff] [blame] | 2322 | #ifdef CONFIG_SMP |
Ingo Molnar | 54168ed | 2008-08-20 09:07:45 +0200 | [diff] [blame] | 2323 | |
| 2324 | #ifdef CONFIG_INTR_REMAP |
| 2325 | static void ir_irq_migration(struct work_struct *work); |
| 2326 | |
| 2327 | static DECLARE_DELAYED_WORK(ir_migration_work, ir_irq_migration); |
| 2328 | |
| 2329 | /* |
| 2330 | * Migrate the IO-APIC irq in the presence of intr-remapping. |
| 2331 | * |
| 2332 | * For edge triggered, irq migration is a simple atomic update(of vector |
| 2333 | * and cpu destination) of IRTE and flush the hardware cache. |
| 2334 | * |
| 2335 | * For level triggered, we need to modify the io-apic RTE aswell with the update |
| 2336 | * vector information, along with modifying IRTE with vector and destination. |
| 2337 | * So irq migration for level triggered is little bit more complex compared to |
| 2338 | * edge triggered migration. But the good news is, we use the same algorithm |
| 2339 | * for level triggered migration as we have today, only difference being, |
| 2340 | * we now initiate the irq migration from process context instead of the |
| 2341 | * interrupt context. |
| 2342 | * |
| 2343 | * In future, when we do a directed EOI (combined with cpu EOI broadcast |
| 2344 | * suppression) to the IO-APIC, level triggered irq migration will also be |
| 2345 | * as simple as edge triggered migration and we can do the irq migration |
| 2346 | * with a simple atomic update to IO-APIC RTE. |
| 2347 | */ |
Mike Travis | e798673 | 2008-12-16 17:33:52 -0800 | [diff] [blame] | 2348 | static void |
| 2349 | migrate_ioapic_irq_desc(struct irq_desc *desc, const struct cpumask *mask) |
Ingo Molnar | 54168ed | 2008-08-20 09:07:45 +0200 | [diff] [blame] | 2350 | { |
| 2351 | struct irq_cfg *cfg; |
Ingo Molnar | 54168ed | 2008-08-20 09:07:45 +0200 | [diff] [blame] | 2352 | struct irte irte; |
| 2353 | int modify_ioapic_rte; |
| 2354 | unsigned int dest; |
| 2355 | unsigned long flags; |
Yinghai Lu | 3145e94 | 2008-12-05 18:58:34 -0800 | [diff] [blame] | 2356 | unsigned int irq; |
Ingo Molnar | 54168ed | 2008-08-20 09:07:45 +0200 | [diff] [blame] | 2357 | |
Mike Travis | 22f65d3 | 2008-12-16 17:33:56 -0800 | [diff] [blame] | 2358 | if (!cpumask_intersects(mask, cpu_online_mask)) |
Ingo Molnar | 54168ed | 2008-08-20 09:07:45 +0200 | [diff] [blame] | 2359 | return; |
| 2360 | |
Yinghai Lu | 3145e94 | 2008-12-05 18:58:34 -0800 | [diff] [blame] | 2361 | irq = desc->irq; |
Ingo Molnar | 54168ed | 2008-08-20 09:07:45 +0200 | [diff] [blame] | 2362 | if (get_irte(irq, &irte)) |
| 2363 | return; |
| 2364 | |
Yinghai Lu | 3145e94 | 2008-12-05 18:58:34 -0800 | [diff] [blame] | 2365 | cfg = desc->chip_data; |
| 2366 | if (assign_irq_vector(irq, cfg, mask)) |
Ingo Molnar | 54168ed | 2008-08-20 09:07:45 +0200 | [diff] [blame] | 2367 | return; |
| 2368 | |
Yinghai Lu | 3145e94 | 2008-12-05 18:58:34 -0800 | [diff] [blame] | 2369 | set_extra_move_desc(desc, mask); |
| 2370 | |
Mike Travis | 22f65d3 | 2008-12-16 17:33:56 -0800 | [diff] [blame] | 2371 | dest = cpu_mask_to_apicid_and(cfg->domain, mask); |
Ingo Molnar | 54168ed | 2008-08-20 09:07:45 +0200 | [diff] [blame] | 2372 | |
Ingo Molnar | 54168ed | 2008-08-20 09:07:45 +0200 | [diff] [blame] | 2373 | modify_ioapic_rte = desc->status & IRQ_LEVEL; |
| 2374 | if (modify_ioapic_rte) { |
| 2375 | spin_lock_irqsave(&ioapic_lock, flags); |
Yinghai Lu | 3145e94 | 2008-12-05 18:58:34 -0800 | [diff] [blame] | 2376 | __target_IO_APIC_irq(irq, dest, cfg); |
Ingo Molnar | 54168ed | 2008-08-20 09:07:45 +0200 | [diff] [blame] | 2377 | spin_unlock_irqrestore(&ioapic_lock, flags); |
| 2378 | } |
| 2379 | |
| 2380 | irte.vector = cfg->vector; |
| 2381 | irte.dest_id = IRTE_DEST(dest); |
| 2382 | |
| 2383 | /* |
| 2384 | * Modified the IRTE and flushes the Interrupt entry cache. |
| 2385 | */ |
| 2386 | modify_irte(irq, &irte); |
| 2387 | |
Mike Travis | 22f65d3 | 2008-12-16 17:33:56 -0800 | [diff] [blame] | 2388 | if (cfg->move_in_progress) |
| 2389 | send_cleanup_vector(cfg); |
Ingo Molnar | 54168ed | 2008-08-20 09:07:45 +0200 | [diff] [blame] | 2390 | |
Mike Travis | 22f65d3 | 2008-12-16 17:33:56 -0800 | [diff] [blame] | 2391 | cpumask_copy(&desc->affinity, mask); |
Ingo Molnar | 54168ed | 2008-08-20 09:07:45 +0200 | [diff] [blame] | 2392 | } |
| 2393 | |
Yinghai Lu | 3145e94 | 2008-12-05 18:58:34 -0800 | [diff] [blame] | 2394 | static int migrate_irq_remapped_level_desc(struct irq_desc *desc) |
Ingo Molnar | 54168ed | 2008-08-20 09:07:45 +0200 | [diff] [blame] | 2395 | { |
| 2396 | int ret = -1; |
Yinghai Lu | 3145e94 | 2008-12-05 18:58:34 -0800 | [diff] [blame] | 2397 | struct irq_cfg *cfg = desc->chip_data; |
Ingo Molnar | 54168ed | 2008-08-20 09:07:45 +0200 | [diff] [blame] | 2398 | |
Yinghai Lu | 3145e94 | 2008-12-05 18:58:34 -0800 | [diff] [blame] | 2399 | mask_IO_APIC_irq_desc(desc); |
Ingo Molnar | 54168ed | 2008-08-20 09:07:45 +0200 | [diff] [blame] | 2400 | |
Yinghai Lu | 3145e94 | 2008-12-05 18:58:34 -0800 | [diff] [blame] | 2401 | if (io_apic_level_ack_pending(cfg)) { |
Ingo Molnar | 54168ed | 2008-08-20 09:07:45 +0200 | [diff] [blame] | 2402 | /* |
Thomas Gleixner | d6c88a5 | 2008-10-15 15:27:23 +0200 | [diff] [blame] | 2403 | * Interrupt in progress. Migrating irq now will change the |
Ingo Molnar | 54168ed | 2008-08-20 09:07:45 +0200 | [diff] [blame] | 2404 | * vector information in the IO-APIC RTE and that will confuse |
| 2405 | * the EOI broadcast performed by cpu. |
| 2406 | * So, delay the irq migration to the next instance. |
| 2407 | */ |
| 2408 | schedule_delayed_work(&ir_migration_work, 1); |
| 2409 | goto unmask; |
| 2410 | } |
| 2411 | |
| 2412 | /* everthing is clear. we have right of way */ |
Mike Travis | e798673 | 2008-12-16 17:33:52 -0800 | [diff] [blame] | 2413 | migrate_ioapic_irq_desc(desc, &desc->pending_mask); |
Ingo Molnar | 54168ed | 2008-08-20 09:07:45 +0200 | [diff] [blame] | 2414 | |
| 2415 | ret = 0; |
| 2416 | desc->status &= ~IRQ_MOVE_PENDING; |
Mike Travis | 22f65d3 | 2008-12-16 17:33:56 -0800 | [diff] [blame] | 2417 | cpumask_clear(&desc->pending_mask); |
Ingo Molnar | 54168ed | 2008-08-20 09:07:45 +0200 | [diff] [blame] | 2418 | |
| 2419 | unmask: |
Yinghai Lu | 3145e94 | 2008-12-05 18:58:34 -0800 | [diff] [blame] | 2420 | unmask_IO_APIC_irq_desc(desc); |
| 2421 | |
Ingo Molnar | 54168ed | 2008-08-20 09:07:45 +0200 | [diff] [blame] | 2422 | return ret; |
| 2423 | } |
| 2424 | |
| 2425 | static void ir_irq_migration(struct work_struct *work) |
| 2426 | { |
| 2427 | unsigned int irq; |
| 2428 | struct irq_desc *desc; |
| 2429 | |
| 2430 | for_each_irq_desc(irq, desc) { |
Yinghai Lu | 0b8f1ef | 2008-12-05 18:58:31 -0800 | [diff] [blame] | 2431 | if (!desc) |
| 2432 | continue; |
| 2433 | |
Ingo Molnar | 54168ed | 2008-08-20 09:07:45 +0200 | [diff] [blame] | 2434 | if (desc->status & IRQ_MOVE_PENDING) { |
| 2435 | unsigned long flags; |
| 2436 | |
| 2437 | spin_lock_irqsave(&desc->lock, flags); |
| 2438 | if (!desc->chip->set_affinity || |
| 2439 | !(desc->status & IRQ_MOVE_PENDING)) { |
| 2440 | desc->status &= ~IRQ_MOVE_PENDING; |
| 2441 | spin_unlock_irqrestore(&desc->lock, flags); |
| 2442 | continue; |
| 2443 | } |
| 2444 | |
Rusty Russell | 0de2652 | 2008-12-13 21:20:26 +1030 | [diff] [blame] | 2445 | desc->chip->set_affinity(irq, &desc->pending_mask); |
Ingo Molnar | 54168ed | 2008-08-20 09:07:45 +0200 | [diff] [blame] | 2446 | spin_unlock_irqrestore(&desc->lock, flags); |
| 2447 | } |
| 2448 | } |
| 2449 | } |
| 2450 | |
| 2451 | /* |
| 2452 | * Migrates the IRQ destination in the process context. |
| 2453 | */ |
Rusty Russell | 968ea6d | 2008-12-13 21:55:51 +1030 | [diff] [blame] | 2454 | static void set_ir_ioapic_affinity_irq_desc(struct irq_desc *desc, |
| 2455 | const struct cpumask *mask) |
Yinghai Lu | 3145e94 | 2008-12-05 18:58:34 -0800 | [diff] [blame] | 2456 | { |
| 2457 | if (desc->status & IRQ_LEVEL) { |
| 2458 | desc->status |= IRQ_MOVE_PENDING; |
Rusty Russell | 968ea6d | 2008-12-13 21:55:51 +1030 | [diff] [blame] | 2459 | cpumask_copy(&desc->pending_mask, mask); |
Yinghai Lu | 3145e94 | 2008-12-05 18:58:34 -0800 | [diff] [blame] | 2460 | migrate_irq_remapped_level_desc(desc); |
| 2461 | return; |
| 2462 | } |
| 2463 | |
Mike Travis | e798673 | 2008-12-16 17:33:52 -0800 | [diff] [blame] | 2464 | migrate_ioapic_irq_desc(desc, mask); |
Yinghai Lu | 3145e94 | 2008-12-05 18:58:34 -0800 | [diff] [blame] | 2465 | } |
Rusty Russell | 0de2652 | 2008-12-13 21:20:26 +1030 | [diff] [blame] | 2466 | static void set_ir_ioapic_affinity_irq(unsigned int irq, |
| 2467 | const struct cpumask *mask) |
Ingo Molnar | 54168ed | 2008-08-20 09:07:45 +0200 | [diff] [blame] | 2468 | { |
| 2469 | struct irq_desc *desc = irq_to_desc(irq); |
| 2470 | |
Yinghai Lu | 3145e94 | 2008-12-05 18:58:34 -0800 | [diff] [blame] | 2471 | set_ir_ioapic_affinity_irq_desc(desc, mask); |
Ingo Molnar | 54168ed | 2008-08-20 09:07:45 +0200 | [diff] [blame] | 2472 | } |
| 2473 | #endif |
| 2474 | |
Yinghai Lu | 497c9a1 | 2008-08-19 20:50:28 -0700 | [diff] [blame] | 2475 | asmlinkage void smp_irq_move_cleanup_interrupt(void) |
| 2476 | { |
| 2477 | unsigned vector, me; |
| 2478 | ack_APIC_irq(); |
Ingo Molnar | 54168ed | 2008-08-20 09:07:45 +0200 | [diff] [blame] | 2479 | #ifdef CONFIG_X86_64 |
| 2480 | exit_idle(); |
| 2481 | #endif |
Yinghai Lu | 497c9a1 | 2008-08-19 20:50:28 -0700 | [diff] [blame] | 2482 | irq_enter(); |
| 2483 | |
| 2484 | me = smp_processor_id(); |
| 2485 | for (vector = FIRST_EXTERNAL_VECTOR; vector < NR_VECTORS; vector++) { |
| 2486 | unsigned int irq; |
| 2487 | struct irq_desc *desc; |
| 2488 | struct irq_cfg *cfg; |
| 2489 | irq = __get_cpu_var(vector_irq)[vector]; |
| 2490 | |
Yinghai Lu | 0b8f1ef | 2008-12-05 18:58:31 -0800 | [diff] [blame] | 2491 | if (irq == -1) |
| 2492 | continue; |
| 2493 | |
Yinghai Lu | 497c9a1 | 2008-08-19 20:50:28 -0700 | [diff] [blame] | 2494 | desc = irq_to_desc(irq); |
| 2495 | if (!desc) |
| 2496 | continue; |
| 2497 | |
| 2498 | cfg = irq_cfg(irq); |
| 2499 | spin_lock(&desc->lock); |
| 2500 | if (!cfg->move_cleanup_count) |
| 2501 | goto unlock; |
| 2502 | |
Mike Travis | 22f65d3 | 2008-12-16 17:33:56 -0800 | [diff] [blame] | 2503 | if (vector == cfg->vector && cpumask_test_cpu(me, cfg->domain)) |
Yinghai Lu | 497c9a1 | 2008-08-19 20:50:28 -0700 | [diff] [blame] | 2504 | goto unlock; |
| 2505 | |
| 2506 | __get_cpu_var(vector_irq)[vector] = -1; |
| 2507 | cfg->move_cleanup_count--; |
| 2508 | unlock: |
| 2509 | spin_unlock(&desc->lock); |
| 2510 | } |
| 2511 | |
| 2512 | irq_exit(); |
| 2513 | } |
| 2514 | |
Yinghai Lu | 3145e94 | 2008-12-05 18:58:34 -0800 | [diff] [blame] | 2515 | static void irq_complete_move(struct irq_desc **descp) |
Yinghai Lu | 497c9a1 | 2008-08-19 20:50:28 -0700 | [diff] [blame] | 2516 | { |
Yinghai Lu | 3145e94 | 2008-12-05 18:58:34 -0800 | [diff] [blame] | 2517 | struct irq_desc *desc = *descp; |
| 2518 | struct irq_cfg *cfg = desc->chip_data; |
Yinghai Lu | 497c9a1 | 2008-08-19 20:50:28 -0700 | [diff] [blame] | 2519 | unsigned vector, me; |
| 2520 | |
Yinghai Lu | 48a1b10 | 2008-12-11 00:15:01 -0800 | [diff] [blame] | 2521 | if (likely(!cfg->move_in_progress)) { |
| 2522 | #ifdef CONFIG_NUMA_MIGRATE_IRQ_DESC |
| 2523 | if (likely(!cfg->move_desc_pending)) |
| 2524 | return; |
| 2525 | |
| 2526 | /* domain is not change, but affinity is changed */ |
| 2527 | me = smp_processor_id(); |
| 2528 | if (cpu_isset(me, desc->affinity)) { |
| 2529 | *descp = desc = move_irq_desc(desc, me); |
| 2530 | /* get the new one */ |
| 2531 | cfg = desc->chip_data; |
| 2532 | cfg->move_desc_pending = 0; |
| 2533 | } |
| 2534 | #endif |
Yinghai Lu | 497c9a1 | 2008-08-19 20:50:28 -0700 | [diff] [blame] | 2535 | return; |
Yinghai Lu | 48a1b10 | 2008-12-11 00:15:01 -0800 | [diff] [blame] | 2536 | } |
Yinghai Lu | 497c9a1 | 2008-08-19 20:50:28 -0700 | [diff] [blame] | 2537 | |
| 2538 | vector = ~get_irq_regs()->orig_ax; |
| 2539 | me = smp_processor_id(); |
Yinghai Lu | 48a1b10 | 2008-12-11 00:15:01 -0800 | [diff] [blame] | 2540 | #ifdef CONFIG_NUMA_MIGRATE_IRQ_DESC |
| 2541 | *descp = desc = move_irq_desc(desc, me); |
| 2542 | /* get the new one */ |
| 2543 | cfg = desc->chip_data; |
| 2544 | #endif |
| 2545 | |
Mike Travis | 22f65d3 | 2008-12-16 17:33:56 -0800 | [diff] [blame] | 2546 | if (vector == cfg->vector && cpumask_test_cpu(me, cfg->domain)) |
| 2547 | send_cleanup_vector(cfg); |
Yinghai Lu | 497c9a1 | 2008-08-19 20:50:28 -0700 | [diff] [blame] | 2548 | } |
| 2549 | #else |
Yinghai Lu | 3145e94 | 2008-12-05 18:58:34 -0800 | [diff] [blame] | 2550 | static inline void irq_complete_move(struct irq_desc **descp) {} |
Yinghai Lu | 497c9a1 | 2008-08-19 20:50:28 -0700 | [diff] [blame] | 2551 | #endif |
Yinghai Lu | 3145e94 | 2008-12-05 18:58:34 -0800 | [diff] [blame] | 2552 | |
Ingo Molnar | 54168ed | 2008-08-20 09:07:45 +0200 | [diff] [blame] | 2553 | #ifdef CONFIG_INTR_REMAP |
| 2554 | static void ack_x2apic_level(unsigned int irq) |
| 2555 | { |
| 2556 | ack_x2APIC_irq(); |
| 2557 | } |
| 2558 | |
| 2559 | static void ack_x2apic_edge(unsigned int irq) |
| 2560 | { |
| 2561 | ack_x2APIC_irq(); |
| 2562 | } |
Yinghai Lu | 3145e94 | 2008-12-05 18:58:34 -0800 | [diff] [blame] | 2563 | |
Ingo Molnar | 54168ed | 2008-08-20 09:07:45 +0200 | [diff] [blame] | 2564 | #endif |
Yinghai Lu | 497c9a1 | 2008-08-19 20:50:28 -0700 | [diff] [blame] | 2565 | |
Yinghai Lu | 1d02519 | 2008-08-19 20:50:34 -0700 | [diff] [blame] | 2566 | static void ack_apic_edge(unsigned int irq) |
| 2567 | { |
Yinghai Lu | 3145e94 | 2008-12-05 18:58:34 -0800 | [diff] [blame] | 2568 | struct irq_desc *desc = irq_to_desc(irq); |
| 2569 | |
| 2570 | irq_complete_move(&desc); |
Yinghai Lu | 1d02519 | 2008-08-19 20:50:34 -0700 | [diff] [blame] | 2571 | move_native_irq(irq); |
| 2572 | ack_APIC_irq(); |
| 2573 | } |
| 2574 | |
Yinghai Lu | 3eb2cce | 2008-08-19 20:50:48 -0700 | [diff] [blame] | 2575 | atomic_t irq_mis_count; |
Yinghai Lu | 3eb2cce | 2008-08-19 20:50:48 -0700 | [diff] [blame] | 2576 | |
Yinghai Lu | 047c8fd | 2008-08-19 20:50:41 -0700 | [diff] [blame] | 2577 | static void ack_apic_level(unsigned int irq) |
| 2578 | { |
Yinghai Lu | 3145e94 | 2008-12-05 18:58:34 -0800 | [diff] [blame] | 2579 | struct irq_desc *desc = irq_to_desc(irq); |
| 2580 | |
Yinghai Lu | 3eb2cce | 2008-08-19 20:50:48 -0700 | [diff] [blame] | 2581 | #ifdef CONFIG_X86_32 |
| 2582 | unsigned long v; |
| 2583 | int i; |
| 2584 | #endif |
Yinghai Lu | 3145e94 | 2008-12-05 18:58:34 -0800 | [diff] [blame] | 2585 | struct irq_cfg *cfg; |
Ingo Molnar | 54168ed | 2008-08-20 09:07:45 +0200 | [diff] [blame] | 2586 | int do_unmask_irq = 0; |
Yinghai Lu | 047c8fd | 2008-08-19 20:50:41 -0700 | [diff] [blame] | 2587 | |
Yinghai Lu | 3145e94 | 2008-12-05 18:58:34 -0800 | [diff] [blame] | 2588 | irq_complete_move(&desc); |
Yinghai Lu | 047c8fd | 2008-08-19 20:50:41 -0700 | [diff] [blame] | 2589 | #ifdef CONFIG_GENERIC_PENDING_IRQ |
Ingo Molnar | 54168ed | 2008-08-20 09:07:45 +0200 | [diff] [blame] | 2590 | /* If we are moving the irq we need to mask it */ |
Yinghai Lu | 3145e94 | 2008-12-05 18:58:34 -0800 | [diff] [blame] | 2591 | if (unlikely(desc->status & IRQ_MOVE_PENDING)) { |
Ingo Molnar | 54168ed | 2008-08-20 09:07:45 +0200 | [diff] [blame] | 2592 | do_unmask_irq = 1; |
Yinghai Lu | 3145e94 | 2008-12-05 18:58:34 -0800 | [diff] [blame] | 2593 | mask_IO_APIC_irq_desc(desc); |
Ingo Molnar | 54168ed | 2008-08-20 09:07:45 +0200 | [diff] [blame] | 2594 | } |
Yinghai Lu | 047c8fd | 2008-08-19 20:50:41 -0700 | [diff] [blame] | 2595 | #endif |
| 2596 | |
Yinghai Lu | 3eb2cce | 2008-08-19 20:50:48 -0700 | [diff] [blame] | 2597 | #ifdef CONFIG_X86_32 |
| 2598 | /* |
| 2599 | * It appears there is an erratum which affects at least version 0x11 |
| 2600 | * of I/O APIC (that's the 82093AA and cores integrated into various |
| 2601 | * chipsets). Under certain conditions a level-triggered interrupt is |
| 2602 | * erroneously delivered as edge-triggered one but the respective IRR |
| 2603 | * bit gets set nevertheless. As a result the I/O unit expects an EOI |
| 2604 | * message but it will never arrive and further interrupts are blocked |
| 2605 | * from the source. The exact reason is so far unknown, but the |
| 2606 | * phenomenon was observed when two consecutive interrupt requests |
| 2607 | * from a given source get delivered to the same CPU and the source is |
| 2608 | * temporarily disabled in between. |
| 2609 | * |
| 2610 | * A workaround is to simulate an EOI message manually. We achieve it |
| 2611 | * by setting the trigger mode to edge and then to level when the edge |
| 2612 | * trigger mode gets detected in the TMR of a local APIC for a |
| 2613 | * level-triggered interrupt. We mask the source for the time of the |
| 2614 | * operation to prevent an edge-triggered interrupt escaping meanwhile. |
| 2615 | * The idea is from Manfred Spraul. --macro |
| 2616 | */ |
Yinghai Lu | 3145e94 | 2008-12-05 18:58:34 -0800 | [diff] [blame] | 2617 | cfg = desc->chip_data; |
| 2618 | i = cfg->vector; |
Yinghai Lu | 3eb2cce | 2008-08-19 20:50:48 -0700 | [diff] [blame] | 2619 | |
| 2620 | v = apic_read(APIC_TMR + ((i & ~0x1f) >> 1)); |
| 2621 | #endif |
| 2622 | |
Ingo Molnar | 54168ed | 2008-08-20 09:07:45 +0200 | [diff] [blame] | 2623 | /* |
| 2624 | * We must acknowledge the irq before we move it or the acknowledge will |
| 2625 | * not propagate properly. |
| 2626 | */ |
| 2627 | ack_APIC_irq(); |
Yinghai Lu | 047c8fd | 2008-08-19 20:50:41 -0700 | [diff] [blame] | 2628 | |
Ingo Molnar | 54168ed | 2008-08-20 09:07:45 +0200 | [diff] [blame] | 2629 | /* Now we can move and renable the irq */ |
| 2630 | if (unlikely(do_unmask_irq)) { |
| 2631 | /* Only migrate the irq if the ack has been received. |
| 2632 | * |
| 2633 | * On rare occasions the broadcast level triggered ack gets |
| 2634 | * delayed going to ioapics, and if we reprogram the |
| 2635 | * vector while Remote IRR is still set the irq will never |
| 2636 | * fire again. |
| 2637 | * |
| 2638 | * To prevent this scenario we read the Remote IRR bit |
| 2639 | * of the ioapic. This has two effects. |
| 2640 | * - On any sane system the read of the ioapic will |
| 2641 | * flush writes (and acks) going to the ioapic from |
| 2642 | * this cpu. |
| 2643 | * - We get to see if the ACK has actually been delivered. |
| 2644 | * |
| 2645 | * Based on failed experiments of reprogramming the |
| 2646 | * ioapic entry from outside of irq context starting |
| 2647 | * with masking the ioapic entry and then polling until |
| 2648 | * Remote IRR was clear before reprogramming the |
| 2649 | * ioapic I don't trust the Remote IRR bit to be |
| 2650 | * completey accurate. |
| 2651 | * |
| 2652 | * However there appears to be no other way to plug |
| 2653 | * this race, so if the Remote IRR bit is not |
| 2654 | * accurate and is causing problems then it is a hardware bug |
| 2655 | * and you can go talk to the chipset vendor about it. |
| 2656 | */ |
Yinghai Lu | 3145e94 | 2008-12-05 18:58:34 -0800 | [diff] [blame] | 2657 | cfg = desc->chip_data; |
| 2658 | if (!io_apic_level_ack_pending(cfg)) |
Ingo Molnar | 54168ed | 2008-08-20 09:07:45 +0200 | [diff] [blame] | 2659 | move_masked_irq(irq); |
Yinghai Lu | 3145e94 | 2008-12-05 18:58:34 -0800 | [diff] [blame] | 2660 | unmask_IO_APIC_irq_desc(desc); |
Ingo Molnar | 54168ed | 2008-08-20 09:07:45 +0200 | [diff] [blame] | 2661 | } |
Yinghai Lu | 1d02519 | 2008-08-19 20:50:34 -0700 | [diff] [blame] | 2662 | |
Yinghai Lu | 3eb2cce | 2008-08-19 20:50:48 -0700 | [diff] [blame] | 2663 | #ifdef CONFIG_X86_32 |
Yinghai Lu | 1d02519 | 2008-08-19 20:50:34 -0700 | [diff] [blame] | 2664 | if (!(v & (1 << (i & 0x1f)))) { |
| 2665 | atomic_inc(&irq_mis_count); |
| 2666 | spin_lock(&ioapic_lock); |
Yinghai Lu | 3145e94 | 2008-12-05 18:58:34 -0800 | [diff] [blame] | 2667 | __mask_and_edge_IO_APIC_irq(cfg); |
| 2668 | __unmask_and_level_IO_APIC_irq(cfg); |
Yinghai Lu | 1d02519 | 2008-08-19 20:50:34 -0700 | [diff] [blame] | 2669 | spin_unlock(&ioapic_lock); |
| 2670 | } |
Yinghai Lu | 047c8fd | 2008-08-19 20:50:41 -0700 | [diff] [blame] | 2671 | #endif |
Yinghai Lu | 3eb2cce | 2008-08-19 20:50:48 -0700 | [diff] [blame] | 2672 | } |
Yinghai Lu | 1d02519 | 2008-08-19 20:50:34 -0700 | [diff] [blame] | 2673 | |
Ingo Molnar | f5b9ed7 | 2006-10-04 02:16:26 -0700 | [diff] [blame] | 2674 | static struct irq_chip ioapic_chip __read_mostly = { |
Thomas Gleixner | d6c88a5 | 2008-10-15 15:27:23 +0200 | [diff] [blame] | 2675 | .name = "IO-APIC", |
| 2676 | .startup = startup_ioapic_irq, |
| 2677 | .mask = mask_IO_APIC_irq, |
| 2678 | .unmask = unmask_IO_APIC_irq, |
| 2679 | .ack = ack_apic_edge, |
| 2680 | .eoi = ack_apic_level, |
Ashok Raj | 54d5d42 | 2005-09-06 15:16:15 -0700 | [diff] [blame] | 2681 | #ifdef CONFIG_SMP |
Thomas Gleixner | d6c88a5 | 2008-10-15 15:27:23 +0200 | [diff] [blame] | 2682 | .set_affinity = set_ioapic_affinity_irq, |
Ashok Raj | 54d5d42 | 2005-09-06 15:16:15 -0700 | [diff] [blame] | 2683 | #endif |
Eric W. Biederman | ace80ab | 2006-10-04 02:16:47 -0700 | [diff] [blame] | 2684 | .retrigger = ioapic_retrigger_irq, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2685 | }; |
| 2686 | |
Ingo Molnar | 54168ed | 2008-08-20 09:07:45 +0200 | [diff] [blame] | 2687 | #ifdef CONFIG_INTR_REMAP |
| 2688 | static struct irq_chip ir_ioapic_chip __read_mostly = { |
Thomas Gleixner | d6c88a5 | 2008-10-15 15:27:23 +0200 | [diff] [blame] | 2689 | .name = "IR-IO-APIC", |
| 2690 | .startup = startup_ioapic_irq, |
| 2691 | .mask = mask_IO_APIC_irq, |
| 2692 | .unmask = unmask_IO_APIC_irq, |
| 2693 | .ack = ack_x2apic_edge, |
| 2694 | .eoi = ack_x2apic_level, |
Ingo Molnar | 54168ed | 2008-08-20 09:07:45 +0200 | [diff] [blame] | 2695 | #ifdef CONFIG_SMP |
Thomas Gleixner | d6c88a5 | 2008-10-15 15:27:23 +0200 | [diff] [blame] | 2696 | .set_affinity = set_ir_ioapic_affinity_irq, |
Ingo Molnar | 54168ed | 2008-08-20 09:07:45 +0200 | [diff] [blame] | 2697 | #endif |
| 2698 | .retrigger = ioapic_retrigger_irq, |
| 2699 | }; |
| 2700 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2701 | |
| 2702 | static inline void init_IO_APIC_traps(void) |
| 2703 | { |
| 2704 | int irq; |
Yinghai Lu | 08678b0 | 2008-08-19 20:50:05 -0700 | [diff] [blame] | 2705 | struct irq_desc *desc; |
Yinghai Lu | da51a82 | 2008-08-19 20:50:25 -0700 | [diff] [blame] | 2706 | struct irq_cfg *cfg; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2707 | |
| 2708 | /* |
| 2709 | * NOTE! The local APIC isn't very good at handling |
| 2710 | * multiple interrupts at the same interrupt level. |
| 2711 | * As the interrupt level is determined by taking the |
| 2712 | * vector number and shifting that right by 4, we |
| 2713 | * want to spread these out a bit so that they don't |
| 2714 | * all fall in the same interrupt level. |
| 2715 | * |
| 2716 | * Also, we've got to be careful not to trash gate |
| 2717 | * 0x80, because int 0x80 is hm, kind of importantish. ;) |
| 2718 | */ |
Yinghai Lu | 0b8f1ef | 2008-12-05 18:58:31 -0800 | [diff] [blame] | 2719 | for_each_irq_desc(irq, desc) { |
| 2720 | if (!desc) |
| 2721 | continue; |
| 2722 | |
| 2723 | cfg = desc->chip_data; |
| 2724 | if (IO_APIC_IRQ(irq) && cfg && !cfg->vector) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2725 | /* |
| 2726 | * Hmm.. We don't have an entry for this, |
| 2727 | * so default to an old-fashioned 8259 |
| 2728 | * interrupt if we can.. |
| 2729 | */ |
Yinghai Lu | 99d093d | 2008-12-05 18:58:32 -0800 | [diff] [blame] | 2730 | if (irq < NR_IRQS_LEGACY) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2731 | make_8259A_irq(irq); |
Yinghai Lu | 0b8f1ef | 2008-12-05 18:58:31 -0800 | [diff] [blame] | 2732 | else |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2733 | /* Strange. Oh, well.. */ |
Yinghai Lu | 08678b0 | 2008-08-19 20:50:05 -0700 | [diff] [blame] | 2734 | desc->chip = &no_irq_chip; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2735 | } |
| 2736 | } |
| 2737 | } |
| 2738 | |
Ingo Molnar | f5b9ed7 | 2006-10-04 02:16:26 -0700 | [diff] [blame] | 2739 | /* |
| 2740 | * The local APIC irq-chip implementation: |
| 2741 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2742 | |
Paolo Ciarrocchi | 3606244 | 2008-06-08 13:07:18 +0200 | [diff] [blame] | 2743 | static void mask_lapic_irq(unsigned int irq) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2744 | { |
| 2745 | unsigned long v; |
| 2746 | |
| 2747 | v = apic_read(APIC_LVT0); |
Maciej W. Rozycki | 593f4a7 | 2008-07-16 19:15:30 +0100 | [diff] [blame] | 2748 | apic_write(APIC_LVT0, v | APIC_LVT_MASKED); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2749 | } |
| 2750 | |
Paolo Ciarrocchi | 3606244 | 2008-06-08 13:07:18 +0200 | [diff] [blame] | 2751 | static void unmask_lapic_irq(unsigned int irq) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2752 | { |
Ingo Molnar | f5b9ed7 | 2006-10-04 02:16:26 -0700 | [diff] [blame] | 2753 | unsigned long v; |
| 2754 | |
| 2755 | v = apic_read(APIC_LVT0); |
Maciej W. Rozycki | 593f4a7 | 2008-07-16 19:15:30 +0100 | [diff] [blame] | 2756 | apic_write(APIC_LVT0, v & ~APIC_LVT_MASKED); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2757 | } |
| 2758 | |
Yinghai Lu | 3145e94 | 2008-12-05 18:58:34 -0800 | [diff] [blame] | 2759 | static void ack_lapic_irq(unsigned int irq) |
Yinghai Lu | 1d02519 | 2008-08-19 20:50:34 -0700 | [diff] [blame] | 2760 | { |
| 2761 | ack_APIC_irq(); |
| 2762 | } |
| 2763 | |
Ingo Molnar | f5b9ed7 | 2006-10-04 02:16:26 -0700 | [diff] [blame] | 2764 | static struct irq_chip lapic_chip __read_mostly = { |
Maciej W. Rozycki | 9a1c619 | 2008-05-27 21:19:09 +0100 | [diff] [blame] | 2765 | .name = "local-APIC", |
Ingo Molnar | f5b9ed7 | 2006-10-04 02:16:26 -0700 | [diff] [blame] | 2766 | .mask = mask_lapic_irq, |
| 2767 | .unmask = unmask_lapic_irq, |
Maciej W. Rozycki | c88ac1d | 2008-07-11 19:35:17 +0100 | [diff] [blame] | 2768 | .ack = ack_lapic_irq, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2769 | }; |
| 2770 | |
Yinghai Lu | 3145e94 | 2008-12-05 18:58:34 -0800 | [diff] [blame] | 2771 | static void lapic_register_intr(int irq, struct irq_desc *desc) |
Maciej W. Rozycki | c88ac1d | 2008-07-11 19:35:17 +0100 | [diff] [blame] | 2772 | { |
Yinghai Lu | 08678b0 | 2008-08-19 20:50:05 -0700 | [diff] [blame] | 2773 | desc->status &= ~IRQ_LEVEL; |
Maciej W. Rozycki | c88ac1d | 2008-07-11 19:35:17 +0100 | [diff] [blame] | 2774 | set_irq_chip_and_handler_name(irq, &lapic_chip, handle_edge_irq, |
| 2775 | "edge"); |
Maciej W. Rozycki | c88ac1d | 2008-07-11 19:35:17 +0100 | [diff] [blame] | 2776 | } |
| 2777 | |
Jan Beulich | e942710 | 2008-01-30 13:31:24 +0100 | [diff] [blame] | 2778 | static void __init setup_nmi(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2779 | { |
| 2780 | /* |
Paolo Ciarrocchi | 3606244 | 2008-06-08 13:07:18 +0200 | [diff] [blame] | 2781 | * Dirty trick to enable the NMI watchdog ... |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2782 | * We put the 8259A master into AEOI mode and |
| 2783 | * unmask on all local APICs LVT0 as NMI. |
| 2784 | * |
| 2785 | * The idea to use the 8259A in AEOI mode ('8259A Virtual Wire') |
| 2786 | * is from Maciej W. Rozycki - so we do not have to EOI from |
| 2787 | * the NMI handler or the timer interrupt. |
Paolo Ciarrocchi | 3606244 | 2008-06-08 13:07:18 +0200 | [diff] [blame] | 2788 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2789 | apic_printk(APIC_VERBOSE, KERN_INFO "activating NMI Watchdog ..."); |
| 2790 | |
Jan Beulich | e942710 | 2008-01-30 13:31:24 +0100 | [diff] [blame] | 2791 | enable_NMI_through_LVT0(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2792 | |
| 2793 | apic_printk(APIC_VERBOSE, " done.\n"); |
| 2794 | } |
| 2795 | |
| 2796 | /* |
| 2797 | * This looks a bit hackish but it's about the only one way of sending |
| 2798 | * a few INTA cycles to 8259As and any associated glue logic. ICR does |
| 2799 | * not support the ExtINT mode, unfortunately. We need to send these |
| 2800 | * cycles as some i82489DX-based boards have glue logic that keeps the |
| 2801 | * 8259A interrupt line asserted until INTA. --macro |
| 2802 | */ |
Jacek Luczak | 28acf28 | 2008-04-12 17:41:12 +0200 | [diff] [blame] | 2803 | static inline void __init unlock_ExtINT_logic(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2804 | { |
Eric W. Biederman | fcfd636 | 2005-10-30 14:59:39 -0800 | [diff] [blame] | 2805 | int apic, pin, i; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2806 | struct IO_APIC_route_entry entry0, entry1; |
| 2807 | unsigned char save_control, save_freq_select; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2808 | |
Eric W. Biederman | fcfd636 | 2005-10-30 14:59:39 -0800 | [diff] [blame] | 2809 | pin = find_isa_irq_pin(8, mp_INT); |
Adrian Bunk | 956fb53 | 2006-12-07 02:14:11 +0100 | [diff] [blame] | 2810 | if (pin == -1) { |
| 2811 | WARN_ON_ONCE(1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2812 | return; |
Adrian Bunk | 956fb53 | 2006-12-07 02:14:11 +0100 | [diff] [blame] | 2813 | } |
| 2814 | apic = find_isa_irq_apic(8, mp_INT); |
| 2815 | if (apic == -1) { |
| 2816 | WARN_ON_ONCE(1); |
| 2817 | return; |
| 2818 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2819 | |
Andi Kleen | cf4c6a2 | 2006-09-26 10:52:30 +0200 | [diff] [blame] | 2820 | entry0 = ioapic_read_entry(apic, pin); |
Eric W. Biederman | fcfd636 | 2005-10-30 14:59:39 -0800 | [diff] [blame] | 2821 | clear_IO_APIC_pin(apic, pin); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2822 | |
| 2823 | memset(&entry1, 0, sizeof(entry1)); |
| 2824 | |
| 2825 | entry1.dest_mode = 0; /* physical delivery */ |
| 2826 | entry1.mask = 0; /* unmask IRQ now */ |
Yinghai Lu | d83e94a | 2008-08-19 20:50:33 -0700 | [diff] [blame] | 2827 | entry1.dest = hard_smp_processor_id(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2828 | entry1.delivery_mode = dest_ExtINT; |
| 2829 | entry1.polarity = entry0.polarity; |
| 2830 | entry1.trigger = 0; |
| 2831 | entry1.vector = 0; |
| 2832 | |
Andi Kleen | cf4c6a2 | 2006-09-26 10:52:30 +0200 | [diff] [blame] | 2833 | ioapic_write_entry(apic, pin, entry1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2834 | |
| 2835 | save_control = CMOS_READ(RTC_CONTROL); |
| 2836 | save_freq_select = CMOS_READ(RTC_FREQ_SELECT); |
| 2837 | CMOS_WRITE((save_freq_select & ~RTC_RATE_SELECT) | 0x6, |
| 2838 | RTC_FREQ_SELECT); |
| 2839 | CMOS_WRITE(save_control | RTC_PIE, RTC_CONTROL); |
| 2840 | |
| 2841 | i = 100; |
| 2842 | while (i-- > 0) { |
| 2843 | mdelay(10); |
| 2844 | if ((CMOS_READ(RTC_INTR_FLAGS) & RTC_PF) == RTC_PF) |
| 2845 | i -= 10; |
| 2846 | } |
| 2847 | |
| 2848 | CMOS_WRITE(save_control, RTC_CONTROL); |
| 2849 | CMOS_WRITE(save_freq_select, RTC_FREQ_SELECT); |
Eric W. Biederman | fcfd636 | 2005-10-30 14:59:39 -0800 | [diff] [blame] | 2850 | clear_IO_APIC_pin(apic, pin); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2851 | |
Andi Kleen | cf4c6a2 | 2006-09-26 10:52:30 +0200 | [diff] [blame] | 2852 | ioapic_write_entry(apic, pin, entry0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2853 | } |
| 2854 | |
Yinghai Lu | efa2559 | 2008-08-19 20:50:36 -0700 | [diff] [blame] | 2855 | static int disable_timer_pin_1 __initdata; |
Yinghai Lu | 047c8fd | 2008-08-19 20:50:41 -0700 | [diff] [blame] | 2856 | /* Actually the next is obsolete, but keep it for paranoid reasons -AK */ |
Ingo Molnar | 54168ed | 2008-08-20 09:07:45 +0200 | [diff] [blame] | 2857 | static int __init disable_timer_pin_setup(char *arg) |
Yinghai Lu | efa2559 | 2008-08-19 20:50:36 -0700 | [diff] [blame] | 2858 | { |
| 2859 | disable_timer_pin_1 = 1; |
| 2860 | return 0; |
| 2861 | } |
Ingo Molnar | 54168ed | 2008-08-20 09:07:45 +0200 | [diff] [blame] | 2862 | early_param("disable_timer_pin_1", disable_timer_pin_setup); |
Yinghai Lu | efa2559 | 2008-08-19 20:50:36 -0700 | [diff] [blame] | 2863 | |
| 2864 | int timer_through_8259 __initdata; |
| 2865 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2866 | /* |
| 2867 | * This code may look a bit paranoid, but it's supposed to cooperate with |
| 2868 | * a wide range of boards and BIOS bugs. Fortunately only the timer IRQ |
| 2869 | * is so screwy. Thanks to Brian Perkins for testing/hacking this beast |
| 2870 | * fanatically on his truly buggy board. |
Ingo Molnar | 54168ed | 2008-08-20 09:07:45 +0200 | [diff] [blame] | 2871 | * |
| 2872 | * FIXME: really need to revamp this for all platforms. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2873 | */ |
Zachary Amsden | 8542b20 | 2006-12-07 02:14:09 +0100 | [diff] [blame] | 2874 | static inline void __init check_timer(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2875 | { |
Yinghai Lu | 3145e94 | 2008-12-05 18:58:34 -0800 | [diff] [blame] | 2876 | struct irq_desc *desc = irq_to_desc(0); |
| 2877 | struct irq_cfg *cfg = desc->chip_data; |
| 2878 | int cpu = boot_cpu_id; |
Eric W. Biederman | fcfd636 | 2005-10-30 14:59:39 -0800 | [diff] [blame] | 2879 | int apic1, pin1, apic2, pin2; |
Ingo Molnar | 4aae070 | 2007-12-18 18:05:58 +0100 | [diff] [blame] | 2880 | unsigned long flags; |
Yinghai Lu | 047c8fd | 2008-08-19 20:50:41 -0700 | [diff] [blame] | 2881 | unsigned int ver; |
| 2882 | int no_pin1 = 0; |
Ingo Molnar | 4aae070 | 2007-12-18 18:05:58 +0100 | [diff] [blame] | 2883 | |
| 2884 | local_irq_save(flags); |
Maciej W. Rozycki | d4d25de | 2007-11-26 20:42:19 +0100 | [diff] [blame] | 2885 | |
Thomas Gleixner | d6c88a5 | 2008-10-15 15:27:23 +0200 | [diff] [blame] | 2886 | ver = apic_read(APIC_LVR); |
| 2887 | ver = GET_APIC_VERSION(ver); |
Ingo Molnar | 6e90894 | 2008-03-21 14:32:36 +0100 | [diff] [blame] | 2888 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2889 | /* |
| 2890 | * get/set the timer IRQ vector: |
| 2891 | */ |
| 2892 | disable_8259A_irq(0); |
Yinghai Lu | 3145e94 | 2008-12-05 18:58:34 -0800 | [diff] [blame] | 2893 | assign_irq_vector(0, cfg, TARGET_CPUS); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2894 | |
| 2895 | /* |
Maciej W. Rozycki | d11d579 | 2008-05-21 22:09:11 +0100 | [diff] [blame] | 2896 | * As IRQ0 is to be enabled in the 8259A, the virtual |
| 2897 | * wire has to be disabled in the local APIC. Also |
| 2898 | * timer interrupts need to be acknowledged manually in |
| 2899 | * the 8259A for the i82489DX when using the NMI |
| 2900 | * watchdog as that APIC treats NMIs as level-triggered. |
| 2901 | * The AEOI mode will finish them in the 8259A |
| 2902 | * automatically. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2903 | */ |
Maciej W. Rozycki | 593f4a7 | 2008-07-16 19:15:30 +0100 | [diff] [blame] | 2904 | apic_write(APIC_LVT0, APIC_LVT_MASKED | APIC_DM_EXTINT); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2905 | init_8259A(1); |
Ingo Molnar | 54168ed | 2008-08-20 09:07:45 +0200 | [diff] [blame] | 2906 | #ifdef CONFIG_X86_32 |
Maciej W. Rozycki | d11d579 | 2008-05-21 22:09:11 +0100 | [diff] [blame] | 2907 | timer_ack = (nmi_watchdog == NMI_IO_APIC && !APIC_INTEGRATED(ver)); |
Ingo Molnar | 54168ed | 2008-08-20 09:07:45 +0200 | [diff] [blame] | 2908 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2909 | |
Eric W. Biederman | fcfd636 | 2005-10-30 14:59:39 -0800 | [diff] [blame] | 2910 | pin1 = find_isa_irq_pin(0, mp_INT); |
| 2911 | apic1 = find_isa_irq_apic(0, mp_INT); |
| 2912 | pin2 = ioapic_i8259.pin; |
| 2913 | apic2 = ioapic_i8259.apic; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2914 | |
Maciej W. Rozycki | 49a66a0 | 2008-07-14 19:08:13 +0100 | [diff] [blame] | 2915 | apic_printk(APIC_QUIET, KERN_INFO "..TIMER: vector=0x%02X " |
| 2916 | "apic1=%d pin1=%d apic2=%d pin2=%d\n", |
Yinghai Lu | 497c9a1 | 2008-08-19 20:50:28 -0700 | [diff] [blame] | 2917 | cfg->vector, apic1, pin1, apic2, pin2); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2918 | |
Maciej W. Rozycki | 691874f | 2008-05-27 21:19:51 +0100 | [diff] [blame] | 2919 | /* |
| 2920 | * Some BIOS writers are clueless and report the ExtINTA |
| 2921 | * I/O APIC input from the cascaded 8259A as the timer |
| 2922 | * interrupt input. So just in case, if only one pin |
| 2923 | * was found above, try it both directly and through the |
| 2924 | * 8259A. |
| 2925 | */ |
| 2926 | if (pin1 == -1) { |
Ingo Molnar | 54168ed | 2008-08-20 09:07:45 +0200 | [diff] [blame] | 2927 | #ifdef CONFIG_INTR_REMAP |
| 2928 | if (intr_remapping_enabled) |
| 2929 | panic("BIOS bug: timer not connected to IO-APIC"); |
| 2930 | #endif |
Maciej W. Rozycki | 691874f | 2008-05-27 21:19:51 +0100 | [diff] [blame] | 2931 | pin1 = pin2; |
| 2932 | apic1 = apic2; |
| 2933 | no_pin1 = 1; |
| 2934 | } else if (pin2 == -1) { |
| 2935 | pin2 = pin1; |
| 2936 | apic2 = apic1; |
| 2937 | } |
| 2938 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2939 | if (pin1 != -1) { |
| 2940 | /* |
| 2941 | * Ok, does IRQ0 through the IOAPIC work? |
| 2942 | */ |
Maciej W. Rozycki | 691874f | 2008-05-27 21:19:51 +0100 | [diff] [blame] | 2943 | if (no_pin1) { |
Yinghai Lu | 3145e94 | 2008-12-05 18:58:34 -0800 | [diff] [blame] | 2944 | add_pin_to_irq_cpu(cfg, cpu, apic1, pin1); |
Yinghai Lu | 497c9a1 | 2008-08-19 20:50:28 -0700 | [diff] [blame] | 2945 | setup_timer_IRQ0_pin(apic1, pin1, cfg->vector); |
Maciej W. Rozycki | 691874f | 2008-05-27 21:19:51 +0100 | [diff] [blame] | 2946 | } |
Yinghai Lu | 3145e94 | 2008-12-05 18:58:34 -0800 | [diff] [blame] | 2947 | unmask_IO_APIC_irq_desc(desc); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2948 | if (timer_irq_works()) { |
| 2949 | if (nmi_watchdog == NMI_IO_APIC) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2950 | setup_nmi(); |
| 2951 | enable_8259A_irq(0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2952 | } |
Chuck Ebbert | 66759a0 | 2005-09-12 18:49:25 +0200 | [diff] [blame] | 2953 | if (disable_timer_pin_1 > 0) |
| 2954 | clear_IO_APIC_pin(0, pin1); |
Ingo Molnar | 4aae070 | 2007-12-18 18:05:58 +0100 | [diff] [blame] | 2955 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2956 | } |
Ingo Molnar | 54168ed | 2008-08-20 09:07:45 +0200 | [diff] [blame] | 2957 | #ifdef CONFIG_INTR_REMAP |
| 2958 | if (intr_remapping_enabled) |
| 2959 | panic("timer doesn't work through Interrupt-remapped IO-APIC"); |
| 2960 | #endif |
Eric W. Biederman | fcfd636 | 2005-10-30 14:59:39 -0800 | [diff] [blame] | 2961 | clear_IO_APIC_pin(apic1, pin1); |
Maciej W. Rozycki | 691874f | 2008-05-27 21:19:51 +0100 | [diff] [blame] | 2962 | if (!no_pin1) |
Maciej W. Rozycki | 49a66a0 | 2008-07-14 19:08:13 +0100 | [diff] [blame] | 2963 | apic_printk(APIC_QUIET, KERN_ERR "..MP-BIOS bug: " |
| 2964 | "8254 timer not connected to IO-APIC\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2965 | |
Maciej W. Rozycki | 49a66a0 | 2008-07-14 19:08:13 +0100 | [diff] [blame] | 2966 | apic_printk(APIC_QUIET, KERN_INFO "...trying to set up timer " |
| 2967 | "(IRQ0) through the 8259A ...\n"); |
| 2968 | apic_printk(APIC_QUIET, KERN_INFO |
| 2969 | "..... (found apic %d pin %d) ...\n", apic2, pin2); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2970 | /* |
| 2971 | * legacy devices should be connected to IO APIC #0 |
| 2972 | */ |
Yinghai Lu | 3145e94 | 2008-12-05 18:58:34 -0800 | [diff] [blame] | 2973 | replace_pin_at_irq_cpu(cfg, cpu, apic1, pin1, apic2, pin2); |
Yinghai Lu | 497c9a1 | 2008-08-19 20:50:28 -0700 | [diff] [blame] | 2974 | setup_timer_IRQ0_pin(apic2, pin2, cfg->vector); |
Yinghai Lu | 3145e94 | 2008-12-05 18:58:34 -0800 | [diff] [blame] | 2975 | unmask_IO_APIC_irq_desc(desc); |
Maciej W. Rozycki | ecd2947 | 2008-05-21 22:09:19 +0100 | [diff] [blame] | 2976 | enable_8259A_irq(0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2977 | if (timer_irq_works()) { |
Maciej W. Rozycki | 49a66a0 | 2008-07-14 19:08:13 +0100 | [diff] [blame] | 2978 | apic_printk(APIC_QUIET, KERN_INFO "....... works.\n"); |
Maciej W. Rozycki | 35542c5 | 2008-05-21 22:10:22 +0100 | [diff] [blame] | 2979 | timer_through_8259 = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2980 | if (nmi_watchdog == NMI_IO_APIC) { |
Maciej W. Rozycki | 60134eb | 2008-05-21 22:09:34 +0100 | [diff] [blame] | 2981 | disable_8259A_irq(0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2982 | setup_nmi(); |
Maciej W. Rozycki | 60134eb | 2008-05-21 22:09:34 +0100 | [diff] [blame] | 2983 | enable_8259A_irq(0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2984 | } |
Ingo Molnar | 4aae070 | 2007-12-18 18:05:58 +0100 | [diff] [blame] | 2985 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2986 | } |
| 2987 | /* |
| 2988 | * Cleanup, just in case ... |
| 2989 | */ |
Maciej W. Rozycki | ecd2947 | 2008-05-21 22:09:19 +0100 | [diff] [blame] | 2990 | disable_8259A_irq(0); |
Eric W. Biederman | fcfd636 | 2005-10-30 14:59:39 -0800 | [diff] [blame] | 2991 | clear_IO_APIC_pin(apic2, pin2); |
Maciej W. Rozycki | 49a66a0 | 2008-07-14 19:08:13 +0100 | [diff] [blame] | 2992 | apic_printk(APIC_QUIET, KERN_INFO "....... failed.\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2993 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2994 | |
| 2995 | if (nmi_watchdog == NMI_IO_APIC) { |
Maciej W. Rozycki | 49a66a0 | 2008-07-14 19:08:13 +0100 | [diff] [blame] | 2996 | apic_printk(APIC_QUIET, KERN_WARNING "timer doesn't work " |
| 2997 | "through the IO-APIC - disabling NMI Watchdog!\n"); |
Cyrill Gorcunov | 067fa0f | 2008-05-29 22:32:30 +0400 | [diff] [blame] | 2998 | nmi_watchdog = NMI_NONE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2999 | } |
Ingo Molnar | 54168ed | 2008-08-20 09:07:45 +0200 | [diff] [blame] | 3000 | #ifdef CONFIG_X86_32 |
Maciej W. Rozycki | d11d579 | 2008-05-21 22:09:11 +0100 | [diff] [blame] | 3001 | timer_ack = 0; |
Ingo Molnar | 54168ed | 2008-08-20 09:07:45 +0200 | [diff] [blame] | 3002 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3003 | |
Maciej W. Rozycki | 49a66a0 | 2008-07-14 19:08:13 +0100 | [diff] [blame] | 3004 | apic_printk(APIC_QUIET, KERN_INFO |
| 3005 | "...trying to set up timer as Virtual Wire IRQ...\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3006 | |
Yinghai Lu | 3145e94 | 2008-12-05 18:58:34 -0800 | [diff] [blame] | 3007 | lapic_register_intr(0, desc); |
Yinghai Lu | 497c9a1 | 2008-08-19 20:50:28 -0700 | [diff] [blame] | 3008 | apic_write(APIC_LVT0, APIC_DM_FIXED | cfg->vector); /* Fixed mode */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3009 | enable_8259A_irq(0); |
| 3010 | |
| 3011 | if (timer_irq_works()) { |
Maciej W. Rozycki | 49a66a0 | 2008-07-14 19:08:13 +0100 | [diff] [blame] | 3012 | apic_printk(APIC_QUIET, KERN_INFO "..... works.\n"); |
Ingo Molnar | 4aae070 | 2007-12-18 18:05:58 +0100 | [diff] [blame] | 3013 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3014 | } |
Maciej W. Rozycki | e67465f | 2008-05-21 22:09:26 +0100 | [diff] [blame] | 3015 | disable_8259A_irq(0); |
Yinghai Lu | 497c9a1 | 2008-08-19 20:50:28 -0700 | [diff] [blame] | 3016 | apic_write(APIC_LVT0, APIC_LVT_MASKED | APIC_DM_FIXED | cfg->vector); |
Maciej W. Rozycki | 49a66a0 | 2008-07-14 19:08:13 +0100 | [diff] [blame] | 3017 | apic_printk(APIC_QUIET, KERN_INFO "..... failed.\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3018 | |
Maciej W. Rozycki | 49a66a0 | 2008-07-14 19:08:13 +0100 | [diff] [blame] | 3019 | apic_printk(APIC_QUIET, KERN_INFO |
| 3020 | "...trying to set up timer as ExtINT IRQ...\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3021 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3022 | init_8259A(0); |
| 3023 | make_8259A_irq(0); |
Maciej W. Rozycki | 593f4a7 | 2008-07-16 19:15:30 +0100 | [diff] [blame] | 3024 | apic_write(APIC_LVT0, APIC_DM_EXTINT); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3025 | |
| 3026 | unlock_ExtINT_logic(); |
| 3027 | |
| 3028 | if (timer_irq_works()) { |
Maciej W. Rozycki | 49a66a0 | 2008-07-14 19:08:13 +0100 | [diff] [blame] | 3029 | apic_printk(APIC_QUIET, KERN_INFO "..... works.\n"); |
Ingo Molnar | 4aae070 | 2007-12-18 18:05:58 +0100 | [diff] [blame] | 3030 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3031 | } |
Maciej W. Rozycki | 49a66a0 | 2008-07-14 19:08:13 +0100 | [diff] [blame] | 3032 | apic_printk(APIC_QUIET, KERN_INFO "..... failed :(.\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3033 | panic("IO-APIC + timer doesn't work! Boot with apic=debug and send a " |
Maciej W. Rozycki | 49a66a0 | 2008-07-14 19:08:13 +0100 | [diff] [blame] | 3034 | "report. Then try booting with the 'noapic' option.\n"); |
Ingo Molnar | 4aae070 | 2007-12-18 18:05:58 +0100 | [diff] [blame] | 3035 | out: |
| 3036 | local_irq_restore(flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3037 | } |
| 3038 | |
| 3039 | /* |
Maciej W. Rozycki | af17478 | 2008-07-11 19:35:23 +0100 | [diff] [blame] | 3040 | * Traditionally ISA IRQ2 is the cascade IRQ, and is not available |
| 3041 | * to devices. However there may be an I/O APIC pin available for |
| 3042 | * this interrupt regardless. The pin may be left unconnected, but |
| 3043 | * typically it will be reused as an ExtINT cascade interrupt for |
| 3044 | * the master 8259A. In the MPS case such a pin will normally be |
| 3045 | * reported as an ExtINT interrupt in the MP table. With ACPI |
| 3046 | * there is no provision for ExtINT interrupts, and in the absence |
| 3047 | * of an override it would be treated as an ordinary ISA I/O APIC |
| 3048 | * interrupt, that is edge-triggered and unmasked by default. We |
| 3049 | * used to do this, but it caused problems on some systems because |
| 3050 | * of the NMI watchdog and sometimes IRQ0 of the 8254 timer using |
| 3051 | * the same ExtINT cascade interrupt to drive the local APIC of the |
| 3052 | * bootstrap processor. Therefore we refrain from routing IRQ2 to |
| 3053 | * the I/O APIC in all cases now. No actual device should request |
| 3054 | * it anyway. --macro |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3055 | */ |
| 3056 | #define PIC_IRQS (1 << PIC_CASCADE_IR) |
| 3057 | |
| 3058 | void __init setup_IO_APIC(void) |
| 3059 | { |
Ingo Molnar | 54168ed | 2008-08-20 09:07:45 +0200 | [diff] [blame] | 3060 | |
| 3061 | #ifdef CONFIG_X86_32 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3062 | enable_IO_APIC(); |
Ingo Molnar | 54168ed | 2008-08-20 09:07:45 +0200 | [diff] [blame] | 3063 | #else |
| 3064 | /* |
| 3065 | * calling enable_IO_APIC() is moved to setup_local_APIC for BP |
| 3066 | */ |
| 3067 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3068 | |
Maciej W. Rozycki | af17478 | 2008-07-11 19:35:23 +0100 | [diff] [blame] | 3069 | io_apic_irqs = ~PIC_IRQS; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3070 | |
Ingo Molnar | 54168ed | 2008-08-20 09:07:45 +0200 | [diff] [blame] | 3071 | apic_printk(APIC_VERBOSE, "ENABLING IO-APIC IRQs\n"); |
Thomas Gleixner | d6c88a5 | 2008-10-15 15:27:23 +0200 | [diff] [blame] | 3072 | /* |
Ingo Molnar | 54168ed | 2008-08-20 09:07:45 +0200 | [diff] [blame] | 3073 | * Set up IO-APIC IRQ routing. |
| 3074 | */ |
| 3075 | #ifdef CONFIG_X86_32 |
Thomas Gleixner | d6c88a5 | 2008-10-15 15:27:23 +0200 | [diff] [blame] | 3076 | if (!acpi_ioapic) |
| 3077 | setup_ioapic_ids_from_mpc(); |
Ingo Molnar | 54168ed | 2008-08-20 09:07:45 +0200 | [diff] [blame] | 3078 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3079 | sync_Arb_IDs(); |
| 3080 | setup_IO_APIC_irqs(); |
| 3081 | init_IO_APIC_traps(); |
Linus Torvalds | 1e4c85f | 2005-10-31 19:16:17 -0800 | [diff] [blame] | 3082 | check_timer(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3083 | } |
| 3084 | |
| 3085 | /* |
Ingo Molnar | 54168ed | 2008-08-20 09:07:45 +0200 | [diff] [blame] | 3086 | * Called after all the initialization is done. If we didnt find any |
| 3087 | * APIC bugs then we can allow the modify fast path |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3088 | */ |
Paolo Ciarrocchi | 3606244 | 2008-06-08 13:07:18 +0200 | [diff] [blame] | 3089 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3090 | static int __init io_apic_bug_finalize(void) |
| 3091 | { |
Thomas Gleixner | d6c88a5 | 2008-10-15 15:27:23 +0200 | [diff] [blame] | 3092 | if (sis_apic_bug == -1) |
| 3093 | sis_apic_bug = 0; |
| 3094 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3095 | } |
| 3096 | |
| 3097 | late_initcall(io_apic_bug_finalize); |
| 3098 | |
| 3099 | struct sysfs_ioapic_data { |
| 3100 | struct sys_device dev; |
| 3101 | struct IO_APIC_route_entry entry[0]; |
| 3102 | }; |
Ingo Molnar | 54168ed | 2008-08-20 09:07:45 +0200 | [diff] [blame] | 3103 | static struct sysfs_ioapic_data * mp_ioapic_data[MAX_IO_APICS]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3104 | |
Pavel Machek | 438510f | 2005-04-16 15:25:24 -0700 | [diff] [blame] | 3105 | static int ioapic_suspend(struct sys_device *dev, pm_message_t state) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3106 | { |
| 3107 | struct IO_APIC_route_entry *entry; |
| 3108 | struct sysfs_ioapic_data *data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3109 | int i; |
Paolo Ciarrocchi | 3606244 | 2008-06-08 13:07:18 +0200 | [diff] [blame] | 3110 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3111 | data = container_of(dev, struct sysfs_ioapic_data, dev); |
| 3112 | entry = data->entry; |
Ingo Molnar | 54168ed | 2008-08-20 09:07:45 +0200 | [diff] [blame] | 3113 | for (i = 0; i < nr_ioapic_registers[dev->id]; i ++, entry ++ ) |
| 3114 | *entry = ioapic_read_entry(dev->id, i); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3115 | |
| 3116 | return 0; |
| 3117 | } |
| 3118 | |
| 3119 | static int ioapic_resume(struct sys_device *dev) |
| 3120 | { |
| 3121 | struct IO_APIC_route_entry *entry; |
| 3122 | struct sysfs_ioapic_data *data; |
| 3123 | unsigned long flags; |
| 3124 | union IO_APIC_reg_00 reg_00; |
| 3125 | int i; |
Paolo Ciarrocchi | 3606244 | 2008-06-08 13:07:18 +0200 | [diff] [blame] | 3126 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3127 | data = container_of(dev, struct sysfs_ioapic_data, dev); |
| 3128 | entry = data->entry; |
| 3129 | |
| 3130 | spin_lock_irqsave(&ioapic_lock, flags); |
| 3131 | reg_00.raw = io_apic_read(dev->id, 0); |
Alexey Starikovskiy | ec2cd0a | 2008-05-14 19:03:10 +0400 | [diff] [blame] | 3132 | if (reg_00.bits.ID != mp_ioapics[dev->id].mp_apicid) { |
| 3133 | reg_00.bits.ID = mp_ioapics[dev->id].mp_apicid; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3134 | io_apic_write(dev->id, 0, reg_00.raw); |
| 3135 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3136 | spin_unlock_irqrestore(&ioapic_lock, flags); |
Paolo Ciarrocchi | 3606244 | 2008-06-08 13:07:18 +0200 | [diff] [blame] | 3137 | for (i = 0; i < nr_ioapic_registers[dev->id]; i++) |
Andi Kleen | cf4c6a2 | 2006-09-26 10:52:30 +0200 | [diff] [blame] | 3138 | ioapic_write_entry(dev->id, i, entry[i]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3139 | |
| 3140 | return 0; |
| 3141 | } |
| 3142 | |
| 3143 | static struct sysdev_class ioapic_sysdev_class = { |
Kay Sievers | af5ca3f | 2007-12-20 02:09:39 +0100 | [diff] [blame] | 3144 | .name = "ioapic", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3145 | .suspend = ioapic_suspend, |
| 3146 | .resume = ioapic_resume, |
| 3147 | }; |
| 3148 | |
| 3149 | static int __init ioapic_init_sysfs(void) |
| 3150 | { |
Ingo Molnar | 54168ed | 2008-08-20 09:07:45 +0200 | [diff] [blame] | 3151 | struct sys_device * dev; |
| 3152 | int i, size, error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3153 | |
| 3154 | error = sysdev_class_register(&ioapic_sysdev_class); |
| 3155 | if (error) |
| 3156 | return error; |
| 3157 | |
Ingo Molnar | 54168ed | 2008-08-20 09:07:45 +0200 | [diff] [blame] | 3158 | for (i = 0; i < nr_ioapics; i++ ) { |
Paolo Ciarrocchi | 3606244 | 2008-06-08 13:07:18 +0200 | [diff] [blame] | 3159 | size = sizeof(struct sys_device) + nr_ioapic_registers[i] |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3160 | * sizeof(struct IO_APIC_route_entry); |
Christophe Jaillet | 25556c1 | 2008-06-22 22:13:48 +0200 | [diff] [blame] | 3161 | mp_ioapic_data[i] = kzalloc(size, GFP_KERNEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3162 | if (!mp_ioapic_data[i]) { |
| 3163 | printk(KERN_ERR "Can't suspend/resume IOAPIC %d\n", i); |
| 3164 | continue; |
| 3165 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3166 | dev = &mp_ioapic_data[i]->dev; |
Paolo Ciarrocchi | 3606244 | 2008-06-08 13:07:18 +0200 | [diff] [blame] | 3167 | dev->id = i; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3168 | dev->cls = &ioapic_sysdev_class; |
| 3169 | error = sysdev_register(dev); |
| 3170 | if (error) { |
| 3171 | kfree(mp_ioapic_data[i]); |
| 3172 | mp_ioapic_data[i] = NULL; |
| 3173 | printk(KERN_ERR "Can't suspend/resume IOAPIC %d\n", i); |
| 3174 | continue; |
| 3175 | } |
| 3176 | } |
| 3177 | |
| 3178 | return 0; |
| 3179 | } |
| 3180 | |
| 3181 | device_initcall(ioapic_init_sysfs); |
| 3182 | |
Eric W. Biederman | 3fc471e | 2006-10-04 02:16:39 -0700 | [diff] [blame] | 3183 | /* |
Eric W. Biederman | 95d7788 | 2006-10-04 02:17:01 -0700 | [diff] [blame] | 3184 | * Dynamic irq allocate and deallocation |
Eric W. Biederman | 3fc471e | 2006-10-04 02:16:39 -0700 | [diff] [blame] | 3185 | */ |
Yinghai Lu | 199751d | 2008-08-19 20:50:27 -0700 | [diff] [blame] | 3186 | unsigned int create_irq_nr(unsigned int irq_want) |
Eric W. Biederman | 3fc471e | 2006-10-04 02:16:39 -0700 | [diff] [blame] | 3187 | { |
Eric W. Biederman | ace80ab | 2006-10-04 02:16:47 -0700 | [diff] [blame] | 3188 | /* Allocate an unused irq */ |
Ingo Molnar | 54168ed | 2008-08-20 09:07:45 +0200 | [diff] [blame] | 3189 | unsigned int irq; |
| 3190 | unsigned int new; |
Eric W. Biederman | 3fc471e | 2006-10-04 02:16:39 -0700 | [diff] [blame] | 3191 | unsigned long flags; |
Yinghai Lu | 0b8f1ef | 2008-12-05 18:58:31 -0800 | [diff] [blame] | 3192 | struct irq_cfg *cfg_new = NULL; |
| 3193 | int cpu = boot_cpu_id; |
| 3194 | struct irq_desc *desc_new = NULL; |
Yinghai Lu | 199751d | 2008-08-19 20:50:27 -0700 | [diff] [blame] | 3195 | |
| 3196 | irq = 0; |
Eric W. Biederman | ace80ab | 2006-10-04 02:16:47 -0700 | [diff] [blame] | 3197 | spin_lock_irqsave(&vector_lock, flags); |
Yinghai Lu | be5d535 | 2008-12-05 18:58:33 -0800 | [diff] [blame] | 3198 | for (new = irq_want; new < NR_IRQS; new++) { |
Eric W. Biederman | ace80ab | 2006-10-04 02:16:47 -0700 | [diff] [blame] | 3199 | if (platform_legacy_irq(new)) |
| 3200 | continue; |
Yinghai Lu | 0b8f1ef | 2008-12-05 18:58:31 -0800 | [diff] [blame] | 3201 | |
| 3202 | desc_new = irq_to_desc_alloc_cpu(new, cpu); |
| 3203 | if (!desc_new) { |
| 3204 | printk(KERN_INFO "can not get irq_desc for %d\n", new); |
Eric W. Biederman | ace80ab | 2006-10-04 02:16:47 -0700 | [diff] [blame] | 3205 | continue; |
Yinghai Lu | 0b8f1ef | 2008-12-05 18:58:31 -0800 | [diff] [blame] | 3206 | } |
| 3207 | cfg_new = desc_new->chip_data; |
| 3208 | |
| 3209 | if (cfg_new->vector != 0) |
| 3210 | continue; |
Yinghai Lu | 3145e94 | 2008-12-05 18:58:34 -0800 | [diff] [blame] | 3211 | if (__assign_irq_vector(new, cfg_new, TARGET_CPUS) == 0) |
Eric W. Biederman | ace80ab | 2006-10-04 02:16:47 -0700 | [diff] [blame] | 3212 | irq = new; |
| 3213 | break; |
| 3214 | } |
| 3215 | spin_unlock_irqrestore(&vector_lock, flags); |
Eric W. Biederman | 3fc471e | 2006-10-04 02:16:39 -0700 | [diff] [blame] | 3216 | |
Yinghai Lu | 199751d | 2008-08-19 20:50:27 -0700 | [diff] [blame] | 3217 | if (irq > 0) { |
Eric W. Biederman | 3fc471e | 2006-10-04 02:16:39 -0700 | [diff] [blame] | 3218 | dynamic_irq_init(irq); |
Yinghai Lu | 0b8f1ef | 2008-12-05 18:58:31 -0800 | [diff] [blame] | 3219 | /* restore it, in case dynamic_irq_init clear it */ |
| 3220 | if (desc_new) |
| 3221 | desc_new->chip_data = cfg_new; |
Eric W. Biederman | 3fc471e | 2006-10-04 02:16:39 -0700 | [diff] [blame] | 3222 | } |
| 3223 | return irq; |
| 3224 | } |
| 3225 | |
Yinghai Lu | be5d535 | 2008-12-05 18:58:33 -0800 | [diff] [blame] | 3226 | static int nr_irqs_gsi = NR_IRQS_LEGACY; |
Yinghai Lu | 199751d | 2008-08-19 20:50:27 -0700 | [diff] [blame] | 3227 | int create_irq(void) |
| 3228 | { |
Yinghai Lu | be5d535 | 2008-12-05 18:58:33 -0800 | [diff] [blame] | 3229 | unsigned int irq_want; |
Ingo Molnar | 54168ed | 2008-08-20 09:07:45 +0200 | [diff] [blame] | 3230 | int irq; |
| 3231 | |
Yinghai Lu | be5d535 | 2008-12-05 18:58:33 -0800 | [diff] [blame] | 3232 | irq_want = nr_irqs_gsi; |
| 3233 | irq = create_irq_nr(irq_want); |
Ingo Molnar | 54168ed | 2008-08-20 09:07:45 +0200 | [diff] [blame] | 3234 | |
| 3235 | if (irq == 0) |
| 3236 | irq = -1; |
| 3237 | |
| 3238 | return irq; |
Yinghai Lu | 199751d | 2008-08-19 20:50:27 -0700 | [diff] [blame] | 3239 | } |
| 3240 | |
Eric W. Biederman | 3fc471e | 2006-10-04 02:16:39 -0700 | [diff] [blame] | 3241 | void destroy_irq(unsigned int irq) |
| 3242 | { |
| 3243 | unsigned long flags; |
Yinghai Lu | 0b8f1ef | 2008-12-05 18:58:31 -0800 | [diff] [blame] | 3244 | struct irq_cfg *cfg; |
| 3245 | struct irq_desc *desc; |
Eric W. Biederman | 3fc471e | 2006-10-04 02:16:39 -0700 | [diff] [blame] | 3246 | |
Yinghai Lu | 0b8f1ef | 2008-12-05 18:58:31 -0800 | [diff] [blame] | 3247 | /* store it, in case dynamic_irq_cleanup clear it */ |
| 3248 | desc = irq_to_desc(irq); |
| 3249 | cfg = desc->chip_data; |
Eric W. Biederman | 3fc471e | 2006-10-04 02:16:39 -0700 | [diff] [blame] | 3250 | dynamic_irq_cleanup(irq); |
Yinghai Lu | 0b8f1ef | 2008-12-05 18:58:31 -0800 | [diff] [blame] | 3251 | /* connect back irq_cfg */ |
| 3252 | if (desc) |
| 3253 | desc->chip_data = cfg; |
Eric W. Biederman | 3fc471e | 2006-10-04 02:16:39 -0700 | [diff] [blame] | 3254 | |
Ingo Molnar | 54168ed | 2008-08-20 09:07:45 +0200 | [diff] [blame] | 3255 | #ifdef CONFIG_INTR_REMAP |
| 3256 | free_irte(irq); |
| 3257 | #endif |
Eric W. Biederman | 3fc471e | 2006-10-04 02:16:39 -0700 | [diff] [blame] | 3258 | spin_lock_irqsave(&vector_lock, flags); |
Yinghai Lu | 3145e94 | 2008-12-05 18:58:34 -0800 | [diff] [blame] | 3259 | __clear_irq_vector(irq, cfg); |
Eric W. Biederman | 3fc471e | 2006-10-04 02:16:39 -0700 | [diff] [blame] | 3260 | spin_unlock_irqrestore(&vector_lock, flags); |
| 3261 | } |
Eric W. Biederman | 3fc471e | 2006-10-04 02:16:39 -0700 | [diff] [blame] | 3262 | |
Eric W. Biederman | 2d3fcc1 | 2006-10-04 02:16:43 -0700 | [diff] [blame] | 3263 | /* |
Simon Arlott | 27b46d7 | 2007-10-20 01:13:56 +0200 | [diff] [blame] | 3264 | * MSI message composition |
Eric W. Biederman | 2d3fcc1 | 2006-10-04 02:16:43 -0700 | [diff] [blame] | 3265 | */ |
| 3266 | #ifdef CONFIG_PCI_MSI |
Eric W. Biederman | 3b7d192 | 2006-10-04 02:16:59 -0700 | [diff] [blame] | 3267 | static int msi_compose_msg(struct pci_dev *pdev, unsigned int irq, struct msi_msg *msg) |
Eric W. Biederman | 2d3fcc1 | 2006-10-04 02:16:43 -0700 | [diff] [blame] | 3268 | { |
Yinghai Lu | 497c9a1 | 2008-08-19 20:50:28 -0700 | [diff] [blame] | 3269 | struct irq_cfg *cfg; |
| 3270 | int err; |
Eric W. Biederman | 2d3fcc1 | 2006-10-04 02:16:43 -0700 | [diff] [blame] | 3271 | unsigned dest; |
| 3272 | |
Yinghai Lu | 3145e94 | 2008-12-05 18:58:34 -0800 | [diff] [blame] | 3273 | cfg = irq_cfg(irq); |
Mike Travis | 22f65d3 | 2008-12-16 17:33:56 -0800 | [diff] [blame] | 3274 | err = assign_irq_vector(irq, cfg, TARGET_CPUS); |
Yinghai Lu | 497c9a1 | 2008-08-19 20:50:28 -0700 | [diff] [blame] | 3275 | if (err) |
| 3276 | return err; |
Eric W. Biederman | 2d3fcc1 | 2006-10-04 02:16:43 -0700 | [diff] [blame] | 3277 | |
Mike Travis | 22f65d3 | 2008-12-16 17:33:56 -0800 | [diff] [blame] | 3278 | dest = cpu_mask_to_apicid_and(cfg->domain, TARGET_CPUS); |
Eric W. Biederman | 2d3fcc1 | 2006-10-04 02:16:43 -0700 | [diff] [blame] | 3279 | |
Ingo Molnar | 54168ed | 2008-08-20 09:07:45 +0200 | [diff] [blame] | 3280 | #ifdef CONFIG_INTR_REMAP |
| 3281 | if (irq_remapped(irq)) { |
| 3282 | struct irte irte; |
| 3283 | int ir_index; |
| 3284 | u16 sub_handle; |
Yinghai Lu | 497c9a1 | 2008-08-19 20:50:28 -0700 | [diff] [blame] | 3285 | |
Ingo Molnar | 54168ed | 2008-08-20 09:07:45 +0200 | [diff] [blame] | 3286 | ir_index = map_irq_to_irte_handle(irq, &sub_handle); |
| 3287 | BUG_ON(ir_index == -1); |
Yinghai Lu | 497c9a1 | 2008-08-19 20:50:28 -0700 | [diff] [blame] | 3288 | |
Ingo Molnar | 54168ed | 2008-08-20 09:07:45 +0200 | [diff] [blame] | 3289 | memset (&irte, 0, sizeof(irte)); |
| 3290 | |
| 3291 | irte.present = 1; |
| 3292 | irte.dst_mode = INT_DEST_MODE; |
| 3293 | irte.trigger_mode = 0; /* edge */ |
| 3294 | irte.dlvry_mode = INT_DELIVERY_MODE; |
| 3295 | irte.vector = cfg->vector; |
| 3296 | irte.dest_id = IRTE_DEST(dest); |
| 3297 | |
| 3298 | modify_irte(irq, &irte); |
| 3299 | |
| 3300 | msg->address_hi = MSI_ADDR_BASE_HI; |
| 3301 | msg->data = sub_handle; |
| 3302 | msg->address_lo = MSI_ADDR_BASE_LO | MSI_ADDR_IR_EXT_INT | |
| 3303 | MSI_ADDR_IR_SHV | |
| 3304 | MSI_ADDR_IR_INDEX1(ir_index) | |
| 3305 | MSI_ADDR_IR_INDEX2(ir_index); |
| 3306 | } else |
| 3307 | #endif |
| 3308 | { |
| 3309 | msg->address_hi = MSI_ADDR_BASE_HI; |
| 3310 | msg->address_lo = |
| 3311 | MSI_ADDR_BASE_LO | |
| 3312 | ((INT_DEST_MODE == 0) ? |
| 3313 | MSI_ADDR_DEST_MODE_PHYSICAL: |
| 3314 | MSI_ADDR_DEST_MODE_LOGICAL) | |
| 3315 | ((INT_DELIVERY_MODE != dest_LowestPrio) ? |
| 3316 | MSI_ADDR_REDIRECTION_CPU: |
| 3317 | MSI_ADDR_REDIRECTION_LOWPRI) | |
| 3318 | MSI_ADDR_DEST_ID(dest); |
| 3319 | |
| 3320 | msg->data = |
| 3321 | MSI_DATA_TRIGGER_EDGE | |
| 3322 | MSI_DATA_LEVEL_ASSERT | |
| 3323 | ((INT_DELIVERY_MODE != dest_LowestPrio) ? |
| 3324 | MSI_DATA_DELIVERY_FIXED: |
| 3325 | MSI_DATA_DELIVERY_LOWPRI) | |
| 3326 | MSI_DATA_VECTOR(cfg->vector); |
| 3327 | } |
Yinghai Lu | 497c9a1 | 2008-08-19 20:50:28 -0700 | [diff] [blame] | 3328 | return err; |
Eric W. Biederman | 2d3fcc1 | 2006-10-04 02:16:43 -0700 | [diff] [blame] | 3329 | } |
| 3330 | |
Eric W. Biederman | 3b7d192 | 2006-10-04 02:16:59 -0700 | [diff] [blame] | 3331 | #ifdef CONFIG_SMP |
Rusty Russell | 0de2652 | 2008-12-13 21:20:26 +1030 | [diff] [blame] | 3332 | static void set_msi_irq_affinity(unsigned int irq, const struct cpumask *mask) |
Eric W. Biederman | 3b7d192 | 2006-10-04 02:16:59 -0700 | [diff] [blame] | 3333 | { |
Yinghai Lu | 3145e94 | 2008-12-05 18:58:34 -0800 | [diff] [blame] | 3334 | struct irq_desc *desc = irq_to_desc(irq); |
Yinghai Lu | 497c9a1 | 2008-08-19 20:50:28 -0700 | [diff] [blame] | 3335 | struct irq_cfg *cfg; |
Eric W. Biederman | 3b7d192 | 2006-10-04 02:16:59 -0700 | [diff] [blame] | 3336 | struct msi_msg msg; |
| 3337 | unsigned int dest; |
Eric W. Biederman | 3b7d192 | 2006-10-04 02:16:59 -0700 | [diff] [blame] | 3338 | |
Mike Travis | 22f65d3 | 2008-12-16 17:33:56 -0800 | [diff] [blame] | 3339 | dest = set_desc_affinity(desc, mask); |
| 3340 | if (dest == BAD_APICID) |
Eric W. Biederman | 3b7d192 | 2006-10-04 02:16:59 -0700 | [diff] [blame] | 3341 | return; |
| 3342 | |
Yinghai Lu | 3145e94 | 2008-12-05 18:58:34 -0800 | [diff] [blame] | 3343 | cfg = desc->chip_data; |
Eric W. Biederman | 3b7d192 | 2006-10-04 02:16:59 -0700 | [diff] [blame] | 3344 | |
Yinghai Lu | 3145e94 | 2008-12-05 18:58:34 -0800 | [diff] [blame] | 3345 | read_msi_msg_desc(desc, &msg); |
Eric W. Biederman | 3b7d192 | 2006-10-04 02:16:59 -0700 | [diff] [blame] | 3346 | |
| 3347 | msg.data &= ~MSI_DATA_VECTOR_MASK; |
Yinghai Lu | 497c9a1 | 2008-08-19 20:50:28 -0700 | [diff] [blame] | 3348 | msg.data |= MSI_DATA_VECTOR(cfg->vector); |
Eric W. Biederman | 3b7d192 | 2006-10-04 02:16:59 -0700 | [diff] [blame] | 3349 | msg.address_lo &= ~MSI_ADDR_DEST_ID_MASK; |
| 3350 | msg.address_lo |= MSI_ADDR_DEST_ID(dest); |
| 3351 | |
Yinghai Lu | 3145e94 | 2008-12-05 18:58:34 -0800 | [diff] [blame] | 3352 | write_msi_msg_desc(desc, &msg); |
Eric W. Biederman | 3b7d192 | 2006-10-04 02:16:59 -0700 | [diff] [blame] | 3353 | } |
Ingo Molnar | 54168ed | 2008-08-20 09:07:45 +0200 | [diff] [blame] | 3354 | #ifdef CONFIG_INTR_REMAP |
| 3355 | /* |
| 3356 | * Migrate the MSI irq to another cpumask. This migration is |
| 3357 | * done in the process context using interrupt-remapping hardware. |
| 3358 | */ |
Mike Travis | e798673 | 2008-12-16 17:33:52 -0800 | [diff] [blame] | 3359 | static void |
| 3360 | ir_set_msi_irq_affinity(unsigned int irq, const struct cpumask *mask) |
Ingo Molnar | 54168ed | 2008-08-20 09:07:45 +0200 | [diff] [blame] | 3361 | { |
Yinghai Lu | 3145e94 | 2008-12-05 18:58:34 -0800 | [diff] [blame] | 3362 | struct irq_desc *desc = irq_to_desc(irq); |
Ingo Molnar | a7883de | 2008-12-19 00:59:09 +0100 | [diff] [blame^] | 3363 | struct irq_cfg *cfg = desc->chip_data; |
Ingo Molnar | 54168ed | 2008-08-20 09:07:45 +0200 | [diff] [blame] | 3364 | unsigned int dest; |
Ingo Molnar | 54168ed | 2008-08-20 09:07:45 +0200 | [diff] [blame] | 3365 | struct irte irte; |
Ingo Molnar | 54168ed | 2008-08-20 09:07:45 +0200 | [diff] [blame] | 3366 | |
Ingo Molnar | 54168ed | 2008-08-20 09:07:45 +0200 | [diff] [blame] | 3367 | if (get_irte(irq, &irte)) |
| 3368 | return; |
| 3369 | |
Mike Travis | 22f65d3 | 2008-12-16 17:33:56 -0800 | [diff] [blame] | 3370 | dest = set_desc_affinity(desc, mask); |
| 3371 | if (dest == BAD_APICID) |
Ingo Molnar | 54168ed | 2008-08-20 09:07:45 +0200 | [diff] [blame] | 3372 | return; |
| 3373 | |
Ingo Molnar | 54168ed | 2008-08-20 09:07:45 +0200 | [diff] [blame] | 3374 | irte.vector = cfg->vector; |
| 3375 | irte.dest_id = IRTE_DEST(dest); |
| 3376 | |
| 3377 | /* |
| 3378 | * atomically update the IRTE with the new destination and vector. |
| 3379 | */ |
| 3380 | modify_irte(irq, &irte); |
| 3381 | |
| 3382 | /* |
| 3383 | * After this point, all the interrupts will start arriving |
| 3384 | * at the new destination. So, time to cleanup the previous |
| 3385 | * vector allocation. |
| 3386 | */ |
Mike Travis | 22f65d3 | 2008-12-16 17:33:56 -0800 | [diff] [blame] | 3387 | if (cfg->move_in_progress) |
| 3388 | send_cleanup_vector(cfg); |
Ingo Molnar | 54168ed | 2008-08-20 09:07:45 +0200 | [diff] [blame] | 3389 | } |
Yinghai Lu | 3145e94 | 2008-12-05 18:58:34 -0800 | [diff] [blame] | 3390 | |
Ingo Molnar | 54168ed | 2008-08-20 09:07:45 +0200 | [diff] [blame] | 3391 | #endif |
Eric W. Biederman | 3b7d192 | 2006-10-04 02:16:59 -0700 | [diff] [blame] | 3392 | #endif /* CONFIG_SMP */ |
| 3393 | |
| 3394 | /* |
| 3395 | * IRQ Chip for MSI PCI/PCI-X/PCI-Express Devices, |
| 3396 | * which implement the MSI or MSI-X Capability Structure. |
| 3397 | */ |
| 3398 | static struct irq_chip msi_chip = { |
| 3399 | .name = "PCI-MSI", |
| 3400 | .unmask = unmask_msi_irq, |
| 3401 | .mask = mask_msi_irq, |
Yinghai Lu | 1d02519 | 2008-08-19 20:50:34 -0700 | [diff] [blame] | 3402 | .ack = ack_apic_edge, |
Eric W. Biederman | 3b7d192 | 2006-10-04 02:16:59 -0700 | [diff] [blame] | 3403 | #ifdef CONFIG_SMP |
| 3404 | .set_affinity = set_msi_irq_affinity, |
| 3405 | #endif |
| 3406 | .retrigger = ioapic_retrigger_irq, |
| 3407 | }; |
| 3408 | |
Ingo Molnar | 54168ed | 2008-08-20 09:07:45 +0200 | [diff] [blame] | 3409 | #ifdef CONFIG_INTR_REMAP |
| 3410 | static struct irq_chip msi_ir_chip = { |
| 3411 | .name = "IR-PCI-MSI", |
| 3412 | .unmask = unmask_msi_irq, |
| 3413 | .mask = mask_msi_irq, |
| 3414 | .ack = ack_x2apic_edge, |
| 3415 | #ifdef CONFIG_SMP |
| 3416 | .set_affinity = ir_set_msi_irq_affinity, |
| 3417 | #endif |
| 3418 | .retrigger = ioapic_retrigger_irq, |
| 3419 | }; |
| 3420 | |
| 3421 | /* |
| 3422 | * Map the PCI dev to the corresponding remapping hardware unit |
| 3423 | * and allocate 'nvec' consecutive interrupt-remapping table entries |
| 3424 | * in it. |
| 3425 | */ |
| 3426 | static int msi_alloc_irte(struct pci_dev *dev, int irq, int nvec) |
| 3427 | { |
| 3428 | struct intel_iommu *iommu; |
| 3429 | int index; |
| 3430 | |
| 3431 | iommu = map_dev_to_ir(dev); |
| 3432 | if (!iommu) { |
| 3433 | printk(KERN_ERR |
| 3434 | "Unable to map PCI %s to iommu\n", pci_name(dev)); |
| 3435 | return -ENOENT; |
| 3436 | } |
| 3437 | |
| 3438 | index = alloc_irte(iommu, irq, nvec); |
| 3439 | if (index < 0) { |
| 3440 | printk(KERN_ERR |
| 3441 | "Unable to allocate %d IRTE for PCI %s\n", nvec, |
Thomas Gleixner | d6c88a5 | 2008-10-15 15:27:23 +0200 | [diff] [blame] | 3442 | pci_name(dev)); |
Ingo Molnar | 54168ed | 2008-08-20 09:07:45 +0200 | [diff] [blame] | 3443 | return -ENOSPC; |
| 3444 | } |
| 3445 | return index; |
| 3446 | } |
| 3447 | #endif |
Yinghai Lu | 1d02519 | 2008-08-19 20:50:34 -0700 | [diff] [blame] | 3448 | |
Yinghai Lu | 3145e94 | 2008-12-05 18:58:34 -0800 | [diff] [blame] | 3449 | static int setup_msi_irq(struct pci_dev *dev, struct msi_desc *msidesc, int irq) |
Yinghai Lu | 1d02519 | 2008-08-19 20:50:34 -0700 | [diff] [blame] | 3450 | { |
| 3451 | int ret; |
| 3452 | struct msi_msg msg; |
| 3453 | |
| 3454 | ret = msi_compose_msg(dev, irq, &msg); |
| 3455 | if (ret < 0) |
| 3456 | return ret; |
| 3457 | |
Yinghai Lu | 3145e94 | 2008-12-05 18:58:34 -0800 | [diff] [blame] | 3458 | set_irq_msi(irq, msidesc); |
Yinghai Lu | 1d02519 | 2008-08-19 20:50:34 -0700 | [diff] [blame] | 3459 | write_msi_msg(irq, &msg); |
| 3460 | |
Ingo Molnar | 54168ed | 2008-08-20 09:07:45 +0200 | [diff] [blame] | 3461 | #ifdef CONFIG_INTR_REMAP |
| 3462 | if (irq_remapped(irq)) { |
| 3463 | struct irq_desc *desc = irq_to_desc(irq); |
| 3464 | /* |
| 3465 | * irq migration in process context |
| 3466 | */ |
| 3467 | desc->status |= IRQ_MOVE_PCNTXT; |
| 3468 | set_irq_chip_and_handler_name(irq, &msi_ir_chip, handle_edge_irq, "edge"); |
| 3469 | } else |
| 3470 | #endif |
| 3471 | set_irq_chip_and_handler_name(irq, &msi_chip, handle_edge_irq, "edge"); |
Yinghai Lu | 1d02519 | 2008-08-19 20:50:34 -0700 | [diff] [blame] | 3472 | |
Yinghai Lu | c81bba4 | 2008-09-25 11:53:11 -0700 | [diff] [blame] | 3473 | dev_printk(KERN_DEBUG, &dev->dev, "irq %d for MSI/MSI-X\n", irq); |
| 3474 | |
Yinghai Lu | 1d02519 | 2008-08-19 20:50:34 -0700 | [diff] [blame] | 3475 | return 0; |
| 3476 | } |
| 3477 | |
Yinghai Lu | 0b8f1ef | 2008-12-05 18:58:31 -0800 | [diff] [blame] | 3478 | int arch_setup_msi_irq(struct pci_dev *dev, struct msi_desc *msidesc) |
Eric W. Biederman | 3b7d192 | 2006-10-04 02:16:59 -0700 | [diff] [blame] | 3479 | { |
Ingo Molnar | 54168ed | 2008-08-20 09:07:45 +0200 | [diff] [blame] | 3480 | unsigned int irq; |
| 3481 | int ret; |
Yinghai Lu | 199751d | 2008-08-19 20:50:27 -0700 | [diff] [blame] | 3482 | unsigned int irq_want; |
| 3483 | |
Yinghai Lu | be5d535 | 2008-12-05 18:58:33 -0800 | [diff] [blame] | 3484 | irq_want = nr_irqs_gsi; |
Yinghai Lu | 199751d | 2008-08-19 20:50:27 -0700 | [diff] [blame] | 3485 | irq = create_irq_nr(irq_want); |
Yinghai Lu | 199751d | 2008-08-19 20:50:27 -0700 | [diff] [blame] | 3486 | if (irq == 0) |
| 3487 | return -1; |
Eric W. Biederman | f7feaca | 2007-01-28 12:56:37 -0700 | [diff] [blame] | 3488 | |
Ingo Molnar | 54168ed | 2008-08-20 09:07:45 +0200 | [diff] [blame] | 3489 | #ifdef CONFIG_INTR_REMAP |
| 3490 | if (!intr_remapping_enabled) |
| 3491 | goto no_ir; |
| 3492 | |
| 3493 | ret = msi_alloc_irte(dev, irq, 1); |
| 3494 | if (ret < 0) |
| 3495 | goto error; |
| 3496 | no_ir: |
| 3497 | #endif |
Yinghai Lu | 0b8f1ef | 2008-12-05 18:58:31 -0800 | [diff] [blame] | 3498 | ret = setup_msi_irq(dev, msidesc, irq); |
Eric W. Biederman | f7feaca | 2007-01-28 12:56:37 -0700 | [diff] [blame] | 3499 | if (ret < 0) { |
| 3500 | destroy_irq(irq); |
Eric W. Biederman | 3b7d192 | 2006-10-04 02:16:59 -0700 | [diff] [blame] | 3501 | return ret; |
Ingo Molnar | 54168ed | 2008-08-20 09:07:45 +0200 | [diff] [blame] | 3502 | } |
Michael Ellerman | 7fe3730 | 2007-04-18 19:39:21 +1000 | [diff] [blame] | 3503 | return 0; |
Ingo Molnar | 54168ed | 2008-08-20 09:07:45 +0200 | [diff] [blame] | 3504 | |
| 3505 | #ifdef CONFIG_INTR_REMAP |
| 3506 | error: |
| 3507 | destroy_irq(irq); |
| 3508 | return ret; |
| 3509 | #endif |
Eric W. Biederman | 3b7d192 | 2006-10-04 02:16:59 -0700 | [diff] [blame] | 3510 | } |
| 3511 | |
Yinghai Lu | 047c8fd | 2008-08-19 20:50:41 -0700 | [diff] [blame] | 3512 | int arch_setup_msi_irqs(struct pci_dev *dev, int nvec, int type) |
| 3513 | { |
Ingo Molnar | 54168ed | 2008-08-20 09:07:45 +0200 | [diff] [blame] | 3514 | unsigned int irq; |
| 3515 | int ret, sub_handle; |
Yinghai Lu | 0b8f1ef | 2008-12-05 18:58:31 -0800 | [diff] [blame] | 3516 | struct msi_desc *msidesc; |
Ingo Molnar | 54168ed | 2008-08-20 09:07:45 +0200 | [diff] [blame] | 3517 | unsigned int irq_want; |
Yinghai Lu | 047c8fd | 2008-08-19 20:50:41 -0700 | [diff] [blame] | 3518 | |
Ingo Molnar | 54168ed | 2008-08-20 09:07:45 +0200 | [diff] [blame] | 3519 | #ifdef CONFIG_INTR_REMAP |
| 3520 | struct intel_iommu *iommu = 0; |
| 3521 | int index = 0; |
| 3522 | #endif |
| 3523 | |
Yinghai Lu | be5d535 | 2008-12-05 18:58:33 -0800 | [diff] [blame] | 3524 | irq_want = nr_irqs_gsi; |
Ingo Molnar | 54168ed | 2008-08-20 09:07:45 +0200 | [diff] [blame] | 3525 | sub_handle = 0; |
Yinghai Lu | 0b8f1ef | 2008-12-05 18:58:31 -0800 | [diff] [blame] | 3526 | list_for_each_entry(msidesc, &dev->msi_list, list) { |
| 3527 | irq = create_irq_nr(irq_want); |
Yinghai Lu | be5d535 | 2008-12-05 18:58:33 -0800 | [diff] [blame] | 3528 | irq_want++; |
Ingo Molnar | 54168ed | 2008-08-20 09:07:45 +0200 | [diff] [blame] | 3529 | if (irq == 0) |
| 3530 | return -1; |
| 3531 | #ifdef CONFIG_INTR_REMAP |
| 3532 | if (!intr_remapping_enabled) |
| 3533 | goto no_ir; |
| 3534 | |
| 3535 | if (!sub_handle) { |
| 3536 | /* |
| 3537 | * allocate the consecutive block of IRTE's |
| 3538 | * for 'nvec' |
| 3539 | */ |
| 3540 | index = msi_alloc_irte(dev, irq, nvec); |
| 3541 | if (index < 0) { |
| 3542 | ret = index; |
| 3543 | goto error; |
| 3544 | } |
| 3545 | } else { |
| 3546 | iommu = map_dev_to_ir(dev); |
| 3547 | if (!iommu) { |
| 3548 | ret = -ENOENT; |
| 3549 | goto error; |
| 3550 | } |
| 3551 | /* |
| 3552 | * setup the mapping between the irq and the IRTE |
| 3553 | * base index, the sub_handle pointing to the |
| 3554 | * appropriate interrupt remap table entry. |
| 3555 | */ |
| 3556 | set_irte_irq(irq, iommu, index, sub_handle); |
| 3557 | } |
| 3558 | no_ir: |
| 3559 | #endif |
Yinghai Lu | 0b8f1ef | 2008-12-05 18:58:31 -0800 | [diff] [blame] | 3560 | ret = setup_msi_irq(dev, msidesc, irq); |
Ingo Molnar | 54168ed | 2008-08-20 09:07:45 +0200 | [diff] [blame] | 3561 | if (ret < 0) |
| 3562 | goto error; |
| 3563 | sub_handle++; |
| 3564 | } |
| 3565 | return 0; |
Yinghai Lu | 047c8fd | 2008-08-19 20:50:41 -0700 | [diff] [blame] | 3566 | |
| 3567 | error: |
Ingo Molnar | 54168ed | 2008-08-20 09:07:45 +0200 | [diff] [blame] | 3568 | destroy_irq(irq); |
| 3569 | return ret; |
Yinghai Lu | 047c8fd | 2008-08-19 20:50:41 -0700 | [diff] [blame] | 3570 | } |
| 3571 | |
Eric W. Biederman | 3b7d192 | 2006-10-04 02:16:59 -0700 | [diff] [blame] | 3572 | void arch_teardown_msi_irq(unsigned int irq) |
Eric W. Biederman | 2d3fcc1 | 2006-10-04 02:16:43 -0700 | [diff] [blame] | 3573 | { |
Eric W. Biederman | f7feaca | 2007-01-28 12:56:37 -0700 | [diff] [blame] | 3574 | destroy_irq(irq); |
Eric W. Biederman | 2d3fcc1 | 2006-10-04 02:16:43 -0700 | [diff] [blame] | 3575 | } |
| 3576 | |
Ingo Molnar | 54168ed | 2008-08-20 09:07:45 +0200 | [diff] [blame] | 3577 | #ifdef CONFIG_DMAR |
| 3578 | #ifdef CONFIG_SMP |
Mike Travis | 22f65d3 | 2008-12-16 17:33:56 -0800 | [diff] [blame] | 3579 | static void dmar_msi_set_affinity(unsigned int irq, const struct cpumask *mask) |
Ingo Molnar | 54168ed | 2008-08-20 09:07:45 +0200 | [diff] [blame] | 3580 | { |
Yinghai Lu | 3145e94 | 2008-12-05 18:58:34 -0800 | [diff] [blame] | 3581 | struct irq_desc *desc = irq_to_desc(irq); |
Ingo Molnar | 54168ed | 2008-08-20 09:07:45 +0200 | [diff] [blame] | 3582 | struct irq_cfg *cfg; |
| 3583 | struct msi_msg msg; |
| 3584 | unsigned int dest; |
Eric W. Biederman | 2d3fcc1 | 2006-10-04 02:16:43 -0700 | [diff] [blame] | 3585 | |
Mike Travis | 22f65d3 | 2008-12-16 17:33:56 -0800 | [diff] [blame] | 3586 | dest = set_desc_affinity(desc, mask); |
| 3587 | if (dest == BAD_APICID) |
Ingo Molnar | 54168ed | 2008-08-20 09:07:45 +0200 | [diff] [blame] | 3588 | return; |
| 3589 | |
Yinghai Lu | 3145e94 | 2008-12-05 18:58:34 -0800 | [diff] [blame] | 3590 | cfg = desc->chip_data; |
Ingo Molnar | 54168ed | 2008-08-20 09:07:45 +0200 | [diff] [blame] | 3591 | |
| 3592 | dmar_msi_read(irq, &msg); |
| 3593 | |
| 3594 | msg.data &= ~MSI_DATA_VECTOR_MASK; |
| 3595 | msg.data |= MSI_DATA_VECTOR(cfg->vector); |
| 3596 | msg.address_lo &= ~MSI_ADDR_DEST_ID_MASK; |
| 3597 | msg.address_lo |= MSI_ADDR_DEST_ID(dest); |
| 3598 | |
| 3599 | dmar_msi_write(irq, &msg); |
Ingo Molnar | 54168ed | 2008-08-20 09:07:45 +0200 | [diff] [blame] | 3600 | } |
Yinghai Lu | 3145e94 | 2008-12-05 18:58:34 -0800 | [diff] [blame] | 3601 | |
Ingo Molnar | 54168ed | 2008-08-20 09:07:45 +0200 | [diff] [blame] | 3602 | #endif /* CONFIG_SMP */ |
| 3603 | |
| 3604 | struct irq_chip dmar_msi_type = { |
| 3605 | .name = "DMAR_MSI", |
| 3606 | .unmask = dmar_msi_unmask, |
| 3607 | .mask = dmar_msi_mask, |
| 3608 | .ack = ack_apic_edge, |
| 3609 | #ifdef CONFIG_SMP |
| 3610 | .set_affinity = dmar_msi_set_affinity, |
| 3611 | #endif |
| 3612 | .retrigger = ioapic_retrigger_irq, |
| 3613 | }; |
| 3614 | |
| 3615 | int arch_setup_dmar_msi(unsigned int irq) |
| 3616 | { |
| 3617 | int ret; |
| 3618 | struct msi_msg msg; |
| 3619 | |
| 3620 | ret = msi_compose_msg(NULL, irq, &msg); |
| 3621 | if (ret < 0) |
| 3622 | return ret; |
| 3623 | dmar_msi_write(irq, &msg); |
| 3624 | set_irq_chip_and_handler_name(irq, &dmar_msi_type, handle_edge_irq, |
| 3625 | "edge"); |
| 3626 | return 0; |
| 3627 | } |
| 3628 | #endif |
| 3629 | |
venkatesh.pallipadi@intel.com | 58ac1e7 | 2008-09-05 18:02:17 -0700 | [diff] [blame] | 3630 | #ifdef CONFIG_HPET_TIMER |
| 3631 | |
| 3632 | #ifdef CONFIG_SMP |
Mike Travis | 22f65d3 | 2008-12-16 17:33:56 -0800 | [diff] [blame] | 3633 | static void hpet_msi_set_affinity(unsigned int irq, const struct cpumask *mask) |
venkatesh.pallipadi@intel.com | 58ac1e7 | 2008-09-05 18:02:17 -0700 | [diff] [blame] | 3634 | { |
Yinghai Lu | 3145e94 | 2008-12-05 18:58:34 -0800 | [diff] [blame] | 3635 | struct irq_desc *desc = irq_to_desc(irq); |
venkatesh.pallipadi@intel.com | 58ac1e7 | 2008-09-05 18:02:17 -0700 | [diff] [blame] | 3636 | struct irq_cfg *cfg; |
venkatesh.pallipadi@intel.com | 58ac1e7 | 2008-09-05 18:02:17 -0700 | [diff] [blame] | 3637 | struct msi_msg msg; |
| 3638 | unsigned int dest; |
venkatesh.pallipadi@intel.com | 58ac1e7 | 2008-09-05 18:02:17 -0700 | [diff] [blame] | 3639 | |
Mike Travis | 22f65d3 | 2008-12-16 17:33:56 -0800 | [diff] [blame] | 3640 | dest = set_desc_affinity(desc, mask); |
| 3641 | if (dest == BAD_APICID) |
venkatesh.pallipadi@intel.com | 58ac1e7 | 2008-09-05 18:02:17 -0700 | [diff] [blame] | 3642 | return; |
| 3643 | |
Yinghai Lu | 3145e94 | 2008-12-05 18:58:34 -0800 | [diff] [blame] | 3644 | cfg = desc->chip_data; |
venkatesh.pallipadi@intel.com | 58ac1e7 | 2008-09-05 18:02:17 -0700 | [diff] [blame] | 3645 | |
| 3646 | hpet_msi_read(irq, &msg); |
| 3647 | |
| 3648 | msg.data &= ~MSI_DATA_VECTOR_MASK; |
| 3649 | msg.data |= MSI_DATA_VECTOR(cfg->vector); |
| 3650 | msg.address_lo &= ~MSI_ADDR_DEST_ID_MASK; |
| 3651 | msg.address_lo |= MSI_ADDR_DEST_ID(dest); |
| 3652 | |
| 3653 | hpet_msi_write(irq, &msg); |
venkatesh.pallipadi@intel.com | 58ac1e7 | 2008-09-05 18:02:17 -0700 | [diff] [blame] | 3654 | } |
Yinghai Lu | 3145e94 | 2008-12-05 18:58:34 -0800 | [diff] [blame] | 3655 | |
venkatesh.pallipadi@intel.com | 58ac1e7 | 2008-09-05 18:02:17 -0700 | [diff] [blame] | 3656 | #endif /* CONFIG_SMP */ |
| 3657 | |
| 3658 | struct irq_chip hpet_msi_type = { |
| 3659 | .name = "HPET_MSI", |
| 3660 | .unmask = hpet_msi_unmask, |
| 3661 | .mask = hpet_msi_mask, |
| 3662 | .ack = ack_apic_edge, |
| 3663 | #ifdef CONFIG_SMP |
| 3664 | .set_affinity = hpet_msi_set_affinity, |
| 3665 | #endif |
| 3666 | .retrigger = ioapic_retrigger_irq, |
| 3667 | }; |
| 3668 | |
| 3669 | int arch_setup_hpet_msi(unsigned int irq) |
| 3670 | { |
| 3671 | int ret; |
| 3672 | struct msi_msg msg; |
| 3673 | |
| 3674 | ret = msi_compose_msg(NULL, irq, &msg); |
| 3675 | if (ret < 0) |
| 3676 | return ret; |
| 3677 | |
| 3678 | hpet_msi_write(irq, &msg); |
| 3679 | set_irq_chip_and_handler_name(irq, &hpet_msi_type, handle_edge_irq, |
| 3680 | "edge"); |
Yinghai Lu | c81bba4 | 2008-09-25 11:53:11 -0700 | [diff] [blame] | 3681 | |
venkatesh.pallipadi@intel.com | 58ac1e7 | 2008-09-05 18:02:17 -0700 | [diff] [blame] | 3682 | return 0; |
| 3683 | } |
| 3684 | #endif |
| 3685 | |
Ingo Molnar | 54168ed | 2008-08-20 09:07:45 +0200 | [diff] [blame] | 3686 | #endif /* CONFIG_PCI_MSI */ |
Eric W. Biederman | 8b955b0 | 2006-10-04 02:16:55 -0700 | [diff] [blame] | 3687 | /* |
| 3688 | * Hypertransport interrupt support |
| 3689 | */ |
| 3690 | #ifdef CONFIG_HT_IRQ |
| 3691 | |
| 3692 | #ifdef CONFIG_SMP |
| 3693 | |
Yinghai Lu | 497c9a1 | 2008-08-19 20:50:28 -0700 | [diff] [blame] | 3694 | static void target_ht_irq(unsigned int irq, unsigned int dest, u8 vector) |
Eric W. Biederman | 8b955b0 | 2006-10-04 02:16:55 -0700 | [diff] [blame] | 3695 | { |
Eric W. Biederman | ec68307 | 2006-11-08 17:44:57 -0800 | [diff] [blame] | 3696 | struct ht_irq_msg msg; |
| 3697 | fetch_ht_irq_msg(irq, &msg); |
Eric W. Biederman | 8b955b0 | 2006-10-04 02:16:55 -0700 | [diff] [blame] | 3698 | |
Yinghai Lu | 497c9a1 | 2008-08-19 20:50:28 -0700 | [diff] [blame] | 3699 | msg.address_lo &= ~(HT_IRQ_LOW_VECTOR_MASK | HT_IRQ_LOW_DEST_ID_MASK); |
Eric W. Biederman | ec68307 | 2006-11-08 17:44:57 -0800 | [diff] [blame] | 3700 | msg.address_hi &= ~(HT_IRQ_HIGH_DEST_ID_MASK); |
Eric W. Biederman | 8b955b0 | 2006-10-04 02:16:55 -0700 | [diff] [blame] | 3701 | |
Yinghai Lu | 497c9a1 | 2008-08-19 20:50:28 -0700 | [diff] [blame] | 3702 | msg.address_lo |= HT_IRQ_LOW_VECTOR(vector) | HT_IRQ_LOW_DEST_ID(dest); |
Eric W. Biederman | ec68307 | 2006-11-08 17:44:57 -0800 | [diff] [blame] | 3703 | msg.address_hi |= HT_IRQ_HIGH_DEST_ID(dest); |
Eric W. Biederman | 8b955b0 | 2006-10-04 02:16:55 -0700 | [diff] [blame] | 3704 | |
Eric W. Biederman | ec68307 | 2006-11-08 17:44:57 -0800 | [diff] [blame] | 3705 | write_ht_irq_msg(irq, &msg); |
Eric W. Biederman | 8b955b0 | 2006-10-04 02:16:55 -0700 | [diff] [blame] | 3706 | } |
| 3707 | |
Mike Travis | 22f65d3 | 2008-12-16 17:33:56 -0800 | [diff] [blame] | 3708 | static void set_ht_irq_affinity(unsigned int irq, const struct cpumask *mask) |
Eric W. Biederman | 8b955b0 | 2006-10-04 02:16:55 -0700 | [diff] [blame] | 3709 | { |
Yinghai Lu | 3145e94 | 2008-12-05 18:58:34 -0800 | [diff] [blame] | 3710 | struct irq_desc *desc = irq_to_desc(irq); |
Yinghai Lu | 497c9a1 | 2008-08-19 20:50:28 -0700 | [diff] [blame] | 3711 | struct irq_cfg *cfg; |
Eric W. Biederman | 8b955b0 | 2006-10-04 02:16:55 -0700 | [diff] [blame] | 3712 | unsigned int dest; |
Eric W. Biederman | 8b955b0 | 2006-10-04 02:16:55 -0700 | [diff] [blame] | 3713 | |
Mike Travis | 22f65d3 | 2008-12-16 17:33:56 -0800 | [diff] [blame] | 3714 | dest = set_desc_affinity(desc, mask); |
| 3715 | if (dest == BAD_APICID) |
Yinghai Lu | 497c9a1 | 2008-08-19 20:50:28 -0700 | [diff] [blame] | 3716 | return; |
Eric W. Biederman | 8b955b0 | 2006-10-04 02:16:55 -0700 | [diff] [blame] | 3717 | |
Yinghai Lu | 3145e94 | 2008-12-05 18:58:34 -0800 | [diff] [blame] | 3718 | cfg = desc->chip_data; |
Eric W. Biederman | 8b955b0 | 2006-10-04 02:16:55 -0700 | [diff] [blame] | 3719 | |
Yinghai Lu | 497c9a1 | 2008-08-19 20:50:28 -0700 | [diff] [blame] | 3720 | target_ht_irq(irq, dest, cfg->vector); |
Eric W. Biederman | 8b955b0 | 2006-10-04 02:16:55 -0700 | [diff] [blame] | 3721 | } |
Yinghai Lu | 3145e94 | 2008-12-05 18:58:34 -0800 | [diff] [blame] | 3722 | |
Eric W. Biederman | 8b955b0 | 2006-10-04 02:16:55 -0700 | [diff] [blame] | 3723 | #endif |
| 3724 | |
Aneesh Kumar K.V | c37e108 | 2006-10-11 01:20:43 -0700 | [diff] [blame] | 3725 | static struct irq_chip ht_irq_chip = { |
Eric W. Biederman | 8b955b0 | 2006-10-04 02:16:55 -0700 | [diff] [blame] | 3726 | .name = "PCI-HT", |
| 3727 | .mask = mask_ht_irq, |
| 3728 | .unmask = unmask_ht_irq, |
Yinghai Lu | 1d02519 | 2008-08-19 20:50:34 -0700 | [diff] [blame] | 3729 | .ack = ack_apic_edge, |
Eric W. Biederman | 8b955b0 | 2006-10-04 02:16:55 -0700 | [diff] [blame] | 3730 | #ifdef CONFIG_SMP |
| 3731 | .set_affinity = set_ht_irq_affinity, |
| 3732 | #endif |
| 3733 | .retrigger = ioapic_retrigger_irq, |
| 3734 | }; |
| 3735 | |
| 3736 | int arch_setup_ht_irq(unsigned int irq, struct pci_dev *dev) |
| 3737 | { |
Yinghai Lu | 497c9a1 | 2008-08-19 20:50:28 -0700 | [diff] [blame] | 3738 | struct irq_cfg *cfg; |
| 3739 | int err; |
Eric W. Biederman | 8b955b0 | 2006-10-04 02:16:55 -0700 | [diff] [blame] | 3740 | |
Yinghai Lu | 3145e94 | 2008-12-05 18:58:34 -0800 | [diff] [blame] | 3741 | cfg = irq_cfg(irq); |
Mike Travis | e798673 | 2008-12-16 17:33:52 -0800 | [diff] [blame] | 3742 | err = assign_irq_vector(irq, cfg, TARGET_CPUS); |
Ingo Molnar | 54168ed | 2008-08-20 09:07:45 +0200 | [diff] [blame] | 3743 | if (!err) { |
Eric W. Biederman | ec68307 | 2006-11-08 17:44:57 -0800 | [diff] [blame] | 3744 | struct ht_irq_msg msg; |
Eric W. Biederman | 8b955b0 | 2006-10-04 02:16:55 -0700 | [diff] [blame] | 3745 | unsigned dest; |
Eric W. Biederman | 8b955b0 | 2006-10-04 02:16:55 -0700 | [diff] [blame] | 3746 | |
Mike Travis | 22f65d3 | 2008-12-16 17:33:56 -0800 | [diff] [blame] | 3747 | dest = cpu_mask_to_apicid_and(cfg->domain, TARGET_CPUS); |
Eric W. Biederman | 8b955b0 | 2006-10-04 02:16:55 -0700 | [diff] [blame] | 3748 | |
Eric W. Biederman | ec68307 | 2006-11-08 17:44:57 -0800 | [diff] [blame] | 3749 | msg.address_hi = HT_IRQ_HIGH_DEST_ID(dest); |
Eric W. Biederman | 8b955b0 | 2006-10-04 02:16:55 -0700 | [diff] [blame] | 3750 | |
Eric W. Biederman | ec68307 | 2006-11-08 17:44:57 -0800 | [diff] [blame] | 3751 | msg.address_lo = |
| 3752 | HT_IRQ_LOW_BASE | |
Eric W. Biederman | 8b955b0 | 2006-10-04 02:16:55 -0700 | [diff] [blame] | 3753 | HT_IRQ_LOW_DEST_ID(dest) | |
Yinghai Lu | 497c9a1 | 2008-08-19 20:50:28 -0700 | [diff] [blame] | 3754 | HT_IRQ_LOW_VECTOR(cfg->vector) | |
Eric W. Biederman | 8b955b0 | 2006-10-04 02:16:55 -0700 | [diff] [blame] | 3755 | ((INT_DEST_MODE == 0) ? |
| 3756 | HT_IRQ_LOW_DM_PHYSICAL : |
| 3757 | HT_IRQ_LOW_DM_LOGICAL) | |
| 3758 | HT_IRQ_LOW_RQEOI_EDGE | |
| 3759 | ((INT_DELIVERY_MODE != dest_LowestPrio) ? |
| 3760 | HT_IRQ_LOW_MT_FIXED : |
| 3761 | HT_IRQ_LOW_MT_ARBITRATED) | |
| 3762 | HT_IRQ_LOW_IRQ_MASKED; |
| 3763 | |
Eric W. Biederman | ec68307 | 2006-11-08 17:44:57 -0800 | [diff] [blame] | 3764 | write_ht_irq_msg(irq, &msg); |
Eric W. Biederman | 8b955b0 | 2006-10-04 02:16:55 -0700 | [diff] [blame] | 3765 | |
Ingo Molnar | a460e74 | 2006-10-17 00:10:03 -0700 | [diff] [blame] | 3766 | set_irq_chip_and_handler_name(irq, &ht_irq_chip, |
| 3767 | handle_edge_irq, "edge"); |
Yinghai Lu | c81bba4 | 2008-09-25 11:53:11 -0700 | [diff] [blame] | 3768 | |
| 3769 | dev_printk(KERN_DEBUG, &dev->dev, "irq %d for HT\n", irq); |
Eric W. Biederman | 8b955b0 | 2006-10-04 02:16:55 -0700 | [diff] [blame] | 3770 | } |
Yinghai Lu | 497c9a1 | 2008-08-19 20:50:28 -0700 | [diff] [blame] | 3771 | return err; |
Eric W. Biederman | 8b955b0 | 2006-10-04 02:16:55 -0700 | [diff] [blame] | 3772 | } |
| 3773 | #endif /* CONFIG_HT_IRQ */ |
| 3774 | |
Dean Nelson | 4173a0e | 2008-10-02 12:18:21 -0500 | [diff] [blame] | 3775 | #ifdef CONFIG_X86_64 |
| 3776 | /* |
| 3777 | * Re-target the irq to the specified CPU and enable the specified MMR located |
| 3778 | * on the specified blade to allow the sending of MSIs to the specified CPU. |
| 3779 | */ |
| 3780 | int arch_enable_uv_irq(char *irq_name, unsigned int irq, int cpu, int mmr_blade, |
| 3781 | unsigned long mmr_offset) |
| 3782 | { |
Mike Travis | 22f65d3 | 2008-12-16 17:33:56 -0800 | [diff] [blame] | 3783 | const struct cpumask *eligible_cpu = cpumask_of(cpu); |
Dean Nelson | 4173a0e | 2008-10-02 12:18:21 -0500 | [diff] [blame] | 3784 | struct irq_cfg *cfg; |
| 3785 | int mmr_pnode; |
| 3786 | unsigned long mmr_value; |
| 3787 | struct uv_IO_APIC_route_entry *entry; |
| 3788 | unsigned long flags; |
| 3789 | int err; |
| 3790 | |
Yinghai Lu | 3145e94 | 2008-12-05 18:58:34 -0800 | [diff] [blame] | 3791 | cfg = irq_cfg(irq); |
| 3792 | |
Mike Travis | e798673 | 2008-12-16 17:33:52 -0800 | [diff] [blame] | 3793 | err = assign_irq_vector(irq, cfg, eligible_cpu); |
Dean Nelson | 4173a0e | 2008-10-02 12:18:21 -0500 | [diff] [blame] | 3794 | if (err != 0) |
| 3795 | return err; |
| 3796 | |
| 3797 | spin_lock_irqsave(&vector_lock, flags); |
| 3798 | set_irq_chip_and_handler_name(irq, &uv_irq_chip, handle_percpu_irq, |
| 3799 | irq_name); |
| 3800 | spin_unlock_irqrestore(&vector_lock, flags); |
| 3801 | |
Dean Nelson | 4173a0e | 2008-10-02 12:18:21 -0500 | [diff] [blame] | 3802 | mmr_value = 0; |
| 3803 | entry = (struct uv_IO_APIC_route_entry *)&mmr_value; |
| 3804 | BUG_ON(sizeof(struct uv_IO_APIC_route_entry) != sizeof(unsigned long)); |
| 3805 | |
| 3806 | entry->vector = cfg->vector; |
| 3807 | entry->delivery_mode = INT_DELIVERY_MODE; |
| 3808 | entry->dest_mode = INT_DEST_MODE; |
| 3809 | entry->polarity = 0; |
| 3810 | entry->trigger = 0; |
| 3811 | entry->mask = 0; |
Mike Travis | e798673 | 2008-12-16 17:33:52 -0800 | [diff] [blame] | 3812 | entry->dest = cpu_mask_to_apicid(eligible_cpu); |
Dean Nelson | 4173a0e | 2008-10-02 12:18:21 -0500 | [diff] [blame] | 3813 | |
| 3814 | mmr_pnode = uv_blade_to_pnode(mmr_blade); |
| 3815 | uv_write_global_mmr64(mmr_pnode, mmr_offset, mmr_value); |
| 3816 | |
| 3817 | return irq; |
| 3818 | } |
| 3819 | |
| 3820 | /* |
| 3821 | * Disable the specified MMR located on the specified blade so that MSIs are |
| 3822 | * longer allowed to be sent. |
| 3823 | */ |
| 3824 | void arch_disable_uv_irq(int mmr_blade, unsigned long mmr_offset) |
| 3825 | { |
| 3826 | unsigned long mmr_value; |
| 3827 | struct uv_IO_APIC_route_entry *entry; |
| 3828 | int mmr_pnode; |
| 3829 | |
| 3830 | mmr_value = 0; |
| 3831 | entry = (struct uv_IO_APIC_route_entry *)&mmr_value; |
| 3832 | BUG_ON(sizeof(struct uv_IO_APIC_route_entry) != sizeof(unsigned long)); |
| 3833 | |
| 3834 | entry->mask = 1; |
| 3835 | |
| 3836 | mmr_pnode = uv_blade_to_pnode(mmr_blade); |
| 3837 | uv_write_global_mmr64(mmr_pnode, mmr_offset, mmr_value); |
| 3838 | } |
| 3839 | #endif /* CONFIG_X86_64 */ |
| 3840 | |
Yinghai Lu | 9d6a4d0 | 2008-08-19 20:50:52 -0700 | [diff] [blame] | 3841 | int __init io_apic_get_redir_entries (int ioapic) |
| 3842 | { |
| 3843 | union IO_APIC_reg_01 reg_01; |
| 3844 | unsigned long flags; |
| 3845 | |
| 3846 | spin_lock_irqsave(&ioapic_lock, flags); |
| 3847 | reg_01.raw = io_apic_read(ioapic, 1); |
| 3848 | spin_unlock_irqrestore(&ioapic_lock, flags); |
| 3849 | |
| 3850 | return reg_01.bits.entries; |
| 3851 | } |
| 3852 | |
Yinghai Lu | be5d535 | 2008-12-05 18:58:33 -0800 | [diff] [blame] | 3853 | void __init probe_nr_irqs_gsi(void) |
Yinghai Lu | 9d6a4d0 | 2008-08-19 20:50:52 -0700 | [diff] [blame] | 3854 | { |
Yinghai Lu | be5d535 | 2008-12-05 18:58:33 -0800 | [diff] [blame] | 3855 | int idx; |
| 3856 | int nr = 0; |
| 3857 | |
| 3858 | for (idx = 0; idx < nr_ioapics; idx++) |
| 3859 | nr += io_apic_get_redir_entries(idx) + 1; |
| 3860 | |
| 3861 | if (nr > nr_irqs_gsi) |
| 3862 | nr_irqs_gsi = nr; |
Yinghai Lu | 9d6a4d0 | 2008-08-19 20:50:52 -0700 | [diff] [blame] | 3863 | } |
| 3864 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3865 | /* -------------------------------------------------------------------------- |
Ingo Molnar | 54168ed | 2008-08-20 09:07:45 +0200 | [diff] [blame] | 3866 | ACPI-based IOAPIC Configuration |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3867 | -------------------------------------------------------------------------- */ |
| 3868 | |
Len Brown | 888ba6c | 2005-08-24 12:07:20 -0400 | [diff] [blame] | 3869 | #ifdef CONFIG_ACPI |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3870 | |
Ingo Molnar | 54168ed | 2008-08-20 09:07:45 +0200 | [diff] [blame] | 3871 | #ifdef CONFIG_X86_32 |
Paolo Ciarrocchi | 3606244 | 2008-06-08 13:07:18 +0200 | [diff] [blame] | 3872 | int __init io_apic_get_unique_id(int ioapic, int apic_id) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3873 | { |
| 3874 | union IO_APIC_reg_00 reg_00; |
| 3875 | static physid_mask_t apic_id_map = PHYSID_MASK_NONE; |
| 3876 | physid_mask_t tmp; |
| 3877 | unsigned long flags; |
| 3878 | int i = 0; |
| 3879 | |
| 3880 | /* |
Paolo Ciarrocchi | 3606244 | 2008-06-08 13:07:18 +0200 | [diff] [blame] | 3881 | * The P4 platform supports up to 256 APIC IDs on two separate APIC |
| 3882 | * buses (one for LAPICs, one for IOAPICs), where predecessors only |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3883 | * supports up to 16 on one shared APIC bus. |
Paolo Ciarrocchi | 3606244 | 2008-06-08 13:07:18 +0200 | [diff] [blame] | 3884 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3885 | * TBD: Expand LAPIC/IOAPIC support on P4-class systems to take full |
| 3886 | * advantage of new APIC bus architecture. |
| 3887 | */ |
| 3888 | |
| 3889 | if (physids_empty(apic_id_map)) |
| 3890 | apic_id_map = ioapic_phys_id_map(phys_cpu_present_map); |
| 3891 | |
| 3892 | spin_lock_irqsave(&ioapic_lock, flags); |
| 3893 | reg_00.raw = io_apic_read(ioapic, 0); |
| 3894 | spin_unlock_irqrestore(&ioapic_lock, flags); |
| 3895 | |
| 3896 | if (apic_id >= get_physical_broadcast()) { |
| 3897 | printk(KERN_WARNING "IOAPIC[%d]: Invalid apic_id %d, trying " |
| 3898 | "%d\n", ioapic, apic_id, reg_00.bits.ID); |
| 3899 | apic_id = reg_00.bits.ID; |
| 3900 | } |
| 3901 | |
| 3902 | /* |
Paolo Ciarrocchi | 3606244 | 2008-06-08 13:07:18 +0200 | [diff] [blame] | 3903 | * Every APIC in a system must have a unique ID or we get lots of nice |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3904 | * 'stuck on smp_invalidate_needed IPI wait' messages. |
| 3905 | */ |
| 3906 | if (check_apicid_used(apic_id_map, apic_id)) { |
| 3907 | |
| 3908 | for (i = 0; i < get_physical_broadcast(); i++) { |
| 3909 | if (!check_apicid_used(apic_id_map, i)) |
| 3910 | break; |
| 3911 | } |
| 3912 | |
| 3913 | if (i == get_physical_broadcast()) |
| 3914 | panic("Max apic_id exceeded!\n"); |
| 3915 | |
| 3916 | printk(KERN_WARNING "IOAPIC[%d]: apic_id %d already used, " |
| 3917 | "trying %d\n", ioapic, apic_id, i); |
| 3918 | |
| 3919 | apic_id = i; |
Paolo Ciarrocchi | 3606244 | 2008-06-08 13:07:18 +0200 | [diff] [blame] | 3920 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3921 | |
| 3922 | tmp = apicid_to_cpu_present(apic_id); |
| 3923 | physids_or(apic_id_map, apic_id_map, tmp); |
| 3924 | |
| 3925 | if (reg_00.bits.ID != apic_id) { |
| 3926 | reg_00.bits.ID = apic_id; |
| 3927 | |
| 3928 | spin_lock_irqsave(&ioapic_lock, flags); |
| 3929 | io_apic_write(ioapic, 0, reg_00.raw); |
| 3930 | reg_00.raw = io_apic_read(ioapic, 0); |
| 3931 | spin_unlock_irqrestore(&ioapic_lock, flags); |
| 3932 | |
| 3933 | /* Sanity check */ |
Andreas Deresch | 6070f9e | 2006-02-26 04:18:34 +0100 | [diff] [blame] | 3934 | if (reg_00.bits.ID != apic_id) { |
| 3935 | printk("IOAPIC[%d]: Unable to change apic_id!\n", ioapic); |
| 3936 | return -1; |
| 3937 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3938 | } |
| 3939 | |
| 3940 | apic_printk(APIC_VERBOSE, KERN_INFO |
| 3941 | "IOAPIC[%d]: Assigned apic_id %d\n", ioapic, apic_id); |
| 3942 | |
| 3943 | return apic_id; |
| 3944 | } |
| 3945 | |
Paolo Ciarrocchi | 3606244 | 2008-06-08 13:07:18 +0200 | [diff] [blame] | 3946 | int __init io_apic_get_version(int ioapic) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3947 | { |
| 3948 | union IO_APIC_reg_01 reg_01; |
| 3949 | unsigned long flags; |
| 3950 | |
| 3951 | spin_lock_irqsave(&ioapic_lock, flags); |
| 3952 | reg_01.raw = io_apic_read(ioapic, 1); |
| 3953 | spin_unlock_irqrestore(&ioapic_lock, flags); |
| 3954 | |
| 3955 | return reg_01.bits.version; |
| 3956 | } |
Ingo Molnar | 54168ed | 2008-08-20 09:07:45 +0200 | [diff] [blame] | 3957 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3958 | |
Ingo Molnar | 54168ed | 2008-08-20 09:07:45 +0200 | [diff] [blame] | 3959 | int io_apic_set_pci_routing (int ioapic, int pin, int irq, int triggering, int polarity) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3960 | { |
Yinghai Lu | 0b8f1ef | 2008-12-05 18:58:31 -0800 | [diff] [blame] | 3961 | struct irq_desc *desc; |
| 3962 | struct irq_cfg *cfg; |
| 3963 | int cpu = boot_cpu_id; |
| 3964 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3965 | if (!IO_APIC_IRQ(irq)) { |
Ingo Molnar | 54168ed | 2008-08-20 09:07:45 +0200 | [diff] [blame] | 3966 | apic_printk(APIC_QUIET,KERN_ERR "IOAPIC[%d]: Invalid reference to IRQ 0\n", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3967 | ioapic); |
| 3968 | return -EINVAL; |
| 3969 | } |
| 3970 | |
Yinghai Lu | 0b8f1ef | 2008-12-05 18:58:31 -0800 | [diff] [blame] | 3971 | desc = irq_to_desc_alloc_cpu(irq, cpu); |
| 3972 | if (!desc) { |
| 3973 | printk(KERN_INFO "can not get irq_desc %d\n", irq); |
| 3974 | return 0; |
| 3975 | } |
| 3976 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3977 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3978 | * IRQs < 16 are already in the irq_2_pin[] map |
| 3979 | */ |
Yinghai Lu | 99d093d | 2008-12-05 18:58:32 -0800 | [diff] [blame] | 3980 | if (irq >= NR_IRQS_LEGACY) { |
Yinghai Lu | 0b8f1ef | 2008-12-05 18:58:31 -0800 | [diff] [blame] | 3981 | cfg = desc->chip_data; |
Yinghai Lu | 3145e94 | 2008-12-05 18:58:34 -0800 | [diff] [blame] | 3982 | add_pin_to_irq_cpu(cfg, cpu, ioapic, pin); |
Yinghai Lu | 0b8f1ef | 2008-12-05 18:58:31 -0800 | [diff] [blame] | 3983 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3984 | |
Yinghai Lu | 3145e94 | 2008-12-05 18:58:34 -0800 | [diff] [blame] | 3985 | setup_IO_APIC_irq(ioapic, pin, irq, desc, triggering, polarity); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3986 | |
| 3987 | return 0; |
| 3988 | } |
| 3989 | |
Ingo Molnar | 54168ed | 2008-08-20 09:07:45 +0200 | [diff] [blame] | 3990 | |
Shaohua Li | 61fd47e | 2007-11-17 01:05:28 -0500 | [diff] [blame] | 3991 | int acpi_get_override_irq(int bus_irq, int *trigger, int *polarity) |
| 3992 | { |
| 3993 | int i; |
| 3994 | |
| 3995 | if (skip_ioapic_setup) |
| 3996 | return -1; |
| 3997 | |
| 3998 | for (i = 0; i < mp_irq_entries; i++) |
Alexey Starikovskiy | 2fddb6e28 | 2008-05-14 19:03:17 +0400 | [diff] [blame] | 3999 | if (mp_irqs[i].mp_irqtype == mp_INT && |
| 4000 | mp_irqs[i].mp_srcbusirq == bus_irq) |
Shaohua Li | 61fd47e | 2007-11-17 01:05:28 -0500 | [diff] [blame] | 4001 | break; |
| 4002 | if (i >= mp_irq_entries) |
| 4003 | return -1; |
| 4004 | |
| 4005 | *trigger = irq_trigger(i); |
| 4006 | *polarity = irq_polarity(i); |
| 4007 | return 0; |
| 4008 | } |
| 4009 | |
Len Brown | 888ba6c | 2005-08-24 12:07:20 -0400 | [diff] [blame] | 4010 | #endif /* CONFIG_ACPI */ |
Rusty Russell | 1a3f239 | 2006-09-26 10:52:32 +0200 | [diff] [blame] | 4011 | |
Yinghai Lu | 497c9a1 | 2008-08-19 20:50:28 -0700 | [diff] [blame] | 4012 | /* |
| 4013 | * This function currently is only a helper for the i386 smp boot process where |
| 4014 | * we need to reprogram the ioredtbls to cater for the cpus which have come online |
| 4015 | * so mask in all cases should simply be TARGET_CPUS |
| 4016 | */ |
| 4017 | #ifdef CONFIG_SMP |
| 4018 | void __init setup_ioapic_dest(void) |
| 4019 | { |
| 4020 | int pin, ioapic, irq, irq_entry; |
Thomas Gleixner | 6c2e940 | 2008-11-07 12:33:49 +0100 | [diff] [blame] | 4021 | struct irq_desc *desc; |
Yinghai Lu | 497c9a1 | 2008-08-19 20:50:28 -0700 | [diff] [blame] | 4022 | struct irq_cfg *cfg; |
Mike Travis | 22f65d3 | 2008-12-16 17:33:56 -0800 | [diff] [blame] | 4023 | const struct cpumask *mask; |
Yinghai Lu | 497c9a1 | 2008-08-19 20:50:28 -0700 | [diff] [blame] | 4024 | |
| 4025 | if (skip_ioapic_setup == 1) |
| 4026 | return; |
| 4027 | |
| 4028 | for (ioapic = 0; ioapic < nr_ioapics; ioapic++) { |
| 4029 | for (pin = 0; pin < nr_ioapic_registers[ioapic]; pin++) { |
| 4030 | irq_entry = find_irq_entry(ioapic, pin, mp_INT); |
| 4031 | if (irq_entry == -1) |
| 4032 | continue; |
| 4033 | irq = pin_2_irq(irq_entry, ioapic, pin); |
| 4034 | |
| 4035 | /* setup_IO_APIC_irqs could fail to get vector for some device |
| 4036 | * when you have too many devices, because at that time only boot |
| 4037 | * cpu is online. |
| 4038 | */ |
Yinghai Lu | 0b8f1ef | 2008-12-05 18:58:31 -0800 | [diff] [blame] | 4039 | desc = irq_to_desc(irq); |
| 4040 | cfg = desc->chip_data; |
Thomas Gleixner | 6c2e940 | 2008-11-07 12:33:49 +0100 | [diff] [blame] | 4041 | if (!cfg->vector) { |
Yinghai Lu | 3145e94 | 2008-12-05 18:58:34 -0800 | [diff] [blame] | 4042 | setup_IO_APIC_irq(ioapic, pin, irq, desc, |
Yinghai Lu | 497c9a1 | 2008-08-19 20:50:28 -0700 | [diff] [blame] | 4043 | irq_trigger(irq_entry), |
| 4044 | irq_polarity(irq_entry)); |
Thomas Gleixner | 6c2e940 | 2008-11-07 12:33:49 +0100 | [diff] [blame] | 4045 | continue; |
| 4046 | |
| 4047 | } |
| 4048 | |
| 4049 | /* |
| 4050 | * Honour affinities which have been set in early boot |
| 4051 | */ |
Thomas Gleixner | 6c2e940 | 2008-11-07 12:33:49 +0100 | [diff] [blame] | 4052 | if (desc->status & |
| 4053 | (IRQ_NO_BALANCING | IRQ_AFFINITY_SET)) |
Mike Travis | e798673 | 2008-12-16 17:33:52 -0800 | [diff] [blame] | 4054 | mask = &desc->affinity; |
Ingo Molnar | 54168ed | 2008-08-20 09:07:45 +0200 | [diff] [blame] | 4055 | else |
Thomas Gleixner | 6c2e940 | 2008-11-07 12:33:49 +0100 | [diff] [blame] | 4056 | mask = TARGET_CPUS; |
| 4057 | |
| 4058 | #ifdef CONFIG_INTR_REMAP |
| 4059 | if (intr_remapping_enabled) |
Mike Travis | e798673 | 2008-12-16 17:33:52 -0800 | [diff] [blame] | 4060 | set_ir_ioapic_affinity_irq_desc(desc, mask); |
Thomas Gleixner | 6c2e940 | 2008-11-07 12:33:49 +0100 | [diff] [blame] | 4061 | else |
| 4062 | #endif |
Mike Travis | e798673 | 2008-12-16 17:33:52 -0800 | [diff] [blame] | 4063 | set_ioapic_affinity_irq_desc(desc, mask); |
Yinghai Lu | 497c9a1 | 2008-08-19 20:50:28 -0700 | [diff] [blame] | 4064 | } |
| 4065 | |
| 4066 | } |
| 4067 | } |
| 4068 | #endif |
| 4069 | |
Ingo Molnar | 54168ed | 2008-08-20 09:07:45 +0200 | [diff] [blame] | 4070 | #define IOAPIC_RESOURCE_NAME_SIZE 11 |
| 4071 | |
| 4072 | static struct resource *ioapic_resources; |
| 4073 | |
| 4074 | static struct resource * __init ioapic_setup_resources(void) |
| 4075 | { |
| 4076 | unsigned long n; |
| 4077 | struct resource *res; |
| 4078 | char *mem; |
| 4079 | int i; |
| 4080 | |
| 4081 | if (nr_ioapics <= 0) |
| 4082 | return NULL; |
| 4083 | |
| 4084 | n = IOAPIC_RESOURCE_NAME_SIZE + sizeof(struct resource); |
| 4085 | n *= nr_ioapics; |
| 4086 | |
| 4087 | mem = alloc_bootmem(n); |
| 4088 | res = (void *)mem; |
| 4089 | |
| 4090 | if (mem != NULL) { |
| 4091 | mem += sizeof(struct resource) * nr_ioapics; |
| 4092 | |
| 4093 | for (i = 0; i < nr_ioapics; i++) { |
| 4094 | res[i].name = mem; |
| 4095 | res[i].flags = IORESOURCE_MEM | IORESOURCE_BUSY; |
| 4096 | sprintf(mem, "IOAPIC %u", i); |
| 4097 | mem += IOAPIC_RESOURCE_NAME_SIZE; |
| 4098 | } |
| 4099 | } |
| 4100 | |
| 4101 | ioapic_resources = res; |
| 4102 | |
| 4103 | return res; |
| 4104 | } |
Ingo Molnar | 54168ed | 2008-08-20 09:07:45 +0200 | [diff] [blame] | 4105 | |
Yinghai Lu | f3294a3 | 2008-06-27 01:41:56 -0700 | [diff] [blame] | 4106 | void __init ioapic_init_mappings(void) |
| 4107 | { |
| 4108 | unsigned long ioapic_phys, idx = FIX_IO_APIC_BASE_0; |
Ingo Molnar | 54168ed | 2008-08-20 09:07:45 +0200 | [diff] [blame] | 4109 | struct resource *ioapic_res; |
Thomas Gleixner | d6c88a5 | 2008-10-15 15:27:23 +0200 | [diff] [blame] | 4110 | int i; |
Yinghai Lu | f3294a3 | 2008-06-27 01:41:56 -0700 | [diff] [blame] | 4111 | |
Ingo Molnar | 54168ed | 2008-08-20 09:07:45 +0200 | [diff] [blame] | 4112 | ioapic_res = ioapic_setup_resources(); |
Yinghai Lu | f3294a3 | 2008-06-27 01:41:56 -0700 | [diff] [blame] | 4113 | for (i = 0; i < nr_ioapics; i++) { |
| 4114 | if (smp_found_config) { |
| 4115 | ioapic_phys = mp_ioapics[i].mp_apicaddr; |
Ingo Molnar | 54168ed | 2008-08-20 09:07:45 +0200 | [diff] [blame] | 4116 | #ifdef CONFIG_X86_32 |
Thomas Gleixner | d6c88a5 | 2008-10-15 15:27:23 +0200 | [diff] [blame] | 4117 | if (!ioapic_phys) { |
| 4118 | printk(KERN_ERR |
| 4119 | "WARNING: bogus zero IO-APIC " |
| 4120 | "address found in MPTABLE, " |
| 4121 | "disabling IO/APIC support!\n"); |
| 4122 | smp_found_config = 0; |
| 4123 | skip_ioapic_setup = 1; |
| 4124 | goto fake_ioapic_page; |
| 4125 | } |
Ingo Molnar | 54168ed | 2008-08-20 09:07:45 +0200 | [diff] [blame] | 4126 | #endif |
Yinghai Lu | f3294a3 | 2008-06-27 01:41:56 -0700 | [diff] [blame] | 4127 | } else { |
Ingo Molnar | 54168ed | 2008-08-20 09:07:45 +0200 | [diff] [blame] | 4128 | #ifdef CONFIG_X86_32 |
Yinghai Lu | f3294a3 | 2008-06-27 01:41:56 -0700 | [diff] [blame] | 4129 | fake_ioapic_page: |
Ingo Molnar | 54168ed | 2008-08-20 09:07:45 +0200 | [diff] [blame] | 4130 | #endif |
Yinghai Lu | f3294a3 | 2008-06-27 01:41:56 -0700 | [diff] [blame] | 4131 | ioapic_phys = (unsigned long) |
Ingo Molnar | 54168ed | 2008-08-20 09:07:45 +0200 | [diff] [blame] | 4132 | alloc_bootmem_pages(PAGE_SIZE); |
Yinghai Lu | f3294a3 | 2008-06-27 01:41:56 -0700 | [diff] [blame] | 4133 | ioapic_phys = __pa(ioapic_phys); |
| 4134 | } |
| 4135 | set_fixmap_nocache(idx, ioapic_phys); |
Ingo Molnar | 54168ed | 2008-08-20 09:07:45 +0200 | [diff] [blame] | 4136 | apic_printk(APIC_VERBOSE, |
| 4137 | "mapped IOAPIC to %08lx (%08lx)\n", |
| 4138 | __fix_to_virt(idx), ioapic_phys); |
Yinghai Lu | f3294a3 | 2008-06-27 01:41:56 -0700 | [diff] [blame] | 4139 | idx++; |
Ingo Molnar | 54168ed | 2008-08-20 09:07:45 +0200 | [diff] [blame] | 4140 | |
Ingo Molnar | 54168ed | 2008-08-20 09:07:45 +0200 | [diff] [blame] | 4141 | if (ioapic_res != NULL) { |
| 4142 | ioapic_res->start = ioapic_phys; |
| 4143 | ioapic_res->end = ioapic_phys + (4 * 1024) - 1; |
| 4144 | ioapic_res++; |
| 4145 | } |
Yinghai Lu | f3294a3 | 2008-06-27 01:41:56 -0700 | [diff] [blame] | 4146 | } |
| 4147 | } |
| 4148 | |
Ingo Molnar | 54168ed | 2008-08-20 09:07:45 +0200 | [diff] [blame] | 4149 | static int __init ioapic_insert_resources(void) |
| 4150 | { |
| 4151 | int i; |
| 4152 | struct resource *r = ioapic_resources; |
| 4153 | |
| 4154 | if (!r) { |
| 4155 | printk(KERN_ERR |
| 4156 | "IO APIC resources could be not be allocated.\n"); |
| 4157 | return -1; |
| 4158 | } |
| 4159 | |
| 4160 | for (i = 0; i < nr_ioapics; i++) { |
| 4161 | insert_resource(&iomem_resource, r); |
| 4162 | r++; |
| 4163 | } |
| 4164 | |
| 4165 | return 0; |
| 4166 | } |
| 4167 | |
| 4168 | /* Insert the IO APIC resources after PCI initialization has occured to handle |
| 4169 | * IO APICS that are mapped in on a BAR in PCI space. */ |
| 4170 | late_initcall(ioapic_insert_resources); |