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 16:22:20 +0000
commitfee029907fcd7d507259fa529ac98db808c6e09f (patch)
tree3c0fb53d5329577993d60400b795f51b20a0e76b
parent8d4381efe4639e78379de8eac1857e809c805989 (diff)
downloadchrome-ec-fee029907fcd7d507259fa529ac98db808c6e09f.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> (cherry picked from commit d1af13802e268f629e0f591b8f4f16543ebc6322) Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/ec/+/2032550 Commit-Queue: Tim Wawrzynczak <twawrzynczak@chromium.org> Tested-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];