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 <sean@starlabs.systems>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/90610
Reviewed-by: Matt DeVillier <matt.devillier@gmail.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
This commit is contained in:
Sean Rhodes 2025-12-23 20:17:21 +00:00 committed by Matt DeVillier
commit 091ac10059

View file

@ -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);
{