From 8daa9eed866d9c0853b3bc927612681da83a8ef1 Mon Sep 17 00:00:00 2001 From: Matt DeVillier Date: Fri, 7 Mar 2025 18:17:13 -0600 Subject: [PATCH] soc/intel/meteorlake: Add missing ACPI device path name MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The ACPI device path name handler for the fast SPI device is missing, so add it to ensure that the names is returned from acpi_device_path() calls. TEST=Build/boot Win11 on screebo Change-Id: Ibf5ab3bf6694875c357b999fe871a5b16f89ec62 Signed-off-by: Matt DeVillier Reviewed-on: https://review.coreboot.org/c/coreboot/+/86796 Tested-by: build bot (Jenkins) Reviewed-by: Jérémy Compostella Reviewed-by: Sean Rhodes --- src/soc/intel/meteorlake/chip.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/soc/intel/meteorlake/chip.c b/src/soc/intel/meteorlake/chip.c index a0a13997cb..79ef178dcc 100644 --- a/src/soc/intel/meteorlake/chip.c +++ b/src/soc/intel/meteorlake/chip.c @@ -116,6 +116,7 @@ const char *soc_acpi_name(const struct device *dev) case PCI_DEVFN_HDA: return "HDAS"; case PCI_DEVFN_SMBUS: return "SBUS"; case PCI_DEVFN_GBE: return "GLAN"; + case PCI_DEVFN_SPI: return "FSPI"; } printk(BIOS_DEBUG, "Missing ACPI Name for PCI: 00:%02x.%01x\n", PCI_SLOT(dev->path.pci.devfn), PCI_FUNC(dev->path.pci.devfn));