aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBalaji T K <balajitk@ti.com>2013-10-07 12:25:04 -0400
committerBenoit Cousson <bcousson@baylibre.com>2013-10-11 15:15:02 -0400
commit6cf02dbb4b71f1c0c9acec89ae2df3b2318135f4 (patch)
treef53768edb35290e7b5be2daf5deb477d905a2298
parentbf1788df8f99e5bcd8e9e0bbdacaf193ca2cbb68 (diff)
ARM: dts: dra7-evm: Add mmc2 node for eMMC support
Add mmc2 dt node to dra7-evm board and model eMMC vcc as fixed regulator. Signed-off-by: Balaji T K <balajitk@ti.com> Acked-by: Sekhar Nori <nsekhar@ti.com> Signed-off-by: Benoit Cousson <bcousson@baylibre.com>
-rw-r--r--arch/arm/boot/dts/dra7-evm.dts13
1 files changed, 13 insertions, 0 deletions
diff --git a/arch/arm/boot/dts/dra7-evm.dts b/arch/arm/boot/dts/dra7-evm.dts
index 65cd15a92cb1..3abf5f41e5cc 100644
--- a/arch/arm/boot/dts/dra7-evm.dts
+++ b/arch/arm/boot/dts/dra7-evm.dts
@@ -17,6 +17,13 @@
17 device_type = "memory"; 17 device_type = "memory";
18 reg = <0x80000000 0x60000000>; /* 1536 MB */ 18 reg = <0x80000000 0x60000000>; /* 1536 MB */
19 }; 19 };
20
21 mmc2_3v3: fixedregulator-mmc2 {
22 compatible = "regulator-fixed";
23 regulator-name = "mmc2_3v3";
24 regulator-min-microvolt = <3300000>;
25 regulator-max-microvolt = <3300000>;
26 };
20}; 27};
21 28
22&dra7_pmx_core { 29&dra7_pmx_core {
@@ -256,3 +263,9 @@
256 vmmc-supply = <&ldo1_reg>; 263 vmmc-supply = <&ldo1_reg>;
257 bus-width = <4>; 264 bus-width = <4>;
258}; 265};
266
267&mmc2 {
268 status = "okay";
269 vmmc-supply = <&mmc2_3v3>;
270 bus-width = <8>;
271};