summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorElsie Shih <elsie_shih@wistron.corp-partner.google.com>2022-10-14 10:11:35 +0800
committerChromeos LUCI <chromeos-scoped@luci-project-accounts.iam.gserviceaccount.com>2022-10-19 01:13:12 +0000
commitd9b9eeb3b6bbdd69173f3544dcd709e34696b735 (patch)
tree6c70f0135953c865d2b23602f8dc5c50ea6a1c31
parent980ba3ad06699be1dd4ec44b89790d5fac22a287 (diff)
downloadchrome-ec-d9b9eeb3b6bbdd69173f3544dcd709e34696b735.tar.gz
moli: update custom fan control
Follow "Moli DVT Fan Table_20221018.xlsx" to update thermal table. BUG=b:236294162 BRANCH=none TEST=make BOARD=moli Signed-off-by: Elsie Shih <elsie_shih@wistron.corp-partner.google.com> Change-Id: Ie47b1eddb000b8c32edaee1f005b188ba2346985 Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/ec/+/3954785 Reviewed-by: Boris Mittelberg <bmbm@google.com> Tested-by: Scott Chao <scott_chao@wistron.corp-partner.google.com>
-rw-r--r--board/moli/thermal.c18
1 files changed, 9 insertions, 9 deletions
diff --git a/board/moli/thermal.c b/board/moli/thermal.c
index 110d8ae2db..16aaa5c069 100644
--- a/board/moli/thermal.c
+++ b/board/moli/thermal.c
@@ -52,21 +52,21 @@ static const struct fan_step fan_table[] = {
},
{
/* level 3 */
- .on = { -1, 70, -1 },
- .off = { -1, 67, -1 },
- .rpm = { 3500 },
+ .on = { -1, 64, -1 },
+ .off = { -1, 61, -1 },
+ .rpm = { 3700 },
},
{
/* level 4 */
- .on = { -1, 80, -1 },
- .off = { -1, 77, -1 },
- .rpm = { 4000 },
+ .on = { -1, 67, -1 },
+ .off = { -1, 64, -1 },
+ .rpm = { 4400 },
},
{
/* level 5 */
- .on = { -1, 90, -1 },
- .off = { -1, 87, -1 },
- .rpm = { 4500 },
+ .on = { -1, 70, -1 },
+ .off = { -1, 67, -1 },
+ .rpm = { 5000 },
},
};
const int num_fan_levels = ARRAY_SIZE(fan_table);