xref: /freebsd/sys/contrib/device-tree/Bindings/hwmon/adi,ad741x.yaml (revision 5def4c47d4bd90b209b9b4a4ba9faec15846d8fd)
1*5def4c47SEmmanuel Vadot# SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause)
2*5def4c47SEmmanuel Vadot%YAML 1.2
3*5def4c47SEmmanuel Vadot---
4*5def4c47SEmmanuel Vadot
5*5def4c47SEmmanuel Vadot$id: http://devicetree.org/schemas/hwmon/adi,ad741x.yaml#
6*5def4c47SEmmanuel Vadot$schema: http://devicetree.org/meta-schemas/core.yaml#
7*5def4c47SEmmanuel Vadot
8*5def4c47SEmmanuel Vadottitle: Analog Devices AD7416/AD7417/AD7418 temperature sensors
9*5def4c47SEmmanuel Vadot
10*5def4c47SEmmanuel Vadotmaintainers:
11*5def4c47SEmmanuel Vadot  - Krzysztof Kozlowski <krzk@kernel.org>
12*5def4c47SEmmanuel Vadot
13*5def4c47SEmmanuel Vadotproperties:
14*5def4c47SEmmanuel Vadot  compatible:
15*5def4c47SEmmanuel Vadot    enum:
16*5def4c47SEmmanuel Vadot      - adi,ad7416
17*5def4c47SEmmanuel Vadot      - adi,ad7417
18*5def4c47SEmmanuel Vadot      - adi,ad7418
19*5def4c47SEmmanuel Vadot
20*5def4c47SEmmanuel Vadot  reg:
21*5def4c47SEmmanuel Vadot    maxItems: 1
22*5def4c47SEmmanuel Vadot
23*5def4c47SEmmanuel Vadotrequired:
24*5def4c47SEmmanuel Vadot  - compatible
25*5def4c47SEmmanuel Vadot  - reg
26*5def4c47SEmmanuel Vadot
27*5def4c47SEmmanuel VadotadditionalProperties: false
28*5def4c47SEmmanuel Vadot
29*5def4c47SEmmanuel Vadotexamples:
30*5def4c47SEmmanuel Vadot  - |
31*5def4c47SEmmanuel Vadot    i2c {
32*5def4c47SEmmanuel Vadot        #address-cells = <1>;
33*5def4c47SEmmanuel Vadot        #size-cells = <0>;
34*5def4c47SEmmanuel Vadot
35*5def4c47SEmmanuel Vadot        temperature-sensor@28 {
36*5def4c47SEmmanuel Vadot            compatible = "adi,ad7418";
37*5def4c47SEmmanuel Vadot            reg = <0x28>;
38*5def4c47SEmmanuel Vadot        };
39*5def4c47SEmmanuel Vadot    };
40