xref: /openbmc/qemu/linux-headers/linux/vfio.h (revision 7a52ce8a)
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 
39883f0b85SAlex Williamson /*
40883f0b85SAlex Williamson  * The IOCTL interface is designed for extensibility by embedding the
41883f0b85SAlex Williamson  * structure length (argsz) and flags into structures passed between
42883f0b85SAlex Williamson  * kernel and userspace.  We therefore use the _IO() macro for these
43883f0b85SAlex Williamson  * defines to avoid implicitly embedding a size into the ioctl request.
44883f0b85SAlex Williamson  * As structure fields are added, argsz will increase to match and flag
45883f0b85SAlex Williamson  * bits will be defined to indicate additional fields with valid data.
46883f0b85SAlex Williamson  * It's *always* the caller's responsibility to indicate the size of
47883f0b85SAlex Williamson  * the structure passed by setting argsz appropriately.
48883f0b85SAlex Williamson  */
49883f0b85SAlex Williamson 
50883f0b85SAlex Williamson #define VFIO_TYPE	(';')
51883f0b85SAlex Williamson #define VFIO_BASE	100
52883f0b85SAlex Williamson 
53883f0b85SAlex Williamson /* -------- IOCTLs for VFIO file descriptor (/dev/vfio/vfio) -------- */
54883f0b85SAlex Williamson 
55883f0b85SAlex Williamson /**
56883f0b85SAlex Williamson  * VFIO_GET_API_VERSION - _IO(VFIO_TYPE, VFIO_BASE + 0)
57883f0b85SAlex Williamson  *
58883f0b85SAlex Williamson  * Report the version of the VFIO API.  This allows us to bump the entire
59883f0b85SAlex Williamson  * API version should we later need to add or change features in incompatible
60883f0b85SAlex Williamson  * ways.
61883f0b85SAlex Williamson  * Return: VFIO_API_VERSION
62883f0b85SAlex Williamson  * Availability: Always
63883f0b85SAlex Williamson  */
64883f0b85SAlex Williamson #define VFIO_GET_API_VERSION		_IO(VFIO_TYPE, VFIO_BASE + 0)
65883f0b85SAlex Williamson 
66883f0b85SAlex Williamson /**
67883f0b85SAlex Williamson  * VFIO_CHECK_EXTENSION - _IOW(VFIO_TYPE, VFIO_BASE + 1, __u32)
68883f0b85SAlex Williamson  *
69883f0b85SAlex Williamson  * Check whether an extension is supported.
70883f0b85SAlex Williamson  * Return: 0 if not supported, 1 (or some other positive integer) if supported.
71883f0b85SAlex Williamson  * Availability: Always
72883f0b85SAlex Williamson  */
73883f0b85SAlex Williamson #define VFIO_CHECK_EXTENSION		_IO(VFIO_TYPE, VFIO_BASE + 1)
74883f0b85SAlex Williamson 
75883f0b85SAlex Williamson /**
76883f0b85SAlex Williamson  * VFIO_SET_IOMMU - _IOW(VFIO_TYPE, VFIO_BASE + 2, __s32)
77883f0b85SAlex Williamson  *
78883f0b85SAlex Williamson  * Set the iommu to the given type.  The type must be supported by an
79883f0b85SAlex Williamson  * iommu driver as verified by calling CHECK_EXTENSION using the same
80883f0b85SAlex Williamson  * type.  A group must be set to this file descriptor before this
81883f0b85SAlex Williamson  * ioctl is available.  The IOMMU interfaces enabled by this call are
82883f0b85SAlex Williamson  * specific to the value set.
83883f0b85SAlex Williamson  * Return: 0 on success, -errno on failure
84883f0b85SAlex Williamson  * Availability: When VFIO group attached
85883f0b85SAlex Williamson  */
86883f0b85SAlex Williamson #define VFIO_SET_IOMMU			_IO(VFIO_TYPE, VFIO_BASE + 2)
87883f0b85SAlex Williamson 
88883f0b85SAlex Williamson /* -------- IOCTLs for GROUP file descriptors (/dev/vfio/$GROUP) -------- */
89883f0b85SAlex Williamson 
90883f0b85SAlex Williamson /**
91883f0b85SAlex Williamson  * VFIO_GROUP_GET_STATUS - _IOR(VFIO_TYPE, VFIO_BASE + 3,
92883f0b85SAlex Williamson  *						struct vfio_group_status)
93883f0b85SAlex Williamson  *
94883f0b85SAlex Williamson  * Retrieve information about the group.  Fills in provided
95883f0b85SAlex Williamson  * struct vfio_group_info.  Caller sets argsz.
96883f0b85SAlex Williamson  * Return: 0 on succes, -errno on failure.
97883f0b85SAlex Williamson  * Availability: Always
98883f0b85SAlex Williamson  */
99883f0b85SAlex Williamson struct vfio_group_status {
100883f0b85SAlex Williamson 	__u32	argsz;
101883f0b85SAlex Williamson 	__u32	flags;
102883f0b85SAlex Williamson #define VFIO_GROUP_FLAGS_VIABLE		(1 << 0)
103883f0b85SAlex Williamson #define VFIO_GROUP_FLAGS_CONTAINER_SET	(1 << 1)
104883f0b85SAlex Williamson };
105883f0b85SAlex Williamson #define VFIO_GROUP_GET_STATUS		_IO(VFIO_TYPE, VFIO_BASE + 3)
106883f0b85SAlex Williamson 
107883f0b85SAlex Williamson /**
108883f0b85SAlex Williamson  * VFIO_GROUP_SET_CONTAINER - _IOW(VFIO_TYPE, VFIO_BASE + 4, __s32)
109883f0b85SAlex Williamson  *
110883f0b85SAlex Williamson  * Set the container for the VFIO group to the open VFIO file
111883f0b85SAlex Williamson  * descriptor provided.  Groups may only belong to a single
112883f0b85SAlex Williamson  * container.  Containers may, at their discretion, support multiple
113883f0b85SAlex Williamson  * groups.  Only when a container is set are all of the interfaces
114883f0b85SAlex Williamson  * of the VFIO file descriptor and the VFIO group file descriptor
115883f0b85SAlex Williamson  * available to the user.
116883f0b85SAlex Williamson  * Return: 0 on success, -errno on failure.
117883f0b85SAlex Williamson  * Availability: Always
118883f0b85SAlex Williamson  */
119883f0b85SAlex Williamson #define VFIO_GROUP_SET_CONTAINER	_IO(VFIO_TYPE, VFIO_BASE + 4)
120883f0b85SAlex Williamson 
121883f0b85SAlex Williamson /**
122883f0b85SAlex Williamson  * VFIO_GROUP_UNSET_CONTAINER - _IO(VFIO_TYPE, VFIO_BASE + 5)
123883f0b85SAlex Williamson  *
124883f0b85SAlex Williamson  * Remove the group from the attached container.  This is the
125883f0b85SAlex Williamson  * opposite of the SET_CONTAINER call and returns the group to
126883f0b85SAlex Williamson  * an initial state.  All device file descriptors must be released
127883f0b85SAlex Williamson  * prior to calling this interface.  When removing the last group
128883f0b85SAlex Williamson  * from a container, the IOMMU will be disabled and all state lost,
129883f0b85SAlex Williamson  * effectively also returning the VFIO file descriptor to an initial
130883f0b85SAlex Williamson  * state.
131883f0b85SAlex Williamson  * Return: 0 on success, -errno on failure.
132883f0b85SAlex Williamson  * Availability: When attached to container
133883f0b85SAlex Williamson  */
134883f0b85SAlex Williamson #define VFIO_GROUP_UNSET_CONTAINER	_IO(VFIO_TYPE, VFIO_BASE + 5)
135883f0b85SAlex Williamson 
136883f0b85SAlex Williamson /**
137883f0b85SAlex Williamson  * VFIO_GROUP_GET_DEVICE_FD - _IOW(VFIO_TYPE, VFIO_BASE + 6, char)
138883f0b85SAlex Williamson  *
139883f0b85SAlex Williamson  * Return a new file descriptor for the device object described by
140883f0b85SAlex Williamson  * the provided string.  The string should match a device listed in
141883f0b85SAlex Williamson  * the devices subdirectory of the IOMMU group sysfs entry.  The
142883f0b85SAlex Williamson  * group containing the device must already be added to this context.
143883f0b85SAlex Williamson  * Return: new file descriptor on success, -errno on failure.
144883f0b85SAlex Williamson  * Availability: When attached to container
145883f0b85SAlex Williamson  */
146883f0b85SAlex Williamson #define VFIO_GROUP_GET_DEVICE_FD	_IO(VFIO_TYPE, VFIO_BASE + 6)
147883f0b85SAlex Williamson 
148883f0b85SAlex Williamson /* --------------- IOCTLs for DEVICE file descriptors --------------- */
149883f0b85SAlex Williamson 
150883f0b85SAlex Williamson /**
151883f0b85SAlex Williamson  * VFIO_DEVICE_GET_INFO - _IOR(VFIO_TYPE, VFIO_BASE + 7,
152883f0b85SAlex Williamson  *						struct vfio_device_info)
153883f0b85SAlex Williamson  *
154883f0b85SAlex Williamson  * Retrieve information about the device.  Fills in provided
155883f0b85SAlex Williamson  * struct vfio_device_info.  Caller sets argsz.
156883f0b85SAlex Williamson  * Return: 0 on success, -errno on failure.
157883f0b85SAlex Williamson  */
158883f0b85SAlex Williamson struct vfio_device_info {
159883f0b85SAlex Williamson 	__u32	argsz;
160883f0b85SAlex Williamson 	__u32	flags;
161883f0b85SAlex Williamson #define VFIO_DEVICE_FLAGS_RESET	(1 << 0)	/* Device supports reset */
162883f0b85SAlex Williamson #define VFIO_DEVICE_FLAGS_PCI	(1 << 1)	/* vfio-pci device */
163*7a52ce8aSCornelia Huck #define VFIO_DEVICE_FLAGS_PLATFORM (1 << 2)	/* vfio-platform device */
164*7a52ce8aSCornelia Huck #define VFIO_DEVICE_FLAGS_AMBA  (1 << 3)	/* vfio-amba device */
165883f0b85SAlex Williamson 	__u32	num_regions;	/* Max region index + 1 */
166883f0b85SAlex Williamson 	__u32	num_irqs;	/* Max IRQ index + 1 */
167883f0b85SAlex Williamson };
168883f0b85SAlex Williamson #define VFIO_DEVICE_GET_INFO		_IO(VFIO_TYPE, VFIO_BASE + 7)
169883f0b85SAlex Williamson 
170883f0b85SAlex Williamson /**
171883f0b85SAlex Williamson  * VFIO_DEVICE_GET_REGION_INFO - _IOWR(VFIO_TYPE, VFIO_BASE + 8,
172883f0b85SAlex Williamson  *				       struct vfio_region_info)
173883f0b85SAlex Williamson  *
174883f0b85SAlex Williamson  * Retrieve information about a device region.  Caller provides
175883f0b85SAlex Williamson  * struct vfio_region_info with index value set.  Caller sets argsz.
176883f0b85SAlex Williamson  * Implementation of region mapping is bus driver specific.  This is
177883f0b85SAlex Williamson  * intended to describe MMIO, I/O port, as well as bus specific
178883f0b85SAlex Williamson  * regions (ex. PCI config space).  Zero sized regions may be used
179883f0b85SAlex Williamson  * to describe unimplemented regions (ex. unimplemented PCI BARs).
180883f0b85SAlex Williamson  * Return: 0 on success, -errno on failure.
181883f0b85SAlex Williamson  */
182883f0b85SAlex Williamson struct vfio_region_info {
183883f0b85SAlex Williamson 	__u32	argsz;
184883f0b85SAlex Williamson 	__u32	flags;
185883f0b85SAlex Williamson #define VFIO_REGION_INFO_FLAG_READ	(1 << 0) /* Region supports read */
186883f0b85SAlex Williamson #define VFIO_REGION_INFO_FLAG_WRITE	(1 << 1) /* Region supports write */
187883f0b85SAlex Williamson #define VFIO_REGION_INFO_FLAG_MMAP	(1 << 2) /* Region supports mmap */
188883f0b85SAlex Williamson 	__u32	index;		/* Region index */
189883f0b85SAlex Williamson 	__u32	resv;		/* Reserved for alignment */
190883f0b85SAlex Williamson 	__u64	size;		/* Region size (bytes) */
191883f0b85SAlex Williamson 	__u64	offset;		/* Region offset from start of device fd */
192883f0b85SAlex Williamson };
193883f0b85SAlex Williamson #define VFIO_DEVICE_GET_REGION_INFO	_IO(VFIO_TYPE, VFIO_BASE + 8)
194883f0b85SAlex Williamson 
195883f0b85SAlex Williamson /**
196883f0b85SAlex Williamson  * VFIO_DEVICE_GET_IRQ_INFO - _IOWR(VFIO_TYPE, VFIO_BASE + 9,
197883f0b85SAlex Williamson  *				    struct vfio_irq_info)
198883f0b85SAlex Williamson  *
199883f0b85SAlex Williamson  * Retrieve information about a device IRQ.  Caller provides
200883f0b85SAlex Williamson  * struct vfio_irq_info with index value set.  Caller sets argsz.
201883f0b85SAlex Williamson  * Implementation of IRQ mapping is bus driver specific.  Indexes
202883f0b85SAlex Williamson  * using multiple IRQs are primarily intended to support MSI-like
203883f0b85SAlex Williamson  * interrupt blocks.  Zero count irq blocks may be used to describe
204883f0b85SAlex Williamson  * unimplemented interrupt types.
205883f0b85SAlex Williamson  *
206883f0b85SAlex Williamson  * The EVENTFD flag indicates the interrupt index supports eventfd based
207883f0b85SAlex Williamson  * signaling.
208883f0b85SAlex Williamson  *
209883f0b85SAlex Williamson  * The MASKABLE flags indicates the index supports MASK and UNMASK
210883f0b85SAlex Williamson  * actions described below.
211883f0b85SAlex Williamson  *
212883f0b85SAlex Williamson  * AUTOMASKED indicates that after signaling, the interrupt line is
213883f0b85SAlex Williamson  * automatically masked by VFIO and the user needs to unmask the line
214883f0b85SAlex Williamson  * to receive new interrupts.  This is primarily intended to distinguish
215883f0b85SAlex Williamson  * level triggered interrupts.
216883f0b85SAlex Williamson  *
217883f0b85SAlex Williamson  * The NORESIZE flag indicates that the interrupt lines within the index
218883f0b85SAlex Williamson  * are setup as a set and new subindexes cannot be enabled without first
219883f0b85SAlex Williamson  * disabling the entire index.  This is used for interrupts like PCI MSI
220883f0b85SAlex Williamson  * and MSI-X where the driver may only use a subset of the available
221883f0b85SAlex Williamson  * indexes, but VFIO needs to enable a specific number of vectors
222883f0b85SAlex Williamson  * upfront.  In the case of MSI-X, where the user can enable MSI-X and
223883f0b85SAlex Williamson  * then add and unmask vectors, it's up to userspace to make the decision
224883f0b85SAlex Williamson  * whether to allocate the maximum supported number of vectors or tear
225883f0b85SAlex Williamson  * down setup and incrementally increase the vectors as each is enabled.
226883f0b85SAlex Williamson  */
227883f0b85SAlex Williamson struct vfio_irq_info {
228883f0b85SAlex Williamson 	__u32	argsz;
229883f0b85SAlex Williamson 	__u32	flags;
230883f0b85SAlex Williamson #define VFIO_IRQ_INFO_EVENTFD		(1 << 0)
231883f0b85SAlex Williamson #define VFIO_IRQ_INFO_MASKABLE		(1 << 1)
232883f0b85SAlex Williamson #define VFIO_IRQ_INFO_AUTOMASKED	(1 << 2)
233883f0b85SAlex Williamson #define VFIO_IRQ_INFO_NORESIZE		(1 << 3)
234883f0b85SAlex Williamson 	__u32	index;		/* IRQ index */
235883f0b85SAlex Williamson 	__u32	count;		/* Number of IRQs within this index */
236883f0b85SAlex Williamson };
237883f0b85SAlex Williamson #define VFIO_DEVICE_GET_IRQ_INFO	_IO(VFIO_TYPE, VFIO_BASE + 9)
238883f0b85SAlex Williamson 
239883f0b85SAlex Williamson /**
240883f0b85SAlex Williamson  * VFIO_DEVICE_SET_IRQS - _IOW(VFIO_TYPE, VFIO_BASE + 10, struct vfio_irq_set)
241883f0b85SAlex Williamson  *
242883f0b85SAlex Williamson  * Set signaling, masking, and unmasking of interrupts.  Caller provides
243883f0b85SAlex Williamson  * struct vfio_irq_set with all fields set.  'start' and 'count' indicate
244883f0b85SAlex Williamson  * the range of subindexes being specified.
245883f0b85SAlex Williamson  *
246883f0b85SAlex Williamson  * The DATA flags specify the type of data provided.  If DATA_NONE, the
247883f0b85SAlex Williamson  * operation performs the specified action immediately on the specified
248883f0b85SAlex Williamson  * interrupt(s).  For example, to unmask AUTOMASKED interrupt [0,0]:
249883f0b85SAlex Williamson  * flags = (DATA_NONE|ACTION_UNMASK), index = 0, start = 0, count = 1.
250883f0b85SAlex Williamson  *
251883f0b85SAlex Williamson  * DATA_BOOL allows sparse support for the same on arrays of interrupts.
252883f0b85SAlex Williamson  * For example, to mask interrupts [0,1] and [0,3] (but not [0,2]):
253883f0b85SAlex Williamson  * flags = (DATA_BOOL|ACTION_MASK), index = 0, start = 1, count = 3,
254883f0b85SAlex Williamson  * data = {1,0,1}
255883f0b85SAlex Williamson  *
256883f0b85SAlex Williamson  * DATA_EVENTFD binds the specified ACTION to the provided __s32 eventfd.
257883f0b85SAlex Williamson  * A value of -1 can be used to either de-assign interrupts if already
258883f0b85SAlex Williamson  * assigned or skip un-assigned interrupts.  For example, to set an eventfd
259883f0b85SAlex Williamson  * to be trigger for interrupts [0,0] and [0,2]:
260883f0b85SAlex Williamson  * flags = (DATA_EVENTFD|ACTION_TRIGGER), index = 0, start = 0, count = 3,
261883f0b85SAlex Williamson  * data = {fd1, -1, fd2}
262883f0b85SAlex Williamson  * If index [0,1] is previously set, two count = 1 ioctls calls would be
263883f0b85SAlex Williamson  * required to set [0,0] and [0,2] without changing [0,1].
264883f0b85SAlex Williamson  *
265883f0b85SAlex Williamson  * Once a signaling mechanism is set, DATA_BOOL or DATA_NONE can be used
266883f0b85SAlex Williamson  * with ACTION_TRIGGER to perform kernel level interrupt loopback testing
267883f0b85SAlex Williamson  * from userspace (ie. simulate hardware triggering).
268883f0b85SAlex Williamson  *
269883f0b85SAlex Williamson  * Setting of an event triggering mechanism to userspace for ACTION_TRIGGER
270883f0b85SAlex Williamson  * enables the interrupt index for the device.  Individual subindex interrupts
271883f0b85SAlex Williamson  * can be disabled using the -1 value for DATA_EVENTFD or the index can be
272883f0b85SAlex Williamson  * disabled as a whole with: flags = (DATA_NONE|ACTION_TRIGGER), count = 0.
273883f0b85SAlex Williamson  *
274883f0b85SAlex Williamson  * Note that ACTION_[UN]MASK specify user->kernel signaling (irqfds) while
275883f0b85SAlex Williamson  * ACTION_TRIGGER specifies kernel->user signaling.
276883f0b85SAlex Williamson  */
277883f0b85SAlex Williamson struct vfio_irq_set {
278883f0b85SAlex Williamson 	__u32	argsz;
279883f0b85SAlex Williamson 	__u32	flags;
280883f0b85SAlex Williamson #define VFIO_IRQ_SET_DATA_NONE		(1 << 0) /* Data not present */
281883f0b85SAlex Williamson #define VFIO_IRQ_SET_DATA_BOOL		(1 << 1) /* Data is bool (u8) */
282883f0b85SAlex Williamson #define VFIO_IRQ_SET_DATA_EVENTFD	(1 << 2) /* Data is eventfd (s32) */
283883f0b85SAlex Williamson #define VFIO_IRQ_SET_ACTION_MASK	(1 << 3) /* Mask interrupt */
284883f0b85SAlex Williamson #define VFIO_IRQ_SET_ACTION_UNMASK	(1 << 4) /* Unmask interrupt */
285883f0b85SAlex Williamson #define VFIO_IRQ_SET_ACTION_TRIGGER	(1 << 5) /* Trigger interrupt */
286883f0b85SAlex Williamson 	__u32	index;
287883f0b85SAlex Williamson 	__u32	start;
288883f0b85SAlex Williamson 	__u32	count;
289883f0b85SAlex Williamson 	__u8	data[];
290883f0b85SAlex Williamson };
291883f0b85SAlex Williamson #define VFIO_DEVICE_SET_IRQS		_IO(VFIO_TYPE, VFIO_BASE + 10)
292883f0b85SAlex Williamson 
293883f0b85SAlex Williamson #define VFIO_IRQ_SET_DATA_TYPE_MASK	(VFIO_IRQ_SET_DATA_NONE | \
294883f0b85SAlex Williamson 					 VFIO_IRQ_SET_DATA_BOOL | \
295883f0b85SAlex Williamson 					 VFIO_IRQ_SET_DATA_EVENTFD)
296883f0b85SAlex Williamson #define VFIO_IRQ_SET_ACTION_TYPE_MASK	(VFIO_IRQ_SET_ACTION_MASK | \
297883f0b85SAlex Williamson 					 VFIO_IRQ_SET_ACTION_UNMASK | \
298883f0b85SAlex Williamson 					 VFIO_IRQ_SET_ACTION_TRIGGER)
299883f0b85SAlex Williamson /**
300883f0b85SAlex Williamson  * VFIO_DEVICE_RESET - _IO(VFIO_TYPE, VFIO_BASE + 11)
301883f0b85SAlex Williamson  *
302883f0b85SAlex Williamson  * Reset a device.
303883f0b85SAlex Williamson  */
304883f0b85SAlex Williamson #define VFIO_DEVICE_RESET		_IO(VFIO_TYPE, VFIO_BASE + 11)
305883f0b85SAlex Williamson 
306883f0b85SAlex Williamson /*
307883f0b85SAlex Williamson  * The VFIO-PCI bus driver makes use of the following fixed region and
308883f0b85SAlex Williamson  * IRQ index mapping.  Unimplemented regions return a size of zero.
309883f0b85SAlex Williamson  * Unimplemented IRQ types return a count of zero.
310883f0b85SAlex Williamson  */
311883f0b85SAlex Williamson 
312883f0b85SAlex Williamson enum {
313883f0b85SAlex Williamson 	VFIO_PCI_BAR0_REGION_INDEX,
314883f0b85SAlex Williamson 	VFIO_PCI_BAR1_REGION_INDEX,
315883f0b85SAlex Williamson 	VFIO_PCI_BAR2_REGION_INDEX,
316883f0b85SAlex Williamson 	VFIO_PCI_BAR3_REGION_INDEX,
317883f0b85SAlex Williamson 	VFIO_PCI_BAR4_REGION_INDEX,
318883f0b85SAlex Williamson 	VFIO_PCI_BAR5_REGION_INDEX,
319883f0b85SAlex Williamson 	VFIO_PCI_ROM_REGION_INDEX,
320883f0b85SAlex Williamson 	VFIO_PCI_CONFIG_REGION_INDEX,
321010ca0b3SAlex Williamson 	/*
322010ca0b3SAlex Williamson 	 * Expose VGA regions defined for PCI base class 03, subclass 00.
323010ca0b3SAlex Williamson 	 * This includes I/O port ranges 0x3b0 to 0x3bb and 0x3c0 to 0x3df
324010ca0b3SAlex Williamson 	 * as well as the MMIO range 0xa0000 to 0xbffff.  Each implemented
325010ca0b3SAlex Williamson 	 * range is found at it's identity mapped offset from the region
326010ca0b3SAlex Williamson 	 * offset, for example 0x3b0 is region_info.offset + 0x3b0.  Areas
327010ca0b3SAlex Williamson 	 * between described ranges are unimplemented.
328010ca0b3SAlex Williamson 	 */
329010ca0b3SAlex Williamson 	VFIO_PCI_VGA_REGION_INDEX,
330883f0b85SAlex Williamson 	VFIO_PCI_NUM_REGIONS
331883f0b85SAlex Williamson };
332883f0b85SAlex Williamson 
333883f0b85SAlex Williamson enum {
334883f0b85SAlex Williamson 	VFIO_PCI_INTX_IRQ_INDEX,
335883f0b85SAlex Williamson 	VFIO_PCI_MSI_IRQ_INDEX,
336883f0b85SAlex Williamson 	VFIO_PCI_MSIX_IRQ_INDEX,
337e098b453SAlexey Kardashevskiy 	VFIO_PCI_ERR_IRQ_INDEX,
33847cbe50cSAlex Williamson 	VFIO_PCI_REQ_IRQ_INDEX,
339883f0b85SAlex Williamson 	VFIO_PCI_NUM_IRQS
340883f0b85SAlex Williamson };
341883f0b85SAlex Williamson 
3424f265607SAndrew Jones /**
3434f265607SAndrew Jones  * VFIO_DEVICE_GET_PCI_HOT_RESET_INFO - _IORW(VFIO_TYPE, VFIO_BASE + 12,
3444f265607SAndrew Jones  *					      struct vfio_pci_hot_reset_info)
3454f265607SAndrew Jones  *
3464f265607SAndrew Jones  * Return: 0 on success, -errno on failure:
3474f265607SAndrew Jones  *	-enospc = insufficient buffer, -enodev = unsupported for device.
3484f265607SAndrew Jones  */
3494f265607SAndrew Jones struct vfio_pci_dependent_device {
3504f265607SAndrew Jones 	__u32	group_id;
3514f265607SAndrew Jones 	__u16	segment;
3524f265607SAndrew Jones 	__u8	bus;
3534f265607SAndrew Jones 	__u8	devfn; /* Use PCI_SLOT/PCI_FUNC */
3544f265607SAndrew Jones };
3554f265607SAndrew Jones 
3564f265607SAndrew Jones struct vfio_pci_hot_reset_info {
3574f265607SAndrew Jones 	__u32	argsz;
3584f265607SAndrew Jones 	__u32	flags;
3594f265607SAndrew Jones 	__u32	count;
3604f265607SAndrew Jones 	struct vfio_pci_dependent_device	devices[];
3614f265607SAndrew Jones };
3624f265607SAndrew Jones 
3634f265607SAndrew Jones #define VFIO_DEVICE_GET_PCI_HOT_RESET_INFO	_IO(VFIO_TYPE, VFIO_BASE + 12)
3644f265607SAndrew Jones 
3654f265607SAndrew Jones /**
3664f265607SAndrew Jones  * VFIO_DEVICE_PCI_HOT_RESET - _IOW(VFIO_TYPE, VFIO_BASE + 13,
3674f265607SAndrew Jones  *				    struct vfio_pci_hot_reset)
3684f265607SAndrew Jones  *
3694f265607SAndrew Jones  * Return: 0 on success, -errno on failure.
3704f265607SAndrew Jones  */
3714f265607SAndrew Jones struct vfio_pci_hot_reset {
3724f265607SAndrew Jones 	__u32	argsz;
3734f265607SAndrew Jones 	__u32	flags;
3744f265607SAndrew Jones 	__u32	count;
3754f265607SAndrew Jones 	__s32	group_fds[];
3764f265607SAndrew Jones };
3774f265607SAndrew Jones 
3784f265607SAndrew Jones #define VFIO_DEVICE_PCI_HOT_RESET	_IO(VFIO_TYPE, VFIO_BASE + 13)
3794f265607SAndrew Jones 
380883f0b85SAlex Williamson /* -------- API for Type1 VFIO IOMMU -------- */
381883f0b85SAlex Williamson 
382883f0b85SAlex Williamson /**
383883f0b85SAlex Williamson  * VFIO_IOMMU_GET_INFO - _IOR(VFIO_TYPE, VFIO_BASE + 12, struct vfio_iommu_info)
384883f0b85SAlex Williamson  *
385883f0b85SAlex Williamson  * Retrieve information about the IOMMU object. Fills in provided
386883f0b85SAlex Williamson  * struct vfio_iommu_info. Caller sets argsz.
387883f0b85SAlex Williamson  *
388883f0b85SAlex Williamson  * XXX Should we do these by CHECK_EXTENSION too?
389883f0b85SAlex Williamson  */
390883f0b85SAlex Williamson struct vfio_iommu_type1_info {
391883f0b85SAlex Williamson 	__u32	argsz;
392883f0b85SAlex Williamson 	__u32	flags;
393883f0b85SAlex Williamson #define VFIO_IOMMU_INFO_PGSIZES (1 << 0)	/* supported page sizes info */
394883f0b85SAlex Williamson 	__u64	iova_pgsizes;		/* Bitmap of supported page sizes */
395883f0b85SAlex Williamson };
396883f0b85SAlex Williamson 
397883f0b85SAlex Williamson #define VFIO_IOMMU_GET_INFO _IO(VFIO_TYPE, VFIO_BASE + 12)
398883f0b85SAlex Williamson 
399883f0b85SAlex Williamson /**
400883f0b85SAlex Williamson  * VFIO_IOMMU_MAP_DMA - _IOW(VFIO_TYPE, VFIO_BASE + 13, struct vfio_dma_map)
401883f0b85SAlex Williamson  *
402883f0b85SAlex Williamson  * Map process virtual addresses to IO virtual addresses using the
403883f0b85SAlex Williamson  * provided struct vfio_dma_map. Caller sets argsz. READ &/ WRITE required.
404883f0b85SAlex Williamson  */
405883f0b85SAlex Williamson struct vfio_iommu_type1_dma_map {
406883f0b85SAlex Williamson 	__u32	argsz;
407883f0b85SAlex Williamson 	__u32	flags;
408883f0b85SAlex Williamson #define VFIO_DMA_MAP_FLAG_READ (1 << 0)		/* readable from device */
409883f0b85SAlex Williamson #define VFIO_DMA_MAP_FLAG_WRITE (1 << 1)	/* writable from device */
410883f0b85SAlex Williamson 	__u64	vaddr;				/* Process virtual address */
411883f0b85SAlex Williamson 	__u64	iova;				/* IO virtual address */
412883f0b85SAlex Williamson 	__u64	size;				/* Size of mapping (bytes) */
413883f0b85SAlex Williamson };
414883f0b85SAlex Williamson 
415883f0b85SAlex Williamson #define VFIO_IOMMU_MAP_DMA _IO(VFIO_TYPE, VFIO_BASE + 13)
416883f0b85SAlex Williamson 
417883f0b85SAlex Williamson /**
418c5daeae1SAlexey Kardashevskiy  * VFIO_IOMMU_UNMAP_DMA - _IOWR(VFIO_TYPE, VFIO_BASE + 14,
419c5daeae1SAlexey Kardashevskiy  *							struct vfio_dma_unmap)
420883f0b85SAlex Williamson  *
421883f0b85SAlex Williamson  * Unmap IO virtual addresses using the provided struct vfio_dma_unmap.
422c5daeae1SAlexey Kardashevskiy  * Caller sets argsz.  The actual unmapped size is returned in the size
423c5daeae1SAlexey Kardashevskiy  * field.  No guarantee is made to the user that arbitrary unmaps of iova
424c5daeae1SAlexey Kardashevskiy  * or size different from those used in the original mapping call will
425c5daeae1SAlexey Kardashevskiy  * succeed.
426883f0b85SAlex Williamson  */
427883f0b85SAlex Williamson struct vfio_iommu_type1_dma_unmap {
428883f0b85SAlex Williamson 	__u32	argsz;
429883f0b85SAlex Williamson 	__u32	flags;
430883f0b85SAlex Williamson 	__u64	iova;				/* IO virtual address */
431883f0b85SAlex Williamson 	__u64	size;				/* Size of mapping (bytes) */
432883f0b85SAlex Williamson };
433883f0b85SAlex Williamson 
434883f0b85SAlex Williamson #define VFIO_IOMMU_UNMAP_DMA _IO(VFIO_TYPE, VFIO_BASE + 14)
435883f0b85SAlex Williamson 
436c5daeae1SAlexey Kardashevskiy /*
437c5daeae1SAlexey Kardashevskiy  * IOCTLs to enable/disable IOMMU container usage.
438c5daeae1SAlexey Kardashevskiy  * No parameters are supported.
439c5daeae1SAlexey Kardashevskiy  */
440c5daeae1SAlexey Kardashevskiy #define VFIO_IOMMU_ENABLE	_IO(VFIO_TYPE, VFIO_BASE + 15)
441c5daeae1SAlexey Kardashevskiy #define VFIO_IOMMU_DISABLE	_IO(VFIO_TYPE, VFIO_BASE + 16)
442c5daeae1SAlexey Kardashevskiy 
443c5daeae1SAlexey Kardashevskiy /* -------- Additional API for SPAPR TCE (Server POWERPC) IOMMU -------- */
444c5daeae1SAlexey Kardashevskiy 
445c5daeae1SAlexey Kardashevskiy /*
446c5daeae1SAlexey Kardashevskiy  * The SPAPR TCE info struct provides the information about the PCI bus
447c5daeae1SAlexey Kardashevskiy  * address ranges available for DMA, these values are programmed into
448c5daeae1SAlexey Kardashevskiy  * the hardware so the guest has to know that information.
449c5daeae1SAlexey Kardashevskiy  *
450c5daeae1SAlexey Kardashevskiy  * The DMA 32 bit window start is an absolute PCI bus address.
451c5daeae1SAlexey Kardashevskiy  * The IOVA address passed via map/unmap ioctls are absolute PCI bus
452c5daeae1SAlexey Kardashevskiy  * addresses too so the window works as a filter rather than an offset
453c5daeae1SAlexey Kardashevskiy  * for IOVA addresses.
454c5daeae1SAlexey Kardashevskiy  *
455c5daeae1SAlexey Kardashevskiy  * A flag will need to be added if other page sizes are supported,
456c5daeae1SAlexey Kardashevskiy  * so as defined here, it is always 4k.
457c5daeae1SAlexey Kardashevskiy  */
458c5daeae1SAlexey Kardashevskiy struct vfio_iommu_spapr_tce_info {
459c5daeae1SAlexey Kardashevskiy 	__u32 argsz;
460c5daeae1SAlexey Kardashevskiy 	__u32 flags;			/* reserved for future use */
461c5daeae1SAlexey Kardashevskiy 	__u32 dma32_window_start;	/* 32 bit window start (bytes) */
462c5daeae1SAlexey Kardashevskiy 	__u32 dma32_window_size;	/* 32 bit window size (bytes) */
463c5daeae1SAlexey Kardashevskiy };
464c5daeae1SAlexey Kardashevskiy 
465c5daeae1SAlexey Kardashevskiy #define VFIO_IOMMU_SPAPR_TCE_GET_INFO	_IO(VFIO_TYPE, VFIO_BASE + 12)
466c5daeae1SAlexey Kardashevskiy 
467a9fd1654SJens Freimann /*
468a9fd1654SJens Freimann  * EEH PE operation struct provides ways to:
469a9fd1654SJens Freimann  * - enable/disable EEH functionality;
470a9fd1654SJens Freimann  * - unfreeze IO/DMA for frozen PE;
471a9fd1654SJens Freimann  * - read PE state;
472a9fd1654SJens Freimann  * - reset PE;
473a9fd1654SJens Freimann  * - configure PE.
474a9fd1654SJens Freimann  */
475a9fd1654SJens Freimann struct vfio_eeh_pe_op {
476a9fd1654SJens Freimann 	__u32 argsz;
477a9fd1654SJens Freimann 	__u32 flags;
478a9fd1654SJens Freimann 	__u32 op;
479a9fd1654SJens Freimann };
480a9fd1654SJens Freimann 
481a9fd1654SJens Freimann #define VFIO_EEH_PE_DISABLE		0	/* Disable EEH functionality */
482a9fd1654SJens Freimann #define VFIO_EEH_PE_ENABLE		1	/* Enable EEH functionality  */
483a9fd1654SJens Freimann #define VFIO_EEH_PE_UNFREEZE_IO		2	/* Enable IO for frozen PE   */
484a9fd1654SJens Freimann #define VFIO_EEH_PE_UNFREEZE_DMA	3	/* Enable DMA for frozen PE  */
485a9fd1654SJens Freimann #define VFIO_EEH_PE_GET_STATE		4	/* PE state retrieval        */
486a9fd1654SJens Freimann #define  VFIO_EEH_PE_STATE_NORMAL	0	/* PE in functional state    */
487a9fd1654SJens Freimann #define  VFIO_EEH_PE_STATE_RESET	1	/* PE reset in progress      */
488a9fd1654SJens Freimann #define  VFIO_EEH_PE_STATE_STOPPED	2	/* Stopped DMA and IO        */
489a9fd1654SJens Freimann #define  VFIO_EEH_PE_STATE_STOPPED_DMA	4	/* Stopped DMA only          */
490a9fd1654SJens Freimann #define  VFIO_EEH_PE_STATE_UNAVAIL	5	/* State unavailable         */
491a9fd1654SJens Freimann #define VFIO_EEH_PE_RESET_DEACTIVATE	5	/* Deassert PE reset         */
492a9fd1654SJens Freimann #define VFIO_EEH_PE_RESET_HOT		6	/* Assert hot reset          */
493a9fd1654SJens Freimann #define VFIO_EEH_PE_RESET_FUNDAMENTAL	7	/* Assert fundamental reset  */
494a9fd1654SJens Freimann #define VFIO_EEH_PE_CONFIGURE		8	/* PE configuration          */
495a9fd1654SJens Freimann 
496a9fd1654SJens Freimann #define VFIO_EEH_PE_OP			_IO(VFIO_TYPE, VFIO_BASE + 21)
497a9fd1654SJens Freimann 
498c5daeae1SAlexey Kardashevskiy /* ***************************************************************** */
499c5daeae1SAlexey Kardashevskiy 
500d4834ff9SAlexander Graf #endif /* VFIO_H */
501