1883f0b85SAlex Williamson /*
2883f0b85SAlex Williamson  * VFIO API definition
3883f0b85SAlex Williamson  *
4883f0b85SAlex Williamson  * Copyright (C) 2012 Red Hat, Inc.  All rights reserved.
5883f0b85SAlex Williamson  *     Author: Alex Williamson <alex.williamson@redhat.com>
6883f0b85SAlex Williamson  *
7883f0b85SAlex Williamson  * This program is free software; you can redistribute it and/or modify
8883f0b85SAlex Williamson  * it under the terms of the GNU General Public License version 2 as
9883f0b85SAlex Williamson  * published by the Free Software Foundation.
10883f0b85SAlex Williamson  */
11d4834ff9SAlexander Graf #ifndef VFIO_H
12d4834ff9SAlexander Graf #define VFIO_H
13883f0b85SAlex Williamson 
14883f0b85SAlex Williamson #include <linux/types.h>
15883f0b85SAlex Williamson #include <linux/ioctl.h>
16883f0b85SAlex Williamson 
17883f0b85SAlex Williamson #define VFIO_API_VERSION	0
18883f0b85SAlex Williamson 
19883f0b85SAlex Williamson 
20883f0b85SAlex Williamson /* Kernel & User level defines for VFIO IOCTLs. */
21883f0b85SAlex Williamson 
22883f0b85SAlex Williamson /* Extensions */
23883f0b85SAlex Williamson 
24883f0b85SAlex Williamson #define VFIO_TYPE1_IOMMU		1
25c5daeae1SAlexey Kardashevskiy #define VFIO_SPAPR_TCE_IOMMU		2
269ffd2685SCornelia Huck #define VFIO_TYPE1v2_IOMMU		3
279ffd2685SCornelia Huck /*
289ffd2685SCornelia Huck  * IOMMU enforces DMA cache coherence (ex. PCIe NoSnoop stripping).  This
299ffd2685SCornelia Huck  * capability is subject to change as groups are added or removed.
309ffd2685SCornelia Huck  */
319ffd2685SCornelia Huck #define VFIO_DMA_CC_IOMMU		4
32883f0b85SAlex Williamson 
33a9fd1654SJens Freimann /* Check if EEH is supported */
34a9fd1654SJens Freimann #define VFIO_EEH			5
35a9fd1654SJens Freimann 
36444b1996SArd Biesheuvel /* Two-stage IOMMU */
37444b1996SArd Biesheuvel #define VFIO_TYPE1_NESTING_IOMMU	6	/* Implies v2 */
38444b1996SArd Biesheuvel 
3925b8b39bSAlexey Kardashevskiy #define VFIO_SPAPR_TCE_v2_IOMMU		7
4025b8b39bSAlexey Kardashevskiy 
41883f0b85SAlex Williamson /*
4266fb2d54SCornelia Huck  * The No-IOMMU IOMMU offers no translation or isolation for devices and
4366fb2d54SCornelia Huck  * supports no ioctls outside of VFIO_CHECK_EXTENSION.  Use of VFIO's No-IOMMU
4466fb2d54SCornelia Huck  * code will taint the host kernel and should be used with extreme caution.
4566fb2d54SCornelia Huck  */
4666fb2d54SCornelia Huck #define VFIO_NOIOMMU_IOMMU		8
4766fb2d54SCornelia Huck 
4866fb2d54SCornelia Huck /*
49883f0b85SAlex Williamson  * The IOCTL interface is designed for extensibility by embedding the
50883f0b85SAlex Williamson  * structure length (argsz) and flags into structures passed between
51883f0b85SAlex Williamson  * kernel and userspace.  We therefore use the _IO() macro for these
52883f0b85SAlex Williamson  * defines to avoid implicitly embedding a size into the ioctl request.
53883f0b85SAlex Williamson  * As structure fields are added, argsz will increase to match and flag
54883f0b85SAlex Williamson  * bits will be defined to indicate additional fields with valid data.
55883f0b85SAlex Williamson  * It's *always* the caller's responsibility to indicate the size of
56883f0b85SAlex Williamson  * the structure passed by setting argsz appropriately.
57883f0b85SAlex Williamson  */
58883f0b85SAlex Williamson 
59883f0b85SAlex Williamson #define VFIO_TYPE	(';')
60883f0b85SAlex Williamson #define VFIO_BASE	100
61883f0b85SAlex Williamson 
62*b89485a5SPaolo Bonzini /*
63*b89485a5SPaolo Bonzini  * For extension of INFO ioctls, VFIO makes use of a capability chain
64*b89485a5SPaolo Bonzini  * designed after PCI/e capabilities.  A flag bit indicates whether
65*b89485a5SPaolo Bonzini  * this capability chain is supported and a field defined in the fixed
66*b89485a5SPaolo Bonzini  * structure defines the offset of the first capability in the chain.
67*b89485a5SPaolo Bonzini  * This field is only valid when the corresponding bit in the flags
68*b89485a5SPaolo Bonzini  * bitmap is set.  This offset field is relative to the start of the
69*b89485a5SPaolo Bonzini  * INFO buffer, as is the next field within each capability header.
70*b89485a5SPaolo Bonzini  * The id within the header is a shared address space per INFO ioctl,
71*b89485a5SPaolo Bonzini  * while the version field is specific to the capability id.  The
72*b89485a5SPaolo Bonzini  * contents following the header are specific to the capability id.
73*b89485a5SPaolo Bonzini  */
74*b89485a5SPaolo Bonzini struct vfio_info_cap_header {
75*b89485a5SPaolo Bonzini 	__u16	id;		/* Identifies capability */
76*b89485a5SPaolo Bonzini 	__u16	version;	/* Version specific to the capability ID */
77*b89485a5SPaolo Bonzini 	__u32	next;		/* Offset of next capability */
78*b89485a5SPaolo Bonzini };
79*b89485a5SPaolo Bonzini 
80*b89485a5SPaolo Bonzini /*
81*b89485a5SPaolo Bonzini  * Callers of INFO ioctls passing insufficiently sized buffers will see
82*b89485a5SPaolo Bonzini  * the capability chain flag bit set, a zero value for the first capability
83*b89485a5SPaolo Bonzini  * offset (if available within the provided argsz), and argsz will be
84*b89485a5SPaolo Bonzini  * updated to report the necessary buffer size.  For compatibility, the
85*b89485a5SPaolo Bonzini  * INFO ioctl will not report error in this case, but the capability chain
86*b89485a5SPaolo Bonzini  * will not be available.
87*b89485a5SPaolo Bonzini  */
88*b89485a5SPaolo Bonzini 
89883f0b85SAlex Williamson /* -------- IOCTLs for VFIO file descriptor (/dev/vfio/vfio) -------- */
90883f0b85SAlex Williamson 
91883f0b85SAlex Williamson /**
92883f0b85SAlex Williamson  * VFIO_GET_API_VERSION - _IO(VFIO_TYPE, VFIO_BASE + 0)
93883f0b85SAlex Williamson  *
94883f0b85SAlex Williamson  * Report the version of the VFIO API.  This allows us to bump the entire
95883f0b85SAlex Williamson  * API version should we later need to add or change features in incompatible
96883f0b85SAlex Williamson  * ways.
97883f0b85SAlex Williamson  * Return: VFIO_API_VERSION
98883f0b85SAlex Williamson  * Availability: Always
99883f0b85SAlex Williamson  */
100883f0b85SAlex Williamson #define VFIO_GET_API_VERSION		_IO(VFIO_TYPE, VFIO_BASE + 0)
101883f0b85SAlex Williamson 
102883f0b85SAlex Williamson /**
103883f0b85SAlex Williamson  * VFIO_CHECK_EXTENSION - _IOW(VFIO_TYPE, VFIO_BASE + 1, __u32)
104883f0b85SAlex Williamson  *
105883f0b85SAlex Williamson  * Check whether an extension is supported.
106883f0b85SAlex Williamson  * Return: 0 if not supported, 1 (or some other positive integer) if supported.
107883f0b85SAlex Williamson  * Availability: Always
108883f0b85SAlex Williamson  */
109883f0b85SAlex Williamson #define VFIO_CHECK_EXTENSION		_IO(VFIO_TYPE, VFIO_BASE + 1)
110883f0b85SAlex Williamson 
111883f0b85SAlex Williamson /**
112883f0b85SAlex Williamson  * VFIO_SET_IOMMU - _IOW(VFIO_TYPE, VFIO_BASE + 2, __s32)
113883f0b85SAlex Williamson  *
114883f0b85SAlex Williamson  * Set the iommu to the given type.  The type must be supported by an
115883f0b85SAlex Williamson  * iommu driver as verified by calling CHECK_EXTENSION using the same
116883f0b85SAlex Williamson  * type.  A group must be set to this file descriptor before this
117883f0b85SAlex Williamson  * ioctl is available.  The IOMMU interfaces enabled by this call are
118883f0b85SAlex Williamson  * specific to the value set.
119883f0b85SAlex Williamson  * Return: 0 on success, -errno on failure
120883f0b85SAlex Williamson  * Availability: When VFIO group attached
121883f0b85SAlex Williamson  */
122883f0b85SAlex Williamson #define VFIO_SET_IOMMU			_IO(VFIO_TYPE, VFIO_BASE + 2)
123883f0b85SAlex Williamson 
124883f0b85SAlex Williamson /* -------- IOCTLs for GROUP file descriptors (/dev/vfio/$GROUP) -------- */
125883f0b85SAlex Williamson 
126883f0b85SAlex Williamson /**
127883f0b85SAlex Williamson  * VFIO_GROUP_GET_STATUS - _IOR(VFIO_TYPE, VFIO_BASE + 3,
128883f0b85SAlex Williamson  *						struct vfio_group_status)
129883f0b85SAlex Williamson  *
130883f0b85SAlex Williamson  * Retrieve information about the group.  Fills in provided
131883f0b85SAlex Williamson  * struct vfio_group_info.  Caller sets argsz.
132883f0b85SAlex Williamson  * Return: 0 on succes, -errno on failure.
133883f0b85SAlex Williamson  * Availability: Always
134883f0b85SAlex Williamson  */
135883f0b85SAlex Williamson struct vfio_group_status {
136883f0b85SAlex Williamson 	__u32	argsz;
137883f0b85SAlex Williamson 	__u32	flags;
138883f0b85SAlex Williamson #define VFIO_GROUP_FLAGS_VIABLE		(1 << 0)
139883f0b85SAlex Williamson #define VFIO_GROUP_FLAGS_CONTAINER_SET	(1 << 1)
140883f0b85SAlex Williamson };
141883f0b85SAlex Williamson #define VFIO_GROUP_GET_STATUS		_IO(VFIO_TYPE, VFIO_BASE + 3)
142883f0b85SAlex Williamson 
143883f0b85SAlex Williamson /**
144883f0b85SAlex Williamson  * VFIO_GROUP_SET_CONTAINER - _IOW(VFIO_TYPE, VFIO_BASE + 4, __s32)
145883f0b85SAlex Williamson  *
146883f0b85SAlex Williamson  * Set the container for the VFIO group to the open VFIO file
147883f0b85SAlex Williamson  * descriptor provided.  Groups may only belong to a single
148883f0b85SAlex Williamson  * container.  Containers may, at their discretion, support multiple
149883f0b85SAlex Williamson  * groups.  Only when a container is set are all of the interfaces
150883f0b85SAlex Williamson  * of the VFIO file descriptor and the VFIO group file descriptor
151883f0b85SAlex Williamson  * available to the user.
152883f0b85SAlex Williamson  * Return: 0 on success, -errno on failure.
153883f0b85SAlex Williamson  * Availability: Always
154883f0b85SAlex Williamson  */
155883f0b85SAlex Williamson #define VFIO_GROUP_SET_CONTAINER	_IO(VFIO_TYPE, VFIO_BASE + 4)
156883f0b85SAlex Williamson 
157883f0b85SAlex Williamson /**
158883f0b85SAlex Williamson  * VFIO_GROUP_UNSET_CONTAINER - _IO(VFIO_TYPE, VFIO_BASE + 5)
159883f0b85SAlex Williamson  *
160883f0b85SAlex Williamson  * Remove the group from the attached container.  This is the
161883f0b85SAlex Williamson  * opposite of the SET_CONTAINER call and returns the group to
162883f0b85SAlex Williamson  * an initial state.  All device file descriptors must be released
163883f0b85SAlex Williamson  * prior to calling this interface.  When removing the last group
164883f0b85SAlex Williamson  * from a container, the IOMMU will be disabled and all state lost,
165883f0b85SAlex Williamson  * effectively also returning the VFIO file descriptor to an initial
166883f0b85SAlex Williamson  * state.
167883f0b85SAlex Williamson  * Return: 0 on success, -errno on failure.
168883f0b85SAlex Williamson  * Availability: When attached to container
169883f0b85SAlex Williamson  */
170883f0b85SAlex Williamson #define VFIO_GROUP_UNSET_CONTAINER	_IO(VFIO_TYPE, VFIO_BASE + 5)
171883f0b85SAlex Williamson 
172883f0b85SAlex Williamson /**
173883f0b85SAlex Williamson  * VFIO_GROUP_GET_DEVICE_FD - _IOW(VFIO_TYPE, VFIO_BASE + 6, char)
174883f0b85SAlex Williamson  *
175883f0b85SAlex Williamson  * Return a new file descriptor for the device object described by
176883f0b85SAlex Williamson  * the provided string.  The string should match a device listed in
177883f0b85SAlex Williamson  * the devices subdirectory of the IOMMU group sysfs entry.  The
178883f0b85SAlex Williamson  * group containing the device must already be added to this context.
179883f0b85SAlex Williamson  * Return: new file descriptor on success, -errno on failure.
180883f0b85SAlex Williamson  * Availability: When attached to container
181883f0b85SAlex Williamson  */
182883f0b85SAlex Williamson #define VFIO_GROUP_GET_DEVICE_FD	_IO(VFIO_TYPE, VFIO_BASE + 6)
183883f0b85SAlex Williamson 
184883f0b85SAlex Williamson /* --------------- IOCTLs for DEVICE file descriptors --------------- */
185883f0b85SAlex Williamson 
186883f0b85SAlex Williamson /**
187883f0b85SAlex Williamson  * VFIO_DEVICE_GET_INFO - _IOR(VFIO_TYPE, VFIO_BASE + 7,
188883f0b85SAlex Williamson  *						struct vfio_device_info)
189883f0b85SAlex Williamson  *
190883f0b85SAlex Williamson  * Retrieve information about the device.  Fills in provided
191883f0b85SAlex Williamson  * struct vfio_device_info.  Caller sets argsz.
192883f0b85SAlex Williamson  * Return: 0 on success, -errno on failure.
193883f0b85SAlex Williamson  */
194883f0b85SAlex Williamson struct vfio_device_info {
195883f0b85SAlex Williamson 	__u32	argsz;
196883f0b85SAlex Williamson 	__u32	flags;
197883f0b85SAlex Williamson #define VFIO_DEVICE_FLAGS_RESET	(1 << 0)	/* Device supports reset */
198883f0b85SAlex Williamson #define VFIO_DEVICE_FLAGS_PCI	(1 << 1)	/* vfio-pci device */
1997a52ce8aSCornelia Huck #define VFIO_DEVICE_FLAGS_PLATFORM (1 << 2)	/* vfio-platform device */
2007a52ce8aSCornelia Huck #define VFIO_DEVICE_FLAGS_AMBA  (1 << 3)	/* vfio-amba device */
201883f0b85SAlex Williamson 	__u32	num_regions;	/* Max region index + 1 */
202883f0b85SAlex Williamson 	__u32	num_irqs;	/* Max IRQ index + 1 */
203883f0b85SAlex Williamson };
204883f0b85SAlex Williamson #define VFIO_DEVICE_GET_INFO		_IO(VFIO_TYPE, VFIO_BASE + 7)
205883f0b85SAlex Williamson 
206883f0b85SAlex Williamson /**
207883f0b85SAlex Williamson  * VFIO_DEVICE_GET_REGION_INFO - _IOWR(VFIO_TYPE, VFIO_BASE + 8,
208883f0b85SAlex Williamson  *				       struct vfio_region_info)
209883f0b85SAlex Williamson  *
210883f0b85SAlex Williamson  * Retrieve information about a device region.  Caller provides
211883f0b85SAlex Williamson  * struct vfio_region_info with index value set.  Caller sets argsz.
212883f0b85SAlex Williamson  * Implementation of region mapping is bus driver specific.  This is
213883f0b85SAlex Williamson  * intended to describe MMIO, I/O port, as well as bus specific
214883f0b85SAlex Williamson  * regions (ex. PCI config space).  Zero sized regions may be used
215883f0b85SAlex Williamson  * to describe unimplemented regions (ex. unimplemented PCI BARs).
216883f0b85SAlex Williamson  * Return: 0 on success, -errno on failure.
217883f0b85SAlex Williamson  */
218883f0b85SAlex Williamson struct vfio_region_info {
219883f0b85SAlex Williamson 	__u32	argsz;
220883f0b85SAlex Williamson 	__u32	flags;
221883f0b85SAlex Williamson #define VFIO_REGION_INFO_FLAG_READ	(1 << 0) /* Region supports read */
222883f0b85SAlex Williamson #define VFIO_REGION_INFO_FLAG_WRITE	(1 << 1) /* Region supports write */
223883f0b85SAlex Williamson #define VFIO_REGION_INFO_FLAG_MMAP	(1 << 2) /* Region supports mmap */
224*b89485a5SPaolo Bonzini #define VFIO_REGION_INFO_FLAG_CAPS	(1 << 3) /* Info supports caps */
225883f0b85SAlex Williamson 	__u32	index;		/* Region index */
226*b89485a5SPaolo Bonzini 	__u32	cap_offset;	/* Offset within info struct of first cap */
227883f0b85SAlex Williamson 	__u64	size;		/* Region size (bytes) */
228883f0b85SAlex Williamson 	__u64	offset;		/* Region offset from start of device fd */
229883f0b85SAlex Williamson };
230883f0b85SAlex Williamson #define VFIO_DEVICE_GET_REGION_INFO	_IO(VFIO_TYPE, VFIO_BASE + 8)
231883f0b85SAlex Williamson 
232*b89485a5SPaolo Bonzini /*
233*b89485a5SPaolo Bonzini  * The sparse mmap capability allows finer granularity of specifying areas
234*b89485a5SPaolo Bonzini  * within a region with mmap support.  When specified, the user should only
235*b89485a5SPaolo Bonzini  * mmap the offset ranges specified by the areas array.  mmaps outside of the
236*b89485a5SPaolo Bonzini  * areas specified may fail (such as the range covering a PCI MSI-X table) or
237*b89485a5SPaolo Bonzini  * may result in improper device behavior.
238*b89485a5SPaolo Bonzini  *
239*b89485a5SPaolo Bonzini  * The structures below define version 1 of this capability.
240*b89485a5SPaolo Bonzini  */
241*b89485a5SPaolo Bonzini #define VFIO_REGION_INFO_CAP_SPARSE_MMAP	1
242*b89485a5SPaolo Bonzini 
243*b89485a5SPaolo Bonzini struct vfio_region_sparse_mmap_area {
244*b89485a5SPaolo Bonzini 	__u64	offset;	/* Offset of mmap'able area within region */
245*b89485a5SPaolo Bonzini 	__u64	size;	/* Size of mmap'able area */
246*b89485a5SPaolo Bonzini };
247*b89485a5SPaolo Bonzini 
248*b89485a5SPaolo Bonzini struct vfio_region_info_cap_sparse_mmap {
249*b89485a5SPaolo Bonzini 	struct vfio_info_cap_header header;
250*b89485a5SPaolo Bonzini 	__u32	nr_areas;
251*b89485a5SPaolo Bonzini 	__u32	reserved;
252*b89485a5SPaolo Bonzini 	struct vfio_region_sparse_mmap_area areas[];
253*b89485a5SPaolo Bonzini };
254*b89485a5SPaolo Bonzini 
255*b89485a5SPaolo Bonzini /*
256*b89485a5SPaolo Bonzini  * The device specific type capability allows regions unique to a specific
257*b89485a5SPaolo Bonzini  * device or class of devices to be exposed.  This helps solve the problem for
258*b89485a5SPaolo Bonzini  * vfio bus drivers of defining which region indexes correspond to which region
259*b89485a5SPaolo Bonzini  * on the device, without needing to resort to static indexes, as done by
260*b89485a5SPaolo Bonzini  * vfio-pci.  For instance, if we were to go back in time, we might remove
261*b89485a5SPaolo Bonzini  * VFIO_PCI_VGA_REGION_INDEX and let vfio-pci simply define that all indexes
262*b89485a5SPaolo Bonzini  * greater than or equal to VFIO_PCI_NUM_REGIONS are device specific and we'd
263*b89485a5SPaolo Bonzini  * make a "VGA" device specific type to describe the VGA access space.  This
264*b89485a5SPaolo Bonzini  * means that non-VGA devices wouldn't need to waste this index, and thus the
265*b89485a5SPaolo Bonzini  * address space associated with it due to implementation of device file
266*b89485a5SPaolo Bonzini  * descriptor offsets in vfio-pci.
267*b89485a5SPaolo Bonzini  *
268*b89485a5SPaolo Bonzini  * The current implementation is now part of the user ABI, so we can't use this
269*b89485a5SPaolo Bonzini  * for VGA, but there are other upcoming use cases, such as opregions for Intel
270*b89485a5SPaolo Bonzini  * IGD devices and framebuffers for vGPU devices.  We missed VGA, but we'll
271*b89485a5SPaolo Bonzini  * use this for future additions.
272*b89485a5SPaolo Bonzini  *
273*b89485a5SPaolo Bonzini  * The structure below defines version 1 of this capability.
274*b89485a5SPaolo Bonzini  */
275*b89485a5SPaolo Bonzini #define VFIO_REGION_INFO_CAP_TYPE	2
276*b89485a5SPaolo Bonzini 
277*b89485a5SPaolo Bonzini struct vfio_region_info_cap_type {
278*b89485a5SPaolo Bonzini 	struct vfio_info_cap_header header;
279*b89485a5SPaolo Bonzini 	__u32 type;	/* global per bus driver */
280*b89485a5SPaolo Bonzini 	__u32 subtype;	/* type specific */
281*b89485a5SPaolo Bonzini };
282*b89485a5SPaolo Bonzini 
283*b89485a5SPaolo Bonzini #define VFIO_REGION_TYPE_PCI_VENDOR_TYPE	(1 << 31)
284*b89485a5SPaolo Bonzini #define VFIO_REGION_TYPE_PCI_VENDOR_MASK	(0xffff)
285*b89485a5SPaolo Bonzini 
286*b89485a5SPaolo Bonzini /* 8086 Vendor sub-types */
287*b89485a5SPaolo Bonzini #define VFIO_REGION_SUBTYPE_INTEL_IGD_OPREGION	(1)
288*b89485a5SPaolo Bonzini #define VFIO_REGION_SUBTYPE_INTEL_IGD_HOST_CFG	(2)
289*b89485a5SPaolo Bonzini #define VFIO_REGION_SUBTYPE_INTEL_IGD_LPC_CFG	(3)
290*b89485a5SPaolo Bonzini 
291883f0b85SAlex Williamson /**
292883f0b85SAlex Williamson  * VFIO_DEVICE_GET_IRQ_INFO - _IOWR(VFIO_TYPE, VFIO_BASE + 9,
293883f0b85SAlex Williamson  *				    struct vfio_irq_info)
294883f0b85SAlex Williamson  *
295883f0b85SAlex Williamson  * Retrieve information about a device IRQ.  Caller provides
296883f0b85SAlex Williamson  * struct vfio_irq_info with index value set.  Caller sets argsz.
297883f0b85SAlex Williamson  * Implementation of IRQ mapping is bus driver specific.  Indexes
298883f0b85SAlex Williamson  * using multiple IRQs are primarily intended to support MSI-like
299883f0b85SAlex Williamson  * interrupt blocks.  Zero count irq blocks may be used to describe
300883f0b85SAlex Williamson  * unimplemented interrupt types.
301883f0b85SAlex Williamson  *
302883f0b85SAlex Williamson  * The EVENTFD flag indicates the interrupt index supports eventfd based
303883f0b85SAlex Williamson  * signaling.
304883f0b85SAlex Williamson  *
305883f0b85SAlex Williamson  * The MASKABLE flags indicates the index supports MASK and UNMASK
306883f0b85SAlex Williamson  * actions described below.
307883f0b85SAlex Williamson  *
308883f0b85SAlex Williamson  * AUTOMASKED indicates that after signaling, the interrupt line is
309883f0b85SAlex Williamson  * automatically masked by VFIO and the user needs to unmask the line
310883f0b85SAlex Williamson  * to receive new interrupts.  This is primarily intended to distinguish
311883f0b85SAlex Williamson  * level triggered interrupts.
312883f0b85SAlex Williamson  *
313883f0b85SAlex Williamson  * The NORESIZE flag indicates that the interrupt lines within the index
314883f0b85SAlex Williamson  * are setup as a set and new subindexes cannot be enabled without first
315883f0b85SAlex Williamson  * disabling the entire index.  This is used for interrupts like PCI MSI
316883f0b85SAlex Williamson  * and MSI-X where the driver may only use a subset of the available
317883f0b85SAlex Williamson  * indexes, but VFIO needs to enable a specific number of vectors
318883f0b85SAlex Williamson  * upfront.  In the case of MSI-X, where the user can enable MSI-X and
319883f0b85SAlex Williamson  * then add and unmask vectors, it's up to userspace to make the decision
320883f0b85SAlex Williamson  * whether to allocate the maximum supported number of vectors or tear
321883f0b85SAlex Williamson  * down setup and incrementally increase the vectors as each is enabled.
322883f0b85SAlex Williamson  */
323883f0b85SAlex Williamson struct vfio_irq_info {
324883f0b85SAlex Williamson 	__u32	argsz;
325883f0b85SAlex Williamson 	__u32	flags;
326883f0b85SAlex Williamson #define VFIO_IRQ_INFO_EVENTFD		(1 << 0)
327883f0b85SAlex Williamson #define VFIO_IRQ_INFO_MASKABLE		(1 << 1)
328883f0b85SAlex Williamson #define VFIO_IRQ_INFO_AUTOMASKED	(1 << 2)
329883f0b85SAlex Williamson #define VFIO_IRQ_INFO_NORESIZE		(1 << 3)
330883f0b85SAlex Williamson 	__u32	index;		/* IRQ index */
331883f0b85SAlex Williamson 	__u32	count;		/* Number of IRQs within this index */
332883f0b85SAlex Williamson };
333883f0b85SAlex Williamson #define VFIO_DEVICE_GET_IRQ_INFO	_IO(VFIO_TYPE, VFIO_BASE + 9)
334883f0b85SAlex Williamson 
335883f0b85SAlex Williamson /**
336883f0b85SAlex Williamson  * VFIO_DEVICE_SET_IRQS - _IOW(VFIO_TYPE, VFIO_BASE + 10, struct vfio_irq_set)
337883f0b85SAlex Williamson  *
338883f0b85SAlex Williamson  * Set signaling, masking, and unmasking of interrupts.  Caller provides
339883f0b85SAlex Williamson  * struct vfio_irq_set with all fields set.  'start' and 'count' indicate
340883f0b85SAlex Williamson  * the range of subindexes being specified.
341883f0b85SAlex Williamson  *
342883f0b85SAlex Williamson  * The DATA flags specify the type of data provided.  If DATA_NONE, the
343883f0b85SAlex Williamson  * operation performs the specified action immediately on the specified
344883f0b85SAlex Williamson  * interrupt(s).  For example, to unmask AUTOMASKED interrupt [0,0]:
345883f0b85SAlex Williamson  * flags = (DATA_NONE|ACTION_UNMASK), index = 0, start = 0, count = 1.
346883f0b85SAlex Williamson  *
347883f0b85SAlex Williamson  * DATA_BOOL allows sparse support for the same on arrays of interrupts.
348883f0b85SAlex Williamson  * For example, to mask interrupts [0,1] and [0,3] (but not [0,2]):
349883f0b85SAlex Williamson  * flags = (DATA_BOOL|ACTION_MASK), index = 0, start = 1, count = 3,
350883f0b85SAlex Williamson  * data = {1,0,1}
351883f0b85SAlex Williamson  *
352883f0b85SAlex Williamson  * DATA_EVENTFD binds the specified ACTION to the provided __s32 eventfd.
353883f0b85SAlex Williamson  * A value of -1 can be used to either de-assign interrupts if already
354883f0b85SAlex Williamson  * assigned or skip un-assigned interrupts.  For example, to set an eventfd
355883f0b85SAlex Williamson  * to be trigger for interrupts [0,0] and [0,2]:
356883f0b85SAlex Williamson  * flags = (DATA_EVENTFD|ACTION_TRIGGER), index = 0, start = 0, count = 3,
357883f0b85SAlex Williamson  * data = {fd1, -1, fd2}
358883f0b85SAlex Williamson  * If index [0,1] is previously set, two count = 1 ioctls calls would be
359883f0b85SAlex Williamson  * required to set [0,0] and [0,2] without changing [0,1].
360883f0b85SAlex Williamson  *
361883f0b85SAlex Williamson  * Once a signaling mechanism is set, DATA_BOOL or DATA_NONE can be used
362883f0b85SAlex Williamson  * with ACTION_TRIGGER to perform kernel level interrupt loopback testing
363883f0b85SAlex Williamson  * from userspace (ie. simulate hardware triggering).
364883f0b85SAlex Williamson  *
365883f0b85SAlex Williamson  * Setting of an event triggering mechanism to userspace for ACTION_TRIGGER
366883f0b85SAlex Williamson  * enables the interrupt index for the device.  Individual subindex interrupts
367883f0b85SAlex Williamson  * can be disabled using the -1 value for DATA_EVENTFD or the index can be
368883f0b85SAlex Williamson  * disabled as a whole with: flags = (DATA_NONE|ACTION_TRIGGER), count = 0.
369883f0b85SAlex Williamson  *
370883f0b85SAlex Williamson  * Note that ACTION_[UN]MASK specify user->kernel signaling (irqfds) while
371883f0b85SAlex Williamson  * ACTION_TRIGGER specifies kernel->user signaling.
372883f0b85SAlex Williamson  */
373883f0b85SAlex Williamson struct vfio_irq_set {
374883f0b85SAlex Williamson 	__u32	argsz;
375883f0b85SAlex Williamson 	__u32	flags;
376883f0b85SAlex Williamson #define VFIO_IRQ_SET_DATA_NONE		(1 << 0) /* Data not present */
377883f0b85SAlex Williamson #define VFIO_IRQ_SET_DATA_BOOL		(1 << 1) /* Data is bool (u8) */
378883f0b85SAlex Williamson #define VFIO_IRQ_SET_DATA_EVENTFD	(1 << 2) /* Data is eventfd (s32) */
379883f0b85SAlex Williamson #define VFIO_IRQ_SET_ACTION_MASK	(1 << 3) /* Mask interrupt */
380883f0b85SAlex Williamson #define VFIO_IRQ_SET_ACTION_UNMASK	(1 << 4) /* Unmask interrupt */
381883f0b85SAlex Williamson #define VFIO_IRQ_SET_ACTION_TRIGGER	(1 << 5) /* Trigger interrupt */
382883f0b85SAlex Williamson 	__u32	index;
383883f0b85SAlex Williamson 	__u32	start;
384883f0b85SAlex Williamson 	__u32	count;
385883f0b85SAlex Williamson 	__u8	data[];
386883f0b85SAlex Williamson };
387883f0b85SAlex Williamson #define VFIO_DEVICE_SET_IRQS		_IO(VFIO_TYPE, VFIO_BASE + 10)
388883f0b85SAlex Williamson 
389883f0b85SAlex Williamson #define VFIO_IRQ_SET_DATA_TYPE_MASK	(VFIO_IRQ_SET_DATA_NONE | \
390883f0b85SAlex Williamson 					 VFIO_IRQ_SET_DATA_BOOL | \
391883f0b85SAlex Williamson 					 VFIO_IRQ_SET_DATA_EVENTFD)
392883f0b85SAlex Williamson #define VFIO_IRQ_SET_ACTION_TYPE_MASK	(VFIO_IRQ_SET_ACTION_MASK | \
393883f0b85SAlex Williamson 					 VFIO_IRQ_SET_ACTION_UNMASK | \
394883f0b85SAlex Williamson 					 VFIO_IRQ_SET_ACTION_TRIGGER)
395883f0b85SAlex Williamson /**
396883f0b85SAlex Williamson  * VFIO_DEVICE_RESET - _IO(VFIO_TYPE, VFIO_BASE + 11)
397883f0b85SAlex Williamson  *
398883f0b85SAlex Williamson  * Reset a device.
399883f0b85SAlex Williamson  */
400883f0b85SAlex Williamson #define VFIO_DEVICE_RESET		_IO(VFIO_TYPE, VFIO_BASE + 11)
401883f0b85SAlex Williamson 
402883f0b85SAlex Williamson /*
403883f0b85SAlex Williamson  * The VFIO-PCI bus driver makes use of the following fixed region and
404883f0b85SAlex Williamson  * IRQ index mapping.  Unimplemented regions return a size of zero.
405883f0b85SAlex Williamson  * Unimplemented IRQ types return a count of zero.
406883f0b85SAlex Williamson  */
407883f0b85SAlex Williamson 
408883f0b85SAlex Williamson enum {
409883f0b85SAlex Williamson 	VFIO_PCI_BAR0_REGION_INDEX,
410883f0b85SAlex Williamson 	VFIO_PCI_BAR1_REGION_INDEX,
411883f0b85SAlex Williamson 	VFIO_PCI_BAR2_REGION_INDEX,
412883f0b85SAlex Williamson 	VFIO_PCI_BAR3_REGION_INDEX,
413883f0b85SAlex Williamson 	VFIO_PCI_BAR4_REGION_INDEX,
414883f0b85SAlex Williamson 	VFIO_PCI_BAR5_REGION_INDEX,
415883f0b85SAlex Williamson 	VFIO_PCI_ROM_REGION_INDEX,
416883f0b85SAlex Williamson 	VFIO_PCI_CONFIG_REGION_INDEX,
417010ca0b3SAlex Williamson 	/*
418010ca0b3SAlex Williamson 	 * Expose VGA regions defined for PCI base class 03, subclass 00.
419010ca0b3SAlex Williamson 	 * This includes I/O port ranges 0x3b0 to 0x3bb and 0x3c0 to 0x3df
420010ca0b3SAlex Williamson 	 * as well as the MMIO range 0xa0000 to 0xbffff.  Each implemented
421010ca0b3SAlex Williamson 	 * range is found at it's identity mapped offset from the region
422010ca0b3SAlex Williamson 	 * offset, for example 0x3b0 is region_info.offset + 0x3b0.  Areas
423010ca0b3SAlex Williamson 	 * between described ranges are unimplemented.
424010ca0b3SAlex Williamson 	 */
425010ca0b3SAlex Williamson 	VFIO_PCI_VGA_REGION_INDEX,
426*b89485a5SPaolo Bonzini 	VFIO_PCI_NUM_REGIONS = 9 /* Fixed user ABI, region indexes >=9 use */
427*b89485a5SPaolo Bonzini 				 /* device specific cap to define content. */
428883f0b85SAlex Williamson };
429883f0b85SAlex Williamson 
430883f0b85SAlex Williamson enum {
431883f0b85SAlex Williamson 	VFIO_PCI_INTX_IRQ_INDEX,
432883f0b85SAlex Williamson 	VFIO_PCI_MSI_IRQ_INDEX,
433883f0b85SAlex Williamson 	VFIO_PCI_MSIX_IRQ_INDEX,
434e098b453SAlexey Kardashevskiy 	VFIO_PCI_ERR_IRQ_INDEX,
43547cbe50cSAlex Williamson 	VFIO_PCI_REQ_IRQ_INDEX,
436883f0b85SAlex Williamson 	VFIO_PCI_NUM_IRQS
437883f0b85SAlex Williamson };
438883f0b85SAlex Williamson 
4394f265607SAndrew Jones /**
4404f265607SAndrew Jones  * VFIO_DEVICE_GET_PCI_HOT_RESET_INFO - _IORW(VFIO_TYPE, VFIO_BASE + 12,
4414f265607SAndrew Jones  *					      struct vfio_pci_hot_reset_info)
4424f265607SAndrew Jones  *
4434f265607SAndrew Jones  * Return: 0 on success, -errno on failure:
4444f265607SAndrew Jones  *	-enospc = insufficient buffer, -enodev = unsupported for device.
4454f265607SAndrew Jones  */
4464f265607SAndrew Jones struct vfio_pci_dependent_device {
4474f265607SAndrew Jones 	__u32	group_id;
4484f265607SAndrew Jones 	__u16	segment;
4494f265607SAndrew Jones 	__u8	bus;
4504f265607SAndrew Jones 	__u8	devfn; /* Use PCI_SLOT/PCI_FUNC */
4514f265607SAndrew Jones };
4524f265607SAndrew Jones 
4534f265607SAndrew Jones struct vfio_pci_hot_reset_info {
4544f265607SAndrew Jones 	__u32	argsz;
4554f265607SAndrew Jones 	__u32	flags;
4564f265607SAndrew Jones 	__u32	count;
4574f265607SAndrew Jones 	struct vfio_pci_dependent_device	devices[];
4584f265607SAndrew Jones };
4594f265607SAndrew Jones 
4604f265607SAndrew Jones #define VFIO_DEVICE_GET_PCI_HOT_RESET_INFO	_IO(VFIO_TYPE, VFIO_BASE + 12)
4614f265607SAndrew Jones 
4624f265607SAndrew Jones /**
4634f265607SAndrew Jones  * VFIO_DEVICE_PCI_HOT_RESET - _IOW(VFIO_TYPE, VFIO_BASE + 13,
4644f265607SAndrew Jones  *				    struct vfio_pci_hot_reset)
4654f265607SAndrew Jones  *
4664f265607SAndrew Jones  * Return: 0 on success, -errno on failure.
4674f265607SAndrew Jones  */
4684f265607SAndrew Jones struct vfio_pci_hot_reset {
4694f265607SAndrew Jones 	__u32	argsz;
4704f265607SAndrew Jones 	__u32	flags;
4714f265607SAndrew Jones 	__u32	count;
4724f265607SAndrew Jones 	__s32	group_fds[];
4734f265607SAndrew Jones };
4744f265607SAndrew Jones 
4754f265607SAndrew Jones #define VFIO_DEVICE_PCI_HOT_RESET	_IO(VFIO_TYPE, VFIO_BASE + 13)
4764f265607SAndrew Jones 
477883f0b85SAlex Williamson /* -------- API for Type1 VFIO IOMMU -------- */
478883f0b85SAlex Williamson 
479883f0b85SAlex Williamson /**
480883f0b85SAlex Williamson  * VFIO_IOMMU_GET_INFO - _IOR(VFIO_TYPE, VFIO_BASE + 12, struct vfio_iommu_info)
481883f0b85SAlex Williamson  *
482883f0b85SAlex Williamson  * Retrieve information about the IOMMU object. Fills in provided
483883f0b85SAlex Williamson  * struct vfio_iommu_info. Caller sets argsz.
484883f0b85SAlex Williamson  *
485883f0b85SAlex Williamson  * XXX Should we do these by CHECK_EXTENSION too?
486883f0b85SAlex Williamson  */
487883f0b85SAlex Williamson struct vfio_iommu_type1_info {
488883f0b85SAlex Williamson 	__u32	argsz;
489883f0b85SAlex Williamson 	__u32	flags;
490883f0b85SAlex Williamson #define VFIO_IOMMU_INFO_PGSIZES (1 << 0)	/* supported page sizes info */
491883f0b85SAlex Williamson 	__u64	iova_pgsizes;		/* Bitmap of supported page sizes */
492883f0b85SAlex Williamson };
493883f0b85SAlex Williamson 
494883f0b85SAlex Williamson #define VFIO_IOMMU_GET_INFO _IO(VFIO_TYPE, VFIO_BASE + 12)
495883f0b85SAlex Williamson 
496883f0b85SAlex Williamson /**
497883f0b85SAlex Williamson  * VFIO_IOMMU_MAP_DMA - _IOW(VFIO_TYPE, VFIO_BASE + 13, struct vfio_dma_map)
498883f0b85SAlex Williamson  *
499883f0b85SAlex Williamson  * Map process virtual addresses to IO virtual addresses using the
500883f0b85SAlex Williamson  * provided struct vfio_dma_map. Caller sets argsz. READ &/ WRITE required.
501883f0b85SAlex Williamson  */
502883f0b85SAlex Williamson struct vfio_iommu_type1_dma_map {
503883f0b85SAlex Williamson 	__u32	argsz;
504883f0b85SAlex Williamson 	__u32	flags;
505883f0b85SAlex Williamson #define VFIO_DMA_MAP_FLAG_READ (1 << 0)		/* readable from device */
506883f0b85SAlex Williamson #define VFIO_DMA_MAP_FLAG_WRITE (1 << 1)	/* writable from device */
507883f0b85SAlex Williamson 	__u64	vaddr;				/* Process virtual address */
508883f0b85SAlex Williamson 	__u64	iova;				/* IO virtual address */
509883f0b85SAlex Williamson 	__u64	size;				/* Size of mapping (bytes) */
510883f0b85SAlex Williamson };
511883f0b85SAlex Williamson 
512883f0b85SAlex Williamson #define VFIO_IOMMU_MAP_DMA _IO(VFIO_TYPE, VFIO_BASE + 13)
513883f0b85SAlex Williamson 
514883f0b85SAlex Williamson /**
515c5daeae1SAlexey Kardashevskiy  * VFIO_IOMMU_UNMAP_DMA - _IOWR(VFIO_TYPE, VFIO_BASE + 14,
516c5daeae1SAlexey Kardashevskiy  *							struct vfio_dma_unmap)
517883f0b85SAlex Williamson  *
518883f0b85SAlex Williamson  * Unmap IO virtual addresses using the provided struct vfio_dma_unmap.
519c5daeae1SAlexey Kardashevskiy  * Caller sets argsz.  The actual unmapped size is returned in the size
520c5daeae1SAlexey Kardashevskiy  * field.  No guarantee is made to the user that arbitrary unmaps of iova
521c5daeae1SAlexey Kardashevskiy  * or size different from those used in the original mapping call will
522c5daeae1SAlexey Kardashevskiy  * succeed.
523883f0b85SAlex Williamson  */
524883f0b85SAlex Williamson struct vfio_iommu_type1_dma_unmap {
525883f0b85SAlex Williamson 	__u32	argsz;
526883f0b85SAlex Williamson 	__u32	flags;
527883f0b85SAlex Williamson 	__u64	iova;				/* IO virtual address */
528883f0b85SAlex Williamson 	__u64	size;				/* Size of mapping (bytes) */
529883f0b85SAlex Williamson };
530883f0b85SAlex Williamson 
531883f0b85SAlex Williamson #define VFIO_IOMMU_UNMAP_DMA _IO(VFIO_TYPE, VFIO_BASE + 14)
532883f0b85SAlex Williamson 
533c5daeae1SAlexey Kardashevskiy /*
534c5daeae1SAlexey Kardashevskiy  * IOCTLs to enable/disable IOMMU container usage.
535c5daeae1SAlexey Kardashevskiy  * No parameters are supported.
536c5daeae1SAlexey Kardashevskiy  */
537c5daeae1SAlexey Kardashevskiy #define VFIO_IOMMU_ENABLE	_IO(VFIO_TYPE, VFIO_BASE + 15)
538c5daeae1SAlexey Kardashevskiy #define VFIO_IOMMU_DISABLE	_IO(VFIO_TYPE, VFIO_BASE + 16)
539c5daeae1SAlexey Kardashevskiy 
540c5daeae1SAlexey Kardashevskiy /* -------- Additional API for SPAPR TCE (Server POWERPC) IOMMU -------- */
541c5daeae1SAlexey Kardashevskiy 
542c5daeae1SAlexey Kardashevskiy /*
54325b8b39bSAlexey Kardashevskiy  * The SPAPR TCE DDW info struct provides the information about
54425b8b39bSAlexey Kardashevskiy  * the details of Dynamic DMA window capability.
54525b8b39bSAlexey Kardashevskiy  *
54625b8b39bSAlexey Kardashevskiy  * @pgsizes contains a page size bitmask, 4K/64K/16M are supported.
54725b8b39bSAlexey Kardashevskiy  * @max_dynamic_windows_supported tells the maximum number of windows
54825b8b39bSAlexey Kardashevskiy  * which the platform can create.
54925b8b39bSAlexey Kardashevskiy  * @levels tells the maximum number of levels in multi-level IOMMU tables;
55025b8b39bSAlexey Kardashevskiy  * this allows splitting a table into smaller chunks which reduces
55125b8b39bSAlexey Kardashevskiy  * the amount of physically contiguous memory required for the table.
55225b8b39bSAlexey Kardashevskiy  */
55325b8b39bSAlexey Kardashevskiy struct vfio_iommu_spapr_tce_ddw_info {
55425b8b39bSAlexey Kardashevskiy 	__u64 pgsizes;			/* Bitmap of supported page sizes */
55525b8b39bSAlexey Kardashevskiy 	__u32 max_dynamic_windows_supported;
55625b8b39bSAlexey Kardashevskiy 	__u32 levels;
55725b8b39bSAlexey Kardashevskiy };
55825b8b39bSAlexey Kardashevskiy 
55925b8b39bSAlexey Kardashevskiy /*
560c5daeae1SAlexey Kardashevskiy  * The SPAPR TCE info struct provides the information about the PCI bus
561c5daeae1SAlexey Kardashevskiy  * address ranges available for DMA, these values are programmed into
562c5daeae1SAlexey Kardashevskiy  * the hardware so the guest has to know that information.
563c5daeae1SAlexey Kardashevskiy  *
564c5daeae1SAlexey Kardashevskiy  * The DMA 32 bit window start is an absolute PCI bus address.
565c5daeae1SAlexey Kardashevskiy  * The IOVA address passed via map/unmap ioctls are absolute PCI bus
566c5daeae1SAlexey Kardashevskiy  * addresses too so the window works as a filter rather than an offset
567c5daeae1SAlexey Kardashevskiy  * for IOVA addresses.
568c5daeae1SAlexey Kardashevskiy  *
56925b8b39bSAlexey Kardashevskiy  * Flags supported:
57025b8b39bSAlexey Kardashevskiy  * - VFIO_IOMMU_SPAPR_INFO_DDW: informs the userspace that dynamic DMA windows
57125b8b39bSAlexey Kardashevskiy  *   (DDW) support is present. @ddw is only supported when DDW is present.
572c5daeae1SAlexey Kardashevskiy  */
573c5daeae1SAlexey Kardashevskiy struct vfio_iommu_spapr_tce_info {
574c5daeae1SAlexey Kardashevskiy 	__u32 argsz;
57525b8b39bSAlexey Kardashevskiy 	__u32 flags;
57625b8b39bSAlexey Kardashevskiy #define VFIO_IOMMU_SPAPR_INFO_DDW	(1 << 0)	/* DDW supported */
577c5daeae1SAlexey Kardashevskiy 	__u32 dma32_window_start;	/* 32 bit window start (bytes) */
578c5daeae1SAlexey Kardashevskiy 	__u32 dma32_window_size;	/* 32 bit window size (bytes) */
57925b8b39bSAlexey Kardashevskiy 	struct vfio_iommu_spapr_tce_ddw_info ddw;
580c5daeae1SAlexey Kardashevskiy };
581c5daeae1SAlexey Kardashevskiy 
582c5daeae1SAlexey Kardashevskiy #define VFIO_IOMMU_SPAPR_TCE_GET_INFO	_IO(VFIO_TYPE, VFIO_BASE + 12)
583c5daeae1SAlexey Kardashevskiy 
584a9fd1654SJens Freimann /*
585a9fd1654SJens Freimann  * EEH PE operation struct provides ways to:
586a9fd1654SJens Freimann  * - enable/disable EEH functionality;
587a9fd1654SJens Freimann  * - unfreeze IO/DMA for frozen PE;
588a9fd1654SJens Freimann  * - read PE state;
589a9fd1654SJens Freimann  * - reset PE;
59025b8b39bSAlexey Kardashevskiy  * - configure PE;
59125b8b39bSAlexey Kardashevskiy  * - inject EEH error.
592a9fd1654SJens Freimann  */
59325b8b39bSAlexey Kardashevskiy struct vfio_eeh_pe_err {
59425b8b39bSAlexey Kardashevskiy 	__u32 type;
59525b8b39bSAlexey Kardashevskiy 	__u32 func;
59625b8b39bSAlexey Kardashevskiy 	__u64 addr;
59725b8b39bSAlexey Kardashevskiy 	__u64 mask;
59825b8b39bSAlexey Kardashevskiy };
59925b8b39bSAlexey Kardashevskiy 
600a9fd1654SJens Freimann struct vfio_eeh_pe_op {
601a9fd1654SJens Freimann 	__u32 argsz;
602a9fd1654SJens Freimann 	__u32 flags;
603a9fd1654SJens Freimann 	__u32 op;
60425b8b39bSAlexey Kardashevskiy 	union {
60525b8b39bSAlexey Kardashevskiy 		struct vfio_eeh_pe_err err;
60625b8b39bSAlexey Kardashevskiy 	};
607a9fd1654SJens Freimann };
608a9fd1654SJens Freimann 
609a9fd1654SJens Freimann #define VFIO_EEH_PE_DISABLE		0	/* Disable EEH functionality */
610a9fd1654SJens Freimann #define VFIO_EEH_PE_ENABLE		1	/* Enable EEH functionality  */
611a9fd1654SJens Freimann #define VFIO_EEH_PE_UNFREEZE_IO		2	/* Enable IO for frozen PE   */
612a9fd1654SJens Freimann #define VFIO_EEH_PE_UNFREEZE_DMA	3	/* Enable DMA for frozen PE  */
613a9fd1654SJens Freimann #define VFIO_EEH_PE_GET_STATE		4	/* PE state retrieval        */
614a9fd1654SJens Freimann #define  VFIO_EEH_PE_STATE_NORMAL	0	/* PE in functional state    */
615a9fd1654SJens Freimann #define  VFIO_EEH_PE_STATE_RESET	1	/* PE reset in progress      */
616a9fd1654SJens Freimann #define  VFIO_EEH_PE_STATE_STOPPED	2	/* Stopped DMA and IO        */
617a9fd1654SJens Freimann #define  VFIO_EEH_PE_STATE_STOPPED_DMA	4	/* Stopped DMA only          */
618a9fd1654SJens Freimann #define  VFIO_EEH_PE_STATE_UNAVAIL	5	/* State unavailable         */
619a9fd1654SJens Freimann #define VFIO_EEH_PE_RESET_DEACTIVATE	5	/* Deassert PE reset         */
620a9fd1654SJens Freimann #define VFIO_EEH_PE_RESET_HOT		6	/* Assert hot reset          */
621a9fd1654SJens Freimann #define VFIO_EEH_PE_RESET_FUNDAMENTAL	7	/* Assert fundamental reset  */
622a9fd1654SJens Freimann #define VFIO_EEH_PE_CONFIGURE		8	/* PE configuration          */
62325b8b39bSAlexey Kardashevskiy #define VFIO_EEH_PE_INJECT_ERR		9	/* Inject EEH error          */
624a9fd1654SJens Freimann 
625a9fd1654SJens Freimann #define VFIO_EEH_PE_OP			_IO(VFIO_TYPE, VFIO_BASE + 21)
626a9fd1654SJens Freimann 
62725b8b39bSAlexey Kardashevskiy /**
62825b8b39bSAlexey Kardashevskiy  * VFIO_IOMMU_SPAPR_REGISTER_MEMORY - _IOW(VFIO_TYPE, VFIO_BASE + 17, struct vfio_iommu_spapr_register_memory)
62925b8b39bSAlexey Kardashevskiy  *
63025b8b39bSAlexey Kardashevskiy  * Registers user space memory where DMA is allowed. It pins
63125b8b39bSAlexey Kardashevskiy  * user pages and does the locked memory accounting so
63225b8b39bSAlexey Kardashevskiy  * subsequent VFIO_IOMMU_MAP_DMA/VFIO_IOMMU_UNMAP_DMA calls
63325b8b39bSAlexey Kardashevskiy  * get faster.
63425b8b39bSAlexey Kardashevskiy  */
63525b8b39bSAlexey Kardashevskiy struct vfio_iommu_spapr_register_memory {
63625b8b39bSAlexey Kardashevskiy 	__u32	argsz;
63725b8b39bSAlexey Kardashevskiy 	__u32	flags;
63825b8b39bSAlexey Kardashevskiy 	__u64	vaddr;				/* Process virtual address */
63925b8b39bSAlexey Kardashevskiy 	__u64	size;				/* Size of mapping (bytes) */
64025b8b39bSAlexey Kardashevskiy };
64125b8b39bSAlexey Kardashevskiy #define VFIO_IOMMU_SPAPR_REGISTER_MEMORY	_IO(VFIO_TYPE, VFIO_BASE + 17)
64225b8b39bSAlexey Kardashevskiy 
64325b8b39bSAlexey Kardashevskiy /**
64425b8b39bSAlexey Kardashevskiy  * VFIO_IOMMU_SPAPR_UNREGISTER_MEMORY - _IOW(VFIO_TYPE, VFIO_BASE + 18, struct vfio_iommu_spapr_register_memory)
64525b8b39bSAlexey Kardashevskiy  *
64625b8b39bSAlexey Kardashevskiy  * Unregisters user space memory registered with
64725b8b39bSAlexey Kardashevskiy  * VFIO_IOMMU_SPAPR_REGISTER_MEMORY.
64825b8b39bSAlexey Kardashevskiy  * Uses vfio_iommu_spapr_register_memory for parameters.
64925b8b39bSAlexey Kardashevskiy  */
65025b8b39bSAlexey Kardashevskiy #define VFIO_IOMMU_SPAPR_UNREGISTER_MEMORY	_IO(VFIO_TYPE, VFIO_BASE + 18)
65125b8b39bSAlexey Kardashevskiy 
65225b8b39bSAlexey Kardashevskiy /**
65325b8b39bSAlexey Kardashevskiy  * VFIO_IOMMU_SPAPR_TCE_CREATE - _IOWR(VFIO_TYPE, VFIO_BASE + 19, struct vfio_iommu_spapr_tce_create)
65425b8b39bSAlexey Kardashevskiy  *
65525b8b39bSAlexey Kardashevskiy  * Creates an additional TCE table and programs it (sets a new DMA window)
65625b8b39bSAlexey Kardashevskiy  * to every IOMMU group in the container. It receives page shift, window
65725b8b39bSAlexey Kardashevskiy  * size and number of levels in the TCE table being created.
65825b8b39bSAlexey Kardashevskiy  *
65925b8b39bSAlexey Kardashevskiy  * It allocates and returns an offset on a PCI bus of the new DMA window.
66025b8b39bSAlexey Kardashevskiy  */
66125b8b39bSAlexey Kardashevskiy struct vfio_iommu_spapr_tce_create {
66225b8b39bSAlexey Kardashevskiy 	__u32 argsz;
66325b8b39bSAlexey Kardashevskiy 	__u32 flags;
66425b8b39bSAlexey Kardashevskiy 	/* in */
66525b8b39bSAlexey Kardashevskiy 	__u32 page_shift;
66666fb2d54SCornelia Huck 	__u32 __resv1;
66725b8b39bSAlexey Kardashevskiy 	__u64 window_size;
66825b8b39bSAlexey Kardashevskiy 	__u32 levels;
66966fb2d54SCornelia Huck 	__u32 __resv2;
67025b8b39bSAlexey Kardashevskiy 	/* out */
67125b8b39bSAlexey Kardashevskiy 	__u64 start_addr;
67225b8b39bSAlexey Kardashevskiy };
67325b8b39bSAlexey Kardashevskiy #define VFIO_IOMMU_SPAPR_TCE_CREATE	_IO(VFIO_TYPE, VFIO_BASE + 19)
67425b8b39bSAlexey Kardashevskiy 
67525b8b39bSAlexey Kardashevskiy /**
67625b8b39bSAlexey Kardashevskiy  * VFIO_IOMMU_SPAPR_TCE_REMOVE - _IOW(VFIO_TYPE, VFIO_BASE + 20, struct vfio_iommu_spapr_tce_remove)
67725b8b39bSAlexey Kardashevskiy  *
67825b8b39bSAlexey Kardashevskiy  * Unprograms a TCE table from all groups in the container and destroys it.
67925b8b39bSAlexey Kardashevskiy  * It receives a PCI bus offset as a window id.
68025b8b39bSAlexey Kardashevskiy  */
68125b8b39bSAlexey Kardashevskiy struct vfio_iommu_spapr_tce_remove {
68225b8b39bSAlexey Kardashevskiy 	__u32 argsz;
68325b8b39bSAlexey Kardashevskiy 	__u32 flags;
68425b8b39bSAlexey Kardashevskiy 	/* in */
68525b8b39bSAlexey Kardashevskiy 	__u64 start_addr;
68625b8b39bSAlexey Kardashevskiy };
68725b8b39bSAlexey Kardashevskiy #define VFIO_IOMMU_SPAPR_TCE_REMOVE	_IO(VFIO_TYPE, VFIO_BASE + 20)
68825b8b39bSAlexey Kardashevskiy 
689c5daeae1SAlexey Kardashevskiy /* ***************************************************************** */
690c5daeae1SAlexey Kardashevskiy 
691d4834ff9SAlexander Graf #endif /* VFIO_H */
692