summaryrefslogtreecommitdiff
path: root/board/gaelin/fans.c
diff options
context:
space:
mode:
authorRaymond Chung <raymondchung@ami.corp-partner.google.com>2022-11-01 14:45:42 +0800
committerChromeos LUCI <chromeos-scoped@luci-project-accounts.iam.gserviceaccount.com>2022-11-10 09:28:51 +0000
commita7ac3c24ef9ea655be4f8fb1a59bcd9b2c460f29 (patch)
tree43b9068763950b5e8d02919644982a7cf7d5d2a3 /board/gaelin/fans.c
parent871f6b34054a07cd68c7cfec459db272d000b434 (diff)
downloadchrome-ec-release-R109-15237.B-main.tar.gz
gaelin: Enable the fan controlrelease-R109-15237.B-main
Fan control with custom fan table. BUG=b:249000573 BRANCH=None TEST=Thermal team verified thermal policy is expected. Change-Id: Ifbd3d8ffbc8035e5b3075bf840beccd158e28e18 Signed-off-by: Raymond Chung <raymondchung@ami.corp-partner.google.com> Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/ec/+/3995727 Code-Coverage: Zoss <zoss-cl-coverage@prod.google.com> Reviewed-by: Derek Huang <derekhuang@google.com>
Diffstat (limited to 'board/gaelin/fans.c')
-rw-r--r--board/gaelin/fans.c12
1 files changed, 3 insertions, 9 deletions
diff --git a/board/gaelin/fans.c b/board/gaelin/fans.c
index 6828438a10..5f54e6e63c 100644
--- a/board/gaelin/fans.c
+++ b/board/gaelin/fans.c
@@ -30,16 +30,10 @@ static const struct fan_conf fan_conf_0 = {
.enable_gpio = GPIO_EN_PP5000_FAN,
};
-/*
- * TOOD(b/197478860): need to update for real fan
- *
- * Prototype fan spins at about 7200 RPM at 100% PWM.
- * Set minimum at around 30% PWM.
- */
static const struct fan_rpm fan_rpm_0 = {
- .rpm_min = 2200,
- .rpm_start = 2200,
- .rpm_max = 7200,
+ .rpm_min = 2350,
+ .rpm_start = 2350,
+ .rpm_max = 4100,
};
const struct fan_t fans[FAN_CH_COUNT] = {