diff options
author | Felix Held <felix-coreboot@felixheld.de> | 2024-04-19 18:35:15 +0200 |
---|---|---|
committer | Felix Held <felix-coreboot@felixheld.de> | 2024-04-24 21:25:49 +0000 |
commit | 2ec63b54d8cb5193aba548bc8f78622112a656d6 (patch) | |
tree | 409a0c0f2805d2e213cbae04dd105e6beaa38077 /src/soc/amd/common/block | |
parent | 6ad7513e03952c32650988d2a825f4f1661d5ee9 (diff) |
soc/amd/common/amd_pci_util.h: rename bridge irq in pci_routing_info
Rename the 'irq' element of the pci_routing_info struct to 'bridge_irq'
to better describe what it's doing. This struct element contains the
number of the northbridge IOAPIC IRQ input the bridge IRQ is connected
to signal power management or error reporting IRQs. Right now, coreboot
doesn't put this information into the ACPI bytecode.
Signed-off-by: Felix Held <felix-coreboot@felixheld.de>
Change-Id: I6410be673d15d6f9b5eb4c80b51fb705fec5b155
Reviewed-on: https://review.coreboot.org/c/coreboot/+/82048
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Matt DeVillier <matt.devillier@amd.corp-partner.google.com>
Diffstat (limited to 'src/soc/amd/common/block')
-rw-r--r-- | src/soc/amd/common/block/include/amdblocks/amd_pci_util.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/soc/amd/common/block/include/amdblocks/amd_pci_util.h b/src/soc/amd/common/block/include/amdblocks/amd_pci_util.h index f862bf997d..db8b70463c 100644 --- a/src/soc/amd/common/block/include/amdblocks/amd_pci_util.h +++ b/src/soc/amd/common/block/include/amdblocks/amd_pci_util.h @@ -57,7 +57,7 @@ struct pci_routing_info { uint8_t devfn; uint8_t group; uint8_t swizzle; - uint8_t irq; + uint8_t bridge_irq; /* also called 'map' */ } __packed; void populate_pirq_data(void); |