mb/starlabs/starbook/adl_n: Adjust the TCC offsets

Commit 3a8835f0e8 ("mb/starlabs/*: Unify tcc_offset settings")
unified the TCC offsets based on:
* 70, 80 and 90 degrees for fanless boards
* 80, 90 and 100 degrees for fanned boards

This board has a fan, so make it follow the above.

Change-Id: Ic40ec1a317c787cf7695b37246b2cb337043af2d
Signed-off-by: Sean Rhodes <sean@starlabs.systems>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/86782
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Matt DeVillier <matt.devillier@gmail.com>
This commit is contained in:
Sean Rhodes 2025-03-10 08:54:09 +00:00 committed by Matt DeVillier
commit e2ba4330dd

View file

@ -33,15 +33,15 @@ void devtree_update(void)
switch (get_power_profile(PP_POWER_SAVER)) {
case PP_POWER_SAVER:
performance_scale -= 50;
cfg->tcc_offset = TCC(70);
cfg->tcc_offset = TCC(80);
break;
case PP_BALANCED:
performance_scale -= 25;
cfg->tcc_offset = TCC(80);
cfg->tcc_offset = TCC(90);
break;
case PP_PERFORMANCE:
/* Use the Intel defaults */
cfg->tcc_offset = TCC(90);
cfg->tcc_offset = TCC(100);
break;
}