xref: /OK3568_Linux_fs/kernel/Documentation/devicetree/bindings/regulator/mp8865-regulator.txt (revision 4882a59341e53eb6f0b4789bf948001014eff981)
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