Sean Rhodes has submitted this change. ( https://review.coreboot.org/c/coreboot/+/86605?usp=email )
Change subject: soc/intel/meteorlake: Add missing minimum D-state for SMBUS ......................................................................
soc/intel/meteorlake: Add missing minimum D-state for SMBUS
Fixes: Unknown min d_state for PCI: 00:1f.4
Change-Id: I73f84c09bece297194813202f17666741ad33d3a Signed-off-by: Sean Rhodes sean@starlabs.systems Reviewed-on: https://review.coreboot.org/c/coreboot/+/86605 Tested-by: build bot (Jenkins) no-reply@coreboot.org Reviewed-by: Subrata Banik subratabanik@google.com Reviewed-by: Kapil Porwal kapilporwal@google.com Reviewed-by: Jérémy Compostella jeremy.compostella@intel.com --- M src/soc/intel/meteorlake/acpi.c 1 file changed, 1 insertion(+), 0 deletions(-)
Approvals: Kapil Porwal: Looks good to me, approved build bot (Jenkins): Verified Jérémy Compostella: Looks good to me, but someone else must approve Subrata Banik: Looks good to me, approved
diff --git a/src/soc/intel/meteorlake/acpi.c b/src/soc/intel/meteorlake/acpi.c index f32ba56..22dbce4 100644 --- a/src/soc/intel/meteorlake/acpi.c +++ b/src/soc/intel/meteorlake/acpi.c @@ -211,6 +211,7 @@ { PCI_DEVFN_ESPI, ACPI_DEVICE_SLEEP_D0 }, { PCH_DEVFN_PMC, ACPI_DEVICE_SLEEP_D0 }, { PCI_DEVFN_HDA, ACPI_DEVICE_SLEEP_D0 }, + { PCI_DEVFN_SMBUS, ACPI_DEVICE_SLEEP_D0 }, { PCI_DEVFN_SPI, ACPI_DEVICE_SLEEP_D3 }, { PCI_DEVFN_GBE, ACPI_DEVICE_SLEEP_D3 }, };