summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDevin Lu <Devin.Lu@quantatw.com>2022-09-29 14:56:09 +0800
committerChromeos LUCI <chromeos-scoped@luci-project-accounts.iam.gserviceaccount.com>2022-09-30 03:40:40 +0000
commita1f572980aa59699bbabf59fcf24e7d62b2defe0 (patch)
tree34d5df7f37b5bb110c20d1210f0eb15e8259ce84
parent5bd2b143e89adb435be2b0ddbd31186845648fa8 (diff)
downloadchrome-ec-a1f572980aa59699bbabf59fcf24e7d62b2defe0.tar.gz
vell: Update fan table version 7
BUG=b:216026302 BRANCH=none TEST=Thermal team verified thermal policy is expected. Signed-off-by: Devin Lu <Devin.Lu@quantatw.com> Change-Id: I4f94333b3eca1271247328f99066b3a5e28be525 Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/ec/+/3928566 Commit-Queue: Devin Lu <devin.lu@quantatw.com> Reviewed-by: YH Lin <yueherngl@chromium.org> Reviewed-by: caveh jalali <caveh@chromium.org> Tested-by: Devin Lu <devin.lu@quantatw.com>
-rw-r--r--board/vell/thermal.c18
1 files changed, 9 insertions, 9 deletions
diff --git a/board/vell/thermal.c b/board/vell/thermal.c
index 29d438761b..045bcb92fa 100644
--- a/board/vell/thermal.c
+++ b/board/vell/thermal.c
@@ -37,27 +37,27 @@ struct fan_step {
static const struct fan_step fan_table[] = {
{
/* level 0 */
- .on = { 48, 62, 48, 50, -1 },
+ .on = { 47, 62, 48, 50, -1 },
.off = { 99, 99, 99, 99, -1 },
.rpm = { 0 },
},
{
/* level 1 */
- .on = { 50, 62, 50, 52, -1 },
- .off = { 47, 99, 47, 49, -1 },
- .rpm = { 3200 },
+ .on = { 49, 62, 50, 52, -1 },
+ .off = { 46, 99, 47, 49, -1 },
+ .rpm = { 3100 },
},
{
/* level 2 */
- .on = { 53, 62, 53, 54, -1 },
- .off = { 49, 99, 49, 51, -1 },
- .rpm = { 4050 },
+ .on = { 51, 62, 53, 54, -1 },
+ .off = { 48, 99, 49, 51, -1 },
+ .rpm = { 3750 },
},
{
/* level 3 */
.on = { 100, 100, 100, 100, -1 },
- .off = { 51, 60, 51, 52, -1 },
- .rpm = { 5800 },
+ .off = { 50, 60, 51, 52, -1 },
+ .rpm = { 5100 },
},
};