Re: [PATCH 03/26] common: fdt_support: Support special case of PCI address in fdt_read_prop()

2021-02-08 Thread Simon Glass
Hi Bin, On Sun, 7 Feb 2021 at 22:17, Bin Meng wrote: > > Hi Simon, > > On Mon, Feb 8, 2021 at 12:21 PM Simon Glass wrote: > > > > Hi Bin, > > > > On Sun, 7 Feb 2021 at 08:11, Bin Meng wrote: > > > > > > At present fdt_read_prop() can only handle 1 or 2 cells. It is > > > called by fdt_read_rang

Re: [PATCH 03/26] common: fdt_support: Support special case of PCI address in fdt_read_prop()

2021-02-07 Thread Bin Meng
Hi Simon, On Mon, Feb 8, 2021 at 12:21 PM Simon Glass wrote: > > Hi Bin, > > On Sun, 7 Feb 2021 at 08:11, Bin Meng wrote: > > > > At present fdt_read_prop() can only handle 1 or 2 cells. It is > > called by fdt_read_range() which may be used to read PCI address > > from for a PCI bus node where

Re: [PATCH 03/26] common: fdt_support: Support special case of PCI address in fdt_read_prop()

2021-02-07 Thread Simon Glass
Hi Bin, On Sun, 7 Feb 2021 at 08:11, Bin Meng wrote: > > At present fdt_read_prop() can only handle 1 or 2 cells. It is > called by fdt_read_range() which may be used to read PCI address > from for a PCI bus node where the number of PCI address > cell is 3. > > This adds the special handling of

[PATCH 03/26] common: fdt_support: Support special case of PCI address in fdt_read_prop()

2021-02-07 Thread Bin Meng
At present fdt_read_prop() can only handle 1 or 2 cells. It is called by fdt_read_range() which may be used to read PCI address from for a PCI bus node where the number of PCI address cell is 3. This adds the special handling of such case. Signed-off-by: Bin Meng --- common/fdt_support.c | 15