mirror of
https://github.com/torvalds/linux.git
synced 2026-05-25 15:41:52 +02:00
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. Reviewed-by: Mario Limonciello (AMD) <superm1@kernel.org> Signed-off-by: Lizhi Hou <lizhi.hou@amd.com> Link: https://patch.msgid.link/20260126193001.1400545-1-lizhi.hou@amd.com
26 lines
454 B
Makefile
26 lines
454 B
Makefile
# SPDX-License-Identifier: GPL-2.0-only
|
|
|
|
amdxdna-y := \
|
|
aie2_ctx.o \
|
|
aie2_error.o \
|
|
aie2_message.o \
|
|
aie2_pci.o \
|
|
aie2_pm.o \
|
|
aie2_psp.o \
|
|
aie2_smu.o \
|
|
aie2_solver.o \
|
|
amdxdna_ctx.o \
|
|
amdxdna_gem.o \
|
|
amdxdna_iommu.o \
|
|
amdxdna_mailbox.o \
|
|
amdxdna_mailbox_helper.o \
|
|
amdxdna_pci_drv.o \
|
|
amdxdna_pm.o \
|
|
amdxdna_sysfs.o \
|
|
amdxdna_ubuf.o \
|
|
npu1_regs.o \
|
|
npu4_regs.o \
|
|
npu5_regs.o \
|
|
npu6_regs.o
|
|
obj-$(CONFIG_DRM_ACCEL_AMDXDNA) = amdxdna.o
|