summaryrefslogtreecommitdiff
path: root/baseboard/guybrush
diff options
context:
space:
mode:
authorRob Barnes <robbarnes@google.com>2021-03-24 01:21:45 -0600
committerCommit Bot <commit-bot@chromium.org>2021-03-24 19:53:52 +0000
commitc36ff98ad26632d2f175344a8017735ac011e14a (patch)
tree5849c20d86f2db2319f37dc3875a8aee631c0bfe /baseboard/guybrush
parente7d95518e19740b39142d0b1d285b57658e82cad (diff)
downloadchrome-ec-c36ff98ad26632d2f175344a8017735ac011e14a.tar.gz
guybrush: Remove CPU temp from thermal_params
CPU temp is hotter than SOC temp. The CPU thermal params have not been tuned. High CPU temps is causing shutdowns. Removing CPU temp from thermal_params and relying on SOC temp. BUG=b:183561584 TEST=Build and run BRANCH=None Signed-off-by: Rob Barnes <robbarnes@google.com> Change-Id: I2d4b5483b88adefb83a7f1f8c6ea0e810f04153f Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/ec/+/2783601 Reviewed-by: Diana Z <dzigterman@chromium.org>
Diffstat (limited to 'baseboard/guybrush')
-rw-r--r--baseboard/guybrush/baseboard.c12
1 files changed, 1 insertions, 11 deletions
diff --git a/baseboard/guybrush/baseboard.c b/baseboard/guybrush/baseboard.c
index ef3b72a384..748d635cb3 100644
--- a/baseboard/guybrush/baseboard.c
+++ b/baseboard/guybrush/baseboard.c
@@ -247,17 +247,7 @@ struct ec_thermal_config thermal_params[TEMP_SENSOR_COUNT] = {
.temp_fan_off = 0,
.temp_fan_max = 0,
},
- [TEMP_SENSOR_CPU] = {
- .temp_host = {
- [EC_TEMP_THRESH_HIGH] = C_TO_K(90),
- [EC_TEMP_THRESH_HALT] = C_TO_K(92),
- },
- .temp_host_release = {
- [EC_TEMP_THRESH_HIGH] = C_TO_K(80),
- },
- .temp_fan_off = 0,
- .temp_fan_max = 0,
- },
+ /* TODO: TEMP_SENSOR_CPU */
};
BUILD_ASSERT(ARRAY_SIZE(thermal_params) == TEMP_SENSOR_COUNT);