soc/amd/common/block/lpc/lpc: report eSPI MMIO
Signed-off-by: Felix Held <felix-coreboot@felixheld.de> Change-Id: I63fb70da3e9ded6c05354f94ee69bc6dd04e58f0 Reviewed-on: https://review.coreboot.org/c/coreboot/+/74845 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Matt DeVillier <matt.devillier@amd.corp-partner.google.com> Reviewed-by: Arthur Heymans <arthur@aheymans.xyz>
This commit is contained in:
parent
026caf5def
commit
19d1c16c32
|
@ -123,7 +123,10 @@ static void lpc_read_resources(struct device *dev)
|
|||
/* Add a memory resource for the SPI BAR. */
|
||||
mmio_range(dev, 2, SPI_BASE_ADDRESS, 4 * KiB);
|
||||
|
||||
res = new_resource(dev, 3); /* IOAPIC */
|
||||
/* Add a memory resource for the eSPI MMIO */
|
||||
mmio_range(dev, 3, SPI_BASE_ADDRESS + ESPI_OFFSET_FROM_BAR, 4 * KiB);
|
||||
|
||||
res = new_resource(dev, 4); /* IOAPIC */
|
||||
res->base = IO_APIC_ADDR;
|
||||
res->size = 0x00001000;
|
||||
res->flags = IORESOURCE_MEM | IORESOURCE_ASSIGNED | IORESOURCE_FIXED;
|
||||
|
|
Loading…
Reference in New Issue