summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDevin Lu <devin.lu@quantatw.com>2020-01-16 11:15:25 +0800
committerCommit Bot <commit-bot@chromium.org>2020-01-31 03:01:42 +0000
commitd1af13802e268f629e0f591b8f4f16543ebc6322 (patch)
tree517c59badf455a61c6547f07ae0c4d038ddbd32d
parentd181c052e5c90f78fa2dde64c82690962de39fb5 (diff)
downloadchrome-ec-d1af13802e268f629e0f591b8f4f16543ebc6322.tar.gz
dratini: change thermal configuration for DVT
BUG=b:147792204 BRANCH=hatch TEST=manually remove dptf control then do following: make sure system shutdown when over 75 degree with temp sensor 1. make sure system shutdown when over 70 degree with temp sensor 2. make sure fan works when over 40 degree with temp sensor 1. make sure fan fully on when over 70 degree with temp sensor 1. make sure fan works when over 40 degree with temp sensor 2. make sure fan fully on when over 55 degree with temp sensor 2. Change-Id: I51de773107df248b393e04e5ee6755a06712728c Signed-off-by: Devin Lu <Devin.Lu@quantatw.com> Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/ec/+/2002992 Reviewed-by: Tim Wawrzynczak <twawrzynczak@chromium.org>
-rw-r--r--board/dratini/board.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/board/dratini/board.c b/board/dratini/board.c
index 958428dc02..f254e18172 100644
--- a/board/dratini/board.c
+++ b/board/dratini/board.c
@@ -330,31 +330,31 @@ BUILD_ASSERT(ARRAY_SIZE(temp_sensors) == TEMP_SENSOR_COUNT);
const static struct ec_thermal_config thermal_a = {
.temp_host = {
[EC_TEMP_THRESH_WARN] = 0,
- [EC_TEMP_THRESH_HIGH] = C_TO_K(75),
- [EC_TEMP_THRESH_HALT] = C_TO_K(85),
+ [EC_TEMP_THRESH_HIGH] = C_TO_K(73),
+ [EC_TEMP_THRESH_HALT] = C_TO_K(75),
},
.temp_host_release = {
[EC_TEMP_THRESH_WARN] = 0,
[EC_TEMP_THRESH_HIGH] = C_TO_K(65),
[EC_TEMP_THRESH_HALT] = 0,
},
- .temp_fan_off = C_TO_K(25),
+ .temp_fan_off = C_TO_K(40),
.temp_fan_max = C_TO_K(70),
};
const static struct ec_thermal_config thermal_b = {
.temp_host = {
[EC_TEMP_THRESH_WARN] = 0,
- [EC_TEMP_THRESH_HIGH] = C_TO_K(75),
- [EC_TEMP_THRESH_HALT] = C_TO_K(75),
+ [EC_TEMP_THRESH_HIGH] = C_TO_K(68),
+ [EC_TEMP_THRESH_HALT] = C_TO_K(70),
},
.temp_host_release = {
[EC_TEMP_THRESH_WARN] = 0,
[EC_TEMP_THRESH_HIGH] = C_TO_K(65),
[EC_TEMP_THRESH_HALT] = 0,
},
- .temp_fan_off = C_TO_K(25),
- .temp_fan_max = C_TO_K(50),
+ .temp_fan_off = C_TO_K(40),
+ .temp_fan_max = C_TO_K(55),
};
struct ec_thermal_config thermal_params[TEMP_SENSOR_COUNT];