]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - Documentation/devicetree/bindings/regulator/anatop-regulator.txt
Merge remote-tracking branches 'regulator/topic/anatop', 'regulator/topic/arizona...
[mirror_ubuntu-bionic-kernel.git] / Documentation / devicetree / bindings / regulator / anatop-regulator.txt
CommitLineData
2f2cc27f
YCLP
1Anatop Voltage regulators
2
3Required properties:
4- compatible: Must be "fsl,anatop-regulator"
0e69c2ec 5- regulator-name: A string used as a descriptive name for regulator outputs
2f2cc27f
YCLP
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
9ee417c0
AH
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
0d19208e 17- vin-supply: The supply for this regulator
ca7734ad 18- anatop-enable-bit: Regulator enable bit offset
9ee417c0 19
2f2cc27f
YCLP
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>;
9ee417c0
AH
34 anatop-delay-reg-offset = <0x170>;
35 anatop-delay-bit-shift = <24>;
36 anatop-delay-bit-width = <2>;
2f2cc27f
YCLP
37 anatop-min-bit-val = <1>;
38 anatop-min-voltage = <725000>;
39 anatop-max-voltage = <1300000>;
40 };