xref: /openbmc/qemu/linux-headers/linux/vfio.h (revision 93e0932b)
1dd873966SEric Auger /* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
2883f0b85SAlex Williamson /*
3883f0b85SAlex Williamson  * VFIO API definition
4883f0b85SAlex Williamson  *
5883f0b85SAlex Williamson  * Copyright (C) 2012 Red Hat, Inc.  All rights reserved.
6883f0b85SAlex Williamson  *     Author: Alex Williamson <alex.williamson@redhat.com>
7883f0b85SAlex Williamson  *
8883f0b85SAlex Williamson  * This program is free software; you can redistribute it and/or modify
9883f0b85SAlex Williamson  * it under the terms of the GNU General Public License version 2 as
10883f0b85SAlex Williamson  * published by the Free Software Foundation.
11883f0b85SAlex Williamson  */
12d4834ff9SAlexander Graf #ifndef VFIO_H
13d4834ff9SAlexander Graf #define VFIO_H
14883f0b85SAlex Williamson 
15883f0b85SAlex Williamson #include <linux/types.h>
16883f0b85SAlex Williamson #include <linux/ioctl.h>
17883f0b85SAlex Williamson 
18883f0b85SAlex Williamson #define VFIO_API_VERSION	0
19883f0b85SAlex Williamson 
20883f0b85SAlex Williamson 
21883f0b85SAlex Williamson /* Kernel & User level defines for VFIO IOCTLs. */
22883f0b85SAlex Williamson 
23883f0b85SAlex Williamson /* Extensions */
24883f0b85SAlex Williamson 
25883f0b85SAlex Williamson #define VFIO_TYPE1_IOMMU		1
26c5daeae1SAlexey Kardashevskiy #define VFIO_SPAPR_TCE_IOMMU		2
279ffd2685SCornelia Huck #define VFIO_TYPE1v2_IOMMU		3
289ffd2685SCornelia Huck /*
299ffd2685SCornelia Huck  * IOMMU enforces DMA cache coherence (ex. PCIe NoSnoop stripping).  This
309ffd2685SCornelia Huck  * capability is subject to change as groups are added or removed.
319ffd2685SCornelia Huck  */
329ffd2685SCornelia Huck #define VFIO_DMA_CC_IOMMU		4
33883f0b85SAlex Williamson 
34a9fd1654SJens Freimann /* Check if EEH is supported */
35a9fd1654SJens Freimann #define VFIO_EEH			5
36a9fd1654SJens Freimann 
37444b1996SArd Biesheuvel /* Two-stage IOMMU */
38444b1996SArd Biesheuvel #define VFIO_TYPE1_NESTING_IOMMU	6	/* Implies v2 */
39444b1996SArd Biesheuvel 
4025b8b39bSAlexey Kardashevskiy #define VFIO_SPAPR_TCE_v2_IOMMU		7
4125b8b39bSAlexey Kardashevskiy 
42883f0b85SAlex Williamson /*
4366fb2d54SCornelia Huck  * The No-IOMMU IOMMU offers no translation or isolation for devices and
4466fb2d54SCornelia Huck  * supports no ioctls outside of VFIO_CHECK_EXTENSION.  Use of VFIO's No-IOMMU
4566fb2d54SCornelia Huck  * code will taint the host kernel and should be used with extreme caution.
4666fb2d54SCornelia Huck  */
4766fb2d54SCornelia Huck #define VFIO_NOIOMMU_IOMMU		8
4866fb2d54SCornelia Huck 
49278f064eSEduardo Habkost /* Supports VFIO_DMA_UNMAP_FLAG_ALL */
50278f064eSEduardo Habkost #define VFIO_UNMAP_ALL			9
51278f064eSEduardo Habkost 
52278f064eSEduardo Habkost /* Supports the vaddr flag for DMA map and unmap */
53278f064eSEduardo Habkost #define VFIO_UPDATE_VADDR		10
54278f064eSEduardo Habkost 
5566fb2d54SCornelia Huck /*
56883f0b85SAlex Williamson  * The IOCTL interface is designed for extensibility by embedding the
57883f0b85SAlex Williamson  * structure length (argsz) and flags into structures passed between
58883f0b85SAlex Williamson  * kernel and userspace.  We therefore use the _IO() macro for these
59883f0b85SAlex Williamson  * defines to avoid implicitly embedding a size into the ioctl request.
60883f0b85SAlex Williamson  * As structure fields are added, argsz will increase to match and flag
61883f0b85SAlex Williamson  * bits will be defined to indicate additional fields with valid data.
62883f0b85SAlex Williamson  * It's *always* the caller's responsibility to indicate the size of
63883f0b85SAlex Williamson  * the structure passed by setting argsz appropriately.
64883f0b85SAlex Williamson  */
65883f0b85SAlex Williamson 
66883f0b85SAlex Williamson #define VFIO_TYPE	(';')
67883f0b85SAlex Williamson #define VFIO_BASE	100
68883f0b85SAlex Williamson 
69b89485a5SPaolo Bonzini /*
70b89485a5SPaolo Bonzini  * For extension of INFO ioctls, VFIO makes use of a capability chain
71b89485a5SPaolo Bonzini  * designed after PCI/e capabilities.  A flag bit indicates whether
72b89485a5SPaolo Bonzini  * this capability chain is supported and a field defined in the fixed
73b89485a5SPaolo Bonzini  * structure defines the offset of the first capability in the chain.
74b89485a5SPaolo Bonzini  * This field is only valid when the corresponding bit in the flags
75b89485a5SPaolo Bonzini  * bitmap is set.  This offset field is relative to the start of the
76b89485a5SPaolo Bonzini  * INFO buffer, as is the next field within each capability header.
77b89485a5SPaolo Bonzini  * The id within the header is a shared address space per INFO ioctl,
78b89485a5SPaolo Bonzini  * while the version field is specific to the capability id.  The
79b89485a5SPaolo Bonzini  * contents following the header are specific to the capability id.
80b89485a5SPaolo Bonzini  */
81b89485a5SPaolo Bonzini struct vfio_info_cap_header {
82b89485a5SPaolo Bonzini 	__u16	id;		/* Identifies capability */
83b89485a5SPaolo Bonzini 	__u16	version;	/* Version specific to the capability ID */
84b89485a5SPaolo Bonzini 	__u32	next;		/* Offset of next capability */
85b89485a5SPaolo Bonzini };
86b89485a5SPaolo Bonzini 
87b89485a5SPaolo Bonzini /*
88b89485a5SPaolo Bonzini  * Callers of INFO ioctls passing insufficiently sized buffers will see
89b89485a5SPaolo Bonzini  * the capability chain flag bit set, a zero value for the first capability
90b89485a5SPaolo Bonzini  * offset (if available within the provided argsz), and argsz will be
91b89485a5SPaolo Bonzini  * updated to report the necessary buffer size.  For compatibility, the
92b89485a5SPaolo Bonzini  * INFO ioctl will not report error in this case, but the capability chain
93b89485a5SPaolo Bonzini  * will not be available.
94b89485a5SPaolo Bonzini  */
95b89485a5SPaolo Bonzini 
96883f0b85SAlex Williamson /* -------- IOCTLs for VFIO file descriptor (/dev/vfio/vfio) -------- */
97883f0b85SAlex Williamson 
98883f0b85SAlex Williamson /**
99883f0b85SAlex Williamson  * VFIO_GET_API_VERSION - _IO(VFIO_TYPE, VFIO_BASE + 0)
100883f0b85SAlex Williamson  *
101883f0b85SAlex Williamson  * Report the version of the VFIO API.  This allows us to bump the entire
102883f0b85SAlex Williamson  * API version should we later need to add or change features in incompatible
103883f0b85SAlex Williamson  * ways.
104883f0b85SAlex Williamson  * Return: VFIO_API_VERSION
105883f0b85SAlex Williamson  * Availability: Always
106883f0b85SAlex Williamson  */
107883f0b85SAlex Williamson #define VFIO_GET_API_VERSION		_IO(VFIO_TYPE, VFIO_BASE + 0)
108883f0b85SAlex Williamson 
109883f0b85SAlex Williamson /**
110883f0b85SAlex Williamson  * VFIO_CHECK_EXTENSION - _IOW(VFIO_TYPE, VFIO_BASE + 1, __u32)
111883f0b85SAlex Williamson  *
112883f0b85SAlex Williamson  * Check whether an extension is supported.
113883f0b85SAlex Williamson  * Return: 0 if not supported, 1 (or some other positive integer) if supported.
114883f0b85SAlex Williamson  * Availability: Always
115883f0b85SAlex Williamson  */
116883f0b85SAlex Williamson #define VFIO_CHECK_EXTENSION		_IO(VFIO_TYPE, VFIO_BASE + 1)
117883f0b85SAlex Williamson 
118883f0b85SAlex Williamson /**
119883f0b85SAlex Williamson  * VFIO_SET_IOMMU - _IOW(VFIO_TYPE, VFIO_BASE + 2, __s32)
120883f0b85SAlex Williamson  *
121883f0b85SAlex Williamson  * Set the iommu to the given type.  The type must be supported by an
122883f0b85SAlex Williamson  * iommu driver as verified by calling CHECK_EXTENSION using the same
123883f0b85SAlex Williamson  * type.  A group must be set to this file descriptor before this
124883f0b85SAlex Williamson  * ioctl is available.  The IOMMU interfaces enabled by this call are
125883f0b85SAlex Williamson  * specific to the value set.
126883f0b85SAlex Williamson  * Return: 0 on success, -errno on failure
127883f0b85SAlex Williamson  * Availability: When VFIO group attached
128883f0b85SAlex Williamson  */
129883f0b85SAlex Williamson #define VFIO_SET_IOMMU			_IO(VFIO_TYPE, VFIO_BASE + 2)
130883f0b85SAlex Williamson 
131883f0b85SAlex Williamson /* -------- IOCTLs for GROUP file descriptors (/dev/vfio/$GROUP) -------- */
132883f0b85SAlex Williamson 
133883f0b85SAlex Williamson /**
134883f0b85SAlex Williamson  * VFIO_GROUP_GET_STATUS - _IOR(VFIO_TYPE, VFIO_BASE + 3,
135883f0b85SAlex Williamson  *						struct vfio_group_status)
136883f0b85SAlex Williamson  *
137883f0b85SAlex Williamson  * Retrieve information about the group.  Fills in provided
138883f0b85SAlex Williamson  * struct vfio_group_info.  Caller sets argsz.
139883f0b85SAlex Williamson  * Return: 0 on succes, -errno on failure.
140883f0b85SAlex Williamson  * Availability: Always
141883f0b85SAlex Williamson  */
142883f0b85SAlex Williamson struct vfio_group_status {
143883f0b85SAlex Williamson 	__u32	argsz;
144883f0b85SAlex Williamson 	__u32	flags;
145883f0b85SAlex Williamson #define VFIO_GROUP_FLAGS_VIABLE		(1 << 0)
146883f0b85SAlex Williamson #define VFIO_GROUP_FLAGS_CONTAINER_SET	(1 << 1)
147883f0b85SAlex Williamson };
148883f0b85SAlex Williamson #define VFIO_GROUP_GET_STATUS		_IO(VFIO_TYPE, VFIO_BASE + 3)
149883f0b85SAlex Williamson 
150883f0b85SAlex Williamson /**
151883f0b85SAlex Williamson  * VFIO_GROUP_SET_CONTAINER - _IOW(VFIO_TYPE, VFIO_BASE + 4, __s32)
152883f0b85SAlex Williamson  *
153883f0b85SAlex Williamson  * Set the container for the VFIO group to the open VFIO file
154883f0b85SAlex Williamson  * descriptor provided.  Groups may only belong to a single
155883f0b85SAlex Williamson  * container.  Containers may, at their discretion, support multiple
156883f0b85SAlex Williamson  * groups.  Only when a container is set are all of the interfaces
157883f0b85SAlex Williamson  * of the VFIO file descriptor and the VFIO group file descriptor
158883f0b85SAlex Williamson  * available to the user.
159883f0b85SAlex Williamson  * Return: 0 on success, -errno on failure.
160883f0b85SAlex Williamson  * Availability: Always
161883f0b85SAlex Williamson  */
162883f0b85SAlex Williamson #define VFIO_GROUP_SET_CONTAINER	_IO(VFIO_TYPE, VFIO_BASE + 4)
163883f0b85SAlex Williamson 
164883f0b85SAlex Williamson /**
165883f0b85SAlex Williamson  * VFIO_GROUP_UNSET_CONTAINER - _IO(VFIO_TYPE, VFIO_BASE + 5)
166883f0b85SAlex Williamson  *
167883f0b85SAlex Williamson  * Remove the group from the attached container.  This is the
168883f0b85SAlex Williamson  * opposite of the SET_CONTAINER call and returns the group to
169883f0b85SAlex Williamson  * an initial state.  All device file descriptors must be released
170883f0b85SAlex Williamson  * prior to calling this interface.  When removing the last group
171883f0b85SAlex Williamson  * from a container, the IOMMU will be disabled and all state lost,
172883f0b85SAlex Williamson  * effectively also returning the VFIO file descriptor to an initial
173883f0b85SAlex Williamson  * state.
174883f0b85SAlex Williamson  * Return: 0 on success, -errno on failure.
175883f0b85SAlex Williamson  * Availability: When attached to container
176883f0b85SAlex Williamson  */
177883f0b85SAlex Williamson #define VFIO_GROUP_UNSET_CONTAINER	_IO(VFIO_TYPE, VFIO_BASE + 5)
178883f0b85SAlex Williamson 
179883f0b85SAlex Williamson /**
180883f0b85SAlex Williamson  * VFIO_GROUP_GET_DEVICE_FD - _IOW(VFIO_TYPE, VFIO_BASE + 6, char)
181883f0b85SAlex Williamson  *
182883f0b85SAlex Williamson  * Return a new file descriptor for the device object described by
183883f0b85SAlex Williamson  * the provided string.  The string should match a device listed in
184883f0b85SAlex Williamson  * the devices subdirectory of the IOMMU group sysfs entry.  The
185883f0b85SAlex Williamson  * group containing the device must already be added to this context.
186883f0b85SAlex Williamson  * Return: new file descriptor on success, -errno on failure.
187883f0b85SAlex Williamson  * Availability: When attached to container
188883f0b85SAlex Williamson  */
189883f0b85SAlex Williamson #define VFIO_GROUP_GET_DEVICE_FD	_IO(VFIO_TYPE, VFIO_BASE + 6)
190883f0b85SAlex Williamson 
191883f0b85SAlex Williamson /* --------------- IOCTLs for DEVICE file descriptors --------------- */
192883f0b85SAlex Williamson 
193883f0b85SAlex Williamson /**
194883f0b85SAlex Williamson  * VFIO_DEVICE_GET_INFO - _IOR(VFIO_TYPE, VFIO_BASE + 7,
195883f0b85SAlex Williamson  *						struct vfio_device_info)
196883f0b85SAlex Williamson  *
197883f0b85SAlex Williamson  * Retrieve information about the device.  Fills in provided
198883f0b85SAlex Williamson  * struct vfio_device_info.  Caller sets argsz.
199883f0b85SAlex Williamson  * Return: 0 on success, -errno on failure.
200883f0b85SAlex Williamson  */
201883f0b85SAlex Williamson struct vfio_device_info {
202883f0b85SAlex Williamson 	__u32	argsz;
203883f0b85SAlex Williamson 	__u32	flags;
204883f0b85SAlex Williamson #define VFIO_DEVICE_FLAGS_RESET	(1 << 0)	/* Device supports reset */
205883f0b85SAlex Williamson #define VFIO_DEVICE_FLAGS_PCI	(1 << 1)	/* vfio-pci device */
2067a52ce8aSCornelia Huck #define VFIO_DEVICE_FLAGS_PLATFORM (1 << 2)	/* vfio-platform device */
2077a52ce8aSCornelia Huck #define VFIO_DEVICE_FLAGS_AMBA  (1 << 3)	/* vfio-amba device */
20874c98e20SCornelia Huck #define VFIO_DEVICE_FLAGS_CCW	(1 << 4)	/* vfio-ccw device */
2098f3cd250SCornelia Huck #define VFIO_DEVICE_FLAGS_AP	(1 << 5)	/* vfio-ap device */
21053ba2eeeSMatthew Rosato #define VFIO_DEVICE_FLAGS_FSL_MC (1 << 6)	/* vfio-fsl-mc device */
21153ba2eeeSMatthew Rosato #define VFIO_DEVICE_FLAGS_CAPS	(1 << 7)	/* Info supports caps */
212883f0b85SAlex Williamson 	__u32	num_regions;	/* Max region index + 1 */
213883f0b85SAlex Williamson 	__u32	num_irqs;	/* Max IRQ index + 1 */
21453ba2eeeSMatthew Rosato 	__u32   cap_offset;	/* Offset within info struct of first cap */
215883f0b85SAlex Williamson };
216883f0b85SAlex Williamson #define VFIO_DEVICE_GET_INFO		_IO(VFIO_TYPE, VFIO_BASE + 7)
217883f0b85SAlex Williamson 
2183a5eb5b4SPaolo Bonzini /*
2193a5eb5b4SPaolo Bonzini  * Vendor driver using Mediated device framework should provide device_api
2203a5eb5b4SPaolo Bonzini  * attribute in supported type attribute groups. Device API string should be one
2213a5eb5b4SPaolo Bonzini  * of the following corresponding to device flags in vfio_device_info structure.
2223a5eb5b4SPaolo Bonzini  */
2233a5eb5b4SPaolo Bonzini 
2243a5eb5b4SPaolo Bonzini #define VFIO_DEVICE_API_PCI_STRING		"vfio-pci"
2253a5eb5b4SPaolo Bonzini #define VFIO_DEVICE_API_PLATFORM_STRING		"vfio-platform"
2263a5eb5b4SPaolo Bonzini #define VFIO_DEVICE_API_AMBA_STRING		"vfio-amba"
22774c98e20SCornelia Huck #define VFIO_DEVICE_API_CCW_STRING		"vfio-ccw"
2288f3cd250SCornelia Huck #define VFIO_DEVICE_API_AP_STRING		"vfio-ap"
2293a5eb5b4SPaolo Bonzini 
23053ba2eeeSMatthew Rosato /*
23153ba2eeeSMatthew Rosato  * The following capabilities are unique to s390 zPCI devices.  Their contents
23253ba2eeeSMatthew Rosato  * are further-defined in vfio_zdev.h
23353ba2eeeSMatthew Rosato  */
23453ba2eeeSMatthew Rosato #define VFIO_DEVICE_INFO_CAP_ZPCI_BASE		1
23553ba2eeeSMatthew Rosato #define VFIO_DEVICE_INFO_CAP_ZPCI_GROUP		2
23653ba2eeeSMatthew Rosato #define VFIO_DEVICE_INFO_CAP_ZPCI_UTIL		3
23753ba2eeeSMatthew Rosato #define VFIO_DEVICE_INFO_CAP_ZPCI_PFIP		4
23853ba2eeeSMatthew Rosato 
239883f0b85SAlex Williamson /**
240883f0b85SAlex Williamson  * VFIO_DEVICE_GET_REGION_INFO - _IOWR(VFIO_TYPE, VFIO_BASE + 8,
241883f0b85SAlex Williamson  *				       struct vfio_region_info)
242883f0b85SAlex Williamson  *
243883f0b85SAlex Williamson  * Retrieve information about a device region.  Caller provides
244883f0b85SAlex Williamson  * struct vfio_region_info with index value set.  Caller sets argsz.
245883f0b85SAlex Williamson  * Implementation of region mapping is bus driver specific.  This is
246883f0b85SAlex Williamson  * intended to describe MMIO, I/O port, as well as bus specific
247883f0b85SAlex Williamson  * regions (ex. PCI config space).  Zero sized regions may be used
248883f0b85SAlex Williamson  * to describe unimplemented regions (ex. unimplemented PCI BARs).
249883f0b85SAlex Williamson  * Return: 0 on success, -errno on failure.
250883f0b85SAlex Williamson  */
251883f0b85SAlex Williamson struct vfio_region_info {
252883f0b85SAlex Williamson 	__u32	argsz;
253883f0b85SAlex Williamson 	__u32	flags;
254883f0b85SAlex Williamson #define VFIO_REGION_INFO_FLAG_READ	(1 << 0) /* Region supports read */
255883f0b85SAlex Williamson #define VFIO_REGION_INFO_FLAG_WRITE	(1 << 1) /* Region supports write */
256883f0b85SAlex Williamson #define VFIO_REGION_INFO_FLAG_MMAP	(1 << 2) /* Region supports mmap */
257b89485a5SPaolo Bonzini #define VFIO_REGION_INFO_FLAG_CAPS	(1 << 3) /* Info supports caps */
258883f0b85SAlex Williamson 	__u32	index;		/* Region index */
259b89485a5SPaolo Bonzini 	__u32	cap_offset;	/* Offset within info struct of first cap */
260883f0b85SAlex Williamson 	__u64	size;		/* Region size (bytes) */
261883f0b85SAlex Williamson 	__u64	offset;		/* Region offset from start of device fd */
262883f0b85SAlex Williamson };
263883f0b85SAlex Williamson #define VFIO_DEVICE_GET_REGION_INFO	_IO(VFIO_TYPE, VFIO_BASE + 8)
264883f0b85SAlex Williamson 
265b89485a5SPaolo Bonzini /*
266b89485a5SPaolo Bonzini  * The sparse mmap capability allows finer granularity of specifying areas
267b89485a5SPaolo Bonzini  * within a region with mmap support.  When specified, the user should only
268b89485a5SPaolo Bonzini  * mmap the offset ranges specified by the areas array.  mmaps outside of the
269b89485a5SPaolo Bonzini  * areas specified may fail (such as the range covering a PCI MSI-X table) or
270b89485a5SPaolo Bonzini  * may result in improper device behavior.
271b89485a5SPaolo Bonzini  *
272b89485a5SPaolo Bonzini  * The structures below define version 1 of this capability.
273b89485a5SPaolo Bonzini  */
274b89485a5SPaolo Bonzini #define VFIO_REGION_INFO_CAP_SPARSE_MMAP	1
275b89485a5SPaolo Bonzini 
276b89485a5SPaolo Bonzini struct vfio_region_sparse_mmap_area {
277b89485a5SPaolo Bonzini 	__u64	offset;	/* Offset of mmap'able area within region */
278b89485a5SPaolo Bonzini 	__u64	size;	/* Size of mmap'able area */
279b89485a5SPaolo Bonzini };
280b89485a5SPaolo Bonzini 
281b89485a5SPaolo Bonzini struct vfio_region_info_cap_sparse_mmap {
282b89485a5SPaolo Bonzini 	struct vfio_info_cap_header header;
283b89485a5SPaolo Bonzini 	__u32	nr_areas;
284b89485a5SPaolo Bonzini 	__u32	reserved;
285b89485a5SPaolo Bonzini 	struct vfio_region_sparse_mmap_area areas[];
286b89485a5SPaolo Bonzini };
287b89485a5SPaolo Bonzini 
288b89485a5SPaolo Bonzini /*
289b89485a5SPaolo Bonzini  * The device specific type capability allows regions unique to a specific
290b89485a5SPaolo Bonzini  * device or class of devices to be exposed.  This helps solve the problem for
291b89485a5SPaolo Bonzini  * vfio bus drivers of defining which region indexes correspond to which region
292b89485a5SPaolo Bonzini  * on the device, without needing to resort to static indexes, as done by
293b89485a5SPaolo Bonzini  * vfio-pci.  For instance, if we were to go back in time, we might remove
294b89485a5SPaolo Bonzini  * VFIO_PCI_VGA_REGION_INDEX and let vfio-pci simply define that all indexes
295b89485a5SPaolo Bonzini  * greater than or equal to VFIO_PCI_NUM_REGIONS are device specific and we'd
296b89485a5SPaolo Bonzini  * make a "VGA" device specific type to describe the VGA access space.  This
297b89485a5SPaolo Bonzini  * means that non-VGA devices wouldn't need to waste this index, and thus the
298b89485a5SPaolo Bonzini  * address space associated with it due to implementation of device file
299b89485a5SPaolo Bonzini  * descriptor offsets in vfio-pci.
300b89485a5SPaolo Bonzini  *
301b89485a5SPaolo Bonzini  * The current implementation is now part of the user ABI, so we can't use this
302b89485a5SPaolo Bonzini  * for VGA, but there are other upcoming use cases, such as opregions for Intel
303b89485a5SPaolo Bonzini  * IGD devices and framebuffers for vGPU devices.  We missed VGA, but we'll
304b89485a5SPaolo Bonzini  * use this for future additions.
305b89485a5SPaolo Bonzini  *
306b89485a5SPaolo Bonzini  * The structure below defines version 1 of this capability.
307b89485a5SPaolo Bonzini  */
308b89485a5SPaolo Bonzini #define VFIO_REGION_INFO_CAP_TYPE	2
309b89485a5SPaolo Bonzini 
310b89485a5SPaolo Bonzini struct vfio_region_info_cap_type {
311b89485a5SPaolo Bonzini 	struct vfio_info_cap_header header;
312b89485a5SPaolo Bonzini 	__u32 type;	/* global per bus driver */
313b89485a5SPaolo Bonzini 	__u32 subtype;	/* type specific */
314b89485a5SPaolo Bonzini };
315b89485a5SPaolo Bonzini 
316f363d039SEric Auger /*
317f363d039SEric Auger  * List of region types, global per bus driver.
318f363d039SEric Auger  * If you introduce a new type, please add it here.
319f363d039SEric Auger  */
320f363d039SEric Auger 
321f363d039SEric Auger /* PCI region type containing a PCI vendor part */
322b89485a5SPaolo Bonzini #define VFIO_REGION_TYPE_PCI_VENDOR_TYPE	(1 << 31)
323b89485a5SPaolo Bonzini #define VFIO_REGION_TYPE_PCI_VENDOR_MASK	(0xffff)
324f363d039SEric Auger #define VFIO_REGION_TYPE_GFX                    (1)
325f363d039SEric Auger #define VFIO_REGION_TYPE_CCW			(2)
326e4082063SAlex Williamson #define VFIO_REGION_TYPE_MIGRATION_DEPRECATED   (3)
327b89485a5SPaolo Bonzini 
328f363d039SEric Auger /* sub-types for VFIO_REGION_TYPE_PCI_* */
329f363d039SEric Auger 
330f363d039SEric Auger /* 8086 vendor PCI sub-types */
331b89485a5SPaolo Bonzini #define VFIO_REGION_SUBTYPE_INTEL_IGD_OPREGION	(1)
332b89485a5SPaolo Bonzini #define VFIO_REGION_SUBTYPE_INTEL_IGD_HOST_CFG	(2)
333b89485a5SPaolo Bonzini #define VFIO_REGION_SUBTYPE_INTEL_IGD_LPC_CFG	(3)
334b89485a5SPaolo Bonzini 
335f363d039SEric Auger /* 10de vendor PCI sub-types */
336f363d039SEric Auger /*
337f363d039SEric Auger  * NVIDIA GPU NVlink2 RAM is coherent RAM mapped onto the host address space.
338278f064eSEduardo Habkost  *
339278f064eSEduardo Habkost  * Deprecated, region no longer provided
340f363d039SEric Auger  */
341f363d039SEric Auger #define VFIO_REGION_SUBTYPE_NVIDIA_NVLINK2_RAM	(1)
342f363d039SEric Auger 
343f363d039SEric Auger /* 1014 vendor PCI sub-types */
344f363d039SEric Auger /*
345f363d039SEric Auger  * IBM NPU NVlink2 ATSD (Address Translation Shootdown) register of NPU
346f363d039SEric Auger  * to do TLB invalidation on a GPU.
347278f064eSEduardo Habkost  *
348278f064eSEduardo Habkost  * Deprecated, region no longer provided
349f363d039SEric Auger  */
350f363d039SEric Auger #define VFIO_REGION_SUBTYPE_IBM_NVLINK2_ATSD	(1)
351f363d039SEric Auger 
352f363d039SEric Auger /* sub-types for VFIO_REGION_TYPE_GFX */
353da054c64SPaolo Bonzini #define VFIO_REGION_SUBTYPE_GFX_EDID            (1)
354da054c64SPaolo Bonzini 
355da054c64SPaolo Bonzini /**
356da054c64SPaolo Bonzini  * struct vfio_region_gfx_edid - EDID region layout.
357da054c64SPaolo Bonzini  *
358da054c64SPaolo Bonzini  * Set display link state and EDID blob.
359da054c64SPaolo Bonzini  *
360da054c64SPaolo Bonzini  * The EDID blob has monitor information such as brand, name, serial
361da054c64SPaolo Bonzini  * number, physical size, supported video modes and more.
362da054c64SPaolo Bonzini  *
363da054c64SPaolo Bonzini  * This special region allows userspace (typically qemu) set a virtual
364da054c64SPaolo Bonzini  * EDID for the virtual monitor, which allows a flexible display
365da054c64SPaolo Bonzini  * configuration.
366da054c64SPaolo Bonzini  *
367da054c64SPaolo Bonzini  * For the edid blob spec look here:
368da054c64SPaolo Bonzini  *    https://en.wikipedia.org/wiki/Extended_Display_Identification_Data
369da054c64SPaolo Bonzini  *
370da054c64SPaolo Bonzini  * On linux systems you can find the EDID blob in sysfs:
371da054c64SPaolo Bonzini  *    /sys/class/drm/${card}/${connector}/edid
372da054c64SPaolo Bonzini  *
373da054c64SPaolo Bonzini  * You can use the edid-decode ulility (comes with xorg-x11-utils) to
374da054c64SPaolo Bonzini  * decode the EDID blob.
375da054c64SPaolo Bonzini  *
376da054c64SPaolo Bonzini  * @edid_offset: location of the edid blob, relative to the
377da054c64SPaolo Bonzini  *               start of the region (readonly).
378da054c64SPaolo Bonzini  * @edid_max_size: max size of the edid blob (readonly).
379da054c64SPaolo Bonzini  * @edid_size: actual edid size (read/write).
380da054c64SPaolo Bonzini  * @link_state: display link state (read/write).
381da054c64SPaolo Bonzini  * VFIO_DEVICE_GFX_LINK_STATE_UP: Monitor is turned on.
382da054c64SPaolo Bonzini  * VFIO_DEVICE_GFX_LINK_STATE_DOWN: Monitor is turned off.
383da054c64SPaolo Bonzini  * @max_xres: max display width (0 == no limitation, readonly).
384da054c64SPaolo Bonzini  * @max_yres: max display height (0 == no limitation, readonly).
385da054c64SPaolo Bonzini  *
386da054c64SPaolo Bonzini  * EDID update protocol:
387da054c64SPaolo Bonzini  *   (1) set link-state to down.
388da054c64SPaolo Bonzini  *   (2) update edid blob and size.
389da054c64SPaolo Bonzini  *   (3) set link-state to up.
390da054c64SPaolo Bonzini  */
391da054c64SPaolo Bonzini struct vfio_region_gfx_edid {
392da054c64SPaolo Bonzini 	__u32 edid_offset;
393da054c64SPaolo Bonzini 	__u32 edid_max_size;
394da054c64SPaolo Bonzini 	__u32 edid_size;
395da054c64SPaolo Bonzini 	__u32 max_xres;
396da054c64SPaolo Bonzini 	__u32 max_yres;
397da054c64SPaolo Bonzini 	__u32 link_state;
398da054c64SPaolo Bonzini #define VFIO_DEVICE_GFX_LINK_STATE_UP    1
399da054c64SPaolo Bonzini #define VFIO_DEVICE_GFX_LINK_STATE_DOWN  2
400da054c64SPaolo Bonzini };
401da054c64SPaolo Bonzini 
402f363d039SEric Auger /* sub-types for VFIO_REGION_TYPE_CCW */
403d9cb4336SCornelia Huck #define VFIO_REGION_SUBTYPE_CCW_ASYNC_CMD	(1)
404f76b348eSCornelia Huck #define VFIO_REGION_SUBTYPE_CCW_SCHIB		(2)
405f76b348eSCornelia Huck #define VFIO_REGION_SUBTYPE_CCW_CRW		(3)
406f76b348eSCornelia Huck 
407f76b348eSCornelia Huck /* sub-types for VFIO_REGION_TYPE_MIGRATION */
408e4082063SAlex Williamson #define VFIO_REGION_SUBTYPE_MIGRATION_DEPRECATED (1)
409f76b348eSCornelia Huck 
410f76b348eSCornelia Huck struct vfio_device_migration_info {
411f76b348eSCornelia Huck 	__u32 device_state;         /* VFIO device state */
412e4082063SAlex Williamson #define VFIO_DEVICE_STATE_V1_STOP      (0)
413e4082063SAlex Williamson #define VFIO_DEVICE_STATE_V1_RUNNING   (1 << 0)
414e4082063SAlex Williamson #define VFIO_DEVICE_STATE_V1_SAVING    (1 << 1)
415e4082063SAlex Williamson #define VFIO_DEVICE_STATE_V1_RESUMING  (1 << 2)
416e4082063SAlex Williamson #define VFIO_DEVICE_STATE_MASK      (VFIO_DEVICE_STATE_V1_RUNNING | \
417e4082063SAlex Williamson 				     VFIO_DEVICE_STATE_V1_SAVING |  \
418e4082063SAlex Williamson 				     VFIO_DEVICE_STATE_V1_RESUMING)
419f76b348eSCornelia Huck 
420f76b348eSCornelia Huck #define VFIO_DEVICE_STATE_VALID(state) \
421e4082063SAlex Williamson 	(state & VFIO_DEVICE_STATE_V1_RESUMING ? \
422e4082063SAlex Williamson 	(state & VFIO_DEVICE_STATE_MASK) == VFIO_DEVICE_STATE_V1_RESUMING : 1)
423f76b348eSCornelia Huck 
424f76b348eSCornelia Huck #define VFIO_DEVICE_STATE_IS_ERROR(state) \
425e4082063SAlex Williamson 	((state & VFIO_DEVICE_STATE_MASK) == (VFIO_DEVICE_STATE_V1_SAVING | \
426e4082063SAlex Williamson 					      VFIO_DEVICE_STATE_V1_RESUMING))
427f76b348eSCornelia Huck 
428f76b348eSCornelia Huck #define VFIO_DEVICE_STATE_SET_ERROR(state) \
429e4082063SAlex Williamson 	((state & ~VFIO_DEVICE_STATE_MASK) | VFIO_DEVICE_STATE_V1_SAVING | \
430e4082063SAlex Williamson 					     VFIO_DEVICE_STATE_V1_RESUMING)
431f76b348eSCornelia Huck 
432f76b348eSCornelia Huck 	__u32 reserved;
433f76b348eSCornelia Huck 	__u64 pending_bytes;
434f76b348eSCornelia Huck 	__u64 data_offset;
435f76b348eSCornelia Huck 	__u64 data_size;
436f76b348eSCornelia Huck };
437d9cb4336SCornelia Huck 
438da054c64SPaolo Bonzini /*
4399f2d175dSPaolo Bonzini  * The MSIX mappable capability informs that MSIX data of a BAR can be mmapped
4409f2d175dSPaolo Bonzini  * which allows direct access to non-MSIX registers which happened to be within
4419f2d175dSPaolo Bonzini  * the same system page.
4429f2d175dSPaolo Bonzini  *
4439f2d175dSPaolo Bonzini  * Even though the userspace gets direct access to the MSIX data, the existing
4449f2d175dSPaolo Bonzini  * VFIO_DEVICE_SET_IRQS interface must still be used for MSIX configuration.
4459f2d175dSPaolo Bonzini  */
4469f2d175dSPaolo Bonzini #define VFIO_REGION_INFO_CAP_MSIX_MAPPABLE	3
4479f2d175dSPaolo Bonzini 
448da054c64SPaolo Bonzini /*
449da054c64SPaolo Bonzini  * Capability with compressed real address (aka SSA - small system address)
450da054c64SPaolo Bonzini  * where GPU RAM is mapped on a system bus. Used by a GPU for DMA routing
451da054c64SPaolo Bonzini  * and by the userspace to associate a NVLink bridge with a GPU.
452278f064eSEduardo Habkost  *
453278f064eSEduardo Habkost  * Deprecated, capability no longer provided
454da054c64SPaolo Bonzini  */
455da054c64SPaolo Bonzini #define VFIO_REGION_INFO_CAP_NVLINK2_SSATGT	4
456da054c64SPaolo Bonzini 
457da054c64SPaolo Bonzini struct vfio_region_info_cap_nvlink2_ssatgt {
458da054c64SPaolo Bonzini 	struct vfio_info_cap_header header;
459da054c64SPaolo Bonzini 	__u64 tgt;
460da054c64SPaolo Bonzini };
461da054c64SPaolo Bonzini 
462da054c64SPaolo Bonzini /*
463da054c64SPaolo Bonzini  * Capability with an NVLink link speed. The value is read by
464da054c64SPaolo Bonzini  * the NVlink2 bridge driver from the bridge's "ibm,nvlink-speed"
465da054c64SPaolo Bonzini  * property in the device tree. The value is fixed in the hardware
466da054c64SPaolo Bonzini  * and failing to provide the correct value results in the link
467da054c64SPaolo Bonzini  * not working with no indication from the driver why.
468278f064eSEduardo Habkost  *
469278f064eSEduardo Habkost  * Deprecated, capability no longer provided
470da054c64SPaolo Bonzini  */
471da054c64SPaolo Bonzini #define VFIO_REGION_INFO_CAP_NVLINK2_LNKSPD	5
472da054c64SPaolo Bonzini 
473da054c64SPaolo Bonzini struct vfio_region_info_cap_nvlink2_lnkspd {
474da054c64SPaolo Bonzini 	struct vfio_info_cap_header header;
475da054c64SPaolo Bonzini 	__u32 link_speed;
476da054c64SPaolo Bonzini 	__u32 __pad;
477da054c64SPaolo Bonzini };
478da054c64SPaolo Bonzini 
479883f0b85SAlex Williamson /**
480883f0b85SAlex Williamson  * VFIO_DEVICE_GET_IRQ_INFO - _IOWR(VFIO_TYPE, VFIO_BASE + 9,
481883f0b85SAlex Williamson  *				    struct vfio_irq_info)
482883f0b85SAlex Williamson  *
483883f0b85SAlex Williamson  * Retrieve information about a device IRQ.  Caller provides
484883f0b85SAlex Williamson  * struct vfio_irq_info with index value set.  Caller sets argsz.
485883f0b85SAlex Williamson  * Implementation of IRQ mapping is bus driver specific.  Indexes
486883f0b85SAlex Williamson  * using multiple IRQs are primarily intended to support MSI-like
487883f0b85SAlex Williamson  * interrupt blocks.  Zero count irq blocks may be used to describe
488883f0b85SAlex Williamson  * unimplemented interrupt types.
489883f0b85SAlex Williamson  *
490883f0b85SAlex Williamson  * The EVENTFD flag indicates the interrupt index supports eventfd based
491883f0b85SAlex Williamson  * signaling.
492883f0b85SAlex Williamson  *
493883f0b85SAlex Williamson  * The MASKABLE flags indicates the index supports MASK and UNMASK
494883f0b85SAlex Williamson  * actions described below.
495883f0b85SAlex Williamson  *
496883f0b85SAlex Williamson  * AUTOMASKED indicates that after signaling, the interrupt line is
497883f0b85SAlex Williamson  * automatically masked by VFIO and the user needs to unmask the line
498883f0b85SAlex Williamson  * to receive new interrupts.  This is primarily intended to distinguish
499883f0b85SAlex Williamson  * level triggered interrupts.
500883f0b85SAlex Williamson  *
501883f0b85SAlex Williamson  * The NORESIZE flag indicates that the interrupt lines within the index
502883f0b85SAlex Williamson  * are setup as a set and new subindexes cannot be enabled without first
503883f0b85SAlex Williamson  * disabling the entire index.  This is used for interrupts like PCI MSI
504883f0b85SAlex Williamson  * and MSI-X where the driver may only use a subset of the available
505883f0b85SAlex Williamson  * indexes, but VFIO needs to enable a specific number of vectors
506883f0b85SAlex Williamson  * upfront.  In the case of MSI-X, where the user can enable MSI-X and
507883f0b85SAlex Williamson  * then add and unmask vectors, it's up to userspace to make the decision
508883f0b85SAlex Williamson  * whether to allocate the maximum supported number of vectors or tear
509883f0b85SAlex Williamson  * down setup and incrementally increase the vectors as each is enabled.
510883f0b85SAlex Williamson  */
511883f0b85SAlex Williamson struct vfio_irq_info {
512883f0b85SAlex Williamson 	__u32	argsz;
513883f0b85SAlex Williamson 	__u32	flags;
514883f0b85SAlex Williamson #define VFIO_IRQ_INFO_EVENTFD		(1 << 0)
515883f0b85SAlex Williamson #define VFIO_IRQ_INFO_MASKABLE		(1 << 1)
516883f0b85SAlex Williamson #define VFIO_IRQ_INFO_AUTOMASKED	(1 << 2)
517883f0b85SAlex Williamson #define VFIO_IRQ_INFO_NORESIZE		(1 << 3)
518883f0b85SAlex Williamson 	__u32	index;		/* IRQ index */
519883f0b85SAlex Williamson 	__u32	count;		/* Number of IRQs within this index */
520883f0b85SAlex Williamson };
521883f0b85SAlex Williamson #define VFIO_DEVICE_GET_IRQ_INFO	_IO(VFIO_TYPE, VFIO_BASE + 9)
522883f0b85SAlex Williamson 
523883f0b85SAlex Williamson /**
524883f0b85SAlex Williamson  * VFIO_DEVICE_SET_IRQS - _IOW(VFIO_TYPE, VFIO_BASE + 10, struct vfio_irq_set)
525883f0b85SAlex Williamson  *
526883f0b85SAlex Williamson  * Set signaling, masking, and unmasking of interrupts.  Caller provides
527883f0b85SAlex Williamson  * struct vfio_irq_set with all fields set.  'start' and 'count' indicate
528883f0b85SAlex Williamson  * the range of subindexes being specified.
529883f0b85SAlex Williamson  *
530883f0b85SAlex Williamson  * The DATA flags specify the type of data provided.  If DATA_NONE, the
531883f0b85SAlex Williamson  * operation performs the specified action immediately on the specified
532883f0b85SAlex Williamson  * interrupt(s).  For example, to unmask AUTOMASKED interrupt [0,0]:
533883f0b85SAlex Williamson  * flags = (DATA_NONE|ACTION_UNMASK), index = 0, start = 0, count = 1.
534883f0b85SAlex Williamson  *
535883f0b85SAlex Williamson  * DATA_BOOL allows sparse support for the same on arrays of interrupts.
536883f0b85SAlex Williamson  * For example, to mask interrupts [0,1] and [0,3] (but not [0,2]):
537883f0b85SAlex Williamson  * flags = (DATA_BOOL|ACTION_MASK), index = 0, start = 1, count = 3,
538883f0b85SAlex Williamson  * data = {1,0,1}
539883f0b85SAlex Williamson  *
540883f0b85SAlex Williamson  * DATA_EVENTFD binds the specified ACTION to the provided __s32 eventfd.
541883f0b85SAlex Williamson  * A value of -1 can be used to either de-assign interrupts if already
542883f0b85SAlex Williamson  * assigned or skip un-assigned interrupts.  For example, to set an eventfd
543883f0b85SAlex Williamson  * to be trigger for interrupts [0,0] and [0,2]:
544883f0b85SAlex Williamson  * flags = (DATA_EVENTFD|ACTION_TRIGGER), index = 0, start = 0, count = 3,
545883f0b85SAlex Williamson  * data = {fd1, -1, fd2}
546883f0b85SAlex Williamson  * If index [0,1] is previously set, two count = 1 ioctls calls would be
547883f0b85SAlex Williamson  * required to set [0,0] and [0,2] without changing [0,1].
548883f0b85SAlex Williamson  *
549883f0b85SAlex Williamson  * Once a signaling mechanism is set, DATA_BOOL or DATA_NONE can be used
550883f0b85SAlex Williamson  * with ACTION_TRIGGER to perform kernel level interrupt loopback testing
551883f0b85SAlex Williamson  * from userspace (ie. simulate hardware triggering).
552883f0b85SAlex Williamson  *
553883f0b85SAlex Williamson  * Setting of an event triggering mechanism to userspace for ACTION_TRIGGER
554883f0b85SAlex Williamson  * enables the interrupt index for the device.  Individual subindex interrupts
555883f0b85SAlex Williamson  * can be disabled using the -1 value for DATA_EVENTFD or the index can be
556883f0b85SAlex Williamson  * disabled as a whole with: flags = (DATA_NONE|ACTION_TRIGGER), count = 0.
557883f0b85SAlex Williamson  *
558883f0b85SAlex Williamson  * Note that ACTION_[UN]MASK specify user->kernel signaling (irqfds) while
559883f0b85SAlex Williamson  * ACTION_TRIGGER specifies kernel->user signaling.
560883f0b85SAlex Williamson  */
561883f0b85SAlex Williamson struct vfio_irq_set {
562883f0b85SAlex Williamson 	__u32	argsz;
563883f0b85SAlex Williamson 	__u32	flags;
564883f0b85SAlex Williamson #define VFIO_IRQ_SET_DATA_NONE		(1 << 0) /* Data not present */
565883f0b85SAlex Williamson #define VFIO_IRQ_SET_DATA_BOOL		(1 << 1) /* Data is bool (u8) */
566883f0b85SAlex Williamson #define VFIO_IRQ_SET_DATA_EVENTFD	(1 << 2) /* Data is eventfd (s32) */
567883f0b85SAlex Williamson #define VFIO_IRQ_SET_ACTION_MASK	(1 << 3) /* Mask interrupt */
568883f0b85SAlex Williamson #define VFIO_IRQ_SET_ACTION_UNMASK	(1 << 4) /* Unmask interrupt */
569883f0b85SAlex Williamson #define VFIO_IRQ_SET_ACTION_TRIGGER	(1 << 5) /* Trigger interrupt */
570883f0b85SAlex Williamson 	__u32	index;
571883f0b85SAlex Williamson 	__u32	start;
572883f0b85SAlex Williamson 	__u32	count;
573883f0b85SAlex Williamson 	__u8	data[];
574883f0b85SAlex Williamson };
575883f0b85SAlex Williamson #define VFIO_DEVICE_SET_IRQS		_IO(VFIO_TYPE, VFIO_BASE + 10)
576883f0b85SAlex Williamson 
577883f0b85SAlex Williamson #define VFIO_IRQ_SET_DATA_TYPE_MASK	(VFIO_IRQ_SET_DATA_NONE | \
578883f0b85SAlex Williamson 					 VFIO_IRQ_SET_DATA_BOOL | \
579883f0b85SAlex Williamson 					 VFIO_IRQ_SET_DATA_EVENTFD)
580883f0b85SAlex Williamson #define VFIO_IRQ_SET_ACTION_TYPE_MASK	(VFIO_IRQ_SET_ACTION_MASK | \
581883f0b85SAlex Williamson 					 VFIO_IRQ_SET_ACTION_UNMASK | \
582883f0b85SAlex Williamson 					 VFIO_IRQ_SET_ACTION_TRIGGER)
583883f0b85SAlex Williamson /**
584883f0b85SAlex Williamson  * VFIO_DEVICE_RESET - _IO(VFIO_TYPE, VFIO_BASE + 11)
585883f0b85SAlex Williamson  *
586883f0b85SAlex Williamson  * Reset a device.
587883f0b85SAlex Williamson  */
588883f0b85SAlex Williamson #define VFIO_DEVICE_RESET		_IO(VFIO_TYPE, VFIO_BASE + 11)
589883f0b85SAlex Williamson 
590883f0b85SAlex Williamson /*
591883f0b85SAlex Williamson  * The VFIO-PCI bus driver makes use of the following fixed region and
592883f0b85SAlex Williamson  * IRQ index mapping.  Unimplemented regions return a size of zero.
593883f0b85SAlex Williamson  * Unimplemented IRQ types return a count of zero.
594883f0b85SAlex Williamson  */
595883f0b85SAlex Williamson 
596883f0b85SAlex Williamson enum {
597883f0b85SAlex Williamson 	VFIO_PCI_BAR0_REGION_INDEX,
598883f0b85SAlex Williamson 	VFIO_PCI_BAR1_REGION_INDEX,
599883f0b85SAlex Williamson 	VFIO_PCI_BAR2_REGION_INDEX,
600883f0b85SAlex Williamson 	VFIO_PCI_BAR3_REGION_INDEX,
601883f0b85SAlex Williamson 	VFIO_PCI_BAR4_REGION_INDEX,
602883f0b85SAlex Williamson 	VFIO_PCI_BAR5_REGION_INDEX,
603883f0b85SAlex Williamson 	VFIO_PCI_ROM_REGION_INDEX,
604883f0b85SAlex Williamson 	VFIO_PCI_CONFIG_REGION_INDEX,
605010ca0b3SAlex Williamson 	/*
606010ca0b3SAlex Williamson 	 * Expose VGA regions defined for PCI base class 03, subclass 00.
607010ca0b3SAlex Williamson 	 * This includes I/O port ranges 0x3b0 to 0x3bb and 0x3c0 to 0x3df
608010ca0b3SAlex Williamson 	 * as well as the MMIO range 0xa0000 to 0xbffff.  Each implemented
609010ca0b3SAlex Williamson 	 * range is found at it's identity mapped offset from the region
610010ca0b3SAlex Williamson 	 * offset, for example 0x3b0 is region_info.offset + 0x3b0.  Areas
611010ca0b3SAlex Williamson 	 * between described ranges are unimplemented.
612010ca0b3SAlex Williamson 	 */
613010ca0b3SAlex Williamson 	VFIO_PCI_VGA_REGION_INDEX,
614b89485a5SPaolo Bonzini 	VFIO_PCI_NUM_REGIONS = 9 /* Fixed user ABI, region indexes >=9 use */
615b89485a5SPaolo Bonzini 				 /* device specific cap to define content. */
616883f0b85SAlex Williamson };
617883f0b85SAlex Williamson 
618883f0b85SAlex Williamson enum {
619883f0b85SAlex Williamson 	VFIO_PCI_INTX_IRQ_INDEX,
620883f0b85SAlex Williamson 	VFIO_PCI_MSI_IRQ_INDEX,
621883f0b85SAlex Williamson 	VFIO_PCI_MSIX_IRQ_INDEX,
622e098b453SAlexey Kardashevskiy 	VFIO_PCI_ERR_IRQ_INDEX,
62347cbe50cSAlex Williamson 	VFIO_PCI_REQ_IRQ_INDEX,
624883f0b85SAlex Williamson 	VFIO_PCI_NUM_IRQS
625883f0b85SAlex Williamson };
626883f0b85SAlex Williamson 
62774c98e20SCornelia Huck /*
62874c98e20SCornelia Huck  * The vfio-ccw bus driver makes use of the following fixed region and
62974c98e20SCornelia Huck  * IRQ index mapping. Unimplemented regions return a size of zero.
63074c98e20SCornelia Huck  * Unimplemented IRQ types return a count of zero.
63174c98e20SCornelia Huck  */
63274c98e20SCornelia Huck 
63374c98e20SCornelia Huck enum {
63474c98e20SCornelia Huck 	VFIO_CCW_CONFIG_REGION_INDEX,
63574c98e20SCornelia Huck 	VFIO_CCW_NUM_REGIONS
63674c98e20SCornelia Huck };
63774c98e20SCornelia Huck 
63874c98e20SCornelia Huck enum {
63974c98e20SCornelia Huck 	VFIO_CCW_IO_IRQ_INDEX,
640f76b348eSCornelia Huck 	VFIO_CCW_CRW_IRQ_INDEX,
641b3c818a4SEric Farman 	VFIO_CCW_REQ_IRQ_INDEX,
64274c98e20SCornelia Huck 	VFIO_CCW_NUM_IRQS
64374c98e20SCornelia Huck };
64474c98e20SCornelia Huck 
6454f265607SAndrew Jones /**
646d525f73fSChenyi Qiang  * VFIO_DEVICE_GET_PCI_HOT_RESET_INFO - _IOWR(VFIO_TYPE, VFIO_BASE + 12,
6474f265607SAndrew Jones  *					      struct vfio_pci_hot_reset_info)
6484f265607SAndrew Jones  *
6494f265607SAndrew Jones  * Return: 0 on success, -errno on failure:
6504f265607SAndrew Jones  *	-enospc = insufficient buffer, -enodev = unsupported for device.
6514f265607SAndrew Jones  */
6524f265607SAndrew Jones struct vfio_pci_dependent_device {
6534f265607SAndrew Jones 	__u32	group_id;
6544f265607SAndrew Jones 	__u16	segment;
6554f265607SAndrew Jones 	__u8	bus;
6564f265607SAndrew Jones 	__u8	devfn; /* Use PCI_SLOT/PCI_FUNC */
6574f265607SAndrew Jones };
6584f265607SAndrew Jones 
6594f265607SAndrew Jones struct vfio_pci_hot_reset_info {
6604f265607SAndrew Jones 	__u32	argsz;
6614f265607SAndrew Jones 	__u32	flags;
6624f265607SAndrew Jones 	__u32	count;
6634f265607SAndrew Jones 	struct vfio_pci_dependent_device	devices[];
6644f265607SAndrew Jones };
6654f265607SAndrew Jones 
6664f265607SAndrew Jones #define VFIO_DEVICE_GET_PCI_HOT_RESET_INFO	_IO(VFIO_TYPE, VFIO_BASE + 12)
6674f265607SAndrew Jones 
6684f265607SAndrew Jones /**
6694f265607SAndrew Jones  * VFIO_DEVICE_PCI_HOT_RESET - _IOW(VFIO_TYPE, VFIO_BASE + 13,
6704f265607SAndrew Jones  *				    struct vfio_pci_hot_reset)
6714f265607SAndrew Jones  *
6724f265607SAndrew Jones  * Return: 0 on success, -errno on failure.
6734f265607SAndrew Jones  */
6744f265607SAndrew Jones struct vfio_pci_hot_reset {
6754f265607SAndrew Jones 	__u32	argsz;
6764f265607SAndrew Jones 	__u32	flags;
6774f265607SAndrew Jones 	__u32	count;
6784f265607SAndrew Jones 	__s32	group_fds[];
6794f265607SAndrew Jones };
6804f265607SAndrew Jones 
6814f265607SAndrew Jones #define VFIO_DEVICE_PCI_HOT_RESET	_IO(VFIO_TYPE, VFIO_BASE + 13)
6824f265607SAndrew Jones 
6839f2d175dSPaolo Bonzini /**
6849f2d175dSPaolo Bonzini  * VFIO_DEVICE_QUERY_GFX_PLANE - _IOW(VFIO_TYPE, VFIO_BASE + 14,
6859f2d175dSPaolo Bonzini  *                                    struct vfio_device_query_gfx_plane)
6869f2d175dSPaolo Bonzini  *
6879f2d175dSPaolo Bonzini  * Set the drm_plane_type and flags, then retrieve the gfx plane info.
6889f2d175dSPaolo Bonzini  *
6899f2d175dSPaolo Bonzini  * flags supported:
6909f2d175dSPaolo Bonzini  * - VFIO_GFX_PLANE_TYPE_PROBE and VFIO_GFX_PLANE_TYPE_DMABUF are set
6919f2d175dSPaolo Bonzini  *   to ask if the mdev supports dma-buf. 0 on support, -EINVAL on no
6929f2d175dSPaolo Bonzini  *   support for dma-buf.
6939f2d175dSPaolo Bonzini  * - VFIO_GFX_PLANE_TYPE_PROBE and VFIO_GFX_PLANE_TYPE_REGION are set
6949f2d175dSPaolo Bonzini  *   to ask if the mdev supports region. 0 on support, -EINVAL on no
6959f2d175dSPaolo Bonzini  *   support for region.
6969f2d175dSPaolo Bonzini  * - VFIO_GFX_PLANE_TYPE_DMABUF or VFIO_GFX_PLANE_TYPE_REGION is set
6979f2d175dSPaolo Bonzini  *   with each call to query the plane info.
6989f2d175dSPaolo Bonzini  * - Others are invalid and return -EINVAL.
6999f2d175dSPaolo Bonzini  *
7009f2d175dSPaolo Bonzini  * Note:
7019f2d175dSPaolo Bonzini  * 1. Plane could be disabled by guest. In that case, success will be
7029f2d175dSPaolo Bonzini  *    returned with zero-initialized drm_format, size, width and height
7039f2d175dSPaolo Bonzini  *    fields.
7049f2d175dSPaolo Bonzini  * 2. x_hot/y_hot is set to 0xFFFFFFFF if no hotspot information available
7059f2d175dSPaolo Bonzini  *
7069f2d175dSPaolo Bonzini  * Return: 0 on success, -errno on other failure.
7079f2d175dSPaolo Bonzini  */
7089f2d175dSPaolo Bonzini struct vfio_device_gfx_plane_info {
7099f2d175dSPaolo Bonzini 	__u32 argsz;
7109f2d175dSPaolo Bonzini 	__u32 flags;
7119f2d175dSPaolo Bonzini #define VFIO_GFX_PLANE_TYPE_PROBE (1 << 0)
7129f2d175dSPaolo Bonzini #define VFIO_GFX_PLANE_TYPE_DMABUF (1 << 1)
7139f2d175dSPaolo Bonzini #define VFIO_GFX_PLANE_TYPE_REGION (1 << 2)
7149f2d175dSPaolo Bonzini 	/* in */
7159f2d175dSPaolo Bonzini 	__u32 drm_plane_type;	/* type of plane: DRM_PLANE_TYPE_* */
7169f2d175dSPaolo Bonzini 	/* out */
7179f2d175dSPaolo Bonzini 	__u32 drm_format;	/* drm format of plane */
7189f2d175dSPaolo Bonzini 	__u64 drm_format_mod;   /* tiled mode */
7199f2d175dSPaolo Bonzini 	__u32 width;	/* width of plane */
7209f2d175dSPaolo Bonzini 	__u32 height;	/* height of plane */
7219f2d175dSPaolo Bonzini 	__u32 stride;	/* stride of plane */
7229f2d175dSPaolo Bonzini 	__u32 size;	/* size of plane in bytes, align on page*/
7239f2d175dSPaolo Bonzini 	__u32 x_pos;	/* horizontal position of cursor plane */
7249f2d175dSPaolo Bonzini 	__u32 y_pos;	/* vertical position of cursor plane*/
7259f2d175dSPaolo Bonzini 	__u32 x_hot;    /* horizontal position of cursor hotspot */
7269f2d175dSPaolo Bonzini 	__u32 y_hot;    /* vertical position of cursor hotspot */
7279f2d175dSPaolo Bonzini 	union {
7289f2d175dSPaolo Bonzini 		__u32 region_index;	/* region index */
7299f2d175dSPaolo Bonzini 		__u32 dmabuf_id;	/* dma-buf id */
7309f2d175dSPaolo Bonzini 	};
7319f2d175dSPaolo Bonzini };
7329f2d175dSPaolo Bonzini 
7339f2d175dSPaolo Bonzini #define VFIO_DEVICE_QUERY_GFX_PLANE _IO(VFIO_TYPE, VFIO_BASE + 14)
7349f2d175dSPaolo Bonzini 
7359f2d175dSPaolo Bonzini /**
7369f2d175dSPaolo Bonzini  * VFIO_DEVICE_GET_GFX_DMABUF - _IOW(VFIO_TYPE, VFIO_BASE + 15, __u32)
7379f2d175dSPaolo Bonzini  *
7389f2d175dSPaolo Bonzini  * Return a new dma-buf file descriptor for an exposed guest framebuffer
7399f2d175dSPaolo Bonzini  * described by the provided dmabuf_id. The dmabuf_id is returned from VFIO_
7409f2d175dSPaolo Bonzini  * DEVICE_QUERY_GFX_PLANE as a token of the exposed guest framebuffer.
7419f2d175dSPaolo Bonzini  */
7429f2d175dSPaolo Bonzini 
7439f2d175dSPaolo Bonzini #define VFIO_DEVICE_GET_GFX_DMABUF _IO(VFIO_TYPE, VFIO_BASE + 15)
7449f2d175dSPaolo Bonzini 
74565a6d8ddSPeter Maydell /**
74665a6d8ddSPeter Maydell  * VFIO_DEVICE_IOEVENTFD - _IOW(VFIO_TYPE, VFIO_BASE + 16,
74765a6d8ddSPeter Maydell  *                              struct vfio_device_ioeventfd)
74865a6d8ddSPeter Maydell  *
74965a6d8ddSPeter Maydell  * Perform a write to the device at the specified device fd offset, with
75065a6d8ddSPeter Maydell  * the specified data and width when the provided eventfd is triggered.
75165a6d8ddSPeter Maydell  * vfio bus drivers may not support this for all regions, for all widths,
75265a6d8ddSPeter Maydell  * or at all.  vfio-pci currently only enables support for BAR regions,
75365a6d8ddSPeter Maydell  * excluding the MSI-X vector table.
75465a6d8ddSPeter Maydell  *
75565a6d8ddSPeter Maydell  * Return: 0 on success, -errno on failure.
75665a6d8ddSPeter Maydell  */
75765a6d8ddSPeter Maydell struct vfio_device_ioeventfd {
75865a6d8ddSPeter Maydell 	__u32	argsz;
75965a6d8ddSPeter Maydell 	__u32	flags;
76065a6d8ddSPeter Maydell #define VFIO_DEVICE_IOEVENTFD_8		(1 << 0) /* 1-byte write */
76165a6d8ddSPeter Maydell #define VFIO_DEVICE_IOEVENTFD_16	(1 << 1) /* 2-byte write */
76265a6d8ddSPeter Maydell #define VFIO_DEVICE_IOEVENTFD_32	(1 << 2) /* 4-byte write */
76365a6d8ddSPeter Maydell #define VFIO_DEVICE_IOEVENTFD_64	(1 << 3) /* 8-byte write */
76465a6d8ddSPeter Maydell #define VFIO_DEVICE_IOEVENTFD_SIZE_MASK	(0xf)
76565a6d8ddSPeter Maydell 	__u64	offset;			/* device fd offset of write */
76665a6d8ddSPeter Maydell 	__u64	data;			/* data to be written */
76765a6d8ddSPeter Maydell 	__s32	fd;			/* -1 for de-assignment */
76865a6d8ddSPeter Maydell };
76965a6d8ddSPeter Maydell 
77065a6d8ddSPeter Maydell #define VFIO_DEVICE_IOEVENTFD		_IO(VFIO_TYPE, VFIO_BASE + 16)
77165a6d8ddSPeter Maydell 
772dc6f8d45SCornelia Huck /**
773d525f73fSChenyi Qiang  * VFIO_DEVICE_FEATURE - _IOWR(VFIO_TYPE, VFIO_BASE + 17,
774dc6f8d45SCornelia Huck  *			       struct vfio_device_feature)
775dc6f8d45SCornelia Huck  *
776dc6f8d45SCornelia Huck  * Get, set, or probe feature data of the device.  The feature is selected
777dc6f8d45SCornelia Huck  * using the FEATURE_MASK portion of the flags field.  Support for a feature
778dc6f8d45SCornelia Huck  * can be probed by setting both the FEATURE_MASK and PROBE bits.  A probe
779dc6f8d45SCornelia Huck  * may optionally include the GET and/or SET bits to determine read vs write
780dc6f8d45SCornelia Huck  * access of the feature respectively.  Probing a feature will return success
781dc6f8d45SCornelia Huck  * if the feature is supported and all of the optionally indicated GET/SET
782dc6f8d45SCornelia Huck  * methods are supported.  The format of the data portion of the structure is
783dc6f8d45SCornelia Huck  * specific to the given feature.  The data portion is not required for
784dc6f8d45SCornelia Huck  * probing.  GET and SET are mutually exclusive, except for use with PROBE.
785dc6f8d45SCornelia Huck  *
786dc6f8d45SCornelia Huck  * Return 0 on success, -errno on failure.
787dc6f8d45SCornelia Huck  */
788dc6f8d45SCornelia Huck struct vfio_device_feature {
789dc6f8d45SCornelia Huck 	__u32	argsz;
790dc6f8d45SCornelia Huck 	__u32	flags;
791dc6f8d45SCornelia Huck #define VFIO_DEVICE_FEATURE_MASK	(0xffff) /* 16-bit feature index */
792dc6f8d45SCornelia Huck #define VFIO_DEVICE_FEATURE_GET		(1 << 16) /* Get feature into data[] */
793dc6f8d45SCornelia Huck #define VFIO_DEVICE_FEATURE_SET		(1 << 17) /* Set feature from data[] */
794dc6f8d45SCornelia Huck #define VFIO_DEVICE_FEATURE_PROBE	(1 << 18) /* Probe feature support */
795dc6f8d45SCornelia Huck 	__u8	data[];
796dc6f8d45SCornelia Huck };
797dc6f8d45SCornelia Huck 
798dc6f8d45SCornelia Huck #define VFIO_DEVICE_FEATURE		_IO(VFIO_TYPE, VFIO_BASE + 17)
799dc6f8d45SCornelia Huck 
800dc6f8d45SCornelia Huck /*
801dc6f8d45SCornelia Huck  * Provide support for setting a PCI VF Token, which is used as a shared
802dc6f8d45SCornelia Huck  * secret between PF and VF drivers.  This feature may only be set on a
803dc6f8d45SCornelia Huck  * PCI SR-IOV PF when SR-IOV is enabled on the PF and there are no existing
804dc6f8d45SCornelia Huck  * open VFs.  Data provided when setting this feature is a 16-byte array
805dc6f8d45SCornelia Huck  * (__u8 b[16]), representing a UUID.
806dc6f8d45SCornelia Huck  */
807dc6f8d45SCornelia Huck #define VFIO_DEVICE_FEATURE_PCI_VF_TOKEN	(0)
808dc6f8d45SCornelia Huck 
809e4082063SAlex Williamson /*
810e4082063SAlex Williamson  * Indicates the device can support the migration API through
811e4082063SAlex Williamson  * VFIO_DEVICE_FEATURE_MIG_DEVICE_STATE. If this GET succeeds, the RUNNING and
812e4082063SAlex Williamson  * ERROR states are always supported. Support for additional states is
813e4082063SAlex Williamson  * indicated via the flags field; at least VFIO_MIGRATION_STOP_COPY must be
814e4082063SAlex Williamson  * set.
815e4082063SAlex Williamson  *
816e4082063SAlex Williamson  * VFIO_MIGRATION_STOP_COPY means that STOP, STOP_COPY and
817e4082063SAlex Williamson  * RESUMING are supported.
818e4082063SAlex Williamson  *
819e4082063SAlex Williamson  * VFIO_MIGRATION_STOP_COPY | VFIO_MIGRATION_P2P means that RUNNING_P2P
820e4082063SAlex Williamson  * is supported in addition to the STOP_COPY states.
821e4082063SAlex Williamson  *
822e4082063SAlex Williamson  * Other combinations of flags have behavior to be defined in the future.
823e4082063SAlex Williamson  */
824e4082063SAlex Williamson struct vfio_device_feature_migration {
825e4082063SAlex Williamson 	__aligned_u64 flags;
826e4082063SAlex Williamson #define VFIO_MIGRATION_STOP_COPY	(1 << 0)
827e4082063SAlex Williamson #define VFIO_MIGRATION_P2P		(1 << 1)
828e4082063SAlex Williamson };
829e4082063SAlex Williamson #define VFIO_DEVICE_FEATURE_MIGRATION 1
830e4082063SAlex Williamson 
831e4082063SAlex Williamson /*
832e4082063SAlex Williamson  * Upon VFIO_DEVICE_FEATURE_SET, execute a migration state change on the VFIO
833e4082063SAlex Williamson  * device. The new state is supplied in device_state, see enum
834e4082063SAlex Williamson  * vfio_device_mig_state for details
835e4082063SAlex Williamson  *
836e4082063SAlex Williamson  * The kernel migration driver must fully transition the device to the new state
837e4082063SAlex Williamson  * value before the operation returns to the user.
838e4082063SAlex Williamson  *
839e4082063SAlex Williamson  * The kernel migration driver must not generate asynchronous device state
840e4082063SAlex Williamson  * transitions outside of manipulation by the user or the VFIO_DEVICE_RESET
841e4082063SAlex Williamson  * ioctl as described above.
842e4082063SAlex Williamson  *
843e4082063SAlex Williamson  * If this function fails then current device_state may be the original
844e4082063SAlex Williamson  * operating state or some other state along the combination transition path.
845e4082063SAlex Williamson  * The user can then decide if it should execute a VFIO_DEVICE_RESET, attempt
846e4082063SAlex Williamson  * to return to the original state, or attempt to return to some other state
847e4082063SAlex Williamson  * such as RUNNING or STOP.
848e4082063SAlex Williamson  *
849e4082063SAlex Williamson  * If the new_state starts a new data transfer session then the FD associated
850e4082063SAlex Williamson  * with that session is returned in data_fd. The user is responsible to close
851e4082063SAlex Williamson  * this FD when it is finished. The user must consider the migration data stream
852e4082063SAlex Williamson  * carried over the FD to be opaque and must preserve the byte order of the
853e4082063SAlex Williamson  * stream. The user is not required to preserve buffer segmentation when writing
854e4082063SAlex Williamson  * the data stream during the RESUMING operation.
855e4082063SAlex Williamson  *
856e4082063SAlex Williamson  * Upon VFIO_DEVICE_FEATURE_GET, get the current migration state of the VFIO
857e4082063SAlex Williamson  * device, data_fd will be -1.
858e4082063SAlex Williamson  */
859e4082063SAlex Williamson struct vfio_device_feature_mig_state {
860e4082063SAlex Williamson 	__u32 device_state; /* From enum vfio_device_mig_state */
861e4082063SAlex Williamson 	__s32 data_fd;
862e4082063SAlex Williamson };
863e4082063SAlex Williamson #define VFIO_DEVICE_FEATURE_MIG_DEVICE_STATE 2
864e4082063SAlex Williamson 
865e4082063SAlex Williamson /*
866e4082063SAlex Williamson  * The device migration Finite State Machine is described by the enum
867e4082063SAlex Williamson  * vfio_device_mig_state. Some of the FSM arcs will create a migration data
868e4082063SAlex Williamson  * transfer session by returning a FD, in this case the migration data will
869e4082063SAlex Williamson  * flow over the FD using read() and write() as discussed below.
870e4082063SAlex Williamson  *
871e4082063SAlex Williamson  * There are 5 states to support VFIO_MIGRATION_STOP_COPY:
872e4082063SAlex Williamson  *  RUNNING - The device is running normally
873e4082063SAlex Williamson  *  STOP - The device does not change the internal or external state
874e4082063SAlex Williamson  *  STOP_COPY - The device internal state can be read out
875e4082063SAlex Williamson  *  RESUMING - The device is stopped and is loading a new internal state
876e4082063SAlex Williamson  *  ERROR - The device has failed and must be reset
877e4082063SAlex Williamson  *
878e4082063SAlex Williamson  * And 1 optional state to support VFIO_MIGRATION_P2P:
879e4082063SAlex Williamson  *  RUNNING_P2P - RUNNING, except the device cannot do peer to peer DMA
880e4082063SAlex Williamson  *
881e4082063SAlex Williamson  * The FSM takes actions on the arcs between FSM states. The driver implements
882e4082063SAlex Williamson  * the following behavior for the FSM arcs:
883e4082063SAlex Williamson  *
884e4082063SAlex Williamson  * RUNNING_P2P -> STOP
885e4082063SAlex Williamson  * STOP_COPY -> STOP
886e4082063SAlex Williamson  *   While in STOP the device must stop the operation of the device. The device
887e4082063SAlex Williamson  *   must not generate interrupts, DMA, or any other change to external state.
888e4082063SAlex Williamson  *   It must not change its internal state. When stopped the device and kernel
889e4082063SAlex Williamson  *   migration driver must accept and respond to interaction to support external
890e4082063SAlex Williamson  *   subsystems in the STOP state, for example PCI MSI-X and PCI config space.
891e4082063SAlex Williamson  *   Failure by the user to restrict device access while in STOP must not result
892e4082063SAlex Williamson  *   in error conditions outside the user context (ex. host system faults).
893e4082063SAlex Williamson  *
894e4082063SAlex Williamson  *   The STOP_COPY arc will terminate a data transfer session.
895e4082063SAlex Williamson  *
896e4082063SAlex Williamson  * RESUMING -> STOP
897e4082063SAlex Williamson  *   Leaving RESUMING terminates a data transfer session and indicates the
898e4082063SAlex Williamson  *   device should complete processing of the data delivered by write(). The
899e4082063SAlex Williamson  *   kernel migration driver should complete the incorporation of data written
900e4082063SAlex Williamson  *   to the data transfer FD into the device internal state and perform
901e4082063SAlex Williamson  *   final validity and consistency checking of the new device state. If the
902e4082063SAlex Williamson  *   user provided data is found to be incomplete, inconsistent, or otherwise
903e4082063SAlex Williamson  *   invalid, the migration driver must fail the SET_STATE ioctl and
904e4082063SAlex Williamson  *   optionally go to the ERROR state as described below.
905e4082063SAlex Williamson  *
906e4082063SAlex Williamson  *   While in STOP the device has the same behavior as other STOP states
907e4082063SAlex Williamson  *   described above.
908e4082063SAlex Williamson  *
909e4082063SAlex Williamson  *   To abort a RESUMING session the device must be reset.
910e4082063SAlex Williamson  *
911e4082063SAlex Williamson  * RUNNING_P2P -> RUNNING
912e4082063SAlex Williamson  *   While in RUNNING the device is fully operational, the device may generate
913e4082063SAlex Williamson  *   interrupts, DMA, respond to MMIO, all vfio device regions are functional,
914e4082063SAlex Williamson  *   and the device may advance its internal state.
915e4082063SAlex Williamson  *
916e4082063SAlex Williamson  * RUNNING -> RUNNING_P2P
917e4082063SAlex Williamson  * STOP -> RUNNING_P2P
918e4082063SAlex Williamson  *   While in RUNNING_P2P the device is partially running in the P2P quiescent
919e4082063SAlex Williamson  *   state defined below.
920e4082063SAlex Williamson  *
921e4082063SAlex Williamson  * STOP -> STOP_COPY
922e4082063SAlex Williamson  *   This arc begin the process of saving the device state and will return a
923e4082063SAlex Williamson  *   new data_fd.
924e4082063SAlex Williamson  *
925e4082063SAlex Williamson  *   While in the STOP_COPY state the device has the same behavior as STOP
926e4082063SAlex Williamson  *   with the addition that the data transfers session continues to stream the
927e4082063SAlex Williamson  *   migration state. End of stream on the FD indicates the entire device
928e4082063SAlex Williamson  *   state has been transferred.
929e4082063SAlex Williamson  *
930e4082063SAlex Williamson  *   The user should take steps to restrict access to vfio device regions while
931e4082063SAlex Williamson  *   the device is in STOP_COPY or risk corruption of the device migration data
932e4082063SAlex Williamson  *   stream.
933e4082063SAlex Williamson  *
934e4082063SAlex Williamson  * STOP -> RESUMING
935e4082063SAlex Williamson  *   Entering the RESUMING state starts a process of restoring the device state
936e4082063SAlex Williamson  *   and will return a new data_fd. The data stream fed into the data_fd should
937e4082063SAlex Williamson  *   be taken from the data transfer output of a single FD during saving from
938e4082063SAlex Williamson  *   a compatible device. The migration driver may alter/reset the internal
939e4082063SAlex Williamson  *   device state for this arc if required to prepare the device to receive the
940e4082063SAlex Williamson  *   migration data.
941e4082063SAlex Williamson  *
942e4082063SAlex Williamson  * any -> ERROR
943e4082063SAlex Williamson  *   ERROR cannot be specified as a device state, however any transition request
944e4082063SAlex Williamson  *   can be failed with an errno return and may then move the device_state into
945e4082063SAlex Williamson  *   ERROR. In this case the device was unable to execute the requested arc and
946e4082063SAlex Williamson  *   was also unable to restore the device to any valid device_state.
947e4082063SAlex Williamson  *   To recover from ERROR VFIO_DEVICE_RESET must be used to return the
948e4082063SAlex Williamson  *   device_state back to RUNNING.
949e4082063SAlex Williamson  *
950e4082063SAlex Williamson  * The optional peer to peer (P2P) quiescent state is intended to be a quiescent
951e4082063SAlex Williamson  * state for the device for the purposes of managing multiple devices within a
952e4082063SAlex Williamson  * user context where peer-to-peer DMA between devices may be active. The
953e4082063SAlex Williamson  * RUNNING_P2P states must prevent the device from initiating
954e4082063SAlex Williamson  * any new P2P DMA transactions. If the device can identify P2P transactions
955e4082063SAlex Williamson  * then it can stop only P2P DMA, otherwise it must stop all DMA. The migration
956e4082063SAlex Williamson  * driver must complete any such outstanding operations prior to completing the
957e4082063SAlex Williamson  * FSM arc into a P2P state. For the purpose of specification the states
958e4082063SAlex Williamson  * behave as though the device was fully running if not supported. Like while in
959e4082063SAlex Williamson  * STOP or STOP_COPY the user must not touch the device, otherwise the state
960e4082063SAlex Williamson  * can be exited.
961e4082063SAlex Williamson  *
962e4082063SAlex Williamson  * The remaining possible transitions are interpreted as combinations of the
963e4082063SAlex Williamson  * above FSM arcs. As there are multiple paths through the FSM arcs the path
964e4082063SAlex Williamson  * should be selected based on the following rules:
965e4082063SAlex Williamson  *   - Select the shortest path.
966e4082063SAlex Williamson  * Refer to vfio_mig_get_next_state() for the result of the algorithm.
967e4082063SAlex Williamson  *
968e4082063SAlex Williamson  * The automatic transit through the FSM arcs that make up the combination
969e4082063SAlex Williamson  * transition is invisible to the user. When working with combination arcs the
970e4082063SAlex Williamson  * user may see any step along the path in the device_state if SET_STATE
971e4082063SAlex Williamson  * fails. When handling these types of errors users should anticipate future
972e4082063SAlex Williamson  * revisions of this protocol using new states and those states becoming
973e4082063SAlex Williamson  * visible in this case.
974e4082063SAlex Williamson  *
975e4082063SAlex Williamson  * The optional states cannot be used with SET_STATE if the device does not
976e4082063SAlex Williamson  * support them. The user can discover if these states are supported by using
977e4082063SAlex Williamson  * VFIO_DEVICE_FEATURE_MIGRATION. By using combination transitions the user can
978e4082063SAlex Williamson  * avoid knowing about these optional states if the kernel driver supports them.
979e4082063SAlex Williamson  */
980e4082063SAlex Williamson enum vfio_device_mig_state {
981e4082063SAlex Williamson 	VFIO_DEVICE_STATE_ERROR = 0,
982e4082063SAlex Williamson 	VFIO_DEVICE_STATE_STOP = 1,
983e4082063SAlex Williamson 	VFIO_DEVICE_STATE_RUNNING = 2,
984e4082063SAlex Williamson 	VFIO_DEVICE_STATE_STOP_COPY = 3,
985e4082063SAlex Williamson 	VFIO_DEVICE_STATE_RESUMING = 4,
986e4082063SAlex Williamson 	VFIO_DEVICE_STATE_RUNNING_P2P = 5,
987e4082063SAlex Williamson };
988e4082063SAlex Williamson 
989*93e0932bSPeter Xu /*
990*93e0932bSPeter Xu  * Upon VFIO_DEVICE_FEATURE_SET, allow the device to be moved into a low power
991*93e0932bSPeter Xu  * state with the platform-based power management.  Device use of lower power
992*93e0932bSPeter Xu  * states depends on factors managed by the runtime power management core,
993*93e0932bSPeter Xu  * including system level support and coordinating support among dependent
994*93e0932bSPeter Xu  * devices.  Enabling device low power entry does not guarantee lower power
995*93e0932bSPeter Xu  * usage by the device, nor is a mechanism provided through this feature to
996*93e0932bSPeter Xu  * know the current power state of the device.  If any device access happens
997*93e0932bSPeter Xu  * (either from the host or through the vfio uAPI) when the device is in the
998*93e0932bSPeter Xu  * low power state, then the host will move the device out of the low power
999*93e0932bSPeter Xu  * state as necessary prior to the access.  Once the access is completed, the
1000*93e0932bSPeter Xu  * device may re-enter the low power state.  For single shot low power support
1001*93e0932bSPeter Xu  * with wake-up notification, see
1002*93e0932bSPeter Xu  * VFIO_DEVICE_FEATURE_LOW_POWER_ENTRY_WITH_WAKEUP below.  Access to mmap'd
1003*93e0932bSPeter Xu  * device regions is disabled on LOW_POWER_ENTRY and may only be resumed after
1004*93e0932bSPeter Xu  * calling LOW_POWER_EXIT.
1005*93e0932bSPeter Xu  */
1006*93e0932bSPeter Xu #define VFIO_DEVICE_FEATURE_LOW_POWER_ENTRY 3
1007*93e0932bSPeter Xu 
1008*93e0932bSPeter Xu /*
1009*93e0932bSPeter Xu  * This device feature has the same behavior as
1010*93e0932bSPeter Xu  * VFIO_DEVICE_FEATURE_LOW_POWER_ENTRY with the exception that the user
1011*93e0932bSPeter Xu  * provides an eventfd for wake-up notification.  When the device moves out of
1012*93e0932bSPeter Xu  * the low power state for the wake-up, the host will not allow the device to
1013*93e0932bSPeter Xu  * re-enter a low power state without a subsequent user call to one of the low
1014*93e0932bSPeter Xu  * power entry device feature IOCTLs.  Access to mmap'd device regions is
1015*93e0932bSPeter Xu  * disabled on LOW_POWER_ENTRY_WITH_WAKEUP and may only be resumed after the
1016*93e0932bSPeter Xu  * low power exit.  The low power exit can happen either through LOW_POWER_EXIT
1017*93e0932bSPeter Xu  * or through any other access (where the wake-up notification has been
1018*93e0932bSPeter Xu  * generated).  The access to mmap'd device regions will not trigger low power
1019*93e0932bSPeter Xu  * exit.
1020*93e0932bSPeter Xu  *
1021*93e0932bSPeter Xu  * The notification through the provided eventfd will be generated only when
1022*93e0932bSPeter Xu  * the device has entered and is resumed from a low power state after
1023*93e0932bSPeter Xu  * calling this device feature IOCTL.  A device that has not entered low power
1024*93e0932bSPeter Xu  * state, as managed through the runtime power management core, will not
1025*93e0932bSPeter Xu  * generate a notification through the provided eventfd on access.  Calling the
1026*93e0932bSPeter Xu  * LOW_POWER_EXIT feature is optional in the case where notification has been
1027*93e0932bSPeter Xu  * signaled on the provided eventfd that a resume from low power has occurred.
1028*93e0932bSPeter Xu  */
1029*93e0932bSPeter Xu struct vfio_device_low_power_entry_with_wakeup {
1030*93e0932bSPeter Xu 	__s32 wakeup_eventfd;
1031*93e0932bSPeter Xu 	__u32 reserved;
1032*93e0932bSPeter Xu };
1033*93e0932bSPeter Xu 
1034*93e0932bSPeter Xu #define VFIO_DEVICE_FEATURE_LOW_POWER_ENTRY_WITH_WAKEUP 4
1035*93e0932bSPeter Xu 
1036*93e0932bSPeter Xu /*
1037*93e0932bSPeter Xu  * Upon VFIO_DEVICE_FEATURE_SET, disallow use of device low power states as
1038*93e0932bSPeter Xu  * previously enabled via VFIO_DEVICE_FEATURE_LOW_POWER_ENTRY or
1039*93e0932bSPeter Xu  * VFIO_DEVICE_FEATURE_LOW_POWER_ENTRY_WITH_WAKEUP device features.
1040*93e0932bSPeter Xu  * This device feature IOCTL may itself generate a wakeup eventfd notification
1041*93e0932bSPeter Xu  * in the latter case if the device had previously entered a low power state.
1042*93e0932bSPeter Xu  */
1043*93e0932bSPeter Xu #define VFIO_DEVICE_FEATURE_LOW_POWER_EXIT 5
1044*93e0932bSPeter Xu 
1045*93e0932bSPeter Xu /*
1046*93e0932bSPeter Xu  * Upon VFIO_DEVICE_FEATURE_SET start/stop device DMA logging.
1047*93e0932bSPeter Xu  * VFIO_DEVICE_FEATURE_PROBE can be used to detect if the device supports
1048*93e0932bSPeter Xu  * DMA logging.
1049*93e0932bSPeter Xu  *
1050*93e0932bSPeter Xu  * DMA logging allows a device to internally record what DMAs the device is
1051*93e0932bSPeter Xu  * initiating and report them back to userspace. It is part of the VFIO
1052*93e0932bSPeter Xu  * migration infrastructure that allows implementing dirty page tracking
1053*93e0932bSPeter Xu  * during the pre copy phase of live migration. Only DMA WRITEs are logged,
1054*93e0932bSPeter Xu  * and this API is not connected to VFIO_DEVICE_FEATURE_MIG_DEVICE_STATE.
1055*93e0932bSPeter Xu  *
1056*93e0932bSPeter Xu  * When DMA logging is started a range of IOVAs to monitor is provided and the
1057*93e0932bSPeter Xu  * device can optimize its logging to cover only the IOVA range given. Each
1058*93e0932bSPeter Xu  * DMA that the device initiates inside the range will be logged by the device
1059*93e0932bSPeter Xu  * for later retrieval.
1060*93e0932bSPeter Xu  *
1061*93e0932bSPeter Xu  * page_size is an input that hints what tracking granularity the device
1062*93e0932bSPeter Xu  * should try to achieve. If the device cannot do the hinted page size then
1063*93e0932bSPeter Xu  * it's the driver choice which page size to pick based on its support.
1064*93e0932bSPeter Xu  * On output the device will return the page size it selected.
1065*93e0932bSPeter Xu  *
1066*93e0932bSPeter Xu  * ranges is a pointer to an array of
1067*93e0932bSPeter Xu  * struct vfio_device_feature_dma_logging_range.
1068*93e0932bSPeter Xu  *
1069*93e0932bSPeter Xu  * The core kernel code guarantees to support by minimum num_ranges that fit
1070*93e0932bSPeter Xu  * into a single kernel page. User space can try higher values but should give
1071*93e0932bSPeter Xu  * up if the above can't be achieved as of some driver limitations.
1072*93e0932bSPeter Xu  *
1073*93e0932bSPeter Xu  * A single call to start device DMA logging can be issued and a matching stop
1074*93e0932bSPeter Xu  * should follow at the end. Another start is not allowed in the meantime.
1075*93e0932bSPeter Xu  */
1076*93e0932bSPeter Xu struct vfio_device_feature_dma_logging_control {
1077*93e0932bSPeter Xu 	__aligned_u64 page_size;
1078*93e0932bSPeter Xu 	__u32 num_ranges;
1079*93e0932bSPeter Xu 	__u32 __reserved;
1080*93e0932bSPeter Xu 	__aligned_u64 ranges;
1081*93e0932bSPeter Xu };
1082*93e0932bSPeter Xu 
1083*93e0932bSPeter Xu struct vfio_device_feature_dma_logging_range {
1084*93e0932bSPeter Xu 	__aligned_u64 iova;
1085*93e0932bSPeter Xu 	__aligned_u64 length;
1086*93e0932bSPeter Xu };
1087*93e0932bSPeter Xu 
1088*93e0932bSPeter Xu #define VFIO_DEVICE_FEATURE_DMA_LOGGING_START 6
1089*93e0932bSPeter Xu 
1090*93e0932bSPeter Xu /*
1091*93e0932bSPeter Xu  * Upon VFIO_DEVICE_FEATURE_SET stop device DMA logging that was started
1092*93e0932bSPeter Xu  * by VFIO_DEVICE_FEATURE_DMA_LOGGING_START
1093*93e0932bSPeter Xu  */
1094*93e0932bSPeter Xu #define VFIO_DEVICE_FEATURE_DMA_LOGGING_STOP 7
1095*93e0932bSPeter Xu 
1096*93e0932bSPeter Xu /*
1097*93e0932bSPeter Xu  * Upon VFIO_DEVICE_FEATURE_GET read back and clear the device DMA log
1098*93e0932bSPeter Xu  *
1099*93e0932bSPeter Xu  * Query the device's DMA log for written pages within the given IOVA range.
1100*93e0932bSPeter Xu  * During querying the log is cleared for the IOVA range.
1101*93e0932bSPeter Xu  *
1102*93e0932bSPeter Xu  * bitmap is a pointer to an array of u64s that will hold the output bitmap
1103*93e0932bSPeter Xu  * with 1 bit reporting a page_size unit of IOVA. The mapping of IOVA to bits
1104*93e0932bSPeter Xu  * is given by:
1105*93e0932bSPeter Xu  *  bitmap[(addr - iova)/page_size] & (1ULL << (addr % 64))
1106*93e0932bSPeter Xu  *
1107*93e0932bSPeter Xu  * The input page_size can be any power of two value and does not have to
1108*93e0932bSPeter Xu  * match the value given to VFIO_DEVICE_FEATURE_DMA_LOGGING_START. The driver
1109*93e0932bSPeter Xu  * will format its internal logging to match the reporting page size, possibly
1110*93e0932bSPeter Xu  * by replicating bits if the internal page size is lower than requested.
1111*93e0932bSPeter Xu  *
1112*93e0932bSPeter Xu  * The LOGGING_REPORT will only set bits in the bitmap and never clear or
1113*93e0932bSPeter Xu  * perform any initialization of the user provided bitmap.
1114*93e0932bSPeter Xu  *
1115*93e0932bSPeter Xu  * If any error is returned userspace should assume that the dirty log is
1116*93e0932bSPeter Xu  * corrupted. Error recovery is to consider all memory dirty and try to
1117*93e0932bSPeter Xu  * restart the dirty tracking, or to abort/restart the whole migration.
1118*93e0932bSPeter Xu  *
1119*93e0932bSPeter Xu  * If DMA logging is not enabled, an error will be returned.
1120*93e0932bSPeter Xu  *
1121*93e0932bSPeter Xu  */
1122*93e0932bSPeter Xu struct vfio_device_feature_dma_logging_report {
1123*93e0932bSPeter Xu 	__aligned_u64 iova;
1124*93e0932bSPeter Xu 	__aligned_u64 length;
1125*93e0932bSPeter Xu 	__aligned_u64 page_size;
1126*93e0932bSPeter Xu 	__aligned_u64 bitmap;
1127*93e0932bSPeter Xu };
1128*93e0932bSPeter Xu 
1129*93e0932bSPeter Xu #define VFIO_DEVICE_FEATURE_DMA_LOGGING_REPORT 8
1130*93e0932bSPeter Xu 
1131883f0b85SAlex Williamson /* -------- API for Type1 VFIO IOMMU -------- */
1132883f0b85SAlex Williamson 
1133883f0b85SAlex Williamson /**
1134883f0b85SAlex Williamson  * VFIO_IOMMU_GET_INFO - _IOR(VFIO_TYPE, VFIO_BASE + 12, struct vfio_iommu_info)
1135883f0b85SAlex Williamson  *
1136883f0b85SAlex Williamson  * Retrieve information about the IOMMU object. Fills in provided
1137883f0b85SAlex Williamson  * struct vfio_iommu_info. Caller sets argsz.
1138883f0b85SAlex Williamson  *
1139883f0b85SAlex Williamson  * XXX Should we do these by CHECK_EXTENSION too?
1140883f0b85SAlex Williamson  */
1141883f0b85SAlex Williamson struct vfio_iommu_type1_info {
1142883f0b85SAlex Williamson 	__u32	argsz;
1143883f0b85SAlex Williamson 	__u32	flags;
1144883f0b85SAlex Williamson #define VFIO_IOMMU_INFO_PGSIZES (1 << 0)	/* supported page sizes info */
1145f363d039SEric Auger #define VFIO_IOMMU_INFO_CAPS	(1 << 1)	/* Info supports caps */
1146883f0b85SAlex Williamson 	__u64	iova_pgsizes;	/* Bitmap of supported page sizes */
1147f363d039SEric Auger 	__u32   cap_offset;	/* Offset within info struct of first cap */
1148f363d039SEric Auger };
1149f363d039SEric Auger 
1150f363d039SEric Auger /*
1151f363d039SEric Auger  * The IOVA capability allows to report the valid IOVA range(s)
1152f363d039SEric Auger  * excluding any non-relaxable reserved regions exposed by
1153f363d039SEric Auger  * devices attached to the container. Any DMA map attempt
1154f363d039SEric Auger  * outside the valid iova range will return error.
1155f363d039SEric Auger  *
1156f363d039SEric Auger  * The structures below define version 1 of this capability.
1157f363d039SEric Auger  */
1158f363d039SEric Auger #define VFIO_IOMMU_TYPE1_INFO_CAP_IOVA_RANGE  1
1159f363d039SEric Auger 
1160f363d039SEric Auger struct vfio_iova_range {
1161f363d039SEric Auger 	__u64	start;
1162f363d039SEric Auger 	__u64	end;
1163f363d039SEric Auger };
1164f363d039SEric Auger 
1165f363d039SEric Auger struct vfio_iommu_type1_info_cap_iova_range {
1166f363d039SEric Auger 	struct	vfio_info_cap_header header;
1167f363d039SEric Auger 	__u32	nr_iovas;
1168f363d039SEric Auger 	__u32	reserved;
1169f363d039SEric Auger 	struct	vfio_iova_range iova_ranges[];
1170883f0b85SAlex Williamson };
1171883f0b85SAlex Williamson 
1172f76b348eSCornelia Huck /*
1173f76b348eSCornelia Huck  * The migration capability allows to report supported features for migration.
1174f76b348eSCornelia Huck  *
1175f76b348eSCornelia Huck  * The structures below define version 1 of this capability.
1176f76b348eSCornelia Huck  *
1177f76b348eSCornelia Huck  * The existence of this capability indicates that IOMMU kernel driver supports
1178f76b348eSCornelia Huck  * dirty page logging.
1179f76b348eSCornelia Huck  *
1180f76b348eSCornelia Huck  * pgsize_bitmap: Kernel driver returns bitmap of supported page sizes for dirty
1181f76b348eSCornelia Huck  * page logging.
1182f76b348eSCornelia Huck  * max_dirty_bitmap_size: Kernel driver returns maximum supported dirty bitmap
1183f76b348eSCornelia Huck  * size in bytes that can be used by user applications when getting the dirty
1184f76b348eSCornelia Huck  * bitmap.
1185f76b348eSCornelia Huck  */
1186e6546342SJason Wang #define VFIO_IOMMU_TYPE1_INFO_CAP_MIGRATION  2
1187f76b348eSCornelia Huck 
1188f76b348eSCornelia Huck struct vfio_iommu_type1_info_cap_migration {
1189f76b348eSCornelia Huck 	struct	vfio_info_cap_header header;
1190f76b348eSCornelia Huck 	__u32	flags;
1191f76b348eSCornelia Huck 	__u64	pgsize_bitmap;
1192f76b348eSCornelia Huck 	__u64	max_dirty_bitmap_size;		/* in bytes */
1193f76b348eSCornelia Huck };
1194f76b348eSCornelia Huck 
119553ba2eeeSMatthew Rosato /*
119653ba2eeeSMatthew Rosato  * The DMA available capability allows to report the current number of
119753ba2eeeSMatthew Rosato  * simultaneously outstanding DMA mappings that are allowed.
119853ba2eeeSMatthew Rosato  *
119953ba2eeeSMatthew Rosato  * The structure below defines version 1 of this capability.
120053ba2eeeSMatthew Rosato  *
120153ba2eeeSMatthew Rosato  * avail: specifies the current number of outstanding DMA mappings allowed.
120253ba2eeeSMatthew Rosato  */
120353ba2eeeSMatthew Rosato #define VFIO_IOMMU_TYPE1_INFO_DMA_AVAIL 3
120453ba2eeeSMatthew Rosato 
120553ba2eeeSMatthew Rosato struct vfio_iommu_type1_info_dma_avail {
120653ba2eeeSMatthew Rosato 	struct	vfio_info_cap_header header;
120753ba2eeeSMatthew Rosato 	__u32	avail;
120853ba2eeeSMatthew Rosato };
120953ba2eeeSMatthew Rosato 
1210883f0b85SAlex Williamson #define VFIO_IOMMU_GET_INFO _IO(VFIO_TYPE, VFIO_BASE + 12)
1211883f0b85SAlex Williamson 
1212883f0b85SAlex Williamson /**
1213883f0b85SAlex Williamson  * VFIO_IOMMU_MAP_DMA - _IOW(VFIO_TYPE, VFIO_BASE + 13, struct vfio_dma_map)
1214883f0b85SAlex Williamson  *
1215883f0b85SAlex Williamson  * Map process virtual addresses to IO virtual addresses using the
1216883f0b85SAlex Williamson  * provided struct vfio_dma_map. Caller sets argsz. READ &/ WRITE required.
1217278f064eSEduardo Habkost  *
1218278f064eSEduardo Habkost  * If flags & VFIO_DMA_MAP_FLAG_VADDR, update the base vaddr for iova, and
1219278f064eSEduardo Habkost  * unblock translation of host virtual addresses in the iova range.  The vaddr
1220278f064eSEduardo Habkost  * must have previously been invalidated with VFIO_DMA_UNMAP_FLAG_VADDR.  To
1221278f064eSEduardo Habkost  * maintain memory consistency within the user application, the updated vaddr
1222278f064eSEduardo Habkost  * must address the same memory object as originally mapped.  Failure to do so
1223278f064eSEduardo Habkost  * will result in user memory corruption and/or device misbehavior.  iova and
1224278f064eSEduardo Habkost  * size must match those in the original MAP_DMA call.  Protection is not
1225278f064eSEduardo Habkost  * changed, and the READ & WRITE flags must be 0.
1226883f0b85SAlex Williamson  */
1227883f0b85SAlex Williamson struct vfio_iommu_type1_dma_map {
1228883f0b85SAlex Williamson 	__u32	argsz;
1229883f0b85SAlex Williamson 	__u32	flags;
1230883f0b85SAlex Williamson #define VFIO_DMA_MAP_FLAG_READ (1 << 0)		/* readable from device */
1231883f0b85SAlex Williamson #define VFIO_DMA_MAP_FLAG_WRITE (1 << 1)	/* writable from device */
1232278f064eSEduardo Habkost #define VFIO_DMA_MAP_FLAG_VADDR (1 << 2)
1233883f0b85SAlex Williamson 	__u64	vaddr;				/* Process virtual address */
1234883f0b85SAlex Williamson 	__u64	iova;				/* IO virtual address */
1235883f0b85SAlex Williamson 	__u64	size;				/* Size of mapping (bytes) */
1236883f0b85SAlex Williamson };
1237883f0b85SAlex Williamson 
1238883f0b85SAlex Williamson #define VFIO_IOMMU_MAP_DMA _IO(VFIO_TYPE, VFIO_BASE + 13)
1239883f0b85SAlex Williamson 
1240f76b348eSCornelia Huck struct vfio_bitmap {
1241f76b348eSCornelia Huck 	__u64        pgsize;	/* page size for bitmap in bytes */
1242f76b348eSCornelia Huck 	__u64        size;	/* in bytes */
1243f76b348eSCornelia Huck 	__u64 *data;	/* one bit per page */
1244f76b348eSCornelia Huck };
1245f76b348eSCornelia Huck 
1246883f0b85SAlex Williamson /**
1247c5daeae1SAlexey Kardashevskiy  * VFIO_IOMMU_UNMAP_DMA - _IOWR(VFIO_TYPE, VFIO_BASE + 14,
1248c5daeae1SAlexey Kardashevskiy  *							struct vfio_dma_unmap)
1249883f0b85SAlex Williamson  *
1250883f0b85SAlex Williamson  * Unmap IO virtual addresses using the provided struct vfio_dma_unmap.
1251c5daeae1SAlexey Kardashevskiy  * Caller sets argsz.  The actual unmapped size is returned in the size
1252c5daeae1SAlexey Kardashevskiy  * field.  No guarantee is made to the user that arbitrary unmaps of iova
1253c5daeae1SAlexey Kardashevskiy  * or size different from those used in the original mapping call will
1254c5daeae1SAlexey Kardashevskiy  * succeed.
1255278f064eSEduardo Habkost  *
1256f76b348eSCornelia Huck  * VFIO_DMA_UNMAP_FLAG_GET_DIRTY_BITMAP should be set to get the dirty bitmap
1257f76b348eSCornelia Huck  * before unmapping IO virtual addresses. When this flag is set, the user must
1258f76b348eSCornelia Huck  * provide a struct vfio_bitmap in data[]. User must provide zero-allocated
1259f76b348eSCornelia Huck  * memory via vfio_bitmap.data and its size in the vfio_bitmap.size field.
1260f76b348eSCornelia Huck  * A bit in the bitmap represents one page, of user provided page size in
1261f76b348eSCornelia Huck  * vfio_bitmap.pgsize field, consecutively starting from iova offset. Bit set
1262f76b348eSCornelia Huck  * indicates that the page at that offset from iova is dirty. A Bitmap of the
1263f76b348eSCornelia Huck  * pages in the range of unmapped size is returned in the user-provided
1264f76b348eSCornelia Huck  * vfio_bitmap.data.
1265278f064eSEduardo Habkost  *
1266278f064eSEduardo Habkost  * If flags & VFIO_DMA_UNMAP_FLAG_ALL, unmap all addresses.  iova and size
1267278f064eSEduardo Habkost  * must be 0.  This cannot be combined with the get-dirty-bitmap flag.
1268278f064eSEduardo Habkost  *
1269278f064eSEduardo Habkost  * If flags & VFIO_DMA_UNMAP_FLAG_VADDR, do not unmap, but invalidate host
1270278f064eSEduardo Habkost  * virtual addresses in the iova range.  Tasks that attempt to translate an
1271278f064eSEduardo Habkost  * iova's vaddr will block.  DMA to already-mapped pages continues.  This
1272278f064eSEduardo Habkost  * cannot be combined with the get-dirty-bitmap flag.
1273883f0b85SAlex Williamson  */
1274883f0b85SAlex Williamson struct vfio_iommu_type1_dma_unmap {
1275883f0b85SAlex Williamson 	__u32	argsz;
1276883f0b85SAlex Williamson 	__u32	flags;
1277f76b348eSCornelia Huck #define VFIO_DMA_UNMAP_FLAG_GET_DIRTY_BITMAP (1 << 0)
1278278f064eSEduardo Habkost #define VFIO_DMA_UNMAP_FLAG_ALL		     (1 << 1)
1279278f064eSEduardo Habkost #define VFIO_DMA_UNMAP_FLAG_VADDR	     (1 << 2)
1280883f0b85SAlex Williamson 	__u64	iova;				/* IO virtual address */
1281883f0b85SAlex Williamson 	__u64	size;				/* Size of mapping (bytes) */
1282f76b348eSCornelia Huck 	__u8    data[];
1283883f0b85SAlex Williamson };
1284883f0b85SAlex Williamson 
1285883f0b85SAlex Williamson #define VFIO_IOMMU_UNMAP_DMA _IO(VFIO_TYPE, VFIO_BASE + 14)
1286883f0b85SAlex Williamson 
1287c5daeae1SAlexey Kardashevskiy /*
1288c5daeae1SAlexey Kardashevskiy  * IOCTLs to enable/disable IOMMU container usage.
1289c5daeae1SAlexey Kardashevskiy  * No parameters are supported.
1290c5daeae1SAlexey Kardashevskiy  */
1291c5daeae1SAlexey Kardashevskiy #define VFIO_IOMMU_ENABLE	_IO(VFIO_TYPE, VFIO_BASE + 15)
1292c5daeae1SAlexey Kardashevskiy #define VFIO_IOMMU_DISABLE	_IO(VFIO_TYPE, VFIO_BASE + 16)
1293c5daeae1SAlexey Kardashevskiy 
1294f76b348eSCornelia Huck /**
1295f76b348eSCornelia Huck  * VFIO_IOMMU_DIRTY_PAGES - _IOWR(VFIO_TYPE, VFIO_BASE + 17,
1296f76b348eSCornelia Huck  *                                     struct vfio_iommu_type1_dirty_bitmap)
1297f76b348eSCornelia Huck  * IOCTL is used for dirty pages logging.
1298f76b348eSCornelia Huck  * Caller should set flag depending on which operation to perform, details as
1299f76b348eSCornelia Huck  * below:
1300f76b348eSCornelia Huck  *
1301f76b348eSCornelia Huck  * Calling the IOCTL with VFIO_IOMMU_DIRTY_PAGES_FLAG_START flag set, instructs
1302f76b348eSCornelia Huck  * the IOMMU driver to log pages that are dirtied or potentially dirtied by
1303f76b348eSCornelia Huck  * the device; designed to be used when a migration is in progress. Dirty pages
1304f76b348eSCornelia Huck  * are logged until logging is disabled by user application by calling the IOCTL
1305f76b348eSCornelia Huck  * with VFIO_IOMMU_DIRTY_PAGES_FLAG_STOP flag.
1306f76b348eSCornelia Huck  *
1307f76b348eSCornelia Huck  * Calling the IOCTL with VFIO_IOMMU_DIRTY_PAGES_FLAG_STOP flag set, instructs
1308f76b348eSCornelia Huck  * the IOMMU driver to stop logging dirtied pages.
1309f76b348eSCornelia Huck  *
1310f76b348eSCornelia Huck  * Calling the IOCTL with VFIO_IOMMU_DIRTY_PAGES_FLAG_GET_BITMAP flag set
1311f76b348eSCornelia Huck  * returns the dirty pages bitmap for IOMMU container for a given IOVA range.
1312f76b348eSCornelia Huck  * The user must specify the IOVA range and the pgsize through the structure
1313f76b348eSCornelia Huck  * vfio_iommu_type1_dirty_bitmap_get in the data[] portion. This interface
1314f76b348eSCornelia Huck  * supports getting a bitmap of the smallest supported pgsize only and can be
1315f76b348eSCornelia Huck  * modified in future to get a bitmap of any specified supported pgsize. The
1316f76b348eSCornelia Huck  * user must provide a zeroed memory area for the bitmap memory and specify its
1317f76b348eSCornelia Huck  * size in bitmap.size. One bit is used to represent one page consecutively
1318f76b348eSCornelia Huck  * starting from iova offset. The user should provide page size in bitmap.pgsize
1319f76b348eSCornelia Huck  * field. A bit set in the bitmap indicates that the page at that offset from
1320f76b348eSCornelia Huck  * iova is dirty. The caller must set argsz to a value including the size of
1321f76b348eSCornelia Huck  * structure vfio_iommu_type1_dirty_bitmap_get, but excluding the size of the
1322f76b348eSCornelia Huck  * actual bitmap. If dirty pages logging is not enabled, an error will be
1323f76b348eSCornelia Huck  * returned.
1324f76b348eSCornelia Huck  *
1325f76b348eSCornelia Huck  * Only one of the flags _START, _STOP and _GET may be specified at a time.
1326f76b348eSCornelia Huck  *
1327f76b348eSCornelia Huck  */
1328f76b348eSCornelia Huck struct vfio_iommu_type1_dirty_bitmap {
1329f76b348eSCornelia Huck 	__u32        argsz;
1330f76b348eSCornelia Huck 	__u32        flags;
1331f76b348eSCornelia Huck #define VFIO_IOMMU_DIRTY_PAGES_FLAG_START	(1 << 0)
1332f76b348eSCornelia Huck #define VFIO_IOMMU_DIRTY_PAGES_FLAG_STOP	(1 << 1)
1333f76b348eSCornelia Huck #define VFIO_IOMMU_DIRTY_PAGES_FLAG_GET_BITMAP	(1 << 2)
1334f76b348eSCornelia Huck 	__u8         data[];
1335f76b348eSCornelia Huck };
1336f76b348eSCornelia Huck 
1337f76b348eSCornelia Huck struct vfio_iommu_type1_dirty_bitmap_get {
1338f76b348eSCornelia Huck 	__u64              iova;	/* IO virtual address */
1339f76b348eSCornelia Huck 	__u64              size;	/* Size of iova range */
1340f76b348eSCornelia Huck 	struct vfio_bitmap bitmap;
1341f76b348eSCornelia Huck };
1342f76b348eSCornelia Huck 
1343f76b348eSCornelia Huck #define VFIO_IOMMU_DIRTY_PAGES             _IO(VFIO_TYPE, VFIO_BASE + 17)
1344f76b348eSCornelia Huck 
1345c5daeae1SAlexey Kardashevskiy /* -------- Additional API for SPAPR TCE (Server POWERPC) IOMMU -------- */
1346c5daeae1SAlexey Kardashevskiy 
1347c5daeae1SAlexey Kardashevskiy /*
134825b8b39bSAlexey Kardashevskiy  * The SPAPR TCE DDW info struct provides the information about
134925b8b39bSAlexey Kardashevskiy  * the details of Dynamic DMA window capability.
135025b8b39bSAlexey Kardashevskiy  *
135125b8b39bSAlexey Kardashevskiy  * @pgsizes contains a page size bitmask, 4K/64K/16M are supported.
135225b8b39bSAlexey Kardashevskiy  * @max_dynamic_windows_supported tells the maximum number of windows
135325b8b39bSAlexey Kardashevskiy  * which the platform can create.
135425b8b39bSAlexey Kardashevskiy  * @levels tells the maximum number of levels in multi-level IOMMU tables;
135525b8b39bSAlexey Kardashevskiy  * this allows splitting a table into smaller chunks which reduces
135625b8b39bSAlexey Kardashevskiy  * the amount of physically contiguous memory required for the table.
135725b8b39bSAlexey Kardashevskiy  */
135825b8b39bSAlexey Kardashevskiy struct vfio_iommu_spapr_tce_ddw_info {
135925b8b39bSAlexey Kardashevskiy 	__u64 pgsizes;			/* Bitmap of supported page sizes */
136025b8b39bSAlexey Kardashevskiy 	__u32 max_dynamic_windows_supported;
136125b8b39bSAlexey Kardashevskiy 	__u32 levels;
136225b8b39bSAlexey Kardashevskiy };
136325b8b39bSAlexey Kardashevskiy 
136425b8b39bSAlexey Kardashevskiy /*
1365c5daeae1SAlexey Kardashevskiy  * The SPAPR TCE info struct provides the information about the PCI bus
1366c5daeae1SAlexey Kardashevskiy  * address ranges available for DMA, these values are programmed into
1367c5daeae1SAlexey Kardashevskiy  * the hardware so the guest has to know that information.
1368c5daeae1SAlexey Kardashevskiy  *
1369c5daeae1SAlexey Kardashevskiy  * The DMA 32 bit window start is an absolute PCI bus address.
1370c5daeae1SAlexey Kardashevskiy  * The IOVA address passed via map/unmap ioctls are absolute PCI bus
1371c5daeae1SAlexey Kardashevskiy  * addresses too so the window works as a filter rather than an offset
1372c5daeae1SAlexey Kardashevskiy  * for IOVA addresses.
1373c5daeae1SAlexey Kardashevskiy  *
137425b8b39bSAlexey Kardashevskiy  * Flags supported:
137525b8b39bSAlexey Kardashevskiy  * - VFIO_IOMMU_SPAPR_INFO_DDW: informs the userspace that dynamic DMA windows
137625b8b39bSAlexey Kardashevskiy  *   (DDW) support is present. @ddw is only supported when DDW is present.
1377c5daeae1SAlexey Kardashevskiy  */
1378c5daeae1SAlexey Kardashevskiy struct vfio_iommu_spapr_tce_info {
1379c5daeae1SAlexey Kardashevskiy 	__u32 argsz;
138025b8b39bSAlexey Kardashevskiy 	__u32 flags;
138125b8b39bSAlexey Kardashevskiy #define VFIO_IOMMU_SPAPR_INFO_DDW	(1 << 0)	/* DDW supported */
1382c5daeae1SAlexey Kardashevskiy 	__u32 dma32_window_start;	/* 32 bit window start (bytes) */
1383c5daeae1SAlexey Kardashevskiy 	__u32 dma32_window_size;	/* 32 bit window size (bytes) */
138425b8b39bSAlexey Kardashevskiy 	struct vfio_iommu_spapr_tce_ddw_info ddw;
1385c5daeae1SAlexey Kardashevskiy };
1386c5daeae1SAlexey Kardashevskiy 
1387c5daeae1SAlexey Kardashevskiy #define VFIO_IOMMU_SPAPR_TCE_GET_INFO	_IO(VFIO_TYPE, VFIO_BASE + 12)
1388c5daeae1SAlexey Kardashevskiy 
1389a9fd1654SJens Freimann /*
1390a9fd1654SJens Freimann  * EEH PE operation struct provides ways to:
1391a9fd1654SJens Freimann  * - enable/disable EEH functionality;
1392a9fd1654SJens Freimann  * - unfreeze IO/DMA for frozen PE;
1393a9fd1654SJens Freimann  * - read PE state;
1394a9fd1654SJens Freimann  * - reset PE;
139525b8b39bSAlexey Kardashevskiy  * - configure PE;
139625b8b39bSAlexey Kardashevskiy  * - inject EEH error.
1397a9fd1654SJens Freimann  */
139825b8b39bSAlexey Kardashevskiy struct vfio_eeh_pe_err {
139925b8b39bSAlexey Kardashevskiy 	__u32 type;
140025b8b39bSAlexey Kardashevskiy 	__u32 func;
140125b8b39bSAlexey Kardashevskiy 	__u64 addr;
140225b8b39bSAlexey Kardashevskiy 	__u64 mask;
140325b8b39bSAlexey Kardashevskiy };
140425b8b39bSAlexey Kardashevskiy 
1405a9fd1654SJens Freimann struct vfio_eeh_pe_op {
1406a9fd1654SJens Freimann 	__u32 argsz;
1407a9fd1654SJens Freimann 	__u32 flags;
1408a9fd1654SJens Freimann 	__u32 op;
140925b8b39bSAlexey Kardashevskiy 	union {
141025b8b39bSAlexey Kardashevskiy 		struct vfio_eeh_pe_err err;
141125b8b39bSAlexey Kardashevskiy 	};
1412a9fd1654SJens Freimann };
1413a9fd1654SJens Freimann 
1414a9fd1654SJens Freimann #define VFIO_EEH_PE_DISABLE		0	/* Disable EEH functionality */
1415a9fd1654SJens Freimann #define VFIO_EEH_PE_ENABLE		1	/* Enable EEH functionality  */
1416a9fd1654SJens Freimann #define VFIO_EEH_PE_UNFREEZE_IO		2	/* Enable IO for frozen PE   */
1417a9fd1654SJens Freimann #define VFIO_EEH_PE_UNFREEZE_DMA	3	/* Enable DMA for frozen PE  */
1418a9fd1654SJens Freimann #define VFIO_EEH_PE_GET_STATE		4	/* PE state retrieval        */
1419a9fd1654SJens Freimann #define  VFIO_EEH_PE_STATE_NORMAL	0	/* PE in functional state    */
1420a9fd1654SJens Freimann #define  VFIO_EEH_PE_STATE_RESET	1	/* PE reset in progress      */
1421a9fd1654SJens Freimann #define  VFIO_EEH_PE_STATE_STOPPED	2	/* Stopped DMA and IO        */
1422a9fd1654SJens Freimann #define  VFIO_EEH_PE_STATE_STOPPED_DMA	4	/* Stopped DMA only          */
1423a9fd1654SJens Freimann #define  VFIO_EEH_PE_STATE_UNAVAIL	5	/* State unavailable         */
1424a9fd1654SJens Freimann #define VFIO_EEH_PE_RESET_DEACTIVATE	5	/* Deassert PE reset         */
1425a9fd1654SJens Freimann #define VFIO_EEH_PE_RESET_HOT		6	/* Assert hot reset          */
1426a9fd1654SJens Freimann #define VFIO_EEH_PE_RESET_FUNDAMENTAL	7	/* Assert fundamental reset  */
1427a9fd1654SJens Freimann #define VFIO_EEH_PE_CONFIGURE		8	/* PE configuration          */
142825b8b39bSAlexey Kardashevskiy #define VFIO_EEH_PE_INJECT_ERR		9	/* Inject EEH error          */
1429a9fd1654SJens Freimann 
1430a9fd1654SJens Freimann #define VFIO_EEH_PE_OP			_IO(VFIO_TYPE, VFIO_BASE + 21)
1431a9fd1654SJens Freimann 
143225b8b39bSAlexey Kardashevskiy /**
143325b8b39bSAlexey Kardashevskiy  * VFIO_IOMMU_SPAPR_REGISTER_MEMORY - _IOW(VFIO_TYPE, VFIO_BASE + 17, struct vfio_iommu_spapr_register_memory)
143425b8b39bSAlexey Kardashevskiy  *
143525b8b39bSAlexey Kardashevskiy  * Registers user space memory where DMA is allowed. It pins
143625b8b39bSAlexey Kardashevskiy  * user pages and does the locked memory accounting so
143725b8b39bSAlexey Kardashevskiy  * subsequent VFIO_IOMMU_MAP_DMA/VFIO_IOMMU_UNMAP_DMA calls
143825b8b39bSAlexey Kardashevskiy  * get faster.
143925b8b39bSAlexey Kardashevskiy  */
144025b8b39bSAlexey Kardashevskiy struct vfio_iommu_spapr_register_memory {
144125b8b39bSAlexey Kardashevskiy 	__u32	argsz;
144225b8b39bSAlexey Kardashevskiy 	__u32	flags;
144325b8b39bSAlexey Kardashevskiy 	__u64	vaddr;				/* Process virtual address */
144425b8b39bSAlexey Kardashevskiy 	__u64	size;				/* Size of mapping (bytes) */
144525b8b39bSAlexey Kardashevskiy };
144625b8b39bSAlexey Kardashevskiy #define VFIO_IOMMU_SPAPR_REGISTER_MEMORY	_IO(VFIO_TYPE, VFIO_BASE + 17)
144725b8b39bSAlexey Kardashevskiy 
144825b8b39bSAlexey Kardashevskiy /**
144925b8b39bSAlexey Kardashevskiy  * VFIO_IOMMU_SPAPR_UNREGISTER_MEMORY - _IOW(VFIO_TYPE, VFIO_BASE + 18, struct vfio_iommu_spapr_register_memory)
145025b8b39bSAlexey Kardashevskiy  *
145125b8b39bSAlexey Kardashevskiy  * Unregisters user space memory registered with
145225b8b39bSAlexey Kardashevskiy  * VFIO_IOMMU_SPAPR_REGISTER_MEMORY.
145325b8b39bSAlexey Kardashevskiy  * Uses vfio_iommu_spapr_register_memory for parameters.
145425b8b39bSAlexey Kardashevskiy  */
145525b8b39bSAlexey Kardashevskiy #define VFIO_IOMMU_SPAPR_UNREGISTER_MEMORY	_IO(VFIO_TYPE, VFIO_BASE + 18)
145625b8b39bSAlexey Kardashevskiy 
145725b8b39bSAlexey Kardashevskiy /**
145825b8b39bSAlexey Kardashevskiy  * VFIO_IOMMU_SPAPR_TCE_CREATE - _IOWR(VFIO_TYPE, VFIO_BASE + 19, struct vfio_iommu_spapr_tce_create)
145925b8b39bSAlexey Kardashevskiy  *
146025b8b39bSAlexey Kardashevskiy  * Creates an additional TCE table and programs it (sets a new DMA window)
146125b8b39bSAlexey Kardashevskiy  * to every IOMMU group in the container. It receives page shift, window
146225b8b39bSAlexey Kardashevskiy  * size and number of levels in the TCE table being created.
146325b8b39bSAlexey Kardashevskiy  *
146425b8b39bSAlexey Kardashevskiy  * It allocates and returns an offset on a PCI bus of the new DMA window.
146525b8b39bSAlexey Kardashevskiy  */
146625b8b39bSAlexey Kardashevskiy struct vfio_iommu_spapr_tce_create {
146725b8b39bSAlexey Kardashevskiy 	__u32 argsz;
146825b8b39bSAlexey Kardashevskiy 	__u32 flags;
146925b8b39bSAlexey Kardashevskiy 	/* in */
147025b8b39bSAlexey Kardashevskiy 	__u32 page_shift;
147166fb2d54SCornelia Huck 	__u32 __resv1;
147225b8b39bSAlexey Kardashevskiy 	__u64 window_size;
147325b8b39bSAlexey Kardashevskiy 	__u32 levels;
147466fb2d54SCornelia Huck 	__u32 __resv2;
147525b8b39bSAlexey Kardashevskiy 	/* out */
147625b8b39bSAlexey Kardashevskiy 	__u64 start_addr;
147725b8b39bSAlexey Kardashevskiy };
147825b8b39bSAlexey Kardashevskiy #define VFIO_IOMMU_SPAPR_TCE_CREATE	_IO(VFIO_TYPE, VFIO_BASE + 19)
147925b8b39bSAlexey Kardashevskiy 
148025b8b39bSAlexey Kardashevskiy /**
148125b8b39bSAlexey Kardashevskiy  * VFIO_IOMMU_SPAPR_TCE_REMOVE - _IOW(VFIO_TYPE, VFIO_BASE + 20, struct vfio_iommu_spapr_tce_remove)
148225b8b39bSAlexey Kardashevskiy  *
148325b8b39bSAlexey Kardashevskiy  * Unprograms a TCE table from all groups in the container and destroys it.
148425b8b39bSAlexey Kardashevskiy  * It receives a PCI bus offset as a window id.
148525b8b39bSAlexey Kardashevskiy  */
148625b8b39bSAlexey Kardashevskiy struct vfio_iommu_spapr_tce_remove {
148725b8b39bSAlexey Kardashevskiy 	__u32 argsz;
148825b8b39bSAlexey Kardashevskiy 	__u32 flags;
148925b8b39bSAlexey Kardashevskiy 	/* in */
149025b8b39bSAlexey Kardashevskiy 	__u64 start_addr;
149125b8b39bSAlexey Kardashevskiy };
149225b8b39bSAlexey Kardashevskiy #define VFIO_IOMMU_SPAPR_TCE_REMOVE	_IO(VFIO_TYPE, VFIO_BASE + 20)
149325b8b39bSAlexey Kardashevskiy 
1494c5daeae1SAlexey Kardashevskiy /* ***************************************************************** */
1495c5daeae1SAlexey Kardashevskiy 
1496d4834ff9SAlexander Graf #endif /* VFIO_H */
1497