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