diff options
author | Scott Chao <scott_chao@wistron.corp-partner.google.com> | 2020-10-12 14:18:37 +0800 |
---|---|---|
committer | Commit Bot <commit-bot@chromium.org> | 2020-10-16 01:13:00 +0000 |
commit | c7d2f4d6c5fca9280ccc8899b863c9d9842188de (patch) | |
tree | 9a44f0084aeee6f63d26f2560d857bb7f4c7783d /board/eldrid | |
parent | d8a3ff28d9101464bf9c9a3ef0830d661e68b3e6 (diff) | |
download | chrome-ec-c7d2f4d6c5fca9280ccc8899b863c9d9842188de.tar.gz |
eldrid: modify thermal table
BUG=b:170143672
BRANCH=none
TEST=make -j BOARD=eldrid
TEST=make buildall
TEST=verify by thermal team
Signed-off-by: Scott Chao <scott_chao@wistron.corp-partner.google.com>
Change-Id: If5d97126d156f45ff36315179733d9e7abb423c5
Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/ec/+/2465606
Reviewed-by: Casper Chang <casper_chang@wistron.corp-partner.google.com>
Reviewed-by: Abe Levkoy <alevkoy@chromium.org>
Reviewed-by: Keith Short <keithshort@chromium.org>
Diffstat (limited to 'board/eldrid')
-rw-r--r-- | board/eldrid/thermal.c | 44 |
1 files changed, 16 insertions, 28 deletions
diff --git a/board/eldrid/thermal.c b/board/eldrid/thermal.c index 2f4210c36c..5534089b7f 100644 --- a/board/eldrid/thermal.c +++ b/board/eldrid/thermal.c @@ -95,51 +95,39 @@ struct fan_step { static const struct fan_step fan_table[] = { { /* level 0 */ - .on = {-1, -1, 36, -1}, + .on = {-1, -1, 40, -1}, .off = {-1, -1, 0, -1}, .rpm = {0}, }, { /* level 1 */ - .on = {-1, -1, 38, -1}, - .off = {-1, -1, 36, -1}, - .rpm = {2000}, + .on = {-1, -1, 44, -1}, + .off = {-1, -1, 40, -1}, + .rpm = {3200}, }, { /* level 2 */ - .on = {-1, -1, 41, -1}, - .off = {-1, -1, 39, -1}, - .rpm = {2600}, + .on = {-1, -1, 48, -1}, + .off = {-1, -1, 46, -1}, + .rpm = {3500}, }, { /* level 3 */ - .on = {-1, -1, 44, -1}, - .off = {-1, -1, 42, -1}, - .rpm = {3000}, + .on = {-1, -1, 52, -1}, + .off = {-1, -1, 50, -1}, + .rpm = {4000}, }, { /* level 4 */ - .on = {-1, -1, 46, -1}, - .off = {-1, -1, 44, -1}, - .rpm = {3300}, + .on = {-1, -1, 56, -1}, + .off = {-1, -1, 54, -1}, + .rpm = {4600}, }, { /* level 5 */ - .on = {-1, -1, 49, -1}, - .off = {-1, -1, 47, -1}, - .rpm = {3600}, - }, - { - /* level 6 */ - .on = {-1, -1, 51, -1}, - .off = {-1, -1, 49, -1}, - .rpm = {4200}, - }, - { - /* level 7 */ - .on = {-1, -1, 55, -1}, - .off = {-1, -1, 52, -1}, - .rpm = {4700}, + .on = {-1, -1, 60, -1}, + .off = {-1, -1, 58, -1}, + .rpm = {5100}, }, }; |