summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Huang <david.huang@quanta.corp-partner.google.com>2021-06-24 16:12:23 +0800
committerCommit Bot <commit-bot@chromium.org>2021-06-24 14:49:45 +0000
commitf76ceb679c6fd86c608077d56600c7b4c5d7cf0a (patch)
treedbb00ec486f6aa1961fe1c85a7a36a52392d839f
parent959abd2ca1b541ebaf469b706bcd8ebd9c759e51 (diff)
downloadchrome-ec-f76ceb679c6fd86c608077d56600c7b4c5d7cf0a.tar.gz
Genesis: Update thermal table
Update new thermal table BUG=b:181627614 BRANCH=master TEST=Thermal team verified thermal policy is expected. Signed-off-by: David Huang <david.huang@quanta.corp-partner.google.com> Change-Id: Id7be64d22a3fce230952ec6a68094c08d245c6e6 Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/ec/+/2984454 Reviewed-by: Joe Tessler <jrt@chromium.org> Commit-Queue: Joe Tessler <jrt@chromium.org> Tested-by: Joe Tessler <jrt@chromium.org>
-rw-r--r--board/genesis/board.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/board/genesis/board.c b/board/genesis/board.c
index 7f6452e051..ff056ec79a 100644
--- a/board/genesis/board.c
+++ b/board/genesis/board.c
@@ -213,9 +213,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[] = {
@@ -235,16 +235,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 = {