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> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 28 | #include <linux/mc146818rtc.h> |
| 29 | #include <linux/compiler.h> |
| 30 | #include <linux/acpi.h> |
Alexey Dobriyan | 129f694 | 2005-06-23 00:08:33 -0700 | [diff] [blame] | 31 | #include <linux/module.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 32 | #include <linux/sysdev.h> |
Eric W. Biederman | 2d3fcc1 | 2006-10-04 02:16:43 -0700 | [diff] [blame] | 33 | #include <linux/pci.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> |
Julia Lawall | 1d16b53 | 2008-01-30 13:32:19 +0100 | [diff] [blame] | 38 | #include <linux/jiffies.h> /* time_after() */ |
Ashok Raj | 54d5d42 | 2005-09-06 15:16:15 -0700 | [diff] [blame] | 39 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 40 | #include <asm/io.h> |
| 41 | #include <asm/smp.h> |
| 42 | #include <asm/desc.h> |
| 43 | #include <asm/timer.h> |
Ingo Molnar | 306e440 | 2005-06-30 02:58:55 -0700 | [diff] [blame] | 44 | #include <asm/i8259.h> |
Don Zickus | 3e4ff11 | 2006-06-26 13:57:01 +0200 | [diff] [blame] | 45 | #include <asm/nmi.h> |
Eric W. Biederman | 2d3fcc1 | 2006-10-04 02:16:43 -0700 | [diff] [blame] | 46 | #include <asm/msidef.h> |
Eric W. Biederman | 8b955b0 | 2006-10-04 02:16:55 -0700 | [diff] [blame] | 47 | #include <asm/hypertransport.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 48 | |
| 49 | #include <mach_apic.h> |
Andi Kleen | 874c4fe | 2006-09-26 10:52:26 +0200 | [diff] [blame] | 50 | #include <mach_apicdef.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 51 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 52 | int (*ioapic_renumber_irq)(int ioapic, int irq); |
| 53 | atomic_t irq_mis_count; |
| 54 | |
Eric W. Biederman | fcfd636 | 2005-10-30 14:59:39 -0800 | [diff] [blame] | 55 | /* Where if anywhere is the i8259 connect in external int mode */ |
| 56 | static struct { int pin, apic; } ioapic_i8259 = { -1, -1 }; |
| 57 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 58 | static DEFINE_SPINLOCK(ioapic_lock); |
Jan Beulich | 0a1ad60 | 2006-06-26 13:56:43 +0200 | [diff] [blame] | 59 | static DEFINE_SPINLOCK(vector_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 60 | |
Andi Kleen | f9262c1 | 2006-03-08 17:57:25 -0800 | [diff] [blame] | 61 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 62 | /* |
| 63 | * Is the SiS APIC rmw bug present ? |
| 64 | * -1 = don't know, 0 = no, 1 = yes |
| 65 | */ |
| 66 | int sis_apic_bug = -1; |
| 67 | |
| 68 | /* |
| 69 | * # of IRQ routing registers |
| 70 | */ |
| 71 | int nr_ioapic_registers[MAX_IO_APICS]; |
| 72 | |
Alexey Starikovskiy | 9f640cc | 2008-04-04 23:41:13 +0400 | [diff] [blame] | 73 | /* I/O APIC entries */ |
| 74 | struct mpc_config_ioapic mp_ioapics[MAX_IO_APICS]; |
| 75 | int nr_ioapics; |
| 76 | |
Alexey Starikovskiy | 584f734 | 2008-04-04 23:41:32 +0400 | [diff] [blame] | 77 | /* MP IRQ source entries */ |
| 78 | struct mpc_config_intsrc mp_irqs[MAX_IRQ_SOURCES]; |
| 79 | |
| 80 | /* # of MP IRQ source entries */ |
| 81 | int mp_irq_entries; |
| 82 | |
Rusty Russell | 1a3f239 | 2006-09-26 10:52:32 +0200 | [diff] [blame] | 83 | static int disable_timer_pin_1 __initdata; |
Chuck Ebbert | 66759a0 | 2005-09-12 18:49:25 +0200 | [diff] [blame] | 84 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 85 | /* |
| 86 | * Rough estimation of how many shared IRQs there are, can |
| 87 | * be changed anytime. |
| 88 | */ |
| 89 | #define MAX_PLUS_SHARED_IRQS NR_IRQS |
| 90 | #define PIN_MAP_SIZE (MAX_PLUS_SHARED_IRQS + NR_IRQS) |
| 91 | |
| 92 | /* |
| 93 | * This is performance-critical, we want to do it O(1) |
| 94 | * |
| 95 | * the indexing order of this array favors 1:1 mappings |
| 96 | * between pins and IRQs. |
| 97 | */ |
| 98 | |
| 99 | static struct irq_pin_list { |
| 100 | int apic, pin, next; |
| 101 | } irq_2_pin[PIN_MAP_SIZE]; |
| 102 | |
Linus Torvalds | 130fe05 | 2006-11-01 09:11:00 -0800 | [diff] [blame] | 103 | struct io_apic { |
| 104 | unsigned int index; |
| 105 | unsigned int unused[3]; |
| 106 | unsigned int data; |
| 107 | }; |
| 108 | |
| 109 | static __attribute_const__ struct io_apic __iomem *io_apic_base(int idx) |
| 110 | { |
| 111 | return (void __iomem *) __fix_to_virt(FIX_IO_APIC_BASE_0 + idx) |
| 112 | + (mp_ioapics[idx].mpc_apicaddr & ~PAGE_MASK); |
| 113 | } |
| 114 | |
| 115 | static inline unsigned int io_apic_read(unsigned int apic, unsigned int reg) |
| 116 | { |
| 117 | struct io_apic __iomem *io_apic = io_apic_base(apic); |
| 118 | writel(reg, &io_apic->index); |
| 119 | return readl(&io_apic->data); |
| 120 | } |
| 121 | |
| 122 | static inline void io_apic_write(unsigned int apic, unsigned int reg, unsigned int value) |
| 123 | { |
| 124 | struct io_apic __iomem *io_apic = io_apic_base(apic); |
| 125 | writel(reg, &io_apic->index); |
| 126 | writel(value, &io_apic->data); |
| 127 | } |
| 128 | |
| 129 | /* |
| 130 | * Re-write a value: to be used for read-modify-write |
| 131 | * cycles where the read already set up the index register. |
| 132 | * |
| 133 | * Older SiS APIC requires we rewrite the index register |
| 134 | */ |
| 135 | static inline void io_apic_modify(unsigned int apic, unsigned int reg, unsigned int value) |
| 136 | { |
Al Viro | cb46898 | 2007-02-09 16:39:25 +0000 | [diff] [blame] | 137 | volatile struct io_apic __iomem *io_apic = io_apic_base(apic); |
Linus Torvalds | 130fe05 | 2006-11-01 09:11:00 -0800 | [diff] [blame] | 138 | if (sis_apic_bug) |
| 139 | writel(reg, &io_apic->index); |
| 140 | writel(value, &io_apic->data); |
| 141 | } |
| 142 | |
Andi Kleen | cf4c6a2 | 2006-09-26 10:52:30 +0200 | [diff] [blame] | 143 | union entry_union { |
| 144 | struct { u32 w1, w2; }; |
| 145 | struct IO_APIC_route_entry entry; |
| 146 | }; |
| 147 | |
| 148 | static struct IO_APIC_route_entry ioapic_read_entry(int apic, int pin) |
| 149 | { |
| 150 | union entry_union eu; |
| 151 | unsigned long flags; |
| 152 | spin_lock_irqsave(&ioapic_lock, flags); |
| 153 | eu.w1 = io_apic_read(apic, 0x10 + 2 * pin); |
| 154 | eu.w2 = io_apic_read(apic, 0x11 + 2 * pin); |
| 155 | spin_unlock_irqrestore(&ioapic_lock, flags); |
| 156 | return eu.entry; |
| 157 | } |
| 158 | |
Linus Torvalds | f9dadfa | 2006-11-01 10:05:35 -0800 | [diff] [blame] | 159 | /* |
| 160 | * When we write a new IO APIC routing entry, we need to write the high |
| 161 | * word first! If the mask bit in the low word is clear, we will enable |
| 162 | * the interrupt, and we need to make sure the entry is fully populated |
| 163 | * before that happens. |
| 164 | */ |
Andi Kleen | d15512f | 2006-12-07 02:14:07 +0100 | [diff] [blame] | 165 | static void |
| 166 | __ioapic_write_entry(int apic, int pin, struct IO_APIC_route_entry e) |
| 167 | { |
| 168 | union entry_union eu; |
| 169 | eu.entry = e; |
| 170 | io_apic_write(apic, 0x11 + 2*pin, eu.w2); |
| 171 | io_apic_write(apic, 0x10 + 2*pin, eu.w1); |
| 172 | } |
| 173 | |
Andi Kleen | cf4c6a2 | 2006-09-26 10:52:30 +0200 | [diff] [blame] | 174 | static void ioapic_write_entry(int apic, int pin, struct IO_APIC_route_entry e) |
| 175 | { |
| 176 | unsigned long flags; |
Andi Kleen | cf4c6a2 | 2006-09-26 10:52:30 +0200 | [diff] [blame] | 177 | spin_lock_irqsave(&ioapic_lock, flags); |
Andi Kleen | d15512f | 2006-12-07 02:14:07 +0100 | [diff] [blame] | 178 | __ioapic_write_entry(apic, pin, e); |
Linus Torvalds | f9dadfa | 2006-11-01 10:05:35 -0800 | [diff] [blame] | 179 | spin_unlock_irqrestore(&ioapic_lock, flags); |
| 180 | } |
| 181 | |
| 182 | /* |
| 183 | * When we mask an IO APIC routing entry, we need to write the low |
| 184 | * word first, in order to set the mask bit before we change the |
| 185 | * high bits! |
| 186 | */ |
| 187 | static void ioapic_mask_entry(int apic, int pin) |
| 188 | { |
| 189 | unsigned long flags; |
| 190 | union entry_union eu = { .entry.mask = 1 }; |
| 191 | |
| 192 | spin_lock_irqsave(&ioapic_lock, flags); |
Andi Kleen | cf4c6a2 | 2006-09-26 10:52:30 +0200 | [diff] [blame] | 193 | io_apic_write(apic, 0x10 + 2*pin, eu.w1); |
| 194 | io_apic_write(apic, 0x11 + 2*pin, eu.w2); |
| 195 | spin_unlock_irqrestore(&ioapic_lock, flags); |
| 196 | } |
| 197 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 198 | /* |
| 199 | * The common case is 1:1 IRQ<->pin mappings. Sometimes there are |
| 200 | * shared ISA-space IRQs, so we have to support them. We are super |
| 201 | * fast in the common case, and fast for shared ISA-space IRQs. |
| 202 | */ |
| 203 | static void add_pin_to_irq(unsigned int irq, int apic, int pin) |
| 204 | { |
| 205 | static int first_free_entry = NR_IRQS; |
| 206 | struct irq_pin_list *entry = irq_2_pin + irq; |
| 207 | |
| 208 | while (entry->next) |
| 209 | entry = irq_2_pin + entry->next; |
| 210 | |
| 211 | if (entry->pin != -1) { |
| 212 | entry->next = first_free_entry; |
| 213 | entry = irq_2_pin + entry->next; |
| 214 | if (++first_free_entry >= PIN_MAP_SIZE) |
| 215 | panic("io_apic.c: whoops"); |
| 216 | } |
| 217 | entry->apic = apic; |
| 218 | entry->pin = pin; |
| 219 | } |
| 220 | |
| 221 | /* |
| 222 | * Reroute an IRQ to a different pin. |
| 223 | */ |
| 224 | static void __init replace_pin_at_irq(unsigned int irq, |
| 225 | int oldapic, int oldpin, |
| 226 | int newapic, int newpin) |
| 227 | { |
| 228 | struct irq_pin_list *entry = irq_2_pin + irq; |
| 229 | |
| 230 | while (1) { |
| 231 | if (entry->apic == oldapic && entry->pin == oldpin) { |
| 232 | entry->apic = newapic; |
| 233 | entry->pin = newpin; |
| 234 | } |
| 235 | if (!entry->next) |
| 236 | break; |
| 237 | entry = irq_2_pin + entry->next; |
| 238 | } |
| 239 | } |
| 240 | |
| 241 | static void __modify_IO_APIC_irq (unsigned int irq, unsigned long enable, unsigned long disable) |
| 242 | { |
| 243 | struct irq_pin_list *entry = irq_2_pin + irq; |
| 244 | unsigned int pin, reg; |
| 245 | |
| 246 | for (;;) { |
| 247 | pin = entry->pin; |
| 248 | if (pin == -1) |
| 249 | break; |
| 250 | reg = io_apic_read(entry->apic, 0x10 + pin*2); |
| 251 | reg &= ~disable; |
| 252 | reg |= enable; |
| 253 | io_apic_modify(entry->apic, 0x10 + pin*2, reg); |
| 254 | if (!entry->next) |
| 255 | break; |
| 256 | entry = irq_2_pin + entry->next; |
| 257 | } |
| 258 | } |
| 259 | |
| 260 | /* mask = 1 */ |
| 261 | static void __mask_IO_APIC_irq (unsigned int irq) |
| 262 | { |
| 263 | __modify_IO_APIC_irq(irq, 0x00010000, 0); |
| 264 | } |
| 265 | |
| 266 | /* mask = 0 */ |
| 267 | static void __unmask_IO_APIC_irq (unsigned int irq) |
| 268 | { |
| 269 | __modify_IO_APIC_irq(irq, 0, 0x00010000); |
| 270 | } |
| 271 | |
| 272 | /* mask = 1, trigger = 0 */ |
| 273 | static void __mask_and_edge_IO_APIC_irq (unsigned int irq) |
| 274 | { |
| 275 | __modify_IO_APIC_irq(irq, 0x00010000, 0x00008000); |
| 276 | } |
| 277 | |
| 278 | /* mask = 0, trigger = 1 */ |
| 279 | static void __unmask_and_level_IO_APIC_irq (unsigned int irq) |
| 280 | { |
| 281 | __modify_IO_APIC_irq(irq, 0x00008000, 0x00010000); |
| 282 | } |
| 283 | |
| 284 | static void mask_IO_APIC_irq (unsigned int irq) |
| 285 | { |
| 286 | unsigned long flags; |
| 287 | |
| 288 | spin_lock_irqsave(&ioapic_lock, flags); |
| 289 | __mask_IO_APIC_irq(irq); |
| 290 | spin_unlock_irqrestore(&ioapic_lock, flags); |
| 291 | } |
| 292 | |
| 293 | static void unmask_IO_APIC_irq (unsigned int irq) |
| 294 | { |
| 295 | unsigned long flags; |
| 296 | |
| 297 | spin_lock_irqsave(&ioapic_lock, flags); |
| 298 | __unmask_IO_APIC_irq(irq); |
| 299 | spin_unlock_irqrestore(&ioapic_lock, flags); |
| 300 | } |
| 301 | |
| 302 | static void clear_IO_APIC_pin(unsigned int apic, unsigned int pin) |
| 303 | { |
| 304 | struct IO_APIC_route_entry entry; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 305 | |
| 306 | /* 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] | 307 | entry = ioapic_read_entry(apic, pin); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 308 | if (entry.delivery_mode == dest_SMI) |
| 309 | return; |
| 310 | |
| 311 | /* |
| 312 | * Disable it in the IO-APIC irq-routing table: |
| 313 | */ |
Linus Torvalds | f9dadfa | 2006-11-01 10:05:35 -0800 | [diff] [blame] | 314 | ioapic_mask_entry(apic, pin); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 315 | } |
| 316 | |
| 317 | static void clear_IO_APIC (void) |
| 318 | { |
| 319 | int apic, pin; |
| 320 | |
| 321 | for (apic = 0; apic < nr_ioapics; apic++) |
| 322 | for (pin = 0; pin < nr_ioapic_registers[apic]; pin++) |
| 323 | clear_IO_APIC_pin(apic, pin); |
| 324 | } |
| 325 | |
Ashok Raj | 54d5d42 | 2005-09-06 15:16:15 -0700 | [diff] [blame] | 326 | #ifdef CONFIG_SMP |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 327 | static void set_ioapic_affinity_irq(unsigned int irq, cpumask_t cpumask) |
| 328 | { |
| 329 | unsigned long flags; |
| 330 | int pin; |
| 331 | struct irq_pin_list *entry = irq_2_pin + irq; |
| 332 | unsigned int apicid_value; |
Ashok Raj | 54d5d42 | 2005-09-06 15:16:15 -0700 | [diff] [blame] | 333 | cpumask_t tmp; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 334 | |
Ashok Raj | 54d5d42 | 2005-09-06 15:16:15 -0700 | [diff] [blame] | 335 | cpus_and(tmp, cpumask, cpu_online_map); |
| 336 | if (cpus_empty(tmp)) |
| 337 | tmp = TARGET_CPUS; |
| 338 | |
| 339 | cpus_and(cpumask, tmp, CPU_MASK_ALL); |
| 340 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 341 | apicid_value = cpu_mask_to_apicid(cpumask); |
| 342 | /* Prepare to do the io_apic_write */ |
| 343 | apicid_value = apicid_value << 24; |
| 344 | spin_lock_irqsave(&ioapic_lock, flags); |
| 345 | for (;;) { |
| 346 | pin = entry->pin; |
| 347 | if (pin == -1) |
| 348 | break; |
| 349 | io_apic_write(entry->apic, 0x10 + 1 + pin*2, apicid_value); |
| 350 | if (!entry->next) |
| 351 | break; |
| 352 | entry = irq_2_pin + entry->next; |
| 353 | } |
Eric W. Biederman | 9f0a5ba | 2007-02-23 04:13:55 -0700 | [diff] [blame] | 354 | irq_desc[irq].affinity = cpumask; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 355 | spin_unlock_irqrestore(&ioapic_lock, flags); |
| 356 | } |
| 357 | |
| 358 | #if defined(CONFIG_IRQBALANCE) |
| 359 | # include <asm/processor.h> /* kernel_thread() */ |
| 360 | # include <linux/kernel_stat.h> /* kstat */ |
| 361 | # include <linux/slab.h> /* kmalloc() */ |
Julia Lawall | 1d16b53 | 2008-01-30 13:32:19 +0100 | [diff] [blame] | 362 | # include <linux/timer.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 363 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 364 | #define IRQBALANCE_CHECK_ARCH -999 |
Zhang Yanmin | 1b61b91 | 2006-06-23 02:04:22 -0700 | [diff] [blame] | 365 | #define MAX_BALANCED_IRQ_INTERVAL (5*HZ) |
| 366 | #define MIN_BALANCED_IRQ_INTERVAL (HZ/2) |
| 367 | #define BALANCED_IRQ_MORE_DELTA (HZ/10) |
| 368 | #define BALANCED_IRQ_LESS_DELTA (HZ) |
| 369 | |
| 370 | static int irqbalance_disabled __read_mostly = IRQBALANCE_CHECK_ARCH; |
| 371 | static int physical_balance __read_mostly; |
| 372 | static long balanced_irq_interval __read_mostly = MAX_BALANCED_IRQ_INTERVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 373 | |
| 374 | static struct irq_cpu_info { |
| 375 | unsigned long * last_irq; |
| 376 | unsigned long * irq_delta; |
| 377 | unsigned long irq; |
| 378 | } irq_cpu_data[NR_CPUS]; |
| 379 | |
| 380 | #define CPU_IRQ(cpu) (irq_cpu_data[cpu].irq) |
| 381 | #define LAST_CPU_IRQ(cpu,irq) (irq_cpu_data[cpu].last_irq[irq]) |
| 382 | #define IRQ_DELTA(cpu,irq) (irq_cpu_data[cpu].irq_delta[irq]) |
| 383 | |
| 384 | #define IDLE_ENOUGH(cpu,now) \ |
| 385 | (idle_cpu(cpu) && ((now) - per_cpu(irq_stat, (cpu)).idle_timestamp > 1)) |
| 386 | |
| 387 | #define IRQ_ALLOWED(cpu, allowed_mask) cpu_isset(cpu, allowed_mask) |
| 388 | |
Mike Travis | d5a7430 | 2007-10-16 01:24:05 -0700 | [diff] [blame] | 389 | #define CPU_TO_PACKAGEINDEX(i) (first_cpu(per_cpu(cpu_sibling_map, i))) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 390 | |
Zhang Yanmin | 1b61b91 | 2006-06-23 02:04:22 -0700 | [diff] [blame] | 391 | static cpumask_t balance_irq_affinity[NR_IRQS] = { |
| 392 | [0 ... NR_IRQS-1] = CPU_MASK_ALL |
| 393 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 394 | |
Zhang Yanmin | 1b61b91 | 2006-06-23 02:04:22 -0700 | [diff] [blame] | 395 | void set_balance_irq_affinity(unsigned int irq, cpumask_t mask) |
| 396 | { |
| 397 | balance_irq_affinity[irq] = mask; |
| 398 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 399 | |
| 400 | static unsigned long move(int curr_cpu, cpumask_t allowed_mask, |
| 401 | unsigned long now, int direction) |
| 402 | { |
| 403 | int search_idle = 1; |
| 404 | int cpu = curr_cpu; |
| 405 | |
| 406 | goto inside; |
| 407 | |
| 408 | do { |
| 409 | if (unlikely(cpu == curr_cpu)) |
| 410 | search_idle = 0; |
| 411 | inside: |
| 412 | if (direction == 1) { |
| 413 | cpu++; |
| 414 | if (cpu >= NR_CPUS) |
| 415 | cpu = 0; |
| 416 | } else { |
| 417 | cpu--; |
| 418 | if (cpu == -1) |
| 419 | cpu = NR_CPUS-1; |
| 420 | } |
| 421 | } while (!cpu_online(cpu) || !IRQ_ALLOWED(cpu,allowed_mask) || |
| 422 | (search_idle && !IDLE_ENOUGH(cpu,now))); |
| 423 | |
| 424 | return cpu; |
| 425 | } |
| 426 | |
| 427 | static inline void balance_irq(int cpu, int irq) |
| 428 | { |
| 429 | unsigned long now = jiffies; |
| 430 | cpumask_t allowed_mask; |
| 431 | unsigned int new_cpu; |
| 432 | |
| 433 | if (irqbalance_disabled) |
| 434 | return; |
| 435 | |
Zhang Yanmin | 1b61b91 | 2006-06-23 02:04:22 -0700 | [diff] [blame] | 436 | cpus_and(allowed_mask, cpu_online_map, balance_irq_affinity[irq]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 437 | new_cpu = move(cpu, allowed_mask, now, 1); |
| 438 | if (cpu != new_cpu) { |
Ashok Raj | 54d5d42 | 2005-09-06 15:16:15 -0700 | [diff] [blame] | 439 | set_pending_irq(irq, cpumask_of_cpu(new_cpu)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 440 | } |
| 441 | } |
| 442 | |
| 443 | static inline void rotate_irqs_among_cpus(unsigned long useful_load_threshold) |
| 444 | { |
| 445 | int i, j; |
Stefan Richter | edc2cbf | 2007-07-21 17:11:40 +0200 | [diff] [blame] | 446 | |
Andrew Morton | 394e390 | 2006-03-23 03:01:05 -0800 | [diff] [blame] | 447 | for_each_online_cpu(i) { |
| 448 | for (j = 0; j < NR_IRQS; j++) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 449 | if (!irq_desc[j].action) |
| 450 | continue; |
| 451 | /* Is it a significant load ? */ |
| 452 | if (IRQ_DELTA(CPU_TO_PACKAGEINDEX(i),j) < |
| 453 | useful_load_threshold) |
| 454 | continue; |
| 455 | balance_irq(i, j); |
| 456 | } |
| 457 | } |
| 458 | balanced_irq_interval = max((long)MIN_BALANCED_IRQ_INTERVAL, |
| 459 | balanced_irq_interval - BALANCED_IRQ_LESS_DELTA); |
| 460 | return; |
| 461 | } |
| 462 | |
| 463 | static void do_irq_balance(void) |
| 464 | { |
| 465 | int i, j; |
| 466 | unsigned long max_cpu_irq = 0, min_cpu_irq = (~0); |
| 467 | unsigned long move_this_load = 0; |
| 468 | int max_loaded = 0, min_loaded = 0; |
| 469 | int load; |
| 470 | unsigned long useful_load_threshold = balanced_irq_interval + 10; |
| 471 | int selected_irq; |
| 472 | int tmp_loaded, first_attempt = 1; |
| 473 | unsigned long tmp_cpu_irq; |
| 474 | unsigned long imbalance = 0; |
| 475 | cpumask_t allowed_mask, target_cpu_mask, tmp; |
| 476 | |
KAMEZAWA Hiroyuki | c8912599 | 2006-03-28 01:56:39 -0800 | [diff] [blame] | 477 | for_each_possible_cpu(i) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 478 | int package_index; |
| 479 | CPU_IRQ(i) = 0; |
| 480 | if (!cpu_online(i)) |
| 481 | continue; |
| 482 | package_index = CPU_TO_PACKAGEINDEX(i); |
| 483 | for (j = 0; j < NR_IRQS; j++) { |
| 484 | unsigned long value_now, delta; |
Thomas Gleixner | 950f442 | 2007-02-16 01:27:24 -0800 | [diff] [blame] | 485 | /* Is this an active IRQ or balancing disabled ? */ |
| 486 | if (!irq_desc[j].action || irq_balancing_disabled(j)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 487 | continue; |
| 488 | if ( package_index == i ) |
| 489 | IRQ_DELTA(package_index,j) = 0; |
| 490 | /* Determine the total count per processor per IRQ */ |
| 491 | value_now = (unsigned long) kstat_cpu(i).irqs[j]; |
| 492 | |
| 493 | /* Determine the activity per processor per IRQ */ |
| 494 | delta = value_now - LAST_CPU_IRQ(i,j); |
| 495 | |
| 496 | /* Update last_cpu_irq[][] for the next time */ |
| 497 | LAST_CPU_IRQ(i,j) = value_now; |
| 498 | |
| 499 | /* Ignore IRQs whose rate is less than the clock */ |
| 500 | if (delta < useful_load_threshold) |
| 501 | continue; |
| 502 | /* update the load for the processor or package total */ |
| 503 | IRQ_DELTA(package_index,j) += delta; |
| 504 | |
| 505 | /* Keep track of the higher numbered sibling as well */ |
| 506 | if (i != package_index) |
| 507 | CPU_IRQ(i) += delta; |
| 508 | /* |
| 509 | * We have sibling A and sibling B in the package |
| 510 | * |
| 511 | * cpu_irq[A] = load for cpu A + load for cpu B |
| 512 | * cpu_irq[B] = load for cpu B |
| 513 | */ |
| 514 | CPU_IRQ(package_index) += delta; |
| 515 | } |
| 516 | } |
| 517 | /* Find the least loaded processor package */ |
Andrew Morton | 394e390 | 2006-03-23 03:01:05 -0800 | [diff] [blame] | 518 | for_each_online_cpu(i) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 519 | if (i != CPU_TO_PACKAGEINDEX(i)) |
| 520 | continue; |
| 521 | if (min_cpu_irq > CPU_IRQ(i)) { |
| 522 | min_cpu_irq = CPU_IRQ(i); |
| 523 | min_loaded = i; |
| 524 | } |
| 525 | } |
| 526 | max_cpu_irq = ULONG_MAX; |
| 527 | |
| 528 | tryanothercpu: |
| 529 | /* Look for heaviest loaded processor. |
| 530 | * We may come back to get the next heaviest loaded processor. |
| 531 | * Skip processors with trivial loads. |
| 532 | */ |
| 533 | tmp_cpu_irq = 0; |
| 534 | tmp_loaded = -1; |
Andrew Morton | 394e390 | 2006-03-23 03:01:05 -0800 | [diff] [blame] | 535 | for_each_online_cpu(i) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 536 | if (i != CPU_TO_PACKAGEINDEX(i)) |
| 537 | continue; |
| 538 | if (max_cpu_irq <= CPU_IRQ(i)) |
| 539 | continue; |
| 540 | if (tmp_cpu_irq < CPU_IRQ(i)) { |
| 541 | tmp_cpu_irq = CPU_IRQ(i); |
| 542 | tmp_loaded = i; |
| 543 | } |
| 544 | } |
| 545 | |
| 546 | if (tmp_loaded == -1) { |
| 547 | /* In the case of small number of heavy interrupt sources, |
| 548 | * loading some of the cpus too much. We use Ingo's original |
| 549 | * approach to rotate them around. |
| 550 | */ |
| 551 | if (!first_attempt && imbalance >= useful_load_threshold) { |
| 552 | rotate_irqs_among_cpus(useful_load_threshold); |
| 553 | return; |
| 554 | } |
| 555 | goto not_worth_the_effort; |
| 556 | } |
| 557 | |
| 558 | first_attempt = 0; /* heaviest search */ |
| 559 | max_cpu_irq = tmp_cpu_irq; /* load */ |
| 560 | max_loaded = tmp_loaded; /* processor */ |
| 561 | imbalance = (max_cpu_irq - min_cpu_irq) / 2; |
| 562 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 563 | /* if imbalance is less than approx 10% of max load, then |
| 564 | * observe diminishing returns action. - quit |
| 565 | */ |
Stefan Richter | edc2cbf | 2007-07-21 17:11:40 +0200 | [diff] [blame] | 566 | if (imbalance < (max_cpu_irq >> 3)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 567 | goto not_worth_the_effort; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 568 | |
| 569 | tryanotherirq: |
| 570 | /* if we select an IRQ to move that can't go where we want, then |
| 571 | * see if there is another one to try. |
| 572 | */ |
| 573 | move_this_load = 0; |
| 574 | selected_irq = -1; |
| 575 | for (j = 0; j < NR_IRQS; j++) { |
| 576 | /* Is this an active IRQ? */ |
| 577 | if (!irq_desc[j].action) |
| 578 | continue; |
| 579 | if (imbalance <= IRQ_DELTA(max_loaded,j)) |
| 580 | continue; |
| 581 | /* Try to find the IRQ that is closest to the imbalance |
| 582 | * without going over. |
| 583 | */ |
| 584 | if (move_this_load < IRQ_DELTA(max_loaded,j)) { |
| 585 | move_this_load = IRQ_DELTA(max_loaded,j); |
| 586 | selected_irq = j; |
| 587 | } |
| 588 | } |
| 589 | if (selected_irq == -1) { |
| 590 | goto tryanothercpu; |
| 591 | } |
| 592 | |
| 593 | imbalance = move_this_load; |
| 594 | |
Simon Arlott | 27b46d7 | 2007-10-20 01:13:56 +0200 | [diff] [blame] | 595 | /* For physical_balance case, we accumulated both load |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 596 | * values in the one of the siblings cpu_irq[], |
| 597 | * to use the same code for physical and logical processors |
| 598 | * as much as possible. |
| 599 | * |
| 600 | * NOTE: the cpu_irq[] array holds the sum of the load for |
| 601 | * sibling A and sibling B in the slot for the lowest numbered |
| 602 | * sibling (A), _AND_ the load for sibling B in the slot for |
| 603 | * the higher numbered sibling. |
| 604 | * |
| 605 | * We seek the least loaded sibling by making the comparison |
| 606 | * (A+B)/2 vs B |
| 607 | */ |
| 608 | load = CPU_IRQ(min_loaded) >> 1; |
Mike Travis | d5a7430 | 2007-10-16 01:24:05 -0700 | [diff] [blame] | 609 | for_each_cpu_mask(j, per_cpu(cpu_sibling_map, min_loaded)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 610 | if (load > CPU_IRQ(j)) { |
| 611 | /* This won't change cpu_sibling_map[min_loaded] */ |
| 612 | load = CPU_IRQ(j); |
| 613 | min_loaded = j; |
| 614 | } |
| 615 | } |
| 616 | |
Zhang Yanmin | 1b61b91 | 2006-06-23 02:04:22 -0700 | [diff] [blame] | 617 | cpus_and(allowed_mask, |
| 618 | cpu_online_map, |
| 619 | balance_irq_affinity[selected_irq]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 620 | target_cpu_mask = cpumask_of_cpu(min_loaded); |
| 621 | cpus_and(tmp, target_cpu_mask, allowed_mask); |
| 622 | |
| 623 | if (!cpus_empty(tmp)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 624 | /* mark for change destination */ |
Ashok Raj | 54d5d42 | 2005-09-06 15:16:15 -0700 | [diff] [blame] | 625 | set_pending_irq(selected_irq, cpumask_of_cpu(min_loaded)); |
| 626 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 627 | /* Since we made a change, come back sooner to |
| 628 | * check for more variation. |
| 629 | */ |
| 630 | balanced_irq_interval = max((long)MIN_BALANCED_IRQ_INTERVAL, |
| 631 | balanced_irq_interval - BALANCED_IRQ_LESS_DELTA); |
| 632 | return; |
| 633 | } |
| 634 | goto tryanotherirq; |
| 635 | |
| 636 | not_worth_the_effort: |
| 637 | /* |
| 638 | * if we did not find an IRQ to move, then adjust the time interval |
| 639 | * upward |
| 640 | */ |
| 641 | balanced_irq_interval = min((long)MAX_BALANCED_IRQ_INTERVAL, |
| 642 | balanced_irq_interval + BALANCED_IRQ_MORE_DELTA); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 643 | return; |
| 644 | } |
| 645 | |
| 646 | static int balanced_irq(void *unused) |
| 647 | { |
| 648 | int i; |
| 649 | unsigned long prev_balance_time = jiffies; |
| 650 | long time_remaining = balanced_irq_interval; |
| 651 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 652 | /* push everything to CPU 0 to give us a starting point. */ |
| 653 | for (i = 0 ; i < NR_IRQS ; i++) { |
Ingo Molnar | cd916d3 | 2006-06-29 02:24:42 -0700 | [diff] [blame] | 654 | irq_desc[i].pending_mask = cpumask_of_cpu(0); |
Ashok Raj | 54d5d42 | 2005-09-06 15:16:15 -0700 | [diff] [blame] | 655 | set_pending_irq(i, cpumask_of_cpu(0)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 656 | } |
| 657 | |
Rafael J. Wysocki | 8314418 | 2007-07-17 04:03:35 -0700 | [diff] [blame] | 658 | set_freezable(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 659 | for ( ; ; ) { |
Nishanth Aravamudan | 52e6e63 | 2005-09-10 00:27:26 -0700 | [diff] [blame] | 660 | time_remaining = schedule_timeout_interruptible(time_remaining); |
Christoph Lameter | 3e1d1d2 | 2005-06-24 23:13:50 -0700 | [diff] [blame] | 661 | try_to_freeze(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 662 | if (time_after(jiffies, |
| 663 | prev_balance_time+balanced_irq_interval)) { |
Zwane Mwaikambo | f370513 | 2005-06-25 14:54:50 -0700 | [diff] [blame] | 664 | preempt_disable(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 665 | do_irq_balance(); |
| 666 | prev_balance_time = jiffies; |
| 667 | time_remaining = balanced_irq_interval; |
Zwane Mwaikambo | f370513 | 2005-06-25 14:54:50 -0700 | [diff] [blame] | 668 | preempt_enable(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 669 | } |
| 670 | } |
| 671 | return 0; |
| 672 | } |
| 673 | |
| 674 | static int __init balanced_irq_init(void) |
| 675 | { |
| 676 | int i; |
| 677 | struct cpuinfo_x86 *c; |
| 678 | cpumask_t tmp; |
| 679 | |
| 680 | cpus_shift_right(tmp, cpu_online_map, 2); |
| 681 | c = &boot_cpu_data; |
| 682 | /* When not overwritten by the command line ask subarchitecture. */ |
| 683 | if (irqbalance_disabled == IRQBALANCE_CHECK_ARCH) |
| 684 | irqbalance_disabled = NO_BALANCE_IRQ; |
| 685 | if (irqbalance_disabled) |
| 686 | return 0; |
| 687 | |
| 688 | /* disable irqbalance completely if there is only one processor online */ |
| 689 | if (num_online_cpus() < 2) { |
| 690 | irqbalance_disabled = 1; |
| 691 | return 0; |
| 692 | } |
| 693 | /* |
| 694 | * Enable physical balance only if more than 1 physical processor |
| 695 | * is present |
| 696 | */ |
| 697 | if (smp_num_siblings > 1 && !cpus_empty(tmp)) |
| 698 | physical_balance = 1; |
| 699 | |
Andrew Morton | 394e390 | 2006-03-23 03:01:05 -0800 | [diff] [blame] | 700 | for_each_online_cpu(i) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 701 | irq_cpu_data[i].irq_delta = kmalloc(sizeof(unsigned long) * NR_IRQS, GFP_KERNEL); |
| 702 | irq_cpu_data[i].last_irq = kmalloc(sizeof(unsigned long) * NR_IRQS, GFP_KERNEL); |
| 703 | if (irq_cpu_data[i].irq_delta == NULL || irq_cpu_data[i].last_irq == NULL) { |
| 704 | printk(KERN_ERR "balanced_irq_init: out of memory"); |
| 705 | goto failed; |
| 706 | } |
| 707 | memset(irq_cpu_data[i].irq_delta,0,sizeof(unsigned long) * NR_IRQS); |
| 708 | memset(irq_cpu_data[i].last_irq,0,sizeof(unsigned long) * NR_IRQS); |
| 709 | } |
| 710 | |
| 711 | printk(KERN_INFO "Starting balanced_irq\n"); |
Eric W. Biederman | f26d6a2 | 2007-05-02 19:27:19 +0200 | [diff] [blame] | 712 | if (!IS_ERR(kthread_run(balanced_irq, NULL, "kirqd"))) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 713 | return 0; |
Eric W. Biederman | f26d6a2 | 2007-05-02 19:27:19 +0200 | [diff] [blame] | 714 | printk(KERN_ERR "balanced_irq_init: failed to spawn balanced_irq"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 715 | failed: |
KAMEZAWA Hiroyuki | c8912599 | 2006-03-28 01:56:39 -0800 | [diff] [blame] | 716 | for_each_possible_cpu(i) { |
Jesper Juhl | 4ae6673 | 2005-06-25 14:58:48 -0700 | [diff] [blame] | 717 | kfree(irq_cpu_data[i].irq_delta); |
Andrew Morton | 394e390 | 2006-03-23 03:01:05 -0800 | [diff] [blame] | 718 | irq_cpu_data[i].irq_delta = NULL; |
Jesper Juhl | 4ae6673 | 2005-06-25 14:58:48 -0700 | [diff] [blame] | 719 | kfree(irq_cpu_data[i].last_irq); |
Andrew Morton | 394e390 | 2006-03-23 03:01:05 -0800 | [diff] [blame] | 720 | irq_cpu_data[i].last_irq = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 721 | } |
| 722 | return 0; |
| 723 | } |
| 724 | |
Andrew Morton | c2481cc | 2007-04-08 16:04:04 -0700 | [diff] [blame] | 725 | int __devinit irqbalance_disable(char *str) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 726 | { |
| 727 | irqbalance_disabled = 1; |
OGAWA Hirofumi | 9b41046 | 2006-03-31 02:30:33 -0800 | [diff] [blame] | 728 | return 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 729 | } |
| 730 | |
| 731 | __setup("noirqbalance", irqbalance_disable); |
| 732 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 733 | late_initcall(balanced_irq_init); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 734 | #endif /* CONFIG_IRQBALANCE */ |
Ashok Raj | 54d5d42 | 2005-09-06 15:16:15 -0700 | [diff] [blame] | 735 | #endif /* CONFIG_SMP */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 736 | |
| 737 | #ifndef CONFIG_SMP |
Harvey Harrison | 75604d7 | 2008-01-30 13:31:17 +0100 | [diff] [blame] | 738 | void send_IPI_self(int vector) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 739 | { |
| 740 | unsigned int cfg; |
| 741 | |
| 742 | /* |
| 743 | * Wait for idle. |
| 744 | */ |
| 745 | apic_wait_icr_idle(); |
| 746 | cfg = APIC_DM_FIXED | APIC_DEST_SELF | vector | APIC_DEST_LOGICAL; |
| 747 | /* |
| 748 | * Send the IPI. The write to APIC_ICR fires this off. |
| 749 | */ |
| 750 | apic_write_around(APIC_ICR, cfg); |
| 751 | } |
| 752 | #endif /* !CONFIG_SMP */ |
| 753 | |
| 754 | |
| 755 | /* |
| 756 | * support for broken MP BIOSs, enables hand-redirection of PIRQ0-7 to |
| 757 | * specific CPU-side IRQs. |
| 758 | */ |
| 759 | |
| 760 | #define MAX_PIRQS 8 |
| 761 | static int pirq_entries [MAX_PIRQS]; |
| 762 | static int pirqs_enabled; |
| 763 | int skip_ioapic_setup; |
| 764 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 765 | static int __init ioapic_pirq_setup(char *str) |
| 766 | { |
| 767 | int i, max; |
| 768 | int ints[MAX_PIRQS+1]; |
| 769 | |
| 770 | get_options(str, ARRAY_SIZE(ints), ints); |
| 771 | |
| 772 | for (i = 0; i < MAX_PIRQS; i++) |
| 773 | pirq_entries[i] = -1; |
| 774 | |
| 775 | pirqs_enabled = 1; |
| 776 | apic_printk(APIC_VERBOSE, KERN_INFO |
| 777 | "PIRQ redirection, working around broken MP-BIOS.\n"); |
| 778 | max = MAX_PIRQS; |
| 779 | if (ints[0] < MAX_PIRQS) |
| 780 | max = ints[0]; |
| 781 | |
| 782 | for (i = 0; i < max; i++) { |
| 783 | apic_printk(APIC_VERBOSE, KERN_DEBUG |
| 784 | "... PIRQ%d -> IRQ %d\n", i, ints[i+1]); |
| 785 | /* |
| 786 | * PIRQs are mapped upside down, usually. |
| 787 | */ |
| 788 | pirq_entries[MAX_PIRQS-i-1] = ints[i+1]; |
| 789 | } |
| 790 | return 1; |
| 791 | } |
| 792 | |
| 793 | __setup("pirq=", ioapic_pirq_setup); |
| 794 | |
| 795 | /* |
| 796 | * Find the IRQ entry number of a certain pin. |
| 797 | */ |
| 798 | static int find_irq_entry(int apic, int pin, int type) |
| 799 | { |
| 800 | int i; |
| 801 | |
| 802 | for (i = 0; i < mp_irq_entries; i++) |
| 803 | if (mp_irqs[i].mpc_irqtype == type && |
| 804 | (mp_irqs[i].mpc_dstapic == mp_ioapics[apic].mpc_apicid || |
| 805 | mp_irqs[i].mpc_dstapic == MP_APIC_ALL) && |
| 806 | mp_irqs[i].mpc_dstirq == pin) |
| 807 | return i; |
| 808 | |
| 809 | return -1; |
| 810 | } |
| 811 | |
| 812 | /* |
| 813 | * Find the pin to which IRQ[irq] (ISA) is connected |
| 814 | */ |
Eric W. Biederman | fcfd636 | 2005-10-30 14:59:39 -0800 | [diff] [blame] | 815 | static int __init find_isa_irq_pin(int irq, int type) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 816 | { |
| 817 | int i; |
| 818 | |
| 819 | for (i = 0; i < mp_irq_entries; i++) { |
| 820 | int lbus = mp_irqs[i].mpc_srcbus; |
| 821 | |
Alexey Starikovskiy | d27e2b8 | 2008-03-20 14:54:18 +0300 | [diff] [blame] | 822 | if (test_bit(lbus, mp_bus_not_pci) && |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 823 | (mp_irqs[i].mpc_irqtype == type) && |
| 824 | (mp_irqs[i].mpc_srcbusirq == irq)) |
| 825 | |
| 826 | return mp_irqs[i].mpc_dstirq; |
| 827 | } |
| 828 | return -1; |
| 829 | } |
| 830 | |
Eric W. Biederman | fcfd636 | 2005-10-30 14:59:39 -0800 | [diff] [blame] | 831 | static int __init find_isa_irq_apic(int irq, int type) |
| 832 | { |
| 833 | int i; |
| 834 | |
| 835 | for (i = 0; i < mp_irq_entries; i++) { |
| 836 | int lbus = mp_irqs[i].mpc_srcbus; |
| 837 | |
Alexey Starikovskiy | 73b2961 | 2008-03-20 14:54:24 +0300 | [diff] [blame] | 838 | if (test_bit(lbus, mp_bus_not_pci) && |
Eric W. Biederman | fcfd636 | 2005-10-30 14:59:39 -0800 | [diff] [blame] | 839 | (mp_irqs[i].mpc_irqtype == type) && |
| 840 | (mp_irqs[i].mpc_srcbusirq == irq)) |
| 841 | break; |
| 842 | } |
| 843 | if (i < mp_irq_entries) { |
| 844 | int apic; |
| 845 | for(apic = 0; apic < nr_ioapics; apic++) { |
| 846 | if (mp_ioapics[apic].mpc_apicid == mp_irqs[i].mpc_dstapic) |
| 847 | return apic; |
| 848 | } |
| 849 | } |
| 850 | |
| 851 | return -1; |
| 852 | } |
| 853 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 854 | /* |
| 855 | * Find a specific PCI IRQ entry. |
| 856 | * Not an __init, possibly needed by modules |
| 857 | */ |
| 858 | static int pin_2_irq(int idx, int apic, int pin); |
| 859 | |
| 860 | int IO_APIC_get_PCI_irq_vector(int bus, int slot, int pin) |
| 861 | { |
| 862 | int apic, i, best_guess = -1; |
| 863 | |
| 864 | apic_printk(APIC_DEBUG, "querying PCI -> IRQ mapping bus:%d, " |
| 865 | "slot:%d, pin:%d.\n", bus, slot, pin); |
| 866 | if (mp_bus_id_to_pci_bus[bus] == -1) { |
| 867 | printk(KERN_WARNING "PCI BIOS passed nonexistent PCI bus %d!\n", bus); |
| 868 | return -1; |
| 869 | } |
| 870 | for (i = 0; i < mp_irq_entries; i++) { |
| 871 | int lbus = mp_irqs[i].mpc_srcbus; |
| 872 | |
| 873 | for (apic = 0; apic < nr_ioapics; apic++) |
| 874 | if (mp_ioapics[apic].mpc_apicid == mp_irqs[i].mpc_dstapic || |
| 875 | mp_irqs[i].mpc_dstapic == MP_APIC_ALL) |
| 876 | break; |
| 877 | |
Alexey Starikovskiy | 47cab82 | 2008-03-20 14:54:30 +0300 | [diff] [blame] | 878 | if (!test_bit(lbus, mp_bus_not_pci) && |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 879 | !mp_irqs[i].mpc_irqtype && |
| 880 | (bus == lbus) && |
| 881 | (slot == ((mp_irqs[i].mpc_srcbusirq >> 2) & 0x1f))) { |
| 882 | int irq = pin_2_irq(i,apic,mp_irqs[i].mpc_dstirq); |
| 883 | |
| 884 | if (!(apic || IO_APIC_IRQ(irq))) |
| 885 | continue; |
| 886 | |
| 887 | if (pin == (mp_irqs[i].mpc_srcbusirq & 3)) |
| 888 | return irq; |
| 889 | /* |
| 890 | * Use the first all-but-pin matching entry as a |
| 891 | * best-guess fuzzy result for broken mptables. |
| 892 | */ |
| 893 | if (best_guess < 0) |
| 894 | best_guess = irq; |
| 895 | } |
| 896 | } |
| 897 | return best_guess; |
| 898 | } |
Alexey Dobriyan | 129f694 | 2005-06-23 00:08:33 -0700 | [diff] [blame] | 899 | EXPORT_SYMBOL(IO_APIC_get_PCI_irq_vector); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 900 | |
| 901 | /* |
| 902 | * This function currently is only a helper for the i386 smp boot process where |
| 903 | * we need to reprogram the ioredtbls to cater for the cpus which have come online |
| 904 | * so mask in all cases should simply be TARGET_CPUS |
| 905 | */ |
Ashok Raj | 54d5d42 | 2005-09-06 15:16:15 -0700 | [diff] [blame] | 906 | #ifdef CONFIG_SMP |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 907 | void __init setup_ioapic_dest(void) |
| 908 | { |
| 909 | int pin, ioapic, irq, irq_entry; |
| 910 | |
| 911 | if (skip_ioapic_setup == 1) |
| 912 | return; |
| 913 | |
| 914 | for (ioapic = 0; ioapic < nr_ioapics; ioapic++) { |
| 915 | for (pin = 0; pin < nr_ioapic_registers[ioapic]; pin++) { |
| 916 | irq_entry = find_irq_entry(ioapic, pin, mp_INT); |
| 917 | if (irq_entry == -1) |
| 918 | continue; |
| 919 | irq = pin_2_irq(irq_entry, ioapic, pin); |
| 920 | set_ioapic_affinity_irq(irq, TARGET_CPUS); |
| 921 | } |
| 922 | |
| 923 | } |
| 924 | } |
Ashok Raj | 54d5d42 | 2005-09-06 15:16:15 -0700 | [diff] [blame] | 925 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 926 | |
Alexey Starikovskiy | c0a282c | 2008-03-20 14:55:02 +0300 | [diff] [blame] | 927 | #if defined(CONFIG_EISA) || defined(CONFIG_MCA) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 928 | /* |
| 929 | * EISA Edge/Level control register, ELCR |
| 930 | */ |
| 931 | static int EISA_ELCR(unsigned int irq) |
| 932 | { |
| 933 | if (irq < 16) { |
| 934 | unsigned int port = 0x4d0 + (irq >> 3); |
| 935 | return (inb(port) >> (irq & 7)) & 1; |
| 936 | } |
| 937 | apic_printk(APIC_VERBOSE, KERN_INFO |
| 938 | "Broken MPtable reports ISA irq %d\n", irq); |
| 939 | return 0; |
| 940 | } |
Alexey Starikovskiy | c0a282c | 2008-03-20 14:55:02 +0300 | [diff] [blame] | 941 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 942 | |
Alexey Starikovskiy | 6728801 | 2008-03-20 14:54:36 +0300 | [diff] [blame] | 943 | /* ISA interrupts are always polarity zero edge triggered, |
| 944 | * when listed as conforming in the MP table. */ |
| 945 | |
| 946 | #define default_ISA_trigger(idx) (0) |
| 947 | #define default_ISA_polarity(idx) (0) |
| 948 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 949 | /* EISA interrupts are always polarity zero and can be edge or level |
| 950 | * trigger depending on the ELCR value. If an interrupt is listed as |
| 951 | * EISA conforming in the MP table, that means its trigger type must |
| 952 | * be read in from the ELCR */ |
| 953 | |
| 954 | #define default_EISA_trigger(idx) (EISA_ELCR(mp_irqs[idx].mpc_srcbusirq)) |
Alexey Starikovskiy | 6728801 | 2008-03-20 14:54:36 +0300 | [diff] [blame] | 955 | #define default_EISA_polarity(idx) default_ISA_polarity(idx) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 956 | |
| 957 | /* PCI interrupts are always polarity one level triggered, |
| 958 | * when listed as conforming in the MP table. */ |
| 959 | |
| 960 | #define default_PCI_trigger(idx) (1) |
| 961 | #define default_PCI_polarity(idx) (1) |
| 962 | |
| 963 | /* MCA interrupts are always polarity zero level triggered, |
| 964 | * when listed as conforming in the MP table. */ |
| 965 | |
| 966 | #define default_MCA_trigger(idx) (1) |
Alexey Starikovskiy | 6728801 | 2008-03-20 14:54:36 +0300 | [diff] [blame] | 967 | #define default_MCA_polarity(idx) default_ISA_polarity(idx) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 968 | |
Shaohua Li | 61fd47e | 2007-11-17 01:05:28 -0500 | [diff] [blame] | 969 | static int MPBIOS_polarity(int idx) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 970 | { |
| 971 | int bus = mp_irqs[idx].mpc_srcbus; |
| 972 | int polarity; |
| 973 | |
| 974 | /* |
| 975 | * Determine IRQ line polarity (high active or low active): |
| 976 | */ |
| 977 | switch (mp_irqs[idx].mpc_irqflag & 3) |
| 978 | { |
| 979 | case 0: /* conforms, ie. bus-type dependent polarity */ |
| 980 | { |
Alexey Starikovskiy | 6728801 | 2008-03-20 14:54:36 +0300 | [diff] [blame] | 981 | polarity = test_bit(bus, mp_bus_not_pci)? |
| 982 | default_ISA_polarity(idx): |
| 983 | default_PCI_polarity(idx); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 984 | break; |
| 985 | } |
| 986 | case 1: /* high active */ |
| 987 | { |
| 988 | polarity = 0; |
| 989 | break; |
| 990 | } |
| 991 | case 2: /* reserved */ |
| 992 | { |
| 993 | printk(KERN_WARNING "broken BIOS!!\n"); |
| 994 | polarity = 1; |
| 995 | break; |
| 996 | } |
| 997 | case 3: /* low active */ |
| 998 | { |
| 999 | polarity = 1; |
| 1000 | break; |
| 1001 | } |
| 1002 | default: /* invalid */ |
| 1003 | { |
| 1004 | printk(KERN_WARNING "broken BIOS!!\n"); |
| 1005 | polarity = 1; |
| 1006 | break; |
| 1007 | } |
| 1008 | } |
| 1009 | return polarity; |
| 1010 | } |
| 1011 | |
| 1012 | static int MPBIOS_trigger(int idx) |
| 1013 | { |
| 1014 | int bus = mp_irqs[idx].mpc_srcbus; |
| 1015 | int trigger; |
| 1016 | |
| 1017 | /* |
| 1018 | * Determine IRQ trigger mode (edge or level sensitive): |
| 1019 | */ |
| 1020 | switch ((mp_irqs[idx].mpc_irqflag>>2) & 3) |
| 1021 | { |
| 1022 | case 0: /* conforms, ie. bus-type dependent */ |
| 1023 | { |
Alexey Starikovskiy | 9c0076c | 2008-03-20 14:54:43 +0300 | [diff] [blame] | 1024 | trigger = test_bit(bus, mp_bus_not_pci)? |
| 1025 | default_ISA_trigger(idx): |
| 1026 | default_PCI_trigger(idx); |
Alexey Starikovskiy | c0a282c | 2008-03-20 14:55:02 +0300 | [diff] [blame] | 1027 | #if defined(CONFIG_EISA) || defined(CONFIG_MCA) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1028 | switch (mp_bus_id_to_type[bus]) |
| 1029 | { |
| 1030 | case MP_BUS_ISA: /* ISA pin */ |
| 1031 | { |
Alexey Starikovskiy | 9c0076c | 2008-03-20 14:54:43 +0300 | [diff] [blame] | 1032 | /* set before the switch */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1033 | break; |
| 1034 | } |
| 1035 | case MP_BUS_EISA: /* EISA pin */ |
| 1036 | { |
| 1037 | trigger = default_EISA_trigger(idx); |
| 1038 | break; |
| 1039 | } |
| 1040 | case MP_BUS_PCI: /* PCI pin */ |
| 1041 | { |
Alexey Starikovskiy | 9c0076c | 2008-03-20 14:54:43 +0300 | [diff] [blame] | 1042 | /* set before the switch */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1043 | break; |
| 1044 | } |
| 1045 | case MP_BUS_MCA: /* MCA pin */ |
| 1046 | { |
| 1047 | trigger = default_MCA_trigger(idx); |
| 1048 | break; |
| 1049 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1050 | default: |
| 1051 | { |
| 1052 | printk(KERN_WARNING "broken BIOS!!\n"); |
| 1053 | trigger = 1; |
| 1054 | break; |
| 1055 | } |
| 1056 | } |
Alexey Starikovskiy | c0a282c | 2008-03-20 14:55:02 +0300 | [diff] [blame] | 1057 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1058 | break; |
| 1059 | } |
| 1060 | case 1: /* edge */ |
| 1061 | { |
| 1062 | trigger = 0; |
| 1063 | break; |
| 1064 | } |
| 1065 | case 2: /* reserved */ |
| 1066 | { |
| 1067 | printk(KERN_WARNING "broken BIOS!!\n"); |
| 1068 | trigger = 1; |
| 1069 | break; |
| 1070 | } |
| 1071 | case 3: /* level */ |
| 1072 | { |
| 1073 | trigger = 1; |
| 1074 | break; |
| 1075 | } |
| 1076 | default: /* invalid */ |
| 1077 | { |
| 1078 | printk(KERN_WARNING "broken BIOS!!\n"); |
| 1079 | trigger = 0; |
| 1080 | break; |
| 1081 | } |
| 1082 | } |
| 1083 | return trigger; |
| 1084 | } |
| 1085 | |
| 1086 | static inline int irq_polarity(int idx) |
| 1087 | { |
| 1088 | return MPBIOS_polarity(idx); |
| 1089 | } |
| 1090 | |
| 1091 | static inline int irq_trigger(int idx) |
| 1092 | { |
| 1093 | return MPBIOS_trigger(idx); |
| 1094 | } |
| 1095 | |
| 1096 | static int pin_2_irq(int idx, int apic, int pin) |
| 1097 | { |
| 1098 | int irq, i; |
| 1099 | int bus = mp_irqs[idx].mpc_srcbus; |
| 1100 | |
| 1101 | /* |
| 1102 | * Debugging check, we are in big trouble if this message pops up! |
| 1103 | */ |
| 1104 | if (mp_irqs[idx].mpc_dstirq != pin) |
| 1105 | printk(KERN_ERR "broken BIOS or MPTABLE parser, ayiee!!\n"); |
| 1106 | |
Alexey Starikovskiy | 643befe | 2008-03-20 14:54:49 +0300 | [diff] [blame] | 1107 | if (test_bit(bus, mp_bus_not_pci)) |
| 1108 | irq = mp_irqs[idx].mpc_srcbusirq; |
| 1109 | else { |
| 1110 | /* |
| 1111 | * PCI IRQs are mapped in order |
| 1112 | */ |
| 1113 | i = irq = 0; |
| 1114 | while (i < apic) |
| 1115 | irq += nr_ioapic_registers[i++]; |
| 1116 | irq += pin; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1117 | |
Alexey Starikovskiy | 643befe | 2008-03-20 14:54:49 +0300 | [diff] [blame] | 1118 | /* |
| 1119 | * For MPS mode, so far only needed by ES7000 platform |
| 1120 | */ |
| 1121 | if (ioapic_renumber_irq) |
| 1122 | irq = ioapic_renumber_irq(apic, irq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1123 | } |
| 1124 | |
| 1125 | /* |
| 1126 | * PCI IRQ command line redirection. Yes, limits are hardcoded. |
| 1127 | */ |
| 1128 | if ((pin >= 16) && (pin <= 23)) { |
| 1129 | if (pirq_entries[pin-16] != -1) { |
| 1130 | if (!pirq_entries[pin-16]) { |
| 1131 | apic_printk(APIC_VERBOSE, KERN_DEBUG |
| 1132 | "disabling PIRQ%d\n", pin-16); |
| 1133 | } else { |
| 1134 | irq = pirq_entries[pin-16]; |
| 1135 | apic_printk(APIC_VERBOSE, KERN_DEBUG |
| 1136 | "using PIRQ%d -> IRQ %d\n", |
| 1137 | pin-16, irq); |
| 1138 | } |
| 1139 | } |
| 1140 | } |
| 1141 | return irq; |
| 1142 | } |
| 1143 | |
| 1144 | static inline int IO_APIC_irq_trigger(int irq) |
| 1145 | { |
| 1146 | int apic, idx, pin; |
| 1147 | |
| 1148 | for (apic = 0; apic < nr_ioapics; apic++) { |
| 1149 | for (pin = 0; pin < nr_ioapic_registers[apic]; pin++) { |
| 1150 | idx = find_irq_entry(apic,pin,mp_INT); |
| 1151 | if ((idx != -1) && (irq == pin_2_irq(idx,apic,pin))) |
| 1152 | return irq_trigger(idx); |
| 1153 | } |
| 1154 | } |
| 1155 | /* |
| 1156 | * nonexistent IRQs are edge default |
| 1157 | */ |
| 1158 | return 0; |
| 1159 | } |
| 1160 | |
| 1161 | /* irq_vectors is indexed by the sum of all RTEs in all I/O APICs. */ |
Adrian Bunk | 7e95b59 | 2006-12-07 02:14:11 +0100 | [diff] [blame] | 1162 | static u8 irq_vector[NR_IRQ_VECTORS] __read_mostly = { FIRST_DEVICE_VECTOR , 0 }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1163 | |
Eric W. Biederman | ace80ab | 2006-10-04 02:16:47 -0700 | [diff] [blame] | 1164 | static int __assign_irq_vector(int irq) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1165 | { |
Eric W. Biederman | 8339f00 | 2007-01-29 13:19:05 -0700 | [diff] [blame] | 1166 | static int current_vector = FIRST_DEVICE_VECTOR, current_offset = 0; |
Rusty Russell | dbeb2be | 2007-10-19 20:35:03 +0200 | [diff] [blame] | 1167 | int vector, offset; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1168 | |
Eric W. Biederman | ace80ab | 2006-10-04 02:16:47 -0700 | [diff] [blame] | 1169 | BUG_ON((unsigned)irq >= NR_IRQ_VECTORS); |
Jan Beulich | 0a1ad60 | 2006-06-26 13:56:43 +0200 | [diff] [blame] | 1170 | |
Eric W. Biederman | b940d22 | 2006-10-08 07:43:46 -0600 | [diff] [blame] | 1171 | if (irq_vector[irq] > 0) |
| 1172 | return irq_vector[irq]; |
Eric W. Biederman | ace80ab | 2006-10-04 02:16:47 -0700 | [diff] [blame] | 1173 | |
Jan Beulich | 0a1ad60 | 2006-06-26 13:56:43 +0200 | [diff] [blame] | 1174 | vector = current_vector; |
Eric W. Biederman | 8339f00 | 2007-01-29 13:19:05 -0700 | [diff] [blame] | 1175 | offset = current_offset; |
| 1176 | next: |
| 1177 | vector += 8; |
| 1178 | if (vector >= FIRST_SYSTEM_VECTOR) { |
| 1179 | offset = (offset + 1) % 8; |
| 1180 | vector = FIRST_DEVICE_VECTOR + offset; |
| 1181 | } |
| 1182 | if (vector == current_vector) |
| 1183 | return -ENOSPC; |
Rusty Russell | dbeb2be | 2007-10-19 20:35:03 +0200 | [diff] [blame] | 1184 | if (test_and_set_bit(vector, used_vectors)) |
Eric W. Biederman | 8339f00 | 2007-01-29 13:19:05 -0700 | [diff] [blame] | 1185 | goto next; |
Eric W. Biederman | 8339f00 | 2007-01-29 13:19:05 -0700 | [diff] [blame] | 1186 | |
| 1187 | current_vector = vector; |
| 1188 | current_offset = offset; |
Eric W. Biederman | b940d22 | 2006-10-08 07:43:46 -0600 | [diff] [blame] | 1189 | irq_vector[irq] = vector; |
Jan Beulich | 0a1ad60 | 2006-06-26 13:56:43 +0200 | [diff] [blame] | 1190 | |
| 1191 | return vector; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1192 | } |
| 1193 | |
Eric W. Biederman | ace80ab | 2006-10-04 02:16:47 -0700 | [diff] [blame] | 1194 | static int assign_irq_vector(int irq) |
| 1195 | { |
| 1196 | unsigned long flags; |
| 1197 | int vector; |
| 1198 | |
| 1199 | spin_lock_irqsave(&vector_lock, flags); |
| 1200 | vector = __assign_irq_vector(irq); |
| 1201 | spin_unlock_irqrestore(&vector_lock, flags); |
| 1202 | |
| 1203 | return vector; |
| 1204 | } |
Ingo Molnar | f5b9ed7 | 2006-10-04 02:16:26 -0700 | [diff] [blame] | 1205 | static struct irq_chip ioapic_chip; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1206 | |
| 1207 | #define IOAPIC_AUTO -1 |
| 1208 | #define IOAPIC_EDGE 0 |
| 1209 | #define IOAPIC_LEVEL 1 |
| 1210 | |
Ingo Molnar | d1bef4e | 2006-06-29 02:24:36 -0700 | [diff] [blame] | 1211 | static void ioapic_register_intr(int irq, int vector, unsigned long trigger) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1212 | { |
Jan Beulich | 6ebcc00 | 2006-06-26 13:56:46 +0200 | [diff] [blame] | 1213 | if ((trigger == IOAPIC_AUTO && IO_APIC_irq_trigger(irq)) || |
Thomas Gleixner | cc75b92 | 2007-08-12 15:46:36 +0000 | [diff] [blame] | 1214 | trigger == IOAPIC_LEVEL) { |
| 1215 | irq_desc[irq].status |= IRQ_LEVEL; |
Ingo Molnar | a460e74 | 2006-10-17 00:10:03 -0700 | [diff] [blame] | 1216 | set_irq_chip_and_handler_name(irq, &ioapic_chip, |
| 1217 | handle_fasteoi_irq, "fasteoi"); |
Thomas Gleixner | cc75b92 | 2007-08-12 15:46:36 +0000 | [diff] [blame] | 1218 | } else { |
| 1219 | irq_desc[irq].status &= ~IRQ_LEVEL; |
Ingo Molnar | a460e74 | 2006-10-17 00:10:03 -0700 | [diff] [blame] | 1220 | set_irq_chip_and_handler_name(irq, &ioapic_chip, |
| 1221 | handle_edge_irq, "edge"); |
Thomas Gleixner | cc75b92 | 2007-08-12 15:46:36 +0000 | [diff] [blame] | 1222 | } |
Eric W. Biederman | ace80ab | 2006-10-04 02:16:47 -0700 | [diff] [blame] | 1223 | set_intr_gate(vector, interrupt[irq]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1224 | } |
| 1225 | |
| 1226 | static void __init setup_IO_APIC_irqs(void) |
| 1227 | { |
| 1228 | struct IO_APIC_route_entry entry; |
| 1229 | int apic, pin, idx, irq, first_notcon = 1, vector; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1230 | |
| 1231 | apic_printk(APIC_VERBOSE, KERN_DEBUG "init IO_APIC IRQs\n"); |
| 1232 | |
| 1233 | for (apic = 0; apic < nr_ioapics; apic++) { |
| 1234 | for (pin = 0; pin < nr_ioapic_registers[apic]; pin++) { |
| 1235 | |
| 1236 | /* |
| 1237 | * add it to the IO-APIC irq-routing table: |
| 1238 | */ |
| 1239 | memset(&entry,0,sizeof(entry)); |
| 1240 | |
| 1241 | entry.delivery_mode = INT_DELIVERY_MODE; |
| 1242 | entry.dest_mode = INT_DEST_MODE; |
| 1243 | entry.mask = 0; /* enable IRQ */ |
| 1244 | entry.dest.logical.logical_dest = |
| 1245 | cpu_mask_to_apicid(TARGET_CPUS); |
| 1246 | |
| 1247 | idx = find_irq_entry(apic,pin,mp_INT); |
| 1248 | if (idx == -1) { |
| 1249 | if (first_notcon) { |
| 1250 | apic_printk(APIC_VERBOSE, KERN_DEBUG |
| 1251 | " IO-APIC (apicid-pin) %d-%d", |
| 1252 | mp_ioapics[apic].mpc_apicid, |
| 1253 | pin); |
| 1254 | first_notcon = 0; |
| 1255 | } else |
| 1256 | apic_printk(APIC_VERBOSE, ", %d-%d", |
| 1257 | mp_ioapics[apic].mpc_apicid, pin); |
| 1258 | continue; |
| 1259 | } |
| 1260 | |
Yinghai Lu | 20d225b | 2007-10-17 18:04:41 +0200 | [diff] [blame] | 1261 | if (!first_notcon) { |
| 1262 | apic_printk(APIC_VERBOSE, " not connected.\n"); |
| 1263 | first_notcon = 1; |
| 1264 | } |
| 1265 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1266 | entry.trigger = irq_trigger(idx); |
| 1267 | entry.polarity = irq_polarity(idx); |
| 1268 | |
| 1269 | if (irq_trigger(idx)) { |
| 1270 | entry.trigger = 1; |
| 1271 | entry.mask = 1; |
| 1272 | } |
| 1273 | |
| 1274 | irq = pin_2_irq(idx, apic, pin); |
| 1275 | /* |
| 1276 | * skip adding the timer int on secondary nodes, which causes |
| 1277 | * a small but painful rift in the time-space continuum |
| 1278 | */ |
| 1279 | if (multi_timer_check(apic, irq)) |
| 1280 | continue; |
| 1281 | else |
| 1282 | add_pin_to_irq(irq, apic, pin); |
| 1283 | |
| 1284 | if (!apic && !IO_APIC_IRQ(irq)) |
| 1285 | continue; |
| 1286 | |
| 1287 | if (IO_APIC_IRQ(irq)) { |
| 1288 | vector = assign_irq_vector(irq); |
| 1289 | entry.vector = vector; |
| 1290 | ioapic_register_intr(irq, vector, IOAPIC_AUTO); |
| 1291 | |
| 1292 | if (!apic && (irq < 16)) |
| 1293 | disable_8259A_irq(irq); |
| 1294 | } |
Akinobu Mita | a2249cb | 2008-04-05 22:39:05 +0900 | [diff] [blame] | 1295 | ioapic_write_entry(apic, pin, entry); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1296 | } |
| 1297 | } |
| 1298 | |
| 1299 | if (!first_notcon) |
| 1300 | apic_printk(APIC_VERBOSE, " not connected.\n"); |
| 1301 | } |
| 1302 | |
| 1303 | /* |
| 1304 | * Set up the 8259A-master output pin: |
| 1305 | */ |
Eric W. Biederman | fcfd636 | 2005-10-30 14:59:39 -0800 | [diff] [blame] | 1306 | static void __init setup_ExtINT_IRQ0_pin(unsigned int apic, unsigned int pin, int vector) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1307 | { |
| 1308 | struct IO_APIC_route_entry entry; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1309 | |
| 1310 | memset(&entry,0,sizeof(entry)); |
| 1311 | |
| 1312 | disable_8259A_irq(0); |
| 1313 | |
| 1314 | /* mask LVT0 */ |
| 1315 | apic_write_around(APIC_LVT0, APIC_LVT_MASKED | APIC_DM_EXTINT); |
| 1316 | |
| 1317 | /* |
| 1318 | * We use logical delivery to get the timer IRQ |
| 1319 | * to the first CPU. |
| 1320 | */ |
| 1321 | entry.dest_mode = INT_DEST_MODE; |
| 1322 | entry.mask = 0; /* unmask IRQ now */ |
| 1323 | entry.dest.logical.logical_dest = cpu_mask_to_apicid(TARGET_CPUS); |
| 1324 | entry.delivery_mode = INT_DELIVERY_MODE; |
| 1325 | entry.polarity = 0; |
| 1326 | entry.trigger = 0; |
| 1327 | entry.vector = vector; |
| 1328 | |
| 1329 | /* |
| 1330 | * The timer IRQ doesn't have to know that behind the |
| 1331 | * scene we have a 8259A-master in AEOI mode ... |
| 1332 | */ |
Ingo Molnar | f5b9ed7 | 2006-10-04 02:16:26 -0700 | [diff] [blame] | 1333 | irq_desc[0].chip = &ioapic_chip; |
| 1334 | set_irq_handler(0, handle_edge_irq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1335 | |
| 1336 | /* |
| 1337 | * Add it to the IO-APIC irq-routing table: |
| 1338 | */ |
Andi Kleen | cf4c6a2 | 2006-09-26 10:52:30 +0200 | [diff] [blame] | 1339 | ioapic_write_entry(apic, pin, entry); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1340 | |
| 1341 | enable_8259A_irq(0); |
| 1342 | } |
| 1343 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1344 | void __init print_IO_APIC(void) |
| 1345 | { |
| 1346 | int apic, i; |
| 1347 | union IO_APIC_reg_00 reg_00; |
| 1348 | union IO_APIC_reg_01 reg_01; |
| 1349 | union IO_APIC_reg_02 reg_02; |
| 1350 | union IO_APIC_reg_03 reg_03; |
| 1351 | unsigned long flags; |
| 1352 | |
| 1353 | if (apic_verbosity == APIC_QUIET) |
| 1354 | return; |
| 1355 | |
| 1356 | printk(KERN_DEBUG "number of MP IRQ sources: %d.\n", mp_irq_entries); |
| 1357 | for (i = 0; i < nr_ioapics; i++) |
| 1358 | printk(KERN_DEBUG "number of IO-APIC #%d registers: %d.\n", |
| 1359 | mp_ioapics[i].mpc_apicid, nr_ioapic_registers[i]); |
| 1360 | |
| 1361 | /* |
| 1362 | * We are a bit conservative about what we expect. We have to |
| 1363 | * know about every hardware change ASAP. |
| 1364 | */ |
| 1365 | printk(KERN_INFO "testing the IO APIC.......................\n"); |
| 1366 | |
| 1367 | for (apic = 0; apic < nr_ioapics; apic++) { |
| 1368 | |
| 1369 | spin_lock_irqsave(&ioapic_lock, flags); |
| 1370 | reg_00.raw = io_apic_read(apic, 0); |
| 1371 | reg_01.raw = io_apic_read(apic, 1); |
| 1372 | if (reg_01.bits.version >= 0x10) |
| 1373 | reg_02.raw = io_apic_read(apic, 2); |
| 1374 | if (reg_01.bits.version >= 0x20) |
| 1375 | reg_03.raw = io_apic_read(apic, 3); |
| 1376 | spin_unlock_irqrestore(&ioapic_lock, flags); |
| 1377 | |
| 1378 | printk(KERN_DEBUG "IO APIC #%d......\n", mp_ioapics[apic].mpc_apicid); |
| 1379 | printk(KERN_DEBUG ".... register #00: %08X\n", reg_00.raw); |
| 1380 | printk(KERN_DEBUG "....... : physical APIC id: %02X\n", reg_00.bits.ID); |
| 1381 | printk(KERN_DEBUG "....... : Delivery Type: %X\n", reg_00.bits.delivery_type); |
| 1382 | printk(KERN_DEBUG "....... : LTS : %X\n", reg_00.bits.LTS); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1383 | |
| 1384 | printk(KERN_DEBUG ".... register #01: %08X\n", reg_01.raw); |
| 1385 | printk(KERN_DEBUG "....... : max redirection entries: %04X\n", reg_01.bits.entries); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1386 | |
| 1387 | printk(KERN_DEBUG "....... : PRQ implemented: %X\n", reg_01.bits.PRQ); |
| 1388 | printk(KERN_DEBUG "....... : IO APIC version: %04X\n", reg_01.bits.version); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1389 | |
| 1390 | /* |
| 1391 | * Some Intel chipsets with IO APIC VERSION of 0x1? don't have reg_02, |
| 1392 | * but the value of reg_02 is read as the previous read register |
| 1393 | * value, so ignore it if reg_02 == reg_01. |
| 1394 | */ |
| 1395 | if (reg_01.bits.version >= 0x10 && reg_02.raw != reg_01.raw) { |
| 1396 | printk(KERN_DEBUG ".... register #02: %08X\n", reg_02.raw); |
| 1397 | printk(KERN_DEBUG "....... : arbitration: %02X\n", reg_02.bits.arbitration); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1398 | } |
| 1399 | |
| 1400 | /* |
| 1401 | * Some Intel chipsets with IO APIC VERSION of 0x2? don't have reg_02 |
| 1402 | * or reg_03, but the value of reg_0[23] is read as the previous read |
| 1403 | * register value, so ignore it if reg_03 == reg_0[12]. |
| 1404 | */ |
| 1405 | if (reg_01.bits.version >= 0x20 && reg_03.raw != reg_02.raw && |
| 1406 | reg_03.raw != reg_01.raw) { |
| 1407 | printk(KERN_DEBUG ".... register #03: %08X\n", reg_03.raw); |
| 1408 | printk(KERN_DEBUG "....... : Boot DT : %X\n", reg_03.bits.boot_DT); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1409 | } |
| 1410 | |
| 1411 | printk(KERN_DEBUG ".... IRQ redirection table:\n"); |
| 1412 | |
| 1413 | printk(KERN_DEBUG " NR Log Phy Mask Trig IRR Pol" |
| 1414 | " Stat Dest Deli Vect: \n"); |
| 1415 | |
| 1416 | for (i = 0; i <= reg_01.bits.entries; i++) { |
| 1417 | struct IO_APIC_route_entry entry; |
| 1418 | |
Andi Kleen | cf4c6a2 | 2006-09-26 10:52:30 +0200 | [diff] [blame] | 1419 | entry = ioapic_read_entry(apic, i); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1420 | |
| 1421 | printk(KERN_DEBUG " %02x %03X %02X ", |
| 1422 | i, |
| 1423 | entry.dest.logical.logical_dest, |
| 1424 | entry.dest.physical.physical_dest |
| 1425 | ); |
| 1426 | |
| 1427 | printk("%1d %1d %1d %1d %1d %1d %1d %02X\n", |
| 1428 | entry.mask, |
| 1429 | entry.trigger, |
| 1430 | entry.irr, |
| 1431 | entry.polarity, |
| 1432 | entry.delivery_status, |
| 1433 | entry.dest_mode, |
| 1434 | entry.delivery_mode, |
| 1435 | entry.vector |
| 1436 | ); |
| 1437 | } |
| 1438 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1439 | printk(KERN_DEBUG "IRQ to pin mappings:\n"); |
| 1440 | for (i = 0; i < NR_IRQS; i++) { |
| 1441 | struct irq_pin_list *entry = irq_2_pin + i; |
| 1442 | if (entry->pin < 0) |
| 1443 | continue; |
Eric W. Biederman | ace80ab | 2006-10-04 02:16:47 -0700 | [diff] [blame] | 1444 | printk(KERN_DEBUG "IRQ%d ", i); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1445 | for (;;) { |
| 1446 | printk("-> %d:%d", entry->apic, entry->pin); |
| 1447 | if (!entry->next) |
| 1448 | break; |
| 1449 | entry = irq_2_pin + entry->next; |
| 1450 | } |
| 1451 | printk("\n"); |
| 1452 | } |
| 1453 | |
| 1454 | printk(KERN_INFO ".................................... done.\n"); |
| 1455 | |
| 1456 | return; |
| 1457 | } |
| 1458 | |
| 1459 | #if 0 |
| 1460 | |
| 1461 | static void print_APIC_bitfield (int base) |
| 1462 | { |
| 1463 | unsigned int v; |
| 1464 | int i, j; |
| 1465 | |
| 1466 | if (apic_verbosity == APIC_QUIET) |
| 1467 | return; |
| 1468 | |
| 1469 | printk(KERN_DEBUG "0123456789abcdef0123456789abcdef\n" KERN_DEBUG); |
| 1470 | for (i = 0; i < 8; i++) { |
| 1471 | v = apic_read(base + i*0x10); |
| 1472 | for (j = 0; j < 32; j++) { |
| 1473 | if (v & (1<<j)) |
| 1474 | printk("1"); |
| 1475 | else |
| 1476 | printk("0"); |
| 1477 | } |
| 1478 | printk("\n"); |
| 1479 | } |
| 1480 | } |
| 1481 | |
| 1482 | void /*__init*/ print_local_APIC(void * dummy) |
| 1483 | { |
| 1484 | unsigned int v, ver, maxlvt; |
| 1485 | |
| 1486 | if (apic_verbosity == APIC_QUIET) |
| 1487 | return; |
| 1488 | |
| 1489 | printk("\n" KERN_DEBUG "printing local APIC contents on CPU#%d/%d:\n", |
| 1490 | smp_processor_id(), hard_smp_processor_id()); |
Jack Steiner | 05f2d12 | 2008-03-28 14:12:02 -0500 | [diff] [blame] | 1491 | printk(KERN_INFO "... APIC ID: %08x (%01x)\n", v, |
| 1492 | GET_APIC_ID(read_apic_id())); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1493 | v = apic_read(APIC_LVR); |
| 1494 | printk(KERN_INFO "... APIC VERSION: %08x\n", v); |
| 1495 | ver = GET_APIC_VERSION(v); |
Thomas Gleixner | e05d723 | 2007-02-16 01:27:58 -0800 | [diff] [blame] | 1496 | maxlvt = lapic_get_maxlvt(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1497 | |
| 1498 | v = apic_read(APIC_TASKPRI); |
| 1499 | printk(KERN_DEBUG "... APIC TASKPRI: %08x (%02x)\n", v, v & APIC_TPRI_MASK); |
| 1500 | |
| 1501 | if (APIC_INTEGRATED(ver)) { /* !82489DX */ |
| 1502 | v = apic_read(APIC_ARBPRI); |
| 1503 | printk(KERN_DEBUG "... APIC ARBPRI: %08x (%02x)\n", v, |
| 1504 | v & APIC_ARBPRI_MASK); |
| 1505 | v = apic_read(APIC_PROCPRI); |
| 1506 | printk(KERN_DEBUG "... APIC PROCPRI: %08x\n", v); |
| 1507 | } |
| 1508 | |
| 1509 | v = apic_read(APIC_EOI); |
| 1510 | printk(KERN_DEBUG "... APIC EOI: %08x\n", v); |
| 1511 | v = apic_read(APIC_RRR); |
| 1512 | printk(KERN_DEBUG "... APIC RRR: %08x\n", v); |
| 1513 | v = apic_read(APIC_LDR); |
| 1514 | printk(KERN_DEBUG "... APIC LDR: %08x\n", v); |
| 1515 | v = apic_read(APIC_DFR); |
| 1516 | printk(KERN_DEBUG "... APIC DFR: %08x\n", v); |
| 1517 | v = apic_read(APIC_SPIV); |
| 1518 | printk(KERN_DEBUG "... APIC SPIV: %08x\n", v); |
| 1519 | |
| 1520 | printk(KERN_DEBUG "... APIC ISR field:\n"); |
| 1521 | print_APIC_bitfield(APIC_ISR); |
| 1522 | printk(KERN_DEBUG "... APIC TMR field:\n"); |
| 1523 | print_APIC_bitfield(APIC_TMR); |
| 1524 | printk(KERN_DEBUG "... APIC IRR field:\n"); |
| 1525 | print_APIC_bitfield(APIC_IRR); |
| 1526 | |
| 1527 | if (APIC_INTEGRATED(ver)) { /* !82489DX */ |
| 1528 | if (maxlvt > 3) /* Due to the Pentium erratum 3AP. */ |
| 1529 | apic_write(APIC_ESR, 0); |
| 1530 | v = apic_read(APIC_ESR); |
| 1531 | printk(KERN_DEBUG "... APIC ESR: %08x\n", v); |
| 1532 | } |
| 1533 | |
| 1534 | v = apic_read(APIC_ICR); |
| 1535 | printk(KERN_DEBUG "... APIC ICR: %08x\n", v); |
| 1536 | v = apic_read(APIC_ICR2); |
| 1537 | printk(KERN_DEBUG "... APIC ICR2: %08x\n", v); |
| 1538 | |
| 1539 | v = apic_read(APIC_LVTT); |
| 1540 | printk(KERN_DEBUG "... APIC LVTT: %08x\n", v); |
| 1541 | |
| 1542 | if (maxlvt > 3) { /* PC is LVT#4. */ |
| 1543 | v = apic_read(APIC_LVTPC); |
| 1544 | printk(KERN_DEBUG "... APIC LVTPC: %08x\n", v); |
| 1545 | } |
| 1546 | v = apic_read(APIC_LVT0); |
| 1547 | printk(KERN_DEBUG "... APIC LVT0: %08x\n", v); |
| 1548 | v = apic_read(APIC_LVT1); |
| 1549 | printk(KERN_DEBUG "... APIC LVT1: %08x\n", v); |
| 1550 | |
| 1551 | if (maxlvt > 2) { /* ERR is LVT#3. */ |
| 1552 | v = apic_read(APIC_LVTERR); |
| 1553 | printk(KERN_DEBUG "... APIC LVTERR: %08x\n", v); |
| 1554 | } |
| 1555 | |
| 1556 | v = apic_read(APIC_TMICT); |
| 1557 | printk(KERN_DEBUG "... APIC TMICT: %08x\n", v); |
| 1558 | v = apic_read(APIC_TMCCT); |
| 1559 | printk(KERN_DEBUG "... APIC TMCCT: %08x\n", v); |
| 1560 | v = apic_read(APIC_TDCR); |
| 1561 | printk(KERN_DEBUG "... APIC TDCR: %08x\n", v); |
| 1562 | printk("\n"); |
| 1563 | } |
| 1564 | |
| 1565 | void print_all_local_APICs (void) |
| 1566 | { |
| 1567 | on_each_cpu(print_local_APIC, NULL, 1, 1); |
| 1568 | } |
| 1569 | |
| 1570 | void /*__init*/ print_PIC(void) |
| 1571 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1572 | unsigned int v; |
| 1573 | unsigned long flags; |
| 1574 | |
| 1575 | if (apic_verbosity == APIC_QUIET) |
| 1576 | return; |
| 1577 | |
| 1578 | printk(KERN_DEBUG "\nprinting PIC contents\n"); |
| 1579 | |
| 1580 | spin_lock_irqsave(&i8259A_lock, flags); |
| 1581 | |
| 1582 | v = inb(0xa1) << 8 | inb(0x21); |
| 1583 | printk(KERN_DEBUG "... PIC IMR: %04x\n", v); |
| 1584 | |
| 1585 | v = inb(0xa0) << 8 | inb(0x20); |
| 1586 | printk(KERN_DEBUG "... PIC IRR: %04x\n", v); |
| 1587 | |
| 1588 | outb(0x0b,0xa0); |
| 1589 | outb(0x0b,0x20); |
| 1590 | v = inb(0xa0) << 8 | inb(0x20); |
| 1591 | outb(0x0a,0xa0); |
| 1592 | outb(0x0a,0x20); |
| 1593 | |
| 1594 | spin_unlock_irqrestore(&i8259A_lock, flags); |
| 1595 | |
| 1596 | printk(KERN_DEBUG "... PIC ISR: %04x\n", v); |
| 1597 | |
| 1598 | v = inb(0x4d1) << 8 | inb(0x4d0); |
| 1599 | printk(KERN_DEBUG "... PIC ELCR: %04x\n", v); |
| 1600 | } |
| 1601 | |
| 1602 | #endif /* 0 */ |
| 1603 | |
| 1604 | static void __init enable_IO_APIC(void) |
| 1605 | { |
| 1606 | union IO_APIC_reg_01 reg_01; |
Eric W. Biederman | fcfd636 | 2005-10-30 14:59:39 -0800 | [diff] [blame] | 1607 | int i8259_apic, i8259_pin; |
| 1608 | int i, apic; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1609 | unsigned long flags; |
| 1610 | |
| 1611 | for (i = 0; i < PIN_MAP_SIZE; i++) { |
| 1612 | irq_2_pin[i].pin = -1; |
| 1613 | irq_2_pin[i].next = 0; |
| 1614 | } |
| 1615 | if (!pirqs_enabled) |
| 1616 | for (i = 0; i < MAX_PIRQS; i++) |
| 1617 | pirq_entries[i] = -1; |
| 1618 | |
| 1619 | /* |
| 1620 | * The number of IO-APIC IRQ registers (== #pins): |
| 1621 | */ |
Eric W. Biederman | fcfd636 | 2005-10-30 14:59:39 -0800 | [diff] [blame] | 1622 | for (apic = 0; apic < nr_ioapics; apic++) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1623 | spin_lock_irqsave(&ioapic_lock, flags); |
Eric W. Biederman | fcfd636 | 2005-10-30 14:59:39 -0800 | [diff] [blame] | 1624 | reg_01.raw = io_apic_read(apic, 1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1625 | spin_unlock_irqrestore(&ioapic_lock, flags); |
Eric W. Biederman | fcfd636 | 2005-10-30 14:59:39 -0800 | [diff] [blame] | 1626 | nr_ioapic_registers[apic] = reg_01.bits.entries+1; |
| 1627 | } |
| 1628 | for(apic = 0; apic < nr_ioapics; apic++) { |
| 1629 | int pin; |
| 1630 | /* See if any of the pins is in ExtINT mode */ |
Eric W. Biederman | 1008fdd | 2006-01-11 22:46:06 +0100 | [diff] [blame] | 1631 | for (pin = 0; pin < nr_ioapic_registers[apic]; pin++) { |
Eric W. Biederman | fcfd636 | 2005-10-30 14:59:39 -0800 | [diff] [blame] | 1632 | struct IO_APIC_route_entry entry; |
Andi Kleen | cf4c6a2 | 2006-09-26 10:52:30 +0200 | [diff] [blame] | 1633 | entry = ioapic_read_entry(apic, pin); |
Eric W. Biederman | fcfd636 | 2005-10-30 14:59:39 -0800 | [diff] [blame] | 1634 | |
| 1635 | |
| 1636 | /* If the interrupt line is enabled and in ExtInt mode |
| 1637 | * I have found the pin where the i8259 is connected. |
| 1638 | */ |
| 1639 | if ((entry.mask == 0) && (entry.delivery_mode == dest_ExtINT)) { |
| 1640 | ioapic_i8259.apic = apic; |
| 1641 | ioapic_i8259.pin = pin; |
| 1642 | goto found_i8259; |
| 1643 | } |
| 1644 | } |
| 1645 | } |
| 1646 | found_i8259: |
| 1647 | /* Look to see what if the MP table has reported the ExtINT */ |
| 1648 | /* If we could not find the appropriate pin by looking at the ioapic |
| 1649 | * the i8259 probably is not connected the ioapic but give the |
| 1650 | * mptable a chance anyway. |
| 1651 | */ |
| 1652 | i8259_pin = find_isa_irq_pin(0, mp_ExtINT); |
| 1653 | i8259_apic = find_isa_irq_apic(0, mp_ExtINT); |
| 1654 | /* Trust the MP table if nothing is setup in the hardware */ |
| 1655 | if ((ioapic_i8259.pin == -1) && (i8259_pin >= 0)) { |
| 1656 | printk(KERN_WARNING "ExtINT not setup in hardware but reported by MP table\n"); |
| 1657 | ioapic_i8259.pin = i8259_pin; |
| 1658 | ioapic_i8259.apic = i8259_apic; |
| 1659 | } |
| 1660 | /* Complain if the MP table and the hardware disagree */ |
| 1661 | if (((ioapic_i8259.apic != i8259_apic) || (ioapic_i8259.pin != i8259_pin)) && |
| 1662 | (i8259_pin >= 0) && (ioapic_i8259.pin >= 0)) |
| 1663 | { |
| 1664 | printk(KERN_WARNING "ExtINT in hardware and MP table differ\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1665 | } |
| 1666 | |
| 1667 | /* |
| 1668 | * Do not trust the IO-APIC being empty at bootup |
| 1669 | */ |
| 1670 | clear_IO_APIC(); |
| 1671 | } |
| 1672 | |
| 1673 | /* |
| 1674 | * Not an __init, needed by the reboot code |
| 1675 | */ |
| 1676 | void disable_IO_APIC(void) |
| 1677 | { |
| 1678 | /* |
| 1679 | * Clear the IO-APIC before rebooting: |
| 1680 | */ |
| 1681 | clear_IO_APIC(); |
| 1682 | |
Eric W. Biederman | 650927e | 2005-06-25 14:57:44 -0700 | [diff] [blame] | 1683 | /* |
Karsten Wiese | 0b968d2 | 2005-09-09 12:59:04 +0200 | [diff] [blame] | 1684 | * If the i8259 is routed through an IOAPIC |
Eric W. Biederman | 650927e | 2005-06-25 14:57:44 -0700 | [diff] [blame] | 1685 | * Put that IOAPIC in virtual wire mode |
Karsten Wiese | 0b968d2 | 2005-09-09 12:59:04 +0200 | [diff] [blame] | 1686 | * so legacy interrupts can be delivered. |
Eric W. Biederman | 650927e | 2005-06-25 14:57:44 -0700 | [diff] [blame] | 1687 | */ |
Eric W. Biederman | fcfd636 | 2005-10-30 14:59:39 -0800 | [diff] [blame] | 1688 | if (ioapic_i8259.pin != -1) { |
Eric W. Biederman | 650927e | 2005-06-25 14:57:44 -0700 | [diff] [blame] | 1689 | struct IO_APIC_route_entry entry; |
Eric W. Biederman | 650927e | 2005-06-25 14:57:44 -0700 | [diff] [blame] | 1690 | |
| 1691 | memset(&entry, 0, sizeof(entry)); |
| 1692 | entry.mask = 0; /* Enabled */ |
| 1693 | entry.trigger = 0; /* Edge */ |
| 1694 | entry.irr = 0; |
| 1695 | entry.polarity = 0; /* High */ |
| 1696 | entry.delivery_status = 0; |
| 1697 | entry.dest_mode = 0; /* Physical */ |
Eric W. Biederman | fcfd636 | 2005-10-30 14:59:39 -0800 | [diff] [blame] | 1698 | entry.delivery_mode = dest_ExtINT; /* ExtInt */ |
Eric W. Biederman | 650927e | 2005-06-25 14:57:44 -0700 | [diff] [blame] | 1699 | entry.vector = 0; |
Vivek Goyal | 76865c3 | 2006-01-06 00:12:19 -0800 | [diff] [blame] | 1700 | entry.dest.physical.physical_dest = |
Jack Steiner | 05f2d12 | 2008-03-28 14:12:02 -0500 | [diff] [blame] | 1701 | GET_APIC_ID(read_apic_id()); |
Eric W. Biederman | 650927e | 2005-06-25 14:57:44 -0700 | [diff] [blame] | 1702 | |
| 1703 | /* |
| 1704 | * Add it to the IO-APIC irq-routing table: |
| 1705 | */ |
Andi Kleen | cf4c6a2 | 2006-09-26 10:52:30 +0200 | [diff] [blame] | 1706 | ioapic_write_entry(ioapic_i8259.apic, ioapic_i8259.pin, entry); |
Eric W. Biederman | 650927e | 2005-06-25 14:57:44 -0700 | [diff] [blame] | 1707 | } |
Eric W. Biederman | fcfd636 | 2005-10-30 14:59:39 -0800 | [diff] [blame] | 1708 | disconnect_bsp_APIC(ioapic_i8259.pin != -1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1709 | } |
| 1710 | |
| 1711 | /* |
| 1712 | * function to set the IO-APIC physical IDs based on the |
| 1713 | * values stored in the MPC table. |
| 1714 | * |
| 1715 | * by Matt Domsch <Matt_Domsch@dell.com> Tue Dec 21 12:25:05 CST 1999 |
| 1716 | */ |
| 1717 | |
| 1718 | #ifndef CONFIG_X86_NUMAQ |
| 1719 | static void __init setup_ioapic_ids_from_mpc(void) |
| 1720 | { |
| 1721 | union IO_APIC_reg_00 reg_00; |
| 1722 | physid_mask_t phys_id_present_map; |
| 1723 | int apic; |
| 1724 | int i; |
| 1725 | unsigned char old_id; |
| 1726 | unsigned long flags; |
| 1727 | |
| 1728 | /* |
Natalie Protasevich | ca05fea | 2005-06-23 00:08:22 -0700 | [diff] [blame] | 1729 | * Don't check I/O APIC IDs for xAPIC systems. They have |
| 1730 | * no meaning without the serial APIC bus. |
| 1731 | */ |
Shaohua Li | 7c5c1e4 | 2006-03-23 02:59:53 -0800 | [diff] [blame] | 1732 | if (!(boot_cpu_data.x86_vendor == X86_VENDOR_INTEL) |
| 1733 | || APIC_XAPIC(apic_version[boot_cpu_physical_apicid])) |
Natalie Protasevich | ca05fea | 2005-06-23 00:08:22 -0700 | [diff] [blame] | 1734 | return; |
| 1735 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1736 | * This is broken; anything with a real cpu count has to |
| 1737 | * circumvent this idiocy regardless. |
| 1738 | */ |
| 1739 | phys_id_present_map = ioapic_phys_id_map(phys_cpu_present_map); |
| 1740 | |
| 1741 | /* |
| 1742 | * Set the IOAPIC ID to the value stored in the MPC table. |
| 1743 | */ |
| 1744 | for (apic = 0; apic < nr_ioapics; apic++) { |
| 1745 | |
| 1746 | /* Read the register 0 value */ |
| 1747 | spin_lock_irqsave(&ioapic_lock, flags); |
| 1748 | reg_00.raw = io_apic_read(apic, 0); |
| 1749 | spin_unlock_irqrestore(&ioapic_lock, flags); |
| 1750 | |
| 1751 | old_id = mp_ioapics[apic].mpc_apicid; |
| 1752 | |
| 1753 | if (mp_ioapics[apic].mpc_apicid >= get_physical_broadcast()) { |
| 1754 | printk(KERN_ERR "BIOS bug, IO-APIC#%d ID is %d in the MPC table!...\n", |
| 1755 | apic, mp_ioapics[apic].mpc_apicid); |
| 1756 | printk(KERN_ERR "... fixing up to %d. (tell your hw vendor)\n", |
| 1757 | reg_00.bits.ID); |
| 1758 | mp_ioapics[apic].mpc_apicid = reg_00.bits.ID; |
| 1759 | } |
| 1760 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1761 | /* |
| 1762 | * Sanity check, is the ID really free? Every APIC in a |
| 1763 | * system must have a unique ID or we get lots of nice |
| 1764 | * 'stuck on smp_invalidate_needed IPI wait' messages. |
| 1765 | */ |
| 1766 | if (check_apicid_used(phys_id_present_map, |
| 1767 | mp_ioapics[apic].mpc_apicid)) { |
| 1768 | printk(KERN_ERR "BIOS bug, IO-APIC#%d ID %d is already used!...\n", |
| 1769 | apic, mp_ioapics[apic].mpc_apicid); |
| 1770 | for (i = 0; i < get_physical_broadcast(); i++) |
| 1771 | if (!physid_isset(i, phys_id_present_map)) |
| 1772 | break; |
| 1773 | if (i >= get_physical_broadcast()) |
| 1774 | panic("Max APIC ID exceeded!\n"); |
| 1775 | printk(KERN_ERR "... fixing up to %d. (tell your hw vendor)\n", |
| 1776 | i); |
| 1777 | physid_set(i, phys_id_present_map); |
| 1778 | mp_ioapics[apic].mpc_apicid = i; |
| 1779 | } else { |
| 1780 | physid_mask_t tmp; |
| 1781 | tmp = apicid_to_cpu_present(mp_ioapics[apic].mpc_apicid); |
| 1782 | apic_printk(APIC_VERBOSE, "Setting %d in the " |
| 1783 | "phys_id_present_map\n", |
| 1784 | mp_ioapics[apic].mpc_apicid); |
| 1785 | physids_or(phys_id_present_map, phys_id_present_map, tmp); |
| 1786 | } |
| 1787 | |
| 1788 | |
| 1789 | /* |
| 1790 | * We need to adjust the IRQ routing table |
| 1791 | * if the ID changed. |
| 1792 | */ |
| 1793 | if (old_id != mp_ioapics[apic].mpc_apicid) |
| 1794 | for (i = 0; i < mp_irq_entries; i++) |
| 1795 | if (mp_irqs[i].mpc_dstapic == old_id) |
| 1796 | mp_irqs[i].mpc_dstapic |
| 1797 | = mp_ioapics[apic].mpc_apicid; |
| 1798 | |
| 1799 | /* |
| 1800 | * Read the right value from the MPC table and |
| 1801 | * write it into the ID register. |
| 1802 | */ |
| 1803 | apic_printk(APIC_VERBOSE, KERN_INFO |
| 1804 | "...changing IO-APIC physical APIC ID to %d ...", |
| 1805 | mp_ioapics[apic].mpc_apicid); |
| 1806 | |
| 1807 | reg_00.bits.ID = mp_ioapics[apic].mpc_apicid; |
| 1808 | spin_lock_irqsave(&ioapic_lock, flags); |
| 1809 | io_apic_write(apic, 0, reg_00.raw); |
| 1810 | spin_unlock_irqrestore(&ioapic_lock, flags); |
| 1811 | |
| 1812 | /* |
| 1813 | * Sanity check |
| 1814 | */ |
| 1815 | spin_lock_irqsave(&ioapic_lock, flags); |
| 1816 | reg_00.raw = io_apic_read(apic, 0); |
| 1817 | spin_unlock_irqrestore(&ioapic_lock, flags); |
| 1818 | if (reg_00.bits.ID != mp_ioapics[apic].mpc_apicid) |
| 1819 | printk("could not set ID!\n"); |
| 1820 | else |
| 1821 | apic_printk(APIC_VERBOSE, " ok.\n"); |
| 1822 | } |
| 1823 | } |
| 1824 | #else |
| 1825 | static void __init setup_ioapic_ids_from_mpc(void) { } |
| 1826 | #endif |
| 1827 | |
Zachary Amsden | 7ce0bcf | 2007-02-13 13:26:21 +0100 | [diff] [blame] | 1828 | int no_timer_check __initdata; |
Zachary Amsden | 8542b20 | 2006-12-07 02:14:09 +0100 | [diff] [blame] | 1829 | |
| 1830 | static int __init notimercheck(char *s) |
| 1831 | { |
| 1832 | no_timer_check = 1; |
| 1833 | return 1; |
| 1834 | } |
| 1835 | __setup("no_timer_check", notimercheck); |
| 1836 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1837 | /* |
| 1838 | * There is a nasty bug in some older SMP boards, their mptable lies |
| 1839 | * about the timer IRQ. We do the following to work around the situation: |
| 1840 | * |
| 1841 | * - timer IRQ defaults to IO-APIC IRQ |
| 1842 | * - if this function detects that timer IRQs are defunct, then we fall |
| 1843 | * back to ISA timer IRQs |
| 1844 | */ |
Adrian Bunk | f0a7a5c | 2007-07-21 17:10:29 +0200 | [diff] [blame] | 1845 | static int __init timer_irq_works(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1846 | { |
| 1847 | unsigned long t1 = jiffies; |
Ingo Molnar | 4aae070 | 2007-12-18 18:05:58 +0100 | [diff] [blame] | 1848 | unsigned long flags; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1849 | |
Zachary Amsden | 8542b20 | 2006-12-07 02:14:09 +0100 | [diff] [blame] | 1850 | if (no_timer_check) |
| 1851 | return 1; |
| 1852 | |
Ingo Molnar | 4aae070 | 2007-12-18 18:05:58 +0100 | [diff] [blame] | 1853 | local_save_flags(flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1854 | local_irq_enable(); |
| 1855 | /* Let ten ticks pass... */ |
| 1856 | mdelay((10 * 1000) / HZ); |
Ingo Molnar | 4aae070 | 2007-12-18 18:05:58 +0100 | [diff] [blame] | 1857 | local_irq_restore(flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1858 | |
| 1859 | /* |
| 1860 | * Expect a few ticks at least, to be sure some possible |
| 1861 | * glue logic does not lock up after one or two first |
| 1862 | * ticks in a non-ExtINT mode. Also the local APIC |
| 1863 | * might have cached one ExtINT interrupt. Finally, at |
| 1864 | * least one tick may be lost due to delays. |
| 1865 | */ |
Julia Lawall | 1d16b53 | 2008-01-30 13:32:19 +0100 | [diff] [blame] | 1866 | if (time_after(jiffies, t1 + 4)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1867 | return 1; |
| 1868 | |
| 1869 | return 0; |
| 1870 | } |
| 1871 | |
| 1872 | /* |
| 1873 | * In the SMP+IOAPIC case it might happen that there are an unspecified |
| 1874 | * number of pending IRQ events unhandled. These cases are very rare, |
| 1875 | * so we 'resend' these IRQs via IPIs, to the same CPU. It's much |
| 1876 | * better to do it this way as thus we do not have to be aware of |
| 1877 | * 'pending' interrupts in the IRQ path, except at this point. |
| 1878 | */ |
| 1879 | /* |
| 1880 | * Edge triggered needs to resend any interrupt |
| 1881 | * that was delayed but this is now handled in the device |
| 1882 | * independent code. |
| 1883 | */ |
| 1884 | |
| 1885 | /* |
Ingo Molnar | f5b9ed7 | 2006-10-04 02:16:26 -0700 | [diff] [blame] | 1886 | * Startup quirk: |
| 1887 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1888 | * Starting up a edge-triggered IO-APIC interrupt is |
| 1889 | * nasty - we need to make sure that we get the edge. |
| 1890 | * If it is already asserted for some reason, we need |
| 1891 | * return 1 to indicate that is was pending. |
| 1892 | * |
| 1893 | * This is not complete - we should be able to fake |
| 1894 | * an edge even if it isn't on the 8259A... |
Ingo Molnar | f5b9ed7 | 2006-10-04 02:16:26 -0700 | [diff] [blame] | 1895 | * |
| 1896 | * (We do this for level-triggered IRQs too - it cannot hurt.) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1897 | */ |
Ingo Molnar | f5b9ed7 | 2006-10-04 02:16:26 -0700 | [diff] [blame] | 1898 | static unsigned int startup_ioapic_irq(unsigned int irq) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1899 | { |
| 1900 | int was_pending = 0; |
| 1901 | unsigned long flags; |
| 1902 | |
| 1903 | spin_lock_irqsave(&ioapic_lock, flags); |
| 1904 | if (irq < 16) { |
| 1905 | disable_8259A_irq(irq); |
| 1906 | if (i8259A_irq_pending(irq)) |
| 1907 | was_pending = 1; |
| 1908 | } |
| 1909 | __unmask_IO_APIC_irq(irq); |
| 1910 | spin_unlock_irqrestore(&ioapic_lock, flags); |
| 1911 | |
| 1912 | return was_pending; |
| 1913 | } |
| 1914 | |
Ingo Molnar | f5b9ed7 | 2006-10-04 02:16:26 -0700 | [diff] [blame] | 1915 | static void ack_ioapic_irq(unsigned int irq) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1916 | { |
Eric W. Biederman | ace80ab | 2006-10-04 02:16:47 -0700 | [diff] [blame] | 1917 | move_native_irq(irq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1918 | ack_APIC_irq(); |
| 1919 | } |
| 1920 | |
Ingo Molnar | f5b9ed7 | 2006-10-04 02:16:26 -0700 | [diff] [blame] | 1921 | static void ack_ioapic_quirk_irq(unsigned int irq) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1922 | { |
| 1923 | unsigned long v; |
| 1924 | int i; |
| 1925 | |
Eric W. Biederman | ace80ab | 2006-10-04 02:16:47 -0700 | [diff] [blame] | 1926 | move_native_irq(irq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1927 | /* |
| 1928 | * It appears there is an erratum which affects at least version 0x11 |
| 1929 | * of I/O APIC (that's the 82093AA and cores integrated into various |
| 1930 | * chipsets). Under certain conditions a level-triggered interrupt is |
| 1931 | * erroneously delivered as edge-triggered one but the respective IRR |
| 1932 | * bit gets set nevertheless. As a result the I/O unit expects an EOI |
| 1933 | * message but it will never arrive and further interrupts are blocked |
| 1934 | * from the source. The exact reason is so far unknown, but the |
| 1935 | * phenomenon was observed when two consecutive interrupt requests |
| 1936 | * from a given source get delivered to the same CPU and the source is |
| 1937 | * temporarily disabled in between. |
| 1938 | * |
| 1939 | * A workaround is to simulate an EOI message manually. We achieve it |
| 1940 | * by setting the trigger mode to edge and then to level when the edge |
| 1941 | * trigger mode gets detected in the TMR of a local APIC for a |
| 1942 | * level-triggered interrupt. We mask the source for the time of the |
| 1943 | * operation to prevent an edge-triggered interrupt escaping meanwhile. |
| 1944 | * The idea is from Manfred Spraul. --macro |
| 1945 | */ |
Eric W. Biederman | b940d22 | 2006-10-08 07:43:46 -0600 | [diff] [blame] | 1946 | i = irq_vector[irq]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1947 | |
| 1948 | v = apic_read(APIC_TMR + ((i & ~0x1f) >> 1)); |
| 1949 | |
| 1950 | ack_APIC_irq(); |
| 1951 | |
| 1952 | if (!(v & (1 << (i & 0x1f)))) { |
| 1953 | atomic_inc(&irq_mis_count); |
| 1954 | spin_lock(&ioapic_lock); |
| 1955 | __mask_and_edge_IO_APIC_irq(irq); |
| 1956 | __unmask_and_level_IO_APIC_irq(irq); |
| 1957 | spin_unlock(&ioapic_lock); |
| 1958 | } |
| 1959 | } |
| 1960 | |
Eric W. Biederman | ace80ab | 2006-10-04 02:16:47 -0700 | [diff] [blame] | 1961 | static int ioapic_retrigger_irq(unsigned int irq) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1962 | { |
Eric W. Biederman | b940d22 | 2006-10-08 07:43:46 -0600 | [diff] [blame] | 1963 | send_IPI_self(irq_vector[irq]); |
Ingo Molnar | c0ad90a | 2006-06-29 02:24:44 -0700 | [diff] [blame] | 1964 | |
| 1965 | return 1; |
| 1966 | } |
| 1967 | |
Ingo Molnar | f5b9ed7 | 2006-10-04 02:16:26 -0700 | [diff] [blame] | 1968 | static struct irq_chip ioapic_chip __read_mostly = { |
| 1969 | .name = "IO-APIC", |
Eric W. Biederman | ace80ab | 2006-10-04 02:16:47 -0700 | [diff] [blame] | 1970 | .startup = startup_ioapic_irq, |
| 1971 | .mask = mask_IO_APIC_irq, |
| 1972 | .unmask = unmask_IO_APIC_irq, |
| 1973 | .ack = ack_ioapic_irq, |
| 1974 | .eoi = ack_ioapic_quirk_irq, |
Ashok Raj | 54d5d42 | 2005-09-06 15:16:15 -0700 | [diff] [blame] | 1975 | #ifdef CONFIG_SMP |
Eric W. Biederman | ace80ab | 2006-10-04 02:16:47 -0700 | [diff] [blame] | 1976 | .set_affinity = set_ioapic_affinity_irq, |
Ashok Raj | 54d5d42 | 2005-09-06 15:16:15 -0700 | [diff] [blame] | 1977 | #endif |
Eric W. Biederman | ace80ab | 2006-10-04 02:16:47 -0700 | [diff] [blame] | 1978 | .retrigger = ioapic_retrigger_irq, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1979 | }; |
| 1980 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1981 | |
| 1982 | static inline void init_IO_APIC_traps(void) |
| 1983 | { |
| 1984 | int irq; |
| 1985 | |
| 1986 | /* |
| 1987 | * NOTE! The local APIC isn't very good at handling |
| 1988 | * multiple interrupts at the same interrupt level. |
| 1989 | * As the interrupt level is determined by taking the |
| 1990 | * vector number and shifting that right by 4, we |
| 1991 | * want to spread these out a bit so that they don't |
| 1992 | * all fall in the same interrupt level. |
| 1993 | * |
| 1994 | * Also, we've got to be careful not to trash gate |
| 1995 | * 0x80, because int 0x80 is hm, kind of importantish. ;) |
| 1996 | */ |
| 1997 | for (irq = 0; irq < NR_IRQS ; irq++) { |
Akinobu Mita | addfc66 | 2008-04-05 22:39:07 +0900 | [diff] [blame] | 1998 | if (IO_APIC_IRQ(irq) && !irq_vector[irq]) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1999 | /* |
| 2000 | * Hmm.. We don't have an entry for this, |
| 2001 | * so default to an old-fashioned 8259 |
| 2002 | * interrupt if we can.. |
| 2003 | */ |
| 2004 | if (irq < 16) |
| 2005 | make_8259A_irq(irq); |
| 2006 | else |
| 2007 | /* Strange. Oh, well.. */ |
Ingo Molnar | f5b9ed7 | 2006-10-04 02:16:26 -0700 | [diff] [blame] | 2008 | irq_desc[irq].chip = &no_irq_chip; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2009 | } |
| 2010 | } |
| 2011 | } |
| 2012 | |
Ingo Molnar | f5b9ed7 | 2006-10-04 02:16:26 -0700 | [diff] [blame] | 2013 | /* |
| 2014 | * The local APIC irq-chip implementation: |
| 2015 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2016 | |
Ingo Molnar | f5b9ed7 | 2006-10-04 02:16:26 -0700 | [diff] [blame] | 2017 | static void ack_apic(unsigned int irq) |
| 2018 | { |
| 2019 | ack_APIC_irq(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2020 | } |
| 2021 | |
Ingo Molnar | f5b9ed7 | 2006-10-04 02:16:26 -0700 | [diff] [blame] | 2022 | static void mask_lapic_irq (unsigned int irq) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2023 | { |
| 2024 | unsigned long v; |
| 2025 | |
| 2026 | v = apic_read(APIC_LVT0); |
| 2027 | apic_write_around(APIC_LVT0, v | APIC_LVT_MASKED); |
| 2028 | } |
| 2029 | |
Ingo Molnar | f5b9ed7 | 2006-10-04 02:16:26 -0700 | [diff] [blame] | 2030 | static void unmask_lapic_irq (unsigned int irq) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2031 | { |
Ingo Molnar | f5b9ed7 | 2006-10-04 02:16:26 -0700 | [diff] [blame] | 2032 | unsigned long v; |
| 2033 | |
| 2034 | v = apic_read(APIC_LVT0); |
| 2035 | apic_write_around(APIC_LVT0, v & ~APIC_LVT_MASKED); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2036 | } |
| 2037 | |
Ingo Molnar | f5b9ed7 | 2006-10-04 02:16:26 -0700 | [diff] [blame] | 2038 | static struct irq_chip lapic_chip __read_mostly = { |
| 2039 | .name = "local-APIC-edge", |
| 2040 | .mask = mask_lapic_irq, |
| 2041 | .unmask = unmask_lapic_irq, |
| 2042 | .eoi = ack_apic, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2043 | }; |
| 2044 | |
Jan Beulich | e942710 | 2008-01-30 13:31:24 +0100 | [diff] [blame] | 2045 | static void __init setup_nmi(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2046 | { |
| 2047 | /* |
| 2048 | * Dirty trick to enable the NMI watchdog ... |
| 2049 | * We put the 8259A master into AEOI mode and |
| 2050 | * unmask on all local APICs LVT0 as NMI. |
| 2051 | * |
| 2052 | * The idea to use the 8259A in AEOI mode ('8259A Virtual Wire') |
| 2053 | * is from Maciej W. Rozycki - so we do not have to EOI from |
| 2054 | * the NMI handler or the timer interrupt. |
| 2055 | */ |
| 2056 | apic_printk(APIC_VERBOSE, KERN_INFO "activating NMI Watchdog ..."); |
| 2057 | |
Jan Beulich | e942710 | 2008-01-30 13:31:24 +0100 | [diff] [blame] | 2058 | enable_NMI_through_LVT0(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2059 | |
| 2060 | apic_printk(APIC_VERBOSE, " done.\n"); |
| 2061 | } |
| 2062 | |
| 2063 | /* |
| 2064 | * This looks a bit hackish but it's about the only one way of sending |
| 2065 | * a few INTA cycles to 8259As and any associated glue logic. ICR does |
| 2066 | * not support the ExtINT mode, unfortunately. We need to send these |
| 2067 | * cycles as some i82489DX-based boards have glue logic that keeps the |
| 2068 | * 8259A interrupt line asserted until INTA. --macro |
| 2069 | */ |
Jacek Luczak | 28acf28 | 2008-04-12 17:41:12 +0200 | [diff] [blame] | 2070 | static inline void __init unlock_ExtINT_logic(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2071 | { |
Eric W. Biederman | fcfd636 | 2005-10-30 14:59:39 -0800 | [diff] [blame] | 2072 | int apic, pin, i; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2073 | struct IO_APIC_route_entry entry0, entry1; |
| 2074 | unsigned char save_control, save_freq_select; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2075 | |
Eric W. Biederman | fcfd636 | 2005-10-30 14:59:39 -0800 | [diff] [blame] | 2076 | pin = find_isa_irq_pin(8, mp_INT); |
Adrian Bunk | 956fb53 | 2006-12-07 02:14:11 +0100 | [diff] [blame] | 2077 | if (pin == -1) { |
| 2078 | WARN_ON_ONCE(1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2079 | return; |
Adrian Bunk | 956fb53 | 2006-12-07 02:14:11 +0100 | [diff] [blame] | 2080 | } |
| 2081 | apic = find_isa_irq_apic(8, mp_INT); |
| 2082 | if (apic == -1) { |
| 2083 | WARN_ON_ONCE(1); |
| 2084 | return; |
| 2085 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2086 | |
Andi Kleen | cf4c6a2 | 2006-09-26 10:52:30 +0200 | [diff] [blame] | 2087 | entry0 = ioapic_read_entry(apic, pin); |
Eric W. Biederman | fcfd636 | 2005-10-30 14:59:39 -0800 | [diff] [blame] | 2088 | clear_IO_APIC_pin(apic, pin); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2089 | |
| 2090 | memset(&entry1, 0, sizeof(entry1)); |
| 2091 | |
| 2092 | entry1.dest_mode = 0; /* physical delivery */ |
| 2093 | entry1.mask = 0; /* unmask IRQ now */ |
| 2094 | entry1.dest.physical.physical_dest = hard_smp_processor_id(); |
| 2095 | entry1.delivery_mode = dest_ExtINT; |
| 2096 | entry1.polarity = entry0.polarity; |
| 2097 | entry1.trigger = 0; |
| 2098 | entry1.vector = 0; |
| 2099 | |
Andi Kleen | cf4c6a2 | 2006-09-26 10:52:30 +0200 | [diff] [blame] | 2100 | ioapic_write_entry(apic, pin, entry1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2101 | |
| 2102 | save_control = CMOS_READ(RTC_CONTROL); |
| 2103 | save_freq_select = CMOS_READ(RTC_FREQ_SELECT); |
| 2104 | CMOS_WRITE((save_freq_select & ~RTC_RATE_SELECT) | 0x6, |
| 2105 | RTC_FREQ_SELECT); |
| 2106 | CMOS_WRITE(save_control | RTC_PIE, RTC_CONTROL); |
| 2107 | |
| 2108 | i = 100; |
| 2109 | while (i-- > 0) { |
| 2110 | mdelay(10); |
| 2111 | if ((CMOS_READ(RTC_INTR_FLAGS) & RTC_PF) == RTC_PF) |
| 2112 | i -= 10; |
| 2113 | } |
| 2114 | |
| 2115 | CMOS_WRITE(save_control, RTC_CONTROL); |
| 2116 | CMOS_WRITE(save_freq_select, RTC_FREQ_SELECT); |
Eric W. Biederman | fcfd636 | 2005-10-30 14:59:39 -0800 | [diff] [blame] | 2117 | clear_IO_APIC_pin(apic, pin); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2118 | |
Andi Kleen | cf4c6a2 | 2006-09-26 10:52:30 +0200 | [diff] [blame] | 2119 | ioapic_write_entry(apic, pin, entry0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2120 | } |
| 2121 | |
| 2122 | /* |
| 2123 | * This code may look a bit paranoid, but it's supposed to cooperate with |
| 2124 | * a wide range of boards and BIOS bugs. Fortunately only the timer IRQ |
| 2125 | * is so screwy. Thanks to Brian Perkins for testing/hacking this beast |
| 2126 | * fanatically on his truly buggy board. |
| 2127 | */ |
Zachary Amsden | 8542b20 | 2006-12-07 02:14:09 +0100 | [diff] [blame] | 2128 | static inline void __init check_timer(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2129 | { |
Eric W. Biederman | fcfd636 | 2005-10-30 14:59:39 -0800 | [diff] [blame] | 2130 | int apic1, pin1, apic2, pin2; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2131 | int vector; |
Ingo Molnar | a0176e2 | 2008-06-16 12:44:17 +0200 | [diff] [blame] | 2132 | unsigned int ver; |
Ingo Molnar | 4aae070 | 2007-12-18 18:05:58 +0100 | [diff] [blame] | 2133 | unsigned long flags; |
| 2134 | |
| 2135 | local_irq_save(flags); |
Maciej W. Rozycki | d4d25de | 2007-11-26 20:42:19 +0100 | [diff] [blame] | 2136 | |
Ingo Molnar | a0176e2 | 2008-06-16 12:44:17 +0200 | [diff] [blame] | 2137 | ver = apic_read(APIC_LVR); |
| 2138 | ver = GET_APIC_VERSION(ver); |
| 2139 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2140 | /* |
| 2141 | * get/set the timer IRQ vector: |
| 2142 | */ |
| 2143 | disable_8259A_irq(0); |
| 2144 | vector = assign_irq_vector(0); |
| 2145 | set_intr_gate(vector, interrupt[0]); |
| 2146 | |
| 2147 | /* |
Maciej W. Rozycki | d11d579 | 2008-05-21 22:09:11 +0100 | [diff] [blame] | 2148 | * As IRQ0 is to be enabled in the 8259A, the virtual |
| 2149 | * wire has to be disabled in the local APIC. Also |
| 2150 | * timer interrupts need to be acknowledged manually in |
| 2151 | * the 8259A for the i82489DX when using the NMI |
| 2152 | * watchdog as that APIC treats NMIs as level-triggered. |
| 2153 | * The AEOI mode will finish them in the 8259A |
| 2154 | * automatically. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2155 | */ |
| 2156 | apic_write_around(APIC_LVT0, APIC_LVT_MASKED | APIC_DM_EXTINT); |
| 2157 | init_8259A(1); |
Maciej W. Rozycki | d11d579 | 2008-05-21 22:09:11 +0100 | [diff] [blame] | 2158 | timer_ack = (nmi_watchdog == NMI_IO_APIC && !APIC_INTEGRATED(ver)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2159 | |
Eric W. Biederman | fcfd636 | 2005-10-30 14:59:39 -0800 | [diff] [blame] | 2160 | pin1 = find_isa_irq_pin(0, mp_INT); |
| 2161 | apic1 = find_isa_irq_apic(0, mp_INT); |
| 2162 | pin2 = ioapic_i8259.pin; |
| 2163 | apic2 = ioapic_i8259.apic; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2164 | |
Eric W. Biederman | fcfd636 | 2005-10-30 14:59:39 -0800 | [diff] [blame] | 2165 | printk(KERN_INFO "..TIMER: vector=0x%02X apic1=%d pin1=%d apic2=%d pin2=%d\n", |
| 2166 | vector, apic1, pin1, apic2, pin2); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2167 | |
| 2168 | if (pin1 != -1) { |
| 2169 | /* |
| 2170 | * Ok, does IRQ0 through the IOAPIC work? |
| 2171 | */ |
| 2172 | unmask_IO_APIC_irq(0); |
| 2173 | if (timer_irq_works()) { |
| 2174 | if (nmi_watchdog == NMI_IO_APIC) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2175 | setup_nmi(); |
| 2176 | enable_8259A_irq(0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2177 | } |
Chuck Ebbert | 66759a0 | 2005-09-12 18:49:25 +0200 | [diff] [blame] | 2178 | if (disable_timer_pin_1 > 0) |
| 2179 | clear_IO_APIC_pin(0, pin1); |
Ingo Molnar | 4aae070 | 2007-12-18 18:05:58 +0100 | [diff] [blame] | 2180 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2181 | } |
Eric W. Biederman | fcfd636 | 2005-10-30 14:59:39 -0800 | [diff] [blame] | 2182 | clear_IO_APIC_pin(apic1, pin1); |
| 2183 | printk(KERN_ERR "..MP-BIOS bug: 8254 timer not connected to " |
| 2184 | "IO-APIC\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2185 | } |
| 2186 | |
| 2187 | printk(KERN_INFO "...trying to set up timer (IRQ0) through the 8259A ... "); |
| 2188 | if (pin2 != -1) { |
| 2189 | printk("\n..... (found pin %d) ...", pin2); |
| 2190 | /* |
| 2191 | * legacy devices should be connected to IO APIC #0 |
| 2192 | */ |
Eric W. Biederman | fcfd636 | 2005-10-30 14:59:39 -0800 | [diff] [blame] | 2193 | setup_ExtINT_IRQ0_pin(apic2, pin2, vector); |
Maciej W. Rozycki | ecd2947 | 2008-05-21 22:09:19 +0100 | [diff] [blame] | 2194 | enable_8259A_irq(0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2195 | if (timer_irq_works()) { |
| 2196 | printk("works.\n"); |
| 2197 | if (pin1 != -1) |
Eric W. Biederman | fcfd636 | 2005-10-30 14:59:39 -0800 | [diff] [blame] | 2198 | replace_pin_at_irq(0, apic1, pin1, apic2, pin2); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2199 | else |
Eric W. Biederman | fcfd636 | 2005-10-30 14:59:39 -0800 | [diff] [blame] | 2200 | add_pin_to_irq(0, apic2, pin2); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2201 | if (nmi_watchdog == NMI_IO_APIC) { |
| 2202 | setup_nmi(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2203 | } |
Ingo Molnar | 4aae070 | 2007-12-18 18:05:58 +0100 | [diff] [blame] | 2204 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2205 | } |
| 2206 | /* |
| 2207 | * Cleanup, just in case ... |
| 2208 | */ |
Maciej W. Rozycki | ecd2947 | 2008-05-21 22:09:19 +0100 | [diff] [blame] | 2209 | disable_8259A_irq(0); |
Eric W. Biederman | fcfd636 | 2005-10-30 14:59:39 -0800 | [diff] [blame] | 2210 | clear_IO_APIC_pin(apic2, pin2); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2211 | } |
| 2212 | printk(" failed.\n"); |
| 2213 | |
| 2214 | if (nmi_watchdog == NMI_IO_APIC) { |
| 2215 | printk(KERN_WARNING "timer doesn't work through the IO-APIC - disabling NMI Watchdog!\n"); |
| 2216 | nmi_watchdog = 0; |
| 2217 | } |
Maciej W. Rozycki | d11d579 | 2008-05-21 22:09:11 +0100 | [diff] [blame] | 2218 | timer_ack = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2219 | |
| 2220 | printk(KERN_INFO "...trying to set up timer as Virtual Wire IRQ..."); |
| 2221 | |
Ingo Molnar | a460e74 | 2006-10-17 00:10:03 -0700 | [diff] [blame] | 2222 | set_irq_chip_and_handler_name(0, &lapic_chip, handle_fasteoi_irq, |
Maciej W. Rozycki | 2e18893 | 2007-02-13 13:26:20 +0100 | [diff] [blame] | 2223 | "fasteoi"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2224 | apic_write_around(APIC_LVT0, APIC_DM_FIXED | vector); /* Fixed mode */ |
| 2225 | enable_8259A_irq(0); |
| 2226 | |
| 2227 | if (timer_irq_works()) { |
| 2228 | printk(" works.\n"); |
Ingo Molnar | 4aae070 | 2007-12-18 18:05:58 +0100 | [diff] [blame] | 2229 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2230 | } |
Maciej W. Rozycki | e67465f | 2008-05-21 22:09:26 +0100 | [diff] [blame^] | 2231 | disable_8259A_irq(0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2232 | apic_write_around(APIC_LVT0, APIC_LVT_MASKED | APIC_DM_FIXED | vector); |
| 2233 | printk(" failed.\n"); |
| 2234 | |
| 2235 | printk(KERN_INFO "...trying to set up timer as ExtINT IRQ..."); |
| 2236 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2237 | init_8259A(0); |
| 2238 | make_8259A_irq(0); |
| 2239 | apic_write_around(APIC_LVT0, APIC_DM_EXTINT); |
| 2240 | |
| 2241 | unlock_ExtINT_logic(); |
| 2242 | |
| 2243 | if (timer_irq_works()) { |
| 2244 | printk(" works.\n"); |
Ingo Molnar | 4aae070 | 2007-12-18 18:05:58 +0100 | [diff] [blame] | 2245 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2246 | } |
| 2247 | printk(" failed :(.\n"); |
| 2248 | panic("IO-APIC + timer doesn't work! Boot with apic=debug and send a " |
| 2249 | "report. Then try booting with the 'noapic' option"); |
Ingo Molnar | 4aae070 | 2007-12-18 18:05:58 +0100 | [diff] [blame] | 2250 | out: |
| 2251 | local_irq_restore(flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2252 | } |
| 2253 | |
| 2254 | /* |
| 2255 | * |
| 2256 | * IRQ's that are handled by the PIC in the MPS IOAPIC case. |
| 2257 | * - IRQ2 is the cascade IRQ, and cannot be a io-apic IRQ. |
| 2258 | * Linux doesn't really care, as it's not actually used |
| 2259 | * for any interrupt handling anyway. |
| 2260 | */ |
| 2261 | #define PIC_IRQS (1 << PIC_CASCADE_IR) |
| 2262 | |
| 2263 | void __init setup_IO_APIC(void) |
| 2264 | { |
Rusty Russell | dbeb2be | 2007-10-19 20:35:03 +0200 | [diff] [blame] | 2265 | int i; |
| 2266 | |
| 2267 | /* Reserve all the system vectors. */ |
| 2268 | for (i = FIRST_SYSTEM_VECTOR; i < NR_VECTORS; i++) |
| 2269 | set_bit(i, used_vectors); |
| 2270 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2271 | enable_IO_APIC(); |
| 2272 | |
| 2273 | if (acpi_ioapic) |
| 2274 | io_apic_irqs = ~0; /* all IRQs go through IOAPIC */ |
| 2275 | else |
| 2276 | io_apic_irqs = ~PIC_IRQS; |
| 2277 | |
| 2278 | printk("ENABLING IO-APIC IRQs\n"); |
| 2279 | |
| 2280 | /* |
| 2281 | * Set up IO-APIC IRQ routing. |
| 2282 | */ |
| 2283 | if (!acpi_ioapic) |
| 2284 | setup_ioapic_ids_from_mpc(); |
| 2285 | sync_Arb_IDs(); |
| 2286 | setup_IO_APIC_irqs(); |
| 2287 | init_IO_APIC_traps(); |
Linus Torvalds | 1e4c85f | 2005-10-31 19:16:17 -0800 | [diff] [blame] | 2288 | check_timer(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2289 | if (!acpi_ioapic) |
| 2290 | print_IO_APIC(); |
| 2291 | } |
| 2292 | |
| 2293 | /* |
| 2294 | * Called after all the initialization is done. If we didnt find any |
| 2295 | * APIC bugs then we can allow the modify fast path |
| 2296 | */ |
| 2297 | |
| 2298 | static int __init io_apic_bug_finalize(void) |
| 2299 | { |
| 2300 | if(sis_apic_bug == -1) |
| 2301 | sis_apic_bug = 0; |
| 2302 | return 0; |
| 2303 | } |
| 2304 | |
| 2305 | late_initcall(io_apic_bug_finalize); |
| 2306 | |
| 2307 | struct sysfs_ioapic_data { |
| 2308 | struct sys_device dev; |
| 2309 | struct IO_APIC_route_entry entry[0]; |
| 2310 | }; |
| 2311 | static struct sysfs_ioapic_data * mp_ioapic_data[MAX_IO_APICS]; |
| 2312 | |
Pavel Machek | 438510f | 2005-04-16 15:25:24 -0700 | [diff] [blame] | 2313 | static int ioapic_suspend(struct sys_device *dev, pm_message_t state) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2314 | { |
| 2315 | struct IO_APIC_route_entry *entry; |
| 2316 | struct sysfs_ioapic_data *data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2317 | int i; |
| 2318 | |
| 2319 | data = container_of(dev, struct sysfs_ioapic_data, dev); |
| 2320 | entry = data->entry; |
Andi Kleen | cf4c6a2 | 2006-09-26 10:52:30 +0200 | [diff] [blame] | 2321 | for (i = 0; i < nr_ioapic_registers[dev->id]; i ++) |
| 2322 | entry[i] = ioapic_read_entry(dev->id, i); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2323 | |
| 2324 | return 0; |
| 2325 | } |
| 2326 | |
| 2327 | static int ioapic_resume(struct sys_device *dev) |
| 2328 | { |
| 2329 | struct IO_APIC_route_entry *entry; |
| 2330 | struct sysfs_ioapic_data *data; |
| 2331 | unsigned long flags; |
| 2332 | union IO_APIC_reg_00 reg_00; |
| 2333 | int i; |
| 2334 | |
| 2335 | data = container_of(dev, struct sysfs_ioapic_data, dev); |
| 2336 | entry = data->entry; |
| 2337 | |
| 2338 | spin_lock_irqsave(&ioapic_lock, flags); |
| 2339 | reg_00.raw = io_apic_read(dev->id, 0); |
| 2340 | if (reg_00.bits.ID != mp_ioapics[dev->id].mpc_apicid) { |
| 2341 | reg_00.bits.ID = mp_ioapics[dev->id].mpc_apicid; |
| 2342 | io_apic_write(dev->id, 0, reg_00.raw); |
| 2343 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2344 | spin_unlock_irqrestore(&ioapic_lock, flags); |
Andi Kleen | cf4c6a2 | 2006-09-26 10:52:30 +0200 | [diff] [blame] | 2345 | for (i = 0; i < nr_ioapic_registers[dev->id]; i ++) |
| 2346 | ioapic_write_entry(dev->id, i, entry[i]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2347 | |
| 2348 | return 0; |
| 2349 | } |
| 2350 | |
| 2351 | static struct sysdev_class ioapic_sysdev_class = { |
Kay Sievers | af5ca3f4 | 2007-12-20 02:09:39 +0100 | [diff] [blame] | 2352 | .name = "ioapic", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2353 | .suspend = ioapic_suspend, |
| 2354 | .resume = ioapic_resume, |
| 2355 | }; |
| 2356 | |
| 2357 | static int __init ioapic_init_sysfs(void) |
| 2358 | { |
| 2359 | struct sys_device * dev; |
| 2360 | int i, size, error = 0; |
| 2361 | |
| 2362 | error = sysdev_class_register(&ioapic_sysdev_class); |
| 2363 | if (error) |
| 2364 | return error; |
| 2365 | |
| 2366 | for (i = 0; i < nr_ioapics; i++ ) { |
| 2367 | size = sizeof(struct sys_device) + nr_ioapic_registers[i] |
| 2368 | * sizeof(struct IO_APIC_route_entry); |
| 2369 | mp_ioapic_data[i] = kmalloc(size, GFP_KERNEL); |
| 2370 | if (!mp_ioapic_data[i]) { |
| 2371 | printk(KERN_ERR "Can't suspend/resume IOAPIC %d\n", i); |
| 2372 | continue; |
| 2373 | } |
| 2374 | memset(mp_ioapic_data[i], 0, size); |
| 2375 | dev = &mp_ioapic_data[i]->dev; |
| 2376 | dev->id = i; |
| 2377 | dev->cls = &ioapic_sysdev_class; |
| 2378 | error = sysdev_register(dev); |
| 2379 | if (error) { |
| 2380 | kfree(mp_ioapic_data[i]); |
| 2381 | mp_ioapic_data[i] = NULL; |
| 2382 | printk(KERN_ERR "Can't suspend/resume IOAPIC %d\n", i); |
| 2383 | continue; |
| 2384 | } |
| 2385 | } |
| 2386 | |
| 2387 | return 0; |
| 2388 | } |
| 2389 | |
| 2390 | device_initcall(ioapic_init_sysfs); |
| 2391 | |
Eric W. Biederman | 3fc471e | 2006-10-04 02:16:39 -0700 | [diff] [blame] | 2392 | /* |
Eric W. Biederman | 95d7788 | 2006-10-04 02:17:01 -0700 | [diff] [blame] | 2393 | * Dynamic irq allocate and deallocation |
Eric W. Biederman | 3fc471e | 2006-10-04 02:16:39 -0700 | [diff] [blame] | 2394 | */ |
| 2395 | int create_irq(void) |
| 2396 | { |
Eric W. Biederman | ace80ab | 2006-10-04 02:16:47 -0700 | [diff] [blame] | 2397 | /* Allocate an unused irq */ |
Andi Kleen | 306a22c | 2006-12-09 21:33:36 +0100 | [diff] [blame] | 2398 | int irq, new, vector = 0; |
Eric W. Biederman | 3fc471e | 2006-10-04 02:16:39 -0700 | [diff] [blame] | 2399 | unsigned long flags; |
Eric W. Biederman | 3fc471e | 2006-10-04 02:16:39 -0700 | [diff] [blame] | 2400 | |
Eric W. Biederman | ace80ab | 2006-10-04 02:16:47 -0700 | [diff] [blame] | 2401 | irq = -ENOSPC; |
| 2402 | spin_lock_irqsave(&vector_lock, flags); |
| 2403 | for (new = (NR_IRQS - 1); new >= 0; new--) { |
| 2404 | if (platform_legacy_irq(new)) |
| 2405 | continue; |
| 2406 | if (irq_vector[new] != 0) |
| 2407 | continue; |
| 2408 | vector = __assign_irq_vector(new); |
| 2409 | if (likely(vector > 0)) |
| 2410 | irq = new; |
| 2411 | break; |
| 2412 | } |
| 2413 | spin_unlock_irqrestore(&vector_lock, flags); |
Eric W. Biederman | 3fc471e | 2006-10-04 02:16:39 -0700 | [diff] [blame] | 2414 | |
Eric W. Biederman | ace80ab | 2006-10-04 02:16:47 -0700 | [diff] [blame] | 2415 | if (irq >= 0) { |
Eric W. Biederman | 3fc471e | 2006-10-04 02:16:39 -0700 | [diff] [blame] | 2416 | set_intr_gate(vector, interrupt[irq]); |
Eric W. Biederman | 3fc471e | 2006-10-04 02:16:39 -0700 | [diff] [blame] | 2417 | dynamic_irq_init(irq); |
| 2418 | } |
| 2419 | return irq; |
| 2420 | } |
| 2421 | |
| 2422 | void destroy_irq(unsigned int irq) |
| 2423 | { |
| 2424 | unsigned long flags; |
Eric W. Biederman | 3fc471e | 2006-10-04 02:16:39 -0700 | [diff] [blame] | 2425 | |
| 2426 | dynamic_irq_cleanup(irq); |
| 2427 | |
| 2428 | spin_lock_irqsave(&vector_lock, flags); |
PJ Waskiewicz | 9d9ad4b | 2008-04-25 17:58:52 -0700 | [diff] [blame] | 2429 | clear_bit(irq_vector[irq], used_vectors); |
Eric W. Biederman | 3fc471e | 2006-10-04 02:16:39 -0700 | [diff] [blame] | 2430 | irq_vector[irq] = 0; |
| 2431 | spin_unlock_irqrestore(&vector_lock, flags); |
| 2432 | } |
Eric W. Biederman | 3fc471e | 2006-10-04 02:16:39 -0700 | [diff] [blame] | 2433 | |
Eric W. Biederman | 2d3fcc1 | 2006-10-04 02:16:43 -0700 | [diff] [blame] | 2434 | /* |
Simon Arlott | 27b46d7 | 2007-10-20 01:13:56 +0200 | [diff] [blame] | 2435 | * MSI message composition |
Eric W. Biederman | 2d3fcc1 | 2006-10-04 02:16:43 -0700 | [diff] [blame] | 2436 | */ |
| 2437 | #ifdef CONFIG_PCI_MSI |
Eric W. Biederman | 3b7d192 | 2006-10-04 02:16:59 -0700 | [diff] [blame] | 2438 | 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] | 2439 | { |
Eric W. Biederman | 2d3fcc1 | 2006-10-04 02:16:43 -0700 | [diff] [blame] | 2440 | int vector; |
| 2441 | unsigned dest; |
| 2442 | |
| 2443 | vector = assign_irq_vector(irq); |
| 2444 | if (vector >= 0) { |
| 2445 | dest = cpu_mask_to_apicid(TARGET_CPUS); |
| 2446 | |
| 2447 | msg->address_hi = MSI_ADDR_BASE_HI; |
| 2448 | msg->address_lo = |
| 2449 | MSI_ADDR_BASE_LO | |
| 2450 | ((INT_DEST_MODE == 0) ? |
| 2451 | MSI_ADDR_DEST_MODE_PHYSICAL: |
| 2452 | MSI_ADDR_DEST_MODE_LOGICAL) | |
| 2453 | ((INT_DELIVERY_MODE != dest_LowestPrio) ? |
| 2454 | MSI_ADDR_REDIRECTION_CPU: |
| 2455 | MSI_ADDR_REDIRECTION_LOWPRI) | |
| 2456 | MSI_ADDR_DEST_ID(dest); |
| 2457 | |
| 2458 | msg->data = |
| 2459 | MSI_DATA_TRIGGER_EDGE | |
| 2460 | MSI_DATA_LEVEL_ASSERT | |
| 2461 | ((INT_DELIVERY_MODE != dest_LowestPrio) ? |
| 2462 | MSI_DATA_DELIVERY_FIXED: |
| 2463 | MSI_DATA_DELIVERY_LOWPRI) | |
| 2464 | MSI_DATA_VECTOR(vector); |
| 2465 | } |
| 2466 | return vector; |
| 2467 | } |
| 2468 | |
Eric W. Biederman | 3b7d192 | 2006-10-04 02:16:59 -0700 | [diff] [blame] | 2469 | #ifdef CONFIG_SMP |
| 2470 | static void set_msi_irq_affinity(unsigned int irq, cpumask_t mask) |
| 2471 | { |
| 2472 | struct msi_msg msg; |
| 2473 | unsigned int dest; |
| 2474 | cpumask_t tmp; |
| 2475 | int vector; |
| 2476 | |
| 2477 | cpus_and(tmp, mask, cpu_online_map); |
| 2478 | if (cpus_empty(tmp)) |
| 2479 | tmp = TARGET_CPUS; |
| 2480 | |
| 2481 | vector = assign_irq_vector(irq); |
| 2482 | if (vector < 0) |
| 2483 | return; |
| 2484 | |
| 2485 | dest = cpu_mask_to_apicid(mask); |
| 2486 | |
| 2487 | read_msi_msg(irq, &msg); |
| 2488 | |
| 2489 | msg.data &= ~MSI_DATA_VECTOR_MASK; |
| 2490 | msg.data |= MSI_DATA_VECTOR(vector); |
| 2491 | msg.address_lo &= ~MSI_ADDR_DEST_ID_MASK; |
| 2492 | msg.address_lo |= MSI_ADDR_DEST_ID(dest); |
| 2493 | |
| 2494 | write_msi_msg(irq, &msg); |
Eric W. Biederman | 9f0a5ba | 2007-02-23 04:13:55 -0700 | [diff] [blame] | 2495 | irq_desc[irq].affinity = mask; |
Eric W. Biederman | 3b7d192 | 2006-10-04 02:16:59 -0700 | [diff] [blame] | 2496 | } |
| 2497 | #endif /* CONFIG_SMP */ |
| 2498 | |
| 2499 | /* |
| 2500 | * IRQ Chip for MSI PCI/PCI-X/PCI-Express Devices, |
| 2501 | * which implement the MSI or MSI-X Capability Structure. |
| 2502 | */ |
| 2503 | static struct irq_chip msi_chip = { |
| 2504 | .name = "PCI-MSI", |
| 2505 | .unmask = unmask_msi_irq, |
| 2506 | .mask = mask_msi_irq, |
| 2507 | .ack = ack_ioapic_irq, |
| 2508 | #ifdef CONFIG_SMP |
| 2509 | .set_affinity = set_msi_irq_affinity, |
| 2510 | #endif |
| 2511 | .retrigger = ioapic_retrigger_irq, |
| 2512 | }; |
| 2513 | |
Eric W. Biederman | f7feaca | 2007-01-28 12:56:37 -0700 | [diff] [blame] | 2514 | int arch_setup_msi_irq(struct pci_dev *dev, struct msi_desc *desc) |
Eric W. Biederman | 3b7d192 | 2006-10-04 02:16:59 -0700 | [diff] [blame] | 2515 | { |
| 2516 | struct msi_msg msg; |
Eric W. Biederman | f7feaca | 2007-01-28 12:56:37 -0700 | [diff] [blame] | 2517 | int irq, ret; |
| 2518 | irq = create_irq(); |
| 2519 | if (irq < 0) |
| 2520 | return irq; |
| 2521 | |
Eric W. Biederman | 3b7d192 | 2006-10-04 02:16:59 -0700 | [diff] [blame] | 2522 | ret = msi_compose_msg(dev, irq, &msg); |
Eric W. Biederman | f7feaca | 2007-01-28 12:56:37 -0700 | [diff] [blame] | 2523 | if (ret < 0) { |
| 2524 | destroy_irq(irq); |
Eric W. Biederman | 3b7d192 | 2006-10-04 02:16:59 -0700 | [diff] [blame] | 2525 | return ret; |
Eric W. Biederman | f7feaca | 2007-01-28 12:56:37 -0700 | [diff] [blame] | 2526 | } |
Eric W. Biederman | 3b7d192 | 2006-10-04 02:16:59 -0700 | [diff] [blame] | 2527 | |
Michael Ellerman | 7fe3730 | 2007-04-18 19:39:21 +1000 | [diff] [blame] | 2528 | set_irq_msi(irq, desc); |
Eric W. Biederman | 3b7d192 | 2006-10-04 02:16:59 -0700 | [diff] [blame] | 2529 | write_msi_msg(irq, &msg); |
| 2530 | |
Ingo Molnar | a460e74 | 2006-10-17 00:10:03 -0700 | [diff] [blame] | 2531 | set_irq_chip_and_handler_name(irq, &msi_chip, handle_edge_irq, |
| 2532 | "edge"); |
Eric W. Biederman | 3b7d192 | 2006-10-04 02:16:59 -0700 | [diff] [blame] | 2533 | |
Michael Ellerman | 7fe3730 | 2007-04-18 19:39:21 +1000 | [diff] [blame] | 2534 | return 0; |
Eric W. Biederman | 3b7d192 | 2006-10-04 02:16:59 -0700 | [diff] [blame] | 2535 | } |
| 2536 | |
| 2537 | void arch_teardown_msi_irq(unsigned int irq) |
Eric W. Biederman | 2d3fcc1 | 2006-10-04 02:16:43 -0700 | [diff] [blame] | 2538 | { |
Eric W. Biederman | f7feaca | 2007-01-28 12:56:37 -0700 | [diff] [blame] | 2539 | destroy_irq(irq); |
Eric W. Biederman | 2d3fcc1 | 2006-10-04 02:16:43 -0700 | [diff] [blame] | 2540 | } |
| 2541 | |
Eric W. Biederman | 2d3fcc1 | 2006-10-04 02:16:43 -0700 | [diff] [blame] | 2542 | #endif /* CONFIG_PCI_MSI */ |
| 2543 | |
Eric W. Biederman | 8b955b0 | 2006-10-04 02:16:55 -0700 | [diff] [blame] | 2544 | /* |
| 2545 | * Hypertransport interrupt support |
| 2546 | */ |
| 2547 | #ifdef CONFIG_HT_IRQ |
| 2548 | |
| 2549 | #ifdef CONFIG_SMP |
| 2550 | |
| 2551 | static void target_ht_irq(unsigned int irq, unsigned int dest) |
| 2552 | { |
Eric W. Biederman | ec68307 | 2006-11-08 17:44:57 -0800 | [diff] [blame] | 2553 | struct ht_irq_msg msg; |
| 2554 | fetch_ht_irq_msg(irq, &msg); |
Eric W. Biederman | 8b955b0 | 2006-10-04 02:16:55 -0700 | [diff] [blame] | 2555 | |
Eric W. Biederman | ec68307 | 2006-11-08 17:44:57 -0800 | [diff] [blame] | 2556 | msg.address_lo &= ~(HT_IRQ_LOW_DEST_ID_MASK); |
| 2557 | msg.address_hi &= ~(HT_IRQ_HIGH_DEST_ID_MASK); |
Eric W. Biederman | 8b955b0 | 2006-10-04 02:16:55 -0700 | [diff] [blame] | 2558 | |
Eric W. Biederman | ec68307 | 2006-11-08 17:44:57 -0800 | [diff] [blame] | 2559 | msg.address_lo |= HT_IRQ_LOW_DEST_ID(dest); |
| 2560 | msg.address_hi |= HT_IRQ_HIGH_DEST_ID(dest); |
Eric W. Biederman | 8b955b0 | 2006-10-04 02:16:55 -0700 | [diff] [blame] | 2561 | |
Eric W. Biederman | ec68307 | 2006-11-08 17:44:57 -0800 | [diff] [blame] | 2562 | write_ht_irq_msg(irq, &msg); |
Eric W. Biederman | 8b955b0 | 2006-10-04 02:16:55 -0700 | [diff] [blame] | 2563 | } |
| 2564 | |
| 2565 | static void set_ht_irq_affinity(unsigned int irq, cpumask_t mask) |
| 2566 | { |
| 2567 | unsigned int dest; |
| 2568 | cpumask_t tmp; |
| 2569 | |
| 2570 | cpus_and(tmp, mask, cpu_online_map); |
| 2571 | if (cpus_empty(tmp)) |
| 2572 | tmp = TARGET_CPUS; |
| 2573 | |
| 2574 | cpus_and(mask, tmp, CPU_MASK_ALL); |
| 2575 | |
| 2576 | dest = cpu_mask_to_apicid(mask); |
| 2577 | |
| 2578 | target_ht_irq(irq, dest); |
Eric W. Biederman | 9f0a5ba | 2007-02-23 04:13:55 -0700 | [diff] [blame] | 2579 | irq_desc[irq].affinity = mask; |
Eric W. Biederman | 8b955b0 | 2006-10-04 02:16:55 -0700 | [diff] [blame] | 2580 | } |
| 2581 | #endif |
| 2582 | |
Aneesh Kumar K.V | c37e108 | 2006-10-11 01:20:43 -0700 | [diff] [blame] | 2583 | static struct irq_chip ht_irq_chip = { |
Eric W. Biederman | 8b955b0 | 2006-10-04 02:16:55 -0700 | [diff] [blame] | 2584 | .name = "PCI-HT", |
| 2585 | .mask = mask_ht_irq, |
| 2586 | .unmask = unmask_ht_irq, |
| 2587 | .ack = ack_ioapic_irq, |
| 2588 | #ifdef CONFIG_SMP |
| 2589 | .set_affinity = set_ht_irq_affinity, |
| 2590 | #endif |
| 2591 | .retrigger = ioapic_retrigger_irq, |
| 2592 | }; |
| 2593 | |
| 2594 | int arch_setup_ht_irq(unsigned int irq, struct pci_dev *dev) |
| 2595 | { |
| 2596 | int vector; |
| 2597 | |
| 2598 | vector = assign_irq_vector(irq); |
| 2599 | if (vector >= 0) { |
Eric W. Biederman | ec68307 | 2006-11-08 17:44:57 -0800 | [diff] [blame] | 2600 | struct ht_irq_msg msg; |
Eric W. Biederman | 8b955b0 | 2006-10-04 02:16:55 -0700 | [diff] [blame] | 2601 | unsigned dest; |
| 2602 | cpumask_t tmp; |
| 2603 | |
| 2604 | cpus_clear(tmp); |
| 2605 | cpu_set(vector >> 8, tmp); |
| 2606 | dest = cpu_mask_to_apicid(tmp); |
| 2607 | |
Eric W. Biederman | ec68307 | 2006-11-08 17:44:57 -0800 | [diff] [blame] | 2608 | msg.address_hi = HT_IRQ_HIGH_DEST_ID(dest); |
Eric W. Biederman | 8b955b0 | 2006-10-04 02:16:55 -0700 | [diff] [blame] | 2609 | |
Eric W. Biederman | ec68307 | 2006-11-08 17:44:57 -0800 | [diff] [blame] | 2610 | msg.address_lo = |
| 2611 | HT_IRQ_LOW_BASE | |
Eric W. Biederman | 8b955b0 | 2006-10-04 02:16:55 -0700 | [diff] [blame] | 2612 | HT_IRQ_LOW_DEST_ID(dest) | |
| 2613 | HT_IRQ_LOW_VECTOR(vector) | |
| 2614 | ((INT_DEST_MODE == 0) ? |
| 2615 | HT_IRQ_LOW_DM_PHYSICAL : |
| 2616 | HT_IRQ_LOW_DM_LOGICAL) | |
| 2617 | HT_IRQ_LOW_RQEOI_EDGE | |
| 2618 | ((INT_DELIVERY_MODE != dest_LowestPrio) ? |
| 2619 | HT_IRQ_LOW_MT_FIXED : |
| 2620 | HT_IRQ_LOW_MT_ARBITRATED) | |
| 2621 | HT_IRQ_LOW_IRQ_MASKED; |
| 2622 | |
Eric W. Biederman | ec68307 | 2006-11-08 17:44:57 -0800 | [diff] [blame] | 2623 | write_ht_irq_msg(irq, &msg); |
Eric W. Biederman | 8b955b0 | 2006-10-04 02:16:55 -0700 | [diff] [blame] | 2624 | |
Ingo Molnar | a460e74 | 2006-10-17 00:10:03 -0700 | [diff] [blame] | 2625 | set_irq_chip_and_handler_name(irq, &ht_irq_chip, |
| 2626 | handle_edge_irq, "edge"); |
Eric W. Biederman | 8b955b0 | 2006-10-04 02:16:55 -0700 | [diff] [blame] | 2627 | } |
| 2628 | return vector; |
| 2629 | } |
| 2630 | #endif /* CONFIG_HT_IRQ */ |
| 2631 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2632 | /* -------------------------------------------------------------------------- |
| 2633 | ACPI-based IOAPIC Configuration |
| 2634 | -------------------------------------------------------------------------- */ |
| 2635 | |
Len Brown | 888ba6c | 2005-08-24 12:07:20 -0400 | [diff] [blame] | 2636 | #ifdef CONFIG_ACPI |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2637 | |
| 2638 | int __init io_apic_get_unique_id (int ioapic, int apic_id) |
| 2639 | { |
| 2640 | union IO_APIC_reg_00 reg_00; |
| 2641 | static physid_mask_t apic_id_map = PHYSID_MASK_NONE; |
| 2642 | physid_mask_t tmp; |
| 2643 | unsigned long flags; |
| 2644 | int i = 0; |
| 2645 | |
| 2646 | /* |
| 2647 | * The P4 platform supports up to 256 APIC IDs on two separate APIC |
| 2648 | * buses (one for LAPICs, one for IOAPICs), where predecessors only |
| 2649 | * supports up to 16 on one shared APIC bus. |
| 2650 | * |
| 2651 | * TBD: Expand LAPIC/IOAPIC support on P4-class systems to take full |
| 2652 | * advantage of new APIC bus architecture. |
| 2653 | */ |
| 2654 | |
| 2655 | if (physids_empty(apic_id_map)) |
| 2656 | apic_id_map = ioapic_phys_id_map(phys_cpu_present_map); |
| 2657 | |
| 2658 | spin_lock_irqsave(&ioapic_lock, flags); |
| 2659 | reg_00.raw = io_apic_read(ioapic, 0); |
| 2660 | spin_unlock_irqrestore(&ioapic_lock, flags); |
| 2661 | |
| 2662 | if (apic_id >= get_physical_broadcast()) { |
| 2663 | printk(KERN_WARNING "IOAPIC[%d]: Invalid apic_id %d, trying " |
| 2664 | "%d\n", ioapic, apic_id, reg_00.bits.ID); |
| 2665 | apic_id = reg_00.bits.ID; |
| 2666 | } |
| 2667 | |
| 2668 | /* |
| 2669 | * Every APIC in a system must have a unique ID or we get lots of nice |
| 2670 | * 'stuck on smp_invalidate_needed IPI wait' messages. |
| 2671 | */ |
| 2672 | if (check_apicid_used(apic_id_map, apic_id)) { |
| 2673 | |
| 2674 | for (i = 0; i < get_physical_broadcast(); i++) { |
| 2675 | if (!check_apicid_used(apic_id_map, i)) |
| 2676 | break; |
| 2677 | } |
| 2678 | |
| 2679 | if (i == get_physical_broadcast()) |
| 2680 | panic("Max apic_id exceeded!\n"); |
| 2681 | |
| 2682 | printk(KERN_WARNING "IOAPIC[%d]: apic_id %d already used, " |
| 2683 | "trying %d\n", ioapic, apic_id, i); |
| 2684 | |
| 2685 | apic_id = i; |
| 2686 | } |
| 2687 | |
| 2688 | tmp = apicid_to_cpu_present(apic_id); |
| 2689 | physids_or(apic_id_map, apic_id_map, tmp); |
| 2690 | |
| 2691 | if (reg_00.bits.ID != apic_id) { |
| 2692 | reg_00.bits.ID = apic_id; |
| 2693 | |
| 2694 | spin_lock_irqsave(&ioapic_lock, flags); |
| 2695 | io_apic_write(ioapic, 0, reg_00.raw); |
| 2696 | reg_00.raw = io_apic_read(ioapic, 0); |
| 2697 | spin_unlock_irqrestore(&ioapic_lock, flags); |
| 2698 | |
| 2699 | /* Sanity check */ |
Andreas Deresch | 6070f9e | 2006-02-26 04:18:34 +0100 | [diff] [blame] | 2700 | if (reg_00.bits.ID != apic_id) { |
| 2701 | printk("IOAPIC[%d]: Unable to change apic_id!\n", ioapic); |
| 2702 | return -1; |
| 2703 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2704 | } |
| 2705 | |
| 2706 | apic_printk(APIC_VERBOSE, KERN_INFO |
| 2707 | "IOAPIC[%d]: Assigned apic_id %d\n", ioapic, apic_id); |
| 2708 | |
| 2709 | return apic_id; |
| 2710 | } |
| 2711 | |
| 2712 | |
| 2713 | int __init io_apic_get_version (int ioapic) |
| 2714 | { |
| 2715 | union IO_APIC_reg_01 reg_01; |
| 2716 | unsigned long flags; |
| 2717 | |
| 2718 | spin_lock_irqsave(&ioapic_lock, flags); |
| 2719 | reg_01.raw = io_apic_read(ioapic, 1); |
| 2720 | spin_unlock_irqrestore(&ioapic_lock, flags); |
| 2721 | |
| 2722 | return reg_01.bits.version; |
| 2723 | } |
| 2724 | |
| 2725 | |
| 2726 | int __init io_apic_get_redir_entries (int ioapic) |
| 2727 | { |
| 2728 | union IO_APIC_reg_01 reg_01; |
| 2729 | unsigned long flags; |
| 2730 | |
| 2731 | spin_lock_irqsave(&ioapic_lock, flags); |
| 2732 | reg_01.raw = io_apic_read(ioapic, 1); |
| 2733 | spin_unlock_irqrestore(&ioapic_lock, flags); |
| 2734 | |
| 2735 | return reg_01.bits.entries; |
| 2736 | } |
| 2737 | |
| 2738 | |
| 2739 | int io_apic_set_pci_routing (int ioapic, int pin, int irq, int edge_level, int active_high_low) |
| 2740 | { |
| 2741 | struct IO_APIC_route_entry entry; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2742 | |
| 2743 | if (!IO_APIC_IRQ(irq)) { |
| 2744 | printk(KERN_ERR "IOAPIC[%d]: Invalid reference to IRQ 0\n", |
| 2745 | ioapic); |
| 2746 | return -EINVAL; |
| 2747 | } |
| 2748 | |
| 2749 | /* |
| 2750 | * Generate a PCI IRQ routing entry and program the IOAPIC accordingly. |
| 2751 | * Note that we mask (disable) IRQs now -- these get enabled when the |
| 2752 | * corresponding device driver registers for this IRQ. |
| 2753 | */ |
| 2754 | |
| 2755 | memset(&entry,0,sizeof(entry)); |
| 2756 | |
| 2757 | entry.delivery_mode = INT_DELIVERY_MODE; |
| 2758 | entry.dest_mode = INT_DEST_MODE; |
| 2759 | entry.dest.logical.logical_dest = cpu_mask_to_apicid(TARGET_CPUS); |
| 2760 | entry.trigger = edge_level; |
| 2761 | entry.polarity = active_high_low; |
| 2762 | entry.mask = 1; |
| 2763 | |
| 2764 | /* |
| 2765 | * IRQs < 16 are already in the irq_2_pin[] map |
| 2766 | */ |
| 2767 | if (irq >= 16) |
| 2768 | add_pin_to_irq(irq, ioapic, pin); |
| 2769 | |
| 2770 | entry.vector = assign_irq_vector(irq); |
| 2771 | |
| 2772 | apic_printk(APIC_DEBUG, KERN_DEBUG "IOAPIC[%d]: Set PCI routing entry " |
| 2773 | "(%d-%d -> 0x%x -> IRQ %d Mode:%i Active:%i)\n", ioapic, |
| 2774 | mp_ioapics[ioapic].mpc_apicid, pin, entry.vector, irq, |
| 2775 | edge_level, active_high_low); |
| 2776 | |
| 2777 | ioapic_register_intr(irq, entry.vector, edge_level); |
| 2778 | |
| 2779 | if (!ioapic && (irq < 16)) |
| 2780 | disable_8259A_irq(irq); |
| 2781 | |
Akinobu Mita | a2249cb | 2008-04-05 22:39:05 +0900 | [diff] [blame] | 2782 | ioapic_write_entry(ioapic, pin, entry); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2783 | |
| 2784 | return 0; |
| 2785 | } |
| 2786 | |
Shaohua Li | 61fd47e | 2007-11-17 01:05:28 -0500 | [diff] [blame] | 2787 | int acpi_get_override_irq(int bus_irq, int *trigger, int *polarity) |
| 2788 | { |
| 2789 | int i; |
| 2790 | |
| 2791 | if (skip_ioapic_setup) |
| 2792 | return -1; |
| 2793 | |
| 2794 | for (i = 0; i < mp_irq_entries; i++) |
| 2795 | if (mp_irqs[i].mpc_irqtype == mp_INT && |
| 2796 | mp_irqs[i].mpc_srcbusirq == bus_irq) |
| 2797 | break; |
| 2798 | if (i >= mp_irq_entries) |
| 2799 | return -1; |
| 2800 | |
| 2801 | *trigger = irq_trigger(i); |
| 2802 | *polarity = irq_polarity(i); |
| 2803 | return 0; |
| 2804 | } |
| 2805 | |
Len Brown | 888ba6c | 2005-08-24 12:07:20 -0400 | [diff] [blame] | 2806 | #endif /* CONFIG_ACPI */ |
Rusty Russell | 1a3f239 | 2006-09-26 10:52:32 +0200 | [diff] [blame] | 2807 | |
| 2808 | static int __init parse_disable_timer_pin_1(char *arg) |
| 2809 | { |
| 2810 | disable_timer_pin_1 = 1; |
| 2811 | return 0; |
| 2812 | } |
| 2813 | early_param("disable_timer_pin_1", parse_disable_timer_pin_1); |
| 2814 | |
| 2815 | static int __init parse_enable_timer_pin_1(char *arg) |
| 2816 | { |
| 2817 | disable_timer_pin_1 = -1; |
| 2818 | return 0; |
| 2819 | } |
| 2820 | early_param("enable_timer_pin_1", parse_enable_timer_pin_1); |
| 2821 | |
| 2822 | static int __init parse_noapic(char *arg) |
| 2823 | { |
| 2824 | /* disable IO-APIC */ |
| 2825 | disable_ioapic_setup(); |
| 2826 | return 0; |
| 2827 | } |
| 2828 | early_param("noapic", parse_noapic); |