device: Add IORESOURCE_ABOVE_4G flag to PCI64 resources

When a PCI resource is marked as 64-bits, the IORESOURCE_ABOVE_4G flag
needs to be passed to the v4 allocator to ensure that the resource will
be allocated in a range large enough to succeed.

BUG=b:214443809
TEST=agah can successfully allocate all of the Nvidia GN20 BARs

Signed-off-by: Tim Wawrzynczak <twawrzynczak@chromium.org>
Change-Id: I3f16f52f2a64f8728853df263da29871dca533f7
Reviewed-on: https://review.coreboot.org/c/coreboot/+/64725
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Martin L Roth <gaumless@tutanota.com>
diff --git a/src/device/pci_device.c b/src/device/pci_device.c
index 90b26c1..fda088b 100644
--- a/src/device/pci_device.c
+++ b/src/device/pci_device.c
@@ -423,7 +423,9 @@
 	res->align = max_requested_bits;
 	res->gran = max_requested_bits;
 	res->limit = (res->flags & IORESOURCE_PCI64) ? UINT64_MAX : UINT32_MAX;
-	res->flags |= IORESOURCE_PCIE_RESIZABLE_BAR;
+	res->flags |= (res->flags & IORESOURCE_PCI64) ?
+		IORESOURCE_PCIE_RESIZABLE_BAR | IORESOURCE_ABOVE_4G :
+		IORESOURCE_PCIE_RESIZABLE_BAR;
 
 	printk(BIOS_INFO, "%s: Adjusting resource index %lu: base: %llx size: %llx "
 	       "align: %d gran: %d limit: %llx\n",