50 lines · yaml
1# SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause)2%YAML 1.23---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 interface8 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 supplies15 and has four individual monitors for input/output voltage, input current16 and temperature.17 Datasheet:18 https://www.analog.com/en/products/adp1050.html19 20properties:21 compatible:22 const: adi,adp105023 24 reg:25 maxItems: 126 27 vcc-supply: true28 29required:30 - compatible31 - reg32 - vcc-supply33 34additionalProperties: false35 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