* [PATCH v5 00/18] PCI/P2PDMA: Route peer-to-peer DMA by TLP class
@ 2026-09-10 11:31 Leon Romanovsky
2026-09-10 11:31 ` [PATCH v5 01/18] PCI/P2PDMA: Document pdev->p2pdma lifetime rules Leon Romanovsky
` (17 more replies)
0 siblings, 18 replies; 21+ messages in thread
From: Leon Romanovsky @ 2026-09-10 11:31 UTC (permalink / raw)
To: Bjorn Helgaas, Logan Gunthorpe, Chaitanya Kulkarni,
Greg Kroah-Hartman, Jens Axboe, Alex Williamson, Leon Romanovsky,
Ankit Agrawal, Jason Gunthorpe, Jonathan Corbet, Shuah Khan,
Joerg Roedel (AMD), Will Deacon, Robin Murphy, Randy Dunlap,
Sumit Semwal, Christian König
Cc: linux-pci, linux-kernel, linux-doc, iommu, Tushar Dave,
linux-media, dri-devel, linaro-mm-sig, linux-rdma, kvm,
Matt Evans
PCI P2PDMA applies Request and Completion Redirect throughout both paths.
This misclassifies asymmetric and nested switches, and reports one answer
for every kind of TLP.
Three ACS controls act on TLP attributes the client chooses rather than
on the topology: Translation Blocking and Direct Translated P2P act on
a Request's Address Type, and Completion Redirect skips Completions carrying
Relaxed Ordering.
Evaluate each direction at the path divergence, decide every class from the
one walk, expose the provider to dma-buf importers, and let mlx5 ask rather
than assume.
Signed-off-by: Leon Romanovsky <leonro@nvidia.com>
---
Changes in v5:
- Rebase on the posted fixes.
- Dropped tags from changed patches.
- Remove Egress Control Vector interpretation and coverage.
- Keep enabled Egress Control conservative as a Request redirect.
- Use pci_dbg()/dev_dbg() for diagnostics and drop the "debug" prefix.
- Removed code comments from "Document the pdev->p2pdma lifetime and RCU
rules" patch and reduced description to actual lifetime explanation.
- Added note that Linux assumes that TLPs are in strict-ordering and
untranslated.
- Added code to calculate p2p paths per-TLP type.
- Converted mlx5 to use that new proposed API.
- Link to https://patch.msgid.link/20260821-fix-p2p-acs-v4-0-v4-0-94426b96de73@nvidia.com
Changes in v4:
- Reject ACS Violations and unreadable routing state instead of treating
them as host-bridge redirects
- Added Tested-by tags from Tushar Dave
- Added support to asymmetric ACS routing
- Limited redirect checks to the two ports at the path divergence
- Added standalone ACS routing diagnostics for hardware retesting
- Dropped " PCI: Account for Direct Translated P2P in ACS isolation checks" patch
- Link to v3: https://patch.msgid.link/20260811-fix-p2p-acs-v3-0-efc488ee7c03@nvidia.com
Changes in v3:
- Fixed pci_p2pdma_add_resource() error unwinding
- Made pdev->p2pdma teardown wait unconditionally for RCU readers
- Restricted pci_p2pmem_find_many() to pool-backed providers
- Documented the pdev->p2pdma lifetime and RCU rules
- Fixed calc_map_type_and_dist() handling of the verbose argument
- Required the ACS port and target to share a bus before indexing the
Egress Control Vector
- Gave pci_acs_enabled() and pci_acs_path_enabled() a scope, so the ACS
Direct Translated P2P rule no longer stops pci_enable_pasid() from
enabling PASID
- Dropped "Report ACS ports when the paths share no upstream bridge":
the mapping type cannot change without a shared upstream bridge, so
the pci=disable_acs_redir= hint was not actionable there and the ACS
walk only cost config space reads
- Folded the Request Redirect rule into pci_acs_rr_ineffective(), so
pci_acs_flags_enabled() and the Intel SPT PCH quirk share one copy
- Renamed pci_acs_egress_ctrl_set() to pci_acs_egress_ctrl_is_set(), it
reads the bit rather than setting it
- Reworded the blocked-path warning: ACS may also leave the direct route
indeterminate rather than blocked
- Added KUnit coverage for the shared-bus guard, a device with no ACS
capability and an unreadable ACS Control register
- Added the missing Fixes: tags, a second one on the
pci_p2pdma_add_resource() unwinding fix (the dangling devres action
dates to f58ef9d1d135) and one on the Egress Control isolation change
- Link to v2: https://patch.msgid.link/20260806-fix-p2p-acs-v2-0-0cec14812965@nvidia.com
Changes in v2:
- Added Logan's ROB tags
- Added commas in Documentation patch
- Link to v1: https://patch.msgid.link/20260802-fix-p2p-acs-v1-0-a7c5eb64fff6@nvidia.com
---
Leon Romanovsky (18):
PCI/P2PDMA: Document pdev->p2pdma lifetime rules
PCI/P2PDMA: Document the TLP attribute assumptions
PCI/P2PDMA: Derive routing from directional ACS controls
PCI: Reject unreadable ACS controls in isolation checks
PCI/P2PDMA: Evaluate ACS controls at the path divergence
PCI/P2PDMA: Document directional ACS routing
PCI/P2PDMA: Collect the path's ACS controls before deciding
PCI/P2PDMA: Answer routing per TLP class
PCI/P2PDMA: Route Relaxed Ordering Completions directly
PCI/P2PDMA: Reject Translated Requests blocked by Translation Blocking
PCI/P2PDMA: Route Translated Requests under Direct Translated P2P
PCI/P2PDMA: Log detailed ACS routing diagnostics
PCI/P2PDMA: Add KUnit tests for the ACS routing decisions
PCI/P2PDMA: Test the ACS P2P routing walk
PCI: Add KUnit coverage for ACS isolation checks
PCI/P2PDMA: Document TLP-class routing
dma-buf: Let importers ask how peer-to-peer traffic is routed
RDMA/mlx5: Ask P2PDMA whether ATS takes a direct peer-to-peer route
Documentation/admin-guide/kernel-parameters.txt | 9 +-
Documentation/driver-api/pci/p2pdma.rst | 69 +++
drivers/dma-buf/dma-buf-mapping.c | 41 +-
drivers/dma-buf/dma-buf.c | 1 +
drivers/infiniband/core/uverbs.h | 1 -
drivers/infiniband/core/uverbs_std_types_dmabuf.c | 7 +-
drivers/infiniband/hw/mlx5/mlx5_ib.h | 36 +-
drivers/infiniband/hw/mlx5/mr.c | 40 ++
drivers/pci/Kconfig | 15 +
drivers/pci/Makefile | 1 +
drivers/pci/p2pdma.c | 637 +++++++++++++++++++---
drivers/pci/pci.c | 7 +-
drivers/pci/pci.h | 26 +
drivers/pci/pci_acs_test.c | 609 +++++++++++++++++++++
drivers/pci/quirks.c | 6 +-
drivers/vfio/pci/vfio_pci_dmabuf.c | 8 +-
include/linux/dma-buf-mapping.h | 4 +-
include/linux/dma-buf.h | 5 +
include/linux/pci-p2pdma.h | 57 +-
19 files changed, 1440 insertions(+), 139 deletions(-)
---
base-commit: 08dbfad3f5040f5bdb6c529da20d6d4e81fefd72
change-id: 20260821-fix-p2p-acs-v4-0-e72455e3a261
prerequisite-message-id: <20260830-batch-p2p-fixes-v1-0-5044e8dfbe2e@nvidia.com>
prerequisite-patch-id: 6b25c7fcf164cdfc14e9fac5b908d97fcf6509d7
prerequisite-patch-id: 0d083c281001365aae4b35544cf28891a6ab9a96
prerequisite-patch-id: bfd9dabf271f3cc9a3a61f46387d20c20311363d
prerequisite-patch-id: fad0275efc722830fc591509506c0a5e4f581073
prerequisite-patch-id: 0c83bee688fec1f6d1564654df7c630fa6a4a978
Best regards,
--
Leon Romanovsky <leonro@nvidia.com>
^ permalink raw reply [flat|nested] 21+ messages in thread
* [PATCH v5 01/18] PCI/P2PDMA: Document pdev->p2pdma lifetime rules
2026-09-10 11:31 [PATCH v5 00/18] PCI/P2PDMA: Route peer-to-peer DMA by TLP class Leon Romanovsky
@ 2026-09-10 11:31 ` Leon Romanovsky
2026-09-10 11:31 ` [PATCH v5 02/18] PCI/P2PDMA: Document the TLP attribute assumptions Leon Romanovsky
` (16 subsequent siblings)
17 siblings, 0 replies; 21+ messages in thread
From: Leon Romanovsky @ 2026-09-10 11:31 UTC (permalink / raw)
To: Bjorn Helgaas, Logan Gunthorpe, Chaitanya Kulkarni,
Greg Kroah-Hartman, Jens Axboe, Alex Williamson, Leon Romanovsky,
Ankit Agrawal, Jason Gunthorpe, Jonathan Corbet, Shuah Khan,
Joerg Roedel (AMD), Will Deacon, Robin Murphy, Randy Dunlap,
Sumit Semwal, Christian König
Cc: linux-pci, linux-kernel, linux-doc, iommu, Tushar Dave,
linux-media, dri-devel, linaro-mm-sig, linux-rdma, kvm,
Matt Evans
From: Leon Romanovsky <leonro@nvidia.com>
pdev->p2pdma is normally accessed through provider-owned references, but
pci_p2pmem_find_many() and the p2pmem sysfs attributes may race with driver
unbind.
Document initialization, teardown, and how the release grace period
protects both the P2PDMA state and its optional allocation pool.
Cc: Alex Williamson <alex@shazbot.org>
Cc: Matt Evans <matt@ozlabs.org>
Signed-off-by: Leon Romanovsky <leonro@nvidia.com>
---
drivers/pci/p2pdma.c | 23 +++++++++++++++++++++++
1 file changed, 23 insertions(+)
diff --git a/drivers/pci/p2pdma.c b/drivers/pci/p2pdma.c
index 4e4d2df17a45..d8c9d605b828 100644
--- a/drivers/pci/p2pdma.c
+++ b/drivers/pci/p2pdma.c
@@ -21,6 +21,29 @@
#include <linux/seq_buf.h>
#include <linux/xarray.h>
+/*
+ * Lifetime and RCU usage
+ *
+ * Within one driver bind, pdev->p2pdma is set exactly once,
+ * by pcim_p2pdma_init(), and cleared exactly once, by the pci_p2pdma_release()
+ * devres action that the same function installs. It is never changed and follow
+ * same lifetime as parent pdev.
+ *
+ * Most exported entry points reach pdev->p2pdma through a struct pci_dev or a
+ * struct p2pdma_provider owned by the provider driver, and
+ * pcim_p2pdma_provider() requires callers to drop those references before the
+ * driver's remove() completes. Those cannot run concurrently with
+ * pci_p2pdma_release(), and their rcu_dereference() calls are simply how an
+ * __rcu pointer is read.
+ *
+ * pci_p2pmem_find_many() and the p2pmem sysfs attributes are the exceptions.
+ * The first walks every PCI device, so it can reach a provider whose driver is
+ * unbinding: pci_get_device() pins the struct pci_dev, not the driver. The
+ * second is reachable from userspace until sysfs_remove_group() runs at the end
+ * of the release. pci_has_p2pmem() must dereference the object to determine
+ * whether it owns a gen_pool, so even a device without a pool must remain alive
+ * until that RCU reader exits.
+ */
struct pci_p2pdma {
struct gen_pool *pool;
bool p2pmem_published;
--
2.55.0
^ permalink raw reply related [flat|nested] 21+ messages in thread
* [PATCH v5 02/18] PCI/P2PDMA: Document the TLP attribute assumptions
2026-09-10 11:31 [PATCH v5 00/18] PCI/P2PDMA: Route peer-to-peer DMA by TLP class Leon Romanovsky
2026-09-10 11:31 ` [PATCH v5 01/18] PCI/P2PDMA: Document pdev->p2pdma lifetime rules Leon Romanovsky
@ 2026-09-10 11:31 ` Leon Romanovsky
2026-09-10 11:31 ` [PATCH v5 03/18] PCI/P2PDMA: Derive routing from directional ACS controls Leon Romanovsky
` (15 subsequent siblings)
17 siblings, 0 replies; 21+ messages in thread
From: Leon Romanovsky @ 2026-09-10 11:31 UTC (permalink / raw)
To: Bjorn Helgaas, Logan Gunthorpe, Chaitanya Kulkarni,
Greg Kroah-Hartman, Jens Axboe, Alex Williamson, Leon Romanovsky,
Ankit Agrawal, Jason Gunthorpe, Jonathan Corbet, Shuah Khan,
Joerg Roedel (AMD), Will Deacon, Robin Murphy, Randy Dunlap,
Sumit Semwal, Christian König
Cc: linux-pci, linux-kernel, linux-doc, iommu, Tushar Dave,
linux-media, dri-devel, linaro-mm-sig, linux-rdma, kvm
From: Leon Romanovsky <leonro@nvidia.com>
P2PDMA selects a mapping without receiving the Request's ordering or
Address Type attributes. Its ACS handles only strictly ordered Requests
carrying an Untranslated address.
Document that the result is not defined for Relaxed Ordering or
ATS-translated Requests because those TLP attributes can select different
routes through the fabric.
Reviewed-by: Logan Gunthorpe <logang@deltatee.com>
Signed-off-by: Leon Romanovsky <leonro@nvidia.com>
---
Documentation/driver-api/pci/p2pdma.rst | 7 +++++++
1 file changed, 7 insertions(+)
diff --git a/Documentation/driver-api/pci/p2pdma.rst b/Documentation/driver-api/pci/p2pdma.rst
index 63cff9e4d2c9..80f8fec9b0e9 100644
--- a/Documentation/driver-api/pci/p2pdma.rst
+++ b/Documentation/driver-api/pci/p2pdma.rst
@@ -15,6 +15,13 @@ then based on the ACS settings the transaction can route entirely within
the PCIe hierarchy and never reach the root port. The kernel will evaluate
the PCIe topology and always permit P2P in these well-defined cases.
+This evaluation assumes clients issue strictly ordered Requests carrying an
+Untranslated address. Its result is not defined when clients use Relaxed
+Ordering or issue ATS-translated Requests because those TLP attributes can
+select different routes through the fabric. Unless ACS Translation Blocking
+is enabled, a Port with ACS Direct Translated P2P enabled routes a
+Translated Request directly to the peer regardless of the redirect controls.
+
However, if the P2P transaction reaches the host bridge then it might have to
hairpin back out the same root port, be routed inside the CPU SOC to another
PCIe root port, or routed internally to the SOC.
--
2.55.0
^ permalink raw reply related [flat|nested] 21+ messages in thread
* [PATCH v5 03/18] PCI/P2PDMA: Derive routing from directional ACS controls
2026-09-10 11:31 [PATCH v5 00/18] PCI/P2PDMA: Route peer-to-peer DMA by TLP class Leon Romanovsky
2026-09-10 11:31 ` [PATCH v5 01/18] PCI/P2PDMA: Document pdev->p2pdma lifetime rules Leon Romanovsky
2026-09-10 11:31 ` [PATCH v5 02/18] PCI/P2PDMA: Document the TLP attribute assumptions Leon Romanovsky
@ 2026-09-10 11:31 ` Leon Romanovsky
2026-09-10 11:31 ` [PATCH v5 04/18] PCI: Reject unreadable ACS controls in isolation checks Leon Romanovsky
` (14 subsequent siblings)
17 siblings, 0 replies; 21+ messages in thread
From: Leon Romanovsky @ 2026-09-10 11:31 UTC (permalink / raw)
To: Bjorn Helgaas, Logan Gunthorpe, Chaitanya Kulkarni,
Greg Kroah-Hartman, Jens Axboe, Alex Williamson, Leon Romanovsky,
Ankit Agrawal, Jason Gunthorpe, Jonathan Corbet, Shuah Khan,
Joerg Roedel (AMD), Will Deacon, Robin Murphy, Randy Dunlap,
Sumit Semwal, Christian König
Cc: linux-pci, linux-kernel, linux-doc, iommu, Tushar Dave,
linux-media, dri-devel, linaro-mm-sig, linux-rdma, kvm
From: Leon Romanovsky <leonro@nvidia.com>
pci_bridge_has_acs_redir() treats Request and Completion Redirect as
interchangeable. On asymmetric fabrics, a control for only the reverse TLP
direction can unnecessarily force P2PDMA through the host bridge.
Evaluate Request Redirect for client Requests and Completion Redirect for
provider read Completions. Continue treating enabled Egress Control
conservatively as a Request redirect.
Fixes: 52916982af48 ("PCI/P2PDMA: Support peer-to-peer memory")
Signed-off-by: Leon Romanovsky <leonro@nvidia.com>
---
drivers/pci/p2pdma.c | 75 ++++++++++++++++++++++++++++++++++++++++------------
1 file changed, 58 insertions(+), 17 deletions(-)
diff --git a/drivers/pci/p2pdma.c b/drivers/pci/p2pdma.c
index d8c9d605b828..6da68ec99601 100644
--- a/drivers/pci/p2pdma.c
+++ b/drivers/pci/p2pdma.c
@@ -21,6 +21,8 @@
#include <linux/seq_buf.h>
#include <linux/xarray.h>
+#include "pci.h"
+
/*
* Lifetime and RCU usage
*
@@ -513,26 +515,56 @@ static struct pci_dev *find_parent_pci_dev(struct device *dev)
return NULL;
}
+enum pci_acs_p2pdma_state {
+ PCI_ACS_P2PDMA_DIRECT,
+ PCI_ACS_P2PDMA_REDIRECT,
+};
+
/*
- * Check if a PCI bridge has its ACS redirection bits set to redirect P2P
- * TLPs upstream via ACS. Returns 1 if the packets will be redirected
- * upstream, 0 otherwise.
+ * Decide how a peer-to-peer Request at an ACS-capable ingress port routes,
+ * from that port's ACS Control register.
+ *
+ * Linux does not read the Egress Control Vector, so Egress Control is treated
+ * conservatively as a redirect. Per PCIe r7.0 Table 6-11 the outcomes it
+ * selects are a direct route and an ACS Violation, and neither one lets peer
+ * bus addressing be assumed.
*/
-static int pci_bridge_has_acs_redir(struct pci_dev *pdev)
+static enum pci_acs_p2pdma_state
+pci_acs_p2pdma_request(u16 ctrl)
{
- int pos;
- u16 ctrl;
+ return ctrl & (PCI_ACS_RR | PCI_ACS_EC) ?
+ PCI_ACS_P2PDMA_REDIRECT : PCI_ACS_P2PDMA_DIRECT;
+}
- pos = pdev->acs_cap;
- if (!pos)
- return 0;
+/*
+ * Decide how a peer-to-peer Completion at an ACS-capable ingress port routes.
+ * PCIe r7.0 sec 6.12.1.1: no ACS control other than P2P Completion Redirect
+ * affects a Completion.
+ */
+static enum pci_acs_p2pdma_state
+pci_acs_p2pdma_completion(u16 ctrl)
+{
+ return ctrl & PCI_ACS_CR ? PCI_ACS_P2PDMA_REDIRECT :
+ PCI_ACS_P2PDMA_DIRECT;
+}
- pci_read_config_word(pdev, pos + PCI_ACS_CTRL, &ctrl);
+/*
+ * Read @pdev's ACS Control register. A device without an ACS capability has
+ * no peer-to-peer controls at all, which routes the same as having them all
+ * clear. Returns false when the register is present but cannot be read; @ctrl
+ * is then meaningless.
+ */
+static bool pci_acs_p2pdma_ctrl(struct pci_dev *pdev, u16 *ctrl)
+{
+ int pos;
- if (ctrl & (PCI_ACS_RR | PCI_ACS_CR | PCI_ACS_EC))
- return 1;
+ pos = pdev->acs_cap;
+ if (!pos) {
+ *ctrl = 0;
+ return true;
+ }
- return 0;
+ return !pci_read_config_word(pdev, pos + PCI_ACS_CTRL, ctrl);
}
static void seq_buf_print_bus_devfn(struct seq_buf *buf, struct pci_dev *pdev)
@@ -721,6 +753,10 @@ static unsigned long map_types_idx(struct pci_dev *client)
* then to Device B. The mapping type returned depends on the ACS
* redirection setting of the ports along the path.
*
+ * The client initiates Requests to provider memory. Check Request Redirect
+ * on the client path and Completion Redirect for read Completions on the
+ * provider path.
+ *
* If ACS redirect is set on any port in the path, traffic between the
* devices will go through the host bridge, so return
* PCI_P2PDMA_MAP_THRU_HOST_BRIDGE; otherwise return
@@ -744,6 +780,7 @@ calc_map_type_and_dist(struct pci_dev *provider, struct pci_dev *client,
int dist_a = 0;
int dist_b = 0;
char buf[128];
+ u16 ctrl;
seq_buf_init(&acs_list, buf, sizeof(buf));
@@ -755,7 +792,9 @@ calc_map_type_and_dist(struct pci_dev *provider, struct pci_dev *client,
while (a) {
dist_b = 0;
- if (pci_bridge_has_acs_redir(a)) {
+ if (!pci_acs_p2pdma_ctrl(a, &ctrl) ||
+ pci_acs_p2pdma_completion(ctrl) ==
+ PCI_ACS_P2PDMA_REDIRECT) {
seq_buf_print_bus_devfn(&acs_list, a);
acs_cnt++;
}
@@ -784,7 +823,9 @@ calc_map_type_and_dist(struct pci_dev *provider, struct pci_dev *client,
if (a == bb)
break;
- if (pci_bridge_has_acs_redir(bb)) {
+ if (!pci_acs_p2pdma_ctrl(bb, &ctrl) ||
+ pci_acs_p2pdma_request(ctrl) ==
+ PCI_ACS_P2PDMA_REDIRECT) {
seq_buf_print_bus_devfn(&acs_list, bb);
acs_cnt++;
}
@@ -1132,10 +1173,10 @@ EXPORT_SYMBOL_GPL(pci_p2pmem_publish);
/**
* pci_p2pdma_map_type - Determine the mapping type for P2PDMA transfers
* @provider: P2PDMA provider structure
- * @dev: Target device for the transfer
+ * @dev: Client device that initiates the transfer
*
* Determines how peer-to-peer DMA transfers should be mapped between
- * the provider and the target device. The mapping type indicates whether
+ * the provider and the client device. The mapping type indicates whether
* the transfer can be done directly through PCI switches or must go
* through the host bridge.
*/
--
2.55.0
^ permalink raw reply related [flat|nested] 21+ messages in thread
* [PATCH v5 04/18] PCI: Reject unreadable ACS controls in isolation checks
2026-09-10 11:31 [PATCH v5 00/18] PCI/P2PDMA: Route peer-to-peer DMA by TLP class Leon Romanovsky
` (2 preceding siblings ...)
2026-09-10 11:31 ` [PATCH v5 03/18] PCI/P2PDMA: Derive routing from directional ACS controls Leon Romanovsky
@ 2026-09-10 11:31 ` Leon Romanovsky
2026-09-10 11:32 ` [PATCH v5 05/18] PCI/P2PDMA: Evaluate ACS controls at the path divergence Leon Romanovsky
` (13 subsequent siblings)
17 siblings, 0 replies; 21+ messages in thread
From: Leon Romanovsky @ 2026-09-10 11:31 UTC (permalink / raw)
To: Bjorn Helgaas, Logan Gunthorpe, Chaitanya Kulkarni,
Greg Kroah-Hartman, Jens Axboe, Alex Williamson, Leon Romanovsky,
Ankit Agrawal, Jason Gunthorpe, Jonathan Corbet, Shuah Khan,
Joerg Roedel (AMD), Will Deacon, Robin Murphy, Randy Dunlap,
Sumit Semwal, Christian König
Cc: linux-pci, linux-kernel, linux-doc, iommu, Tushar Dave,
linux-media, dri-devel, linaro-mm-sig, linux-rdma, kvm
From: Leon Romanovsky <leonro@nvidia.com>
pci_acs_flags_enabled() and the Intel SPT PCH quirk use ACS registers
without checking config-space read errors. A failed read may leave control
state indeterminate yet allow the device to satisfy requested isolation
controls.
Return false when either ACS capability or control state cannot be read.
An unknown state cannot prove isolation.
Signed-off-by: Leon Romanovsky <leonro@nvidia.com>
---
drivers/pci/pci.c | 3 ++-
drivers/pci/quirks.c | 6 ++++--
2 files changed, 6 insertions(+), 3 deletions(-)
diff --git a/drivers/pci/pci.c b/drivers/pci/pci.c
index b2879a6be5f8..f7d94ecf9157 100644
--- a/drivers/pci/pci.c
+++ b/drivers/pci/pci.c
@@ -3594,7 +3594,8 @@ static bool pci_acs_flags_enabled(struct pci_dev *pdev, u16 acs_flags)
*/
acs_flags &= (pdev->acs_capabilities | PCI_ACS_EC);
- pci_read_config_word(pdev, pos + PCI_ACS_CTRL, &ctrl);
+ if (pci_read_config_word(pdev, pos + PCI_ACS_CTRL, &ctrl))
+ return false;
return (ctrl & acs_flags) == acs_flags;
}
diff --git a/drivers/pci/quirks.c b/drivers/pci/quirks.c
index de9bbccda21f..d5c3e6802840 100644
--- a/drivers/pci/quirks.c
+++ b/drivers/pci/quirks.c
@@ -4992,10 +4992,12 @@ static int pci_quirk_intel_spt_pch_acs(struct pci_dev *dev, u16 acs_flags)
return -ENOTTY;
/* see pci_acs_flags_enabled() */
- pci_read_config_dword(dev, pos + PCI_ACS_CAP, &cap);
+ if (pci_read_config_dword(dev, pos + PCI_ACS_CAP, &cap))
+ return 0;
acs_flags &= (cap | PCI_ACS_EC);
- pci_read_config_dword(dev, pos + INTEL_SPT_ACS_CTRL, &ctrl);
+ if (pci_read_config_dword(dev, pos + INTEL_SPT_ACS_CTRL, &ctrl))
+ return 0;
return pci_acs_ctrl_enabled(acs_flags, ctrl);
}
--
2.55.0
^ permalink raw reply related [flat|nested] 21+ messages in thread
* [PATCH v5 05/18] PCI/P2PDMA: Evaluate ACS controls at the path divergence
2026-09-10 11:31 [PATCH v5 00/18] PCI/P2PDMA: Route peer-to-peer DMA by TLP class Leon Romanovsky
` (3 preceding siblings ...)
2026-09-10 11:31 ` [PATCH v5 04/18] PCI: Reject unreadable ACS controls in isolation checks Leon Romanovsky
@ 2026-09-10 11:32 ` Leon Romanovsky
2026-09-10 11:32 ` [PATCH v5 06/18] PCI/P2PDMA: Document directional ACS routing Leon Romanovsky
` (12 subsequent siblings)
17 siblings, 0 replies; 21+ messages in thread
From: Leon Romanovsky @ 2026-09-10 11:32 UTC (permalink / raw)
To: Bjorn Helgaas, Logan Gunthorpe, Chaitanya Kulkarni,
Greg Kroah-Hartman, Jens Axboe, Alex Williamson, Leon Romanovsky,
Ankit Agrawal, Jason Gunthorpe, Jonathan Corbet, Shuah Khan,
Joerg Roedel (AMD), Will Deacon, Robin Murphy, Randy Dunlap,
Sumit Semwal, Christian König
Cc: linux-pci, linux-kernel, linux-doc, iommu, Tushar Dave,
linux-media, dri-devel, linaro-mm-sig, linux-rdma, kvm
From: Leon Romanovsky <leonro@nvidia.com>
ACS redirect controls choose between peer and upstream routes only at the
path divergence. Applying them below that point rejects valid nested
topologies because traffic already has only an upstream route.
Evaluate Request controls on the client-side divergence port and Completion
Redirect on the provider-side port and reject an unreadable ACS Control
register.
Fixes: 52916982af48 ("PCI/P2PDMA: Support peer-to-peer memory")
Signed-off-by: Leon Romanovsky <leonro@nvidia.com>
---
drivers/pci/p2pdma.c | 101 +++++++++++++++++++++++++++++----------------
include/linux/pci-p2pdma.h | 8 ++--
2 files changed, 70 insertions(+), 39 deletions(-)
diff --git a/drivers/pci/p2pdma.c b/drivers/pci/p2pdma.c
index 6da68ec99601..43219a67aaf6 100644
--- a/drivers/pci/p2pdma.c
+++ b/drivers/pci/p2pdma.c
@@ -516,6 +516,7 @@ static struct pci_dev *find_parent_pci_dev(struct device *dev)
}
enum pci_acs_p2pdma_state {
+ PCI_ACS_P2PDMA_NOT_SUPPORTED,
PCI_ACS_P2PDMA_DIRECT,
PCI_ACS_P2PDMA_REDIRECT,
};
@@ -753,13 +754,13 @@ static unsigned long map_types_idx(struct pci_dev *client)
* then to Device B. The mapping type returned depends on the ACS
* redirection setting of the ports along the path.
*
- * The client initiates Requests to provider memory. Check Request Redirect
- * on the client path and Completion Redirect for read Completions on the
- * provider path.
+ * The client initiates Requests to provider memory. At the path divergence,
+ * check Request Redirect and Egress Control on the client-side port, and
+ * Completion Redirect for read Completions on the provider-side port.
*
- * If ACS redirect is set on any port in the path, traffic between the
- * devices will go through the host bridge, so return
- * PCI_P2PDMA_MAP_THRU_HOST_BRIDGE; otherwise return
+ * If ACS redirects traffic at either divergence port, return
+ * PCI_P2PDMA_MAP_THRU_HOST_BRIDGE. If the ACS Control register cannot be
+ * read, return PCI_P2PDMA_MAP_NOT_SUPPORTED. Otherwise, return
* PCI_P2PDMA_MAP_BUS_ADDR.
*
* Any two devices that have a data path that goes through the host bridge
@@ -773,10 +774,13 @@ calc_map_type_and_dist(struct pci_dev *provider, struct pci_dev *client,
int *dist, bool verbose)
{
enum pci_p2pdma_map_type map_type = PCI_P2PDMA_MAP_THRU_HOST_BRIDGE;
+ enum pci_acs_p2pdma_state state = PCI_ACS_P2PDMA_NOT_SUPPORTED;
struct pci_dev *a = provider, *b = client, *bb;
+ struct pci_dev *a_child = NULL, *b_child = NULL;
+ struct pci_dev *acs_unreadable = NULL;
struct pci_p2pdma *p2pdma;
struct seq_buf acs_list;
- int acs_cnt = 0;
+ int acs_redirect_cnt = 0;
int dist_a = 0;
int dist_b = 0;
char buf[128];
@@ -791,51 +795,67 @@ calc_map_type_and_dist(struct pci_dev *provider, struct pci_dev *client,
*/
while (a) {
dist_b = 0;
-
- if (!pci_acs_p2pdma_ctrl(a, &ctrl) ||
- pci_acs_p2pdma_completion(ctrl) ==
- PCI_ACS_P2PDMA_REDIRECT) {
- seq_buf_print_bus_devfn(&acs_list, a);
- acs_cnt++;
- }
-
+ b_child = NULL;
bb = b;
while (bb) {
if (a == bb)
- goto check_b_path_acs;
+ goto check_paths_acs;
+ b_child = bb;
bb = pci_upstream_bridge(bb);
dist_b++;
}
+ a_child = a;
a = pci_upstream_bridge(a);
dist_a++;
}
+ /*
+ * The paths share no upstream bridge, so there is no direct path for
+ * ACS to gate: PCI_P2PDMA_MAP_BUS_ADDR is not reachable here and the
+ * request can only get to the peer through the host bridge.
+ */
*dist = dist_a + dist_b;
goto map_through_host_bridge;
-check_b_path_acs:
- bb = b;
-
- while (bb) {
- if (a == bb)
- break;
+check_paths_acs:
+ *dist = dist_a + dist_b;
- if (!pci_acs_p2pdma_ctrl(bb, &ctrl) ||
- pci_acs_p2pdma_request(ctrl) ==
- PCI_ACS_P2PDMA_REDIRECT) {
- seq_buf_print_bus_devfn(&acs_list, bb);
- acs_cnt++;
+ /*
+ * ACS P2P routing controls apply where a TLP can route toward the peer
+ * or upstream. Below that divergence, its only route toward the other
+ * branch is upstream, so redirect controls do not affect the path.
+ */
+ if (a_child && b_child) {
+ if (pci_acs_p2pdma_ctrl(a_child, &ctrl))
+ state = pci_acs_p2pdma_completion(ctrl);
+ if (state != PCI_ACS_P2PDMA_DIRECT) {
+ seq_buf_print_bus_devfn(&acs_list, a_child);
+ if (state == PCI_ACS_P2PDMA_REDIRECT)
+ acs_redirect_cnt++;
+ else if (!acs_unreadable)
+ acs_unreadable = a_child;
}
- bb = pci_upstream_bridge(bb);
+ state = PCI_ACS_P2PDMA_NOT_SUPPORTED;
+ if (pci_acs_p2pdma_ctrl(b_child, &ctrl))
+ state = pci_acs_p2pdma_request(ctrl);
+ if (state != PCI_ACS_P2PDMA_DIRECT) {
+ seq_buf_print_bus_devfn(&acs_list, b_child);
+ if (state == PCI_ACS_P2PDMA_REDIRECT)
+ acs_redirect_cnt++;
+ else if (!acs_unreadable)
+ acs_unreadable = b_child;
+ }
}
- *dist = dist_a + dist_b;
-
- if (!acs_cnt) {
+ /*
+ * Below a shared upstream bridge, a path whose divergence ports do not
+ * redirect routes the request directly.
+ */
+ if (!acs_unreadable && !acs_redirect_cnt) {
map_type = PCI_P2PDMA_MAP_BUS_ADDR;
goto done;
}
@@ -844,10 +864,21 @@ calc_map_type_and_dist(struct pci_dev *provider, struct pci_dev *client,
/* Drop the final semicolon; the list is not empty here. */
if (!seq_buf_has_overflowed(&acs_list))
acs_list.buffer[acs_list.len - 1] = '\0';
- pci_warn(client, "ACS redirect is set between the client and provider (%s)\n",
- pci_name(provider));
- pci_warn(client, "to disable ACS redirect for this path, add the kernel parameter: pci=disable_acs_redir=%s\n",
- seq_buf_str(&acs_list));
+ if (acs_unreadable)
+ pci_warn(client, "ACS Control is unreadable for provider %s at %s\n",
+ pci_name(provider), pci_name(acs_unreadable));
+ else {
+ pci_warn(client, "ACS redirect is set between the client and provider (%s)\n",
+ pci_name(provider));
+ pci_warn(client, "to disable ACS controls for this path, add the kernel parameter: pci=disable_acs_redir=%s\n",
+ seq_buf_str(&acs_list));
+ }
+ }
+
+ /* An unreadable control does not establish an upstream redirect. */
+ if (acs_unreadable) {
+ map_type = PCI_P2PDMA_MAP_NOT_SUPPORTED;
+ goto done;
}
map_through_host_bridge:
diff --git a/include/linux/pci-p2pdma.h b/include/linux/pci-p2pdma.h
index 873de20a2247..dd17501ba1b6 100644
--- a/include/linux/pci-p2pdma.h
+++ b/include/linux/pci-p2pdma.h
@@ -42,10 +42,10 @@ enum pci_p2pdma_map_type {
PCI_P2PDMA_MAP_NONE,
/*
- * PCI_P2PDMA_MAP_NOT_SUPPORTED: Indicates the transaction will
- * traverse the host bridge and the host bridge is not in the
- * allowlist. DMA Mapping routines should return an error when
- * this is returned.
+ * PCI_P2PDMA_MAP_NOT_SUPPORTED: Indicates no safe mapping is available,
+ * for example because ACS blocks the direct path or the required host
+ * bridge is not in the allowlist. DMA Mapping routines should return an
+ * error when this is returned.
*/
PCI_P2PDMA_MAP_NOT_SUPPORTED,
--
2.55.0
^ permalink raw reply related [flat|nested] 21+ messages in thread
* [PATCH v5 06/18] PCI/P2PDMA: Document directional ACS routing
2026-09-10 11:31 [PATCH v5 00/18] PCI/P2PDMA: Route peer-to-peer DMA by TLP class Leon Romanovsky
` (4 preceding siblings ...)
2026-09-10 11:32 ` [PATCH v5 05/18] PCI/P2PDMA: Evaluate ACS controls at the path divergence Leon Romanovsky
@ 2026-09-10 11:32 ` Leon Romanovsky
2026-09-10 11:32 ` [PATCH v5 07/18] PCI/P2PDMA: Collect the path's ACS controls before deciding Leon Romanovsky
` (11 subsequent siblings)
17 siblings, 0 replies; 21+ messages in thread
From: Leon Romanovsky @ 2026-09-10 11:32 UTC (permalink / raw)
To: Bjorn Helgaas, Logan Gunthorpe, Chaitanya Kulkarni,
Greg Kroah-Hartman, Jens Axboe, Alex Williamson, Leon Romanovsky,
Ankit Agrawal, Jason Gunthorpe, Jonathan Corbet, Shuah Khan,
Joerg Roedel (AMD), Will Deacon, Robin Murphy, Randy Dunlap,
Sumit Semwal, Christian König
Cc: linux-pci, linux-kernel, linux-doc, iommu, Tushar Dave,
linux-media, dri-devel, linaro-mm-sig, linux-rdma, kvm
From: Leon Romanovsky <leonro@nvidia.com>
P2PDMA documentation describes ACS controls as path-wide, although Request
and Completion controls apply to different transaction directions and only
affect peer-versus-upstream decisions at the path divergence.
Document the fixed client and provider roles, the divergence port checked
for each TLP direction, and the conservative handling of unreadable ACS
state. Clarify which controls disable_acs_redir changes.
Signed-off-by: Leon Romanovsky <leonro@nvidia.com>
---
Documentation/admin-guide/kernel-parameters.txt | 9 +++++----
Documentation/driver-api/pci/p2pdma.rst | 13 +++++++++++++
2 files changed, 18 insertions(+), 4 deletions(-)
diff --git a/Documentation/admin-guide/kernel-parameters.txt b/Documentation/admin-guide/kernel-parameters.txt
index 68647ff4bdd2..43a25f3f94fd 100644
--- a/Documentation/admin-guide/kernel-parameters.txt
+++ b/Documentation/admin-guide/kernel-parameters.txt
@@ -5291,10 +5291,11 @@ Kernel parameters
disable_acs_redir=<pci_dev>[; ...]
Specify one or more PCI devices (in the format
specified above) separated by semicolons.
- Each device specified will have the PCI ACS
- redirect capabilities forced off which will
- allow P2P traffic between devices through
- bridges without forcing it upstream. Note:
+ Each device specified will have the PCI ACS P2P
+ Request Redirect, Completion Redirect, and Egress
+ Control features forced off. This may allow P2P
+ traffic through bridges that would otherwise be
+ redirected upstream. Note:
this removes isolation between devices and
may put more devices in an IOMMU group.
config_acs=
diff --git a/Documentation/driver-api/pci/p2pdma.rst b/Documentation/driver-api/pci/p2pdma.rst
index 80f8fec9b0e9..42b18610bf7d 100644
--- a/Documentation/driver-api/pci/p2pdma.rst
+++ b/Documentation/driver-api/pci/p2pdma.rst
@@ -15,6 +15,19 @@ then based on the ACS settings the transaction can route entirely within
the PCIe hierarchy and never reach the root port. The kernel will evaluate
the PCIe topology and always permit P2P in these well-defined cases.
+The client remains the PCIe requester when it reads or writes provider memory.
+Where the paths diverge, the kernel therefore evaluates P2P Request Redirect
+and Egress Control on the client-side port, and P2P Completion Redirect on the
+provider-side port for completions from a read. An enabled Egress Control is
+conservatively treated as a Request redirect.
+
+Below the divergence, the route toward the other branch is already upstream,
+so those P2P redirect controls do not affect it. Redirect controls for the
+reverse transaction directions do not affect the mapping. P2P DMA is routed
+through the host bridge when either applicable port redirects. If an ACS
+Control register cannot be read, P2P DMA is rejected because the kernel cannot
+establish a usable route.
+
This evaluation assumes clients issue strictly ordered Requests carrying an
Untranslated address. Its result is not defined when clients use Relaxed
Ordering or issue ATS-translated Requests because those TLP attributes can
--
2.55.0
^ permalink raw reply related [flat|nested] 21+ messages in thread
* [PATCH v5 07/18] PCI/P2PDMA: Collect the path's ACS controls before deciding
2026-09-10 11:31 [PATCH v5 00/18] PCI/P2PDMA: Route peer-to-peer DMA by TLP class Leon Romanovsky
` (5 preceding siblings ...)
2026-09-10 11:32 ` [PATCH v5 06/18] PCI/P2PDMA: Document directional ACS routing Leon Romanovsky
@ 2026-09-10 11:32 ` Leon Romanovsky
2026-09-10 11:32 ` [PATCH v5 08/18] PCI/P2PDMA: Answer routing per TLP class Leon Romanovsky
` (10 subsequent siblings)
17 siblings, 0 replies; 21+ messages in thread
From: Leon Romanovsky @ 2026-09-10 11:32 UTC (permalink / raw)
To: Bjorn Helgaas, Logan Gunthorpe, Chaitanya Kulkarni,
Greg Kroah-Hartman, Jens Axboe, Alex Williamson, Leon Romanovsky,
Ankit Agrawal, Jason Gunthorpe, Jonathan Corbet, Shuah Khan,
Joerg Roedel (AMD), Will Deacon, Robin Murphy, Randy Dunlap,
Sumit Semwal, Christian König
Cc: linux-pci, linux-kernel, linux-doc, iommu, Tushar Dave,
linux-media, dri-devel, linaro-mm-sig, linux-rdma, kvm
From: Leon Romanovsky <leonro@nvidia.com>
calc_map_type_and_dist() reads each divergence port's ACS Control register
and folds the result into running counters as it goes. Any routing property
that depends on the kind of TLP being routed would have to be threaded
through that code, so there is nowhere to put one without reading the
registers again for each kind.
Collect the two ports' ACS Control values into struct pci_p2pdma_acs_path
first, then decide from it. pci_p2pdma_route() applies the same rule as
before: a path routes directly only when both directions do.
Signed-off-by: Leon Romanovsky <leonro@nvidia.com>
---
drivers/pci/p2pdma.c | 148 +++++++++++++++++++++++++++++++++------------------
1 file changed, 96 insertions(+), 52 deletions(-)
diff --git a/drivers/pci/p2pdma.c b/drivers/pci/p2pdma.c
index 43219a67aaf6..3a14abf5fe84 100644
--- a/drivers/pci/p2pdma.c
+++ b/drivers/pci/p2pdma.c
@@ -576,6 +576,80 @@ static void seq_buf_print_bus_devfn(struct seq_buf *buf, struct pci_dev *pdev)
seq_buf_printf(buf, "%s;", pci_name(pdev));
}
+/*
+ * What the topology walk found out about one provider/client path. Producing
+ * this costs a walk and one config read per divergence port, none of which
+ * depends on the TLP being routed.
+ *
+ * @req_ctrl: ACS Control of the client-side divergence port. That is the
+ * first port at which a Request can route toward the peer rather
+ * than upstream, so it is where the Request controls apply.
+ * @cpl_ctrl: ACS Control of the provider-side divergence port, likewise for
+ * the Completions travelling back.
+ * @unreadable: First port whose ACS Control could not be read, if any.
+ */
+struct pci_p2pdma_acs_path {
+ u16 req_ctrl;
+ u16 cpl_ctrl;
+ struct pci_dev *unreadable;
+};
+
+/*
+ * Combine both directions into a mapping type. Only a path that routes the
+ * Request and the Completions it generates directly can be programmed with
+ * the peer's bus addresses.
+ */
+static enum pci_p2pdma_map_type
+pci_p2pdma_route(const struct pci_p2pdma_acs_path *path)
+{
+ if (path->unreadable)
+ return PCI_P2PDMA_MAP_NOT_SUPPORTED;
+
+ if (pci_acs_p2pdma_request(path->req_ctrl) == PCI_ACS_P2PDMA_DIRECT &&
+ pci_acs_p2pdma_completion(path->cpl_ctrl) == PCI_ACS_P2PDMA_DIRECT)
+ return PCI_P2PDMA_MAP_BUS_ADDR;
+
+ return PCI_P2PDMA_MAP_THRU_HOST_BRIDGE;
+}
+
+/*
+ * Name the ports that keep this path off a direct route, so that the admin
+ * can hand them to pci=disable_acs_redir=.
+ */
+static void pci_p2pdma_warn_path(struct pci_dev *client,
+ struct pci_dev *provider,
+ const struct pci_p2pdma_acs_path *path,
+ struct pci_dev *a_child,
+ struct pci_dev *b_child)
+{
+ struct seq_buf acs_list;
+ char buf[128];
+
+ if (path->unreadable) {
+ pci_warn(client,
+ "ACS Control is unreadable for provider %s at %s\n",
+ pci_name(provider), pci_name(path->unreadable));
+ return;
+ }
+
+ seq_buf_init(&acs_list, buf, sizeof(buf));
+ if (pci_acs_p2pdma_completion(path->cpl_ctrl) != PCI_ACS_P2PDMA_DIRECT)
+ seq_buf_print_bus_devfn(&acs_list, a_child);
+ if (pci_acs_p2pdma_request(path->req_ctrl) != PCI_ACS_P2PDMA_DIRECT)
+ seq_buf_print_bus_devfn(&acs_list, b_child);
+
+ /* Drop the final semicolon; the list is not empty here. */
+ if (!seq_buf_has_overflowed(&acs_list))
+ acs_list.buffer[acs_list.len - 1] = '\0';
+
+ pci_warn(client,
+ "ACS redirect is set between the client and provider (%s)\n",
+ pci_name(provider));
+ pci_warn(client,
+ "to disable ACS controls for this path, add the kernel parameter: pci=disable_acs_redir=%s\n",
+ seq_buf_str(&acs_list));
+}
+
static bool cpu_supports_p2pdma(void)
{
#ifdef CONFIG_X86
@@ -774,19 +848,13 @@ calc_map_type_and_dist(struct pci_dev *provider, struct pci_dev *client,
int *dist, bool verbose)
{
enum pci_p2pdma_map_type map_type = PCI_P2PDMA_MAP_THRU_HOST_BRIDGE;
- enum pci_acs_p2pdma_state state = PCI_ACS_P2PDMA_NOT_SUPPORTED;
struct pci_dev *a = provider, *b = client, *bb;
struct pci_dev *a_child = NULL, *b_child = NULL;
- struct pci_dev *acs_unreadable = NULL;
+ struct pci_p2pdma_acs_path path = {};
struct pci_p2pdma *p2pdma;
- struct seq_buf acs_list;
- int acs_redirect_cnt = 0;
+ bool cpu_p2pdma, host_whitelisted = false;
int dist_a = 0;
int dist_b = 0;
- char buf[128];
- u16 ctrl;
-
- seq_buf_init(&acs_list, buf, sizeof(buf));
/*
* Note, we don't need to take references to devices returned by
@@ -829,61 +897,35 @@ calc_map_type_and_dist(struct pci_dev *provider, struct pci_dev *client,
* branch is upstream, so redirect controls do not affect the path.
*/
if (a_child && b_child) {
- if (pci_acs_p2pdma_ctrl(a_child, &ctrl))
- state = pci_acs_p2pdma_completion(ctrl);
- if (state != PCI_ACS_P2PDMA_DIRECT) {
- seq_buf_print_bus_devfn(&acs_list, a_child);
- if (state == PCI_ACS_P2PDMA_REDIRECT)
- acs_redirect_cnt++;
- else if (!acs_unreadable)
- acs_unreadable = a_child;
- }
-
- state = PCI_ACS_P2PDMA_NOT_SUPPORTED;
- if (pci_acs_p2pdma_ctrl(b_child, &ctrl))
- state = pci_acs_p2pdma_request(ctrl);
- if (state != PCI_ACS_P2PDMA_DIRECT) {
- seq_buf_print_bus_devfn(&acs_list, b_child);
- if (state == PCI_ACS_P2PDMA_REDIRECT)
- acs_redirect_cnt++;
- else if (!acs_unreadable)
- acs_unreadable = b_child;
- }
+ if (!pci_acs_p2pdma_ctrl(a_child, &path.cpl_ctrl))
+ path.unreadable = a_child;
+ if (!pci_acs_p2pdma_ctrl(b_child, &path.req_ctrl) &&
+ !path.unreadable)
+ path.unreadable = b_child;
}
/*
* Below a shared upstream bridge, a path whose divergence ports do not
* redirect routes the request directly.
*/
- if (!acs_unreadable && !acs_redirect_cnt) {
- map_type = PCI_P2PDMA_MAP_BUS_ADDR;
+ map_type = pci_p2pdma_route(&path);
+ if (map_type == PCI_P2PDMA_MAP_BUS_ADDR)
goto done;
- }
- if (verbose) {
- /* Drop the final semicolon; the list is not empty here. */
- if (!seq_buf_has_overflowed(&acs_list))
- acs_list.buffer[acs_list.len - 1] = '\0';
- if (acs_unreadable)
- pci_warn(client, "ACS Control is unreadable for provider %s at %s\n",
- pci_name(provider), pci_name(acs_unreadable));
- else {
- pci_warn(client, "ACS redirect is set between the client and provider (%s)\n",
- pci_name(provider));
- pci_warn(client, "to disable ACS controls for this path, add the kernel parameter: pci=disable_acs_redir=%s\n",
- seq_buf_str(&acs_list));
- }
- }
+ if (verbose)
+ pci_p2pdma_warn_path(client, provider, &path, a_child, b_child);
/* An unreadable control does not establish an upstream redirect. */
- if (acs_unreadable) {
- map_type = PCI_P2PDMA_MAP_NOT_SUPPORTED;
+ if (path.unreadable)
goto done;
- }
map_through_host_bridge:
- if (!cpu_supports_p2pdma() &&
- !host_bridge_whitelist(provider, client, verbose)) {
+ cpu_p2pdma = cpu_supports_p2pdma();
+ if (!cpu_p2pdma)
+ host_whitelisted = host_bridge_whitelist(provider, client,
+ verbose);
+
+ if (!cpu_p2pdma && !host_whitelisted) {
if (verbose)
pci_warn(client, "cannot be used for peer-to-peer DMA as the client and provider (%s) do not share an upstream bridge or whitelisted host bridge\n",
pci_name(provider));
@@ -1216,8 +1258,9 @@ enum pci_p2pdma_map_type pci_p2pdma_map_type(struct p2pdma_provider *provider,
{
enum pci_p2pdma_map_type type = PCI_P2PDMA_MAP_NOT_SUPPORTED;
struct pci_dev *pdev = to_pci_dev(provider->owner);
- struct pci_dev *client;
struct pci_p2pdma *p2pdma;
+ unsigned long cache_index;
+ struct pci_dev *client;
int dist;
if (!pdev->p2pdma)
@@ -1227,13 +1270,14 @@ enum pci_p2pdma_map_type pci_p2pdma_map_type(struct p2pdma_provider *provider,
return PCI_P2PDMA_MAP_NOT_SUPPORTED;
client = to_pci_dev(dev);
+ cache_index = map_types_idx(client);
rcu_read_lock();
p2pdma = rcu_dereference(pdev->p2pdma);
if (p2pdma)
type = xa_to_value(xa_load(&p2pdma->map_types,
- map_types_idx(client)));
+ cache_index));
rcu_read_unlock();
if (type == PCI_P2PDMA_MAP_UNKNOWN)
--
2.55.0
^ permalink raw reply related [flat|nested] 21+ messages in thread
* [PATCH v5 08/18] PCI/P2PDMA: Answer routing per TLP class
2026-09-10 11:31 [PATCH v5 00/18] PCI/P2PDMA: Route peer-to-peer DMA by TLP class Leon Romanovsky
` (6 preceding siblings ...)
2026-09-10 11:32 ` [PATCH v5 07/18] PCI/P2PDMA: Collect the path's ACS controls before deciding Leon Romanovsky
@ 2026-09-10 11:32 ` Leon Romanovsky
2026-09-10 11:32 ` [PATCH v5 09/18] PCI/P2PDMA: Route Relaxed Ordering Completions directly Leon Romanovsky
` (9 subsequent siblings)
17 siblings, 0 replies; 21+ messages in thread
From: Leon Romanovsky @ 2026-09-10 11:32 UTC (permalink / raw)
To: Bjorn Helgaas, Logan Gunthorpe, Chaitanya Kulkarni,
Greg Kroah-Hartman, Jens Axboe, Alex Williamson, Leon Romanovsky,
Ankit Agrawal, Jason Gunthorpe, Jonathan Corbet, Shuah Khan,
Joerg Roedel (AMD), Will Deacon, Robin Murphy, Randy Dunlap,
Sumit Semwal, Christian König
Cc: linux-pci, linux-kernel, linux-doc, iommu, Tushar Dave,
linux-media, dri-devel, linaro-mm-sig, linux-rdma, kvm
From: Leon Romanovsky <leonro@nvidia.com>
calc_map_type_and_dist() returns one mapping type per provider and client,
valid only for strictly ordered Requests carrying an Untranslated address.
Clients that use Relaxed Ordering or ATS cannot ask what the fabric would
do with their traffic.
Add enum pci_p2pdma_tlp_flags to name a class and pci_p2pdma_map_type_tlp()
to ask about one. The topology walk and the ACS Control reads do not depend
on the class, so decide all of them from the one walk and cache them
together, four bits each. Every class still answers alike; the controls
that tell them apart come next.
Signed-off-by: Leon Romanovsky <leonro@nvidia.com>
---
drivers/pci/p2pdma.c | 121 +++++++++++++++++++++++++++++++++------------
include/linux/pci-p2pdma.h | 49 ++++++++++++++++--
2 files changed, 136 insertions(+), 34 deletions(-)
diff --git a/drivers/pci/p2pdma.c b/drivers/pci/p2pdma.c
index 3a14abf5fe84..fac765d0a16f 100644
--- a/drivers/pci/p2pdma.c
+++ b/drivers/pci/p2pdma.c
@@ -531,7 +531,7 @@ enum pci_acs_p2pdma_state {
* bus addressing be assumed.
*/
static enum pci_acs_p2pdma_state
-pci_acs_p2pdma_request(u16 ctrl)
+pci_acs_p2pdma_request(u16 ctrl, unsigned int tlp_flags)
{
return ctrl & (PCI_ACS_RR | PCI_ACS_EC) ?
PCI_ACS_P2PDMA_REDIRECT : PCI_ACS_P2PDMA_DIRECT;
@@ -543,7 +543,7 @@ pci_acs_p2pdma_request(u16 ctrl)
* affects a Completion.
*/
static enum pci_acs_p2pdma_state
-pci_acs_p2pdma_completion(u16 ctrl)
+pci_acs_p2pdma_completion(u16 ctrl, unsigned int tlp_flags)
{
return ctrl & PCI_ACS_CR ? PCI_ACS_P2PDMA_REDIRECT :
PCI_ACS_P2PDMA_DIRECT;
@@ -600,13 +600,16 @@ struct pci_p2pdma_acs_path {
* the peer's bus addresses.
*/
static enum pci_p2pdma_map_type
-pci_p2pdma_route(const struct pci_p2pdma_acs_path *path)
+pci_p2pdma_route(const struct pci_p2pdma_acs_path *path,
+ unsigned int tlp_flags)
{
if (path->unreadable)
return PCI_P2PDMA_MAP_NOT_SUPPORTED;
- if (pci_acs_p2pdma_request(path->req_ctrl) == PCI_ACS_P2PDMA_DIRECT &&
- pci_acs_p2pdma_completion(path->cpl_ctrl) == PCI_ACS_P2PDMA_DIRECT)
+ if (pci_acs_p2pdma_request(path->req_ctrl, tlp_flags) ==
+ PCI_ACS_P2PDMA_DIRECT &&
+ pci_acs_p2pdma_completion(path->cpl_ctrl, tlp_flags) ==
+ PCI_ACS_P2PDMA_DIRECT)
return PCI_P2PDMA_MAP_BUS_ADDR;
return PCI_P2PDMA_MAP_THRU_HOST_BRIDGE;
@@ -620,7 +623,8 @@ static void pci_p2pdma_warn_path(struct pci_dev *client,
struct pci_dev *provider,
const struct pci_p2pdma_acs_path *path,
struct pci_dev *a_child,
- struct pci_dev *b_child)
+ struct pci_dev *b_child,
+ unsigned int tlp_flags)
{
struct seq_buf acs_list;
char buf[128];
@@ -633,9 +637,11 @@ static void pci_p2pdma_warn_path(struct pci_dev *client,
}
seq_buf_init(&acs_list, buf, sizeof(buf));
- if (pci_acs_p2pdma_completion(path->cpl_ctrl) != PCI_ACS_P2PDMA_DIRECT)
+ if (pci_acs_p2pdma_completion(path->cpl_ctrl, tlp_flags) !=
+ PCI_ACS_P2PDMA_DIRECT)
seq_buf_print_bus_devfn(&acs_list, a_child);
- if (pci_acs_p2pdma_request(path->req_ctrl) != PCI_ACS_P2PDMA_DIRECT)
+ if (pci_acs_p2pdma_request(path->req_ctrl, tlp_flags) !=
+ PCI_ACS_P2PDMA_DIRECT)
seq_buf_print_bus_devfn(&acs_list, b_child);
/* Drop the final semicolon; the list is not empty here. */
@@ -803,6 +809,31 @@ static unsigned long map_types_idx(struct pci_dev *client)
return (pci_domain_nr(client->bus) << 16) | pci_dev_id(client);
}
+/*
+ * One cache entry holds the routing of every TLP class, four bits each,
+ * indexed by the &enum pci_p2pdma_tlp_flags combination that selects it. An
+ * absent entry reads back as PCI_P2PDMA_MAP_UNKNOWN in every class.
+ */
+static_assert(PCI_P2PDMA_MAP_THRU_HOST_BRIDGE < 16);
+
+static unsigned long
+pci_p2pdma_map_types_pack(const enum pci_p2pdma_map_type *type)
+{
+ unsigned long val = 0;
+ unsigned int flags;
+
+ for (flags = 0; flags < PCI_P2PDMA_TLP_CLASSES; flags++)
+ val |= (unsigned long)type[flags] << (flags * 4);
+
+ return val;
+}
+
+static enum pci_p2pdma_map_type
+pci_p2pdma_map_types_unpack(unsigned long val, unsigned int tlp_flags)
+{
+ return (val >> (tlp_flags * 4)) & 0xf;
+}
+
/*
* Calculate the P2PDMA mapping type and distance between two PCI devices.
*
@@ -832,6 +863,10 @@ static unsigned long map_types_idx(struct pci_dev *client)
* check Request Redirect and Egress Control on the client-side port, and
* Completion Redirect for read Completions on the provider-side port.
*
+ * Those controls apply to different TLPs, so every class named by &enum
+ * pci_p2pdma_tlp_flags is decided from the one walk and cached together;
+ * @tlp_flags selects which one is returned.
+ *
* If ACS redirects traffic at either divergence port, return
* PCI_P2PDMA_MAP_THRU_HOST_BRIDGE. If the ACS Control register cannot be
* read, return PCI_P2PDMA_MAP_NOT_SUPPORTED. Otherwise, return
@@ -845,14 +880,16 @@ static unsigned long map_types_idx(struct pci_dev *client)
*/
static enum pci_p2pdma_map_type
calc_map_type_and_dist(struct pci_dev *provider, struct pci_dev *client,
- int *dist, bool verbose)
+ int *dist, unsigned int tlp_flags, bool verbose)
{
- enum pci_p2pdma_map_type map_type = PCI_P2PDMA_MAP_THRU_HOST_BRIDGE;
+ enum pci_p2pdma_map_type map_type[PCI_P2PDMA_TLP_CLASSES];
struct pci_dev *a = provider, *b = client, *bb;
struct pci_dev *a_child = NULL, *b_child = NULL;
struct pci_p2pdma_acs_path path = {};
struct pci_p2pdma *p2pdma;
bool cpu_p2pdma, host_whitelisted = false;
+ bool host_fallback = false;
+ unsigned int flags;
int dist_a = 0;
int dist_b = 0;
@@ -886,6 +923,8 @@ calc_map_type_and_dist(struct pci_dev *provider, struct pci_dev *client,
* request can only get to the peer through the host bridge.
*/
*dist = dist_a + dist_b;
+ for (flags = 0; flags < PCI_P2PDMA_TLP_CLASSES; flags++)
+ map_type[flags] = PCI_P2PDMA_MAP_THRU_HOST_BRIDGE;
goto map_through_host_bridge;
check_paths_acs:
@@ -905,18 +944,24 @@ calc_map_type_and_dist(struct pci_dev *provider, struct pci_dev *client,
}
/*
- * Below a shared upstream bridge, a path whose divergence ports do not
- * redirect routes the request directly.
+ * The walk and the config reads above serve every class; only the
+ * decision below depends on the kind of TLP being routed.
*/
- map_type = pci_p2pdma_route(&path);
- if (map_type == PCI_P2PDMA_MAP_BUS_ADDR)
- goto done;
+ for (flags = 0; flags < PCI_P2PDMA_TLP_CLASSES; flags++) {
+ map_type[flags] = pci_p2pdma_route(&path, flags);
+ if (map_type[flags] == PCI_P2PDMA_MAP_THRU_HOST_BRIDGE)
+ host_fallback = true;
+ }
- if (verbose)
- pci_p2pdma_warn_path(client, provider, &path, a_child, b_child);
+ if (verbose && map_type[0] != PCI_P2PDMA_MAP_BUS_ADDR)
+ pci_p2pdma_warn_path(client, provider, &path, a_child,
+ b_child, 0);
- /* An unreadable control does not establish an upstream redirect. */
- if (path.unreadable)
+ /*
+ * Nothing needs the host bridge: the classes that did not get a direct
+ * route have no fallback that would use it.
+ */
+ if (!host_fallback)
goto done;
map_through_host_bridge:
@@ -929,16 +974,19 @@ calc_map_type_and_dist(struct pci_dev *provider, struct pci_dev *client,
if (verbose)
pci_warn(client, "cannot be used for peer-to-peer DMA as the client and provider (%s) do not share an upstream bridge or whitelisted host bridge\n",
pci_name(provider));
- map_type = PCI_P2PDMA_MAP_NOT_SUPPORTED;
+ for (flags = 0; flags < PCI_P2PDMA_TLP_CLASSES; flags++)
+ if (map_type[flags] == PCI_P2PDMA_MAP_THRU_HOST_BRIDGE)
+ map_type[flags] = PCI_P2PDMA_MAP_NOT_SUPPORTED;
}
done:
rcu_read_lock();
p2pdma = rcu_dereference(provider->p2pdma);
if (p2pdma)
xa_store(&p2pdma->map_types, map_types_idx(client),
- xa_mk_value(map_type), GFP_ATOMIC);
+ xa_mk_value(pci_p2pdma_map_types_pack(map_type)),
+ GFP_ATOMIC);
rcu_read_unlock();
- return map_type;
+ return map_type[tlp_flags];
}
/**
@@ -979,7 +1027,7 @@ int pci_p2pdma_distance_many(struct pci_dev *provider, struct device **clients,
return -1;
}
- map = calc_map_type_and_dist(provider, pci_client, &distance,
+ map = calc_map_type_and_dist(provider, pci_client, &distance, 0,
verbose);
pci_dev_put(pci_client);
@@ -1244,25 +1292,34 @@ void pci_p2pmem_publish(struct pci_dev *pdev, bool publish)
EXPORT_SYMBOL_GPL(pci_p2pmem_publish);
/**
- * pci_p2pdma_map_type - Determine the mapping type for P2PDMA transfers
+ * pci_p2pdma_map_type_tlp - Determine the mapping type for P2PDMA transfers
* @provider: P2PDMA provider structure
* @dev: Client device that initiates the transfer
+ * @tlp_flags: &enum pci_p2pdma_tlp_flags describing the TLPs @dev will issue
*
* Determines how peer-to-peer DMA transfers should be mapped between
* the provider and the client device. The mapping type indicates whether
* the transfer can be done directly through PCI switches or must go
* through the host bridge.
+ *
+ * ACS routes a peer-to-peer transaction by the attributes its TLPs carry, so
+ * the answer depends on @tlp_flags. A caller that passes flags its traffic
+ * does not match gets a mapping the fabric will not deliver.
*/
-enum pci_p2pdma_map_type pci_p2pdma_map_type(struct p2pdma_provider *provider,
- struct device *dev)
+enum pci_p2pdma_map_type
+pci_p2pdma_map_type_tlp(struct p2pdma_provider *provider, struct device *dev,
+ unsigned int tlp_flags)
{
- enum pci_p2pdma_map_type type = PCI_P2PDMA_MAP_NOT_SUPPORTED;
struct pci_dev *pdev = to_pci_dev(provider->owner);
+ unsigned long cache_index, cached = 0;
+ enum pci_p2pdma_map_type type;
struct pci_p2pdma *p2pdma;
- unsigned long cache_index;
struct pci_dev *client;
int dist;
+ if (WARN_ON_ONCE(tlp_flags >= PCI_P2PDMA_TLP_CLASSES))
+ return PCI_P2PDMA_MAP_NOT_SUPPORTED;
+
if (!pdev->p2pdma)
return PCI_P2PDMA_MAP_NOT_SUPPORTED;
@@ -1276,12 +1333,14 @@ enum pci_p2pdma_map_type pci_p2pdma_map_type(struct p2pdma_provider *provider,
p2pdma = rcu_dereference(pdev->p2pdma);
if (p2pdma)
- type = xa_to_value(xa_load(&p2pdma->map_types,
- cache_index));
+ cached = xa_to_value(xa_load(&p2pdma->map_types,
+ cache_index));
rcu_read_unlock();
+ type = pci_p2pdma_map_types_unpack(cached, tlp_flags);
if (type == PCI_P2PDMA_MAP_UNKNOWN)
- return calc_map_type_and_dist(pdev, client, &dist, true);
+ return calc_map_type_and_dist(pdev, client, &dist, tlp_flags,
+ true);
return type;
}
diff --git a/include/linux/pci-p2pdma.h b/include/linux/pci-p2pdma.h
index dd17501ba1b6..36045b1b730c 100644
--- a/include/linux/pci-p2pdma.h
+++ b/include/linux/pci-p2pdma.h
@@ -28,6 +28,33 @@ struct p2pdma_provider {
u64 bus_offset;
};
+/**
+ * enum pci_p2pdma_tlp_flags - Properties of the TLPs a client will issue
+ *
+ * These describe the traffic rather than the topology, and select which ACS
+ * controls apply along the peer-to-peer path. A value of 0 means strictly
+ * ordered Requests carrying an Untranslated address.
+ *
+ * @PCI_P2PDMA_TLP_TRANSLATED: Requests carry an ATS Translated address. PCIe
+ * r7.0 sec 6.12.3 routes those to the peer regardless of ACS P2P Request
+ * Redirect and ACS P2P Egress Control wherever ACS Direct Translated P2P
+ * is enabled.
+ * @PCI_P2PDMA_TLP_RELAXED_CPL: The provider returns Completions with the
+ * Relaxed Ordering attribute set. PCIe r7.0 sec 6.12.1.1 never redirects
+ * those, so ACS P2P Completion Redirect does not gate the path. The
+ * Completer chooses this attribute and the specification does not require
+ * it to copy Relaxed Ordering from the Request into the Completion, so a
+ * caller passing this flag asserts that its provider does.
+ */
+enum pci_p2pdma_tlp_flags {
+ PCI_P2PDMA_TLP_TRANSLATED = 1 << 0,
+ PCI_P2PDMA_TLP_RELAXED_CPL = 1 << 1,
+};
+
+/* Every combination of the flags above selects one routing class. */
+#define PCI_P2PDMA_TLP_CLASSES \
+ ((PCI_P2PDMA_TLP_TRANSLATED | PCI_P2PDMA_TLP_RELAXED_CPL) + 1)
+
enum pci_p2pdma_map_type {
/*
* PCI_P2PDMA_MAP_UNKNOWN: Used internally as an initial state before
@@ -86,8 +113,9 @@ int pci_p2pdma_enable_store(const char *page, struct pci_dev **p2p_dev,
bool *use_p2pdma);
ssize_t pci_p2pdma_enable_show(char *page, struct pci_dev *p2p_dev,
bool use_p2pdma);
-enum pci_p2pdma_map_type pci_p2pdma_map_type(struct p2pdma_provider *provider,
- struct device *dev);
+enum pci_p2pdma_map_type
+pci_p2pdma_map_type_tlp(struct p2pdma_provider *provider, struct device *dev,
+ unsigned int tlp_flags);
#else /* CONFIG_PCI_P2PDMA */
static inline int pcim_p2pdma_init(struct pci_dev *pdev)
{
@@ -150,7 +178,8 @@ static inline ssize_t pci_p2pdma_enable_show(char *page,
return sprintf(page, "none\n");
}
static inline enum pci_p2pdma_map_type
-pci_p2pdma_map_type(struct p2pdma_provider *provider, struct device *dev)
+pci_p2pdma_map_type_tlp(struct p2pdma_provider *provider, struct device *dev,
+ unsigned int tlp_flags)
{
return PCI_P2PDMA_MAP_NOT_SUPPORTED;
}
@@ -168,6 +197,20 @@ static inline struct pci_dev *pci_p2pmem_find(struct device *client)
return pci_p2pmem_find_many(&client, 1);
}
+/**
+ * pci_p2pdma_map_type - Determine the mapping type for P2PDMA transfers
+ * @provider: P2PDMA provider structure
+ * @dev: Client device that initiates the transfer
+ *
+ * Same as pci_p2pdma_map_type_tlp() for a client issuing strictly ordered
+ * Requests that carry an Untranslated address.
+ */
+static inline enum pci_p2pdma_map_type
+pci_p2pdma_map_type(struct p2pdma_provider *provider, struct device *dev)
+{
+ return pci_p2pdma_map_type_tlp(provider, dev, 0);
+}
+
struct pci_p2pdma_map_state {
struct p2pdma_provider *mem;
enum pci_p2pdma_map_type map;
--
2.55.0
^ permalink raw reply related [flat|nested] 21+ messages in thread
* [PATCH v5 09/18] PCI/P2PDMA: Route Relaxed Ordering Completions directly
2026-09-10 11:31 [PATCH v5 00/18] PCI/P2PDMA: Route peer-to-peer DMA by TLP class Leon Romanovsky
` (7 preceding siblings ...)
2026-09-10 11:32 ` [PATCH v5 08/18] PCI/P2PDMA: Answer routing per TLP class Leon Romanovsky
@ 2026-09-10 11:32 ` Leon Romanovsky
2026-09-10 11:32 ` [PATCH v5 10/18] PCI/P2PDMA: Reject Translated Requests blocked by Translation Blocking Leon Romanovsky
` (8 subsequent siblings)
17 siblings, 0 replies; 21+ messages in thread
From: Leon Romanovsky @ 2026-09-10 11:32 UTC (permalink / raw)
To: Bjorn Helgaas, Logan Gunthorpe, Chaitanya Kulkarni,
Greg Kroah-Hartman, Jens Axboe, Alex Williamson, Leon Romanovsky,
Ankit Agrawal, Jason Gunthorpe, Jonathan Corbet, Shuah Khan,
Joerg Roedel (AMD), Will Deacon, Robin Murphy, Randy Dunlap,
Sumit Semwal, Christian König
Cc: linux-pci, linux-kernel, linux-doc, iommu, Tushar Dave,
linux-media, dri-devel, linaro-mm-sig, linux-rdma, kvm
From: Leon Romanovsky <leonro@nvidia.com>
ACS P2P Completion Redirect leaves Completions carrying the Relaxed
Ordering attribute alone. PCIe r7.0 sec 6.12.1.1 redirects only those "that
do not have the Relaxed Ordering Attribute bit set", and sec 7.7.12.5
describes the enable bit as "applicable only to Completions whose Relaxed
Ordering Attribute is clear". P2PDMA reports one answer for every kind of
TLP, so a client whose provider returns such Completions is sent through
the host bridge for a redirect that never happens to it.
Add enum pci_p2pdma_tlp_flags and let a caller state that property.
Signed-off-by: Leon Romanovsky <leonro@nvidia.com>
---
drivers/pci/p2pdma.c | 6 +++++-
1 file changed, 5 insertions(+), 1 deletion(-)
diff --git a/drivers/pci/p2pdma.c b/drivers/pci/p2pdma.c
index fac765d0a16f..327b6a14e07d 100644
--- a/drivers/pci/p2pdma.c
+++ b/drivers/pci/p2pdma.c
@@ -540,11 +540,15 @@ pci_acs_p2pdma_request(u16 ctrl, unsigned int tlp_flags)
/*
* Decide how a peer-to-peer Completion at an ACS-capable ingress port routes.
* PCIe r7.0 sec 6.12.1.1: no ACS control other than P2P Completion Redirect
- * affects a Completion.
+ * affects a Completion, and that one leaves Completions carrying the Relaxed
+ * Ordering attribute alone.
*/
static enum pci_acs_p2pdma_state
pci_acs_p2pdma_completion(u16 ctrl, unsigned int tlp_flags)
{
+ if (tlp_flags & PCI_P2PDMA_TLP_RELAXED_CPL)
+ return PCI_ACS_P2PDMA_DIRECT;
+
return ctrl & PCI_ACS_CR ? PCI_ACS_P2PDMA_REDIRECT :
PCI_ACS_P2PDMA_DIRECT;
}
--
2.55.0
^ permalink raw reply related [flat|nested] 21+ messages in thread
* [PATCH v5 10/18] PCI/P2PDMA: Reject Translated Requests blocked by Translation Blocking
2026-09-10 11:31 [PATCH v5 00/18] PCI/P2PDMA: Route peer-to-peer DMA by TLP class Leon Romanovsky
` (8 preceding siblings ...)
2026-09-10 11:32 ` [PATCH v5 09/18] PCI/P2PDMA: Route Relaxed Ordering Completions directly Leon Romanovsky
@ 2026-09-10 11:32 ` Leon Romanovsky
2026-09-10 11:32 ` [PATCH v5 11/18] PCI/P2PDMA: Route Translated Requests under Direct Translated P2P Leon Romanovsky
` (7 subsequent siblings)
17 siblings, 0 replies; 21+ messages in thread
From: Leon Romanovsky @ 2026-09-10 11:32 UTC (permalink / raw)
To: Bjorn Helgaas, Logan Gunthorpe, Chaitanya Kulkarni,
Greg Kroah-Hartman, Jens Axboe, Alex Williamson, Leon Romanovsky,
Ankit Agrawal, Jason Gunthorpe, Jonathan Corbet, Shuah Khan,
Joerg Roedel (AMD), Will Deacon, Robin Murphy, Randy Dunlap,
Sumit Semwal, Christian König
Cc: linux-pci, linux-kernel, linux-doc, iommu, Tushar Dave,
linux-media, dri-devel, linaro-mm-sig, linux-rdma, kvm
From: Leon Romanovsky <leonro@nvidia.com>
A Downstream Port with ACS Translation Blocking enabled treats every
Upstream Memory Request whose Address Type is not Untranslated as an ACS
Violation, ahead of "any applicable ACS P2P control mechanisms" per PCIe
r7.0 sec 6.12.1.1. P2PDMA never looks at that bit, so it reports a
bus-addressable path where an ATS client's Requests would be rejected.
Add PCI_ACS_P2PDMA_BLOCKED, and because blocking is not a routing control,
scan the whole client-side path for it rather than the divergence port
alone. A blocked Request has no host bridge fallback, since the Address
Type is rejected wherever the Request is addressed.
Signed-off-by: Leon Romanovsky <leonro@nvidia.com>
---
drivers/pci/p2pdma.c | 105 ++++++++++++++++++++++++++++++++++++++++++++++-----
1 file changed, 96 insertions(+), 9 deletions(-)
diff --git a/drivers/pci/p2pdma.c b/drivers/pci/p2pdma.c
index 327b6a14e07d..94c0760f27e5 100644
--- a/drivers/pci/p2pdma.c
+++ b/drivers/pci/p2pdma.c
@@ -519,11 +519,12 @@ enum pci_acs_p2pdma_state {
PCI_ACS_P2PDMA_NOT_SUPPORTED,
PCI_ACS_P2PDMA_DIRECT,
PCI_ACS_P2PDMA_REDIRECT,
+ PCI_ACS_P2PDMA_BLOCKED,
};
/*
* Decide how a peer-to-peer Request at an ACS-capable ingress port routes,
- * from that port's ACS Control register.
+ * from that port's ACS Control register and the Request's Address Type.
*
* Linux does not read the Egress Control Vector, so Egress Control is treated
* conservatively as a redirect. Per PCIe r7.0 Table 6-11 the outcomes it
@@ -533,6 +534,18 @@ enum pci_acs_p2pdma_state {
static enum pci_acs_p2pdma_state
pci_acs_p2pdma_request(u16 ctrl, unsigned int tlp_flags)
{
+ if (tlp_flags & PCI_P2PDMA_TLP_TRANSLATED) {
+ /*
+ * PCIe r7.0 sec 6.12.1.1: Translation Blocking makes every
+ * Upstream Memory Request whose Address Type is not
+ * Untranslated an ACS Violation, taking precedence over the
+ * P2P controls. Sec 7.7.12.5: Direct Translated P2P "is
+ * ignored if ACS Translation Blocking Enable is 1b".
+ */
+ if (ctrl & PCI_ACS_TB)
+ return PCI_ACS_P2PDMA_BLOCKED;
+ }
+
return ctrl & (PCI_ACS_RR | PCI_ACS_EC) ?
PCI_ACS_P2PDMA_REDIRECT : PCI_ACS_P2PDMA_DIRECT;
}
@@ -572,6 +585,35 @@ static bool pci_acs_p2pdma_ctrl(struct pci_dev *pdev, u16 *ctrl)
return !pci_read_config_word(pdev, pos + PCI_ACS_CTRL, ctrl);
}
+/*
+ * Report whether any port between @client and @divergence rejects Translated
+ * addresses. @common bounds the walk; @divergence itself is read along with
+ * the routing controls. A port whose ACS Control cannot be read counts as
+ * blocking, which withdraws only the Translated classes because an
+ * Untranslated Request is routed at the divergence.
+ */
+static bool pci_p2pdma_path_blocks_translation(struct pci_dev *client,
+ struct pci_dev *divergence,
+ struct pci_dev *common)
+{
+ struct pci_dev *pdev;
+ u16 ctrl;
+
+ for (pdev = pci_upstream_bridge(client); pdev && pdev != common;
+ pdev = pci_upstream_bridge(pdev)) {
+ if (pdev == divergence)
+ continue;
+
+ if (!pci_acs_p2pdma_ctrl(pdev, &ctrl))
+ return true;
+
+ if (ctrl & PCI_ACS_TB)
+ return true;
+ }
+
+ return false;
+}
+
static void seq_buf_print_bus_devfn(struct seq_buf *buf, struct pci_dev *pdev)
{
if (!buf)
@@ -590,14 +632,35 @@ static void seq_buf_print_bus_devfn(struct seq_buf *buf, struct pci_dev *pdev)
* than upstream, so it is where the Request controls apply.
* @cpl_ctrl: ACS Control of the provider-side divergence port, likewise for
* the Completions travelling back.
+ * @tb_below: A port between the client and the divergence blocks Translated
+ * addresses.
* @unreadable: First port whose ACS Control could not be read, if any.
*/
struct pci_p2pdma_acs_path {
u16 req_ctrl;
u16 cpl_ctrl;
+ bool tb_below;
struct pci_dev *unreadable;
};
+/*
+ * ACS Translation Blocking is not a routing control, so unlike the redirect
+ * controls it is not decided at the divergence alone. PCIe r7.0 sec 6.12.1.1
+ * has every Downstream Port check the Address Type of each Upstream Memory
+ * Request it receives, ahead of "any applicable ACS P2P control mechanisms".
+ * A port below the divergence cannot redirect the Request anywhere it was not
+ * already going, but it can still reject a Translated address.
+ */
+static enum pci_acs_p2pdma_state
+pci_p2pdma_request_state(const struct pci_p2pdma_acs_path *path,
+ unsigned int tlp_flags)
+{
+ if (tlp_flags & PCI_P2PDMA_TLP_TRANSLATED && path->tb_below)
+ return PCI_ACS_P2PDMA_BLOCKED;
+
+ return pci_acs_p2pdma_request(path->req_ctrl, tlp_flags);
+}
+
/*
* Combine both directions into a mapping type. Only a path that routes the
* Request and the Completions it generates directly can be programmed with
@@ -607,11 +670,23 @@ static enum pci_p2pdma_map_type
pci_p2pdma_route(const struct pci_p2pdma_acs_path *path,
unsigned int tlp_flags)
{
+ enum pci_acs_p2pdma_state req;
+
if (path->unreadable)
return PCI_P2PDMA_MAP_NOT_SUPPORTED;
- if (pci_acs_p2pdma_request(path->req_ctrl, tlp_flags) ==
- PCI_ACS_P2PDMA_DIRECT &&
+ req = pci_p2pdma_request_state(path, tlp_flags);
+
+ /*
+ * Translation Blocking rejects the Address Type rather than the
+ * target, so a blocked Request stays blocked however it is addressed.
+ * No host bridge fallback keeps a Translated address working; the
+ * caller has to issue a different kind of Request instead.
+ */
+ if (req == PCI_ACS_P2PDMA_BLOCKED)
+ return PCI_P2PDMA_MAP_NOT_SUPPORTED;
+
+ if (req == PCI_ACS_P2PDMA_DIRECT &&
pci_acs_p2pdma_completion(path->cpl_ctrl, tlp_flags) ==
PCI_ACS_P2PDMA_DIRECT)
return PCI_P2PDMA_MAP_BUS_ADDR;
@@ -640,12 +715,19 @@ static void pci_p2pdma_warn_path(struct pci_dev *client,
return;
}
+ if (pci_p2pdma_request_state(path, tlp_flags) ==
+ PCI_ACS_P2PDMA_BLOCKED) {
+ pci_warn(client,
+ "ACS Translation Blocking rejects Translated Requests to provider %s\n",
+ pci_name(provider));
+ return;
+ }
+
seq_buf_init(&acs_list, buf, sizeof(buf));
if (pci_acs_p2pdma_completion(path->cpl_ctrl, tlp_flags) !=
PCI_ACS_P2PDMA_DIRECT)
seq_buf_print_bus_devfn(&acs_list, a_child);
- if (pci_acs_p2pdma_request(path->req_ctrl, tlp_flags) !=
- PCI_ACS_P2PDMA_DIRECT)
+ if (pci_p2pdma_request_state(path, tlp_flags) != PCI_ACS_P2PDMA_DIRECT)
seq_buf_print_bus_devfn(&acs_list, b_child);
/* Drop the final semicolon; the list is not empty here. */
@@ -864,8 +946,11 @@ pci_p2pdma_map_types_unpack(unsigned long val, unsigned int tlp_flags)
* redirection setting of the ports along the path.
*
* The client initiates Requests to provider memory. At the path divergence,
- * check Request Redirect and Egress Control on the client-side port, and
- * Completion Redirect for read Completions on the provider-side port.
+ * check Request Redirect, Egress Control, Translation Blocking and Direct
+ * Translated P2P on the client-side port, and Completion Redirect for read
+ * Completions on the provider-side port. Translation Blocking is checked on
+ * every client-side port instead, because it rejects a Request rather than
+ * routing it.
*
* Those controls apply to different TLPs, so every class named by &enum
* pci_p2pdma_tlp_flags is decided from the one walk and cached together;
@@ -873,8 +958,8 @@ pci_p2pdma_map_types_unpack(unsigned long val, unsigned int tlp_flags)
*
* If ACS redirects traffic at either divergence port, return
* PCI_P2PDMA_MAP_THRU_HOST_BRIDGE. If the ACS Control register cannot be
- * read, return PCI_P2PDMA_MAP_NOT_SUPPORTED. Otherwise, return
- * PCI_P2PDMA_MAP_BUS_ADDR.
+ * read, or Translation Blocking rejects the class being asked about, return
+ * PCI_P2PDMA_MAP_NOT_SUPPORTED. Otherwise, return PCI_P2PDMA_MAP_BUS_ADDR.
*
* Any two devices that have a data path that goes through the host bridge
* will consult a whitelist. If the host bridge is in the whitelist, return
@@ -945,6 +1030,8 @@ calc_map_type_and_dist(struct pci_dev *provider, struct pci_dev *client,
if (!pci_acs_p2pdma_ctrl(b_child, &path.req_ctrl) &&
!path.unreadable)
path.unreadable = b_child;
+ path.tb_below = pci_p2pdma_path_blocks_translation(client,
+ b_child, a);
}
/*
--
2.55.0
^ permalink raw reply related [flat|nested] 21+ messages in thread
* [PATCH v5 11/18] PCI/P2PDMA: Route Translated Requests under Direct Translated P2P
2026-09-10 11:31 [PATCH v5 00/18] PCI/P2PDMA: Route peer-to-peer DMA by TLP class Leon Romanovsky
` (9 preceding siblings ...)
2026-09-10 11:32 ` [PATCH v5 10/18] PCI/P2PDMA: Reject Translated Requests blocked by Translation Blocking Leon Romanovsky
@ 2026-09-10 11:32 ` Leon Romanovsky
2026-09-10 11:32 ` [PATCH v5 12/18] PCI/P2PDMA: Log detailed ACS routing diagnostics Leon Romanovsky
` (6 subsequent siblings)
17 siblings, 0 replies; 21+ messages in thread
From: Leon Romanovsky @ 2026-09-10 11:32 UTC (permalink / raw)
To: Bjorn Helgaas, Logan Gunthorpe, Chaitanya Kulkarni,
Greg Kroah-Hartman, Jens Axboe, Alex Williamson, Leon Romanovsky,
Ankit Agrawal, Jason Gunthorpe, Jonathan Corbet, Shuah Khan,
Joerg Roedel (AMD), Will Deacon, Robin Murphy, Randy Dunlap,
Sumit Semwal, Christian König
Cc: linux-pci, linux-kernel, linux-doc, iommu, Tushar Dave,
linux-media, dri-devel, linaro-mm-sig, linux-rdma, kvm
From: Leon Romanovsky <leonro@nvidia.com>
A Downstream Port with ACS Direct Translated P2P enabled routes a Request
whose Address Type is Translated "to the peer Egress Port without
redirection, regardless of ACS P2P Request Redirect and ACS P2P Egress
Control", per PCIe r7.0 sec 6.12.3. P2PDMA assumes every Request carries an
Untranslated address, so it sends an ATS client through the host bridge
even where the fabric would route it straight to the peer.
Add PCI_P2PDMA_TLP_TRANSLATED and consult Direct Translated P2P for the
Requests it describes.
Signed-off-by: Leon Romanovsky <leonro@nvidia.com>
---
drivers/pci/p2pdma.c | 9 +++++++++
1 file changed, 9 insertions(+)
diff --git a/drivers/pci/p2pdma.c b/drivers/pci/p2pdma.c
index 94c0760f27e5..77ff5cda8292 100644
--- a/drivers/pci/p2pdma.c
+++ b/drivers/pci/p2pdma.c
@@ -544,6 +544,15 @@ pci_acs_p2pdma_request(u16 ctrl, unsigned int tlp_flags)
*/
if (ctrl & PCI_ACS_TB)
return PCI_ACS_P2PDMA_BLOCKED;
+
+ /*
+ * PCIe r7.0 sec 6.12.3: ACS Direct Translated P2P routes a
+ * Request carrying a Translated address to the peer "without
+ * redirection, regardless of ACS P2P Request Redirect and ACS
+ * P2P Egress Control settings".
+ */
+ if (ctrl & PCI_ACS_DT)
+ return PCI_ACS_P2PDMA_DIRECT;
}
return ctrl & (PCI_ACS_RR | PCI_ACS_EC) ?
--
2.55.0
^ permalink raw reply related [flat|nested] 21+ messages in thread
* [PATCH v5 12/18] PCI/P2PDMA: Log detailed ACS routing diagnostics
2026-09-10 11:31 [PATCH v5 00/18] PCI/P2PDMA: Route peer-to-peer DMA by TLP class Leon Romanovsky
` (10 preceding siblings ...)
2026-09-10 11:32 ` [PATCH v5 11/18] PCI/P2PDMA: Route Translated Requests under Direct Translated P2P Leon Romanovsky
@ 2026-09-10 11:32 ` Leon Romanovsky
2026-09-10 11:32 ` [PATCH v5 13/18] PCI/P2PDMA: Add KUnit tests for the ACS routing decisions Leon Romanovsky
` (5 subsequent siblings)
17 siblings, 0 replies; 21+ messages in thread
From: Leon Romanovsky @ 2026-09-10 11:32 UTC (permalink / raw)
To: Bjorn Helgaas, Logan Gunthorpe, Chaitanya Kulkarni,
Greg Kroah-Hartman, Jens Axboe, Alex Williamson, Leon Romanovsky,
Ankit Agrawal, Jason Gunthorpe, Jonathan Corbet, Shuah Khan,
Joerg Roedel (AMD), Will Deacon, Robin Murphy, Randy Dunlap,
Sumit Semwal, Christian König
Cc: linux-pci, linux-kernel, linux-doc, iommu, Tushar Dave,
linux-media, dri-devel, linaro-mm-sig, linux-rdma, kvm
From: Leon Romanovsky <leonro@nvidia.com>
When P2PDMA rejects a mapping, existing warnings identify only the final
ACS or host-bridge result. They omit topology, live controls, divergence
ports, cache state, and intermediate routing decisions.
Emit debug-level messages for verbose calculations and cache lookups.
Report both paths, decoded ACS controls, directional decisions, host
fallback, and the final mapping. This keeps incidental unsupported probes
quiet while allowing the diagnostics to be enabled when needed.
Signed-off-by: Leon Romanovsky <leonro@nvidia.com>
---
drivers/pci/p2pdma.c | 227 +++++++++++++++++++++++++++++++++++++++++++++++----
1 file changed, 212 insertions(+), 15 deletions(-)
diff --git a/drivers/pci/p2pdma.c b/drivers/pci/p2pdma.c
index 77ff5cda8292..60bd9ec5f993 100644
--- a/drivers/pci/p2pdma.c
+++ b/drivers/pci/p2pdma.c
@@ -575,23 +575,128 @@ pci_acs_p2pdma_completion(u16 ctrl, unsigned int tlp_flags)
PCI_ACS_P2PDMA_DIRECT;
}
+static const char *pci_acs_p2pdma_state_name(enum pci_acs_p2pdma_state state)
+{
+ switch (state) {
+ case PCI_ACS_P2PDMA_DIRECT:
+ return "direct";
+ case PCI_ACS_P2PDMA_REDIRECT:
+ return "redirect";
+ case PCI_ACS_P2PDMA_BLOCKED:
+ return "blocked";
+ case PCI_ACS_P2PDMA_NOT_SUPPORTED:
+ return "not-supported";
+ }
+
+ return "invalid";
+}
+
+static const char *pci_p2pdma_map_type_name(enum pci_p2pdma_map_type type)
+{
+ switch (type) {
+ case PCI_P2PDMA_MAP_UNKNOWN:
+ return "unknown";
+ case PCI_P2PDMA_MAP_NONE:
+ return "none";
+ case PCI_P2PDMA_MAP_NOT_SUPPORTED:
+ return "not-supported";
+ case PCI_P2PDMA_MAP_BUS_ADDR:
+ return "bus-address";
+ case PCI_P2PDMA_MAP_THRU_HOST_BRIDGE:
+ return "through-host-bridge";
+ }
+
+ return "invalid";
+}
+
/*
* Read @pdev's ACS Control register. A device without an ACS capability has
* no peer-to-peer controls at all, which routes the same as having them all
* clear. Returns false when the register is present but cannot be read; @ctrl
* is then meaningless.
*/
-static bool pci_acs_p2pdma_ctrl(struct pci_dev *pdev, u16 *ctrl)
+static bool pci_acs_p2pdma_ctrl(struct pci_dev *pdev, const char *what,
+ u16 *ctrl, bool verbose)
{
- int pos;
+ int pos, ret;
pos = pdev->acs_cap;
if (!pos) {
+ if (verbose)
+ pci_dbg(pdev,
+ "P2PDMA ACS: %s has no ACS capability\n", what);
*ctrl = 0;
return true;
}
- return !pci_read_config_word(pdev, pos + PCI_ACS_CTRL, ctrl);
+ ret = pci_read_config_word(pdev, pos + PCI_ACS_CTRL, ctrl);
+ if (ret) {
+ if (verbose)
+ pci_dbg(pdev,
+ "P2PDMA ACS: %s ACS Control read failed at %#x: %#x\n",
+ what, pos + PCI_ACS_CTRL, ret);
+ return false;
+ }
+
+ if (verbose) {
+ pci_dbg(pdev,
+ "P2PDMA ACS: %s cap=%#x caps=%#06x ctrl=%#06x\n",
+ what, pos, pdev->acs_capabilities, *ctrl);
+ pci_dbg(pdev,
+ "P2PDMA ACS: control bits SV=%u TB=%u RR=%u CR=%u UF=%u EC=%u DT=%u\n",
+ !!(*ctrl & PCI_ACS_SV), !!(*ctrl & PCI_ACS_TB),
+ !!(*ctrl & PCI_ACS_RR), !!(*ctrl & PCI_ACS_CR),
+ !!(*ctrl & PCI_ACS_UF), !!(*ctrl & PCI_ACS_EC),
+ !!(*ctrl & PCI_ACS_DT));
+ }
+
+ return true;
+}
+
+static void pci_p2pdma_log_path(const char *name, struct pci_dev *start,
+ struct pci_dev *common)
+{
+ struct pci_dev *pdev, *upstream;
+ int hop = 0, ret, type;
+ u16 ctrl;
+
+ for (pdev = start; pdev; pdev = upstream, hop++) {
+ upstream = pci_upstream_bridge(pdev);
+ type = pci_is_pcie(pdev) ? pci_pcie_type(pdev) : -1;
+ pci_dbg(pdev,
+ "P2PDMA ACS: %s path hop=%d common=%u pcie=%u type=%d class=%#08x vendor=%04x device=%04x upstream=%s\n",
+ name, hop, pdev == common, pci_is_pcie(pdev), type,
+ pdev->class, pdev->vendor, pdev->device,
+ upstream ? pci_name(upstream) : "<none>");
+
+ if (pdev->subordinate)
+ pci_dbg(pdev,
+ "P2PDMA ACS: bridge bus range=%02llx-%02llx\n",
+ (unsigned long long)pdev->subordinate->busn_res.start,
+ (unsigned long long)pdev->subordinate->busn_res.end);
+
+ if (!pdev->acs_cap) {
+ pci_dbg(pdev, "P2PDMA ACS: ACS capability absent\n");
+ continue;
+ }
+
+ ret = pci_read_config_word(pdev, pdev->acs_cap + PCI_ACS_CTRL,
+ &ctrl);
+ if (ret) {
+ pci_dbg(pdev,
+ "P2PDMA ACS: ACS cap=%#x caps=%#06x Control read failed: %#x\n",
+ pdev->acs_cap, pdev->acs_capabilities, ret);
+ continue;
+ }
+
+ pci_dbg(pdev,
+ "P2PDMA ACS: ACS cap=%#x caps=%#06x ctrl=%#06x SV=%u TB=%u RR=%u CR=%u UF=%u EC=%u DT=%u\n",
+ pdev->acs_cap, pdev->acs_capabilities, ctrl,
+ !!(ctrl & PCI_ACS_SV), !!(ctrl & PCI_ACS_TB),
+ !!(ctrl & PCI_ACS_RR), !!(ctrl & PCI_ACS_CR),
+ !!(ctrl & PCI_ACS_UF), !!(ctrl & PCI_ACS_EC),
+ !!(ctrl & PCI_ACS_DT));
+ }
}
/*
@@ -603,7 +708,8 @@ static bool pci_acs_p2pdma_ctrl(struct pci_dev *pdev, u16 *ctrl)
*/
static bool pci_p2pdma_path_blocks_translation(struct pci_dev *client,
struct pci_dev *divergence,
- struct pci_dev *common)
+ struct pci_dev *common,
+ bool verbose)
{
struct pci_dev *pdev;
u16 ctrl;
@@ -613,11 +719,15 @@ static bool pci_p2pdma_path_blocks_translation(struct pci_dev *client,
if (pdev == divergence)
continue;
- if (!pci_acs_p2pdma_ctrl(pdev, &ctrl))
+ if (!pci_acs_p2pdma_ctrl(pdev, "path hop", &ctrl, verbose))
return true;
- if (ctrl & PCI_ACS_TB)
+ if (ctrl & PCI_ACS_TB) {
+ if (verbose)
+ pci_dbg(pdev,
+ "P2PDMA ACS: Translation Blocking rejects Translated Requests on this path\n");
return true;
+ }
}
return false;
@@ -983,14 +1093,22 @@ calc_map_type_and_dist(struct pci_dev *provider, struct pci_dev *client,
enum pci_p2pdma_map_type map_type[PCI_P2PDMA_TLP_CLASSES];
struct pci_dev *a = provider, *b = client, *bb;
struct pci_dev *a_child = NULL, *b_child = NULL;
+ struct pci_host_bridge *provider_host, *client_host;
struct pci_p2pdma_acs_path path = {};
struct pci_p2pdma *p2pdma;
bool cpu_p2pdma, host_whitelisted = false;
+ bool cache_store = false;
bool host_fallback = false;
unsigned int flags;
int dist_a = 0;
int dist_b = 0;
+ if (verbose)
+ pci_dbg(client,
+ "P2PDMA ACS: begin provider=%s client=%s cache-index=%#lx\n",
+ pci_name(provider), pci_name(client),
+ map_types_idx(client));
+
/*
* Note, we don't need to take references to devices returned by
* pci_upstream_bridge() seeing we hold a reference to a child
@@ -1021,12 +1139,29 @@ calc_map_type_and_dist(struct pci_dev *provider, struct pci_dev *client,
* request can only get to the peer through the host bridge.
*/
*dist = dist_a + dist_b;
+ if (verbose) {
+ pci_dbg(client,
+ "P2PDMA ACS: no common upstream bridge provider-distance=%d client-distance=%d total=%d\n",
+ dist_a, dist_b, *dist);
+ pci_p2pdma_log_path("provider", provider, NULL);
+ pci_p2pdma_log_path("client", client, NULL);
+ }
for (flags = 0; flags < PCI_P2PDMA_TLP_CLASSES; flags++)
map_type[flags] = PCI_P2PDMA_MAP_THRU_HOST_BRIDGE;
goto map_through_host_bridge;
check_paths_acs:
*dist = dist_a + dist_b;
+ if (verbose) {
+ pci_dbg(client,
+ "P2PDMA ACS: common=%s provider-divergence=%s client-divergence=%s provider-distance=%d client-distance=%d total=%d\n",
+ pci_name(a),
+ a_child ? pci_name(a_child) : "<none>",
+ b_child ? pci_name(b_child) : "<none>",
+ dist_a, dist_b, *dist);
+ pci_p2pdma_log_path("provider", provider, a);
+ pci_p2pdma_log_path("client", client, a);
+ }
/*
* ACS P2P routing controls apply where a TLP can route toward the peer
@@ -1034,13 +1169,29 @@ calc_map_type_and_dist(struct pci_dev *provider, struct pci_dev *client,
* branch is upstream, so redirect controls do not affect the path.
*/
if (a_child && b_child) {
- if (!pci_acs_p2pdma_ctrl(a_child, &path.cpl_ctrl))
+ if (!pci_acs_p2pdma_ctrl(a_child, "completion", &path.cpl_ctrl,
+ verbose))
path.unreadable = a_child;
- if (!pci_acs_p2pdma_ctrl(b_child, &path.req_ctrl) &&
- !path.unreadable)
+ if (!pci_acs_p2pdma_ctrl(b_child, "request", &path.req_ctrl,
+ verbose) && !path.unreadable)
path.unreadable = b_child;
path.tb_below = pci_p2pdma_path_blocks_translation(client,
- b_child, a);
+ b_child, a,
+ verbose);
+
+ if (verbose && !path.unreadable)
+ pci_dbg(client,
+ "P2PDMA ACS: request=%s at %s completion=%s at %s\n",
+ pci_acs_p2pdma_state_name(
+ pci_p2pdma_request_state(&path, 0)),
+ pci_name(b_child),
+ pci_acs_p2pdma_state_name(
+ pci_acs_p2pdma_completion(path.cpl_ctrl,
+ 0)),
+ pci_name(a_child));
+ } else if (verbose) {
+ pci_dbg(client,
+ "P2PDMA ACS: peer divergence is incomplete; no ACS peer-routing controls evaluated\n");
}
/*
@@ -1070,6 +1221,19 @@ calc_map_type_and_dist(struct pci_dev *provider, struct pci_dev *client,
host_whitelisted = host_bridge_whitelist(provider, client,
verbose);
+ if (verbose) {
+ provider_host = pci_find_host_bridge(provider->bus);
+ client_host = pci_find_host_bridge(client->bus);
+ pci_dbg(client,
+ "P2PDMA ACS: host fallback cpu-support=%u whitelist=%s provider-host=%s client-host=%s same-host=%u\n",
+ cpu_p2pdma,
+ cpu_p2pdma ? "not-consulted" :
+ (host_whitelisted ? "yes" : "no"),
+ provider_host ? dev_name(&provider_host->dev) : "<none>",
+ client_host ? dev_name(&client_host->dev) : "<none>",
+ provider_host && provider_host == client_host);
+ }
+
if (!cpu_p2pdma && !host_whitelisted) {
if (verbose)
pci_warn(client, "cannot be used for peer-to-peer DMA as the client and provider (%s) do not share an upstream bridge or whitelisted host bridge\n",
@@ -1081,11 +1245,31 @@ calc_map_type_and_dist(struct pci_dev *provider, struct pci_dev *client,
done:
rcu_read_lock();
p2pdma = rcu_dereference(provider->p2pdma);
- if (p2pdma)
+ if (p2pdma) {
xa_store(&p2pdma->map_types, map_types_idx(client),
- xa_mk_value(pci_p2pdma_map_types_pack(map_type)),
- GFP_ATOMIC);
+ xa_mk_value(pci_p2pdma_map_types_pack(map_type)), GFP_ATOMIC);
+ cache_store = true;
+ }
rcu_read_unlock();
+ if (verbose) {
+ pci_dbg(client,
+ "P2PDMA ACS: final provider=%s result=%s(%d) tlp-flags=%#x distance=%d unreadable=%s cache-store=%u index=%#lx\n",
+ pci_name(provider),
+ pci_p2pdma_map_type_name(map_type[tlp_flags]),
+ map_type[tlp_flags], tlp_flags, *dist,
+ path.unreadable ? pci_name(path.unreadable) : "<none>",
+ cache_store, map_types_idx(client));
+ pci_dbg(client,
+ "P2PDMA ACS: classes strict=%s relaxed=%s translated=%s translated+relaxed=%s\n",
+ pci_p2pdma_map_type_name(map_type[0]),
+ pci_p2pdma_map_type_name(
+ map_type[PCI_P2PDMA_TLP_RELAXED_CPL]),
+ pci_p2pdma_map_type_name(
+ map_type[PCI_P2PDMA_TLP_TRANSLATED]),
+ pci_p2pdma_map_type_name(
+ map_type[PCI_P2PDMA_TLP_TRANSLATED |
+ PCI_P2PDMA_TLP_RELAXED_CPL]));
+ }
return map_type[tlp_flags];
}
@@ -1415,16 +1599,24 @@ pci_p2pdma_map_type_tlp(struct p2pdma_provider *provider, struct device *dev,
enum pci_p2pdma_map_type type;
struct pci_p2pdma *p2pdma;
struct pci_dev *client;
+ bool provider_state;
int dist;
if (WARN_ON_ONCE(tlp_flags >= PCI_P2PDMA_TLP_CLASSES))
return PCI_P2PDMA_MAP_NOT_SUPPORTED;
- if (!pdev->p2pdma)
+ if (!pdev->p2pdma) {
+ pci_dbg(pdev,
+ "P2PDMA ACS: map lookup rejected; provider state is absent\n");
return PCI_P2PDMA_MAP_NOT_SUPPORTED;
+ }
- if (!dev_is_pci(dev))
+ if (!dev_is_pci(dev)) {
+ dev_dbg(dev,
+ "P2PDMA ACS: provider=%s map lookup rejected; client is not PCI\n",
+ pci_name(pdev));
return PCI_P2PDMA_MAP_NOT_SUPPORTED;
+ }
client = to_pci_dev(dev);
cache_index = map_types_idx(client);
@@ -1435,8 +1627,13 @@ pci_p2pdma_map_type_tlp(struct p2pdma_provider *provider, struct device *dev,
if (p2pdma)
cached = xa_to_value(xa_load(&p2pdma->map_types,
cache_index));
+ provider_state = !!p2pdma;
rcu_read_unlock();
type = pci_p2pdma_map_types_unpack(cached, tlp_flags);
+ pci_dbg(client,
+ "P2PDMA ACS: map lookup provider=%s index=%#lx tlp-flags=%#x cached=%s(%d) provider-state=%u\n",
+ pci_name(pdev), cache_index, tlp_flags,
+ pci_p2pdma_map_type_name(type), type, provider_state);
if (type == PCI_P2PDMA_MAP_UNKNOWN)
return calc_map_type_and_dist(pdev, client, &dist, tlp_flags,
--
2.55.0
^ permalink raw reply related [flat|nested] 21+ messages in thread
* [PATCH v5 13/18] PCI/P2PDMA: Add KUnit tests for the ACS routing decisions
2026-09-10 11:31 [PATCH v5 00/18] PCI/P2PDMA: Route peer-to-peer DMA by TLP class Leon Romanovsky
` (11 preceding siblings ...)
2026-09-10 11:32 ` [PATCH v5 12/18] PCI/P2PDMA: Log detailed ACS routing diagnostics Leon Romanovsky
@ 2026-09-10 11:32 ` Leon Romanovsky
2026-09-10 11:32 ` [PATCH v5 14/18] PCI/P2PDMA: Test the ACS P2P routing walk Leon Romanovsky
` (4 subsequent siblings)
17 siblings, 0 replies; 21+ messages in thread
From: Leon Romanovsky @ 2026-09-10 11:32 UTC (permalink / raw)
To: Bjorn Helgaas, Logan Gunthorpe, Chaitanya Kulkarni,
Greg Kroah-Hartman, Jens Axboe, Alex Williamson, Leon Romanovsky,
Ankit Agrawal, Jason Gunthorpe, Jonathan Corbet, Shuah Khan,
Joerg Roedel (AMD), Will Deacon, Robin Murphy, Randy Dunlap,
Sumit Semwal, Christian König
Cc: linux-pci, linux-kernel, linux-doc, iommu, Tushar Dave,
linux-media, dri-devel, linaro-mm-sig, linux-rdma, kvm
From: Leon Romanovsky <leonro@nvidia.com>
pci_acs_p2pdma_request() and pci_acs_p2pdma_completion() turn an ACS
Control register and a TLP class into a routing decision. Which bits apply
to which direction and which class is easy to get wrong, and hardware that
exposes a given combination may not be at hand.
Drive both from a table of register values and classes, covering the
redirect controls per direction and Translation Blocking, Direct Translated
P2P and Relaxed Ordering. Direct Translated P2P gets a case with and
without a redirect to override, since it changes nothing without one.
Exposing the two helpers moves their state enum into pci.h.
Signed-off-by: Leon Romanovsky <leonro@nvidia.com>
---
drivers/pci/Kconfig | 15 ++++++
drivers/pci/Makefile | 1 +
drivers/pci/p2pdma.c | 13 ++---
drivers/pci/pci.h | 16 ++++++
drivers/pci/pci_acs_test.c | 121 +++++++++++++++++++++++++++++++++++++++++++++
5 files changed, 157 insertions(+), 9 deletions(-)
diff --git a/drivers/pci/Kconfig b/drivers/pci/Kconfig
index 0c7408509ba2..7a3eb5beb328 100644
--- a/drivers/pci/Kconfig
+++ b/drivers/pci/Kconfig
@@ -226,6 +226,21 @@ config PCI_P2PDMA
If unsure, say N.
+config PCI_ACS_KUNIT_TEST
+ tristate "KUnit tests for PCI ACS P2P routing" if !KUNIT_ALL_TESTS
+ depends on PCI_P2PDMA && KUNIT
+ default KUNIT_ALL_TESTS
+ help
+ Enable KUnit tests for the PCI ACS peer-to-peer routing decision
+ logic, including direction-specific Request and Completion
+ controls that cannot all be exercised on typical peer-to-peer
+ hardware.
+
+ For more information on KUnit and unit tests in general, refer to
+ the KUnit documentation in Documentation/dev-tools/kunit/.
+
+ If unsure, say N.
+
config PCI_LABEL
def_bool y if (DMI || ACPI)
select NLS
diff --git a/drivers/pci/Makefile b/drivers/pci/Makefile
index 41ebc3b9a518..6305d128d3df 100644
--- a/drivers/pci/Makefile
+++ b/drivers/pci/Makefile
@@ -31,6 +31,7 @@ obj-$(CONFIG_PCI_STUB) += pci-stub.o
obj-$(CONFIG_PCI_PF_STUB) += pci-pf-stub.o
obj-$(CONFIG_PCI_ECAM) += ecam.o
obj-$(CONFIG_PCI_P2PDMA) += p2pdma.o
+obj-$(CONFIG_PCI_ACS_KUNIT_TEST) += pci_acs_test.o
obj-$(CONFIG_XEN_PCIDEV_FRONTEND) += xen-pcifront.o
obj-$(CONFIG_VGA_ARB) += vgaarb.o
obj-$(CONFIG_PCI_DOE) += doe.o
diff --git a/drivers/pci/p2pdma.c b/drivers/pci/p2pdma.c
index 60bd9ec5f993..955e3b41ec1f 100644
--- a/drivers/pci/p2pdma.c
+++ b/drivers/pci/p2pdma.c
@@ -515,13 +515,6 @@ static struct pci_dev *find_parent_pci_dev(struct device *dev)
return NULL;
}
-enum pci_acs_p2pdma_state {
- PCI_ACS_P2PDMA_NOT_SUPPORTED,
- PCI_ACS_P2PDMA_DIRECT,
- PCI_ACS_P2PDMA_REDIRECT,
- PCI_ACS_P2PDMA_BLOCKED,
-};
-
/*
* Decide how a peer-to-peer Request at an ACS-capable ingress port routes,
* from that port's ACS Control register and the Request's Address Type.
@@ -531,7 +524,7 @@ enum pci_acs_p2pdma_state {
* selects are a direct route and an ACS Violation, and neither one lets peer
* bus addressing be assumed.
*/
-static enum pci_acs_p2pdma_state
+VISIBLE_IF_KUNIT enum pci_acs_p2pdma_state
pci_acs_p2pdma_request(u16 ctrl, unsigned int tlp_flags)
{
if (tlp_flags & PCI_P2PDMA_TLP_TRANSLATED) {
@@ -558,6 +551,7 @@ pci_acs_p2pdma_request(u16 ctrl, unsigned int tlp_flags)
return ctrl & (PCI_ACS_RR | PCI_ACS_EC) ?
PCI_ACS_P2PDMA_REDIRECT : PCI_ACS_P2PDMA_DIRECT;
}
+EXPORT_SYMBOL_IF_KUNIT(pci_acs_p2pdma_request);
/*
* Decide how a peer-to-peer Completion at an ACS-capable ingress port routes.
@@ -565,7 +559,7 @@ pci_acs_p2pdma_request(u16 ctrl, unsigned int tlp_flags)
* affects a Completion, and that one leaves Completions carrying the Relaxed
* Ordering attribute alone.
*/
-static enum pci_acs_p2pdma_state
+VISIBLE_IF_KUNIT enum pci_acs_p2pdma_state
pci_acs_p2pdma_completion(u16 ctrl, unsigned int tlp_flags)
{
if (tlp_flags & PCI_P2PDMA_TLP_RELAXED_CPL)
@@ -574,6 +568,7 @@ pci_acs_p2pdma_completion(u16 ctrl, unsigned int tlp_flags)
return ctrl & PCI_ACS_CR ? PCI_ACS_P2PDMA_REDIRECT :
PCI_ACS_P2PDMA_DIRECT;
}
+EXPORT_SYMBOL_IF_KUNIT(pci_acs_p2pdma_completion);
static const char *pci_acs_p2pdma_state_name(enum pci_acs_p2pdma_state state)
{
diff --git a/drivers/pci/pci.h b/drivers/pci/pci.h
index ba3c3fddddc2..c0d2711d73f9 100644
--- a/drivers/pci/pci.h
+++ b/drivers/pci/pci.h
@@ -2,6 +2,7 @@
#ifndef DRIVERS_PCI_H
#define DRIVERS_PCI_H
+#include <kunit/visibility.h>
#include <linux/bug.h>
#include <linux/align.h>
#include <linux/bitfield.h>
@@ -1093,6 +1094,21 @@ resource_size_t pci_min_window_alignment(struct pci_bus *bus,
void pci_acs_init(struct pci_dev *dev);
void pci_enable_acs(struct pci_dev *dev);
+
+enum pci_acs_p2pdma_state {
+ PCI_ACS_P2PDMA_NOT_SUPPORTED,
+ PCI_ACS_P2PDMA_DIRECT,
+ PCI_ACS_P2PDMA_REDIRECT,
+ PCI_ACS_P2PDMA_BLOCKED,
+};
+
+#if IS_ENABLED(CONFIG_KUNIT)
+enum pci_acs_p2pdma_state pci_acs_p2pdma_request(u16 ctrl,
+ unsigned int tlp_flags);
+enum pci_acs_p2pdma_state pci_acs_p2pdma_completion(u16 ctrl,
+ unsigned int tlp_flags);
+#endif
+
#ifdef CONFIG_PCI_QUIRKS
int pci_dev_specific_acs_enabled(struct pci_dev *dev, u16 acs_flags);
int pci_dev_specific_enable_acs(struct pci_dev *dev);
diff --git a/drivers/pci/pci_acs_test.c b/drivers/pci/pci_acs_test.c
new file mode 100644
index 000000000000..ce6b9375da36
--- /dev/null
+++ b/drivers/pci/pci_acs_test.c
@@ -0,0 +1,121 @@
+// SPDX-License-Identifier: GPL-2.0
+/*
+ * KUnit tests for PCI ACS peer-to-peer routing decisions.
+ *
+ * These exercise Request and Completion routing independently of the ACS
+ * settings exposed by available PCIe hardware.
+ */
+#include <kunit/test.h>
+
+#include <linux/pci.h>
+#include <linux/pci-p2pdma.h>
+#include <linux/pci_regs.h>
+
+#include "pci.h"
+
+struct acs_decision_case {
+ const char *desc;
+ u16 ctrl;
+ unsigned int tlp_flags;
+ enum pci_acs_p2pdma_state expect;
+};
+
+/* Shorthands to keep the tables below readable. */
+#define ACS_DIRECT PCI_ACS_P2PDMA_DIRECT
+#define ACS_REDIR PCI_ACS_P2PDMA_REDIRECT
+#define ACS_RO PCI_P2PDMA_TLP_RELAXED_CPL
+#define ACS_AT PCI_P2PDMA_TLP_TRANSLATED
+#define ACS_BLOCK PCI_ACS_P2PDMA_BLOCKED
+
+/* Request routing ignores Completion Redirect. */
+static const struct acs_decision_case acs_request_cases[] = {
+ { "req/none", 0, 0, ACS_DIRECT },
+ { "req/rr", PCI_ACS_RR, 0, ACS_REDIR },
+ { "req/cr", PCI_ACS_CR, 0, ACS_DIRECT },
+ { "req/rr_cr", PCI_ACS_RR | PCI_ACS_CR, 0, ACS_REDIR },
+ { "req/ec", PCI_ACS_EC, 0, ACS_REDIR },
+ { "req/ec_cr", PCI_ACS_EC | PCI_ACS_CR, 0, ACS_REDIR },
+
+ /*
+ * Direct Translated P2P overrides the redirect controls, but only for
+ * a Request that actually carries a Translated address.
+ */
+ { "req/dt", PCI_ACS_DT, 0, ACS_DIRECT },
+ { "req/dt_rr", PCI_ACS_DT | PCI_ACS_RR, 0, ACS_REDIR },
+ { "req/at", 0, ACS_AT, ACS_DIRECT },
+ { "req/at_rr", PCI_ACS_RR, ACS_AT, ACS_REDIR },
+ { "req/at_dt_rr", PCI_ACS_DT | PCI_ACS_RR, ACS_AT, ACS_DIRECT },
+ { "req/at_dt_ec", PCI_ACS_DT | PCI_ACS_EC, ACS_AT, ACS_DIRECT },
+
+ /*
+ * Translation Blocking rejects a Translated address outright, and
+ * makes the port ignore Direct Translated P2P.
+ */
+ { "req/tb", PCI_ACS_TB, 0, ACS_DIRECT },
+ { "req/tb_rr", PCI_ACS_TB | PCI_ACS_RR, 0, ACS_REDIR },
+ { "req/at_tb", PCI_ACS_TB, ACS_AT, ACS_BLOCK },
+ { "req/at_tb_dt", PCI_ACS_TB | PCI_ACS_DT, ACS_AT, ACS_BLOCK },
+};
+
+/* Completion routing depends only on Completion Redirect. */
+static const struct acs_decision_case acs_completion_cases[] = {
+ { "cpl/none", 0, 0, ACS_DIRECT },
+ { "cpl/rr", PCI_ACS_RR, 0, ACS_DIRECT },
+ { "cpl/cr", PCI_ACS_CR, 0, ACS_REDIR },
+ { "cpl/rr_cr", PCI_ACS_RR | PCI_ACS_CR, 0, ACS_REDIR },
+ { "cpl/ec", PCI_ACS_EC, 0, ACS_DIRECT },
+ { "cpl/ec_cr", PCI_ACS_EC | PCI_ACS_CR, 0, ACS_REDIR },
+
+ /* Relaxed Ordering Completions are never redirected. */
+ { "cpl/ro", 0, ACS_RO, ACS_DIRECT },
+ { "cpl/ro_cr", PCI_ACS_CR, ACS_RO, ACS_DIRECT },
+ { "cpl/ro_rr_cr", PCI_ACS_RR | PCI_ACS_CR, ACS_RO, ACS_DIRECT },
+};
+
+#undef ACS_DIRECT
+#undef ACS_REDIR
+#undef ACS_RO
+#undef ACS_AT
+#undef ACS_BLOCK
+
+static void acs_decision_desc(const struct acs_decision_case *c, char *desc)
+{
+ strscpy(desc, c->desc, KUNIT_PARAM_DESC_SIZE);
+}
+
+KUNIT_ARRAY_PARAM(acs_request, acs_request_cases, acs_decision_desc);
+KUNIT_ARRAY_PARAM(acs_completion, acs_completion_cases, acs_decision_desc);
+
+static void pci_acs_p2pdma_request_test(struct kunit *test)
+{
+ const struct acs_decision_case *c = test->param_value;
+
+ KUNIT_EXPECT_EQ(test, pci_acs_p2pdma_request(c->ctrl, c->tlp_flags),
+ c->expect);
+}
+
+static void pci_acs_p2pdma_completion_test(struct kunit *test)
+{
+ const struct acs_decision_case *c = test->param_value;
+
+ KUNIT_EXPECT_EQ(test, pci_acs_p2pdma_completion(c->ctrl, c->tlp_flags),
+ c->expect);
+}
+
+static struct kunit_case pci_acs_test_cases[] = {
+ KUNIT_CASE_PARAM(pci_acs_p2pdma_request_test,
+ acs_request_gen_params),
+ KUNIT_CASE_PARAM(pci_acs_p2pdma_completion_test,
+ acs_completion_gen_params),
+ {}
+};
+
+static struct kunit_suite pci_acs_test_suite = {
+ .name = "pci_acs",
+ .test_cases = pci_acs_test_cases,
+};
+kunit_test_suite(pci_acs_test_suite);
+
+MODULE_IMPORT_NS("EXPORTED_FOR_KUNIT_TESTING");
+MODULE_LICENSE("GPL");
+MODULE_DESCRIPTION("KUnit tests for PCI ACS peer-to-peer routing decisions");
--
2.55.0
^ permalink raw reply related [flat|nested] 21+ messages in thread
* [PATCH v5 14/18] PCI/P2PDMA: Test the ACS P2P routing walk
2026-09-10 11:31 [PATCH v5 00/18] PCI/P2PDMA: Route peer-to-peer DMA by TLP class Leon Romanovsky
` (12 preceding siblings ...)
2026-09-10 11:32 ` [PATCH v5 13/18] PCI/P2PDMA: Add KUnit tests for the ACS routing decisions Leon Romanovsky
@ 2026-09-10 11:32 ` Leon Romanovsky
2026-09-10 11:32 ` [PATCH v5 15/18] PCI: Add KUnit coverage for ACS isolation checks Leon Romanovsky
` (3 subsequent siblings)
17 siblings, 0 replies; 21+ messages in thread
From: Leon Romanovsky @ 2026-09-10 11:32 UTC (permalink / raw)
To: Bjorn Helgaas, Logan Gunthorpe, Chaitanya Kulkarni,
Greg Kroah-Hartman, Jens Axboe, Alex Williamson, Leon Romanovsky,
Ankit Agrawal, Jason Gunthorpe, Jonathan Corbet, Shuah Khan,
Joerg Roedel (AMD), Will Deacon, Robin Murphy, Randy Dunlap,
Sumit Semwal, Christian König
Cc: linux-pci, linux-kernel, linux-doc, iommu, Tushar Dave,
linux-media, dri-devel, linaro-mm-sig, linux-rdma, kvm
From: Leon Romanovsky <leonro@nvidia.com>
calc_map_type_and_dist() decides which ports along a path carry the
routing controls, and holds every class's answer in one cache entry.
Neither depends on a single register, so a table of them cannot reach the
walk itself.
Drive the walk over a fabricated fabric of two devices below a switch,
with fake config space supplying the ACS Control registers. Cover the
ports below the divergence, the three cases where two classes of one path
disagree, and the packed cache, which the fabric has no provider state to
exercise indirectly.
Signed-off-by: Leon Romanovsky <leonro@nvidia.com>
---
drivers/pci/p2pdma.c | 9 +-
drivers/pci/pci.h | 9 ++
drivers/pci/pci_acs_test.c | 350 +++++++++++++++++++++++++++++++++++++++++++++
3 files changed, 365 insertions(+), 3 deletions(-)
diff --git a/drivers/pci/p2pdma.c b/drivers/pci/p2pdma.c
index 955e3b41ec1f..e522be1372f7 100644
--- a/drivers/pci/p2pdma.c
+++ b/drivers/pci/p2pdma.c
@@ -1016,7 +1016,7 @@ static unsigned long map_types_idx(struct pci_dev *client)
*/
static_assert(PCI_P2PDMA_MAP_THRU_HOST_BRIDGE < 16);
-static unsigned long
+VISIBLE_IF_KUNIT unsigned long
pci_p2pdma_map_types_pack(const enum pci_p2pdma_map_type *type)
{
unsigned long val = 0;
@@ -1027,12 +1027,14 @@ pci_p2pdma_map_types_pack(const enum pci_p2pdma_map_type *type)
return val;
}
+EXPORT_SYMBOL_IF_KUNIT(pci_p2pdma_map_types_pack);
-static enum pci_p2pdma_map_type
+VISIBLE_IF_KUNIT enum pci_p2pdma_map_type
pci_p2pdma_map_types_unpack(unsigned long val, unsigned int tlp_flags)
{
return (val >> (tlp_flags * 4)) & 0xf;
}
+EXPORT_SYMBOL_IF_KUNIT(pci_p2pdma_map_types_unpack);
/*
* Calculate the P2PDMA mapping type and distance between two PCI devices.
@@ -1081,7 +1083,7 @@ pci_p2pdma_map_types_unpack(unsigned long val, unsigned int tlp_flags)
* ports per above. If the device is not in the whitelist, return
* PCI_P2PDMA_MAP_NOT_SUPPORTED.
*/
-static enum pci_p2pdma_map_type
+VISIBLE_IF_KUNIT enum pci_p2pdma_map_type
calc_map_type_and_dist(struct pci_dev *provider, struct pci_dev *client,
int *dist, unsigned int tlp_flags, bool verbose)
{
@@ -1267,6 +1269,7 @@ calc_map_type_and_dist(struct pci_dev *provider, struct pci_dev *client,
}
return map_type[tlp_flags];
}
+EXPORT_SYMBOL_IF_KUNIT(calc_map_type_and_dist);
/**
* pci_p2pdma_distance_many - Determine the cumulative distance between
diff --git a/drivers/pci/pci.h b/drivers/pci/pci.h
index c0d2711d73f9..56f821e40637 100644
--- a/drivers/pci/pci.h
+++ b/drivers/pci/pci.h
@@ -7,6 +7,7 @@
#include <linux/align.h>
#include <linux/bitfield.h>
#include <linux/pci.h>
+#include <linux/pci-p2pdma.h>
#include <trace/events/pci.h>
struct pcie_tlp_log;
@@ -1107,6 +1108,14 @@ enum pci_acs_p2pdma_state pci_acs_p2pdma_request(u16 ctrl,
unsigned int tlp_flags);
enum pci_acs_p2pdma_state pci_acs_p2pdma_completion(u16 ctrl,
unsigned int tlp_flags);
+unsigned long pci_p2pdma_map_types_pack(const enum pci_p2pdma_map_type *type);
+enum pci_p2pdma_map_type pci_p2pdma_map_types_unpack(unsigned long val,
+ unsigned int tlp_flags);
+enum pci_p2pdma_map_type calc_map_type_and_dist(struct pci_dev *provider,
+ struct pci_dev *client,
+ int *dist,
+ unsigned int tlp_flags,
+ bool verbose);
#endif
#ifdef CONFIG_PCI_QUIRKS
diff --git a/drivers/pci/pci_acs_test.c b/drivers/pci/pci_acs_test.c
index ce6b9375da36..28eced6dd672 100644
--- a/drivers/pci/pci_acs_test.c
+++ b/drivers/pci/pci_acs_test.c
@@ -102,11 +102,361 @@ static void pci_acs_p2pdma_completion_test(struct kunit *test)
c->expect);
}
+/*
+ * Drive calc_map_type_and_dist() over a fabricated PCIe fabric matching the
+ * canonical topology of two devices below one switch:
+ *
+ * host bridge / root bus
+ * Root Port
+ * Switch Upstream Port
+ * Switch Downstream Port 0
+ * Nested Switch -- provider
+ * Switch Downstream Port 1
+ * Nested Switch -- client
+ *
+ * Fake config-space operations supply the ACS Control registers. This lets
+ * the cases vary both divergence ports and controls below the divergence
+ * without depending on real hardware.
+ */
+struct acs_port_cfg {
+ u16 ctrl;
+ bool fail_read;
+};
+
+struct acs_fabric {
+ struct pci_dev *provider;
+ struct pci_dev *client;
+ struct pci_dev *dn0; /* Downstream Port 0 (provider side) */
+ struct pci_dev *dn1; /* Downstream Port 1 (client side) */
+ struct pci_dev *provider_leaf;
+ struct pci_dev *client_leaf;
+ struct acs_port_cfg dn0_cfg;
+ struct acs_port_cfg dn1_cfg;
+ struct acs_port_cfg provider_leaf_cfg;
+ struct acs_port_cfg client_leaf_cfg;
+};
+
+static int acs_port_read(struct pci_dev *port, struct acs_port_cfg *cfg,
+ int where, int size, u32 *val)
+{
+ if (port->acs_cap && size == 2 &&
+ where == port->acs_cap + PCI_ACS_CTRL) {
+ if (cfg->fail_read)
+ return PCIBIOS_DEVICE_NOT_FOUND;
+ *val = cfg->ctrl;
+ }
+
+ return PCIBIOS_SUCCESSFUL;
+}
+
+static int acs_fabric_read(struct pci_bus *bus, unsigned int devfn,
+ int where, int size, u32 *val)
+{
+ struct acs_fabric *f = bus->sysdata;
+
+ *val = 0;
+ if (bus == f->dn0->bus && devfn == f->dn0->devfn)
+ return acs_port_read(f->dn0, &f->dn0_cfg, where, size, val);
+ if (bus == f->dn1->bus && devfn == f->dn1->devfn)
+ return acs_port_read(f->dn1, &f->dn1_cfg, where, size, val);
+ if (bus == f->provider_leaf->bus &&
+ devfn == f->provider_leaf->devfn)
+ return acs_port_read(f->provider_leaf, &f->provider_leaf_cfg,
+ where, size, val);
+ if (bus == f->client_leaf->bus && devfn == f->client_leaf->devfn)
+ return acs_port_read(f->client_leaf, &f->client_leaf_cfg,
+ where, size, val);
+
+ return PCIBIOS_SUCCESSFUL;
+}
+
+static int acs_fabric_write(struct pci_bus *bus, unsigned int devfn,
+ int where, int size, u32 val)
+{
+ return PCIBIOS_SUCCESSFUL;
+}
+
+static struct pci_ops acs_fabric_ops = {
+ .read = acs_fabric_read,
+ .write = acs_fabric_write,
+};
+
+static struct pci_bus *acs_add_bus(struct kunit *test, struct pci_bus *parent,
+ struct pci_dev *self, u8 nr, void *sysdata)
+{
+ struct pci_bus *bus = kunit_kzalloc(test, sizeof(*bus), GFP_KERNEL);
+
+ KUNIT_ASSERT_NOT_NULL(test, bus);
+ bus->parent = parent;
+ bus->self = self;
+ bus->number = nr;
+ bus->ops = &acs_fabric_ops;
+ bus->sysdata = sysdata;
+ INIT_LIST_HEAD(&bus->devices);
+ return bus;
+}
+
+static struct pci_dev *acs_add_dev(struct kunit *test, struct pci_bus *bus,
+ unsigned int devfn, int pcie_type)
+{
+ struct pci_dev *dev = kunit_kzalloc(test, sizeof(*dev), GFP_KERNEL);
+
+ KUNIT_ASSERT_NOT_NULL(test, dev);
+ dev->bus = bus;
+ dev->devfn = devfn;
+ dev->pcie_cap = 0x40;
+ dev->pcie_flags_reg = (pcie_type << 4) | 0x2;
+ list_add_tail(&dev->bus_list, &bus->devices);
+ return dev;
+}
+
+static void acs_build_fabric(struct kunit *test, struct acs_fabric *f)
+{
+ struct pci_bus *bus0, *bus1, *bus2, *bus3, *bus4, *bus5, *bus6;
+ struct pci_bus *bus7, *bus8;
+ struct pci_dev *rootport, *swup, *provider_swup, *client_swup;
+ struct pci_host_bridge *host;
+
+ host = kunit_kzalloc(test, sizeof(*host), GFP_KERNEL);
+ KUNIT_ASSERT_NOT_NULL(test, host);
+
+ bus0 = acs_add_bus(test, NULL, NULL, 0, f);
+ /* The Root Port doubles as the whitelisted host-bridge device. */
+ rootport = acs_add_dev(test, bus0, PCI_DEVFN(0, 0),
+ PCI_EXP_TYPE_ROOT_PORT);
+ rootport->vendor = PCI_VENDOR_ID_GOOGLE;
+ rootport->device = 0x1234;
+ host->bus = bus0;
+ bus0->bridge = &host->dev;
+
+ bus1 = acs_add_bus(test, bus0, rootport, 1, f);
+ swup = acs_add_dev(test, bus1, PCI_DEVFN(0, 0),
+ PCI_EXP_TYPE_UPSTREAM);
+
+ bus2 = acs_add_bus(test, bus1, swup, 2, f);
+ f->dn0 = acs_add_dev(test, bus2, PCI_DEVFN(0, 0),
+ PCI_EXP_TYPE_DOWNSTREAM);
+ f->dn1 = acs_add_dev(test, bus2, PCI_DEVFN(1, 0),
+ PCI_EXP_TYPE_DOWNSTREAM);
+
+ bus3 = acs_add_bus(test, bus2, f->dn0, 3, f);
+ provider_swup = acs_add_dev(test, bus3, PCI_DEVFN(0, 0),
+ PCI_EXP_TYPE_UPSTREAM);
+ bus5 = acs_add_bus(test, bus3, provider_swup, 5, f);
+ f->provider_leaf = acs_add_dev(test, bus5, PCI_DEVFN(0, 0),
+ PCI_EXP_TYPE_DOWNSTREAM);
+ bus7 = acs_add_bus(test, bus5, f->provider_leaf, 7, f);
+ f->provider = acs_add_dev(test, bus7, PCI_DEVFN(0, 0),
+ PCI_EXP_TYPE_ENDPOINT);
+
+ bus4 = acs_add_bus(test, bus2, f->dn1, 4, f);
+ client_swup = acs_add_dev(test, bus4, PCI_DEVFN(0, 0),
+ PCI_EXP_TYPE_UPSTREAM);
+ bus6 = acs_add_bus(test, bus4, client_swup, 6, f);
+ f->client_leaf = acs_add_dev(test, bus6, PCI_DEVFN(0, 0),
+ PCI_EXP_TYPE_DOWNSTREAM);
+ bus8 = acs_add_bus(test, bus6, f->client_leaf, 8, f);
+ f->client = acs_add_dev(test, bus8, PCI_DEVFN(0, 0),
+ PCI_EXP_TYPE_ENDPOINT);
+}
+
+static enum pci_p2pdma_map_type acs_walk_map(struct acs_fabric *f,
+ unsigned int tlp_flags)
+{
+ int dist;
+
+ return calc_map_type_and_dist(f->provider, f->client, &dist, tlp_flags,
+ false);
+}
+
+static void acs_walk_bus_addr_test(struct kunit *test)
+{
+ struct acs_fabric f = {};
+
+ acs_build_fabric(test, &f);
+ KUNIT_EXPECT_EQ(test, acs_walk_map(&f, 0), PCI_P2PDMA_MAP_BUS_ADDR);
+}
+
+static void acs_walk_request_redirect_test(struct kunit *test)
+{
+ struct acs_fabric f = {};
+
+ acs_build_fabric(test, &f);
+ f.dn1->acs_cap = 0x100;
+ f.dn1->acs_capabilities = PCI_ACS_RR;
+ f.dn1_cfg.ctrl = PCI_ACS_RR;
+
+ KUNIT_EXPECT_EQ(test, acs_walk_map(&f, 0),
+ PCI_P2PDMA_MAP_THRU_HOST_BRIDGE);
+}
+
+static void acs_walk_completion_redirect_test(struct kunit *test)
+{
+ struct acs_fabric f = {};
+
+ acs_build_fabric(test, &f);
+ f.dn0->acs_cap = 0x100;
+ f.dn0->acs_capabilities = PCI_ACS_CR;
+ f.dn0_cfg.ctrl = PCI_ACS_CR;
+
+ KUNIT_EXPECT_EQ(test, acs_walk_map(&f, 0),
+ PCI_P2PDMA_MAP_THRU_HOST_BRIDGE);
+}
+
+static void acs_walk_egress_control_test(struct kunit *test)
+{
+ struct acs_fabric f = {};
+
+ acs_build_fabric(test, &f);
+ f.dn1->acs_cap = 0x100;
+ f.dn1->acs_capabilities = PCI_ACS_EC;
+ f.dn1_cfg.ctrl = PCI_ACS_EC;
+
+ KUNIT_EXPECT_EQ(test, acs_walk_map(&f, 0),
+ PCI_P2PDMA_MAP_THRU_HOST_BRIDGE);
+}
+
+static void acs_walk_asymmetric_direct_test(struct kunit *test)
+{
+ struct acs_fabric f = {};
+
+ acs_build_fabric(test, &f);
+ /* These controls affect only the reverse transaction directions. */
+ f.dn0->acs_cap = 0x100;
+ f.dn0->acs_capabilities = PCI_ACS_RR | PCI_ACS_EC;
+ f.dn0_cfg.ctrl = PCI_ACS_RR | PCI_ACS_EC;
+ f.dn1->acs_cap = 0x100;
+ f.dn1->acs_capabilities = PCI_ACS_CR;
+ f.dn1_cfg.ctrl = PCI_ACS_CR;
+
+ KUNIT_EXPECT_EQ(test, acs_walk_map(&f, 0), PCI_P2PDMA_MAP_BUS_ADDR);
+}
+
+static void acs_walk_nested_completion_redirect_test(struct kunit *test)
+{
+ struct acs_fabric f = {};
+
+ acs_build_fabric(test, &f);
+ f.provider_leaf->acs_cap = 0x100;
+ f.provider_leaf->acs_capabilities = PCI_ACS_CR;
+ f.provider_leaf_cfg.ctrl = PCI_ACS_CR;
+
+ KUNIT_EXPECT_EQ(test, acs_walk_map(&f, 0), PCI_P2PDMA_MAP_BUS_ADDR);
+}
+
+static void acs_walk_nested_request_redirect_test(struct kunit *test)
+{
+ struct acs_fabric f = {};
+
+ acs_build_fabric(test, &f);
+ f.client_leaf->acs_cap = 0x100;
+ f.client_leaf->acs_capabilities = PCI_ACS_RR;
+ f.client_leaf_cfg.ctrl = PCI_ACS_RR;
+
+ KUNIT_EXPECT_EQ(test, acs_walk_map(&f, 0), PCI_P2PDMA_MAP_BUS_ADDR);
+}
+
+static void acs_walk_translation_blocking_test(struct kunit *test)
+{
+ struct acs_fabric f = {};
+
+ acs_build_fabric(test, &f);
+ f.client_leaf->acs_cap = 0x100;
+ f.client_leaf->acs_capabilities = PCI_ACS_TB;
+ f.client_leaf_cfg.ctrl = PCI_ACS_TB;
+
+ /* Untranslated Requests are unaffected by Translation Blocking. */
+ KUNIT_EXPECT_EQ(test, acs_walk_map(&f, 0), PCI_P2PDMA_MAP_BUS_ADDR);
+ KUNIT_EXPECT_EQ(test, acs_walk_map(&f, PCI_P2PDMA_TLP_TRANSLATED),
+ PCI_P2PDMA_MAP_NOT_SUPPORTED);
+}
+
+static void acs_walk_relaxed_completion_test(struct kunit *test)
+{
+ struct acs_fabric f = {};
+
+ acs_build_fabric(test, &f);
+ f.dn0->acs_cap = 0x100;
+ f.dn0->acs_capabilities = PCI_ACS_CR;
+ f.dn0_cfg.ctrl = PCI_ACS_CR;
+
+ KUNIT_EXPECT_EQ(test, acs_walk_map(&f, 0),
+ PCI_P2PDMA_MAP_THRU_HOST_BRIDGE);
+ KUNIT_EXPECT_EQ(test, acs_walk_map(&f, PCI_P2PDMA_TLP_RELAXED_CPL),
+ PCI_P2PDMA_MAP_BUS_ADDR);
+}
+
+static void acs_walk_direct_translated_test(struct kunit *test)
+{
+ struct acs_fabric f = {};
+
+ acs_build_fabric(test, &f);
+ f.dn1->acs_cap = 0x100;
+ f.dn1->acs_capabilities = PCI_ACS_RR | PCI_ACS_DT;
+ f.dn1_cfg.ctrl = PCI_ACS_RR | PCI_ACS_DT;
+
+ KUNIT_EXPECT_EQ(test, acs_walk_map(&f, 0),
+ PCI_P2PDMA_MAP_THRU_HOST_BRIDGE);
+ KUNIT_EXPECT_EQ(test, acs_walk_map(&f, PCI_P2PDMA_TLP_TRANSLATED),
+ PCI_P2PDMA_MAP_BUS_ADDR);
+}
+
+/*
+ * The cache stores one packed value per client, so every class has to come
+ * back out under the flags that selected it.
+ */
+static void acs_map_types_pack_test(struct kunit *test)
+{
+ static const enum pci_p2pdma_map_type type[PCI_P2PDMA_TLP_CLASSES] = {
+ [0] = PCI_P2PDMA_MAP_THRU_HOST_BRIDGE,
+ [PCI_P2PDMA_TLP_TRANSLATED] = PCI_P2PDMA_MAP_NOT_SUPPORTED,
+ [PCI_P2PDMA_TLP_RELAXED_CPL] = PCI_P2PDMA_MAP_BUS_ADDR,
+ [PCI_P2PDMA_TLP_TRANSLATED | PCI_P2PDMA_TLP_RELAXED_CPL] =
+ PCI_P2PDMA_MAP_UNKNOWN,
+ };
+ unsigned long packed = pci_p2pdma_map_types_pack(type);
+ unsigned int flags;
+
+ for (flags = 0; flags < PCI_P2PDMA_TLP_CLASSES; flags++)
+ KUNIT_EXPECT_EQ(test,
+ pci_p2pdma_map_types_unpack(packed, flags),
+ type[flags]);
+
+ /* An absent cache entry reads back as unknown in every class. */
+ for (flags = 0; flags < PCI_P2PDMA_TLP_CLASSES; flags++)
+ KUNIT_EXPECT_EQ(test, pci_p2pdma_map_types_unpack(0, flags),
+ PCI_P2PDMA_MAP_UNKNOWN);
+}
+
+static void acs_walk_unreadable_control_test(struct kunit *test)
+{
+ struct acs_fabric f = {};
+
+ acs_build_fabric(test, &f);
+ f.dn1->acs_cap = 0x100;
+ f.dn1_cfg.fail_read = true;
+
+ KUNIT_EXPECT_EQ(test, acs_walk_map(&f, 0),
+ PCI_P2PDMA_MAP_NOT_SUPPORTED);
+}
+
static struct kunit_case pci_acs_test_cases[] = {
KUNIT_CASE_PARAM(pci_acs_p2pdma_request_test,
acs_request_gen_params),
KUNIT_CASE_PARAM(pci_acs_p2pdma_completion_test,
acs_completion_gen_params),
+ KUNIT_CASE(acs_walk_bus_addr_test),
+ KUNIT_CASE(acs_walk_request_redirect_test),
+ KUNIT_CASE(acs_walk_completion_redirect_test),
+ KUNIT_CASE(acs_walk_egress_control_test),
+ KUNIT_CASE(acs_walk_asymmetric_direct_test),
+ KUNIT_CASE(acs_walk_nested_completion_redirect_test),
+ KUNIT_CASE(acs_walk_nested_request_redirect_test),
+ KUNIT_CASE(acs_walk_translation_blocking_test),
+ KUNIT_CASE(acs_walk_relaxed_completion_test),
+ KUNIT_CASE(acs_walk_direct_translated_test),
+ KUNIT_CASE(acs_walk_unreadable_control_test),
+ KUNIT_CASE(acs_map_types_pack_test),
{}
};
--
2.55.0
^ permalink raw reply related [flat|nested] 21+ messages in thread
* [PATCH v5 15/18] PCI: Add KUnit coverage for ACS isolation checks
2026-09-10 11:31 [PATCH v5 00/18] PCI/P2PDMA: Route peer-to-peer DMA by TLP class Leon Romanovsky
` (13 preceding siblings ...)
2026-09-10 11:32 ` [PATCH v5 14/18] PCI/P2PDMA: Test the ACS P2P routing walk Leon Romanovsky
@ 2026-09-10 11:32 ` Leon Romanovsky
2026-09-10 11:32 ` [PATCH v5 16/18] PCI/P2PDMA: Document TLP-class routing Leon Romanovsky
` (2 subsequent siblings)
17 siblings, 0 replies; 21+ messages in thread
From: Leon Romanovsky @ 2026-09-10 11:32 UTC (permalink / raw)
To: Bjorn Helgaas, Logan Gunthorpe, Chaitanya Kulkarni,
Greg Kroah-Hartman, Jens Axboe, Alex Williamson, Leon Romanovsky,
Ankit Agrawal, Jason Gunthorpe, Jonathan Corbet, Shuah Khan,
Joerg Roedel (AMD), Will Deacon, Robin Murphy, Randy Dunlap,
Sumit Semwal, Christian König
Cc: linux-pci, linux-kernel, linux-doc, iommu, Tushar Dave,
linux-media, dri-devel, linaro-mm-sig, linux-rdma, kvm
From: Leon Romanovsky <leonro@nvidia.com>
Direct Translated P2P does not weaken IOMMU isolation because a Translated
Request carries an address supplied by the IOMMU. Config-space read
failures, however, leave ACS state unknown and must not report isolation.
Exercise both cases with fake config-space operations. Also cover missing
and unrequested controls and a missing ACS capability.
Signed-off-by: Leon Romanovsky <leonro@nvidia.com>
---
drivers/pci/pci.c | 4 +-
drivers/pci/pci.h | 1 +
drivers/pci/pci_acs_test.c | 138 +++++++++++++++++++++++++++++++++++++++++++++
3 files changed, 142 insertions(+), 1 deletion(-)
diff --git a/drivers/pci/pci.c b/drivers/pci/pci.c
index f7d94ecf9157..4a9ab3882aac 100644
--- a/drivers/pci/pci.c
+++ b/drivers/pci/pci.c
@@ -3578,7 +3578,8 @@ void pci_configure_ari(struct pci_dev *dev)
}
}
-static bool pci_acs_flags_enabled(struct pci_dev *pdev, u16 acs_flags)
+VISIBLE_IF_KUNIT
+bool pci_acs_flags_enabled(struct pci_dev *pdev, u16 acs_flags)
{
int pos;
u16 ctrl;
@@ -3598,6 +3599,7 @@ static bool pci_acs_flags_enabled(struct pci_dev *pdev, u16 acs_flags)
return false;
return (ctrl & acs_flags) == acs_flags;
}
+EXPORT_SYMBOL_IF_KUNIT(pci_acs_flags_enabled);
/**
* pci_acs_enabled - test ACS against required flags for a given device
diff --git a/drivers/pci/pci.h b/drivers/pci/pci.h
index 56f821e40637..5bc703ff0c86 100644
--- a/drivers/pci/pci.h
+++ b/drivers/pci/pci.h
@@ -1104,6 +1104,7 @@ enum pci_acs_p2pdma_state {
};
#if IS_ENABLED(CONFIG_KUNIT)
+bool pci_acs_flags_enabled(struct pci_dev *pdev, u16 acs_flags);
enum pci_acs_p2pdma_state pci_acs_p2pdma_request(u16 ctrl,
unsigned int tlp_flags);
enum pci_acs_p2pdma_state pci_acs_p2pdma_completion(u16 ctrl,
diff --git a/drivers/pci/pci_acs_test.c b/drivers/pci/pci_acs_test.c
index 28eced6dd672..880fc810080a 100644
--- a/drivers/pci/pci_acs_test.c
+++ b/drivers/pci/pci_acs_test.c
@@ -102,6 +102,140 @@ static void pci_acs_p2pdma_completion_test(struct kunit *test)
c->expect);
}
+/* Flags an IOMMU asks for; see REQ_ACS_FLAGS in drivers/iommu/iommu.c. */
+#define ACS_REQ_FLAGS (PCI_ACS_SV | PCI_ACS_RR | PCI_ACS_CR | PCI_ACS_UF)
+#define ACS_ALL_CAPS (PCI_ACS_SV | PCI_ACS_TB | PCI_ACS_RR | PCI_ACS_CR | \
+ PCI_ACS_UF | PCI_ACS_DT)
+#define ACS_TEST_CAP 0x100
+
+struct acs_ctrl_cfg {
+ unsigned int devfn;
+ u16 cap; /* Offset where the ACS capability responds */
+ u16 ctrl;
+ bool fail_read;
+};
+
+static int acs_ctrl_read(struct pci_bus *bus, unsigned int devfn,
+ int where, int size, u32 *val)
+{
+ struct acs_ctrl_cfg *cfg = bus->sysdata;
+
+ *val = 0;
+ if (cfg->fail_read)
+ return PCIBIOS_DEVICE_NOT_FOUND;
+
+ if (devfn == cfg->devfn && size == 2 &&
+ where == cfg->cap + PCI_ACS_CTRL)
+ *val = cfg->ctrl;
+ return PCIBIOS_SUCCESSFUL;
+}
+
+static int acs_ctrl_write(struct pci_bus *bus, unsigned int devfn,
+ int where, int size, u32 val)
+{
+ return PCIBIOS_SUCCESSFUL;
+}
+
+static struct pci_ops acs_ctrl_ops = {
+ .read = acs_ctrl_read,
+ .write = acs_ctrl_write,
+};
+
+struct acs_isolation_case {
+ const char *desc;
+ u16 ctrl;
+ u16 req;
+ bool expect;
+};
+
+static const struct acs_isolation_case acs_isolation_cases[] = {
+ { "all_enabled", ACS_REQ_FLAGS, ACS_REQ_FLAGS, true },
+ /* Translated Requests remain isolated by their IOMMU translation. */
+ { "dt", ACS_REQ_FLAGS | PCI_ACS_DT, ACS_REQ_FLAGS, true },
+ { "rr_not_enabled", PCI_ACS_SV | PCI_ACS_CR | PCI_ACS_UF,
+ ACS_REQ_FLAGS, false },
+ { "rr_not_required", PCI_ACS_SV | PCI_ACS_CR | PCI_ACS_UF,
+ PCI_ACS_SV | PCI_ACS_CR | PCI_ACS_UF, true },
+};
+
+static void acs_isolation_desc(const struct acs_isolation_case *c, char *desc)
+{
+ strscpy(desc, c->desc, KUNIT_PARAM_DESC_SIZE);
+}
+
+KUNIT_ARRAY_PARAM(acs_isolation, acs_isolation_cases, acs_isolation_desc);
+
+static void pci_acs_flags_enabled_test(struct kunit *test)
+{
+ const struct acs_isolation_case *c = test->param_value;
+ struct acs_ctrl_cfg cfg = {
+ .devfn = PCI_DEVFN(0, 0),
+ .cap = ACS_TEST_CAP,
+ .ctrl = c->ctrl,
+ };
+ struct pci_bus *bus = kunit_kzalloc(test, sizeof(*bus), GFP_KERNEL);
+ struct pci_dev *pdev = kunit_kzalloc(test, sizeof(*pdev), GFP_KERNEL);
+
+ KUNIT_ASSERT_NOT_NULL(test, bus);
+ KUNIT_ASSERT_NOT_NULL(test, pdev);
+
+ bus->ops = &acs_ctrl_ops;
+ bus->sysdata = &cfg;
+
+ pdev->bus = bus;
+ pdev->devfn = cfg.devfn;
+ pdev->acs_cap = ACS_TEST_CAP;
+ pdev->acs_capabilities = ACS_ALL_CAPS;
+
+ KUNIT_EXPECT_EQ(test, pci_acs_flags_enabled(pdev, c->req), c->expect);
+}
+
+static bool acs_isolated(struct kunit *test, struct acs_ctrl_cfg *cfg,
+ u16 acs_cap, u16 acs_flags)
+{
+ struct pci_bus *bus = kunit_kzalloc(test, sizeof(*bus), GFP_KERNEL);
+ struct pci_dev *pdev = kunit_kzalloc(test, sizeof(*pdev), GFP_KERNEL);
+
+ KUNIT_ASSERT_NOT_NULL(test, bus);
+ KUNIT_ASSERT_NOT_NULL(test, pdev);
+
+ bus->ops = &acs_ctrl_ops;
+ bus->sysdata = cfg;
+
+ pdev->bus = bus;
+ pdev->devfn = cfg->devfn;
+ pdev->acs_cap = acs_cap;
+ pdev->acs_capabilities = ACS_ALL_CAPS;
+
+ return pci_acs_flags_enabled(pdev, acs_flags);
+}
+
+static void pci_acs_flags_no_cap_test(struct kunit *test)
+{
+ struct acs_ctrl_cfg cfg = {
+ .devfn = PCI_DEVFN(0, 0),
+ .cap = 0,
+ .ctrl = ACS_REQ_FLAGS,
+ };
+
+ KUNIT_EXPECT_FALSE(test, acs_isolated(test, &cfg, 0, ACS_REQ_FLAGS));
+}
+
+static void pci_acs_flags_read_fails_test(struct kunit *test)
+{
+ u16 no_rr = ACS_REQ_FLAGS & ~PCI_ACS_RR;
+ struct acs_ctrl_cfg cfg = {
+ .devfn = PCI_DEVFN(0, 0),
+ .cap = ACS_TEST_CAP,
+ .ctrl = ACS_REQ_FLAGS,
+ };
+
+ KUNIT_EXPECT_TRUE(test, acs_isolated(test, &cfg, ACS_TEST_CAP, no_rr));
+
+ cfg.fail_read = true;
+ KUNIT_EXPECT_FALSE(test, acs_isolated(test, &cfg, ACS_TEST_CAP, no_rr));
+}
+
/*
* Drive calc_map_type_and_dist() over a fabricated PCIe fabric matching the
* canonical topology of two devices below one switch:
@@ -445,6 +579,10 @@ static struct kunit_case pci_acs_test_cases[] = {
acs_request_gen_params),
KUNIT_CASE_PARAM(pci_acs_p2pdma_completion_test,
acs_completion_gen_params),
+ KUNIT_CASE_PARAM(pci_acs_flags_enabled_test,
+ acs_isolation_gen_params),
+ KUNIT_CASE(pci_acs_flags_no_cap_test),
+ KUNIT_CASE(pci_acs_flags_read_fails_test),
KUNIT_CASE(acs_walk_bus_addr_test),
KUNIT_CASE(acs_walk_request_redirect_test),
KUNIT_CASE(acs_walk_completion_redirect_test),
--
2.55.0
^ permalink raw reply related [flat|nested] 21+ messages in thread
* [PATCH v5 16/18] PCI/P2PDMA: Document TLP-class routing
2026-09-10 11:31 [PATCH v5 00/18] PCI/P2PDMA: Route peer-to-peer DMA by TLP class Leon Romanovsky
` (14 preceding siblings ...)
2026-09-10 11:32 ` [PATCH v5 15/18] PCI: Add KUnit coverage for ACS isolation checks Leon Romanovsky
@ 2026-09-10 11:32 ` Leon Romanovsky
2026-09-10 11:32 ` [PATCH v5 17/18] dma-buf: Let importers ask how peer-to-peer traffic is routed Leon Romanovsky
2026-09-10 11:32 ` [PATCH v5 18/18] RDMA/mlx5: Ask P2PDMA whether ATS takes a direct peer-to-peer route Leon Romanovsky
17 siblings, 0 replies; 21+ messages in thread
From: Leon Romanovsky @ 2026-09-10 11:32 UTC (permalink / raw)
To: Bjorn Helgaas, Logan Gunthorpe, Chaitanya Kulkarni,
Greg Kroah-Hartman, Jens Axboe, Alex Williamson, Leon Romanovsky,
Ankit Agrawal, Jason Gunthorpe, Jonathan Corbet, Shuah Khan,
Joerg Roedel (AMD), Will Deacon, Robin Murphy, Randy Dunlap,
Sumit Semwal, Christian König
Cc: linux-pci, linux-kernel, linux-doc, iommu, Tushar Dave,
linux-media, dri-devel, linaro-mm-sig, linux-rdma, kvm
From: Leon Romanovsky <leonro@nvidia.com>
The P2PDMA documentation stated that the mapping result is not defined for
Relaxed Ordering or ATS-translated Requests. It now is.
Replace that paragraph with what the three TLP-sensitive ACS controls do,
the table of outcomes per class, and the interface a client uses to name
its traffic. Record that a caller claiming Relaxed Ordering Completions is
asserting provider behaviour the PCIe specification leaves optional.
Signed-off-by: Leon Romanovsky <leonro@nvidia.com>
---
Documentation/driver-api/pci/p2pdma.rst | 61 +++++++++++++++++++++++++++++----
1 file changed, 55 insertions(+), 6 deletions(-)
diff --git a/Documentation/driver-api/pci/p2pdma.rst b/Documentation/driver-api/pci/p2pdma.rst
index 42b18610bf7d..96a4c1d1b0fb 100644
--- a/Documentation/driver-api/pci/p2pdma.rst
+++ b/Documentation/driver-api/pci/p2pdma.rst
@@ -28,12 +28,61 @@ through the host bridge when either applicable port redirects. If an ACS
Control register cannot be read, P2P DMA is rejected because the kernel cannot
establish a usable route.
-This evaluation assumes clients issue strictly ordered Requests carrying an
-Untranslated address. Its result is not defined when clients use Relaxed
-Ordering or issue ATS-translated Requests because those TLP attributes can
-select different routes through the fabric. Unless ACS Translation Blocking
-is enabled, a Port with ACS Direct Translated P2P enabled routes a
-Translated Request directly to the peer regardless of the redirect controls.
+Three of those controls act on TLP attributes that the client chooses rather
+than on the topology, so the same path routes differently for different
+traffic. ACS Translation Blocking rejects any Request whose Address Type is
+not Untranslated, and takes precedence over every other P2P control. ACS
+Direct Translated P2P routes a Translated Request to the peer regardless of
+Request Redirect and Egress Control. ACS Completion Redirect leaves alone
+Completions that carry the Relaxed Ordering attribute.
+
+A client therefore describes its traffic with ``enum pci_p2pdma_tlp_flags``
+and asks ``pci_p2pdma_map_type_tlp()``. ``pci_p2pdma_map_type()`` answers for
+the default: strictly ordered Requests carrying an Untranslated address.
+
+The two directions are decided independently. Translation Blocking (TB),
+Direct Translated P2P (DT), Request Redirect (RR) and Egress Control (EC) on
+the client-side port decide the Request:
+
+===== ===== ======= ============ ==========
+TB DT RR/EC TLP class Request
+===== ===== ======= ============ ==========
+set x x translated blocked
+clear set x translated direct
+clear clear clear translated direct
+clear clear set translated redirected
+x x clear untranslated direct
+x x set untranslated redirected
+===== ===== ======= ============ ==========
+
+Completion Redirect (CR) on the provider-side port decides the Completions:
+
+===== ========= ==========
+CR TLP class Completion
+===== ========= ==========
+x relaxed direct
+clear strict direct
+set strict redirected
+===== ========= ==========
+
+A path is bus addressable only where both directions route directly, so with
+nothing enabled every class is. A blocked Request is not supported, because
+Translation Blocking rejects the Address Type wherever the Request is
+addressed. Anything else goes through the host bridge.
+
+Note that DT only matters where RR or EC would otherwise redirect: it
+overrides them for a Translated address rather than granting a direct route
+that was not already there.
+
+Translation Blocking is not a routing control, so it is evaluated on every
+client-side port rather than at the divergence alone. A Request it rejects
+has no host bridge fallback, because the Address Type is rejected wherever
+the Request is addressed.
+
+The Completer chooses whether a Completion carries Relaxed Ordering, and the
+PCIe specification does not require it to copy that attribute from the
+Request. A caller passing ``PCI_P2PDMA_TLP_RELAXED_CPL`` is asserting that
+its provider does.
However, if the P2P transaction reaches the host bridge then it might have to
hairpin back out the same root port, be routed inside the CPU SOC to another
--
2.55.0
^ permalink raw reply related [flat|nested] 21+ messages in thread
* [PATCH v5 17/18] dma-buf: Let importers ask how peer-to-peer traffic is routed
2026-09-10 11:31 [PATCH v5 00/18] PCI/P2PDMA: Route peer-to-peer DMA by TLP class Leon Romanovsky
` (15 preceding siblings ...)
2026-09-10 11:32 ` [PATCH v5 16/18] PCI/P2PDMA: Document TLP-class routing Leon Romanovsky
@ 2026-09-10 11:32 ` Leon Romanovsky
2026-09-11 7:51 ` Christian König
2026-09-10 11:32 ` [PATCH v5 18/18] RDMA/mlx5: Ask P2PDMA whether ATS takes a direct peer-to-peer route Leon Romanovsky
17 siblings, 1 reply; 21+ messages in thread
From: Leon Romanovsky @ 2026-09-10 11:32 UTC (permalink / raw)
To: Bjorn Helgaas, Logan Gunthorpe, Chaitanya Kulkarni,
Greg Kroah-Hartman, Jens Axboe, Alex Williamson, Leon Romanovsky,
Ankit Agrawal, Jason Gunthorpe, Jonathan Corbet, Shuah Khan,
Joerg Roedel (AMD), Will Deacon, Robin Murphy, Randy Dunlap,
Sumit Semwal, Christian König
Cc: linux-pci, linux-kernel, linux-doc, iommu, Tushar Dave,
linux-media, dri-devel, linaro-mm-sig, linux-rdma, kvm
From: Leon Romanovsky <leonro@nvidia.com>
Exporters keep the &struct p2pdma_provider in their own private data and
hand it to dma_buf_phys_vec_to_sgt() on every map. An importer cannot reach
it, so it has no way to learn how its own peer-to-peer traffic would be
routed before it programs its hardware.
Publish the provider through &struct dma_buf_export_info instead, and add
dma_buf_p2pdma_map_type() for importers to query it by TLP class. It is
fixed at export time, so dma_buf_phys_vec_to_sgt() no longer needs it as an
argument and the two exporters no longer need a copy of it.
Signed-off-by: Leon Romanovsky <leonro@nvidia.com>
---
drivers/dma-buf/dma-buf-mapping.c | 41 +++++++++++++++++++----
drivers/dma-buf/dma-buf.c | 1 +
drivers/infiniband/core/uverbs.h | 1 -
drivers/infiniband/core/uverbs_std_types_dmabuf.c | 7 ++--
drivers/vfio/pci/vfio_pci_dmabuf.c | 8 ++---
include/linux/dma-buf-mapping.h | 4 ++-
include/linux/dma-buf.h | 5 +++
7 files changed, 49 insertions(+), 18 deletions(-)
diff --git a/drivers/dma-buf/dma-buf-mapping.c b/drivers/dma-buf/dma-buf-mapping.c
index 794acff2546a..8b431000e906 100644
--- a/drivers/dma-buf/dma-buf-mapping.c
+++ b/drivers/dma-buf/dma-buf-mapping.c
@@ -6,6 +6,32 @@
#include <linux/dma-buf-mapping.h>
#include <linux/dma-resv.h>
+/**
+ * dma_buf_p2pdma_map_type - How peer-to-peer traffic to a buffer is routed
+ * @attach: attachment of the importer that will issue the traffic
+ * @tlp_flags: &enum pci_p2pdma_tlp_flags describing the TLPs it will issue
+ *
+ * Reports how the PCIe fabric routes @tlp_flags traffic between the buffer
+ * behind @attach and the importer attached to it, so that an importer can
+ * choose the TLP attributes that earn it a direct route before it programs
+ * its hardware.
+ *
+ * Return: the mapping type for @tlp_flags traffic, or PCI_P2PDMA_MAP_NONE
+ * when the exporter named no &struct p2pdma_provider and nothing is known
+ * about the route.
+ */
+enum pci_p2pdma_map_type
+dma_buf_p2pdma_map_type(struct dma_buf_attachment *attach,
+ unsigned int tlp_flags)
+{
+ if (!attach->dmabuf->provider)
+ return PCI_P2PDMA_MAP_NONE;
+
+ return pci_p2pdma_map_type_tlp(attach->dmabuf->provider, attach->dev,
+ tlp_flags);
+}
+EXPORT_SYMBOL_NS_GPL(dma_buf_p2pdma_map_type, "DMA_BUF");
+
static struct scatterlist *fill_sg_entry(struct scatterlist *sgl, size_t length,
dma_addr_t addr)
{
@@ -71,7 +97,6 @@ struct dma_buf_dma {
* from arrays of physical vectors. This funciton is intended for MMIO memory
* only.
* @attach: [in] attachment whose scatterlist is to be returned
- * @provider: [in] p2pdma provider
* @phys_vec: [in] array of physical vectors
* @nr_ranges: [in] number of entries in phys_vec array
* @size: [in] total size of phys_vec
@@ -85,16 +110,17 @@ struct dma_buf_dma {
*
* A mapping must be unmapped by using dma_buf_free_sgt().
*
- * NOTE: This function is intended for exporters. If direct traffic routing is
- * mandatory exporter should call routing pci_p2pdma_map_type() before calling
- * this function.
+ * NOTE: This function is intended for exporters, and works on MMIO memory
+ * only, so &dma_buf.provider must have been set at export time. If direct
+ * traffic routing is mandatory the exporter should call
+ * pci_p2pdma_map_type() before calling this function.
*/
struct sg_table *dma_buf_phys_vec_to_sgt(struct dma_buf_attachment *attach,
- struct p2pdma_provider *provider,
struct phys_vec *phys_vec,
size_t nr_ranges, size_t size,
enum dma_data_direction dir)
{
+ struct p2pdma_provider *provider;
unsigned int nents, mapped_len = 0;
struct dma_buf_dma *dma;
struct scatterlist *sgl;
@@ -104,10 +130,11 @@ struct sg_table *dma_buf_phys_vec_to_sgt(struct dma_buf_attachment *attach,
dma_resv_assert_held(attach->dmabuf->resv);
- if (WARN_ON(!attach || !attach->dmabuf || !provider))
- /* This function is supposed to work on MMIO memory only */
+ if (WARN_ON(!attach || !attach->dmabuf || !attach->dmabuf->provider))
return ERR_PTR(-EINVAL);
+ provider = attach->dmabuf->provider;
+
dma = kzalloc_obj(*dma);
if (!dma)
return ERR_PTR(-ENOMEM);
diff --git a/drivers/dma-buf/dma-buf.c b/drivers/dma-buf/dma-buf.c
index d504c636dc29..c2b9944e9659 100644
--- a/drivers/dma-buf/dma-buf.c
+++ b/drivers/dma-buf/dma-buf.c
@@ -747,6 +747,7 @@ struct dma_buf *dma_buf_export(const struct dma_buf_export_info *exp_info)
dmabuf->size = exp_info->size;
dmabuf->exp_name = exp_info->exp_name;
dmabuf->owner = exp_info->owner;
+ dmabuf->provider = exp_info->provider;
spin_lock_init(&dmabuf->name_lock);
init_waitqueue_head(&dmabuf->poll);
dmabuf->cb_in.poll = dmabuf->cb_out.poll = &dmabuf->poll;
diff --git a/drivers/infiniband/core/uverbs.h b/drivers/infiniband/core/uverbs.h
index c64dd6b94e10..fbdac18b69ca 100644
--- a/drivers/infiniband/core/uverbs.h
+++ b/drivers/infiniband/core/uverbs.h
@@ -139,7 +139,6 @@ struct ib_uverbs_dmabuf_file {
struct list_head dmabufs_elm;
struct rdma_user_mmap_entry *mmap_entry;
struct phys_vec phys_vec;
- struct p2pdma_provider *provider;
struct kref kref;
struct completion comp;
u8 revoked :1;
diff --git a/drivers/infiniband/core/uverbs_std_types_dmabuf.c b/drivers/infiniband/core/uverbs_std_types_dmabuf.c
index 2411ebee69e2..94d3719a34da 100644
--- a/drivers/infiniband/core/uverbs_std_types_dmabuf.c
+++ b/drivers/infiniband/core/uverbs_std_types_dmabuf.c
@@ -33,9 +33,8 @@ uverbs_dmabuf_map(struct dma_buf_attachment *attachment,
if (priv->revoked)
return ERR_PTR(-ENODEV);
- ret = dma_buf_phys_vec_to_sgt(attachment, priv->provider,
- &priv->phys_vec, 1, priv->phys_vec.len,
- dir);
+ ret = dma_buf_phys_vec_to_sgt(attachment, &priv->phys_vec, 1,
+ priv->phys_vec.len, dir);
if (IS_ERR(ret))
return ret;
@@ -108,7 +107,7 @@ static int UVERBS_HANDLER(UVERBS_METHOD_DMABUF_ALLOC)(
return -EINVAL;
ret = ib_dev->ops.mmap_get_pfns(mmap_entry, &uverbs_dmabuf->phys_vec,
- &uverbs_dmabuf->provider);
+ &exp_info.provider);
if (ret)
goto err;
diff --git a/drivers/vfio/pci/vfio_pci_dmabuf.c b/drivers/vfio/pci/vfio_pci_dmabuf.c
index c16f460c01d6..10f47992e7f5 100644
--- a/drivers/vfio/pci/vfio_pci_dmabuf.c
+++ b/drivers/vfio/pci/vfio_pci_dmabuf.c
@@ -15,7 +15,6 @@ struct vfio_pci_dma_buf {
struct list_head dmabufs_elm;
size_t size;
struct phys_vec *phys_vec;
- struct p2pdma_provider *provider;
u32 nr_ranges;
struct kref kref;
struct completion comp;
@@ -59,9 +58,8 @@ vfio_pci_dma_buf_map(struct dma_buf_attachment *attachment,
if (priv->revoked)
return ERR_PTR(-ENODEV);
- ret = dma_buf_phys_vec_to_sgt(attachment, priv->provider,
- priv->phys_vec, priv->nr_ranges,
- priv->size, dir);
+ ret = dma_buf_phys_vec_to_sgt(attachment, priv->phys_vec,
+ priv->nr_ranges, priv->size, dir);
if (IS_ERR(ret))
return ret;
@@ -274,7 +272,7 @@ int vfio_pci_core_feature_dma_buf(struct vfio_pci_core_device *vdev, u32 flags,
priv->vdev = vdev;
priv->nr_ranges = get_dma_buf.nr_ranges;
priv->size = length;
- ret = vdev->pci_ops->get_dmabuf_phys(vdev, &priv->provider,
+ ret = vdev->pci_ops->get_dmabuf_phys(vdev, &exp_info.provider,
get_dma_buf.region_index,
priv->phys_vec, dma_ranges,
priv->nr_ranges);
diff --git a/include/linux/dma-buf-mapping.h b/include/linux/dma-buf-mapping.h
index 09bde3f748e4..d63ac4d52aa5 100644
--- a/include/linux/dma-buf-mapping.h
+++ b/include/linux/dma-buf-mapping.h
@@ -7,8 +7,10 @@
#define __DMA_BUF_MAPPING_H__
#include <linux/dma-buf.h>
+enum pci_p2pdma_map_type
+dma_buf_p2pdma_map_type(struct dma_buf_attachment *attach,
+ unsigned int tlp_flags);
struct sg_table *dma_buf_phys_vec_to_sgt(struct dma_buf_attachment *attach,
- struct p2pdma_provider *provider,
struct phys_vec *phys_vec,
size_t nr_ranges, size_t size,
enum dma_data_direction dir);
diff --git a/include/linux/dma-buf.h b/include/linux/dma-buf.h
index d1203da56fc5..81c136fcee6e 100644
--- a/include/linux/dma-buf.h
+++ b/include/linux/dma-buf.h
@@ -368,6 +368,9 @@ struct dma_buf {
/** @priv: exporter specific private data for this buffer object. */
void *priv;
+ /** @provider: The peer-to-peer provider backing this buffer. */
+ struct p2pdma_provider *provider;
+
/**
* @resv:
*
@@ -501,6 +504,7 @@ struct dma_buf_attachment {
* @flags: mode flags for the file
* @resv: reservation-object, NULL to allocate default one
* @priv: Attach private data of allocator to this buffer
+ * @provider: Peer-to-peer provider backing the buffer
*
* This structure holds the information required to export the buffer. Used
* with dma_buf_export() only.
@@ -512,6 +516,7 @@ struct dma_buf_export_info {
size_t size;
int flags;
struct dma_resv *resv;
+ struct p2pdma_provider *provider;
void *priv;
};
--
2.55.0
^ permalink raw reply related [flat|nested] 21+ messages in thread
* [PATCH v5 18/18] RDMA/mlx5: Ask P2PDMA whether ATS takes a direct peer-to-peer route
2026-09-10 11:31 [PATCH v5 00/18] PCI/P2PDMA: Route peer-to-peer DMA by TLP class Leon Romanovsky
` (16 preceding siblings ...)
2026-09-10 11:32 ` [PATCH v5 17/18] dma-buf: Let importers ask how peer-to-peer traffic is routed Leon Romanovsky
@ 2026-09-10 11:32 ` Leon Romanovsky
17 siblings, 0 replies; 21+ messages in thread
From: Leon Romanovsky @ 2026-09-10 11:32 UTC (permalink / raw)
To: Bjorn Helgaas, Logan Gunthorpe, Chaitanya Kulkarni,
Greg Kroah-Hartman, Jens Axboe, Alex Williamson, Leon Romanovsky,
Ankit Agrawal, Jason Gunthorpe, Jonathan Corbet, Shuah Khan,
Joerg Roedel (AMD), Will Deacon, Robin Murphy, Randy Dunlap,
Sumit Semwal, Christian König
Cc: linux-pci, linux-kernel, linux-doc, iommu, Tushar Dave,
linux-media, dri-devel, linaro-mm-sig, linux-rdma, kvm
From: Leon Romanovsky <leonro@nvidia.com>
mlx5_umem_needs_ats() enables ATS for any dma-buf whose caller asked for
Relaxed Ordering, on the assumption that a switch in the path has CR, RR
and DT all set. It also enables it for a buffer already mapped with the
peer's bus addresses, which are not translatable at all.
P2PDMA has read the ACS controls, so ask it through
dma_buf_p2pdma_map_type(): enable ATS only where the path is not routed
directly as it stands, but would be for a Translated Request whose
Completions carry Relaxed Ordering. Exporters that name no provider keep
the old assumption, since their ACS settings remain hidden.
Signed-off-by: Leon Romanovsky <leonro@nvidia.com>
---
drivers/infiniband/hw/mlx5/mlx5_ib.h | 36 ++------------------------------
drivers/infiniband/hw/mlx5/mr.c | 40 ++++++++++++++++++++++++++++++++++++
2 files changed, 42 insertions(+), 34 deletions(-)
diff --git a/drivers/infiniband/hw/mlx5/mlx5_ib.h b/drivers/infiniband/hw/mlx5/mlx5_ib.h
index e9ddf2e97a76..ab32742b2180 100644
--- a/drivers/infiniband/hw/mlx5/mlx5_ib.h
+++ b/drivers/infiniband/hw/mlx5/mlx5_ib.h
@@ -1646,40 +1646,8 @@ static inline bool rt_supported(int ts_cap)
ts_cap == MLX5_TIMESTAMP_FORMAT_CAP_FREE_RUNNING_AND_REAL_TIME;
}
-/*
- * PCI Peer to Peer is a trainwreck. If no switch is present then things
- * sometimes work, depending on the pci_distance_p2p logic for excluding broken
- * root complexes. However if a switch is present in the path, then things get
- * really ugly depending on how the switch is setup. This table assumes that the
- * root complex is strict and is validating that all req/reps are matches
- * perfectly - so any scenario where it sees only half the transaction is a
- * failure.
- *
- * CR/RR/DT ATS RO P2P
- * 00X X X OK
- * 010 X X fails (request is routed to root but root never sees comp)
- * 011 0 X fails (request is routed to root but root never sees comp)
- * 011 1 X OK
- * 10X X 1 OK
- * 101 X 0 fails (completion is routed to root but root didn't see req)
- * 110 X 0 SLOW
- * 111 0 0 SLOW
- * 111 1 0 fails (completion is routed to root but root didn't see req)
- * 111 1 1 OK
- *
- * Unfortunately we cannot reliably know if a switch is present or what the
- * CR/RR/DT ACS settings are, as in a VM that is all hidden. Assume that
- * CR/RR/DT is 111 if the ATS cap is enabled and follow the last three rows.
- *
- * For now assume if the umem is a dma_buf then it is P2P.
- */
-static inline bool mlx5_umem_needs_ats(struct mlx5_ib_dev *dev,
- struct ib_umem *umem, int access_flags)
-{
- if (!MLX5_CAP_GEN(dev->mdev, ats) || !umem->is_dmabuf)
- return false;
- return access_flags & IB_ACCESS_RELAXED_ORDERING;
-}
+bool mlx5_umem_needs_ats(struct mlx5_ib_dev *dev, struct ib_umem *umem,
+ int access_flags);
int set_roce_addr(struct mlx5_ib_dev *dev, u32 port_num,
unsigned int index, const union ib_gid *gid,
diff --git a/drivers/infiniband/hw/mlx5/mr.c b/drivers/infiniband/hw/mlx5/mr.c
index 00e13028762a..286f372e5b0c 100644
--- a/drivers/infiniband/hw/mlx5/mr.c
+++ b/drivers/infiniband/hw/mlx5/mr.c
@@ -38,6 +38,7 @@
#include <linux/export.h>
#include <linux/delay.h>
#include <linux/dma-buf.h>
+#include <linux/dma-buf-mapping.h>
#include <linux/dma-resv.h>
#include <rdma/frmr_pools.h>
#include <rdma/ib_umem_odp.h>
@@ -47,6 +48,45 @@
#include "data_direct.h"
#include "dmah.h"
+MODULE_IMPORT_NS("DMA_BUF");
+
+bool mlx5_umem_needs_ats(struct mlx5_ib_dev *dev, struct ib_umem *umem,
+ int access_flags)
+{
+ struct dma_buf_attachment *attach;
+
+ if (!MLX5_CAP_GEN(dev->mdev, ats) || !umem->is_dmabuf)
+ return false;
+
+ /*
+ * The Completer decides whether its Completions carry Relaxed
+ * Ordering, and only a Request that asked for it can expect them to.
+ */
+ if (!(access_flags & IB_ACCESS_RELAXED_ORDERING))
+ return false;
+
+ attach = to_ib_umem_dmabuf(umem)->attach;
+ switch (dma_buf_p2pdma_map_type(attach, 0)) {
+ case PCI_P2PDMA_MAP_NONE:
+ /* Nothing is known about the route, so fall back to the bet. */
+ return true;
+ case PCI_P2PDMA_MAP_BUS_ADDR:
+ /*
+ * The path is routed directly already and is programmed with
+ * the peer's bus addresses. Those are not translatable, so
+ * ATS would be wrong as well as pointless.
+ */
+ return false;
+ default:
+ break;
+ }
+
+ return dma_buf_p2pdma_map_type(attach,
+ PCI_P2PDMA_TLP_TRANSLATED |
+ PCI_P2PDMA_TLP_RELAXED_CPL) ==
+ PCI_P2PDMA_MAP_BUS_ADDR;
+}
+
static int mkey_max_umr_order(struct mlx5_ib_dev *dev)
{
if (MLX5_CAP_GEN(dev->mdev, umr_extended_translation_offset))
--
2.55.0
^ permalink raw reply related [flat|nested] 21+ messages in thread
* Re: [PATCH v5 17/18] dma-buf: Let importers ask how peer-to-peer traffic is routed
2026-09-10 11:32 ` [PATCH v5 17/18] dma-buf: Let importers ask how peer-to-peer traffic is routed Leon Romanovsky
@ 2026-09-11 7:51 ` Christian König
2026-09-11 10:24 ` Leon Romanovsky
0 siblings, 1 reply; 21+ messages in thread
From: Christian König @ 2026-09-11 7:51 UTC (permalink / raw)
To: Leon Romanovsky, Bjorn Helgaas, Logan Gunthorpe,
Chaitanya Kulkarni, Greg Kroah-Hartman, Jens Axboe,
Alex Williamson, Ankit Agrawal, Jason Gunthorpe, Jonathan Corbet,
Shuah Khan, Joerg Roedel (AMD), Will Deacon, Robin Murphy,
Randy Dunlap, Sumit Semwal
Cc: linux-pci, linux-kernel, linux-doc, iommu, Tushar Dave,
linux-media, dri-devel, linaro-mm-sig, linux-rdma, kvm
On 9/10/26 13:32, Leon Romanovsky wrote:
> From: Leon Romanovsky <leonro@nvidia.com>
>
> Exporters keep the &struct p2pdma_provider in their own private data and
> hand it to dma_buf_phys_vec_to_sgt() on every map. An importer cannot reach
> it, so it has no way to learn how its own peer-to-peer traffic would be
> routed before it programs its hardware.
Why should that be interesting to importers?
In general importers should just consome the data provided by a DMA-buf and don't participate in any way in the decision how that data is made available.
> Publish the provider through &struct dma_buf_export_info instead,
That is a very bad idea and not even remotely acceptable.
This needs to be a callback instead if that should really fly.
Regards,
Christian.
> and add
> dma_buf_p2pdma_map_type() for importers to query it by TLP class. It is
> fixed at export time, so dma_buf_phys_vec_to_sgt() no longer needs it as an
> argument and the two exporters no longer need a copy of it.
>
> Signed-off-by: Leon Romanovsky <leonro@nvidia.com>
> ---
> drivers/dma-buf/dma-buf-mapping.c | 41 +++++++++++++++++++----
> drivers/dma-buf/dma-buf.c | 1 +
> drivers/infiniband/core/uverbs.h | 1 -
> drivers/infiniband/core/uverbs_std_types_dmabuf.c | 7 ++--
> drivers/vfio/pci/vfio_pci_dmabuf.c | 8 ++---
> include/linux/dma-buf-mapping.h | 4 ++-
> include/linux/dma-buf.h | 5 +++
> 7 files changed, 49 insertions(+), 18 deletions(-)
>
> diff --git a/drivers/dma-buf/dma-buf-mapping.c b/drivers/dma-buf/dma-buf-mapping.c
> index 794acff2546a..8b431000e906 100644
> --- a/drivers/dma-buf/dma-buf-mapping.c
> +++ b/drivers/dma-buf/dma-buf-mapping.c
> @@ -6,6 +6,32 @@
> #include <linux/dma-buf-mapping.h>
> #include <linux/dma-resv.h>
>
> +/**
> + * dma_buf_p2pdma_map_type - How peer-to-peer traffic to a buffer is routed
> + * @attach: attachment of the importer that will issue the traffic
> + * @tlp_flags: &enum pci_p2pdma_tlp_flags describing the TLPs it will issue
> + *
> + * Reports how the PCIe fabric routes @tlp_flags traffic between the buffer
> + * behind @attach and the importer attached to it, so that an importer can
> + * choose the TLP attributes that earn it a direct route before it programs
> + * its hardware.
> + *
> + * Return: the mapping type for @tlp_flags traffic, or PCI_P2PDMA_MAP_NONE
> + * when the exporter named no &struct p2pdma_provider and nothing is known
> + * about the route.
> + */
> +enum pci_p2pdma_map_type
> +dma_buf_p2pdma_map_type(struct dma_buf_attachment *attach,
> + unsigned int tlp_flags)
> +{
> + if (!attach->dmabuf->provider)
> + return PCI_P2PDMA_MAP_NONE;
> +
> + return pci_p2pdma_map_type_tlp(attach->dmabuf->provider, attach->dev,
> + tlp_flags);
> +}
> +EXPORT_SYMBOL_NS_GPL(dma_buf_p2pdma_map_type, "DMA_BUF");
> +
> static struct scatterlist *fill_sg_entry(struct scatterlist *sgl, size_t length,
> dma_addr_t addr)
> {
> @@ -71,7 +97,6 @@ struct dma_buf_dma {
> * from arrays of physical vectors. This funciton is intended for MMIO memory
> * only.
> * @attach: [in] attachment whose scatterlist is to be returned
> - * @provider: [in] p2pdma provider
> * @phys_vec: [in] array of physical vectors
> * @nr_ranges: [in] number of entries in phys_vec array
> * @size: [in] total size of phys_vec
> @@ -85,16 +110,17 @@ struct dma_buf_dma {
> *
> * A mapping must be unmapped by using dma_buf_free_sgt().
> *
> - * NOTE: This function is intended for exporters. If direct traffic routing is
> - * mandatory exporter should call routing pci_p2pdma_map_type() before calling
> - * this function.
> + * NOTE: This function is intended for exporters, and works on MMIO memory
> + * only, so &dma_buf.provider must have been set at export time. If direct
> + * traffic routing is mandatory the exporter should call
> + * pci_p2pdma_map_type() before calling this function.
> */
> struct sg_table *dma_buf_phys_vec_to_sgt(struct dma_buf_attachment *attach,
> - struct p2pdma_provider *provider,
> struct phys_vec *phys_vec,
> size_t nr_ranges, size_t size,
> enum dma_data_direction dir)
> {
> + struct p2pdma_provider *provider;
> unsigned int nents, mapped_len = 0;
> struct dma_buf_dma *dma;
> struct scatterlist *sgl;
> @@ -104,10 +130,11 @@ struct sg_table *dma_buf_phys_vec_to_sgt(struct dma_buf_attachment *attach,
>
> dma_resv_assert_held(attach->dmabuf->resv);
>
> - if (WARN_ON(!attach || !attach->dmabuf || !provider))
> - /* This function is supposed to work on MMIO memory only */
> + if (WARN_ON(!attach || !attach->dmabuf || !attach->dmabuf->provider))
> return ERR_PTR(-EINVAL);
>
> + provider = attach->dmabuf->provider;
> +
> dma = kzalloc_obj(*dma);
> if (!dma)
> return ERR_PTR(-ENOMEM);
> diff --git a/drivers/dma-buf/dma-buf.c b/drivers/dma-buf/dma-buf.c
> index d504c636dc29..c2b9944e9659 100644
> --- a/drivers/dma-buf/dma-buf.c
> +++ b/drivers/dma-buf/dma-buf.c
> @@ -747,6 +747,7 @@ struct dma_buf *dma_buf_export(const struct dma_buf_export_info *exp_info)
> dmabuf->size = exp_info->size;
> dmabuf->exp_name = exp_info->exp_name;
> dmabuf->owner = exp_info->owner;
> + dmabuf->provider = exp_info->provider;
> spin_lock_init(&dmabuf->name_lock);
> init_waitqueue_head(&dmabuf->poll);
> dmabuf->cb_in.poll = dmabuf->cb_out.poll = &dmabuf->poll;
> diff --git a/drivers/infiniband/core/uverbs.h b/drivers/infiniband/core/uverbs.h
> index c64dd6b94e10..fbdac18b69ca 100644
> --- a/drivers/infiniband/core/uverbs.h
> +++ b/drivers/infiniband/core/uverbs.h
> @@ -139,7 +139,6 @@ struct ib_uverbs_dmabuf_file {
> struct list_head dmabufs_elm;
> struct rdma_user_mmap_entry *mmap_entry;
> struct phys_vec phys_vec;
> - struct p2pdma_provider *provider;
> struct kref kref;
> struct completion comp;
> u8 revoked :1;
> diff --git a/drivers/infiniband/core/uverbs_std_types_dmabuf.c b/drivers/infiniband/core/uverbs_std_types_dmabuf.c
> index 2411ebee69e2..94d3719a34da 100644
> --- a/drivers/infiniband/core/uverbs_std_types_dmabuf.c
> +++ b/drivers/infiniband/core/uverbs_std_types_dmabuf.c
> @@ -33,9 +33,8 @@ uverbs_dmabuf_map(struct dma_buf_attachment *attachment,
> if (priv->revoked)
> return ERR_PTR(-ENODEV);
>
> - ret = dma_buf_phys_vec_to_sgt(attachment, priv->provider,
> - &priv->phys_vec, 1, priv->phys_vec.len,
> - dir);
> + ret = dma_buf_phys_vec_to_sgt(attachment, &priv->phys_vec, 1,
> + priv->phys_vec.len, dir);
> if (IS_ERR(ret))
> return ret;
>
> @@ -108,7 +107,7 @@ static int UVERBS_HANDLER(UVERBS_METHOD_DMABUF_ALLOC)(
> return -EINVAL;
>
> ret = ib_dev->ops.mmap_get_pfns(mmap_entry, &uverbs_dmabuf->phys_vec,
> - &uverbs_dmabuf->provider);
> + &exp_info.provider);
> if (ret)
> goto err;
>
> diff --git a/drivers/vfio/pci/vfio_pci_dmabuf.c b/drivers/vfio/pci/vfio_pci_dmabuf.c
> index c16f460c01d6..10f47992e7f5 100644
> --- a/drivers/vfio/pci/vfio_pci_dmabuf.c
> +++ b/drivers/vfio/pci/vfio_pci_dmabuf.c
> @@ -15,7 +15,6 @@ struct vfio_pci_dma_buf {
> struct list_head dmabufs_elm;
> size_t size;
> struct phys_vec *phys_vec;
> - struct p2pdma_provider *provider;
> u32 nr_ranges;
> struct kref kref;
> struct completion comp;
> @@ -59,9 +58,8 @@ vfio_pci_dma_buf_map(struct dma_buf_attachment *attachment,
> if (priv->revoked)
> return ERR_PTR(-ENODEV);
>
> - ret = dma_buf_phys_vec_to_sgt(attachment, priv->provider,
> - priv->phys_vec, priv->nr_ranges,
> - priv->size, dir);
> + ret = dma_buf_phys_vec_to_sgt(attachment, priv->phys_vec,
> + priv->nr_ranges, priv->size, dir);
> if (IS_ERR(ret))
> return ret;
>
> @@ -274,7 +272,7 @@ int vfio_pci_core_feature_dma_buf(struct vfio_pci_core_device *vdev, u32 flags,
> priv->vdev = vdev;
> priv->nr_ranges = get_dma_buf.nr_ranges;
> priv->size = length;
> - ret = vdev->pci_ops->get_dmabuf_phys(vdev, &priv->provider,
> + ret = vdev->pci_ops->get_dmabuf_phys(vdev, &exp_info.provider,
> get_dma_buf.region_index,
> priv->phys_vec, dma_ranges,
> priv->nr_ranges);
> diff --git a/include/linux/dma-buf-mapping.h b/include/linux/dma-buf-mapping.h
> index 09bde3f748e4..d63ac4d52aa5 100644
> --- a/include/linux/dma-buf-mapping.h
> +++ b/include/linux/dma-buf-mapping.h
> @@ -7,8 +7,10 @@
> #define __DMA_BUF_MAPPING_H__
> #include <linux/dma-buf.h>
>
> +enum pci_p2pdma_map_type
> +dma_buf_p2pdma_map_type(struct dma_buf_attachment *attach,
> + unsigned int tlp_flags);
> struct sg_table *dma_buf_phys_vec_to_sgt(struct dma_buf_attachment *attach,
> - struct p2pdma_provider *provider,
> struct phys_vec *phys_vec,
> size_t nr_ranges, size_t size,
> enum dma_data_direction dir);
> diff --git a/include/linux/dma-buf.h b/include/linux/dma-buf.h
> index d1203da56fc5..81c136fcee6e 100644
> --- a/include/linux/dma-buf.h
> +++ b/include/linux/dma-buf.h
> @@ -368,6 +368,9 @@ struct dma_buf {
> /** @priv: exporter specific private data for this buffer object. */
> void *priv;
>
> + /** @provider: The peer-to-peer provider backing this buffer. */
> + struct p2pdma_provider *provider;
> +
> /**
> * @resv:
> *
> @@ -501,6 +504,7 @@ struct dma_buf_attachment {
> * @flags: mode flags for the file
> * @resv: reservation-object, NULL to allocate default one
> * @priv: Attach private data of allocator to this buffer
> + * @provider: Peer-to-peer provider backing the buffer
> *
> * This structure holds the information required to export the buffer. Used
> * with dma_buf_export() only.
> @@ -512,6 +516,7 @@ struct dma_buf_export_info {
> size_t size;
> int flags;
> struct dma_resv *resv;
> + struct p2pdma_provider *provider;
> void *priv;
> };
>
>
^ permalink raw reply [flat|nested] 21+ messages in thread
* Re: [PATCH v5 17/18] dma-buf: Let importers ask how peer-to-peer traffic is routed
2026-09-11 7:51 ` Christian König
@ 2026-09-11 10:24 ` Leon Romanovsky
0 siblings, 0 replies; 21+ messages in thread
From: Leon Romanovsky @ 2026-09-11 10:24 UTC (permalink / raw)
To: Christian König
Cc: Bjorn Helgaas, Logan Gunthorpe, Chaitanya Kulkarni,
Greg Kroah-Hartman, Jens Axboe, Alex Williamson, Ankit Agrawal,
Jason Gunthorpe, Jonathan Corbet, Shuah Khan, Joerg Roedel (AMD),
Will Deacon, Robin Murphy, Randy Dunlap, Sumit Semwal, linux-pci,
linux-kernel, linux-doc, iommu, Tushar Dave, linux-media,
dri-devel, linaro-mm-sig, linux-rdma, kvm
On Fri, Sep 11, 2026 at 09:51:48AM +0200, Christian König wrote:
> On 9/10/26 13:32, Leon Romanovsky wrote:
> > From: Leon Romanovsky <leonro@nvidia.com>
> >
> > Exporters keep the &struct p2pdma_provider in their own private data and
> > hand it to dma_buf_phys_vec_to_sgt() on every map. An importer cannot reach
> > it, so it has no way to learn how its own peer-to-peer traffic would be
> > routed before it programs its hardware.
>
> Why should that be interesting to importers?
>
> In general importers should just consome the data provided by a DMA-buf and don't participate in any way in the decision how that data is made available.
The importer does not control how traffic flows, but it needs to know how
to configure itself for optimal performance. In the mlx5 case, it needs to
enable or disable ATS depending on the location of the exporter's device.
Think of this as a hint propagated from the exporter to the importer.
Take a look at patch #18 and the old comment above mlx5_umem_needs_ats().
It explains when enabling ATS is beneficial and when it may hurt
performance.
>
> > Publish the provider through &struct dma_buf_export_info instead,
>
> That is a very bad idea and not even remotely acceptable.
>
> This needs to be a callback instead if that should really fly.
The provider is a stable pointer that never changes during the dma-buf
lifetime, so it seemed natural to store it as-is. However, I can certainly
change this to use a callback instead.
Thanks
>
> Regards,
> Christian.
>
> > and add
> > dma_buf_p2pdma_map_type() for importers to query it by TLP class. It is
> > fixed at export time, so dma_buf_phys_vec_to_sgt() no longer needs it as an
> > argument and the two exporters no longer need a copy of it.
> >
> > Signed-off-by: Leon Romanovsky <leonro@nvidia.com>
> > ---
> > drivers/dma-buf/dma-buf-mapping.c | 41 +++++++++++++++++++----
> > drivers/dma-buf/dma-buf.c | 1 +
> > drivers/infiniband/core/uverbs.h | 1 -
> > drivers/infiniband/core/uverbs_std_types_dmabuf.c | 7 ++--
> > drivers/vfio/pci/vfio_pci_dmabuf.c | 8 ++---
> > include/linux/dma-buf-mapping.h | 4 ++-
> > include/linux/dma-buf.h | 5 +++
> > 7 files changed, 49 insertions(+), 18 deletions(-)
> >
> > diff --git a/drivers/dma-buf/dma-buf-mapping.c b/drivers/dma-buf/dma-buf-mapping.c
> > index 794acff2546a..8b431000e906 100644
> > --- a/drivers/dma-buf/dma-buf-mapping.c
> > +++ b/drivers/dma-buf/dma-buf-mapping.c
> > @@ -6,6 +6,32 @@
> > #include <linux/dma-buf-mapping.h>
> > #include <linux/dma-resv.h>
> >
> > +/**
> > + * dma_buf_p2pdma_map_type - How peer-to-peer traffic to a buffer is routed
> > + * @attach: attachment of the importer that will issue the traffic
> > + * @tlp_flags: &enum pci_p2pdma_tlp_flags describing the TLPs it will issue
> > + *
> > + * Reports how the PCIe fabric routes @tlp_flags traffic between the buffer
> > + * behind @attach and the importer attached to it, so that an importer can
> > + * choose the TLP attributes that earn it a direct route before it programs
> > + * its hardware.
> > + *
> > + * Return: the mapping type for @tlp_flags traffic, or PCI_P2PDMA_MAP_NONE
> > + * when the exporter named no &struct p2pdma_provider and nothing is known
> > + * about the route.
> > + */
> > +enum pci_p2pdma_map_type
> > +dma_buf_p2pdma_map_type(struct dma_buf_attachment *attach,
> > + unsigned int tlp_flags)
> > +{
> > + if (!attach->dmabuf->provider)
> > + return PCI_P2PDMA_MAP_NONE;
> > +
> > + return pci_p2pdma_map_type_tlp(attach->dmabuf->provider, attach->dev,
> > + tlp_flags);
> > +}
> > +EXPORT_SYMBOL_NS_GPL(dma_buf_p2pdma_map_type, "DMA_BUF");
> > +
> > static struct scatterlist *fill_sg_entry(struct scatterlist *sgl, size_t length,
> > dma_addr_t addr)
> > {
> > @@ -71,7 +97,6 @@ struct dma_buf_dma {
> > * from arrays of physical vectors. This funciton is intended for MMIO memory
> > * only.
> > * @attach: [in] attachment whose scatterlist is to be returned
> > - * @provider: [in] p2pdma provider
> > * @phys_vec: [in] array of physical vectors
> > * @nr_ranges: [in] number of entries in phys_vec array
> > * @size: [in] total size of phys_vec
> > @@ -85,16 +110,17 @@ struct dma_buf_dma {
> > *
> > * A mapping must be unmapped by using dma_buf_free_sgt().
> > *
> > - * NOTE: This function is intended for exporters. If direct traffic routing is
> > - * mandatory exporter should call routing pci_p2pdma_map_type() before calling
> > - * this function.
> > + * NOTE: This function is intended for exporters, and works on MMIO memory
> > + * only, so &dma_buf.provider must have been set at export time. If direct
> > + * traffic routing is mandatory the exporter should call
> > + * pci_p2pdma_map_type() before calling this function.
> > */
> > struct sg_table *dma_buf_phys_vec_to_sgt(struct dma_buf_attachment *attach,
> > - struct p2pdma_provider *provider,
> > struct phys_vec *phys_vec,
> > size_t nr_ranges, size_t size,
> > enum dma_data_direction dir)
> > {
> > + struct p2pdma_provider *provider;
> > unsigned int nents, mapped_len = 0;
> > struct dma_buf_dma *dma;
> > struct scatterlist *sgl;
> > @@ -104,10 +130,11 @@ struct sg_table *dma_buf_phys_vec_to_sgt(struct dma_buf_attachment *attach,
> >
> > dma_resv_assert_held(attach->dmabuf->resv);
> >
> > - if (WARN_ON(!attach || !attach->dmabuf || !provider))
> > - /* This function is supposed to work on MMIO memory only */
> > + if (WARN_ON(!attach || !attach->dmabuf || !attach->dmabuf->provider))
> > return ERR_PTR(-EINVAL);
> >
> > + provider = attach->dmabuf->provider;
> > +
> > dma = kzalloc_obj(*dma);
> > if (!dma)
> > return ERR_PTR(-ENOMEM);
> > diff --git a/drivers/dma-buf/dma-buf.c b/drivers/dma-buf/dma-buf.c
> > index d504c636dc29..c2b9944e9659 100644
> > --- a/drivers/dma-buf/dma-buf.c
> > +++ b/drivers/dma-buf/dma-buf.c
> > @@ -747,6 +747,7 @@ struct dma_buf *dma_buf_export(const struct dma_buf_export_info *exp_info)
> > dmabuf->size = exp_info->size;
> > dmabuf->exp_name = exp_info->exp_name;
> > dmabuf->owner = exp_info->owner;
> > + dmabuf->provider = exp_info->provider;
> > spin_lock_init(&dmabuf->name_lock);
> > init_waitqueue_head(&dmabuf->poll);
> > dmabuf->cb_in.poll = dmabuf->cb_out.poll = &dmabuf->poll;
> > diff --git a/drivers/infiniband/core/uverbs.h b/drivers/infiniband/core/uverbs.h
> > index c64dd6b94e10..fbdac18b69ca 100644
> > --- a/drivers/infiniband/core/uverbs.h
> > +++ b/drivers/infiniband/core/uverbs.h
> > @@ -139,7 +139,6 @@ struct ib_uverbs_dmabuf_file {
> > struct list_head dmabufs_elm;
> > struct rdma_user_mmap_entry *mmap_entry;
> > struct phys_vec phys_vec;
> > - struct p2pdma_provider *provider;
> > struct kref kref;
> > struct completion comp;
> > u8 revoked :1;
> > diff --git a/drivers/infiniband/core/uverbs_std_types_dmabuf.c b/drivers/infiniband/core/uverbs_std_types_dmabuf.c
> > index 2411ebee69e2..94d3719a34da 100644
> > --- a/drivers/infiniband/core/uverbs_std_types_dmabuf.c
> > +++ b/drivers/infiniband/core/uverbs_std_types_dmabuf.c
> > @@ -33,9 +33,8 @@ uverbs_dmabuf_map(struct dma_buf_attachment *attachment,
> > if (priv->revoked)
> > return ERR_PTR(-ENODEV);
> >
> > - ret = dma_buf_phys_vec_to_sgt(attachment, priv->provider,
> > - &priv->phys_vec, 1, priv->phys_vec.len,
> > - dir);
> > + ret = dma_buf_phys_vec_to_sgt(attachment, &priv->phys_vec, 1,
> > + priv->phys_vec.len, dir);
> > if (IS_ERR(ret))
> > return ret;
> >
> > @@ -108,7 +107,7 @@ static int UVERBS_HANDLER(UVERBS_METHOD_DMABUF_ALLOC)(
> > return -EINVAL;
> >
> > ret = ib_dev->ops.mmap_get_pfns(mmap_entry, &uverbs_dmabuf->phys_vec,
> > - &uverbs_dmabuf->provider);
> > + &exp_info.provider);
> > if (ret)
> > goto err;
> >
> > diff --git a/drivers/vfio/pci/vfio_pci_dmabuf.c b/drivers/vfio/pci/vfio_pci_dmabuf.c
> > index c16f460c01d6..10f47992e7f5 100644
> > --- a/drivers/vfio/pci/vfio_pci_dmabuf.c
> > +++ b/drivers/vfio/pci/vfio_pci_dmabuf.c
> > @@ -15,7 +15,6 @@ struct vfio_pci_dma_buf {
> > struct list_head dmabufs_elm;
> > size_t size;
> > struct phys_vec *phys_vec;
> > - struct p2pdma_provider *provider;
> > u32 nr_ranges;
> > struct kref kref;
> > struct completion comp;
> > @@ -59,9 +58,8 @@ vfio_pci_dma_buf_map(struct dma_buf_attachment *attachment,
> > if (priv->revoked)
> > return ERR_PTR(-ENODEV);
> >
> > - ret = dma_buf_phys_vec_to_sgt(attachment, priv->provider,
> > - priv->phys_vec, priv->nr_ranges,
> > - priv->size, dir);
> > + ret = dma_buf_phys_vec_to_sgt(attachment, priv->phys_vec,
> > + priv->nr_ranges, priv->size, dir);
> > if (IS_ERR(ret))
> > return ret;
> >
> > @@ -274,7 +272,7 @@ int vfio_pci_core_feature_dma_buf(struct vfio_pci_core_device *vdev, u32 flags,
> > priv->vdev = vdev;
> > priv->nr_ranges = get_dma_buf.nr_ranges;
> > priv->size = length;
> > - ret = vdev->pci_ops->get_dmabuf_phys(vdev, &priv->provider,
> > + ret = vdev->pci_ops->get_dmabuf_phys(vdev, &exp_info.provider,
> > get_dma_buf.region_index,
> > priv->phys_vec, dma_ranges,
> > priv->nr_ranges);
> > diff --git a/include/linux/dma-buf-mapping.h b/include/linux/dma-buf-mapping.h
> > index 09bde3f748e4..d63ac4d52aa5 100644
> > --- a/include/linux/dma-buf-mapping.h
> > +++ b/include/linux/dma-buf-mapping.h
> > @@ -7,8 +7,10 @@
> > #define __DMA_BUF_MAPPING_H__
> > #include <linux/dma-buf.h>
> >
> > +enum pci_p2pdma_map_type
> > +dma_buf_p2pdma_map_type(struct dma_buf_attachment *attach,
> > + unsigned int tlp_flags);
> > struct sg_table *dma_buf_phys_vec_to_sgt(struct dma_buf_attachment *attach,
> > - struct p2pdma_provider *provider,
> > struct phys_vec *phys_vec,
> > size_t nr_ranges, size_t size,
> > enum dma_data_direction dir);
> > diff --git a/include/linux/dma-buf.h b/include/linux/dma-buf.h
> > index d1203da56fc5..81c136fcee6e 100644
> > --- a/include/linux/dma-buf.h
> > +++ b/include/linux/dma-buf.h
> > @@ -368,6 +368,9 @@ struct dma_buf {
> > /** @priv: exporter specific private data for this buffer object. */
> > void *priv;
> >
> > + /** @provider: The peer-to-peer provider backing this buffer. */
> > + struct p2pdma_provider *provider;
> > +
> > /**
> > * @resv:
> > *
> > @@ -501,6 +504,7 @@ struct dma_buf_attachment {
> > * @flags: mode flags for the file
> > * @resv: reservation-object, NULL to allocate default one
> > * @priv: Attach private data of allocator to this buffer
> > + * @provider: Peer-to-peer provider backing the buffer
> > *
> > * This structure holds the information required to export the buffer. Used
> > * with dma_buf_export() only.
> > @@ -512,6 +516,7 @@ struct dma_buf_export_info {
> > size_t size;
> > int flags;
> > struct dma_resv *resv;
> > + struct p2pdma_provider *provider;
> > void *priv;
> > };
> >
> >
>
^ permalink raw reply [flat|nested] 21+ messages in thread
end of thread, other threads:[~2026-09-11 10:24 UTC | newest]
Thread overview: 21+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-09-10 11:31 [PATCH v5 00/18] PCI/P2PDMA: Route peer-to-peer DMA by TLP class Leon Romanovsky
2026-09-10 11:31 ` [PATCH v5 01/18] PCI/P2PDMA: Document pdev->p2pdma lifetime rules Leon Romanovsky
2026-09-10 11:31 ` [PATCH v5 02/18] PCI/P2PDMA: Document the TLP attribute assumptions Leon Romanovsky
2026-09-10 11:31 ` [PATCH v5 03/18] PCI/P2PDMA: Derive routing from directional ACS controls Leon Romanovsky
2026-09-10 11:31 ` [PATCH v5 04/18] PCI: Reject unreadable ACS controls in isolation checks Leon Romanovsky
2026-09-10 11:32 ` [PATCH v5 05/18] PCI/P2PDMA: Evaluate ACS controls at the path divergence Leon Romanovsky
2026-09-10 11:32 ` [PATCH v5 06/18] PCI/P2PDMA: Document directional ACS routing Leon Romanovsky
2026-09-10 11:32 ` [PATCH v5 07/18] PCI/P2PDMA: Collect the path's ACS controls before deciding Leon Romanovsky
2026-09-10 11:32 ` [PATCH v5 08/18] PCI/P2PDMA: Answer routing per TLP class Leon Romanovsky
2026-09-10 11:32 ` [PATCH v5 09/18] PCI/P2PDMA: Route Relaxed Ordering Completions directly Leon Romanovsky
2026-09-10 11:32 ` [PATCH v5 10/18] PCI/P2PDMA: Reject Translated Requests blocked by Translation Blocking Leon Romanovsky
2026-09-10 11:32 ` [PATCH v5 11/18] PCI/P2PDMA: Route Translated Requests under Direct Translated P2P Leon Romanovsky
2026-09-10 11:32 ` [PATCH v5 12/18] PCI/P2PDMA: Log detailed ACS routing diagnostics Leon Romanovsky
2026-09-10 11:32 ` [PATCH v5 13/18] PCI/P2PDMA: Add KUnit tests for the ACS routing decisions Leon Romanovsky
2026-09-10 11:32 ` [PATCH v5 14/18] PCI/P2PDMA: Test the ACS P2P routing walk Leon Romanovsky
2026-09-10 11:32 ` [PATCH v5 15/18] PCI: Add KUnit coverage for ACS isolation checks Leon Romanovsky
2026-09-10 11:32 ` [PATCH v5 16/18] PCI/P2PDMA: Document TLP-class routing Leon Romanovsky
2026-09-10 11:32 ` [PATCH v5 17/18] dma-buf: Let importers ask how peer-to-peer traffic is routed Leon Romanovsky
2026-09-11 7:51 ` Christian König
2026-09-11 10:24 ` Leon Romanovsky
2026-09-10 11:32 ` [PATCH v5 18/18] RDMA/mlx5: Ask P2PDMA whether ATS takes a direct peer-to-peer route Leon Romanovsky
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox