arm64: dts: juno: Align thermal zone names with bindings
authorKrzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
Sat, 9 Dec 2023 17:16:12 +0000 (18:16 +0100)
committerSudeep Holla <sudeep.holla@arm.com>
Tue, 12 Dec 2023 10:04:51 +0000 (10:04 +0000)
Thermal bindings require thermal zone node names to match
certain patterns:

  | juno.dtb: thermal-zones: 'big-cluster', 'gpu0', 'gpu1',
  | 'little-cluster', 'pmic', 'soc'
  |   do not match any of the regexes:
  |       '^[a-zA-Z][a-zA-Z0-9\\-]{1,12}-thermal$', 'pinctrl-[0-9]+'

Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
Acked-by: Liviu Dudau <liviu.dudau@arm.com>
Link: https://lore.kernel.org/r/20231209171612.250868-1-krzysztof.kozlowski@linaro.org
Signed-off-by: Sudeep Holla <sudeep.holla@arm.com>
arch/arm64/boot/dts/arm/juno-base.dtsi
arch/arm64/boot/dts/arm/juno-scmi.dtsi

index 8b4d280b1e7e78831604ac1520164328cf3a727c..b897f5542c0a1c9b2adb72797327adf83bea90b9 100644 (file)
        };
 
        thermal-zones {
-               pmic {
+               pmic-thermal {
                        polling-delay = <1000>;
                        polling-delay-passive = <100>;
                        thermal-sensors = <&scpi_sensors0 0>;
                        };
                };
 
-               soc {
+               soc-thermal {
                        polling-delay = <1000>;
                        polling-delay-passive = <100>;
                        thermal-sensors = <&scpi_sensors0 3>;
                        };
                };
 
-               big_cluster_thermal_zone: big-cluster {
+               big_cluster_thermal_zone: big-cluster-thermal {
                        polling-delay = <1000>;
                        polling-delay-passive = <100>;
                        thermal-sensors = <&scpi_sensors0 21>;
                        status = "disabled";
                };
 
-               little_cluster_thermal_zone: little-cluster {
+               little_cluster_thermal_zone: little-cluster-thermal {
                        polling-delay = <1000>;
                        polling-delay-passive = <100>;
                        thermal-sensors = <&scpi_sensors0 22>;
                        status = "disabled";
                };
 
-               gpu0_thermal_zone: gpu0 {
+               gpu0_thermal_zone: gpu0-thermal {
                        polling-delay = <1000>;
                        polling-delay-passive = <100>;
                        thermal-sensors = <&scpi_sensors0 23>;
                        status = "disabled";
                };
 
-               gpu1_thermal_zone: gpu1 {
+               gpu1_thermal_zone: gpu1-thermal {
                        polling-delay = <1000>;
                        polling-delay-passive = <100>;
                        thermal-sensors = <&scpi_sensors0 24>;
index ec85cd2c733cec77b875344e5b82aa2f0eb64dde..31929e2377d8a41392ae159a2d0402d2d94bcd4a 100644 (file)
        };
 
        thermal-zones {
-               pmic {
+               pmic-thermal {
                        thermal-sensors = <&scmi_sensors0 0>;
                };
 
-               soc {
+               soc-thermal {
                        thermal-sensors = <&scmi_sensors0 3>;
                };
 
-               big-cluster {
+               big-cluster-thermal {
                        thermal-sensors = <&scmi_sensors0 21>;
                };
 
-               little-cluster {
+               little-cluster-thermal {
                        thermal-sensors = <&scmi_sensors0 22>;
                };
 
-               gpu0 {
+               gpu0-thermal {
                        thermal-sensors = <&scmi_sensors0 23>;
                };
 
-               gpu1 {
+               gpu1-thermal {
                        thermal-sensors = <&scmi_sensors0 24>;
                };
        };