soc/intel/cannonlake: Add missing entry to soc_acpi_name()
The device name for the SA thermal/DPTF PCI device was missing from soc_acpi_name(), leading to an invalid PLI device constraint entry being generated in the SSDT (the name field was blank/missing). Add the missing entry, matching the name to the existing ACPI device. TEST=build/boot Win11 on google/puff (wyvern) without a BSOD. Change-Id: I7ac03fd292246981f32d9ad894b8f0f9870240fc Signed-off-by: Matt DeVillier <matt.devillier@gmail.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/78869 Reviewed-by: Eric Lai <ericllai@google.com> Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Felix Singer <service+coreboot-gerrit@felixsinger.de>
This commit is contained in:
parent
d64b66ba26
commit
96a7d9e76b
|
@ -80,6 +80,7 @@ const char *soc_acpi_name(const struct device *dev)
|
|||
switch (dev->path.pci.devfn) {
|
||||
case SA_DEVFN_ROOT: return "MCHC";
|
||||
case SA_DEVFN_IGD: return "GFX0";
|
||||
case SA_DEVFN_TS: return "TCPU";
|
||||
case PCH_DEVFN_ISH: return "ISHB";
|
||||
case SA_DEVFN_GNA: return "GNA";
|
||||
case PCH_DEVFN_XHCI: return "XHCI";
|
||||
|
|
Loading…
Reference in New Issue