blob: 9f1e5bf7f0fb334c20944a853439cac14dbdd8de [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
35/* Have we found an MP table */
36int smp_found_config;
Linus Torvalds1da177e2005-04-16 15:20:36 -070037
38/*
39 * Various Linux-internal data structures created from the
40 * MP-table.
41 */
Alexey Starikovskiyc0a282c2008-03-20 14:55:02 +030042#if defined (CONFIG_MCA) || defined (CONFIG_EISA)
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +040043int mp_bus_id_to_type[MAX_MP_BUSSES];
Alexey Starikovskiyc0a282c2008-03-20 14:55:02 +030044#endif
Alexey Starikovskiy85bddde2008-04-04 23:43:18 +040045
Alexey Starikovskiya6333c32008-03-20 14:54:09 +030046DECLARE_BITMAP(mp_bus_not_pci, MAX_MP_BUSSES);
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +040047int mp_bus_id_to_pci_bus[MAX_MP_BUSSES] = {[0 ... MAX_MP_BUSSES - 1] = -1 };
Alexey Starikovskiy85bddde2008-04-04 23:43:18 +040048
Linus Torvalds1da177e2005-04-16 15:20:36 -070049static int mp_current_pci_id;
50
Linus Torvalds1da177e2005-04-16 15:20:36 -070051int pic_mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -070052
Linus Torvalds1da177e2005-04-16 15:20:36 -070053/*
54 * Intel MP BIOS table parsing routines:
55 */
56
Linus Torvalds1da177e2005-04-16 15:20:36 -070057/*
58 * Checksum an MP configuration block.
59 */
60
61static int __init mpf_checksum(unsigned char *mp, int len)
62{
63 int sum = 0;
64
65 while (len--)
66 sum += *mp++;
67
68 return sum & 0xFF;
69}
70
Alexey Starikovskiy86420502008-03-17 22:08:55 +030071#ifdef CONFIG_X86_NUMAQ
Linus Torvalds1da177e2005-04-16 15:20:36 -070072/*
73 * Have to match translation table entries to main table entries by counter
74 * hence the mpc_record variable .... can't see a less disgusting way of
75 * doing this ....
76 */
77
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +040078static int mpc_record;
79static struct mpc_config_translation *translation_table[MAX_MPC_ENTRY]
80 __cpuinitdata;
Alexey Starikovskiy86420502008-03-17 22:08:55 +030081#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070082
Alexey Starikovskiyc853c672008-03-27 23:54:13 +030083static void __cpuinit MP_processor_info(struct mpc_config_processor *m)
84{
85 int apicid;
Alexey Starikovskiy746f2242008-04-04 23:42:15 +040086 char *bootup_cpu = "";
Alexey Starikovskiyc853c672008-03-27 23:54:13 +030087
Glauber Costa7b1292e2008-03-03 14:12:41 -030088 if (!(m->mpc_cpuflag & CPU_ENABLED)) {
89 disabled_cpus++;
Linus Torvalds1da177e2005-04-16 15:20:36 -070090 return;
Glauber Costa7b1292e2008-03-03 14:12:41 -030091 }
Alexey Starikovskiy4655c7d2008-03-17 22:08:36 +030092#ifdef CONFIG_X86_NUMAQ
Linus Torvalds1da177e2005-04-16 15:20:36 -070093 apicid = mpc_apic_id(m, translation_table[mpc_record]);
Alexey Starikovskiy4655c7d2008-03-17 22:08:36 +030094#else
Alexey Starikovskiy4655c7d2008-03-17 22:08:36 +030095 apicid = m->mpc_apicid;
96#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070097 if (m->mpc_cpuflag & CPU_BOOTPROCESSOR) {
Alexey Starikovskiy746f2242008-04-04 23:42:15 +040098 bootup_cpu = " (Bootup-CPU)";
Linus Torvalds1da177e2005-04-16 15:20:36 -070099 boot_cpu_physical_apicid = m->mpc_apicid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100 }
101
Alexey Starikovskiy746f2242008-04-04 23:42:15 +0400102 printk(KERN_INFO "Processor #%d%s\n", m->mpc_apicid, bootup_cpu);
Alexey Starikovskiyc853c672008-03-27 23:54:13 +0300103 generic_processor_info(apicid, m->mpc_apicver);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104}
105
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400106static void __init MP_bus_info(struct mpc_config_bus *m)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107{
108 char str[7];
109
110 memcpy(str, m->mpc_bustype, 6);
111 str[6] = 0;
112
Alexey Starikovskiy0ec153a2008-03-17 22:08:48 +0300113#ifdef CONFIG_X86_NUMAQ
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114 mpc_oem_bus_info(m, str, translation_table[mpc_record]);
Alexey Starikovskiy0ec153a2008-03-17 22:08:48 +0300115#else
Yinghai Lu11a62a02008-05-12 15:43:38 +0200116 printk(KERN_INFO "Bus #%d is %s\n", m->mpc_busid, str);
Alexey Starikovskiy0ec153a2008-03-17 22:08:48 +0300117#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118
Andi Kleen5e4edbb2006-09-26 10:52:35 +0200119#if MAX_MP_BUSSES < 256
Randy Dunlapc0ec31a2006-04-10 22:53:13 -0700120 if (m->mpc_busid >= MAX_MP_BUSSES) {
121 printk(KERN_WARNING "MP table busid value (%d) for bustype %s "
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400122 " is too large, max. supported is %d\n",
123 m->mpc_busid, str, MAX_MP_BUSSES - 1);
Randy Dunlapc0ec31a2006-04-10 22:53:13 -0700124 return;
125 }
Andi Kleen5e4edbb2006-09-26 10:52:35 +0200126#endif
Randy Dunlapc0ec31a2006-04-10 22:53:13 -0700127
Alexey Starikovskiyf8924e72008-04-04 23:42:21 +0400128 if (strncmp(str, BUSTYPE_ISA, sizeof(BUSTYPE_ISA) - 1) == 0) {
129 set_bit(m->mpc_busid, mp_bus_not_pci);
130#if defined(CONFIG_EISA) || defined (CONFIG_MCA)
131 mp_bus_id_to_type[m->mpc_busid] = MP_BUS_ISA;
132#endif
133 } else if (strncmp(str, BUSTYPE_PCI, sizeof(BUSTYPE_PCI) - 1) == 0) {
Alexey Starikovskiyd285e332008-03-17 22:08:42 +0300134#ifdef CONFIG_X86_NUMAQ
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135 mpc_oem_pci_bus(m, translation_table[mpc_record]);
Alexey Starikovskiyd285e332008-03-17 22:08:42 +0300136#endif
Alexey Starikovskiya6333c32008-03-20 14:54:09 +0300137 clear_bit(m->mpc_busid, mp_bus_not_pci);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138 mp_bus_id_to_pci_bus[m->mpc_busid] = mp_current_pci_id;
139 mp_current_pci_id++;
Alexey Starikovskiyc0a282c2008-03-20 14:55:02 +0300140#if defined(CONFIG_EISA) || defined (CONFIG_MCA)
141 mp_bus_id_to_type[m->mpc_busid] = MP_BUS_PCI;
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400142 } else if (strncmp(str, BUSTYPE_EISA, sizeof(BUSTYPE_EISA) - 1) == 0) {
Alexey Starikovskiy9e0a2de2008-03-20 14:54:56 +0300143 mp_bus_id_to_type[m->mpc_busid] = MP_BUS_EISA;
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400144 } else if (strncmp(str, BUSTYPE_MCA, sizeof(BUSTYPE_MCA) - 1) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145 mp_bus_id_to_type[m->mpc_busid] = MP_BUS_MCA;
Alexey Starikovskiyc0a282c2008-03-20 14:55:02 +0300146#endif
Alexey Starikovskiyf8924e72008-04-04 23:42:21 +0400147 } else
148 printk(KERN_WARNING "Unknown bustype %s - ignoring\n", str);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149}
150
Alexey Starikovskiy61048c62008-04-04 23:41:07 +0400151#ifdef CONFIG_X86_IO_APIC
152
Alexey Starikovskiy857033a2008-03-17 22:08:05 +0300153static int bad_ioapic(unsigned long address)
154{
155 if (nr_ioapics >= MAX_IO_APICS) {
156 printk(KERN_ERR "ERROR: Max # of I/O APICs (%d) exceeded "
157 "(found %d)\n", MAX_IO_APICS, nr_ioapics);
158 panic("Recompile kernel with bigger MAX_IO_APICS!\n");
159 }
160 if (!address) {
161 printk(KERN_ERR "WARNING: Bogus (zero) I/O APIC address"
162 " found in table, skipping!\n");
163 return 1;
164 }
165 return 0;
166}
167
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400168static void __init MP_ioapic_info(struct mpc_config_ioapic *m)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169{
170 if (!(m->mpc_flags & MPC_APIC_USABLE))
171 return;
172
Thomas Gleixner64883ab2008-01-30 13:30:35 +0100173 printk(KERN_INFO "I/O APIC #%d Version %d at 0x%X.\n",
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400174 m->mpc_apicid, m->mpc_apicver, m->mpc_apicaddr);
Alexey Starikovskiy857033a2008-03-17 22:08:05 +0300175
176 if (bad_ioapic(m->mpc_apicaddr))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177 return;
Alexey Starikovskiy857033a2008-03-17 22:08:05 +0300178
Alexey Starikovskiyec2cd0a2008-05-14 19:03:10 +0400179 mp_ioapics[nr_ioapics].mp_apicaddr = m->mpc_apicaddr;
180 mp_ioapics[nr_ioapics].mp_apicid = m->mpc_apicid;
181 mp_ioapics[nr_ioapics].mp_type = m->mpc_type;
182 mp_ioapics[nr_ioapics].mp_apicver = m->mpc_apicver;
183 mp_ioapics[nr_ioapics].mp_flags = m->mpc_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184 nr_ioapics++;
185}
186
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400187static void __init MP_intsrc_info(struct mpc_config_intsrc *m)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188{
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400189 mp_irqs[mp_irq_entries] = *m;
Yinghai Lu11a62a02008-05-12 15:43:38 +0200190 printk(KERN_INFO "Int: type %d, pol %d, trig %d, bus %02x,"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191 " IRQ %02x, APIC ID %x, APIC INT %02x\n",
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400192 m->mpc_irqtype, m->mpc_irqflag & 3,
193 (m->mpc_irqflag >> 2) & 3, m->mpc_srcbus,
194 m->mpc_srcbusirq, m->mpc_dstapic, m->mpc_dstirq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195 if (++mp_irq_entries == MAX_IRQ_SOURCES)
196 panic("Max # of irq sources exceeded!!\n");
197}
198
Alexey Starikovskiy61048c62008-04-04 23:41:07 +0400199#endif
200
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400201static void __init MP_lintsrc_info(struct mpc_config_lintsrc *m)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202{
Yinghai Lu11a62a02008-05-12 15:43:38 +0200203 printk(KERN_INFO "Lint: type %d, pol %d, trig %d, bus %02x,"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 " IRQ %02x, APIC ID %x, APIC LINT %02x\n",
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400205 m->mpc_irqtype, m->mpc_irqflag & 3,
206 (m->mpc_irqflag >> 2) & 3, m->mpc_srcbusid,
207 m->mpc_srcbusirq, m->mpc_destapic, m->mpc_destapiclint);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208}
209
210#ifdef CONFIG_X86_NUMAQ
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400211static void __init MP_translation_info(struct mpc_config_translation *m)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212{
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400213 printk(KERN_INFO
214 "Translation: record %d, type %d, quad %d, global %d, local %d\n",
215 mpc_record, m->trans_type, m->trans_quad, m->trans_global,
216 m->trans_local);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400218 if (mpc_record >= MAX_MPC_ENTRY)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219 printk(KERN_ERR "MAX_MPC_ENTRY exceeded!\n");
220 else
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400221 translation_table[mpc_record] = m; /* stash this for later */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 if (m->trans_quad < MAX_NUMNODES && !node_online(m->trans_quad))
223 node_set_online(m->trans_quad);
224}
225
226/*
227 * Read/parse the MPC oem tables
228 */
229
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400230static void __init smp_read_mpc_oem(struct mp_config_oemtable *oemtable,
231 unsigned short oemsize)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232{
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400233 int count = sizeof(*oemtable); /* the header size */
234 unsigned char *oemptr = ((unsigned char *)oemtable) + count;
235
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236 mpc_record = 0;
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400237 printk(KERN_INFO "Found an OEM MPC table at %8p - parsing it ... \n",
238 oemtable);
239 if (memcmp(oemtable->oem_signature, MPC_OEM_SIGNATURE, 4)) {
240 printk(KERN_WARNING
241 "SMP mpc oemtable: bad signature [%c%c%c%c]!\n",
242 oemtable->oem_signature[0], oemtable->oem_signature[1],
243 oemtable->oem_signature[2], oemtable->oem_signature[3]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244 return;
245 }
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400246 if (mpf_checksum((unsigned char *)oemtable, oemtable->oem_length)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247 printk(KERN_WARNING "SMP oem mptable: checksum error!\n");
248 return;
249 }
250 while (count < oemtable->oem_length) {
251 switch (*oemptr) {
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400252 case MP_TRANSLATION:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 {
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400254 struct mpc_config_translation *m =
255 (struct mpc_config_translation *)oemptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256 MP_translation_info(m);
257 oemptr += sizeof(*m);
258 count += sizeof(*m);
259 ++mpc_record;
260 break;
261 }
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400262 default:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263 {
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400264 printk(KERN_WARNING
265 "Unrecognised OEM table entry type! - %d\n",
266 (int)*oemptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267 return;
268 }
269 }
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400270 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271}
272
273static inline void mps_oem_check(struct mp_config_table *mpc, char *oem,
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400274 char *productid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275{
276 if (strncmp(oem, "IBM NUMA", 8))
277 printk("Warning! May not be a NUMA-Q system!\n");
278 if (mpc->mpc_oemptr)
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400279 smp_read_mpc_oem((struct mp_config_oemtable *)mpc->mpc_oemptr,
280 mpc->mpc_oemsize);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281}
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400282#endif /* CONFIG_X86_NUMAQ */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283
284/*
285 * Read/parse the MPC
286 */
287
Alexey Starikovskiy888032c2008-04-04 23:42:09 +0400288static int __init smp_read_mpc(struct mp_config_table *mpc, unsigned early)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289{
290 char str[16];
291 char oem[10];
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400292 int count = sizeof(*mpc);
293 unsigned char *mpt = ((unsigned char *)mpc) + count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400295 if (memcmp(mpc->mpc_signature, MPC_SIGNATURE, 4)) {
Alexey Starikovskiye950bea2008-04-04 23:42:27 +0400296 printk(KERN_ERR "MPTABLE: bad signature [%c%c%c%c]!\n",
297 mpc->mpc_signature[0], mpc->mpc_signature[1],
298 mpc->mpc_signature[2], mpc->mpc_signature[3]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299 return 0;
300 }
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400301 if (mpf_checksum((unsigned char *)mpc, mpc->mpc_length)) {
Alexey Starikovskiye950bea2008-04-04 23:42:27 +0400302 printk(KERN_ERR "MPTABLE: checksum error!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303 return 0;
304 }
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400305 if (mpc->mpc_spec != 0x01 && mpc->mpc_spec != 0x04) {
Alexey Starikovskiye950bea2008-04-04 23:42:27 +0400306 printk(KERN_ERR "MPTABLE: bad table version (%d)!!\n",
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400307 mpc->mpc_spec);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308 return 0;
309 }
310 if (!mpc->mpc_lapic) {
Alexey Starikovskiye950bea2008-04-04 23:42:27 +0400311 printk(KERN_ERR "MPTABLE: null local APIC address!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312 return 0;
313 }
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400314 memcpy(oem, mpc->mpc_oem, 8);
315 oem[8] = 0;
Yinghai Lu11a62a02008-05-12 15:43:38 +0200316 printk(KERN_INFO "MPTABLE: OEM ID: %s\n", oem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400318 memcpy(str, mpc->mpc_productid, 12);
319 str[12] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320
Alexey Starikovskiye950bea2008-04-04 23:42:27 +0400321#ifdef CONFIG_X86_32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322 mps_oem_check(mpc, oem, str);
Alexey Starikovskiye950bea2008-04-04 23:42:27 +0400323#endif
Yinghai Lu11a62a02008-05-12 15:43:38 +0200324 printk(KERN_INFO "MPTABLE: Product ID: %s\n", str);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325
Alexey Starikovskiye950bea2008-04-04 23:42:27 +0400326 printk(KERN_INFO "MPTABLE: APIC at: 0x%X\n", mpc->mpc_lapic);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327
Alexey Starikovskiye950bea2008-04-04 23:42:27 +0400328 /* save the local APIC address, it might be non-default */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329 if (!acpi_lapic)
330 mp_lapic_addr = mpc->mpc_lapic;
331
Alexey Starikovskiy888032c2008-04-04 23:42:09 +0400332 if (early)
333 return 1;
334
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335 /*
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400336 * Now process the configuration blocks.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337 */
Alexey Starikovskiy86420502008-03-17 22:08:55 +0300338#ifdef CONFIG_X86_NUMAQ
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339 mpc_record = 0;
Alexey Starikovskiy86420502008-03-17 22:08:55 +0300340#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341 while (count < mpc->mpc_length) {
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400342 switch (*mpt) {
343 case MP_PROCESSOR:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344 {
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400345 struct mpc_config_processor *m =
346 (struct mpc_config_processor *)mpt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347 /* ACPI may have already provided this data */
348 if (!acpi_lapic)
349 MP_processor_info(m);
350 mpt += sizeof(*m);
351 count += sizeof(*m);
352 break;
353 }
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400354 case MP_BUS:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355 {
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400356 struct mpc_config_bus *m =
357 (struct mpc_config_bus *)mpt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358 MP_bus_info(m);
359 mpt += sizeof(*m);
360 count += sizeof(*m);
361 break;
362 }
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400363 case MP_IOAPIC:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364 {
Alexey Starikovskiy61048c62008-04-04 23:41:07 +0400365#ifdef CONFIG_X86_IO_APIC
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400366 struct mpc_config_ioapic *m =
367 (struct mpc_config_ioapic *)mpt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368 MP_ioapic_info(m);
Alexey Starikovskiy61048c62008-04-04 23:41:07 +0400369#endif
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400370 mpt += sizeof(struct mpc_config_ioapic);
371 count += sizeof(struct mpc_config_ioapic);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372 break;
373 }
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400374 case MP_INTSRC:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375 {
Alexey Starikovskiy61048c62008-04-04 23:41:07 +0400376#ifdef CONFIG_X86_IO_APIC
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400377 struct mpc_config_intsrc *m =
378 (struct mpc_config_intsrc *)mpt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379
380 MP_intsrc_info(m);
Alexey Starikovskiy61048c62008-04-04 23:41:07 +0400381#endif
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400382 mpt += sizeof(struct mpc_config_intsrc);
383 count += sizeof(struct mpc_config_intsrc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384 break;
385 }
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400386 case MP_LINTSRC:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 {
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400388 struct mpc_config_lintsrc *m =
389 (struct mpc_config_lintsrc *)mpt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390 MP_lintsrc_info(m);
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400391 mpt += sizeof(*m);
392 count += sizeof(*m);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393 break;
394 }
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400395 default:
Yinghai Lu711554d2008-04-07 11:36:39 -0700396 /* wrong mptable */
397 printk(KERN_ERR "Your mptable is wrong, contact your HW vendor!\n");
398 printk(KERN_ERR "type %x\n", *mpt);
399 print_hex_dump(KERN_ERR, " ", DUMP_PREFIX_ADDRESS, 16,
400 1, mpc, mpc->mpc_length, 1);
401 count = mpc->mpc_length;
402 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403 }
Alexey Starikovskiy86420502008-03-17 22:08:55 +0300404#ifdef CONFIG_X86_NUMAQ
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405 ++mpc_record;
Alexey Starikovskiy86420502008-03-17 22:08:55 +0300406#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407 }
Ingo Molnar3c43f032007-05-02 19:27:04 +0200408 setup_apic_routing();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409 if (!num_processors)
Alexey Starikovskiye950bea2008-04-04 23:42:27 +0400410 printk(KERN_ERR "MPTABLE: no processors registered!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411 return num_processors;
412}
413
Alexey Starikovskiy61048c62008-04-04 23:41:07 +0400414#ifdef CONFIG_X86_IO_APIC
415
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416static int __init ELCR_trigger(unsigned int irq)
417{
418 unsigned int port;
419
420 port = 0x4d0 + (irq >> 3);
421 return (inb(port) >> (irq & 7)) & 1;
422}
423
424static void __init construct_default_ioirq_mptable(int mpc_default_type)
425{
426 struct mpc_config_intsrc intsrc;
427 int i;
428 int ELCR_fallback = 0;
429
430 intsrc.mpc_type = MP_INTSRC;
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400431 intsrc.mpc_irqflag = 0; /* conforming */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 intsrc.mpc_srcbus = 0;
Alexey Starikovskiyec2cd0a2008-05-14 19:03:10 +0400433 intsrc.mpc_dstapic = mp_ioapics[0].mp_apicid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434
435 intsrc.mpc_irqtype = mp_INT;
436
437 /*
438 * If true, we have an ISA/PCI system with no IRQ entries
439 * in the MP table. To prevent the PCI interrupts from being set up
440 * incorrectly, we try to use the ELCR. The sanity check to see if
441 * there is good ELCR data is very simple - IRQ0, 1, 2 and 13 can
442 * never be level sensitive, so we simply see if the ELCR agrees.
443 * If it does, we assume it's valid.
444 */
445 if (mpc_default_type == 5) {
Alexey Starikovskiy62441bf2008-04-04 23:42:34 +0400446 printk(KERN_INFO "ISA/PCI bus type with no IRQ information... "
447 "falling back to ELCR\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448
Alexey Starikovskiy62441bf2008-04-04 23:42:34 +0400449 if (ELCR_trigger(0) || ELCR_trigger(1) || ELCR_trigger(2) ||
450 ELCR_trigger(13))
451 printk(KERN_ERR "ELCR contains invalid data... "
452 "not using ELCR\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453 else {
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400454 printk(KERN_INFO
455 "Using ELCR to identify PCI interrupts\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456 ELCR_fallback = 1;
457 }
458 }
459
460 for (i = 0; i < 16; i++) {
461 switch (mpc_default_type) {
462 case 2:
463 if (i == 0 || i == 13)
464 continue; /* IRQ0 & IRQ13 not connected */
465 /* fall through */
466 default:
467 if (i == 2)
468 continue; /* IRQ2 is never connected */
469 }
470
471 if (ELCR_fallback) {
472 /*
473 * If the ELCR indicates a level-sensitive interrupt, we
474 * copy that information over to the MP table in the
475 * irqflag field (level sensitive, active high polarity).
476 */
477 if (ELCR_trigger(i))
478 intsrc.mpc_irqflag = 13;
479 else
480 intsrc.mpc_irqflag = 0;
481 }
482
483 intsrc.mpc_srcbusirq = i;
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400484 intsrc.mpc_dstirq = i ? i : 2; /* IRQ0 to INTIN2 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485 MP_intsrc_info(&intsrc);
486 }
487
488 intsrc.mpc_irqtype = mp_ExtINT;
489 intsrc.mpc_srcbusirq = 0;
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400490 intsrc.mpc_dstirq = 0; /* 8259A to INTIN0 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491 MP_intsrc_info(&intsrc);
492}
493
Alexey Starikovskiy61048c62008-04-04 23:41:07 +0400494#endif
495
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496static inline void __init construct_default_ISA_mptable(int mpc_default_type)
497{
498 struct mpc_config_processor processor;
499 struct mpc_config_bus bus;
Alexey Starikovskiy61048c62008-04-04 23:41:07 +0400500#ifdef CONFIG_X86_IO_APIC
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501 struct mpc_config_ioapic ioapic;
Alexey Starikovskiy61048c62008-04-04 23:41:07 +0400502#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503 struct mpc_config_lintsrc lintsrc;
504 int linttypes[2] = { mp_ExtINT, mp_NMI };
505 int i;
506
507 /*
508 * local APIC has default address
509 */
510 mp_lapic_addr = APIC_DEFAULT_PHYS_BASE;
511
512 /*
513 * 2 CPUs, numbered 0 & 1.
514 */
515 processor.mpc_type = MP_PROCESSOR;
516 /* Either an integrated APIC or a discrete 82489DX. */
517 processor.mpc_apicver = mpc_default_type > 4 ? 0x10 : 0x01;
518 processor.mpc_cpuflag = CPU_ENABLED;
519 processor.mpc_cpufeature = (boot_cpu_data.x86 << 8) |
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400520 (boot_cpu_data.x86_model << 4) | boot_cpu_data.x86_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521 processor.mpc_featureflag = boot_cpu_data.x86_capability[0];
522 processor.mpc_reserved[0] = 0;
523 processor.mpc_reserved[1] = 0;
524 for (i = 0; i < 2; i++) {
525 processor.mpc_apicid = i;
526 MP_processor_info(&processor);
527 }
528
529 bus.mpc_type = MP_BUS;
530 bus.mpc_busid = 0;
531 switch (mpc_default_type) {
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400532 default:
Alexey Starikovskiy62441bf2008-04-04 23:42:34 +0400533 printk(KERN_ERR "???\nUnknown standard configuration %d\n",
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400534 mpc_default_type);
535 /* fall through */
536 case 1:
537 case 5:
538 memcpy(bus.mpc_bustype, "ISA ", 6);
539 break;
540 case 2:
541 case 6:
542 case 3:
543 memcpy(bus.mpc_bustype, "EISA ", 6);
544 break;
545 case 4:
546 case 7:
547 memcpy(bus.mpc_bustype, "MCA ", 6);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548 }
549 MP_bus_info(&bus);
550 if (mpc_default_type > 4) {
551 bus.mpc_busid = 1;
552 memcpy(bus.mpc_bustype, "PCI ", 6);
553 MP_bus_info(&bus);
554 }
555
Alexey Starikovskiy61048c62008-04-04 23:41:07 +0400556#ifdef CONFIG_X86_IO_APIC
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557 ioapic.mpc_type = MP_IOAPIC;
558 ioapic.mpc_apicid = 2;
559 ioapic.mpc_apicver = mpc_default_type > 4 ? 0x10 : 0x01;
560 ioapic.mpc_flags = MPC_APIC_USABLE;
561 ioapic.mpc_apicaddr = 0xFEC00000;
562 MP_ioapic_info(&ioapic);
563
564 /*
565 * We set up most of the low 16 IO-APIC pins according to MPS rules.
566 */
567 construct_default_ioirq_mptable(mpc_default_type);
Alexey Starikovskiy61048c62008-04-04 23:41:07 +0400568#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569 lintsrc.mpc_type = MP_LINTSRC;
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400570 lintsrc.mpc_irqflag = 0; /* conforming */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571 lintsrc.mpc_srcbusid = 0;
572 lintsrc.mpc_srcbusirq = 0;
573 lintsrc.mpc_destapic = MP_APIC_ALL;
574 for (i = 0; i < 2; i++) {
575 lintsrc.mpc_irqtype = linttypes[i];
576 lintsrc.mpc_destapiclint = i;
577 MP_lintsrc_info(&lintsrc);
578 }
579}
580
581static struct intel_mp_floating *mpf_found;
582
583/*
584 * Scan the memory blocks for an SMP configuration block.
585 */
Alexey Starikovskiy888032c2008-04-04 23:42:09 +0400586static void __init __get_smp_config(unsigned early)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587{
588 struct intel_mp_floating *mpf = mpf_found;
589
Alexey Starikovskiy888032c2008-04-04 23:42:09 +0400590 if (acpi_lapic && early)
591 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 /*
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400593 * ACPI supports both logical (e.g. Hyper-Threading) and physical
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594 * processors, where MPS only supports physical.
595 */
596 if (acpi_lapic && acpi_ioapic) {
Alexey Starikovskiy4421b1c2008-04-04 23:42:40 +0400597 printk(KERN_INFO "Using ACPI (MADT) for SMP configuration "
598 "information\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599 return;
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400600 } else if (acpi_lapic)
Alexey Starikovskiy4421b1c2008-04-04 23:42:40 +0400601 printk(KERN_INFO "Using ACPI for processor (LAPIC) "
602 "configuration information\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400604 printk(KERN_INFO "Intel MultiProcessor Specification v1.%d\n",
605 mpf->mpf_specification);
Alexey Starikovskiy4421b1c2008-04-04 23:42:40 +0400606#ifdef CONFIG_X86_32
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400607 if (mpf->mpf_feature2 & (1 << 7)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608 printk(KERN_INFO " IMCR and PIC compatibility mode.\n");
609 pic_mode = 1;
610 } else {
611 printk(KERN_INFO " Virtual Wire compatibility mode.\n");
612 pic_mode = 0;
613 }
Alexey Starikovskiy4421b1c2008-04-04 23:42:40 +0400614#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615 /*
616 * Now see if we need to read further.
617 */
618 if (mpf->mpf_feature1 != 0) {
Alexey Starikovskiy888032c2008-04-04 23:42:09 +0400619 if (early) {
620 /*
621 * local APIC has default address
622 */
623 mp_lapic_addr = APIC_DEFAULT_PHYS_BASE;
624 return;
625 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400627 printk(KERN_INFO "Default MP configuration #%d\n",
628 mpf->mpf_feature1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629 construct_default_ISA_mptable(mpf->mpf_feature1);
630
631 } else if (mpf->mpf_physptr) {
632
633 /*
634 * Read the physical hardware table. Anything here will
635 * override the defaults.
636 */
Alexey Starikovskiy888032c2008-04-04 23:42:09 +0400637 if (!smp_read_mpc(phys_to_virt(mpf->mpf_physptr), early)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638 smp_found_config = 0;
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400639 printk(KERN_ERR
640 "BIOS bug, MP table errors detected!...\n");
Alexey Starikovskiy4421b1c2008-04-04 23:42:40 +0400641 printk(KERN_ERR "... disabling SMP support. "
642 "(tell your hw vendor)\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643 return;
644 }
Alexey Starikovskiy61048c62008-04-04 23:41:07 +0400645
Alexey Starikovskiy888032c2008-04-04 23:42:09 +0400646 if (early)
647 return;
Alexey Starikovskiy61048c62008-04-04 23:41:07 +0400648#ifdef CONFIG_X86_IO_APIC
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649 /*
650 * If there are no explicit MP IRQ entries, then we are
651 * broken. We set up most of the low 16 IO-APIC pins to
652 * ISA defaults and hope it will work.
653 */
654 if (!mp_irq_entries) {
655 struct mpc_config_bus bus;
656
Alexey Starikovskiy4421b1c2008-04-04 23:42:40 +0400657 printk(KERN_ERR "BIOS bug, no explicit IRQ entries, "
658 "using default mptable. "
659 "(tell your hw vendor)\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660
661 bus.mpc_type = MP_BUS;
662 bus.mpc_busid = 0;
663 memcpy(bus.mpc_bustype, "ISA ", 6);
664 MP_bus_info(&bus);
665
666 construct_default_ioirq_mptable(0);
667 }
Alexey Starikovskiy61048c62008-04-04 23:41:07 +0400668#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669 } else
670 BUG();
671
Alexey Starikovskiy888032c2008-04-04 23:42:09 +0400672 if (!early)
673 printk(KERN_INFO "Processors: %d\n", num_processors);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674 /*
675 * Only use the first configuration found.
676 */
677}
678
Alexey Starikovskiy888032c2008-04-04 23:42:09 +0400679void __init early_get_smp_config(void)
680{
681 __get_smp_config(1);
682}
683
684void __init get_smp_config(void)
685{
686 __get_smp_config(0);
687}
688
689static int __init smp_scan_config(unsigned long base, unsigned long length,
690 unsigned reserve)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691{
Alexey Starikovskiy92fd4b72008-04-04 23:42:46 +0400692 unsigned int *bp = phys_to_virt(base);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693 struct intel_mp_floating *mpf;
694
Yinghai Lu11a62a02008-05-12 15:43:38 +0200695 printk(KERN_DEBUG "Scan SMP from %p for %ld bytes.\n", bp, length);
Akinobu Mita5d47a272008-04-19 23:55:11 +0900696 BUILD_BUG_ON(sizeof(*mpf) != 16);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697
698 while (length > 0) {
699 mpf = (struct intel_mp_floating *)bp;
700 if ((*bp == SMP_MAGIC_IDENT) &&
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400701 (mpf->mpf_length == 1) &&
702 !mpf_checksum((unsigned char *)bp, 16) &&
703 ((mpf->mpf_specification == 1)
704 || (mpf->mpf_specification == 4))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705
706 smp_found_config = 1;
Alexey Starikovskiy92fd4b72008-04-04 23:42:46 +0400707 mpf_found = mpf;
708#ifdef CONFIG_X86_32
Ingo Molnare91a3b42008-01-30 13:33:08 +0100709 printk(KERN_INFO "found SMP MP-table at [%p] %08lx\n",
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400710 mpf, virt_to_phys(mpf));
Bernhard Walle72a7fe32008-02-07 00:15:17 -0800711 reserve_bootmem(virt_to_phys(mpf), PAGE_SIZE,
712 BOOTMEM_DEFAULT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713 if (mpf->mpf_physptr) {
714 /*
715 * We cannot access to MPC table to compute
716 * table size yet, as only few megabytes from
717 * the bottom is mapped now.
718 * PC-9800's MPC table places on the very last
719 * of physical memory; so that simply reserving
720 * PAGE_SIZE from mpg->mpf_physptr yields BUG()
721 * in reserve_bootmem.
722 */
723 unsigned long size = PAGE_SIZE;
724 unsigned long end = max_low_pfn * PAGE_SIZE;
725 if (mpf->mpf_physptr + size > end)
726 size = end - mpf->mpf_physptr;
Bernhard Walle72a7fe32008-02-07 00:15:17 -0800727 reserve_bootmem(mpf->mpf_physptr, size,
728 BOOTMEM_DEFAULT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729 }
730
Alexey Starikovskiy92fd4b72008-04-04 23:42:46 +0400731#else
732 if (!reserve)
733 return 1;
734
735 reserve_bootmem_generic(virt_to_phys(mpf), PAGE_SIZE);
736 if (mpf->mpf_physptr)
737 reserve_bootmem_generic(mpf->mpf_physptr,
738 PAGE_SIZE);
739#endif
740 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741 }
742 bp += 4;
743 length -= 16;
744 }
745 return 0;
746}
747
Alexey Starikovskiy888032c2008-04-04 23:42:09 +0400748static void __init __find_smp_config(unsigned reserve)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749{
750 unsigned int address;
751
752 /*
753 * FIXME: Linux assumes you have 640K of base ram..
754 * this continues the error...
755 *
756 * 1) Scan the bottom 1K for a signature
757 * 2) Scan the top 1K of base RAM
758 * 3) Scan the 64K of bios
759 */
Alexey Starikovskiy888032c2008-04-04 23:42:09 +0400760 if (smp_scan_config(0x0, 0x400, reserve) ||
761 smp_scan_config(639 * 0x400, 0x400, reserve) ||
762 smp_scan_config(0xF0000, 0x10000, reserve))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763 return;
764 /*
765 * If it is an SMP machine we should know now, unless the
766 * configuration is in an EISA/MCA bus machine with an
767 * extended bios data area.
768 *
769 * there is a real-mode segmented pointer pointing to the
770 * 4K EBDA area at 0x40E, calculate and scan it here.
771 *
772 * NOTE! There are Linux loaders that will corrupt the EBDA
773 * area, and as such this kind of SMP config may be less
774 * trustworthy, simply because the SMP table may have been
775 * stomped on during early boot. These loaders are buggy and
776 * should be fixed.
777 *
778 * MP1.4 SPEC states to only scan first 1K of 4K EBDA.
779 */
780
781 address = get_bios_ebda();
782 if (address)
Alexey Starikovskiy888032c2008-04-04 23:42:09 +0400783 smp_scan_config(address, 0x400, reserve);
784}
785
786void __init early_find_smp_config(void)
787{
788 __find_smp_config(0);
789}
790
791void __init find_smp_config(void)
792{
793 __find_smp_config(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794}