blob: 3c1821c2279027751260897695841e55e5d9e175 [file] [log] [blame]
Ben Cheng655a7c02013-10-16 16:09:24 -07001/****************************************************************************
2 ****************************************************************************
3 ***
4 *** This header was automatically generated from a Linux kernel header
5 *** of the same name, to make information necessary for userspace to
6 *** call into the kernel available to libc. It contains only constants,
7 *** structures, and macros generated from the original header, and thus,
8 *** contains no copyrightable information.
9 ***
10 *** To edit the content of this header, modify the corresponding
11 *** source file (e.g. under external/kernel-headers/original/) then
12 *** run bionic/libc/kernel/tools/update_all.py
13 ***
14 *** Any manual change here will be lost the next time this script will
15 *** be run. You've been warned!
16 ***
17 ****************************************************************************
18 ****************************************************************************/
19#ifndef _UAPIVFIO_H
20#define _UAPIVFIO_H
21#include <linux/types.h>
22#include <linux/ioctl.h>
Ben Cheng655a7c02013-10-16 16:09:24 -070023#define VFIO_API_VERSION 0
24#define VFIO_TYPE1_IOMMU 1
Christopher Ferris38062f92014-07-09 15:33:25 -070025#define VFIO_SPAPR_TCE_IOMMU 2
Christopher Ferrisba8d4f42014-09-03 19:56:49 -070026#define VFIO_TYPE1v2_IOMMU 3
Christopher Ferrisba8d4f42014-09-03 19:56:49 -070027#define VFIO_DMA_CC_IOMMU 4
Christopher Ferris82d75042015-01-26 10:57:07 -080028#define VFIO_EEH 5
29#define VFIO_TYPE1_NESTING_IOMMU 6
Christopher Ferris05d08e92016-02-04 13:16:38 -080030#define VFIO_SPAPR_TCE_v2_IOMMU 7
Christopher Ferris106b3a82016-08-24 12:15:38 -070031#define VFIO_NOIOMMU_IOMMU 8
Christopher Ferrisa9750ed2021-05-03 14:02:49 -070032#define VFIO_UNMAP_ALL 9
33#define VFIO_UPDATE_VADDR 10
Christopher Ferris05d08e92016-02-04 13:16:38 -080034#define VFIO_TYPE (';')
Christopher Ferris38062f92014-07-09 15:33:25 -070035#define VFIO_BASE 100
Christopher Ferris106b3a82016-08-24 12:15:38 -070036struct vfio_info_cap_header {
Christopher Ferris106b3a82016-08-24 12:15:38 -070037 __u16 id;
38 __u16 version;
39 __u32 next;
40};
Ben Cheng655a7c02013-10-16 16:09:24 -070041#define VFIO_GET_API_VERSION _IO(VFIO_TYPE, VFIO_BASE + 0)
42#define VFIO_CHECK_EXTENSION _IO(VFIO_TYPE, VFIO_BASE + 1)
Christopher Ferris05d08e92016-02-04 13:16:38 -080043#define VFIO_SET_IOMMU _IO(VFIO_TYPE, VFIO_BASE + 2)
Christopher Ferris38062f92014-07-09 15:33:25 -070044struct vfio_group_status {
Tao Baod7db5942015-01-28 10:07:51 -080045 __u32 argsz;
46 __u32 flags;
Christopher Ferris05d08e92016-02-04 13:16:38 -080047#define VFIO_GROUP_FLAGS_VIABLE (1 << 0)
Christopher Ferris38062f92014-07-09 15:33:25 -070048#define VFIO_GROUP_FLAGS_CONTAINER_SET (1 << 1)
Ben Cheng655a7c02013-10-16 16:09:24 -070049};
50#define VFIO_GROUP_GET_STATUS _IO(VFIO_TYPE, VFIO_BASE + 3)
Christopher Ferris05d08e92016-02-04 13:16:38 -080051#define VFIO_GROUP_SET_CONTAINER _IO(VFIO_TYPE, VFIO_BASE + 4)
Christopher Ferris38062f92014-07-09 15:33:25 -070052#define VFIO_GROUP_UNSET_CONTAINER _IO(VFIO_TYPE, VFIO_BASE + 5)
Ben Cheng655a7c02013-10-16 16:09:24 -070053#define VFIO_GROUP_GET_DEVICE_FD _IO(VFIO_TYPE, VFIO_BASE + 6)
54struct vfio_device_info {
Christopher Ferris05d08e92016-02-04 13:16:38 -080055 __u32 argsz;
Tao Baod7db5942015-01-28 10:07:51 -080056 __u32 flags;
Ben Cheng655a7c02013-10-16 16:09:24 -070057#define VFIO_DEVICE_FLAGS_RESET (1 << 0)
58#define VFIO_DEVICE_FLAGS_PCI (1 << 1)
Christopher Ferris05d08e92016-02-04 13:16:38 -080059#define VFIO_DEVICE_FLAGS_PLATFORM (1 << 2)
60#define VFIO_DEVICE_FLAGS_AMBA (1 << 3)
Christopher Ferris525ce912017-07-26 13:12:53 -070061#define VFIO_DEVICE_FLAGS_CCW (1 << 4)
Christopher Ferris86a48372019-01-10 14:14:59 -080062#define VFIO_DEVICE_FLAGS_AP (1 << 5)
Christopher Ferris32ff3f82020-12-14 13:10:04 -080063#define VFIO_DEVICE_FLAGS_FSL_MC (1 << 6)
64#define VFIO_DEVICE_FLAGS_CAPS (1 << 7)
Christopher Ferris05d08e92016-02-04 13:16:38 -080065 __u32 num_regions;
Tao Baod7db5942015-01-28 10:07:51 -080066 __u32 num_irqs;
Christopher Ferris32ff3f82020-12-14 13:10:04 -080067 __u32 cap_offset;
Ben Cheng655a7c02013-10-16 16:09:24 -070068};
69#define VFIO_DEVICE_GET_INFO _IO(VFIO_TYPE, VFIO_BASE + 7)
Christopher Ferris48af7cb2017-02-21 12:35:09 -080070#define VFIO_DEVICE_API_PCI_STRING "vfio-pci"
71#define VFIO_DEVICE_API_PLATFORM_STRING "vfio-platform"
72#define VFIO_DEVICE_API_AMBA_STRING "vfio-amba"
Christopher Ferris525ce912017-07-26 13:12:53 -070073#define VFIO_DEVICE_API_CCW_STRING "vfio-ccw"
Christopher Ferris86a48372019-01-10 14:14:59 -080074#define VFIO_DEVICE_API_AP_STRING "vfio-ap"
Christopher Ferris32ff3f82020-12-14 13:10:04 -080075#define VFIO_DEVICE_INFO_CAP_ZPCI_BASE 1
76#define VFIO_DEVICE_INFO_CAP_ZPCI_GROUP 2
77#define VFIO_DEVICE_INFO_CAP_ZPCI_UTIL 3
78#define VFIO_DEVICE_INFO_CAP_ZPCI_PFIP 4
Ben Cheng655a7c02013-10-16 16:09:24 -070079struct vfio_region_info {
Tao Baod7db5942015-01-28 10:07:51 -080080 __u32 argsz;
81 __u32 flags;
Ben Cheng655a7c02013-10-16 16:09:24 -070082#define VFIO_REGION_INFO_FLAG_READ (1 << 0)
83#define VFIO_REGION_INFO_FLAG_WRITE (1 << 1)
Christopher Ferris38062f92014-07-09 15:33:25 -070084#define VFIO_REGION_INFO_FLAG_MMAP (1 << 2)
Christopher Ferris106b3a82016-08-24 12:15:38 -070085#define VFIO_REGION_INFO_FLAG_CAPS (1 << 3)
Tao Baod7db5942015-01-28 10:07:51 -080086 __u32 index;
Christopher Ferris106b3a82016-08-24 12:15:38 -070087 __u32 cap_offset;
Tao Baod7db5942015-01-28 10:07:51 -080088 __u64 size;
Tao Baod7db5942015-01-28 10:07:51 -080089 __u64 offset;
Ben Cheng655a7c02013-10-16 16:09:24 -070090};
Christopher Ferris106b3a82016-08-24 12:15:38 -070091#define VFIO_DEVICE_GET_REGION_INFO _IO(VFIO_TYPE, VFIO_BASE + 8)
92#define VFIO_REGION_INFO_CAP_SPARSE_MMAP 1
93struct vfio_region_sparse_mmap_area {
94 __u64 offset;
Christopher Ferris106b3a82016-08-24 12:15:38 -070095 __u64 size;
96};
97struct vfio_region_info_cap_sparse_mmap {
98 struct vfio_info_cap_header header;
Christopher Ferris106b3a82016-08-24 12:15:38 -070099 __u32 nr_areas;
100 __u32 reserved;
101 struct vfio_region_sparse_mmap_area areas[];
102};
Christopher Ferris106b3a82016-08-24 12:15:38 -0700103#define VFIO_REGION_INFO_CAP_TYPE 2
104struct vfio_region_info_cap_type {
105 struct vfio_info_cap_header header;
106 __u32 type;
Christopher Ferris106b3a82016-08-24 12:15:38 -0700107 __u32 subtype;
108};
109#define VFIO_REGION_TYPE_PCI_VENDOR_TYPE (1 << 31)
110#define VFIO_REGION_TYPE_PCI_VENDOR_MASK (0xffff)
Christopher Ferris9584fa42019-12-09 15:36:13 -0800111#define VFIO_REGION_TYPE_GFX (1)
112#define VFIO_REGION_TYPE_CCW (2)
Christopher Ferris10a76e62022-06-08 13:31:52 -0700113#define VFIO_REGION_TYPE_MIGRATION_DEPRECATED (3)
Christopher Ferris106b3a82016-08-24 12:15:38 -0700114#define VFIO_REGION_SUBTYPE_INTEL_IGD_OPREGION (1)
115#define VFIO_REGION_SUBTYPE_INTEL_IGD_HOST_CFG (2)
116#define VFIO_REGION_SUBTYPE_INTEL_IGD_LPC_CFG (3)
Christopher Ferris9584fa42019-12-09 15:36:13 -0800117#define VFIO_REGION_SUBTYPE_NVIDIA_NVLINK2_RAM (1)
118#define VFIO_REGION_SUBTYPE_IBM_NVLINK2_ATSD (1)
Christopher Ferris86a48372019-01-10 14:14:59 -0800119#define VFIO_REGION_SUBTYPE_GFX_EDID (1)
120struct vfio_region_gfx_edid {
121 __u32 edid_offset;
122 __u32 edid_max_size;
123 __u32 edid_size;
124 __u32 max_xres;
125 __u32 max_yres;
126 __u32 link_state;
127#define VFIO_DEVICE_GFX_LINK_STATE_UP 1
128#define VFIO_DEVICE_GFX_LINK_STATE_DOWN 2
129};
Christopher Ferrisaeddbcf2019-07-08 12:45:46 -0700130#define VFIO_REGION_SUBTYPE_CCW_ASYNC_CMD (1)
Christopher Ferris8177cdf2020-08-03 11:53:55 -0700131#define VFIO_REGION_SUBTYPE_CCW_SCHIB (2)
132#define VFIO_REGION_SUBTYPE_CCW_CRW (3)
Christopher Ferris10a76e62022-06-08 13:31:52 -0700133#define VFIO_REGION_SUBTYPE_MIGRATION_DEPRECATED (1)
Christopher Ferris8177cdf2020-08-03 11:53:55 -0700134struct vfio_device_migration_info {
135 __u32 device_state;
Christopher Ferris10a76e62022-06-08 13:31:52 -0700136#define VFIO_DEVICE_STATE_V1_STOP (0)
137#define VFIO_DEVICE_STATE_V1_RUNNING (1 << 0)
138#define VFIO_DEVICE_STATE_V1_SAVING (1 << 1)
139#define VFIO_DEVICE_STATE_V1_RESUMING (1 << 2)
140#define VFIO_DEVICE_STATE_MASK (VFIO_DEVICE_STATE_V1_RUNNING | VFIO_DEVICE_STATE_V1_SAVING | VFIO_DEVICE_STATE_V1_RESUMING)
141#define VFIO_DEVICE_STATE_VALID(state) (state & VFIO_DEVICE_STATE_V1_RESUMING ? (state & VFIO_DEVICE_STATE_MASK) == VFIO_DEVICE_STATE_V1_RESUMING : 1)
142#define VFIO_DEVICE_STATE_IS_ERROR(state) ((state & VFIO_DEVICE_STATE_MASK) == (VFIO_DEVICE_STATE_V1_SAVING | VFIO_DEVICE_STATE_V1_RESUMING))
143#define VFIO_DEVICE_STATE_SET_ERROR(state) ((state & ~VFIO_DEVICE_STATE_MASK) | VFIO_DEVICE_STATE_V1_SAVING | VFIO_DEVICE_STATE_V1_RESUMING)
Christopher Ferris8177cdf2020-08-03 11:53:55 -0700144 __u32 reserved;
145 __u64 pending_bytes;
146 __u64 data_offset;
147 __u64 data_size;
148};
Christopher Ferris76a1d452018-06-27 14:12:29 -0700149#define VFIO_REGION_INFO_CAP_MSIX_MAPPABLE 3
Christopher Ferrisd842e432019-03-07 10:21:59 -0800150#define VFIO_REGION_INFO_CAP_NVLINK2_SSATGT 4
151struct vfio_region_info_cap_nvlink2_ssatgt {
152 struct vfio_info_cap_header header;
153 __u64 tgt;
154};
155#define VFIO_REGION_INFO_CAP_NVLINK2_LNKSPD 5
156struct vfio_region_info_cap_nvlink2_lnkspd {
157 struct vfio_info_cap_header header;
158 __u32 link_speed;
159 __u32 __pad;
160};
Christopher Ferris106b3a82016-08-24 12:15:38 -0700161struct vfio_irq_info {
Christopher Ferris106b3a82016-08-24 12:15:38 -0700162 __u32 argsz;
Tao Baod7db5942015-01-28 10:07:51 -0800163 __u32 flags;
Ben Cheng655a7c02013-10-16 16:09:24 -0700164#define VFIO_IRQ_INFO_EVENTFD (1 << 0)
165#define VFIO_IRQ_INFO_MASKABLE (1 << 1)
Christopher Ferris106b3a82016-08-24 12:15:38 -0700166#define VFIO_IRQ_INFO_AUTOMASKED (1 << 2)
Ben Cheng655a7c02013-10-16 16:09:24 -0700167#define VFIO_IRQ_INFO_NORESIZE (1 << 3)
Tao Baod7db5942015-01-28 10:07:51 -0800168 __u32 index;
169 __u32 count;
Christopher Ferris106b3a82016-08-24 12:15:38 -0700170};
Ben Cheng655a7c02013-10-16 16:09:24 -0700171#define VFIO_DEVICE_GET_IRQ_INFO _IO(VFIO_TYPE, VFIO_BASE + 9)
172struct vfio_irq_set {
Tao Baod7db5942015-01-28 10:07:51 -0800173 __u32 argsz;
Christopher Ferris106b3a82016-08-24 12:15:38 -0700174 __u32 flags;
Ben Cheng655a7c02013-10-16 16:09:24 -0700175#define VFIO_IRQ_SET_DATA_NONE (1 << 0)
176#define VFIO_IRQ_SET_DATA_BOOL (1 << 1)
177#define VFIO_IRQ_SET_DATA_EVENTFD (1 << 2)
Christopher Ferris106b3a82016-08-24 12:15:38 -0700178#define VFIO_IRQ_SET_ACTION_MASK (1 << 3)
Ben Cheng655a7c02013-10-16 16:09:24 -0700179#define VFIO_IRQ_SET_ACTION_UNMASK (1 << 4)
180#define VFIO_IRQ_SET_ACTION_TRIGGER (1 << 5)
Tao Baod7db5942015-01-28 10:07:51 -0800181 __u32 index;
Christopher Ferris106b3a82016-08-24 12:15:38 -0700182 __u32 start;
Tao Baod7db5942015-01-28 10:07:51 -0800183 __u32 count;
184 __u8 data[];
Ben Cheng655a7c02013-10-16 16:09:24 -0700185};
Christopher Ferris106b3a82016-08-24 12:15:38 -0700186#define VFIO_DEVICE_SET_IRQS _IO(VFIO_TYPE, VFIO_BASE + 10)
Tao Baod7db5942015-01-28 10:07:51 -0800187#define VFIO_IRQ_SET_DATA_TYPE_MASK (VFIO_IRQ_SET_DATA_NONE | VFIO_IRQ_SET_DATA_BOOL | VFIO_IRQ_SET_DATA_EVENTFD)
188#define VFIO_IRQ_SET_ACTION_TYPE_MASK (VFIO_IRQ_SET_ACTION_MASK | VFIO_IRQ_SET_ACTION_UNMASK | VFIO_IRQ_SET_ACTION_TRIGGER)
Ben Cheng655a7c02013-10-16 16:09:24 -0700189#define VFIO_DEVICE_RESET _IO(VFIO_TYPE, VFIO_BASE + 11)
Christopher Ferris106b3a82016-08-24 12:15:38 -0700190enum {
Tao Baod7db5942015-01-28 10:07:51 -0800191 VFIO_PCI_BAR0_REGION_INDEX,
192 VFIO_PCI_BAR1_REGION_INDEX,
193 VFIO_PCI_BAR2_REGION_INDEX,
Christopher Ferris106b3a82016-08-24 12:15:38 -0700194 VFIO_PCI_BAR3_REGION_INDEX,
Tao Baod7db5942015-01-28 10:07:51 -0800195 VFIO_PCI_BAR4_REGION_INDEX,
196 VFIO_PCI_BAR5_REGION_INDEX,
197 VFIO_PCI_ROM_REGION_INDEX,
Tao Baod7db5942015-01-28 10:07:51 -0800198 VFIO_PCI_CONFIG_REGION_INDEX,
199 VFIO_PCI_VGA_REGION_INDEX,
Christopher Ferris106b3a82016-08-24 12:15:38 -0700200 VFIO_PCI_NUM_REGIONS = 9
Ben Cheng655a7c02013-10-16 16:09:24 -0700201};
Christopher Ferris106b3a82016-08-24 12:15:38 -0700202enum {
Tao Baod7db5942015-01-28 10:07:51 -0800203 VFIO_PCI_INTX_IRQ_INDEX,
204 VFIO_PCI_MSI_IRQ_INDEX,
205 VFIO_PCI_MSIX_IRQ_INDEX,
Christopher Ferris106b3a82016-08-24 12:15:38 -0700206 VFIO_PCI_ERR_IRQ_INDEX,
Christopher Ferris05d08e92016-02-04 13:16:38 -0800207 VFIO_PCI_REQ_IRQ_INDEX,
Tao Baod7db5942015-01-28 10:07:51 -0800208 VFIO_PCI_NUM_IRQS
Ben Cheng655a7c02013-10-16 16:09:24 -0700209};
Christopher Ferris525ce912017-07-26 13:12:53 -0700210enum {
211 VFIO_CCW_CONFIG_REGION_INDEX,
212 VFIO_CCW_NUM_REGIONS
213};
214enum {
215 VFIO_CCW_IO_IRQ_INDEX,
Christopher Ferris8177cdf2020-08-03 11:53:55 -0700216 VFIO_CCW_CRW_IRQ_INDEX,
Christopher Ferris05667cd2021-02-16 16:01:34 -0800217 VFIO_CCW_REQ_IRQ_INDEX,
Christopher Ferris525ce912017-07-26 13:12:53 -0700218 VFIO_CCW_NUM_IRQS
219};
Christopher Ferris106b3a82016-08-24 12:15:38 -0700220struct vfio_pci_dependent_device {
Tao Baod7db5942015-01-28 10:07:51 -0800221 __u32 group_id;
222 __u16 segment;
223 __u8 bus;
Christopher Ferris106b3a82016-08-24 12:15:38 -0700224 __u8 devfn;
Christopher Ferris38062f92014-07-09 15:33:25 -0700225};
226struct vfio_pci_hot_reset_info {
Tao Baod7db5942015-01-28 10:07:51 -0800227 __u32 argsz;
Christopher Ferris106b3a82016-08-24 12:15:38 -0700228 __u32 flags;
Tao Baod7db5942015-01-28 10:07:51 -0800229 __u32 count;
230 struct vfio_pci_dependent_device devices[];
Christopher Ferris38062f92014-07-09 15:33:25 -0700231};
Christopher Ferris106b3a82016-08-24 12:15:38 -0700232#define VFIO_DEVICE_GET_PCI_HOT_RESET_INFO _IO(VFIO_TYPE, VFIO_BASE + 12)
Christopher Ferris38062f92014-07-09 15:33:25 -0700233struct vfio_pci_hot_reset {
Tao Baod7db5942015-01-28 10:07:51 -0800234 __u32 argsz;
235 __u32 flags;
Christopher Ferris106b3a82016-08-24 12:15:38 -0700236 __u32 count;
Tao Baod7db5942015-01-28 10:07:51 -0800237 __s32 group_fds[];
Christopher Ferris38062f92014-07-09 15:33:25 -0700238};
239#define VFIO_DEVICE_PCI_HOT_RESET _IO(VFIO_TYPE, VFIO_BASE + 13)
Christopher Ferris76a1d452018-06-27 14:12:29 -0700240struct vfio_device_gfx_plane_info {
241 __u32 argsz;
242 __u32 flags;
243#define VFIO_GFX_PLANE_TYPE_PROBE (1 << 0)
244#define VFIO_GFX_PLANE_TYPE_DMABUF (1 << 1)
245#define VFIO_GFX_PLANE_TYPE_REGION (1 << 2)
246 __u32 drm_plane_type;
247 __u32 drm_format;
248 __u64 drm_format_mod;
249 __u32 width;
250 __u32 height;
251 __u32 stride;
252 __u32 size;
253 __u32 x_pos;
254 __u32 y_pos;
255 __u32 x_hot;
256 __u32 y_hot;
257 union {
258 __u32 region_index;
259 __u32 dmabuf_id;
260 };
261};
262#define VFIO_DEVICE_QUERY_GFX_PLANE _IO(VFIO_TYPE, VFIO_BASE + 14)
263#define VFIO_DEVICE_GET_GFX_DMABUF _IO(VFIO_TYPE, VFIO_BASE + 15)
264struct vfio_device_ioeventfd {
265 __u32 argsz;
266 __u32 flags;
267#define VFIO_DEVICE_IOEVENTFD_8 (1 << 0)
268#define VFIO_DEVICE_IOEVENTFD_16 (1 << 1)
269#define VFIO_DEVICE_IOEVENTFD_32 (1 << 2)
270#define VFIO_DEVICE_IOEVENTFD_64 (1 << 3)
271#define VFIO_DEVICE_IOEVENTFD_SIZE_MASK (0xf)
272 __u64 offset;
273 __u64 data;
274 __s32 fd;
275};
276#define VFIO_DEVICE_IOEVENTFD _IO(VFIO_TYPE, VFIO_BASE + 16)
Christopher Ferrisaf09c702020-06-01 20:29:29 -0700277struct vfio_device_feature {
278 __u32 argsz;
279 __u32 flags;
280#define VFIO_DEVICE_FEATURE_MASK (0xffff)
281#define VFIO_DEVICE_FEATURE_GET (1 << 16)
282#define VFIO_DEVICE_FEATURE_SET (1 << 17)
283#define VFIO_DEVICE_FEATURE_PROBE (1 << 18)
284 __u8 data[];
285};
286#define VFIO_DEVICE_FEATURE _IO(VFIO_TYPE, VFIO_BASE + 17)
287#define VFIO_DEVICE_FEATURE_PCI_VF_TOKEN (0)
Christopher Ferris10a76e62022-06-08 13:31:52 -0700288struct vfio_device_feature_migration {
289 __aligned_u64 flags;
290#define VFIO_MIGRATION_STOP_COPY (1 << 0)
291#define VFIO_MIGRATION_P2P (1 << 1)
Christopher Ferris8b7fdc92023-02-21 13:36:32 -0800292#define VFIO_MIGRATION_PRE_COPY (1 << 2)
Christopher Ferris10a76e62022-06-08 13:31:52 -0700293};
294#define VFIO_DEVICE_FEATURE_MIGRATION 1
295struct vfio_device_feature_mig_state {
296 __u32 device_state;
297 __s32 data_fd;
298};
299#define VFIO_DEVICE_FEATURE_MIG_DEVICE_STATE 2
300enum vfio_device_mig_state {
301 VFIO_DEVICE_STATE_ERROR = 0,
302 VFIO_DEVICE_STATE_STOP = 1,
303 VFIO_DEVICE_STATE_RUNNING = 2,
304 VFIO_DEVICE_STATE_STOP_COPY = 3,
305 VFIO_DEVICE_STATE_RESUMING = 4,
306 VFIO_DEVICE_STATE_RUNNING_P2P = 5,
Christopher Ferris8b7fdc92023-02-21 13:36:32 -0800307 VFIO_DEVICE_STATE_PRE_COPY = 6,
308 VFIO_DEVICE_STATE_PRE_COPY_P2P = 7,
Christopher Ferris10a76e62022-06-08 13:31:52 -0700309};
Christopher Ferris8b7fdc92023-02-21 13:36:32 -0800310struct vfio_precopy_info {
311 __u32 argsz;
312 __u32 flags;
313 __aligned_u64 initial_bytes;
314 __aligned_u64 dirty_bytes;
315};
316#define VFIO_MIG_GET_PRECOPY_INFO _IO(VFIO_TYPE, VFIO_BASE + 21)
Christopher Ferris6cd53a52022-12-12 23:39:16 +0000317#define VFIO_DEVICE_FEATURE_LOW_POWER_ENTRY 3
318struct vfio_device_low_power_entry_with_wakeup {
319 __s32 wakeup_eventfd;
320 __u32 reserved;
321};
322#define VFIO_DEVICE_FEATURE_LOW_POWER_ENTRY_WITH_WAKEUP 4
323#define VFIO_DEVICE_FEATURE_LOW_POWER_EXIT 5
324struct vfio_device_feature_dma_logging_control {
325 __aligned_u64 page_size;
326 __u32 num_ranges;
327 __u32 __reserved;
328 __aligned_u64 ranges;
329};
330struct vfio_device_feature_dma_logging_range {
331 __aligned_u64 iova;
332 __aligned_u64 length;
333};
334#define VFIO_DEVICE_FEATURE_DMA_LOGGING_START 6
335#define VFIO_DEVICE_FEATURE_DMA_LOGGING_STOP 7
336struct vfio_device_feature_dma_logging_report {
337 __aligned_u64 iova;
338 __aligned_u64 length;
339 __aligned_u64 page_size;
340 __aligned_u64 bitmap;
341};
342#define VFIO_DEVICE_FEATURE_DMA_LOGGING_REPORT 8
Christopher Ferris8b7fdc92023-02-21 13:36:32 -0800343struct vfio_device_feature_mig_data_size {
344 __aligned_u64 stop_copy_length;
345};
346#define VFIO_DEVICE_FEATURE_MIG_DATA_SIZE 9
Christopher Ferris106b3a82016-08-24 12:15:38 -0700347struct vfio_iommu_type1_info {
Tao Baod7db5942015-01-28 10:07:51 -0800348 __u32 argsz;
349 __u32 flags;
Ben Cheng655a7c02013-10-16 16:09:24 -0700350#define VFIO_IOMMU_INFO_PGSIZES (1 << 0)
Christopher Ferris9584fa42019-12-09 15:36:13 -0800351#define VFIO_IOMMU_INFO_CAPS (1 << 1)
Christopher Ferris106b3a82016-08-24 12:15:38 -0700352 __u64 iova_pgsizes;
Christopher Ferris9584fa42019-12-09 15:36:13 -0800353 __u32 cap_offset;
354};
355#define VFIO_IOMMU_TYPE1_INFO_CAP_IOVA_RANGE 1
356struct vfio_iova_range {
357 __u64 start;
358 __u64 end;
359};
360struct vfio_iommu_type1_info_cap_iova_range {
361 struct vfio_info_cap_header header;
362 __u32 nr_iovas;
363 __u32 reserved;
364 struct vfio_iova_range iova_ranges[];
Christopher Ferris38062f92014-07-09 15:33:25 -0700365};
Christopher Ferris8177cdf2020-08-03 11:53:55 -0700366#define VFIO_IOMMU_TYPE1_INFO_CAP_MIGRATION 2
367struct vfio_iommu_type1_info_cap_migration {
368 struct vfio_info_cap_header header;
369 __u32 flags;
370 __u64 pgsize_bitmap;
371 __u64 max_dirty_bitmap_size;
372};
Christopher Ferris32ff3f82020-12-14 13:10:04 -0800373#define VFIO_IOMMU_TYPE1_INFO_DMA_AVAIL 3
374struct vfio_iommu_type1_info_dma_avail {
375 struct vfio_info_cap_header header;
376 __u32 avail;
377};
Ben Cheng655a7c02013-10-16 16:09:24 -0700378#define VFIO_IOMMU_GET_INFO _IO(VFIO_TYPE, VFIO_BASE + 12)
379struct vfio_iommu_type1_dma_map {
Christopher Ferris106b3a82016-08-24 12:15:38 -0700380 __u32 argsz;
Tao Baod7db5942015-01-28 10:07:51 -0800381 __u32 flags;
Ben Cheng655a7c02013-10-16 16:09:24 -0700382#define VFIO_DMA_MAP_FLAG_READ (1 << 0)
383#define VFIO_DMA_MAP_FLAG_WRITE (1 << 1)
Christopher Ferrisa9750ed2021-05-03 14:02:49 -0700384#define VFIO_DMA_MAP_FLAG_VADDR (1 << 2)
Christopher Ferris106b3a82016-08-24 12:15:38 -0700385 __u64 vaddr;
Tao Baod7db5942015-01-28 10:07:51 -0800386 __u64 iova;
387 __u64 size;
Ben Cheng655a7c02013-10-16 16:09:24 -0700388};
Christopher Ferris106b3a82016-08-24 12:15:38 -0700389#define VFIO_IOMMU_MAP_DMA _IO(VFIO_TYPE, VFIO_BASE + 13)
Christopher Ferris8177cdf2020-08-03 11:53:55 -0700390struct vfio_bitmap {
391 __u64 pgsize;
392 __u64 size;
Elliott Hughes0f0c18f2023-03-29 15:53:31 -0700393 __u64 * data;
Christopher Ferris8177cdf2020-08-03 11:53:55 -0700394};
Christopher Ferris38062f92014-07-09 15:33:25 -0700395struct vfio_iommu_type1_dma_unmap {
Tao Baod7db5942015-01-28 10:07:51 -0800396 __u32 argsz;
397 __u32 flags;
Christopher Ferris8177cdf2020-08-03 11:53:55 -0700398#define VFIO_DMA_UNMAP_FLAG_GET_DIRTY_BITMAP (1 << 0)
Christopher Ferrisa9750ed2021-05-03 14:02:49 -0700399#define VFIO_DMA_UNMAP_FLAG_ALL (1 << 1)
400#define VFIO_DMA_UNMAP_FLAG_VADDR (1 << 2)
Christopher Ferris106b3a82016-08-24 12:15:38 -0700401 __u64 iova;
Tao Baod7db5942015-01-28 10:07:51 -0800402 __u64 size;
Christopher Ferris8177cdf2020-08-03 11:53:55 -0700403 __u8 data[];
Ben Cheng655a7c02013-10-16 16:09:24 -0700404};
405#define VFIO_IOMMU_UNMAP_DMA _IO(VFIO_TYPE, VFIO_BASE + 14)
Christopher Ferris106b3a82016-08-24 12:15:38 -0700406#define VFIO_IOMMU_ENABLE _IO(VFIO_TYPE, VFIO_BASE + 15)
Christopher Ferris38062f92014-07-09 15:33:25 -0700407#define VFIO_IOMMU_DISABLE _IO(VFIO_TYPE, VFIO_BASE + 16)
Christopher Ferris8177cdf2020-08-03 11:53:55 -0700408struct vfio_iommu_type1_dirty_bitmap {
409 __u32 argsz;
410 __u32 flags;
411#define VFIO_IOMMU_DIRTY_PAGES_FLAG_START (1 << 0)
412#define VFIO_IOMMU_DIRTY_PAGES_FLAG_STOP (1 << 1)
413#define VFIO_IOMMU_DIRTY_PAGES_FLAG_GET_BITMAP (1 << 2)
414 __u8 data[];
415};
416struct vfio_iommu_type1_dirty_bitmap_get {
417 __u64 iova;
418 __u64 size;
419 struct vfio_bitmap bitmap;
420};
421#define VFIO_IOMMU_DIRTY_PAGES _IO(VFIO_TYPE, VFIO_BASE + 17)
Christopher Ferris05d08e92016-02-04 13:16:38 -0800422struct vfio_iommu_spapr_tce_ddw_info {
423 __u64 pgsizes;
Christopher Ferris106b3a82016-08-24 12:15:38 -0700424 __u32 max_dynamic_windows_supported;
Christopher Ferris05d08e92016-02-04 13:16:38 -0800425 __u32 levels;
426};
Christopher Ferris38062f92014-07-09 15:33:25 -0700427struct vfio_iommu_spapr_tce_info {
Christopher Ferris106b3a82016-08-24 12:15:38 -0700428 __u32 argsz;
Christopher Ferris05d08e92016-02-04 13:16:38 -0800429 __u32 flags;
430#define VFIO_IOMMU_SPAPR_INFO_DDW (1 << 0)
Tao Baod7db5942015-01-28 10:07:51 -0800431 __u32 dma32_window_start;
Christopher Ferris106b3a82016-08-24 12:15:38 -0700432 __u32 dma32_window_size;
Christopher Ferris05d08e92016-02-04 13:16:38 -0800433 struct vfio_iommu_spapr_tce_ddw_info ddw;
Christopher Ferris38062f92014-07-09 15:33:25 -0700434};
435#define VFIO_IOMMU_SPAPR_TCE_GET_INFO _IO(VFIO_TYPE, VFIO_BASE + 12)
Christopher Ferris106b3a82016-08-24 12:15:38 -0700436struct vfio_eeh_pe_err {
Christopher Ferris05d08e92016-02-04 13:16:38 -0800437 __u32 type;
438 __u32 func;
439 __u64 addr;
Christopher Ferris106b3a82016-08-24 12:15:38 -0700440 __u64 mask;
Christopher Ferris05d08e92016-02-04 13:16:38 -0800441};
Christopher Ferris82d75042015-01-26 10:57:07 -0800442struct vfio_eeh_pe_op {
Tao Baod7db5942015-01-28 10:07:51 -0800443 __u32 argsz;
Christopher Ferris106b3a82016-08-24 12:15:38 -0700444 __u32 flags;
Tao Baod7db5942015-01-28 10:07:51 -0800445 __u32 op;
Christopher Ferris05d08e92016-02-04 13:16:38 -0800446 union {
447 struct vfio_eeh_pe_err err;
Christopher Ferris106b3a82016-08-24 12:15:38 -0700448 };
Christopher Ferris82d75042015-01-26 10:57:07 -0800449};
450#define VFIO_EEH_PE_DISABLE 0
451#define VFIO_EEH_PE_ENABLE 1
Christopher Ferris106b3a82016-08-24 12:15:38 -0700452#define VFIO_EEH_PE_UNFREEZE_IO 2
Christopher Ferris82d75042015-01-26 10:57:07 -0800453#define VFIO_EEH_PE_UNFREEZE_DMA 3
454#define VFIO_EEH_PE_GET_STATE 4
455#define VFIO_EEH_PE_STATE_NORMAL 0
Christopher Ferris106b3a82016-08-24 12:15:38 -0700456#define VFIO_EEH_PE_STATE_RESET 1
Christopher Ferris82d75042015-01-26 10:57:07 -0800457#define VFIO_EEH_PE_STATE_STOPPED 2
458#define VFIO_EEH_PE_STATE_STOPPED_DMA 4
459#define VFIO_EEH_PE_STATE_UNAVAIL 5
Christopher Ferris106b3a82016-08-24 12:15:38 -0700460#define VFIO_EEH_PE_RESET_DEACTIVATE 5
Christopher Ferris82d75042015-01-26 10:57:07 -0800461#define VFIO_EEH_PE_RESET_HOT 6
462#define VFIO_EEH_PE_RESET_FUNDAMENTAL 7
463#define VFIO_EEH_PE_CONFIGURE 8
Christopher Ferris106b3a82016-08-24 12:15:38 -0700464#define VFIO_EEH_PE_INJECT_ERR 9
Christopher Ferris82d75042015-01-26 10:57:07 -0800465#define VFIO_EEH_PE_OP _IO(VFIO_TYPE, VFIO_BASE + 21)
Christopher Ferris05d08e92016-02-04 13:16:38 -0800466struct vfio_iommu_spapr_register_memory {
467 __u32 argsz;
Christopher Ferris106b3a82016-08-24 12:15:38 -0700468 __u32 flags;
Christopher Ferris05d08e92016-02-04 13:16:38 -0800469 __u64 vaddr;
470 __u64 size;
471};
Christopher Ferris106b3a82016-08-24 12:15:38 -0700472#define VFIO_IOMMU_SPAPR_REGISTER_MEMORY _IO(VFIO_TYPE, VFIO_BASE + 17)
Christopher Ferris05d08e92016-02-04 13:16:38 -0800473#define VFIO_IOMMU_SPAPR_UNREGISTER_MEMORY _IO(VFIO_TYPE, VFIO_BASE + 18)
474struct vfio_iommu_spapr_tce_create {
475 __u32 argsz;
476 __u32 flags;
Christopher Ferris05d08e92016-02-04 13:16:38 -0800477 __u32 page_shift;
Christopher Ferris106b3a82016-08-24 12:15:38 -0700478 __u32 __resv1;
Christopher Ferris05d08e92016-02-04 13:16:38 -0800479 __u64 window_size;
Christopher Ferris106b3a82016-08-24 12:15:38 -0700480 __u32 levels;
481 __u32 __resv2;
482 __u64 start_addr;
Christopher Ferris05d08e92016-02-04 13:16:38 -0800483};
484#define VFIO_IOMMU_SPAPR_TCE_CREATE _IO(VFIO_TYPE, VFIO_BASE + 19)
485struct vfio_iommu_spapr_tce_remove {
486 __u32 argsz;
Christopher Ferris05d08e92016-02-04 13:16:38 -0800487 __u32 flags;
488 __u64 start_addr;
489};
490#define VFIO_IOMMU_SPAPR_TCE_REMOVE _IO(VFIO_TYPE, VFIO_BASE + 20)
Ben Cheng655a7c02013-10-16 16:09:24 -0700491#endif