mb/starlabs/*: Don't disable Turbo Boost in Power Saver profile

Tested on 24.04, disabling Turbo Boost increases power consumption
which doesn't align with the aim of the Power Saver profile.

Change-Id: I19e8189ee6c44d19bf222c921429284ed1e1aa2a
Signed-off-by: Sean Rhodes <sean@starlabs.systems>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/84628
Reviewed-by: Matt DeVillier <matt.devillier@gmail.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
This commit is contained in:
Sean Rhodes 2024-10-02 15:25:30 +01:00
commit 68a51ec0d3
8 changed files with 0 additions and 8 deletions

View file

@ -23,7 +23,6 @@ void devtree_update(void)
/* Update PL1 & PL2 based on CMOS settings */
switch (get_power_profile(PP_POWER_SAVER)) {
case PP_POWER_SAVER:
disable_turbo();
soc_conf_4core->tdp_pl1_override = 6;
soc_conf_4core->tdp_pl2_override = 10;
common_config->pch_thermal_trip = 30;

View file

@ -27,7 +27,6 @@ void devtree_update(void)
/* Update PL1 & PL2 based on CMOS settings */
switch (get_power_profile(PP_POWER_SAVER)) {
case PP_POWER_SAVER:
disable_turbo();
soc_conf->tdp_pl1_override = 6;
soc_conf->tdp_pl2_override = 10;
cfg->tcc_offset = 15;

View file

@ -24,7 +24,6 @@ void devtree_update(void)
/* Update PL1 & PL2 based on CMOS settings */
switch (get_power_profile(PP_POWER_SAVER)) {
case PP_POWER_SAVER:
disable_turbo();
soc_conf_10core->tdp_pl1_override = 15;
soc_conf_12core->tdp_pl1_override = 15;
soc_conf_10core->tdp_pl2_override = 15;

View file

@ -19,7 +19,6 @@ void devtree_update(void)
/* Update PL1 & PL2 based on CMOS settings */
switch (get_power_profile(PP_POWER_SAVER)) {
case PP_POWER_SAVER:
disable_turbo();
soc_conf->tdp_pl1_override = 15;
soc_conf->tdp_pl2_override = 15;
cfg->tcc_offset = 20;

View file

@ -19,7 +19,6 @@ void devtree_update(void)
/* Update PL1 & PL2 based on CMOS settings */
switch (get_power_profile(PP_POWER_SAVER)) {
case PP_POWER_SAVER:
disable_turbo();
soc_conf->tdp_pl1_override = 15;
soc_conf->tdp_pl2_override = 15;
cfg->tcc_offset = 20;

View file

@ -27,7 +27,6 @@ void devtree_update(void)
/* Update PL1 & PL2 based on CMOS settings */
switch (get_power_profile(PP_POWER_SAVER)) {
case PP_POWER_SAVER:
disable_turbo();
soc_conf_6core->tdp_pl1_override = 15;
soc_conf_12core->tdp_pl1_override = 15;
soc_conf_6core->tdp_pl2_override = 15;

View file

@ -26,7 +26,6 @@ void devtree_update(void)
/* Update PL1 & PL2 based on CMOS settings */
switch (get_power_profile(PP_POWER_SAVER)) {
case PP_POWER_SAVER:
disable_turbo();
soc_conf_2core->tdp_pl1_override = 15;
soc_conf_4core->tdp_pl1_override = 15;
soc_conf_2core->tdp_pl2_override = 15;

View file

@ -25,7 +25,6 @@ void devtree_update(void)
/* Update PL1 & PL2 based on CMOS settings */
switch (get_power_profile(PP_POWER_SAVER)) {
case PP_POWER_SAVER:
disable_turbo();
soc_conf_4core->tdp_pl1_override = 6;
soc_conf_4core->tdp_pl2_override = 10;
common_config->pch_thermal_trip = 30;