summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaisuke Nojiri <dnojiri@chromium.org>2019-05-22 10:50:02 -0700
committerchrome-bot <chrome-bot@chromium.org>2019-05-24 15:11:39 -0700
commit6466d2fa96fd822ea09ab3c4fd43a1f2f58ec54a (patch)
tree60a71fe483b66f73f07120fc8d5441d5c261e134
parent7a2778ea9c85a385193b46c4258996d53e5ea960 (diff)
downloadchrome-ec-6466d2fa96fd822ea09ab3c4fd43a1f2f58ec54a.tar.gz
Nami: Increase thermal thresholds to avoid auto-shutdown
This patch increases thermal shutdown thresholds for Pantheon. The test shows with higher thresholds, Pantheon can last 40 hours in operational temperature (40c). Signed-off-by: Daisuke Nojiri <dnojiri@chromium.org> BUG=b/133224156 BRANCH=nami TEST=See the bug. Change-Id: Ifa8bbbede014449208511b41f9bbea9cbdea9396 Reviewed-on: https://chromium-review.googlesource.com/1625252 Commit-Ready: Daisuke Nojiri <dnojiri@chromium.org> Tested-by: Daisuke Nojiri <dnojiri@chromium.org> Legacy-Commit-Queue: Commit Bot <commit-bot@chromium.org> Reviewed-by: Daisuke Nojiri <dnojiri@chromium.org>
-rw-r--r--board/nami/board.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/board/nami/board.c b/board/nami/board.c
index 1b680f955a..fc56150239 100644
--- a/board/nami/board.c
+++ b/board/nami/board.c
@@ -420,7 +420,7 @@ const static struct ec_thermal_config thermal_c1 = {
.temp_host = {
[EC_TEMP_THRESH_WARN] = 0,
[EC_TEMP_THRESH_HIGH] = C_TO_K(66),
- [EC_TEMP_THRESH_HALT] = C_TO_K(71),
+ [EC_TEMP_THRESH_HALT] = C_TO_K(80),
},
.temp_host_release = {
[EC_TEMP_THRESH_WARN] = 0,
@@ -436,7 +436,7 @@ const static struct ec_thermal_config thermal_c2 = {
.temp_host = {
[EC_TEMP_THRESH_WARN] = 0,
[EC_TEMP_THRESH_HIGH] = C_TO_K(74),
- [EC_TEMP_THRESH_HALT] = C_TO_K(79),
+ [EC_TEMP_THRESH_HALT] = C_TO_K(82),
},
.temp_host_release = {
[EC_TEMP_THRESH_WARN] = 0,