vfio: export functions even when disabled
[dpdk.git] / lib / librte_eal / common / include / rte_vfio.h
1 /* SPDX-License-Identifier: BSD-3-Clause
2  * Copyright(c) 2017 6WIND S.A.
3  */
4
5 #ifndef _RTE_VFIO_H_
6 #define _RTE_VFIO_H_
7
8 /**
9  * @file
10  * RTE VFIO. This library provides various VFIO related utility functions.
11  */
12
13 #ifdef __cplusplus
14 extern "C" {
15 #endif
16
17 /*
18  * determine if VFIO is present on the system
19  */
20 #if !defined(VFIO_PRESENT) && defined(RTE_EAL_VFIO)
21 #include <linux/version.h>
22 #if LINUX_VERSION_CODE >= KERNEL_VERSION(3, 6, 0)
23 #define VFIO_PRESENT
24 #endif /* kernel version >= 3.6.0 */
25 #endif /* RTE_EAL_VFIO */
26
27 #ifdef VFIO_PRESENT
28
29 #include <linux/vfio.h>
30
31 #define VFIO_DIR "/dev/vfio"
32 #define VFIO_CONTAINER_PATH "/dev/vfio/vfio"
33 #define VFIO_GROUP_FMT "/dev/vfio/%u"
34 #define VFIO_NOIOMMU_GROUP_FMT "/dev/vfio/noiommu-%u"
35 #define VFIO_GET_REGION_ADDR(x) ((uint64_t) x << 40ULL)
36 #define VFIO_GET_REGION_IDX(x) (x >> 40)
37 #define VFIO_NOIOMMU_MODE      \
38         "/sys/module/vfio/parameters/enable_unsafe_noiommu_mode"
39
40 /* NOIOMMU is defined from kernel version 4.5 onwards */
41 #ifdef VFIO_NOIOMMU_IOMMU
42 #define RTE_VFIO_NOIOMMU VFIO_NOIOMMU_IOMMU
43 #else
44 #define RTE_VFIO_NOIOMMU 8
45 #endif
46
47 #else /* not VFIO_PRESENT */
48
49 /* we don't need an actual definition, only pointer is used */
50 struct vfio_device_info;
51
52 #endif /* VFIO_PRESENT */
53
54 /**
55  * Setup vfio_cfg for the device identified by its address.
56  * It discovers the configured I/O MMU groups or sets a new one for the device.
57  * If a new groups is assigned, the DMA mapping is performed.
58  *
59  * This function is only relevant to linux and will return
60  * an error on BSD.
61  *
62  * @param sysfs_base
63  *   sysfs path prefix.
64  *
65  * @param dev_addr
66  *   device location.
67  *
68  * @param vfio_dev_fd
69  *   VFIO fd.
70  *
71  * @param device_info
72  *   Device information.
73  *
74  * @return
75  *   0 on success.
76  *   <0 on failure.
77  *   >1 if the device cannot be managed this way.
78  */
79 int rte_vfio_setup_device(const char *sysfs_base, const char *dev_addr,
80                 int *vfio_dev_fd, struct vfio_device_info *device_info);
81
82 /**
83  * Release a device mapped to a VFIO-managed I/O MMU group.
84  *
85  * This function is only relevant to linux and will return
86  * an error on BSD.
87  *
88  * @param sysfs_base
89  *   sysfs path prefix.
90  *
91  * @param dev_addr
92  *   device location.
93  *
94  * @param fd
95  *   VFIO fd.
96  *
97  * @return
98  *   0 on success.
99  *   <0 on failure.
100  */
101 int rte_vfio_release_device(const char *sysfs_base, const char *dev_addr, int fd);
102
103 /**
104  * Enable a VFIO-related kmod.
105  *
106  * This function is only relevant to linux and will return
107  * an error on BSD.
108  *
109  * @param modname
110  *   kernel module name.
111  *
112  * @return
113  *   0 on success.
114  *   <0 on failure.
115  */
116 int rte_vfio_enable(const char *modname);
117
118 /**
119  * Check whether a VFIO-related kmod is enabled.
120  *
121  * This function is only relevant to linux and will return
122  * an error on BSD.
123  *
124  * @param modname
125  *   kernel module name.
126  *
127  * @return
128  *   !0 if true.
129  *   0 otherwise.
130  */
131 int rte_vfio_is_enabled(const char *modname);
132
133 /**
134  * Whether VFIO NOIOMMU mode is enabled.
135  *
136  * This function is only relevant to linux and will return
137  * an error on BSD.
138  *
139  * @return
140  *   !0 if true.
141  *   0 otherwise.
142  */
143 int rte_vfio_noiommu_is_enabled(void);
144
145 /**
146  * Remove group fd from internal VFIO group fd array/
147  *
148  * This function is only relevant to linux and will return
149  * an error on BSD.
150  *
151  * @param vfio_group_fd
152  *   VFIO Grouup FD.
153  *
154  * @return
155  *   0 on success.
156  *   <0 on failure.
157  */
158 int
159 rte_vfio_clear_group(int vfio_group_fd);
160
161 /**
162  * Map memory region for use with VFIO.
163  *
164  * @note requires at least one device to be attached at the time of mapping.
165  *
166  * @param vaddr
167  *   Starting virtual address of memory to be mapped.
168  *
169  * @param iova
170  *   Starting IOVA address of memory to be mapped.
171  *
172  * @param len
173  *   Length of memory segment being mapped.
174  *
175  * @return
176  *   0 if success.
177  *   -1 on error.
178  */
179 int  __rte_experimental
180 rte_vfio_dma_map(uint64_t vaddr, uint64_t iova, uint64_t len);
181
182
183 /**
184  * Unmap memory region from VFIO.
185  *
186  * @param vaddr
187  *   Starting virtual address of memory to be unmapped.
188  *
189  * @param iova
190  *   Starting IOVA address of memory to be unmapped.
191  *
192  * @param len
193  *   Length of memory segment being unmapped.
194  *
195  * @return
196  *   0 if success.
197  *   -1 on error.
198  */
199
200 int __rte_experimental
201 rte_vfio_dma_unmap(uint64_t vaddr, uint64_t iova, uint64_t len);
202 /**
203  * Parse IOMMU group number for a device
204  *
205  * This function is only relevant to linux and will return
206  * an error on BSD.
207  *
208  * @param sysfs_base
209  *   sysfs path prefix.
210  *
211  * @param dev_addr
212  *   device location.
213  *
214  * @param iommu_group_num
215  *   iommu group number
216  *
217  * @return
218  *  >0 on success
219  *   0 for non-existent group or VFIO
220  *  <0 for errors
221  */
222 int __rte_experimental
223 rte_vfio_get_group_num(const char *sysfs_base,
224                       const char *dev_addr, int *iommu_group_num);
225
226 /**
227  * Open VFIO container fd or get an existing one
228  *
229  * This function is only relevant to linux and will return
230  * an error on BSD.
231  *
232  * @return
233  *  > 0 container fd
234  *  < 0 for errors
235  */
236 int __rte_experimental
237 rte_vfio_get_container_fd(void);
238
239 /**
240  * Open VFIO group fd or get an existing one
241  *
242  * This function is only relevant to linux and will return
243  * an error on BSD.
244  *
245  * @param iommu_group_num
246  *   iommu group number
247  *
248  * @return
249  *  > 0 group fd
250  *  < 0 for errors
251  */
252 int __rte_experimental
253 rte_vfio_get_group_fd(int iommu_group_num);
254
255 #ifdef __cplusplus
256 }
257 #endif
258
259 #endif /* _RTE_VFIO_H_ */