summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/soc/amd/phoenix/root_complex.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/soc/amd/phoenix/root_complex.c b/src/soc/amd/phoenix/root_complex.c
index 1394b2c96b..4a657f86fb 100644
--- a/src/soc/amd/phoenix/root_complex.c
+++ b/src/soc/amd/phoenix/root_complex.c
@@ -150,7 +150,8 @@ void read_soc_memmap_resources(struct device *dev, unsigned long *idx)
/* Reserve fixed IOMMU MMIO region */
mmio_range(dev, (*idx)++, IOMMU_RESERVED_MMIO_BASE, IOMMU_RESERVED_MMIO_SIZE);
- read_fsp_resources(dev, idx);
+ if (CONFIG(PLATFORM_USES_FSP2_0))
+ read_fsp_resources(dev, idx);
}
static void root_complex_init(struct device *dev)