aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--arch/arm/boot/dts/tegra124-jetson-tk1.dts18
-rw-r--r--arch/arm/boot/dts/tegra124.dtsi60
2 files changed, 63 insertions, 15 deletions
diff --git a/arch/arm/boot/dts/tegra124-jetson-tk1.dts b/arch/arm/boot/dts/tegra124-jetson-tk1.dts
index 6403e0de540e..3cdc2326bc4f 100644
--- a/arch/arm/boot/dts/tegra124-jetson-tk1.dts
+++ b/arch/arm/boot/dts/tegra124-jetson-tk1.dts
@@ -2045,44 +2045,32 @@
2045 thermal-zones { 2045 thermal-zones {
2046 cpu { 2046 cpu {
2047 trips { 2047 trips {
2048 trip { 2048 cpu-shutdown-trip {
2049 temperature = <101000>; 2049 temperature = <101000>;
2050 hysteresis = <0>; 2050 hysteresis = <0>;
2051 type = "critical"; 2051 type = "critical";
2052 }; 2052 };
2053 }; 2053 };
2054
2055 cooling-maps {
2056 /* There are currently no cooling maps because there are no cooling devices */
2057 };
2058 }; 2054 };
2059 2055
2060 mem { 2056 mem {
2061 trips { 2057 trips {
2062 trip { 2058 mem-shutdown-trip {
2063 temperature = <101000>; 2059 temperature = <101000>;
2064 hysteresis = <0>; 2060 hysteresis = <0>;
2065 type = "critical"; 2061 type = "critical";
2066 }; 2062 };
2067 }; 2063 };
2068
2069 cooling-maps {
2070 /* There are currently no cooling maps because there are no cooling devices */
2071 };
2072 }; 2064 };
2073 2065
2074 gpu { 2066 gpu {
2075 trips { 2067 trips {
2076 trip { 2068 gpu-shutdown-trip {
2077 temperature = <101000>; 2069 temperature = <101000>;
2078 hysteresis = <0>; 2070 hysteresis = <0>;
2079 type = "critical"; 2071 type = "critical";
2080 }; 2072 };
2081 }; 2073 };
2082
2083 cooling-maps {
2084 /* There are currently no cooling maps because there are no cooling devices */
2085 };
2086 }; 2074 };
2087 }; 2075 };
2088}; 2076};
diff --git a/arch/arm/boot/dts/tegra124.dtsi b/arch/arm/boot/dts/tegra124.dtsi
index ea340f9de448..61c36a36f0c9 100644
--- a/arch/arm/boot/dts/tegra124.dtsi
+++ b/arch/arm/boot/dts/tegra124.dtsi
@@ -1154,6 +1154,21 @@
1154 1154
1155 thermal-sensors = 1155 thermal-sensors =
1156 <&soctherm TEGRA124_SOCTHERM_SENSOR_CPU>; 1156 <&soctherm TEGRA124_SOCTHERM_SENSOR_CPU>;
1157
1158 trips {
1159 cpu-shutdown-trip {
1160 temperature = <103000>;
1161 hysteresis = <0>;
1162 type = "critical";
1163 };
1164 };
1165
1166 cooling-maps {
1167 /*
1168 * There are currently no cooling maps,
1169 * because there are no cooling devices.
1170 */
1171 };
1157 }; 1172 };
1158 1173
1159 mem { 1174 mem {
@@ -1162,6 +1177,21 @@
1162 1177
1163 thermal-sensors = 1178 thermal-sensors =
1164 <&soctherm TEGRA124_SOCTHERM_SENSOR_MEM>; 1179 <&soctherm TEGRA124_SOCTHERM_SENSOR_MEM>;
1180
1181 trips {
1182 mem-shutdown-trip {
1183 temperature = <103000>;
1184 hysteresis = <0>;
1185 type = "critical";
1186 };
1187 };
1188
1189 cooling-maps {
1190 /*
1191 * There are currently no cooling maps,
1192 * because there are no cooling devices.
1193 */
1194 };
1165 }; 1195 };
1166 1196
1167 gpu { 1197 gpu {
@@ -1170,6 +1200,21 @@
1170 1200
1171 thermal-sensors = 1201 thermal-sensors =
1172 <&soctherm TEGRA124_SOCTHERM_SENSOR_GPU>; 1202 <&soctherm TEGRA124_SOCTHERM_SENSOR_GPU>;
1203
1204 trips {
1205 gpu-shutdown-trip {
1206 temperature = <101000>;
1207 hysteresis = <0>;
1208 type = "critical";
1209 };
1210 };
1211
1212 cooling-maps {
1213 /*
1214 * There are currently no cooling maps,
1215 * because there are no cooling devices.
1216 */
1217 };
1173 }; 1218 };
1174 1219
1175 pllx { 1220 pllx {
@@ -1178,6 +1223,21 @@
1178 1223
1179 thermal-sensors = 1224 thermal-sensors =
1180 <&soctherm TEGRA124_SOCTHERM_SENSOR_PLLX>; 1225 <&soctherm TEGRA124_SOCTHERM_SENSOR_PLLX>;
1226
1227 trips {
1228 pllx-shutdown-trip {
1229 temperature = <103000>;
1230 hysteresis = <0>;
1231 type = "critical";
1232 };
1233 };
1234
1235 cooling-maps {
1236 /*
1237 * There are currently no cooling maps,
1238 * because there are no cooling devices.
1239 */
1240 };
1181 }; 1241 };
1182 }; 1242 };
1183 1243