Skip to content

Commit

Permalink
dts: a64: adjust thermal trip points
Browse files Browse the repository at this point in the history
default values for alert1/crit are way too high.
  • Loading branch information
stefansaraev committed May 18, 2023
1 parent 0940983 commit 06780cf
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions arch/arm64/boot/dts/allwinner/sun50i-a64.dtsi
Expand Up @@ -195,21 +195,21 @@
trips {
cpu_alert0: cpu_alert0 {
/* milliCelsius */
temperature = <75000>;
temperature = <70000>;
hysteresis = <2000>;
type = "passive";
};

cpu_alert1: cpu_alert1 {
/* milliCelsius */
temperature = <90000>;
temperature = <80000>;
hysteresis = <2000>;
type = "hot";
};

cpu_crit: cpu_crit {
/* milliCelsius */
temperature = <110000>;
temperature = <90000>;
hysteresis = <2000>;
type = "critical";
};
Expand Down

0 comments on commit 06780cf

Please sign in to comment.