blob: 9143810bb63711ec149e96f0fc1a55c36d521cd5 [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
Alexey Starikovskiy2bb9e9d2008-03-27 23:54:50 +030064/* Make it easy to share the UP and SMP code: */
65#ifndef CONFIG_X86_SMP
Sam Ravnborg87d7e982008-01-30 13:33:37 +010066unsigned int num_processors;
Glauber Costa7b1292e2008-03-03 14:12:41 -030067unsigned disabled_cpus __cpuinitdata;
Alexey Starikovskiy837e0e72008-03-27 23:55:10 +030068unsigned int boot_cpu_physical_apicid = -1U;
Alexey Starikovskiy53c4c792008-03-27 23:54:57 +030069#endif
Glauber Costa7b1292e2008-03-03 14:12:41 -030070
Alexey Starikovskiy40014ba2008-03-27 23:54:44 +030071/* Make it easy to share the UP and SMP code: */
72#ifndef CONFIG_X86_SMP
Linus Torvalds1da177e2005-04-16 15:20:36 -070073physid_mask_t phys_cpu_present_map;
Alexey Starikovskiy40014ba2008-03-27 23:54:44 +030074#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070075
Ingo Molnar11617052008-03-19 20:26:15 +010076#ifndef CONFIG_SMP
77DEFINE_PER_CPU(u16, x86_bios_cpu_apicid) = BAD_APICID;
78#endif
79
Linus Torvalds1da177e2005-04-16 15:20:36 -070080/*
81 * Intel MP BIOS table parsing routines:
82 */
83
84
85/*
86 * Checksum an MP configuration block.
87 */
88
89static int __init mpf_checksum(unsigned char *mp, int len)
90{
91 int sum = 0;
92
93 while (len--)
94 sum += *mp++;
95
96 return sum & 0xFF;
97}
98
Alexey Starikovskiy86420502008-03-17 22:08:55 +030099#ifdef CONFIG_X86_NUMAQ
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100/*
101 * Have to match translation table entries to main table entries by counter
102 * hence the mpc_record variable .... can't see a less disgusting way of
103 * doing this ....
104 */
105
106static int mpc_record;
Vivek Goyal4a5d1072007-01-11 01:52:44 +0100107static struct mpc_config_translation *translation_table[MAX_MPC_ENTRY] __cpuinitdata;
Alexey Starikovskiy86420502008-03-17 22:08:55 +0300108#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109
Alexey Starikovskiyc853c672008-03-27 23:54:13 +0300110static void __cpuinit generic_processor_info(int apicid, int version)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111{
Alexey Starikovskiyc853c672008-03-27 23:54:13 +0300112 int cpu;
Glauber de Oliveira Costaa6c422c2008-03-19 14:25:25 -0300113 cpumask_t tmp_map;
Andrew Morton12992322005-09-09 13:01:21 -0700114 physid_mask_t phys_cpu;
Alexey Starikovskiyc853c672008-03-27 23:54:13 +0300115
116 /*
117 * Validate version
118 */
119 if (version == 0x0) {
120 printk(KERN_WARNING "BIOS bug, APIC version is 0 for CPU#%d! "
121 "fixing up to 0x10. (tell your hw vendor)\n",
122 version);
123 version = 0x10;
124 }
125 apic_version[apicid] = version;
126
127 phys_cpu = apicid_to_cpu_present(apicid);
128 physids_or(phys_cpu_present_map, phys_cpu_present_map, phys_cpu);
129
130 if (num_processors >= NR_CPUS) {
131 printk(KERN_WARNING "WARNING: NR_CPUS limit of %i reached."
132 " Processor ignored.\n", NR_CPUS);
133 return;
134 }
135
136 if (num_processors >= maxcpus) {
137 printk(KERN_WARNING "WARNING: maxcpus limit of %i reached."
138 " Processor ignored.\n", maxcpus);
139 return;
140 }
141
142 num_processors++;
143 cpus_complement(tmp_map, cpu_present_map);
144 cpu = first_cpu(tmp_map);
145
146 if (apicid == boot_cpu_physical_apicid)
147 /*
148 * x86_bios_cpu_apicid is required to have processors listed
149 * in same order as logical cpu numbers. Hence the first
150 * entry is BSP, and so on.
151 */
152 cpu = 0;
153
154 /*
155 * Would be preferable to switch to bigsmp when CONFIG_HOTPLUG_CPU=y
156 * but we need to work other dependencies like SMP_SUSPEND etc
157 * before this can be done without some confusion.
158 * if (CPU_HOTPLUG_ENABLED || num_processors > 8)
159 * - Ashok Raj <ashok.raj@intel.com>
160 */
161 if (num_processors > 8) {
162 switch (boot_cpu_data.x86_vendor) {
163 case X86_VENDOR_INTEL:
164 if (!APIC_XAPIC(version)) {
165 def_to_bigsmp = 0;
166 break;
167 }
168 /* If P4 and above fall through */
169 case X86_VENDOR_AMD:
170 def_to_bigsmp = 1;
171 }
172 }
173#ifdef CONFIG_SMP
174 /* are we being called early in kernel startup? */
175 if (x86_cpu_to_apicid_early_ptr) {
176 u16 *cpu_to_apicid = x86_cpu_to_apicid_early_ptr;
177 u16 *bios_cpu_apicid = x86_bios_cpu_apicid_early_ptr;
178
179 cpu_to_apicid[cpu] = apicid;
180 bios_cpu_apicid[cpu] = apicid;
181 } else {
182 per_cpu(x86_cpu_to_apicid, cpu) = apicid;
183 per_cpu(x86_bios_cpu_apicid, cpu) = apicid;
184 }
185#endif
186 cpu_set(cpu, cpu_possible_map);
187 cpu_set(cpu, cpu_present_map);
188}
189
190static void __cpuinit MP_processor_info(struct mpc_config_processor *m)
191{
192 int apicid;
193
Glauber Costa7b1292e2008-03-03 14:12:41 -0300194 if (!(m->mpc_cpuflag & CPU_ENABLED)) {
Ingo Molnar059c9642008-03-28 11:57:55 +0100195#ifdef CONFIG_X86_SMP
Glauber Costa7b1292e2008-03-03 14:12:41 -0300196 disabled_cpus++;
Ingo Molnar059c9642008-03-28 11:57:55 +0100197#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198 return;
Glauber Costa7b1292e2008-03-03 14:12:41 -0300199 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200
Alexey Starikovskiy4655c7d2008-03-17 22:08:36 +0300201#ifdef CONFIG_X86_NUMAQ
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 apicid = mpc_apic_id(m, translation_table[mpc_record]);
Alexey Starikovskiy4655c7d2008-03-17 22:08:36 +0300203#else
204 Dprintk("Processor #%d %u:%u APIC version %d\n",
205 m->mpc_apicid,
206 (m->mpc_cpufeature & CPU_FAMILY_MASK) >> 8,
207 (m->mpc_cpufeature & CPU_MODEL_MASK) >> 4,
208 m->mpc_apicver);
209 apicid = m->mpc_apicid;
210#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211
212 if (m->mpc_featureflag&(1<<0))
213 Dprintk(" Floating point unit present.\n");
214 if (m->mpc_featureflag&(1<<7))
215 Dprintk(" Machine Exception supported.\n");
216 if (m->mpc_featureflag&(1<<8))
217 Dprintk(" 64 bit compare & exchange supported.\n");
218 if (m->mpc_featureflag&(1<<9))
219 Dprintk(" Internal APIC present.\n");
220 if (m->mpc_featureflag&(1<<11))
221 Dprintk(" SEP present.\n");
222 if (m->mpc_featureflag&(1<<12))
223 Dprintk(" MTRR present.\n");
224 if (m->mpc_featureflag&(1<<13))
225 Dprintk(" PGE present.\n");
226 if (m->mpc_featureflag&(1<<14))
227 Dprintk(" MCA present.\n");
228 if (m->mpc_featureflag&(1<<15))
229 Dprintk(" CMOV present.\n");
230 if (m->mpc_featureflag&(1<<16))
231 Dprintk(" PAT present.\n");
232 if (m->mpc_featureflag&(1<<17))
233 Dprintk(" PSE present.\n");
234 if (m->mpc_featureflag&(1<<18))
235 Dprintk(" PSN present.\n");
236 if (m->mpc_featureflag&(1<<19))
237 Dprintk(" Cache Line Flush Instruction present.\n");
238 /* 20 Reserved */
239 if (m->mpc_featureflag&(1<<21))
240 Dprintk(" Debug Trace and EMON Store present.\n");
241 if (m->mpc_featureflag&(1<<22))
242 Dprintk(" ACPI Thermal Throttle Registers present.\n");
243 if (m->mpc_featureflag&(1<<23))
244 Dprintk(" MMX present.\n");
245 if (m->mpc_featureflag&(1<<24))
246 Dprintk(" FXSR present.\n");
247 if (m->mpc_featureflag&(1<<25))
248 Dprintk(" XMM present.\n");
249 if (m->mpc_featureflag&(1<<26))
250 Dprintk(" Willamette New Instructions present.\n");
251 if (m->mpc_featureflag&(1<<27))
252 Dprintk(" Self Snoop present.\n");
253 if (m->mpc_featureflag&(1<<28))
254 Dprintk(" HT present.\n");
255 if (m->mpc_featureflag&(1<<29))
256 Dprintk(" Thermal Monitor present.\n");
257 /* 30, 31 Reserved */
258
259
260 if (m->mpc_cpuflag & CPU_BOOTPROCESSOR) {
261 Dprintk(" Bootup CPU\n");
262 boot_cpu_physical_apicid = m->mpc_apicid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263 }
264
Alexey Starikovskiyc853c672008-03-27 23:54:13 +0300265 generic_processor_info(apicid, m->mpc_apicver);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266}
267
268static void __init MP_bus_info (struct mpc_config_bus *m)
269{
270 char str[7];
271
272 memcpy(str, m->mpc_bustype, 6);
273 str[6] = 0;
274
Alexey Starikovskiy0ec153a2008-03-17 22:08:48 +0300275#ifdef CONFIG_X86_NUMAQ
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276 mpc_oem_bus_info(m, str, translation_table[mpc_record]);
Alexey Starikovskiy0ec153a2008-03-17 22:08:48 +0300277#else
278 Dprintk("Bus #%d is %s\n", m->mpc_busid, str);
279#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280
Andi Kleen5e4edbb2006-09-26 10:52:35 +0200281#if MAX_MP_BUSSES < 256
Randy Dunlapc0ec31a2006-04-10 22:53:13 -0700282 if (m->mpc_busid >= MAX_MP_BUSSES) {
283 printk(KERN_WARNING "MP table busid value (%d) for bustype %s "
284 " is too large, max. supported is %d\n",
285 m->mpc_busid, str, MAX_MP_BUSSES - 1);
286 return;
287 }
Andi Kleen5e4edbb2006-09-26 10:52:35 +0200288#endif
Randy Dunlapc0ec31a2006-04-10 22:53:13 -0700289
Alexey Starikovskiya6333c32008-03-20 14:54:09 +0300290 set_bit(m->mpc_busid, mp_bus_not_pci);
Alexey Starikovskiy9e0a2de2008-03-20 14:54:56 +0300291 if (strncmp(str, BUSTYPE_PCI, sizeof(BUSTYPE_PCI)-1) == 0) {
Alexey Starikovskiyd285e332008-03-17 22:08:42 +0300292#ifdef CONFIG_X86_NUMAQ
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293 mpc_oem_pci_bus(m, translation_table[mpc_record]);
Alexey Starikovskiyd285e332008-03-17 22:08:42 +0300294#endif
Alexey Starikovskiya6333c32008-03-20 14:54:09 +0300295 clear_bit(m->mpc_busid, mp_bus_not_pci);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296 mp_bus_id_to_pci_bus[m->mpc_busid] = mp_current_pci_id;
297 mp_current_pci_id++;
Alexey Starikovskiyc0a282c2008-03-20 14:55:02 +0300298#if defined(CONFIG_EISA) || defined (CONFIG_MCA)
299 mp_bus_id_to_type[m->mpc_busid] = MP_BUS_PCI;
Alexey Starikovskiy9e0a2de2008-03-20 14:54:56 +0300300 } else if (strncmp(str, BUSTYPE_ISA, sizeof(BUSTYPE_ISA)-1) == 0) {
301 mp_bus_id_to_type[m->mpc_busid] = MP_BUS_ISA;
302 } else if (strncmp(str, BUSTYPE_EISA, sizeof(BUSTYPE_EISA)-1) == 0) {
303 mp_bus_id_to_type[m->mpc_busid] = MP_BUS_EISA;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304 } else if (strncmp(str, BUSTYPE_MCA, sizeof(BUSTYPE_MCA)-1) == 0) {
305 mp_bus_id_to_type[m->mpc_busid] = MP_BUS_MCA;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306 } else {
307 printk(KERN_WARNING "Unknown bustype %s - ignoring\n", str);
Alexey Starikovskiyc0a282c2008-03-20 14:55:02 +0300308#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309 }
310}
311
Alexey Starikovskiy857033a2008-03-17 22:08:05 +0300312static int bad_ioapic(unsigned long address)
313{
314 if (nr_ioapics >= MAX_IO_APICS) {
315 printk(KERN_ERR "ERROR: Max # of I/O APICs (%d) exceeded "
316 "(found %d)\n", MAX_IO_APICS, nr_ioapics);
317 panic("Recompile kernel with bigger MAX_IO_APICS!\n");
318 }
319 if (!address) {
320 printk(KERN_ERR "WARNING: Bogus (zero) I/O APIC address"
321 " found in table, skipping!\n");
322 return 1;
323 }
324 return 0;
325}
326
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327static void __init MP_ioapic_info (struct mpc_config_ioapic *m)
328{
329 if (!(m->mpc_flags & MPC_APIC_USABLE))
330 return;
331
Thomas Gleixner64883ab2008-01-30 13:30:35 +0100332 printk(KERN_INFO "I/O APIC #%d Version %d at 0x%X.\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333 m->mpc_apicid, m->mpc_apicver, m->mpc_apicaddr);
Alexey Starikovskiy857033a2008-03-17 22:08:05 +0300334
335 if (bad_ioapic(m->mpc_apicaddr))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336 return;
Alexey Starikovskiy857033a2008-03-17 22:08:05 +0300337
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338 mp_ioapics[nr_ioapics] = *m;
339 nr_ioapics++;
340}
341
342static void __init MP_intsrc_info (struct mpc_config_intsrc *m)
343{
344 mp_irqs [mp_irq_entries] = *m;
345 Dprintk("Int: type %d, pol %d, trig %d, bus %d,"
346 " IRQ %02x, APIC ID %x, APIC INT %02x\n",
347 m->mpc_irqtype, m->mpc_irqflag & 3,
348 (m->mpc_irqflag >> 2) & 3, m->mpc_srcbus,
349 m->mpc_srcbusirq, m->mpc_dstapic, m->mpc_dstirq);
350 if (++mp_irq_entries == MAX_IRQ_SOURCES)
351 panic("Max # of irq sources exceeded!!\n");
352}
353
354static void __init MP_lintsrc_info (struct mpc_config_lintsrc *m)
355{
356 Dprintk("Lint: type %d, pol %d, trig %d, bus %d,"
357 " IRQ %02x, APIC ID %x, APIC LINT %02x\n",
358 m->mpc_irqtype, m->mpc_irqflag & 3,
359 (m->mpc_irqflag >> 2) &3, m->mpc_srcbusid,
360 m->mpc_srcbusirq, m->mpc_destapic, m->mpc_destapiclint);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361}
362
363#ifdef CONFIG_X86_NUMAQ
364static void __init MP_translation_info (struct mpc_config_translation *m)
365{
366 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);
367
368 if (mpc_record >= MAX_MPC_ENTRY)
369 printk(KERN_ERR "MAX_MPC_ENTRY exceeded!\n");
370 else
371 translation_table[mpc_record] = m; /* stash this for later */
372 if (m->trans_quad < MAX_NUMNODES && !node_online(m->trans_quad))
373 node_set_online(m->trans_quad);
374}
375
376/*
377 * Read/parse the MPC oem tables
378 */
379
380static void __init smp_read_mpc_oem(struct mp_config_oemtable *oemtable, \
381 unsigned short oemsize)
382{
383 int count = sizeof (*oemtable); /* the header size */
384 unsigned char *oemptr = ((unsigned char *)oemtable)+count;
385
386 mpc_record = 0;
387 printk(KERN_INFO "Found an OEM MPC table at %8p - parsing it ... \n", oemtable);
388 if (memcmp(oemtable->oem_signature,MPC_OEM_SIGNATURE,4))
389 {
390 printk(KERN_WARNING "SMP mpc oemtable: bad signature [%c%c%c%c]!\n",
391 oemtable->oem_signature[0],
392 oemtable->oem_signature[1],
393 oemtable->oem_signature[2],
394 oemtable->oem_signature[3]);
395 return;
396 }
397 if (mpf_checksum((unsigned char *)oemtable,oemtable->oem_length))
398 {
399 printk(KERN_WARNING "SMP oem mptable: checksum error!\n");
400 return;
401 }
402 while (count < oemtable->oem_length) {
403 switch (*oemptr) {
404 case MP_TRANSLATION:
405 {
406 struct mpc_config_translation *m=
407 (struct mpc_config_translation *)oemptr;
408 MP_translation_info(m);
409 oemptr += sizeof(*m);
410 count += sizeof(*m);
411 ++mpc_record;
412 break;
413 }
414 default:
415 {
416 printk(KERN_WARNING "Unrecognised OEM table entry type! - %d\n", (int) *oemptr);
417 return;
418 }
419 }
420 }
421}
422
423static inline void mps_oem_check(struct mp_config_table *mpc, char *oem,
424 char *productid)
425{
426 if (strncmp(oem, "IBM NUMA", 8))
427 printk("Warning! May not be a NUMA-Q system!\n");
428 if (mpc->mpc_oemptr)
429 smp_read_mpc_oem((struct mp_config_oemtable *) mpc->mpc_oemptr,
430 mpc->mpc_oemsize);
431}
432#endif /* CONFIG_X86_NUMAQ */
433
434/*
435 * Read/parse the MPC
436 */
437
438static int __init smp_read_mpc(struct mp_config_table *mpc)
439{
440 char str[16];
441 char oem[10];
442 int count=sizeof(*mpc);
443 unsigned char *mpt=((unsigned char *)mpc)+count;
444
445 if (memcmp(mpc->mpc_signature,MPC_SIGNATURE,4)) {
446 printk(KERN_ERR "SMP mptable: bad signature [0x%x]!\n",
447 *(u32 *)mpc->mpc_signature);
448 return 0;
449 }
450 if (mpf_checksum((unsigned char *)mpc,mpc->mpc_length)) {
451 printk(KERN_ERR "SMP mptable: checksum error!\n");
452 return 0;
453 }
454 if (mpc->mpc_spec!=0x01 && mpc->mpc_spec!=0x04) {
455 printk(KERN_ERR "SMP mptable: bad table version (%d)!!\n",
456 mpc->mpc_spec);
457 return 0;
458 }
459 if (!mpc->mpc_lapic) {
460 printk(KERN_ERR "SMP mptable: null local APIC address!\n");
461 return 0;
462 }
463 memcpy(oem,mpc->mpc_oem,8);
464 oem[8]=0;
465 printk(KERN_INFO "OEM ID: %s ",oem);
466
467 memcpy(str,mpc->mpc_productid,12);
468 str[12]=0;
469 printk("Product ID: %s ",str);
470
471 mps_oem_check(mpc, oem, str);
472
Thomas Gleixner64883ab2008-01-30 13:30:35 +0100473 printk("APIC at: 0x%X\n", mpc->mpc_lapic);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474
Thomas Gleixner64883ab2008-01-30 13:30:35 +0100475 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476 * Save the local APIC address (it might be non-default) -- but only
477 * if we're not using ACPI.
478 */
479 if (!acpi_lapic)
480 mp_lapic_addr = mpc->mpc_lapic;
481
482 /*
483 * Now process the configuration blocks.
484 */
Alexey Starikovskiy86420502008-03-17 22:08:55 +0300485#ifdef CONFIG_X86_NUMAQ
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486 mpc_record = 0;
Alexey Starikovskiy86420502008-03-17 22:08:55 +0300487#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488 while (count < mpc->mpc_length) {
489 switch(*mpt) {
490 case MP_PROCESSOR:
491 {
492 struct mpc_config_processor *m=
493 (struct mpc_config_processor *)mpt;
494 /* ACPI may have already provided this data */
495 if (!acpi_lapic)
496 MP_processor_info(m);
497 mpt += sizeof(*m);
498 count += sizeof(*m);
499 break;
500 }
501 case MP_BUS:
502 {
503 struct mpc_config_bus *m=
504 (struct mpc_config_bus *)mpt;
505 MP_bus_info(m);
506 mpt += sizeof(*m);
507 count += sizeof(*m);
508 break;
509 }
510 case MP_IOAPIC:
511 {
512 struct mpc_config_ioapic *m=
513 (struct mpc_config_ioapic *)mpt;
514 MP_ioapic_info(m);
515 mpt+=sizeof(*m);
516 count+=sizeof(*m);
517 break;
518 }
519 case MP_INTSRC:
520 {
521 struct mpc_config_intsrc *m=
522 (struct mpc_config_intsrc *)mpt;
523
524 MP_intsrc_info(m);
525 mpt+=sizeof(*m);
526 count+=sizeof(*m);
527 break;
528 }
529 case MP_LINTSRC:
530 {
531 struct mpc_config_lintsrc *m=
532 (struct mpc_config_lintsrc *)mpt;
533 MP_lintsrc_info(m);
534 mpt+=sizeof(*m);
535 count+=sizeof(*m);
536 break;
537 }
538 default:
539 {
540 count = mpc->mpc_length;
541 break;
542 }
543 }
Alexey Starikovskiy86420502008-03-17 22:08:55 +0300544#ifdef CONFIG_X86_NUMAQ
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545 ++mpc_record;
Alexey Starikovskiy86420502008-03-17 22:08:55 +0300546#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547 }
Ingo Molnar3c43f032007-05-02 19:27:04 +0200548 setup_apic_routing();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549 if (!num_processors)
550 printk(KERN_ERR "SMP mptable: no processors registered!\n");
551 return num_processors;
552}
553
554static int __init ELCR_trigger(unsigned int irq)
555{
556 unsigned int port;
557
558 port = 0x4d0 + (irq >> 3);
559 return (inb(port) >> (irq & 7)) & 1;
560}
561
562static void __init construct_default_ioirq_mptable(int mpc_default_type)
563{
564 struct mpc_config_intsrc intsrc;
565 int i;
566 int ELCR_fallback = 0;
567
568 intsrc.mpc_type = MP_INTSRC;
569 intsrc.mpc_irqflag = 0; /* conforming */
570 intsrc.mpc_srcbus = 0;
571 intsrc.mpc_dstapic = mp_ioapics[0].mpc_apicid;
572
573 intsrc.mpc_irqtype = mp_INT;
574
575 /*
576 * If true, we have an ISA/PCI system with no IRQ entries
577 * in the MP table. To prevent the PCI interrupts from being set up
578 * incorrectly, we try to use the ELCR. The sanity check to see if
579 * there is good ELCR data is very simple - IRQ0, 1, 2 and 13 can
580 * never be level sensitive, so we simply see if the ELCR agrees.
581 * If it does, we assume it's valid.
582 */
583 if (mpc_default_type == 5) {
584 printk(KERN_INFO "ISA/PCI bus type with no IRQ information... falling back to ELCR\n");
585
586 if (ELCR_trigger(0) || ELCR_trigger(1) || ELCR_trigger(2) || ELCR_trigger(13))
587 printk(KERN_WARNING "ELCR contains invalid data... not using ELCR\n");
588 else {
589 printk(KERN_INFO "Using ELCR to identify PCI interrupts\n");
590 ELCR_fallback = 1;
591 }
592 }
593
594 for (i = 0; i < 16; i++) {
595 switch (mpc_default_type) {
596 case 2:
597 if (i == 0 || i == 13)
598 continue; /* IRQ0 & IRQ13 not connected */
599 /* fall through */
600 default:
601 if (i == 2)
602 continue; /* IRQ2 is never connected */
603 }
604
605 if (ELCR_fallback) {
606 /*
607 * If the ELCR indicates a level-sensitive interrupt, we
608 * copy that information over to the MP table in the
609 * irqflag field (level sensitive, active high polarity).
610 */
611 if (ELCR_trigger(i))
612 intsrc.mpc_irqflag = 13;
613 else
614 intsrc.mpc_irqflag = 0;
615 }
616
617 intsrc.mpc_srcbusirq = i;
618 intsrc.mpc_dstirq = i ? i : 2; /* IRQ0 to INTIN2 */
619 MP_intsrc_info(&intsrc);
620 }
621
622 intsrc.mpc_irqtype = mp_ExtINT;
623 intsrc.mpc_srcbusirq = 0;
624 intsrc.mpc_dstirq = 0; /* 8259A to INTIN0 */
625 MP_intsrc_info(&intsrc);
626}
627
628static inline void __init construct_default_ISA_mptable(int mpc_default_type)
629{
630 struct mpc_config_processor processor;
631 struct mpc_config_bus bus;
632 struct mpc_config_ioapic ioapic;
633 struct mpc_config_lintsrc lintsrc;
634 int linttypes[2] = { mp_ExtINT, mp_NMI };
635 int i;
636
637 /*
638 * local APIC has default address
639 */
640 mp_lapic_addr = APIC_DEFAULT_PHYS_BASE;
641
642 /*
643 * 2 CPUs, numbered 0 & 1.
644 */
645 processor.mpc_type = MP_PROCESSOR;
646 /* Either an integrated APIC or a discrete 82489DX. */
647 processor.mpc_apicver = mpc_default_type > 4 ? 0x10 : 0x01;
648 processor.mpc_cpuflag = CPU_ENABLED;
649 processor.mpc_cpufeature = (boot_cpu_data.x86 << 8) |
650 (boot_cpu_data.x86_model << 4) |
651 boot_cpu_data.x86_mask;
652 processor.mpc_featureflag = boot_cpu_data.x86_capability[0];
653 processor.mpc_reserved[0] = 0;
654 processor.mpc_reserved[1] = 0;
655 for (i = 0; i < 2; i++) {
656 processor.mpc_apicid = i;
657 MP_processor_info(&processor);
658 }
659
660 bus.mpc_type = MP_BUS;
661 bus.mpc_busid = 0;
662 switch (mpc_default_type) {
663 default:
664 printk("???\n");
665 printk(KERN_ERR "Unknown standard configuration %d\n",
666 mpc_default_type);
667 /* fall through */
668 case 1:
669 case 5:
670 memcpy(bus.mpc_bustype, "ISA ", 6);
671 break;
672 case 2:
673 case 6:
674 case 3:
675 memcpy(bus.mpc_bustype, "EISA ", 6);
676 break;
677 case 4:
678 case 7:
679 memcpy(bus.mpc_bustype, "MCA ", 6);
680 }
681 MP_bus_info(&bus);
682 if (mpc_default_type > 4) {
683 bus.mpc_busid = 1;
684 memcpy(bus.mpc_bustype, "PCI ", 6);
685 MP_bus_info(&bus);
686 }
687
688 ioapic.mpc_type = MP_IOAPIC;
689 ioapic.mpc_apicid = 2;
690 ioapic.mpc_apicver = mpc_default_type > 4 ? 0x10 : 0x01;
691 ioapic.mpc_flags = MPC_APIC_USABLE;
692 ioapic.mpc_apicaddr = 0xFEC00000;
693 MP_ioapic_info(&ioapic);
694
695 /*
696 * We set up most of the low 16 IO-APIC pins according to MPS rules.
697 */
698 construct_default_ioirq_mptable(mpc_default_type);
699
700 lintsrc.mpc_type = MP_LINTSRC;
701 lintsrc.mpc_irqflag = 0; /* conforming */
702 lintsrc.mpc_srcbusid = 0;
703 lintsrc.mpc_srcbusirq = 0;
704 lintsrc.mpc_destapic = MP_APIC_ALL;
705 for (i = 0; i < 2; i++) {
706 lintsrc.mpc_irqtype = linttypes[i];
707 lintsrc.mpc_destapiclint = i;
708 MP_lintsrc_info(&lintsrc);
709 }
710}
711
712static struct intel_mp_floating *mpf_found;
713
714/*
715 * Scan the memory blocks for an SMP configuration block.
716 */
717void __init get_smp_config (void)
718{
719 struct intel_mp_floating *mpf = mpf_found;
720
721 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722 * ACPI supports both logical (e.g. Hyper-Threading) and physical
723 * processors, where MPS only supports physical.
724 */
725 if (acpi_lapic && acpi_ioapic) {
726 printk(KERN_INFO "Using ACPI (MADT) for SMP configuration information\n");
727 return;
728 }
729 else if (acpi_lapic)
730 printk(KERN_INFO "Using ACPI for processor (LAPIC) configuration information\n");
731
732 printk(KERN_INFO "Intel MultiProcessor Specification v1.%d\n", mpf->mpf_specification);
733 if (mpf->mpf_feature2 & (1<<7)) {
734 printk(KERN_INFO " IMCR and PIC compatibility mode.\n");
735 pic_mode = 1;
736 } else {
737 printk(KERN_INFO " Virtual Wire compatibility mode.\n");
738 pic_mode = 0;
739 }
740
741 /*
742 * Now see if we need to read further.
743 */
744 if (mpf->mpf_feature1 != 0) {
745
746 printk(KERN_INFO "Default MP configuration #%d\n", mpf->mpf_feature1);
747 construct_default_ISA_mptable(mpf->mpf_feature1);
748
749 } else if (mpf->mpf_physptr) {
750
751 /*
752 * Read the physical hardware table. Anything here will
753 * override the defaults.
754 */
Daniel Yeisley7d4c8e52006-02-20 18:27:54 -0800755 if (!smp_read_mpc(phys_to_virt(mpf->mpf_physptr))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756 smp_found_config = 0;
757 printk(KERN_ERR "BIOS bug, MP table errors detected!...\n");
758 printk(KERN_ERR "... disabling SMP support. (tell your hw vendor)\n");
759 return;
760 }
761 /*
762 * If there are no explicit MP IRQ entries, then we are
763 * broken. We set up most of the low 16 IO-APIC pins to
764 * ISA defaults and hope it will work.
765 */
766 if (!mp_irq_entries) {
767 struct mpc_config_bus bus;
768
769 printk(KERN_ERR "BIOS bug, no explicit IRQ entries, using default mptable. (tell your hw vendor)\n");
770
771 bus.mpc_type = MP_BUS;
772 bus.mpc_busid = 0;
773 memcpy(bus.mpc_bustype, "ISA ", 6);
774 MP_bus_info(&bus);
775
776 construct_default_ioirq_mptable(0);
777 }
778
779 } else
780 BUG();
781
782 printk(KERN_INFO "Processors: %d\n", num_processors);
783 /*
784 * Only use the first configuration found.
785 */
786}
787
788static int __init smp_scan_config (unsigned long base, unsigned long length)
789{
790 unsigned long *bp = phys_to_virt(base);
791 struct intel_mp_floating *mpf;
792
Ingo Molnare91a3b42008-01-30 13:33:08 +0100793 printk(KERN_INFO "Scan SMP from %p for %ld bytes.\n", bp,length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794 if (sizeof(*mpf) != 16)
795 printk("Error: MPF size\n");
796
797 while (length > 0) {
798 mpf = (struct intel_mp_floating *)bp;
799 if ((*bp == SMP_MAGIC_IDENT) &&
800 (mpf->mpf_length == 1) &&
801 !mpf_checksum((unsigned char *)bp, 16) &&
802 ((mpf->mpf_specification == 1)
803 || (mpf->mpf_specification == 4)) ) {
804
805 smp_found_config = 1;
Ingo Molnare91a3b42008-01-30 13:33:08 +0100806 printk(KERN_INFO "found SMP MP-table at [%p] %08lx\n",
807 mpf, virt_to_phys(mpf));
Bernhard Walle72a7fe32008-02-07 00:15:17 -0800808 reserve_bootmem(virt_to_phys(mpf), PAGE_SIZE,
809 BOOTMEM_DEFAULT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810 if (mpf->mpf_physptr) {
811 /*
812 * We cannot access to MPC table to compute
813 * table size yet, as only few megabytes from
814 * the bottom is mapped now.
815 * PC-9800's MPC table places on the very last
816 * of physical memory; so that simply reserving
817 * PAGE_SIZE from mpg->mpf_physptr yields BUG()
818 * in reserve_bootmem.
819 */
820 unsigned long size = PAGE_SIZE;
821 unsigned long end = max_low_pfn * PAGE_SIZE;
822 if (mpf->mpf_physptr + size > end)
823 size = end - mpf->mpf_physptr;
Bernhard Walle72a7fe32008-02-07 00:15:17 -0800824 reserve_bootmem(mpf->mpf_physptr, size,
825 BOOTMEM_DEFAULT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826 }
827
828 mpf_found = mpf;
829 return 1;
830 }
831 bp += 4;
832 length -= 16;
833 }
834 return 0;
835}
836
837void __init find_smp_config (void)
838{
839 unsigned int address;
840
841 /*
842 * FIXME: Linux assumes you have 640K of base ram..
843 * this continues the error...
844 *
845 * 1) Scan the bottom 1K for a signature
846 * 2) Scan the top 1K of base RAM
847 * 3) Scan the 64K of bios
848 */
849 if (smp_scan_config(0x0,0x400) ||
850 smp_scan_config(639*0x400,0x400) ||
851 smp_scan_config(0xF0000,0x10000))
852 return;
853 /*
854 * If it is an SMP machine we should know now, unless the
855 * configuration is in an EISA/MCA bus machine with an
856 * extended bios data area.
857 *
858 * there is a real-mode segmented pointer pointing to the
859 * 4K EBDA area at 0x40E, calculate and scan it here.
860 *
861 * NOTE! There are Linux loaders that will corrupt the EBDA
862 * area, and as such this kind of SMP config may be less
863 * trustworthy, simply because the SMP table may have been
864 * stomped on during early boot. These loaders are buggy and
865 * should be fixed.
866 *
867 * MP1.4 SPEC states to only scan first 1K of 4K EBDA.
868 */
869
870 address = get_bios_ebda();
871 if (address)
872 smp_scan_config(address, 0x400);
873}
874
875/* --------------------------------------------------------------------------
876 ACPI-based MP Configuration
877 -------------------------------------------------------------------------- */
878
Len Brown888ba6c2005-08-24 12:07:20 -0400879#ifdef CONFIG_ACPI
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880
Andi Kleen19f03ff2006-09-26 10:52:30 +0200881void __init mp_register_lapic_address(u64 address)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882{
883 mp_lapic_addr = (unsigned long) address;
884
885 set_fixmap_nocache(FIX_APIC_BASE, mp_lapic_addr);
886
887 if (boot_cpu_physical_apicid == -1U)
888 boot_cpu_physical_apicid = GET_APIC_ID(apic_read(APIC_ID));
889
890 Dprintk("Boot CPU = %d\n", boot_cpu_physical_apicid);
891}
892
Vivek Goyal4a5d1072007-01-11 01:52:44 +0100893void __cpuinit mp_register_lapic (u8 id, u8 enabled)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895 if (MAX_APICS - id <= 0) {
896 printk(KERN_WARNING "Processor #%d invalid (max %d)\n",
897 id, MAX_APICS);
898 return;
899 }
Alexey Starikovskiy08bef9d2008-03-27 23:54:20 +0300900
Alexey Starikovskiy987dd2d2008-03-27 23:54:06 +0300901 if (!enabled) {
Ingo Molnar059c9642008-03-28 11:57:55 +0100902#ifdef CONFIG_X86_SMP
Alexey Starikovskiy987dd2d2008-03-27 23:54:06 +0300903 ++disabled_cpus;
Ingo Molnar059c9642008-03-28 11:57:55 +0100904#endif
Alexey Starikovskiy987dd2d2008-03-27 23:54:06 +0300905 return;
906 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907
Alexey Starikovskiy08bef9d2008-03-27 23:54:20 +0300908 generic_processor_info(id, GET_APIC_VERSION(apic_read(APIC_LVR)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909}
910
Len Brown84663612005-08-24 12:09:07 -0400911#ifdef CONFIG_X86_IO_APIC
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912
913#define MP_ISA_BUS 0
914#define MP_MAX_IOAPIC_PIN 127
915
916static struct mp_ioapic_routing {
917 int apic_id;
918 int gsi_base;
919 int gsi_end;
920 u32 pin_programmed[4];
921} mp_ioapic_routing[MAX_IO_APICS];
922
Andi Kleen19f03ff2006-09-26 10:52:30 +0200923static int mp_find_ioapic (int gsi)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924{
Andi Kleen19f03ff2006-09-26 10:52:30 +0200925 int i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926
927 /* Find the IOAPIC that manages this GSI. */
928 for (i = 0; i < nr_ioapics; i++) {
929 if ((gsi >= mp_ioapic_routing[i].gsi_base)
930 && (gsi <= mp_ioapic_routing[i].gsi_end))
931 return i;
932 }
933
934 printk(KERN_ERR "ERROR: Unable to locate IOAPIC for GSI %d\n", gsi);
935
936 return -1;
937}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938
Alexey Starikovskiye3e3ffa2008-03-17 22:08:11 +0300939static u8 uniq_ioapic_id(u8 id)
940{
941 if ((boot_cpu_data.x86_vendor == X86_VENDOR_INTEL) &&
942 !APIC_XAPIC(apic_version[boot_cpu_physical_apicid]))
943 return io_apic_get_unique_id(nr_ioapics, id);
944 else
945 return id;
946}
947
Andi Kleen19f03ff2006-09-26 10:52:30 +0200948void __init mp_register_ioapic(u8 id, u32 address, u32 gsi_base)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949{
Andi Kleen19f03ff2006-09-26 10:52:30 +0200950 int idx = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951
Alexey Starikovskiy857033a2008-03-17 22:08:05 +0300952 if (bad_ioapic(address))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954
Alexey Starikovskiye3e3ffa2008-03-17 22:08:11 +0300955 idx = nr_ioapics;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956
957 mp_ioapics[idx].mpc_type = MP_IOAPIC;
958 mp_ioapics[idx].mpc_flags = MPC_APIC_USABLE;
959 mp_ioapics[idx].mpc_apicaddr = address;
960
961 set_fixmap_nocache(FIX_IO_APIC_BASE_0 + idx, address);
Alexey Starikovskiye3e3ffa2008-03-17 22:08:11 +0300962 mp_ioapics[idx].mpc_apicid = uniq_ioapic_id(id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963 mp_ioapics[idx].mpc_apicver = io_apic_get_version(idx);
964
965 /*
966 * Build basic GSI lookup table to facilitate gsi->io_apic lookups
967 * and to prevent reprogramming of IOAPIC pins (PCI GSIs).
968 */
969 mp_ioapic_routing[idx].apic_id = mp_ioapics[idx].mpc_apicid;
970 mp_ioapic_routing[idx].gsi_base = gsi_base;
Thomas Gleixner64883ab2008-01-30 13:30:35 +0100971 mp_ioapic_routing[idx].gsi_end = gsi_base +
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972 io_apic_get_redir_entries(idx);
973
Thomas Gleixner64883ab2008-01-30 13:30:35 +0100974 printk("IOAPIC[%d]: apic_id %d, version %d, address 0x%x, "
975 "GSI %d-%d\n", idx, mp_ioapics[idx].mpc_apicid,
Alexey Starikovskiye3e3ffa2008-03-17 22:08:11 +0300976 mp_ioapics[idx].mpc_apicver,
977 mp_ioapics[idx].mpc_apicaddr,
Thomas Gleixner64883ab2008-01-30 13:30:35 +0100978 mp_ioapic_routing[idx].gsi_base,
979 mp_ioapic_routing[idx].gsi_end);
Alexey Starikovskiye3e3ffa2008-03-17 22:08:11 +0300980
981 nr_ioapics++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982}
983
Andi Kleen19f03ff2006-09-26 10:52:30 +0200984void __init
985mp_override_legacy_irq(u8 bus_irq, u8 polarity, u8 trigger, u32 gsi)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986{
987 struct mpc_config_intsrc intsrc;
988 int ioapic = -1;
989 int pin = -1;
990
991 /*
992 * Convert 'gsi' to 'ioapic.pin'.
993 */
994 ioapic = mp_find_ioapic(gsi);
995 if (ioapic < 0)
996 return;
997 pin = gsi - mp_ioapic_routing[ioapic].gsi_base;
998
999 /*
1000 * TBD: This check is for faulty timer entries, where the override
1001 * erroneously sets the trigger to level, resulting in a HUGE
1002 * increase of timer interrupts!
1003 */
1004 if ((bus_irq == 0) && (trigger == 3))
1005 trigger = 1;
1006
1007 intsrc.mpc_type = MP_INTSRC;
1008 intsrc.mpc_irqtype = mp_INT;
1009 intsrc.mpc_irqflag = (trigger << 2) | polarity;
1010 intsrc.mpc_srcbus = MP_ISA_BUS;
1011 intsrc.mpc_srcbusirq = bus_irq; /* IRQ */
1012 intsrc.mpc_dstapic = mp_ioapics[ioapic].mpc_apicid; /* APIC ID */
1013 intsrc.mpc_dstirq = pin; /* INTIN# */
1014
1015 Dprintk("Int: type %d, pol %d, trig %d, bus %d, irq %d, %d-%d\n",
1016 intsrc.mpc_irqtype, intsrc.mpc_irqflag & 3,
1017 (intsrc.mpc_irqflag >> 2) & 3, intsrc.mpc_srcbus,
1018 intsrc.mpc_srcbusirq, intsrc.mpc_dstapic, intsrc.mpc_dstirq);
1019
1020 mp_irqs[mp_irq_entries] = intsrc;
1021 if (++mp_irq_entries == MAX_IRQ_SOURCES)
1022 panic("Max # of irq sources exceeded!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023}
1024
Alexey Starikovskiy2df29722008-03-27 23:53:54 +03001025int es7000_plat;
1026
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027void __init mp_config_acpi_legacy_irqs (void)
1028{
1029 struct mpc_config_intsrc intsrc;
Andi Kleen19f03ff2006-09-26 10:52:30 +02001030 int i = 0;
1031 int ioapic = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032
Alexey Starikovskiyc0a282c2008-03-20 14:55:02 +03001033#if defined (CONFIG_MCA) || defined (CONFIG_EISA)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034 /*
1035 * Fabricate the legacy ISA bus (bus #31).
1036 */
1037 mp_bus_id_to_type[MP_ISA_BUS] = MP_BUS_ISA;
Alexey Starikovskiyc0a282c2008-03-20 14:55:02 +03001038#endif
Alexey Starikovskiya6333c32008-03-20 14:54:09 +03001039 set_bit(MP_ISA_BUS, mp_bus_not_pci);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040 Dprintk("Bus #%d is ISA\n", MP_ISA_BUS);
1041
1042 /*
1043 * Older generations of ES7000 have no legacy identity mappings
1044 */
1045 if (es7000_plat == 1)
1046 return;
1047
1048 /*
1049 * Locate the IOAPIC that manages the ISA IRQs (0-15).
1050 */
1051 ioapic = mp_find_ioapic(0);
1052 if (ioapic < 0)
1053 return;
1054
1055 intsrc.mpc_type = MP_INTSRC;
1056 intsrc.mpc_irqflag = 0; /* Conforming */
1057 intsrc.mpc_srcbus = MP_ISA_BUS;
1058 intsrc.mpc_dstapic = mp_ioapics[ioapic].mpc_apicid;
1059
1060 /*
1061 * Use the default configuration for the IRQs 0-15. Unless
Simon Arlott27b46d72007-10-20 01:13:56 +02001062 * overridden by (MADT) interrupt source override entries.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063 */
1064 for (i = 0; i < 16; i++) {
1065 int idx;
1066
1067 for (idx = 0; idx < mp_irq_entries; idx++) {
1068 struct mpc_config_intsrc *irq = mp_irqs + idx;
1069
1070 /* Do we already have a mapping for this ISA IRQ? */
1071 if (irq->mpc_srcbus == MP_ISA_BUS && irq->mpc_srcbusirq == i)
1072 break;
1073
1074 /* Do we already have a mapping for this IOAPIC pin */
1075 if ((irq->mpc_dstapic == intsrc.mpc_dstapic) &&
1076 (irq->mpc_dstirq == i))
1077 break;
1078 }
1079
1080 if (idx != mp_irq_entries) {
1081 printk(KERN_DEBUG "ACPI: IRQ%d used by override.\n", i);
1082 continue; /* IRQ already used */
1083 }
1084
1085 intsrc.mpc_irqtype = mp_INT;
1086 intsrc.mpc_srcbusirq = i; /* Identity mapped */
1087 intsrc.mpc_dstirq = i;
1088
1089 Dprintk("Int: type %d, pol %d, trig %d, bus %d, irq %d, "
1090 "%d-%d\n", intsrc.mpc_irqtype, intsrc.mpc_irqflag & 3,
1091 (intsrc.mpc_irqflag >> 2) & 3, intsrc.mpc_srcbus,
1092 intsrc.mpc_srcbusirq, intsrc.mpc_dstapic,
1093 intsrc.mpc_dstirq);
1094
1095 mp_irqs[mp_irq_entries] = intsrc;
1096 if (++mp_irq_entries == MAX_IRQ_SOURCES)
1097 panic("Max # of irq sources exceeded!\n");
1098 }
1099}
1100
Natalie Protasevichc434b7a2005-06-23 00:08:29 -07001101#define MAX_GSI_NUM 4096
Len Brown2ba7dee2008-01-30 13:31:02 +01001102#define IRQ_COMPRESSION_START 64
Natalie Protasevichc434b7a2005-06-23 00:08:29 -07001103
Andi Kleen19f03ff2006-09-26 10:52:30 +02001104int mp_register_gsi(u32 gsi, int triggering, int polarity)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105{
Andi Kleen19f03ff2006-09-26 10:52:30 +02001106 int ioapic = -1;
1107 int ioapic_pin = 0;
1108 int idx, bit = 0;
Len Brown2ba7dee2008-01-30 13:31:02 +01001109 static int pci_irq = IRQ_COMPRESSION_START;
Natalie Protasevichc434b7a2005-06-23 00:08:29 -07001110 /*
Joe Perchesab4a5742008-01-30 13:31:42 +01001111 * Mapping between Global System Interrupts, which
Natalie Protasevichc434b7a2005-06-23 00:08:29 -07001112 * represent all possible interrupts, and IRQs
1113 * assigned to actual devices.
1114 */
1115 static int gsi_to_irq[MAX_GSI_NUM];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001116
Linus Torvalds1da177e2005-04-16 15:20:36 -07001117 /* Don't set up the ACPI SCI because it's already set up */
Alexey Starikovskiycee324b2007-02-02 19:48:22 +03001118 if (acpi_gbl_FADT.sci_interrupt == gsi)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119 return gsi;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120
1121 ioapic = mp_find_ioapic(gsi);
1122 if (ioapic < 0) {
1123 printk(KERN_WARNING "No IOAPIC for GSI %u\n", gsi);
1124 return gsi;
1125 }
1126
1127 ioapic_pin = gsi - mp_ioapic_routing[ioapic].gsi_base;
1128
1129 if (ioapic_renumber_irq)
1130 gsi = ioapic_renumber_irq(ioapic, gsi);
1131
1132 /*
1133 * Avoid pin reprogramming. PRTs typically include entries
1134 * with redundant pin->gsi mappings (but unique PCI devices);
1135 * we only program the IOAPIC on the first.
1136 */
1137 bit = ioapic_pin % 32;
1138 idx = (ioapic_pin < 32) ? 0 : (ioapic_pin / 32);
1139 if (idx > 3) {
1140 printk(KERN_ERR "Invalid reference to IOAPIC pin "
1141 "%d-%d\n", mp_ioapic_routing[ioapic].apic_id,
1142 ioapic_pin);
1143 return gsi;
1144 }
1145 if ((1<<bit) & mp_ioapic_routing[ioapic].pin_programmed[idx]) {
1146 Dprintk(KERN_DEBUG "Pin %d-%d already programmed\n",
1147 mp_ioapic_routing[ioapic].apic_id, ioapic_pin);
Len Brown2ba7dee2008-01-30 13:31:02 +01001148 return (gsi < IRQ_COMPRESSION_START ? gsi : gsi_to_irq[gsi]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001149 }
1150
1151 mp_ioapic_routing[ioapic].pin_programmed[idx] |= (1<<bit);
1152
Len Brown2ba7dee2008-01-30 13:31:02 +01001153 /*
1154 * For GSI >= 64, use IRQ compression
1155 */
1156 if ((gsi >= IRQ_COMPRESSION_START)
1157 && (triggering == ACPI_LEVEL_SENSITIVE)) {
Natalie Protasevichc434b7a2005-06-23 00:08:29 -07001158 /*
1159 * For PCI devices assign IRQs in order, avoiding gaps
1160 * due to unused I/O APIC pins.
1161 */
1162 int irq = gsi;
1163 if (gsi < MAX_GSI_NUM) {
Kimball Murraye0c1e9b2006-05-08 15:17:16 +02001164 /*
1165 * Retain the VIA chipset work-around (gsi > 15), but
1166 * avoid a problem where the 8254 timer (IRQ0) is setup
1167 * via an override (so it's not on pin 0 of the ioapic),
1168 * and at the same time, the pin 0 interrupt is a PCI
1169 * type. The gsi > 15 test could cause these two pins
1170 * to be shared as IRQ0, and they are not shareable.
1171 * So test for this condition, and if necessary, avoid
1172 * the pin collision.
1173 */
Adrian Bunkede13892008-03-17 22:29:32 +02001174 gsi = pci_irq++;
Natalie.Protasevich@unisys.come1afc3f2005-07-29 14:03:32 -07001175 /*
1176 * Don't assign IRQ used by ACPI SCI
1177 */
Alexey Starikovskiycee324b2007-02-02 19:48:22 +03001178 if (gsi == acpi_gbl_FADT.sci_interrupt)
Natalie.Protasevich@unisys.come1afc3f2005-07-29 14:03:32 -07001179 gsi = pci_irq++;
Natalie Protasevichc434b7a2005-06-23 00:08:29 -07001180 gsi_to_irq[irq] = gsi;
1181 } else {
1182 printk(KERN_ERR "GSI %u is too high\n", gsi);
1183 return gsi;
1184 }
1185 }
1186
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187 io_apic_set_pci_routing(ioapic, ioapic_pin, gsi,
Len Browncb654692005-12-28 02:43:51 -05001188 triggering == ACPI_EDGE_SENSITIVE ? 0 : 1,
1189 polarity == ACPI_ACTIVE_HIGH ? 0 : 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190 return gsi;
1191}
1192
Len Brown84663612005-08-24 12:09:07 -04001193#endif /* CONFIG_X86_IO_APIC */
Len Brown888ba6c2005-08-24 12:07:20 -04001194#endif /* CONFIG_ACPI */