aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTomasz Figa <t.figa@samsung.com>2012-11-21 10:15:40 -0500
committerKukjin Kim <kgene.kim@samsung.com>2012-11-21 10:38:56 -0500
commitcf7c397b62b1afa6d17c890641d067d5999daeb9 (patch)
tree04c705531b447ac97f2831aa2598f53074ba28a6
parent6475daad9afdd22b79ed7847312bd274c989a2f5 (diff)
ARM: dts: Add vmmc fixed voltage regulator for exynos4210-origen
This patch adds fixed voltage vmmc regulator to dts file of Origen board. Signed-off-by: Tomasz Figa <t.figa@samsung.com> Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com> Signed-off-by: Kukjin Kim <kgene.kim@samsung.com>
-rw-r--r--arch/arm/boot/dts/exynos4210-origen.dts11
1 files changed, 11 insertions, 0 deletions
diff --git a/arch/arm/boot/dts/exynos4210-origen.dts b/arch/arm/boot/dts/exynos4210-origen.dts
index 7390f8c3f3bc..f2710018e84e 100644
--- a/arch/arm/boot/dts/exynos4210-origen.dts
+++ b/arch/arm/boot/dts/exynos4210-origen.dts
@@ -32,10 +32,20 @@
32 bootargs ="root=/dev/ram0 rw ramdisk=8192 initrd=0x41000000,8M console=ttySAC2,115200 init=/linuxrc"; 32 bootargs ="root=/dev/ram0 rw ramdisk=8192 initrd=0x41000000,8M console=ttySAC2,115200 init=/linuxrc";
33 }; 33 };
34 34
35 mmc_reg: voltage-regulator {
36 compatible = "regulator-fixed";
37 regulator-name = "VMEM_VDD_2.8V";
38 regulator-min-microvolt = <2800000>;
39 regulator-max-microvolt = <2800000>;
40 gpio = <&gpx1 1 0>;
41 enable-active-high;
42 };
43
35 sdhci@12530000 { 44 sdhci@12530000 {
36 bus-width = <4>; 45 bus-width = <4>;
37 pinctrl-0 = <&sd2_clk &sd2_cmd &sd2_bus4 &sd2_cd>; 46 pinctrl-0 = <&sd2_clk &sd2_cmd &sd2_bus4 &sd2_cd>;
38 pinctrl-names = "default"; 47 pinctrl-names = "default";
48 vmmc-supply = <&mmc_reg>;
39 status = "okay"; 49 status = "okay";
40 }; 50 };
41 51
@@ -43,6 +53,7 @@
43 bus-width = <4>; 53 bus-width = <4>;
44 pinctrl-0 = <&sd0_clk &sd0_cmd &sd0_bus4 &sd0_cd>; 54 pinctrl-0 = <&sd0_clk &sd0_cmd &sd0_bus4 &sd0_cd>;
45 pinctrl-names = "default"; 55 pinctrl-names = "default";
56 vmmc-supply = <&mmc_reg>;
46 status = "okay"; 57 status = "okay";
47 }; 58 };
48 59