From mboxrd@z Thu Jan 1 00:00:00 1970 From: Stephen Warren Date: Mon, 03 Dec 2012 17:40:50 -0700 Subject: [U-Boot] [PATCH v2 5/7] Tegra30: Cardhu: Add DT files In-Reply-To: <1354578322-1834-6-git-send-email-twarren@nvidia.com> References: <1354578322-1834-1-git-send-email-twarren@nvidia.com> <1354578322-1834-6-git-send-email-twarren@nvidia.com> Message-ID: <50BD4692.8000303@wwwdotorg.org> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de On 12/03/2012 04:45 PM, Tom Warren wrote: > These are stripped down for bringup, They'll be filled out later > to match-up with the kernel DT contents, and/or as devices are > brought up (mmc, usb, spi, etc.). > > Signed-off-by: Tom Warren > diff --git a/arch/arm/dts/tegra30.dtsi b/arch/arm/dts/tegra30.dtsi > +/ { > + model = "NVIDIA Tegra30"; We don't really need a model property here, but it's not a big deal. > diff --git a/board/nvidia/dts/tegra30-cardhu.dts b/board/nvidia/dts/tegra30-cardhu.dts > +/memreserve/ 0x1c000000 0x04000000; /memreserve/ isn't correct for U-Boot; no memory should be reserved. > +/ { > + model = "NVIDIA Cardhu"; > + compatible = "nvidia,cardhu", "nvidia,tegra30"; > + > + memory { > + device_type = "memory"; > + reg = <0x80000000 0xc0000000>; That last number should be 0x40000000; it's a size not an end-of-region value. Note that once things get more advanced, we'll need to split this up into tegra30-cardhu.dtsi, tegra30-cardhu-a02.dts, tegra30-cardhu-a04.dts, but we can do that later.