Skip to content

Commit

Permalink
JetHome: Update JetHub D2 dts file
Browse files Browse the repository at this point in the history
  • Loading branch information
adeepn committed Jul 10, 2024
1 parent f5a9fc2 commit 26cbf6e
Showing 1 changed file with 57 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -652,3 +652,60 @@
reg = <0x32 0x20>;
};
};

&cpu_thermal {
trips {
cpu_passive: cpu-passive {
temperature = <70000>; /* millicelsius */
hysteresis = <2000>; /* millicelsius */
type = "passive";
};

cpu_hot: cpu-hot {
temperature = <85000>; /* millicelsius */
hysteresis = <2000>; /* millicelsius */
type = "hot";
};

cpu_critical: cpu-critical {
temperature = <90000>; /* millicelsius */
hysteresis = <2000>; /* millicelsius */
type = "critical";
};
};

cooling-maps {
map0 {
trip = <&cpu_passive>;
cooling-device = <&cpu0 THERMAL_NO_LIMIT THERMAL_NO_LIMIT>,
<&cpu1 THERMAL_NO_LIMIT THERMAL_NO_LIMIT>,
<&cpu2 THERMAL_NO_LIMIT THERMAL_NO_LIMIT>,
<&cpu3 THERMAL_NO_LIMIT THERMAL_NO_LIMIT>;
};

map1 {
trip = <&cpu_hot>;
cooling-device = <&cpu0 THERMAL_NO_LIMIT THERMAL_NO_LIMIT>,
<&cpu1 THERMAL_NO_LIMIT THERMAL_NO_LIMIT>,
<&cpu2 THERMAL_NO_LIMIT THERMAL_NO_LIMIT>,
<&cpu3 THERMAL_NO_LIMIT THERMAL_NO_LIMIT>;
};
};
};

&ddr_thermal {
trips {
ddr_passive: ddr-passive {
temperature = <70000>; /* millicelsius */
hysteresis = <2000>; /* millicelsius */
type = "passive";
};

ddr_critical: ddr-critical {
temperature = <85000>; /* millicelsius */
hysteresis = <2000>; /* millicelsius */
type = "critical";
};
};

};

0 comments on commit 26cbf6e

Please sign in to comment.