1Regulator driver for MAX77650 PMIC from Maxim Integrated. 2 3This module is part of the MAX77650 MFD device. For more details 4see Documentation/devicetree/bindings/mfd/max77650.txt. 5 6The regulator controller is represented as a sub-node of the PMIC node 7on the device tree. 8 9The device has a single LDO regulator and a SIMO buck-boost regulator with 10three independent power rails. 11 12Required properties: 13-------------------- 14- compatible: Must be "maxim,max77650-regulator" 15 16Each rail must be instantiated under the regulators subnode of the top PMIC 17node. Up to four regulators can be defined. For standard regulator properties 18refer to Documentation/devicetree/bindings/regulator/regulator.txt. 19 20Available regulator compatible strings are: "ldo", "sbb0", "sbb1", "sbb2". 21 22Example: 23-------- 24 25 regulators { 26 compatible = "maxim,max77650-regulator"; 27 28 max77650_ldo: regulator@0 { 29 regulator-compatible = "ldo"; 30 regulator-name = "max77650-ldo"; 31 regulator-min-microvolt = <1350000>; 32 regulator-max-microvolt = <2937500>; 33 }; 34 35 max77650_sbb0: regulator@1 { 36 regulator-compatible = "sbb0"; 37 regulator-name = "max77650-sbb0"; 38 regulator-min-microvolt = <800000>; 39 regulator-max-microvolt = <1587500>; 40 }; 41 }; 42