1Anatop Voltage regulators
2
3Required properties:
4- compatible: Must be "fsl,anatop-regulator"
5- regulator-name: A string used as a descriptive name for regulator outputs
6- anatop-reg-offset: Anatop MFD register offset
7- anatop-vol-bit-shift: Bit shift for the register
8- anatop-vol-bit-width: Number of bits used in the register
9- anatop-min-bit-val: Minimum value of this register
10- anatop-min-voltage: Minimum voltage of this regulator
11- anatop-max-voltage: Maximum voltage of this regulator
12
13Optional properties:
14- anatop-delay-reg-offset: Anatop MFD step time register offset
15- anatop-delay-bit-shift: Bit shift for the step time register
16- anatop-delay-bit-width: Number of bits used in the step time register
17- vin-supply: The supply for this regulator
18- anatop-enable-bit: Regulator enable bit offset
19
20Any property defined as part of the core regulator
21binding, defined in regulator.txt, can also be used.
22
23Example:
24
25	regulator-vddpu {
26		compatible = "fsl,anatop-regulator";
27		regulator-name = "vddpu";
28		regulator-min-microvolt = <725000>;
29		regulator-max-microvolt = <1300000>;
30		regulator-always-on;
31		anatop-reg-offset = <0x140>;
32		anatop-vol-bit-shift = <9>;
33		anatop-vol-bit-width = <5>;
34		anatop-delay-reg-offset = <0x170>;
35		anatop-delay-bit-shift = <24>;
36		anatop-delay-bit-width = <2>;
37		anatop-min-bit-val = <1>;
38		anatop-min-voltage = <725000>;
39		anatop-max-voltage = <1300000>;
40	};
41