Re: [U-Boot] [PATCH] fdt: pci: Permit use of reg property for setting device address

2015-01-21 Thread Sjoerd Simons
On Mon, 2015-01-19 at 20:19 -0700, Simon Glass wrote: > In commit a62e84d the old functionality of obtaining a PCI address from the > 'reg' property was lost. Add it back, so we can support both a compatible > string list and a 'reg' property. > > This patch fixes PCIe ethernet on Tegra boards. >

Re: [U-Boot] [PATCH] fdt: pci: Permit use of reg property for setting device address

2015-01-21 Thread Thierry Reding
On Wed, Jan 21, 2015 at 04:46:42PM +0800, Bin Meng wrote: > Hi Thierry, > > On Wed, Jan 21, 2015 at 4:05 PM, Thierry Reding wrote: > > On Wed, Jan 21, 2015 at 10:00:39AM +0800, Bin Meng wrote: > >> Hi Simon, > >> > >> On Tue, Jan 20, 2015 at 10:31 PM, Simon Glass wrote: > >> > +Thierry > >> > >

Re: [U-Boot] [PATCH] fdt: pci: Permit use of reg property for setting device address

2015-01-21 Thread Bin Meng
Hi Thierry, On Wed, Jan 21, 2015 at 4:05 PM, Thierry Reding wrote: > On Wed, Jan 21, 2015 at 10:00:39AM +0800, Bin Meng wrote: >> Hi Simon, >> >> On Tue, Jan 20, 2015 at 10:31 PM, Simon Glass wrote: >> > +Thierry >> > >> > Hi Bin, >> > >> > On 20 January 2015 at 05:59, Bin Meng wrote: >> >> Hi

Re: [U-Boot] [PATCH] fdt: pci: Permit use of reg property for setting device address

2015-01-21 Thread Thierry Reding
On Wed, Jan 21, 2015 at 10:00:39AM +0800, Bin Meng wrote: > Hi Simon, > > On Tue, Jan 20, 2015 at 10:31 PM, Simon Glass wrote: > > +Thierry > > > > Hi Bin, > > > > On 20 January 2015 at 05:59, Bin Meng wrote: > >> Hi Simon, > >> > >> On Tue, Jan 20, 2015 at 11:19 AM, Simon Glass wrote: > >>> In

Re: [U-Boot] [PATCH] fdt: pci: Permit use of reg property for setting device address

2015-01-20 Thread Bin Meng
Hi Simon, On Tue, Jan 20, 2015 at 10:31 PM, Simon Glass wrote: > +Thierry > > Hi Bin, > > On 20 January 2015 at 05:59, Bin Meng wrote: >> Hi Simon, >> >> On Tue, Jan 20, 2015 at 11:19 AM, Simon Glass wrote: >>> In commit a62e84d the old functionality of obtaining a PCI address from the >>> 'reg

Re: [U-Boot] [PATCH] fdt: pci: Permit use of reg property for setting device address

2015-01-20 Thread Simon Glass
+Thierry Hi Bin, On 20 January 2015 at 05:59, Bin Meng wrote: > Hi Simon, > > On Tue, Jan 20, 2015 at 11:19 AM, Simon Glass wrote: >> In commit a62e84d the old functionality of obtaining a PCI address from the >> 'reg' property was lost. Add it back, so we can support both a compatible >> strin

Re: [U-Boot] [PATCH] fdt: pci: Permit use of reg property for setting device address

2015-01-20 Thread Bin Meng
Hi Simon, On Tue, Jan 20, 2015 at 11:19 AM, Simon Glass wrote: > In commit a62e84d the old functionality of obtaining a PCI address from the > 'reg' property was lost. Add it back, so we can support both a compatible > string list and a 'reg' property. > > This patch fixes PCIe ethernet on Tegra

[U-Boot] [PATCH] fdt: pci: Permit use of reg property for setting device address

2015-01-19 Thread Simon Glass
In commit a62e84d the old functionality of obtaining a PCI address from the 'reg' property was lost. Add it back, so we can support both a compatible string list and a 'reg' property. This patch fixes PCIe ethernet on Tegra boards. Signed-off-by: Simon Glass --- lib/fdtdec.c | 10 -- 1