summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDevin Lu <Devin.Lu@quantatw.com>2022-08-23 17:53:38 +0800
committerChromeos LUCI <chromeos-scoped@luci-project-accounts.iam.gserviceaccount.com>2022-08-25 00:23:33 +0000
commit3c2449bcf7f2c818247edc329fc6457fb2e40a0e (patch)
tree9e833c438fcaab080c6780b75313438ed77040f1
parent832c26b2eeb07700b754d28d9c567e18e34fc57d (diff)
downloadchrome-ec-3c2449bcf7f2c818247edc329fc6457fb2e40a0e.tar.gz
vell: Update fan table version 5
BUG=b:216026302 BRANCH=none TEST=Thermal team verified thermal policy is expected. Signed-off-by: Devin Lu <Devin.Lu@quantatw.com> Change-Id: Ib04d4fed5f0976ee18d831f54913dfaff9921c62 Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/ec/+/3853304 Tested-by: Devin Lu <devin.lu@quantatw.com> Commit-Queue: Devin Lu <devin.lu@quantatw.com> Reviewed-by: caveh jalali <caveh@chromium.org>
-rw-r--r--board/vell/thermal.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/board/vell/thermal.c b/board/vell/thermal.c
index cdbef06006..f165f06496 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, 60, 48, 47, -1 },
+ .on = { 48, 65, 48, 50, -1 },
.off = { 99, 99, 99, 99, -1 },
.rpm = { 0 },
},
{
/* level 1 */
- .on = { 50, 60, 50, 49, -1 },
- .off = { 47, 99, 47, 46, -1 },
+ .on = { 50, 65, 50, 52, -1 },
+ .off = { 47, 99, 47, 49, -1 },
.rpm = { 3100 },
},
{
/* level 2 */
- .on = { 53, 60, 53, 52, -1 },
- .off = { 49, 99, 49, 48, -1 },
- .rpm = { 3850 },
+ .on = { 53, 65, 53, 54, -1 },
+ .off = { 49, 99, 49, 51, -1 },
+ .rpm = { 3900 },
},
{
/* level 3 */
.on = { 100, 100, 100, 100, -1 },
- .off = { 51, 59, 51, 50, -1 },
- .rpm = { 5500 },
+ .off = { 51, 64, 51, 52, -1 },
+ .rpm = { 5650 },
},
};