blob: 9f3792d55044f9c479711084005239a0aafca0db [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Alexey Starikovskiy11113f82008-05-14 19:02:57 +04002 * Intel Multiprocessor Specification 1.1 and 1.4
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 * 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 Starikovskiy85bddde2008-04-04 23:43:18 +04007 * (c) 2008 Alexey Starikovskiy <astarikovskiy@suse.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008 */
9
10#include <linux/mm.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070011#include <linux/init.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070012#include <linux/delay.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070013#include <linux/bootmem.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#include <linux/kernel_stat.h>
15#include <linux/mc146818rtc.h>
16#include <linux/bitops.h>
Alexey Starikovskiy85bddde2008-04-04 23:43:18 +040017#include <linux/acpi.h>
18#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070019
20#include <asm/smp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#include <asm/mtrr.h>
22#include <asm/mpspec.h>
Alexey Starikovskiy85bddde2008-04-04 23:43:18 +040023#include <asm/pgalloc.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include <asm/io_apic.h>
Alexey Starikovskiy85bddde2008-04-04 23:43:18 +040025#include <asm/proto.h>
26#include <asm/acpi.h>
Alexey Starikovskiyce3fe6b2008-03-17 22:08:17 +030027#include <asm/bios_ebda.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070028
29#include <mach_apic.h>
Alexey Starikovskiy85bddde2008-04-04 23:43:18 +040030#ifdef CONFIG_X86_32
Andi Kleen874c4fe2006-09-26 10:52:26 +020031#include <mach_apicdef.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#include <mach_mpparse.h>
Alexey Starikovskiy85bddde2008-04-04 23:43:18 +040033#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070034
Linus Torvalds1da177e2005-04-16 15:20:36 -070035/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070036 * Checksum an MP configuration block.
37 */
38
39static int __init mpf_checksum(unsigned char *mp, int len)
40{
41 int sum = 0;
42
43 while (len--)
44 sum += *mp++;
45
46 return sum & 0xFF;
47}
48
Alexey Starikovskiy86420502008-03-17 22:08:55 +030049#ifdef CONFIG_X86_NUMAQ
Linus Torvalds1da177e2005-04-16 15:20:36 -070050/*
51 * Have to match translation table entries to main table entries by counter
52 * hence the mpc_record variable .... can't see a less disgusting way of
53 * doing this ....
54 */
55
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +040056static int mpc_record;
57static struct mpc_config_translation *translation_table[MAX_MPC_ENTRY]
58 __cpuinitdata;
Alexey Starikovskiy86420502008-03-17 22:08:55 +030059#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070060
Alexey Starikovskiyc853c672008-03-27 23:54:13 +030061static void __cpuinit MP_processor_info(struct mpc_config_processor *m)
62{
63 int apicid;
Alexey Starikovskiy746f2242008-04-04 23:42:15 +040064 char *bootup_cpu = "";
Alexey Starikovskiyc853c672008-03-27 23:54:13 +030065
Glauber Costa7b1292e2008-03-03 14:12:41 -030066 if (!(m->mpc_cpuflag & CPU_ENABLED)) {
67 disabled_cpus++;
Linus Torvalds1da177e2005-04-16 15:20:36 -070068 return;
Glauber Costa7b1292e2008-03-03 14:12:41 -030069 }
Alexey Starikovskiy4655c7d2008-03-17 22:08:36 +030070#ifdef CONFIG_X86_NUMAQ
Linus Torvalds1da177e2005-04-16 15:20:36 -070071 apicid = mpc_apic_id(m, translation_table[mpc_record]);
Alexey Starikovskiy4655c7d2008-03-17 22:08:36 +030072#else
Alexey Starikovskiy4655c7d2008-03-17 22:08:36 +030073 apicid = m->mpc_apicid;
74#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070075 if (m->mpc_cpuflag & CPU_BOOTPROCESSOR) {
Alexey Starikovskiy746f2242008-04-04 23:42:15 +040076 bootup_cpu = " (Bootup-CPU)";
Linus Torvalds1da177e2005-04-16 15:20:36 -070077 boot_cpu_physical_apicid = m->mpc_apicid;
Linus Torvalds1da177e2005-04-16 15:20:36 -070078 }
79
Alexey Starikovskiy746f2242008-04-04 23:42:15 +040080 printk(KERN_INFO "Processor #%d%s\n", m->mpc_apicid, bootup_cpu);
Alexey Starikovskiyc853c672008-03-27 23:54:13 +030081 generic_processor_info(apicid, m->mpc_apicver);
Linus Torvalds1da177e2005-04-16 15:20:36 -070082}
83
Thomas Gleixner85cc35f2008-05-25 21:21:36 +020084#ifdef CONFIG_X86_IO_APIC
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +040085static void __init MP_bus_info(struct mpc_config_bus *m)
Linus Torvalds1da177e2005-04-16 15:20:36 -070086{
87 char str[7];
Linus Torvalds1da177e2005-04-16 15:20:36 -070088 memcpy(str, m->mpc_bustype, 6);
89 str[6] = 0;
90
Alexey Starikovskiy0ec153a2008-03-17 22:08:48 +030091#ifdef CONFIG_X86_NUMAQ
Linus Torvalds1da177e2005-04-16 15:20:36 -070092 mpc_oem_bus_info(m, str, translation_table[mpc_record]);
Alexey Starikovskiy0ec153a2008-03-17 22:08:48 +030093#else
Yinghai Lu11a62a02008-05-12 15:43:38 +020094 printk(KERN_INFO "Bus #%d is %s\n", m->mpc_busid, str);
Alexey Starikovskiy0ec153a2008-03-17 22:08:48 +030095#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070096
Andi Kleen5e4edbb2006-09-26 10:52:35 +020097#if MAX_MP_BUSSES < 256
Randy Dunlapc0ec31a2006-04-10 22:53:13 -070098 if (m->mpc_busid >= MAX_MP_BUSSES) {
99 printk(KERN_WARNING "MP table busid value (%d) for bustype %s "
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400100 " is too large, max. supported is %d\n",
101 m->mpc_busid, str, MAX_MP_BUSSES - 1);
Randy Dunlapc0ec31a2006-04-10 22:53:13 -0700102 return;
103 }
Andi Kleen5e4edbb2006-09-26 10:52:35 +0200104#endif
Randy Dunlapc0ec31a2006-04-10 22:53:13 -0700105
Alexey Starikovskiyf8924e72008-04-04 23:42:21 +0400106 if (strncmp(str, BUSTYPE_ISA, sizeof(BUSTYPE_ISA) - 1) == 0) {
107 set_bit(m->mpc_busid, mp_bus_not_pci);
108#if defined(CONFIG_EISA) || defined (CONFIG_MCA)
109 mp_bus_id_to_type[m->mpc_busid] = MP_BUS_ISA;
110#endif
111 } else if (strncmp(str, BUSTYPE_PCI, sizeof(BUSTYPE_PCI) - 1) == 0) {
Alexey Starikovskiyd285e332008-03-17 22:08:42 +0300112#ifdef CONFIG_X86_NUMAQ
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113 mpc_oem_pci_bus(m, translation_table[mpc_record]);
Alexey Starikovskiyd285e332008-03-17 22:08:42 +0300114#endif
Alexey Starikovskiya6333c32008-03-20 14:54:09 +0300115 clear_bit(m->mpc_busid, mp_bus_not_pci);
Alexey Starikovskiyc0a282c2008-03-20 14:55:02 +0300116#if defined(CONFIG_EISA) || defined (CONFIG_MCA)
117 mp_bus_id_to_type[m->mpc_busid] = MP_BUS_PCI;
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400118 } else if (strncmp(str, BUSTYPE_EISA, sizeof(BUSTYPE_EISA) - 1) == 0) {
Alexey Starikovskiy9e0a2de2008-03-20 14:54:56 +0300119 mp_bus_id_to_type[m->mpc_busid] = MP_BUS_EISA;
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400120 } else if (strncmp(str, BUSTYPE_MCA, sizeof(BUSTYPE_MCA) - 1) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121 mp_bus_id_to_type[m->mpc_busid] = MP_BUS_MCA;
Alexey Starikovskiyc0a282c2008-03-20 14:55:02 +0300122#endif
Alexey Starikovskiyf8924e72008-04-04 23:42:21 +0400123 } else
124 printk(KERN_WARNING "Unknown bustype %s - ignoring\n", str);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125}
Thomas Gleixner85cc35f2008-05-25 21:21:36 +0200126#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127
Alexey Starikovskiy61048c62008-04-04 23:41:07 +0400128#ifdef CONFIG_X86_IO_APIC
129
Alexey Starikovskiy857033a2008-03-17 22:08:05 +0300130static int bad_ioapic(unsigned long address)
131{
132 if (nr_ioapics >= MAX_IO_APICS) {
133 printk(KERN_ERR "ERROR: Max # of I/O APICs (%d) exceeded "
134 "(found %d)\n", MAX_IO_APICS, nr_ioapics);
135 panic("Recompile kernel with bigger MAX_IO_APICS!\n");
136 }
137 if (!address) {
138 printk(KERN_ERR "WARNING: Bogus (zero) I/O APIC address"
139 " found in table, skipping!\n");
140 return 1;
141 }
142 return 0;
143}
144
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400145static void __init MP_ioapic_info(struct mpc_config_ioapic *m)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146{
147 if (!(m->mpc_flags & MPC_APIC_USABLE))
148 return;
149
Thomas Gleixner64883ab2008-01-30 13:30:35 +0100150 printk(KERN_INFO "I/O APIC #%d Version %d at 0x%X.\n",
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400151 m->mpc_apicid, m->mpc_apicver, m->mpc_apicaddr);
Alexey Starikovskiy857033a2008-03-17 22:08:05 +0300152
153 if (bad_ioapic(m->mpc_apicaddr))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154 return;
Alexey Starikovskiy857033a2008-03-17 22:08:05 +0300155
Alexey Starikovskiyec2cd0a2008-05-14 19:03:10 +0400156 mp_ioapics[nr_ioapics].mp_apicaddr = m->mpc_apicaddr;
157 mp_ioapics[nr_ioapics].mp_apicid = m->mpc_apicid;
158 mp_ioapics[nr_ioapics].mp_type = m->mpc_type;
159 mp_ioapics[nr_ioapics].mp_apicver = m->mpc_apicver;
160 mp_ioapics[nr_ioapics].mp_flags = m->mpc_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161 nr_ioapics++;
162}
163
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400164static void __init MP_intsrc_info(struct mpc_config_intsrc *m)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165{
Yinghai Lu11a62a02008-05-12 15:43:38 +0200166 printk(KERN_INFO "Int: type %d, pol %d, trig %d, bus %02x,"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 " IRQ %02x, APIC ID %x, APIC INT %02x\n",
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400168 m->mpc_irqtype, m->mpc_irqflag & 3,
169 (m->mpc_irqflag >> 2) & 3, m->mpc_srcbus,
170 m->mpc_srcbusirq, m->mpc_dstapic, m->mpc_dstirq);
Alexey Starikovskiy2fddb6e282008-05-14 19:03:17 +0400171 mp_irqs[mp_irq_entries].mp_dstapic = m->mpc_dstapic;
172 mp_irqs[mp_irq_entries].mp_type = m->mpc_type;
173 mp_irqs[mp_irq_entries].mp_irqtype = m->mpc_irqtype;
174 mp_irqs[mp_irq_entries].mp_irqflag = m->mpc_irqflag;
175 mp_irqs[mp_irq_entries].mp_srcbus = m->mpc_srcbus;
176 mp_irqs[mp_irq_entries].mp_srcbusirq = m->mpc_srcbusirq;
177 mp_irqs[mp_irq_entries].mp_dstirq = m->mpc_dstirq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 if (++mp_irq_entries == MAX_IRQ_SOURCES)
179 panic("Max # of irq sources exceeded!!\n");
180}
181
Alexey Starikovskiy61048c62008-04-04 23:41:07 +0400182#endif
183
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400184static void __init MP_lintsrc_info(struct mpc_config_lintsrc *m)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185{
Yinghai Lu11a62a02008-05-12 15:43:38 +0200186 printk(KERN_INFO "Lint: type %d, pol %d, trig %d, bus %02x,"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187 " IRQ %02x, APIC ID %x, APIC LINT %02x\n",
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400188 m->mpc_irqtype, m->mpc_irqflag & 3,
189 (m->mpc_irqflag >> 2) & 3, m->mpc_srcbusid,
190 m->mpc_srcbusirq, m->mpc_destapic, m->mpc_destapiclint);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191}
192
193#ifdef CONFIG_X86_NUMAQ
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400194static void __init MP_translation_info(struct mpc_config_translation *m)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195{
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400196 printk(KERN_INFO
197 "Translation: record %d, type %d, quad %d, global %d, local %d\n",
198 mpc_record, m->trans_type, m->trans_quad, m->trans_global,
199 m->trans_local);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400201 if (mpc_record >= MAX_MPC_ENTRY)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 printk(KERN_ERR "MAX_MPC_ENTRY exceeded!\n");
203 else
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400204 translation_table[mpc_record] = m; /* stash this for later */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205 if (m->trans_quad < MAX_NUMNODES && !node_online(m->trans_quad))
206 node_set_online(m->trans_quad);
207}
208
209/*
210 * Read/parse the MPC oem tables
211 */
212
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400213static void __init smp_read_mpc_oem(struct mp_config_oemtable *oemtable,
214 unsigned short oemsize)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215{
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400216 int count = sizeof(*oemtable); /* the header size */
217 unsigned char *oemptr = ((unsigned char *)oemtable) + count;
218
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219 mpc_record = 0;
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400220 printk(KERN_INFO "Found an OEM MPC table at %8p - parsing it ... \n",
221 oemtable);
222 if (memcmp(oemtable->oem_signature, MPC_OEM_SIGNATURE, 4)) {
223 printk(KERN_WARNING
224 "SMP mpc oemtable: bad signature [%c%c%c%c]!\n",
225 oemtable->oem_signature[0], oemtable->oem_signature[1],
226 oemtable->oem_signature[2], oemtable->oem_signature[3]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 return;
228 }
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400229 if (mpf_checksum((unsigned char *)oemtable, oemtable->oem_length)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 printk(KERN_WARNING "SMP oem mptable: checksum error!\n");
231 return;
232 }
233 while (count < oemtable->oem_length) {
234 switch (*oemptr) {
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400235 case MP_TRANSLATION:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236 {
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400237 struct mpc_config_translation *m =
238 (struct mpc_config_translation *)oemptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239 MP_translation_info(m);
240 oemptr += sizeof(*m);
241 count += sizeof(*m);
242 ++mpc_record;
243 break;
244 }
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400245 default:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246 {
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400247 printk(KERN_WARNING
248 "Unrecognised OEM table entry type! - %d\n",
249 (int)*oemptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250 return;
251 }
252 }
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400253 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254}
255
256static inline void mps_oem_check(struct mp_config_table *mpc, char *oem,
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400257 char *productid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258{
259 if (strncmp(oem, "IBM NUMA", 8))
260 printk("Warning! May not be a NUMA-Q system!\n");
261 if (mpc->mpc_oemptr)
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400262 smp_read_mpc_oem((struct mp_config_oemtable *)mpc->mpc_oemptr,
263 mpc->mpc_oemsize);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264}
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400265#endif /* CONFIG_X86_NUMAQ */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266
267/*
268 * Read/parse the MPC
269 */
270
Alexey Starikovskiy888032c2008-04-04 23:42:09 +0400271static int __init smp_read_mpc(struct mp_config_table *mpc, unsigned early)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272{
273 char str[16];
274 char oem[10];
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400275 int count = sizeof(*mpc);
276 unsigned char *mpt = ((unsigned char *)mpc) + count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400278 if (memcmp(mpc->mpc_signature, MPC_SIGNATURE, 4)) {
Alexey Starikovskiye950bea2008-04-04 23:42:27 +0400279 printk(KERN_ERR "MPTABLE: bad signature [%c%c%c%c]!\n",
280 mpc->mpc_signature[0], mpc->mpc_signature[1],
281 mpc->mpc_signature[2], mpc->mpc_signature[3]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282 return 0;
283 }
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400284 if (mpf_checksum((unsigned char *)mpc, mpc->mpc_length)) {
Alexey Starikovskiye950bea2008-04-04 23:42:27 +0400285 printk(KERN_ERR "MPTABLE: checksum error!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286 return 0;
287 }
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400288 if (mpc->mpc_spec != 0x01 && mpc->mpc_spec != 0x04) {
Alexey Starikovskiye950bea2008-04-04 23:42:27 +0400289 printk(KERN_ERR "MPTABLE: bad table version (%d)!!\n",
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400290 mpc->mpc_spec);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291 return 0;
292 }
293 if (!mpc->mpc_lapic) {
Alexey Starikovskiye950bea2008-04-04 23:42:27 +0400294 printk(KERN_ERR "MPTABLE: null local APIC address!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295 return 0;
296 }
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400297 memcpy(oem, mpc->mpc_oem, 8);
298 oem[8] = 0;
Yinghai Lu11a62a02008-05-12 15:43:38 +0200299 printk(KERN_INFO "MPTABLE: OEM ID: %s\n", oem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400301 memcpy(str, mpc->mpc_productid, 12);
302 str[12] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303
Alexey Starikovskiye950bea2008-04-04 23:42:27 +0400304#ifdef CONFIG_X86_32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305 mps_oem_check(mpc, oem, str);
Alexey Starikovskiye950bea2008-04-04 23:42:27 +0400306#endif
Yinghai Lu11a62a02008-05-12 15:43:38 +0200307 printk(KERN_INFO "MPTABLE: Product ID: %s\n", str);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308
Alexey Starikovskiye950bea2008-04-04 23:42:27 +0400309 printk(KERN_INFO "MPTABLE: APIC at: 0x%X\n", mpc->mpc_lapic);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310
Alexey Starikovskiye950bea2008-04-04 23:42:27 +0400311 /* save the local APIC address, it might be non-default */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312 if (!acpi_lapic)
313 mp_lapic_addr = mpc->mpc_lapic;
314
Alexey Starikovskiy888032c2008-04-04 23:42:09 +0400315 if (early)
316 return 1;
317
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318 /*
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400319 * Now process the configuration blocks.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320 */
Alexey Starikovskiy86420502008-03-17 22:08:55 +0300321#ifdef CONFIG_X86_NUMAQ
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322 mpc_record = 0;
Alexey Starikovskiy86420502008-03-17 22:08:55 +0300323#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 while (count < mpc->mpc_length) {
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400325 switch (*mpt) {
326 case MP_PROCESSOR:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327 {
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400328 struct mpc_config_processor *m =
329 (struct mpc_config_processor *)mpt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330 /* ACPI may have already provided this data */
331 if (!acpi_lapic)
332 MP_processor_info(m);
333 mpt += sizeof(*m);
334 count += sizeof(*m);
335 break;
336 }
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400337 case MP_BUS:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338 {
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400339 struct mpc_config_bus *m =
340 (struct mpc_config_bus *)mpt;
Thomas Gleixner85cc35f2008-05-25 21:21:36 +0200341#ifdef CONFIG_X86_IO_APIC
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342 MP_bus_info(m);
Thomas Gleixner85cc35f2008-05-25 21:21:36 +0200343#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344 mpt += sizeof(*m);
345 count += sizeof(*m);
346 break;
347 }
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400348 case MP_IOAPIC:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349 {
Alexey Starikovskiy61048c62008-04-04 23:41:07 +0400350#ifdef CONFIG_X86_IO_APIC
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400351 struct mpc_config_ioapic *m =
352 (struct mpc_config_ioapic *)mpt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353 MP_ioapic_info(m);
Alexey Starikovskiy61048c62008-04-04 23:41:07 +0400354#endif
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400355 mpt += sizeof(struct mpc_config_ioapic);
356 count += sizeof(struct mpc_config_ioapic);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357 break;
358 }
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400359 case MP_INTSRC:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360 {
Alexey Starikovskiy61048c62008-04-04 23:41:07 +0400361#ifdef CONFIG_X86_IO_APIC
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400362 struct mpc_config_intsrc *m =
363 (struct mpc_config_intsrc *)mpt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364
365 MP_intsrc_info(m);
Alexey Starikovskiy61048c62008-04-04 23:41:07 +0400366#endif
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400367 mpt += sizeof(struct mpc_config_intsrc);
368 count += sizeof(struct mpc_config_intsrc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369 break;
370 }
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400371 case MP_LINTSRC:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372 {
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400373 struct mpc_config_lintsrc *m =
374 (struct mpc_config_lintsrc *)mpt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375 MP_lintsrc_info(m);
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400376 mpt += sizeof(*m);
377 count += sizeof(*m);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378 break;
379 }
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400380 default:
Yinghai Lu711554d2008-04-07 11:36:39 -0700381 /* wrong mptable */
382 printk(KERN_ERR "Your mptable is wrong, contact your HW vendor!\n");
383 printk(KERN_ERR "type %x\n", *mpt);
384 print_hex_dump(KERN_ERR, " ", DUMP_PREFIX_ADDRESS, 16,
385 1, mpc, mpc->mpc_length, 1);
386 count = mpc->mpc_length;
387 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388 }
Alexey Starikovskiy86420502008-03-17 22:08:55 +0300389#ifdef CONFIG_X86_NUMAQ
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390 ++mpc_record;
Alexey Starikovskiy86420502008-03-17 22:08:55 +0300391#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392 }
Ingo Molnar3c43f032007-05-02 19:27:04 +0200393 setup_apic_routing();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 if (!num_processors)
Alexey Starikovskiye950bea2008-04-04 23:42:27 +0400395 printk(KERN_ERR "MPTABLE: no processors registered!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396 return num_processors;
397}
398
Alexey Starikovskiy61048c62008-04-04 23:41:07 +0400399#ifdef CONFIG_X86_IO_APIC
400
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401static int __init ELCR_trigger(unsigned int irq)
402{
403 unsigned int port;
404
405 port = 0x4d0 + (irq >> 3);
406 return (inb(port) >> (irq & 7)) & 1;
407}
408
409static void __init construct_default_ioirq_mptable(int mpc_default_type)
410{
411 struct mpc_config_intsrc intsrc;
412 int i;
413 int ELCR_fallback = 0;
414
415 intsrc.mpc_type = MP_INTSRC;
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400416 intsrc.mpc_irqflag = 0; /* conforming */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417 intsrc.mpc_srcbus = 0;
Alexey Starikovskiyec2cd0a2008-05-14 19:03:10 +0400418 intsrc.mpc_dstapic = mp_ioapics[0].mp_apicid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419
420 intsrc.mpc_irqtype = mp_INT;
421
422 /*
423 * If true, we have an ISA/PCI system with no IRQ entries
424 * in the MP table. To prevent the PCI interrupts from being set up
425 * incorrectly, we try to use the ELCR. The sanity check to see if
426 * there is good ELCR data is very simple - IRQ0, 1, 2 and 13 can
427 * never be level sensitive, so we simply see if the ELCR agrees.
428 * If it does, we assume it's valid.
429 */
430 if (mpc_default_type == 5) {
Alexey Starikovskiy62441bf2008-04-04 23:42:34 +0400431 printk(KERN_INFO "ISA/PCI bus type with no IRQ information... "
432 "falling back to ELCR\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433
Alexey Starikovskiy62441bf2008-04-04 23:42:34 +0400434 if (ELCR_trigger(0) || ELCR_trigger(1) || ELCR_trigger(2) ||
435 ELCR_trigger(13))
436 printk(KERN_ERR "ELCR contains invalid data... "
437 "not using ELCR\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438 else {
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400439 printk(KERN_INFO
440 "Using ELCR to identify PCI interrupts\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441 ELCR_fallback = 1;
442 }
443 }
444
445 for (i = 0; i < 16; i++) {
446 switch (mpc_default_type) {
447 case 2:
448 if (i == 0 || i == 13)
449 continue; /* IRQ0 & IRQ13 not connected */
450 /* fall through */
451 default:
452 if (i == 2)
453 continue; /* IRQ2 is never connected */
454 }
455
456 if (ELCR_fallback) {
457 /*
458 * If the ELCR indicates a level-sensitive interrupt, we
459 * copy that information over to the MP table in the
460 * irqflag field (level sensitive, active high polarity).
461 */
462 if (ELCR_trigger(i))
463 intsrc.mpc_irqflag = 13;
464 else
465 intsrc.mpc_irqflag = 0;
466 }
467
468 intsrc.mpc_srcbusirq = i;
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400469 intsrc.mpc_dstirq = i ? i : 2; /* IRQ0 to INTIN2 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470 MP_intsrc_info(&intsrc);
471 }
472
473 intsrc.mpc_irqtype = mp_ExtINT;
474 intsrc.mpc_srcbusirq = 0;
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400475 intsrc.mpc_dstirq = 0; /* 8259A to INTIN0 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476 MP_intsrc_info(&intsrc);
477}
478
Alexey Starikovskiy61048c62008-04-04 23:41:07 +0400479
Thomas Gleixner85cc35f2008-05-25 21:21:36 +0200480static void construct_ioapic_table(int mpc_default_type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482 struct mpc_config_ioapic ioapic;
Thomas Gleixner85cc35f2008-05-25 21:21:36 +0200483 struct mpc_config_bus bus;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484
485 bus.mpc_type = MP_BUS;
486 bus.mpc_busid = 0;
487 switch (mpc_default_type) {
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400488 default:
Alexey Starikovskiy62441bf2008-04-04 23:42:34 +0400489 printk(KERN_ERR "???\nUnknown standard configuration %d\n",
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400490 mpc_default_type);
491 /* fall through */
492 case 1:
493 case 5:
494 memcpy(bus.mpc_bustype, "ISA ", 6);
495 break;
496 case 2:
497 case 6:
498 case 3:
499 memcpy(bus.mpc_bustype, "EISA ", 6);
500 break;
501 case 4:
502 case 7:
503 memcpy(bus.mpc_bustype, "MCA ", 6);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504 }
505 MP_bus_info(&bus);
506 if (mpc_default_type > 4) {
507 bus.mpc_busid = 1;
508 memcpy(bus.mpc_bustype, "PCI ", 6);
509 MP_bus_info(&bus);
510 }
511
512 ioapic.mpc_type = MP_IOAPIC;
513 ioapic.mpc_apicid = 2;
514 ioapic.mpc_apicver = mpc_default_type > 4 ? 0x10 : 0x01;
515 ioapic.mpc_flags = MPC_APIC_USABLE;
516 ioapic.mpc_apicaddr = 0xFEC00000;
517 MP_ioapic_info(&ioapic);
518
519 /*
520 * We set up most of the low 16 IO-APIC pins according to MPS rules.
521 */
522 construct_default_ioirq_mptable(mpc_default_type);
Thomas Gleixner85cc35f2008-05-25 21:21:36 +0200523}
524#else
525static inline void construct_ioapic_table(int mpc_default_type) { }
Alexey Starikovskiy61048c62008-04-04 23:41:07 +0400526#endif
Thomas Gleixner85cc35f2008-05-25 21:21:36 +0200527
528static inline void __init construct_default_ISA_mptable(int mpc_default_type)
529{
530 struct mpc_config_processor processor;
531 struct mpc_config_lintsrc lintsrc;
532 int linttypes[2] = { mp_ExtINT, mp_NMI };
533 int i;
534
535 /*
536 * local APIC has default address
537 */
538 mp_lapic_addr = APIC_DEFAULT_PHYS_BASE;
539
540 /*
541 * 2 CPUs, numbered 0 & 1.
542 */
543 processor.mpc_type = MP_PROCESSOR;
544 /* Either an integrated APIC or a discrete 82489DX. */
545 processor.mpc_apicver = mpc_default_type > 4 ? 0x10 : 0x01;
546 processor.mpc_cpuflag = CPU_ENABLED;
547 processor.mpc_cpufeature = (boot_cpu_data.x86 << 8) |
548 (boot_cpu_data.x86_model << 4) | boot_cpu_data.x86_mask;
549 processor.mpc_featureflag = boot_cpu_data.x86_capability[0];
550 processor.mpc_reserved[0] = 0;
551 processor.mpc_reserved[1] = 0;
552 for (i = 0; i < 2; i++) {
553 processor.mpc_apicid = i;
554 MP_processor_info(&processor);
555 }
556
557 construct_ioapic_table(mpc_default_type);
558
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559 lintsrc.mpc_type = MP_LINTSRC;
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400560 lintsrc.mpc_irqflag = 0; /* conforming */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561 lintsrc.mpc_srcbusid = 0;
562 lintsrc.mpc_srcbusirq = 0;
563 lintsrc.mpc_destapic = MP_APIC_ALL;
564 for (i = 0; i < 2; i++) {
565 lintsrc.mpc_irqtype = linttypes[i];
566 lintsrc.mpc_destapiclint = i;
567 MP_lintsrc_info(&lintsrc);
568 }
569}
570
571static struct intel_mp_floating *mpf_found;
572
573/*
574 * Scan the memory blocks for an SMP configuration block.
575 */
Alexey Starikovskiy888032c2008-04-04 23:42:09 +0400576static void __init __get_smp_config(unsigned early)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577{
578 struct intel_mp_floating *mpf = mpf_found;
579
Alexey Starikovskiy888032c2008-04-04 23:42:09 +0400580 if (acpi_lapic && early)
581 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582 /*
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400583 * ACPI supports both logical (e.g. Hyper-Threading) and physical
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584 * processors, where MPS only supports physical.
585 */
586 if (acpi_lapic && acpi_ioapic) {
Alexey Starikovskiy4421b1c2008-04-04 23:42:40 +0400587 printk(KERN_INFO "Using ACPI (MADT) for SMP configuration "
588 "information\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589 return;
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400590 } else if (acpi_lapic)
Alexey Starikovskiy4421b1c2008-04-04 23:42:40 +0400591 printk(KERN_INFO "Using ACPI for processor (LAPIC) "
592 "configuration information\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400594 printk(KERN_INFO "Intel MultiProcessor Specification v1.%d\n",
595 mpf->mpf_specification);
Alexey Starikovskiyb3e24162008-05-23 01:54:44 +0400596#if defined(CONFIG_X86_LOCAL_APIC) && defined(CONFIG_X86_32)
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400597 if (mpf->mpf_feature2 & (1 << 7)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598 printk(KERN_INFO " IMCR and PIC compatibility mode.\n");
599 pic_mode = 1;
600 } else {
601 printk(KERN_INFO " Virtual Wire compatibility mode.\n");
602 pic_mode = 0;
603 }
Alexey Starikovskiy4421b1c2008-04-04 23:42:40 +0400604#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605 /*
606 * Now see if we need to read further.
607 */
608 if (mpf->mpf_feature1 != 0) {
Alexey Starikovskiy888032c2008-04-04 23:42:09 +0400609 if (early) {
610 /*
611 * local APIC has default address
612 */
613 mp_lapic_addr = APIC_DEFAULT_PHYS_BASE;
614 return;
615 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400617 printk(KERN_INFO "Default MP configuration #%d\n",
618 mpf->mpf_feature1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619 construct_default_ISA_mptable(mpf->mpf_feature1);
620
621 } else if (mpf->mpf_physptr) {
622
623 /*
624 * Read the physical hardware table. Anything here will
625 * override the defaults.
626 */
Alexey Starikovskiy888032c2008-04-04 23:42:09 +0400627 if (!smp_read_mpc(phys_to_virt(mpf->mpf_physptr), early)) {
Alexey Starikovskiybab4b272008-05-19 19:47:03 +0400628#ifdef CONFIG_X86_LOCAL_APIC
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629 smp_found_config = 0;
Alexey Starikovskiybab4b272008-05-19 19:47:03 +0400630#endif
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400631 printk(KERN_ERR
632 "BIOS bug, MP table errors detected!...\n");
Alexey Starikovskiy4421b1c2008-04-04 23:42:40 +0400633 printk(KERN_ERR "... disabling SMP support. "
634 "(tell your hw vendor)\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635 return;
636 }
Alexey Starikovskiy61048c62008-04-04 23:41:07 +0400637
Alexey Starikovskiy888032c2008-04-04 23:42:09 +0400638 if (early)
639 return;
Alexey Starikovskiy61048c62008-04-04 23:41:07 +0400640#ifdef CONFIG_X86_IO_APIC
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641 /*
642 * If there are no explicit MP IRQ entries, then we are
643 * broken. We set up most of the low 16 IO-APIC pins to
644 * ISA defaults and hope it will work.
645 */
646 if (!mp_irq_entries) {
647 struct mpc_config_bus bus;
648
Alexey Starikovskiy4421b1c2008-04-04 23:42:40 +0400649 printk(KERN_ERR "BIOS bug, no explicit IRQ entries, "
650 "using default mptable. "
651 "(tell your hw vendor)\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652
653 bus.mpc_type = MP_BUS;
654 bus.mpc_busid = 0;
655 memcpy(bus.mpc_bustype, "ISA ", 6);
656 MP_bus_info(&bus);
657
658 construct_default_ioirq_mptable(0);
659 }
Alexey Starikovskiy61048c62008-04-04 23:41:07 +0400660#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661 } else
662 BUG();
663
Alexey Starikovskiy888032c2008-04-04 23:42:09 +0400664 if (!early)
665 printk(KERN_INFO "Processors: %d\n", num_processors);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666 /*
667 * Only use the first configuration found.
668 */
669}
670
Alexey Starikovskiy888032c2008-04-04 23:42:09 +0400671void __init early_get_smp_config(void)
672{
673 __get_smp_config(1);
674}
675
676void __init get_smp_config(void)
677{
678 __get_smp_config(0);
679}
680
681static int __init smp_scan_config(unsigned long base, unsigned long length,
682 unsigned reserve)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683{
Alexey Starikovskiy92fd4b72008-04-04 23:42:46 +0400684 unsigned int *bp = phys_to_virt(base);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685 struct intel_mp_floating *mpf;
686
Yinghai Lu11a62a02008-05-12 15:43:38 +0200687 printk(KERN_DEBUG "Scan SMP from %p for %ld bytes.\n", bp, length);
Akinobu Mita5d47a272008-04-19 23:55:11 +0900688 BUILD_BUG_ON(sizeof(*mpf) != 16);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689
690 while (length > 0) {
691 mpf = (struct intel_mp_floating *)bp;
692 if ((*bp == SMP_MAGIC_IDENT) &&
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400693 (mpf->mpf_length == 1) &&
694 !mpf_checksum((unsigned char *)bp, 16) &&
695 ((mpf->mpf_specification == 1)
696 || (mpf->mpf_specification == 4))) {
Alexey Starikovskiybab4b272008-05-19 19:47:03 +0400697#ifdef CONFIG_X86_LOCAL_APIC
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698 smp_found_config = 1;
Alexey Starikovskiybab4b272008-05-19 19:47:03 +0400699#endif
Alexey Starikovskiy92fd4b72008-04-04 23:42:46 +0400700 mpf_found = mpf;
701#ifdef CONFIG_X86_32
Ingo Molnare91a3b432008-01-30 13:33:08 +0100702 printk(KERN_INFO "found SMP MP-table at [%p] %08lx\n",
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400703 mpf, virt_to_phys(mpf));
Bernhard Walle72a7fe32008-02-07 00:15:17 -0800704 reserve_bootmem(virt_to_phys(mpf), PAGE_SIZE,
705 BOOTMEM_DEFAULT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706 if (mpf->mpf_physptr) {
707 /*
708 * We cannot access to MPC table to compute
709 * table size yet, as only few megabytes from
710 * the bottom is mapped now.
711 * PC-9800's MPC table places on the very last
712 * of physical memory; so that simply reserving
713 * PAGE_SIZE from mpg->mpf_physptr yields BUG()
714 * in reserve_bootmem.
715 */
716 unsigned long size = PAGE_SIZE;
717 unsigned long end = max_low_pfn * PAGE_SIZE;
718 if (mpf->mpf_physptr + size > end)
719 size = end - mpf->mpf_physptr;
Bernhard Walle72a7fe32008-02-07 00:15:17 -0800720 reserve_bootmem(mpf->mpf_physptr, size,
721 BOOTMEM_DEFAULT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722 }
723
Alexey Starikovskiy92fd4b72008-04-04 23:42:46 +0400724#else
725 if (!reserve)
726 return 1;
727
728 reserve_bootmem_generic(virt_to_phys(mpf), PAGE_SIZE);
729 if (mpf->mpf_physptr)
730 reserve_bootmem_generic(mpf->mpf_physptr,
731 PAGE_SIZE);
732#endif
733 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734 }
735 bp += 4;
736 length -= 16;
737 }
738 return 0;
739}
740
Alexey Starikovskiy888032c2008-04-04 23:42:09 +0400741static void __init __find_smp_config(unsigned reserve)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742{
743 unsigned int address;
744
745 /*
746 * FIXME: Linux assumes you have 640K of base ram..
747 * this continues the error...
748 *
749 * 1) Scan the bottom 1K for a signature
750 * 2) Scan the top 1K of base RAM
751 * 3) Scan the 64K of bios
752 */
Alexey Starikovskiy888032c2008-04-04 23:42:09 +0400753 if (smp_scan_config(0x0, 0x400, reserve) ||
754 smp_scan_config(639 * 0x400, 0x400, reserve) ||
755 smp_scan_config(0xF0000, 0x10000, reserve))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756 return;
757 /*
758 * If it is an SMP machine we should know now, unless the
759 * configuration is in an EISA/MCA bus machine with an
760 * extended bios data area.
761 *
762 * there is a real-mode segmented pointer pointing to the
763 * 4K EBDA area at 0x40E, calculate and scan it here.
764 *
765 * NOTE! There are Linux loaders that will corrupt the EBDA
766 * area, and as such this kind of SMP config may be less
767 * trustworthy, simply because the SMP table may have been
768 * stomped on during early boot. These loaders are buggy and
769 * should be fixed.
770 *
771 * MP1.4 SPEC states to only scan first 1K of 4K EBDA.
772 */
773
774 address = get_bios_ebda();
775 if (address)
Alexey Starikovskiy888032c2008-04-04 23:42:09 +0400776 smp_scan_config(address, 0x400, reserve);
777}
778
779void __init early_find_smp_config(void)
780{
781 __find_smp_config(0);
782}
783
784void __init find_smp_config(void)
785{
786 __find_smp_config(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787}