summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--board/puff/board.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/board/puff/board.c b/board/puff/board.c
index fe73dbd48a..54b5175c90 100644
--- a/board/puff/board.c
+++ b/board/puff/board.c
@@ -359,9 +359,9 @@ const struct fan_conf fan_conf_0 = {
};
const struct fan_rpm fan_rpm_0 = {
- .rpm_min = 2400,
- .rpm_start = 2400,
- .rpm_max = 4000,
+ .rpm_min = 2500,
+ .rpm_start = 2500,
+ .rpm_max = 5000,
};
const struct fan_t fans[] = {
@@ -381,16 +381,16 @@ BUILD_ASSERT(ARRAY_SIZE(mft_channels) == MFT_CH_COUNT);
const static struct ec_thermal_config thermal_a = {
.temp_host = {
[EC_TEMP_THRESH_WARN] = 0,
- [EC_TEMP_THRESH_HIGH] = C_TO_K(65),
- [EC_TEMP_THRESH_HALT] = C_TO_K(75),
+ [EC_TEMP_THRESH_HIGH] = C_TO_K(75),
+ [EC_TEMP_THRESH_HALT] = C_TO_K(90),
},
.temp_host_release = {
[EC_TEMP_THRESH_WARN] = 0,
- [EC_TEMP_THRESH_HIGH] = C_TO_K(55),
+ [EC_TEMP_THRESH_HIGH] = C_TO_K(65),
[EC_TEMP_THRESH_HALT] = 0,
},
.temp_fan_off = C_TO_K(25),
- .temp_fan_max = C_TO_K(55),
+ .temp_fan_max = C_TO_K(60),
};
struct ec_thermal_config thermal_params[] = {