I’m building a cooling solution for the BPI-R4 that will have a fan moving air through the entire enclosure, and I’d like the fan RPM to follow several thermal zones–the SoC, WiFi PHYs, SFP modules, and the NVMe SSD. I know mt7988a.dtsi is the place to look in. But, it’s an unfamiliar territory for me, so, rather than trying to figure it out on my own, I’d appreciate an advice.
I also suspect that mt7988a-bananapi-bpi-r4.dtsi would be a better place for the new code, as it is device-specific.
This is what I start with in mt7988a.dtsi.
thermal-zones {
cpu_thermal: cpu-thermal {
polling-delay-passive = <1000>;
polling-delay = <1000>;
thermal-sensors = <&lvts 0>;
trips {
cpu_trip_crit: crit {
temperature = <125000>;
hysteresis = <2000>;
type = "critical";
};
cpu_trip_hot: hot {
temperature = <120000>;
hysteresis = <2000>;
type = "hot";
};
cpu_trip_active_high: active-high {
temperature = <115000>;
hysteresis = <2000>;
type = "active";
};
cpu_trip_active_med: active-med {
temperature = <85000>;
hysteresis = <2000>;
type = "active";
};
cpu_trip_active_low: active-low {
temperature = <40000>;
hysteresis = <2000>;
type = "active";
};
};
cooling-maps {
cpu-active-high {
/* active: set fan to cooling level 2 */
cooling-device = <&fan 3 3>;
trip = <&cpu_trip_active_high>;
};
cpu-active-low {
/* active: set fan to cooling level 1 */
cooling-device = <&fan 2 2>;
trip = <&cpu_trip_active_med>;
};
cpu-passive {
/* passive: set fan to cooling level 0 */
cooling-device = <&fan 1 1>;
trip = <&cpu_trip_active_low>;
};
};
};
};
I’d also like to connect the fan tachometer to GPIO to be able to read the RPM, but all of the pins on the 26-pin GPIO header seem to have a specific function. What am I missing here?