]> CyberLeo.Net >> Repos - FreeBSD/releng/7.2.git/blob - sys/amd64/acpica/madt.c
Create releng/7.2 from stable/7 in preparation for 7.2-RELEASE.
[FreeBSD/releng/7.2.git] / sys / amd64 / acpica / madt.c
1 /*-
2  * Copyright (c) 2003 John Baldwin <jhb@FreeBSD.org>
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  * 1. Redistributions of source code must retain the above copyright
9  *    notice, this list of conditions and the following disclaimer.
10  * 2. Redistributions in binary form must reproduce the above copyright
11  *    notice, this list of conditions and the following disclaimer in the
12  *    documentation and/or other materials provided with the distribution.
13  * 3. Neither the name of the author nor the names of any co-contributors
14  *    may be used to endorse or promote products derived from this software
15  *    without specific prior written permission.
16  *
17  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
18  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
21  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27  * SUCH DAMAGE.
28  */
29
30 #include <sys/cdefs.h>
31 __FBSDID("$FreeBSD$");
32
33 #include <sys/param.h>
34 #include <sys/systm.h>
35 #include <sys/bus.h>
36 #include <sys/kernel.h>
37 #include <sys/malloc.h>
38 #include <sys/smp.h>
39
40 #include <vm/vm.h>
41 #include <vm/vm_param.h>
42 #include <vm/pmap.h>
43
44 #include <machine/apicreg.h>
45 #include <machine/frame.h>
46 #include <machine/intr_machdep.h>
47 #include <machine/apicvar.h>
48 #include <machine/md_var.h>
49 #include <machine/specialreg.h>
50
51 #include <contrib/dev/acpica/acpi.h>
52 #include <contrib/dev/acpica/actables.h>
53 #include <dev/acpica/acpivar.h>
54 #include <dev/pci/pcivar.h>
55
56 typedef void madt_entry_handler(ACPI_SUBTABLE_HEADER *entry, void *arg);
57
58 /* These two arrays are indexed by APIC IDs. */
59 struct ioapic_info {
60         void *io_apic;
61         UINT32 io_vector;
62 } ioapics[MAX_APIC_ID + 1];
63
64 struct lapic_info {
65         u_int la_enabled:1;
66         u_int la_acpi_id:8;
67 } lapics[MAX_APIC_ID + 1];
68
69 static int madt_found_sci_override;
70 static ACPI_TABLE_MADT *madt;
71 static vm_paddr_t madt_physaddr;
72 static vm_offset_t madt_length;
73
74 MALLOC_DEFINE(M_MADT, "madt_table", "ACPI MADT Table Items");
75
76 static enum intr_polarity interrupt_polarity(UINT16 IntiFlags, UINT8 Source);
77 static enum intr_trigger interrupt_trigger(UINT16 IntiFlags, UINT8 Source);
78 static int      madt_find_cpu(u_int acpi_id, u_int *apic_id);
79 static int      madt_find_interrupt(int intr, void **apic, u_int *pin);
80 static void     *madt_map(vm_paddr_t pa, int offset, vm_offset_t length);
81 static void     *madt_map_table(vm_paddr_t pa, int offset, const char *sig);
82 static void     madt_parse_apics(ACPI_SUBTABLE_HEADER *entry, void *arg);
83 static void     madt_parse_interrupt_override(
84                     ACPI_MADT_INTERRUPT_OVERRIDE *intr);
85 static void     madt_parse_ints(ACPI_SUBTABLE_HEADER *entry,
86                     void *arg __unused);
87 static void     madt_parse_local_nmi(ACPI_MADT_LOCAL_APIC_NMI *nmi);
88 static void     madt_parse_nmi(ACPI_MADT_NMI_SOURCE *nmi);
89 static int      madt_probe(void);
90 static int      madt_probe_cpus(void);
91 static void     madt_probe_cpus_handler(ACPI_SUBTABLE_HEADER *entry,
92                     void *arg __unused);
93 static int      madt_probe_table(vm_paddr_t address);
94 static void     madt_register(void *dummy);
95 static int      madt_setup_local(void);
96 static int      madt_setup_io(void);
97 static void     madt_unmap(void *data, vm_offset_t length);
98 static void     madt_unmap_table(void *table);
99 static void     madt_walk_table(madt_entry_handler *handler, void *arg);
100
101 static struct apic_enumerator madt_enumerator = {
102         "MADT",
103         madt_probe,
104         madt_probe_cpus,
105         madt_setup_local,
106         madt_setup_io
107 };
108
109 /*
110  * Code to abuse the crashdump map to map in the tables for the early
111  * probe.  We cheat and make the following assumptions about how we
112  * use this KVA: pages 0 and 1 are used to map in the header of each
113  * table found via the RSDT or XSDT and pages 2 to n are used to map
114  * in the RSDT or XSDT.  We have to use 2 pages for the table headers
115  * in case a header spans a page boundary.  The offset is in pages;
116  * the length is in bytes.
117  */
118 static void *
119 madt_map(vm_paddr_t pa, int offset, vm_offset_t length)
120 {
121         vm_offset_t va, off;
122         void *data;
123
124         off = pa & PAGE_MASK;
125         length = roundup(length + off, PAGE_SIZE);
126         pa = pa & PG_FRAME;
127         va = (vm_offset_t)pmap_kenter_temporary(pa, offset) +
128             (offset * PAGE_SIZE);
129         data = (void *)(va + off);
130         length -= PAGE_SIZE;
131         while (length > 0) {
132                 va += PAGE_SIZE;
133                 pa += PAGE_SIZE;
134                 length -= PAGE_SIZE;
135                 pmap_kenter(va, pa);
136                 invlpg(va);
137         }
138         return (data);
139 }
140
141 static void
142 madt_unmap(void *data, vm_offset_t length)
143 {
144         vm_offset_t va, off;
145
146         va = (vm_offset_t)data;
147         off = va & PAGE_MASK;
148         length = roundup(length + off, PAGE_SIZE);
149         va &= ~PAGE_MASK;
150         while (length > 0) {
151                 pmap_kremove(va);
152                 invlpg(va);
153                 va += PAGE_SIZE;
154                 length -= PAGE_SIZE;
155         }
156 }
157
158 static void *
159 madt_map_table(vm_paddr_t pa, int offset, const char *sig)
160 {
161         ACPI_TABLE_HEADER *header;
162         vm_offset_t length;
163         void *table;
164
165         header = madt_map(pa, offset, sizeof(ACPI_TABLE_HEADER));
166         if (strncmp(header->Signature, sig, ACPI_NAME_SIZE) != 0) {
167                 madt_unmap(header, sizeof(ACPI_TABLE_HEADER));
168                 return (NULL);
169         }
170         length = header->Length;
171         madt_unmap(header, sizeof(ACPI_TABLE_HEADER));
172         table = madt_map(pa, offset, length);
173         if (ACPI_FAILURE(AcpiTbChecksum(table, length))) {
174                 if (bootverbose)
175                         printf("MADT: Failed checksum for table %s\n", sig);
176                 madt_unmap(table, length);
177                 return (NULL);
178         }
179         return (table);
180 }
181
182 static void
183 madt_unmap_table(void *table)
184 {
185         ACPI_TABLE_HEADER *header;
186
187         header = (ACPI_TABLE_HEADER *)table;
188         madt_unmap(table, header->Length);
189 }
190
191 /*
192  * Look for an ACPI Multiple APIC Description Table ("APIC")
193  */
194 static int
195 madt_probe(void)
196 {
197         ACPI_PHYSICAL_ADDRESS rsdp_ptr;
198         ACPI_TABLE_RSDP *rsdp;
199         ACPI_TABLE_RSDT *rsdt;
200         ACPI_TABLE_XSDT *xsdt;
201         int i, count;
202
203         if (resource_disabled("acpi", 0))
204                 return (ENXIO);
205
206         /*
207          * Map in the RSDP.  Since ACPI uses AcpiOsMapMemory() which in turn
208          * calls pmap_mapbios() to find the RSDP, we assume that we can use
209          * pmap_mapbios() to map the RSDP.
210          */
211         if ((rsdp_ptr = AcpiOsGetRootPointer()) == 0)
212                 return (ENXIO);
213         rsdp = pmap_mapbios(rsdp_ptr, sizeof(ACPI_TABLE_RSDP));
214         if (rsdp == NULL) {
215                 if (bootverbose)
216                         printf("MADT: Failed to map RSDP\n");
217                 return (ENXIO);
218         }
219
220         /*
221          * For ACPI >= 2.0, use the XSDT if it is available.
222          * Otherwise, use the RSDT.  We map the XSDT or RSDT at page 1
223          * in the crashdump area.  Page 0 is used to map in the
224          * headers of candidate ACPI tables.
225          */
226         if (rsdp->Revision >= 2 && rsdp->XsdtPhysicalAddress != 0) {
227                 /*
228                  * AcpiOsGetRootPointer only verifies the checksum for
229                  * the version 1.0 portion of the RSDP.  Version 2.0 has
230                  * an additional checksum that we verify first.
231                  */
232                 if (AcpiTbChecksum((UINT8 *)rsdp, ACPI_RSDP_XCHECKSUM_LENGTH)) {
233                         if (bootverbose)
234                                 printf("MADT: RSDP failed extended checksum\n");
235                         return (ENXIO);
236                 }
237                 xsdt = madt_map_table(rsdp->XsdtPhysicalAddress, 2,
238                     ACPI_SIG_XSDT);
239                 if (xsdt == NULL) {
240                         if (bootverbose)
241                                 printf("MADT: Failed to map XSDT\n");
242                         return (ENXIO);
243                 }
244                 count = (xsdt->Header.Length - sizeof(ACPI_TABLE_HEADER)) /
245                     sizeof(UINT64);
246                 for (i = 0; i < count; i++)
247                         if (madt_probe_table(xsdt->TableOffsetEntry[i]))
248                                 break;
249                 madt_unmap_table(xsdt);
250         } else {
251                 rsdt = madt_map_table(rsdp->RsdtPhysicalAddress, 2,
252                     ACPI_SIG_RSDT);
253                 if (rsdt == NULL) {
254                         if (bootverbose)
255                                 printf("MADT: Failed to map RSDT\n");
256                         return (ENXIO);
257                 }
258                 count = (rsdt->Header.Length - sizeof(ACPI_TABLE_HEADER)) /
259                     sizeof(UINT32);
260                 for (i = 0; i < count; i++)
261                         if (madt_probe_table(rsdt->TableOffsetEntry[i]))
262                                 break;
263                 madt_unmap_table(rsdt);
264         }
265         pmap_unmapbios((vm_offset_t)rsdp, sizeof(ACPI_TABLE_RSDP));
266         if (madt_physaddr == 0) {
267                 if (bootverbose)
268                         printf("MADT: No MADT table found\n");
269                 return (ENXIO);
270         }
271         if (bootverbose)
272                 printf("MADT: Found table at 0x%jx\n",
273                     (uintmax_t)madt_physaddr);
274
275         /*
276          * Verify that we can map the full table and that its checksum is
277          * correct, etc.
278          */
279         madt = madt_map_table(madt_physaddr, 0, ACPI_SIG_MADT);
280         if (madt == NULL)
281                 return (ENXIO);
282         madt_unmap_table(madt);
283         madt = NULL;
284
285         return (0);
286 }
287
288 /*
289  * See if a given ACPI table is the MADT.
290  */
291 static int
292 madt_probe_table(vm_paddr_t address)
293 {
294         ACPI_TABLE_HEADER *table;
295
296         table = madt_map(address, 0, sizeof(ACPI_TABLE_HEADER));
297         if (table == NULL) {
298                 if (bootverbose)
299                         printf("MADT: Failed to map table at 0x%jx\n",
300                             (uintmax_t)address);
301                 return (0);
302         }
303         if (bootverbose)
304                 printf("Table '%.4s' at 0x%jx\n", table->Signature,
305                     (uintmax_t)address);
306
307         if (strncmp(table->Signature, ACPI_SIG_MADT, ACPI_NAME_SIZE) != 0) {
308                 madt_unmap(table, sizeof(ACPI_TABLE_HEADER));
309                 return (0);
310         }
311         madt_physaddr = address;
312         madt_length = table->Length;
313         madt_unmap(table, sizeof(ACPI_TABLE_HEADER));
314         return (1);
315 }
316
317 /*
318  * Run through the MP table enumerating CPUs.
319  */
320 static int
321 madt_probe_cpus(void)
322 {
323
324         madt = madt_map_table(madt_physaddr, 0, ACPI_SIG_MADT);
325         KASSERT(madt != NULL, ("Unable to re-map MADT"));
326         madt_walk_table(madt_probe_cpus_handler, NULL);
327         madt_unmap_table(madt);
328         madt = NULL;
329         return (0);
330 }
331
332 /*
333  * Initialize the local APIC on the BSP.
334  */
335 static int
336 madt_setup_local(void)
337 {
338
339         madt = pmap_mapbios(madt_physaddr, madt_length);
340         lapic_init(madt->Address);
341         printf("ACPI APIC Table: <%.*s %.*s>\n",
342             (int)sizeof(madt->Header.OemId), madt->Header.OemId,
343             (int)sizeof(madt->Header.OemTableId), madt->Header.OemTableId);
344
345         /*
346          * We ignore 64-bit local APIC override entries.  Should we
347          * perhaps emit a warning here if we find one?
348          */
349         return (0);
350 }
351
352 /*
353  * Enumerate I/O APICs and setup interrupt sources.
354  */
355 static int
356 madt_setup_io(void)
357 {
358         void *ioapic;
359         u_int pin;
360         int i;
361
362         /* Try to initialize ACPI so that we can access the FADT. */
363         i = acpi_Startup();
364         if (ACPI_FAILURE(i)) {
365                 printf("MADT: ACPI Startup failed with %s\n",
366                     AcpiFormatException(i));
367                 printf("Try disabling either ACPI or apic support.\n");
368                 panic("Using MADT but ACPI doesn't work");
369         }
370                     
371         /* First, we run through adding I/O APIC's. */
372         madt_walk_table(madt_parse_apics, NULL);
373
374         /* Second, we run through the table tweaking interrupt sources. */
375         madt_walk_table(madt_parse_ints, NULL);
376
377         /*
378          * If there was not an explicit override entry for the SCI,
379          * force it to use level trigger and active-low polarity.
380          */
381         if (!madt_found_sci_override) {
382                 if (madt_find_interrupt(AcpiGbl_FADT.SciInterrupt, &ioapic,
383                     &pin) != 0)
384                         printf("MADT: Could not find APIC for SCI IRQ %u\n",
385                             AcpiGbl_FADT.SciInterrupt);
386                 else {
387                         printf(
388         "MADT: Forcing active-low polarity and level trigger for SCI\n");
389                         ioapic_set_polarity(ioapic, pin, INTR_POLARITY_LOW);
390                         ioapic_set_triggermode(ioapic, pin, INTR_TRIGGER_LEVEL);
391                 }
392         }
393
394         /* Third, we register all the I/O APIC's. */
395         for (i = 0; i <= MAX_APIC_ID; i++)
396                 if (ioapics[i].io_apic != NULL)
397                         ioapic_register(ioapics[i].io_apic);
398
399         /* Finally, we throw the switch to enable the I/O APIC's. */
400         acpi_SetDefaultIntrModel(ACPI_INTR_APIC);
401
402         return (0);
403 }
404
405 static void
406 madt_register(void *dummy __unused)
407 {
408
409         apic_register_enumerator(&madt_enumerator);
410 }
411 SYSINIT(madt_register, SI_SUB_TUNABLES - 1, SI_ORDER_FIRST,
412     madt_register, NULL);
413
414 /*
415  * Call the handler routine for each entry in the MADT table.
416  */
417 static void
418 madt_walk_table(madt_entry_handler *handler, void *arg)
419 {
420         ACPI_SUBTABLE_HEADER *entry;
421         u_char *p, *end;
422
423         end = (u_char *)(madt) + madt->Header.Length;
424         for (p = (u_char *)(madt + 1); p < end; ) {
425                 entry = (ACPI_SUBTABLE_HEADER *)p;
426                 handler(entry, arg);
427                 p += entry->Length;
428         }
429 }
430
431 static void
432 madt_probe_cpus_handler(ACPI_SUBTABLE_HEADER *entry, void *arg)
433 {
434         ACPI_MADT_LOCAL_APIC *proc;
435         struct lapic_info *la;
436
437         switch (entry->Type) {
438         case ACPI_MADT_TYPE_LOCAL_APIC:
439                 /*
440                  * The MADT does not include a BSP flag, so we have to
441                  * let the MP code figure out which CPU is the BSP on
442                  * its own.
443                  */
444                 proc = (ACPI_MADT_LOCAL_APIC *)entry;
445                 if (bootverbose)
446                         printf("MADT: Found CPU APIC ID %u ACPI ID %u: %s\n",
447                             proc->Id, proc->ProcessorId,
448                             (proc->LapicFlags & ACPI_MADT_ENABLED) ?
449                             "enabled" : "disabled");
450                 if (!(proc->LapicFlags & ACPI_MADT_ENABLED))
451                         break;
452                 if (proc->Id > MAX_APIC_ID)
453                         panic("%s: CPU ID %u too high", __func__, proc->Id);
454                 la = &lapics[proc->Id];
455                 KASSERT(la->la_enabled == 0,
456                     ("Duplicate local APIC ID %u", proc->Id));
457                 la->la_enabled = 1;
458                 la->la_acpi_id = proc->ProcessorId;
459                 lapic_create(proc->Id, 0);
460                 break;
461         }
462 }
463
464
465 /*
466  * Add an I/O APIC from an entry in the table.
467  */
468 static void
469 madt_parse_apics(ACPI_SUBTABLE_HEADER *entry, void *arg __unused)
470 {
471         ACPI_MADT_IO_APIC *apic;
472
473         switch (entry->Type) {
474         case ACPI_MADT_TYPE_IO_APIC:
475                 apic = (ACPI_MADT_IO_APIC *)entry;
476                 if (bootverbose)
477                         printf(
478                             "MADT: Found IO APIC ID %u, Interrupt %u at %p\n",
479                             apic->Id, apic->GlobalIrqBase,
480                             (void *)(uintptr_t)apic->Address);
481                 if (apic->Id > MAX_APIC_ID)
482                         panic("%s: I/O APIC ID %u too high", __func__,
483                             apic->Id);
484                 if (ioapics[apic->Id].io_apic != NULL)
485                         panic("%s: Double APIC ID %u", __func__, apic->Id);
486                 if (apic->GlobalIrqBase >= FIRST_MSI_INT) {
487                         printf("MADT: Ignoring bogus I/O APIC ID %u", apic->Id);
488                         break;
489                 }
490                 ioapics[apic->Id].io_apic = ioapic_create(apic->Address,
491                     apic->Id, apic->GlobalIrqBase);
492                 ioapics[apic->Id].io_vector = apic->GlobalIrqBase;
493                 break;
494         default:
495                 break;
496         }
497 }
498
499 /*
500  * Determine properties of an interrupt source.  Note that for ACPI these
501  * functions are only used for ISA interrupts, so we assume ISA bus values
502  * (Active Hi, Edge Triggered) for conforming values except for the ACPI
503  * SCI for which we use Active Lo, Level Triggered.
504  */
505 static enum intr_polarity
506 interrupt_polarity(UINT16 IntiFlags, UINT8 Source)
507 {
508
509         switch (IntiFlags & ACPI_MADT_POLARITY_MASK) {
510         case ACPI_MADT_POLARITY_CONFORMS:
511                 if (Source == AcpiGbl_FADT.SciInterrupt)
512                         return (INTR_POLARITY_LOW);
513                 else
514                         return (INTR_POLARITY_HIGH);
515         case ACPI_MADT_POLARITY_ACTIVE_HIGH:
516                 return (INTR_POLARITY_HIGH);
517         case ACPI_MADT_POLARITY_ACTIVE_LOW:
518                 return (INTR_POLARITY_LOW);
519         default:
520                 panic("Bogus Interrupt Polarity");
521         }
522 }
523
524 static enum intr_trigger
525 interrupt_trigger(UINT16 IntiFlags, UINT8 Source)
526 {
527
528         switch (IntiFlags & ACPI_MADT_TRIGGER_MASK) {
529         case ACPI_MADT_TRIGGER_CONFORMS:
530                 if (Source == AcpiGbl_FADT.SciInterrupt)
531                         return (INTR_TRIGGER_LEVEL);
532                 else
533                         return (INTR_TRIGGER_EDGE);
534         case ACPI_MADT_TRIGGER_EDGE:
535                 return (INTR_TRIGGER_EDGE);
536         case ACPI_MADT_TRIGGER_LEVEL:
537                 return (INTR_TRIGGER_LEVEL);
538         default:
539                 panic("Bogus Interrupt Trigger Mode");
540         }
541 }
542
543 /*
544  * Find the local APIC ID associated with a given ACPI Processor ID.
545  */
546 static int
547 madt_find_cpu(u_int acpi_id, u_int *apic_id)
548 {
549         int i;
550
551         for (i = 0; i <= MAX_APIC_ID; i++) {
552                 if (!lapics[i].la_enabled)
553                         continue;
554                 if (lapics[i].la_acpi_id != acpi_id)
555                         continue;
556                 *apic_id = i;
557                 return (0);
558         }
559         return (ENOENT);
560 }
561
562 /*
563  * Find the IO APIC and pin on that APIC associated with a given global
564  * interrupt.
565  */
566 static int
567 madt_find_interrupt(int intr, void **apic, u_int *pin)
568 {
569         int i, best;
570
571         best = -1;
572         for (i = 0; i <= MAX_APIC_ID; i++) {
573                 if (ioapics[i].io_apic == NULL ||
574                     ioapics[i].io_vector > intr)
575                         continue;
576                 if (best == -1 ||
577                     ioapics[best].io_vector < ioapics[i].io_vector)
578                         best = i;
579         }
580         if (best == -1)
581                 return (ENOENT);
582         *apic = ioapics[best].io_apic;
583         *pin = intr - ioapics[best].io_vector;
584         if (*pin > 32)
585                 printf("WARNING: Found intpin of %u for vector %d\n", *pin,
586                     intr);
587         return (0);
588 }
589
590 /*
591  * Parse an interrupt source override for an ISA interrupt.
592  */
593 static void
594 madt_parse_interrupt_override(ACPI_MADT_INTERRUPT_OVERRIDE *intr)
595 {
596         void *new_ioapic, *old_ioapic;
597         u_int new_pin, old_pin;
598         enum intr_trigger trig;
599         enum intr_polarity pol;
600         char buf[64];
601
602         if (acpi_quirks & ACPI_Q_MADT_IRQ0 && intr->SourceIrq == 0 &&
603             intr->GlobalIrq == 2) {
604                 if (bootverbose)
605                         printf("MADT: Skipping timer override\n");
606                 return;
607         }
608         if (bootverbose)
609                 printf("MADT: Interrupt override: source %u, irq %u\n",
610                     intr->SourceIrq, intr->GlobalIrq);
611         KASSERT(intr->Bus == 0, ("bus for interrupt overrides must be zero"));
612         if (madt_find_interrupt(intr->GlobalIrq, &new_ioapic, &new_pin) != 0) {
613                 printf("MADT: Could not find APIC for vector %u (IRQ %u)\n",
614                     intr->GlobalIrq, intr->SourceIrq);
615                 return;
616         }
617
618         /*
619          * Lookup the appropriate trigger and polarity modes for this
620          * entry.
621          */
622         trig = interrupt_trigger(intr->IntiFlags, intr->SourceIrq);
623         pol = interrupt_polarity(intr->IntiFlags, intr->SourceIrq);
624         
625         /*
626          * If the SCI is identity mapped but has edge trigger and
627          * active-hi polarity or the force_sci_lo tunable is set,
628          * force it to use level/lo.
629          */
630         if (intr->SourceIrq == AcpiGbl_FADT.SciInterrupt) {
631                 madt_found_sci_override = 1;
632                 if (getenv_string("hw.acpi.sci.trigger", buf, sizeof(buf))) {
633                         if (tolower(buf[0]) == 'e')
634                                 trig = INTR_TRIGGER_EDGE;
635                         else if (tolower(buf[0]) == 'l')
636                                 trig = INTR_TRIGGER_LEVEL;
637                         else
638                                 panic(
639                                 "Invalid trigger %s: must be 'edge' or 'level'",
640                                     buf);
641                         printf("MADT: Forcing SCI to %s trigger\n",
642                             trig == INTR_TRIGGER_EDGE ? "edge" : "level");
643                 }
644                 if (getenv_string("hw.acpi.sci.polarity", buf, sizeof(buf))) {
645                         if (tolower(buf[0]) == 'h')
646                                 pol = INTR_POLARITY_HIGH;
647                         else if (tolower(buf[0]) == 'l')
648                                 pol = INTR_POLARITY_LOW;
649                         else
650                                 panic(
651                                 "Invalid polarity %s: must be 'high' or 'low'",
652                                     buf);
653                         printf("MADT: Forcing SCI to active %s polarity\n",
654                             pol == INTR_POLARITY_HIGH ? "high" : "low");
655                 }
656         }
657
658         /* Remap the IRQ if it is mapped to a different interrupt vector. */
659         if (intr->SourceIrq != intr->GlobalIrq) {
660                 /*
661                  * If the SCI is remapped to a non-ISA global interrupt,
662                  * then override the vector we use to setup and allocate
663                  * the interrupt.
664                  */
665                 if (intr->GlobalIrq > 15 &&
666                     intr->SourceIrq == AcpiGbl_FADT.SciInterrupt)
667                         acpi_OverrideInterruptLevel(intr->GlobalIrq);
668                 else
669                         ioapic_remap_vector(new_ioapic, new_pin,
670                             intr->SourceIrq);
671                 if (madt_find_interrupt(intr->SourceIrq, &old_ioapic,
672                     &old_pin) != 0)
673                         printf("MADT: Could not find APIC for source IRQ %u\n",
674                             intr->SourceIrq);
675                 else if (ioapic_get_vector(old_ioapic, old_pin) ==
676                     intr->SourceIrq)
677                         ioapic_disable_pin(old_ioapic, old_pin);
678         }
679
680         /* Program the polarity and trigger mode. */
681         ioapic_set_triggermode(new_ioapic, new_pin, trig);
682         ioapic_set_polarity(new_ioapic, new_pin, pol);
683 }
684
685 /*
686  * Parse an entry for an NMI routed to an IO APIC.
687  */
688 static void
689 madt_parse_nmi(ACPI_MADT_NMI_SOURCE *nmi)
690 {
691         void *ioapic;
692         u_int pin;
693
694         if (madt_find_interrupt(nmi->GlobalIrq, &ioapic, &pin) != 0) {
695                 printf("MADT: Could not find APIC for vector %u\n",
696                     nmi->GlobalIrq);
697                 return;
698         }
699
700         ioapic_set_nmi(ioapic, pin);
701         if (!(nmi->IntiFlags & ACPI_MADT_TRIGGER_CONFORMS))
702                 ioapic_set_triggermode(ioapic, pin,
703                     interrupt_trigger(nmi->IntiFlags, 0));
704         if (!(nmi->IntiFlags & ACPI_MADT_TRIGGER_CONFORMS))
705                 ioapic_set_polarity(ioapic, pin,
706                     interrupt_polarity(nmi->IntiFlags, 0));
707 }
708
709 /*
710  * Parse an entry for an NMI routed to a local APIC LVT pin.
711  */
712 static void
713 madt_parse_local_nmi(ACPI_MADT_LOCAL_APIC_NMI *nmi)
714 {
715         u_int apic_id, pin;
716
717         if (nmi->ProcessorId == 0xff)
718                 apic_id = APIC_ID_ALL;
719         else if (madt_find_cpu(nmi->ProcessorId, &apic_id) != 0) {
720                 if (bootverbose)
721                         printf("MADT: Ignoring local NMI routed to "
722                             "ACPI CPU %u\n", nmi->ProcessorId);
723                 return;
724         }
725         if (nmi->Lint == 0)
726                 pin = LVT_LINT0;
727         else
728                 pin = LVT_LINT1;
729         lapic_set_lvt_mode(apic_id, pin, APIC_LVT_DM_NMI);
730         if (!(nmi->IntiFlags & ACPI_MADT_TRIGGER_CONFORMS))
731                 lapic_set_lvt_triggermode(apic_id, pin,
732                     interrupt_trigger(nmi->IntiFlags, 0));
733         if (!(nmi->IntiFlags & ACPI_MADT_POLARITY_CONFORMS))
734                 lapic_set_lvt_polarity(apic_id, pin,
735                     interrupt_polarity(nmi->IntiFlags, 0));
736 }
737
738 /*
739  * Parse interrupt entries.
740  */
741 static void
742 madt_parse_ints(ACPI_SUBTABLE_HEADER *entry, void *arg __unused)
743 {
744
745         switch (entry->Type) {
746         case ACPI_MADT_TYPE_INTERRUPT_OVERRIDE:
747                 madt_parse_interrupt_override(
748                         (ACPI_MADT_INTERRUPT_OVERRIDE *)entry);
749                 break;
750         case ACPI_MADT_TYPE_NMI_SOURCE:
751                 madt_parse_nmi((ACPI_MADT_NMI_SOURCE *)entry);
752                 break;
753         case ACPI_MADT_TYPE_LOCAL_APIC_NMI:
754                 madt_parse_local_nmi((ACPI_MADT_LOCAL_APIC_NMI *)entry);
755                 break;
756         }
757 }
758
759 /*
760  * Setup per-CPU ACPI IDs.
761  */
762 static void
763 madt_set_ids(void *dummy)
764 {
765         struct lapic_info *la;
766         struct pcpu *pc;
767         u_int i;
768
769         if (madt == NULL)
770                 return;
771         for (i = 0; i < MAXCPU; i++) {
772                 if (CPU_ABSENT(i))
773                         continue;
774                 pc = pcpu_find(i);
775                 KASSERT(pc != NULL, ("no pcpu data for CPU %u", i));
776                 la = &lapics[pc->pc_apic_id];
777                 if (!la->la_enabled)
778                         panic("APIC: CPU with APIC ID %u is not enabled",
779                             pc->pc_apic_id);
780                 pc->pc_acpi_id = la->la_acpi_id;
781                 if (bootverbose)
782                         printf("APIC: CPU %u has ACPI ID %u\n", i,
783                             la->la_acpi_id);
784         }
785 }
786 SYSINIT(madt_set_ids, SI_SUB_CPU, SI_ORDER_ANY, madt_set_ids, NULL);