summaryrefslogtreecommitdiffstats
path: root/src/soc/amd/cezanne/acpi.c
diff options
context:
space:
mode:
authorFelix Held <felix-coreboot@felixheld.de>2021-06-17 15:48:25 +0200
committerFelix Held <felix-coreboot@felixheld.de>2021-06-18 16:01:43 +0000
commit69a957f85c89a167f14ae32be2ca60fe3ce9d2d2 (patch)
tree7920571fa85a1ebacb83df30870a611d3972b2af /src/soc/amd/cezanne/acpi.c
parent21e4bd4e8cedcf11d2bf82fb727b0863c19aa310 (diff)
downloadcoreboot-69a957f85c89a167f14ae32be2ca60fe3ce9d2d2.tar.gz
coreboot-69a957f85c89a167f14ae32be2ca60fe3ce9d2d2.tar.bz2
coreboot-69a957f85c89a167f14ae32be2ca60fe3ce9d2d2.zip
soc/amd/picasso,stoneyridge/acpi: use defines for MADT parameters
Using existing defines instead of magic values improves readability of the code. Also add comments to the MADT IRQ overrides to make it clearer what those actually do. TEST=Timeless build results in identical binary for amd/gardenia (Stoneyridge), amd/mandolin (Picasso) and amd/majolica (Cezanne) Signed-off-by: Felix Held <felix-coreboot@felixheld.de> Change-Id: I224ffbe8eb65bcdd5fc70c0ff8b15d55b3f6be01 Reviewed-on: https://review.coreboot.org/c/coreboot/+/55613 Reviewed-by: Marshall Dawson <marshalldawson3rd@gmail.com> Reviewed-by: Raul Rangel <rrangel@chromium.org> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/soc/amd/cezanne/acpi.c')
-rw-r--r--src/soc/amd/cezanne/acpi.c11
1 files changed, 5 insertions, 6 deletions
diff --git a/src/soc/amd/cezanne/acpi.c b/src/soc/amd/cezanne/acpi.c
index 180a1e5062dc..6e2ae9ca0f4a 100644
--- a/src/soc/amd/cezanne/acpi.c
+++ b/src/soc/amd/cezanne/acpi.c
@@ -31,19 +31,18 @@ unsigned long acpi_fill_madt(unsigned long current)
current += acpi_create_madt_ioapic((acpi_madt_ioapic_t *)current,
GNB_IOAPIC_ID, GNB_IO_APIC_ADDR, IO_APIC_INTERRUPTS);
- current += acpi_create_madt_irqoverride(
- (acpi_madt_irqoverride_t *)current,
+ /* PIT is connected to legacy IRQ 0, but IOAPIC GSI 2 */
+ current += acpi_create_madt_irqoverride((acpi_madt_irqoverride_t *)current,
MP_BUS_ISA, 0, 2,
MP_IRQ_TRIGGER_DEFAULT | MP_IRQ_POLARITY_DEFAULT);
- current += acpi_create_madt_irqoverride(
- (acpi_madt_irqoverride_t *)current,
+ /* SCI IRQ type override */
+ current += acpi_create_madt_irqoverride((acpi_madt_irqoverride_t *)current,
MP_BUS_ISA, ACPI_SCI_IRQ, ACPI_SCI_IRQ,
MP_IRQ_TRIGGER_LEVEL | MP_IRQ_POLARITY_LOW);
current = acpi_fill_madt_irqoverride(current);
/* create all subtables for processors */
- current += acpi_create_madt_lapic_nmi(
- (acpi_madt_lapic_nmi_t *)current,
+ current += acpi_create_madt_lapic_nmi((acpi_madt_lapic_nmi_t *)current,
ACPI_MADT_LAPIC_NMI_ALL_PROCESSORS,
MP_IRQ_TRIGGER_EDGE | MP_IRQ_POLARITY_HIGH,
1 /* 1: LINT1 connect to NMI */);