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