diff options
author | hank.xie <hank.xie@quanta.corp-partner.google.com> | 2023-03-29 04:56:14 -0300 |
---|---|---|
committer | Chromeos LUCI <chromeos-scoped@luci-project-accounts.iam.gserviceaccount.com> | 2023-03-30 02:59:21 +0000 |
commit | 1e2cf7b02eb77709d81ac15ae612956f7ce62066 (patch) | |
tree | 545b6dab8aacb7e4f8071d24bdfb91d349cab458 /board | |
parent | 9bc769f7af79e4ab7b5b4cebee6db3bd310317c2 (diff) | |
download | chrome-ec-1e2cf7b02eb77709d81ac15ae612956f7ce62066.tar.gz |
lisbon: Modify the thermal sensor setting
To make the fan behavior more smooth when entering OS,
modify the thermal sensor setting based on dptf policy:
1. Set the temperature of fan_off as 40 degree.
2. Set the temperature of fan_max as 80 degree.
BUG=b:275651691
BRANCH=none
TEST=Verify the fan behavior during booting
Change-Id: Iae34efa3f08157600cad01d8f9885c92fe845ef4
Signed-off-by: hank.xie <hank.xie@quanta.corp-partner.google.com>
Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/ec/+/4379821
Reviewed-by: Ricky Chang <rickytlchang@chromium.org>
Reviewed-by: Devin Lu <devin.lu@quantatw.com>
Commit-Queue: Ricky Chang <rickytlchang@chromium.org>
Diffstat (limited to 'board')
-rw-r--r-- | board/lisbon/sensors.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/board/lisbon/sensors.c b/board/lisbon/sensors.c index 13948f60d8..99bc0a4304 100644 --- a/board/lisbon/sensors.c +++ b/board/lisbon/sensors.c @@ -96,8 +96,8 @@ BUILD_ASSERT(ARRAY_SIZE(temp_sensors) == TEMP_SENSOR_COUNT); .temp_host_release = { \ [EC_TEMP_THRESH_HIGH] = C_TO_K(65), \ }, \ - .temp_fan_off = C_TO_K(35), \ - .temp_fan_max = C_TO_K(50), \ + .temp_fan_off = C_TO_K(40), \ + .temp_fan_max = C_TO_K(80), \ } __maybe_unused static const struct ec_thermal_config thermal_cpu = THERMAL_CPU; |