summaryrefslogtreecommitdiff
path: root/Documentation/devicetree/bindings/regulator/mp8859.txt
diff options
context:
space:
mode:
authorMarkus Reichl <m.reichl@fivetechno.de>2020-01-06 22:16:27 +0100
committerMark Brown <broonie@kernel.org>2020-01-08 15:57:29 +0000
commit44665f7d082977e8bb1803ec0e596f141cba7196 (patch)
tree301bfb5c1bfddce8efc1fe5eba78826dcd3ad154 /Documentation/devicetree/bindings/regulator/mp8859.txt
parent9399e5dc6b679994872a6039849547c416bb6b05 (diff)
regulator: bindings: add MPS mp8859 voltage regulator
The MP8859 from Monolithic Power Systems is a single output dc/dc converter with voltage control over i2c. Signed-off-by: Markus Reichl <m.reichl@fivetechno.de> Link: https://lore.kernel.org/r/20200106211633.2882-5-m.reichl@fivetechno.de Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'Documentation/devicetree/bindings/regulator/mp8859.txt')
-rw-r--r--Documentation/devicetree/bindings/regulator/mp8859.txt22
1 files changed, 22 insertions, 0 deletions
diff --git a/Documentation/devicetree/bindings/regulator/mp8859.txt b/Documentation/devicetree/bindings/regulator/mp8859.txt
new file mode 100644
index 000000000000..74ad69730989
--- /dev/null
+++ b/Documentation/devicetree/bindings/regulator/mp8859.txt
@@ -0,0 +1,22 @@
+Monolithic Power Systems MP8859 voltage regulator
+
+Required properties:
+- compatible: "mps,mp8859";
+- reg: I2C slave address.
+
+Optional subnode for regulator: "mp8859_dcdc", using common regulator
+bindings given in <Documentation/devicetree/bindings/regulator/regulator.txt>.
+
+Example:
+
+ mp8859: regulator@66 {
+ compatible = "mps,mp8859";
+ reg = <0x66>;
+ dc_12v: mp8859_dcdc {
+ regulator-name = "dc_12v";
+ regulator-min-microvolt = <12000000>;
+ regulator-max-microvolt = <12000000>;
+ regulator-boot-on;
+ regulator-always-on;
+ };
+ };