From 091ac1005987a2c523341d08a9e0f82b3e622037 Mon Sep 17 00:00:00 2001 From: Sean Rhodes Date: Tue, 23 Dec 2025 20:17:21 +0000 Subject: [PATCH] soc/intel/cnvi: Correct S-state level for CNVP This power resource is valid in S5, so correct the level that is set. This makes it match the reference code, and the CNVi Bluetooth power resource. Change-Id: I430cafafc0326dc189a337bf2b67cf200afc4f17 Signed-off-by: Sean Rhodes Reviewed-on: https://review.coreboot.org/c/coreboot/+/90610 Reviewed-by: Matt DeVillier Tested-by: build bot (Jenkins) --- src/soc/intel/common/block/cnvi/cnvi.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/soc/intel/common/block/cnvi/cnvi.c b/src/soc/intel/common/block/cnvi/cnvi.c index 817895af7d..80fed3a23d 100644 --- a/src/soc/intel/common/block/cnvi/cnvi.c +++ b/src/soc/intel/common/block/cnvi/cnvi.c @@ -120,7 +120,7 @@ static void cnvw_fill_ssdt(const struct device *dev) acpigen_write_name_integer("WFDL", 50); /* - * PowerResource (CNVP, 0x00, 0x0000) + * PowerResource (CNVP, 0x05, 0x0000) * { * Method (_STA, 0, NotSerialized) // _STA: Status * { @@ -220,7 +220,7 @@ static void cnvw_fill_ssdt(const struct device *dev) * } * */ - acpigen_write_power_res("CNVP", 0, 0, NULL, 0); + acpigen_write_power_res("CNVP", 5, 0, NULL, 0); { acpigen_write_method("_STA", 0); {