blob: 4d810b0384a5547791631d45573f29ec8973591d [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Intel Multiprocessor Specification 1.1 and 1.4
3 * compliant MP-table parsing routines.
4 *
5 * (c) 1995 Alan Cox, Building #3 <alan@redhat.com>
6 * (c) 1998, 1999, 2000 Ingo Molnar <mingo@redhat.com>
7 *
8 * Fixes
9 * Erich Boleyn : MP v1.4 and additional changes.
10 * Alan Cox : Added EBDA scanning
11 * Ingo Molnar : various cleanups and rewrites
12 * Maciej W. Rozycki: Bits for default MP configurations
13 * Paul Diefenbaugh: Added full ACPI support
14 */
15
16#include <linux/mm.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070017#include <linux/init.h>
18#include <linux/acpi.h>
19#include <linux/delay.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#include <linux/bootmem.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#include <linux/kernel_stat.h>
22#include <linux/mc146818rtc.h>
23#include <linux/bitops.h>
24
25#include <asm/smp.h>
26#include <asm/acpi.h>
27#include <asm/mtrr.h>
28#include <asm/mpspec.h>
29#include <asm/io_apic.h>
Alexey Starikovskiyce3fe6b2008-03-17 22:08:17 +030030#include <asm/bios_ebda.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070031
32#include <mach_apic.h>
Andi Kleen874c4fe2006-09-26 10:52:26 +020033#include <mach_apicdef.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070034#include <mach_mpparse.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070035
36/* Have we found an MP table */
37int smp_found_config;
Vivek Goyal4a5d1072007-01-11 01:52:44 +010038unsigned int __cpuinitdata maxcpus = NR_CPUS;
Linus Torvalds1da177e2005-04-16 15:20:36 -070039
40/*
41 * Various Linux-internal data structures created from the
42 * MP-table.
43 */
Alexey Starikovskiyc0a282c2008-03-20 14:55:02 +030044#if defined (CONFIG_MCA) || defined (CONFIG_EISA)
Linus Torvalds1da177e2005-04-16 15:20:36 -070045int mp_bus_id_to_type [MAX_MP_BUSSES];
Alexey Starikovskiyc0a282c2008-03-20 14:55:02 +030046#endif
Alexey Starikovskiya6333c32008-03-20 14:54:09 +030047DECLARE_BITMAP(mp_bus_not_pci, MAX_MP_BUSSES);
Linus Torvalds1da177e2005-04-16 15:20:36 -070048int mp_bus_id_to_pci_bus [MAX_MP_BUSSES] = { [0 ... MAX_MP_BUSSES-1] = -1 };
49static int mp_current_pci_id;
50
51/* I/O APIC entries */
52struct mpc_config_ioapic mp_ioapics[MAX_IO_APICS];
53
54/* # of MP IRQ source entries */
55struct mpc_config_intsrc mp_irqs[MAX_IRQ_SOURCES];
56
57/* MP IRQ source entries */
58int mp_irq_entries;
59
60int nr_ioapics;
61
62int pic_mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -070063
Venkatesh Pallipadi911a62d2005-09-03 15:56:31 -070064unsigned int def_to_bigsmp = 0;
65
Linus Torvalds1da177e2005-04-16 15:20:36 -070066/* Processor that is doing the boot up */
67unsigned int boot_cpu_physical_apicid = -1U;
Alexey Starikovskiy2bb9e9d2008-03-27 23:54:50 +030068
69/* Make it easy to share the UP and SMP code: */
70#ifndef CONFIG_X86_SMP
Sam Ravnborg87d7e982008-01-30 13:33:37 +010071unsigned int num_processors;
Alexey Starikovskiy2bb9e9d2008-03-27 23:54:50 +030072#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070073
Glauber Costa7b1292e2008-03-03 14:12:41 -030074unsigned disabled_cpus __cpuinitdata;
75
Alexey Starikovskiy40014ba2008-03-27 23:54:44 +030076/* Make it easy to share the UP and SMP code: */
77#ifndef CONFIG_X86_SMP
Linus Torvalds1da177e2005-04-16 15:20:36 -070078physid_mask_t phys_cpu_present_map;
Alexey Starikovskiy40014ba2008-03-27 23:54:44 +030079#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070080
Ingo Molnar11617052008-03-19 20:26:15 +010081#ifndef CONFIG_SMP
82DEFINE_PER_CPU(u16, x86_bios_cpu_apicid) = BAD_APICID;
83#endif
84
Linus Torvalds1da177e2005-04-16 15:20:36 -070085/*
86 * Intel MP BIOS table parsing routines:
87 */
88
89
90/*
91 * Checksum an MP configuration block.
92 */
93
94static int __init mpf_checksum(unsigned char *mp, int len)
95{
96 int sum = 0;
97
98 while (len--)
99 sum += *mp++;
100
101 return sum & 0xFF;
102}
103
Alexey Starikovskiy86420502008-03-17 22:08:55 +0300104#ifdef CONFIG_X86_NUMAQ
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105/*
106 * Have to match translation table entries to main table entries by counter
107 * hence the mpc_record variable .... can't see a less disgusting way of
108 * doing this ....
109 */
110
111static int mpc_record;
Vivek Goyal4a5d1072007-01-11 01:52:44 +0100112static struct mpc_config_translation *translation_table[MAX_MPC_ENTRY] __cpuinitdata;
Alexey Starikovskiy86420502008-03-17 22:08:55 +0300113#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114
Alexey Starikovskiyc853c672008-03-27 23:54:13 +0300115static void __cpuinit generic_processor_info(int apicid, int version)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116{
Alexey Starikovskiyc853c672008-03-27 23:54:13 +0300117 int cpu;
Glauber de Oliveira Costaa6c422c2008-03-19 14:25:25 -0300118 cpumask_t tmp_map;
Andrew Morton12992322005-09-09 13:01:21 -0700119 physid_mask_t phys_cpu;
Alexey Starikovskiyc853c672008-03-27 23:54:13 +0300120
121 /*
122 * Validate version
123 */
124 if (version == 0x0) {
125 printk(KERN_WARNING "BIOS bug, APIC version is 0 for CPU#%d! "
126 "fixing up to 0x10. (tell your hw vendor)\n",
127 version);
128 version = 0x10;
129 }
130 apic_version[apicid] = version;
131
132 phys_cpu = apicid_to_cpu_present(apicid);
133 physids_or(phys_cpu_present_map, phys_cpu_present_map, phys_cpu);
134
135 if (num_processors >= NR_CPUS) {
136 printk(KERN_WARNING "WARNING: NR_CPUS limit of %i reached."
137 " Processor ignored.\n", NR_CPUS);
138 return;
139 }
140
141 if (num_processors >= maxcpus) {
142 printk(KERN_WARNING "WARNING: maxcpus limit of %i reached."
143 " Processor ignored.\n", maxcpus);
144 return;
145 }
146
147 num_processors++;
148 cpus_complement(tmp_map, cpu_present_map);
149 cpu = first_cpu(tmp_map);
150
151 if (apicid == boot_cpu_physical_apicid)
152 /*
153 * x86_bios_cpu_apicid is required to have processors listed
154 * in same order as logical cpu numbers. Hence the first
155 * entry is BSP, and so on.
156 */
157 cpu = 0;
158
159 /*
160 * Would be preferable to switch to bigsmp when CONFIG_HOTPLUG_CPU=y
161 * but we need to work other dependencies like SMP_SUSPEND etc
162 * before this can be done without some confusion.
163 * if (CPU_HOTPLUG_ENABLED || num_processors > 8)
164 * - Ashok Raj <ashok.raj@intel.com>
165 */
166 if (num_processors > 8) {
167 switch (boot_cpu_data.x86_vendor) {
168 case X86_VENDOR_INTEL:
169 if (!APIC_XAPIC(version)) {
170 def_to_bigsmp = 0;
171 break;
172 }
173 /* If P4 and above fall through */
174 case X86_VENDOR_AMD:
175 def_to_bigsmp = 1;
176 }
177 }
178#ifdef CONFIG_SMP
179 /* are we being called early in kernel startup? */
180 if (x86_cpu_to_apicid_early_ptr) {
181 u16 *cpu_to_apicid = x86_cpu_to_apicid_early_ptr;
182 u16 *bios_cpu_apicid = x86_bios_cpu_apicid_early_ptr;
183
184 cpu_to_apicid[cpu] = apicid;
185 bios_cpu_apicid[cpu] = apicid;
186 } else {
187 per_cpu(x86_cpu_to_apicid, cpu) = apicid;
188 per_cpu(x86_bios_cpu_apicid, cpu) = apicid;
189 }
190#endif
191 cpu_set(cpu, cpu_possible_map);
192 cpu_set(cpu, cpu_present_map);
193}
194
195static void __cpuinit MP_processor_info(struct mpc_config_processor *m)
196{
197 int apicid;
198
Glauber Costa7b1292e2008-03-03 14:12:41 -0300199 if (!(m->mpc_cpuflag & CPU_ENABLED)) {
200 disabled_cpus++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201 return;
Glauber Costa7b1292e2008-03-03 14:12:41 -0300202 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203
Alexey Starikovskiy4655c7d2008-03-17 22:08:36 +0300204#ifdef CONFIG_X86_NUMAQ
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205 apicid = mpc_apic_id(m, translation_table[mpc_record]);
Alexey Starikovskiy4655c7d2008-03-17 22:08:36 +0300206#else
207 Dprintk("Processor #%d %u:%u APIC version %d\n",
208 m->mpc_apicid,
209 (m->mpc_cpufeature & CPU_FAMILY_MASK) >> 8,
210 (m->mpc_cpufeature & CPU_MODEL_MASK) >> 4,
211 m->mpc_apicver);
212 apicid = m->mpc_apicid;
213#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214
215 if (m->mpc_featureflag&(1<<0))
216 Dprintk(" Floating point unit present.\n");
217 if (m->mpc_featureflag&(1<<7))
218 Dprintk(" Machine Exception supported.\n");
219 if (m->mpc_featureflag&(1<<8))
220 Dprintk(" 64 bit compare & exchange supported.\n");
221 if (m->mpc_featureflag&(1<<9))
222 Dprintk(" Internal APIC present.\n");
223 if (m->mpc_featureflag&(1<<11))
224 Dprintk(" SEP present.\n");
225 if (m->mpc_featureflag&(1<<12))
226 Dprintk(" MTRR present.\n");
227 if (m->mpc_featureflag&(1<<13))
228 Dprintk(" PGE present.\n");
229 if (m->mpc_featureflag&(1<<14))
230 Dprintk(" MCA present.\n");
231 if (m->mpc_featureflag&(1<<15))
232 Dprintk(" CMOV present.\n");
233 if (m->mpc_featureflag&(1<<16))
234 Dprintk(" PAT present.\n");
235 if (m->mpc_featureflag&(1<<17))
236 Dprintk(" PSE present.\n");
237 if (m->mpc_featureflag&(1<<18))
238 Dprintk(" PSN present.\n");
239 if (m->mpc_featureflag&(1<<19))
240 Dprintk(" Cache Line Flush Instruction present.\n");
241 /* 20 Reserved */
242 if (m->mpc_featureflag&(1<<21))
243 Dprintk(" Debug Trace and EMON Store present.\n");
244 if (m->mpc_featureflag&(1<<22))
245 Dprintk(" ACPI Thermal Throttle Registers present.\n");
246 if (m->mpc_featureflag&(1<<23))
247 Dprintk(" MMX present.\n");
248 if (m->mpc_featureflag&(1<<24))
249 Dprintk(" FXSR present.\n");
250 if (m->mpc_featureflag&(1<<25))
251 Dprintk(" XMM present.\n");
252 if (m->mpc_featureflag&(1<<26))
253 Dprintk(" Willamette New Instructions present.\n");
254 if (m->mpc_featureflag&(1<<27))
255 Dprintk(" Self Snoop present.\n");
256 if (m->mpc_featureflag&(1<<28))
257 Dprintk(" HT present.\n");
258 if (m->mpc_featureflag&(1<<29))
259 Dprintk(" Thermal Monitor present.\n");
260 /* 30, 31 Reserved */
261
262
263 if (m->mpc_cpuflag & CPU_BOOTPROCESSOR) {
264 Dprintk(" Bootup CPU\n");
265 boot_cpu_physical_apicid = m->mpc_apicid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266 }
267
Alexey Starikovskiyc853c672008-03-27 23:54:13 +0300268 generic_processor_info(apicid, m->mpc_apicver);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269}
270
271static void __init MP_bus_info (struct mpc_config_bus *m)
272{
273 char str[7];
274
275 memcpy(str, m->mpc_bustype, 6);
276 str[6] = 0;
277
Alexey Starikovskiy0ec153a2008-03-17 22:08:48 +0300278#ifdef CONFIG_X86_NUMAQ
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279 mpc_oem_bus_info(m, str, translation_table[mpc_record]);
Alexey Starikovskiy0ec153a2008-03-17 22:08:48 +0300280#else
281 Dprintk("Bus #%d is %s\n", m->mpc_busid, str);
282#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283
Andi Kleen5e4edbb2006-09-26 10:52:35 +0200284#if MAX_MP_BUSSES < 256
Randy Dunlapc0ec31a2006-04-10 22:53:13 -0700285 if (m->mpc_busid >= MAX_MP_BUSSES) {
286 printk(KERN_WARNING "MP table busid value (%d) for bustype %s "
287 " is too large, max. supported is %d\n",
288 m->mpc_busid, str, MAX_MP_BUSSES - 1);
289 return;
290 }
Andi Kleen5e4edbb2006-09-26 10:52:35 +0200291#endif
Randy Dunlapc0ec31a2006-04-10 22:53:13 -0700292
Alexey Starikovskiya6333c32008-03-20 14:54:09 +0300293 set_bit(m->mpc_busid, mp_bus_not_pci);
Alexey Starikovskiy9e0a2de2008-03-20 14:54:56 +0300294 if (strncmp(str, BUSTYPE_PCI, sizeof(BUSTYPE_PCI)-1) == 0) {
Alexey Starikovskiyd285e332008-03-17 22:08:42 +0300295#ifdef CONFIG_X86_NUMAQ
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296 mpc_oem_pci_bus(m, translation_table[mpc_record]);
Alexey Starikovskiyd285e332008-03-17 22:08:42 +0300297#endif
Alexey Starikovskiya6333c32008-03-20 14:54:09 +0300298 clear_bit(m->mpc_busid, mp_bus_not_pci);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299 mp_bus_id_to_pci_bus[m->mpc_busid] = mp_current_pci_id;
300 mp_current_pci_id++;
Alexey Starikovskiyc0a282c2008-03-20 14:55:02 +0300301#if defined(CONFIG_EISA) || defined (CONFIG_MCA)
302 mp_bus_id_to_type[m->mpc_busid] = MP_BUS_PCI;
Alexey Starikovskiy9e0a2de2008-03-20 14:54:56 +0300303 } else if (strncmp(str, BUSTYPE_ISA, sizeof(BUSTYPE_ISA)-1) == 0) {
304 mp_bus_id_to_type[m->mpc_busid] = MP_BUS_ISA;
305 } else if (strncmp(str, BUSTYPE_EISA, sizeof(BUSTYPE_EISA)-1) == 0) {
306 mp_bus_id_to_type[m->mpc_busid] = MP_BUS_EISA;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307 } else if (strncmp(str, BUSTYPE_MCA, sizeof(BUSTYPE_MCA)-1) == 0) {
308 mp_bus_id_to_type[m->mpc_busid] = MP_BUS_MCA;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309 } else {
310 printk(KERN_WARNING "Unknown bustype %s - ignoring\n", str);
Alexey Starikovskiyc0a282c2008-03-20 14:55:02 +0300311#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312 }
313}
314
Alexey Starikovskiy857033a2008-03-17 22:08:05 +0300315static int bad_ioapic(unsigned long address)
316{
317 if (nr_ioapics >= MAX_IO_APICS) {
318 printk(KERN_ERR "ERROR: Max # of I/O APICs (%d) exceeded "
319 "(found %d)\n", MAX_IO_APICS, nr_ioapics);
320 panic("Recompile kernel with bigger MAX_IO_APICS!\n");
321 }
322 if (!address) {
323 printk(KERN_ERR "WARNING: Bogus (zero) I/O APIC address"
324 " found in table, skipping!\n");
325 return 1;
326 }
327 return 0;
328}
329
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330static void __init MP_ioapic_info (struct mpc_config_ioapic *m)
331{
332 if (!(m->mpc_flags & MPC_APIC_USABLE))
333 return;
334
Thomas Gleixner64883ab2008-01-30 13:30:35 +0100335 printk(KERN_INFO "I/O APIC #%d Version %d at 0x%X.\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336 m->mpc_apicid, m->mpc_apicver, m->mpc_apicaddr);
Alexey Starikovskiy857033a2008-03-17 22:08:05 +0300337
338 if (bad_ioapic(m->mpc_apicaddr))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339 return;
Alexey Starikovskiy857033a2008-03-17 22:08:05 +0300340
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341 mp_ioapics[nr_ioapics] = *m;
342 nr_ioapics++;
343}
344
345static void __init MP_intsrc_info (struct mpc_config_intsrc *m)
346{
347 mp_irqs [mp_irq_entries] = *m;
348 Dprintk("Int: type %d, pol %d, trig %d, bus %d,"
349 " IRQ %02x, APIC ID %x, APIC INT %02x\n",
350 m->mpc_irqtype, m->mpc_irqflag & 3,
351 (m->mpc_irqflag >> 2) & 3, m->mpc_srcbus,
352 m->mpc_srcbusirq, m->mpc_dstapic, m->mpc_dstirq);
353 if (++mp_irq_entries == MAX_IRQ_SOURCES)
354 panic("Max # of irq sources exceeded!!\n");
355}
356
357static void __init MP_lintsrc_info (struct mpc_config_lintsrc *m)
358{
359 Dprintk("Lint: type %d, pol %d, trig %d, bus %d,"
360 " IRQ %02x, APIC ID %x, APIC LINT %02x\n",
361 m->mpc_irqtype, m->mpc_irqflag & 3,
362 (m->mpc_irqflag >> 2) &3, m->mpc_srcbusid,
363 m->mpc_srcbusirq, m->mpc_destapic, m->mpc_destapiclint);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364}
365
366#ifdef CONFIG_X86_NUMAQ
367static void __init MP_translation_info (struct mpc_config_translation *m)
368{
369 printk(KERN_INFO "Translation: record %d, type %d, quad %d, global %d, local %d\n", mpc_record, m->trans_type, m->trans_quad, m->trans_global, m->trans_local);
370
371 if (mpc_record >= MAX_MPC_ENTRY)
372 printk(KERN_ERR "MAX_MPC_ENTRY exceeded!\n");
373 else
374 translation_table[mpc_record] = m; /* stash this for later */
375 if (m->trans_quad < MAX_NUMNODES && !node_online(m->trans_quad))
376 node_set_online(m->trans_quad);
377}
378
379/*
380 * Read/parse the MPC oem tables
381 */
382
383static void __init smp_read_mpc_oem(struct mp_config_oemtable *oemtable, \
384 unsigned short oemsize)
385{
386 int count = sizeof (*oemtable); /* the header size */
387 unsigned char *oemptr = ((unsigned char *)oemtable)+count;
388
389 mpc_record = 0;
390 printk(KERN_INFO "Found an OEM MPC table at %8p - parsing it ... \n", oemtable);
391 if (memcmp(oemtable->oem_signature,MPC_OEM_SIGNATURE,4))
392 {
393 printk(KERN_WARNING "SMP mpc oemtable: bad signature [%c%c%c%c]!\n",
394 oemtable->oem_signature[0],
395 oemtable->oem_signature[1],
396 oemtable->oem_signature[2],
397 oemtable->oem_signature[3]);
398 return;
399 }
400 if (mpf_checksum((unsigned char *)oemtable,oemtable->oem_length))
401 {
402 printk(KERN_WARNING "SMP oem mptable: checksum error!\n");
403 return;
404 }
405 while (count < oemtable->oem_length) {
406 switch (*oemptr) {
407 case MP_TRANSLATION:
408 {
409 struct mpc_config_translation *m=
410 (struct mpc_config_translation *)oemptr;
411 MP_translation_info(m);
412 oemptr += sizeof(*m);
413 count += sizeof(*m);
414 ++mpc_record;
415 break;
416 }
417 default:
418 {
419 printk(KERN_WARNING "Unrecognised OEM table entry type! - %d\n", (int) *oemptr);
420 return;
421 }
422 }
423 }
424}
425
426static inline void mps_oem_check(struct mp_config_table *mpc, char *oem,
427 char *productid)
428{
429 if (strncmp(oem, "IBM NUMA", 8))
430 printk("Warning! May not be a NUMA-Q system!\n");
431 if (mpc->mpc_oemptr)
432 smp_read_mpc_oem((struct mp_config_oemtable *) mpc->mpc_oemptr,
433 mpc->mpc_oemsize);
434}
435#endif /* CONFIG_X86_NUMAQ */
436
437/*
438 * Read/parse the MPC
439 */
440
441static int __init smp_read_mpc(struct mp_config_table *mpc)
442{
443 char str[16];
444 char oem[10];
445 int count=sizeof(*mpc);
446 unsigned char *mpt=((unsigned char *)mpc)+count;
447
448 if (memcmp(mpc->mpc_signature,MPC_SIGNATURE,4)) {
449 printk(KERN_ERR "SMP mptable: bad signature [0x%x]!\n",
450 *(u32 *)mpc->mpc_signature);
451 return 0;
452 }
453 if (mpf_checksum((unsigned char *)mpc,mpc->mpc_length)) {
454 printk(KERN_ERR "SMP mptable: checksum error!\n");
455 return 0;
456 }
457 if (mpc->mpc_spec!=0x01 && mpc->mpc_spec!=0x04) {
458 printk(KERN_ERR "SMP mptable: bad table version (%d)!!\n",
459 mpc->mpc_spec);
460 return 0;
461 }
462 if (!mpc->mpc_lapic) {
463 printk(KERN_ERR "SMP mptable: null local APIC address!\n");
464 return 0;
465 }
466 memcpy(oem,mpc->mpc_oem,8);
467 oem[8]=0;
468 printk(KERN_INFO "OEM ID: %s ",oem);
469
470 memcpy(str,mpc->mpc_productid,12);
471 str[12]=0;
472 printk("Product ID: %s ",str);
473
474 mps_oem_check(mpc, oem, str);
475
Thomas Gleixner64883ab2008-01-30 13:30:35 +0100476 printk("APIC at: 0x%X\n", mpc->mpc_lapic);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477
Thomas Gleixner64883ab2008-01-30 13:30:35 +0100478 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479 * Save the local APIC address (it might be non-default) -- but only
480 * if we're not using ACPI.
481 */
482 if (!acpi_lapic)
483 mp_lapic_addr = mpc->mpc_lapic;
484
485 /*
486 * Now process the configuration blocks.
487 */
Alexey Starikovskiy86420502008-03-17 22:08:55 +0300488#ifdef CONFIG_X86_NUMAQ
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489 mpc_record = 0;
Alexey Starikovskiy86420502008-03-17 22:08:55 +0300490#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491 while (count < mpc->mpc_length) {
492 switch(*mpt) {
493 case MP_PROCESSOR:
494 {
495 struct mpc_config_processor *m=
496 (struct mpc_config_processor *)mpt;
497 /* ACPI may have already provided this data */
498 if (!acpi_lapic)
499 MP_processor_info(m);
500 mpt += sizeof(*m);
501 count += sizeof(*m);
502 break;
503 }
504 case MP_BUS:
505 {
506 struct mpc_config_bus *m=
507 (struct mpc_config_bus *)mpt;
508 MP_bus_info(m);
509 mpt += sizeof(*m);
510 count += sizeof(*m);
511 break;
512 }
513 case MP_IOAPIC:
514 {
515 struct mpc_config_ioapic *m=
516 (struct mpc_config_ioapic *)mpt;
517 MP_ioapic_info(m);
518 mpt+=sizeof(*m);
519 count+=sizeof(*m);
520 break;
521 }
522 case MP_INTSRC:
523 {
524 struct mpc_config_intsrc *m=
525 (struct mpc_config_intsrc *)mpt;
526
527 MP_intsrc_info(m);
528 mpt+=sizeof(*m);
529 count+=sizeof(*m);
530 break;
531 }
532 case MP_LINTSRC:
533 {
534 struct mpc_config_lintsrc *m=
535 (struct mpc_config_lintsrc *)mpt;
536 MP_lintsrc_info(m);
537 mpt+=sizeof(*m);
538 count+=sizeof(*m);
539 break;
540 }
541 default:
542 {
543 count = mpc->mpc_length;
544 break;
545 }
546 }
Alexey Starikovskiy86420502008-03-17 22:08:55 +0300547#ifdef CONFIG_X86_NUMAQ
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548 ++mpc_record;
Alexey Starikovskiy86420502008-03-17 22:08:55 +0300549#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550 }
Ingo Molnar3c43f032007-05-02 19:27:04 +0200551 setup_apic_routing();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552 if (!num_processors)
553 printk(KERN_ERR "SMP mptable: no processors registered!\n");
554 return num_processors;
555}
556
557static int __init ELCR_trigger(unsigned int irq)
558{
559 unsigned int port;
560
561 port = 0x4d0 + (irq >> 3);
562 return (inb(port) >> (irq & 7)) & 1;
563}
564
565static void __init construct_default_ioirq_mptable(int mpc_default_type)
566{
567 struct mpc_config_intsrc intsrc;
568 int i;
569 int ELCR_fallback = 0;
570
571 intsrc.mpc_type = MP_INTSRC;
572 intsrc.mpc_irqflag = 0; /* conforming */
573 intsrc.mpc_srcbus = 0;
574 intsrc.mpc_dstapic = mp_ioapics[0].mpc_apicid;
575
576 intsrc.mpc_irqtype = mp_INT;
577
578 /*
579 * If true, we have an ISA/PCI system with no IRQ entries
580 * in the MP table. To prevent the PCI interrupts from being set up
581 * incorrectly, we try to use the ELCR. The sanity check to see if
582 * there is good ELCR data is very simple - IRQ0, 1, 2 and 13 can
583 * never be level sensitive, so we simply see if the ELCR agrees.
584 * If it does, we assume it's valid.
585 */
586 if (mpc_default_type == 5) {
587 printk(KERN_INFO "ISA/PCI bus type with no IRQ information... falling back to ELCR\n");
588
589 if (ELCR_trigger(0) || ELCR_trigger(1) || ELCR_trigger(2) || ELCR_trigger(13))
590 printk(KERN_WARNING "ELCR contains invalid data... not using ELCR\n");
591 else {
592 printk(KERN_INFO "Using ELCR to identify PCI interrupts\n");
593 ELCR_fallback = 1;
594 }
595 }
596
597 for (i = 0; i < 16; i++) {
598 switch (mpc_default_type) {
599 case 2:
600 if (i == 0 || i == 13)
601 continue; /* IRQ0 & IRQ13 not connected */
602 /* fall through */
603 default:
604 if (i == 2)
605 continue; /* IRQ2 is never connected */
606 }
607
608 if (ELCR_fallback) {
609 /*
610 * If the ELCR indicates a level-sensitive interrupt, we
611 * copy that information over to the MP table in the
612 * irqflag field (level sensitive, active high polarity).
613 */
614 if (ELCR_trigger(i))
615 intsrc.mpc_irqflag = 13;
616 else
617 intsrc.mpc_irqflag = 0;
618 }
619
620 intsrc.mpc_srcbusirq = i;
621 intsrc.mpc_dstirq = i ? i : 2; /* IRQ0 to INTIN2 */
622 MP_intsrc_info(&intsrc);
623 }
624
625 intsrc.mpc_irqtype = mp_ExtINT;
626 intsrc.mpc_srcbusirq = 0;
627 intsrc.mpc_dstirq = 0; /* 8259A to INTIN0 */
628 MP_intsrc_info(&intsrc);
629}
630
631static inline void __init construct_default_ISA_mptable(int mpc_default_type)
632{
633 struct mpc_config_processor processor;
634 struct mpc_config_bus bus;
635 struct mpc_config_ioapic ioapic;
636 struct mpc_config_lintsrc lintsrc;
637 int linttypes[2] = { mp_ExtINT, mp_NMI };
638 int i;
639
640 /*
641 * local APIC has default address
642 */
643 mp_lapic_addr = APIC_DEFAULT_PHYS_BASE;
644
645 /*
646 * 2 CPUs, numbered 0 & 1.
647 */
648 processor.mpc_type = MP_PROCESSOR;
649 /* Either an integrated APIC or a discrete 82489DX. */
650 processor.mpc_apicver = mpc_default_type > 4 ? 0x10 : 0x01;
651 processor.mpc_cpuflag = CPU_ENABLED;
652 processor.mpc_cpufeature = (boot_cpu_data.x86 << 8) |
653 (boot_cpu_data.x86_model << 4) |
654 boot_cpu_data.x86_mask;
655 processor.mpc_featureflag = boot_cpu_data.x86_capability[0];
656 processor.mpc_reserved[0] = 0;
657 processor.mpc_reserved[1] = 0;
658 for (i = 0; i < 2; i++) {
659 processor.mpc_apicid = i;
660 MP_processor_info(&processor);
661 }
662
663 bus.mpc_type = MP_BUS;
664 bus.mpc_busid = 0;
665 switch (mpc_default_type) {
666 default:
667 printk("???\n");
668 printk(KERN_ERR "Unknown standard configuration %d\n",
669 mpc_default_type);
670 /* fall through */
671 case 1:
672 case 5:
673 memcpy(bus.mpc_bustype, "ISA ", 6);
674 break;
675 case 2:
676 case 6:
677 case 3:
678 memcpy(bus.mpc_bustype, "EISA ", 6);
679 break;
680 case 4:
681 case 7:
682 memcpy(bus.mpc_bustype, "MCA ", 6);
683 }
684 MP_bus_info(&bus);
685 if (mpc_default_type > 4) {
686 bus.mpc_busid = 1;
687 memcpy(bus.mpc_bustype, "PCI ", 6);
688 MP_bus_info(&bus);
689 }
690
691 ioapic.mpc_type = MP_IOAPIC;
692 ioapic.mpc_apicid = 2;
693 ioapic.mpc_apicver = mpc_default_type > 4 ? 0x10 : 0x01;
694 ioapic.mpc_flags = MPC_APIC_USABLE;
695 ioapic.mpc_apicaddr = 0xFEC00000;
696 MP_ioapic_info(&ioapic);
697
698 /*
699 * We set up most of the low 16 IO-APIC pins according to MPS rules.
700 */
701 construct_default_ioirq_mptable(mpc_default_type);
702
703 lintsrc.mpc_type = MP_LINTSRC;
704 lintsrc.mpc_irqflag = 0; /* conforming */
705 lintsrc.mpc_srcbusid = 0;
706 lintsrc.mpc_srcbusirq = 0;
707 lintsrc.mpc_destapic = MP_APIC_ALL;
708 for (i = 0; i < 2; i++) {
709 lintsrc.mpc_irqtype = linttypes[i];
710 lintsrc.mpc_destapiclint = i;
711 MP_lintsrc_info(&lintsrc);
712 }
713}
714
715static struct intel_mp_floating *mpf_found;
716
717/*
718 * Scan the memory blocks for an SMP configuration block.
719 */
720void __init get_smp_config (void)
721{
722 struct intel_mp_floating *mpf = mpf_found;
723
724 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725 * ACPI supports both logical (e.g. Hyper-Threading) and physical
726 * processors, where MPS only supports physical.
727 */
728 if (acpi_lapic && acpi_ioapic) {
729 printk(KERN_INFO "Using ACPI (MADT) for SMP configuration information\n");
730 return;
731 }
732 else if (acpi_lapic)
733 printk(KERN_INFO "Using ACPI for processor (LAPIC) configuration information\n");
734
735 printk(KERN_INFO "Intel MultiProcessor Specification v1.%d\n", mpf->mpf_specification);
736 if (mpf->mpf_feature2 & (1<<7)) {
737 printk(KERN_INFO " IMCR and PIC compatibility mode.\n");
738 pic_mode = 1;
739 } else {
740 printk(KERN_INFO " Virtual Wire compatibility mode.\n");
741 pic_mode = 0;
742 }
743
744 /*
745 * Now see if we need to read further.
746 */
747 if (mpf->mpf_feature1 != 0) {
748
749 printk(KERN_INFO "Default MP configuration #%d\n", mpf->mpf_feature1);
750 construct_default_ISA_mptable(mpf->mpf_feature1);
751
752 } else if (mpf->mpf_physptr) {
753
754 /*
755 * Read the physical hardware table. Anything here will
756 * override the defaults.
757 */
Daniel Yeisley7d4c8e52006-02-20 18:27:54 -0800758 if (!smp_read_mpc(phys_to_virt(mpf->mpf_physptr))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759 smp_found_config = 0;
760 printk(KERN_ERR "BIOS bug, MP table errors detected!...\n");
761 printk(KERN_ERR "... disabling SMP support. (tell your hw vendor)\n");
762 return;
763 }
764 /*
765 * If there are no explicit MP IRQ entries, then we are
766 * broken. We set up most of the low 16 IO-APIC pins to
767 * ISA defaults and hope it will work.
768 */
769 if (!mp_irq_entries) {
770 struct mpc_config_bus bus;
771
772 printk(KERN_ERR "BIOS bug, no explicit IRQ entries, using default mptable. (tell your hw vendor)\n");
773
774 bus.mpc_type = MP_BUS;
775 bus.mpc_busid = 0;
776 memcpy(bus.mpc_bustype, "ISA ", 6);
777 MP_bus_info(&bus);
778
779 construct_default_ioirq_mptable(0);
780 }
781
782 } else
783 BUG();
784
785 printk(KERN_INFO "Processors: %d\n", num_processors);
786 /*
787 * Only use the first configuration found.
788 */
789}
790
791static int __init smp_scan_config (unsigned long base, unsigned long length)
792{
793 unsigned long *bp = phys_to_virt(base);
794 struct intel_mp_floating *mpf;
795
Ingo Molnare91a3b42008-01-30 13:33:08 +0100796 printk(KERN_INFO "Scan SMP from %p for %ld bytes.\n", bp,length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797 if (sizeof(*mpf) != 16)
798 printk("Error: MPF size\n");
799
800 while (length > 0) {
801 mpf = (struct intel_mp_floating *)bp;
802 if ((*bp == SMP_MAGIC_IDENT) &&
803 (mpf->mpf_length == 1) &&
804 !mpf_checksum((unsigned char *)bp, 16) &&
805 ((mpf->mpf_specification == 1)
806 || (mpf->mpf_specification == 4)) ) {
807
808 smp_found_config = 1;
Ingo Molnare91a3b42008-01-30 13:33:08 +0100809 printk(KERN_INFO "found SMP MP-table at [%p] %08lx\n",
810 mpf, virt_to_phys(mpf));
Bernhard Walle72a7fe32008-02-07 00:15:17 -0800811 reserve_bootmem(virt_to_phys(mpf), PAGE_SIZE,
812 BOOTMEM_DEFAULT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813 if (mpf->mpf_physptr) {
814 /*
815 * We cannot access to MPC table to compute
816 * table size yet, as only few megabytes from
817 * the bottom is mapped now.
818 * PC-9800's MPC table places on the very last
819 * of physical memory; so that simply reserving
820 * PAGE_SIZE from mpg->mpf_physptr yields BUG()
821 * in reserve_bootmem.
822 */
823 unsigned long size = PAGE_SIZE;
824 unsigned long end = max_low_pfn * PAGE_SIZE;
825 if (mpf->mpf_physptr + size > end)
826 size = end - mpf->mpf_physptr;
Bernhard Walle72a7fe32008-02-07 00:15:17 -0800827 reserve_bootmem(mpf->mpf_physptr, size,
828 BOOTMEM_DEFAULT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829 }
830
831 mpf_found = mpf;
832 return 1;
833 }
834 bp += 4;
835 length -= 16;
836 }
837 return 0;
838}
839
840void __init find_smp_config (void)
841{
842 unsigned int address;
843
844 /*
845 * FIXME: Linux assumes you have 640K of base ram..
846 * this continues the error...
847 *
848 * 1) Scan the bottom 1K for a signature
849 * 2) Scan the top 1K of base RAM
850 * 3) Scan the 64K of bios
851 */
852 if (smp_scan_config(0x0,0x400) ||
853 smp_scan_config(639*0x400,0x400) ||
854 smp_scan_config(0xF0000,0x10000))
855 return;
856 /*
857 * If it is an SMP machine we should know now, unless the
858 * configuration is in an EISA/MCA bus machine with an
859 * extended bios data area.
860 *
861 * there is a real-mode segmented pointer pointing to the
862 * 4K EBDA area at 0x40E, calculate and scan it here.
863 *
864 * NOTE! There are Linux loaders that will corrupt the EBDA
865 * area, and as such this kind of SMP config may be less
866 * trustworthy, simply because the SMP table may have been
867 * stomped on during early boot. These loaders are buggy and
868 * should be fixed.
869 *
870 * MP1.4 SPEC states to only scan first 1K of 4K EBDA.
871 */
872
873 address = get_bios_ebda();
874 if (address)
875 smp_scan_config(address, 0x400);
876}
877
878/* --------------------------------------------------------------------------
879 ACPI-based MP Configuration
880 -------------------------------------------------------------------------- */
881
Len Brown888ba6c2005-08-24 12:07:20 -0400882#ifdef CONFIG_ACPI
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883
Andi Kleen19f03ff2006-09-26 10:52:30 +0200884void __init mp_register_lapic_address(u64 address)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885{
886 mp_lapic_addr = (unsigned long) address;
887
888 set_fixmap_nocache(FIX_APIC_BASE, mp_lapic_addr);
889
890 if (boot_cpu_physical_apicid == -1U)
891 boot_cpu_physical_apicid = GET_APIC_ID(apic_read(APIC_ID));
892
893 Dprintk("Boot CPU = %d\n", boot_cpu_physical_apicid);
894}
895
Vivek Goyal4a5d1072007-01-11 01:52:44 +0100896void __cpuinit mp_register_lapic (u8 id, u8 enabled)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898 if (MAX_APICS - id <= 0) {
899 printk(KERN_WARNING "Processor #%d invalid (max %d)\n",
900 id, MAX_APICS);
901 return;
902 }
Alexey Starikovskiy08bef9d2008-03-27 23:54:20 +0300903
Alexey Starikovskiy987dd2d2008-03-27 23:54:06 +0300904 if (!enabled) {
905 ++disabled_cpus;
906 return;
907 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908
Alexey Starikovskiy08bef9d2008-03-27 23:54:20 +0300909 generic_processor_info(id, GET_APIC_VERSION(apic_read(APIC_LVR)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910}
911
Len Brown84663612005-08-24 12:09:07 -0400912#ifdef CONFIG_X86_IO_APIC
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913
914#define MP_ISA_BUS 0
915#define MP_MAX_IOAPIC_PIN 127
916
917static struct mp_ioapic_routing {
918 int apic_id;
919 int gsi_base;
920 int gsi_end;
921 u32 pin_programmed[4];
922} mp_ioapic_routing[MAX_IO_APICS];
923
Andi Kleen19f03ff2006-09-26 10:52:30 +0200924static int mp_find_ioapic (int gsi)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925{
Andi Kleen19f03ff2006-09-26 10:52:30 +0200926 int i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927
928 /* Find the IOAPIC that manages this GSI. */
929 for (i = 0; i < nr_ioapics; i++) {
930 if ((gsi >= mp_ioapic_routing[i].gsi_base)
931 && (gsi <= mp_ioapic_routing[i].gsi_end))
932 return i;
933 }
934
935 printk(KERN_ERR "ERROR: Unable to locate IOAPIC for GSI %d\n", gsi);
936
937 return -1;
938}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939
Alexey Starikovskiye3e3ffa2008-03-17 22:08:11 +0300940static u8 uniq_ioapic_id(u8 id)
941{
942 if ((boot_cpu_data.x86_vendor == X86_VENDOR_INTEL) &&
943 !APIC_XAPIC(apic_version[boot_cpu_physical_apicid]))
944 return io_apic_get_unique_id(nr_ioapics, id);
945 else
946 return id;
947}
948
Andi Kleen19f03ff2006-09-26 10:52:30 +0200949void __init mp_register_ioapic(u8 id, u32 address, u32 gsi_base)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950{
Andi Kleen19f03ff2006-09-26 10:52:30 +0200951 int idx = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952
Alexey Starikovskiy857033a2008-03-17 22:08:05 +0300953 if (bad_ioapic(address))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955
Alexey Starikovskiye3e3ffa2008-03-17 22:08:11 +0300956 idx = nr_ioapics;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957
958 mp_ioapics[idx].mpc_type = MP_IOAPIC;
959 mp_ioapics[idx].mpc_flags = MPC_APIC_USABLE;
960 mp_ioapics[idx].mpc_apicaddr = address;
961
962 set_fixmap_nocache(FIX_IO_APIC_BASE_0 + idx, address);
Alexey Starikovskiye3e3ffa2008-03-17 22:08:11 +0300963 mp_ioapics[idx].mpc_apicid = uniq_ioapic_id(id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964 mp_ioapics[idx].mpc_apicver = io_apic_get_version(idx);
965
966 /*
967 * Build basic GSI lookup table to facilitate gsi->io_apic lookups
968 * and to prevent reprogramming of IOAPIC pins (PCI GSIs).
969 */
970 mp_ioapic_routing[idx].apic_id = mp_ioapics[idx].mpc_apicid;
971 mp_ioapic_routing[idx].gsi_base = gsi_base;
Thomas Gleixner64883ab2008-01-30 13:30:35 +0100972 mp_ioapic_routing[idx].gsi_end = gsi_base +
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973 io_apic_get_redir_entries(idx);
974
Thomas Gleixner64883ab2008-01-30 13:30:35 +0100975 printk("IOAPIC[%d]: apic_id %d, version %d, address 0x%x, "
976 "GSI %d-%d\n", idx, mp_ioapics[idx].mpc_apicid,
Alexey Starikovskiye3e3ffa2008-03-17 22:08:11 +0300977 mp_ioapics[idx].mpc_apicver,
978 mp_ioapics[idx].mpc_apicaddr,
Thomas Gleixner64883ab2008-01-30 13:30:35 +0100979 mp_ioapic_routing[idx].gsi_base,
980 mp_ioapic_routing[idx].gsi_end);
Alexey Starikovskiye3e3ffa2008-03-17 22:08:11 +0300981
982 nr_ioapics++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983}
984
Andi Kleen19f03ff2006-09-26 10:52:30 +0200985void __init
986mp_override_legacy_irq(u8 bus_irq, u8 polarity, u8 trigger, u32 gsi)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987{
988 struct mpc_config_intsrc intsrc;
989 int ioapic = -1;
990 int pin = -1;
991
992 /*
993 * Convert 'gsi' to 'ioapic.pin'.
994 */
995 ioapic = mp_find_ioapic(gsi);
996 if (ioapic < 0)
997 return;
998 pin = gsi - mp_ioapic_routing[ioapic].gsi_base;
999
1000 /*
1001 * TBD: This check is for faulty timer entries, where the override
1002 * erroneously sets the trigger to level, resulting in a HUGE
1003 * increase of timer interrupts!
1004 */
1005 if ((bus_irq == 0) && (trigger == 3))
1006 trigger = 1;
1007
1008 intsrc.mpc_type = MP_INTSRC;
1009 intsrc.mpc_irqtype = mp_INT;
1010 intsrc.mpc_irqflag = (trigger << 2) | polarity;
1011 intsrc.mpc_srcbus = MP_ISA_BUS;
1012 intsrc.mpc_srcbusirq = bus_irq; /* IRQ */
1013 intsrc.mpc_dstapic = mp_ioapics[ioapic].mpc_apicid; /* APIC ID */
1014 intsrc.mpc_dstirq = pin; /* INTIN# */
1015
1016 Dprintk("Int: type %d, pol %d, trig %d, bus %d, irq %d, %d-%d\n",
1017 intsrc.mpc_irqtype, intsrc.mpc_irqflag & 3,
1018 (intsrc.mpc_irqflag >> 2) & 3, intsrc.mpc_srcbus,
1019 intsrc.mpc_srcbusirq, intsrc.mpc_dstapic, intsrc.mpc_dstirq);
1020
1021 mp_irqs[mp_irq_entries] = intsrc;
1022 if (++mp_irq_entries == MAX_IRQ_SOURCES)
1023 panic("Max # of irq sources exceeded!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024}
1025
Alexey Starikovskiy2df29722008-03-27 23:53:54 +03001026int es7000_plat;
1027
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028void __init mp_config_acpi_legacy_irqs (void)
1029{
1030 struct mpc_config_intsrc intsrc;
Andi Kleen19f03ff2006-09-26 10:52:30 +02001031 int i = 0;
1032 int ioapic = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033
Alexey Starikovskiyc0a282c2008-03-20 14:55:02 +03001034#if defined (CONFIG_MCA) || defined (CONFIG_EISA)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035 /*
1036 * Fabricate the legacy ISA bus (bus #31).
1037 */
1038 mp_bus_id_to_type[MP_ISA_BUS] = MP_BUS_ISA;
Alexey Starikovskiyc0a282c2008-03-20 14:55:02 +03001039#endif
Alexey Starikovskiya6333c32008-03-20 14:54:09 +03001040 set_bit(MP_ISA_BUS, mp_bus_not_pci);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041 Dprintk("Bus #%d is ISA\n", MP_ISA_BUS);
1042
1043 /*
1044 * Older generations of ES7000 have no legacy identity mappings
1045 */
1046 if (es7000_plat == 1)
1047 return;
1048
1049 /*
1050 * Locate the IOAPIC that manages the ISA IRQs (0-15).
1051 */
1052 ioapic = mp_find_ioapic(0);
1053 if (ioapic < 0)
1054 return;
1055
1056 intsrc.mpc_type = MP_INTSRC;
1057 intsrc.mpc_irqflag = 0; /* Conforming */
1058 intsrc.mpc_srcbus = MP_ISA_BUS;
1059 intsrc.mpc_dstapic = mp_ioapics[ioapic].mpc_apicid;
1060
1061 /*
1062 * Use the default configuration for the IRQs 0-15. Unless
Simon Arlott27b46d72007-10-20 01:13:56 +02001063 * overridden by (MADT) interrupt source override entries.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064 */
1065 for (i = 0; i < 16; i++) {
1066 int idx;
1067
1068 for (idx = 0; idx < mp_irq_entries; idx++) {
1069 struct mpc_config_intsrc *irq = mp_irqs + idx;
1070
1071 /* Do we already have a mapping for this ISA IRQ? */
1072 if (irq->mpc_srcbus == MP_ISA_BUS && irq->mpc_srcbusirq == i)
1073 break;
1074
1075 /* Do we already have a mapping for this IOAPIC pin */
1076 if ((irq->mpc_dstapic == intsrc.mpc_dstapic) &&
1077 (irq->mpc_dstirq == i))
1078 break;
1079 }
1080
1081 if (idx != mp_irq_entries) {
1082 printk(KERN_DEBUG "ACPI: IRQ%d used by override.\n", i);
1083 continue; /* IRQ already used */
1084 }
1085
1086 intsrc.mpc_irqtype = mp_INT;
1087 intsrc.mpc_srcbusirq = i; /* Identity mapped */
1088 intsrc.mpc_dstirq = i;
1089
1090 Dprintk("Int: type %d, pol %d, trig %d, bus %d, irq %d, "
1091 "%d-%d\n", intsrc.mpc_irqtype, intsrc.mpc_irqflag & 3,
1092 (intsrc.mpc_irqflag >> 2) & 3, intsrc.mpc_srcbus,
1093 intsrc.mpc_srcbusirq, intsrc.mpc_dstapic,
1094 intsrc.mpc_dstirq);
1095
1096 mp_irqs[mp_irq_entries] = intsrc;
1097 if (++mp_irq_entries == MAX_IRQ_SOURCES)
1098 panic("Max # of irq sources exceeded!\n");
1099 }
1100}
1101
Natalie Protasevichc434b7a2005-06-23 00:08:29 -07001102#define MAX_GSI_NUM 4096
Len Brown2ba7dee2008-01-30 13:31:02 +01001103#define IRQ_COMPRESSION_START 64
Natalie Protasevichc434b7a2005-06-23 00:08:29 -07001104
Andi Kleen19f03ff2006-09-26 10:52:30 +02001105int mp_register_gsi(u32 gsi, int triggering, int polarity)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106{
Andi Kleen19f03ff2006-09-26 10:52:30 +02001107 int ioapic = -1;
1108 int ioapic_pin = 0;
1109 int idx, bit = 0;
Len Brown2ba7dee2008-01-30 13:31:02 +01001110 static int pci_irq = IRQ_COMPRESSION_START;
Natalie Protasevichc434b7a2005-06-23 00:08:29 -07001111 /*
Joe Perchesab4a5742008-01-30 13:31:42 +01001112 * Mapping between Global System Interrupts, which
Natalie Protasevichc434b7a2005-06-23 00:08:29 -07001113 * represent all possible interrupts, and IRQs
1114 * assigned to actual devices.
1115 */
1116 static int gsi_to_irq[MAX_GSI_NUM];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001117
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118 /* Don't set up the ACPI SCI because it's already set up */
Alexey Starikovskiycee324b2007-02-02 19:48:22 +03001119 if (acpi_gbl_FADT.sci_interrupt == gsi)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120 return gsi;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121
1122 ioapic = mp_find_ioapic(gsi);
1123 if (ioapic < 0) {
1124 printk(KERN_WARNING "No IOAPIC for GSI %u\n", gsi);
1125 return gsi;
1126 }
1127
1128 ioapic_pin = gsi - mp_ioapic_routing[ioapic].gsi_base;
1129
1130 if (ioapic_renumber_irq)
1131 gsi = ioapic_renumber_irq(ioapic, gsi);
1132
1133 /*
1134 * Avoid pin reprogramming. PRTs typically include entries
1135 * with redundant pin->gsi mappings (but unique PCI devices);
1136 * we only program the IOAPIC on the first.
1137 */
1138 bit = ioapic_pin % 32;
1139 idx = (ioapic_pin < 32) ? 0 : (ioapic_pin / 32);
1140 if (idx > 3) {
1141 printk(KERN_ERR "Invalid reference to IOAPIC pin "
1142 "%d-%d\n", mp_ioapic_routing[ioapic].apic_id,
1143 ioapic_pin);
1144 return gsi;
1145 }
1146 if ((1<<bit) & mp_ioapic_routing[ioapic].pin_programmed[idx]) {
1147 Dprintk(KERN_DEBUG "Pin %d-%d already programmed\n",
1148 mp_ioapic_routing[ioapic].apic_id, ioapic_pin);
Len Brown2ba7dee2008-01-30 13:31:02 +01001149 return (gsi < IRQ_COMPRESSION_START ? gsi : gsi_to_irq[gsi]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001150 }
1151
1152 mp_ioapic_routing[ioapic].pin_programmed[idx] |= (1<<bit);
1153
Len Brown2ba7dee2008-01-30 13:31:02 +01001154 /*
1155 * For GSI >= 64, use IRQ compression
1156 */
1157 if ((gsi >= IRQ_COMPRESSION_START)
1158 && (triggering == ACPI_LEVEL_SENSITIVE)) {
Natalie Protasevichc434b7a2005-06-23 00:08:29 -07001159 /*
1160 * For PCI devices assign IRQs in order, avoiding gaps
1161 * due to unused I/O APIC pins.
1162 */
1163 int irq = gsi;
1164 if (gsi < MAX_GSI_NUM) {
Kimball Murraye0c1e9b2006-05-08 15:17:16 +02001165 /*
1166 * Retain the VIA chipset work-around (gsi > 15), but
1167 * avoid a problem where the 8254 timer (IRQ0) is setup
1168 * via an override (so it's not on pin 0 of the ioapic),
1169 * and at the same time, the pin 0 interrupt is a PCI
1170 * type. The gsi > 15 test could cause these two pins
1171 * to be shared as IRQ0, and they are not shareable.
1172 * So test for this condition, and if necessary, avoid
1173 * the pin collision.
1174 */
Adrian Bunkede13892008-03-17 22:29:32 +02001175 gsi = pci_irq++;
Natalie.Protasevich@unisys.come1afc3f2005-07-29 14:03:32 -07001176 /*
1177 * Don't assign IRQ used by ACPI SCI
1178 */
Alexey Starikovskiycee324b2007-02-02 19:48:22 +03001179 if (gsi == acpi_gbl_FADT.sci_interrupt)
Natalie.Protasevich@unisys.come1afc3f2005-07-29 14:03:32 -07001180 gsi = pci_irq++;
Natalie Protasevichc434b7a2005-06-23 00:08:29 -07001181 gsi_to_irq[irq] = gsi;
1182 } else {
1183 printk(KERN_ERR "GSI %u is too high\n", gsi);
1184 return gsi;
1185 }
1186 }
1187
Linus Torvalds1da177e2005-04-16 15:20:36 -07001188 io_apic_set_pci_routing(ioapic, ioapic_pin, gsi,
Len Browncb654692005-12-28 02:43:51 -05001189 triggering == ACPI_EDGE_SENSITIVE ? 0 : 1,
1190 polarity == ACPI_ACTIVE_HIGH ? 0 : 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001191 return gsi;
1192}
1193
Len Brown84663612005-08-24 12:09:07 -04001194#endif /* CONFIG_X86_IO_APIC */
Len Brown888ba6c2005-08-24 12:07:20 -04001195#endif /* CONFIG_ACPI */