Commit d174e946 authored by Marcel Ziswiler's avatar Marcel Ziswiler Committed by Thierry Reding

ARM: tegra: apalis-tk1: Set critical trips

Set "critical" trip temperatures for cpu, gpu, mem and pllx thermal
zones. These trips can trigger shut down or reset.

Similar to commit 40823f8e ("arm: tegra: set critical trips for
Tegra124").
Signed-off-by: default avatarMarcel Ziswiler <marcel.ziswiler@toradex.com>
Signed-off-by: default avatarThierry Reding <treding@nvidia.com>
parent 563554b5
...@@ -2041,53 +2041,32 @@ sound { ...@@ -2041,53 +2041,32 @@ sound {
thermal-zones { thermal-zones {
cpu { cpu {
trips { trips {
trip@0 { cpu-shutdown-trip {
temperature = <101000>; temperature = <101000>;
hysteresis = <0>; hysteresis = <0>;
type = "critical"; type = "critical";
}; };
}; };
cooling-maps {
/*
* There are currently no cooling maps because
* there are no cooling devices
*/
};
}; };
mem { mem {
trips { trips {
trip@0 { mem-shutdown-trip {
temperature = <101000>; temperature = <101000>;
hysteresis = <0>; hysteresis = <0>;
type = "critical"; type = "critical";
}; };
}; };
cooling-maps {
/*
* There are currently no cooling maps because
* there are no cooling devices
*/
};
}; };
gpu { gpu {
trips { trips {
trip@0 { gpu-shutdown-trip {
temperature = <101000>; temperature = <101000>;
hysteresis = <0>; hysteresis = <0>;
type = "critical"; type = "critical";
}; };
}; };
cooling-maps {
/*
* There are currently no cooling maps because
* there are no cooling devices
*/
};
}; };
}; };
}; };
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment