summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen Chen <ben.chen2@quanta.corp-partner.google.com>2020-06-17 17:49:37 +0800
committerCommit Bot <commit-bot@chromium.org>2020-06-17 16:02:29 +0000
commitd327b1b94317f4cfb73401c3e2484a7d31215202 (patch)
tree17f9189b704cb9f90237c7edaabb12d59e4995a6
parent9d1d0f79f507c37d5fa039e12c9017453c90b531 (diff)
downloadchrome-ec-d327b1b94317f4cfb73401c3e2484a7d31215202.tar.gz
Puff: Update thermal config table
Follow the thermal team test, modify parameter that max/min Fan rpm and thermal config table. BUG=b:159172924 BRANCH=none TEST=Thermal team verified thermal policy is expected. Change-Id: I9b1442c8c2591dea5e7fcbdcd106ca19a3a7f4ae Signed-off-by: Ben Chen <ben.chen2@quanta.corp-partner.google.com> Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/ec/+/2249650 Reviewed-by: Andrew McRae <amcrae@chromium.org>
-rw-r--r--board/puff/board.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/board/puff/board.c b/board/puff/board.c
index fe73dbd48a..54b5175c90 100644
--- a/board/puff/board.c
+++ b/board/puff/board.c
@@ -359,9 +359,9 @@ const struct fan_conf fan_conf_0 = {
};
const struct fan_rpm fan_rpm_0 = {
- .rpm_min = 2400,
- .rpm_start = 2400,
- .rpm_max = 4000,
+ .rpm_min = 2500,
+ .rpm_start = 2500,
+ .rpm_max = 5000,
};
const struct fan_t fans[] = {
@@ -381,16 +381,16 @@ BUILD_ASSERT(ARRAY_SIZE(mft_channels) == MFT_CH_COUNT);
const static struct ec_thermal_config thermal_a = {
.temp_host = {
[EC_TEMP_THRESH_WARN] = 0,
- [EC_TEMP_THRESH_HIGH] = C_TO_K(65),
- [EC_TEMP_THRESH_HALT] = C_TO_K(75),
+ [EC_TEMP_THRESH_HIGH] = C_TO_K(75),
+ [EC_TEMP_THRESH_HALT] = C_TO_K(90),
},
.temp_host_release = {
[EC_TEMP_THRESH_WARN] = 0,
- [EC_TEMP_THRESH_HIGH] = C_TO_K(55),
+ [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(55),
+ .temp_fan_max = C_TO_K(60),
};
struct ec_thermal_config thermal_params[] = {