summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatt_Wang <Matt_Wang@compal.corp-partner.google.com>2021-04-12 19:36:05 +0800
committerCommit Bot <commit-bot@chromium.org>2021-04-12 15:41:47 +0000
commit190e9c6154bfdfe7290c0e93733384439c32923e (patch)
tree639da0b579ce9feb63905a87baa484c8341dbcc0
parentdadb16b7bc22ba14c083570d2f2a78bcf69a8709 (diff)
downloadchrome-ec-190e9c6154bfdfe7290c0e93733384439c32923e.tar.gz
mancomb: 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 BRANCH=None TEST=Build Change-Id: I195bfefaafc300503c189c04e00f85dccb07a8b9 Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/ec/+/2821120 Tested-by: Matt Wang <matt_wang@compal.corp-partner.google.com> Reviewed-by: Rob Barnes <robbarnes@google.com> Commit-Queue: Rob Barnes <robbarnes@google.com>
-rw-r--r--baseboard/mancomb/baseboard.c12
1 files changed, 1 insertions, 11 deletions
diff --git a/baseboard/mancomb/baseboard.c b/baseboard/mancomb/baseboard.c
index 584e365410..4e3a642a46 100644
--- a/baseboard/mancomb/baseboard.c
+++ b/baseboard/mancomb/baseboard.c
@@ -230,17 +230,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);