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 * 14 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND 15 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 16 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 17 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE 18 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 19 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 20 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 21 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 22 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 23 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 24 * SUCH DAMAGE. 25 */ 26 27 #include <sys/cdefs.h> 28 __FBSDID("$FreeBSD$"); 29 30 #include <sys/param.h> 31 #include <sys/systm.h> 32 #include <sys/bus.h> 33 #include <sys/kernel.h> 34 #include <sys/limits.h> 35 #include <sys/malloc.h> 36 #include <sys/smp.h> 37 #include <vm/vm.h> 38 #include <vm/pmap.h> 39 40 #include <x86/apicreg.h> 41 #include <machine/intr_machdep.h> 42 #include <x86/apicvar.h> 43 #include <machine/md_var.h> 44 #include <x86/vmware.h> 45 46 #include <contrib/dev/acpica/include/acpi.h> 47 #include <contrib/dev/acpica/include/actables.h> 48 49 #include <dev/acpica/acpivar.h> 50 #include <dev/pci/pcivar.h> 51 52 /* These two arrays are indexed by APIC IDs. */ 53 static struct { 54 void *io_apic; 55 UINT32 io_vector; 56 } *ioapics; 57 58 static struct lapic_info { 59 u_int la_enabled; 60 u_int la_acpi_id; 61 } lapics[MAX_APIC_ID + 1]; 62 63 int madt_found_sci_override; 64 static ACPI_TABLE_MADT *madt; 65 static vm_paddr_t madt_physaddr; 66 static vm_offset_t madt_length; 67 68 static MALLOC_DEFINE(M_MADT, "madt_table", "ACPI MADT Table Items"); 69 70 static enum intr_polarity interrupt_polarity(UINT16 IntiFlags, UINT8 Source); 71 static enum intr_trigger interrupt_trigger(UINT16 IntiFlags, UINT8 Source); 72 static int madt_find_cpu(u_int acpi_id, u_int *apic_id); 73 static int madt_find_interrupt(int intr, void **apic, u_int *pin); 74 static void madt_parse_apics(ACPI_SUBTABLE_HEADER *entry, void *arg); 75 static void madt_parse_interrupt_override( 76 ACPI_MADT_INTERRUPT_OVERRIDE *intr); 77 static void madt_parse_ints(ACPI_SUBTABLE_HEADER *entry, 78 void *arg __unused); 79 static void madt_parse_local_nmi(ACPI_MADT_LOCAL_APIC_NMI *nmi); 80 static void madt_parse_nmi(ACPI_MADT_NMI_SOURCE *nmi); 81 static int madt_probe(void); 82 static int madt_probe_cpus(void); 83 static void madt_probe_cpus_handler(ACPI_SUBTABLE_HEADER *entry, 84 void *arg __unused); 85 static void madt_register(void *dummy); 86 static int madt_setup_local(void); 87 static int madt_setup_io(void); 88 static void madt_walk_table(acpi_subtable_handler *handler, void *arg); 89 90 static struct apic_enumerator madt_enumerator = { 91 "MADT", 92 madt_probe, 93 madt_probe_cpus, 94 madt_setup_local, 95 madt_setup_io 96 }; 97 98 /* 99 * Look for an ACPI Multiple APIC Description Table ("APIC") 100 */ 101 static int 102 madt_probe(void) 103 { 104 105 madt_physaddr = acpi_find_table(ACPI_SIG_MADT); 106 if (madt_physaddr == 0) 107 return (ENXIO); 108 return (-50); 109 } 110 111 /* 112 * Run through the MP table enumerating CPUs. 113 */ 114 static int 115 madt_probe_cpus(void) 116 { 117 118 madt = acpi_map_table(madt_physaddr, ACPI_SIG_MADT); 119 madt_length = madt->Header.Length; 120 KASSERT(madt != NULL, ("Unable to re-map MADT")); 121 madt_walk_table(madt_probe_cpus_handler, NULL); 122 acpi_unmap_table(madt); 123 madt = NULL; 124 return (0); 125 } 126 127 /* 128 * Initialize the local APIC on the BSP. 129 */ 130 static int 131 madt_setup_local(void) 132 { 133 ACPI_TABLE_DMAR *dmartbl; 134 vm_paddr_t dmartbl_physaddr; 135 const char *reason; 136 char *hw_vendor; 137 u_int p[4]; 138 139 madt = pmap_mapbios(madt_physaddr, madt_length); 140 if ((cpu_feature2 & CPUID2_X2APIC) != 0) { 141 x2apic_mode = 1; 142 reason = NULL; 143 144 /* 145 * Automatically detect several configurations where 146 * x2APIC mode is known to cause troubles. User can 147 * override the setting with hw.x2apic_enable tunable. 148 */ 149 dmartbl_physaddr = acpi_find_table(ACPI_SIG_DMAR); 150 if (dmartbl_physaddr != 0) { 151 dmartbl = acpi_map_table(dmartbl_physaddr, 152 ACPI_SIG_DMAR); 153 if ((dmartbl->Flags & ACPI_DMAR_X2APIC_OPT_OUT) != 0) { 154 x2apic_mode = 0; 155 reason = "by DMAR table"; 156 } 157 acpi_unmap_table(dmartbl); 158 } 159 if (vm_guest == VM_GUEST_VMWARE) { 160 vmware_hvcall(VMW_HVCMD_GETVCPU_INFO, p); 161 if ((p[0] & VMW_VCPUINFO_VCPU_RESERVED) != 0 || 162 (p[0] & VMW_VCPUINFO_LEGACY_X2APIC) == 0) { 163 x2apic_mode = 0; 164 reason = "inside VMWare without intr redirection"; 165 } 166 } else if (vm_guest == VM_GUEST_XEN) { 167 x2apic_mode = 0; 168 reason = "due to running under XEN"; 169 } else if (vm_guest == VM_GUEST_NO) { 170 hw_vendor = kern_getenv("smbios.planar.maker"); 171 /* 172 * It seems that some Lenovo SandyBridge-based 173 * notebook BIOSes have a bug which prevents 174 * booting AP in x2APIC mode. Since the only 175 * way to detect mobile CPU is to check 176 * northbridge pci id, which cannot be done 177 * that early, disable x2APIC for all Lenovo 178 * SandyBridge machines. 179 */ 180 if (hw_vendor != NULL && 181 !strcmp(hw_vendor, "LENOVO") && 182 CPUID_TO_FAMILY(cpu_id) == 0x6 && 183 CPUID_TO_MODEL(cpu_id) == 0x2a) { 184 x2apic_mode = 0; 185 reason = "for a suspected Lenovo SandyBridge BIOS bug"; 186 } 187 freeenv(hw_vendor); 188 } 189 TUNABLE_INT_FETCH("hw.x2apic_enable", &x2apic_mode); 190 if (!x2apic_mode && reason != NULL && bootverbose) 191 printf("x2APIC available but disabled %s\n", reason); 192 } 193 194 lapic_init(madt->Address); 195 printf("ACPI APIC Table: <%.*s %.*s>\n", 196 (int)sizeof(madt->Header.OemId), madt->Header.OemId, 197 (int)sizeof(madt->Header.OemTableId), madt->Header.OemTableId); 198 199 /* 200 * We ignore 64-bit local APIC override entries. Should we 201 * perhaps emit a warning here if we find one? 202 */ 203 return (0); 204 } 205 206 /* 207 * Enumerate I/O APICs and setup interrupt sources. 208 */ 209 static int 210 madt_setup_io(void) 211 { 212 void *ioapic; 213 u_int pin; 214 int i; 215 216 /* Try to initialize ACPI so that we can access the FADT. */ 217 i = acpi_Startup(); 218 if (ACPI_FAILURE(i)) { 219 printf("MADT: ACPI Startup failed with %s\n", 220 AcpiFormatException(i)); 221 printf("Try disabling either ACPI or apic support.\n"); 222 panic("Using MADT but ACPI doesn't work"); 223 } 224 225 ioapics = malloc(sizeof(*ioapics) * (MAX_APIC_ID + 1), M_MADT, 226 M_WAITOK | M_ZERO); 227 228 /* First, we run through adding I/O APIC's. */ 229 madt_walk_table(madt_parse_apics, NULL); 230 231 /* Second, we run through the table tweaking interrupt sources. */ 232 madt_walk_table(madt_parse_ints, NULL); 233 234 /* 235 * If there was not an explicit override entry for the SCI, 236 * force it to use level trigger and active-low polarity. 237 */ 238 if (!madt_found_sci_override) { 239 if (madt_find_interrupt(AcpiGbl_FADT.SciInterrupt, &ioapic, 240 &pin) != 0) 241 printf("MADT: Could not find APIC for SCI IRQ %u\n", 242 AcpiGbl_FADT.SciInterrupt); 243 else { 244 printf( 245 "MADT: Forcing active-low polarity and level trigger for SCI\n"); 246 ioapic_set_polarity(ioapic, pin, INTR_POLARITY_LOW); 247 ioapic_set_triggermode(ioapic, pin, INTR_TRIGGER_LEVEL); 248 } 249 } 250 251 /* Third, we register all the I/O APIC's. */ 252 for (i = 0; i <= MAX_APIC_ID; i++) 253 if (ioapics[i].io_apic != NULL) 254 ioapic_register(ioapics[i].io_apic); 255 256 /* Finally, we throw the switch to enable the I/O APIC's. */ 257 acpi_SetDefaultIntrModel(ACPI_INTR_APIC); 258 259 free(ioapics, M_MADT); 260 ioapics = NULL; 261 262 return (0); 263 } 264 265 static void 266 madt_register(void *dummy __unused) 267 { 268 269 apic_register_enumerator(&madt_enumerator); 270 } 271 SYSINIT(madt_register, SI_SUB_TUNABLES - 1, SI_ORDER_FIRST, madt_register, NULL); 272 273 /* 274 * Call the handler routine for each entry in the MADT table. 275 */ 276 static void 277 madt_walk_table(acpi_subtable_handler *handler, void *arg) 278 { 279 280 acpi_walk_subtables(madt + 1, (char *)madt + madt->Header.Length, 281 handler, arg); 282 } 283 284 static void 285 madt_add_cpu(u_int acpi_id, u_int apic_id, u_int flags) 286 { 287 struct lapic_info *la; 288 289 /* 290 * The MADT does not include a BSP flag, so we have to let the 291 * MP code figure out which CPU is the BSP on its own. 292 */ 293 if (bootverbose) 294 printf("MADT: Found CPU APIC ID %u ACPI ID %u: %s\n", 295 apic_id, acpi_id, flags & ACPI_MADT_ENABLED ? 296 "enabled" : "disabled"); 297 if (!(flags & ACPI_MADT_ENABLED)) 298 return; 299 if (apic_id > MAX_APIC_ID) { 300 printf("MADT: Ignoring local APIC ID %u (too high)\n", 301 apic_id); 302 return; 303 } 304 305 la = &lapics[apic_id]; 306 KASSERT(la->la_enabled == 0, ("Duplicate local APIC ID %u", apic_id)); 307 la->la_enabled = 1; 308 la->la_acpi_id = acpi_id; 309 lapic_create(apic_id, 0); 310 } 311 312 static void 313 madt_probe_cpus_handler(ACPI_SUBTABLE_HEADER *entry, void *arg) 314 { 315 ACPI_MADT_LOCAL_APIC *proc; 316 ACPI_MADT_LOCAL_X2APIC *x2apic; 317 318 switch (entry->Type) { 319 case ACPI_MADT_TYPE_LOCAL_APIC: 320 proc = (ACPI_MADT_LOCAL_APIC *)entry; 321 madt_add_cpu(proc->ProcessorId, proc->Id, proc->LapicFlags); 322 break; 323 case ACPI_MADT_TYPE_LOCAL_X2APIC: 324 x2apic = (ACPI_MADT_LOCAL_X2APIC *)entry; 325 madt_add_cpu(x2apic->Uid, x2apic->LocalApicId, 326 x2apic->LapicFlags); 327 break; 328 } 329 } 330 331 332 /* 333 * Add an I/O APIC from an entry in the table. 334 */ 335 static void 336 madt_parse_apics(ACPI_SUBTABLE_HEADER *entry, void *arg __unused) 337 { 338 ACPI_MADT_IO_APIC *apic; 339 340 switch (entry->Type) { 341 case ACPI_MADT_TYPE_IO_APIC: 342 apic = (ACPI_MADT_IO_APIC *)entry; 343 if (bootverbose) 344 printf( 345 "MADT: Found IO APIC ID %u, Interrupt %u at %p\n", 346 apic->Id, apic->GlobalIrqBase, 347 (void *)(uintptr_t)apic->Address); 348 if (apic->Id > MAX_APIC_ID) 349 panic("%s: I/O APIC ID %u too high", __func__, 350 apic->Id); 351 if (ioapics[apic->Id].io_apic != NULL) 352 panic("%s: Double APIC ID %u", __func__, apic->Id); 353 if (apic->GlobalIrqBase >= FIRST_MSI_INT) { 354 printf("MADT: Ignoring bogus I/O APIC ID %u", apic->Id); 355 break; 356 } 357 ioapics[apic->Id].io_apic = ioapic_create(apic->Address, 358 apic->Id, apic->GlobalIrqBase); 359 ioapics[apic->Id].io_vector = apic->GlobalIrqBase; 360 break; 361 default: 362 break; 363 } 364 } 365 366 /* 367 * Determine properties of an interrupt source. Note that for ACPI these 368 * functions are only used for ISA interrupts, so we assume ISA bus values 369 * (Active Hi, Edge Triggered) for conforming values except for the ACPI 370 * SCI for which we use Active Lo, Level Triggered. 371 */ 372 static enum intr_polarity 373 interrupt_polarity(UINT16 IntiFlags, UINT8 Source) 374 { 375 376 switch (IntiFlags & ACPI_MADT_POLARITY_MASK) { 377 default: 378 printf("WARNING: Bogus Interrupt Polarity. Assume CONFORMS\n"); 379 /* FALLTHROUGH*/ 380 case ACPI_MADT_POLARITY_CONFORMS: 381 if (Source == AcpiGbl_FADT.SciInterrupt) 382 return (INTR_POLARITY_LOW); 383 else 384 return (INTR_POLARITY_HIGH); 385 case ACPI_MADT_POLARITY_ACTIVE_HIGH: 386 return (INTR_POLARITY_HIGH); 387 case ACPI_MADT_POLARITY_ACTIVE_LOW: 388 return (INTR_POLARITY_LOW); 389 } 390 } 391 392 static enum intr_trigger 393 interrupt_trigger(UINT16 IntiFlags, UINT8 Source) 394 { 395 396 switch (IntiFlags & ACPI_MADT_TRIGGER_MASK) { 397 default: 398 printf("WARNING: Bogus Interrupt Trigger Mode. Assume CONFORMS.\n"); 399 /*FALLTHROUGH*/ 400 case ACPI_MADT_TRIGGER_CONFORMS: 401 if (Source == AcpiGbl_FADT.SciInterrupt) 402 return (INTR_TRIGGER_LEVEL); 403 else 404 return (INTR_TRIGGER_EDGE); 405 case ACPI_MADT_TRIGGER_EDGE: 406 return (INTR_TRIGGER_EDGE); 407 case ACPI_MADT_TRIGGER_LEVEL: 408 return (INTR_TRIGGER_LEVEL); 409 } 410 } 411 412 /* 413 * Find the local APIC ID associated with a given ACPI Processor ID. 414 */ 415 static int 416 madt_find_cpu(u_int acpi_id, u_int *apic_id) 417 { 418 int i; 419 420 for (i = 0; i <= MAX_APIC_ID; i++) { 421 if (!lapics[i].la_enabled) 422 continue; 423 if (lapics[i].la_acpi_id != acpi_id) 424 continue; 425 *apic_id = i; 426 return (0); 427 } 428 return (ENOENT); 429 } 430 431 /* 432 * Find the IO APIC and pin on that APIC associated with a given global 433 * interrupt. 434 */ 435 static int 436 madt_find_interrupt(int intr, void **apic, u_int *pin) 437 { 438 int i, best; 439 440 best = -1; 441 for (i = 0; i <= MAX_APIC_ID; i++) { 442 if (ioapics[i].io_apic == NULL || 443 ioapics[i].io_vector > intr) 444 continue; 445 if (best == -1 || 446 ioapics[best].io_vector < ioapics[i].io_vector) 447 best = i; 448 } 449 if (best == -1) 450 return (ENOENT); 451 *apic = ioapics[best].io_apic; 452 *pin = intr - ioapics[best].io_vector; 453 if (*pin > 32) 454 printf("WARNING: Found intpin of %u for vector %d\n", *pin, 455 intr); 456 return (0); 457 } 458 459 void 460 madt_parse_interrupt_values(void *entry, 461 enum intr_trigger *trig, enum intr_polarity *pol) 462 { 463 ACPI_MADT_INTERRUPT_OVERRIDE *intr; 464 char buf[64]; 465 466 intr = entry; 467 468 if (bootverbose) 469 printf("MADT: Interrupt override: source %u, irq %u\n", 470 intr->SourceIrq, intr->GlobalIrq); 471 KASSERT(intr->Bus == 0, ("bus for interrupt overrides must be zero")); 472 473 /* 474 * Lookup the appropriate trigger and polarity modes for this 475 * entry. 476 */ 477 *trig = interrupt_trigger(intr->IntiFlags, intr->SourceIrq); 478 *pol = interrupt_polarity(intr->IntiFlags, intr->SourceIrq); 479 480 /* 481 * If the SCI is identity mapped but has edge trigger and 482 * active-hi polarity or the force_sci_lo tunable is set, 483 * force it to use level/lo. 484 */ 485 if (intr->SourceIrq == AcpiGbl_FADT.SciInterrupt) { 486 madt_found_sci_override = 1; 487 if (getenv_string("hw.acpi.sci.trigger", buf, sizeof(buf))) { 488 if (tolower(buf[0]) == 'e') 489 *trig = INTR_TRIGGER_EDGE; 490 else if (tolower(buf[0]) == 'l') 491 *trig = INTR_TRIGGER_LEVEL; 492 else 493 panic( 494 "Invalid trigger %s: must be 'edge' or 'level'", 495 buf); 496 printf("MADT: Forcing SCI to %s trigger\n", 497 *trig == INTR_TRIGGER_EDGE ? "edge" : "level"); 498 } 499 if (getenv_string("hw.acpi.sci.polarity", buf, sizeof(buf))) { 500 if (tolower(buf[0]) == 'h') 501 *pol = INTR_POLARITY_HIGH; 502 else if (tolower(buf[0]) == 'l') 503 *pol = INTR_POLARITY_LOW; 504 else 505 panic( 506 "Invalid polarity %s: must be 'high' or 'low'", 507 buf); 508 printf("MADT: Forcing SCI to active %s polarity\n", 509 *pol == INTR_POLARITY_HIGH ? "high" : "low"); 510 } 511 } 512 } 513 514 /* 515 * Parse an interrupt source override for an ISA interrupt. 516 */ 517 static void 518 madt_parse_interrupt_override(ACPI_MADT_INTERRUPT_OVERRIDE *intr) 519 { 520 void *new_ioapic, *old_ioapic; 521 u_int new_pin, old_pin; 522 enum intr_trigger trig; 523 enum intr_polarity pol; 524 525 if (acpi_quirks & ACPI_Q_MADT_IRQ0 && intr->SourceIrq == 0 && 526 intr->GlobalIrq == 2) { 527 if (bootverbose) 528 printf("MADT: Skipping timer override\n"); 529 return; 530 } 531 532 if (madt_find_interrupt(intr->GlobalIrq, &new_ioapic, &new_pin) != 0) { 533 printf("MADT: Could not find APIC for vector %u (IRQ %u)\n", 534 intr->GlobalIrq, intr->SourceIrq); 535 return; 536 } 537 538 madt_parse_interrupt_values(intr, &trig, &pol); 539 540 /* Remap the IRQ if it is mapped to a different interrupt vector. */ 541 if (intr->SourceIrq != intr->GlobalIrq) { 542 /* 543 * If the SCI is remapped to a non-ISA global interrupt, 544 * then override the vector we use to setup and allocate 545 * the interrupt. 546 */ 547 if (intr->GlobalIrq > 15 && 548 intr->SourceIrq == AcpiGbl_FADT.SciInterrupt) 549 acpi_OverrideInterruptLevel(intr->GlobalIrq); 550 else 551 ioapic_remap_vector(new_ioapic, new_pin, 552 intr->SourceIrq); 553 if (madt_find_interrupt(intr->SourceIrq, &old_ioapic, 554 &old_pin) != 0) 555 printf("MADT: Could not find APIC for source IRQ %u\n", 556 intr->SourceIrq); 557 else if (ioapic_get_vector(old_ioapic, old_pin) == 558 intr->SourceIrq) 559 ioapic_disable_pin(old_ioapic, old_pin); 560 } 561 562 /* Program the polarity and trigger mode. */ 563 ioapic_set_triggermode(new_ioapic, new_pin, trig); 564 ioapic_set_polarity(new_ioapic, new_pin, pol); 565 } 566 567 /* 568 * Parse an entry for an NMI routed to an IO APIC. 569 */ 570 static void 571 madt_parse_nmi(ACPI_MADT_NMI_SOURCE *nmi) 572 { 573 void *ioapic; 574 u_int pin; 575 576 if (madt_find_interrupt(nmi->GlobalIrq, &ioapic, &pin) != 0) { 577 printf("MADT: Could not find APIC for vector %u\n", 578 nmi->GlobalIrq); 579 return; 580 } 581 582 ioapic_set_nmi(ioapic, pin); 583 if (!(nmi->IntiFlags & ACPI_MADT_TRIGGER_CONFORMS)) 584 ioapic_set_triggermode(ioapic, pin, 585 interrupt_trigger(nmi->IntiFlags, 0)); 586 if (!(nmi->IntiFlags & ACPI_MADT_POLARITY_CONFORMS)) 587 ioapic_set_polarity(ioapic, pin, 588 interrupt_polarity(nmi->IntiFlags, 0)); 589 } 590 591 /* 592 * Parse an entry for an NMI routed to a local APIC LVT pin. 593 */ 594 static void 595 madt_handle_local_nmi(u_int acpi_id, UINT8 Lint, UINT16 IntiFlags) 596 { 597 u_int apic_id, pin; 598 599 if (acpi_id == 0xffffffff) 600 apic_id = APIC_ID_ALL; 601 else if (madt_find_cpu(acpi_id, &apic_id) != 0) { 602 if (bootverbose) 603 printf("MADT: Ignoring local NMI routed to " 604 "ACPI CPU %u\n", acpi_id); 605 return; 606 } 607 if (Lint == 0) 608 pin = APIC_LVT_LINT0; 609 else 610 pin = APIC_LVT_LINT1; 611 lapic_set_lvt_mode(apic_id, pin, APIC_LVT_DM_NMI); 612 if (!(IntiFlags & ACPI_MADT_TRIGGER_CONFORMS)) 613 lapic_set_lvt_triggermode(apic_id, pin, 614 interrupt_trigger(IntiFlags, 0)); 615 if (!(IntiFlags & ACPI_MADT_POLARITY_CONFORMS)) 616 lapic_set_lvt_polarity(apic_id, pin, 617 interrupt_polarity(IntiFlags, 0)); 618 } 619 620 static void 621 madt_parse_local_nmi(ACPI_MADT_LOCAL_APIC_NMI *nmi) 622 { 623 624 madt_handle_local_nmi(nmi->ProcessorId == 0xff ? 0xffffffff : 625 nmi->ProcessorId, nmi->Lint, nmi->IntiFlags); 626 } 627 628 static void 629 madt_parse_local_x2apic_nmi(ACPI_MADT_LOCAL_X2APIC_NMI *nmi) 630 { 631 632 madt_handle_local_nmi(nmi->Uid, nmi->Lint, nmi->IntiFlags); 633 } 634 635 /* 636 * Parse interrupt entries. 637 */ 638 static void 639 madt_parse_ints(ACPI_SUBTABLE_HEADER *entry, void *arg __unused) 640 { 641 642 switch (entry->Type) { 643 case ACPI_MADT_TYPE_INTERRUPT_OVERRIDE: 644 madt_parse_interrupt_override( 645 (ACPI_MADT_INTERRUPT_OVERRIDE *)entry); 646 break; 647 case ACPI_MADT_TYPE_NMI_SOURCE: 648 madt_parse_nmi((ACPI_MADT_NMI_SOURCE *)entry); 649 break; 650 case ACPI_MADT_TYPE_LOCAL_APIC_NMI: 651 madt_parse_local_nmi((ACPI_MADT_LOCAL_APIC_NMI *)entry); 652 break; 653 case ACPI_MADT_TYPE_LOCAL_X2APIC_NMI: 654 madt_parse_local_x2apic_nmi( 655 (ACPI_MADT_LOCAL_X2APIC_NMI *)entry); 656 break; 657 } 658 } 659 660 /* 661 * Setup per-CPU ACPI IDs. 662 */ 663 static void 664 madt_set_ids(void *dummy) 665 { 666 struct lapic_info *la; 667 struct pcpu *pc; 668 u_int i; 669 670 if (madt == NULL) 671 return; 672 CPU_FOREACH(i) { 673 pc = pcpu_find(i); 674 KASSERT(pc != NULL, ("no pcpu data for CPU %u", i)); 675 la = &lapics[pc->pc_apic_id]; 676 if (!la->la_enabled) 677 panic("APIC: CPU with APIC ID %u is not enabled", 678 pc->pc_apic_id); 679 pc->pc_acpi_id = la->la_acpi_id; 680 if (bootverbose) 681 printf("APIC: CPU %u has ACPI ID %u\n", i, 682 la->la_acpi_id); 683 } 684 } 685 SYSINIT(madt_set_ids, SI_SUB_CPU, SI_ORDER_MIDDLE, madt_set_ids, NULL); 686