Skip to content

Commit

Permalink
dt-bindings: hwmon: pmbus: adp1051 and adp1055: add bindings.
Browse files Browse the repository at this point in the history
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 <alexisczezar.torreno@analog.com>
  • Loading branch information
actorreno committed Oct 25, 2024
1 parent ff26ad5 commit 9f4b738
Showing 1 changed file with 31 additions and 3 deletions.
34 changes: 31 additions & 3 deletions Documentation/devicetree/bindings/hwmon/pmbus/adi,adp1050.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,16 +10,35 @@ maintainers:
- Radu Sabau <radu.sabau@analog.com>

description: |
The ADP1050 is used to monitor system voltages, currents and temperatures.
The ADP1050, ADP1051, and ADP1055 are used to monitor system voltages,
currents, power and temperatures.
Through the PMBus interface, the ADP1050 targets isolated power supplies
and has four individual monitors for input/output voltage, input current
and temperature.
Datasheet:
https://www.analog.com/en/products/adp1050.html
Through the PMBus interface, the ADP1051 targets isolated power supplies
and has six individual monitors for input/output voltage, input/output
current and temperature.
Datasheet:
https://www.analog.com/en/products/adp1051.html
Through the PMBus interface, the ADP1055 targets isolated power supplies
and has six individual monitors for input/output voltage, input/output
current, power, and temperature.
Datasheet:
https://www.analog.com/en/products/adp1055.html
properties:

compatible:
const: adi,adp1050
items:
- enum:
- adi,adp1050
- adi,adp1051
- adi,adp1055

reg:
maxItems: 1
Expand All @@ -39,11 +58,20 @@ examples:
#address-cells = <1>;
#size-cells = <0>;
clock-frequency = <100000>;
status = "okay";
hwmon@70 {
compatible = "adi,adp1050";
compatible = "adi,adp1050", "adi,adp1051";
reg = <0x70>;
vcc-supply = <&vcc>;
status = "okay";
};
hwmon@4b {
compatible = "adi,adp1055";
reg = <0x4b>;
vcc-supply = <&vcc>;
status = "okay";
};
};
...

0 comments on commit 9f4b738

Please sign in to comment.