From mboxrd@z Thu Jan 1 00:00:00 1970 From: Stephen Warren Date: Tue, 13 May 2014 13:05:06 -0600 Subject: [U-Boot] [RFC PATCH v2 05/13] tegra: dts: Bring in GPIO bindings from linux In-Reply-To: <1399656509-28082-6-git-send-email-sjg@chromium.org> References: <1399656509-28082-1-git-send-email-sjg@chromium.org> <1399656509-28082-6-git-send-email-sjg@chromium.org> Message-ID: <53726CE2.9040001@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 05/09/2014 11:28 AM, Simon Glass wrote: > These files are taken from Linux 3.14. > diff --git a/arch/arm/dts/tegra124.dtsi b/arch/arm/dts/tegra124.dtsi > - gpio: gpio at 6000d000 { > + gpio: gpio at 0,6000d000 { > compatible = "nvidia,tegra124-gpio", "nvidia,tegra30-gpio"; > - reg = <0x6000d000 0x1000>; ... > + reg = <0x0 0x6000d000 0x0 0x1000>; That reg value and node name are for #address-cells=<2>, #size-cells=<2>. However, those properties are both =<1> in the U-Boot tegra124.dtsi, and I'm not sure whether U-Boot even supports 64-bit DT address values yet? It'd probably be simplest to just use 32-bit address/size values in tegra124.dtsi now, and import the conversion to 64-bit later? Aside from that, this patch looks, so assuming the change to those two lines above is reverted: Acked-by: Stephen Warren