qcom-tsens.txt 677 B

12345678910111213141516171819202122
  1. * QCOM SoC Temperature Sensor (TSENS)
  2. Required properties:
  3. - compatible :
  4. - "qcom,msm8916-tsens" : For 8916 Family of SoCs
  5. - "qcom,msm8974-tsens" : For 8974 Family of SoCs
  6. - "qcom,msm8996-tsens" : For 8996 Family of SoCs
  7. - reg: Address range of the thermal registers
  8. - #thermal-sensor-cells : Should be 1. See ./thermal.txt for a description.
  9. - Refer to Documentation/devicetree/bindings/nvmem/nvmem.txt to know how to specify
  10. nvmem cells
  11. Example:
  12. tsens: thermal-sensor@900000 {
  13. compatible = "qcom,msm8916-tsens";
  14. reg = <0x4a8000 0x2000>;
  15. nvmem-cells = <&tsens_caldata>, <&tsens_calsel>;
  16. nvmem-cell-names = "caldata", "calsel";
  17. #thermal-sensor-cells = <1>;
  18. };