[U-Boot] [PATCH 11/11] dm: x86: baytrail: Correct PCI region 3 when driver model is used
Bin Meng
bmeng.cn at gmail.com
Mon Jun 8 04:57:24 CEST 2015
Hi Simon,
On Sun, Jun 7, 2015 at 10:50 PM, Simon Glass <sjg at 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 <sjg at 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
More information about the U-Boot
mailing list