1 /* SPDX-License-Identifier: BSD-3-Clause
2 * Copyright(c) 2010-2014 Intel Corporation
9 * determine if VFIO is present on the system
11 #if !defined(VFIO_PRESENT) && defined(RTE_EAL_VFIO)
12 #include <linux/version.h>
13 #if LINUX_VERSION_CODE >= KERNEL_VERSION(3, 6, 0)
16 #pragma message("VFIO configured but not supported by this kernel, disabling.")
17 #endif /* kernel version >= 3.6.0 */
18 #endif /* RTE_EAL_VFIO */
23 #include <linux/vfio.h>
25 #define RTE_VFIO_TYPE1 VFIO_TYPE1_IOMMU
27 #ifndef VFIO_SPAPR_TCE_v2_IOMMU
28 #define RTE_VFIO_SPAPR 7
29 #define VFIO_IOMMU_SPAPR_REGISTER_MEMORY _IO(VFIO_TYPE, VFIO_BASE + 17)
30 #define VFIO_IOMMU_SPAPR_UNREGISTER_MEMORY _IO(VFIO_TYPE, VFIO_BASE + 18)
31 #define VFIO_IOMMU_SPAPR_TCE_CREATE _IO(VFIO_TYPE, VFIO_BASE + 19)
32 #define VFIO_IOMMU_SPAPR_TCE_REMOVE _IO(VFIO_TYPE, VFIO_BASE + 20)
34 struct vfio_iommu_spapr_register_memory {
41 struct vfio_iommu_spapr_tce_create {
54 struct vfio_iommu_spapr_tce_remove {
61 struct vfio_iommu_spapr_tce_ddw_info {
63 uint32_t max_dynamic_windows_supported;
67 /* SPAPR_v2 is not present, but SPAPR might be */
68 #ifndef VFIO_SPAPR_TCE_IOMMU
69 #define VFIO_IOMMU_SPAPR_TCE_GET_INFO _IO(VFIO_TYPE, VFIO_BASE + 12)
71 struct vfio_iommu_spapr_tce_info {
74 uint32_t dma32_window_start;
75 uint32_t dma32_window_size;
76 struct vfio_iommu_spapr_tce_ddw_info ddw;
78 #endif /* VFIO_SPAPR_TCE_IOMMU */
80 #else /* VFIO_SPAPR_TCE_v2_IOMMU */
81 #define RTE_VFIO_SPAPR VFIO_SPAPR_TCE_v2_IOMMU
84 #define VFIO_MAX_GROUPS RTE_MAX_VFIO_GROUPS
85 #define VFIO_MAX_CONTAINERS RTE_MAX_VFIO_CONTAINERS
88 * we don't need to store device fd's anywhere since they can be obtained from
89 * the group fd via an ioctl() call.
97 /* DMA mapping function prototype.
98 * Takes VFIO container fd as a parameter.
99 * Returns 0 on success, -1 on error.
101 typedef int (*vfio_dma_func_t)(int);
103 /* Custom memory region DMA mapping function prototype.
104 * Takes VFIO container fd, virtual address, phisical address, length and
105 * operation type (0 to unmap 1 for map) as a parameters.
106 * Returns 0 on success, -1 on error.
108 typedef int (*vfio_dma_user_func_t)(int fd, uint64_t vaddr, uint64_t iova,
109 uint64_t len, int do_map);
111 struct vfio_iommu_type {
114 vfio_dma_user_func_t dma_user_map_func;
115 vfio_dma_func_t dma_map_func;
118 /* pick IOMMU type. returns a pointer to vfio_iommu_type or NULL for error */
119 const struct vfio_iommu_type *
120 vfio_set_iommu_type(int vfio_container_fd);
122 /* check if we have any supported extensions */
124 vfio_has_supported_extensions(int vfio_container_fd);
126 int vfio_mp_sync_setup(void);
128 #define EAL_VFIO_MP "eal_vfio_mp_sync"
130 #define SOCKET_REQ_CONTAINER 0x100
131 #define SOCKET_REQ_GROUP 0x200
132 #define SOCKET_OK 0x0
133 #define SOCKET_NO_FD 0x1
134 #define SOCKET_ERR 0xFF
136 struct vfio_mp_param {
142 #endif /* VFIO_PRESENT */
144 #endif /* EAL_VFIO_H_ */