1Maxim MAX8660 voltage regulator
2
3Required properties:
4- compatible: must be one of "maxim,max8660", "maxim,max8661"
5- reg: I2C slave address, usually 0x34
6- any required generic properties defined in regulator.txt
7
8Example:
9
10	i2c_master {
11		max8660@34 {
12			compatible = "maxim,max8660";
13			reg = <0x34>;
14
15			regulators {
16				regulator@0 {
17					regulator-compatible= "V3(DCDC)";
18					regulator-min-microvolt = <725000>;
19					regulator-max-microvolt = <1800000>;
20				};
21
22				regulator@1 {
23					regulator-compatible= "V4(DCDC)";
24					regulator-min-microvolt = <725000>;
25					regulator-max-microvolt = <1800000>;
26				};
27
28				regulator@2 {
29					regulator-compatible= "V5(LDO)";
30					regulator-min-microvolt = <1700000>;
31					regulator-max-microvolt = <2000000>;
32				};
33
34				regulator@3 {
35					regulator-compatible= "V6(LDO)";
36					regulator-min-microvolt = <1800000>;
37					regulator-max-microvolt = <3300000>;
38				};
39
40				regulator@4 {
41					regulator-compatible= "V7(LDO)";
42					regulator-min-microvolt = <1800000>;
43					regulator-max-microvolt = <3300000>;
44				};
45			};
46		};
47	};
48