Matt DeVillier has submitted this change. ( https://review.coreboot.org/c/coreboot/+/87006?usp=email )
Change subject: mb/starlabs/starbook/mtl: Set PsysPmax to auto ......................................................................
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 sean@starlabs.systems Reviewed-on: https://review.coreboot.org/c/coreboot/+/87006 Tested-by: build bot (Jenkins) no-reply@coreboot.org Reviewed-by: Matt DeVillier matt.devillier@gmail.com --- M src/mainboard/starlabs/starbook/variants/mtl/romstage.c 1 file changed, 1 insertion(+), 0 deletions(-)
Approvals: build bot (Jenkins): Verified Matt DeVillier: Looks good to me, approved
diff --git a/src/mainboard/starlabs/starbook/variants/mtl/romstage.c b/src/mainboard/starlabs/starbook/variants/mtl/romstage.c index acd384e..6f553a2 100644 --- a/src/mainboard/starlabs/starbook/variants/mtl/romstage.c +++ b/src/mainboard/starlabs/starbook/variants/mtl/romstage.c @@ -37,4 +37,5 @@ mupd->FspmConfig.PcieRpEnableMask &= ~(1 << 8);
mupd->FspmConfig.PchHdaSubSystemIds = 0x70381e50; + mupd->FspmConfig.PsysPmax = 0; };