Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Intel Multiprocessor Specification 1.1 and 1.4 |
| 3 | * compliant MP-table parsing routines. |
| 4 | * |
| 5 | * (c) 1995 Alan Cox, Building #3 <alan@redhat.com> |
| 6 | * (c) 1998, 1999, 2000 Ingo Molnar <mingo@redhat.com> |
| 7 | * |
| 8 | * Fixes |
| 9 | * Erich Boleyn : MP v1.4 and additional changes. |
| 10 | * Alan Cox : Added EBDA scanning |
| 11 | * Ingo Molnar : various cleanups and rewrites |
| 12 | * Maciej W. Rozycki: Bits for default MP configurations |
| 13 | * Paul Diefenbaugh: Added full ACPI support |
| 14 | */ |
| 15 | |
| 16 | #include <linux/mm.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 17 | #include <linux/init.h> |
| 18 | #include <linux/acpi.h> |
| 19 | #include <linux/delay.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 20 | #include <linux/bootmem.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 21 | #include <linux/kernel_stat.h> |
| 22 | #include <linux/mc146818rtc.h> |
| 23 | #include <linux/bitops.h> |
| 24 | |
| 25 | #include <asm/smp.h> |
| 26 | #include <asm/acpi.h> |
| 27 | #include <asm/mtrr.h> |
| 28 | #include <asm/mpspec.h> |
| 29 | #include <asm/io_apic.h> |
Alexey Starikovskiy | ce3fe6b | 2008-03-17 22:08:17 +0300 | [diff] [blame] | 30 | #include <asm/bios_ebda.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 31 | |
| 32 | #include <mach_apic.h> |
Andi Kleen | 874c4fe | 2006-09-26 10:52:26 +0200 | [diff] [blame] | 33 | #include <mach_apicdef.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 34 | #include <mach_mpparse.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 35 | |
| 36 | /* Have we found an MP table */ |
| 37 | int smp_found_config; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 38 | |
| 39 | /* |
| 40 | * Various Linux-internal data structures created from the |
| 41 | * MP-table. |
| 42 | */ |
Alexey Starikovskiy | c0a282c | 2008-03-20 14:55:02 +0300 | [diff] [blame] | 43 | #if defined (CONFIG_MCA) || defined (CONFIG_EISA) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 44 | int mp_bus_id_to_type [MAX_MP_BUSSES]; |
Alexey Starikovskiy | c0a282c | 2008-03-20 14:55:02 +0300 | [diff] [blame] | 45 | #endif |
Alexey Starikovskiy | a6333c3 | 2008-03-20 14:54:09 +0300 | [diff] [blame] | 46 | DECLARE_BITMAP(mp_bus_not_pci, MAX_MP_BUSSES); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 47 | int mp_bus_id_to_pci_bus [MAX_MP_BUSSES] = { [0 ... MAX_MP_BUSSES-1] = -1 }; |
| 48 | static int mp_current_pci_id; |
| 49 | |
| 50 | /* I/O APIC entries */ |
| 51 | struct mpc_config_ioapic mp_ioapics[MAX_IO_APICS]; |
| 52 | |
| 53 | /* # of MP IRQ source entries */ |
| 54 | struct mpc_config_intsrc mp_irqs[MAX_IRQ_SOURCES]; |
| 55 | |
| 56 | /* MP IRQ source entries */ |
| 57 | int mp_irq_entries; |
| 58 | |
| 59 | int nr_ioapics; |
| 60 | |
| 61 | int pic_mode; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 62 | |
Alexey Starikovskiy | 2bb9e9d | 2008-03-27 23:54:50 +0300 | [diff] [blame] | 63 | /* Make it easy to share the UP and SMP code: */ |
| 64 | #ifndef CONFIG_X86_SMP |
Sam Ravnborg | 87d7e98 | 2008-01-30 13:33:37 +0100 | [diff] [blame] | 65 | unsigned int num_processors; |
Glauber Costa | 7b1292e | 2008-03-03 14:12:41 -0300 | [diff] [blame] | 66 | unsigned disabled_cpus __cpuinitdata; |
Ingo Molnar | fae9811 | 2008-03-28 12:22:10 +0100 | [diff] [blame] | 67 | #ifndef CONFIG_X86_LOCAL_APIC |
Alexey Starikovskiy | 837e0e7 | 2008-03-27 23:55:10 +0300 | [diff] [blame] | 68 | unsigned int boot_cpu_physical_apicid = -1U; |
Alexey Starikovskiy | 53c4c79 | 2008-03-27 23:54:57 +0300 | [diff] [blame] | 69 | #endif |
Ingo Molnar | fae9811 | 2008-03-28 12:22:10 +0100 | [diff] [blame] | 70 | #endif |
Glauber Costa | 7b1292e | 2008-03-03 14:12:41 -0300 | [diff] [blame] | 71 | |
Alexey Starikovskiy | 40014ba | 2008-03-27 23:54:44 +0300 | [diff] [blame] | 72 | /* Make it easy to share the UP and SMP code: */ |
| 73 | #ifndef CONFIG_X86_SMP |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 74 | physid_mask_t phys_cpu_present_map; |
Alexey Starikovskiy | 40014ba | 2008-03-27 23:54:44 +0300 | [diff] [blame] | 75 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 76 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 77 | /* |
| 78 | * Intel MP BIOS table parsing routines: |
| 79 | */ |
| 80 | |
| 81 | |
| 82 | /* |
| 83 | * Checksum an MP configuration block. |
| 84 | */ |
| 85 | |
| 86 | static int __init mpf_checksum(unsigned char *mp, int len) |
| 87 | { |
| 88 | int sum = 0; |
| 89 | |
| 90 | while (len--) |
| 91 | sum += *mp++; |
| 92 | |
| 93 | return sum & 0xFF; |
| 94 | } |
| 95 | |
Alexey Starikovskiy | 8642050 | 2008-03-17 22:08:55 +0300 | [diff] [blame] | 96 | #ifdef CONFIG_X86_NUMAQ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 97 | /* |
| 98 | * Have to match translation table entries to main table entries by counter |
| 99 | * hence the mpc_record variable .... can't see a less disgusting way of |
| 100 | * doing this .... |
| 101 | */ |
| 102 | |
| 103 | static int mpc_record; |
Vivek Goyal | 4a5d107 | 2007-01-11 01:52:44 +0100 | [diff] [blame] | 104 | static struct mpc_config_translation *translation_table[MAX_MPC_ENTRY] __cpuinitdata; |
Alexey Starikovskiy | 8642050 | 2008-03-17 22:08:55 +0300 | [diff] [blame] | 105 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 106 | |
Alexey Starikovskiy | c853c67 | 2008-03-27 23:54:13 +0300 | [diff] [blame] | 107 | static void __cpuinit MP_processor_info(struct mpc_config_processor *m) |
| 108 | { |
| 109 | int apicid; |
| 110 | |
Glauber Costa | 7b1292e | 2008-03-03 14:12:41 -0300 | [diff] [blame] | 111 | if (!(m->mpc_cpuflag & CPU_ENABLED)) { |
Ingo Molnar | 059c964 | 2008-03-28 11:57:55 +0100 | [diff] [blame] | 112 | #ifdef CONFIG_X86_SMP |
Glauber Costa | 7b1292e | 2008-03-03 14:12:41 -0300 | [diff] [blame] | 113 | disabled_cpus++; |
Ingo Molnar | 059c964 | 2008-03-28 11:57:55 +0100 | [diff] [blame] | 114 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 115 | return; |
Glauber Costa | 7b1292e | 2008-03-03 14:12:41 -0300 | [diff] [blame] | 116 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 117 | |
Alexey Starikovskiy | 4655c7d | 2008-03-17 22:08:36 +0300 | [diff] [blame] | 118 | #ifdef CONFIG_X86_NUMAQ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 119 | apicid = mpc_apic_id(m, translation_table[mpc_record]); |
Alexey Starikovskiy | 4655c7d | 2008-03-17 22:08:36 +0300 | [diff] [blame] | 120 | #else |
| 121 | Dprintk("Processor #%d %u:%u APIC version %d\n", |
| 122 | m->mpc_apicid, |
| 123 | (m->mpc_cpufeature & CPU_FAMILY_MASK) >> 8, |
| 124 | (m->mpc_cpufeature & CPU_MODEL_MASK) >> 4, |
| 125 | m->mpc_apicver); |
| 126 | apicid = m->mpc_apicid; |
| 127 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 128 | |
| 129 | if (m->mpc_featureflag&(1<<0)) |
| 130 | Dprintk(" Floating point unit present.\n"); |
| 131 | if (m->mpc_featureflag&(1<<7)) |
| 132 | Dprintk(" Machine Exception supported.\n"); |
| 133 | if (m->mpc_featureflag&(1<<8)) |
| 134 | Dprintk(" 64 bit compare & exchange supported.\n"); |
| 135 | if (m->mpc_featureflag&(1<<9)) |
| 136 | Dprintk(" Internal APIC present.\n"); |
| 137 | if (m->mpc_featureflag&(1<<11)) |
| 138 | Dprintk(" SEP present.\n"); |
| 139 | if (m->mpc_featureflag&(1<<12)) |
| 140 | Dprintk(" MTRR present.\n"); |
| 141 | if (m->mpc_featureflag&(1<<13)) |
| 142 | Dprintk(" PGE present.\n"); |
| 143 | if (m->mpc_featureflag&(1<<14)) |
| 144 | Dprintk(" MCA present.\n"); |
| 145 | if (m->mpc_featureflag&(1<<15)) |
| 146 | Dprintk(" CMOV present.\n"); |
| 147 | if (m->mpc_featureflag&(1<<16)) |
| 148 | Dprintk(" PAT present.\n"); |
| 149 | if (m->mpc_featureflag&(1<<17)) |
| 150 | Dprintk(" PSE present.\n"); |
| 151 | if (m->mpc_featureflag&(1<<18)) |
| 152 | Dprintk(" PSN present.\n"); |
| 153 | if (m->mpc_featureflag&(1<<19)) |
| 154 | Dprintk(" Cache Line Flush Instruction present.\n"); |
| 155 | /* 20 Reserved */ |
| 156 | if (m->mpc_featureflag&(1<<21)) |
| 157 | Dprintk(" Debug Trace and EMON Store present.\n"); |
| 158 | if (m->mpc_featureflag&(1<<22)) |
| 159 | Dprintk(" ACPI Thermal Throttle Registers present.\n"); |
| 160 | if (m->mpc_featureflag&(1<<23)) |
| 161 | Dprintk(" MMX present.\n"); |
| 162 | if (m->mpc_featureflag&(1<<24)) |
| 163 | Dprintk(" FXSR present.\n"); |
| 164 | if (m->mpc_featureflag&(1<<25)) |
| 165 | Dprintk(" XMM present.\n"); |
| 166 | if (m->mpc_featureflag&(1<<26)) |
| 167 | Dprintk(" Willamette New Instructions present.\n"); |
| 168 | if (m->mpc_featureflag&(1<<27)) |
| 169 | Dprintk(" Self Snoop present.\n"); |
| 170 | if (m->mpc_featureflag&(1<<28)) |
| 171 | Dprintk(" HT present.\n"); |
| 172 | if (m->mpc_featureflag&(1<<29)) |
| 173 | Dprintk(" Thermal Monitor present.\n"); |
| 174 | /* 30, 31 Reserved */ |
| 175 | |
| 176 | |
| 177 | if (m->mpc_cpuflag & CPU_BOOTPROCESSOR) { |
| 178 | Dprintk(" Bootup CPU\n"); |
| 179 | boot_cpu_physical_apicid = m->mpc_apicid; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 180 | } |
| 181 | |
Alexey Starikovskiy | c853c67 | 2008-03-27 23:54:13 +0300 | [diff] [blame] | 182 | generic_processor_info(apicid, m->mpc_apicver); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 183 | } |
| 184 | |
| 185 | static void __init MP_bus_info (struct mpc_config_bus *m) |
| 186 | { |
| 187 | char str[7]; |
| 188 | |
| 189 | memcpy(str, m->mpc_bustype, 6); |
| 190 | str[6] = 0; |
| 191 | |
Alexey Starikovskiy | 0ec153a | 2008-03-17 22:08:48 +0300 | [diff] [blame] | 192 | #ifdef CONFIG_X86_NUMAQ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 193 | mpc_oem_bus_info(m, str, translation_table[mpc_record]); |
Alexey Starikovskiy | 0ec153a | 2008-03-17 22:08:48 +0300 | [diff] [blame] | 194 | #else |
| 195 | Dprintk("Bus #%d is %s\n", m->mpc_busid, str); |
| 196 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 197 | |
Andi Kleen | 5e4edbb | 2006-09-26 10:52:35 +0200 | [diff] [blame] | 198 | #if MAX_MP_BUSSES < 256 |
Randy Dunlap | c0ec31a | 2006-04-10 22:53:13 -0700 | [diff] [blame] | 199 | if (m->mpc_busid >= MAX_MP_BUSSES) { |
| 200 | printk(KERN_WARNING "MP table busid value (%d) for bustype %s " |
| 201 | " is too large, max. supported is %d\n", |
| 202 | m->mpc_busid, str, MAX_MP_BUSSES - 1); |
| 203 | return; |
| 204 | } |
Andi Kleen | 5e4edbb | 2006-09-26 10:52:35 +0200 | [diff] [blame] | 205 | #endif |
Randy Dunlap | c0ec31a | 2006-04-10 22:53:13 -0700 | [diff] [blame] | 206 | |
Alexey Starikovskiy | a6333c3 | 2008-03-20 14:54:09 +0300 | [diff] [blame] | 207 | set_bit(m->mpc_busid, mp_bus_not_pci); |
Alexey Starikovskiy | 9e0a2de | 2008-03-20 14:54:56 +0300 | [diff] [blame] | 208 | if (strncmp(str, BUSTYPE_PCI, sizeof(BUSTYPE_PCI)-1) == 0) { |
Alexey Starikovskiy | d285e33 | 2008-03-17 22:08:42 +0300 | [diff] [blame] | 209 | #ifdef CONFIG_X86_NUMAQ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 210 | mpc_oem_pci_bus(m, translation_table[mpc_record]); |
Alexey Starikovskiy | d285e33 | 2008-03-17 22:08:42 +0300 | [diff] [blame] | 211 | #endif |
Alexey Starikovskiy | a6333c3 | 2008-03-20 14:54:09 +0300 | [diff] [blame] | 212 | clear_bit(m->mpc_busid, mp_bus_not_pci); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 213 | mp_bus_id_to_pci_bus[m->mpc_busid] = mp_current_pci_id; |
| 214 | mp_current_pci_id++; |
Alexey Starikovskiy | c0a282c | 2008-03-20 14:55:02 +0300 | [diff] [blame] | 215 | #if defined(CONFIG_EISA) || defined (CONFIG_MCA) |
| 216 | mp_bus_id_to_type[m->mpc_busid] = MP_BUS_PCI; |
Alexey Starikovskiy | 9e0a2de | 2008-03-20 14:54:56 +0300 | [diff] [blame] | 217 | } else if (strncmp(str, BUSTYPE_ISA, sizeof(BUSTYPE_ISA)-1) == 0) { |
| 218 | mp_bus_id_to_type[m->mpc_busid] = MP_BUS_ISA; |
| 219 | } else if (strncmp(str, BUSTYPE_EISA, sizeof(BUSTYPE_EISA)-1) == 0) { |
| 220 | mp_bus_id_to_type[m->mpc_busid] = MP_BUS_EISA; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 221 | } else if (strncmp(str, BUSTYPE_MCA, sizeof(BUSTYPE_MCA)-1) == 0) { |
| 222 | mp_bus_id_to_type[m->mpc_busid] = MP_BUS_MCA; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 223 | } else { |
| 224 | printk(KERN_WARNING "Unknown bustype %s - ignoring\n", str); |
Alexey Starikovskiy | c0a282c | 2008-03-20 14:55:02 +0300 | [diff] [blame] | 225 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 226 | } |
| 227 | } |
| 228 | |
Alexey Starikovskiy | 857033a | 2008-03-17 22:08:05 +0300 | [diff] [blame] | 229 | static int bad_ioapic(unsigned long address) |
| 230 | { |
| 231 | if (nr_ioapics >= MAX_IO_APICS) { |
| 232 | printk(KERN_ERR "ERROR: Max # of I/O APICs (%d) exceeded " |
| 233 | "(found %d)\n", MAX_IO_APICS, nr_ioapics); |
| 234 | panic("Recompile kernel with bigger MAX_IO_APICS!\n"); |
| 235 | } |
| 236 | if (!address) { |
| 237 | printk(KERN_ERR "WARNING: Bogus (zero) I/O APIC address" |
| 238 | " found in table, skipping!\n"); |
| 239 | return 1; |
| 240 | } |
| 241 | return 0; |
| 242 | } |
| 243 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 244 | static void __init MP_ioapic_info (struct mpc_config_ioapic *m) |
| 245 | { |
| 246 | if (!(m->mpc_flags & MPC_APIC_USABLE)) |
| 247 | return; |
| 248 | |
Thomas Gleixner | 64883ab | 2008-01-30 13:30:35 +0100 | [diff] [blame] | 249 | printk(KERN_INFO "I/O APIC #%d Version %d at 0x%X.\n", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 250 | m->mpc_apicid, m->mpc_apicver, m->mpc_apicaddr); |
Alexey Starikovskiy | 857033a | 2008-03-17 22:08:05 +0300 | [diff] [blame] | 251 | |
| 252 | if (bad_ioapic(m->mpc_apicaddr)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 253 | return; |
Alexey Starikovskiy | 857033a | 2008-03-17 22:08:05 +0300 | [diff] [blame] | 254 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 255 | mp_ioapics[nr_ioapics] = *m; |
| 256 | nr_ioapics++; |
| 257 | } |
| 258 | |
| 259 | static void __init MP_intsrc_info (struct mpc_config_intsrc *m) |
| 260 | { |
| 261 | mp_irqs [mp_irq_entries] = *m; |
| 262 | Dprintk("Int: type %d, pol %d, trig %d, bus %d," |
| 263 | " IRQ %02x, APIC ID %x, APIC INT %02x\n", |
| 264 | m->mpc_irqtype, m->mpc_irqflag & 3, |
| 265 | (m->mpc_irqflag >> 2) & 3, m->mpc_srcbus, |
| 266 | m->mpc_srcbusirq, m->mpc_dstapic, m->mpc_dstirq); |
| 267 | if (++mp_irq_entries == MAX_IRQ_SOURCES) |
| 268 | panic("Max # of irq sources exceeded!!\n"); |
| 269 | } |
| 270 | |
| 271 | static void __init MP_lintsrc_info (struct mpc_config_lintsrc *m) |
| 272 | { |
| 273 | Dprintk("Lint: type %d, pol %d, trig %d, bus %d," |
| 274 | " IRQ %02x, APIC ID %x, APIC LINT %02x\n", |
| 275 | m->mpc_irqtype, m->mpc_irqflag & 3, |
| 276 | (m->mpc_irqflag >> 2) &3, m->mpc_srcbusid, |
| 277 | m->mpc_srcbusirq, m->mpc_destapic, m->mpc_destapiclint); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 278 | } |
| 279 | |
| 280 | #ifdef CONFIG_X86_NUMAQ |
| 281 | static void __init MP_translation_info (struct mpc_config_translation *m) |
| 282 | { |
| 283 | printk(KERN_INFO "Translation: record %d, type %d, quad %d, global %d, local %d\n", mpc_record, m->trans_type, m->trans_quad, m->trans_global, m->trans_local); |
| 284 | |
| 285 | if (mpc_record >= MAX_MPC_ENTRY) |
| 286 | printk(KERN_ERR "MAX_MPC_ENTRY exceeded!\n"); |
| 287 | else |
| 288 | translation_table[mpc_record] = m; /* stash this for later */ |
| 289 | if (m->trans_quad < MAX_NUMNODES && !node_online(m->trans_quad)) |
| 290 | node_set_online(m->trans_quad); |
| 291 | } |
| 292 | |
| 293 | /* |
| 294 | * Read/parse the MPC oem tables |
| 295 | */ |
| 296 | |
| 297 | static void __init smp_read_mpc_oem(struct mp_config_oemtable *oemtable, \ |
| 298 | unsigned short oemsize) |
| 299 | { |
| 300 | int count = sizeof (*oemtable); /* the header size */ |
| 301 | unsigned char *oemptr = ((unsigned char *)oemtable)+count; |
| 302 | |
| 303 | mpc_record = 0; |
| 304 | printk(KERN_INFO "Found an OEM MPC table at %8p - parsing it ... \n", oemtable); |
| 305 | if (memcmp(oemtable->oem_signature,MPC_OEM_SIGNATURE,4)) |
| 306 | { |
| 307 | printk(KERN_WARNING "SMP mpc oemtable: bad signature [%c%c%c%c]!\n", |
| 308 | oemtable->oem_signature[0], |
| 309 | oemtable->oem_signature[1], |
| 310 | oemtable->oem_signature[2], |
| 311 | oemtable->oem_signature[3]); |
| 312 | return; |
| 313 | } |
| 314 | if (mpf_checksum((unsigned char *)oemtable,oemtable->oem_length)) |
| 315 | { |
| 316 | printk(KERN_WARNING "SMP oem mptable: checksum error!\n"); |
| 317 | return; |
| 318 | } |
| 319 | while (count < oemtable->oem_length) { |
| 320 | switch (*oemptr) { |
| 321 | case MP_TRANSLATION: |
| 322 | { |
| 323 | struct mpc_config_translation *m= |
| 324 | (struct mpc_config_translation *)oemptr; |
| 325 | MP_translation_info(m); |
| 326 | oemptr += sizeof(*m); |
| 327 | count += sizeof(*m); |
| 328 | ++mpc_record; |
| 329 | break; |
| 330 | } |
| 331 | default: |
| 332 | { |
| 333 | printk(KERN_WARNING "Unrecognised OEM table entry type! - %d\n", (int) *oemptr); |
| 334 | return; |
| 335 | } |
| 336 | } |
| 337 | } |
| 338 | } |
| 339 | |
| 340 | static inline void mps_oem_check(struct mp_config_table *mpc, char *oem, |
| 341 | char *productid) |
| 342 | { |
| 343 | if (strncmp(oem, "IBM NUMA", 8)) |
| 344 | printk("Warning! May not be a NUMA-Q system!\n"); |
| 345 | if (mpc->mpc_oemptr) |
| 346 | smp_read_mpc_oem((struct mp_config_oemtable *) mpc->mpc_oemptr, |
| 347 | mpc->mpc_oemsize); |
| 348 | } |
| 349 | #endif /* CONFIG_X86_NUMAQ */ |
| 350 | |
| 351 | /* |
| 352 | * Read/parse the MPC |
| 353 | */ |
| 354 | |
| 355 | static int __init smp_read_mpc(struct mp_config_table *mpc) |
| 356 | { |
| 357 | char str[16]; |
| 358 | char oem[10]; |
| 359 | int count=sizeof(*mpc); |
| 360 | unsigned char *mpt=((unsigned char *)mpc)+count; |
| 361 | |
| 362 | if (memcmp(mpc->mpc_signature,MPC_SIGNATURE,4)) { |
| 363 | printk(KERN_ERR "SMP mptable: bad signature [0x%x]!\n", |
| 364 | *(u32 *)mpc->mpc_signature); |
| 365 | return 0; |
| 366 | } |
| 367 | if (mpf_checksum((unsigned char *)mpc,mpc->mpc_length)) { |
| 368 | printk(KERN_ERR "SMP mptable: checksum error!\n"); |
| 369 | return 0; |
| 370 | } |
| 371 | if (mpc->mpc_spec!=0x01 && mpc->mpc_spec!=0x04) { |
| 372 | printk(KERN_ERR "SMP mptable: bad table version (%d)!!\n", |
| 373 | mpc->mpc_spec); |
| 374 | return 0; |
| 375 | } |
| 376 | if (!mpc->mpc_lapic) { |
| 377 | printk(KERN_ERR "SMP mptable: null local APIC address!\n"); |
| 378 | return 0; |
| 379 | } |
| 380 | memcpy(oem,mpc->mpc_oem,8); |
| 381 | oem[8]=0; |
| 382 | printk(KERN_INFO "OEM ID: %s ",oem); |
| 383 | |
| 384 | memcpy(str,mpc->mpc_productid,12); |
| 385 | str[12]=0; |
| 386 | printk("Product ID: %s ",str); |
| 387 | |
| 388 | mps_oem_check(mpc, oem, str); |
| 389 | |
Thomas Gleixner | 64883ab | 2008-01-30 13:30:35 +0100 | [diff] [blame] | 390 | printk("APIC at: 0x%X\n", mpc->mpc_lapic); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 391 | |
Thomas Gleixner | 64883ab | 2008-01-30 13:30:35 +0100 | [diff] [blame] | 392 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 393 | * Save the local APIC address (it might be non-default) -- but only |
| 394 | * if we're not using ACPI. |
| 395 | */ |
| 396 | if (!acpi_lapic) |
| 397 | mp_lapic_addr = mpc->mpc_lapic; |
| 398 | |
| 399 | /* |
| 400 | * Now process the configuration blocks. |
| 401 | */ |
Alexey Starikovskiy | 8642050 | 2008-03-17 22:08:55 +0300 | [diff] [blame] | 402 | #ifdef CONFIG_X86_NUMAQ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 403 | mpc_record = 0; |
Alexey Starikovskiy | 8642050 | 2008-03-17 22:08:55 +0300 | [diff] [blame] | 404 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 405 | while (count < mpc->mpc_length) { |
| 406 | switch(*mpt) { |
| 407 | case MP_PROCESSOR: |
| 408 | { |
| 409 | struct mpc_config_processor *m= |
| 410 | (struct mpc_config_processor *)mpt; |
| 411 | /* ACPI may have already provided this data */ |
| 412 | if (!acpi_lapic) |
| 413 | MP_processor_info(m); |
| 414 | mpt += sizeof(*m); |
| 415 | count += sizeof(*m); |
| 416 | break; |
| 417 | } |
| 418 | case MP_BUS: |
| 419 | { |
| 420 | struct mpc_config_bus *m= |
| 421 | (struct mpc_config_bus *)mpt; |
| 422 | MP_bus_info(m); |
| 423 | mpt += sizeof(*m); |
| 424 | count += sizeof(*m); |
| 425 | break; |
| 426 | } |
| 427 | case MP_IOAPIC: |
| 428 | { |
| 429 | struct mpc_config_ioapic *m= |
| 430 | (struct mpc_config_ioapic *)mpt; |
| 431 | MP_ioapic_info(m); |
| 432 | mpt+=sizeof(*m); |
| 433 | count+=sizeof(*m); |
| 434 | break; |
| 435 | } |
| 436 | case MP_INTSRC: |
| 437 | { |
| 438 | struct mpc_config_intsrc *m= |
| 439 | (struct mpc_config_intsrc *)mpt; |
| 440 | |
| 441 | MP_intsrc_info(m); |
| 442 | mpt+=sizeof(*m); |
| 443 | count+=sizeof(*m); |
| 444 | break; |
| 445 | } |
| 446 | case MP_LINTSRC: |
| 447 | { |
| 448 | struct mpc_config_lintsrc *m= |
| 449 | (struct mpc_config_lintsrc *)mpt; |
| 450 | MP_lintsrc_info(m); |
| 451 | mpt+=sizeof(*m); |
| 452 | count+=sizeof(*m); |
| 453 | break; |
| 454 | } |
| 455 | default: |
| 456 | { |
| 457 | count = mpc->mpc_length; |
| 458 | break; |
| 459 | } |
| 460 | } |
Alexey Starikovskiy | 8642050 | 2008-03-17 22:08:55 +0300 | [diff] [blame] | 461 | #ifdef CONFIG_X86_NUMAQ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 462 | ++mpc_record; |
Alexey Starikovskiy | 8642050 | 2008-03-17 22:08:55 +0300 | [diff] [blame] | 463 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 464 | } |
Ingo Molnar | 3c43f03 | 2007-05-02 19:27:04 +0200 | [diff] [blame] | 465 | setup_apic_routing(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 466 | if (!num_processors) |
| 467 | printk(KERN_ERR "SMP mptable: no processors registered!\n"); |
| 468 | return num_processors; |
| 469 | } |
| 470 | |
| 471 | static int __init ELCR_trigger(unsigned int irq) |
| 472 | { |
| 473 | unsigned int port; |
| 474 | |
| 475 | port = 0x4d0 + (irq >> 3); |
| 476 | return (inb(port) >> (irq & 7)) & 1; |
| 477 | } |
| 478 | |
| 479 | static void __init construct_default_ioirq_mptable(int mpc_default_type) |
| 480 | { |
| 481 | struct mpc_config_intsrc intsrc; |
| 482 | int i; |
| 483 | int ELCR_fallback = 0; |
| 484 | |
| 485 | intsrc.mpc_type = MP_INTSRC; |
| 486 | intsrc.mpc_irqflag = 0; /* conforming */ |
| 487 | intsrc.mpc_srcbus = 0; |
| 488 | intsrc.mpc_dstapic = mp_ioapics[0].mpc_apicid; |
| 489 | |
| 490 | intsrc.mpc_irqtype = mp_INT; |
| 491 | |
| 492 | /* |
| 493 | * If true, we have an ISA/PCI system with no IRQ entries |
| 494 | * in the MP table. To prevent the PCI interrupts from being set up |
| 495 | * incorrectly, we try to use the ELCR. The sanity check to see if |
| 496 | * there is good ELCR data is very simple - IRQ0, 1, 2 and 13 can |
| 497 | * never be level sensitive, so we simply see if the ELCR agrees. |
| 498 | * If it does, we assume it's valid. |
| 499 | */ |
| 500 | if (mpc_default_type == 5) { |
| 501 | printk(KERN_INFO "ISA/PCI bus type with no IRQ information... falling back to ELCR\n"); |
| 502 | |
| 503 | if (ELCR_trigger(0) || ELCR_trigger(1) || ELCR_trigger(2) || ELCR_trigger(13)) |
| 504 | printk(KERN_WARNING "ELCR contains invalid data... not using ELCR\n"); |
| 505 | else { |
| 506 | printk(KERN_INFO "Using ELCR to identify PCI interrupts\n"); |
| 507 | ELCR_fallback = 1; |
| 508 | } |
| 509 | } |
| 510 | |
| 511 | for (i = 0; i < 16; i++) { |
| 512 | switch (mpc_default_type) { |
| 513 | case 2: |
| 514 | if (i == 0 || i == 13) |
| 515 | continue; /* IRQ0 & IRQ13 not connected */ |
| 516 | /* fall through */ |
| 517 | default: |
| 518 | if (i == 2) |
| 519 | continue; /* IRQ2 is never connected */ |
| 520 | } |
| 521 | |
| 522 | if (ELCR_fallback) { |
| 523 | /* |
| 524 | * If the ELCR indicates a level-sensitive interrupt, we |
| 525 | * copy that information over to the MP table in the |
| 526 | * irqflag field (level sensitive, active high polarity). |
| 527 | */ |
| 528 | if (ELCR_trigger(i)) |
| 529 | intsrc.mpc_irqflag = 13; |
| 530 | else |
| 531 | intsrc.mpc_irqflag = 0; |
| 532 | } |
| 533 | |
| 534 | intsrc.mpc_srcbusirq = i; |
| 535 | intsrc.mpc_dstirq = i ? i : 2; /* IRQ0 to INTIN2 */ |
| 536 | MP_intsrc_info(&intsrc); |
| 537 | } |
| 538 | |
| 539 | intsrc.mpc_irqtype = mp_ExtINT; |
| 540 | intsrc.mpc_srcbusirq = 0; |
| 541 | intsrc.mpc_dstirq = 0; /* 8259A to INTIN0 */ |
| 542 | MP_intsrc_info(&intsrc); |
| 543 | } |
| 544 | |
| 545 | static inline void __init construct_default_ISA_mptable(int mpc_default_type) |
| 546 | { |
| 547 | struct mpc_config_processor processor; |
| 548 | struct mpc_config_bus bus; |
| 549 | struct mpc_config_ioapic ioapic; |
| 550 | struct mpc_config_lintsrc lintsrc; |
| 551 | int linttypes[2] = { mp_ExtINT, mp_NMI }; |
| 552 | int i; |
| 553 | |
| 554 | /* |
| 555 | * local APIC has default address |
| 556 | */ |
| 557 | mp_lapic_addr = APIC_DEFAULT_PHYS_BASE; |
| 558 | |
| 559 | /* |
| 560 | * 2 CPUs, numbered 0 & 1. |
| 561 | */ |
| 562 | processor.mpc_type = MP_PROCESSOR; |
| 563 | /* Either an integrated APIC or a discrete 82489DX. */ |
| 564 | processor.mpc_apicver = mpc_default_type > 4 ? 0x10 : 0x01; |
| 565 | processor.mpc_cpuflag = CPU_ENABLED; |
| 566 | processor.mpc_cpufeature = (boot_cpu_data.x86 << 8) | |
| 567 | (boot_cpu_data.x86_model << 4) | |
| 568 | boot_cpu_data.x86_mask; |
| 569 | processor.mpc_featureflag = boot_cpu_data.x86_capability[0]; |
| 570 | processor.mpc_reserved[0] = 0; |
| 571 | processor.mpc_reserved[1] = 0; |
| 572 | for (i = 0; i < 2; i++) { |
| 573 | processor.mpc_apicid = i; |
| 574 | MP_processor_info(&processor); |
| 575 | } |
| 576 | |
| 577 | bus.mpc_type = MP_BUS; |
| 578 | bus.mpc_busid = 0; |
| 579 | switch (mpc_default_type) { |
| 580 | default: |
| 581 | printk("???\n"); |
| 582 | printk(KERN_ERR "Unknown standard configuration %d\n", |
| 583 | mpc_default_type); |
| 584 | /* fall through */ |
| 585 | case 1: |
| 586 | case 5: |
| 587 | memcpy(bus.mpc_bustype, "ISA ", 6); |
| 588 | break; |
| 589 | case 2: |
| 590 | case 6: |
| 591 | case 3: |
| 592 | memcpy(bus.mpc_bustype, "EISA ", 6); |
| 593 | break; |
| 594 | case 4: |
| 595 | case 7: |
| 596 | memcpy(bus.mpc_bustype, "MCA ", 6); |
| 597 | } |
| 598 | MP_bus_info(&bus); |
| 599 | if (mpc_default_type > 4) { |
| 600 | bus.mpc_busid = 1; |
| 601 | memcpy(bus.mpc_bustype, "PCI ", 6); |
| 602 | MP_bus_info(&bus); |
| 603 | } |
| 604 | |
| 605 | ioapic.mpc_type = MP_IOAPIC; |
| 606 | ioapic.mpc_apicid = 2; |
| 607 | ioapic.mpc_apicver = mpc_default_type > 4 ? 0x10 : 0x01; |
| 608 | ioapic.mpc_flags = MPC_APIC_USABLE; |
| 609 | ioapic.mpc_apicaddr = 0xFEC00000; |
| 610 | MP_ioapic_info(&ioapic); |
| 611 | |
| 612 | /* |
| 613 | * We set up most of the low 16 IO-APIC pins according to MPS rules. |
| 614 | */ |
| 615 | construct_default_ioirq_mptable(mpc_default_type); |
| 616 | |
| 617 | lintsrc.mpc_type = MP_LINTSRC; |
| 618 | lintsrc.mpc_irqflag = 0; /* conforming */ |
| 619 | lintsrc.mpc_srcbusid = 0; |
| 620 | lintsrc.mpc_srcbusirq = 0; |
| 621 | lintsrc.mpc_destapic = MP_APIC_ALL; |
| 622 | for (i = 0; i < 2; i++) { |
| 623 | lintsrc.mpc_irqtype = linttypes[i]; |
| 624 | lintsrc.mpc_destapiclint = i; |
| 625 | MP_lintsrc_info(&lintsrc); |
| 626 | } |
| 627 | } |
| 628 | |
| 629 | static struct intel_mp_floating *mpf_found; |
| 630 | |
| 631 | /* |
| 632 | * Scan the memory blocks for an SMP configuration block. |
| 633 | */ |
| 634 | void __init get_smp_config (void) |
| 635 | { |
| 636 | struct intel_mp_floating *mpf = mpf_found; |
| 637 | |
| 638 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 639 | * ACPI supports both logical (e.g. Hyper-Threading) and physical |
| 640 | * processors, where MPS only supports physical. |
| 641 | */ |
| 642 | if (acpi_lapic && acpi_ioapic) { |
| 643 | printk(KERN_INFO "Using ACPI (MADT) for SMP configuration information\n"); |
| 644 | return; |
| 645 | } |
| 646 | else if (acpi_lapic) |
| 647 | printk(KERN_INFO "Using ACPI for processor (LAPIC) configuration information\n"); |
| 648 | |
| 649 | printk(KERN_INFO "Intel MultiProcessor Specification v1.%d\n", mpf->mpf_specification); |
| 650 | if (mpf->mpf_feature2 & (1<<7)) { |
| 651 | printk(KERN_INFO " IMCR and PIC compatibility mode.\n"); |
| 652 | pic_mode = 1; |
| 653 | } else { |
| 654 | printk(KERN_INFO " Virtual Wire compatibility mode.\n"); |
| 655 | pic_mode = 0; |
| 656 | } |
| 657 | |
| 658 | /* |
| 659 | * Now see if we need to read further. |
| 660 | */ |
| 661 | if (mpf->mpf_feature1 != 0) { |
| 662 | |
| 663 | printk(KERN_INFO "Default MP configuration #%d\n", mpf->mpf_feature1); |
| 664 | construct_default_ISA_mptable(mpf->mpf_feature1); |
| 665 | |
| 666 | } else if (mpf->mpf_physptr) { |
| 667 | |
| 668 | /* |
| 669 | * Read the physical hardware table. Anything here will |
| 670 | * override the defaults. |
| 671 | */ |
Daniel Yeisley | 7d4c8e5 | 2006-02-20 18:27:54 -0800 | [diff] [blame] | 672 | if (!smp_read_mpc(phys_to_virt(mpf->mpf_physptr))) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 673 | smp_found_config = 0; |
| 674 | printk(KERN_ERR "BIOS bug, MP table errors detected!...\n"); |
| 675 | printk(KERN_ERR "... disabling SMP support. (tell your hw vendor)\n"); |
| 676 | return; |
| 677 | } |
| 678 | /* |
| 679 | * If there are no explicit MP IRQ entries, then we are |
| 680 | * broken. We set up most of the low 16 IO-APIC pins to |
| 681 | * ISA defaults and hope it will work. |
| 682 | */ |
| 683 | if (!mp_irq_entries) { |
| 684 | struct mpc_config_bus bus; |
| 685 | |
| 686 | printk(KERN_ERR "BIOS bug, no explicit IRQ entries, using default mptable. (tell your hw vendor)\n"); |
| 687 | |
| 688 | bus.mpc_type = MP_BUS; |
| 689 | bus.mpc_busid = 0; |
| 690 | memcpy(bus.mpc_bustype, "ISA ", 6); |
| 691 | MP_bus_info(&bus); |
| 692 | |
| 693 | construct_default_ioirq_mptable(0); |
| 694 | } |
| 695 | |
| 696 | } else |
| 697 | BUG(); |
| 698 | |
| 699 | printk(KERN_INFO "Processors: %d\n", num_processors); |
| 700 | /* |
| 701 | * Only use the first configuration found. |
| 702 | */ |
| 703 | } |
| 704 | |
| 705 | static int __init smp_scan_config (unsigned long base, unsigned long length) |
| 706 | { |
| 707 | unsigned long *bp = phys_to_virt(base); |
| 708 | struct intel_mp_floating *mpf; |
| 709 | |
Ingo Molnar | e91a3b4 | 2008-01-30 13:33:08 +0100 | [diff] [blame] | 710 | printk(KERN_INFO "Scan SMP from %p for %ld bytes.\n", bp,length); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 711 | if (sizeof(*mpf) != 16) |
| 712 | printk("Error: MPF size\n"); |
| 713 | |
| 714 | while (length > 0) { |
| 715 | mpf = (struct intel_mp_floating *)bp; |
| 716 | if ((*bp == SMP_MAGIC_IDENT) && |
| 717 | (mpf->mpf_length == 1) && |
| 718 | !mpf_checksum((unsigned char *)bp, 16) && |
| 719 | ((mpf->mpf_specification == 1) |
| 720 | || (mpf->mpf_specification == 4)) ) { |
| 721 | |
| 722 | smp_found_config = 1; |
Ingo Molnar | e91a3b4 | 2008-01-30 13:33:08 +0100 | [diff] [blame] | 723 | printk(KERN_INFO "found SMP MP-table at [%p] %08lx\n", |
| 724 | mpf, virt_to_phys(mpf)); |
Bernhard Walle | 72a7fe3 | 2008-02-07 00:15:17 -0800 | [diff] [blame] | 725 | reserve_bootmem(virt_to_phys(mpf), PAGE_SIZE, |
| 726 | BOOTMEM_DEFAULT); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 727 | if (mpf->mpf_physptr) { |
| 728 | /* |
| 729 | * We cannot access to MPC table to compute |
| 730 | * table size yet, as only few megabytes from |
| 731 | * the bottom is mapped now. |
| 732 | * PC-9800's MPC table places on the very last |
| 733 | * of physical memory; so that simply reserving |
| 734 | * PAGE_SIZE from mpg->mpf_physptr yields BUG() |
| 735 | * in reserve_bootmem. |
| 736 | */ |
| 737 | unsigned long size = PAGE_SIZE; |
| 738 | unsigned long end = max_low_pfn * PAGE_SIZE; |
| 739 | if (mpf->mpf_physptr + size > end) |
| 740 | size = end - mpf->mpf_physptr; |
Bernhard Walle | 72a7fe3 | 2008-02-07 00:15:17 -0800 | [diff] [blame] | 741 | reserve_bootmem(mpf->mpf_physptr, size, |
| 742 | BOOTMEM_DEFAULT); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 743 | } |
| 744 | |
| 745 | mpf_found = mpf; |
| 746 | return 1; |
| 747 | } |
| 748 | bp += 4; |
| 749 | length -= 16; |
| 750 | } |
| 751 | return 0; |
| 752 | } |
| 753 | |
| 754 | void __init find_smp_config (void) |
| 755 | { |
| 756 | unsigned int address; |
| 757 | |
| 758 | /* |
| 759 | * FIXME: Linux assumes you have 640K of base ram.. |
| 760 | * this continues the error... |
| 761 | * |
| 762 | * 1) Scan the bottom 1K for a signature |
| 763 | * 2) Scan the top 1K of base RAM |
| 764 | * 3) Scan the 64K of bios |
| 765 | */ |
| 766 | if (smp_scan_config(0x0,0x400) || |
| 767 | smp_scan_config(639*0x400,0x400) || |
| 768 | smp_scan_config(0xF0000,0x10000)) |
| 769 | return; |
| 770 | /* |
| 771 | * If it is an SMP machine we should know now, unless the |
| 772 | * configuration is in an EISA/MCA bus machine with an |
| 773 | * extended bios data area. |
| 774 | * |
| 775 | * there is a real-mode segmented pointer pointing to the |
| 776 | * 4K EBDA area at 0x40E, calculate and scan it here. |
| 777 | * |
| 778 | * NOTE! There are Linux loaders that will corrupt the EBDA |
| 779 | * area, and as such this kind of SMP config may be less |
| 780 | * trustworthy, simply because the SMP table may have been |
| 781 | * stomped on during early boot. These loaders are buggy and |
| 782 | * should be fixed. |
| 783 | * |
| 784 | * MP1.4 SPEC states to only scan first 1K of 4K EBDA. |
| 785 | */ |
| 786 | |
| 787 | address = get_bios_ebda(); |
| 788 | if (address) |
| 789 | smp_scan_config(address, 0x400); |
| 790 | } |
| 791 | |
| 792 | /* -------------------------------------------------------------------------- |
| 793 | ACPI-based MP Configuration |
| 794 | -------------------------------------------------------------------------- */ |
| 795 | |
Len Brown | 888ba6c | 2005-08-24 12:07:20 -0400 | [diff] [blame] | 796 | #ifdef CONFIG_ACPI |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 797 | |
Andi Kleen | 19f03ff | 2006-09-26 10:52:30 +0200 | [diff] [blame] | 798 | void __init mp_register_lapic_address(u64 address) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 799 | { |
| 800 | mp_lapic_addr = (unsigned long) address; |
| 801 | |
| 802 | set_fixmap_nocache(FIX_APIC_BASE, mp_lapic_addr); |
| 803 | |
| 804 | if (boot_cpu_physical_apicid == -1U) |
Jack Steiner | 05f2d12 | 2008-03-28 14:12:02 -0500 | [diff] [blame^] | 805 | boot_cpu_physical_apicid = GET_APIC_ID(read_apic_id()); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 806 | |
| 807 | Dprintk("Boot CPU = %d\n", boot_cpu_physical_apicid); |
| 808 | } |
| 809 | |
Vivek Goyal | 4a5d107 | 2007-01-11 01:52:44 +0100 | [diff] [blame] | 810 | void __cpuinit mp_register_lapic (u8 id, u8 enabled) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 811 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 812 | if (MAX_APICS - id <= 0) { |
| 813 | printk(KERN_WARNING "Processor #%d invalid (max %d)\n", |
| 814 | id, MAX_APICS); |
| 815 | return; |
| 816 | } |
Alexey Starikovskiy | 08bef9d | 2008-03-27 23:54:20 +0300 | [diff] [blame] | 817 | |
Alexey Starikovskiy | 987dd2d | 2008-03-27 23:54:06 +0300 | [diff] [blame] | 818 | if (!enabled) { |
Ingo Molnar | 059c964 | 2008-03-28 11:57:55 +0100 | [diff] [blame] | 819 | #ifdef CONFIG_X86_SMP |
Alexey Starikovskiy | 987dd2d | 2008-03-27 23:54:06 +0300 | [diff] [blame] | 820 | ++disabled_cpus; |
Ingo Molnar | 059c964 | 2008-03-28 11:57:55 +0100 | [diff] [blame] | 821 | #endif |
Alexey Starikovskiy | 987dd2d | 2008-03-27 23:54:06 +0300 | [diff] [blame] | 822 | return; |
| 823 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 824 | |
Alexey Starikovskiy | 08bef9d | 2008-03-27 23:54:20 +0300 | [diff] [blame] | 825 | generic_processor_info(id, GET_APIC_VERSION(apic_read(APIC_LVR))); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 826 | } |
| 827 | |
Len Brown | 8466361 | 2005-08-24 12:09:07 -0400 | [diff] [blame] | 828 | #ifdef CONFIG_X86_IO_APIC |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 829 | |
| 830 | #define MP_ISA_BUS 0 |
| 831 | #define MP_MAX_IOAPIC_PIN 127 |
| 832 | |
| 833 | static struct mp_ioapic_routing { |
| 834 | int apic_id; |
| 835 | int gsi_base; |
| 836 | int gsi_end; |
| 837 | u32 pin_programmed[4]; |
| 838 | } mp_ioapic_routing[MAX_IO_APICS]; |
| 839 | |
Andi Kleen | 19f03ff | 2006-09-26 10:52:30 +0200 | [diff] [blame] | 840 | static int mp_find_ioapic (int gsi) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 841 | { |
Andi Kleen | 19f03ff | 2006-09-26 10:52:30 +0200 | [diff] [blame] | 842 | int i = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 843 | |
| 844 | /* Find the IOAPIC that manages this GSI. */ |
| 845 | for (i = 0; i < nr_ioapics; i++) { |
| 846 | if ((gsi >= mp_ioapic_routing[i].gsi_base) |
| 847 | && (gsi <= mp_ioapic_routing[i].gsi_end)) |
| 848 | return i; |
| 849 | } |
| 850 | |
| 851 | printk(KERN_ERR "ERROR: Unable to locate IOAPIC for GSI %d\n", gsi); |
| 852 | |
| 853 | return -1; |
| 854 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 855 | |
Alexey Starikovskiy | e3e3ffa | 2008-03-17 22:08:11 +0300 | [diff] [blame] | 856 | static u8 uniq_ioapic_id(u8 id) |
| 857 | { |
| 858 | if ((boot_cpu_data.x86_vendor == X86_VENDOR_INTEL) && |
| 859 | !APIC_XAPIC(apic_version[boot_cpu_physical_apicid])) |
| 860 | return io_apic_get_unique_id(nr_ioapics, id); |
| 861 | else |
| 862 | return id; |
| 863 | } |
| 864 | |
Andi Kleen | 19f03ff | 2006-09-26 10:52:30 +0200 | [diff] [blame] | 865 | void __init mp_register_ioapic(u8 id, u32 address, u32 gsi_base) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 866 | { |
Andi Kleen | 19f03ff | 2006-09-26 10:52:30 +0200 | [diff] [blame] | 867 | int idx = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 868 | |
Alexey Starikovskiy | 857033a | 2008-03-17 22:08:05 +0300 | [diff] [blame] | 869 | if (bad_ioapic(address)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 870 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 871 | |
Alexey Starikovskiy | e3e3ffa | 2008-03-17 22:08:11 +0300 | [diff] [blame] | 872 | idx = nr_ioapics; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 873 | |
| 874 | mp_ioapics[idx].mpc_type = MP_IOAPIC; |
| 875 | mp_ioapics[idx].mpc_flags = MPC_APIC_USABLE; |
| 876 | mp_ioapics[idx].mpc_apicaddr = address; |
| 877 | |
| 878 | set_fixmap_nocache(FIX_IO_APIC_BASE_0 + idx, address); |
Alexey Starikovskiy | e3e3ffa | 2008-03-17 22:08:11 +0300 | [diff] [blame] | 879 | mp_ioapics[idx].mpc_apicid = uniq_ioapic_id(id); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 880 | mp_ioapics[idx].mpc_apicver = io_apic_get_version(idx); |
| 881 | |
| 882 | /* |
| 883 | * Build basic GSI lookup table to facilitate gsi->io_apic lookups |
| 884 | * and to prevent reprogramming of IOAPIC pins (PCI GSIs). |
| 885 | */ |
| 886 | mp_ioapic_routing[idx].apic_id = mp_ioapics[idx].mpc_apicid; |
| 887 | mp_ioapic_routing[idx].gsi_base = gsi_base; |
Thomas Gleixner | 64883ab | 2008-01-30 13:30:35 +0100 | [diff] [blame] | 888 | mp_ioapic_routing[idx].gsi_end = gsi_base + |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 889 | io_apic_get_redir_entries(idx); |
| 890 | |
Thomas Gleixner | 64883ab | 2008-01-30 13:30:35 +0100 | [diff] [blame] | 891 | printk("IOAPIC[%d]: apic_id %d, version %d, address 0x%x, " |
| 892 | "GSI %d-%d\n", idx, mp_ioapics[idx].mpc_apicid, |
Alexey Starikovskiy | e3e3ffa | 2008-03-17 22:08:11 +0300 | [diff] [blame] | 893 | mp_ioapics[idx].mpc_apicver, |
| 894 | mp_ioapics[idx].mpc_apicaddr, |
Thomas Gleixner | 64883ab | 2008-01-30 13:30:35 +0100 | [diff] [blame] | 895 | mp_ioapic_routing[idx].gsi_base, |
| 896 | mp_ioapic_routing[idx].gsi_end); |
Alexey Starikovskiy | e3e3ffa | 2008-03-17 22:08:11 +0300 | [diff] [blame] | 897 | |
| 898 | nr_ioapics++; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 899 | } |
| 900 | |
Andi Kleen | 19f03ff | 2006-09-26 10:52:30 +0200 | [diff] [blame] | 901 | void __init |
| 902 | mp_override_legacy_irq(u8 bus_irq, u8 polarity, u8 trigger, u32 gsi) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 903 | { |
| 904 | struct mpc_config_intsrc intsrc; |
| 905 | int ioapic = -1; |
| 906 | int pin = -1; |
| 907 | |
| 908 | /* |
| 909 | * Convert 'gsi' to 'ioapic.pin'. |
| 910 | */ |
| 911 | ioapic = mp_find_ioapic(gsi); |
| 912 | if (ioapic < 0) |
| 913 | return; |
| 914 | pin = gsi - mp_ioapic_routing[ioapic].gsi_base; |
| 915 | |
| 916 | /* |
| 917 | * TBD: This check is for faulty timer entries, where the override |
| 918 | * erroneously sets the trigger to level, resulting in a HUGE |
| 919 | * increase of timer interrupts! |
| 920 | */ |
| 921 | if ((bus_irq == 0) && (trigger == 3)) |
| 922 | trigger = 1; |
| 923 | |
| 924 | intsrc.mpc_type = MP_INTSRC; |
| 925 | intsrc.mpc_irqtype = mp_INT; |
| 926 | intsrc.mpc_irqflag = (trigger << 2) | polarity; |
| 927 | intsrc.mpc_srcbus = MP_ISA_BUS; |
| 928 | intsrc.mpc_srcbusirq = bus_irq; /* IRQ */ |
| 929 | intsrc.mpc_dstapic = mp_ioapics[ioapic].mpc_apicid; /* APIC ID */ |
| 930 | intsrc.mpc_dstirq = pin; /* INTIN# */ |
| 931 | |
| 932 | Dprintk("Int: type %d, pol %d, trig %d, bus %d, irq %d, %d-%d\n", |
| 933 | intsrc.mpc_irqtype, intsrc.mpc_irqflag & 3, |
| 934 | (intsrc.mpc_irqflag >> 2) & 3, intsrc.mpc_srcbus, |
| 935 | intsrc.mpc_srcbusirq, intsrc.mpc_dstapic, intsrc.mpc_dstirq); |
| 936 | |
| 937 | mp_irqs[mp_irq_entries] = intsrc; |
| 938 | if (++mp_irq_entries == MAX_IRQ_SOURCES) |
| 939 | panic("Max # of irq sources exceeded!\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 940 | } |
| 941 | |
Alexey Starikovskiy | 2df2972 | 2008-03-27 23:53:54 +0300 | [diff] [blame] | 942 | int es7000_plat; |
| 943 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 944 | void __init mp_config_acpi_legacy_irqs (void) |
| 945 | { |
| 946 | struct mpc_config_intsrc intsrc; |
Andi Kleen | 19f03ff | 2006-09-26 10:52:30 +0200 | [diff] [blame] | 947 | int i = 0; |
| 948 | int ioapic = -1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 949 | |
Alexey Starikovskiy | c0a282c | 2008-03-20 14:55:02 +0300 | [diff] [blame] | 950 | #if defined (CONFIG_MCA) || defined (CONFIG_EISA) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 951 | /* |
| 952 | * Fabricate the legacy ISA bus (bus #31). |
| 953 | */ |
| 954 | mp_bus_id_to_type[MP_ISA_BUS] = MP_BUS_ISA; |
Alexey Starikovskiy | c0a282c | 2008-03-20 14:55:02 +0300 | [diff] [blame] | 955 | #endif |
Alexey Starikovskiy | a6333c3 | 2008-03-20 14:54:09 +0300 | [diff] [blame] | 956 | set_bit(MP_ISA_BUS, mp_bus_not_pci); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 957 | Dprintk("Bus #%d is ISA\n", MP_ISA_BUS); |
| 958 | |
| 959 | /* |
| 960 | * Older generations of ES7000 have no legacy identity mappings |
| 961 | */ |
| 962 | if (es7000_plat == 1) |
| 963 | return; |
| 964 | |
| 965 | /* |
| 966 | * Locate the IOAPIC that manages the ISA IRQs (0-15). |
| 967 | */ |
| 968 | ioapic = mp_find_ioapic(0); |
| 969 | if (ioapic < 0) |
| 970 | return; |
| 971 | |
| 972 | intsrc.mpc_type = MP_INTSRC; |
| 973 | intsrc.mpc_irqflag = 0; /* Conforming */ |
| 974 | intsrc.mpc_srcbus = MP_ISA_BUS; |
| 975 | intsrc.mpc_dstapic = mp_ioapics[ioapic].mpc_apicid; |
| 976 | |
| 977 | /* |
| 978 | * Use the default configuration for the IRQs 0-15. Unless |
Simon Arlott | 27b46d7 | 2007-10-20 01:13:56 +0200 | [diff] [blame] | 979 | * overridden by (MADT) interrupt source override entries. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 980 | */ |
| 981 | for (i = 0; i < 16; i++) { |
| 982 | int idx; |
| 983 | |
| 984 | for (idx = 0; idx < mp_irq_entries; idx++) { |
| 985 | struct mpc_config_intsrc *irq = mp_irqs + idx; |
| 986 | |
| 987 | /* Do we already have a mapping for this ISA IRQ? */ |
| 988 | if (irq->mpc_srcbus == MP_ISA_BUS && irq->mpc_srcbusirq == i) |
| 989 | break; |
| 990 | |
| 991 | /* Do we already have a mapping for this IOAPIC pin */ |
| 992 | if ((irq->mpc_dstapic == intsrc.mpc_dstapic) && |
| 993 | (irq->mpc_dstirq == i)) |
| 994 | break; |
| 995 | } |
| 996 | |
| 997 | if (idx != mp_irq_entries) { |
| 998 | printk(KERN_DEBUG "ACPI: IRQ%d used by override.\n", i); |
| 999 | continue; /* IRQ already used */ |
| 1000 | } |
| 1001 | |
| 1002 | intsrc.mpc_irqtype = mp_INT; |
| 1003 | intsrc.mpc_srcbusirq = i; /* Identity mapped */ |
| 1004 | intsrc.mpc_dstirq = i; |
| 1005 | |
| 1006 | Dprintk("Int: type %d, pol %d, trig %d, bus %d, irq %d, " |
| 1007 | "%d-%d\n", intsrc.mpc_irqtype, intsrc.mpc_irqflag & 3, |
| 1008 | (intsrc.mpc_irqflag >> 2) & 3, intsrc.mpc_srcbus, |
| 1009 | intsrc.mpc_srcbusirq, intsrc.mpc_dstapic, |
| 1010 | intsrc.mpc_dstirq); |
| 1011 | |
| 1012 | mp_irqs[mp_irq_entries] = intsrc; |
| 1013 | if (++mp_irq_entries == MAX_IRQ_SOURCES) |
| 1014 | panic("Max # of irq sources exceeded!\n"); |
| 1015 | } |
| 1016 | } |
| 1017 | |
Natalie Protasevich | c434b7a | 2005-06-23 00:08:29 -0700 | [diff] [blame] | 1018 | #define MAX_GSI_NUM 4096 |
Len Brown | 2ba7dee | 2008-01-30 13:31:02 +0100 | [diff] [blame] | 1019 | #define IRQ_COMPRESSION_START 64 |
Natalie Protasevich | c434b7a | 2005-06-23 00:08:29 -0700 | [diff] [blame] | 1020 | |
Andi Kleen | 19f03ff | 2006-09-26 10:52:30 +0200 | [diff] [blame] | 1021 | int mp_register_gsi(u32 gsi, int triggering, int polarity) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1022 | { |
Andi Kleen | 19f03ff | 2006-09-26 10:52:30 +0200 | [diff] [blame] | 1023 | int ioapic = -1; |
| 1024 | int ioapic_pin = 0; |
| 1025 | int idx, bit = 0; |
Len Brown | 2ba7dee | 2008-01-30 13:31:02 +0100 | [diff] [blame] | 1026 | static int pci_irq = IRQ_COMPRESSION_START; |
Natalie Protasevich | c434b7a | 2005-06-23 00:08:29 -0700 | [diff] [blame] | 1027 | /* |
Joe Perches | ab4a574 | 2008-01-30 13:31:42 +0100 | [diff] [blame] | 1028 | * Mapping between Global System Interrupts, which |
Natalie Protasevich | c434b7a | 2005-06-23 00:08:29 -0700 | [diff] [blame] | 1029 | * represent all possible interrupts, and IRQs |
| 1030 | * assigned to actual devices. |
| 1031 | */ |
| 1032 | static int gsi_to_irq[MAX_GSI_NUM]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1033 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1034 | /* Don't set up the ACPI SCI because it's already set up */ |
Alexey Starikovskiy | cee324b | 2007-02-02 19:48:22 +0300 | [diff] [blame] | 1035 | if (acpi_gbl_FADT.sci_interrupt == gsi) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1036 | return gsi; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1037 | |
| 1038 | ioapic = mp_find_ioapic(gsi); |
| 1039 | if (ioapic < 0) { |
| 1040 | printk(KERN_WARNING "No IOAPIC for GSI %u\n", gsi); |
| 1041 | return gsi; |
| 1042 | } |
| 1043 | |
| 1044 | ioapic_pin = gsi - mp_ioapic_routing[ioapic].gsi_base; |
| 1045 | |
| 1046 | if (ioapic_renumber_irq) |
| 1047 | gsi = ioapic_renumber_irq(ioapic, gsi); |
| 1048 | |
| 1049 | /* |
| 1050 | * Avoid pin reprogramming. PRTs typically include entries |
| 1051 | * with redundant pin->gsi mappings (but unique PCI devices); |
| 1052 | * we only program the IOAPIC on the first. |
| 1053 | */ |
| 1054 | bit = ioapic_pin % 32; |
| 1055 | idx = (ioapic_pin < 32) ? 0 : (ioapic_pin / 32); |
| 1056 | if (idx > 3) { |
| 1057 | printk(KERN_ERR "Invalid reference to IOAPIC pin " |
| 1058 | "%d-%d\n", mp_ioapic_routing[ioapic].apic_id, |
| 1059 | ioapic_pin); |
| 1060 | return gsi; |
| 1061 | } |
| 1062 | if ((1<<bit) & mp_ioapic_routing[ioapic].pin_programmed[idx]) { |
| 1063 | Dprintk(KERN_DEBUG "Pin %d-%d already programmed\n", |
| 1064 | mp_ioapic_routing[ioapic].apic_id, ioapic_pin); |
Len Brown | 2ba7dee | 2008-01-30 13:31:02 +0100 | [diff] [blame] | 1065 | return (gsi < IRQ_COMPRESSION_START ? gsi : gsi_to_irq[gsi]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1066 | } |
| 1067 | |
| 1068 | mp_ioapic_routing[ioapic].pin_programmed[idx] |= (1<<bit); |
| 1069 | |
Len Brown | 2ba7dee | 2008-01-30 13:31:02 +0100 | [diff] [blame] | 1070 | /* |
| 1071 | * For GSI >= 64, use IRQ compression |
| 1072 | */ |
| 1073 | if ((gsi >= IRQ_COMPRESSION_START) |
| 1074 | && (triggering == ACPI_LEVEL_SENSITIVE)) { |
Natalie Protasevich | c434b7a | 2005-06-23 00:08:29 -0700 | [diff] [blame] | 1075 | /* |
| 1076 | * For PCI devices assign IRQs in order, avoiding gaps |
| 1077 | * due to unused I/O APIC pins. |
| 1078 | */ |
| 1079 | int irq = gsi; |
| 1080 | if (gsi < MAX_GSI_NUM) { |
Kimball Murray | e0c1e9b | 2006-05-08 15:17:16 +0200 | [diff] [blame] | 1081 | /* |
| 1082 | * Retain the VIA chipset work-around (gsi > 15), but |
| 1083 | * avoid a problem where the 8254 timer (IRQ0) is setup |
| 1084 | * via an override (so it's not on pin 0 of the ioapic), |
| 1085 | * and at the same time, the pin 0 interrupt is a PCI |
| 1086 | * type. The gsi > 15 test could cause these two pins |
| 1087 | * to be shared as IRQ0, and they are not shareable. |
| 1088 | * So test for this condition, and if necessary, avoid |
| 1089 | * the pin collision. |
| 1090 | */ |
Adrian Bunk | ede1389 | 2008-03-17 22:29:32 +0200 | [diff] [blame] | 1091 | gsi = pci_irq++; |
Natalie.Protasevich@unisys.com | e1afc3f | 2005-07-29 14:03:32 -0700 | [diff] [blame] | 1092 | /* |
| 1093 | * Don't assign IRQ used by ACPI SCI |
| 1094 | */ |
Alexey Starikovskiy | cee324b | 2007-02-02 19:48:22 +0300 | [diff] [blame] | 1095 | if (gsi == acpi_gbl_FADT.sci_interrupt) |
Natalie.Protasevich@unisys.com | e1afc3f | 2005-07-29 14:03:32 -0700 | [diff] [blame] | 1096 | gsi = pci_irq++; |
Natalie Protasevich | c434b7a | 2005-06-23 00:08:29 -0700 | [diff] [blame] | 1097 | gsi_to_irq[irq] = gsi; |
| 1098 | } else { |
| 1099 | printk(KERN_ERR "GSI %u is too high\n", gsi); |
| 1100 | return gsi; |
| 1101 | } |
| 1102 | } |
| 1103 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1104 | io_apic_set_pci_routing(ioapic, ioapic_pin, gsi, |
Len Brown | cb65469 | 2005-12-28 02:43:51 -0500 | [diff] [blame] | 1105 | triggering == ACPI_EDGE_SENSITIVE ? 0 : 1, |
| 1106 | polarity == ACPI_ACTIVE_HIGH ? 0 : 1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1107 | return gsi; |
| 1108 | } |
| 1109 | |
Len Brown | 8466361 | 2005-08-24 12:09:07 -0400 | [diff] [blame] | 1110 | #endif /* CONFIG_X86_IO_APIC */ |
Len Brown | 888ba6c | 2005-08-24 12:07:20 -0400 | [diff] [blame] | 1111 | #endif /* CONFIG_ACPI */ |