xref: /linux/Documentation/devicetree/bindings/hwmon/adi,ltc2945.yaml (revision 7c81970baf8a8fe4f3d8705c6327aa740ae14f53)
1*7c81970bSJonathan Cormier# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
2*7c81970bSJonathan Cormier%YAML 1.2
3*7c81970bSJonathan Cormier---
4*7c81970bSJonathan Cormier$id: http://devicetree.org/schemas/hwmon/adi,ltc2945.yaml#
5*7c81970bSJonathan Cormier$schema: http://devicetree.org/meta-schemas/core.yaml#
6*7c81970bSJonathan Cormier
7*7c81970bSJonathan Cormiertitle: Analog Devices LTC2945 wide range i2c power monitor
8*7c81970bSJonathan Cormier
9*7c81970bSJonathan Cormiermaintainers:
10*7c81970bSJonathan Cormier  - Guenter Roeck <linux@roeck-us.net>
11*7c81970bSJonathan Cormier
12*7c81970bSJonathan Cormierdescription: |
13*7c81970bSJonathan Cormier  Analog Devices LTC2945 wide range i2c power monitor over I2C.
14*7c81970bSJonathan Cormier
15*7c81970bSJonathan Cormier  https://www.analog.com/media/en/technical-documentation/data-sheets/LTC2945.pdf
16*7c81970bSJonathan Cormier
17*7c81970bSJonathan Cormierproperties:
18*7c81970bSJonathan Cormier  compatible:
19*7c81970bSJonathan Cormier    enum:
20*7c81970bSJonathan Cormier      - adi,ltc2945
21*7c81970bSJonathan Cormier
22*7c81970bSJonathan Cormier  reg:
23*7c81970bSJonathan Cormier    maxItems: 1
24*7c81970bSJonathan Cormier
25*7c81970bSJonathan Cormier  shunt-resistor-micro-ohms:
26*7c81970bSJonathan Cormier    description:
27*7c81970bSJonathan Cormier      Shunt resistor value in micro-Ohms
28*7c81970bSJonathan Cormier    default: 1000
29*7c81970bSJonathan Cormier
30*7c81970bSJonathan Cormierrequired:
31*7c81970bSJonathan Cormier  - compatible
32*7c81970bSJonathan Cormier  - reg
33*7c81970bSJonathan Cormier
34*7c81970bSJonathan CormieradditionalProperties: false
35*7c81970bSJonathan Cormier
36*7c81970bSJonathan Cormierexamples:
37*7c81970bSJonathan Cormier  - |
38*7c81970bSJonathan Cormier    i2c {
39*7c81970bSJonathan Cormier        #address-cells = <1>;
40*7c81970bSJonathan Cormier        #size-cells = <0>;
41*7c81970bSJonathan Cormier
42*7c81970bSJonathan Cormier        power-monitor@6e {
43*7c81970bSJonathan Cormier            compatible = "adi,ltc2945";
44*7c81970bSJonathan Cormier            reg = <0x6e>;
45*7c81970bSJonathan Cormier            /* 10 milli-Ohm shunt resistor */
46*7c81970bSJonathan Cormier            shunt-resistor-micro-ohms = <10000>;
47*7c81970bSJonathan Cormier        };
48*7c81970bSJonathan Cormier    };
49*7c81970bSJonathan Cormier...
50