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