@@ -10,16 +10,35 @@ maintainers:
10
10
11
11
12
12
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
+
14
16
Through the PMBus interface, the ADP1050 targets isolated power supplies
15
17
and has four individual monitors for input/output voltage, input current
16
18
and temperature.
17
19
Datasheet:
18
20
https://www.analog.com/en/products/adp1050.html
19
21
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
+
20
34
properties :
35
+
21
36
compatible :
22
- const : adi,adp1050
37
+ items :
38
+ - enum :
39
+ - adi,adp1050
40
+ - adi,adp1051
41
+ - adi,adp1055
23
42
24
43
reg :
25
44
maxItems : 1
@@ -39,11 +58,20 @@ examples:
39
58
#address-cells = <1>;
40
59
#size-cells = <0>;
41
60
clock-frequency = <100000>;
61
+ status = "okay";
42
62
43
63
hwmon@70 {
44
- compatible = "adi,adp1050";
64
+ compatible = "adi,adp1050", "adi,adp1051" ;
45
65
reg = <0x70>;
46
66
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";
47
75
};
48
76
};
49
77
...
0 commit comments