drivers/accel/amdxdna/Makefile | 1 + drivers/accel/amdxdna/aie2_ctx.c | 6 +- drivers/accel/amdxdna/aie2_error.c | 5 +- drivers/accel/amdxdna/aie2_message.c | 30 +++- drivers/accel/amdxdna/aie2_pci.h | 5 +- drivers/accel/amdxdna/amdxdna_gem.c | 44 +++++- drivers/accel/amdxdna/amdxdna_gem.h | 11 ++ drivers/accel/amdxdna/amdxdna_iommu.c | 183 ++++++++++++++++++++++++ drivers/accel/amdxdna/amdxdna_pci_drv.c | 47 +++--- drivers/accel/amdxdna/amdxdna_pci_drv.h | 24 ++++ 10 files changed, 324 insertions(+), 32 deletions(-) create mode 100644 drivers/accel/amdxdna/amdxdna_iommu.c
The amdxdna driver normally performs DMA using userspace virtual address
plus PASID. For debugging and validation purposes, add a module parameter,
force_iova, to force DMA to go through IOMMU IOVA mapping.
When force_iova=1 is set, the driver will allocate and map DMA buffers
using IOVA.
Signed-off-by: Lizhi Hou <lizhi.hou@amd.com>
---
drivers/accel/amdxdna/Makefile | 1 +
drivers/accel/amdxdna/aie2_ctx.c | 6 +-
drivers/accel/amdxdna/aie2_error.c | 5 +-
drivers/accel/amdxdna/aie2_message.c | 30 +++-
drivers/accel/amdxdna/aie2_pci.h | 5 +-
drivers/accel/amdxdna/amdxdna_gem.c | 44 +++++-
drivers/accel/amdxdna/amdxdna_gem.h | 11 ++
drivers/accel/amdxdna/amdxdna_iommu.c | 183 ++++++++++++++++++++++++
drivers/accel/amdxdna/amdxdna_pci_drv.c | 47 +++---
drivers/accel/amdxdna/amdxdna_pci_drv.h | 24 ++++
10 files changed, 324 insertions(+), 32 deletions(-)
create mode 100644 drivers/accel/amdxdna/amdxdna_iommu.c
diff --git a/drivers/accel/amdxdna/Makefile b/drivers/accel/amdxdna/Makefile
index 3fa0e74fd8f5..cf9bf19dedb9 100644
--- a/drivers/accel/amdxdna/Makefile
+++ b/drivers/accel/amdxdna/Makefile
@@ -11,6 +11,7 @@ amdxdna-y := \
aie2_solver.o \
amdxdna_ctx.o \
amdxdna_gem.o \
+ amdxdna_iommu.o \
amdxdna_mailbox.o \
amdxdna_mailbox_helper.o \
amdxdna_pci_drv.o \
diff --git a/drivers/accel/amdxdna/aie2_ctx.c b/drivers/accel/amdxdna/aie2_ctx.c
index 5511ab2ef242..3c1173eca43a 100644
--- a/drivers/accel/amdxdna/aie2_ctx.c
+++ b/drivers/accel/amdxdna/aie2_ctx.c
@@ -78,7 +78,8 @@ static int aie2_hwctx_restart(struct amdxdna_dev *xdna, struct amdxdna_hwctx *hw
}
ret = aie2_map_host_buf(xdna->dev_handle, hwctx->fw_ctx_id,
- heap->mem.userptr, heap->mem.size);
+ amdxdna_obj_dma_addr(hwctx->client, heap),
+ heap->mem.size);
if (ret) {
XDNA_ERR(xdna, "Map host buf failed, ret %d", ret);
goto out;
@@ -650,7 +651,8 @@ int aie2_hwctx_init(struct amdxdna_hwctx *hwctx)
}
ret = aie2_map_host_buf(xdna->dev_handle, hwctx->fw_ctx_id,
- heap->mem.userptr, heap->mem.size);
+ amdxdna_obj_dma_addr(hwctx->client, heap),
+ heap->mem.size);
if (ret) {
XDNA_ERR(xdna, "Map host buffer failed, ret %d", ret);
goto release_resource;
diff --git a/drivers/accel/amdxdna/aie2_error.c b/drivers/accel/amdxdna/aie2_error.c
index 5e82df2b7cf6..2966b7e34a96 100644
--- a/drivers/accel/amdxdna/aie2_error.c
+++ b/drivers/accel/amdxdna/aie2_error.c
@@ -355,9 +355,8 @@ int aie2_error_async_events_alloc(struct amdxdna_dev_hdl *ndev)
return -ENOMEM;
events->buf = aie2_alloc_msg_buffer(ndev, &total_size, &events->addr);
-
- if (!events->buf) {
- ret = -ENOMEM;
+ if (IS_ERR(events->buf)) {
+ ret = PTR_ERR(events->buf);
goto free_events;
}
events->size = total_size;
diff --git a/drivers/accel/amdxdna/aie2_message.c b/drivers/accel/amdxdna/aie2_message.c
index 99215328505e..a590b3ed4d80 100644
--- a/drivers/accel/amdxdna/aie2_message.c
+++ b/drivers/accel/amdxdna/aie2_message.c
@@ -64,11 +64,27 @@ void *aie2_alloc_msg_buffer(struct amdxdna_dev_hdl *ndev, u32 *size,
*size = max(*size, SZ_8K);
order = get_order(*size);
if (order > MAX_PAGE_ORDER)
- return NULL;
+ return ERR_PTR(-EINVAL);
*size = PAGE_SIZE << order;
+ if (amdxdna_iova_on(xdna))
+ return amdxdna_iommu_alloc(xdna, *size, dma_addr);
+
return dma_alloc_noncoherent(xdna->ddev.dev, *size, dma_addr,
- DMA_FROM_DEVICE, GFP_KERNEL);
+ DMA_FROM_DEVICE, GFP_KERNEL);
+}
+
+void aie2_free_msg_buffer(struct amdxdna_dev_hdl *ndev, size_t size,
+ void *cpu_addr, dma_addr_t dma_addr)
+{
+ struct amdxdna_dev *xdna = ndev->xdna;
+
+ if (amdxdna_iova_on(xdna)) {
+ amdxdna_iommu_free(xdna, size, cpu_addr, dma_addr);
+ return;
+ }
+
+ dma_free_noncoherent(xdna->ddev.dev, size, cpu_addr, dma_addr, DMA_FROM_DEVICE);
}
int aie2_suspend_fw(struct amdxdna_dev_hdl *ndev)
@@ -257,7 +273,7 @@ int aie2_create_context(struct amdxdna_dev_hdl *ndev, struct amdxdna_hwctx *hwct
req.num_col = hwctx->num_col;
req.num_unused_col = hwctx->num_unused_col;
req.num_cq_pairs_requested = 1;
- req.pasid = hwctx->client->pasid;
+ req.pasid = amdxdna_pasid_on(hwctx->client) ? hwctx->client->pasid : 0;
req.context_priority = aie2_get_context_priority(ndev, hwctx);
ret = aie2_send_mgmt_msg_wait(ndev, &msg);
@@ -369,8 +385,8 @@ int aie2_query_status(struct amdxdna_dev_hdl *ndev, char __user *buf,
int ret;
buff_addr = aie2_alloc_msg_buffer(ndev, &buf_sz, &dma_addr);
- if (!buff_addr)
- return -ENOMEM;
+ if (IS_ERR(buff_addr))
+ return PTR_ERR(buff_addr);
/* Go through each hardware context and mark the AIE columns that are active */
list_for_each_entry(client, &xdna->client_list, node)
@@ -425,8 +441,8 @@ int aie2_query_telemetry(struct amdxdna_dev_hdl *ndev,
return -EINVAL;
addr = aie2_alloc_msg_buffer(ndev, &buf_sz, &dma_addr);
- if (!addr)
- return -ENOMEM;
+ if (IS_ERR(addr))
+ return PTR_ERR(addr);
req.buf_addr = dma_addr;
req.buf_size = buf_sz;
diff --git a/drivers/accel/amdxdna/aie2_pci.h b/drivers/accel/amdxdna/aie2_pci.h
index b20a3661078c..18c252690d9c 100644
--- a/drivers/accel/amdxdna/aie2_pci.h
+++ b/drivers/accel/amdxdna/aie2_pci.h
@@ -337,9 +337,8 @@ int aie2_config_debug_bo(struct amdxdna_hwctx *hwctx, struct amdxdna_sched_job *
int (*notify_cb)(void *, void __iomem *, size_t));
void *aie2_alloc_msg_buffer(struct amdxdna_dev_hdl *ndev, u32 *size,
dma_addr_t *dma_addr);
-#define aie2_free_msg_buffer(ndev, size, buff_addr, dma_addr) \
- dma_free_noncoherent((ndev)->xdna->ddev.dev, size, buff_addr, \
- dma_addr, DMA_FROM_DEVICE)
+void aie2_free_msg_buffer(struct amdxdna_dev_hdl *ndev, size_t size,
+ void *cpu_addr, dma_addr_t dma_addr);
/* aie2_hwctx.c */
int aie2_hwctx_init(struct amdxdna_hwctx *hwctx);
diff --git a/drivers/accel/amdxdna/amdxdna_gem.c b/drivers/accel/amdxdna/amdxdna_gem.c
index dfa916eeb2d9..dfc9c2d593d4 100644
--- a/drivers/accel/amdxdna/amdxdna_gem.c
+++ b/drivers/accel/amdxdna/amdxdna_gem.c
@@ -237,6 +237,7 @@ static int amdxdna_hmm_register(struct amdxdna_gem_obj *abo,
if (abo->mem.userptr == AMDXDNA_INVALID_ADDR)
abo->mem.userptr = addr;
+
INIT_WORK(&mapp->hmm_unreg_work, amdxdna_hmm_unreg_work);
if (is_import_bo(abo) && vma->vm_file && vma->vm_file->f_mapping)
mapping_set_unevictable(vma->vm_file->f_mapping);
@@ -477,12 +478,48 @@ static void amdxdna_gem_obj_free(struct drm_gem_object *gobj)
drm_gem_shmem_free(&abo->base);
}
+static int amdxdna_gem_obj_open(struct drm_gem_object *gobj, struct drm_file *filp)
+{
+ struct amdxdna_dev *xdna = to_xdna_dev(gobj->dev);
+ struct amdxdna_gem_obj *abo = to_xdna_obj(gobj);
+ int ret;
+
+ if (abo->ref) {
+ abo->ref++;
+ return 0;
+ }
+
+ if (amdxdna_iova_on(xdna)) {
+ ret = amdxdna_iommu_map_bo(xdna, abo);
+ if (ret)
+ return ret;
+ }
+ abo->ref++;
+
+ return 0;
+}
+
+static void amdxdna_gem_obj_close(struct drm_gem_object *gobj, struct drm_file *filp)
+{
+ struct amdxdna_dev *xdna = to_xdna_dev(gobj->dev);
+ struct amdxdna_gem_obj *abo = to_xdna_obj(gobj);
+
+ abo->ref--;
+ if (abo->ref)
+ return;
+
+ if (amdxdna_iova_on(xdna))
+ amdxdna_iommu_unmap_bo(xdna, abo);
+}
+
static const struct drm_gem_object_funcs amdxdna_gem_dev_obj_funcs = {
.free = amdxdna_gem_dev_obj_free,
};
static const struct drm_gem_object_funcs amdxdna_gem_shmem_funcs = {
.free = amdxdna_gem_obj_free,
+ .open = amdxdna_gem_obj_open,
+ .close = amdxdna_gem_obj_close,
.print_info = drm_gem_shmem_object_print_info,
.pin = drm_gem_shmem_object_pin,
.unpin = drm_gem_shmem_object_unpin,
@@ -509,6 +546,7 @@ amdxdna_gem_create_obj(struct drm_device *dev, size_t size)
abo->mem.userptr = AMDXDNA_INVALID_ADDR;
abo->mem.dev_addr = AMDXDNA_INVALID_ADDR;
+ abo->mem.dma_addr = AMDXDNA_INVALID_ADDR;
abo->mem.size = size;
INIT_LIST_HEAD(&abo->mem.umap_list);
@@ -624,6 +662,7 @@ amdxdna_gem_prime_import(struct drm_device *dev, struct dma_buf *dma_buf)
abo = to_xdna_obj(gobj);
abo->attach = attach;
abo->dma_buf = dma_buf;
+ abo->type = AMDXDNA_BO_SHMEM;
return gobj;
@@ -906,7 +945,10 @@ int amdxdna_drm_get_bo_info_ioctl(struct drm_device *dev, void *data, struct drm
abo = to_xdna_obj(gobj);
args->vaddr = abo->mem.userptr;
- args->xdna_addr = abo->mem.dev_addr;
+ if (abo->mem.dev_addr != AMDXDNA_INVALID_ADDR)
+ args->xdna_addr = abo->mem.dev_addr;
+ else
+ args->xdna_addr = abo->mem.dma_addr;
if (abo->type != AMDXDNA_BO_DEV)
args->map_offset = drm_vma_node_offset_addr(&gobj->vma_node);
diff --git a/drivers/accel/amdxdna/amdxdna_gem.h b/drivers/accel/amdxdna/amdxdna_gem.h
index f79fc7f3c93b..01a03cab382b 100644
--- a/drivers/accel/amdxdna/amdxdna_gem.h
+++ b/drivers/accel/amdxdna/amdxdna_gem.h
@@ -6,7 +6,9 @@
#ifndef _AMDXDNA_GEM_H_
#define _AMDXDNA_GEM_H_
+#include <drm/drm_gem_shmem_helper.h>
#include <linux/hmm.h>
+#include <linux/iova.h>
#include "amdxdna_pci_drv.h"
struct amdxdna_umap {
@@ -25,6 +27,7 @@ struct amdxdna_mem {
u64 userptr;
void *kva;
u64 dev_addr;
+ u64 dma_addr;
size_t size;
struct page **pages;
u32 nr_pages;
@@ -46,6 +49,8 @@ struct amdxdna_gem_obj {
u32 assigned_hwctx;
struct dma_buf *dma_buf;
struct dma_buf_attachment *attach;
+
+ u32 ref;
};
#define to_gobj(obj) (&(obj)->base.base)
@@ -68,6 +73,12 @@ static inline u64 amdxdna_dev_bo_offset(struct amdxdna_gem_obj *abo)
return abo->mem.dev_addr - abo->client->dev_heap->mem.dev_addr;
}
+static inline u64 amdxdna_obj_dma_addr(struct amdxdna_client *client,
+ struct amdxdna_gem_obj *abo)
+{
+ return amdxdna_pasid_on(client) ? abo->mem.userptr : abo->mem.dma_addr;
+}
+
void amdxdna_umap_put(struct amdxdna_umap *mapp);
struct drm_gem_object *
diff --git a/drivers/accel/amdxdna/amdxdna_iommu.c b/drivers/accel/amdxdna/amdxdna_iommu.c
new file mode 100644
index 000000000000..f9b1d6522b82
--- /dev/null
+++ b/drivers/accel/amdxdna/amdxdna_iommu.c
@@ -0,0 +1,183 @@
+// SPDX-License-Identifier: GPL-2.0
+/*
+ * Copyright (C) 2025, Advanced Micro Devices, Inc.
+ */
+
+#include <drm/amdxdna_accel.h>
+#include <linux/iommu.h>
+#include <linux/iova.h>
+
+#include "amdxdna_gem.h"
+#include "amdxdna_pci_drv.h"
+
+static bool force_iova;
+module_param(force_iova, bool, 0600);
+MODULE_PARM_DESC(force_iova, "Force use IOVA (Default false)");
+
+static struct iova *amdxdna_iommu_alloc_iova(struct amdxdna_dev *xdna,
+ size_t size,
+ dma_addr_t *dma_addr,
+ bool size_aligned)
+{
+ unsigned long shift, end;
+ struct iova *iova;
+
+ end = xdna->domain->geometry.aperture_end;
+ shift = iova_shift(&xdna->iovad);
+ size = iova_align(&xdna->iovad, size);
+
+ iova = alloc_iova(&xdna->iovad, size >> shift, end >> shift, size_aligned);
+ if (!iova)
+ return ERR_PTR(-ENOMEM);
+
+ *dma_addr = iova_dma_addr(&xdna->iovad, iova);
+
+ return iova;
+}
+
+int amdxdna_iommu_map_bo(struct amdxdna_dev *xdna, struct amdxdna_gem_obj *abo)
+{
+ struct sg_table *sgt;
+ dma_addr_t dma_addr;
+ struct iova *iova;
+ size_t size;
+
+ if (abo->type != AMDXDNA_BO_DEV_HEAP && abo->type != AMDXDNA_BO_SHMEM)
+ return 0;
+
+ sgt = drm_gem_shmem_get_pages_sgt(&abo->base);
+ if (IS_ERR(sgt)) {
+ XDNA_ERR(xdna, "Get sgt failed, ret %ld", PTR_ERR(sgt));
+ return PTR_ERR(sgt);
+ }
+
+ if (!sgt->orig_nents || !sg_page(sgt->sgl)) {
+ XDNA_ERR(xdna, "sgl is zero length or not page backed");
+ return -EOPNOTSUPP;
+ }
+
+ iova = amdxdna_iommu_alloc_iova(xdna, abo->mem.size, &dma_addr,
+ (abo->type == AMDXDNA_BO_DEV_HEAP));
+ if (IS_ERR(iova)) {
+ XDNA_ERR(xdna, "Alloc iova failed, ret %ld", PTR_ERR(iova));
+ return PTR_ERR(iova);
+ }
+
+ size = iommu_map_sgtable(xdna->domain, dma_addr, sgt,
+ IOMMU_READ | IOMMU_WRITE);
+ if (size < abo->mem.size) {
+ __free_iova(&xdna->iovad, iova);
+ return -ENXIO;
+ }
+
+ abo->mem.dma_addr = dma_addr;
+
+ return 0;
+}
+
+void amdxdna_iommu_unmap_bo(struct amdxdna_dev *xdna, struct amdxdna_gem_obj *abo)
+{
+ size_t size;
+
+ if (abo->mem.dma_addr == AMDXDNA_INVALID_ADDR)
+ return;
+
+ size = iova_align(&xdna->iovad, abo->mem.size);
+ iommu_unmap(xdna->domain, abo->mem.dma_addr, size);
+ free_iova(&xdna->iovad, iova_pfn(&xdna->iovad, abo->mem.dma_addr));
+ abo->mem.dma_addr = AMDXDNA_INVALID_ADDR;
+}
+
+void *amdxdna_iommu_alloc(struct amdxdna_dev *xdna, size_t size, dma_addr_t *dma_addr)
+{
+ struct iova *iova;
+ void *cpu_addr;
+ int ret;
+
+ iova = amdxdna_iommu_alloc_iova(xdna, size, dma_addr, true);
+ if (IS_ERR(iova)) {
+ XDNA_ERR(xdna, "Alloc iova failed, ret %ld", PTR_ERR(iova));
+ return iova;
+ }
+
+ cpu_addr = (void *)__get_free_pages(GFP_KERNEL, get_order(size));
+ if (!cpu_addr) {
+ ret = -ENOMEM;
+ goto free_iova;
+ }
+
+ ret = iommu_map(xdna->domain, *dma_addr, virt_to_phys(cpu_addr),
+ iova_align(&xdna->iovad, size),
+ IOMMU_READ | IOMMU_WRITE, GFP_KERNEL);
+ if (ret)
+ goto free_iova;
+
+ return cpu_addr;
+
+free_iova:
+ __free_iova(&xdna->iovad, iova);
+ return ERR_PTR(ret);
+}
+
+void amdxdna_iommu_free(struct amdxdna_dev *xdna, size_t size,
+ void *cpu_addr, dma_addr_t dma_addr)
+{
+ iommu_unmap(xdna->domain, dma_addr, iova_align(&xdna->iovad, size));
+ free_iova(&xdna->iovad, iova_pfn(&xdna->iovad, dma_addr));
+ free_pages((unsigned long)cpu_addr, get_order(size));
+}
+
+int amdxdna_iommu_init(struct amdxdna_dev *xdna)
+{
+ unsigned long order;
+ int ret;
+
+ xdna->group = iommu_group_get(xdna->ddev.dev);
+ if (!xdna->group || !force_iova)
+ return 0;
+
+ xdna->domain = iommu_paging_domain_alloc_flags(xdna->ddev.dev,
+ IOMMU_HWPT_ALLOC_PASID);
+ if (IS_ERR(xdna->domain)) {
+ XDNA_ERR(xdna, "Failed to alloc iommu domain");
+ ret = PTR_ERR(xdna->domain);
+ goto put_group;
+ }
+
+ ret = iova_cache_get();
+ if (ret)
+ goto free_domain;
+
+ order = __ffs(xdna->domain->pgsize_bitmap);
+ init_iova_domain(&xdna->iovad, 1UL << order, 0);
+
+ ret = iommu_attach_group(xdna->domain, xdna->group);
+ if (ret)
+ goto put_iova;
+
+ return 0;
+
+put_iova:
+ put_iova_domain(&xdna->iovad);
+ iova_cache_put();
+free_domain:
+ iommu_domain_free(xdna->domain);
+put_group:
+ iommu_group_put(xdna->group);
+ xdna->domain = NULL;
+
+ return ret;
+}
+
+void amdxdna_iommu_fini(struct amdxdna_dev *xdna)
+{
+ if (xdna->domain) {
+ iommu_detach_group(xdna->domain, xdna->group);
+ put_iova_domain(&xdna->iovad);
+ iova_cache_put();
+ iommu_domain_free(xdna->domain);
+ }
+
+ if (xdna->group)
+ iommu_group_put(xdna->group);
+}
diff --git a/drivers/accel/amdxdna/amdxdna_pci_drv.c b/drivers/accel/amdxdna/amdxdna_pci_drv.c
index 45f5c12fc67f..ed5fe643293d 100644
--- a/drivers/accel/amdxdna/amdxdna_pci_drv.c
+++ b/drivers/accel/amdxdna/amdxdna_pci_drv.c
@@ -69,18 +69,21 @@ static int amdxdna_drm_open(struct drm_device *ddev, struct drm_file *filp)
client->pid = pid_nr(rcu_access_pointer(filp->pid));
client->xdna = xdna;
-
- client->sva = iommu_sva_bind_device(xdna->ddev.dev, current->mm);
- if (IS_ERR(client->sva)) {
- ret = PTR_ERR(client->sva);
- XDNA_ERR(xdna, "SVA bind device failed, ret %d", ret);
- goto failed;
- }
- client->pasid = iommu_sva_get_pasid(client->sva);
- if (client->pasid == IOMMU_PASID_INVALID) {
- XDNA_ERR(xdna, "SVA get pasid failed");
- ret = -ENODEV;
- goto unbind_sva;
+ client->pasid = IOMMU_PASID_INVALID;
+
+ if (!amdxdna_iova_on(xdna)) {
+ client->sva = iommu_sva_bind_device(xdna->ddev.dev, current->mm);
+ if (IS_ERR(client->sva)) {
+ ret = PTR_ERR(client->sva);
+ XDNA_ERR(xdna, "SVA bind device failed, ret %d", ret);
+ goto failed;
+ }
+ client->pasid = iommu_sva_get_pasid(client->sva);
+ if (client->pasid == IOMMU_PASID_INVALID) {
+ XDNA_ERR(xdna, "SVA get pasid failed");
+ ret = -ENODEV;
+ goto unbind_sva;
+ }
}
init_srcu_struct(&client->hwctx_srcu);
xa_init_flags(&client->hwctx_xa, XA_FLAGS_ALLOC);
@@ -97,7 +100,8 @@ static int amdxdna_drm_open(struct drm_device *ddev, struct drm_file *filp)
return 0;
unbind_sva:
- iommu_sva_unbind_device(client->sva);
+ if (!IS_ERR_OR_NULL(client->sva))
+ iommu_sva_unbind_device(client->sva);
failed:
kfree(client);
@@ -115,7 +119,8 @@ static void amdxdna_client_cleanup(struct amdxdna_client *client)
if (client->dev_heap)
drm_gem_object_put(to_gobj(client->dev_heap));
- iommu_sva_unbind_device(client->sva);
+ if (!IS_ERR_OR_NULL(client->sva))
+ iommu_sva_unbind_device(client->sva);
kfree(client);
}
@@ -275,9 +280,15 @@ static int amdxdna_probe(struct pci_dev *pdev, const struct pci_device_id *id)
fs_reclaim_release(GFP_KERNEL);
}
+ ret = amdxdna_iommu_init(xdna);
+ if (ret)
+ return ret;
+
xdna->notifier_wq = alloc_ordered_workqueue("notifier_wq", WQ_MEM_RECLAIM);
- if (!xdna->notifier_wq)
- return -ENOMEM;
+ if (!xdna->notifier_wq) {
+ ret = -ENOMEM;
+ goto iommu_fini;
+ }
mutex_lock(&xdna->dev_lock);
ret = xdna->dev_info->ops->init(xdna);
@@ -309,6 +320,8 @@ static int amdxdna_probe(struct pci_dev *pdev, const struct pci_device_id *id)
mutex_unlock(&xdna->dev_lock);
destroy_notifier_wq:
destroy_workqueue(xdna->notifier_wq);
+iommu_fini:
+ amdxdna_iommu_fini(xdna);
return ret;
}
@@ -334,6 +347,8 @@ static void amdxdna_remove(struct pci_dev *pdev)
xdna->dev_info->ops->fini(xdna);
mutex_unlock(&xdna->dev_lock);
+
+ amdxdna_iommu_fini(xdna);
}
static const struct dev_pm_ops amdxdna_pm_ops = {
diff --git a/drivers/accel/amdxdna/amdxdna_pci_drv.h b/drivers/accel/amdxdna/amdxdna_pci_drv.h
index 6580cb5ec7e2..231f8c127781 100644
--- a/drivers/accel/amdxdna/amdxdna_pci_drv.h
+++ b/drivers/accel/amdxdna/amdxdna_pci_drv.h
@@ -6,7 +6,10 @@
#ifndef _AMDXDNA_PCI_DRV_H_
#define _AMDXDNA_PCI_DRV_H_
+#include <drm/amdxdna_accel.h>
#include <drm/drm_print.h>
+#include <linux/iommu.h>
+#include <linux/iova.h>
#include <linux/workqueue.h>
#include <linux/xarray.h>
@@ -101,6 +104,10 @@ struct amdxdna_dev {
struct amdxdna_fw_ver fw_ver;
struct rw_semaphore notifier_lock; /* for mmu notifier*/
struct workqueue_struct *notifier_wq;
+
+ struct iommu_group *group;
+ struct iommu_domain *domain;
+ struct iova_domain iovad;
};
/*
@@ -144,4 +151,21 @@ extern const struct amdxdna_dev_info dev_npu6_info;
int amdxdna_sysfs_init(struct amdxdna_dev *xdna);
void amdxdna_sysfs_fini(struct amdxdna_dev *xdna);
+int amdxdna_iommu_init(struct amdxdna_dev *xdna);
+void amdxdna_iommu_fini(struct amdxdna_dev *xdna);
+int amdxdna_iommu_map_bo(struct amdxdna_dev *xdna, struct amdxdna_gem_obj *abo);
+void amdxdna_iommu_unmap_bo(struct amdxdna_dev *xdna, struct amdxdna_gem_obj *abo);
+void *amdxdna_iommu_alloc(struct amdxdna_dev *xdna, size_t size, dma_addr_t *dma_addr);
+void amdxdna_iommu_free(struct amdxdna_dev *xdna, size_t size,
+ void *cpu_addr, dma_addr_t dma_addr);
+
+static inline bool amdxdna_iova_on(struct amdxdna_dev *xdna)
+{
+ return !!xdna->domain;
+}
+
+static inline bool amdxdna_pasid_on(struct amdxdna_client *client)
+{
+ return client->pasid != IOMMU_PASID_INVALID;
+}
#endif /* _AMDXDNA_PCI_DRV_H_ */
--
2.34.1
On 1/23/2026 3:27 PM, Lizhi Hou wrote:
> The amdxdna driver normally performs DMA using userspace virtual address
> plus PASID. For debugging and validation purposes, add a module parameter,
> force_iova, to force DMA to go through IOMMU IOVA mapping.
>
> When force_iova=1 is set, the driver will allocate and map DMA buffers
> using IOVA.
Do you perhaps want to put a warning in the logs that this has been set?
Otherwise it might not be obvious someone did it when debugging an
issue and reviewing their logs.
>
> Signed-off-by: Lizhi Hou <lizhi.hou@amd.com>
> ---
> drivers/accel/amdxdna/Makefile | 1 +
> drivers/accel/amdxdna/aie2_ctx.c | 6 +-
> drivers/accel/amdxdna/aie2_error.c | 5 +-
> drivers/accel/amdxdna/aie2_message.c | 30 +++-
> drivers/accel/amdxdna/aie2_pci.h | 5 +-
> drivers/accel/amdxdna/amdxdna_gem.c | 44 +++++-
> drivers/accel/amdxdna/amdxdna_gem.h | 11 ++
> drivers/accel/amdxdna/amdxdna_iommu.c | 183 ++++++++++++++++++++++++
> drivers/accel/amdxdna/amdxdna_pci_drv.c | 47 +++---
> drivers/accel/amdxdna/amdxdna_pci_drv.h | 24 ++++
> 10 files changed, 324 insertions(+), 32 deletions(-)
> create mode 100644 drivers/accel/amdxdna/amdxdna_iommu.c
>
> diff --git a/drivers/accel/amdxdna/Makefile b/drivers/accel/amdxdna/Makefile
> index 3fa0e74fd8f5..cf9bf19dedb9 100644
> --- a/drivers/accel/amdxdna/Makefile
> +++ b/drivers/accel/amdxdna/Makefile
> @@ -11,6 +11,7 @@ amdxdna-y := \
> aie2_solver.o \
> amdxdna_ctx.o \
> amdxdna_gem.o \
> + amdxdna_iommu.o \
> amdxdna_mailbox.o \
> amdxdna_mailbox_helper.o \
> amdxdna_pci_drv.o \
> diff --git a/drivers/accel/amdxdna/aie2_ctx.c b/drivers/accel/amdxdna/aie2_ctx.c
> index 5511ab2ef242..3c1173eca43a 100644
> --- a/drivers/accel/amdxdna/aie2_ctx.c
> +++ b/drivers/accel/amdxdna/aie2_ctx.c
> @@ -78,7 +78,8 @@ static int aie2_hwctx_restart(struct amdxdna_dev *xdna, struct amdxdna_hwctx *hw
> }
>
> ret = aie2_map_host_buf(xdna->dev_handle, hwctx->fw_ctx_id,
> - heap->mem.userptr, heap->mem.size);
> + amdxdna_obj_dma_addr(hwctx->client, heap),
> + heap->mem.size);
> if (ret) {
> XDNA_ERR(xdna, "Map host buf failed, ret %d", ret);
> goto out;
> @@ -650,7 +651,8 @@ int aie2_hwctx_init(struct amdxdna_hwctx *hwctx)
> }
>
> ret = aie2_map_host_buf(xdna->dev_handle, hwctx->fw_ctx_id,
> - heap->mem.userptr, heap->mem.size);
> + amdxdna_obj_dma_addr(hwctx->client, heap),
> + heap->mem.size);
> if (ret) {
> XDNA_ERR(xdna, "Map host buffer failed, ret %d", ret);
> goto release_resource;
> diff --git a/drivers/accel/amdxdna/aie2_error.c b/drivers/accel/amdxdna/aie2_error.c
> index 5e82df2b7cf6..2966b7e34a96 100644
> --- a/drivers/accel/amdxdna/aie2_error.c
> +++ b/drivers/accel/amdxdna/aie2_error.c
> @@ -355,9 +355,8 @@ int aie2_error_async_events_alloc(struct amdxdna_dev_hdl *ndev)
> return -ENOMEM;
>
> events->buf = aie2_alloc_msg_buffer(ndev, &total_size, &events->addr);
> -
> - if (!events->buf) {
> - ret = -ENOMEM;
> + if (IS_ERR(events->buf)) {
> + ret = PTR_ERR(events->buf);
> goto free_events;
> }
> events->size = total_size;
> diff --git a/drivers/accel/amdxdna/aie2_message.c b/drivers/accel/amdxdna/aie2_message.c
> index 99215328505e..a590b3ed4d80 100644
> --- a/drivers/accel/amdxdna/aie2_message.c
> +++ b/drivers/accel/amdxdna/aie2_message.c
> @@ -64,11 +64,27 @@ void *aie2_alloc_msg_buffer(struct amdxdna_dev_hdl *ndev, u32 *size,
> *size = max(*size, SZ_8K);
> order = get_order(*size);
> if (order > MAX_PAGE_ORDER)
> - return NULL;
> + return ERR_PTR(-EINVAL);
> *size = PAGE_SIZE << order;
>
> + if (amdxdna_iova_on(xdna))
> + return amdxdna_iommu_alloc(xdna, *size, dma_addr);
> +
> return dma_alloc_noncoherent(xdna->ddev.dev, *size, dma_addr,
> - DMA_FROM_DEVICE, GFP_KERNEL);
> + DMA_FROM_DEVICE, GFP_KERNEL);
> +}
> +
> +void aie2_free_msg_buffer(struct amdxdna_dev_hdl *ndev, size_t size,
> + void *cpu_addr, dma_addr_t dma_addr)
> +{
> + struct amdxdna_dev *xdna = ndev->xdna;
> +
> + if (amdxdna_iova_on(xdna)) {
> + amdxdna_iommu_free(xdna, size, cpu_addr, dma_addr);
> + return;
> + }
> +
> + dma_free_noncoherent(xdna->ddev.dev, size, cpu_addr, dma_addr, DMA_FROM_DEVICE);
> }
>
> int aie2_suspend_fw(struct amdxdna_dev_hdl *ndev)
> @@ -257,7 +273,7 @@ int aie2_create_context(struct amdxdna_dev_hdl *ndev, struct amdxdna_hwctx *hwct
> req.num_col = hwctx->num_col;
> req.num_unused_col = hwctx->num_unused_col;
> req.num_cq_pairs_requested = 1;
> - req.pasid = hwctx->client->pasid;
> + req.pasid = amdxdna_pasid_on(hwctx->client) ? hwctx->client->pasid : 0;
> req.context_priority = aie2_get_context_priority(ndev, hwctx);
>
> ret = aie2_send_mgmt_msg_wait(ndev, &msg);
> @@ -369,8 +385,8 @@ int aie2_query_status(struct amdxdna_dev_hdl *ndev, char __user *buf,
> int ret;
>
> buff_addr = aie2_alloc_msg_buffer(ndev, &buf_sz, &dma_addr);
> - if (!buff_addr)
> - return -ENOMEM;
> + if (IS_ERR(buff_addr))
> + return PTR_ERR(buff_addr);
>
> /* Go through each hardware context and mark the AIE columns that are active */
> list_for_each_entry(client, &xdna->client_list, node)
> @@ -425,8 +441,8 @@ int aie2_query_telemetry(struct amdxdna_dev_hdl *ndev,
> return -EINVAL;
>
> addr = aie2_alloc_msg_buffer(ndev, &buf_sz, &dma_addr);
> - if (!addr)
> - return -ENOMEM;
> + if (IS_ERR(addr))
> + return PTR_ERR(addr);
>
> req.buf_addr = dma_addr;
> req.buf_size = buf_sz;
> diff --git a/drivers/accel/amdxdna/aie2_pci.h b/drivers/accel/amdxdna/aie2_pci.h
> index b20a3661078c..18c252690d9c 100644
> --- a/drivers/accel/amdxdna/aie2_pci.h
> +++ b/drivers/accel/amdxdna/aie2_pci.h
> @@ -337,9 +337,8 @@ int aie2_config_debug_bo(struct amdxdna_hwctx *hwctx, struct amdxdna_sched_job *
> int (*notify_cb)(void *, void __iomem *, size_t));
> void *aie2_alloc_msg_buffer(struct amdxdna_dev_hdl *ndev, u32 *size,
> dma_addr_t *dma_addr);
> -#define aie2_free_msg_buffer(ndev, size, buff_addr, dma_addr) \
> - dma_free_noncoherent((ndev)->xdna->ddev.dev, size, buff_addr, \
> - dma_addr, DMA_FROM_DEVICE)
> +void aie2_free_msg_buffer(struct amdxdna_dev_hdl *ndev, size_t size,
> + void *cpu_addr, dma_addr_t dma_addr);
>
> /* aie2_hwctx.c */
> int aie2_hwctx_init(struct amdxdna_hwctx *hwctx);
> diff --git a/drivers/accel/amdxdna/amdxdna_gem.c b/drivers/accel/amdxdna/amdxdna_gem.c
> index dfa916eeb2d9..dfc9c2d593d4 100644
> --- a/drivers/accel/amdxdna/amdxdna_gem.c
> +++ b/drivers/accel/amdxdna/amdxdna_gem.c
> @@ -237,6 +237,7 @@ static int amdxdna_hmm_register(struct amdxdna_gem_obj *abo,
>
> if (abo->mem.userptr == AMDXDNA_INVALID_ADDR)
> abo->mem.userptr = addr;
> +
> INIT_WORK(&mapp->hmm_unreg_work, amdxdna_hmm_unreg_work);
> if (is_import_bo(abo) && vma->vm_file && vma->vm_file->f_mapping)
> mapping_set_unevictable(vma->vm_file->f_mapping);
> @@ -477,12 +478,48 @@ static void amdxdna_gem_obj_free(struct drm_gem_object *gobj)
> drm_gem_shmem_free(&abo->base);
> }
>
> +static int amdxdna_gem_obj_open(struct drm_gem_object *gobj, struct drm_file *filp)
> +{
> + struct amdxdna_dev *xdna = to_xdna_dev(gobj->dev);
> + struct amdxdna_gem_obj *abo = to_xdna_obj(gobj);
> + int ret;
> +
> + if (abo->ref) {
> + abo->ref++;
> + return 0;
> + }
> +
> + if (amdxdna_iova_on(xdna)) {
> + ret = amdxdna_iommu_map_bo(xdna, abo);
> + if (ret)
> + return ret;
> + }
> + abo->ref++;
> +
> + return 0;
> +}
> +
> +static void amdxdna_gem_obj_close(struct drm_gem_object *gobj, struct drm_file *filp)
> +{
> + struct amdxdna_dev *xdna = to_xdna_dev(gobj->dev);
> + struct amdxdna_gem_obj *abo = to_xdna_obj(gobj);
> +
> + abo->ref--;
> + if (abo->ref)
> + return;
> +
> + if (amdxdna_iova_on(xdna))
> + amdxdna_iommu_unmap_bo(xdna, abo);
> +}
> +
> static const struct drm_gem_object_funcs amdxdna_gem_dev_obj_funcs = {
> .free = amdxdna_gem_dev_obj_free,
> };
>
> static const struct drm_gem_object_funcs amdxdna_gem_shmem_funcs = {
> .free = amdxdna_gem_obj_free,
> + .open = amdxdna_gem_obj_open,
> + .close = amdxdna_gem_obj_close,
> .print_info = drm_gem_shmem_object_print_info,
> .pin = drm_gem_shmem_object_pin,
> .unpin = drm_gem_shmem_object_unpin,
> @@ -509,6 +546,7 @@ amdxdna_gem_create_obj(struct drm_device *dev, size_t size)
>
> abo->mem.userptr = AMDXDNA_INVALID_ADDR;
> abo->mem.dev_addr = AMDXDNA_INVALID_ADDR;
> + abo->mem.dma_addr = AMDXDNA_INVALID_ADDR;
> abo->mem.size = size;
> INIT_LIST_HEAD(&abo->mem.umap_list);
>
> @@ -624,6 +662,7 @@ amdxdna_gem_prime_import(struct drm_device *dev, struct dma_buf *dma_buf)
> abo = to_xdna_obj(gobj);
> abo->attach = attach;
> abo->dma_buf = dma_buf;
> + abo->type = AMDXDNA_BO_SHMEM;
>
> return gobj;
>
> @@ -906,7 +945,10 @@ int amdxdna_drm_get_bo_info_ioctl(struct drm_device *dev, void *data, struct drm
>
> abo = to_xdna_obj(gobj);
> args->vaddr = abo->mem.userptr;
> - args->xdna_addr = abo->mem.dev_addr;
> + if (abo->mem.dev_addr != AMDXDNA_INVALID_ADDR)
> + args->xdna_addr = abo->mem.dev_addr;
> + else
> + args->xdna_addr = abo->mem.dma_addr;
>
> if (abo->type != AMDXDNA_BO_DEV)
> args->map_offset = drm_vma_node_offset_addr(&gobj->vma_node);
> diff --git a/drivers/accel/amdxdna/amdxdna_gem.h b/drivers/accel/amdxdna/amdxdna_gem.h
> index f79fc7f3c93b..01a03cab382b 100644
> --- a/drivers/accel/amdxdna/amdxdna_gem.h
> +++ b/drivers/accel/amdxdna/amdxdna_gem.h
> @@ -6,7 +6,9 @@
> #ifndef _AMDXDNA_GEM_H_
> #define _AMDXDNA_GEM_H_
>
> +#include <drm/drm_gem_shmem_helper.h>
> #include <linux/hmm.h>
> +#include <linux/iova.h>
> #include "amdxdna_pci_drv.h"
>
> struct amdxdna_umap {
> @@ -25,6 +27,7 @@ struct amdxdna_mem {
> u64 userptr;
> void *kva;
> u64 dev_addr;
> + u64 dma_addr;
> size_t size;
> struct page **pages;
> u32 nr_pages;
> @@ -46,6 +49,8 @@ struct amdxdna_gem_obj {
> u32 assigned_hwctx;
> struct dma_buf *dma_buf;
> struct dma_buf_attachment *attach;
> +
> + u32 ref;
> };
>
> #define to_gobj(obj) (&(obj)->base.base)
> @@ -68,6 +73,12 @@ static inline u64 amdxdna_dev_bo_offset(struct amdxdna_gem_obj *abo)
> return abo->mem.dev_addr - abo->client->dev_heap->mem.dev_addr;
> }
>
> +static inline u64 amdxdna_obj_dma_addr(struct amdxdna_client *client,
> + struct amdxdna_gem_obj *abo)
> +{
> + return amdxdna_pasid_on(client) ? abo->mem.userptr : abo->mem.dma_addr;
> +}
> +
> void amdxdna_umap_put(struct amdxdna_umap *mapp);
>
> struct drm_gem_object *
> diff --git a/drivers/accel/amdxdna/amdxdna_iommu.c b/drivers/accel/amdxdna/amdxdna_iommu.c
> new file mode 100644
> index 000000000000..f9b1d6522b82
> --- /dev/null
> +++ b/drivers/accel/amdxdna/amdxdna_iommu.c
> @@ -0,0 +1,183 @@
> +// SPDX-License-Identifier: GPL-2.0
> +/*
> + * Copyright (C) 2025, Advanced Micro Devices, Inc.
> + */
> +
> +#include <drm/amdxdna_accel.h>
> +#include <linux/iommu.h>
> +#include <linux/iova.h>
> +
> +#include "amdxdna_gem.h"
> +#include "amdxdna_pci_drv.h"
> +
> +static bool force_iova;
> +module_param(force_iova, bool, 0600);
> +MODULE_PARM_DESC(force_iova, "Force use IOVA (Default false)");
> +
> +static struct iova *amdxdna_iommu_alloc_iova(struct amdxdna_dev *xdna,
> + size_t size,
> + dma_addr_t *dma_addr,
> + bool size_aligned)
> +{
> + unsigned long shift, end;
> + struct iova *iova;
> +
> + end = xdna->domain->geometry.aperture_end;
> + shift = iova_shift(&xdna->iovad);
> + size = iova_align(&xdna->iovad, size);
> +
> + iova = alloc_iova(&xdna->iovad, size >> shift, end >> shift, size_aligned);
> + if (!iova)
> + return ERR_PTR(-ENOMEM);
> +
> + *dma_addr = iova_dma_addr(&xdna->iovad, iova);
> +
> + return iova;
> +}
> +
> +int amdxdna_iommu_map_bo(struct amdxdna_dev *xdna, struct amdxdna_gem_obj *abo)
> +{
> + struct sg_table *sgt;
> + dma_addr_t dma_addr;
> + struct iova *iova;
> + size_t size;
> +
> + if (abo->type != AMDXDNA_BO_DEV_HEAP && abo->type != AMDXDNA_BO_SHMEM)
> + return 0;
> +
> + sgt = drm_gem_shmem_get_pages_sgt(&abo->base);
> + if (IS_ERR(sgt)) {
> + XDNA_ERR(xdna, "Get sgt failed, ret %ld", PTR_ERR(sgt));
> + return PTR_ERR(sgt);
> + }
> +
> + if (!sgt->orig_nents || !sg_page(sgt->sgl)) {
> + XDNA_ERR(xdna, "sgl is zero length or not page backed");
> + return -EOPNOTSUPP;
> + }
> +
> + iova = amdxdna_iommu_alloc_iova(xdna, abo->mem.size, &dma_addr,
> + (abo->type == AMDXDNA_BO_DEV_HEAP));
> + if (IS_ERR(iova)) {
> + XDNA_ERR(xdna, "Alloc iova failed, ret %ld", PTR_ERR(iova));
> + return PTR_ERR(iova);
> + }
> +
> + size = iommu_map_sgtable(xdna->domain, dma_addr, sgt,
> + IOMMU_READ | IOMMU_WRITE);
> + if (size < abo->mem.size) {
> + __free_iova(&xdna->iovad, iova);
> + return -ENXIO;
> + }
> +
> + abo->mem.dma_addr = dma_addr;
> +
> + return 0;
> +}
> +
> +void amdxdna_iommu_unmap_bo(struct amdxdna_dev *xdna, struct amdxdna_gem_obj *abo)
> +{
> + size_t size;
> +
> + if (abo->mem.dma_addr == AMDXDNA_INVALID_ADDR)
> + return;
> +
> + size = iova_align(&xdna->iovad, abo->mem.size);
> + iommu_unmap(xdna->domain, abo->mem.dma_addr, size);
> + free_iova(&xdna->iovad, iova_pfn(&xdna->iovad, abo->mem.dma_addr));
> + abo->mem.dma_addr = AMDXDNA_INVALID_ADDR;
> +}
> +
> +void *amdxdna_iommu_alloc(struct amdxdna_dev *xdna, size_t size, dma_addr_t *dma_addr)
> +{
> + struct iova *iova;
> + void *cpu_addr;
> + int ret;
> +
> + iova = amdxdna_iommu_alloc_iova(xdna, size, dma_addr, true);
> + if (IS_ERR(iova)) {
> + XDNA_ERR(xdna, "Alloc iova failed, ret %ld", PTR_ERR(iova));
> + return iova;
> + }
> +
> + cpu_addr = (void *)__get_free_pages(GFP_KERNEL, get_order(size));
> + if (!cpu_addr) {
> + ret = -ENOMEM;
> + goto free_iova;
> + }
> +
> + ret = iommu_map(xdna->domain, *dma_addr, virt_to_phys(cpu_addr),
> + iova_align(&xdna->iovad, size),
> + IOMMU_READ | IOMMU_WRITE, GFP_KERNEL);
> + if (ret)
> + goto free_iova;
> +
> + return cpu_addr;
> +
> +free_iova:
> + __free_iova(&xdna->iovad, iova);
> + return ERR_PTR(ret);
> +}
> +
> +void amdxdna_iommu_free(struct amdxdna_dev *xdna, size_t size,
> + void *cpu_addr, dma_addr_t dma_addr)
> +{
> + iommu_unmap(xdna->domain, dma_addr, iova_align(&xdna->iovad, size));
> + free_iova(&xdna->iovad, iova_pfn(&xdna->iovad, dma_addr));
> + free_pages((unsigned long)cpu_addr, get_order(size));
> +}
> +
> +int amdxdna_iommu_init(struct amdxdna_dev *xdna)
> +{
> + unsigned long order;
> + int ret;
> +
> + xdna->group = iommu_group_get(xdna->ddev.dev);
> + if (!xdna->group || !force_iova)
> + return 0;
> +
> + xdna->domain = iommu_paging_domain_alloc_flags(xdna->ddev.dev,
> + IOMMU_HWPT_ALLOC_PASID);
> + if (IS_ERR(xdna->domain)) {
> + XDNA_ERR(xdna, "Failed to alloc iommu domain");
> + ret = PTR_ERR(xdna->domain);
> + goto put_group;
> + }
> +
> + ret = iova_cache_get();
> + if (ret)
> + goto free_domain;
> +
> + order = __ffs(xdna->domain->pgsize_bitmap);
> + init_iova_domain(&xdna->iovad, 1UL << order, 0);
> +
> + ret = iommu_attach_group(xdna->domain, xdna->group);
> + if (ret)
> + goto put_iova;
> +
> + return 0;
> +
> +put_iova:
> + put_iova_domain(&xdna->iovad);
> + iova_cache_put();
> +free_domain:
> + iommu_domain_free(xdna->domain);
> +put_group:
> + iommu_group_put(xdna->group);
> + xdna->domain = NULL;
> +
> + return ret;
> +}
> +
> +void amdxdna_iommu_fini(struct amdxdna_dev *xdna)
> +{
> + if (xdna->domain) {
> + iommu_detach_group(xdna->domain, xdna->group);
> + put_iova_domain(&xdna->iovad);
> + iova_cache_put();
> + iommu_domain_free(xdna->domain);
> + }
> +
> + if (xdna->group)
> + iommu_group_put(xdna->group);
> +}
> diff --git a/drivers/accel/amdxdna/amdxdna_pci_drv.c b/drivers/accel/amdxdna/amdxdna_pci_drv.c
> index 45f5c12fc67f..ed5fe643293d 100644
> --- a/drivers/accel/amdxdna/amdxdna_pci_drv.c
> +++ b/drivers/accel/amdxdna/amdxdna_pci_drv.c
> @@ -69,18 +69,21 @@ static int amdxdna_drm_open(struct drm_device *ddev, struct drm_file *filp)
>
> client->pid = pid_nr(rcu_access_pointer(filp->pid));
> client->xdna = xdna;
> -
> - client->sva = iommu_sva_bind_device(xdna->ddev.dev, current->mm);
> - if (IS_ERR(client->sva)) {
> - ret = PTR_ERR(client->sva);
> - XDNA_ERR(xdna, "SVA bind device failed, ret %d", ret);
> - goto failed;
> - }
> - client->pasid = iommu_sva_get_pasid(client->sva);
> - if (client->pasid == IOMMU_PASID_INVALID) {
> - XDNA_ERR(xdna, "SVA get pasid failed");
> - ret = -ENODEV;
> - goto unbind_sva;
> + client->pasid = IOMMU_PASID_INVALID;
> +
> + if (!amdxdna_iova_on(xdna)) {
> + client->sva = iommu_sva_bind_device(xdna->ddev.dev, current->mm);
> + if (IS_ERR(client->sva)) {
> + ret = PTR_ERR(client->sva);
> + XDNA_ERR(xdna, "SVA bind device failed, ret %d", ret);
> + goto failed;
> + }
> + client->pasid = iommu_sva_get_pasid(client->sva);
> + if (client->pasid == IOMMU_PASID_INVALID) {
> + XDNA_ERR(xdna, "SVA get pasid failed");
> + ret = -ENODEV;
> + goto unbind_sva;
> + }
> }
> init_srcu_struct(&client->hwctx_srcu);
> xa_init_flags(&client->hwctx_xa, XA_FLAGS_ALLOC);
> @@ -97,7 +100,8 @@ static int amdxdna_drm_open(struct drm_device *ddev, struct drm_file *filp)
> return 0;
>
> unbind_sva:
> - iommu_sva_unbind_device(client->sva);
> + if (!IS_ERR_OR_NULL(client->sva))
> + iommu_sva_unbind_device(client->sva);
> failed:
> kfree(client);
>
> @@ -115,7 +119,8 @@ static void amdxdna_client_cleanup(struct amdxdna_client *client)
> if (client->dev_heap)
> drm_gem_object_put(to_gobj(client->dev_heap));
>
> - iommu_sva_unbind_device(client->sva);
> + if (!IS_ERR_OR_NULL(client->sva))
> + iommu_sva_unbind_device(client->sva);
>
> kfree(client);
> }
> @@ -275,9 +280,15 @@ static int amdxdna_probe(struct pci_dev *pdev, const struct pci_device_id *id)
> fs_reclaim_release(GFP_KERNEL);
> }
>
> + ret = amdxdna_iommu_init(xdna);
> + if (ret)
> + return ret;
> +
> xdna->notifier_wq = alloc_ordered_workqueue("notifier_wq", WQ_MEM_RECLAIM);
> - if (!xdna->notifier_wq)
> - return -ENOMEM;
> + if (!xdna->notifier_wq) {
> + ret = -ENOMEM;
> + goto iommu_fini;
> + }
>
> mutex_lock(&xdna->dev_lock);
> ret = xdna->dev_info->ops->init(xdna);
> @@ -309,6 +320,8 @@ static int amdxdna_probe(struct pci_dev *pdev, const struct pci_device_id *id)
> mutex_unlock(&xdna->dev_lock);
> destroy_notifier_wq:
> destroy_workqueue(xdna->notifier_wq);
> +iommu_fini:
> + amdxdna_iommu_fini(xdna);
> return ret;
> }
>
> @@ -334,6 +347,8 @@ static void amdxdna_remove(struct pci_dev *pdev)
>
> xdna->dev_info->ops->fini(xdna);
> mutex_unlock(&xdna->dev_lock);
> +
> + amdxdna_iommu_fini(xdna);
> }
>
> static const struct dev_pm_ops amdxdna_pm_ops = {
> diff --git a/drivers/accel/amdxdna/amdxdna_pci_drv.h b/drivers/accel/amdxdna/amdxdna_pci_drv.h
> index 6580cb5ec7e2..231f8c127781 100644
> --- a/drivers/accel/amdxdna/amdxdna_pci_drv.h
> +++ b/drivers/accel/amdxdna/amdxdna_pci_drv.h
> @@ -6,7 +6,10 @@
> #ifndef _AMDXDNA_PCI_DRV_H_
> #define _AMDXDNA_PCI_DRV_H_
>
> +#include <drm/amdxdna_accel.h>
> #include <drm/drm_print.h>
> +#include <linux/iommu.h>
> +#include <linux/iova.h>
> #include <linux/workqueue.h>
> #include <linux/xarray.h>
>
> @@ -101,6 +104,10 @@ struct amdxdna_dev {
> struct amdxdna_fw_ver fw_ver;
> struct rw_semaphore notifier_lock; /* for mmu notifier*/
> struct workqueue_struct *notifier_wq;
> +
> + struct iommu_group *group;
> + struct iommu_domain *domain;
> + struct iova_domain iovad;
> };
>
> /*
> @@ -144,4 +151,21 @@ extern const struct amdxdna_dev_info dev_npu6_info;
> int amdxdna_sysfs_init(struct amdxdna_dev *xdna);
> void amdxdna_sysfs_fini(struct amdxdna_dev *xdna);
>
> +int amdxdna_iommu_init(struct amdxdna_dev *xdna);
> +void amdxdna_iommu_fini(struct amdxdna_dev *xdna);
> +int amdxdna_iommu_map_bo(struct amdxdna_dev *xdna, struct amdxdna_gem_obj *abo);
> +void amdxdna_iommu_unmap_bo(struct amdxdna_dev *xdna, struct amdxdna_gem_obj *abo);
> +void *amdxdna_iommu_alloc(struct amdxdna_dev *xdna, size_t size, dma_addr_t *dma_addr);
> +void amdxdna_iommu_free(struct amdxdna_dev *xdna, size_t size,
> + void *cpu_addr, dma_addr_t dma_addr);
> +
> +static inline bool amdxdna_iova_on(struct amdxdna_dev *xdna)
> +{
> + return !!xdna->domain;
> +}
> +
> +static inline bool amdxdna_pasid_on(struct amdxdna_client *client)
> +{
> + return client->pasid != IOMMU_PASID_INVALID;
> +}
> #endif /* _AMDXDNA_PCI_DRV_H_ */
On 1/26/26 10:49, Mario Limonciello wrote:
>
>
> On 1/23/2026 3:27 PM, Lizhi Hou wrote:
>> The amdxdna driver normally performs DMA using userspace virtual address
>> plus PASID. For debugging and validation purposes, add a module
>> parameter,
>> force_iova, to force DMA to go through IOMMU IOVA mapping.
>>
>> When force_iova=1 is set, the driver will allocate and map DMA buffers
>> using IOVA.
>
> Do you perhaps want to put a warning in the logs that this has been
> set? Otherwise it might not be obvious someone did it when debugging
> an issue and reviewing their logs.
Sure. Will send out a V2 patch.
>
>>
>> Signed-off-by: Lizhi Hou <lizhi.hou@amd.com>
>> ---
>> drivers/accel/amdxdna/Makefile | 1 +
>> drivers/accel/amdxdna/aie2_ctx.c | 6 +-
>> drivers/accel/amdxdna/aie2_error.c | 5 +-
>> drivers/accel/amdxdna/aie2_message.c | 30 +++-
>> drivers/accel/amdxdna/aie2_pci.h | 5 +-
>> drivers/accel/amdxdna/amdxdna_gem.c | 44 +++++-
>> drivers/accel/amdxdna/amdxdna_gem.h | 11 ++
>> drivers/accel/amdxdna/amdxdna_iommu.c | 183 ++++++++++++++++++++++++
>> drivers/accel/amdxdna/amdxdna_pci_drv.c | 47 +++---
>> drivers/accel/amdxdna/amdxdna_pci_drv.h | 24 ++++
>> 10 files changed, 324 insertions(+), 32 deletions(-)
>> create mode 100644 drivers/accel/amdxdna/amdxdna_iommu.c
>>
>> diff --git a/drivers/accel/amdxdna/Makefile
>> b/drivers/accel/amdxdna/Makefile
>> index 3fa0e74fd8f5..cf9bf19dedb9 100644
>> --- a/drivers/accel/amdxdna/Makefile
>> +++ b/drivers/accel/amdxdna/Makefile
>> @@ -11,6 +11,7 @@ amdxdna-y := \
>> aie2_solver.o \
>> amdxdna_ctx.o \
>> amdxdna_gem.o \
>> + amdxdna_iommu.o \
>> amdxdna_mailbox.o \
>> amdxdna_mailbox_helper.o \
>> amdxdna_pci_drv.o \
>> diff --git a/drivers/accel/amdxdna/aie2_ctx.c
>> b/drivers/accel/amdxdna/aie2_ctx.c
>> index 5511ab2ef242..3c1173eca43a 100644
>> --- a/drivers/accel/amdxdna/aie2_ctx.c
>> +++ b/drivers/accel/amdxdna/aie2_ctx.c
>> @@ -78,7 +78,8 @@ static int aie2_hwctx_restart(struct amdxdna_dev
>> *xdna, struct amdxdna_hwctx *hw
>> }
>> ret = aie2_map_host_buf(xdna->dev_handle, hwctx->fw_ctx_id,
>> - heap->mem.userptr, heap->mem.size);
>> + amdxdna_obj_dma_addr(hwctx->client, heap),
>> + heap->mem.size);
>> if (ret) {
>> XDNA_ERR(xdna, "Map host buf failed, ret %d", ret);
>> goto out;
>> @@ -650,7 +651,8 @@ int aie2_hwctx_init(struct amdxdna_hwctx *hwctx)
>> }
>> ret = aie2_map_host_buf(xdna->dev_handle, hwctx->fw_ctx_id,
>> - heap->mem.userptr, heap->mem.size);
>> + amdxdna_obj_dma_addr(hwctx->client, heap),
>> + heap->mem.size);
>> if (ret) {
>> XDNA_ERR(xdna, "Map host buffer failed, ret %d", ret);
>> goto release_resource;
>> diff --git a/drivers/accel/amdxdna/aie2_error.c
>> b/drivers/accel/amdxdna/aie2_error.c
>> index 5e82df2b7cf6..2966b7e34a96 100644
>> --- a/drivers/accel/amdxdna/aie2_error.c
>> +++ b/drivers/accel/amdxdna/aie2_error.c
>> @@ -355,9 +355,8 @@ int aie2_error_async_events_alloc(struct
>> amdxdna_dev_hdl *ndev)
>> return -ENOMEM;
>> events->buf = aie2_alloc_msg_buffer(ndev, &total_size,
>> &events->addr);
>> -
>> - if (!events->buf) {
>> - ret = -ENOMEM;
>> + if (IS_ERR(events->buf)) {
>> + ret = PTR_ERR(events->buf);
>> goto free_events;
>> }
>> events->size = total_size;
>> diff --git a/drivers/accel/amdxdna/aie2_message.c
>> b/drivers/accel/amdxdna/aie2_message.c
>> index 99215328505e..a590b3ed4d80 100644
>> --- a/drivers/accel/amdxdna/aie2_message.c
>> +++ b/drivers/accel/amdxdna/aie2_message.c
>> @@ -64,11 +64,27 @@ void *aie2_alloc_msg_buffer(struct
>> amdxdna_dev_hdl *ndev, u32 *size,
>> *size = max(*size, SZ_8K);
>> order = get_order(*size);
>> if (order > MAX_PAGE_ORDER)
>> - return NULL;
>> + return ERR_PTR(-EINVAL);
>> *size = PAGE_SIZE << order;
>> + if (amdxdna_iova_on(xdna))
>> + return amdxdna_iommu_alloc(xdna, *size, dma_addr);
>> +
>> return dma_alloc_noncoherent(xdna->ddev.dev, *size, dma_addr,
>> - DMA_FROM_DEVICE, GFP_KERNEL);
>> + DMA_FROM_DEVICE, GFP_KERNEL);
>> +}
>> +
>> +void aie2_free_msg_buffer(struct amdxdna_dev_hdl *ndev, size_t size,
>> + void *cpu_addr, dma_addr_t dma_addr)
>> +{
>> + struct amdxdna_dev *xdna = ndev->xdna;
>> +
>> + if (amdxdna_iova_on(xdna)) {
>> + amdxdna_iommu_free(xdna, size, cpu_addr, dma_addr);
>> + return;
>> + }
>> +
>> + dma_free_noncoherent(xdna->ddev.dev, size, cpu_addr, dma_addr,
>> DMA_FROM_DEVICE);
>> }
>> int aie2_suspend_fw(struct amdxdna_dev_hdl *ndev)
>> @@ -257,7 +273,7 @@ int aie2_create_context(struct amdxdna_dev_hdl
>> *ndev, struct amdxdna_hwctx *hwct
>> req.num_col = hwctx->num_col;
>> req.num_unused_col = hwctx->num_unused_col;
>> req.num_cq_pairs_requested = 1;
>> - req.pasid = hwctx->client->pasid;
>> + req.pasid = amdxdna_pasid_on(hwctx->client) ?
>> hwctx->client->pasid : 0;
>> req.context_priority = aie2_get_context_priority(ndev, hwctx);
>> ret = aie2_send_mgmt_msg_wait(ndev, &msg);
>> @@ -369,8 +385,8 @@ int aie2_query_status(struct amdxdna_dev_hdl
>> *ndev, char __user *buf,
>> int ret;
>> buff_addr = aie2_alloc_msg_buffer(ndev, &buf_sz, &dma_addr);
>> - if (!buff_addr)
>> - return -ENOMEM;
>> + if (IS_ERR(buff_addr))
>> + return PTR_ERR(buff_addr);
>> /* Go through each hardware context and mark the AIE columns
>> that are active */
>> list_for_each_entry(client, &xdna->client_list, node)
>> @@ -425,8 +441,8 @@ int aie2_query_telemetry(struct amdxdna_dev_hdl
>> *ndev,
>> return -EINVAL;
>> addr = aie2_alloc_msg_buffer(ndev, &buf_sz, &dma_addr);
>> - if (!addr)
>> - return -ENOMEM;
>> + if (IS_ERR(addr))
>> + return PTR_ERR(addr);
>> req.buf_addr = dma_addr;
>> req.buf_size = buf_sz;
>> diff --git a/drivers/accel/amdxdna/aie2_pci.h
>> b/drivers/accel/amdxdna/aie2_pci.h
>> index b20a3661078c..18c252690d9c 100644
>> --- a/drivers/accel/amdxdna/aie2_pci.h
>> +++ b/drivers/accel/amdxdna/aie2_pci.h
>> @@ -337,9 +337,8 @@ int aie2_config_debug_bo(struct amdxdna_hwctx
>> *hwctx, struct amdxdna_sched_job *
>> int (*notify_cb)(void *, void __iomem *, size_t));
>> void *aie2_alloc_msg_buffer(struct amdxdna_dev_hdl *ndev, u32 *size,
>> dma_addr_t *dma_addr);
>> -#define aie2_free_msg_buffer(ndev, size, buff_addr, dma_addr) \
>> - dma_free_noncoherent((ndev)->xdna->ddev.dev, size, buff_addr, \
>> - dma_addr, DMA_FROM_DEVICE)
>> +void aie2_free_msg_buffer(struct amdxdna_dev_hdl *ndev, size_t size,
>> + void *cpu_addr, dma_addr_t dma_addr);
>> /* aie2_hwctx.c */
>> int aie2_hwctx_init(struct amdxdna_hwctx *hwctx);
>> diff --git a/drivers/accel/amdxdna/amdxdna_gem.c
>> b/drivers/accel/amdxdna/amdxdna_gem.c
>> index dfa916eeb2d9..dfc9c2d593d4 100644
>> --- a/drivers/accel/amdxdna/amdxdna_gem.c
>> +++ b/drivers/accel/amdxdna/amdxdna_gem.c
>> @@ -237,6 +237,7 @@ static int amdxdna_hmm_register(struct
>> amdxdna_gem_obj *abo,
>> if (abo->mem.userptr == AMDXDNA_INVALID_ADDR)
>> abo->mem.userptr = addr;
>> +
>> INIT_WORK(&mapp->hmm_unreg_work, amdxdna_hmm_unreg_work);
>> if (is_import_bo(abo) && vma->vm_file && vma->vm_file->f_mapping)
>> mapping_set_unevictable(vma->vm_file->f_mapping);
>> @@ -477,12 +478,48 @@ static void amdxdna_gem_obj_free(struct
>> drm_gem_object *gobj)
>> drm_gem_shmem_free(&abo->base);
>> }
>> +static int amdxdna_gem_obj_open(struct drm_gem_object *gobj,
>> struct drm_file *filp)
>> +{
>> + struct amdxdna_dev *xdna = to_xdna_dev(gobj->dev);
>> + struct amdxdna_gem_obj *abo = to_xdna_obj(gobj);
>> + int ret;
>> +
>> + if (abo->ref) {
>> + abo->ref++;
>> + return 0;
>> + }
>> +
>> + if (amdxdna_iova_on(xdna)) {
>> + ret = amdxdna_iommu_map_bo(xdna, abo);
>> + if (ret)
>> + return ret;
>> + }
>> + abo->ref++;
>> +
>> + return 0;
>> +}
>> +
>> +static void amdxdna_gem_obj_close(struct drm_gem_object *gobj,
>> struct drm_file *filp)
>> +{
>> + struct amdxdna_dev *xdna = to_xdna_dev(gobj->dev);
>> + struct amdxdna_gem_obj *abo = to_xdna_obj(gobj);
>> +
>> + abo->ref--;
>> + if (abo->ref)
>> + return;
>> +
>> + if (amdxdna_iova_on(xdna))
>> + amdxdna_iommu_unmap_bo(xdna, abo);
>> +}
>> +
>> static const struct drm_gem_object_funcs amdxdna_gem_dev_obj_funcs = {
>> .free = amdxdna_gem_dev_obj_free,
>> };
>> static const struct drm_gem_object_funcs amdxdna_gem_shmem_funcs = {
>> .free = amdxdna_gem_obj_free,
>> + .open = amdxdna_gem_obj_open,
>> + .close = amdxdna_gem_obj_close,
>> .print_info = drm_gem_shmem_object_print_info,
>> .pin = drm_gem_shmem_object_pin,
>> .unpin = drm_gem_shmem_object_unpin,
>> @@ -509,6 +546,7 @@ amdxdna_gem_create_obj(struct drm_device *dev,
>> size_t size)
>> abo->mem.userptr = AMDXDNA_INVALID_ADDR;
>> abo->mem.dev_addr = AMDXDNA_INVALID_ADDR;
>> + abo->mem.dma_addr = AMDXDNA_INVALID_ADDR;
>> abo->mem.size = size;
>> INIT_LIST_HEAD(&abo->mem.umap_list);
>> @@ -624,6 +662,7 @@ amdxdna_gem_prime_import(struct drm_device
>> *dev, struct dma_buf *dma_buf)
>> abo = to_xdna_obj(gobj);
>> abo->attach = attach;
>> abo->dma_buf = dma_buf;
>> + abo->type = AMDXDNA_BO_SHMEM;
>> return gobj;
>> @@ -906,7 +945,10 @@ int amdxdna_drm_get_bo_info_ioctl(struct
>> drm_device *dev, void *data, struct drm
>> abo = to_xdna_obj(gobj);
>> args->vaddr = abo->mem.userptr;
>> - args->xdna_addr = abo->mem.dev_addr;
>> + if (abo->mem.dev_addr != AMDXDNA_INVALID_ADDR)
>> + args->xdna_addr = abo->mem.dev_addr;
>> + else
>> + args->xdna_addr = abo->mem.dma_addr;
>> if (abo->type != AMDXDNA_BO_DEV)
>> args->map_offset = drm_vma_node_offset_addr(&gobj->vma_node);
>> diff --git a/drivers/accel/amdxdna/amdxdna_gem.h
>> b/drivers/accel/amdxdna/amdxdna_gem.h
>> index f79fc7f3c93b..01a03cab382b 100644
>> --- a/drivers/accel/amdxdna/amdxdna_gem.h
>> +++ b/drivers/accel/amdxdna/amdxdna_gem.h
>> @@ -6,7 +6,9 @@
>> #ifndef _AMDXDNA_GEM_H_
>> #define _AMDXDNA_GEM_H_
>> +#include <drm/drm_gem_shmem_helper.h>
>> #include <linux/hmm.h>
>> +#include <linux/iova.h>
>> #include "amdxdna_pci_drv.h"
>> struct amdxdna_umap {
>> @@ -25,6 +27,7 @@ struct amdxdna_mem {
>> u64 userptr;
>> void *kva;
>> u64 dev_addr;
>> + u64 dma_addr;
>> size_t size;
>> struct page **pages;
>> u32 nr_pages;
>> @@ -46,6 +49,8 @@ struct amdxdna_gem_obj {
>> u32 assigned_hwctx;
>> struct dma_buf *dma_buf;
>> struct dma_buf_attachment *attach;
>> +
>> + u32 ref;
>> };
>> #define to_gobj(obj) (&(obj)->base.base)
>> @@ -68,6 +73,12 @@ static inline u64 amdxdna_dev_bo_offset(struct
>> amdxdna_gem_obj *abo)
>> return abo->mem.dev_addr - abo->client->dev_heap->mem.dev_addr;
>> }
>> +static inline u64 amdxdna_obj_dma_addr(struct amdxdna_client *client,
>> + struct amdxdna_gem_obj *abo)
>> +{
>> + return amdxdna_pasid_on(client) ? abo->mem.userptr :
>> abo->mem.dma_addr;
>> +}
>> +
>> void amdxdna_umap_put(struct amdxdna_umap *mapp);
>> struct drm_gem_object *
>> diff --git a/drivers/accel/amdxdna/amdxdna_iommu.c
>> b/drivers/accel/amdxdna/amdxdna_iommu.c
>> new file mode 100644
>> index 000000000000..f9b1d6522b82
>> --- /dev/null
>> +++ b/drivers/accel/amdxdna/amdxdna_iommu.c
>> @@ -0,0 +1,183 @@
>> +// SPDX-License-Identifier: GPL-2.0
>> +/*
>> + * Copyright (C) 2025, Advanced Micro Devices, Inc.
>> + */
>> +
>> +#include <drm/amdxdna_accel.h>
>> +#include <linux/iommu.h>
>> +#include <linux/iova.h>
>> +
>> +#include "amdxdna_gem.h"
>> +#include "amdxdna_pci_drv.h"
>> +
>> +static bool force_iova;
>> +module_param(force_iova, bool, 0600);
>> +MODULE_PARM_DESC(force_iova, "Force use IOVA (Default false)");
>> +
>> +static struct iova *amdxdna_iommu_alloc_iova(struct amdxdna_dev *xdna,
>> + size_t size,
>> + dma_addr_t *dma_addr,
>> + bool size_aligned)
>> +{
>> + unsigned long shift, end;
>> + struct iova *iova;
>> +
>> + end = xdna->domain->geometry.aperture_end;
>> + shift = iova_shift(&xdna->iovad);
>> + size = iova_align(&xdna->iovad, size);
>> +
>> + iova = alloc_iova(&xdna->iovad, size >> shift, end >> shift,
>> size_aligned);
>> + if (!iova)
>> + return ERR_PTR(-ENOMEM);
>> +
>> + *dma_addr = iova_dma_addr(&xdna->iovad, iova);
>> +
>> + return iova;
>> +}
>> +
>> +int amdxdna_iommu_map_bo(struct amdxdna_dev *xdna, struct
>> amdxdna_gem_obj *abo)
>> +{
>> + struct sg_table *sgt;
>> + dma_addr_t dma_addr;
>> + struct iova *iova;
>> + size_t size;
>> +
>> + if (abo->type != AMDXDNA_BO_DEV_HEAP && abo->type !=
>> AMDXDNA_BO_SHMEM)
>> + return 0;
>> +
>> + sgt = drm_gem_shmem_get_pages_sgt(&abo->base);
>> + if (IS_ERR(sgt)) {
>> + XDNA_ERR(xdna, "Get sgt failed, ret %ld", PTR_ERR(sgt));
>> + return PTR_ERR(sgt);
>> + }
>> +
>> + if (!sgt->orig_nents || !sg_page(sgt->sgl)) {
>> + XDNA_ERR(xdna, "sgl is zero length or not page backed");
>> + return -EOPNOTSUPP;
>> + }
>> +
>> + iova = amdxdna_iommu_alloc_iova(xdna, abo->mem.size, &dma_addr,
>> + (abo->type == AMDXDNA_BO_DEV_HEAP));
>> + if (IS_ERR(iova)) {
>> + XDNA_ERR(xdna, "Alloc iova failed, ret %ld", PTR_ERR(iova));
>> + return PTR_ERR(iova);
>> + }
>> +
>> + size = iommu_map_sgtable(xdna->domain, dma_addr, sgt,
>> + IOMMU_READ | IOMMU_WRITE);
>> + if (size < abo->mem.size) {
>> + __free_iova(&xdna->iovad, iova);
>> + return -ENXIO;
>> + }
>> +
>> + abo->mem.dma_addr = dma_addr;
>> +
>> + return 0;
>> +}
>> +
>> +void amdxdna_iommu_unmap_bo(struct amdxdna_dev *xdna, struct
>> amdxdna_gem_obj *abo)
>> +{
>> + size_t size;
>> +
>> + if (abo->mem.dma_addr == AMDXDNA_INVALID_ADDR)
>> + return;
>> +
>> + size = iova_align(&xdna->iovad, abo->mem.size);
>> + iommu_unmap(xdna->domain, abo->mem.dma_addr, size);
>> + free_iova(&xdna->iovad, iova_pfn(&xdna->iovad, abo->mem.dma_addr));
>> + abo->mem.dma_addr = AMDXDNA_INVALID_ADDR;
>> +}
>> +
>> +void *amdxdna_iommu_alloc(struct amdxdna_dev *xdna, size_t size,
>> dma_addr_t *dma_addr)
>> +{
>> + struct iova *iova;
>> + void *cpu_addr;
>> + int ret;
>> +
>> + iova = amdxdna_iommu_alloc_iova(xdna, size, dma_addr, true);
>> + if (IS_ERR(iova)) {
>> + XDNA_ERR(xdna, "Alloc iova failed, ret %ld", PTR_ERR(iova));
>> + return iova;
>> + }
>> +
>> + cpu_addr = (void *)__get_free_pages(GFP_KERNEL, get_order(size));
>> + if (!cpu_addr) {
>> + ret = -ENOMEM;
>> + goto free_iova;
>> + }
>> +
>> + ret = iommu_map(xdna->domain, *dma_addr, virt_to_phys(cpu_addr),
>> + iova_align(&xdna->iovad, size),
>> + IOMMU_READ | IOMMU_WRITE, GFP_KERNEL);
>> + if (ret)
>> + goto free_iova;
>> +
>> + return cpu_addr;
>> +
>> +free_iova:
>> + __free_iova(&xdna->iovad, iova);
>> + return ERR_PTR(ret);
>> +}
>> +
>> +void amdxdna_iommu_free(struct amdxdna_dev *xdna, size_t size,
>> + void *cpu_addr, dma_addr_t dma_addr)
>> +{
>> + iommu_unmap(xdna->domain, dma_addr, iova_align(&xdna->iovad,
>> size));
>> + free_iova(&xdna->iovad, iova_pfn(&xdna->iovad, dma_addr));
>> + free_pages((unsigned long)cpu_addr, get_order(size));
>> +}
>> +
>> +int amdxdna_iommu_init(struct amdxdna_dev *xdna)
>> +{
>> + unsigned long order;
>> + int ret;
>> +
>> + xdna->group = iommu_group_get(xdna->ddev.dev);
>> + if (!xdna->group || !force_iova)
>> + return 0;
>> +
>> + xdna->domain = iommu_paging_domain_alloc_flags(xdna->ddev.dev,
>> + IOMMU_HWPT_ALLOC_PASID);
>> + if (IS_ERR(xdna->domain)) {
>> + XDNA_ERR(xdna, "Failed to alloc iommu domain");
>> + ret = PTR_ERR(xdna->domain);
>> + goto put_group;
>> + }
>> +
>> + ret = iova_cache_get();
>> + if (ret)
>> + goto free_domain;
>> +
>> + order = __ffs(xdna->domain->pgsize_bitmap);
>> + init_iova_domain(&xdna->iovad, 1UL << order, 0);
>> +
>> + ret = iommu_attach_group(xdna->domain, xdna->group);
>> + if (ret)
>> + goto put_iova;
>> +
>> + return 0;
>> +
>> +put_iova:
>> + put_iova_domain(&xdna->iovad);
>> + iova_cache_put();
>> +free_domain:
>> + iommu_domain_free(xdna->domain);
>> +put_group:
>> + iommu_group_put(xdna->group);
>> + xdna->domain = NULL;
>> +
>> + return ret;
>> +}
>> +
>> +void amdxdna_iommu_fini(struct amdxdna_dev *xdna)
>> +{
>> + if (xdna->domain) {
>> + iommu_detach_group(xdna->domain, xdna->group);
>> + put_iova_domain(&xdna->iovad);
>> + iova_cache_put();
>> + iommu_domain_free(xdna->domain);
>> + }
>> +
>> + if (xdna->group)
>> + iommu_group_put(xdna->group);
>> +}
>> diff --git a/drivers/accel/amdxdna/amdxdna_pci_drv.c
>> b/drivers/accel/amdxdna/amdxdna_pci_drv.c
>> index 45f5c12fc67f..ed5fe643293d 100644
>> --- a/drivers/accel/amdxdna/amdxdna_pci_drv.c
>> +++ b/drivers/accel/amdxdna/amdxdna_pci_drv.c
>> @@ -69,18 +69,21 @@ static int amdxdna_drm_open(struct drm_device
>> *ddev, struct drm_file *filp)
>> client->pid = pid_nr(rcu_access_pointer(filp->pid));
>> client->xdna = xdna;
>> -
>> - client->sva = iommu_sva_bind_device(xdna->ddev.dev, current->mm);
>> - if (IS_ERR(client->sva)) {
>> - ret = PTR_ERR(client->sva);
>> - XDNA_ERR(xdna, "SVA bind device failed, ret %d", ret);
>> - goto failed;
>> - }
>> - client->pasid = iommu_sva_get_pasid(client->sva);
>> - if (client->pasid == IOMMU_PASID_INVALID) {
>> - XDNA_ERR(xdna, "SVA get pasid failed");
>> - ret = -ENODEV;
>> - goto unbind_sva;
>> + client->pasid = IOMMU_PASID_INVALID;
>> +
>> + if (!amdxdna_iova_on(xdna)) {
>> + client->sva = iommu_sva_bind_device(xdna->ddev.dev,
>> current->mm);
>> + if (IS_ERR(client->sva)) {
>> + ret = PTR_ERR(client->sva);
>> + XDNA_ERR(xdna, "SVA bind device failed, ret %d", ret);
>> + goto failed;
>> + }
>> + client->pasid = iommu_sva_get_pasid(client->sva);
>> + if (client->pasid == IOMMU_PASID_INVALID) {
>> + XDNA_ERR(xdna, "SVA get pasid failed");
>> + ret = -ENODEV;
>> + goto unbind_sva;
>> + }
>> }
>> init_srcu_struct(&client->hwctx_srcu);
>> xa_init_flags(&client->hwctx_xa, XA_FLAGS_ALLOC);
>> @@ -97,7 +100,8 @@ static int amdxdna_drm_open(struct drm_device
>> *ddev, struct drm_file *filp)
>> return 0;
>> unbind_sva:
>> - iommu_sva_unbind_device(client->sva);
>> + if (!IS_ERR_OR_NULL(client->sva))
>> + iommu_sva_unbind_device(client->sva);
>> failed:
>> kfree(client);
>> @@ -115,7 +119,8 @@ static void amdxdna_client_cleanup(struct
>> amdxdna_client *client)
>> if (client->dev_heap)
>> drm_gem_object_put(to_gobj(client->dev_heap));
>> - iommu_sva_unbind_device(client->sva);
>> + if (!IS_ERR_OR_NULL(client->sva))
>> + iommu_sva_unbind_device(client->sva);
>> kfree(client);
>> }
>> @@ -275,9 +280,15 @@ static int amdxdna_probe(struct pci_dev *pdev,
>> const struct pci_device_id *id)
>> fs_reclaim_release(GFP_KERNEL);
>> }
>> + ret = amdxdna_iommu_init(xdna);
>> + if (ret)
>> + return ret;
>> +
>> xdna->notifier_wq = alloc_ordered_workqueue("notifier_wq",
>> WQ_MEM_RECLAIM);
>> - if (!xdna->notifier_wq)
>> - return -ENOMEM;
>> + if (!xdna->notifier_wq) {
>> + ret = -ENOMEM;
>> + goto iommu_fini;
>> + }
>> mutex_lock(&xdna->dev_lock);
>> ret = xdna->dev_info->ops->init(xdna);
>> @@ -309,6 +320,8 @@ static int amdxdna_probe(struct pci_dev *pdev,
>> const struct pci_device_id *id)
>> mutex_unlock(&xdna->dev_lock);
>> destroy_notifier_wq:
>> destroy_workqueue(xdna->notifier_wq);
>> +iommu_fini:
>> + amdxdna_iommu_fini(xdna);
>> return ret;
>> }
>> @@ -334,6 +347,8 @@ static void amdxdna_remove(struct pci_dev *pdev)
>> xdna->dev_info->ops->fini(xdna);
>> mutex_unlock(&xdna->dev_lock);
>> +
>> + amdxdna_iommu_fini(xdna);
>> }
>> static const struct dev_pm_ops amdxdna_pm_ops = {
>> diff --git a/drivers/accel/amdxdna/amdxdna_pci_drv.h
>> b/drivers/accel/amdxdna/amdxdna_pci_drv.h
>> index 6580cb5ec7e2..231f8c127781 100644
>> --- a/drivers/accel/amdxdna/amdxdna_pci_drv.h
>> +++ b/drivers/accel/amdxdna/amdxdna_pci_drv.h
>> @@ -6,7 +6,10 @@
>> #ifndef _AMDXDNA_PCI_DRV_H_
>> #define _AMDXDNA_PCI_DRV_H_
>> +#include <drm/amdxdna_accel.h>
>> #include <drm/drm_print.h>
>> +#include <linux/iommu.h>
>> +#include <linux/iova.h>
>> #include <linux/workqueue.h>
>> #include <linux/xarray.h>
>> @@ -101,6 +104,10 @@ struct amdxdna_dev {
>> struct amdxdna_fw_ver fw_ver;
>> struct rw_semaphore notifier_lock; /* for mmu notifier*/
>> struct workqueue_struct *notifier_wq;
>> +
>> + struct iommu_group *group;
>> + struct iommu_domain *domain;
>> + struct iova_domain iovad;
>> };
>> /*
>> @@ -144,4 +151,21 @@ extern const struct amdxdna_dev_info dev_npu6_info;
>> int amdxdna_sysfs_init(struct amdxdna_dev *xdna);
>> void amdxdna_sysfs_fini(struct amdxdna_dev *xdna);
>> +int amdxdna_iommu_init(struct amdxdna_dev *xdna);
>> +void amdxdna_iommu_fini(struct amdxdna_dev *xdna);
>> +int amdxdna_iommu_map_bo(struct amdxdna_dev *xdna, struct
>> amdxdna_gem_obj *abo);
>> +void amdxdna_iommu_unmap_bo(struct amdxdna_dev *xdna, struct
>> amdxdna_gem_obj *abo);
>> +void *amdxdna_iommu_alloc(struct amdxdna_dev *xdna, size_t size,
>> dma_addr_t *dma_addr);
>> +void amdxdna_iommu_free(struct amdxdna_dev *xdna, size_t size,
>> + void *cpu_addr, dma_addr_t dma_addr);
>> +
>> +static inline bool amdxdna_iova_on(struct amdxdna_dev *xdna)
>> +{
>> + return !!xdna->domain;
>> +}
>> +
>> +static inline bool amdxdna_pasid_on(struct amdxdna_client *client)
>> +{
>> + return client->pasid != IOMMU_PASID_INVALID;
>> +}
>> #endif /* _AMDXDNA_PCI_DRV_H_ */
>
© 2016 - 2026 Red Hat, Inc.