Back to home page

OSCL-LXR

 
 

    


0001 # SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause)
0002 %YAML 1.2
0003 ---
0004 
0005 $id: http://devicetree.org/schemas/hwmon/pmbus/ti,lm25066.yaml#
0006 $schema: http://devicetree.org/meta-schemas/core.yaml#
0007 
0008 title: National Semiconductor/Texas Instruments LM250x6/LM506x power-management ICs
0009 
0010 maintainers:
0011   - Zev Weiss <zev@bewilderbeest.net>
0012 
0013 description: |
0014   The LM25066 family of power-management ICs (a.k.a. hot-swap
0015   controllers or eFuses in various contexts) are PMBus devices that
0016   offer temperature, current, voltage, and power monitoring.
0017 
0018   Datasheet: https://www.ti.com/lit/ds/symlink/lm25066.pdf
0019 
0020 properties:
0021   compatible:
0022     enum:
0023       - ti,lm25056
0024       - ti,lm25066
0025       - ti,lm5064
0026       - ti,lm5066
0027       - ti,lm5066i
0028 
0029   reg:
0030     maxItems: 1
0031 
0032   shunt-resistor-micro-ohms:
0033     description:
0034       Shunt (sense) resistor value in micro-Ohms
0035     default: 1000
0036 
0037 required:
0038   - compatible
0039   - reg
0040 
0041 additionalProperties: false
0042 
0043 examples:
0044   - |
0045     i2c {
0046         #address-cells = <1>;
0047         #size-cells = <0>;
0048 
0049         pmic@40 {
0050             compatible = "ti,lm25066";
0051             reg = <0x40>;
0052             shunt-resistor-micro-ohms = <675>;
0053         };
0054     };