summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDevin Lu <Devin.Lu@quantatw.com>2023-02-07 16:47:39 +0800
committerChromeos LUCI <chromeos-scoped@luci-project-accounts.iam.gserviceaccount.com>2023-02-17 01:57:43 +0000
commit76f511d38ff2eb53ac173d7d0988b38b695b4767 (patch)
treea7426c35624396d640f9d187d8976e5c3a015438
parentf7a5b61656cf545e8ce036100a15ce16f8a4644c (diff)
downloadchrome-ec-76f511d38ff2eb53ac173d7d0988b38b695b4767.tar.gz
jinlon: Adjust TEMP_SENSOR_4 thresholds to reduce fan speed in clamshell
[Conflicts] There is no clang-format for firmware branch. BUG=b:261696880 BRANCH=firmware-hatch-12672.B TEST=Thermal team verified thermal policy is expected. Change-Id: Ia376eddaaaf8036aa244011a7cf097e8f883ca7a Signed-off-by: Devin Lu <Devin.Lu@quantatw.com> Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/ec/+/4225587 Tested-by: Devin Lu <devin.lu@quantatw.com> Commit-Queue: Devin Lu <devin.lu@quantatw.com> Reviewed-by: Daisuke Nojiri <dnojiri@chromium.org> Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/ec/+/4236857
-rw-r--r--board/jinlon/thermal.c30
1 files changed, 15 insertions, 15 deletions
diff --git a/board/jinlon/thermal.c b/board/jinlon/thermal.c
index 03437fa3cd..c6387d8bcf 100644
--- a/board/jinlon/thermal.c
+++ b/board/jinlon/thermal.c
@@ -40,50 +40,50 @@ static const struct fan_step *fan_step_table;
static const struct fan_step fan_table_clamshell[] = {
{
/* level 0 */
- .on = {0, -1, 54, 37},
+ .on = {0, -1, 54, 41},
.off = {99, -1, 99, 99},
- .rpm = {0, 0},
+ .rpm = {0, 0 },
},
{
/* level 1 */
- .on = {0, -1, 57, 39},
- .off = {99, -1, 54, 37},
+ .on = {0, -1, 57, 42},
+ .off = {99, -1, 54, 41},
.rpm = {3950, 3850},
},
{
/* level 2 */
- .on = {0, -1, 58, 40},
- .off = {99, -1, 57, 39},
+ .on = {0, -1, 58, 43},
+ .off = {99, -1, 57, 42},
.rpm = {4200, 4100},
},
{
/* level 3 */
- .on = {0, -1, 59, 41},
- .off = {99, -1, 58, 40},
+ .on = {0, -1, 59, 44},
+ .off = {99, -1, 58, 43},
.rpm = {4550, 4450},
},
{
/* level 4 */
- .on = {62, -1, 60, 42},
- .off = {58, -1, 59, 41},
+ .on = {62, -1, 60, 45},
+ .off = {58, -1, 59, 44},
.rpm = {4900, 4800},
},
{
/* level 5 */
- .on = {64, -1, 61, 43},
- .off = {62, -1, 60, 42},
+ .on = {64, -1, 61, 46},
+ .off = {62, -1, 60, 45},
.rpm = {5250, 5150},
},
{
/* level 6 */
- .on = {65, -1, 64, 45},
- .off = {63, -1, 61, 43},
+ .on = {65, -1, 64, 47},
+ .off = {63, -1, 61, 46},
.rpm = {5400, 5300},
},
{
/* level 7 */
.on = {100, -1, 100, 100},
- .off = {65, -1, 62, 44},
+ .off = {65, -1, 62, 47},
.rpm = {6000, 5900},
},
};