mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-27 05:17:11 +07:00
2a254de29e
The only device-specific node names are "buck1" and "buck2" for the two regulators present on the device. Sleep mode GPIO and per-regulator GPIO enable pins are not exposed (the driver does not support them either). Signed-off-by: Alexander Monakov <amonakov@ispras.ru> Signed-off-by: Mark Brown <broonie@kernel.org>
23 lines
530 B
Plaintext
23 lines
530 B
Plaintext
Marvell 88PG867/88PG868 voltage regulators
|
|
|
|
Required properties:
|
|
- compatible: one of "marvell,88pg867", "marvell,88pg868";
|
|
- reg: I2C slave address.
|
|
|
|
Optional subnodes for regulators: "buck1", "buck2", using common regulator
|
|
bindings given in <Documentation/devicetree/bindings/regulator/regulator.txt>.
|
|
|
|
Example:
|
|
|
|
pg868@19 {
|
|
compatible = "marvell,88pg868";
|
|
reg = <0x19>;
|
|
|
|
vcpu: buck1 {
|
|
regulator-boot-on;
|
|
regulator-always-on;
|
|
regulator-min-microvolt = <1000000>;
|
|
regulator-max-microvolt = <1350000>;
|
|
};
|
|
};
|