Hi Simon, On Sun, Jun 7, 2015 at 10:50 PM, Simon Glass <s...@chromium.org> wrote: > Commit afbbd413a fixed this for non-driver-model. Make sure that the driver > model code handles this also. > > Signed-off-by: Simon Glass <s...@chromium.org> > --- > > drivers/pci/pci-uclass.c | 3 ++- > 1 file changed, 2 insertions(+), 1 deletion(-) > > diff --git a/drivers/pci/pci-uclass.c b/drivers/pci/pci-uclass.c > index edec93f..4255c02 100644 > --- a/drivers/pci/pci-uclass.c > +++ b/drivers/pci/pci-uclass.c > @@ -495,7 +495,8 @@ static int decode_regions(struct pci_controller *hose, > const void *blob, > > /* Add a region for our local memory */ > pci_set_region(hose->regions + hose->region_count++, 0, 0, > - gd->ram_size, PCI_REGION_MEM | PCI_REGION_SYS_MEMORY); > + gd->ram_size < 0x80000000U ? gd->ram_size : > 0x80000000U, > + PCI_REGION_MEM | PCI_REGION_SYS_MEMORY); > > return 0; > } > --
I think this is specific to baytrail fsp configuration. It should not be put into a common driver. Regards, Bin _______________________________________________ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot