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 19:36:33 +0000
commit9a1310578c2c7cbe10ff092d45285fb42aa7052a (patch)
treeaa2c036b3fd1ce88324c7f7ee90233f74795bba9
parent94f1715ae2acac5bb68d31289cf46b9699a232be (diff)
downloadchrome-ec-9a1310578c2c7cbe10ff092d45285fb42aa7052a.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/+/2985259 Tested-by: Joe Tessler <jrt@chromium.org> Auto-Submit: Joe Tessler <jrt@chromium.org> Reviewed-by: Jeff Chase <jnchase@google.com> Commit-Queue: Jeff Chase <jnchase@google.com>
-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 f51b77df8b..5408af331a 100644
--- a/board/genesis/board.c
+++ b/board/genesis/board.c
@@ -215,9 +215,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[] = {
@@ -237,16 +237,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 = {