1MPS MP8865 Regulator Driver 2 3Required properties: 4- compatible: "mps,mp8865" 5- reg: I2C slave address 6- regulators: List of regulators provided by this controller. 7 The definition for each of these nodes is defined using the standard binding 8 for regulators at Documentation/devicetree/bindings/regulator/regulator.txt. 9 10example: 11 mp8865: mp8865@68 { 12 compatible = "mps,mp8865"; 13 reg = <0x68>; 14 status = "okay"; 15 regulators { 16 vdd_gpu: mp8865_dcdc1 { 17 regulator-name = "vdd_gpu"; 18 regulator-min-microvolt = <712500>; 19 regulator-max-microvolt = <1500000>; 20 regulator-always-on; 21 regulator-boot-on; 22 }; 23 }; 24 }; 25