ARM: dts: msm: Add TSENS configuration for kona

Temperature sensor(TSENS) driver monitors on board TSENS
sensors and provides an interface to thermal clients to
read temperature and set temperature thresholds for
notification. Add thermal zone configuration for TSENS
in Kona.

Change-Id: I7444826c3ffc4cf5e819010f42402ff0304305d4
Signed-off-by: Siddartha Mohanadoss <smohanad@codeaurora.org>
diff --git a/arch/arm64/boot/dts/qcom/kona.dtsi b/arch/arm64/boot/dts/qcom/kona.dtsi
index 5039a46..ea620cd 100644
--- a/arch/arm64/boot/dts/qcom/kona.dtsi
+++ b/arch/arm64/boot/dts/qcom/kona.dtsi
@@ -1969,6 +1969,28 @@
 		status = "ok";
 		qcom,firmware-name = "slpi";
 	};
+
+	tsens0: tsens@c222000 {
+		compatible = "qcom,tsens24xx";
+		reg = <0xc222000 0x4>,
+			<0xc263000 0x1ff>;
+		reg-names = "tsens_srot_physical",
+				"tsens_tm_physical";
+		interrupts = <0 506 0>, <0 508 0>;
+		interrupt-names = "tsens-upper-lower", "tsens-critical";
+		#thermal-sensor-cells = <1>;
+	};
+
+	tsens1: tsens@c223000 {
+		compatible = "qcom,tsens24xx";
+		reg = <0xc223000 0x4>,
+			<0xc265000 0x1ff>;
+		reg-names = "tsens_srot_physical",
+			"tsens_tm_physical";
+		interrupts = <0 507 0>, <0 509 0>;
+		interrupt-names = "tsens-upper-lower", "tsens-critical";
+		#thermal-sensor-cells = <1>;
+	};
 };
 
 #include "kona-bus.dtsi"
@@ -1989,4 +2011,5 @@
 
 #include "kona-camera.dtsi"
 #include "kona-qupv3.dtsi"
+#include "kona-thermal.dtsi"