summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDevin Lu <Devin.Lu@quantatw.com>2022-04-08 16:34:51 +0800
committerChromeos LUCI <chromeos-scoped@luci-project-accounts.iam.gserviceaccount.com>2022-04-11 08:57:24 +0000
commit3e3ef8f7a1bcad57c1cbfb17c39f6572c366f791 (patch)
treed1ccd52ad519e746abceacc3110eff0ecfa3d74a
parent76f3e5ad39745d82b2e2cb1febe5ac6b5d4fa367 (diff)
downloadchrome-ec-3e3ef8f7a1bcad57c1cbfb17c39f6572c366f791.tar.gz
vell: Update thermal high/halt point version 3
BUG=b:216026302 BRANCH=none TEST=Thermal team verified thermal policy is expected. Signed-off-by: Devin Lu <Devin.Lu@quantatw.com> Change-Id: Ie1a27714fbc80ee08bcfb67271389580f0a2ad76 Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/ec/+/3577327 Reviewed-by: Boris Mittelberg <bmbm@google.com>
-rw-r--r--board/vell/sensors.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/board/vell/sensors.c b/board/vell/sensors.c
index aad7fc4ae4..3a4ceb2dc9 100644
--- a/board/vell/sensors.c
+++ b/board/vell/sensors.c
@@ -211,10 +211,10 @@ BUILD_ASSERT(ARRAY_SIZE(temp_sensors) == TEMP_SENSOR_COUNT);
{ \
.temp_host = { \
[EC_TEMP_THRESH_HIGH] = C_TO_K(85), \
- [EC_TEMP_THRESH_HALT] = C_TO_K(90), \
+ [EC_TEMP_THRESH_HALT] = C_TO_K(95), \
}, \
.temp_host_release = { \
- [EC_TEMP_THRESH_HIGH] = C_TO_K(80), \
+ [EC_TEMP_THRESH_HIGH] = C_TO_K(90), \
}, \
}
__maybe_unused static const struct ec_thermal_config thermal_cpu = THERMAL_CPU;
@@ -228,11 +228,11 @@ __maybe_unused static const struct ec_thermal_config thermal_cpu = THERMAL_CPU;
#define THERMAL_CHARGER \
{ \
.temp_host = { \
- [EC_TEMP_THRESH_HIGH] = C_TO_K(70), \
- [EC_TEMP_THRESH_HALT] = C_TO_K(80), \
+ [EC_TEMP_THRESH_HIGH] = C_TO_K(85), \
+ [EC_TEMP_THRESH_HALT] = C_TO_K(95), \
}, \
.temp_host_release = { \
- [EC_TEMP_THRESH_HIGH] = C_TO_K(65), \
+ [EC_TEMP_THRESH_HIGH] = C_TO_K(90), \
}, \
}
__maybe_unused static const struct ec_thermal_config thermal_charger =