diff options
| author | Simon Glass <sjg@chromium.org> | 2012-04-02 13:19:00 +0000 | 
|---|---|---|
| committer | Albert ARIBAUD <albert.u.boot@aribaud.net> | 2012-05-15 08:31:39 +0200 | 
| commit | 1f47efa87a00dd98d61937c7040c8d2590d8b16f (patch) | |
| tree | 05f6a8ec334e3e6640b855924d908bded31aac8b | |
| parent | c5b34a29acb17343479ace6219e8ae55677a9a26 (diff) | |
| download | olio-uboot-2014.01-1f47efa87a00dd98d61937c7040c8d2590d8b16f.tar.xz olio-uboot-2014.01-1f47efa87a00dd98d61937c7040c8d2590d8b16f.zip | |
fdt: tegra: Add EMC node to device tree
Add a definition of the memory controller node according to the bindings
here:
http://patchwork.ozlabs.org/patch/132928/
Signed-off-by: Simon Glass <sjg@chromium.org>
Signed-off-by: Tom Warren <twarren@nvidia.com>
| -rw-r--r-- | arch/arm/dts/tegra20.dtsi | 7 | 
1 files changed, 7 insertions, 0 deletions
| diff --git a/arch/arm/dts/tegra20.dtsi b/arch/arm/dts/tegra20.dtsi index d5ca02c5f..bc64f429e 100644 --- a/arch/arm/dts/tegra20.dtsi +++ b/arch/arm/dts/tegra20.dtsi @@ -193,4 +193,11 @@  		clocks = <&tegra_car 59>;	/* PERIPH_ID_USB3 */  	}; +	emc@7000f400 { +		#address-cells = < 1 >; +		#size-cells = < 0 >; +		compatible = "nvidia,tegra20-emc"; +		reg = <0x7000f400 0x200>; +	}; +  }; |