summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSue Chen <sue.chen@quanta.corp-partner.google.com>2022-06-01 11:20:41 +0800
committerChromeos LUCI <chromeos-scoped@luci-project-accounts.iam.gserviceaccount.com>2022-06-01 19:30:44 +0000
commit19591c8d7108389c2e6339f016f9a70e4817e86c (patch)
tree4fec0c317b4ace17305bafa0bc938b76a321d2c1
parent667e9d967db267688822e01d23da7e9d434abeb0 (diff)
downloadchrome-ec-19591c8d7108389c2e6339f016f9a70e4817e86c.tar.gz
Dewatt: update thermal table for temp sensor CPU
temp_host WARN 100'C HIGH 105'C HALT 108'C temp_host_release HIGH 85'C BUG=b:232981797, b:212658444 BRANCH=guybrush TEST=verify by thermal team Signed-off-by: Sue Chen <sue.chen@quanta.corp-partner.google.com> Change-Id: I22c5f93b4a398275ada68b2fff38c3406f4e28ad Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/ec/+/3682978 Reviewed-by: Jonathon Murphy <jpmurphy@google.com> Commit-Queue: Jonathon Murphy <jpmurphy@google.com>
-rw-r--r--board/dewatt/thermal.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/board/dewatt/thermal.c b/board/dewatt/thermal.c
index 39be5bfd6b..0d0d80095a 100644
--- a/board/dewatt/thermal.c
+++ b/board/dewatt/thermal.c
@@ -69,11 +69,12 @@ struct ec_thermal_config thermal_params[TEMP_SENSOR_COUNT] = {
},
[TEMP_SENSOR_CPU] = {
.temp_host = {
- [EC_TEMP_THRESH_HIGH] = 0,
- [EC_TEMP_THRESH_HALT] = 0,
+ [EC_TEMP_THRESH_WARN] = C_TO_K(100),
+ [EC_TEMP_THRESH_HIGH] = C_TO_K(105),
+ [EC_TEMP_THRESH_HALT] = C_TO_K(108),
},
.temp_host_release = {
- [EC_TEMP_THRESH_HIGH] = 0,
+ [EC_TEMP_THRESH_HIGH] = C_TO_K(85),
},
.temp_fan_off = 0,
.temp_fan_max = 0,