summaryrefslogtreecommitdiff
path: root/board/puff
diff options
context:
space:
mode:
authorDavid Huang <david.huang@quanta.corp-partner.google.com>2020-08-28 16:25:11 +0800
committerCommit Bot <commit-bot@chromium.org>2020-09-02 09:08:47 +0000
commitba7a196d905caab84696687a3f6b3f6cc19622a4 (patch)
tree4ad20b97e39aee5ecc7afbdab95cd13bd3d17493 /board/puff
parent87ab3c968b29fd366276601086e47a0e1af2f8df (diff)
downloadchrome-ec-ba7a196d905caab84696687a3f6b3f6cc19622a4.tar.gz
puff: update thermal table
Update new thermal table BUG=b:166696500 BRANCH=master TEST=Thermal team verified thermal policy is expected. Signed-off-by: David Huang <david.huang@quanta.corp-partner.google.com> Change-Id: Ie729cb44469ab07bb7a72b661685f833a7871ede Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/ec/+/2379367 Reviewed-by: Andrew McRae <amcrae@chromium.org>
Diffstat (limited to 'board/puff')
-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 7073ebaa76..99064aa042 100644
--- a/board/puff/board.c
+++ b/board/puff/board.c
@@ -363,9 +363,9 @@ const struct fan_conf fan_conf_0 = {
};
const struct fan_rpm fan_rpm_0 = {
- .rpm_min = 2500,
- .rpm_start = 2500,
- .rpm_max = 5000,
+ .rpm_min = 1900,
+ .rpm_start = 2400,
+ .rpm_max = 4300,
};
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(75),
- [EC_TEMP_THRESH_HALT] = C_TO_K(90),
+ [EC_TEMP_THRESH_HIGH] = C_TO_K(68),
+ [EC_TEMP_THRESH_HALT] = C_TO_K(78),
},
.temp_host_release = {
[EC_TEMP_THRESH_WARN] = 0,
- [EC_TEMP_THRESH_HIGH] = C_TO_K(65),
+ [EC_TEMP_THRESH_HIGH] = C_TO_K(58),
[EC_TEMP_THRESH_HALT] = 0,
},
.temp_fan_off = C_TO_K(25),
- .temp_fan_max = C_TO_K(60),
+ .temp_fan_max = C_TO_K(55),
};
struct ec_thermal_config thermal_params[] = {