summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTang Qijun <qijun.tang@ecs.corp-partner.google.com>2023-03-28 18:41:02 +0800
committerChromeos LUCI <chromeos-scoped@luci-project-accounts.iam.gserviceaccount.com>2023-03-28 16:15:45 +0000
commitec8d022b35f20a3511583ea368756fa30d74e137 (patch)
treedc34f2242114f2fc1465e11cdada0a554723258e
parent9f74af66f690b20180f1173f50138d9f5777c806 (diff)
downloadchrome-ec-ec8d022b35f20a3511583ea368756fa30d74e137.tar.gz
crystaldrift: moidfy fan config
According to the thermal team's request to modify the fan config. BUG=b:275268397 BRANCH=skyrim TEST=thermal team member test pass Change-Id: If4f72788cc846c739560249c6946e8b358e36caa Signed-off-by: Tang Qijun <qijun.tang@ecs.corp-partner.google.com> Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/ec/+/4376481 Reviewed-by: Chao Gui <chaogui@google.com> Commit-Queue: Chao Gui <chaogui@google.com>
-rw-r--r--zephyr/program/skyrim/crystaldrift/project.overlay18
1 files changed, 18 insertions, 0 deletions
diff --git a/zephyr/program/skyrim/crystaldrift/project.overlay b/zephyr/program/skyrim/crystaldrift/project.overlay
index e4b4368d34..c534a62ecf 100644
--- a/zephyr/program/skyrim/crystaldrift/project.overlay
+++ b/zephyr/program/skyrim/crystaldrift/project.overlay
@@ -179,3 +179,21 @@
usb-muxes = <&amd_fp6_port0>;
};
};
+/* fan overrides */
+&fan0 {
+ pwms = <&pwm0 0 PWM_KHZ(25) PWM_POLARITY_NORMAL>;
+ rpm_min = <2500>;
+ rpm_start = <2500>;
+ rpm_max = <4800>;
+};
+
+&temp_sensor_cpu {
+ temp_host_warn = <90>;
+ temp_host_high = <102>;
+ temp_host_halt = <104>;
+ temp_host_release_warn = <87>;
+ temp_host_release_high = <92>;
+ temp_host_release_halt = <94>;
+ temp_fan_off = <38>;
+ temp_fan_max = <76>;
+};