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