summaryrefslogtreecommitdiff
path: root/baseboard
diff options
context:
space:
mode:
authorRob Barnes <robbarnes@google.com>2021-03-24 01:27:47 -0600
committerCommit Bot <commit-bot@chromium.org>2021-03-24 19:53:53 +0000
commitc3c18b964cb1a8e4c0149c5f53931be061b41246 (patch)
tree737ef3a3fc1a02c528dcf7cde9db54569ed08b92 /baseboard
parentc36ff98ad26632d2f175344a8017735ac011e14a (diff)
downloadchrome-ec-c3c18b964cb1a8e4c0149c5f53931be061b41246.tar.gz
guybrush: Set fan_off threshold to 0
Set fan off threshold to 0 to ensure fan is always running SOC is on. This is a helpful visual and audible signal during bringup. BUG=b:183544852 TEST=Turn on soc at 33C and see fan on BRANCH=None Signed-off-by: Rob Barnes <robbarnes@google.com> Change-Id: Ia552508132d42cfb332cc012431ebb68b3cefbc0 Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/ec/+/2783602 Reviewed-by: Diana Z <dzigterman@chromium.org>
Diffstat (limited to 'baseboard')
-rw-r--r--baseboard/guybrush/baseboard.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/baseboard/guybrush/baseboard.c b/baseboard/guybrush/baseboard.c
index 748d635cb3..5c517be91e 100644
--- a/baseboard/guybrush/baseboard.c
+++ b/baseboard/guybrush/baseboard.c
@@ -222,7 +222,8 @@ struct ec_thermal_config thermal_params[TEMP_SENSOR_COUNT] = {
.temp_host_release = {
[EC_TEMP_THRESH_HIGH] = C_TO_K(80),
},
- .temp_fan_off = C_TO_K(32),
+ /* TODO: Setting fan off to 0 so it's allways on */
+ .temp_fan_off = C_TO_K(0),
.temp_fan_max = C_TO_K(75),
},
[TEMP_SENSOR_CHARGER] = {