Skip to content

Commit

Permalink
ARM: ux500: Add node for the MMC GPIO regulator
Browse files Browse the repository at this point in the history
There is a very simple mechanism to change and SDI's voltage which
consists of toggling some GPIOs. This scenario can be better handled
if we convert it to a GPIO regulator. This patch provides one which
can be read from Device Tree.

Acked-by: Linus Walleij <linus.walleij@linaro.org>
Signed-off-by: Lee Jones <lee.jones@linaro.org>
  • Loading branch information
Lee Jones committed Nov 1, 2012
1 parent 79b4075 commit 0563f63
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions arch/arm/boot/dts/dbx5x0.dtsi
Original file line number Diff line number Diff line change
Expand Up @@ -629,5 +629,19 @@
ranges = <0 0x50000000 0x4000000>;
status = "disabled";
};

vmmci: regulator-gpio {
compatible = "regulator-gpio";

regulator-min-microvolt = <1800000>;
regulator-max-microvolt = <2600000>;
regulator-name = "mmci-reg";
regulator-type = "voltage";

gpios = <&tc3589x_gpio 18 0x4>;
gpio-enable = <&tc3589x_gpio 17 0x4>;
states = <1800000 0x1
2900000 0x0>;
};
};
};

0 comments on commit 0563f63

Please sign in to comment.