xref: /freebsd/sys/x86/acpica/madt.c (revision 5608fd23c27fa1e8ee595d7b678cbfd35d657fbe)
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/malloc.h>
35 #include <sys/smp.h>
36 #include <vm/vm.h>
37 #include <vm/pmap.h>
38 
39 #include <x86/apicreg.h>
40 #include <machine/intr_machdep.h>
41 #include <x86/apicvar.h>
42 
43 #include <contrib/dev/acpica/include/acpi.h>
44 #include <contrib/dev/acpica/include/actables.h>
45 
46 #include <dev/acpica/acpivar.h>
47 #include <dev/pci/pcivar.h>
48 
49 /* These two arrays are indexed by APIC IDs. */
50 static struct {
51 	void *io_apic;
52 	UINT32 io_vector;
53 } *ioapics;
54 
55 static struct lapic_info {
56 	u_int la_enabled:1;
57 	u_int la_acpi_id:8;
58 } lapics[MAX_APIC_ID + 1];
59 
60 int madt_found_sci_override;
61 static ACPI_TABLE_MADT *madt;
62 static vm_paddr_t madt_physaddr;
63 static vm_offset_t madt_length;
64 
65 static MALLOC_DEFINE(M_MADT, "madt_table", "ACPI MADT Table Items");
66 
67 static enum intr_polarity interrupt_polarity(UINT16 IntiFlags, UINT8 Source);
68 static enum intr_trigger interrupt_trigger(UINT16 IntiFlags, UINT8 Source);
69 static int	madt_find_cpu(u_int acpi_id, u_int *apic_id);
70 static int	madt_find_interrupt(int intr, void **apic, u_int *pin);
71 static void	madt_parse_apics(ACPI_SUBTABLE_HEADER *entry, void *arg);
72 static void	madt_parse_interrupt_override(
73 		    ACPI_MADT_INTERRUPT_OVERRIDE *intr);
74 static void	madt_parse_ints(ACPI_SUBTABLE_HEADER *entry,
75 		    void *arg __unused);
76 static void	madt_parse_local_nmi(ACPI_MADT_LOCAL_APIC_NMI *nmi);
77 static void	madt_parse_nmi(ACPI_MADT_NMI_SOURCE *nmi);
78 static int	madt_probe(void);
79 static int	madt_probe_cpus(void);
80 static void	madt_probe_cpus_handler(ACPI_SUBTABLE_HEADER *entry,
81 		    void *arg __unused);
82 static void	madt_register(void *dummy);
83 static int	madt_setup_local(void);
84 static int	madt_setup_io(void);
85 static void	madt_walk_table(acpi_subtable_handler *handler, void *arg);
86 
87 static struct apic_enumerator madt_enumerator = {
88 	"MADT",
89 	madt_probe,
90 	madt_probe_cpus,
91 	madt_setup_local,
92 	madt_setup_io
93 };
94 
95 /*
96  * Look for an ACPI Multiple APIC Description Table ("APIC")
97  */
98 static int
99 madt_probe(void)
100 {
101 
102 	madt_physaddr = acpi_find_table(ACPI_SIG_MADT);
103 	if (madt_physaddr == 0)
104 		return (ENXIO);
105 	return (-50);
106 }
107 
108 /*
109  * Run through the MP table enumerating CPUs.
110  */
111 static int
112 madt_probe_cpus(void)
113 {
114 
115 	madt = acpi_map_table(madt_physaddr, ACPI_SIG_MADT);
116 	madt_length = madt->Header.Length;
117 	KASSERT(madt != NULL, ("Unable to re-map MADT"));
118 	madt_walk_table(madt_probe_cpus_handler, NULL);
119 	acpi_unmap_table(madt);
120 	madt = NULL;
121 	return (0);
122 }
123 
124 /*
125  * Initialize the local APIC on the BSP.
126  */
127 static int
128 madt_setup_local(void)
129 {
130 
131 	madt = pmap_mapbios(madt_physaddr, madt_length);
132 	lapic_init(madt->Address);
133 	printf("ACPI APIC Table: <%.*s %.*s>\n",
134 	    (int)sizeof(madt->Header.OemId), madt->Header.OemId,
135 	    (int)sizeof(madt->Header.OemTableId), madt->Header.OemTableId);
136 
137 	/*
138 	 * We ignore 64-bit local APIC override entries.  Should we
139 	 * perhaps emit a warning here if we find one?
140 	 */
141 	return (0);
142 }
143 
144 /*
145  * Enumerate I/O APICs and setup interrupt sources.
146  */
147 static int
148 madt_setup_io(void)
149 {
150 	void *ioapic;
151 	u_int pin;
152 	int i;
153 
154 	/* Try to initialize ACPI so that we can access the FADT. */
155 	i = acpi_Startup();
156 	if (ACPI_FAILURE(i)) {
157 		printf("MADT: ACPI Startup failed with %s\n",
158 		    AcpiFormatException(i));
159 		printf("Try disabling either ACPI or apic support.\n");
160 		panic("Using MADT but ACPI doesn't work");
161 	}
162 
163 	ioapics = malloc(sizeof(*ioapics) * (MAX_APIC_ID + 1), M_MADT,
164 	    M_WAITOK | M_ZERO);
165 
166 	/* First, we run through adding I/O APIC's. */
167 	madt_walk_table(madt_parse_apics, NULL);
168 
169 	/* Second, we run through the table tweaking interrupt sources. */
170 	madt_walk_table(madt_parse_ints, NULL);
171 
172 	/*
173 	 * If there was not an explicit override entry for the SCI,
174 	 * force it to use level trigger and active-low polarity.
175 	 */
176 	if (!madt_found_sci_override) {
177 		if (madt_find_interrupt(AcpiGbl_FADT.SciInterrupt, &ioapic,
178 		    &pin) != 0)
179 			printf("MADT: Could not find APIC for SCI IRQ %u\n",
180 			    AcpiGbl_FADT.SciInterrupt);
181 		else {
182 			printf(
183 	"MADT: Forcing active-low polarity and level trigger for SCI\n");
184 			ioapic_set_polarity(ioapic, pin, INTR_POLARITY_LOW);
185 			ioapic_set_triggermode(ioapic, pin, INTR_TRIGGER_LEVEL);
186 		}
187 	}
188 
189 	/* Third, we register all the I/O APIC's. */
190 	for (i = 0; i <= MAX_APIC_ID; i++)
191 		if (ioapics[i].io_apic != NULL)
192 			ioapic_register(ioapics[i].io_apic);
193 
194 	/* Finally, we throw the switch to enable the I/O APIC's. */
195 	acpi_SetDefaultIntrModel(ACPI_INTR_APIC);
196 
197 	free(ioapics, M_MADT);
198 	ioapics = NULL;
199 
200 	return (0);
201 }
202 
203 static void
204 madt_register(void *dummy __unused)
205 {
206 
207 	apic_register_enumerator(&madt_enumerator);
208 }
209 SYSINIT(madt_register, SI_SUB_TUNABLES - 1, SI_ORDER_FIRST, madt_register, NULL);
210 
211 /*
212  * Call the handler routine for each entry in the MADT table.
213  */
214 static void
215 madt_walk_table(acpi_subtable_handler *handler, void *arg)
216 {
217 
218 	acpi_walk_subtables(madt + 1, (char *)madt + madt->Header.Length,
219 	    handler, arg);
220 }
221 
222 static void
223 madt_probe_cpus_handler(ACPI_SUBTABLE_HEADER *entry, void *arg)
224 {
225 	ACPI_MADT_LOCAL_APIC *proc;
226 	struct lapic_info *la;
227 
228 	switch (entry->Type) {
229 	case ACPI_MADT_TYPE_LOCAL_APIC:
230 		/*
231 		 * The MADT does not include a BSP flag, so we have to
232 		 * let the MP code figure out which CPU is the BSP on
233 		 * its own.
234 		 */
235 		proc = (ACPI_MADT_LOCAL_APIC *)entry;
236 		if (bootverbose)
237 			printf("MADT: Found CPU APIC ID %u ACPI ID %u: %s\n",
238 			    proc->Id, proc->ProcessorId,
239 			    (proc->LapicFlags & ACPI_MADT_ENABLED) ?
240 			    "enabled" : "disabled");
241 		if (!(proc->LapicFlags & ACPI_MADT_ENABLED))
242 			break;
243 		if (proc->Id > MAX_APIC_ID)
244 			panic("%s: CPU ID %u too high", __func__, proc->Id);
245 		la = &lapics[proc->Id];
246 		KASSERT(la->la_enabled == 0,
247 		    ("Duplicate local APIC ID %u", proc->Id));
248 		la->la_enabled = 1;
249 		la->la_acpi_id = proc->ProcessorId;
250 		lapic_create(proc->Id, 0);
251 		break;
252 	}
253 }
254 
255 
256 /*
257  * Add an I/O APIC from an entry in the table.
258  */
259 static void
260 madt_parse_apics(ACPI_SUBTABLE_HEADER *entry, void *arg __unused)
261 {
262 	ACPI_MADT_IO_APIC *apic;
263 
264 	switch (entry->Type) {
265 	case ACPI_MADT_TYPE_IO_APIC:
266 		apic = (ACPI_MADT_IO_APIC *)entry;
267 		if (bootverbose)
268 			printf(
269 			    "MADT: Found IO APIC ID %u, Interrupt %u at %p\n",
270 			    apic->Id, apic->GlobalIrqBase,
271 			    (void *)(uintptr_t)apic->Address);
272 		if (apic->Id > MAX_APIC_ID)
273 			panic("%s: I/O APIC ID %u too high", __func__,
274 			    apic->Id);
275 		if (ioapics[apic->Id].io_apic != NULL)
276 			panic("%s: Double APIC ID %u", __func__, apic->Id);
277 		if (apic->GlobalIrqBase >= FIRST_MSI_INT) {
278 			printf("MADT: Ignoring bogus I/O APIC ID %u", apic->Id);
279 			break;
280 		}
281 		ioapics[apic->Id].io_apic = ioapic_create(apic->Address,
282 		    apic->Id, apic->GlobalIrqBase);
283 		ioapics[apic->Id].io_vector = apic->GlobalIrqBase;
284 		break;
285 	default:
286 		break;
287 	}
288 }
289 
290 /*
291  * Determine properties of an interrupt source.  Note that for ACPI these
292  * functions are only used for ISA interrupts, so we assume ISA bus values
293  * (Active Hi, Edge Triggered) for conforming values except for the ACPI
294  * SCI for which we use Active Lo, Level Triggered.
295  */
296 static enum intr_polarity
297 interrupt_polarity(UINT16 IntiFlags, UINT8 Source)
298 {
299 
300 	switch (IntiFlags & ACPI_MADT_POLARITY_MASK) {
301 	default:
302 		printf("WARNING: Bogus Interrupt Polarity. Assume CONFORMS\n");
303 		/* FALLTHROUGH*/
304 	case ACPI_MADT_POLARITY_CONFORMS:
305 		if (Source == AcpiGbl_FADT.SciInterrupt)
306 			return (INTR_POLARITY_LOW);
307 		else
308 			return (INTR_POLARITY_HIGH);
309 	case ACPI_MADT_POLARITY_ACTIVE_HIGH:
310 		return (INTR_POLARITY_HIGH);
311 	case ACPI_MADT_POLARITY_ACTIVE_LOW:
312 		return (INTR_POLARITY_LOW);
313 	}
314 }
315 
316 static enum intr_trigger
317 interrupt_trigger(UINT16 IntiFlags, UINT8 Source)
318 {
319 
320 	switch (IntiFlags & ACPI_MADT_TRIGGER_MASK) {
321 	default:
322 		printf("WARNING: Bogus Interrupt Trigger Mode. Assume CONFORMS.\n");
323 		/*FALLTHROUGH*/
324 	case ACPI_MADT_TRIGGER_CONFORMS:
325 		if (Source == AcpiGbl_FADT.SciInterrupt)
326 			return (INTR_TRIGGER_LEVEL);
327 		else
328 			return (INTR_TRIGGER_EDGE);
329 	case ACPI_MADT_TRIGGER_EDGE:
330 		return (INTR_TRIGGER_EDGE);
331 	case ACPI_MADT_TRIGGER_LEVEL:
332 		return (INTR_TRIGGER_LEVEL);
333 	}
334 }
335 
336 /*
337  * Find the local APIC ID associated with a given ACPI Processor ID.
338  */
339 static int
340 madt_find_cpu(u_int acpi_id, u_int *apic_id)
341 {
342 	int i;
343 
344 	for (i = 0; i <= MAX_APIC_ID; i++) {
345 		if (!lapics[i].la_enabled)
346 			continue;
347 		if (lapics[i].la_acpi_id != acpi_id)
348 			continue;
349 		*apic_id = i;
350 		return (0);
351 	}
352 	return (ENOENT);
353 }
354 
355 /*
356  * Find the IO APIC and pin on that APIC associated with a given global
357  * interrupt.
358  */
359 static int
360 madt_find_interrupt(int intr, void **apic, u_int *pin)
361 {
362 	int i, best;
363 
364 	best = -1;
365 	for (i = 0; i <= MAX_APIC_ID; i++) {
366 		if (ioapics[i].io_apic == NULL ||
367 		    ioapics[i].io_vector > intr)
368 			continue;
369 		if (best == -1 ||
370 		    ioapics[best].io_vector < ioapics[i].io_vector)
371 			best = i;
372 	}
373 	if (best == -1)
374 		return (ENOENT);
375 	*apic = ioapics[best].io_apic;
376 	*pin = intr - ioapics[best].io_vector;
377 	if (*pin > 32)
378 		printf("WARNING: Found intpin of %u for vector %d\n", *pin,
379 		    intr);
380 	return (0);
381 }
382 
383 void
384 madt_parse_interrupt_values(void *entry,
385     enum intr_trigger *trig, enum intr_polarity *pol)
386 {
387 	ACPI_MADT_INTERRUPT_OVERRIDE *intr;
388 	char buf[64];
389 
390 	intr = entry;
391 
392 	if (bootverbose)
393 		printf("MADT: Interrupt override: source %u, irq %u\n",
394 		    intr->SourceIrq, intr->GlobalIrq);
395 	KASSERT(intr->Bus == 0, ("bus for interrupt overrides must be zero"));
396 
397 	/*
398 	 * Lookup the appropriate trigger and polarity modes for this
399 	 * entry.
400 	 */
401 	*trig = interrupt_trigger(intr->IntiFlags, intr->SourceIrq);
402 	*pol = interrupt_polarity(intr->IntiFlags, intr->SourceIrq);
403 
404 	/*
405 	 * If the SCI is identity mapped but has edge trigger and
406 	 * active-hi polarity or the force_sci_lo tunable is set,
407 	 * force it to use level/lo.
408 	 */
409 	if (intr->SourceIrq == AcpiGbl_FADT.SciInterrupt) {
410 		madt_found_sci_override = 1;
411 		if (getenv_string("hw.acpi.sci.trigger", buf, sizeof(buf))) {
412 			if (tolower(buf[0]) == 'e')
413 				*trig = INTR_TRIGGER_EDGE;
414 			else if (tolower(buf[0]) == 'l')
415 				*trig = INTR_TRIGGER_LEVEL;
416 			else
417 				panic(
418 				"Invalid trigger %s: must be 'edge' or 'level'",
419 				    buf);
420 			printf("MADT: Forcing SCI to %s trigger\n",
421 			    *trig == INTR_TRIGGER_EDGE ? "edge" : "level");
422 		}
423 		if (getenv_string("hw.acpi.sci.polarity", buf, sizeof(buf))) {
424 			if (tolower(buf[0]) == 'h')
425 				*pol = INTR_POLARITY_HIGH;
426 			else if (tolower(buf[0]) == 'l')
427 				*pol = INTR_POLARITY_LOW;
428 			else
429 				panic(
430 				"Invalid polarity %s: must be 'high' or 'low'",
431 				    buf);
432 			printf("MADT: Forcing SCI to active %s polarity\n",
433 			    *pol == INTR_POLARITY_HIGH ? "high" : "low");
434 		}
435 	}
436 }
437 
438 /*
439  * Parse an interrupt source override for an ISA interrupt.
440  */
441 static void
442 madt_parse_interrupt_override(ACPI_MADT_INTERRUPT_OVERRIDE *intr)
443 {
444 	void *new_ioapic, *old_ioapic;
445 	u_int new_pin, old_pin;
446 	enum intr_trigger trig;
447 	enum intr_polarity pol;
448 
449 	if (acpi_quirks & ACPI_Q_MADT_IRQ0 && intr->SourceIrq == 0 &&
450 	    intr->GlobalIrq == 2) {
451 		if (bootverbose)
452 			printf("MADT: Skipping timer override\n");
453 		return;
454 	}
455 
456 	if (madt_find_interrupt(intr->GlobalIrq, &new_ioapic, &new_pin) != 0) {
457 		printf("MADT: Could not find APIC for vector %u (IRQ %u)\n",
458 		    intr->GlobalIrq, intr->SourceIrq);
459 		return;
460 	}
461 
462 	madt_parse_interrupt_values(intr, &trig, &pol);
463 
464 	/* Remap the IRQ if it is mapped to a different interrupt vector. */
465 	if (intr->SourceIrq != intr->GlobalIrq) {
466 		/*
467 		 * If the SCI is remapped to a non-ISA global interrupt,
468 		 * then override the vector we use to setup and allocate
469 		 * the interrupt.
470 		 */
471 		if (intr->GlobalIrq > 15 &&
472 		    intr->SourceIrq == AcpiGbl_FADT.SciInterrupt)
473 			acpi_OverrideInterruptLevel(intr->GlobalIrq);
474 		else
475 			ioapic_remap_vector(new_ioapic, new_pin,
476 			    intr->SourceIrq);
477 		if (madt_find_interrupt(intr->SourceIrq, &old_ioapic,
478 		    &old_pin) != 0)
479 			printf("MADT: Could not find APIC for source IRQ %u\n",
480 			    intr->SourceIrq);
481 		else if (ioapic_get_vector(old_ioapic, old_pin) ==
482 		    intr->SourceIrq)
483 			ioapic_disable_pin(old_ioapic, old_pin);
484 	}
485 
486 	/* Program the polarity and trigger mode. */
487 	ioapic_set_triggermode(new_ioapic, new_pin, trig);
488 	ioapic_set_polarity(new_ioapic, new_pin, pol);
489 }
490 
491 /*
492  * Parse an entry for an NMI routed to an IO APIC.
493  */
494 static void
495 madt_parse_nmi(ACPI_MADT_NMI_SOURCE *nmi)
496 {
497 	void *ioapic;
498 	u_int pin;
499 
500 	if (madt_find_interrupt(nmi->GlobalIrq, &ioapic, &pin) != 0) {
501 		printf("MADT: Could not find APIC for vector %u\n",
502 		    nmi->GlobalIrq);
503 		return;
504 	}
505 
506 	ioapic_set_nmi(ioapic, pin);
507 	if (!(nmi->IntiFlags & ACPI_MADT_TRIGGER_CONFORMS))
508 		ioapic_set_triggermode(ioapic, pin,
509 		    interrupt_trigger(nmi->IntiFlags, 0));
510 	if (!(nmi->IntiFlags & ACPI_MADT_POLARITY_CONFORMS))
511 		ioapic_set_polarity(ioapic, pin,
512 		    interrupt_polarity(nmi->IntiFlags, 0));
513 }
514 
515 /*
516  * Parse an entry for an NMI routed to a local APIC LVT pin.
517  */
518 static void
519 madt_parse_local_nmi(ACPI_MADT_LOCAL_APIC_NMI *nmi)
520 {
521 	u_int apic_id, pin;
522 
523 	if (nmi->ProcessorId == 0xff)
524 		apic_id = APIC_ID_ALL;
525 	else if (madt_find_cpu(nmi->ProcessorId, &apic_id) != 0) {
526 		if (bootverbose)
527 			printf("MADT: Ignoring local NMI routed to "
528 			    "ACPI CPU %u\n", nmi->ProcessorId);
529 		return;
530 	}
531 	if (nmi->Lint == 0)
532 		pin = APIC_LVT_LINT0;
533 	else
534 		pin = APIC_LVT_LINT1;
535 	lapic_set_lvt_mode(apic_id, pin, APIC_LVT_DM_NMI);
536 	if (!(nmi->IntiFlags & ACPI_MADT_TRIGGER_CONFORMS))
537 		lapic_set_lvt_triggermode(apic_id, pin,
538 		    interrupt_trigger(nmi->IntiFlags, 0));
539 	if (!(nmi->IntiFlags & ACPI_MADT_POLARITY_CONFORMS))
540 		lapic_set_lvt_polarity(apic_id, pin,
541 		    interrupt_polarity(nmi->IntiFlags, 0));
542 }
543 
544 /*
545  * Parse interrupt entries.
546  */
547 static void
548 madt_parse_ints(ACPI_SUBTABLE_HEADER *entry, void *arg __unused)
549 {
550 
551 	switch (entry->Type) {
552 	case ACPI_MADT_TYPE_INTERRUPT_OVERRIDE:
553 		madt_parse_interrupt_override(
554 			(ACPI_MADT_INTERRUPT_OVERRIDE *)entry);
555 		break;
556 	case ACPI_MADT_TYPE_NMI_SOURCE:
557 		madt_parse_nmi((ACPI_MADT_NMI_SOURCE *)entry);
558 		break;
559 	case ACPI_MADT_TYPE_LOCAL_APIC_NMI:
560 		madt_parse_local_nmi((ACPI_MADT_LOCAL_APIC_NMI *)entry);
561 		break;
562 	}
563 }
564 
565 /*
566  * Setup per-CPU ACPI IDs.
567  */
568 static void
569 madt_set_ids(void *dummy)
570 {
571 	struct lapic_info *la;
572 	struct pcpu *pc;
573 	u_int i;
574 
575 	if (madt == NULL)
576 		return;
577 	CPU_FOREACH(i) {
578 		pc = pcpu_find(i);
579 		KASSERT(pc != NULL, ("no pcpu data for CPU %u", i));
580 		la = &lapics[pc->pc_apic_id];
581 		if (!la->la_enabled)
582 			panic("APIC: CPU with APIC ID %u is not enabled",
583 			    pc->pc_apic_id);
584 		pc->pc_acpi_id = la->la_acpi_id;
585 		if (bootverbose)
586 			printf("APIC: CPU %u has ACPI ID %u\n", i,
587 			    la->la_acpi_id);
588 	}
589 }
590 SYSINIT(madt_set_ids, SI_SUB_CPU, SI_ORDER_MIDDLE, madt_set_ids, NULL);
591