* [PATCH v2] PCI/P2PDMA: Root complex whitelist should not apply when an IOMMU is present
@ 2019-06-19 18:56 Logan Gunthorpe
2019-06-19 21:45 ` Bjorn Helgaas
0 siblings, 1 reply; 2+ messages in thread
From: Logan Gunthorpe @ 2019-06-19 18:56 UTC (permalink / raw)
To: linux-pci @ vger . kernel . org, linux-kernel
Cc: Logan Gunthorpe, Christian König, Bjorn Helgaas,
Christoph Hellwig
Presently, there is no path to DMA map P2PDMA memory, so if a TLP
targeting this memory hits the root complex and an IOMMU is present,
the IOMMU will reject the transaction, even if the RC would support
P2PDMA.
So until the kernel knows to map these DMA addresses in the IOMMU,
we should not enable the whitelist when an IOMMU is present.
Link: https://lore.kernel.org/linux-pci/20190522201252.2997-1-logang@deltatee.com/
Fixes: 0f97da831026 ("PCI/P2PDMA: Allow P2P DMA between any devices under AMD ZEN Root Complex")
Signed-off-by: Logan Gunthorpe <logang@deltatee.com>
Reviewed-by: Christian König <christian.koenig@amd.com>
Cc: Bjorn Helgaas <bhelgaas@google.com>
Cc: Christoph Hellwig <hch@lst.de>
---
drivers/pci/p2pdma.c | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/drivers/pci/p2pdma.c b/drivers/pci/p2pdma.c
index a98126ad9c3a..a4994aa3acc0 100644
--- a/drivers/pci/p2pdma.c
+++ b/drivers/pci/p2pdma.c
@@ -18,6 +18,7 @@
#include <linux/percpu-refcount.h>
#include <linux/random.h>
#include <linux/seq_buf.h>
+#include <linux/iommu.h>
struct pci_p2pdma {
struct gen_pool *pool;
@@ -299,6 +300,9 @@ static bool root_complex_whitelist(struct pci_dev *dev)
struct pci_dev *root = pci_get_slot(host->bus, PCI_DEVFN(0, 0));
unsigned short vendor, device;
+ if (iommu_present(dev->dev.bus))
+ return false;
+
if (!root)
return false;
--
2.20.1
^ permalink raw reply related [flat|nested] 2+ messages in thread* Re: [PATCH v2] PCI/P2PDMA: Root complex whitelist should not apply when an IOMMU is present
2019-06-19 18:56 [PATCH v2] PCI/P2PDMA: Root complex whitelist should not apply when an IOMMU is present Logan Gunthorpe
@ 2019-06-19 21:45 ` Bjorn Helgaas
0 siblings, 0 replies; 2+ messages in thread
From: Bjorn Helgaas @ 2019-06-19 21:45 UTC (permalink / raw)
To: Logan Gunthorpe
Cc: linux-pci @ vger . kernel . org, linux-kernel,
Christian König, Christoph Hellwig
On Wed, Jun 19, 2019 at 12:56:26PM -0600, Logan Gunthorpe wrote:
> Presently, there is no path to DMA map P2PDMA memory, so if a TLP
> targeting this memory hits the root complex and an IOMMU is present,
> the IOMMU will reject the transaction, even if the RC would support
> P2PDMA.
>
> So until the kernel knows to map these DMA addresses in the IOMMU,
> we should not enable the whitelist when an IOMMU is present.
>
> Link: https://lore.kernel.org/linux-pci/20190522201252.2997-1-logang@deltatee.com/
> Fixes: 0f97da831026 ("PCI/P2PDMA: Allow P2P DMA between any devices under AMD ZEN Root Complex")
> Signed-off-by: Logan Gunthorpe <logang@deltatee.com>
> Reviewed-by: Christian König <christian.koenig@amd.com>
> Cc: Bjorn Helgaas <bhelgaas@google.com>
> Cc: Christoph Hellwig <hch@lst.de>
Applied to for-linus for v5.2, since we merged 0f97da831026 during the v5.2
merge window, thanks!
> ---
> drivers/pci/p2pdma.c | 4 ++++
> 1 file changed, 4 insertions(+)
>
> diff --git a/drivers/pci/p2pdma.c b/drivers/pci/p2pdma.c
> index a98126ad9c3a..a4994aa3acc0 100644
> --- a/drivers/pci/p2pdma.c
> +++ b/drivers/pci/p2pdma.c
> @@ -18,6 +18,7 @@
> #include <linux/percpu-refcount.h>
> #include <linux/random.h>
> #include <linux/seq_buf.h>
> +#include <linux/iommu.h>
>
> struct pci_p2pdma {
> struct gen_pool *pool;
> @@ -299,6 +300,9 @@ static bool root_complex_whitelist(struct pci_dev *dev)
> struct pci_dev *root = pci_get_slot(host->bus, PCI_DEVFN(0, 0));
> unsigned short vendor, device;
>
> + if (iommu_present(dev->dev.bus))
> + return false;
> +
> if (!root)
> return false;
>
> --
> 2.20.1
>
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2019-06-19 21:45 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-06-19 18:56 [PATCH v2] PCI/P2PDMA: Root complex whitelist should not apply when an IOMMU is present Logan Gunthorpe
2019-06-19 21:45 ` Bjorn Helgaas
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).