summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDevin Lu <Devin.Lu@quantatw.com>2022-03-28 19:32:41 +0800
committerChromeos LUCI <chromeos-scoped@luci-project-accounts.iam.gserviceaccount.com>2022-04-13 11:36:18 +0000
commit302a665c88055af87c3b97ba281b371c70b06352 (patch)
tree2a5e5cb8b0988962ebd2c277e9e454034fc297e2
parent70016156d42b147bf3c8a65db22885648da3b699 (diff)
downloadchrome-ec-302a665c88055af87c3b97ba281b371c70b06352.tar.gz
anahera: Update thermal high/halt point version 6-4
BUG=b:199246802 BRANCH=none TEST=Thermal team verified thermal policy is expected. Signed-off-by: Devin Lu <Devin.Lu@quantatw.com> Change-Id: Ic46fd9587f60521210709a7fdf9a9ef5e1906d79 Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/ec/+/3581820 Reviewed-by: caveh jalali <caveh@chromium.org>
-rw-r--r--board/anahera/sensors.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/board/anahera/sensors.c b/board/anahera/sensors.c
index 1ebfa7b97b..851930d1d3 100644
--- a/board/anahera/sensors.c
+++ b/board/anahera/sensors.c
@@ -77,11 +77,11 @@ BUILD_ASSERT(ARRAY_SIZE(temp_sensors) == TEMP_SENSOR_COUNT);
#define THERMAL_FAN \
{ \
.temp_host = { \
- [EC_TEMP_THRESH_HIGH] = C_TO_K(73), \
+ [EC_TEMP_THRESH_HIGH] = C_TO_K(65), \
[EC_TEMP_THRESH_HALT] = C_TO_K(80), \
}, \
.temp_host_release = { \
- [EC_TEMP_THRESH_HIGH] = C_TO_K(65), \
+ [EC_TEMP_THRESH_HIGH] = C_TO_K(73), \
}, \
}
__maybe_unused static const struct ec_thermal_config thermal_fan = THERMAL_FAN;
@@ -128,8 +128,8 @@ __maybe_unused static const struct ec_thermal_config thermal_charger =
#define THERMAL_REGULATOR \
{ \
.temp_host = { \
- [EC_TEMP_THRESH_HIGH] = C_TO_K(53), \
- [EC_TEMP_THRESH_HALT] = C_TO_K(56), \
+ [EC_TEMP_THRESH_HIGH] = C_TO_K(55), \
+ [EC_TEMP_THRESH_HALT] = C_TO_K(60), \
}, \
.temp_host_release = { \
[EC_TEMP_THRESH_HIGH] = C_TO_K(48), \