xref: /linux/Documentation/devicetree/bindings/iio/temperature/ti,tmp117.yaml (revision 3a2c4d55e32ad65efebdb6de44eef3bfa08bb49d)
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
7title: TI TMP117 - Digital temperature sensor with integrated NV memory
8
9description: |
10    TI TMP116/117/119 - Digital temperature sensor with integrated NV memory
11    that supports I2C interface.
12      https://www.ti.com/lit/gpn/tmp116
13      https://www.ti.com/lit/gpn/tmp117
14      https://www.ti.com/lit/gpn/tmp119
15
16maintainers:
17  - Puranjay Mohan <puranjay12@gmail.com>
18
19properties:
20  compatible:
21    oneOf:
22      - enum:
23          - ti,tmp116
24          - ti,tmp117
25      - items:
26          - enum:
27              - ti,tmp119
28          - const: ti,tmp117
29
30  reg:
31    maxItems: 1
32
33  vcc-supply:
34    description: provide VCC power to the sensor.
35
36  label:
37    description: Unique name to identify which device this is.
38
39required:
40  - compatible
41  - reg
42  - vcc-supply
43
44additionalProperties: false
45
46examples:
47  - |
48    i2c {
49        #address-cells = <1>;
50        #size-cells = <0>;
51
52        tmp117@48 {
53            compatible = "ti,tmp117";
54            reg = <0x48>;
55            vcc-supply = <&pmic_reg_3v3>;
56        };
57    };
58