Skip to content

Commit c706510

Browse files
kiram9JohnAZoidberg
authored andcommitted
fwk update temp limits, revert _mk
update temperature limits for virtual thermal sensor revert 96476e8634ee84aa3cfa8696ab24e7ca84846bc2 board.c which incorrectly switched to millikelvin readings .read = f75397_get_val, This would cause overtemp emergency shutdowns. Signed-off-by: Kieran Levin <ktl@frame.work>
1 parent 0b61c8e commit c706510

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

board/hx30/board.c

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1039,7 +1039,7 @@ const struct temp_sensor_t temp_sensors[] = {
10391039
[TEMP_SENSOR2_REMOTE] = {
10401040
.name = "F75397_VCCGT",
10411041
.type = TEMP_SENSOR_TYPE_BOARD,
1042-
.read = f75397_get_val_mk,
1042+
.read = f75397_get_val,
10431043
.idx = F75397_IDX_REMOTE1
10441044
},
10451045
};
@@ -1107,8 +1107,8 @@ static const struct ec_thermal_config thermal_inductor_cpu = {
11071107
[EC_TEMP_THRESH_HIGH] = C_TO_K(78),
11081108
[EC_TEMP_THRESH_HALT] = 0,
11091109
},
1110-
.temp_fan_off = C_TO_K(51),
1111-
.temp_fan_max = C_TO_K(69),
1110+
.temp_fan_off = C_TO_K(55),
1111+
.temp_fan_max = C_TO_K(80),
11121112
};
11131113
static const struct ec_thermal_config thermal_inductor_ddr = {
11141114
.temp_host = {
@@ -1151,8 +1151,8 @@ static const struct ec_thermal_config thermal_cpu = {
11511151
[EC_TEMP_THRESH_HIGH] = 0,
11521152
[EC_TEMP_THRESH_HALT] = 0,
11531153
},
1154-
.temp_fan_off = C_TO_K(103),
1155-
.temp_fan_max = C_TO_K(105),
1154+
.temp_fan_off = C_TO_K(60),
1155+
.temp_fan_max = C_TO_K(90),
11561156
};
11571157
#endif
11581158

0 commit comments

Comments
 (0)