summaryrefslogtreecommitdiff
path: root/board/helios/board.c
diff options
context:
space:
mode:
Diffstat (limited to 'board/helios/board.c')
-rw-r--r--board/helios/board.c18
1 files changed, 6 insertions, 12 deletions
diff --git a/board/helios/board.c b/board/helios/board.c
index bb13c5531c..5630416818 100644
--- a/board/helios/board.c
+++ b/board/helios/board.c
@@ -387,26 +387,20 @@ const struct temp_sensor_t temp_sensors[] = {
};
BUILD_ASSERT(ARRAY_SIZE(temp_sensors) == TEMP_SENSOR_COUNT);
-
-/* Helios Temperature sensors */
-/*
- * TODO(b/124316213): These setting need to be reviewed and set appropriately
- * for Helios. They matter when the EC is controlling the fan as opposed to DPTF
- * control.
- */
+/* Helios temperature control thresholds */
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(80),
+ [EC_TEMP_THRESH_HIGH] = C_TO_K(65),
+ [EC_TEMP_THRESH_HALT] = C_TO_K(90),
},
.temp_host_release = {
[EC_TEMP_THRESH_WARN] = 0,
- [EC_TEMP_THRESH_HIGH] = C_TO_K(65),
+ [EC_TEMP_THRESH_HIGH] = C_TO_K(60),
[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(65),
+ .temp_fan_max = C_TO_K(80),
};
struct ec_thermal_config thermal_params[TEMP_SENSOR_COUNT];