summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPhil Sutter <phil@nwl.cc>2021-03-03 01:57:35 +0100
committerTom Rini <trini@konsulko.com>2021-04-12 17:17:11 -0400
commita62de442e41d85b0ab682c2d51ce9d24971dd9dd (patch)
tree5daf2d371ff1cc0a5c6d2e3bb872ec0654713e8b
parent9539f71675c40485e448efb3c4e06afc8d102f94 (diff)
downloadu-boot-a62de442e41d85b0ab682c2d51ce9d24971dd9dd.tar.gz
u-boot-a62de442e41d85b0ab682c2d51ce9d24971dd9dd.tar.xz
u-boot-a62de442e41d85b0ab682c2d51ce9d24971dd9dd.zip
pci: Mark 64bit Memory BARs as such
Just a bit more info to the reader. Signed-off-by: Phil Sutter <phil@nwl.cc> Reviewed-by: Stefan Roese <sr@denx.de>
-rw-r--r--drivers/pci/pci_auto.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/pci/pci_auto.c b/drivers/pci/pci_auto.c
index da76148c58..05663c72b4 100644
--- a/drivers/pci/pci_auto.c
+++ b/drivers/pci/pci_auto.c
@@ -88,8 +88,9 @@ static void dm_pciauto_setup_device(struct udevice *dev, int bars_num,
else
bar_res = mem;
- debug("PCI Autoconfig: BAR %d, %s, size=0x%llx, ",
+ debug("PCI Autoconfig: BAR %d, %s%s, size=0x%llx, ",
bar_nr, bar_res == prefetch ? "Prf" : "Mem",
+ found_mem64 ? "64" : "",
(unsigned long long)bar_size);
}