mb/google/rex/var/rex0: update thermal settings to start fan earlier

Internal testing showed that CPU heatsink gets hot and temperature
goes over 75C. In this situation, the fan does not even start
to lower down CPU temperature. This is because of existing temperature
thresholds of TSR0 and TSR1 sensors are set at 45C to start fan.
With updated new settings based on tuning from thermal team,
the fan starts early at 43C for TSR0 and TSR1 so the CPU temperature
stays below 75C.

BUG=b:302673874
TEST=Built and tested on google/rex board

Signed-off-by: Sumeet Pawnikar <sumeet.r.pawnikar@intel.com>
Change-Id: I6580652d6165946e98ecf1b46ace3352cd34dcdf
Reviewed-on: https://review.coreboot.org/c/coreboot/+/78279
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Eric Lai <ericllai@google.com>
This commit is contained in:
Sumeet Pawnikar 2023-09-29 21:15:12 +05:30 committed by Felix Held
parent 69bbe26a82
commit 639d6c7c17
1 changed files with 14 additions and 14 deletions

View File

@ -186,25 +186,25 @@ chip soc/intel/meteorlake
[0] = { [0] = {
.target = DPTF_TEMP_SENSOR_0, .target = DPTF_TEMP_SENSOR_0,
.thresholds = { .thresholds = {
TEMP_PCT(75, 90), TEMP_PCT(70, 97),
TEMP_PCT(70, 80), TEMP_PCT(65, 90),
TEMP_PCT(65, 70), TEMP_PCT(60, 80),
TEMP_PCT(60, 60), TEMP_PCT(55, 75),
TEMP_PCT(55, 50), TEMP_PCT(50, 65),
TEMP_PCT(50, 40), TEMP_PCT(45, 45),
TEMP_PCT(45, 30), TEMP_PCT(43, 30),
} }
}, },
[1] = { [1] = {
.target = DPTF_TEMP_SENSOR_1, .target = DPTF_TEMP_SENSOR_1,
.thresholds = { .thresholds = {
TEMP_PCT(75, 90), TEMP_PCT(70, 97),
TEMP_PCT(70, 80), TEMP_PCT(65, 90),
TEMP_PCT(65, 70), TEMP_PCT(60, 80),
TEMP_PCT(60, 60), TEMP_PCT(55, 75),
TEMP_PCT(55, 50), TEMP_PCT(50, 65),
TEMP_PCT(50, 40), TEMP_PCT(45, 45),
TEMP_PCT(45, 30), TEMP_PCT(43, 30),
} }
}, },
[2] = { [2] = {