summaryrefslogtreecommitdiff
path: root/board/ambassador
diff options
context:
space:
mode:
authorNeill Corlett <corlett@google.com>2021-01-21 11:48:11 -0500
committerCommit Bot <commit-bot@chromium.org>2021-01-21 22:17:56 +0000
commit5c64785a3a93354cf401573e83fd9229c47c06e7 (patch)
tree9f6c8509b6402dbb666128064b0681a5132b9978 /board/ambassador
parent6fc9c34b860ec6bb9d26048a52d1835a34884ce2 (diff)
downloadchrome-ec-5c64785a3a93354cf401573e83fd9229c47c06e7.tar.gz
ambassador: Update fan and thermal settings.
BUG=b:177765580 TEST=Built the EC firmware Change-Id: I56b9aeebd9cfdc647ddb6460619792f76b0d8673 Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/ec/+/2643216 Tested-by: Neill Corlett <corlett@google.com> Reviewed-by: Joe Tessler <jrt@chromium.org> Commit-Queue: Neill Corlett <corlett@google.com>
Diffstat (limited to 'board/ambassador')
-rw-r--r--board/ambassador/board.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/board/ambassador/board.c b/board/ambassador/board.c
index fd6c045d4d..f21d768ec2 100644
--- a/board/ambassador/board.c
+++ b/board/ambassador/board.c
@@ -363,9 +363,9 @@ const struct fan_conf fan_conf_0 = {
};
const struct fan_rpm fan_rpm_0 = {
- .rpm_min = 1900,
- .rpm_start = 2400,
- .rpm_max = 4300,
+ .rpm_min = 2500,
+ .rpm_start = 2500,
+ .rpm_max = 5200,
};
const struct fan_t fans[] = {
@@ -385,16 +385,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(68),
- [EC_TEMP_THRESH_HALT] = C_TO_K(78),
+ [EC_TEMP_THRESH_HIGH] = C_TO_K(78),
+ [EC_TEMP_THRESH_HALT] = C_TO_K(85),
},
.temp_host_release = {
[EC_TEMP_THRESH_WARN] = 0,
- [EC_TEMP_THRESH_HIGH] = C_TO_K(58),
+ [EC_TEMP_THRESH_HIGH] = C_TO_K(70),
[EC_TEMP_THRESH_HALT] = 0,
},
- .temp_fan_off = C_TO_K(41),
- .temp_fan_max = C_TO_K(72),
+ .temp_fan_off = C_TO_K(25),
+ .temp_fan_max = C_TO_K(84),
};
const static struct ec_thermal_config thermal_b = {