summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaisuke Nojiri <dnojiri@chromium.org>2019-05-22 10:50:02 -0700
committerCommit Bot <commit-bot@chromium.org>2019-05-23 15:49:00 +0000
commit58240c64498ae68f9d6801b4126af345b6d015a4 (patch)
treeb7fb6004b266fb94ee106f4645e83880c733974d
parentbdb6fe19d7bb8078407b237fec99e8f5650ec509 (diff)
downloadchrome-ec-58240c64498ae68f9d6801b4126af345b6d015a4.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/c/chromiumos/platform/ec/+/1625253 Reviewed-by: Daisuke Nojiri <dnojiri@chromium.org> Commit-Queue: Daisuke Nojiri <dnojiri@chromium.org> Tested-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 a4765c2d55..7732d35f5f 100644
--- a/board/nami/board.c
+++ b/board/nami/board.c
@@ -419,7 +419,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,
@@ -435,7 +435,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,