blob: a5c728be41cd1a658ca63fb9978769c52f9a5515 [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>
Jaswinder Singh Rajput103ceff2009-01-02 23:43:25 +053019#include <linux/smp.h>
20#include <linux/acpi.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070021
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include <asm/mtrr.h>
23#include <asm/mpspec.h>
Alexey Starikovskiy85bddde2008-04-04 23:43:18 +040024#include <asm/pgalloc.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#include <asm/io_apic.h>
Alexey Starikovskiy85bddde2008-04-04 23:43:18 +040026#include <asm/proto.h>
Alexey Starikovskiyce3fe6b2008-03-17 22:08:17 +030027#include <asm/bios_ebda.h>
Yinghai Lu2944e162008-06-01 13:17:38 -070028#include <asm/e820.h>
29#include <asm/trampoline.h>
Yinghai Lu3c9cb6d2008-07-19 02:07:25 -070030#include <asm/setup.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070031
32#include <mach_apic.h>
Alexey Starikovskiy85bddde2008-04-04 23:43:18 +040033#ifdef CONFIG_X86_32
Andi Kleen874c4fe2006-09-26 10:52:26 +020034#include <mach_apicdef.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070035#include <mach_mpparse.h>
Alexey Starikovskiy85bddde2008-04-04 23:43:18 +040036#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070037
Linus Torvalds1da177e2005-04-16 15:20:36 -070038/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070039 * Checksum an MP configuration block.
40 */
41
42static int __init mpf_checksum(unsigned char *mp, int len)
43{
44 int sum = 0;
45
46 while (len--)
47 sum += *mp++;
48
49 return sum & 0xFF;
50}
51
Jaswinder Singh Rajputf4f21b72009-01-03 15:48:52 +053052static void __init MP_processor_info(struct mpc_cpu *m)
Alexey Starikovskiyc853c672008-03-27 23:54:13 +030053{
54 int apicid;
Alexey Starikovskiy746f2242008-04-04 23:42:15 +040055 char *bootup_cpu = "";
Alexey Starikovskiyc853c672008-03-27 23:54:13 +030056
Glauber Costa7b1292e2008-03-03 14:12:41 -030057 if (!(m->mpc_cpuflag & CPU_ENABLED)) {
58 disabled_cpus++;
Linus Torvalds1da177e2005-04-16 15:20:36 -070059 return;
Glauber Costa7b1292e2008-03-03 14:12:41 -030060 }
Yinghai Lu64898a82008-07-19 18:01:16 -070061
62 if (x86_quirks->mpc_apic_id)
63 apicid = x86_quirks->mpc_apic_id(m);
Yinghai Luab530e12008-06-03 10:25:54 -070064 else
65 apicid = m->mpc_apicid;
Yinghai Lu64898a82008-07-19 18:01:16 -070066
Linus Torvalds1da177e2005-04-16 15:20:36 -070067 if (m->mpc_cpuflag & CPU_BOOTPROCESSOR) {
Alexey Starikovskiy746f2242008-04-04 23:42:15 +040068 bootup_cpu = " (Bootup-CPU)";
Linus Torvalds1da177e2005-04-16 15:20:36 -070069 boot_cpu_physical_apicid = m->mpc_apicid;
Linus Torvalds1da177e2005-04-16 15:20:36 -070070 }
71
Alexey Starikovskiy746f2242008-04-04 23:42:15 +040072 printk(KERN_INFO "Processor #%d%s\n", m->mpc_apicid, bootup_cpu);
Alexey Starikovskiyc853c672008-03-27 23:54:13 +030073 generic_processor_info(apicid, m->mpc_apicver);
Linus Torvalds1da177e2005-04-16 15:20:36 -070074}
75
Thomas Gleixner85cc35f2008-05-25 21:21:36 +020076#ifdef CONFIG_X86_IO_APIC
Jaswinder Singh Rajput00fb8602009-01-03 15:47:32 +053077static void __init MP_bus_info(struct mpc_bus *m)
Linus Torvalds1da177e2005-04-16 15:20:36 -070078{
79 char str[7];
Linus Torvalds1da177e2005-04-16 15:20:36 -070080 memcpy(str, m->mpc_bustype, 6);
81 str[6] = 0;
82
Yinghai Lu64898a82008-07-19 18:01:16 -070083 if (x86_quirks->mpc_oem_bus_info)
84 x86_quirks->mpc_oem_bus_info(m, str);
85 else
Rene Hermaneeb0d7d2008-08-11 17:44:57 +020086 apic_printk(APIC_VERBOSE, "Bus #%d is %s\n", m->mpc_busid, str);
Linus Torvalds1da177e2005-04-16 15:20:36 -070087
Andi Kleen5e4edbb2006-09-26 10:52:35 +020088#if MAX_MP_BUSSES < 256
Randy Dunlapc0ec31a2006-04-10 22:53:13 -070089 if (m->mpc_busid >= MAX_MP_BUSSES) {
90 printk(KERN_WARNING "MP table busid value (%d) for bustype %s "
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +040091 " is too large, max. supported is %d\n",
92 m->mpc_busid, str, MAX_MP_BUSSES - 1);
Randy Dunlapc0ec31a2006-04-10 22:53:13 -070093 return;
94 }
Andi Kleen5e4edbb2006-09-26 10:52:35 +020095#endif
Randy Dunlapc0ec31a2006-04-10 22:53:13 -070096
Alexey Starikovskiyf8924e72008-04-04 23:42:21 +040097 if (strncmp(str, BUSTYPE_ISA, sizeof(BUSTYPE_ISA) - 1) == 0) {
Jaswinder Singh Rajput103ceff2009-01-02 23:43:25 +053098 set_bit(m->mpc_busid, mp_bus_not_pci);
99#if defined(CONFIG_EISA) || defined(CONFIG_MCA)
Alexey Starikovskiyf8924e72008-04-04 23:42:21 +0400100 mp_bus_id_to_type[m->mpc_busid] = MP_BUS_ISA;
101#endif
102 } else if (strncmp(str, BUSTYPE_PCI, sizeof(BUSTYPE_PCI) - 1) == 0) {
Yinghai Lu64898a82008-07-19 18:01:16 -0700103 if (x86_quirks->mpc_oem_pci_bus)
104 x86_quirks->mpc_oem_pci_bus(m);
105
Alexey Starikovskiya6333c32008-03-20 14:54:09 +0300106 clear_bit(m->mpc_busid, mp_bus_not_pci);
Jaswinder Singh Rajput103ceff2009-01-02 23:43:25 +0530107#if defined(CONFIG_EISA) || defined(CONFIG_MCA)
Alexey Starikovskiyc0a282c2008-03-20 14:55:02 +0300108 mp_bus_id_to_type[m->mpc_busid] = MP_BUS_PCI;
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400109 } else if (strncmp(str, BUSTYPE_EISA, sizeof(BUSTYPE_EISA) - 1) == 0) {
Alexey Starikovskiy9e0a2de2008-03-20 14:54:56 +0300110 mp_bus_id_to_type[m->mpc_busid] = MP_BUS_EISA;
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400111 } else if (strncmp(str, BUSTYPE_MCA, sizeof(BUSTYPE_MCA) - 1) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112 mp_bus_id_to_type[m->mpc_busid] = MP_BUS_MCA;
Alexey Starikovskiyc0a282c2008-03-20 14:55:02 +0300113#endif
Alexey Starikovskiyf8924e72008-04-04 23:42:21 +0400114 } else
115 printk(KERN_WARNING "Unknown bustype %s - ignoring\n", str);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116}
Thomas Gleixner85cc35f2008-05-25 21:21:36 +0200117#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118
Alexey Starikovskiy61048c62008-04-04 23:41:07 +0400119#ifdef CONFIG_X86_IO_APIC
120
Alexey Starikovskiy857033a2008-03-17 22:08:05 +0300121static int bad_ioapic(unsigned long address)
122{
123 if (nr_ioapics >= MAX_IO_APICS) {
124 printk(KERN_ERR "ERROR: Max # of I/O APICs (%d) exceeded "
125 "(found %d)\n", MAX_IO_APICS, nr_ioapics);
126 panic("Recompile kernel with bigger MAX_IO_APICS!\n");
127 }
128 if (!address) {
129 printk(KERN_ERR "WARNING: Bogus (zero) I/O APIC address"
130 " found in table, skipping!\n");
131 return 1;
132 }
133 return 0;
134}
135
Jaswinder Singh Rajput2b85b5f2009-01-03 15:49:57 +0530136static void __init MP_ioapic_info(struct mpc_ioapic *m)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137{
Jaswinder Singh Rajput5df82c72009-01-04 21:54:39 +0530138 if (!(m->flags & MPC_APIC_USABLE))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139 return;
140
Thomas Gleixner64883ab2008-01-30 13:30:35 +0100141 printk(KERN_INFO "I/O APIC #%d Version %d at 0x%X.\n",
Jaswinder Singh Rajput5df82c72009-01-04 21:54:39 +0530142 m->apicid, m->apicver, m->apicaddr);
Alexey Starikovskiy857033a2008-03-17 22:08:05 +0300143
Jaswinder Singh Rajput5df82c72009-01-04 21:54:39 +0530144 if (bad_ioapic(m->apicaddr))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145 return;
Alexey Starikovskiy857033a2008-03-17 22:08:05 +0300146
Jaswinder Singh Rajput5df82c72009-01-04 21:54:39 +0530147 mp_ioapics[nr_ioapics].mp_apicaddr = m->apicaddr;
148 mp_ioapics[nr_ioapics].mp_apicid = m->apicid;
149 mp_ioapics[nr_ioapics].mp_type = m->type;
150 mp_ioapics[nr_ioapics].mp_apicver = m->apicver;
151 mp_ioapics[nr_ioapics].mp_flags = m->flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152 nr_ioapics++;
153}
154
Jaswinder Singh Rajput540d4e72009-01-03 15:50:52 +0530155static void print_MP_intsrc_info(struct mpc_intsrc *m)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156{
Rene Hermaneeb0d7d2008-08-11 17:44:57 +0200157 apic_printk(APIC_VERBOSE, "Int: type %d, pol %d, trig %d, bus %02x,"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158 " IRQ %02x, APIC ID %x, APIC INT %02x\n",
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400159 m->mpc_irqtype, m->mpc_irqflag & 3,
160 (m->mpc_irqflag >> 2) & 3, m->mpc_srcbus,
161 m->mpc_srcbusirq, m->mpc_dstapic, m->mpc_dstirq);
Yinghai Lu2944e162008-06-01 13:17:38 -0700162}
163
164static void __init print_mp_irq_info(struct mp_config_intsrc *mp_irq)
165{
Rene Hermaneeb0d7d2008-08-11 17:44:57 +0200166 apic_printk(APIC_VERBOSE, "Int: type %d, pol %d, trig %d, bus %02x,"
Yinghai Lu2944e162008-06-01 13:17:38 -0700167 " IRQ %02x, APIC ID %x, APIC INT %02x\n",
168 mp_irq->mp_irqtype, mp_irq->mp_irqflag & 3,
169 (mp_irq->mp_irqflag >> 2) & 3, mp_irq->mp_srcbus,
170 mp_irq->mp_srcbusirq, mp_irq->mp_dstapic, mp_irq->mp_dstirq);
171}
172
Jaswinder Singh Rajput540d4e72009-01-03 15:50:52 +0530173static void __init assign_to_mp_irq(struct mpc_intsrc *m,
Yinghai Lu2944e162008-06-01 13:17:38 -0700174 struct mp_config_intsrc *mp_irq)
175{
176 mp_irq->mp_dstapic = m->mpc_dstapic;
177 mp_irq->mp_type = m->mpc_type;
178 mp_irq->mp_irqtype = m->mpc_irqtype;
179 mp_irq->mp_irqflag = m->mpc_irqflag;
180 mp_irq->mp_srcbus = m->mpc_srcbus;
181 mp_irq->mp_srcbusirq = m->mpc_srcbusirq;
182 mp_irq->mp_dstirq = m->mpc_dstirq;
183}
184
185static void __init assign_to_mpc_intsrc(struct mp_config_intsrc *mp_irq,
Jaswinder Singh Rajput540d4e72009-01-03 15:50:52 +0530186 struct mpc_intsrc *m)
Yinghai Lu2944e162008-06-01 13:17:38 -0700187{
188 m->mpc_dstapic = mp_irq->mp_dstapic;
189 m->mpc_type = mp_irq->mp_type;
190 m->mpc_irqtype = mp_irq->mp_irqtype;
191 m->mpc_irqflag = mp_irq->mp_irqflag;
192 m->mpc_srcbus = mp_irq->mp_srcbus;
193 m->mpc_srcbusirq = mp_irq->mp_srcbusirq;
194 m->mpc_dstirq = mp_irq->mp_dstirq;
195}
196
Yinghai Lufcfa1462008-06-18 17:29:31 -0700197static int __init mp_irq_mpc_intsrc_cmp(struct mp_config_intsrc *mp_irq,
Jaswinder Singh Rajput540d4e72009-01-03 15:50:52 +0530198 struct mpc_intsrc *m)
Yinghai Lu2944e162008-06-01 13:17:38 -0700199{
200 if (mp_irq->mp_dstapic != m->mpc_dstapic)
201 return 1;
202 if (mp_irq->mp_type != m->mpc_type)
203 return 2;
204 if (mp_irq->mp_irqtype != m->mpc_irqtype)
205 return 3;
206 if (mp_irq->mp_irqflag != m->mpc_irqflag)
207 return 4;
208 if (mp_irq->mp_srcbus != m->mpc_srcbus)
209 return 5;
210 if (mp_irq->mp_srcbusirq != m->mpc_srcbusirq)
211 return 6;
212 if (mp_irq->mp_dstirq != m->mpc_dstirq)
213 return 7;
214
215 return 0;
216}
217
Jaswinder Singh Rajput540d4e72009-01-03 15:50:52 +0530218static void __init MP_intsrc_info(struct mpc_intsrc *m)
Yinghai Lu2944e162008-06-01 13:17:38 -0700219{
220 int i;
221
222 print_MP_intsrc_info(m);
223
Yinghai Lufcfa1462008-06-18 17:29:31 -0700224 for (i = 0; i < mp_irq_entries; i++) {
225 if (!mp_irq_mpc_intsrc_cmp(&mp_irqs[i], m))
226 return;
227 }
Yinghai Lu2944e162008-06-01 13:17:38 -0700228
229 assign_to_mp_irq(m, &mp_irqs[mp_irq_entries]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 if (++mp_irq_entries == MAX_IRQ_SOURCES)
231 panic("Max # of irq sources exceeded!!\n");
232}
233
Alexey Starikovskiy61048c62008-04-04 23:41:07 +0400234#endif
235
Jaswinder Singh Rajput8fb29522009-01-03 15:51:54 +0530236static void __init MP_lintsrc_info(struct mpc_lintsrc *m)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237{
Rene Hermaneeb0d7d2008-08-11 17:44:57 +0200238 apic_printk(APIC_VERBOSE, "Lint: type %d, pol %d, trig %d, bus %02x,"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239 " IRQ %02x, APIC ID %x, APIC LINT %02x\n",
Jaswinder Singh Rajputb5ced7c2009-01-04 21:55:53 +0530240 m->irqtype, m->irqflag & 3, (m->irqflag >> 2) & 3, m->srcbusid,
241 m->srcbusirq, m->destapic, m->destapiclint);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242}
243
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244/*
245 * Read/parse the MPC
246 */
247
Jaswinder Singh Rajputf29521e2009-01-03 15:46:57 +0530248static int __init smp_check_mpc(struct mpc_table *mpc, char *oem, char *str)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400251 if (memcmp(mpc->mpc_signature, MPC_SIGNATURE, 4)) {
Alexey Starikovskiye950bea2008-04-04 23:42:27 +0400252 printk(KERN_ERR "MPTABLE: bad signature [%c%c%c%c]!\n",
253 mpc->mpc_signature[0], mpc->mpc_signature[1],
254 mpc->mpc_signature[2], mpc->mpc_signature[3]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255 return 0;
256 }
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400257 if (mpf_checksum((unsigned char *)mpc, mpc->mpc_length)) {
Alexey Starikovskiye950bea2008-04-04 23:42:27 +0400258 printk(KERN_ERR "MPTABLE: checksum error!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 return 0;
260 }
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400261 if (mpc->mpc_spec != 0x01 && mpc->mpc_spec != 0x04) {
Alexey Starikovskiye950bea2008-04-04 23:42:27 +0400262 printk(KERN_ERR "MPTABLE: bad table version (%d)!!\n",
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400263 mpc->mpc_spec);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264 return 0;
265 }
266 if (!mpc->mpc_lapic) {
Alexey Starikovskiye950bea2008-04-04 23:42:27 +0400267 printk(KERN_ERR "MPTABLE: null local APIC address!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268 return 0;
269 }
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400270 memcpy(oem, mpc->mpc_oem, 8);
271 oem[8] = 0;
Yinghai Lu11a62a02008-05-12 15:43:38 +0200272 printk(KERN_INFO "MPTABLE: OEM ID: %s\n", oem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400274 memcpy(str, mpc->mpc_productid, 12);
275 str[12] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276
Yinghai Lu11a62a02008-05-12 15:43:38 +0200277 printk(KERN_INFO "MPTABLE: Product ID: %s\n", str);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278
Alexey Starikovskiye950bea2008-04-04 23:42:27 +0400279 printk(KERN_INFO "MPTABLE: APIC at: 0x%X\n", mpc->mpc_lapic);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280
Yinghai Lu2944e162008-06-01 13:17:38 -0700281 return 1;
282}
283
Jaswinder Singh Rajputf29521e2009-01-03 15:46:57 +0530284static int __init smp_read_mpc(struct mpc_table *mpc, unsigned early)
Yinghai Lu2944e162008-06-01 13:17:38 -0700285{
286 char str[16];
287 char oem[10];
288
289 int count = sizeof(*mpc);
290 unsigned char *mpt = ((unsigned char *)mpc) + count;
291
292 if (!smp_check_mpc(mpc, oem, str))
293 return 0;
294
295#ifdef CONFIG_X86_32
Yinghai Lud49c4282008-06-08 18:31:54 -0700296 /*
297 * need to make sure summit and es7000's mps_oem_check is safe to be
298 * called early via genericarch 's mps_oem_check
299 */
300 if (early) {
301#ifdef CONFIG_X86_NUMAQ
302 numaq_mps_oem_check(mpc, oem, str);
303#endif
304 } else
305 mps_oem_check(mpc, oem, str);
Yinghai Lu2944e162008-06-01 13:17:38 -0700306#endif
Alexey Starikovskiye950bea2008-04-04 23:42:27 +0400307 /* save the local APIC address, it might be non-default */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308 if (!acpi_lapic)
309 mp_lapic_addr = mpc->mpc_lapic;
310
Alexey Starikovskiy888032c2008-04-04 23:42:09 +0400311 if (early)
312 return 1;
313
Yinghai Lu64898a82008-07-19 18:01:16 -0700314 if (mpc->mpc_oemptr && x86_quirks->smp_read_mpc_oem) {
Jaswinder Singh Rajputb0e239f2009-01-03 15:52:54 +0530315 struct mpc_oemtable *oem_table = (void *)(long)mpc->mpc_oemptr;
Yinghai Lu64898a82008-07-19 18:01:16 -0700316 x86_quirks->smp_read_mpc_oem(oem_table, mpc->mpc_oemsize);
317 }
318
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319 /*
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400320 * Now process the configuration blocks.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 */
Yinghai Lu64898a82008-07-19 18:01:16 -0700322 if (x86_quirks->mpc_record)
323 *x86_quirks->mpc_record = 0;
324
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325 while (count < mpc->mpc_length) {
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400326 switch (*mpt) {
327 case MP_PROCESSOR:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328 {
Jaswinder Singh Rajputf4f21b72009-01-03 15:48:52 +0530329 struct mpc_cpu *m = (struct mpc_cpu *)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 {
Jaswinder Singh Rajput00fb8602009-01-03 15:47:32 +0530339 struct mpc_bus *m = (struct mpc_bus *)mpt;
Thomas Gleixner85cc35f2008-05-25 21:21:36 +0200340#ifdef CONFIG_X86_IO_APIC
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341 MP_bus_info(m);
Thomas Gleixner85cc35f2008-05-25 21:21:36 +0200342#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 mpt += sizeof(*m);
344 count += sizeof(*m);
345 break;
346 }
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400347 case MP_IOAPIC:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348 {
Alexey Starikovskiy61048c62008-04-04 23:41:07 +0400349#ifdef CONFIG_X86_IO_APIC
Jaswinder Singh Rajput2b85b5f2009-01-03 15:49:57 +0530350 struct mpc_ioapic *m = (struct mpc_ioapic *)mpt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351 MP_ioapic_info(m);
Alexey Starikovskiy61048c62008-04-04 23:41:07 +0400352#endif
Jaswinder Singh Rajput2b85b5f2009-01-03 15:49:57 +0530353 mpt += sizeof(struct mpc_ioapic);
354 count += sizeof(struct mpc_ioapic);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355 break;
356 }
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400357 case MP_INTSRC:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358 {
Alexey Starikovskiy61048c62008-04-04 23:41:07 +0400359#ifdef CONFIG_X86_IO_APIC
Jaswinder Singh Rajput540d4e72009-01-03 15:50:52 +0530360 struct mpc_intsrc *m = (struct mpc_intsrc *)mpt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361
362 MP_intsrc_info(m);
Alexey Starikovskiy61048c62008-04-04 23:41:07 +0400363#endif
Jaswinder Singh Rajput540d4e72009-01-03 15:50:52 +0530364 mpt += sizeof(struct mpc_intsrc);
365 count += sizeof(struct mpc_intsrc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366 break;
367 }
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400368 case MP_LINTSRC:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369 {
Jaswinder Singh Rajput8fb29522009-01-03 15:51:54 +0530370 struct mpc_lintsrc *m =
371 (struct mpc_lintsrc *)mpt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372 MP_lintsrc_info(m);
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400373 mpt += sizeof(*m);
374 count += sizeof(*m);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375 break;
376 }
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400377 default:
Yinghai Lu711554d2008-04-07 11:36:39 -0700378 /* wrong mptable */
379 printk(KERN_ERR "Your mptable is wrong, contact your HW vendor!\n");
380 printk(KERN_ERR "type %x\n", *mpt);
381 print_hex_dump(KERN_ERR, " ", DUMP_PREFIX_ADDRESS, 16,
382 1, mpc, mpc->mpc_length, 1);
383 count = mpc->mpc_length;
384 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385 }
Yinghai Lu64898a82008-07-19 18:01:16 -0700386 if (x86_quirks->mpc_record)
387 (*x86_quirks->mpc_record)++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388 }
Yinghai Lue0da3362008-06-08 18:29:22 -0700389
390#ifdef CONFIG_X86_GENERICARCH
391 generic_bigsmp_probe();
392#endif
393
Suresh Siddha6e1cb382008-07-10 11:16:58 -0700394#ifdef CONFIG_X86_32
Ingo Molnar3c43f032007-05-02 19:27:04 +0200395 setup_apic_routing();
Suresh Siddha6e1cb382008-07-10 11:16:58 -0700396#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397 if (!num_processors)
Alexey Starikovskiye950bea2008-04-04 23:42:27 +0400398 printk(KERN_ERR "MPTABLE: no processors registered!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399 return num_processors;
400}
401
Alexey Starikovskiy61048c62008-04-04 23:41:07 +0400402#ifdef CONFIG_X86_IO_APIC
403
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404static int __init ELCR_trigger(unsigned int irq)
405{
406 unsigned int port;
407
408 port = 0x4d0 + (irq >> 3);
409 return (inb(port) >> (irq & 7)) & 1;
410}
411
412static void __init construct_default_ioirq_mptable(int mpc_default_type)
413{
Jaswinder Singh Rajput540d4e72009-01-03 15:50:52 +0530414 struct mpc_intsrc intsrc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415 int i;
416 int ELCR_fallback = 0;
417
418 intsrc.mpc_type = MP_INTSRC;
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400419 intsrc.mpc_irqflag = 0; /* conforming */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420 intsrc.mpc_srcbus = 0;
Alexey Starikovskiyec2cd0a2008-05-14 19:03:10 +0400421 intsrc.mpc_dstapic = mp_ioapics[0].mp_apicid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422
423 intsrc.mpc_irqtype = mp_INT;
424
425 /*
426 * If true, we have an ISA/PCI system with no IRQ entries
427 * in the MP table. To prevent the PCI interrupts from being set up
428 * incorrectly, we try to use the ELCR. The sanity check to see if
429 * there is good ELCR data is very simple - IRQ0, 1, 2 and 13 can
430 * never be level sensitive, so we simply see if the ELCR agrees.
431 * If it does, we assume it's valid.
432 */
433 if (mpc_default_type == 5) {
Alexey Starikovskiy62441bf2008-04-04 23:42:34 +0400434 printk(KERN_INFO "ISA/PCI bus type with no IRQ information... "
435 "falling back to ELCR\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436
Alexey Starikovskiy62441bf2008-04-04 23:42:34 +0400437 if (ELCR_trigger(0) || ELCR_trigger(1) || ELCR_trigger(2) ||
438 ELCR_trigger(13))
439 printk(KERN_ERR "ELCR contains invalid data... "
440 "not using ELCR\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441 else {
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400442 printk(KERN_INFO
443 "Using ELCR to identify PCI interrupts\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444 ELCR_fallback = 1;
445 }
446 }
447
448 for (i = 0; i < 16; i++) {
449 switch (mpc_default_type) {
450 case 2:
451 if (i == 0 || i == 13)
452 continue; /* IRQ0 & IRQ13 not connected */
453 /* fall through */
454 default:
455 if (i == 2)
456 continue; /* IRQ2 is never connected */
457 }
458
459 if (ELCR_fallback) {
460 /*
461 * If the ELCR indicates a level-sensitive interrupt, we
462 * copy that information over to the MP table in the
463 * irqflag field (level sensitive, active high polarity).
464 */
465 if (ELCR_trigger(i))
466 intsrc.mpc_irqflag = 13;
467 else
468 intsrc.mpc_irqflag = 0;
469 }
470
471 intsrc.mpc_srcbusirq = i;
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400472 intsrc.mpc_dstirq = i ? i : 2; /* IRQ0 to INTIN2 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473 MP_intsrc_info(&intsrc);
474 }
475
476 intsrc.mpc_irqtype = mp_ExtINT;
477 intsrc.mpc_srcbusirq = 0;
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400478 intsrc.mpc_dstirq = 0; /* 8259A to INTIN0 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479 MP_intsrc_info(&intsrc);
480}
481
Alexey Starikovskiy61048c62008-04-04 23:41:07 +0400482
Marcin Slusarz39e00fe2008-08-11 00:09:38 +0200483static void __init construct_ioapic_table(int mpc_default_type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484{
Jaswinder Singh Rajput2b85b5f2009-01-03 15:49:57 +0530485 struct mpc_ioapic ioapic;
Jaswinder Singh Rajput00fb8602009-01-03 15:47:32 +0530486 struct mpc_bus bus;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487
488 bus.mpc_type = MP_BUS;
489 bus.mpc_busid = 0;
490 switch (mpc_default_type) {
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400491 default:
Alexey Starikovskiy62441bf2008-04-04 23:42:34 +0400492 printk(KERN_ERR "???\nUnknown standard configuration %d\n",
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400493 mpc_default_type);
494 /* fall through */
495 case 1:
496 case 5:
497 memcpy(bus.mpc_bustype, "ISA ", 6);
498 break;
499 case 2:
500 case 6:
501 case 3:
502 memcpy(bus.mpc_bustype, "EISA ", 6);
503 break;
504 case 4:
505 case 7:
506 memcpy(bus.mpc_bustype, "MCA ", 6);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 }
508 MP_bus_info(&bus);
509 if (mpc_default_type > 4) {
510 bus.mpc_busid = 1;
511 memcpy(bus.mpc_bustype, "PCI ", 6);
512 MP_bus_info(&bus);
513 }
514
Jaswinder Singh Rajput5df82c72009-01-04 21:54:39 +0530515 ioapic.type = MP_IOAPIC;
516 ioapic.apicid = 2;
517 ioapic.apicver = mpc_default_type > 4 ? 0x10 : 0x01;
518 ioapic.flags = MPC_APIC_USABLE;
519 ioapic.apicaddr = 0xFEC00000;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520 MP_ioapic_info(&ioapic);
521
522 /*
523 * We set up most of the low 16 IO-APIC pins according to MPS rules.
524 */
525 construct_default_ioirq_mptable(mpc_default_type);
Thomas Gleixner85cc35f2008-05-25 21:21:36 +0200526}
527#else
Marcin Slusarz39e00fe2008-08-11 00:09:38 +0200528static inline void __init construct_ioapic_table(int mpc_default_type) { }
Alexey Starikovskiy61048c62008-04-04 23:41:07 +0400529#endif
Thomas Gleixner85cc35f2008-05-25 21:21:36 +0200530
531static inline void __init construct_default_ISA_mptable(int mpc_default_type)
532{
Jaswinder Singh Rajputf4f21b72009-01-03 15:48:52 +0530533 struct mpc_cpu processor;
Jaswinder Singh Rajput8fb29522009-01-03 15:51:54 +0530534 struct mpc_lintsrc lintsrc;
Thomas Gleixner85cc35f2008-05-25 21:21:36 +0200535 int linttypes[2] = { mp_ExtINT, mp_NMI };
536 int i;
537
538 /*
539 * local APIC has default address
540 */
541 mp_lapic_addr = APIC_DEFAULT_PHYS_BASE;
542
543 /*
544 * 2 CPUs, numbered 0 & 1.
545 */
546 processor.mpc_type = MP_PROCESSOR;
547 /* Either an integrated APIC or a discrete 82489DX. */
548 processor.mpc_apicver = mpc_default_type > 4 ? 0x10 : 0x01;
549 processor.mpc_cpuflag = CPU_ENABLED;
550 processor.mpc_cpufeature = (boot_cpu_data.x86 << 8) |
551 (boot_cpu_data.x86_model << 4) | boot_cpu_data.x86_mask;
552 processor.mpc_featureflag = boot_cpu_data.x86_capability[0];
553 processor.mpc_reserved[0] = 0;
554 processor.mpc_reserved[1] = 0;
555 for (i = 0; i < 2; i++) {
556 processor.mpc_apicid = i;
557 MP_processor_info(&processor);
558 }
559
560 construct_ioapic_table(mpc_default_type);
561
Jaswinder Singh Rajputb5ced7c2009-01-04 21:55:53 +0530562 lintsrc.type = MP_LINTSRC;
563 lintsrc.irqflag = 0; /* conforming */
564 lintsrc.srcbusid = 0;
565 lintsrc.srcbusirq = 0;
566 lintsrc.destapic = MP_APIC_ALL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567 for (i = 0; i < 2; i++) {
Jaswinder Singh Rajputb5ced7c2009-01-04 21:55:53 +0530568 lintsrc.irqtype = linttypes[i];
569 lintsrc.destapiclint = i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570 MP_lintsrc_info(&lintsrc);
571 }
572}
573
574static struct intel_mp_floating *mpf_found;
575
576/*
577 * Scan the memory blocks for an SMP configuration block.
578 */
Ingo Molnar3b335532008-07-10 17:30:40 +0200579static void __init __get_smp_config(unsigned int early)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580{
581 struct intel_mp_floating *mpf = mpf_found;
582
Yinghai Lu69b88af2008-12-05 22:45:50 -0800583 if (!mpf)
584 return;
585
586 if (acpi_lapic && early)
587 return;
588
589 /*
590 * MPS doesn't support hyperthreading, aka only have
591 * thread 0 apic id in MPS table
592 */
593 if (acpi_lapic && acpi_ioapic)
594 return;
595
Yinghai Lu3c9cb6d2008-07-19 02:07:25 -0700596 if (x86_quirks->mach_get_smp_config) {
597 if (x86_quirks->mach_get_smp_config(early))
Ingo Molnar3b335532008-07-10 17:30:40 +0200598 return;
599 }
Andi Kleen9adc1382008-12-04 13:33:35 +0100600
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400601 printk(KERN_INFO "Intel MultiProcessor Specification v1.%d\n",
602 mpf->mpf_specification);
Alexey Starikovskiyb3e24162008-05-23 01:54:44 +0400603#if defined(CONFIG_X86_LOCAL_APIC) && defined(CONFIG_X86_32)
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400604 if (mpf->mpf_feature2 & (1 << 7)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605 printk(KERN_INFO " IMCR and PIC compatibility mode.\n");
606 pic_mode = 1;
607 } else {
608 printk(KERN_INFO " Virtual Wire compatibility mode.\n");
609 pic_mode = 0;
610 }
Alexey Starikovskiy4421b1c2008-04-04 23:42:40 +0400611#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612 /*
613 * Now see if we need to read further.
614 */
615 if (mpf->mpf_feature1 != 0) {
Alexey Starikovskiy888032c2008-04-04 23:42:09 +0400616 if (early) {
617 /*
618 * local APIC has default address
619 */
620 mp_lapic_addr = APIC_DEFAULT_PHYS_BASE;
621 return;
622 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400624 printk(KERN_INFO "Default MP configuration #%d\n",
625 mpf->mpf_feature1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626 construct_default_ISA_mptable(mpf->mpf_feature1);
627
628 } else if (mpf->mpf_physptr) {
629
630 /*
631 * Read the physical hardware table. Anything here will
632 * override the defaults.
633 */
Alexey Starikovskiy888032c2008-04-04 23:42:09 +0400634 if (!smp_read_mpc(phys_to_virt(mpf->mpf_physptr), early)) {
Alexey Starikovskiybab4b272008-05-19 19:47:03 +0400635#ifdef CONFIG_X86_LOCAL_APIC
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636 smp_found_config = 0;
Alexey Starikovskiybab4b272008-05-19 19:47:03 +0400637#endif
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400638 printk(KERN_ERR
639 "BIOS bug, MP table errors detected!...\n");
Alexey Starikovskiy4421b1c2008-04-04 23:42:40 +0400640 printk(KERN_ERR "... disabling SMP support. "
641 "(tell your hw vendor)\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642 return;
643 }
Alexey Starikovskiy61048c62008-04-04 23:41:07 +0400644
Alexey Starikovskiy888032c2008-04-04 23:42:09 +0400645 if (early)
646 return;
Alexey Starikovskiy61048c62008-04-04 23:41:07 +0400647#ifdef CONFIG_X86_IO_APIC
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648 /*
649 * If there are no explicit MP IRQ entries, then we are
650 * broken. We set up most of the low 16 IO-APIC pins to
651 * ISA defaults and hope it will work.
652 */
653 if (!mp_irq_entries) {
Jaswinder Singh Rajput00fb8602009-01-03 15:47:32 +0530654 struct mpc_bus bus;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655
Alexey Starikovskiy4421b1c2008-04-04 23:42:40 +0400656 printk(KERN_ERR "BIOS bug, no explicit IRQ entries, "
657 "using default mptable. "
658 "(tell your hw vendor)\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659
660 bus.mpc_type = MP_BUS;
661 bus.mpc_busid = 0;
662 memcpy(bus.mpc_bustype, "ISA ", 6);
663 MP_bus_info(&bus);
664
665 construct_default_ioirq_mptable(0);
666 }
Alexey Starikovskiy61048c62008-04-04 23:41:07 +0400667#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668 } else
669 BUG();
670
Alexey Starikovskiy888032c2008-04-04 23:42:09 +0400671 if (!early)
672 printk(KERN_INFO "Processors: %d\n", num_processors);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673 /*
674 * Only use the first configuration found.
675 */
676}
677
Alexey Starikovskiy888032c2008-04-04 23:42:09 +0400678void __init early_get_smp_config(void)
679{
680 __get_smp_config(1);
681}
682
683void __init get_smp_config(void)
684{
685 __get_smp_config(0);
686}
687
688static int __init smp_scan_config(unsigned long base, unsigned long length,
689 unsigned reserve)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690{
Alexey Starikovskiy92fd4b72008-04-04 23:42:46 +0400691 unsigned int *bp = phys_to_virt(base);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692 struct intel_mp_floating *mpf;
693
Rene Hermaneeb0d7d2008-08-11 17:44:57 +0200694 apic_printk(APIC_VERBOSE, "Scan SMP from %p for %ld bytes.\n",
695 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))) {
Alexey Starikovskiybab4b272008-05-19 19:47:03 +0400705#ifdef CONFIG_X86_LOCAL_APIC
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706 smp_found_config = 1;
Alexey Starikovskiybab4b272008-05-19 19:47:03 +0400707#endif
Alexey Starikovskiy92fd4b72008-04-04 23:42:46 +0400708 mpf_found = mpf;
Yinghai Lub1f006b2008-06-09 18:11:36 -0700709
Ingo Molnare91a3b42008-01-30 13:33:08 +0100710 printk(KERN_INFO "found SMP MP-table at [%p] %08lx\n",
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400711 mpf, virt_to_phys(mpf));
Yinghai Lub1f006b2008-06-09 18:11:36 -0700712
713 if (!reserve)
714 return 1;
Yinghai Lud2dbf342008-06-13 02:00:56 -0700715 reserve_bootmem_generic(virt_to_phys(mpf), PAGE_SIZE,
Bernhard Walle72a7fe32008-02-07 00:15:17 -0800716 BOOTMEM_DEFAULT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717 if (mpf->mpf_physptr) {
Yinghai Lud2dbf342008-06-13 02:00:56 -0700718 unsigned long size = PAGE_SIZE;
719#ifdef CONFIG_X86_32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720 /*
721 * We cannot access to MPC table to compute
722 * table size yet, as only few megabytes from
723 * the bottom is mapped now.
724 * PC-9800's MPC table places on the very last
725 * of physical memory; so that simply reserving
726 * PAGE_SIZE from mpg->mpf_physptr yields BUG()
727 * in reserve_bootmem.
728 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729 unsigned long end = max_low_pfn * PAGE_SIZE;
730 if (mpf->mpf_physptr + size > end)
731 size = end - mpf->mpf_physptr;
Yinghai Lud2dbf342008-06-13 02:00:56 -0700732#endif
733 reserve_bootmem_generic(mpf->mpf_physptr, size,
Bernhard Walle72a7fe32008-02-07 00:15:17 -0800734 BOOTMEM_DEFAULT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735 }
736
Yinghai Lud2dbf342008-06-13 02:00:56 -0700737 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738 }
739 bp += 4;
740 length -= 16;
741 }
742 return 0;
743}
744
Ingo Molnar3b335532008-07-10 17:30:40 +0200745static void __init __find_smp_config(unsigned int reserve)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746{
747 unsigned int address;
748
Yinghai Lu3c9cb6d2008-07-19 02:07:25 -0700749 if (x86_quirks->mach_find_smp_config) {
750 if (x86_quirks->mach_find_smp_config(reserve))
Ingo Molnar3b335532008-07-10 17:30:40 +0200751 return;
752 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753 /*
754 * FIXME: Linux assumes you have 640K of base ram..
755 * this continues the error...
756 *
757 * 1) Scan the bottom 1K for a signature
758 * 2) Scan the top 1K of base RAM
759 * 3) Scan the 64K of bios
760 */
Alexey Starikovskiy888032c2008-04-04 23:42:09 +0400761 if (smp_scan_config(0x0, 0x400, reserve) ||
762 smp_scan_config(639 * 0x400, 0x400, reserve) ||
763 smp_scan_config(0xF0000, 0x10000, reserve))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764 return;
765 /*
766 * If it is an SMP machine we should know now, unless the
767 * configuration is in an EISA/MCA bus machine with an
768 * extended bios data area.
769 *
770 * there is a real-mode segmented pointer pointing to the
771 * 4K EBDA area at 0x40E, calculate and scan it here.
772 *
773 * NOTE! There are Linux loaders that will corrupt the EBDA
774 * area, and as such this kind of SMP config may be less
775 * trustworthy, simply because the SMP table may have been
776 * stomped on during early boot. These loaders are buggy and
777 * should be fixed.
778 *
779 * MP1.4 SPEC states to only scan first 1K of 4K EBDA.
780 */
781
782 address = get_bios_ebda();
783 if (address)
Alexey Starikovskiy888032c2008-04-04 23:42:09 +0400784 smp_scan_config(address, 0x400, reserve);
785}
786
787void __init early_find_smp_config(void)
788{
789 __find_smp_config(0);
790}
791
792void __init find_smp_config(void)
793{
794 __find_smp_config(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795}
Yinghai Lu2944e162008-06-01 13:17:38 -0700796
797#ifdef CONFIG_X86_IO_APIC
798static u8 __initdata irq_used[MAX_IRQ_SOURCES];
799
Jaswinder Singh Rajput540d4e72009-01-03 15:50:52 +0530800static int __init get_MP_intsrc_index(struct mpc_intsrc *m)
Yinghai Lu2944e162008-06-01 13:17:38 -0700801{
802 int i;
803
804 if (m->mpc_irqtype != mp_INT)
805 return 0;
806
807 if (m->mpc_irqflag != 0x0f)
808 return 0;
809
810 /* not legacy */
811
812 for (i = 0; i < mp_irq_entries; i++) {
813 if (mp_irqs[i].mp_irqtype != mp_INT)
814 continue;
815
816 if (mp_irqs[i].mp_irqflag != 0x0f)
817 continue;
818
819 if (mp_irqs[i].mp_srcbus != m->mpc_srcbus)
820 continue;
821 if (mp_irqs[i].mp_srcbusirq != m->mpc_srcbusirq)
822 continue;
823 if (irq_used[i]) {
824 /* already claimed */
825 return -2;
826 }
827 irq_used[i] = 1;
828 return i;
829 }
830
831 /* not found */
832 return -1;
833}
834
835#define SPARE_SLOT_NUM 20
836
Jaswinder Singh Rajput540d4e72009-01-03 15:50:52 +0530837static struct mpc_intsrc __initdata *m_spare[SPARE_SLOT_NUM];
Yinghai Lu2944e162008-06-01 13:17:38 -0700838#endif
839
Jaswinder Singh Rajputf29521e2009-01-03 15:46:57 +0530840static int __init replace_intsrc_all(struct mpc_table *mpc,
Yinghai Lu2944e162008-06-01 13:17:38 -0700841 unsigned long mpc_new_phys,
842 unsigned long mpc_new_length)
843{
844#ifdef CONFIG_X86_IO_APIC
845 int i;
846 int nr_m_spare = 0;
847#endif
848
849 int count = sizeof(*mpc);
850 unsigned char *mpt = ((unsigned char *)mpc) + count;
851
852 printk(KERN_INFO "mpc_length %x\n", mpc->mpc_length);
853 while (count < mpc->mpc_length) {
854 switch (*mpt) {
855 case MP_PROCESSOR:
856 {
Jaswinder Singh Rajputf4f21b72009-01-03 15:48:52 +0530857 struct mpc_cpu *m = (struct mpc_cpu *)mpt;
Yinghai Lu2944e162008-06-01 13:17:38 -0700858 mpt += sizeof(*m);
859 count += sizeof(*m);
860 break;
861 }
862 case MP_BUS:
863 {
Jaswinder Singh Rajput00fb8602009-01-03 15:47:32 +0530864 struct mpc_bus *m = (struct mpc_bus *)mpt;
Yinghai Lu2944e162008-06-01 13:17:38 -0700865 mpt += sizeof(*m);
866 count += sizeof(*m);
867 break;
868 }
869 case MP_IOAPIC:
870 {
Jaswinder Singh Rajput2b85b5f2009-01-03 15:49:57 +0530871 mpt += sizeof(struct mpc_ioapic);
872 count += sizeof(struct mpc_ioapic);
Yinghai Lu2944e162008-06-01 13:17:38 -0700873 break;
874 }
875 case MP_INTSRC:
876 {
877#ifdef CONFIG_X86_IO_APIC
Jaswinder Singh Rajput540d4e72009-01-03 15:50:52 +0530878 struct mpc_intsrc *m = (struct mpc_intsrc *)mpt;
Yinghai Lu2944e162008-06-01 13:17:38 -0700879
880 printk(KERN_INFO "OLD ");
881 print_MP_intsrc_info(m);
882 i = get_MP_intsrc_index(m);
883 if (i > 0) {
884 assign_to_mpc_intsrc(&mp_irqs[i], m);
885 printk(KERN_INFO "NEW ");
886 print_mp_irq_info(&mp_irqs[i]);
887 } else if (!i) {
888 /* legacy, do nothing */
889 } else if (nr_m_spare < SPARE_SLOT_NUM) {
890 /*
891 * not found (-1), or duplicated (-2)
892 * are invalid entries,
893 * we need to use the slot later
894 */
895 m_spare[nr_m_spare] = m;
896 nr_m_spare++;
897 }
898#endif
Jaswinder Singh Rajput540d4e72009-01-03 15:50:52 +0530899 mpt += sizeof(struct mpc_intsrc);
900 count += sizeof(struct mpc_intsrc);
Yinghai Lu2944e162008-06-01 13:17:38 -0700901 break;
902 }
903 case MP_LINTSRC:
904 {
Jaswinder Singh Rajput8fb29522009-01-03 15:51:54 +0530905 struct mpc_lintsrc *m =
906 (struct mpc_lintsrc *)mpt;
Yinghai Lu2944e162008-06-01 13:17:38 -0700907 mpt += sizeof(*m);
908 count += sizeof(*m);
909 break;
910 }
911 default:
912 /* wrong mptable */
913 printk(KERN_ERR "Your mptable is wrong, contact your HW vendor!\n");
914 printk(KERN_ERR "type %x\n", *mpt);
915 print_hex_dump(KERN_ERR, " ", DUMP_PREFIX_ADDRESS, 16,
916 1, mpc, mpc->mpc_length, 1);
917 goto out;
918 }
919 }
920
921#ifdef CONFIG_X86_IO_APIC
922 for (i = 0; i < mp_irq_entries; i++) {
923 if (irq_used[i])
924 continue;
925
926 if (mp_irqs[i].mp_irqtype != mp_INT)
927 continue;
928
929 if (mp_irqs[i].mp_irqflag != 0x0f)
930 continue;
931
932 if (nr_m_spare > 0) {
933 printk(KERN_INFO "*NEW* found ");
934 nr_m_spare--;
935 assign_to_mpc_intsrc(&mp_irqs[i], m_spare[nr_m_spare]);
936 m_spare[nr_m_spare] = NULL;
937 } else {
Jaswinder Singh Rajput540d4e72009-01-03 15:50:52 +0530938 struct mpc_intsrc *m = (struct mpc_intsrc *)mpt;
939 count += sizeof(struct mpc_intsrc);
Yinghai Lu2944e162008-06-01 13:17:38 -0700940 if (!mpc_new_phys) {
941 printk(KERN_INFO "No spare slots, try to append...take your risk, new mpc_length %x\n", count);
942 } else {
943 if (count <= mpc_new_length)
944 printk(KERN_INFO "No spare slots, try to append..., new mpc_length %x\n", count);
945 else {
946 printk(KERN_ERR "mpc_new_length %lx is too small\n", mpc_new_length);
947 goto out;
948 }
949 }
950 assign_to_mpc_intsrc(&mp_irqs[i], m);
951 mpc->mpc_length = count;
Jaswinder Singh Rajput540d4e72009-01-03 15:50:52 +0530952 mpt += sizeof(struct mpc_intsrc);
Yinghai Lu2944e162008-06-01 13:17:38 -0700953 }
954 print_mp_irq_info(&mp_irqs[i]);
955 }
956#endif
957out:
958 /* update checksum */
959 mpc->mpc_checksum = 0;
960 mpc->mpc_checksum -= mpf_checksum((unsigned char *)mpc,
961 mpc->mpc_length);
962
963 return 0;
964}
965
Yinghai Lufcfa1462008-06-18 17:29:31 -0700966static int __initdata enable_update_mptable;
967
Yinghai Lu2944e162008-06-01 13:17:38 -0700968static int __init update_mptable_setup(char *str)
969{
970 enable_update_mptable = 1;
971 return 0;
972}
973early_param("update_mptable", update_mptable_setup);
974
975static unsigned long __initdata mpc_new_phys;
976static unsigned long mpc_new_length __initdata = 4096;
977
978/* alloc_mptable or alloc_mptable=4k */
979static int __initdata alloc_mptable;
980static int __init parse_alloc_mptable_opt(char *p)
981{
982 enable_update_mptable = 1;
983 alloc_mptable = 1;
984 if (!p)
985 return 0;
986 mpc_new_length = memparse(p, &p);
987 return 0;
988}
989early_param("alloc_mptable", parse_alloc_mptable_opt);
990
991void __init early_reserve_e820_mpc_new(void)
992{
993 if (enable_update_mptable && alloc_mptable) {
994 u64 startt = 0;
995#ifdef CONFIG_X86_TRAMPOLINE
996 startt = TRAMPOLINE_BASE;
997#endif
998 mpc_new_phys = early_reserve_e820(startt, mpc_new_length, 4);
999 }
1000}
1001
1002static int __init update_mp_table(void)
1003{
1004 char str[16];
1005 char oem[10];
1006 struct intel_mp_floating *mpf;
Jaswinder Singh Rajputf29521e2009-01-03 15:46:57 +05301007 struct mpc_table *mpc, *mpc_new;
Yinghai Lu2944e162008-06-01 13:17:38 -07001008
1009 if (!enable_update_mptable)
1010 return 0;
1011
1012 mpf = mpf_found;
1013 if (!mpf)
1014 return 0;
1015
1016 /*
1017 * Now see if we need to go further.
1018 */
1019 if (mpf->mpf_feature1 != 0)
1020 return 0;
1021
1022 if (!mpf->mpf_physptr)
1023 return 0;
1024
1025 mpc = phys_to_virt(mpf->mpf_physptr);
1026
1027 if (!smp_check_mpc(mpc, oem, str))
1028 return 0;
1029
1030 printk(KERN_INFO "mpf: %lx\n", virt_to_phys(mpf));
1031 printk(KERN_INFO "mpf_physptr: %x\n", mpf->mpf_physptr);
1032
1033 if (mpc_new_phys && mpc->mpc_length > mpc_new_length) {
1034 mpc_new_phys = 0;
1035 printk(KERN_INFO "mpc_new_length is %ld, please use alloc_mptable=8k\n",
1036 mpc_new_length);
1037 }
1038
1039 if (!mpc_new_phys) {
1040 unsigned char old, new;
1041 /* check if we can change the postion */
1042 mpc->mpc_checksum = 0;
1043 old = mpf_checksum((unsigned char *)mpc, mpc->mpc_length);
1044 mpc->mpc_checksum = 0xff;
1045 new = mpf_checksum((unsigned char *)mpc, mpc->mpc_length);
1046 if (old == new) {
1047 printk(KERN_INFO "mpc is readonly, please try alloc_mptable instead\n");
1048 return 0;
1049 }
1050 printk(KERN_INFO "use in-positon replacing\n");
1051 } else {
1052 mpf->mpf_physptr = mpc_new_phys;
1053 mpc_new = phys_to_virt(mpc_new_phys);
1054 memcpy(mpc_new, mpc, mpc->mpc_length);
1055 mpc = mpc_new;
1056 /* check if we can modify that */
1057 if (mpc_new_phys - mpf->mpf_physptr) {
1058 struct intel_mp_floating *mpf_new;
1059 /* steal 16 bytes from [0, 1k) */
1060 printk(KERN_INFO "mpf new: %x\n", 0x400 - 16);
1061 mpf_new = phys_to_virt(0x400 - 16);
1062 memcpy(mpf_new, mpf, 16);
1063 mpf = mpf_new;
1064 mpf->mpf_physptr = mpc_new_phys;
1065 }
1066 mpf->mpf_checksum = 0;
1067 mpf->mpf_checksum -= mpf_checksum((unsigned char *)mpf, 16);
1068 printk(KERN_INFO "mpf_physptr new: %x\n", mpf->mpf_physptr);
1069 }
1070
1071 /*
1072 * only replace the one with mp_INT and
1073 * MP_IRQ_TRIGGER_LEVEL|MP_IRQ_POLARITY_LOW,
1074 * already in mp_irqs , stored by ... and mp_config_acpi_gsi,
1075 * may need pci=routeirq for all coverage
1076 */
1077 replace_intsrc_all(mpc, mpc_new_phys, mpc_new_length);
1078
1079 return 0;
1080}
1081
1082late_initcall(update_mp_table);