On 6.11.2023 09:39, Neil Armstrong wrote:
Add initial DTSI for the Qualcomm SM8650 platform,Just a couple nits
only contains nodes which doesn't depend on interconnect.
Signed-off-by: Neil Armstrong <neil.armstrong@xxxxxxxxxx>
---
[...]
+ cpu2-bottom-thermal {indentation
+ polling-delay-passive = <0>;
+ polling-delay = <0>;
+ thermal-sensors = <&tsens0 6>;
+
+ trips {
+ trip-point0 {
+ temperature = <90000>;
+ hysteresis = <2000>;
+ type = "passive";
+ };
+
+ trip-point1 {
+ temperature = <95000>;
+ hysteresis = <2000>;
+ type = "passive";
+ };
+
+ cpu-critical {
+ temperature = <110000>;[...]
+ hysteresis = <1000>;
+ type = "critical";
+ };
+ };
+ };
+The two above nodes (which are repeated under many tzones) sound made up
+ nsphmx-0-thermal {
+ polling-delay-passive = <10>;
+ polling-delay = <0>;
+ thermal-sensors = <&tsens2 8>;
+
+ trips {
+ thermal-engine-config {
+ temperature = <125000>;
+ hysteresis = <1000>;
+ type = "passive";
+ };
+
+ thermal-hal-config {
+ temperature = <125000>;
+ hysteresis = <1000>;
+ type = "passive";
+ };
just to be consumed by a bunch of android binaries
Or at least the second one, maybe "thermal engine" is some hw/fw part?
+"reset mon" is not a very enticing name either..
+ reset-mon-config {
+ temperature = <115000>;...which leads me to believe only this one is meaningful
+ hysteresis = <5000>;
+ type = "passive";
+ };
+
+ junction-config {
same goes for all tzones that have a similar mess :/
+ temperature = <95000>;
+ hysteresis = <5000>;
+ type = "passive";
+ };
Konrad