Skip to content

Commit 9f4b738

Browse files
committed
dt-bindings: hwmon: pmbus: adp1051 and adp1055: add bindings.
Add dt-bindings for adp1051 and adp1055 pmbus. ADP1051: 6 PWM for I/O Voltage, I/O Current, Temperature ADP1055: 6 PWM for I/O Voltage, I/O Current, Power, Temperature Signed-off-by: Alexis Torreno <[email protected]>
1 parent ff26ad5 commit 9f4b738

File tree

1 file changed

+31
-3
lines changed

1 file changed

+31
-3
lines changed

Documentation/devicetree/bindings/hwmon/pmbus/adi,adp1050.yaml

+31-3
Original file line numberDiff line numberDiff line change
@@ -10,16 +10,35 @@ maintainers:
1010
- Radu Sabau <[email protected]>
1111

1212
description: |
13-
The ADP1050 is used to monitor system voltages, currents and temperatures.
13+
The ADP1050, ADP1051, and ADP1055 are used to monitor system voltages,
14+
currents, power and temperatures.
15+
1416
Through the PMBus interface, the ADP1050 targets isolated power supplies
1517
and has four individual monitors for input/output voltage, input current
1618
and temperature.
1719
Datasheet:
1820
https://www.analog.com/en/products/adp1050.html
1921
22+
Through the PMBus interface, the ADP1051 targets isolated power supplies
23+
and has six individual monitors for input/output voltage, input/output
24+
current and temperature.
25+
Datasheet:
26+
https://www.analog.com/en/products/adp1051.html
27+
28+
Through the PMBus interface, the ADP1055 targets isolated power supplies
29+
and has six individual monitors for input/output voltage, input/output
30+
current, power, and temperature.
31+
Datasheet:
32+
https://www.analog.com/en/products/adp1055.html
33+
2034
properties:
35+
2136
compatible:
22-
const: adi,adp1050
37+
items:
38+
- enum:
39+
- adi,adp1050
40+
- adi,adp1051
41+
- adi,adp1055
2342

2443
reg:
2544
maxItems: 1
@@ -39,11 +58,20 @@ examples:
3958
#address-cells = <1>;
4059
#size-cells = <0>;
4160
clock-frequency = <100000>;
61+
status = "okay";
4262
4363
hwmon@70 {
44-
compatible = "adi,adp1050";
64+
compatible = "adi,adp1050", "adi,adp1051";
4565
reg = <0x70>;
4666
vcc-supply = <&vcc>;
67+
status = "okay";
68+
};
69+
70+
hwmon@4b {
71+
compatible = "adi,adp1055";
72+
reg = <0x4b>;
73+
vcc-supply = <&vcc>;
74+
status = "okay";
4775
};
4876
};
4977
...

0 commit comments

Comments
 (0)