From 28d4a35fd0263b1b2eec53f39e7005a829a1c2e1 Mon Sep 17 00:00:00 2001 From: Sean Rhodes Date: Wed, 26 Mar 2025 20:56:00 +0000 Subject: [PATCH] mb/starlabs/starbook/mtl: Set PsysPmax to auto Set PsysPmax to 0, which is auto instead of the FSP default which is 21.5W (0xac). Change-Id: Ia2503077067fa719a09f9877d7fe0bedf2a662f1 Signed-off-by: Sean Rhodes Reviewed-on: https://review.coreboot.org/c/coreboot/+/87006 Tested-by: build bot (Jenkins) Reviewed-by: Matt DeVillier --- src/mainboard/starlabs/starbook/variants/mtl/romstage.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/mainboard/starlabs/starbook/variants/mtl/romstage.c b/src/mainboard/starlabs/starbook/variants/mtl/romstage.c index acd384e62c..6f553a2885 100644 --- a/src/mainboard/starlabs/starbook/variants/mtl/romstage.c +++ b/src/mainboard/starlabs/starbook/variants/mtl/romstage.c @@ -37,4 +37,5 @@ void mainboard_memory_init_params(FSPM_UPD *mupd) mupd->FspmConfig.PcieRpEnableMask &= ~(1 << 8); mupd->FspmConfig.PchHdaSubSystemIds = 0x70381e50; + mupd->FspmConfig.PsysPmax = 0; };