From 0f777cf9ae34262d9bde4ffcafd391a168d2e361 Mon Sep 17 00:00:00 2001 From: Tim Crawford Date: Fri, 12 Aug 2022 13:40:11 -0600 Subject: [PATCH] Revert "soc/intel/alderlake: Remove some ACPI device names" This reverts commit 884467a2b56c3ecd143055d6b338698d6a2c2a90. Without these names, Windows fails with INTERNAL_POWER_ERROR (0xA0) bugcheck with paramter 0x680. Linux reports errors for the devices, but continues to work. Change-Id: I5ced77f23929c39cc50276b17ac4b469c93fc250 Signed-off-by: Tim Crawford --- src/soc/intel/alderlake/chip.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/soc/intel/alderlake/chip.c b/src/soc/intel/alderlake/chip.c index 203a1e5eab..86d40fd375 100644 --- a/src/soc/intel/alderlake/chip.c +++ b/src/soc/intel/alderlake/chip.c @@ -149,6 +149,9 @@ const char *soc_acpi_name(const struct device *dev) case PCH_DEVFN_HDA: return "HDAS"; case PCH_DEVFN_SMBUS: return "SBUS"; case PCH_DEVFN_GBE: return "GLAN"; + case PCH_DEVFN_SRAM: return "SRAM"; + case PCH_DEVFN_SPI: return "FSPI"; + case PCH_DEVFN_CSE: return "HEC1"; #if CONFIG(SOC_INTEL_ALDERLAKE_PCH_N) case PCH_DEVFN_EMMC: return "EMMC"; #endif