[PATCH] iommu/amd: Enable PCIe ACS only if AMD IOMMU is on

Jinhui Guo posted 1 patch 3 days, 12 hours ago
drivers/iommu/amd/init.c | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)
[PATCH] iommu/amd: Enable PCIe ACS only if AMD IOMMU is on
Posted by Jinhui Guo 3 days, 12 hours ago
To preserve PCIe performance, ACS is enabled only when
AMD IOMMU is not disabled.

Signed-off-by: Jinhui Guo <guojinhui.liam@bytedance.com>
---
 drivers/iommu/amd/init.c | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/drivers/iommu/amd/init.c b/drivers/iommu/amd/init.c
index ba9e582a8bbe..6e9eab365123 100644
--- a/drivers/iommu/amd/init.c
+++ b/drivers/iommu/amd/init.c
@@ -3212,8 +3212,10 @@ static bool __init detect_ivrs(void)
 	}
 
 out:
-	/* Make sure ACS will be enabled during PCI probe */
-	pci_request_acs();
+	if (!amd_iommu_disabled || amd_iommu_force_enable) {
+		/* Make sure ACS will be enabled during PCI probe */
+		pci_request_acs();
+	}
 
 	return true;
 }
-- 
2.20.1