summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJacky Wang <jacky5_wang@pegatron.corp-partner.google.com>2021-04-20 18:05:21 +0800
committerCommit Bot <commit-bot@chromium.org>2021-04-21 02:23:04 +0000
commit06b68e96901695c289b9ac75b4e318e39dec07f9 (patch)
treef8be852cc72d5fec95a60c680907873e138e133c
parent07a2b0e11684be396edf1f421b9e4dc2b8b30683 (diff)
downloadchrome-ec-06b68e96901695c289b9ac75b4e318e39dec07f9.tar.gz
drobit: Update EC thermal table
Update EC thermal table for throttle and temp_fan_max setting. BUG=b:177777472 BRANCH=firmware-volteer-13672.B TEST=make BOARD=drobit 1. Verified pass by thermal team. Signed-off-by: Jacky Wang <jacky5_wang@pegatron.corp-partner.google.com> Change-Id: Ibfa9c543a1d99e02815882091d495aa601d3640b Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/ec/+/2839963 Reviewed-by: Michael5 Chen <michael5_chen1@pegatron.corp-partner.google.com> Reviewed-by: Keith Short <keithshort@chromium.org>
-rw-r--r--board/drobit/board.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/board/drobit/board.c b/board/drobit/board.c
index a13ff9bea9..db9b3f1107 100644
--- a/board/drobit/board.c
+++ b/board/drobit/board.c
@@ -131,14 +131,14 @@ const struct fan_t fans[FAN_CH_COUNT] = {
*/
const static struct ec_thermal_config thermal_cpu = {
.temp_host = {
- [EC_TEMP_THRESH_HIGH] = C_TO_K(70),
+ [EC_TEMP_THRESH_HIGH] = C_TO_K(72),
[EC_TEMP_THRESH_HALT] = C_TO_K(80),
},
.temp_host_release = {
[EC_TEMP_THRESH_HIGH] = C_TO_K(65),
},
.temp_fan_off = C_TO_K(35),
- .temp_fan_max = C_TO_K(50),
+ .temp_fan_max = C_TO_K(75),
};
/*
@@ -154,14 +154,14 @@ const static struct ec_thermal_config thermal_cpu = {
*/
const static struct ec_thermal_config thermal_inductor = {
.temp_host = {
- [EC_TEMP_THRESH_HIGH] = C_TO_K(75),
+ [EC_TEMP_THRESH_HIGH] = C_TO_K(72),
[EC_TEMP_THRESH_HALT] = C_TO_K(80),
},
.temp_host_release = {
[EC_TEMP_THRESH_HIGH] = C_TO_K(65),
},
.temp_fan_off = C_TO_K(40),
- .temp_fan_max = C_TO_K(55),
+ .temp_fan_max = C_TO_K(75),
};