meta-facebook: yosemite4: set all fan PWM to 80% as default
The fan IC will set the PWM to 100% after sled cycle, so the fans' speed
will exceed the warning threshold before the fan control service
starts.
Set all the fans' PWM to 80% to prevent the fans' speed exceed the
warning threshold before starting the phosphor-pid-control service.
Tested:
Checked all the fans' PWM are 80% before phosphor-pid-control service
starts.
Change-Id: I955f41b20c770aaad4a8176179dd20b11abde52f
Signed-off-by: Ricky CX Wu <ricky.cx.wu.wiwynn@gmail.com>
diff --git a/meta-facebook/meta-yosemite4/recipes-yosemite4/plat-svc/files/yosemite4-early-sys-init b/meta-facebook/meta-yosemite4/recipes-yosemite4/plat-svc/files/yosemite4-early-sys-init
index 7f02ad2..9766faf 100644
--- a/meta-facebook/meta-yosemite4/recipes-yosemite4/plat-svc/files/yosemite4-early-sys-init
+++ b/meta-facebook/meta-yosemite4/recipes-yosemite4/plat-svc/files/yosemite4-early-sys-init
@@ -15,6 +15,23 @@
fi
}
+set_all_fan_pwm_80_percent() {
+ # 255 * 80% = 204
+ pwm_value=204
+
+ for pwm_node in /sys/bus/i2c/devices/*/hwmon/*/pwm*
+ do
+ if [[ ! "$pwm_node" =~ _enable ]]; then
+ curr_pwm=$(cat "$pwm_node")
+
+ # Set PWM to 80% if current PWM is higher than 80%.
+ if [[ "$curr_pwm" -ge "$pwm_value" ]]; then
+ echo $pwm_value > "$pwm_node"
+ fi
+ fi
+ done
+}
+
set_sd_bic_interface_to_i3c()
{
for host_bus in $(seq 0 7);
@@ -60,6 +77,9 @@
# Enable all fan input as early as possible
enable_all_fan_input
+# Set all fan PWM to 80%
+set_all_fan_pwm_80_percent
+
if [ -n "$is_nuvoton_board" ]
then
# Set interface to SD BIC to I3C for Nuvoton BMC