mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2025-01-05 21:35:04 +08:00
234489ac56
vfio-cdx driver enables IOCTLs for user space to query MMIO regions for CDX devices and mmap them. This change also adds support for reset of CDX devices. With VFIO enabled on CDX devices, user-space applications can also exercise DMA securely via IOMMU on these devices. This change adds the VFIO CDX driver and enables the following ioctls for CDX devices: - VFIO_DEVICE_GET_INFO: - VFIO_DEVICE_GET_REGION_INFO - VFIO_DEVICE_RESET Signed-off-by: Nipun Gupta <nipun.gupta@amd.com> Reviewed-by: Pieter Jansen van Vuuren <pieter.jansen-van-vuuren@amd.com> Tested-by: Nikhil Agarwal <nikhil.agarwal@amd.com> Link: https://lore.kernel.org/r/20230531124557.11009-1-nipun.gupta@amd.com Signed-off-by: Alex Williamson <alex.williamson@redhat.com>
18 lines
431 B
Plaintext
18 lines
431 B
Plaintext
# SPDX-License-Identifier: GPL-2.0
|
|
#
|
|
# VFIO CDX configuration
|
|
#
|
|
# Copyright (C) 2022-2023, Advanced Micro Devices, Inc.
|
|
#
|
|
|
|
config VFIO_CDX
|
|
tristate "VFIO support for CDX bus devices"
|
|
depends on CDX_BUS
|
|
select EVENTFD
|
|
help
|
|
Driver to enable VFIO support for the devices on CDX bus.
|
|
This is required to make use of CDX devices present in
|
|
the system using the VFIO framework.
|
|
|
|
If you don't know what to do here, say N.
|