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,ucd90320.yaml#
0006 $schema: http://devicetree.org/meta-schemas/core.yaml#
0007
0008 title: UCD90320 power sequencer
0009
0010 maintainers:
0011 - Jim Wright <wrightj@linux.vnet.ibm.com>
0012
0013 description: |
0014 The UCD90320 is a 32-rail PMBus/I2C addressable power-supply sequencer and
0015 monitor. The 24 integrated ADC channels (AMONx) monitor the power supply
0016 voltage, current, and temperature. Of the 84 GPIO pins, 8 can be used as
0017 digital monitors (DMONx), 32 to enable the power supply (ENx), 24 for
0018 margining (MARx), 16 for logical GPO, and 32 GPIs for cascading, and system
0019 function.
0020
0021 http://focus.ti.com/lit/ds/symlink/ucd90320.pdf
0022
0023 properties:
0024 compatible:
0025 enum:
0026 - ti,ucd90320
0027
0028 reg:
0029 maxItems: 1
0030
0031 required:
0032 - compatible
0033 - reg
0034
0035 additionalProperties: false
0036
0037 examples:
0038 - |
0039 i2c {
0040 #address-cells = <1>;
0041 #size-cells = <0>;
0042
0043 ucd90320@11 {
0044 compatible = "ti,ucd90320";
0045 reg = <0x11>;
0046 };
0047 };