ODROID-N2/N2-PLUS: pwm-fan: Changed the trip point.

Change-Id: I2dcee110ff1939216dfdb20e0069f5298b43e9ad
Signed-off-by: Luke Go <sangch.go@gmail.com>
This commit is contained in:
Luke Go
2020-07-14 11:56:12 +09:00
committed by Luke go
parent cd92231325
commit b4e114c615

View File

@@ -15,6 +15,8 @@
*
*/
#include <include/dt-bindings/thermal/thermal.h>
/{
aliases {
serial0 = &uart_AO;
@@ -266,17 +268,12 @@
&soc_thermal {
trips {
fan_0: trip-point@4 {
temperature = <45000>;
temperature = <65000>;
hysteresis = <5000>;
type = "active";
};
fan_1: trip-point@5 {
temperature = <55000>;
hysteresis = <5000>;
type = "active";
};
fan_2: trip-point@6 {
temperature = <60000>;
temperature = <75000>;
hysteresis = <5000>;
type = "active";
};
@@ -284,15 +281,11 @@
cooling-maps {
fan_cooling_map0 {
trip = <&fan_0>;
cooling-device = <&pwmfan 0 1>;
cooling-device = <&pwmfan THERMAL_NO_LIMIT 2>;
};
fan_cooling_map1 {
trip = <&fan_1>;
cooling-device = <&pwmfan 1 2>;
};
fan_cooling_map2 {
trip = <&fan_2>;
cooling-device = <&pwmfan 2 3>;
cooling-device = <&pwmfan 2 THERMAL_NO_LIMIT>;
};
};
};