Lee Jones | 006694d | 2012-10-15 14:16:59 +0100 | [diff] [blame] | 1 | GPIO controlled regulators |
| 2 | |
| 3 | Required properties: |
| 4 | - compatible : Must be "regulator-gpio". |
Lee Jones | 216f2b9 | 2012-11-14 11:51:36 +0000 | [diff] [blame] | 5 | - states : Selection of available voltages and GPIO configs. |
| 6 | if there are no states, then use a fixed regulator |
Lee Jones | 006694d | 2012-10-15 14:16:59 +0100 | [diff] [blame] | 7 | |
| 8 | Optional properties: |
Frank Li | dea05fe | 2012-11-12 17:58:28 +0800 | [diff] [blame] | 9 | - enable-gpio : GPIO to use to enable/disable the regulator. |
Lee Jones | 006694d | 2012-10-15 14:16:59 +0100 | [diff] [blame] | 10 | - gpios : GPIO group used to control voltage. |
Kuninori Morimoto | 9073398 | 2014-02-11 17:27:27 -0800 | [diff] [blame] | 11 | - gpios-states : gpios pin's initial states array. 0: LOW, 1: HIGH. |
| 12 | defualt is LOW if nothing is specified. |
Lee Jones | 006694d | 2012-10-15 14:16:59 +0100 | [diff] [blame] | 13 | - startup-delay-us : Startup time in microseconds. |
| 14 | - enable-active-high : Polarity of GPIO is active high (default is low). |
Mark Brown | 7f196ec | 2013-12-05 19:08:55 +0000 | [diff] [blame] | 15 | - regulator-type : Specifies what is being regulated, must be either |
| 16 | "voltage" or "current", defaults to current. |
Lee Jones | 006694d | 2012-10-15 14:16:59 +0100 | [diff] [blame] | 17 | |
| 18 | Any property defined as part of the core regulator binding defined in |
| 19 | regulator.txt can also be used. |
| 20 | |
| 21 | Example: |
| 22 | |
| 23 | mmciv: gpio-regulator { |
| 24 | compatible = "regulator-gpio"; |
| 25 | |
| 26 | regulator-name = "mmci-gpio-supply"; |
| 27 | regulator-min-microvolt = <1800000>; |
| 28 | regulator-max-microvolt = <2600000>; |
| 29 | regulator-boot-on; |
| 30 | |
Frank Li | dea05fe | 2012-11-12 17:58:28 +0800 | [diff] [blame] | 31 | enable-gpio = <&gpio0 23 0x4>; |
Lee Jones | 006694d | 2012-10-15 14:16:59 +0100 | [diff] [blame] | 32 | gpios = <&gpio0 24 0x4 |
| 33 | &gpio0 25 0x4>; |
| 34 | states = <1800000 0x3 |
| 35 | 2200000 0x2 |
| 36 | 2600000 0x1 |
| 37 | 2900000 0x0>; |
| 38 | |
| 39 | startup-delay-us = <100000>; |
| 40 | enable-active-high; |
| 41 | }; |