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