Is there any configuration available to set fan pwm io low/high when in NVIDIA’s private boot loader?
Something like uboot env?
Is there any configuration available to set fan pwm io low/high when in NVIDIA’s private boot loader?
Something like uboot env?
Try to adjust this block in tegra234-mb1-bct-pmic-p3767-0000-a02.dts and reflash the board.
This is the earliest setting for bootloader to control FAN pwm.
thermal {
block@0 {
pwm;
controller-id = <2>; /* PWM3 for Fan */
source-frq-hz = <4800000>;
period-ns = <45334>; /* 22 KHz */
min-microvolts = <0>;
max-microvolts = <5000000>;
init-microvolts = <2500000>;
pwm-clock-enable;
enable;
};
};
};
Is there any alternative way to change the value of IO high/low state beside reflash the bootloader, such as utilities to configure GPIO states dynamically under linux environment or bootloader comands to alter the value of env?
If you are talking about early boot stage, then no. Everything in early boot stage could only be configured by flashing.
I’ll try to flash dts related stuff. But no experience here.
This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.