Merge branch 'linus' of git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6
[sfrench/cifs-2.6.git] / Documentation / devicetree / bindings / thermal / qcom-tsens.txt
1 * QCOM SoC Temperature Sensor (TSENS)
2
3 Required properties:
4 - compatible :
5  - "qcom,msm8916-tsens" : For 8916 Family of SoCs
6  - "qcom,msm8974-tsens" : For 8974 Family of SoCs
7  - "qcom,msm8996-tsens" : For 8996 Family of SoCs
8
9 - reg: Address range of the thermal registers
10 - #thermal-sensor-cells : Should be 1. See ./thermal.txt for a description.
11 - #qcom,sensors: Number of sensors in tsens block
12 - Refer to Documentation/devicetree/bindings/nvmem/nvmem.txt to know how to specify
13 nvmem cells
14
15 Example:
16 tsens: thermal-sensor@900000 {
17                 compatible = "qcom,msm8916-tsens";
18                 reg = <0x4a8000 0x2000>;
19                 nvmem-cells = <&tsens_caldata>, <&tsens_calsel>;
20                 nvmem-cell-names = "caldata", "calsel";
21                 #thermal-sensor-cells = <1>;
22         };