blob: 072fcc462399a7e07a8dc90bfa1437dfad12b5f5 [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 */
44int apic_version [MAX_APICS];
Alexey Starikovskiyc0a282c2008-03-20 14:55:02 +030045#if defined (CONFIG_MCA) || defined (CONFIG_EISA)
Linus Torvalds1da177e2005-04-16 15:20:36 -070046int mp_bus_id_to_type [MAX_MP_BUSSES];
Alexey Starikovskiyc0a282c2008-03-20 14:55:02 +030047#endif
Alexey Starikovskiya6333c32008-03-20 14:54:09 +030048DECLARE_BITMAP(mp_bus_not_pci, MAX_MP_BUSSES);
Linus Torvalds1da177e2005-04-16 15:20:36 -070049int mp_bus_id_to_pci_bus [MAX_MP_BUSSES] = { [0 ... MAX_MP_BUSSES-1] = -1 };
50static int mp_current_pci_id;
51
52/* I/O APIC entries */
53struct mpc_config_ioapic mp_ioapics[MAX_IO_APICS];
54
55/* # of MP IRQ source entries */
56struct mpc_config_intsrc mp_irqs[MAX_IRQ_SOURCES];
57
58/* MP IRQ source entries */
59int mp_irq_entries;
60
61int nr_ioapics;
62
63int pic_mode;
64unsigned long mp_lapic_addr;
65
Venkatesh Pallipadi911a62d2005-09-03 15:56:31 -070066unsigned int def_to_bigsmp = 0;
67
Linus Torvalds1da177e2005-04-16 15:20:36 -070068/* Processor that is doing the boot up */
69unsigned int boot_cpu_physical_apicid = -1U;
Linus Torvalds1da177e2005-04-16 15:20:36 -070070/* Internal processor count */
Sam Ravnborg87d7e982008-01-30 13:33:37 +010071unsigned int num_processors;
Linus Torvalds1da177e2005-04-16 15:20:36 -070072
Glauber Costa7b1292e2008-03-03 14:12:41 -030073unsigned disabled_cpus __cpuinitdata;
74
Linus Torvalds1da177e2005-04-16 15:20:36 -070075/* Bitmask of physically existing CPUs */
76physid_mask_t phys_cpu_present_map;
77
Ingo Molnar11617052008-03-19 20:26:15 +010078#ifndef CONFIG_SMP
79DEFINE_PER_CPU(u16, x86_bios_cpu_apicid) = BAD_APICID;
80#endif
81
Linus Torvalds1da177e2005-04-16 15:20:36 -070082/*
83 * Intel MP BIOS table parsing routines:
84 */
85
86
87/*
88 * Checksum an MP configuration block.
89 */
90
91static int __init mpf_checksum(unsigned char *mp, int len)
92{
93 int sum = 0;
94
95 while (len--)
96 sum += *mp++;
97
98 return sum & 0xFF;
99}
100
101/*
102 * Have to match translation table entries to main table entries by counter
103 * hence the mpc_record variable .... can't see a less disgusting way of
104 * doing this ....
105 */
106
107static int mpc_record;
Vivek Goyal4a5d1072007-01-11 01:52:44 +0100108static struct mpc_config_translation *translation_table[MAX_MPC_ENTRY] __cpuinitdata;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109
Vivek Goyal4a5d1072007-01-11 01:52:44 +0100110static void __cpuinit MP_processor_info (struct mpc_config_processor *m)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111{
Glauber de Oliveira Costaa6c422c2008-03-19 14:25:25 -0300112 int ver, apicid, cpu;
113 cpumask_t tmp_map;
Andrew Morton12992322005-09-09 13:01:21 -0700114 physid_mask_t phys_cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115
Glauber Costa7b1292e2008-03-03 14:12:41 -0300116 if (!(m->mpc_cpuflag & CPU_ENABLED)) {
117 disabled_cpus++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118 return;
Glauber Costa7b1292e2008-03-03 14:12:41 -0300119 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120
Alexey Starikovskiy4655c7d2008-03-17 22:08:36 +0300121#ifdef CONFIG_X86_NUMAQ
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122 apicid = mpc_apic_id(m, translation_table[mpc_record]);
Alexey Starikovskiy4655c7d2008-03-17 22:08:36 +0300123#else
124 Dprintk("Processor #%d %u:%u APIC version %d\n",
125 m->mpc_apicid,
126 (m->mpc_cpufeature & CPU_FAMILY_MASK) >> 8,
127 (m->mpc_cpufeature & CPU_MODEL_MASK) >> 4,
128 m->mpc_apicver);
129 apicid = m->mpc_apicid;
130#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131
132 if (m->mpc_featureflag&(1<<0))
133 Dprintk(" Floating point unit present.\n");
134 if (m->mpc_featureflag&(1<<7))
135 Dprintk(" Machine Exception supported.\n");
136 if (m->mpc_featureflag&(1<<8))
137 Dprintk(" 64 bit compare & exchange supported.\n");
138 if (m->mpc_featureflag&(1<<9))
139 Dprintk(" Internal APIC present.\n");
140 if (m->mpc_featureflag&(1<<11))
141 Dprintk(" SEP present.\n");
142 if (m->mpc_featureflag&(1<<12))
143 Dprintk(" MTRR present.\n");
144 if (m->mpc_featureflag&(1<<13))
145 Dprintk(" PGE present.\n");
146 if (m->mpc_featureflag&(1<<14))
147 Dprintk(" MCA present.\n");
148 if (m->mpc_featureflag&(1<<15))
149 Dprintk(" CMOV present.\n");
150 if (m->mpc_featureflag&(1<<16))
151 Dprintk(" PAT present.\n");
152 if (m->mpc_featureflag&(1<<17))
153 Dprintk(" PSE present.\n");
154 if (m->mpc_featureflag&(1<<18))
155 Dprintk(" PSN present.\n");
156 if (m->mpc_featureflag&(1<<19))
157 Dprintk(" Cache Line Flush Instruction present.\n");
158 /* 20 Reserved */
159 if (m->mpc_featureflag&(1<<21))
160 Dprintk(" Debug Trace and EMON Store present.\n");
161 if (m->mpc_featureflag&(1<<22))
162 Dprintk(" ACPI Thermal Throttle Registers present.\n");
163 if (m->mpc_featureflag&(1<<23))
164 Dprintk(" MMX present.\n");
165 if (m->mpc_featureflag&(1<<24))
166 Dprintk(" FXSR present.\n");
167 if (m->mpc_featureflag&(1<<25))
168 Dprintk(" XMM present.\n");
169 if (m->mpc_featureflag&(1<<26))
170 Dprintk(" Willamette New Instructions present.\n");
171 if (m->mpc_featureflag&(1<<27))
172 Dprintk(" Self Snoop present.\n");
173 if (m->mpc_featureflag&(1<<28))
174 Dprintk(" HT present.\n");
175 if (m->mpc_featureflag&(1<<29))
176 Dprintk(" Thermal Monitor present.\n");
177 /* 30, 31 Reserved */
178
179
180 if (m->mpc_cpuflag & CPU_BOOTPROCESSOR) {
181 Dprintk(" Bootup CPU\n");
182 boot_cpu_physical_apicid = m->mpc_apicid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183 }
184
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185 ver = m->mpc_apicver;
186
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187 /*
188 * Validate version
189 */
190 if (ver == 0x0) {
Andrew Morton12992322005-09-09 13:01:21 -0700191 printk(KERN_WARNING "BIOS bug, APIC version is 0 for CPU#%d! "
192 "fixing up to 0x10. (tell your hw vendor)\n",
193 m->mpc_apicid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 ver = 0x10;
195 }
196 apic_version[m->mpc_apicid] = ver;
Eric W. Biederman6c180d92005-10-30 14:59:47 -0800197
198 phys_cpu = apicid_to_cpu_present(apicid);
199 physids_or(phys_cpu_present_map, phys_cpu_present_map, phys_cpu);
200
201 if (num_processors >= NR_CPUS) {
202 printk(KERN_WARNING "WARNING: NR_CPUS limit of %i reached."
203 " Processor ignored.\n", NR_CPUS);
204 return;
205 }
206
207 if (num_processors >= maxcpus) {
208 printk(KERN_WARNING "WARNING: maxcpus limit of %i reached."
209 " Processor ignored.\n", maxcpus);
210 return;
211 }
212
213 cpu_set(num_processors, cpu_possible_map);
214 num_processors++;
Glauber de Oliveira Costaa6c422c2008-03-19 14:25:25 -0300215 cpus_complement(tmp_map, cpu_present_map);
216 cpu = first_cpu(tmp_map);
217
218 if (m->mpc_cpuflag & CPU_BOOTPROCESSOR)
219 /*
220 * x86_bios_cpu_apicid is required to have processors listed
221 * in same order as logical cpu numbers. Hence the first
222 * entry is BSP, and so on.
223 */
224 cpu = 0;
Eric W. Biederman6c180d92005-10-30 14:59:47 -0800225
Ashok Raj6cf272a2006-04-10 22:53:07 -0700226 /*
227 * Would be preferable to switch to bigsmp when CONFIG_HOTPLUG_CPU=y
228 * but we need to work other dependencies like SMP_SUSPEND etc
229 * before this can be done without some confusion.
230 * if (CPU_HOTPLUG_ENABLED || num_processors > 8)
231 * - Ashok Raj <ashok.raj@intel.com>
232 */
233 if (num_processors > 8) {
Ashok Raje72c8582006-01-06 00:12:09 -0800234 switch (boot_cpu_data.x86_vendor) {
235 case X86_VENDOR_INTEL:
236 if (!APIC_XAPIC(ver)) {
237 def_to_bigsmp = 0;
238 break;
239 }
240 /* If P4 and above fall through */
241 case X86_VENDOR_AMD:
242 def_to_bigsmp = 1;
243 }
244 }
Ingo Molnar11617052008-03-19 20:26:15 +0100245#ifdef CONFIG_SMP
Glauber de Oliveira Costa73bf1022008-03-19 14:25:24 -0300246 /* are we being called early in kernel startup? */
247 if (x86_cpu_to_apicid_early_ptr) {
Glauber de Oliveira Costaa6c422c2008-03-19 14:25:25 -0300248 u16 *cpu_to_apicid = x86_cpu_to_apicid_early_ptr;
Glauber de Oliveira Costa73bf1022008-03-19 14:25:24 -0300249 u16 *bios_cpu_apicid = x86_bios_cpu_apicid_early_ptr;
Glauber de Oliveira Costaa6c422c2008-03-19 14:25:25 -0300250
251 cpu_to_apicid[cpu] = m->mpc_apicid;
Glauber de Oliveira Costa73bf1022008-03-19 14:25:24 -0300252 bios_cpu_apicid[num_processors - 1] = m->mpc_apicid;
253 } else {
Glauber de Oliveira Costaa6c422c2008-03-19 14:25:25 -0300254 per_cpu(x86_cpu_to_apicid, cpu) = m->mpc_apicid;
Glauber de Oliveira Costa73bf1022008-03-19 14:25:24 -0300255 per_cpu(x86_bios_cpu_apicid, cpu) = m->mpc_apicid;
256 }
Ingo Molnar11617052008-03-19 20:26:15 +0100257#endif
Glauber de Oliveira Costaa6c422c2008-03-19 14:25:25 -0300258 cpu_set(cpu, cpu_present_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259}
260
261static void __init MP_bus_info (struct mpc_config_bus *m)
262{
263 char str[7];
264
265 memcpy(str, m->mpc_bustype, 6);
266 str[6] = 0;
267
268 mpc_oem_bus_info(m, str, translation_table[mpc_record]);
269
Andi Kleen5e4edbb2006-09-26 10:52:35 +0200270#if MAX_MP_BUSSES < 256
Randy Dunlapc0ec31a2006-04-10 22:53:13 -0700271 if (m->mpc_busid >= MAX_MP_BUSSES) {
272 printk(KERN_WARNING "MP table busid value (%d) for bustype %s "
273 " is too large, max. supported is %d\n",
274 m->mpc_busid, str, MAX_MP_BUSSES - 1);
275 return;
276 }
Andi Kleen5e4edbb2006-09-26 10:52:35 +0200277#endif
Randy Dunlapc0ec31a2006-04-10 22:53:13 -0700278
Alexey Starikovskiya6333c32008-03-20 14:54:09 +0300279 set_bit(m->mpc_busid, mp_bus_not_pci);
Alexey Starikovskiy9e0a2de2008-03-20 14:54:56 +0300280 if (strncmp(str, BUSTYPE_PCI, sizeof(BUSTYPE_PCI)-1) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281 mpc_oem_pci_bus(m, translation_table[mpc_record]);
Alexey Starikovskiya6333c32008-03-20 14:54:09 +0300282 clear_bit(m->mpc_busid, mp_bus_not_pci);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283 mp_bus_id_to_pci_bus[m->mpc_busid] = mp_current_pci_id;
284 mp_current_pci_id++;
Alexey Starikovskiyc0a282c2008-03-20 14:55:02 +0300285#if defined(CONFIG_EISA) || defined (CONFIG_MCA)
286 mp_bus_id_to_type[m->mpc_busid] = MP_BUS_PCI;
Alexey Starikovskiy9e0a2de2008-03-20 14:54:56 +0300287 } else if (strncmp(str, BUSTYPE_ISA, sizeof(BUSTYPE_ISA)-1) == 0) {
288 mp_bus_id_to_type[m->mpc_busid] = MP_BUS_ISA;
289 } else if (strncmp(str, BUSTYPE_EISA, sizeof(BUSTYPE_EISA)-1) == 0) {
290 mp_bus_id_to_type[m->mpc_busid] = MP_BUS_EISA;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291 } else if (strncmp(str, BUSTYPE_MCA, sizeof(BUSTYPE_MCA)-1) == 0) {
292 mp_bus_id_to_type[m->mpc_busid] = MP_BUS_MCA;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293 } else {
294 printk(KERN_WARNING "Unknown bustype %s - ignoring\n", str);
Alexey Starikovskiyc0a282c2008-03-20 14:55:02 +0300295#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296 }
297}
298
Alexey Starikovskiy857033a2008-03-17 22:08:05 +0300299static int bad_ioapic(unsigned long address)
300{
301 if (nr_ioapics >= MAX_IO_APICS) {
302 printk(KERN_ERR "ERROR: Max # of I/O APICs (%d) exceeded "
303 "(found %d)\n", MAX_IO_APICS, nr_ioapics);
304 panic("Recompile kernel with bigger MAX_IO_APICS!\n");
305 }
306 if (!address) {
307 printk(KERN_ERR "WARNING: Bogus (zero) I/O APIC address"
308 " found in table, skipping!\n");
309 return 1;
310 }
311 return 0;
312}
313
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314static void __init MP_ioapic_info (struct mpc_config_ioapic *m)
315{
316 if (!(m->mpc_flags & MPC_APIC_USABLE))
317 return;
318
Thomas Gleixner64883ab2008-01-30 13:30:35 +0100319 printk(KERN_INFO "I/O APIC #%d Version %d at 0x%X.\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320 m->mpc_apicid, m->mpc_apicver, m->mpc_apicaddr);
Alexey Starikovskiy857033a2008-03-17 22:08:05 +0300321
322 if (bad_ioapic(m->mpc_apicaddr))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323 return;
Alexey Starikovskiy857033a2008-03-17 22:08:05 +0300324
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325 mp_ioapics[nr_ioapics] = *m;
326 nr_ioapics++;
327}
328
329static void __init MP_intsrc_info (struct mpc_config_intsrc *m)
330{
331 mp_irqs [mp_irq_entries] = *m;
332 Dprintk("Int: type %d, pol %d, trig %d, bus %d,"
333 " IRQ %02x, APIC ID %x, APIC INT %02x\n",
334 m->mpc_irqtype, m->mpc_irqflag & 3,
335 (m->mpc_irqflag >> 2) & 3, m->mpc_srcbus,
336 m->mpc_srcbusirq, m->mpc_dstapic, m->mpc_dstirq);
337 if (++mp_irq_entries == MAX_IRQ_SOURCES)
338 panic("Max # of irq sources exceeded!!\n");
339}
340
341static void __init MP_lintsrc_info (struct mpc_config_lintsrc *m)
342{
343 Dprintk("Lint: type %d, pol %d, trig %d, bus %d,"
344 " IRQ %02x, APIC ID %x, APIC LINT %02x\n",
345 m->mpc_irqtype, m->mpc_irqflag & 3,
346 (m->mpc_irqflag >> 2) &3, m->mpc_srcbusid,
347 m->mpc_srcbusirq, m->mpc_destapic, m->mpc_destapiclint);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348}
349
350#ifdef CONFIG_X86_NUMAQ
351static void __init MP_translation_info (struct mpc_config_translation *m)
352{
353 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);
354
355 if (mpc_record >= MAX_MPC_ENTRY)
356 printk(KERN_ERR "MAX_MPC_ENTRY exceeded!\n");
357 else
358 translation_table[mpc_record] = m; /* stash this for later */
359 if (m->trans_quad < MAX_NUMNODES && !node_online(m->trans_quad))
360 node_set_online(m->trans_quad);
361}
362
363/*
364 * Read/parse the MPC oem tables
365 */
366
367static void __init smp_read_mpc_oem(struct mp_config_oemtable *oemtable, \
368 unsigned short oemsize)
369{
370 int count = sizeof (*oemtable); /* the header size */
371 unsigned char *oemptr = ((unsigned char *)oemtable)+count;
372
373 mpc_record = 0;
374 printk(KERN_INFO "Found an OEM MPC table at %8p - parsing it ... \n", oemtable);
375 if (memcmp(oemtable->oem_signature,MPC_OEM_SIGNATURE,4))
376 {
377 printk(KERN_WARNING "SMP mpc oemtable: bad signature [%c%c%c%c]!\n",
378 oemtable->oem_signature[0],
379 oemtable->oem_signature[1],
380 oemtable->oem_signature[2],
381 oemtable->oem_signature[3]);
382 return;
383 }
384 if (mpf_checksum((unsigned char *)oemtable,oemtable->oem_length))
385 {
386 printk(KERN_WARNING "SMP oem mptable: checksum error!\n");
387 return;
388 }
389 while (count < oemtable->oem_length) {
390 switch (*oemptr) {
391 case MP_TRANSLATION:
392 {
393 struct mpc_config_translation *m=
394 (struct mpc_config_translation *)oemptr;
395 MP_translation_info(m);
396 oemptr += sizeof(*m);
397 count += sizeof(*m);
398 ++mpc_record;
399 break;
400 }
401 default:
402 {
403 printk(KERN_WARNING "Unrecognised OEM table entry type! - %d\n", (int) *oemptr);
404 return;
405 }
406 }
407 }
408}
409
410static inline void mps_oem_check(struct mp_config_table *mpc, char *oem,
411 char *productid)
412{
413 if (strncmp(oem, "IBM NUMA", 8))
414 printk("Warning! May not be a NUMA-Q system!\n");
415 if (mpc->mpc_oemptr)
416 smp_read_mpc_oem((struct mp_config_oemtable *) mpc->mpc_oemptr,
417 mpc->mpc_oemsize);
418}
419#endif /* CONFIG_X86_NUMAQ */
420
421/*
422 * Read/parse the MPC
423 */
424
425static int __init smp_read_mpc(struct mp_config_table *mpc)
426{
427 char str[16];
428 char oem[10];
429 int count=sizeof(*mpc);
430 unsigned char *mpt=((unsigned char *)mpc)+count;
431
432 if (memcmp(mpc->mpc_signature,MPC_SIGNATURE,4)) {
433 printk(KERN_ERR "SMP mptable: bad signature [0x%x]!\n",
434 *(u32 *)mpc->mpc_signature);
435 return 0;
436 }
437 if (mpf_checksum((unsigned char *)mpc,mpc->mpc_length)) {
438 printk(KERN_ERR "SMP mptable: checksum error!\n");
439 return 0;
440 }
441 if (mpc->mpc_spec!=0x01 && mpc->mpc_spec!=0x04) {
442 printk(KERN_ERR "SMP mptable: bad table version (%d)!!\n",
443 mpc->mpc_spec);
444 return 0;
445 }
446 if (!mpc->mpc_lapic) {
447 printk(KERN_ERR "SMP mptable: null local APIC address!\n");
448 return 0;
449 }
450 memcpy(oem,mpc->mpc_oem,8);
451 oem[8]=0;
452 printk(KERN_INFO "OEM ID: %s ",oem);
453
454 memcpy(str,mpc->mpc_productid,12);
455 str[12]=0;
456 printk("Product ID: %s ",str);
457
458 mps_oem_check(mpc, oem, str);
459
Thomas Gleixner64883ab2008-01-30 13:30:35 +0100460 printk("APIC at: 0x%X\n", mpc->mpc_lapic);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461
Thomas Gleixner64883ab2008-01-30 13:30:35 +0100462 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463 * Save the local APIC address (it might be non-default) -- but only
464 * if we're not using ACPI.
465 */
466 if (!acpi_lapic)
467 mp_lapic_addr = mpc->mpc_lapic;
468
469 /*
470 * Now process the configuration blocks.
471 */
472 mpc_record = 0;
473 while (count < mpc->mpc_length) {
474 switch(*mpt) {
475 case MP_PROCESSOR:
476 {
477 struct mpc_config_processor *m=
478 (struct mpc_config_processor *)mpt;
479 /* ACPI may have already provided this data */
480 if (!acpi_lapic)
481 MP_processor_info(m);
482 mpt += sizeof(*m);
483 count += sizeof(*m);
484 break;
485 }
486 case MP_BUS:
487 {
488 struct mpc_config_bus *m=
489 (struct mpc_config_bus *)mpt;
490 MP_bus_info(m);
491 mpt += sizeof(*m);
492 count += sizeof(*m);
493 break;
494 }
495 case MP_IOAPIC:
496 {
497 struct mpc_config_ioapic *m=
498 (struct mpc_config_ioapic *)mpt;
499 MP_ioapic_info(m);
500 mpt+=sizeof(*m);
501 count+=sizeof(*m);
502 break;
503 }
504 case MP_INTSRC:
505 {
506 struct mpc_config_intsrc *m=
507 (struct mpc_config_intsrc *)mpt;
508
509 MP_intsrc_info(m);
510 mpt+=sizeof(*m);
511 count+=sizeof(*m);
512 break;
513 }
514 case MP_LINTSRC:
515 {
516 struct mpc_config_lintsrc *m=
517 (struct mpc_config_lintsrc *)mpt;
518 MP_lintsrc_info(m);
519 mpt+=sizeof(*m);
520 count+=sizeof(*m);
521 break;
522 }
523 default:
524 {
525 count = mpc->mpc_length;
526 break;
527 }
528 }
529 ++mpc_record;
530 }
Ingo Molnar3c43f032007-05-02 19:27:04 +0200531 setup_apic_routing();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532 if (!num_processors)
533 printk(KERN_ERR "SMP mptable: no processors registered!\n");
534 return num_processors;
535}
536
537static int __init ELCR_trigger(unsigned int irq)
538{
539 unsigned int port;
540
541 port = 0x4d0 + (irq >> 3);
542 return (inb(port) >> (irq & 7)) & 1;
543}
544
545static void __init construct_default_ioirq_mptable(int mpc_default_type)
546{
547 struct mpc_config_intsrc intsrc;
548 int i;
549 int ELCR_fallback = 0;
550
551 intsrc.mpc_type = MP_INTSRC;
552 intsrc.mpc_irqflag = 0; /* conforming */
553 intsrc.mpc_srcbus = 0;
554 intsrc.mpc_dstapic = mp_ioapics[0].mpc_apicid;
555
556 intsrc.mpc_irqtype = mp_INT;
557
558 /*
559 * If true, we have an ISA/PCI system with no IRQ entries
560 * in the MP table. To prevent the PCI interrupts from being set up
561 * incorrectly, we try to use the ELCR. The sanity check to see if
562 * there is good ELCR data is very simple - IRQ0, 1, 2 and 13 can
563 * never be level sensitive, so we simply see if the ELCR agrees.
564 * If it does, we assume it's valid.
565 */
566 if (mpc_default_type == 5) {
567 printk(KERN_INFO "ISA/PCI bus type with no IRQ information... falling back to ELCR\n");
568
569 if (ELCR_trigger(0) || ELCR_trigger(1) || ELCR_trigger(2) || ELCR_trigger(13))
570 printk(KERN_WARNING "ELCR contains invalid data... not using ELCR\n");
571 else {
572 printk(KERN_INFO "Using ELCR to identify PCI interrupts\n");
573 ELCR_fallback = 1;
574 }
575 }
576
577 for (i = 0; i < 16; i++) {
578 switch (mpc_default_type) {
579 case 2:
580 if (i == 0 || i == 13)
581 continue; /* IRQ0 & IRQ13 not connected */
582 /* fall through */
583 default:
584 if (i == 2)
585 continue; /* IRQ2 is never connected */
586 }
587
588 if (ELCR_fallback) {
589 /*
590 * If the ELCR indicates a level-sensitive interrupt, we
591 * copy that information over to the MP table in the
592 * irqflag field (level sensitive, active high polarity).
593 */
594 if (ELCR_trigger(i))
595 intsrc.mpc_irqflag = 13;
596 else
597 intsrc.mpc_irqflag = 0;
598 }
599
600 intsrc.mpc_srcbusirq = i;
601 intsrc.mpc_dstirq = i ? i : 2; /* IRQ0 to INTIN2 */
602 MP_intsrc_info(&intsrc);
603 }
604
605 intsrc.mpc_irqtype = mp_ExtINT;
606 intsrc.mpc_srcbusirq = 0;
607 intsrc.mpc_dstirq = 0; /* 8259A to INTIN0 */
608 MP_intsrc_info(&intsrc);
609}
610
611static inline void __init construct_default_ISA_mptable(int mpc_default_type)
612{
613 struct mpc_config_processor processor;
614 struct mpc_config_bus bus;
615 struct mpc_config_ioapic ioapic;
616 struct mpc_config_lintsrc lintsrc;
617 int linttypes[2] = { mp_ExtINT, mp_NMI };
618 int i;
619
620 /*
621 * local APIC has default address
622 */
623 mp_lapic_addr = APIC_DEFAULT_PHYS_BASE;
624
625 /*
626 * 2 CPUs, numbered 0 & 1.
627 */
628 processor.mpc_type = MP_PROCESSOR;
629 /* Either an integrated APIC or a discrete 82489DX. */
630 processor.mpc_apicver = mpc_default_type > 4 ? 0x10 : 0x01;
631 processor.mpc_cpuflag = CPU_ENABLED;
632 processor.mpc_cpufeature = (boot_cpu_data.x86 << 8) |
633 (boot_cpu_data.x86_model << 4) |
634 boot_cpu_data.x86_mask;
635 processor.mpc_featureflag = boot_cpu_data.x86_capability[0];
636 processor.mpc_reserved[0] = 0;
637 processor.mpc_reserved[1] = 0;
638 for (i = 0; i < 2; i++) {
639 processor.mpc_apicid = i;
640 MP_processor_info(&processor);
641 }
642
643 bus.mpc_type = MP_BUS;
644 bus.mpc_busid = 0;
645 switch (mpc_default_type) {
646 default:
647 printk("???\n");
648 printk(KERN_ERR "Unknown standard configuration %d\n",
649 mpc_default_type);
650 /* fall through */
651 case 1:
652 case 5:
653 memcpy(bus.mpc_bustype, "ISA ", 6);
654 break;
655 case 2:
656 case 6:
657 case 3:
658 memcpy(bus.mpc_bustype, "EISA ", 6);
659 break;
660 case 4:
661 case 7:
662 memcpy(bus.mpc_bustype, "MCA ", 6);
663 }
664 MP_bus_info(&bus);
665 if (mpc_default_type > 4) {
666 bus.mpc_busid = 1;
667 memcpy(bus.mpc_bustype, "PCI ", 6);
668 MP_bus_info(&bus);
669 }
670
671 ioapic.mpc_type = MP_IOAPIC;
672 ioapic.mpc_apicid = 2;
673 ioapic.mpc_apicver = mpc_default_type > 4 ? 0x10 : 0x01;
674 ioapic.mpc_flags = MPC_APIC_USABLE;
675 ioapic.mpc_apicaddr = 0xFEC00000;
676 MP_ioapic_info(&ioapic);
677
678 /*
679 * We set up most of the low 16 IO-APIC pins according to MPS rules.
680 */
681 construct_default_ioirq_mptable(mpc_default_type);
682
683 lintsrc.mpc_type = MP_LINTSRC;
684 lintsrc.mpc_irqflag = 0; /* conforming */
685 lintsrc.mpc_srcbusid = 0;
686 lintsrc.mpc_srcbusirq = 0;
687 lintsrc.mpc_destapic = MP_APIC_ALL;
688 for (i = 0; i < 2; i++) {
689 lintsrc.mpc_irqtype = linttypes[i];
690 lintsrc.mpc_destapiclint = i;
691 MP_lintsrc_info(&lintsrc);
692 }
693}
694
695static struct intel_mp_floating *mpf_found;
696
697/*
698 * Scan the memory blocks for an SMP configuration block.
699 */
700void __init get_smp_config (void)
701{
702 struct intel_mp_floating *mpf = mpf_found;
703
704 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705 * ACPI supports both logical (e.g. Hyper-Threading) and physical
706 * processors, where MPS only supports physical.
707 */
708 if (acpi_lapic && acpi_ioapic) {
709 printk(KERN_INFO "Using ACPI (MADT) for SMP configuration information\n");
710 return;
711 }
712 else if (acpi_lapic)
713 printk(KERN_INFO "Using ACPI for processor (LAPIC) configuration information\n");
714
715 printk(KERN_INFO "Intel MultiProcessor Specification v1.%d\n", mpf->mpf_specification);
716 if (mpf->mpf_feature2 & (1<<7)) {
717 printk(KERN_INFO " IMCR and PIC compatibility mode.\n");
718 pic_mode = 1;
719 } else {
720 printk(KERN_INFO " Virtual Wire compatibility mode.\n");
721 pic_mode = 0;
722 }
723
724 /*
725 * Now see if we need to read further.
726 */
727 if (mpf->mpf_feature1 != 0) {
728
729 printk(KERN_INFO "Default MP configuration #%d\n", mpf->mpf_feature1);
730 construct_default_ISA_mptable(mpf->mpf_feature1);
731
732 } else if (mpf->mpf_physptr) {
733
734 /*
735 * Read the physical hardware table. Anything here will
736 * override the defaults.
737 */
Daniel Yeisley7d4c8e52006-02-20 18:27:54 -0800738 if (!smp_read_mpc(phys_to_virt(mpf->mpf_physptr))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739 smp_found_config = 0;
740 printk(KERN_ERR "BIOS bug, MP table errors detected!...\n");
741 printk(KERN_ERR "... disabling SMP support. (tell your hw vendor)\n");
742 return;
743 }
744 /*
745 * If there are no explicit MP IRQ entries, then we are
746 * broken. We set up most of the low 16 IO-APIC pins to
747 * ISA defaults and hope it will work.
748 */
749 if (!mp_irq_entries) {
750 struct mpc_config_bus bus;
751
752 printk(KERN_ERR "BIOS bug, no explicit IRQ entries, using default mptable. (tell your hw vendor)\n");
753
754 bus.mpc_type = MP_BUS;
755 bus.mpc_busid = 0;
756 memcpy(bus.mpc_bustype, "ISA ", 6);
757 MP_bus_info(&bus);
758
759 construct_default_ioirq_mptable(0);
760 }
761
762 } else
763 BUG();
764
765 printk(KERN_INFO "Processors: %d\n", num_processors);
766 /*
767 * Only use the first configuration found.
768 */
769}
770
771static int __init smp_scan_config (unsigned long base, unsigned long length)
772{
773 unsigned long *bp = phys_to_virt(base);
774 struct intel_mp_floating *mpf;
775
Ingo Molnare91a3b42008-01-30 13:33:08 +0100776 printk(KERN_INFO "Scan SMP from %p for %ld bytes.\n", bp,length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777 if (sizeof(*mpf) != 16)
778 printk("Error: MPF size\n");
779
780 while (length > 0) {
781 mpf = (struct intel_mp_floating *)bp;
782 if ((*bp == SMP_MAGIC_IDENT) &&
783 (mpf->mpf_length == 1) &&
784 !mpf_checksum((unsigned char *)bp, 16) &&
785 ((mpf->mpf_specification == 1)
786 || (mpf->mpf_specification == 4)) ) {
787
788 smp_found_config = 1;
Ingo Molnare91a3b42008-01-30 13:33:08 +0100789 printk(KERN_INFO "found SMP MP-table at [%p] %08lx\n",
790 mpf, virt_to_phys(mpf));
Bernhard Walle72a7fe32008-02-07 00:15:17 -0800791 reserve_bootmem(virt_to_phys(mpf), PAGE_SIZE,
792 BOOTMEM_DEFAULT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793 if (mpf->mpf_physptr) {
794 /*
795 * We cannot access to MPC table to compute
796 * table size yet, as only few megabytes from
797 * the bottom is mapped now.
798 * PC-9800's MPC table places on the very last
799 * of physical memory; so that simply reserving
800 * PAGE_SIZE from mpg->mpf_physptr yields BUG()
801 * in reserve_bootmem.
802 */
803 unsigned long size = PAGE_SIZE;
804 unsigned long end = max_low_pfn * PAGE_SIZE;
805 if (mpf->mpf_physptr + size > end)
806 size = end - mpf->mpf_physptr;
Bernhard Walle72a7fe32008-02-07 00:15:17 -0800807 reserve_bootmem(mpf->mpf_physptr, size,
808 BOOTMEM_DEFAULT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809 }
810
811 mpf_found = mpf;
812 return 1;
813 }
814 bp += 4;
815 length -= 16;
816 }
817 return 0;
818}
819
820void __init find_smp_config (void)
821{
822 unsigned int address;
823
824 /*
825 * FIXME: Linux assumes you have 640K of base ram..
826 * this continues the error...
827 *
828 * 1) Scan the bottom 1K for a signature
829 * 2) Scan the top 1K of base RAM
830 * 3) Scan the 64K of bios
831 */
832 if (smp_scan_config(0x0,0x400) ||
833 smp_scan_config(639*0x400,0x400) ||
834 smp_scan_config(0xF0000,0x10000))
835 return;
836 /*
837 * If it is an SMP machine we should know now, unless the
838 * configuration is in an EISA/MCA bus machine with an
839 * extended bios data area.
840 *
841 * there is a real-mode segmented pointer pointing to the
842 * 4K EBDA area at 0x40E, calculate and scan it here.
843 *
844 * NOTE! There are Linux loaders that will corrupt the EBDA
845 * area, and as such this kind of SMP config may be less
846 * trustworthy, simply because the SMP table may have been
847 * stomped on during early boot. These loaders are buggy and
848 * should be fixed.
849 *
850 * MP1.4 SPEC states to only scan first 1K of 4K EBDA.
851 */
852
853 address = get_bios_ebda();
854 if (address)
855 smp_scan_config(address, 0x400);
856}
857
Natalie.Protasevich@unisys.come5428ed2006-03-23 02:59:36 -0800858int es7000_plat;
859
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860/* --------------------------------------------------------------------------
861 ACPI-based MP Configuration
862 -------------------------------------------------------------------------- */
863
Len Brown888ba6c2005-08-24 12:07:20 -0400864#ifdef CONFIG_ACPI
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865
Andi Kleen19f03ff2006-09-26 10:52:30 +0200866void __init mp_register_lapic_address(u64 address)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867{
868 mp_lapic_addr = (unsigned long) address;
869
870 set_fixmap_nocache(FIX_APIC_BASE, mp_lapic_addr);
871
872 if (boot_cpu_physical_apicid == -1U)
873 boot_cpu_physical_apicid = GET_APIC_ID(apic_read(APIC_ID));
874
875 Dprintk("Boot CPU = %d\n", boot_cpu_physical_apicid);
876}
877
Vivek Goyal4a5d1072007-01-11 01:52:44 +0100878void __cpuinit mp_register_lapic (u8 id, u8 enabled)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879{
880 struct mpc_config_processor processor;
Andi Kleen19f03ff2006-09-26 10:52:30 +0200881 int boot_cpu = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882
883 if (MAX_APICS - id <= 0) {
884 printk(KERN_WARNING "Processor #%d invalid (max %d)\n",
885 id, MAX_APICS);
886 return;
887 }
888
889 if (id == boot_cpu_physical_apicid)
890 boot_cpu = 1;
891
892 processor.mpc_type = MP_PROCESSOR;
893 processor.mpc_apicid = id;
894 processor.mpc_apicver = GET_APIC_VERSION(apic_read(APIC_LVR));
895 processor.mpc_cpuflag = (enabled ? CPU_ENABLED : 0);
896 processor.mpc_cpuflag |= (boot_cpu ? CPU_BOOTPROCESSOR : 0);
897 processor.mpc_cpufeature = (boot_cpu_data.x86 << 8) |
898 (boot_cpu_data.x86_model << 4) | boot_cpu_data.x86_mask;
899 processor.mpc_featureflag = boot_cpu_data.x86_capability[0];
900 processor.mpc_reserved[0] = 0;
901 processor.mpc_reserved[1] = 0;
902
903 MP_processor_info(&processor);
904}
905
Len Brown84663612005-08-24 12:09:07 -0400906#ifdef CONFIG_X86_IO_APIC
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907
908#define MP_ISA_BUS 0
909#define MP_MAX_IOAPIC_PIN 127
910
911static struct mp_ioapic_routing {
912 int apic_id;
913 int gsi_base;
914 int gsi_end;
915 u32 pin_programmed[4];
916} mp_ioapic_routing[MAX_IO_APICS];
917
Andi Kleen19f03ff2006-09-26 10:52:30 +0200918static int mp_find_ioapic (int gsi)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919{
Andi Kleen19f03ff2006-09-26 10:52:30 +0200920 int i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921
922 /* Find the IOAPIC that manages this GSI. */
923 for (i = 0; i < nr_ioapics; i++) {
924 if ((gsi >= mp_ioapic_routing[i].gsi_base)
925 && (gsi <= mp_ioapic_routing[i].gsi_end))
926 return i;
927 }
928
929 printk(KERN_ERR "ERROR: Unable to locate IOAPIC for GSI %d\n", gsi);
930
931 return -1;
932}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933
Alexey Starikovskiye3e3ffa2008-03-17 22:08:11 +0300934static u8 uniq_ioapic_id(u8 id)
935{
936 if ((boot_cpu_data.x86_vendor == X86_VENDOR_INTEL) &&
937 !APIC_XAPIC(apic_version[boot_cpu_physical_apicid]))
938 return io_apic_get_unique_id(nr_ioapics, id);
939 else
940 return id;
941}
942
Andi Kleen19f03ff2006-09-26 10:52:30 +0200943void __init mp_register_ioapic(u8 id, u32 address, u32 gsi_base)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944{
Andi Kleen19f03ff2006-09-26 10:52:30 +0200945 int idx = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946
Alexey Starikovskiy857033a2008-03-17 22:08:05 +0300947 if (bad_ioapic(address))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949
Alexey Starikovskiye3e3ffa2008-03-17 22:08:11 +0300950 idx = nr_ioapics;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951
952 mp_ioapics[idx].mpc_type = MP_IOAPIC;
953 mp_ioapics[idx].mpc_flags = MPC_APIC_USABLE;
954 mp_ioapics[idx].mpc_apicaddr = address;
955
956 set_fixmap_nocache(FIX_IO_APIC_BASE_0 + idx, address);
Alexey Starikovskiye3e3ffa2008-03-17 22:08:11 +0300957 mp_ioapics[idx].mpc_apicid = uniq_ioapic_id(id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958 mp_ioapics[idx].mpc_apicver = io_apic_get_version(idx);
959
960 /*
961 * Build basic GSI lookup table to facilitate gsi->io_apic lookups
962 * and to prevent reprogramming of IOAPIC pins (PCI GSIs).
963 */
964 mp_ioapic_routing[idx].apic_id = mp_ioapics[idx].mpc_apicid;
965 mp_ioapic_routing[idx].gsi_base = gsi_base;
Thomas Gleixner64883ab2008-01-30 13:30:35 +0100966 mp_ioapic_routing[idx].gsi_end = gsi_base +
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967 io_apic_get_redir_entries(idx);
968
Thomas Gleixner64883ab2008-01-30 13:30:35 +0100969 printk("IOAPIC[%d]: apic_id %d, version %d, address 0x%x, "
970 "GSI %d-%d\n", idx, mp_ioapics[idx].mpc_apicid,
Alexey Starikovskiye3e3ffa2008-03-17 22:08:11 +0300971 mp_ioapics[idx].mpc_apicver,
972 mp_ioapics[idx].mpc_apicaddr,
Thomas Gleixner64883ab2008-01-30 13:30:35 +0100973 mp_ioapic_routing[idx].gsi_base,
974 mp_ioapic_routing[idx].gsi_end);
Alexey Starikovskiye3e3ffa2008-03-17 22:08:11 +0300975
976 nr_ioapics++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977}
978
Andi Kleen19f03ff2006-09-26 10:52:30 +0200979void __init
980mp_override_legacy_irq(u8 bus_irq, u8 polarity, u8 trigger, u32 gsi)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981{
982 struct mpc_config_intsrc intsrc;
983 int ioapic = -1;
984 int pin = -1;
985
986 /*
987 * Convert 'gsi' to 'ioapic.pin'.
988 */
989 ioapic = mp_find_ioapic(gsi);
990 if (ioapic < 0)
991 return;
992 pin = gsi - mp_ioapic_routing[ioapic].gsi_base;
993
994 /*
995 * TBD: This check is for faulty timer entries, where the override
996 * erroneously sets the trigger to level, resulting in a HUGE
997 * increase of timer interrupts!
998 */
999 if ((bus_irq == 0) && (trigger == 3))
1000 trigger = 1;
1001
1002 intsrc.mpc_type = MP_INTSRC;
1003 intsrc.mpc_irqtype = mp_INT;
1004 intsrc.mpc_irqflag = (trigger << 2) | polarity;
1005 intsrc.mpc_srcbus = MP_ISA_BUS;
1006 intsrc.mpc_srcbusirq = bus_irq; /* IRQ */
1007 intsrc.mpc_dstapic = mp_ioapics[ioapic].mpc_apicid; /* APIC ID */
1008 intsrc.mpc_dstirq = pin; /* INTIN# */
1009
1010 Dprintk("Int: type %d, pol %d, trig %d, bus %d, irq %d, %d-%d\n",
1011 intsrc.mpc_irqtype, intsrc.mpc_irqflag & 3,
1012 (intsrc.mpc_irqflag >> 2) & 3, intsrc.mpc_srcbus,
1013 intsrc.mpc_srcbusirq, intsrc.mpc_dstapic, intsrc.mpc_dstirq);
1014
1015 mp_irqs[mp_irq_entries] = intsrc;
1016 if (++mp_irq_entries == MAX_IRQ_SOURCES)
1017 panic("Max # of irq sources exceeded!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018}
1019
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020void __init mp_config_acpi_legacy_irqs (void)
1021{
1022 struct mpc_config_intsrc intsrc;
Andi Kleen19f03ff2006-09-26 10:52:30 +02001023 int i = 0;
1024 int ioapic = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025
Alexey Starikovskiyc0a282c2008-03-20 14:55:02 +03001026#if defined (CONFIG_MCA) || defined (CONFIG_EISA)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027 /*
1028 * Fabricate the legacy ISA bus (bus #31).
1029 */
1030 mp_bus_id_to_type[MP_ISA_BUS] = MP_BUS_ISA;
Alexey Starikovskiyc0a282c2008-03-20 14:55:02 +03001031#endif
Alexey Starikovskiya6333c32008-03-20 14:54:09 +03001032 set_bit(MP_ISA_BUS, mp_bus_not_pci);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033 Dprintk("Bus #%d is ISA\n", MP_ISA_BUS);
1034
1035 /*
1036 * Older generations of ES7000 have no legacy identity mappings
1037 */
1038 if (es7000_plat == 1)
1039 return;
1040
1041 /*
1042 * Locate the IOAPIC that manages the ISA IRQs (0-15).
1043 */
1044 ioapic = mp_find_ioapic(0);
1045 if (ioapic < 0)
1046 return;
1047
1048 intsrc.mpc_type = MP_INTSRC;
1049 intsrc.mpc_irqflag = 0; /* Conforming */
1050 intsrc.mpc_srcbus = MP_ISA_BUS;
1051 intsrc.mpc_dstapic = mp_ioapics[ioapic].mpc_apicid;
1052
1053 /*
1054 * Use the default configuration for the IRQs 0-15. Unless
Simon Arlott27b46d72007-10-20 01:13:56 +02001055 * overridden by (MADT) interrupt source override entries.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056 */
1057 for (i = 0; i < 16; i++) {
1058 int idx;
1059
1060 for (idx = 0; idx < mp_irq_entries; idx++) {
1061 struct mpc_config_intsrc *irq = mp_irqs + idx;
1062
1063 /* Do we already have a mapping for this ISA IRQ? */
1064 if (irq->mpc_srcbus == MP_ISA_BUS && irq->mpc_srcbusirq == i)
1065 break;
1066
1067 /* Do we already have a mapping for this IOAPIC pin */
1068 if ((irq->mpc_dstapic == intsrc.mpc_dstapic) &&
1069 (irq->mpc_dstirq == i))
1070 break;
1071 }
1072
1073 if (idx != mp_irq_entries) {
1074 printk(KERN_DEBUG "ACPI: IRQ%d used by override.\n", i);
1075 continue; /* IRQ already used */
1076 }
1077
1078 intsrc.mpc_irqtype = mp_INT;
1079 intsrc.mpc_srcbusirq = i; /* Identity mapped */
1080 intsrc.mpc_dstirq = i;
1081
1082 Dprintk("Int: type %d, pol %d, trig %d, bus %d, irq %d, "
1083 "%d-%d\n", intsrc.mpc_irqtype, intsrc.mpc_irqflag & 3,
1084 (intsrc.mpc_irqflag >> 2) & 3, intsrc.mpc_srcbus,
1085 intsrc.mpc_srcbusirq, intsrc.mpc_dstapic,
1086 intsrc.mpc_dstirq);
1087
1088 mp_irqs[mp_irq_entries] = intsrc;
1089 if (++mp_irq_entries == MAX_IRQ_SOURCES)
1090 panic("Max # of irq sources exceeded!\n");
1091 }
1092}
1093
Natalie Protasevichc434b7a2005-06-23 00:08:29 -07001094#define MAX_GSI_NUM 4096
Len Brown2ba7dee2008-01-30 13:31:02 +01001095#define IRQ_COMPRESSION_START 64
Natalie Protasevichc434b7a2005-06-23 00:08:29 -07001096
Andi Kleen19f03ff2006-09-26 10:52:30 +02001097int mp_register_gsi(u32 gsi, int triggering, int polarity)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098{
Andi Kleen19f03ff2006-09-26 10:52:30 +02001099 int ioapic = -1;
1100 int ioapic_pin = 0;
1101 int idx, bit = 0;
Len Brown2ba7dee2008-01-30 13:31:02 +01001102 static int pci_irq = IRQ_COMPRESSION_START;
Natalie Protasevichc434b7a2005-06-23 00:08:29 -07001103 /*
Joe Perchesab4a5742008-01-30 13:31:42 +01001104 * Mapping between Global System Interrupts, which
Natalie Protasevichc434b7a2005-06-23 00:08:29 -07001105 * represent all possible interrupts, and IRQs
1106 * assigned to actual devices.
1107 */
1108 static int gsi_to_irq[MAX_GSI_NUM];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110 /* Don't set up the ACPI SCI because it's already set up */
Alexey Starikovskiycee324b2007-02-02 19:48:22 +03001111 if (acpi_gbl_FADT.sci_interrupt == gsi)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112 return gsi;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113
1114 ioapic = mp_find_ioapic(gsi);
1115 if (ioapic < 0) {
1116 printk(KERN_WARNING "No IOAPIC for GSI %u\n", gsi);
1117 return gsi;
1118 }
1119
1120 ioapic_pin = gsi - mp_ioapic_routing[ioapic].gsi_base;
1121
1122 if (ioapic_renumber_irq)
1123 gsi = ioapic_renumber_irq(ioapic, gsi);
1124
1125 /*
1126 * Avoid pin reprogramming. PRTs typically include entries
1127 * with redundant pin->gsi mappings (but unique PCI devices);
1128 * we only program the IOAPIC on the first.
1129 */
1130 bit = ioapic_pin % 32;
1131 idx = (ioapic_pin < 32) ? 0 : (ioapic_pin / 32);
1132 if (idx > 3) {
1133 printk(KERN_ERR "Invalid reference to IOAPIC pin "
1134 "%d-%d\n", mp_ioapic_routing[ioapic].apic_id,
1135 ioapic_pin);
1136 return gsi;
1137 }
1138 if ((1<<bit) & mp_ioapic_routing[ioapic].pin_programmed[idx]) {
1139 Dprintk(KERN_DEBUG "Pin %d-%d already programmed\n",
1140 mp_ioapic_routing[ioapic].apic_id, ioapic_pin);
Len Brown2ba7dee2008-01-30 13:31:02 +01001141 return (gsi < IRQ_COMPRESSION_START ? gsi : gsi_to_irq[gsi]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142 }
1143
1144 mp_ioapic_routing[ioapic].pin_programmed[idx] |= (1<<bit);
1145
Len Brown2ba7dee2008-01-30 13:31:02 +01001146 /*
1147 * For GSI >= 64, use IRQ compression
1148 */
1149 if ((gsi >= IRQ_COMPRESSION_START)
1150 && (triggering == ACPI_LEVEL_SENSITIVE)) {
Natalie Protasevichc434b7a2005-06-23 00:08:29 -07001151 /*
1152 * For PCI devices assign IRQs in order, avoiding gaps
1153 * due to unused I/O APIC pins.
1154 */
1155 int irq = gsi;
1156 if (gsi < MAX_GSI_NUM) {
Kimball Murraye0c1e9b2006-05-08 15:17:16 +02001157 /*
1158 * Retain the VIA chipset work-around (gsi > 15), but
1159 * avoid a problem where the 8254 timer (IRQ0) is setup
1160 * via an override (so it's not on pin 0 of the ioapic),
1161 * and at the same time, the pin 0 interrupt is a PCI
1162 * type. The gsi > 15 test could cause these two pins
1163 * to be shared as IRQ0, and they are not shareable.
1164 * So test for this condition, and if necessary, avoid
1165 * the pin collision.
1166 */
1167 if (gsi > 15 || (gsi == 0 && !timer_uses_ioapic_pin_0))
Natalie.Protasevich@unisys.come1afc3f2005-07-29 14:03:32 -07001168 gsi = pci_irq++;
Natalie.Protasevich@unisys.come1afc3f2005-07-29 14:03:32 -07001169 /*
1170 * Don't assign IRQ used by ACPI SCI
1171 */
Alexey Starikovskiycee324b2007-02-02 19:48:22 +03001172 if (gsi == acpi_gbl_FADT.sci_interrupt)
Natalie.Protasevich@unisys.come1afc3f2005-07-29 14:03:32 -07001173 gsi = pci_irq++;
Natalie Protasevichc434b7a2005-06-23 00:08:29 -07001174 gsi_to_irq[irq] = gsi;
1175 } else {
1176 printk(KERN_ERR "GSI %u is too high\n", gsi);
1177 return gsi;
1178 }
1179 }
1180
Linus Torvalds1da177e2005-04-16 15:20:36 -07001181 io_apic_set_pci_routing(ioapic, ioapic_pin, gsi,
Len Browncb654692005-12-28 02:43:51 -05001182 triggering == ACPI_EDGE_SENSITIVE ? 0 : 1,
1183 polarity == ACPI_ACTIVE_HIGH ? 0 : 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001184 return gsi;
1185}
1186
Len Brown84663612005-08-24 12:09:07 -04001187#endif /* CONFIG_X86_IO_APIC */
Len Brown888ba6c2005-08-24 12:07:20 -04001188#endif /* CONFIG_ACPI */