xref: /freebsd/sys/contrib/device-tree/Bindings/hwmon/pmbus/mps,mpq8785.yaml (revision ae5de77ed78ae54d86cead5604869212e8008e6b)
1*ae5de77eSEmmanuel Vadot# SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause)
2*ae5de77eSEmmanuel Vadot%YAML 1.2
3*ae5de77eSEmmanuel Vadot---
4*ae5de77eSEmmanuel Vadot$id: http://devicetree.org/schemas/hwmon/pmbus/mps,mpq8785.yaml#
5*ae5de77eSEmmanuel Vadot$schema: http://devicetree.org/meta-schemas/core.yaml#
6*ae5de77eSEmmanuel Vadot
7*ae5de77eSEmmanuel Vadottitle: Monolithic Power Systems Multiphase Voltage Regulators with PMBus
8*ae5de77eSEmmanuel Vadot
9*ae5de77eSEmmanuel Vadotmaintainers:
10*ae5de77eSEmmanuel Vadot  - Charles Hsu <ythsu0511@gmail.com>
11*ae5de77eSEmmanuel Vadot
12*ae5de77eSEmmanuel Vadotdescription:
13*ae5de77eSEmmanuel Vadot  Monolithic Power Systems digital multiphase voltage regulators with PMBus.
14*ae5de77eSEmmanuel Vadot
15*ae5de77eSEmmanuel Vadotproperties:
16*ae5de77eSEmmanuel Vadot  compatible:
17*ae5de77eSEmmanuel Vadot    enum:
18*ae5de77eSEmmanuel Vadot      - mps,mpm3695
19*ae5de77eSEmmanuel Vadot      - mps,mpm3695-25
20*ae5de77eSEmmanuel Vadot      - mps,mpm82504
21*ae5de77eSEmmanuel Vadot      - mps,mpq8785
22*ae5de77eSEmmanuel Vadot
23*ae5de77eSEmmanuel Vadot  reg:
24*ae5de77eSEmmanuel Vadot    maxItems: 1
25*ae5de77eSEmmanuel Vadot
26*ae5de77eSEmmanuel Vadot  mps,vout-fb-divider-ratio-permille:
27*ae5de77eSEmmanuel Vadot    description:
28*ae5de77eSEmmanuel Vadot      The feedback resistor divider ratio, expressed in permille
29*ae5de77eSEmmanuel Vadot      (Vfb / Vout * 1000). This value is written to the PMBUS_VOUT_SCALE_LOOP
30*ae5de77eSEmmanuel Vadot      register and is required for correct output voltage presentation.
31*ae5de77eSEmmanuel Vadot    $ref: /schemas/types.yaml#/definitions/uint32
32*ae5de77eSEmmanuel Vadot    minimum: 1
33*ae5de77eSEmmanuel Vadot    maximum: 4095
34*ae5de77eSEmmanuel Vadot    default: 706
35*ae5de77eSEmmanuel Vadot
36*ae5de77eSEmmanuel Vadotrequired:
37*ae5de77eSEmmanuel Vadot  - compatible
38*ae5de77eSEmmanuel Vadot  - reg
39*ae5de77eSEmmanuel Vadot
40*ae5de77eSEmmanuel VadotallOf:
41*ae5de77eSEmmanuel Vadot  - if:
42*ae5de77eSEmmanuel Vadot      properties:
43*ae5de77eSEmmanuel Vadot        compatible:
44*ae5de77eSEmmanuel Vadot          enum:
45*ae5de77eSEmmanuel Vadot            - mps,mpm3695
46*ae5de77eSEmmanuel Vadot            - mps,mpm82504
47*ae5de77eSEmmanuel Vadot    then:
48*ae5de77eSEmmanuel Vadot      properties:
49*ae5de77eSEmmanuel Vadot        mps,vout-fb-divider-ratio-permille:
50*ae5de77eSEmmanuel Vadot          maximum: 1023
51*ae5de77eSEmmanuel Vadot
52*ae5de77eSEmmanuel Vadot  - if:
53*ae5de77eSEmmanuel Vadot      properties:
54*ae5de77eSEmmanuel Vadot        compatible:
55*ae5de77eSEmmanuel Vadot          const: mps,mpq8785
56*ae5de77eSEmmanuel Vadot    then:
57*ae5de77eSEmmanuel Vadot      properties:
58*ae5de77eSEmmanuel Vadot        mps,vout-fb-divider-ratio-permille:
59*ae5de77eSEmmanuel Vadot          maximum: 2047
60*ae5de77eSEmmanuel Vadot
61*ae5de77eSEmmanuel VadotadditionalProperties: false
62*ae5de77eSEmmanuel Vadot
63*ae5de77eSEmmanuel Vadotexamples:
64*ae5de77eSEmmanuel Vadot  - |
65*ae5de77eSEmmanuel Vadot    i2c {
66*ae5de77eSEmmanuel Vadot      #address-cells = <1>;
67*ae5de77eSEmmanuel Vadot      #size-cells = <0>;
68*ae5de77eSEmmanuel Vadot
69*ae5de77eSEmmanuel Vadot      pmic@30 {
70*ae5de77eSEmmanuel Vadot        compatible = "mps,mpm82504";
71*ae5de77eSEmmanuel Vadot        reg = <0x30>;
72*ae5de77eSEmmanuel Vadot        mps,vout-fb-divider-ratio-permille = <600>;
73*ae5de77eSEmmanuel Vadot      };
74*ae5de77eSEmmanuel Vadot    };
75