Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
Alexey Starikovskiy | 11113f8 | 2008-05-14 19:02:57 +0400 | [diff] [blame] | 2 | * Intel Multiprocessor Specification 1.1 and 1.4 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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> |
Alexey Starikovskiy | 85bddde | 2008-04-04 23:43:18 +0400 | [diff] [blame] | 7 | * (c) 2008 Alexey Starikovskiy <astarikovskiy@suse.de> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 8 | */ |
| 9 | |
| 10 | #include <linux/mm.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 11 | #include <linux/init.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 12 | #include <linux/delay.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 13 | #include <linux/bootmem.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 14 | #include <linux/kernel_stat.h> |
| 15 | #include <linux/mc146818rtc.h> |
| 16 | #include <linux/bitops.h> |
Alexey Starikovskiy | 85bddde | 2008-04-04 23:43:18 +0400 | [diff] [blame] | 17 | #include <linux/acpi.h> |
| 18 | #include <linux/module.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 19 | |
| 20 | #include <asm/smp.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 21 | #include <asm/mtrr.h> |
| 22 | #include <asm/mpspec.h> |
Alexey Starikovskiy | 85bddde | 2008-04-04 23:43:18 +0400 | [diff] [blame] | 23 | #include <asm/pgalloc.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 24 | #include <asm/io_apic.h> |
Alexey Starikovskiy | 85bddde | 2008-04-04 23:43:18 +0400 | [diff] [blame] | 25 | #include <asm/proto.h> |
| 26 | #include <asm/acpi.h> |
Alexey Starikovskiy | ce3fe6b | 2008-03-17 22:08:17 +0300 | [diff] [blame] | 27 | #include <asm/bios_ebda.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 28 | |
| 29 | #include <mach_apic.h> |
Alexey Starikovskiy | 85bddde | 2008-04-04 23:43:18 +0400 | [diff] [blame] | 30 | #ifdef CONFIG_X86_32 |
Andi Kleen | 874c4fe | 2006-09-26 10:52:26 +0200 | [diff] [blame] | 31 | #include <mach_apicdef.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 32 | #include <mach_mpparse.h> |
Alexey Starikovskiy | 85bddde | 2008-04-04 23:43:18 +0400 | [diff] [blame] | 33 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 34 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 35 | /* |
| 36 | * Various Linux-internal data structures created from the |
| 37 | * MP-table. |
| 38 | */ |
Alexey Starikovskiy | c0a282c | 2008-03-20 14:55:02 +0300 | [diff] [blame] | 39 | #if defined (CONFIG_MCA) || defined (CONFIG_EISA) |
Alexey Starikovskiy | 4ef8129 | 2008-04-04 23:42:03 +0400 | [diff] [blame] | 40 | int mp_bus_id_to_type[MAX_MP_BUSSES]; |
Alexey Starikovskiy | c0a282c | 2008-03-20 14:55:02 +0300 | [diff] [blame] | 41 | #endif |
Alexey Starikovskiy | 85bddde | 2008-04-04 23:43:18 +0400 | [diff] [blame] | 42 | |
Alexey Starikovskiy | a6333c3 | 2008-03-20 14:54:09 +0300 | [diff] [blame] | 43 | DECLARE_BITMAP(mp_bus_not_pci, MAX_MP_BUSSES); |
Alexey Starikovskiy | 4ef8129 | 2008-04-04 23:42:03 +0400 | [diff] [blame] | 44 | int mp_bus_id_to_pci_bus[MAX_MP_BUSSES] = {[0 ... MAX_MP_BUSSES - 1] = -1 }; |
Alexey Starikovskiy | 85bddde | 2008-04-04 23:43:18 +0400 | [diff] [blame] | 45 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 46 | static int mp_current_pci_id; |
| 47 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 48 | /* |
| 49 | * Intel MP BIOS table parsing routines: |
| 50 | */ |
| 51 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 52 | /* |
| 53 | * Checksum an MP configuration block. |
| 54 | */ |
| 55 | |
| 56 | static int __init mpf_checksum(unsigned char *mp, int len) |
| 57 | { |
| 58 | int sum = 0; |
| 59 | |
| 60 | while (len--) |
| 61 | sum += *mp++; |
| 62 | |
| 63 | return sum & 0xFF; |
| 64 | } |
| 65 | |
Alexey Starikovskiy | 8642050 | 2008-03-17 22:08:55 +0300 | [diff] [blame] | 66 | #ifdef CONFIG_X86_NUMAQ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 67 | /* |
| 68 | * Have to match translation table entries to main table entries by counter |
| 69 | * hence the mpc_record variable .... can't see a less disgusting way of |
| 70 | * doing this .... |
| 71 | */ |
| 72 | |
Alexey Starikovskiy | 4ef8129 | 2008-04-04 23:42:03 +0400 | [diff] [blame] | 73 | static int mpc_record; |
| 74 | static struct mpc_config_translation *translation_table[MAX_MPC_ENTRY] |
| 75 | __cpuinitdata; |
Alexey Starikovskiy | 8642050 | 2008-03-17 22:08:55 +0300 | [diff] [blame] | 76 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 77 | |
Alexey Starikovskiy | c853c67 | 2008-03-27 23:54:13 +0300 | [diff] [blame] | 78 | static void __cpuinit MP_processor_info(struct mpc_config_processor *m) |
| 79 | { |
| 80 | int apicid; |
Alexey Starikovskiy | 746f224 | 2008-04-04 23:42:15 +0400 | [diff] [blame] | 81 | char *bootup_cpu = ""; |
Alexey Starikovskiy | c853c67 | 2008-03-27 23:54:13 +0300 | [diff] [blame] | 82 | |
Glauber Costa | 7b1292e | 2008-03-03 14:12:41 -0300 | [diff] [blame] | 83 | if (!(m->mpc_cpuflag & CPU_ENABLED)) { |
| 84 | disabled_cpus++; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 85 | return; |
Glauber Costa | 7b1292e | 2008-03-03 14:12:41 -0300 | [diff] [blame] | 86 | } |
Alexey Starikovskiy | 4655c7d | 2008-03-17 22:08:36 +0300 | [diff] [blame] | 87 | #ifdef CONFIG_X86_NUMAQ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 88 | apicid = mpc_apic_id(m, translation_table[mpc_record]); |
Alexey Starikovskiy | 4655c7d | 2008-03-17 22:08:36 +0300 | [diff] [blame] | 89 | #else |
Alexey Starikovskiy | 4655c7d | 2008-03-17 22:08:36 +0300 | [diff] [blame] | 90 | apicid = m->mpc_apicid; |
| 91 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 92 | if (m->mpc_cpuflag & CPU_BOOTPROCESSOR) { |
Alexey Starikovskiy | 746f224 | 2008-04-04 23:42:15 +0400 | [diff] [blame] | 93 | bootup_cpu = " (Bootup-CPU)"; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 94 | boot_cpu_physical_apicid = m->mpc_apicid; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 95 | } |
| 96 | |
Alexey Starikovskiy | 746f224 | 2008-04-04 23:42:15 +0400 | [diff] [blame] | 97 | printk(KERN_INFO "Processor #%d%s\n", m->mpc_apicid, bootup_cpu); |
Alexey Starikovskiy | c853c67 | 2008-03-27 23:54:13 +0300 | [diff] [blame] | 98 | generic_processor_info(apicid, m->mpc_apicver); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 99 | } |
| 100 | |
Alexey Starikovskiy | 4ef8129 | 2008-04-04 23:42:03 +0400 | [diff] [blame] | 101 | static void __init MP_bus_info(struct mpc_config_bus *m) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 102 | { |
| 103 | char str[7]; |
| 104 | |
| 105 | memcpy(str, m->mpc_bustype, 6); |
| 106 | str[6] = 0; |
| 107 | |
Alexey Starikovskiy | 0ec153a | 2008-03-17 22:08:48 +0300 | [diff] [blame] | 108 | #ifdef CONFIG_X86_NUMAQ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 109 | mpc_oem_bus_info(m, str, translation_table[mpc_record]); |
Alexey Starikovskiy | 0ec153a | 2008-03-17 22:08:48 +0300 | [diff] [blame] | 110 | #else |
Yinghai Lu | 11a62a0 | 2008-05-12 15:43:38 +0200 | [diff] [blame] | 111 | printk(KERN_INFO "Bus #%d is %s\n", m->mpc_busid, str); |
Alexey Starikovskiy | 0ec153a | 2008-03-17 22:08:48 +0300 | [diff] [blame] | 112 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 113 | |
Andi Kleen | 5e4edbb | 2006-09-26 10:52:35 +0200 | [diff] [blame] | 114 | #if MAX_MP_BUSSES < 256 |
Randy Dunlap | c0ec31a | 2006-04-10 22:53:13 -0700 | [diff] [blame] | 115 | if (m->mpc_busid >= MAX_MP_BUSSES) { |
| 116 | printk(KERN_WARNING "MP table busid value (%d) for bustype %s " |
Alexey Starikovskiy | 4ef8129 | 2008-04-04 23:42:03 +0400 | [diff] [blame] | 117 | " is too large, max. supported is %d\n", |
| 118 | m->mpc_busid, str, MAX_MP_BUSSES - 1); |
Randy Dunlap | c0ec31a | 2006-04-10 22:53:13 -0700 | [diff] [blame] | 119 | return; |
| 120 | } |
Andi Kleen | 5e4edbb | 2006-09-26 10:52:35 +0200 | [diff] [blame] | 121 | #endif |
Randy Dunlap | c0ec31a | 2006-04-10 22:53:13 -0700 | [diff] [blame] | 122 | |
Alexey Starikovskiy | f8924e7 | 2008-04-04 23:42:21 +0400 | [diff] [blame] | 123 | if (strncmp(str, BUSTYPE_ISA, sizeof(BUSTYPE_ISA) - 1) == 0) { |
| 124 | set_bit(m->mpc_busid, mp_bus_not_pci); |
| 125 | #if defined(CONFIG_EISA) || defined (CONFIG_MCA) |
| 126 | mp_bus_id_to_type[m->mpc_busid] = MP_BUS_ISA; |
| 127 | #endif |
| 128 | } else if (strncmp(str, BUSTYPE_PCI, sizeof(BUSTYPE_PCI) - 1) == 0) { |
Alexey Starikovskiy | d285e33 | 2008-03-17 22:08:42 +0300 | [diff] [blame] | 129 | #ifdef CONFIG_X86_NUMAQ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 130 | mpc_oem_pci_bus(m, translation_table[mpc_record]); |
Alexey Starikovskiy | d285e33 | 2008-03-17 22:08:42 +0300 | [diff] [blame] | 131 | #endif |
Alexey Starikovskiy | a6333c3 | 2008-03-20 14:54:09 +0300 | [diff] [blame] | 132 | clear_bit(m->mpc_busid, mp_bus_not_pci); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 133 | mp_bus_id_to_pci_bus[m->mpc_busid] = mp_current_pci_id; |
| 134 | mp_current_pci_id++; |
Alexey Starikovskiy | c0a282c | 2008-03-20 14:55:02 +0300 | [diff] [blame] | 135 | #if defined(CONFIG_EISA) || defined (CONFIG_MCA) |
| 136 | mp_bus_id_to_type[m->mpc_busid] = MP_BUS_PCI; |
Alexey Starikovskiy | 4ef8129 | 2008-04-04 23:42:03 +0400 | [diff] [blame] | 137 | } else if (strncmp(str, BUSTYPE_EISA, sizeof(BUSTYPE_EISA) - 1) == 0) { |
Alexey Starikovskiy | 9e0a2de | 2008-03-20 14:54:56 +0300 | [diff] [blame] | 138 | mp_bus_id_to_type[m->mpc_busid] = MP_BUS_EISA; |
Alexey Starikovskiy | 4ef8129 | 2008-04-04 23:42:03 +0400 | [diff] [blame] | 139 | } else if (strncmp(str, BUSTYPE_MCA, sizeof(BUSTYPE_MCA) - 1) == 0) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 140 | mp_bus_id_to_type[m->mpc_busid] = MP_BUS_MCA; |
Alexey Starikovskiy | c0a282c | 2008-03-20 14:55:02 +0300 | [diff] [blame] | 141 | #endif |
Alexey Starikovskiy | f8924e7 | 2008-04-04 23:42:21 +0400 | [diff] [blame] | 142 | } else |
| 143 | printk(KERN_WARNING "Unknown bustype %s - ignoring\n", str); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 144 | } |
| 145 | |
Alexey Starikovskiy | 61048c6 | 2008-04-04 23:41:07 +0400 | [diff] [blame] | 146 | #ifdef CONFIG_X86_IO_APIC |
| 147 | |
Alexey Starikovskiy | 857033a | 2008-03-17 22:08:05 +0300 | [diff] [blame] | 148 | static int bad_ioapic(unsigned long address) |
| 149 | { |
| 150 | if (nr_ioapics >= MAX_IO_APICS) { |
| 151 | printk(KERN_ERR "ERROR: Max # of I/O APICs (%d) exceeded " |
| 152 | "(found %d)\n", MAX_IO_APICS, nr_ioapics); |
| 153 | panic("Recompile kernel with bigger MAX_IO_APICS!\n"); |
| 154 | } |
| 155 | if (!address) { |
| 156 | printk(KERN_ERR "WARNING: Bogus (zero) I/O APIC address" |
| 157 | " found in table, skipping!\n"); |
| 158 | return 1; |
| 159 | } |
| 160 | return 0; |
| 161 | } |
| 162 | |
Alexey Starikovskiy | 4ef8129 | 2008-04-04 23:42:03 +0400 | [diff] [blame] | 163 | static void __init MP_ioapic_info(struct mpc_config_ioapic *m) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 164 | { |
| 165 | if (!(m->mpc_flags & MPC_APIC_USABLE)) |
| 166 | return; |
| 167 | |
Thomas Gleixner | 64883ab | 2008-01-30 13:30:35 +0100 | [diff] [blame] | 168 | printk(KERN_INFO "I/O APIC #%d Version %d at 0x%X.\n", |
Alexey Starikovskiy | 4ef8129 | 2008-04-04 23:42:03 +0400 | [diff] [blame] | 169 | m->mpc_apicid, m->mpc_apicver, m->mpc_apicaddr); |
Alexey Starikovskiy | 857033a | 2008-03-17 22:08:05 +0300 | [diff] [blame] | 170 | |
| 171 | if (bad_ioapic(m->mpc_apicaddr)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 172 | return; |
Alexey Starikovskiy | 857033a | 2008-03-17 22:08:05 +0300 | [diff] [blame] | 173 | |
Alexey Starikovskiy | ec2cd0a | 2008-05-14 19:03:10 +0400 | [diff] [blame] | 174 | mp_ioapics[nr_ioapics].mp_apicaddr = m->mpc_apicaddr; |
| 175 | mp_ioapics[nr_ioapics].mp_apicid = m->mpc_apicid; |
| 176 | mp_ioapics[nr_ioapics].mp_type = m->mpc_type; |
| 177 | mp_ioapics[nr_ioapics].mp_apicver = m->mpc_apicver; |
| 178 | mp_ioapics[nr_ioapics].mp_flags = m->mpc_flags; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 179 | nr_ioapics++; |
| 180 | } |
| 181 | |
Alexey Starikovskiy | 4ef8129 | 2008-04-04 23:42:03 +0400 | [diff] [blame] | 182 | static void __init MP_intsrc_info(struct mpc_config_intsrc *m) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 183 | { |
Yinghai Lu | 11a62a0 | 2008-05-12 15:43:38 +0200 | [diff] [blame] | 184 | printk(KERN_INFO "Int: type %d, pol %d, trig %d, bus %02x," |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 185 | " IRQ %02x, APIC ID %x, APIC INT %02x\n", |
Alexey Starikovskiy | 4ef8129 | 2008-04-04 23:42:03 +0400 | [diff] [blame] | 186 | m->mpc_irqtype, m->mpc_irqflag & 3, |
| 187 | (m->mpc_irqflag >> 2) & 3, m->mpc_srcbus, |
| 188 | m->mpc_srcbusirq, m->mpc_dstapic, m->mpc_dstirq); |
Alexey Starikovskiy | 2fddb6e28 | 2008-05-14 19:03:17 +0400 | [diff] [blame] | 189 | mp_irqs[mp_irq_entries].mp_dstapic = m->mpc_dstapic; |
| 190 | mp_irqs[mp_irq_entries].mp_type = m->mpc_type; |
| 191 | mp_irqs[mp_irq_entries].mp_irqtype = m->mpc_irqtype; |
| 192 | mp_irqs[mp_irq_entries].mp_irqflag = m->mpc_irqflag; |
| 193 | mp_irqs[mp_irq_entries].mp_srcbus = m->mpc_srcbus; |
| 194 | mp_irqs[mp_irq_entries].mp_srcbusirq = m->mpc_srcbusirq; |
| 195 | mp_irqs[mp_irq_entries].mp_dstirq = m->mpc_dstirq; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 196 | if (++mp_irq_entries == MAX_IRQ_SOURCES) |
| 197 | panic("Max # of irq sources exceeded!!\n"); |
| 198 | } |
| 199 | |
Alexey Starikovskiy | 61048c6 | 2008-04-04 23:41:07 +0400 | [diff] [blame] | 200 | #endif |
| 201 | |
Alexey Starikovskiy | 4ef8129 | 2008-04-04 23:42:03 +0400 | [diff] [blame] | 202 | static void __init MP_lintsrc_info(struct mpc_config_lintsrc *m) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 203 | { |
Yinghai Lu | 11a62a0 | 2008-05-12 15:43:38 +0200 | [diff] [blame] | 204 | printk(KERN_INFO "Lint: type %d, pol %d, trig %d, bus %02x," |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 205 | " IRQ %02x, APIC ID %x, APIC LINT %02x\n", |
Alexey Starikovskiy | 4ef8129 | 2008-04-04 23:42:03 +0400 | [diff] [blame] | 206 | m->mpc_irqtype, m->mpc_irqflag & 3, |
| 207 | (m->mpc_irqflag >> 2) & 3, m->mpc_srcbusid, |
| 208 | m->mpc_srcbusirq, m->mpc_destapic, m->mpc_destapiclint); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 209 | } |
| 210 | |
| 211 | #ifdef CONFIG_X86_NUMAQ |
Alexey Starikovskiy | 4ef8129 | 2008-04-04 23:42:03 +0400 | [diff] [blame] | 212 | static void __init MP_translation_info(struct mpc_config_translation *m) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 213 | { |
Alexey Starikovskiy | 4ef8129 | 2008-04-04 23:42:03 +0400 | [diff] [blame] | 214 | printk(KERN_INFO |
| 215 | "Translation: record %d, type %d, quad %d, global %d, local %d\n", |
| 216 | mpc_record, m->trans_type, m->trans_quad, m->trans_global, |
| 217 | m->trans_local); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 218 | |
Alexey Starikovskiy | 4ef8129 | 2008-04-04 23:42:03 +0400 | [diff] [blame] | 219 | if (mpc_record >= MAX_MPC_ENTRY) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 220 | printk(KERN_ERR "MAX_MPC_ENTRY exceeded!\n"); |
| 221 | else |
Alexey Starikovskiy | 4ef8129 | 2008-04-04 23:42:03 +0400 | [diff] [blame] | 222 | translation_table[mpc_record] = m; /* stash this for later */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 223 | if (m->trans_quad < MAX_NUMNODES && !node_online(m->trans_quad)) |
| 224 | node_set_online(m->trans_quad); |
| 225 | } |
| 226 | |
| 227 | /* |
| 228 | * Read/parse the MPC oem tables |
| 229 | */ |
| 230 | |
Alexey Starikovskiy | 4ef8129 | 2008-04-04 23:42:03 +0400 | [diff] [blame] | 231 | static void __init smp_read_mpc_oem(struct mp_config_oemtable *oemtable, |
| 232 | unsigned short oemsize) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 233 | { |
Alexey Starikovskiy | 4ef8129 | 2008-04-04 23:42:03 +0400 | [diff] [blame] | 234 | int count = sizeof(*oemtable); /* the header size */ |
| 235 | unsigned char *oemptr = ((unsigned char *)oemtable) + count; |
| 236 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 237 | mpc_record = 0; |
Alexey Starikovskiy | 4ef8129 | 2008-04-04 23:42:03 +0400 | [diff] [blame] | 238 | printk(KERN_INFO "Found an OEM MPC table at %8p - parsing it ... \n", |
| 239 | oemtable); |
| 240 | if (memcmp(oemtable->oem_signature, MPC_OEM_SIGNATURE, 4)) { |
| 241 | printk(KERN_WARNING |
| 242 | "SMP mpc oemtable: bad signature [%c%c%c%c]!\n", |
| 243 | oemtable->oem_signature[0], oemtable->oem_signature[1], |
| 244 | oemtable->oem_signature[2], oemtable->oem_signature[3]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 245 | return; |
| 246 | } |
Alexey Starikovskiy | 4ef8129 | 2008-04-04 23:42:03 +0400 | [diff] [blame] | 247 | if (mpf_checksum((unsigned char *)oemtable, oemtable->oem_length)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 248 | printk(KERN_WARNING "SMP oem mptable: checksum error!\n"); |
| 249 | return; |
| 250 | } |
| 251 | while (count < oemtable->oem_length) { |
| 252 | switch (*oemptr) { |
Alexey Starikovskiy | 4ef8129 | 2008-04-04 23:42:03 +0400 | [diff] [blame] | 253 | case MP_TRANSLATION: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 254 | { |
Alexey Starikovskiy | 4ef8129 | 2008-04-04 23:42:03 +0400 | [diff] [blame] | 255 | struct mpc_config_translation *m = |
| 256 | (struct mpc_config_translation *)oemptr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 257 | MP_translation_info(m); |
| 258 | oemptr += sizeof(*m); |
| 259 | count += sizeof(*m); |
| 260 | ++mpc_record; |
| 261 | break; |
| 262 | } |
Alexey Starikovskiy | 4ef8129 | 2008-04-04 23:42:03 +0400 | [diff] [blame] | 263 | default: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 264 | { |
Alexey Starikovskiy | 4ef8129 | 2008-04-04 23:42:03 +0400 | [diff] [blame] | 265 | printk(KERN_WARNING |
| 266 | "Unrecognised OEM table entry type! - %d\n", |
| 267 | (int)*oemptr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 268 | return; |
| 269 | } |
| 270 | } |
Alexey Starikovskiy | 4ef8129 | 2008-04-04 23:42:03 +0400 | [diff] [blame] | 271 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 272 | } |
| 273 | |
| 274 | static inline void mps_oem_check(struct mp_config_table *mpc, char *oem, |
Alexey Starikovskiy | 4ef8129 | 2008-04-04 23:42:03 +0400 | [diff] [blame] | 275 | char *productid) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 276 | { |
| 277 | if (strncmp(oem, "IBM NUMA", 8)) |
| 278 | printk("Warning! May not be a NUMA-Q system!\n"); |
| 279 | if (mpc->mpc_oemptr) |
Alexey Starikovskiy | 4ef8129 | 2008-04-04 23:42:03 +0400 | [diff] [blame] | 280 | smp_read_mpc_oem((struct mp_config_oemtable *)mpc->mpc_oemptr, |
| 281 | mpc->mpc_oemsize); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 282 | } |
Alexey Starikovskiy | 4ef8129 | 2008-04-04 23:42:03 +0400 | [diff] [blame] | 283 | #endif /* CONFIG_X86_NUMAQ */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 284 | |
| 285 | /* |
| 286 | * Read/parse the MPC |
| 287 | */ |
| 288 | |
Alexey Starikovskiy | 888032c | 2008-04-04 23:42:09 +0400 | [diff] [blame] | 289 | static int __init smp_read_mpc(struct mp_config_table *mpc, unsigned early) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 290 | { |
| 291 | char str[16]; |
| 292 | char oem[10]; |
Alexey Starikovskiy | 4ef8129 | 2008-04-04 23:42:03 +0400 | [diff] [blame] | 293 | int count = sizeof(*mpc); |
| 294 | unsigned char *mpt = ((unsigned char *)mpc) + count; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 295 | |
Alexey Starikovskiy | 4ef8129 | 2008-04-04 23:42:03 +0400 | [diff] [blame] | 296 | if (memcmp(mpc->mpc_signature, MPC_SIGNATURE, 4)) { |
Alexey Starikovskiy | e950bea | 2008-04-04 23:42:27 +0400 | [diff] [blame] | 297 | printk(KERN_ERR "MPTABLE: bad signature [%c%c%c%c]!\n", |
| 298 | mpc->mpc_signature[0], mpc->mpc_signature[1], |
| 299 | mpc->mpc_signature[2], mpc->mpc_signature[3]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 300 | return 0; |
| 301 | } |
Alexey Starikovskiy | 4ef8129 | 2008-04-04 23:42:03 +0400 | [diff] [blame] | 302 | if (mpf_checksum((unsigned char *)mpc, mpc->mpc_length)) { |
Alexey Starikovskiy | e950bea | 2008-04-04 23:42:27 +0400 | [diff] [blame] | 303 | printk(KERN_ERR "MPTABLE: checksum error!\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 304 | return 0; |
| 305 | } |
Alexey Starikovskiy | 4ef8129 | 2008-04-04 23:42:03 +0400 | [diff] [blame] | 306 | if (mpc->mpc_spec != 0x01 && mpc->mpc_spec != 0x04) { |
Alexey Starikovskiy | e950bea | 2008-04-04 23:42:27 +0400 | [diff] [blame] | 307 | printk(KERN_ERR "MPTABLE: bad table version (%d)!!\n", |
Alexey Starikovskiy | 4ef8129 | 2008-04-04 23:42:03 +0400 | [diff] [blame] | 308 | mpc->mpc_spec); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 309 | return 0; |
| 310 | } |
| 311 | if (!mpc->mpc_lapic) { |
Alexey Starikovskiy | e950bea | 2008-04-04 23:42:27 +0400 | [diff] [blame] | 312 | printk(KERN_ERR "MPTABLE: null local APIC address!\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 313 | return 0; |
| 314 | } |
Alexey Starikovskiy | 4ef8129 | 2008-04-04 23:42:03 +0400 | [diff] [blame] | 315 | memcpy(oem, mpc->mpc_oem, 8); |
| 316 | oem[8] = 0; |
Yinghai Lu | 11a62a0 | 2008-05-12 15:43:38 +0200 | [diff] [blame] | 317 | printk(KERN_INFO "MPTABLE: OEM ID: %s\n", oem); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 318 | |
Alexey Starikovskiy | 4ef8129 | 2008-04-04 23:42:03 +0400 | [diff] [blame] | 319 | memcpy(str, mpc->mpc_productid, 12); |
| 320 | str[12] = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 321 | |
Alexey Starikovskiy | e950bea | 2008-04-04 23:42:27 +0400 | [diff] [blame] | 322 | #ifdef CONFIG_X86_32 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 323 | mps_oem_check(mpc, oem, str); |
Alexey Starikovskiy | e950bea | 2008-04-04 23:42:27 +0400 | [diff] [blame] | 324 | #endif |
Yinghai Lu | 11a62a0 | 2008-05-12 15:43:38 +0200 | [diff] [blame] | 325 | printk(KERN_INFO "MPTABLE: Product ID: %s\n", str); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 326 | |
Alexey Starikovskiy | e950bea | 2008-04-04 23:42:27 +0400 | [diff] [blame] | 327 | printk(KERN_INFO "MPTABLE: APIC at: 0x%X\n", mpc->mpc_lapic); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 328 | |
Alexey Starikovskiy | e950bea | 2008-04-04 23:42:27 +0400 | [diff] [blame] | 329 | /* save the local APIC address, it might be non-default */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 330 | if (!acpi_lapic) |
| 331 | mp_lapic_addr = mpc->mpc_lapic; |
| 332 | |
Alexey Starikovskiy | 888032c | 2008-04-04 23:42:09 +0400 | [diff] [blame] | 333 | if (early) |
| 334 | return 1; |
| 335 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 336 | /* |
Alexey Starikovskiy | 4ef8129 | 2008-04-04 23:42:03 +0400 | [diff] [blame] | 337 | * Now process the configuration blocks. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 338 | */ |
Alexey Starikovskiy | 8642050 | 2008-03-17 22:08:55 +0300 | [diff] [blame] | 339 | #ifdef CONFIG_X86_NUMAQ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 340 | mpc_record = 0; |
Alexey Starikovskiy | 8642050 | 2008-03-17 22:08:55 +0300 | [diff] [blame] | 341 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 342 | while (count < mpc->mpc_length) { |
Alexey Starikovskiy | 4ef8129 | 2008-04-04 23:42:03 +0400 | [diff] [blame] | 343 | switch (*mpt) { |
| 344 | case MP_PROCESSOR: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 345 | { |
Alexey Starikovskiy | 4ef8129 | 2008-04-04 23:42:03 +0400 | [diff] [blame] | 346 | struct mpc_config_processor *m = |
| 347 | (struct mpc_config_processor *)mpt; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 348 | /* ACPI may have already provided this data */ |
| 349 | if (!acpi_lapic) |
| 350 | MP_processor_info(m); |
| 351 | mpt += sizeof(*m); |
| 352 | count += sizeof(*m); |
| 353 | break; |
| 354 | } |
Alexey Starikovskiy | 4ef8129 | 2008-04-04 23:42:03 +0400 | [diff] [blame] | 355 | case MP_BUS: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 356 | { |
Alexey Starikovskiy | 4ef8129 | 2008-04-04 23:42:03 +0400 | [diff] [blame] | 357 | struct mpc_config_bus *m = |
| 358 | (struct mpc_config_bus *)mpt; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 359 | MP_bus_info(m); |
| 360 | mpt += sizeof(*m); |
| 361 | count += sizeof(*m); |
| 362 | break; |
| 363 | } |
Alexey Starikovskiy | 4ef8129 | 2008-04-04 23:42:03 +0400 | [diff] [blame] | 364 | case MP_IOAPIC: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 365 | { |
Alexey Starikovskiy | 61048c6 | 2008-04-04 23:41:07 +0400 | [diff] [blame] | 366 | #ifdef CONFIG_X86_IO_APIC |
Alexey Starikovskiy | 4ef8129 | 2008-04-04 23:42:03 +0400 | [diff] [blame] | 367 | struct mpc_config_ioapic *m = |
| 368 | (struct mpc_config_ioapic *)mpt; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 369 | MP_ioapic_info(m); |
Alexey Starikovskiy | 61048c6 | 2008-04-04 23:41:07 +0400 | [diff] [blame] | 370 | #endif |
Alexey Starikovskiy | 4ef8129 | 2008-04-04 23:42:03 +0400 | [diff] [blame] | 371 | mpt += sizeof(struct mpc_config_ioapic); |
| 372 | count += sizeof(struct mpc_config_ioapic); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 373 | break; |
| 374 | } |
Alexey Starikovskiy | 4ef8129 | 2008-04-04 23:42:03 +0400 | [diff] [blame] | 375 | case MP_INTSRC: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 376 | { |
Alexey Starikovskiy | 61048c6 | 2008-04-04 23:41:07 +0400 | [diff] [blame] | 377 | #ifdef CONFIG_X86_IO_APIC |
Alexey Starikovskiy | 4ef8129 | 2008-04-04 23:42:03 +0400 | [diff] [blame] | 378 | struct mpc_config_intsrc *m = |
| 379 | (struct mpc_config_intsrc *)mpt; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 380 | |
| 381 | MP_intsrc_info(m); |
Alexey Starikovskiy | 61048c6 | 2008-04-04 23:41:07 +0400 | [diff] [blame] | 382 | #endif |
Alexey Starikovskiy | 4ef8129 | 2008-04-04 23:42:03 +0400 | [diff] [blame] | 383 | mpt += sizeof(struct mpc_config_intsrc); |
| 384 | count += sizeof(struct mpc_config_intsrc); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 385 | break; |
| 386 | } |
Alexey Starikovskiy | 4ef8129 | 2008-04-04 23:42:03 +0400 | [diff] [blame] | 387 | case MP_LINTSRC: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 388 | { |
Alexey Starikovskiy | 4ef8129 | 2008-04-04 23:42:03 +0400 | [diff] [blame] | 389 | struct mpc_config_lintsrc *m = |
| 390 | (struct mpc_config_lintsrc *)mpt; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 391 | MP_lintsrc_info(m); |
Alexey Starikovskiy | 4ef8129 | 2008-04-04 23:42:03 +0400 | [diff] [blame] | 392 | mpt += sizeof(*m); |
| 393 | count += sizeof(*m); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 394 | break; |
| 395 | } |
Alexey Starikovskiy | 4ef8129 | 2008-04-04 23:42:03 +0400 | [diff] [blame] | 396 | default: |
Yinghai Lu | 711554d | 2008-04-07 11:36:39 -0700 | [diff] [blame] | 397 | /* wrong mptable */ |
| 398 | printk(KERN_ERR "Your mptable is wrong, contact your HW vendor!\n"); |
| 399 | printk(KERN_ERR "type %x\n", *mpt); |
| 400 | print_hex_dump(KERN_ERR, " ", DUMP_PREFIX_ADDRESS, 16, |
| 401 | 1, mpc, mpc->mpc_length, 1); |
| 402 | count = mpc->mpc_length; |
| 403 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 404 | } |
Alexey Starikovskiy | 8642050 | 2008-03-17 22:08:55 +0300 | [diff] [blame] | 405 | #ifdef CONFIG_X86_NUMAQ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 406 | ++mpc_record; |
Alexey Starikovskiy | 8642050 | 2008-03-17 22:08:55 +0300 | [diff] [blame] | 407 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 408 | } |
Ingo Molnar | 3c43f03 | 2007-05-02 19:27:04 +0200 | [diff] [blame] | 409 | setup_apic_routing(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 410 | if (!num_processors) |
Alexey Starikovskiy | e950bea | 2008-04-04 23:42:27 +0400 | [diff] [blame] | 411 | printk(KERN_ERR "MPTABLE: no processors registered!\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 412 | return num_processors; |
| 413 | } |
| 414 | |
Alexey Starikovskiy | 61048c6 | 2008-04-04 23:41:07 +0400 | [diff] [blame] | 415 | #ifdef CONFIG_X86_IO_APIC |
| 416 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 417 | static int __init ELCR_trigger(unsigned int irq) |
| 418 | { |
| 419 | unsigned int port; |
| 420 | |
| 421 | port = 0x4d0 + (irq >> 3); |
| 422 | return (inb(port) >> (irq & 7)) & 1; |
| 423 | } |
| 424 | |
| 425 | static void __init construct_default_ioirq_mptable(int mpc_default_type) |
| 426 | { |
| 427 | struct mpc_config_intsrc intsrc; |
| 428 | int i; |
| 429 | int ELCR_fallback = 0; |
| 430 | |
| 431 | intsrc.mpc_type = MP_INTSRC; |
Alexey Starikovskiy | 4ef8129 | 2008-04-04 23:42:03 +0400 | [diff] [blame] | 432 | intsrc.mpc_irqflag = 0; /* conforming */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 433 | intsrc.mpc_srcbus = 0; |
Alexey Starikovskiy | ec2cd0a | 2008-05-14 19:03:10 +0400 | [diff] [blame] | 434 | intsrc.mpc_dstapic = mp_ioapics[0].mp_apicid; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 435 | |
| 436 | intsrc.mpc_irqtype = mp_INT; |
| 437 | |
| 438 | /* |
| 439 | * If true, we have an ISA/PCI system with no IRQ entries |
| 440 | * in the MP table. To prevent the PCI interrupts from being set up |
| 441 | * incorrectly, we try to use the ELCR. The sanity check to see if |
| 442 | * there is good ELCR data is very simple - IRQ0, 1, 2 and 13 can |
| 443 | * never be level sensitive, so we simply see if the ELCR agrees. |
| 444 | * If it does, we assume it's valid. |
| 445 | */ |
| 446 | if (mpc_default_type == 5) { |
Alexey Starikovskiy | 62441bf | 2008-04-04 23:42:34 +0400 | [diff] [blame] | 447 | printk(KERN_INFO "ISA/PCI bus type with no IRQ information... " |
| 448 | "falling back to ELCR\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 449 | |
Alexey Starikovskiy | 62441bf | 2008-04-04 23:42:34 +0400 | [diff] [blame] | 450 | if (ELCR_trigger(0) || ELCR_trigger(1) || ELCR_trigger(2) || |
| 451 | ELCR_trigger(13)) |
| 452 | printk(KERN_ERR "ELCR contains invalid data... " |
| 453 | "not using ELCR\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 454 | else { |
Alexey Starikovskiy | 4ef8129 | 2008-04-04 23:42:03 +0400 | [diff] [blame] | 455 | printk(KERN_INFO |
| 456 | "Using ELCR to identify PCI interrupts\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 457 | ELCR_fallback = 1; |
| 458 | } |
| 459 | } |
| 460 | |
| 461 | for (i = 0; i < 16; i++) { |
| 462 | switch (mpc_default_type) { |
| 463 | case 2: |
| 464 | if (i == 0 || i == 13) |
| 465 | continue; /* IRQ0 & IRQ13 not connected */ |
| 466 | /* fall through */ |
| 467 | default: |
| 468 | if (i == 2) |
| 469 | continue; /* IRQ2 is never connected */ |
| 470 | } |
| 471 | |
| 472 | if (ELCR_fallback) { |
| 473 | /* |
| 474 | * If the ELCR indicates a level-sensitive interrupt, we |
| 475 | * copy that information over to the MP table in the |
| 476 | * irqflag field (level sensitive, active high polarity). |
| 477 | */ |
| 478 | if (ELCR_trigger(i)) |
| 479 | intsrc.mpc_irqflag = 13; |
| 480 | else |
| 481 | intsrc.mpc_irqflag = 0; |
| 482 | } |
| 483 | |
| 484 | intsrc.mpc_srcbusirq = i; |
Alexey Starikovskiy | 4ef8129 | 2008-04-04 23:42:03 +0400 | [diff] [blame] | 485 | intsrc.mpc_dstirq = i ? i : 2; /* IRQ0 to INTIN2 */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 486 | MP_intsrc_info(&intsrc); |
| 487 | } |
| 488 | |
| 489 | intsrc.mpc_irqtype = mp_ExtINT; |
| 490 | intsrc.mpc_srcbusirq = 0; |
Alexey Starikovskiy | 4ef8129 | 2008-04-04 23:42:03 +0400 | [diff] [blame] | 491 | intsrc.mpc_dstirq = 0; /* 8259A to INTIN0 */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 492 | MP_intsrc_info(&intsrc); |
| 493 | } |
| 494 | |
Alexey Starikovskiy | 61048c6 | 2008-04-04 23:41:07 +0400 | [diff] [blame] | 495 | #endif |
| 496 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 497 | static inline void __init construct_default_ISA_mptable(int mpc_default_type) |
| 498 | { |
| 499 | struct mpc_config_processor processor; |
| 500 | struct mpc_config_bus bus; |
Alexey Starikovskiy | 61048c6 | 2008-04-04 23:41:07 +0400 | [diff] [blame] | 501 | #ifdef CONFIG_X86_IO_APIC |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 502 | struct mpc_config_ioapic ioapic; |
Alexey Starikovskiy | 61048c6 | 2008-04-04 23:41:07 +0400 | [diff] [blame] | 503 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 504 | struct mpc_config_lintsrc lintsrc; |
| 505 | int linttypes[2] = { mp_ExtINT, mp_NMI }; |
| 506 | int i; |
| 507 | |
| 508 | /* |
| 509 | * local APIC has default address |
| 510 | */ |
| 511 | mp_lapic_addr = APIC_DEFAULT_PHYS_BASE; |
| 512 | |
| 513 | /* |
| 514 | * 2 CPUs, numbered 0 & 1. |
| 515 | */ |
| 516 | processor.mpc_type = MP_PROCESSOR; |
| 517 | /* Either an integrated APIC or a discrete 82489DX. */ |
| 518 | processor.mpc_apicver = mpc_default_type > 4 ? 0x10 : 0x01; |
| 519 | processor.mpc_cpuflag = CPU_ENABLED; |
| 520 | processor.mpc_cpufeature = (boot_cpu_data.x86 << 8) | |
Alexey Starikovskiy | 4ef8129 | 2008-04-04 23:42:03 +0400 | [diff] [blame] | 521 | (boot_cpu_data.x86_model << 4) | boot_cpu_data.x86_mask; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 522 | processor.mpc_featureflag = boot_cpu_data.x86_capability[0]; |
| 523 | processor.mpc_reserved[0] = 0; |
| 524 | processor.mpc_reserved[1] = 0; |
| 525 | for (i = 0; i < 2; i++) { |
| 526 | processor.mpc_apicid = i; |
| 527 | MP_processor_info(&processor); |
| 528 | } |
| 529 | |
| 530 | bus.mpc_type = MP_BUS; |
| 531 | bus.mpc_busid = 0; |
| 532 | switch (mpc_default_type) { |
Alexey Starikovskiy | 4ef8129 | 2008-04-04 23:42:03 +0400 | [diff] [blame] | 533 | default: |
Alexey Starikovskiy | 62441bf | 2008-04-04 23:42:34 +0400 | [diff] [blame] | 534 | printk(KERN_ERR "???\nUnknown standard configuration %d\n", |
Alexey Starikovskiy | 4ef8129 | 2008-04-04 23:42:03 +0400 | [diff] [blame] | 535 | mpc_default_type); |
| 536 | /* fall through */ |
| 537 | case 1: |
| 538 | case 5: |
| 539 | memcpy(bus.mpc_bustype, "ISA ", 6); |
| 540 | break; |
| 541 | case 2: |
| 542 | case 6: |
| 543 | case 3: |
| 544 | memcpy(bus.mpc_bustype, "EISA ", 6); |
| 545 | break; |
| 546 | case 4: |
| 547 | case 7: |
| 548 | memcpy(bus.mpc_bustype, "MCA ", 6); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 549 | } |
| 550 | MP_bus_info(&bus); |
| 551 | if (mpc_default_type > 4) { |
| 552 | bus.mpc_busid = 1; |
| 553 | memcpy(bus.mpc_bustype, "PCI ", 6); |
| 554 | MP_bus_info(&bus); |
| 555 | } |
| 556 | |
Alexey Starikovskiy | 61048c6 | 2008-04-04 23:41:07 +0400 | [diff] [blame] | 557 | #ifdef CONFIG_X86_IO_APIC |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 558 | ioapic.mpc_type = MP_IOAPIC; |
| 559 | ioapic.mpc_apicid = 2; |
| 560 | ioapic.mpc_apicver = mpc_default_type > 4 ? 0x10 : 0x01; |
| 561 | ioapic.mpc_flags = MPC_APIC_USABLE; |
| 562 | ioapic.mpc_apicaddr = 0xFEC00000; |
| 563 | MP_ioapic_info(&ioapic); |
| 564 | |
| 565 | /* |
| 566 | * We set up most of the low 16 IO-APIC pins according to MPS rules. |
| 567 | */ |
| 568 | construct_default_ioirq_mptable(mpc_default_type); |
Alexey Starikovskiy | 61048c6 | 2008-04-04 23:41:07 +0400 | [diff] [blame] | 569 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 570 | lintsrc.mpc_type = MP_LINTSRC; |
Alexey Starikovskiy | 4ef8129 | 2008-04-04 23:42:03 +0400 | [diff] [blame] | 571 | lintsrc.mpc_irqflag = 0; /* conforming */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 572 | lintsrc.mpc_srcbusid = 0; |
| 573 | lintsrc.mpc_srcbusirq = 0; |
| 574 | lintsrc.mpc_destapic = MP_APIC_ALL; |
| 575 | for (i = 0; i < 2; i++) { |
| 576 | lintsrc.mpc_irqtype = linttypes[i]; |
| 577 | lintsrc.mpc_destapiclint = i; |
| 578 | MP_lintsrc_info(&lintsrc); |
| 579 | } |
| 580 | } |
| 581 | |
| 582 | static struct intel_mp_floating *mpf_found; |
| 583 | |
| 584 | /* |
| 585 | * Scan the memory blocks for an SMP configuration block. |
| 586 | */ |
Alexey Starikovskiy | 888032c | 2008-04-04 23:42:09 +0400 | [diff] [blame] | 587 | static void __init __get_smp_config(unsigned early) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 588 | { |
| 589 | struct intel_mp_floating *mpf = mpf_found; |
| 590 | |
Alexey Starikovskiy | 888032c | 2008-04-04 23:42:09 +0400 | [diff] [blame] | 591 | if (acpi_lapic && early) |
| 592 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 593 | /* |
Alexey Starikovskiy | 4ef8129 | 2008-04-04 23:42:03 +0400 | [diff] [blame] | 594 | * ACPI supports both logical (e.g. Hyper-Threading) and physical |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 595 | * processors, where MPS only supports physical. |
| 596 | */ |
| 597 | if (acpi_lapic && acpi_ioapic) { |
Alexey Starikovskiy | 4421b1c | 2008-04-04 23:42:40 +0400 | [diff] [blame] | 598 | printk(KERN_INFO "Using ACPI (MADT) for SMP configuration " |
| 599 | "information\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 600 | return; |
Alexey Starikovskiy | 4ef8129 | 2008-04-04 23:42:03 +0400 | [diff] [blame] | 601 | } else if (acpi_lapic) |
Alexey Starikovskiy | 4421b1c | 2008-04-04 23:42:40 +0400 | [diff] [blame] | 602 | printk(KERN_INFO "Using ACPI for processor (LAPIC) " |
| 603 | "configuration information\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 604 | |
Alexey Starikovskiy | 4ef8129 | 2008-04-04 23:42:03 +0400 | [diff] [blame] | 605 | printk(KERN_INFO "Intel MultiProcessor Specification v1.%d\n", |
| 606 | mpf->mpf_specification); |
Alexey Starikovskiy | b3e2416 | 2008-05-23 01:54:44 +0400 | [diff] [blame] | 607 | #if defined(CONFIG_X86_LOCAL_APIC) && defined(CONFIG_X86_32) |
Alexey Starikovskiy | 4ef8129 | 2008-04-04 23:42:03 +0400 | [diff] [blame] | 608 | if (mpf->mpf_feature2 & (1 << 7)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 609 | printk(KERN_INFO " IMCR and PIC compatibility mode.\n"); |
| 610 | pic_mode = 1; |
| 611 | } else { |
| 612 | printk(KERN_INFO " Virtual Wire compatibility mode.\n"); |
| 613 | pic_mode = 0; |
| 614 | } |
Alexey Starikovskiy | 4421b1c | 2008-04-04 23:42:40 +0400 | [diff] [blame] | 615 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 616 | /* |
| 617 | * Now see if we need to read further. |
| 618 | */ |
| 619 | if (mpf->mpf_feature1 != 0) { |
Alexey Starikovskiy | 888032c | 2008-04-04 23:42:09 +0400 | [diff] [blame] | 620 | if (early) { |
| 621 | /* |
| 622 | * local APIC has default address |
| 623 | */ |
| 624 | mp_lapic_addr = APIC_DEFAULT_PHYS_BASE; |
| 625 | return; |
| 626 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 627 | |
Alexey Starikovskiy | 4ef8129 | 2008-04-04 23:42:03 +0400 | [diff] [blame] | 628 | printk(KERN_INFO "Default MP configuration #%d\n", |
| 629 | mpf->mpf_feature1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 630 | construct_default_ISA_mptable(mpf->mpf_feature1); |
| 631 | |
| 632 | } else if (mpf->mpf_physptr) { |
| 633 | |
| 634 | /* |
| 635 | * Read the physical hardware table. Anything here will |
| 636 | * override the defaults. |
| 637 | */ |
Alexey Starikovskiy | 888032c | 2008-04-04 23:42:09 +0400 | [diff] [blame] | 638 | if (!smp_read_mpc(phys_to_virt(mpf->mpf_physptr), early)) { |
Alexey Starikovskiy | bab4b27 | 2008-05-19 19:47:03 +0400 | [diff] [blame^] | 639 | #ifdef CONFIG_X86_LOCAL_APIC |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 640 | smp_found_config = 0; |
Alexey Starikovskiy | bab4b27 | 2008-05-19 19:47:03 +0400 | [diff] [blame^] | 641 | #endif |
Alexey Starikovskiy | 4ef8129 | 2008-04-04 23:42:03 +0400 | [diff] [blame] | 642 | printk(KERN_ERR |
| 643 | "BIOS bug, MP table errors detected!...\n"); |
Alexey Starikovskiy | 4421b1c | 2008-04-04 23:42:40 +0400 | [diff] [blame] | 644 | printk(KERN_ERR "... disabling SMP support. " |
| 645 | "(tell your hw vendor)\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 646 | return; |
| 647 | } |
Alexey Starikovskiy | 61048c6 | 2008-04-04 23:41:07 +0400 | [diff] [blame] | 648 | |
Alexey Starikovskiy | 888032c | 2008-04-04 23:42:09 +0400 | [diff] [blame] | 649 | if (early) |
| 650 | return; |
Alexey Starikovskiy | 61048c6 | 2008-04-04 23:41:07 +0400 | [diff] [blame] | 651 | #ifdef CONFIG_X86_IO_APIC |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 652 | /* |
| 653 | * If there are no explicit MP IRQ entries, then we are |
| 654 | * broken. We set up most of the low 16 IO-APIC pins to |
| 655 | * ISA defaults and hope it will work. |
| 656 | */ |
| 657 | if (!mp_irq_entries) { |
| 658 | struct mpc_config_bus bus; |
| 659 | |
Alexey Starikovskiy | 4421b1c | 2008-04-04 23:42:40 +0400 | [diff] [blame] | 660 | printk(KERN_ERR "BIOS bug, no explicit IRQ entries, " |
| 661 | "using default mptable. " |
| 662 | "(tell your hw vendor)\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 663 | |
| 664 | bus.mpc_type = MP_BUS; |
| 665 | bus.mpc_busid = 0; |
| 666 | memcpy(bus.mpc_bustype, "ISA ", 6); |
| 667 | MP_bus_info(&bus); |
| 668 | |
| 669 | construct_default_ioirq_mptable(0); |
| 670 | } |
Alexey Starikovskiy | 61048c6 | 2008-04-04 23:41:07 +0400 | [diff] [blame] | 671 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 672 | } else |
| 673 | BUG(); |
| 674 | |
Alexey Starikovskiy | 888032c | 2008-04-04 23:42:09 +0400 | [diff] [blame] | 675 | if (!early) |
| 676 | printk(KERN_INFO "Processors: %d\n", num_processors); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 677 | /* |
| 678 | * Only use the first configuration found. |
| 679 | */ |
| 680 | } |
| 681 | |
Alexey Starikovskiy | 888032c | 2008-04-04 23:42:09 +0400 | [diff] [blame] | 682 | void __init early_get_smp_config(void) |
| 683 | { |
| 684 | __get_smp_config(1); |
| 685 | } |
| 686 | |
| 687 | void __init get_smp_config(void) |
| 688 | { |
| 689 | __get_smp_config(0); |
| 690 | } |
| 691 | |
| 692 | static int __init smp_scan_config(unsigned long base, unsigned long length, |
| 693 | unsigned reserve) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 694 | { |
Alexey Starikovskiy | 92fd4b7 | 2008-04-04 23:42:46 +0400 | [diff] [blame] | 695 | unsigned int *bp = phys_to_virt(base); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 696 | struct intel_mp_floating *mpf; |
| 697 | |
Yinghai Lu | 11a62a0 | 2008-05-12 15:43:38 +0200 | [diff] [blame] | 698 | printk(KERN_DEBUG "Scan SMP from %p for %ld bytes.\n", bp, length); |
Akinobu Mita | 5d47a27 | 2008-04-19 23:55:11 +0900 | [diff] [blame] | 699 | BUILD_BUG_ON(sizeof(*mpf) != 16); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 700 | |
| 701 | while (length > 0) { |
| 702 | mpf = (struct intel_mp_floating *)bp; |
| 703 | if ((*bp == SMP_MAGIC_IDENT) && |
Alexey Starikovskiy | 4ef8129 | 2008-04-04 23:42:03 +0400 | [diff] [blame] | 704 | (mpf->mpf_length == 1) && |
| 705 | !mpf_checksum((unsigned char *)bp, 16) && |
| 706 | ((mpf->mpf_specification == 1) |
| 707 | || (mpf->mpf_specification == 4))) { |
Alexey Starikovskiy | bab4b27 | 2008-05-19 19:47:03 +0400 | [diff] [blame^] | 708 | #ifdef CONFIG_X86_LOCAL_APIC |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 709 | smp_found_config = 1; |
Alexey Starikovskiy | bab4b27 | 2008-05-19 19:47:03 +0400 | [diff] [blame^] | 710 | #endif |
Alexey Starikovskiy | 92fd4b7 | 2008-04-04 23:42:46 +0400 | [diff] [blame] | 711 | mpf_found = mpf; |
| 712 | #ifdef CONFIG_X86_32 |
Ingo Molnar | e91a3b4 | 2008-01-30 13:33:08 +0100 | [diff] [blame] | 713 | printk(KERN_INFO "found SMP MP-table at [%p] %08lx\n", |
Alexey Starikovskiy | 4ef8129 | 2008-04-04 23:42:03 +0400 | [diff] [blame] | 714 | mpf, virt_to_phys(mpf)); |
Bernhard Walle | 72a7fe3 | 2008-02-07 00:15:17 -0800 | [diff] [blame] | 715 | reserve_bootmem(virt_to_phys(mpf), PAGE_SIZE, |
| 716 | BOOTMEM_DEFAULT); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 717 | if (mpf->mpf_physptr) { |
| 718 | /* |
| 719 | * We cannot access to MPC table to compute |
| 720 | * table size yet, as only few megabytes from |
| 721 | * the bottom is mapped now. |
| 722 | * PC-9800's MPC table places on the very last |
| 723 | * of physical memory; so that simply reserving |
| 724 | * PAGE_SIZE from mpg->mpf_physptr yields BUG() |
| 725 | * in reserve_bootmem. |
| 726 | */ |
| 727 | unsigned long size = PAGE_SIZE; |
| 728 | unsigned long end = max_low_pfn * PAGE_SIZE; |
| 729 | if (mpf->mpf_physptr + size > end) |
| 730 | size = end - mpf->mpf_physptr; |
Bernhard Walle | 72a7fe3 | 2008-02-07 00:15:17 -0800 | [diff] [blame] | 731 | reserve_bootmem(mpf->mpf_physptr, size, |
| 732 | BOOTMEM_DEFAULT); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 733 | } |
| 734 | |
Alexey Starikovskiy | 92fd4b7 | 2008-04-04 23:42:46 +0400 | [diff] [blame] | 735 | #else |
| 736 | if (!reserve) |
| 737 | return 1; |
| 738 | |
| 739 | reserve_bootmem_generic(virt_to_phys(mpf), PAGE_SIZE); |
| 740 | if (mpf->mpf_physptr) |
| 741 | reserve_bootmem_generic(mpf->mpf_physptr, |
| 742 | PAGE_SIZE); |
| 743 | #endif |
| 744 | return 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 745 | } |
| 746 | bp += 4; |
| 747 | length -= 16; |
| 748 | } |
| 749 | return 0; |
| 750 | } |
| 751 | |
Alexey Starikovskiy | 888032c | 2008-04-04 23:42:09 +0400 | [diff] [blame] | 752 | static void __init __find_smp_config(unsigned reserve) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 753 | { |
| 754 | unsigned int address; |
| 755 | |
| 756 | /* |
| 757 | * FIXME: Linux assumes you have 640K of base ram.. |
| 758 | * this continues the error... |
| 759 | * |
| 760 | * 1) Scan the bottom 1K for a signature |
| 761 | * 2) Scan the top 1K of base RAM |
| 762 | * 3) Scan the 64K of bios |
| 763 | */ |
Alexey Starikovskiy | 888032c | 2008-04-04 23:42:09 +0400 | [diff] [blame] | 764 | if (smp_scan_config(0x0, 0x400, reserve) || |
| 765 | smp_scan_config(639 * 0x400, 0x400, reserve) || |
| 766 | smp_scan_config(0xF0000, 0x10000, reserve)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 767 | return; |
| 768 | /* |
| 769 | * If it is an SMP machine we should know now, unless the |
| 770 | * configuration is in an EISA/MCA bus machine with an |
| 771 | * extended bios data area. |
| 772 | * |
| 773 | * there is a real-mode segmented pointer pointing to the |
| 774 | * 4K EBDA area at 0x40E, calculate and scan it here. |
| 775 | * |
| 776 | * NOTE! There are Linux loaders that will corrupt the EBDA |
| 777 | * area, and as such this kind of SMP config may be less |
| 778 | * trustworthy, simply because the SMP table may have been |
| 779 | * stomped on during early boot. These loaders are buggy and |
| 780 | * should be fixed. |
| 781 | * |
| 782 | * MP1.4 SPEC states to only scan first 1K of 4K EBDA. |
| 783 | */ |
| 784 | |
| 785 | address = get_bios_ebda(); |
| 786 | if (address) |
Alexey Starikovskiy | 888032c | 2008-04-04 23:42:09 +0400 | [diff] [blame] | 787 | smp_scan_config(address, 0x400, reserve); |
| 788 | } |
| 789 | |
| 790 | void __init early_find_smp_config(void) |
| 791 | { |
| 792 | __find_smp_config(0); |
| 793 | } |
| 794 | |
| 795 | void __init find_smp_config(void) |
| 796 | { |
| 797 | __find_smp_config(1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 798 | } |