ti,tmp117.yaml 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
  2. %YAML 1.2
  3. ---
  4. $id: http://devicetree.org/schemas/iio/temperature/ti,tmp117.yaml#
  5. $schema: http://devicetree.org/meta-schemas/core.yaml#
  6. title: TI TMP117 - Digital temperature sensor with integrated NV memory
  7. description: |
  8. TI TMP116/117 - Digital temperature sensor with integrated NV memory that
  9. supports I2C interface.
  10. https://www.ti.com/lit/gpn/tmp116
  11. https://www.ti.com/lit/gpn/tmp117
  12. maintainers:
  13. - Puranjay Mohan <puranjay12@gmail.com>
  14. properties:
  15. compatible:
  16. enum:
  17. - ti,tmp116
  18. - ti,tmp117
  19. reg:
  20. maxItems: 1
  21. vcc-supply:
  22. description: provide VCC power to the sensor.
  23. label:
  24. description: Unique name to identify which device this is.
  25. required:
  26. - compatible
  27. - reg
  28. - vcc-supply
  29. additionalProperties: false
  30. examples:
  31. - |
  32. i2c {
  33. #address-cells = <1>;
  34. #size-cells = <0>;
  35. tmp117@48 {
  36. compatible = "ti,tmp117";
  37. reg = <0x48>;
  38. vcc-supply = <&pmic_reg_3v3>;
  39. };
  40. };