diff options
author | Tony Lindgren <tony@atomide.com> | 2013-12-06 22:53:04 +0400 |
---|---|---|
committer | Tony Lindgren <tony@atomide.com> | 2013-12-09 02:15:46 +0400 |
commit | adfe9361b236154215d4b0fc8b6d79995394b15c (patch) | |
tree | 0a9c50221ab8f7d0b018454ab094e33edf7a2ceb /arch | |
parent | 719003144642687d6dea27f7541ef026b9f356ac (diff) | |
download | linux-adfe9361b236154215d4b0fc8b6d79995394b15c.tar.xz |
ARM: dts: Add basic devices on am3517-evm
Let's add the Ethernet so NFSroot works and the first MMC card
so people can patch in more support easily.
Signed-off-by: Tony Lindgren <tony@atomide.com>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/arm/boot/dts/am3517-evm.dts | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/arch/arm/boot/dts/am3517-evm.dts b/arch/arm/boot/dts/am3517-evm.dts index 03fcbf0a88a8..b4127c6493a2 100644 --- a/arch/arm/boot/dts/am3517-evm.dts +++ b/arch/arm/boot/dts/am3517-evm.dts @@ -17,6 +17,21 @@ device_type = "memory"; reg = <0x80000000 0x10000000>; /* 256 MB */ }; + + vmmc_fixed: vmmc { + compatible = "regulator-fixed"; + regulator-name = "vmmc_fixed"; + regulator-min-microvolt = <3300000>; + regulator-max-microvolt = <3300000>; + }; +}; + +&davinci_emac { + status = "okay"; +}; + +&davinci_mdio { + status = "okay"; }; &i2c1 { @@ -30,3 +45,17 @@ &i2c3 { clock-frequency = <400000>; }; + +&mmc1 { + vmmc-supply = <&vmmc_fixed>; + bus-width = <4>; +}; + +&mmc2 { + status = "disabled"; +}; + +&mmc3 { + status = "disabled"; +}; + |