blob: 1229541f48a230276888f2dac2f6be28a751d7fc [file] [log] [blame]
Lee Jones006694d2012-10-15 14:16:59 +01001GPIO controlled regulators
2
3Required properties:
4- compatible : Must be "regulator-gpio".
Lee Jones216f2b92012-11-14 11:51:36 +00005- states : Selection of available voltages and GPIO configs.
6 if there are no states, then use a fixed regulator
Lee Jones006694d2012-10-15 14:16:59 +01007
8Optional properties:
Frank Lidea05fe2012-11-12 17:58:28 +08009- enable-gpio : GPIO to use to enable/disable the regulator.
Lee Jones006694d2012-10-15 14:16:59 +010010- gpios : GPIO group used to control voltage.
Lee Jones006694d2012-10-15 14:16:59 +010011- startup-delay-us : Startup time in microseconds.
12- enable-active-high : Polarity of GPIO is active high (default is low).
Mark Brown7f196ec2013-12-05 19:08:55 +000013- regulator-type : Specifies what is being regulated, must be either
14 "voltage" or "current", defaults to current.
Lee Jones006694d2012-10-15 14:16:59 +010015
16Any property defined as part of the core regulator binding defined in
17regulator.txt can also be used.
18
19Example:
20
21 mmciv: gpio-regulator {
22 compatible = "regulator-gpio";
23
24 regulator-name = "mmci-gpio-supply";
25 regulator-min-microvolt = <1800000>;
26 regulator-max-microvolt = <2600000>;
27 regulator-boot-on;
28
Frank Lidea05fe2012-11-12 17:58:28 +080029 enable-gpio = <&gpio0 23 0x4>;
Lee Jones006694d2012-10-15 14:16:59 +010030 gpios = <&gpio0 24 0x4
31 &gpio0 25 0x4>;
32 states = <1800000 0x3
33 2200000 0x2
34 2600000 0x1
35 2900000 0x0>;
36
37 startup-delay-us = <100000>;
38 enable-active-high;
39 };