1 # SPDX-License-Identifier: (GPL-2.0 OR MIT)
2 # Copyright 2019 Linaro Ltd.
5 $id: http://devicetree.org/schemas/thermal/qcom-tsens.yaml#
6 $schema: http://devicetree.org/meta-schemas/core.yaml#
8 title: QCOM SoC Temperature Sensor (TSENS)
11 - Amit Kucheria <amitk@kernel.org>
14 QCOM SoCs have TSENS IP to allow temperature measurement. There are currently
15 three distinct major versions of the IP that is supported by a single driver.
16 The IP versions are named v0.1, v1 and v2 in the driver, where v0.1 captures
17 everything before v1 when there was no versioning information.
22 - description: v0.1 of TSENS
28 - const: qcom,tsens-v0_1
30 - description: v1 of TSENS
35 - const: qcom,tsens-v1
37 - description: v2 of TSENS
46 - const: qcom,tsens-v2
50 - description: TM registers
51 - description: SROT registers
56 - description: Combined interrupt if upper or lower threshold crossed
57 - description: Interrupt if critical threshold crossed
69 Reference to an nvmem node for the calibration data
80 Number of sensors enabled on this platform
81 $ref: /schemas/types.yaml#/definitions/uint32
85 "#thermal-sensor-cells":
88 Number of cells required to uniquely identify the thermal sensors. Since
89 we have multiple sensors this is set to 1
123 - "#thermal-sensor-cells"
125 additionalProperties: false
129 #include <dt-bindings/interrupt-controller/arm-gic.h>
130 // Example 1 (legacy: for pre v1 IP):
131 tsens1: thermal-sensor@900000 {
132 compatible = "qcom,msm8916-tsens", "qcom,tsens-v0_1";
133 reg = <0x4a9000 0x1000>, /* TM */
134 <0x4a8000 0x1000>; /* SROT */
136 nvmem-cells = <&tsens_caldata>, <&tsens_calsel>;
137 nvmem-cell-names = "calib", "calib_sel";
139 interrupts = <GIC_SPI 184 IRQ_TYPE_LEVEL_HIGH>;
140 interrupt-names = "uplow";
143 #thermal-sensor-cells = <1>;
147 #include <dt-bindings/interrupt-controller/arm-gic.h>
148 // Example 2 (for any platform containing v1 of the TSENS IP):
149 tsens2: thermal-sensor@4a9000 {
150 compatible = "qcom,qcs404-tsens", "qcom,tsens-v1";
151 reg = <0x004a9000 0x1000>, /* TM */
152 <0x004a8000 0x1000>; /* SROT */
154 nvmem-cells = <&tsens_caldata>;
155 nvmem-cell-names = "calib";
157 interrupts = <GIC_SPI 506 IRQ_TYPE_LEVEL_HIGH>;
158 interrupt-names = "uplow";
160 #qcom,sensors = <10>;
161 #thermal-sensor-cells = <1>;
165 #include <dt-bindings/interrupt-controller/arm-gic.h>
166 // Example 3 (for any platform containing v2 of the TSENS IP):
167 tsens3: thermal-sensor@c263000 {
168 compatible = "qcom,sdm845-tsens", "qcom,tsens-v2";
169 reg = <0xc263000 0x1ff>,
172 interrupts = <GIC_SPI 506 IRQ_TYPE_LEVEL_HIGH>,
173 <GIC_SPI 508 IRQ_TYPE_LEVEL_HIGH>;
174 interrupt-names = "uplow", "critical";
176 #qcom,sensors = <13>;
177 #thermal-sensor-cells = <1>;