mb/google/brox/variants/brox: remove PL4 value modification

Remove PL4 value modification based on PsysPL3 value.

BUG=None
BRANCH=None
TEST=Built and boot on brox system

Signed-off-by: Sumeet Pawnikar <sumeet.r.pawnikar@intel.com>
Change-Id: Ic7fbc6386769aa9f76a8665a742c97dfd790fd1d
Reviewed-on: https://review.coreboot.org/c/coreboot/+/83662
Reviewed-by: Karthik Ramasubramanian <kramasub@google.com>
Reviewed-by: Sowmya Aralguppe <sowmya.aralguppe@intel.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Eric Lai <ericllai@google.com>
This commit is contained in:
Sumeet Pawnikar 2024-07-25 12:59:14 +05:30 committed by Felix Held
commit 2e1c89fc78

View file

@ -156,10 +156,6 @@ void variant_update_psys_power_limits(const struct cpu_power_limits *limits,
/* Limit PL2 if the adapter is with lower capability */
pl2 = (psyspl2 > pl2_default) ? pl2_default : SET_PL2(config_psys->efficiency, watts);
/* If PL4 > psyspl3, lower it */
if (soc_config->tdp_pl4 > psyspl3)
soc_config->tdp_pl4 = psyspl3;
/* now that we're done calculating, set everything */
soc_config->tdp_pl2_override = pl2;
soc_config->tdp_psyspl2 = psyspl2;