xref: /linux/Documentation/devicetree/bindings/hwmon/pmbus/adi,adp1050.yaml (revision 621cde16e49b3ecf7d59a8106a20aaebfb4a59a9)
1# SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause)
2%YAML 1.2
3---
4$id: http://devicetree.org/schemas/hwmon/pmbus/adi,adp1050.yaml#
5$schema: http://devicetree.org/meta-schemas/core.yaml#
6
7title: Analog Devices ADP1050 digital controller with PMBus interface
8
9maintainers:
10  - Radu Sabau <radu.sabau@analog.com>
11
12description: |
13   The ADP1050 is used to monitor system voltages, currents and temperatures.
14   Through the PMBus interface, the ADP1050 targets isolated power supplies
15   and has four individual monitors for input/output voltage, input current
16   and temperature.
17   Datasheet:
18     https://www.analog.com/en/products/adp1050.html
19
20properties:
21  compatible:
22    const: adi,adp1050
23
24  reg:
25    maxItems: 1
26
27  vcc-supply: true
28
29required:
30  - compatible
31  - reg
32  - vcc-supply
33
34additionalProperties: false
35
36examples:
37  - |
38    i2c {
39        #address-cells = <1>;
40        #size-cells = <0>;
41        clock-frequency = <100000>;
42
43        hwmon@70 {
44            compatible = "adi,adp1050";
45            reg = <0x70>;
46            vcc-supply = <&vcc>;
47        };
48    };
49...
50