x86: unify smp_read_mpc
[deliverable/linux.git] / arch / x86 / kernel / mpparse_64.c
1 /*
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>
17 #include <linux/init.h>
18 #include <linux/delay.h>
19 #include <linux/bootmem.h>
20 #include <linux/kernel_stat.h>
21 #include <linux/mc146818rtc.h>
22 #include <linux/acpi.h>
23 #include <linux/module.h>
24
25 #include <asm/smp.h>
26 #include <asm/mtrr.h>
27 #include <asm/mpspec.h>
28 #include <asm/pgalloc.h>
29 #include <asm/io_apic.h>
30 #include <asm/proto.h>
31 #include <asm/acpi.h>
32 #include <asm/bios_ebda.h>
33
34 #include <mach_apic.h>
35
36 /* Have we found an MP table */
37 int smp_found_config;
38
39 /*
40 * Various Linux-internal data structures created from the
41 * MP-table.
42 */
43 DECLARE_BITMAP(mp_bus_not_pci, MAX_MP_BUSSES);
44 int mp_bus_id_to_pci_bus[MAX_MP_BUSSES] = {[0 ... MAX_MP_BUSSES - 1] = -1 };
45
46 static int mp_current_pci_id = 0;
47
48 /*
49 * Intel MP BIOS table parsing routines:
50 */
51
52 /*
53 * Checksum an MP configuration block.
54 */
55
56 static int __init mpf_checksum(unsigned char *mp, int len)
57 {
58 int sum = 0;
59
60 while (len--)
61 sum += *mp++;
62
63 return sum & 0xFF;
64 }
65
66 static void __cpuinit MP_processor_info(struct mpc_config_processor *m)
67 {
68 int apicid;
69 char *bootup_cpu = "";
70
71 if (!(m->mpc_cpuflag & CPU_ENABLED)) {
72 disabled_cpus++;
73 return;
74 }
75 #ifdef CONFIG_X86_NUMAQ
76 apicid = mpc_apic_id(m, translation_table[mpc_record]);
77 #else
78 apicid = m->mpc_apicid;
79 #endif
80 if (m->mpc_cpuflag & CPU_BOOTPROCESSOR) {
81 bootup_cpu = " (Bootup-CPU)";
82 boot_cpu_physical_apicid = m->mpc_apicid;
83 }
84
85 printk(KERN_INFO "Processor #%d%s\n", m->mpc_apicid, bootup_cpu);
86 generic_processor_info(apicid, m->mpc_apicver);
87 }
88
89 static void __init MP_bus_info(struct mpc_config_bus *m)
90 {
91 char str[7];
92
93 memcpy(str, m->mpc_bustype, 6);
94 str[6] = 0;
95
96 #ifdef CONFIG_X86_NUMAQ
97 mpc_oem_bus_info(m, str, translation_table[mpc_record]);
98 #else
99 Dprintk("Bus #%d is %s\n", m->mpc_busid, str);
100 #endif
101
102 #if MAX_MP_BUSSES < 256
103 if (m->mpc_busid >= MAX_MP_BUSSES) {
104 printk(KERN_WARNING "MP table busid value (%d) for bustype %s "
105 " is too large, max. supported is %d\n",
106 m->mpc_busid, str, MAX_MP_BUSSES - 1);
107 return;
108 }
109 #endif
110
111 if (strncmp(str, BUSTYPE_ISA, sizeof(BUSTYPE_ISA) - 1) == 0) {
112 set_bit(m->mpc_busid, mp_bus_not_pci);
113 #if defined(CONFIG_EISA) || defined (CONFIG_MCA)
114 mp_bus_id_to_type[m->mpc_busid] = MP_BUS_ISA;
115 #endif
116 } else if (strncmp(str, BUSTYPE_PCI, sizeof(BUSTYPE_PCI) - 1) == 0) {
117 #ifdef CONFIG_X86_NUMAQ
118 mpc_oem_pci_bus(m, translation_table[mpc_record]);
119 #endif
120 clear_bit(m->mpc_busid, mp_bus_not_pci);
121 mp_bus_id_to_pci_bus[m->mpc_busid] = mp_current_pci_id;
122 mp_current_pci_id++;
123 #if defined(CONFIG_EISA) || defined (CONFIG_MCA)
124 mp_bus_id_to_type[m->mpc_busid] = MP_BUS_PCI;
125 } else if (strncmp(str, BUSTYPE_EISA, sizeof(BUSTYPE_EISA) - 1) == 0) {
126 mp_bus_id_to_type[m->mpc_busid] = MP_BUS_EISA;
127 } else if (strncmp(str, BUSTYPE_MCA, sizeof(BUSTYPE_MCA) - 1) == 0) {
128 mp_bus_id_to_type[m->mpc_busid] = MP_BUS_MCA;
129 #endif
130 } else
131 printk(KERN_WARNING "Unknown bustype %s - ignoring\n", str);
132 }
133
134 static int bad_ioapic(unsigned long address)
135 {
136 if (nr_ioapics >= MAX_IO_APICS) {
137 printk(KERN_ERR "ERROR: Max # of I/O APICs (%d) exceeded "
138 "(found %d)\n", MAX_IO_APICS, nr_ioapics);
139 panic("Recompile kernel with bigger MAX_IO_APICS!\n");
140 }
141 if (!address) {
142 printk(KERN_ERR "WARNING: Bogus (zero) I/O APIC address"
143 " found in table, skipping!\n");
144 return 1;
145 }
146 return 0;
147 }
148
149 static void __init MP_ioapic_info(struct mpc_config_ioapic *m)
150 {
151 if (!(m->mpc_flags & MPC_APIC_USABLE))
152 return;
153
154 printk(KERN_INFO "I/O APIC #%d at 0x%X.\n", m->mpc_apicid,
155 m->mpc_apicaddr);
156
157 if (bad_ioapic(m->mpc_apicaddr))
158 return;
159
160 mp_ioapics[nr_ioapics] = *m;
161 nr_ioapics++;
162 }
163
164 static void __init MP_intsrc_info(struct mpc_config_intsrc *m)
165 {
166 mp_irqs[mp_irq_entries] = *m;
167 Dprintk("Int: type %d, pol %d, trig %d, bus %d,"
168 " IRQ %02x, APIC ID %x, APIC INT %02x\n",
169 m->mpc_irqtype, m->mpc_irqflag & 3,
170 (m->mpc_irqflag >> 2) & 3, m->mpc_srcbus,
171 m->mpc_srcbusirq, m->mpc_dstapic, m->mpc_dstirq);
172 if (++mp_irq_entries >= MAX_IRQ_SOURCES)
173 panic("Max # of irq sources exceeded!!\n");
174 }
175
176 static void __init MP_lintsrc_info(struct mpc_config_lintsrc *m)
177 {
178 Dprintk("Lint: type %d, pol %d, trig %d, bus %d,"
179 " IRQ %02x, APIC ID %x, APIC LINT %02x\n",
180 m->mpc_irqtype, m->mpc_irqflag & 3,
181 (m->mpc_irqflag >> 2) & 3, m->mpc_srcbusid,
182 m->mpc_srcbusirq, m->mpc_destapic, m->mpc_destapiclint);
183 }
184
185 /*
186 * Read/parse the MPC
187 */
188 static int __init smp_read_mpc(struct mp_config_table *mpc, unsigned early)
189 {
190 char str[16];
191 char oem[10];
192 int count = sizeof(*mpc);
193 unsigned char *mpt = ((unsigned char *)mpc) + count;
194
195 if (memcmp(mpc->mpc_signature, MPC_SIGNATURE, 4)) {
196 printk(KERN_ERR "MPTABLE: bad signature [%c%c%c%c]!\n",
197 mpc->mpc_signature[0], mpc->mpc_signature[1],
198 mpc->mpc_signature[2], mpc->mpc_signature[3]);
199 return 0;
200 }
201 if (mpf_checksum((unsigned char *)mpc, mpc->mpc_length)) {
202 printk(KERN_ERR "MPTABLE: checksum error!\n");
203 return 0;
204 }
205 if (mpc->mpc_spec != 0x01 && mpc->mpc_spec != 0x04) {
206 printk(KERN_ERR "MPTABLE: bad table version (%d)!!\n",
207 mpc->mpc_spec);
208 return 0;
209 }
210 if (!mpc->mpc_lapic) {
211 printk(KERN_ERR "MPTABLE: null local APIC address!\n");
212 return 0;
213 }
214 memcpy(oem, mpc->mpc_oem, 8);
215 oem[8] = 0;
216 printk(KERN_INFO "MPTABLE: OEM ID: %s ", oem);
217
218 memcpy(str, mpc->mpc_productid, 12);
219 str[12] = 0;
220 printk("Product ID: %s ", str);
221
222 #ifdef CONFIG_X86_32
223 mps_oem_check(mpc, oem, str);
224 #endif
225 printk(KERN_INFO "MPTABLE: Product ID: %s ", str);
226
227 printk(KERN_INFO "MPTABLE: APIC at: 0x%X\n", mpc->mpc_lapic);
228
229 /* save the local APIC address, it might be non-default */
230 if (!acpi_lapic)
231 mp_lapic_addr = mpc->mpc_lapic;
232
233 if (early)
234 return 1;
235
236 /*
237 * Now process the configuration blocks.
238 */
239 #ifdef CONFIG_X86_NUMAQ
240 mpc_record = 0;
241 #endif
242 while (count < mpc->mpc_length) {
243 switch (*mpt) {
244 case MP_PROCESSOR:
245 {
246 struct mpc_config_processor *m =
247 (struct mpc_config_processor *)mpt;
248 /* ACPI may have already provided this data */
249 if (!acpi_lapic)
250 MP_processor_info(m);
251 mpt += sizeof(*m);
252 count += sizeof(*m);
253 break;
254 }
255 case MP_BUS:
256 {
257 struct mpc_config_bus *m =
258 (struct mpc_config_bus *)mpt;
259 MP_bus_info(m);
260 mpt += sizeof(*m);
261 count += sizeof(*m);
262 break;
263 }
264 case MP_IOAPIC:
265 {
266 struct mpc_config_ioapic *m =
267 (struct mpc_config_ioapic *)mpt;
268 MP_ioapic_info(m);
269 mpt += sizeof(*m);
270 count += sizeof(*m);
271 break;
272 }
273 case MP_INTSRC:
274 {
275 struct mpc_config_intsrc *m =
276 (struct mpc_config_intsrc *)mpt;
277
278 MP_intsrc_info(m);
279 mpt += sizeof(*m);
280 count += sizeof(*m);
281 break;
282 }
283 case MP_LINTSRC:
284 {
285 struct mpc_config_lintsrc *m =
286 (struct mpc_config_lintsrc *)mpt;
287 MP_lintsrc_info(m);
288 mpt += sizeof(*m);
289 count += sizeof(*m);
290 break;
291 }
292 default:
293 {
294 count = mpc->mpc_length;
295 break;
296 }
297 }
298 #ifdef CONFIG_X86_NUMAQ
299 ++mpc_record;
300 #endif
301 }
302 setup_apic_routing();
303 if (!num_processors)
304 printk(KERN_ERR "MPTABLE: no processors registered!\n");
305 return num_processors;
306 }
307
308 static int __init ELCR_trigger(unsigned int irq)
309 {
310 unsigned int port;
311
312 port = 0x4d0 + (irq >> 3);
313 return (inb(port) >> (irq & 7)) & 1;
314 }
315
316 static void __init construct_default_ioirq_mptable(int mpc_default_type)
317 {
318 struct mpc_config_intsrc intsrc;
319 int i;
320 int ELCR_fallback = 0;
321
322 intsrc.mpc_type = MP_INTSRC;
323 intsrc.mpc_irqflag = 0; /* conforming */
324 intsrc.mpc_srcbus = 0;
325 intsrc.mpc_dstapic = mp_ioapics[0].mpc_apicid;
326
327 intsrc.mpc_irqtype = mp_INT;
328
329 /*
330 * If true, we have an ISA/PCI system with no IRQ entries
331 * in the MP table. To prevent the PCI interrupts from being set up
332 * incorrectly, we try to use the ELCR. The sanity check to see if
333 * there is good ELCR data is very simple - IRQ0, 1, 2 and 13 can
334 * never be level sensitive, so we simply see if the ELCR agrees.
335 * If it does, we assume it's valid.
336 */
337 if (mpc_default_type == 5) {
338 printk(KERN_INFO "ISA/PCI bus type with no IRQ information... "
339 "falling back to ELCR\n");
340
341 if (ELCR_trigger(0) || ELCR_trigger(1) || ELCR_trigger(2) ||
342 ELCR_trigger(13))
343 printk(KERN_ERR "ELCR contains invalid data... "
344 "not using ELCR\n");
345 else {
346 printk(KERN_INFO
347 "Using ELCR to identify PCI interrupts\n");
348 ELCR_fallback = 1;
349 }
350 }
351
352 for (i = 0; i < 16; i++) {
353 switch (mpc_default_type) {
354 case 2:
355 if (i == 0 || i == 13)
356 continue; /* IRQ0 & IRQ13 not connected */
357 /* fall through */
358 default:
359 if (i == 2)
360 continue; /* IRQ2 is never connected */
361 }
362
363 if (ELCR_fallback) {
364 /*
365 * If the ELCR indicates a level-sensitive interrupt, we
366 * copy that information over to the MP table in the
367 * irqflag field (level sensitive, active high polarity).
368 */
369 if (ELCR_trigger(i))
370 intsrc.mpc_irqflag = 13;
371 else
372 intsrc.mpc_irqflag = 0;
373 }
374
375 intsrc.mpc_srcbusirq = i;
376 intsrc.mpc_dstirq = i ? i : 2; /* IRQ0 to INTIN2 */
377 MP_intsrc_info(&intsrc);
378 }
379
380 intsrc.mpc_irqtype = mp_ExtINT;
381 intsrc.mpc_srcbusirq = 0;
382 intsrc.mpc_dstirq = 0; /* 8259A to INTIN0 */
383 MP_intsrc_info(&intsrc);
384 }
385
386 static inline void __init construct_default_ISA_mptable(int mpc_default_type)
387 {
388 struct mpc_config_processor processor;
389 struct mpc_config_bus bus;
390 struct mpc_config_ioapic ioapic;
391 struct mpc_config_lintsrc lintsrc;
392 int linttypes[2] = { mp_ExtINT, mp_NMI };
393 int i;
394
395 /*
396 * local APIC has default address
397 */
398 mp_lapic_addr = APIC_DEFAULT_PHYS_BASE;
399
400 /*
401 * 2 CPUs, numbered 0 & 1.
402 */
403 processor.mpc_type = MP_PROCESSOR;
404 processor.mpc_apicver = 0;
405 processor.mpc_cpuflag = CPU_ENABLED;
406 processor.mpc_cpufeature = 0;
407 processor.mpc_featureflag = 0;
408 processor.mpc_reserved[0] = 0;
409 processor.mpc_reserved[1] = 0;
410 for (i = 0; i < 2; i++) {
411 processor.mpc_apicid = i;
412 MP_processor_info(&processor);
413 }
414
415 bus.mpc_type = MP_BUS;
416 bus.mpc_busid = 0;
417 switch (mpc_default_type) {
418 default:
419 printk(KERN_ERR "???\nUnknown standard configuration %d\n",
420 mpc_default_type);
421 /* fall through */
422 case 1:
423 case 5:
424 memcpy(bus.mpc_bustype, "ISA ", 6);
425 break;
426 }
427 MP_bus_info(&bus);
428 if (mpc_default_type > 4) {
429 bus.mpc_busid = 1;
430 memcpy(bus.mpc_bustype, "PCI ", 6);
431 MP_bus_info(&bus);
432 }
433
434 ioapic.mpc_type = MP_IOAPIC;
435 ioapic.mpc_apicid = 2;
436 ioapic.mpc_apicver = 0;
437 ioapic.mpc_flags = MPC_APIC_USABLE;
438 ioapic.mpc_apicaddr = 0xFEC00000;
439 MP_ioapic_info(&ioapic);
440
441 /*
442 * We set up most of the low 16 IO-APIC pins according to MPS rules.
443 */
444 construct_default_ioirq_mptable(mpc_default_type);
445
446 lintsrc.mpc_type = MP_LINTSRC;
447 lintsrc.mpc_irqflag = 0; /* conforming */
448 lintsrc.mpc_srcbusid = 0;
449 lintsrc.mpc_srcbusirq = 0;
450 lintsrc.mpc_destapic = MP_APIC_ALL;
451 for (i = 0; i < 2; i++) {
452 lintsrc.mpc_irqtype = linttypes[i];
453 lintsrc.mpc_destapiclint = i;
454 MP_lintsrc_info(&lintsrc);
455 }
456 }
457
458 static struct intel_mp_floating *mpf_found;
459
460 /*
461 * Scan the memory blocks for an SMP configuration block.
462 */
463 static void __init __get_smp_config(unsigned early)
464 {
465 struct intel_mp_floating *mpf = mpf_found;
466
467 if (acpi_lapic && early)
468 return;
469 /*
470 * ACPI supports both logical (e.g. Hyper-Threading) and physical
471 * processors, where MPS only supports physical.
472 */
473 if (acpi_lapic && acpi_ioapic) {
474 printk(KERN_INFO "Using ACPI (MADT) for SMP configuration "
475 "information\n");
476 return;
477 } else if (acpi_lapic)
478 printk(KERN_INFO "Using ACPI for processor (LAPIC) "
479 "configuration information\n");
480
481 printk(KERN_INFO "Intel MultiProcessor Specification v1.%d\n",
482 mpf->mpf_specification);
483
484 /*
485 * Now see if we need to read further.
486 */
487 if (mpf->mpf_feature1 != 0) {
488 if (early) {
489 /*
490 * local APIC has default address
491 */
492 mp_lapic_addr = APIC_DEFAULT_PHYS_BASE;
493 return;
494 }
495
496 printk(KERN_INFO "Default MP configuration #%d\n",
497 mpf->mpf_feature1);
498 construct_default_ISA_mptable(mpf->mpf_feature1);
499
500 } else if (mpf->mpf_physptr) {
501
502 /*
503 * Read the physical hardware table. Anything here will
504 * override the defaults.
505 */
506 if (!smp_read_mpc(phys_to_virt(mpf->mpf_physptr), early)) {
507 smp_found_config = 0;
508 printk(KERN_ERR
509 "BIOS bug, MP table errors detected!...\n");
510 printk(KERN_ERR "... disabling SMP support. "
511 "(tell your hw vendor)\n");
512 return;
513 }
514
515 if (early)
516 return;
517 /*
518 * If there are no explicit MP IRQ entries, then we are
519 * broken. We set up most of the low 16 IO-APIC pins to
520 * ISA defaults and hope it will work.
521 */
522 if (!mp_irq_entries) {
523 struct mpc_config_bus bus;
524
525 printk(KERN_ERR "BIOS bug, no explicit IRQ entries, "
526 "using default mptable. "
527 "(tell your hw vendor)\n");
528
529 bus.mpc_type = MP_BUS;
530 bus.mpc_busid = 0;
531 memcpy(bus.mpc_bustype, "ISA ", 6);
532 MP_bus_info(&bus);
533
534 construct_default_ioirq_mptable(0);
535 }
536
537 } else
538 BUG();
539
540 if (!early)
541 printk(KERN_INFO "Processors: %d\n", num_processors);
542 /*
543 * Only use the first configuration found.
544 */
545 }
546
547 void __init early_get_smp_config(void)
548 {
549 __get_smp_config(1);
550 }
551
552 void __init get_smp_config(void)
553 {
554 __get_smp_config(0);
555 }
556
557 static int __init smp_scan_config(unsigned long base, unsigned long length,
558 unsigned reserve)
559 {
560 extern void __bad_mpf_size(void);
561 unsigned int *bp = phys_to_virt(base);
562 struct intel_mp_floating *mpf;
563
564 Dprintk("Scan SMP from %p for %ld bytes.\n", bp, length);
565 if (sizeof(*mpf) != 16)
566 __bad_mpf_size();
567
568 while (length > 0) {
569 mpf = (struct intel_mp_floating *)bp;
570 if ((*bp == SMP_MAGIC_IDENT) &&
571 (mpf->mpf_length == 1) &&
572 !mpf_checksum((unsigned char *)bp, 16) &&
573 ((mpf->mpf_specification == 1)
574 || (mpf->mpf_specification == 4))) {
575
576 smp_found_config = 1;
577 mpf_found = mpf;
578
579 if (!reserve)
580 return 1;
581
582 reserve_bootmem_generic(virt_to_phys(mpf), PAGE_SIZE);
583 if (mpf->mpf_physptr)
584 reserve_bootmem_generic(mpf->mpf_physptr,
585 PAGE_SIZE);
586 return 1;
587 }
588 bp += 4;
589 length -= 16;
590 }
591 return 0;
592 }
593
594 static void __init __find_smp_config(unsigned reserve)
595 {
596 unsigned int address;
597
598 /*
599 * FIXME: Linux assumes you have 640K of base ram..
600 * this continues the error...
601 *
602 * 1) Scan the bottom 1K for a signature
603 * 2) Scan the top 1K of base RAM
604 * 3) Scan the 64K of bios
605 */
606 if (smp_scan_config(0x0, 0x400, reserve) ||
607 smp_scan_config(639 * 0x400, 0x400, reserve) ||
608 smp_scan_config(0xF0000, 0x10000, reserve))
609 return;
610 /*
611 * If it is an SMP machine we should know now.
612 *
613 * there is a real-mode segmented pointer pointing to the
614 * 4K EBDA area at 0x40E, calculate and scan it here.
615 *
616 * NOTE! There are Linux loaders that will corrupt the EBDA
617 * area, and as such this kind of SMP config may be less
618 * trustworthy, simply because the SMP table may have been
619 * stomped on during early boot. These loaders are buggy and
620 * should be fixed.
621 *
622 * MP1.4 SPEC states to only scan first 1K of 4K EBDA.
623 */
624
625 address = get_bios_ebda();
626 if (address)
627 smp_scan_config(address, 0x400, reserve);
628 }
629
630 void __init early_find_smp_config(void)
631 {
632 __find_smp_config(0);
633 }
634
635 void __init find_smp_config(void)
636 {
637 __find_smp_config(1);
638 }
639
640 /* --------------------------------------------------------------------------
641 ACPI-based MP Configuration
642 -------------------------------------------------------------------------- */
643
644 #ifdef CONFIG_ACPI
645
646 #define MP_ISA_BUS 0
647 #define MP_MAX_IOAPIC_PIN 127
648
649 extern struct mp_ioapic_routing mp_ioapic_routing[MAX_IO_APICS];
650
651 static int mp_find_ioapic(int gsi)
652 {
653 int i = 0;
654
655 /* Find the IOAPIC that manages this GSI. */
656 for (i = 0; i < nr_ioapics; i++) {
657 if ((gsi >= mp_ioapic_routing[i].gsi_base)
658 && (gsi <= mp_ioapic_routing[i].gsi_end))
659 return i;
660 }
661
662 printk(KERN_ERR "ERROR: Unable to locate IOAPIC for GSI %d\n", gsi);
663 return -1;
664 }
665
666 static u8 uniq_ioapic_id(u8 id)
667 {
668 int i;
669 DECLARE_BITMAP(used, 256);
670 bitmap_zero(used, 256);
671 for (i = 0; i < nr_ioapics; i++) {
672 struct mpc_config_ioapic *ia = &mp_ioapics[i];
673 __set_bit(ia->mpc_apicid, used);
674 }
675 if (!test_bit(id, used))
676 return id;
677 return find_first_zero_bit(used, 256);
678 }
679
680 void __init mp_register_ioapic(int id, u32 address, u32 gsi_base)
681 {
682 int idx = 0;
683
684 if (bad_ioapic(address))
685 return;
686
687 idx = nr_ioapics;
688
689 mp_ioapics[idx].mpc_type = MP_IOAPIC;
690 mp_ioapics[idx].mpc_flags = MPC_APIC_USABLE;
691 mp_ioapics[idx].mpc_apicaddr = address;
692
693 set_fixmap_nocache(FIX_IO_APIC_BASE_0 + idx, address);
694 mp_ioapics[idx].mpc_apicid = uniq_ioapic_id(id);
695 mp_ioapics[idx].mpc_apicver = 0;
696
697 /*
698 * Build basic IRQ lookup table to facilitate gsi->io_apic lookups
699 * and to prevent reprogramming of IOAPIC pins (PCI IRQs).
700 */
701 mp_ioapic_routing[idx].apic_id = mp_ioapics[idx].mpc_apicid;
702 mp_ioapic_routing[idx].gsi_base = gsi_base;
703 mp_ioapic_routing[idx].gsi_end = gsi_base +
704 io_apic_get_redir_entries(idx);
705
706 printk(KERN_INFO "IOAPIC[%d]: apic_id %d, address 0x%x, "
707 "GSI %d-%d\n", idx, mp_ioapics[idx].mpc_apicid,
708 mp_ioapics[idx].mpc_apicaddr,
709 mp_ioapic_routing[idx].gsi_base,
710 mp_ioapic_routing[idx].gsi_end);
711
712 nr_ioapics++;
713 }
714
715 void __init mp_override_legacy_irq(u8 bus_irq, u8 polarity, u8 trigger, u32 gsi)
716 {
717 struct mpc_config_intsrc intsrc;
718 int ioapic = -1;
719 int pin = -1;
720
721 /*
722 * Convert 'gsi' to 'ioapic.pin'.
723 */
724 ioapic = mp_find_ioapic(gsi);
725 if (ioapic < 0)
726 return;
727 pin = gsi - mp_ioapic_routing[ioapic].gsi_base;
728
729 /*
730 * TBD: This check is for faulty timer entries, where the override
731 * erroneously sets the trigger to level, resulting in a HUGE
732 * increase of timer interrupts!
733 */
734 if ((bus_irq == 0) && (trigger == 3))
735 trigger = 1;
736
737 intsrc.mpc_type = MP_INTSRC;
738 intsrc.mpc_irqtype = mp_INT;
739 intsrc.mpc_irqflag = (trigger << 2) | polarity;
740 intsrc.mpc_srcbus = MP_ISA_BUS;
741 intsrc.mpc_srcbusirq = bus_irq; /* IRQ */
742 intsrc.mpc_dstapic = mp_ioapics[ioapic].mpc_apicid; /* APIC ID */
743 intsrc.mpc_dstirq = pin; /* INTIN# */
744
745 Dprintk("Int: type %d, pol %d, trig %d, bus %d, irq %d, %d-%d\n",
746 intsrc.mpc_irqtype, intsrc.mpc_irqflag & 3,
747 (intsrc.mpc_irqflag >> 2) & 3, intsrc.mpc_srcbus,
748 intsrc.mpc_srcbusirq, intsrc.mpc_dstapic, intsrc.mpc_dstirq);
749
750 mp_irqs[mp_irq_entries] = intsrc;
751 if (++mp_irq_entries == MAX_IRQ_SOURCES)
752 panic("Max # of irq sources exceeded!\n");
753 }
754
755 void __init mp_config_acpi_legacy_irqs(void)
756 {
757 struct mpc_config_intsrc intsrc;
758 int i = 0;
759 int ioapic = -1;
760
761 /*
762 * Fabricate the legacy ISA bus (bus #31).
763 */
764 set_bit(MP_ISA_BUS, mp_bus_not_pci);
765
766 /*
767 * Locate the IOAPIC that manages the ISA IRQs (0-15).
768 */
769 ioapic = mp_find_ioapic(0);
770 if (ioapic < 0)
771 return;
772
773 intsrc.mpc_type = MP_INTSRC;
774 intsrc.mpc_irqflag = 0; /* Conforming */
775 intsrc.mpc_srcbus = MP_ISA_BUS;
776 intsrc.mpc_dstapic = mp_ioapics[ioapic].mpc_apicid;
777
778 /*
779 * Use the default configuration for the IRQs 0-15. Unless
780 * overridden by (MADT) interrupt source override entries.
781 */
782 for (i = 0; i < 16; i++) {
783 int idx;
784
785 for (idx = 0; idx < mp_irq_entries; idx++) {
786 struct mpc_config_intsrc *irq = mp_irqs + idx;
787
788 /* Do we already have a mapping for this ISA IRQ? */
789 if (irq->mpc_srcbus == MP_ISA_BUS
790 && irq->mpc_srcbusirq == i)
791 break;
792
793 /* Do we already have a mapping for this IOAPIC pin */
794 if ((irq->mpc_dstapic == intsrc.mpc_dstapic) &&
795 (irq->mpc_dstirq == i))
796 break;
797 }
798
799 if (idx != mp_irq_entries) {
800 printk(KERN_DEBUG "ACPI: IRQ%d used by override.\n", i);
801 continue; /* IRQ already used */
802 }
803
804 intsrc.mpc_irqtype = mp_INT;
805 intsrc.mpc_srcbusirq = i; /* Identity mapped */
806 intsrc.mpc_dstirq = i;
807
808 Dprintk("Int: type %d, pol %d, trig %d, bus %d, irq %d, "
809 "%d-%d\n", intsrc.mpc_irqtype, intsrc.mpc_irqflag & 3,
810 (intsrc.mpc_irqflag >> 2) & 3, intsrc.mpc_srcbus,
811 intsrc.mpc_srcbusirq, intsrc.mpc_dstapic,
812 intsrc.mpc_dstirq);
813
814 mp_irqs[mp_irq_entries] = intsrc;
815 if (++mp_irq_entries == MAX_IRQ_SOURCES)
816 panic("Max # of irq sources exceeded!\n");
817 }
818 }
819
820 int mp_register_gsi(u32 gsi, int triggering, int polarity)
821 {
822 int ioapic = -1;
823 int ioapic_pin = 0;
824 int idx, bit = 0;
825
826 if (acpi_irq_model != ACPI_IRQ_MODEL_IOAPIC)
827 return gsi;
828
829 /* Don't set up the ACPI SCI because it's already set up */
830 if (acpi_gbl_FADT.sci_interrupt == gsi)
831 return gsi;
832
833 ioapic = mp_find_ioapic(gsi);
834 if (ioapic < 0) {
835 printk(KERN_WARNING "No IOAPIC for GSI %u\n", gsi);
836 return gsi;
837 }
838
839 ioapic_pin = gsi - mp_ioapic_routing[ioapic].gsi_base;
840
841 /*
842 * Avoid pin reprogramming. PRTs typically include entries
843 * with redundant pin->gsi mappings (but unique PCI devices);
844 * we only program the IOAPIC on the first.
845 */
846 bit = ioapic_pin % 32;
847 idx = (ioapic_pin < 32) ? 0 : (ioapic_pin / 32);
848 if (idx > 3) {
849 printk(KERN_ERR "Invalid reference to IOAPIC pin "
850 "%d-%d\n", mp_ioapic_routing[ioapic].apic_id,
851 ioapic_pin);
852 return gsi;
853 }
854 if ((1 << bit) & mp_ioapic_routing[ioapic].pin_programmed[idx]) {
855 Dprintk(KERN_DEBUG "Pin %d-%d already programmed\n",
856 mp_ioapic_routing[ioapic].apic_id, ioapic_pin);
857 return gsi;
858 }
859
860 mp_ioapic_routing[ioapic].pin_programmed[idx] |= (1 << bit);
861
862 io_apic_set_pci_routing(ioapic, ioapic_pin, gsi,
863 triggering == ACPI_EDGE_SENSITIVE ? 0 : 1,
864 polarity == ACPI_ACTIVE_HIGH ? 0 : 1);
865 return gsi;
866 }
867 #endif /* CONFIG_ACPI */
This page took 0.068462 seconds and 5 git commands to generate.