diff options
author | Rajendra Nayak <rnayak@ti.com> | 2012-02-22 07:12:27 -0500 |
---|---|---|
committer | Benoit Cousson <b-cousson@ti.com> | 2012-03-14 16:54:57 -0400 |
commit | b3431f5ba402a98a89b78a9408b4972d8870df4d (patch) | |
tree | 416a752054267e07759f9fd011a791906a06373f /arch | |
parent | 7498176803ca57200ce658da3850abcabb5cff84 (diff) |
arm/dts: OMAP3: Add mmc controller nodes and board data
Add OMAP mmc related device tree data for OMAP3.
Currenly limited to only omap3-beagle board.
Signed-off-by: Rajendra Nayak <rnayak@ti.com>
Signed-off-by: Benoit Cousson <b-cousson@ti.com>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/arm/boot/dts/omap3-beagle.dts | 14 | ||||
-rw-r--r-- | arch/arm/boot/dts/omap3.dtsi | 16 |
2 files changed, 30 insertions, 0 deletions
diff --git a/arch/arm/boot/dts/omap3-beagle.dts b/arch/arm/boot/dts/omap3-beagle.dts index 54556b19c97d..8c756be4d7ad 100644 --- a/arch/arm/boot/dts/omap3-beagle.dts +++ b/arch/arm/boot/dts/omap3-beagle.dts | |||
@@ -53,3 +53,17 @@ | |||
53 | reg = <0x50>; | 53 | reg = <0x50>; |
54 | }; | 54 | }; |
55 | }; | 55 | }; |
56 | |||
57 | &mmc1 { | ||
58 | vmmc-supply = <&vmmc1>; | ||
59 | vmmc_aux-supply = <&vsim>; | ||
60 | ti,bus-width = <8>; | ||
61 | }; | ||
62 | |||
63 | &mmc2 { | ||
64 | status = "disable"; | ||
65 | }; | ||
66 | |||
67 | &mmc3 { | ||
68 | status = "disable"; | ||
69 | }; | ||
diff --git a/arch/arm/boot/dts/omap3.dtsi b/arch/arm/boot/dts/omap3.dtsi index dc9425c48ed9..99474fa5fac4 100644 --- a/arch/arm/boot/dts/omap3.dtsi +++ b/arch/arm/boot/dts/omap3.dtsi | |||
@@ -199,5 +199,21 @@ | |||
199 | ti,hwmods = "mcspi4"; | 199 | ti,hwmods = "mcspi4"; |
200 | ti,spi-num-cs = <1>; | 200 | ti,spi-num-cs = <1>; |
201 | }; | 201 | }; |
202 | |||
203 | mmc1: mmc@4809c000 { | ||
204 | compatible = "ti,omap3-hsmmc"; | ||
205 | ti,hwmods = "mmc1"; | ||
206 | ti,dual-volt; | ||
207 | }; | ||
208 | |||
209 | mmc2: mmc@480b4000 { | ||
210 | compatible = "ti,omap3-hsmmc"; | ||
211 | ti,hwmods = "mmc2"; | ||
212 | }; | ||
213 | |||
214 | mmc3: mmc@480ad000 { | ||
215 | compatible = "ti,omap3-hsmmc"; | ||
216 | ti,hwmods = "mmc3"; | ||
217 | }; | ||
202 | }; | 218 | }; |
203 | }; | 219 | }; |