summaryrefslogtreecommitdiff
path: root/board/kinox
diff options
context:
space:
mode:
authorMatt Wang <matt_wang@compal.corp-partner.google.com>2022-07-11 11:17:04 +0800
committerChromeos LUCI <chromeos-scoped@luci-project-accounts.iam.gserviceaccount.com>2022-07-13 03:19:13 +0000
commitc7f783e9b31b1091c0b9f43bfcb86425052895c4 (patch)
treeee7710ec0c9a0e67f9319269199920ff295ce37b /board/kinox
parentee9dc345f7903980e8b438aa25b9d1c11c00fc5e (diff)
downloadchrome-ec-c7f783e9b31b1091c0b9f43bfcb86425052895c4.tar.gz
kinox: modify fan table setting
Modify fan table setting. BUG=b:238277632 BRANCH=none TEST=The THM team member test success.make BOARD=kinox passed. Signed-off-by: Matt Wang <matt_wang@compal.corp-partner.google.com> Change-Id: I50f2fce224a976f145e858bdc0f0060515f875d3 Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/ec/+/3754782 Reviewed-by: Ricky Chang <rickytlchang@chromium.org>
Diffstat (limited to 'board/kinox')
-rw-r--r--board/kinox/fans.c6
-rw-r--r--board/kinox/sensors.c4
2 files changed, 5 insertions, 5 deletions
diff --git a/board/kinox/fans.c b/board/kinox/fans.c
index 4c5dbfc8c1..60cf5878d6 100644
--- a/board/kinox/fans.c
+++ b/board/kinox/fans.c
@@ -37,9 +37,9 @@ static const struct fan_conf fan_conf_0 = {
* Set minimum at around 30% PWM.
*/
static const struct fan_rpm fan_rpm_0 = {
- .rpm_min = 750,
- .rpm_start = 750,
- .rpm_max = 5200,
+ .rpm_min = 1000,
+ .rpm_start = 1000,
+ .rpm_max = 4200,
};
const struct fan_t fans[FAN_CH_COUNT] = {
diff --git a/board/kinox/sensors.c b/board/kinox/sensors.c
index ccd2855f3d..3441d2621e 100644
--- a/board/kinox/sensors.c
+++ b/board/kinox/sensors.c
@@ -104,8 +104,8 @@ BUILD_ASSERT(ARRAY_SIZE(temp_sensors) == TEMP_SENSOR_COUNT);
[EC_TEMP_THRESH_HIGH] = C_TO_K(90), \
[EC_TEMP_THRESH_HALT] = C_TO_K(90), \
}, \
- .temp_fan_off = C_TO_K(35), \
- .temp_fan_max = C_TO_K(65), \
+ .temp_fan_off = C_TO_K(25), \
+ .temp_fan_max = C_TO_K(75), \
}
__maybe_unused static const struct ec_thermal_config thermal_cpu = THERMAL_CPU;