diff options
author | Bin Meng <bmeng.cn@gmail.com> | 2018-03-27 00:46:05 -0700 |
---|---|---|
committer | Bin Meng <bmeng.cn@gmail.com> | 2018-03-30 16:05:08 +0800 |
commit | 1eaf7800b6b99b48e73eab56202cf1c7a0e19ac9 (patch) | |
tree | 33be3e6580a2004575777bef1fdf9e6bce46a051 /drivers/pci | |
parent | 14d61d4e577c57ba77b826c6cc9d99a0b3f3fc37 (diff) |
dm: pci: Check board information pointer in decode_regions()
PCI enumeration may happen very early on an x86 board. The board
information pointer should have been checked in decode_regions()
as its space may not be allocated yet.
With this commit, Intel Galileo board boots again.
Fixes: 664758c ("pci: Fix decode regions for memory banks")
Signed-off-by: Bin Meng <bmeng.cn@gmail.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'drivers/pci')
-rw-r--r-- | drivers/pci/pci-uclass.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/pci/pci-uclass.c b/drivers/pci/pci-uclass.c index ad43e8a27c..9d51236770 100644 --- a/drivers/pci/pci-uclass.c +++ b/drivers/pci/pci-uclass.c @@ -876,6 +876,9 @@ static int decode_regions(struct pci_controller *hose, ofnode parent_node, #ifdef CONFIG_NR_DRAM_BANKS bd_t *bd = gd->bd; + if (!bd) + return 0; + for (i = 0; i < CONFIG_NR_DRAM_BANKS; ++i) { if (bd->bi_dram[i].size) { pci_set_region(hose->regions + hose->region_count++, |