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 4966fb2d54SCornelia Huck /* 50883f0b85SAlex Williamson * The IOCTL interface is designed for extensibility by embedding the 51883f0b85SAlex Williamson * structure length (argsz) and flags into structures passed between 52883f0b85SAlex Williamson * kernel and userspace. We therefore use the _IO() macro for these 53883f0b85SAlex Williamson * defines to avoid implicitly embedding a size into the ioctl request. 54883f0b85SAlex Williamson * As structure fields are added, argsz will increase to match and flag 55883f0b85SAlex Williamson * bits will be defined to indicate additional fields with valid data. 56883f0b85SAlex Williamson * It's *always* the caller's responsibility to indicate the size of 57883f0b85SAlex Williamson * the structure passed by setting argsz appropriately. 58883f0b85SAlex Williamson */ 59883f0b85SAlex Williamson 60883f0b85SAlex Williamson #define VFIO_TYPE (';') 61883f0b85SAlex Williamson #define VFIO_BASE 100 62883f0b85SAlex Williamson 63b89485a5SPaolo Bonzini /* 64b89485a5SPaolo Bonzini * For extension of INFO ioctls, VFIO makes use of a capability chain 65b89485a5SPaolo Bonzini * designed after PCI/e capabilities. A flag bit indicates whether 66b89485a5SPaolo Bonzini * this capability chain is supported and a field defined in the fixed 67b89485a5SPaolo Bonzini * structure defines the offset of the first capability in the chain. 68b89485a5SPaolo Bonzini * This field is only valid when the corresponding bit in the flags 69b89485a5SPaolo Bonzini * bitmap is set. This offset field is relative to the start of the 70b89485a5SPaolo Bonzini * INFO buffer, as is the next field within each capability header. 71b89485a5SPaolo Bonzini * The id within the header is a shared address space per INFO ioctl, 72b89485a5SPaolo Bonzini * while the version field is specific to the capability id. The 73b89485a5SPaolo Bonzini * contents following the header are specific to the capability id. 74b89485a5SPaolo Bonzini */ 75b89485a5SPaolo Bonzini struct vfio_info_cap_header { 76b89485a5SPaolo Bonzini __u16 id; /* Identifies capability */ 77b89485a5SPaolo Bonzini __u16 version; /* Version specific to the capability ID */ 78b89485a5SPaolo Bonzini __u32 next; /* Offset of next capability */ 79b89485a5SPaolo Bonzini }; 80b89485a5SPaolo Bonzini 81b89485a5SPaolo Bonzini /* 82b89485a5SPaolo Bonzini * Callers of INFO ioctls passing insufficiently sized buffers will see 83b89485a5SPaolo Bonzini * the capability chain flag bit set, a zero value for the first capability 84b89485a5SPaolo Bonzini * offset (if available within the provided argsz), and argsz will be 85b89485a5SPaolo Bonzini * updated to report the necessary buffer size. For compatibility, the 86b89485a5SPaolo Bonzini * INFO ioctl will not report error in this case, but the capability chain 87b89485a5SPaolo Bonzini * will not be available. 88b89485a5SPaolo Bonzini */ 89b89485a5SPaolo Bonzini 90883f0b85SAlex Williamson /* -------- IOCTLs for VFIO file descriptor (/dev/vfio/vfio) -------- */ 91883f0b85SAlex Williamson 92883f0b85SAlex Williamson /** 93883f0b85SAlex Williamson * VFIO_GET_API_VERSION - _IO(VFIO_TYPE, VFIO_BASE + 0) 94883f0b85SAlex Williamson * 95883f0b85SAlex Williamson * Report the version of the VFIO API. This allows us to bump the entire 96883f0b85SAlex Williamson * API version should we later need to add or change features in incompatible 97883f0b85SAlex Williamson * ways. 98883f0b85SAlex Williamson * Return: VFIO_API_VERSION 99883f0b85SAlex Williamson * Availability: Always 100883f0b85SAlex Williamson */ 101883f0b85SAlex Williamson #define VFIO_GET_API_VERSION _IO(VFIO_TYPE, VFIO_BASE + 0) 102883f0b85SAlex Williamson 103883f0b85SAlex Williamson /** 104883f0b85SAlex Williamson * VFIO_CHECK_EXTENSION - _IOW(VFIO_TYPE, VFIO_BASE + 1, __u32) 105883f0b85SAlex Williamson * 106883f0b85SAlex Williamson * Check whether an extension is supported. 107883f0b85SAlex Williamson * Return: 0 if not supported, 1 (or some other positive integer) if supported. 108883f0b85SAlex Williamson * Availability: Always 109883f0b85SAlex Williamson */ 110883f0b85SAlex Williamson #define VFIO_CHECK_EXTENSION _IO(VFIO_TYPE, VFIO_BASE + 1) 111883f0b85SAlex Williamson 112883f0b85SAlex Williamson /** 113883f0b85SAlex Williamson * VFIO_SET_IOMMU - _IOW(VFIO_TYPE, VFIO_BASE + 2, __s32) 114883f0b85SAlex Williamson * 115883f0b85SAlex Williamson * Set the iommu to the given type. The type must be supported by an 116883f0b85SAlex Williamson * iommu driver as verified by calling CHECK_EXTENSION using the same 117883f0b85SAlex Williamson * type. A group must be set to this file descriptor before this 118883f0b85SAlex Williamson * ioctl is available. The IOMMU interfaces enabled by this call are 119883f0b85SAlex Williamson * specific to the value set. 120883f0b85SAlex Williamson * Return: 0 on success, -errno on failure 121883f0b85SAlex Williamson * Availability: When VFIO group attached 122883f0b85SAlex Williamson */ 123883f0b85SAlex Williamson #define VFIO_SET_IOMMU _IO(VFIO_TYPE, VFIO_BASE + 2) 124883f0b85SAlex Williamson 125883f0b85SAlex Williamson /* -------- IOCTLs for GROUP file descriptors (/dev/vfio/$GROUP) -------- */ 126883f0b85SAlex Williamson 127883f0b85SAlex Williamson /** 128883f0b85SAlex Williamson * VFIO_GROUP_GET_STATUS - _IOR(VFIO_TYPE, VFIO_BASE + 3, 129883f0b85SAlex Williamson * struct vfio_group_status) 130883f0b85SAlex Williamson * 131883f0b85SAlex Williamson * Retrieve information about the group. Fills in provided 132883f0b85SAlex Williamson * struct vfio_group_info. Caller sets argsz. 133883f0b85SAlex Williamson * Return: 0 on succes, -errno on failure. 134883f0b85SAlex Williamson * Availability: Always 135883f0b85SAlex Williamson */ 136883f0b85SAlex Williamson struct vfio_group_status { 137883f0b85SAlex Williamson __u32 argsz; 138883f0b85SAlex Williamson __u32 flags; 139883f0b85SAlex Williamson #define VFIO_GROUP_FLAGS_VIABLE (1 << 0) 140883f0b85SAlex Williamson #define VFIO_GROUP_FLAGS_CONTAINER_SET (1 << 1) 141883f0b85SAlex Williamson }; 142883f0b85SAlex Williamson #define VFIO_GROUP_GET_STATUS _IO(VFIO_TYPE, VFIO_BASE + 3) 143883f0b85SAlex Williamson 144883f0b85SAlex Williamson /** 145883f0b85SAlex Williamson * VFIO_GROUP_SET_CONTAINER - _IOW(VFIO_TYPE, VFIO_BASE + 4, __s32) 146883f0b85SAlex Williamson * 147883f0b85SAlex Williamson * Set the container for the VFIO group to the open VFIO file 148883f0b85SAlex Williamson * descriptor provided. Groups may only belong to a single 149883f0b85SAlex Williamson * container. Containers may, at their discretion, support multiple 150883f0b85SAlex Williamson * groups. Only when a container is set are all of the interfaces 151883f0b85SAlex Williamson * of the VFIO file descriptor and the VFIO group file descriptor 152883f0b85SAlex Williamson * available to the user. 153883f0b85SAlex Williamson * Return: 0 on success, -errno on failure. 154883f0b85SAlex Williamson * Availability: Always 155883f0b85SAlex Williamson */ 156883f0b85SAlex Williamson #define VFIO_GROUP_SET_CONTAINER _IO(VFIO_TYPE, VFIO_BASE + 4) 157883f0b85SAlex Williamson 158883f0b85SAlex Williamson /** 159883f0b85SAlex Williamson * VFIO_GROUP_UNSET_CONTAINER - _IO(VFIO_TYPE, VFIO_BASE + 5) 160883f0b85SAlex Williamson * 161883f0b85SAlex Williamson * Remove the group from the attached container. This is the 162883f0b85SAlex Williamson * opposite of the SET_CONTAINER call and returns the group to 163883f0b85SAlex Williamson * an initial state. All device file descriptors must be released 164883f0b85SAlex Williamson * prior to calling this interface. When removing the last group 165883f0b85SAlex Williamson * from a container, the IOMMU will be disabled and all state lost, 166883f0b85SAlex Williamson * effectively also returning the VFIO file descriptor to an initial 167883f0b85SAlex Williamson * state. 168883f0b85SAlex Williamson * Return: 0 on success, -errno on failure. 169883f0b85SAlex Williamson * Availability: When attached to container 170883f0b85SAlex Williamson */ 171883f0b85SAlex Williamson #define VFIO_GROUP_UNSET_CONTAINER _IO(VFIO_TYPE, VFIO_BASE + 5) 172883f0b85SAlex Williamson 173883f0b85SAlex Williamson /** 174883f0b85SAlex Williamson * VFIO_GROUP_GET_DEVICE_FD - _IOW(VFIO_TYPE, VFIO_BASE + 6, char) 175883f0b85SAlex Williamson * 176883f0b85SAlex Williamson * Return a new file descriptor for the device object described by 177883f0b85SAlex Williamson * the provided string. The string should match a device listed in 178883f0b85SAlex Williamson * the devices subdirectory of the IOMMU group sysfs entry. The 179883f0b85SAlex Williamson * group containing the device must already be added to this context. 180883f0b85SAlex Williamson * Return: new file descriptor on success, -errno on failure. 181883f0b85SAlex Williamson * Availability: When attached to container 182883f0b85SAlex Williamson */ 183883f0b85SAlex Williamson #define VFIO_GROUP_GET_DEVICE_FD _IO(VFIO_TYPE, VFIO_BASE + 6) 184883f0b85SAlex Williamson 185883f0b85SAlex Williamson /* --------------- IOCTLs for DEVICE file descriptors --------------- */ 186883f0b85SAlex Williamson 187883f0b85SAlex Williamson /** 188883f0b85SAlex Williamson * VFIO_DEVICE_GET_INFO - _IOR(VFIO_TYPE, VFIO_BASE + 7, 189883f0b85SAlex Williamson * struct vfio_device_info) 190883f0b85SAlex Williamson * 191883f0b85SAlex Williamson * Retrieve information about the device. Fills in provided 192883f0b85SAlex Williamson * struct vfio_device_info. Caller sets argsz. 193883f0b85SAlex Williamson * Return: 0 on success, -errno on failure. 194883f0b85SAlex Williamson */ 195883f0b85SAlex Williamson struct vfio_device_info { 196883f0b85SAlex Williamson __u32 argsz; 197883f0b85SAlex Williamson __u32 flags; 198883f0b85SAlex Williamson #define VFIO_DEVICE_FLAGS_RESET (1 << 0) /* Device supports reset */ 199883f0b85SAlex Williamson #define VFIO_DEVICE_FLAGS_PCI (1 << 1) /* vfio-pci device */ 2007a52ce8aSCornelia Huck #define VFIO_DEVICE_FLAGS_PLATFORM (1 << 2) /* vfio-platform device */ 2017a52ce8aSCornelia Huck #define VFIO_DEVICE_FLAGS_AMBA (1 << 3) /* vfio-amba device */ 20274c98e20SCornelia Huck #define VFIO_DEVICE_FLAGS_CCW (1 << 4) /* vfio-ccw device */ 2038f3cd250SCornelia Huck #define VFIO_DEVICE_FLAGS_AP (1 << 5) /* vfio-ap device */ 20453ba2eeeSMatthew Rosato #define VFIO_DEVICE_FLAGS_FSL_MC (1 << 6) /* vfio-fsl-mc device */ 20553ba2eeeSMatthew Rosato #define VFIO_DEVICE_FLAGS_CAPS (1 << 7) /* Info supports caps */ 206883f0b85SAlex Williamson __u32 num_regions; /* Max region index + 1 */ 207883f0b85SAlex Williamson __u32 num_irqs; /* Max IRQ index + 1 */ 20853ba2eeeSMatthew Rosato __u32 cap_offset; /* Offset within info struct of first cap */ 209883f0b85SAlex Williamson }; 210883f0b85SAlex Williamson #define VFIO_DEVICE_GET_INFO _IO(VFIO_TYPE, VFIO_BASE + 7) 211883f0b85SAlex Williamson 2123a5eb5b4SPaolo Bonzini /* 2133a5eb5b4SPaolo Bonzini * Vendor driver using Mediated device framework should provide device_api 2143a5eb5b4SPaolo Bonzini * attribute in supported type attribute groups. Device API string should be one 2153a5eb5b4SPaolo Bonzini * of the following corresponding to device flags in vfio_device_info structure. 2163a5eb5b4SPaolo Bonzini */ 2173a5eb5b4SPaolo Bonzini 2183a5eb5b4SPaolo Bonzini #define VFIO_DEVICE_API_PCI_STRING "vfio-pci" 2193a5eb5b4SPaolo Bonzini #define VFIO_DEVICE_API_PLATFORM_STRING "vfio-platform" 2203a5eb5b4SPaolo Bonzini #define VFIO_DEVICE_API_AMBA_STRING "vfio-amba" 22174c98e20SCornelia Huck #define VFIO_DEVICE_API_CCW_STRING "vfio-ccw" 2228f3cd250SCornelia Huck #define VFIO_DEVICE_API_AP_STRING "vfio-ap" 2233a5eb5b4SPaolo Bonzini 22453ba2eeeSMatthew Rosato /* 22553ba2eeeSMatthew Rosato * The following capabilities are unique to s390 zPCI devices. Their contents 22653ba2eeeSMatthew Rosato * are further-defined in vfio_zdev.h 22753ba2eeeSMatthew Rosato */ 22853ba2eeeSMatthew Rosato #define VFIO_DEVICE_INFO_CAP_ZPCI_BASE 1 22953ba2eeeSMatthew Rosato #define VFIO_DEVICE_INFO_CAP_ZPCI_GROUP 2 23053ba2eeeSMatthew Rosato #define VFIO_DEVICE_INFO_CAP_ZPCI_UTIL 3 23153ba2eeeSMatthew Rosato #define VFIO_DEVICE_INFO_CAP_ZPCI_PFIP 4 23253ba2eeeSMatthew Rosato 233883f0b85SAlex Williamson /** 234883f0b85SAlex Williamson * VFIO_DEVICE_GET_REGION_INFO - _IOWR(VFIO_TYPE, VFIO_BASE + 8, 235883f0b85SAlex Williamson * struct vfio_region_info) 236883f0b85SAlex Williamson * 237883f0b85SAlex Williamson * Retrieve information about a device region. Caller provides 238883f0b85SAlex Williamson * struct vfio_region_info with index value set. Caller sets argsz. 239883f0b85SAlex Williamson * Implementation of region mapping is bus driver specific. This is 240883f0b85SAlex Williamson * intended to describe MMIO, I/O port, as well as bus specific 241883f0b85SAlex Williamson * regions (ex. PCI config space). Zero sized regions may be used 242883f0b85SAlex Williamson * to describe unimplemented regions (ex. unimplemented PCI BARs). 243883f0b85SAlex Williamson * Return: 0 on success, -errno on failure. 244883f0b85SAlex Williamson */ 245883f0b85SAlex Williamson struct vfio_region_info { 246883f0b85SAlex Williamson __u32 argsz; 247883f0b85SAlex Williamson __u32 flags; 248883f0b85SAlex Williamson #define VFIO_REGION_INFO_FLAG_READ (1 << 0) /* Region supports read */ 249883f0b85SAlex Williamson #define VFIO_REGION_INFO_FLAG_WRITE (1 << 1) /* Region supports write */ 250883f0b85SAlex Williamson #define VFIO_REGION_INFO_FLAG_MMAP (1 << 2) /* Region supports mmap */ 251b89485a5SPaolo Bonzini #define VFIO_REGION_INFO_FLAG_CAPS (1 << 3) /* Info supports caps */ 252883f0b85SAlex Williamson __u32 index; /* Region index */ 253b89485a5SPaolo Bonzini __u32 cap_offset; /* Offset within info struct of first cap */ 254883f0b85SAlex Williamson __u64 size; /* Region size (bytes) */ 255883f0b85SAlex Williamson __u64 offset; /* Region offset from start of device fd */ 256883f0b85SAlex Williamson }; 257883f0b85SAlex Williamson #define VFIO_DEVICE_GET_REGION_INFO _IO(VFIO_TYPE, VFIO_BASE + 8) 258883f0b85SAlex Williamson 259b89485a5SPaolo Bonzini /* 260b89485a5SPaolo Bonzini * The sparse mmap capability allows finer granularity of specifying areas 261b89485a5SPaolo Bonzini * within a region with mmap support. When specified, the user should only 262b89485a5SPaolo Bonzini * mmap the offset ranges specified by the areas array. mmaps outside of the 263b89485a5SPaolo Bonzini * areas specified may fail (such as the range covering a PCI MSI-X table) or 264b89485a5SPaolo Bonzini * may result in improper device behavior. 265b89485a5SPaolo Bonzini * 266b89485a5SPaolo Bonzini * The structures below define version 1 of this capability. 267b89485a5SPaolo Bonzini */ 268b89485a5SPaolo Bonzini #define VFIO_REGION_INFO_CAP_SPARSE_MMAP 1 269b89485a5SPaolo Bonzini 270b89485a5SPaolo Bonzini struct vfio_region_sparse_mmap_area { 271b89485a5SPaolo Bonzini __u64 offset; /* Offset of mmap'able area within region */ 272b89485a5SPaolo Bonzini __u64 size; /* Size of mmap'able area */ 273b89485a5SPaolo Bonzini }; 274b89485a5SPaolo Bonzini 275b89485a5SPaolo Bonzini struct vfio_region_info_cap_sparse_mmap { 276b89485a5SPaolo Bonzini struct vfio_info_cap_header header; 277b89485a5SPaolo Bonzini __u32 nr_areas; 278b89485a5SPaolo Bonzini __u32 reserved; 279b89485a5SPaolo Bonzini struct vfio_region_sparse_mmap_area areas[]; 280b89485a5SPaolo Bonzini }; 281b89485a5SPaolo Bonzini 282b89485a5SPaolo Bonzini /* 283b89485a5SPaolo Bonzini * The device specific type capability allows regions unique to a specific 284b89485a5SPaolo Bonzini * device or class of devices to be exposed. This helps solve the problem for 285b89485a5SPaolo Bonzini * vfio bus drivers of defining which region indexes correspond to which region 286b89485a5SPaolo Bonzini * on the device, without needing to resort to static indexes, as done by 287b89485a5SPaolo Bonzini * vfio-pci. For instance, if we were to go back in time, we might remove 288b89485a5SPaolo Bonzini * VFIO_PCI_VGA_REGION_INDEX and let vfio-pci simply define that all indexes 289b89485a5SPaolo Bonzini * greater than or equal to VFIO_PCI_NUM_REGIONS are device specific and we'd 290b89485a5SPaolo Bonzini * make a "VGA" device specific type to describe the VGA access space. This 291b89485a5SPaolo Bonzini * means that non-VGA devices wouldn't need to waste this index, and thus the 292b89485a5SPaolo Bonzini * address space associated with it due to implementation of device file 293b89485a5SPaolo Bonzini * descriptor offsets in vfio-pci. 294b89485a5SPaolo Bonzini * 295b89485a5SPaolo Bonzini * The current implementation is now part of the user ABI, so we can't use this 296b89485a5SPaolo Bonzini * for VGA, but there are other upcoming use cases, such as opregions for Intel 297b89485a5SPaolo Bonzini * IGD devices and framebuffers for vGPU devices. We missed VGA, but we'll 298b89485a5SPaolo Bonzini * use this for future additions. 299b89485a5SPaolo Bonzini * 300b89485a5SPaolo Bonzini * The structure below defines version 1 of this capability. 301b89485a5SPaolo Bonzini */ 302b89485a5SPaolo Bonzini #define VFIO_REGION_INFO_CAP_TYPE 2 303b89485a5SPaolo Bonzini 304b89485a5SPaolo Bonzini struct vfio_region_info_cap_type { 305b89485a5SPaolo Bonzini struct vfio_info_cap_header header; 306b89485a5SPaolo Bonzini __u32 type; /* global per bus driver */ 307b89485a5SPaolo Bonzini __u32 subtype; /* type specific */ 308b89485a5SPaolo Bonzini }; 309b89485a5SPaolo Bonzini 310f363d039SEric Auger /* 311f363d039SEric Auger * List of region types, global per bus driver. 312f363d039SEric Auger * If you introduce a new type, please add it here. 313f363d039SEric Auger */ 314f363d039SEric Auger 315f363d039SEric Auger /* PCI region type containing a PCI vendor part */ 316b89485a5SPaolo Bonzini #define VFIO_REGION_TYPE_PCI_VENDOR_TYPE (1 << 31) 317b89485a5SPaolo Bonzini #define VFIO_REGION_TYPE_PCI_VENDOR_MASK (0xffff) 318f363d039SEric Auger #define VFIO_REGION_TYPE_GFX (1) 319f363d039SEric Auger #define VFIO_REGION_TYPE_CCW (2) 320f76b348eSCornelia Huck #define VFIO_REGION_TYPE_MIGRATION (3) 321b89485a5SPaolo Bonzini 322f363d039SEric Auger /* sub-types for VFIO_REGION_TYPE_PCI_* */ 323f363d039SEric Auger 324f363d039SEric Auger /* 8086 vendor PCI sub-types */ 325b89485a5SPaolo Bonzini #define VFIO_REGION_SUBTYPE_INTEL_IGD_OPREGION (1) 326b89485a5SPaolo Bonzini #define VFIO_REGION_SUBTYPE_INTEL_IGD_HOST_CFG (2) 327b89485a5SPaolo Bonzini #define VFIO_REGION_SUBTYPE_INTEL_IGD_LPC_CFG (3) 328b89485a5SPaolo Bonzini 329f363d039SEric Auger /* 10de vendor PCI sub-types */ 330f363d039SEric Auger /* 331f363d039SEric Auger * NVIDIA GPU NVlink2 RAM is coherent RAM mapped onto the host address space. 332f363d039SEric Auger */ 333f363d039SEric Auger #define VFIO_REGION_SUBTYPE_NVIDIA_NVLINK2_RAM (1) 334f363d039SEric Auger 335f363d039SEric Auger /* 1014 vendor PCI sub-types */ 336f363d039SEric Auger /* 337f363d039SEric Auger * IBM NPU NVlink2 ATSD (Address Translation Shootdown) register of NPU 338f363d039SEric Auger * to do TLB invalidation on a GPU. 339f363d039SEric Auger */ 340f363d039SEric Auger #define VFIO_REGION_SUBTYPE_IBM_NVLINK2_ATSD (1) 341f363d039SEric Auger 342f363d039SEric Auger /* sub-types for VFIO_REGION_TYPE_GFX */ 343da054c64SPaolo Bonzini #define VFIO_REGION_SUBTYPE_GFX_EDID (1) 344da054c64SPaolo Bonzini 345da054c64SPaolo Bonzini /** 346da054c64SPaolo Bonzini * struct vfio_region_gfx_edid - EDID region layout. 347da054c64SPaolo Bonzini * 348da054c64SPaolo Bonzini * Set display link state and EDID blob. 349da054c64SPaolo Bonzini * 350da054c64SPaolo Bonzini * The EDID blob has monitor information such as brand, name, serial 351da054c64SPaolo Bonzini * number, physical size, supported video modes and more. 352da054c64SPaolo Bonzini * 353da054c64SPaolo Bonzini * This special region allows userspace (typically qemu) set a virtual 354da054c64SPaolo Bonzini * EDID for the virtual monitor, which allows a flexible display 355da054c64SPaolo Bonzini * configuration. 356da054c64SPaolo Bonzini * 357da054c64SPaolo Bonzini * For the edid blob spec look here: 358da054c64SPaolo Bonzini * https://en.wikipedia.org/wiki/Extended_Display_Identification_Data 359da054c64SPaolo Bonzini * 360da054c64SPaolo Bonzini * On linux systems you can find the EDID blob in sysfs: 361da054c64SPaolo Bonzini * /sys/class/drm/${card}/${connector}/edid 362da054c64SPaolo Bonzini * 363da054c64SPaolo Bonzini * You can use the edid-decode ulility (comes with xorg-x11-utils) to 364da054c64SPaolo Bonzini * decode the EDID blob. 365da054c64SPaolo Bonzini * 366da054c64SPaolo Bonzini * @edid_offset: location of the edid blob, relative to the 367da054c64SPaolo Bonzini * start of the region (readonly). 368da054c64SPaolo Bonzini * @edid_max_size: max size of the edid blob (readonly). 369da054c64SPaolo Bonzini * @edid_size: actual edid size (read/write). 370da054c64SPaolo Bonzini * @link_state: display link state (read/write). 371da054c64SPaolo Bonzini * VFIO_DEVICE_GFX_LINK_STATE_UP: Monitor is turned on. 372da054c64SPaolo Bonzini * VFIO_DEVICE_GFX_LINK_STATE_DOWN: Monitor is turned off. 373da054c64SPaolo Bonzini * @max_xres: max display width (0 == no limitation, readonly). 374da054c64SPaolo Bonzini * @max_yres: max display height (0 == no limitation, readonly). 375da054c64SPaolo Bonzini * 376da054c64SPaolo Bonzini * EDID update protocol: 377da054c64SPaolo Bonzini * (1) set link-state to down. 378da054c64SPaolo Bonzini * (2) update edid blob and size. 379da054c64SPaolo Bonzini * (3) set link-state to up. 380da054c64SPaolo Bonzini */ 381da054c64SPaolo Bonzini struct vfio_region_gfx_edid { 382da054c64SPaolo Bonzini __u32 edid_offset; 383da054c64SPaolo Bonzini __u32 edid_max_size; 384da054c64SPaolo Bonzini __u32 edid_size; 385da054c64SPaolo Bonzini __u32 max_xres; 386da054c64SPaolo Bonzini __u32 max_yres; 387da054c64SPaolo Bonzini __u32 link_state; 388da054c64SPaolo Bonzini #define VFIO_DEVICE_GFX_LINK_STATE_UP 1 389da054c64SPaolo Bonzini #define VFIO_DEVICE_GFX_LINK_STATE_DOWN 2 390da054c64SPaolo Bonzini }; 391da054c64SPaolo Bonzini 392f363d039SEric Auger /* sub-types for VFIO_REGION_TYPE_CCW */ 393d9cb4336SCornelia Huck #define VFIO_REGION_SUBTYPE_CCW_ASYNC_CMD (1) 394f76b348eSCornelia Huck #define VFIO_REGION_SUBTYPE_CCW_SCHIB (2) 395f76b348eSCornelia Huck #define VFIO_REGION_SUBTYPE_CCW_CRW (3) 396f76b348eSCornelia Huck 397f76b348eSCornelia Huck /* sub-types for VFIO_REGION_TYPE_MIGRATION */ 398f76b348eSCornelia Huck #define VFIO_REGION_SUBTYPE_MIGRATION (1) 399f76b348eSCornelia Huck 400f76b348eSCornelia Huck /* 401f76b348eSCornelia Huck * The structure vfio_device_migration_info is placed at the 0th offset of 402f76b348eSCornelia Huck * the VFIO_REGION_SUBTYPE_MIGRATION region to get and set VFIO device related 403f76b348eSCornelia Huck * migration information. Field accesses from this structure are only supported 404f76b348eSCornelia Huck * at their native width and alignment. Otherwise, the result is undefined and 405f76b348eSCornelia Huck * vendor drivers should return an error. 406f76b348eSCornelia Huck * 407f76b348eSCornelia Huck * device_state: (read/write) 408f76b348eSCornelia Huck * - The user application writes to this field to inform the vendor driver 409f76b348eSCornelia Huck * about the device state to be transitioned to. 410f76b348eSCornelia Huck * - The vendor driver should take the necessary actions to change the 411f76b348eSCornelia Huck * device state. After successful transition to a given state, the 412f76b348eSCornelia Huck * vendor driver should return success on write(device_state, state) 413f76b348eSCornelia Huck * system call. If the device state transition fails, the vendor driver 414f76b348eSCornelia Huck * should return an appropriate -errno for the fault condition. 415f76b348eSCornelia Huck * - On the user application side, if the device state transition fails, 416f76b348eSCornelia Huck * that is, if write(device_state, state) returns an error, read 417f76b348eSCornelia Huck * device_state again to determine the current state of the device from 418f76b348eSCornelia Huck * the vendor driver. 419f76b348eSCornelia Huck * - The vendor driver should return previous state of the device unless 420f76b348eSCornelia Huck * the vendor driver has encountered an internal error, in which case 421f76b348eSCornelia Huck * the vendor driver may report the device_state VFIO_DEVICE_STATE_ERROR. 422f76b348eSCornelia Huck * - The user application must use the device reset ioctl to recover the 423f76b348eSCornelia Huck * device from VFIO_DEVICE_STATE_ERROR state. If the device is 424f76b348eSCornelia Huck * indicated to be in a valid device state by reading device_state, the 425f76b348eSCornelia Huck * user application may attempt to transition the device to any valid 426f76b348eSCornelia Huck * state reachable from the current state or terminate itself. 427f76b348eSCornelia Huck * 428f76b348eSCornelia Huck * device_state consists of 3 bits: 429f76b348eSCornelia Huck * - If bit 0 is set, it indicates the _RUNNING state. If bit 0 is clear, 430f76b348eSCornelia Huck * it indicates the _STOP state. When the device state is changed to 431f76b348eSCornelia Huck * _STOP, driver should stop the device before write() returns. 432f76b348eSCornelia Huck * - If bit 1 is set, it indicates the _SAVING state, which means that the 433f76b348eSCornelia Huck * driver should start gathering device state information that will be 434f76b348eSCornelia Huck * provided to the VFIO user application to save the device's state. 435f76b348eSCornelia Huck * - If bit 2 is set, it indicates the _RESUMING state, which means that 436f76b348eSCornelia Huck * the driver should prepare to resume the device. Data provided through 437f76b348eSCornelia Huck * the migration region should be used to resume the device. 438f76b348eSCornelia Huck * Bits 3 - 31 are reserved for future use. To preserve them, the user 439f76b348eSCornelia Huck * application should perform a read-modify-write operation on this 440f76b348eSCornelia Huck * field when modifying the specified bits. 441f76b348eSCornelia Huck * 442f76b348eSCornelia Huck * +------- _RESUMING 443f76b348eSCornelia Huck * |+------ _SAVING 444f76b348eSCornelia Huck * ||+----- _RUNNING 445f76b348eSCornelia Huck * ||| 446f76b348eSCornelia Huck * 000b => Device Stopped, not saving or resuming 447f76b348eSCornelia Huck * 001b => Device running, which is the default state 448f76b348eSCornelia Huck * 010b => Stop the device & save the device state, stop-and-copy state 449f76b348eSCornelia Huck * 011b => Device running and save the device state, pre-copy state 450f76b348eSCornelia Huck * 100b => Device stopped and the device state is resuming 451f76b348eSCornelia Huck * 101b => Invalid state 452f76b348eSCornelia Huck * 110b => Error state 453f76b348eSCornelia Huck * 111b => Invalid state 454f76b348eSCornelia Huck * 455f76b348eSCornelia Huck * State transitions: 456f76b348eSCornelia Huck * 457f76b348eSCornelia Huck * _RESUMING _RUNNING Pre-copy Stop-and-copy _STOP 458f76b348eSCornelia Huck * (100b) (001b) (011b) (010b) (000b) 459f76b348eSCornelia Huck * 0. Running or default state 460f76b348eSCornelia Huck * | 461f76b348eSCornelia Huck * 462f76b348eSCornelia Huck * 1. Normal Shutdown (optional) 463f76b348eSCornelia Huck * |------------------------------------->| 464f76b348eSCornelia Huck * 465f76b348eSCornelia Huck * 2. Save the state or suspend 466f76b348eSCornelia Huck * |------------------------->|---------->| 467f76b348eSCornelia Huck * 468f76b348eSCornelia Huck * 3. Save the state during live migration 469f76b348eSCornelia Huck * |----------->|------------>|---------->| 470f76b348eSCornelia Huck * 471f76b348eSCornelia Huck * 4. Resuming 472f76b348eSCornelia Huck * |<---------| 473f76b348eSCornelia Huck * 474f76b348eSCornelia Huck * 5. Resumed 475f76b348eSCornelia Huck * |--------->| 476f76b348eSCornelia Huck * 47753ba2eeeSMatthew Rosato * 0. Default state of VFIO device is _RUNNING when the user application starts. 478f76b348eSCornelia Huck * 1. During normal shutdown of the user application, the user application may 479f76b348eSCornelia Huck * optionally change the VFIO device state from _RUNNING to _STOP. This 480f76b348eSCornelia Huck * transition is optional. The vendor driver must support this transition but 481f76b348eSCornelia Huck * must not require it. 482f76b348eSCornelia Huck * 2. When the user application saves state or suspends the application, the 483f76b348eSCornelia Huck * device state transitions from _RUNNING to stop-and-copy and then to _STOP. 484f76b348eSCornelia Huck * On state transition from _RUNNING to stop-and-copy, driver must stop the 485f76b348eSCornelia Huck * device, save the device state and send it to the application through the 486f76b348eSCornelia Huck * migration region. The sequence to be followed for such transition is given 487f76b348eSCornelia Huck * below. 488f76b348eSCornelia Huck * 3. In live migration of user application, the state transitions from _RUNNING 489f76b348eSCornelia Huck * to pre-copy, to stop-and-copy, and to _STOP. 490f76b348eSCornelia Huck * On state transition from _RUNNING to pre-copy, the driver should start 491f76b348eSCornelia Huck * gathering the device state while the application is still running and send 492f76b348eSCornelia Huck * the device state data to application through the migration region. 493f76b348eSCornelia Huck * On state transition from pre-copy to stop-and-copy, the driver must stop 494f76b348eSCornelia Huck * the device, save the device state and send it to the user application 495f76b348eSCornelia Huck * through the migration region. 496f76b348eSCornelia Huck * Vendor drivers must support the pre-copy state even for implementations 497f76b348eSCornelia Huck * where no data is provided to the user before the stop-and-copy state. The 498f76b348eSCornelia Huck * user must not be required to consume all migration data before the device 499f76b348eSCornelia Huck * transitions to a new state, including the stop-and-copy state. 500f76b348eSCornelia Huck * The sequence to be followed for above two transitions is given below. 501f76b348eSCornelia Huck * 4. To start the resuming phase, the device state should be transitioned from 502f76b348eSCornelia Huck * the _RUNNING to the _RESUMING state. 503f76b348eSCornelia Huck * In the _RESUMING state, the driver should use the device state data 504f76b348eSCornelia Huck * received through the migration region to resume the device. 505f76b348eSCornelia Huck * 5. After providing saved device data to the driver, the application should 506f76b348eSCornelia Huck * change the state from _RESUMING to _RUNNING. 507f76b348eSCornelia Huck * 508f76b348eSCornelia Huck * reserved: 509f76b348eSCornelia Huck * Reads on this field return zero and writes are ignored. 510f76b348eSCornelia Huck * 511f76b348eSCornelia Huck * pending_bytes: (read only) 512f76b348eSCornelia Huck * The number of pending bytes still to be migrated from the vendor driver. 513f76b348eSCornelia Huck * 514f76b348eSCornelia Huck * data_offset: (read only) 515f76b348eSCornelia Huck * The user application should read data_offset field from the migration 516f76b348eSCornelia Huck * region. The user application should read the device data from this 517f76b348eSCornelia Huck * offset within the migration region during the _SAVING state or write 518f76b348eSCornelia Huck * the device data during the _RESUMING state. See below for details of 519f76b348eSCornelia Huck * sequence to be followed. 520f76b348eSCornelia Huck * 521f76b348eSCornelia Huck * data_size: (read/write) 522f76b348eSCornelia Huck * The user application should read data_size to get the size in bytes of 523f76b348eSCornelia Huck * the data copied in the migration region during the _SAVING state and 524f76b348eSCornelia Huck * write the size in bytes of the data copied in the migration region 525f76b348eSCornelia Huck * during the _RESUMING state. 526f76b348eSCornelia Huck * 527f76b348eSCornelia Huck * The format of the migration region is as follows: 528f76b348eSCornelia Huck * ------------------------------------------------------------------ 529f76b348eSCornelia Huck * |vfio_device_migration_info| data section | 530f76b348eSCornelia Huck * | | /////////////////////////////// | 531f76b348eSCornelia Huck * ------------------------------------------------------------------ 532f76b348eSCornelia Huck * ^ ^ 533f76b348eSCornelia Huck * offset 0-trapped part data_offset 534f76b348eSCornelia Huck * 535f76b348eSCornelia Huck * The structure vfio_device_migration_info is always followed by the data 536f76b348eSCornelia Huck * section in the region, so data_offset will always be nonzero. The offset 537f76b348eSCornelia Huck * from where the data is copied is decided by the kernel driver. The data 538f76b348eSCornelia Huck * section can be trapped, mmapped, or partitioned, depending on how the kernel 539f76b348eSCornelia Huck * driver defines the data section. The data section partition can be defined 540f76b348eSCornelia Huck * as mapped by the sparse mmap capability. If mmapped, data_offset must be 541f76b348eSCornelia Huck * page aligned, whereas initial section which contains the 542f76b348eSCornelia Huck * vfio_device_migration_info structure, might not end at the offset, which is 543f76b348eSCornelia Huck * page aligned. The user is not required to access through mmap regardless 544f76b348eSCornelia Huck * of the capabilities of the region mmap. 545f76b348eSCornelia Huck * The vendor driver should determine whether and how to partition the data 546f76b348eSCornelia Huck * section. The vendor driver should return data_offset accordingly. 547f76b348eSCornelia Huck * 548f76b348eSCornelia Huck * The sequence to be followed while in pre-copy state and stop-and-copy state 549f76b348eSCornelia Huck * is as follows: 550f76b348eSCornelia Huck * a. Read pending_bytes, indicating the start of a new iteration to get device 551f76b348eSCornelia Huck * data. Repeated read on pending_bytes at this stage should have no side 552f76b348eSCornelia Huck * effects. 553f76b348eSCornelia Huck * If pending_bytes == 0, the user application should not iterate to get data 554f76b348eSCornelia Huck * for that device. 555f76b348eSCornelia Huck * If pending_bytes > 0, perform the following steps. 556f76b348eSCornelia Huck * b. Read data_offset, indicating that the vendor driver should make data 557f76b348eSCornelia Huck * available through the data section. The vendor driver should return this 558f76b348eSCornelia Huck * read operation only after data is available from (region + data_offset) 559f76b348eSCornelia Huck * to (region + data_offset + data_size). 560f76b348eSCornelia Huck * c. Read data_size, which is the amount of data in bytes available through 561f76b348eSCornelia Huck * the migration region. 562f76b348eSCornelia Huck * Read on data_offset and data_size should return the offset and size of 563f76b348eSCornelia Huck * the current buffer if the user application reads data_offset and 564f76b348eSCornelia Huck * data_size more than once here. 565f76b348eSCornelia Huck * d. Read data_size bytes of data from (region + data_offset) from the 566f76b348eSCornelia Huck * migration region. 567f76b348eSCornelia Huck * e. Process the data. 568f76b348eSCornelia Huck * f. Read pending_bytes, which indicates that the data from the previous 569f76b348eSCornelia Huck * iteration has been read. If pending_bytes > 0, go to step b. 570f76b348eSCornelia Huck * 571f76b348eSCornelia Huck * The user application can transition from the _SAVING|_RUNNING 572f76b348eSCornelia Huck * (pre-copy state) to the _SAVING (stop-and-copy) state regardless of the 573f76b348eSCornelia Huck * number of pending bytes. The user application should iterate in _SAVING 574f76b348eSCornelia Huck * (stop-and-copy) until pending_bytes is 0. 575f76b348eSCornelia Huck * 576f76b348eSCornelia Huck * The sequence to be followed while _RESUMING device state is as follows: 577f76b348eSCornelia Huck * While data for this device is available, repeat the following steps: 578f76b348eSCornelia Huck * a. Read data_offset from where the user application should write data. 579f76b348eSCornelia Huck * b. Write migration data starting at the migration region + data_offset for 580f76b348eSCornelia Huck * the length determined by data_size from the migration source. 581f76b348eSCornelia Huck * c. Write data_size, which indicates to the vendor driver that data is 582f76b348eSCornelia Huck * written in the migration region. Vendor driver must return this write 583f76b348eSCornelia Huck * operations on consuming data. Vendor driver should apply the 584f76b348eSCornelia Huck * user-provided migration region data to the device resume state. 585f76b348eSCornelia Huck * 586f76b348eSCornelia Huck * If an error occurs during the above sequences, the vendor driver can return 587f76b348eSCornelia Huck * an error code for next read() or write() operation, which will terminate the 588f76b348eSCornelia Huck * loop. The user application should then take the next necessary action, for 589f76b348eSCornelia Huck * example, failing migration or terminating the user application. 590f76b348eSCornelia Huck * 591f76b348eSCornelia Huck * For the user application, data is opaque. The user application should write 592f76b348eSCornelia Huck * data in the same order as the data is received and the data should be of 593f76b348eSCornelia Huck * same transaction size at the source. 594f76b348eSCornelia Huck */ 595f76b348eSCornelia Huck 596f76b348eSCornelia Huck struct vfio_device_migration_info { 597f76b348eSCornelia Huck __u32 device_state; /* VFIO device state */ 598f76b348eSCornelia Huck #define VFIO_DEVICE_STATE_STOP (0) 599f76b348eSCornelia Huck #define VFIO_DEVICE_STATE_RUNNING (1 << 0) 600f76b348eSCornelia Huck #define VFIO_DEVICE_STATE_SAVING (1 << 1) 601f76b348eSCornelia Huck #define VFIO_DEVICE_STATE_RESUMING (1 << 2) 602f76b348eSCornelia Huck #define VFIO_DEVICE_STATE_MASK (VFIO_DEVICE_STATE_RUNNING | \ 603f76b348eSCornelia Huck VFIO_DEVICE_STATE_SAVING | \ 604f76b348eSCornelia Huck VFIO_DEVICE_STATE_RESUMING) 605f76b348eSCornelia Huck 606f76b348eSCornelia Huck #define VFIO_DEVICE_STATE_VALID(state) \ 607f76b348eSCornelia Huck (state & VFIO_DEVICE_STATE_RESUMING ? \ 608f76b348eSCornelia Huck (state & VFIO_DEVICE_STATE_MASK) == VFIO_DEVICE_STATE_RESUMING : 1) 609f76b348eSCornelia Huck 610f76b348eSCornelia Huck #define VFIO_DEVICE_STATE_IS_ERROR(state) \ 611f76b348eSCornelia Huck ((state & VFIO_DEVICE_STATE_MASK) == (VFIO_DEVICE_STATE_SAVING | \ 612f76b348eSCornelia Huck VFIO_DEVICE_STATE_RESUMING)) 613f76b348eSCornelia Huck 614f76b348eSCornelia Huck #define VFIO_DEVICE_STATE_SET_ERROR(state) \ 615f76b348eSCornelia Huck ((state & ~VFIO_DEVICE_STATE_MASK) | VFIO_DEVICE_SATE_SAVING | \ 616f76b348eSCornelia Huck VFIO_DEVICE_STATE_RESUMING) 617f76b348eSCornelia Huck 618f76b348eSCornelia Huck __u32 reserved; 619f76b348eSCornelia Huck __u64 pending_bytes; 620f76b348eSCornelia Huck __u64 data_offset; 621f76b348eSCornelia Huck __u64 data_size; 622f76b348eSCornelia Huck }; 623d9cb4336SCornelia Huck 624da054c64SPaolo Bonzini /* 6259f2d175dSPaolo Bonzini * The MSIX mappable capability informs that MSIX data of a BAR can be mmapped 6269f2d175dSPaolo Bonzini * which allows direct access to non-MSIX registers which happened to be within 6279f2d175dSPaolo Bonzini * the same system page. 6289f2d175dSPaolo Bonzini * 6299f2d175dSPaolo Bonzini * Even though the userspace gets direct access to the MSIX data, the existing 6309f2d175dSPaolo Bonzini * VFIO_DEVICE_SET_IRQS interface must still be used for MSIX configuration. 6319f2d175dSPaolo Bonzini */ 6329f2d175dSPaolo Bonzini #define VFIO_REGION_INFO_CAP_MSIX_MAPPABLE 3 6339f2d175dSPaolo Bonzini 634da054c64SPaolo Bonzini /* 635da054c64SPaolo Bonzini * Capability with compressed real address (aka SSA - small system address) 636da054c64SPaolo Bonzini * where GPU RAM is mapped on a system bus. Used by a GPU for DMA routing 637da054c64SPaolo Bonzini * and by the userspace to associate a NVLink bridge with a GPU. 638da054c64SPaolo Bonzini */ 639da054c64SPaolo Bonzini #define VFIO_REGION_INFO_CAP_NVLINK2_SSATGT 4 640da054c64SPaolo Bonzini 641da054c64SPaolo Bonzini struct vfio_region_info_cap_nvlink2_ssatgt { 642da054c64SPaolo Bonzini struct vfio_info_cap_header header; 643da054c64SPaolo Bonzini __u64 tgt; 644da054c64SPaolo Bonzini }; 645da054c64SPaolo Bonzini 646da054c64SPaolo Bonzini /* 647da054c64SPaolo Bonzini * Capability with an NVLink link speed. The value is read by 648da054c64SPaolo Bonzini * the NVlink2 bridge driver from the bridge's "ibm,nvlink-speed" 649da054c64SPaolo Bonzini * property in the device tree. The value is fixed in the hardware 650da054c64SPaolo Bonzini * and failing to provide the correct value results in the link 651da054c64SPaolo Bonzini * not working with no indication from the driver why. 652da054c64SPaolo Bonzini */ 653da054c64SPaolo Bonzini #define VFIO_REGION_INFO_CAP_NVLINK2_LNKSPD 5 654da054c64SPaolo Bonzini 655da054c64SPaolo Bonzini struct vfio_region_info_cap_nvlink2_lnkspd { 656da054c64SPaolo Bonzini struct vfio_info_cap_header header; 657da054c64SPaolo Bonzini __u32 link_speed; 658da054c64SPaolo Bonzini __u32 __pad; 659da054c64SPaolo Bonzini }; 660da054c64SPaolo Bonzini 661883f0b85SAlex Williamson /** 662883f0b85SAlex Williamson * VFIO_DEVICE_GET_IRQ_INFO - _IOWR(VFIO_TYPE, VFIO_BASE + 9, 663883f0b85SAlex Williamson * struct vfio_irq_info) 664883f0b85SAlex Williamson * 665883f0b85SAlex Williamson * Retrieve information about a device IRQ. Caller provides 666883f0b85SAlex Williamson * struct vfio_irq_info with index value set. Caller sets argsz. 667883f0b85SAlex Williamson * Implementation of IRQ mapping is bus driver specific. Indexes 668883f0b85SAlex Williamson * using multiple IRQs are primarily intended to support MSI-like 669883f0b85SAlex Williamson * interrupt blocks. Zero count irq blocks may be used to describe 670883f0b85SAlex Williamson * unimplemented interrupt types. 671883f0b85SAlex Williamson * 672883f0b85SAlex Williamson * The EVENTFD flag indicates the interrupt index supports eventfd based 673883f0b85SAlex Williamson * signaling. 674883f0b85SAlex Williamson * 675883f0b85SAlex Williamson * The MASKABLE flags indicates the index supports MASK and UNMASK 676883f0b85SAlex Williamson * actions described below. 677883f0b85SAlex Williamson * 678883f0b85SAlex Williamson * AUTOMASKED indicates that after signaling, the interrupt line is 679883f0b85SAlex Williamson * automatically masked by VFIO and the user needs to unmask the line 680883f0b85SAlex Williamson * to receive new interrupts. This is primarily intended to distinguish 681883f0b85SAlex Williamson * level triggered interrupts. 682883f0b85SAlex Williamson * 683883f0b85SAlex Williamson * The NORESIZE flag indicates that the interrupt lines within the index 684883f0b85SAlex Williamson * are setup as a set and new subindexes cannot be enabled without first 685883f0b85SAlex Williamson * disabling the entire index. This is used for interrupts like PCI MSI 686883f0b85SAlex Williamson * and MSI-X where the driver may only use a subset of the available 687883f0b85SAlex Williamson * indexes, but VFIO needs to enable a specific number of vectors 688883f0b85SAlex Williamson * upfront. In the case of MSI-X, where the user can enable MSI-X and 689883f0b85SAlex Williamson * then add and unmask vectors, it's up to userspace to make the decision 690883f0b85SAlex Williamson * whether to allocate the maximum supported number of vectors or tear 691883f0b85SAlex Williamson * down setup and incrementally increase the vectors as each is enabled. 692883f0b85SAlex Williamson */ 693883f0b85SAlex Williamson struct vfio_irq_info { 694883f0b85SAlex Williamson __u32 argsz; 695883f0b85SAlex Williamson __u32 flags; 696883f0b85SAlex Williamson #define VFIO_IRQ_INFO_EVENTFD (1 << 0) 697883f0b85SAlex Williamson #define VFIO_IRQ_INFO_MASKABLE (1 << 1) 698883f0b85SAlex Williamson #define VFIO_IRQ_INFO_AUTOMASKED (1 << 2) 699883f0b85SAlex Williamson #define VFIO_IRQ_INFO_NORESIZE (1 << 3) 700883f0b85SAlex Williamson __u32 index; /* IRQ index */ 701883f0b85SAlex Williamson __u32 count; /* Number of IRQs within this index */ 702883f0b85SAlex Williamson }; 703883f0b85SAlex Williamson #define VFIO_DEVICE_GET_IRQ_INFO _IO(VFIO_TYPE, VFIO_BASE + 9) 704883f0b85SAlex Williamson 705883f0b85SAlex Williamson /** 706883f0b85SAlex Williamson * VFIO_DEVICE_SET_IRQS - _IOW(VFIO_TYPE, VFIO_BASE + 10, struct vfio_irq_set) 707883f0b85SAlex Williamson * 708883f0b85SAlex Williamson * Set signaling, masking, and unmasking of interrupts. Caller provides 709883f0b85SAlex Williamson * struct vfio_irq_set with all fields set. 'start' and 'count' indicate 710883f0b85SAlex Williamson * the range of subindexes being specified. 711883f0b85SAlex Williamson * 712883f0b85SAlex Williamson * The DATA flags specify the type of data provided. If DATA_NONE, the 713883f0b85SAlex Williamson * operation performs the specified action immediately on the specified 714883f0b85SAlex Williamson * interrupt(s). For example, to unmask AUTOMASKED interrupt [0,0]: 715883f0b85SAlex Williamson * flags = (DATA_NONE|ACTION_UNMASK), index = 0, start = 0, count = 1. 716883f0b85SAlex Williamson * 717883f0b85SAlex Williamson * DATA_BOOL allows sparse support for the same on arrays of interrupts. 718883f0b85SAlex Williamson * For example, to mask interrupts [0,1] and [0,3] (but not [0,2]): 719883f0b85SAlex Williamson * flags = (DATA_BOOL|ACTION_MASK), index = 0, start = 1, count = 3, 720883f0b85SAlex Williamson * data = {1,0,1} 721883f0b85SAlex Williamson * 722883f0b85SAlex Williamson * DATA_EVENTFD binds the specified ACTION to the provided __s32 eventfd. 723883f0b85SAlex Williamson * A value of -1 can be used to either de-assign interrupts if already 724883f0b85SAlex Williamson * assigned or skip un-assigned interrupts. For example, to set an eventfd 725883f0b85SAlex Williamson * to be trigger for interrupts [0,0] and [0,2]: 726883f0b85SAlex Williamson * flags = (DATA_EVENTFD|ACTION_TRIGGER), index = 0, start = 0, count = 3, 727883f0b85SAlex Williamson * data = {fd1, -1, fd2} 728883f0b85SAlex Williamson * If index [0,1] is previously set, two count = 1 ioctls calls would be 729883f0b85SAlex Williamson * required to set [0,0] and [0,2] without changing [0,1]. 730883f0b85SAlex Williamson * 731883f0b85SAlex Williamson * Once a signaling mechanism is set, DATA_BOOL or DATA_NONE can be used 732883f0b85SAlex Williamson * with ACTION_TRIGGER to perform kernel level interrupt loopback testing 733883f0b85SAlex Williamson * from userspace (ie. simulate hardware triggering). 734883f0b85SAlex Williamson * 735883f0b85SAlex Williamson * Setting of an event triggering mechanism to userspace for ACTION_TRIGGER 736883f0b85SAlex Williamson * enables the interrupt index for the device. Individual subindex interrupts 737883f0b85SAlex Williamson * can be disabled using the -1 value for DATA_EVENTFD or the index can be 738883f0b85SAlex Williamson * disabled as a whole with: flags = (DATA_NONE|ACTION_TRIGGER), count = 0. 739883f0b85SAlex Williamson * 740883f0b85SAlex Williamson * Note that ACTION_[UN]MASK specify user->kernel signaling (irqfds) while 741883f0b85SAlex Williamson * ACTION_TRIGGER specifies kernel->user signaling. 742883f0b85SAlex Williamson */ 743883f0b85SAlex Williamson struct vfio_irq_set { 744883f0b85SAlex Williamson __u32 argsz; 745883f0b85SAlex Williamson __u32 flags; 746883f0b85SAlex Williamson #define VFIO_IRQ_SET_DATA_NONE (1 << 0) /* Data not present */ 747883f0b85SAlex Williamson #define VFIO_IRQ_SET_DATA_BOOL (1 << 1) /* Data is bool (u8) */ 748883f0b85SAlex Williamson #define VFIO_IRQ_SET_DATA_EVENTFD (1 << 2) /* Data is eventfd (s32) */ 749883f0b85SAlex Williamson #define VFIO_IRQ_SET_ACTION_MASK (1 << 3) /* Mask interrupt */ 750883f0b85SAlex Williamson #define VFIO_IRQ_SET_ACTION_UNMASK (1 << 4) /* Unmask interrupt */ 751883f0b85SAlex Williamson #define VFIO_IRQ_SET_ACTION_TRIGGER (1 << 5) /* Trigger interrupt */ 752883f0b85SAlex Williamson __u32 index; 753883f0b85SAlex Williamson __u32 start; 754883f0b85SAlex Williamson __u32 count; 755883f0b85SAlex Williamson __u8 data[]; 756883f0b85SAlex Williamson }; 757883f0b85SAlex Williamson #define VFIO_DEVICE_SET_IRQS _IO(VFIO_TYPE, VFIO_BASE + 10) 758883f0b85SAlex Williamson 759883f0b85SAlex Williamson #define VFIO_IRQ_SET_DATA_TYPE_MASK (VFIO_IRQ_SET_DATA_NONE | \ 760883f0b85SAlex Williamson VFIO_IRQ_SET_DATA_BOOL | \ 761883f0b85SAlex Williamson VFIO_IRQ_SET_DATA_EVENTFD) 762883f0b85SAlex Williamson #define VFIO_IRQ_SET_ACTION_TYPE_MASK (VFIO_IRQ_SET_ACTION_MASK | \ 763883f0b85SAlex Williamson VFIO_IRQ_SET_ACTION_UNMASK | \ 764883f0b85SAlex Williamson VFIO_IRQ_SET_ACTION_TRIGGER) 765883f0b85SAlex Williamson /** 766883f0b85SAlex Williamson * VFIO_DEVICE_RESET - _IO(VFIO_TYPE, VFIO_BASE + 11) 767883f0b85SAlex Williamson * 768883f0b85SAlex Williamson * Reset a device. 769883f0b85SAlex Williamson */ 770883f0b85SAlex Williamson #define VFIO_DEVICE_RESET _IO(VFIO_TYPE, VFIO_BASE + 11) 771883f0b85SAlex Williamson 772883f0b85SAlex Williamson /* 773883f0b85SAlex Williamson * The VFIO-PCI bus driver makes use of the following fixed region and 774883f0b85SAlex Williamson * IRQ index mapping. Unimplemented regions return a size of zero. 775883f0b85SAlex Williamson * Unimplemented IRQ types return a count of zero. 776883f0b85SAlex Williamson */ 777883f0b85SAlex Williamson 778883f0b85SAlex Williamson enum { 779883f0b85SAlex Williamson VFIO_PCI_BAR0_REGION_INDEX, 780883f0b85SAlex Williamson VFIO_PCI_BAR1_REGION_INDEX, 781883f0b85SAlex Williamson VFIO_PCI_BAR2_REGION_INDEX, 782883f0b85SAlex Williamson VFIO_PCI_BAR3_REGION_INDEX, 783883f0b85SAlex Williamson VFIO_PCI_BAR4_REGION_INDEX, 784883f0b85SAlex Williamson VFIO_PCI_BAR5_REGION_INDEX, 785883f0b85SAlex Williamson VFIO_PCI_ROM_REGION_INDEX, 786883f0b85SAlex Williamson VFIO_PCI_CONFIG_REGION_INDEX, 787010ca0b3SAlex Williamson /* 788010ca0b3SAlex Williamson * Expose VGA regions defined for PCI base class 03, subclass 00. 789010ca0b3SAlex Williamson * This includes I/O port ranges 0x3b0 to 0x3bb and 0x3c0 to 0x3df 790010ca0b3SAlex Williamson * as well as the MMIO range 0xa0000 to 0xbffff. Each implemented 791010ca0b3SAlex Williamson * range is found at it's identity mapped offset from the region 792010ca0b3SAlex Williamson * offset, for example 0x3b0 is region_info.offset + 0x3b0. Areas 793010ca0b3SAlex Williamson * between described ranges are unimplemented. 794010ca0b3SAlex Williamson */ 795010ca0b3SAlex Williamson VFIO_PCI_VGA_REGION_INDEX, 796b89485a5SPaolo Bonzini VFIO_PCI_NUM_REGIONS = 9 /* Fixed user ABI, region indexes >=9 use */ 797b89485a5SPaolo Bonzini /* device specific cap to define content. */ 798883f0b85SAlex Williamson }; 799883f0b85SAlex Williamson 800883f0b85SAlex Williamson enum { 801883f0b85SAlex Williamson VFIO_PCI_INTX_IRQ_INDEX, 802883f0b85SAlex Williamson VFIO_PCI_MSI_IRQ_INDEX, 803883f0b85SAlex Williamson VFIO_PCI_MSIX_IRQ_INDEX, 804e098b453SAlexey Kardashevskiy VFIO_PCI_ERR_IRQ_INDEX, 80547cbe50cSAlex Williamson VFIO_PCI_REQ_IRQ_INDEX, 806883f0b85SAlex Williamson VFIO_PCI_NUM_IRQS 807883f0b85SAlex Williamson }; 808883f0b85SAlex Williamson 80974c98e20SCornelia Huck /* 81074c98e20SCornelia Huck * The vfio-ccw bus driver makes use of the following fixed region and 81174c98e20SCornelia Huck * IRQ index mapping. Unimplemented regions return a size of zero. 81274c98e20SCornelia Huck * Unimplemented IRQ types return a count of zero. 81374c98e20SCornelia Huck */ 81474c98e20SCornelia Huck 81574c98e20SCornelia Huck enum { 81674c98e20SCornelia Huck VFIO_CCW_CONFIG_REGION_INDEX, 81774c98e20SCornelia Huck VFIO_CCW_NUM_REGIONS 81874c98e20SCornelia Huck }; 81974c98e20SCornelia Huck 82074c98e20SCornelia Huck enum { 82174c98e20SCornelia Huck VFIO_CCW_IO_IRQ_INDEX, 822f76b348eSCornelia Huck VFIO_CCW_CRW_IRQ_INDEX, 823*b3c818a4SEric Farman VFIO_CCW_REQ_IRQ_INDEX, 82474c98e20SCornelia Huck VFIO_CCW_NUM_IRQS 82574c98e20SCornelia Huck }; 82674c98e20SCornelia Huck 8274f265607SAndrew Jones /** 8284f265607SAndrew Jones * VFIO_DEVICE_GET_PCI_HOT_RESET_INFO - _IORW(VFIO_TYPE, VFIO_BASE + 12, 8294f265607SAndrew Jones * struct vfio_pci_hot_reset_info) 8304f265607SAndrew Jones * 8314f265607SAndrew Jones * Return: 0 on success, -errno on failure: 8324f265607SAndrew Jones * -enospc = insufficient buffer, -enodev = unsupported for device. 8334f265607SAndrew Jones */ 8344f265607SAndrew Jones struct vfio_pci_dependent_device { 8354f265607SAndrew Jones __u32 group_id; 8364f265607SAndrew Jones __u16 segment; 8374f265607SAndrew Jones __u8 bus; 8384f265607SAndrew Jones __u8 devfn; /* Use PCI_SLOT/PCI_FUNC */ 8394f265607SAndrew Jones }; 8404f265607SAndrew Jones 8414f265607SAndrew Jones struct vfio_pci_hot_reset_info { 8424f265607SAndrew Jones __u32 argsz; 8434f265607SAndrew Jones __u32 flags; 8444f265607SAndrew Jones __u32 count; 8454f265607SAndrew Jones struct vfio_pci_dependent_device devices[]; 8464f265607SAndrew Jones }; 8474f265607SAndrew Jones 8484f265607SAndrew Jones #define VFIO_DEVICE_GET_PCI_HOT_RESET_INFO _IO(VFIO_TYPE, VFIO_BASE + 12) 8494f265607SAndrew Jones 8504f265607SAndrew Jones /** 8514f265607SAndrew Jones * VFIO_DEVICE_PCI_HOT_RESET - _IOW(VFIO_TYPE, VFIO_BASE + 13, 8524f265607SAndrew Jones * struct vfio_pci_hot_reset) 8534f265607SAndrew Jones * 8544f265607SAndrew Jones * Return: 0 on success, -errno on failure. 8554f265607SAndrew Jones */ 8564f265607SAndrew Jones struct vfio_pci_hot_reset { 8574f265607SAndrew Jones __u32 argsz; 8584f265607SAndrew Jones __u32 flags; 8594f265607SAndrew Jones __u32 count; 8604f265607SAndrew Jones __s32 group_fds[]; 8614f265607SAndrew Jones }; 8624f265607SAndrew Jones 8634f265607SAndrew Jones #define VFIO_DEVICE_PCI_HOT_RESET _IO(VFIO_TYPE, VFIO_BASE + 13) 8644f265607SAndrew Jones 8659f2d175dSPaolo Bonzini /** 8669f2d175dSPaolo Bonzini * VFIO_DEVICE_QUERY_GFX_PLANE - _IOW(VFIO_TYPE, VFIO_BASE + 14, 8679f2d175dSPaolo Bonzini * struct vfio_device_query_gfx_plane) 8689f2d175dSPaolo Bonzini * 8699f2d175dSPaolo Bonzini * Set the drm_plane_type and flags, then retrieve the gfx plane info. 8709f2d175dSPaolo Bonzini * 8719f2d175dSPaolo Bonzini * flags supported: 8729f2d175dSPaolo Bonzini * - VFIO_GFX_PLANE_TYPE_PROBE and VFIO_GFX_PLANE_TYPE_DMABUF are set 8739f2d175dSPaolo Bonzini * to ask if the mdev supports dma-buf. 0 on support, -EINVAL on no 8749f2d175dSPaolo Bonzini * support for dma-buf. 8759f2d175dSPaolo Bonzini * - VFIO_GFX_PLANE_TYPE_PROBE and VFIO_GFX_PLANE_TYPE_REGION are set 8769f2d175dSPaolo Bonzini * to ask if the mdev supports region. 0 on support, -EINVAL on no 8779f2d175dSPaolo Bonzini * support for region. 8789f2d175dSPaolo Bonzini * - VFIO_GFX_PLANE_TYPE_DMABUF or VFIO_GFX_PLANE_TYPE_REGION is set 8799f2d175dSPaolo Bonzini * with each call to query the plane info. 8809f2d175dSPaolo Bonzini * - Others are invalid and return -EINVAL. 8819f2d175dSPaolo Bonzini * 8829f2d175dSPaolo Bonzini * Note: 8839f2d175dSPaolo Bonzini * 1. Plane could be disabled by guest. In that case, success will be 8849f2d175dSPaolo Bonzini * returned with zero-initialized drm_format, size, width and height 8859f2d175dSPaolo Bonzini * fields. 8869f2d175dSPaolo Bonzini * 2. x_hot/y_hot is set to 0xFFFFFFFF if no hotspot information available 8879f2d175dSPaolo Bonzini * 8889f2d175dSPaolo Bonzini * Return: 0 on success, -errno on other failure. 8899f2d175dSPaolo Bonzini */ 8909f2d175dSPaolo Bonzini struct vfio_device_gfx_plane_info { 8919f2d175dSPaolo Bonzini __u32 argsz; 8929f2d175dSPaolo Bonzini __u32 flags; 8939f2d175dSPaolo Bonzini #define VFIO_GFX_PLANE_TYPE_PROBE (1 << 0) 8949f2d175dSPaolo Bonzini #define VFIO_GFX_PLANE_TYPE_DMABUF (1 << 1) 8959f2d175dSPaolo Bonzini #define VFIO_GFX_PLANE_TYPE_REGION (1 << 2) 8969f2d175dSPaolo Bonzini /* in */ 8979f2d175dSPaolo Bonzini __u32 drm_plane_type; /* type of plane: DRM_PLANE_TYPE_* */ 8989f2d175dSPaolo Bonzini /* out */ 8999f2d175dSPaolo Bonzini __u32 drm_format; /* drm format of plane */ 9009f2d175dSPaolo Bonzini __u64 drm_format_mod; /* tiled mode */ 9019f2d175dSPaolo Bonzini __u32 width; /* width of plane */ 9029f2d175dSPaolo Bonzini __u32 height; /* height of plane */ 9039f2d175dSPaolo Bonzini __u32 stride; /* stride of plane */ 9049f2d175dSPaolo Bonzini __u32 size; /* size of plane in bytes, align on page*/ 9059f2d175dSPaolo Bonzini __u32 x_pos; /* horizontal position of cursor plane */ 9069f2d175dSPaolo Bonzini __u32 y_pos; /* vertical position of cursor plane*/ 9079f2d175dSPaolo Bonzini __u32 x_hot; /* horizontal position of cursor hotspot */ 9089f2d175dSPaolo Bonzini __u32 y_hot; /* vertical position of cursor hotspot */ 9099f2d175dSPaolo Bonzini union { 9109f2d175dSPaolo Bonzini __u32 region_index; /* region index */ 9119f2d175dSPaolo Bonzini __u32 dmabuf_id; /* dma-buf id */ 9129f2d175dSPaolo Bonzini }; 9139f2d175dSPaolo Bonzini }; 9149f2d175dSPaolo Bonzini 9159f2d175dSPaolo Bonzini #define VFIO_DEVICE_QUERY_GFX_PLANE _IO(VFIO_TYPE, VFIO_BASE + 14) 9169f2d175dSPaolo Bonzini 9179f2d175dSPaolo Bonzini /** 9189f2d175dSPaolo Bonzini * VFIO_DEVICE_GET_GFX_DMABUF - _IOW(VFIO_TYPE, VFIO_BASE + 15, __u32) 9199f2d175dSPaolo Bonzini * 9209f2d175dSPaolo Bonzini * Return a new dma-buf file descriptor for an exposed guest framebuffer 9219f2d175dSPaolo Bonzini * described by the provided dmabuf_id. The dmabuf_id is returned from VFIO_ 9229f2d175dSPaolo Bonzini * DEVICE_QUERY_GFX_PLANE as a token of the exposed guest framebuffer. 9239f2d175dSPaolo Bonzini */ 9249f2d175dSPaolo Bonzini 9259f2d175dSPaolo Bonzini #define VFIO_DEVICE_GET_GFX_DMABUF _IO(VFIO_TYPE, VFIO_BASE + 15) 9269f2d175dSPaolo Bonzini 92765a6d8ddSPeter Maydell /** 92865a6d8ddSPeter Maydell * VFIO_DEVICE_IOEVENTFD - _IOW(VFIO_TYPE, VFIO_BASE + 16, 92965a6d8ddSPeter Maydell * struct vfio_device_ioeventfd) 93065a6d8ddSPeter Maydell * 93165a6d8ddSPeter Maydell * Perform a write to the device at the specified device fd offset, with 93265a6d8ddSPeter Maydell * the specified data and width when the provided eventfd is triggered. 93365a6d8ddSPeter Maydell * vfio bus drivers may not support this for all regions, for all widths, 93465a6d8ddSPeter Maydell * or at all. vfio-pci currently only enables support for BAR regions, 93565a6d8ddSPeter Maydell * excluding the MSI-X vector table. 93665a6d8ddSPeter Maydell * 93765a6d8ddSPeter Maydell * Return: 0 on success, -errno on failure. 93865a6d8ddSPeter Maydell */ 93965a6d8ddSPeter Maydell struct vfio_device_ioeventfd { 94065a6d8ddSPeter Maydell __u32 argsz; 94165a6d8ddSPeter Maydell __u32 flags; 94265a6d8ddSPeter Maydell #define VFIO_DEVICE_IOEVENTFD_8 (1 << 0) /* 1-byte write */ 94365a6d8ddSPeter Maydell #define VFIO_DEVICE_IOEVENTFD_16 (1 << 1) /* 2-byte write */ 94465a6d8ddSPeter Maydell #define VFIO_DEVICE_IOEVENTFD_32 (1 << 2) /* 4-byte write */ 94565a6d8ddSPeter Maydell #define VFIO_DEVICE_IOEVENTFD_64 (1 << 3) /* 8-byte write */ 94665a6d8ddSPeter Maydell #define VFIO_DEVICE_IOEVENTFD_SIZE_MASK (0xf) 94765a6d8ddSPeter Maydell __u64 offset; /* device fd offset of write */ 94865a6d8ddSPeter Maydell __u64 data; /* data to be written */ 94965a6d8ddSPeter Maydell __s32 fd; /* -1 for de-assignment */ 95065a6d8ddSPeter Maydell }; 95165a6d8ddSPeter Maydell 95265a6d8ddSPeter Maydell #define VFIO_DEVICE_IOEVENTFD _IO(VFIO_TYPE, VFIO_BASE + 16) 95365a6d8ddSPeter Maydell 954dc6f8d45SCornelia Huck /** 955dc6f8d45SCornelia Huck * VFIO_DEVICE_FEATURE - _IORW(VFIO_TYPE, VFIO_BASE + 17, 956dc6f8d45SCornelia Huck * struct vfio_device_feature) 957dc6f8d45SCornelia Huck * 958dc6f8d45SCornelia Huck * Get, set, or probe feature data of the device. The feature is selected 959dc6f8d45SCornelia Huck * using the FEATURE_MASK portion of the flags field. Support for a feature 960dc6f8d45SCornelia Huck * can be probed by setting both the FEATURE_MASK and PROBE bits. A probe 961dc6f8d45SCornelia Huck * may optionally include the GET and/or SET bits to determine read vs write 962dc6f8d45SCornelia Huck * access of the feature respectively. Probing a feature will return success 963dc6f8d45SCornelia Huck * if the feature is supported and all of the optionally indicated GET/SET 964dc6f8d45SCornelia Huck * methods are supported. The format of the data portion of the structure is 965dc6f8d45SCornelia Huck * specific to the given feature. The data portion is not required for 966dc6f8d45SCornelia Huck * probing. GET and SET are mutually exclusive, except for use with PROBE. 967dc6f8d45SCornelia Huck * 968dc6f8d45SCornelia Huck * Return 0 on success, -errno on failure. 969dc6f8d45SCornelia Huck */ 970dc6f8d45SCornelia Huck struct vfio_device_feature { 971dc6f8d45SCornelia Huck __u32 argsz; 972dc6f8d45SCornelia Huck __u32 flags; 973dc6f8d45SCornelia Huck #define VFIO_DEVICE_FEATURE_MASK (0xffff) /* 16-bit feature index */ 974dc6f8d45SCornelia Huck #define VFIO_DEVICE_FEATURE_GET (1 << 16) /* Get feature into data[] */ 975dc6f8d45SCornelia Huck #define VFIO_DEVICE_FEATURE_SET (1 << 17) /* Set feature from data[] */ 976dc6f8d45SCornelia Huck #define VFIO_DEVICE_FEATURE_PROBE (1 << 18) /* Probe feature support */ 977dc6f8d45SCornelia Huck __u8 data[]; 978dc6f8d45SCornelia Huck }; 979dc6f8d45SCornelia Huck 980dc6f8d45SCornelia Huck #define VFIO_DEVICE_FEATURE _IO(VFIO_TYPE, VFIO_BASE + 17) 981dc6f8d45SCornelia Huck 982dc6f8d45SCornelia Huck /* 983dc6f8d45SCornelia Huck * Provide support for setting a PCI VF Token, which is used as a shared 984dc6f8d45SCornelia Huck * secret between PF and VF drivers. This feature may only be set on a 985dc6f8d45SCornelia Huck * PCI SR-IOV PF when SR-IOV is enabled on the PF and there are no existing 986dc6f8d45SCornelia Huck * open VFs. Data provided when setting this feature is a 16-byte array 987dc6f8d45SCornelia Huck * (__u8 b[16]), representing a UUID. 988dc6f8d45SCornelia Huck */ 989dc6f8d45SCornelia Huck #define VFIO_DEVICE_FEATURE_PCI_VF_TOKEN (0) 990dc6f8d45SCornelia Huck 991883f0b85SAlex Williamson /* -------- API for Type1 VFIO IOMMU -------- */ 992883f0b85SAlex Williamson 993883f0b85SAlex Williamson /** 994883f0b85SAlex Williamson * VFIO_IOMMU_GET_INFO - _IOR(VFIO_TYPE, VFIO_BASE + 12, struct vfio_iommu_info) 995883f0b85SAlex Williamson * 996883f0b85SAlex Williamson * Retrieve information about the IOMMU object. Fills in provided 997883f0b85SAlex Williamson * struct vfio_iommu_info. Caller sets argsz. 998883f0b85SAlex Williamson * 999883f0b85SAlex Williamson * XXX Should we do these by CHECK_EXTENSION too? 1000883f0b85SAlex Williamson */ 1001883f0b85SAlex Williamson struct vfio_iommu_type1_info { 1002883f0b85SAlex Williamson __u32 argsz; 1003883f0b85SAlex Williamson __u32 flags; 1004883f0b85SAlex Williamson #define VFIO_IOMMU_INFO_PGSIZES (1 << 0) /* supported page sizes info */ 1005f363d039SEric Auger #define VFIO_IOMMU_INFO_CAPS (1 << 1) /* Info supports caps */ 1006883f0b85SAlex Williamson __u64 iova_pgsizes; /* Bitmap of supported page sizes */ 1007f363d039SEric Auger __u32 cap_offset; /* Offset within info struct of first cap */ 1008f363d039SEric Auger }; 1009f363d039SEric Auger 1010f363d039SEric Auger /* 1011f363d039SEric Auger * The IOVA capability allows to report the valid IOVA range(s) 1012f363d039SEric Auger * excluding any non-relaxable reserved regions exposed by 1013f363d039SEric Auger * devices attached to the container. Any DMA map attempt 1014f363d039SEric Auger * outside the valid iova range will return error. 1015f363d039SEric Auger * 1016f363d039SEric Auger * The structures below define version 1 of this capability. 1017f363d039SEric Auger */ 1018f363d039SEric Auger #define VFIO_IOMMU_TYPE1_INFO_CAP_IOVA_RANGE 1 1019f363d039SEric Auger 1020f363d039SEric Auger struct vfio_iova_range { 1021f363d039SEric Auger __u64 start; 1022f363d039SEric Auger __u64 end; 1023f363d039SEric Auger }; 1024f363d039SEric Auger 1025f363d039SEric Auger struct vfio_iommu_type1_info_cap_iova_range { 1026f363d039SEric Auger struct vfio_info_cap_header header; 1027f363d039SEric Auger __u32 nr_iovas; 1028f363d039SEric Auger __u32 reserved; 1029f363d039SEric Auger struct vfio_iova_range iova_ranges[]; 1030883f0b85SAlex Williamson }; 1031883f0b85SAlex Williamson 1032f76b348eSCornelia Huck /* 1033f76b348eSCornelia Huck * The migration capability allows to report supported features for migration. 1034f76b348eSCornelia Huck * 1035f76b348eSCornelia Huck * The structures below define version 1 of this capability. 1036f76b348eSCornelia Huck * 1037f76b348eSCornelia Huck * The existence of this capability indicates that IOMMU kernel driver supports 1038f76b348eSCornelia Huck * dirty page logging. 1039f76b348eSCornelia Huck * 1040f76b348eSCornelia Huck * pgsize_bitmap: Kernel driver returns bitmap of supported page sizes for dirty 1041f76b348eSCornelia Huck * page logging. 1042f76b348eSCornelia Huck * max_dirty_bitmap_size: Kernel driver returns maximum supported dirty bitmap 1043f76b348eSCornelia Huck * size in bytes that can be used by user applications when getting the dirty 1044f76b348eSCornelia Huck * bitmap. 1045f76b348eSCornelia Huck */ 1046e6546342SJason Wang #define VFIO_IOMMU_TYPE1_INFO_CAP_MIGRATION 2 1047f76b348eSCornelia Huck 1048f76b348eSCornelia Huck struct vfio_iommu_type1_info_cap_migration { 1049f76b348eSCornelia Huck struct vfio_info_cap_header header; 1050f76b348eSCornelia Huck __u32 flags; 1051f76b348eSCornelia Huck __u64 pgsize_bitmap; 1052f76b348eSCornelia Huck __u64 max_dirty_bitmap_size; /* in bytes */ 1053f76b348eSCornelia Huck }; 1054f76b348eSCornelia Huck 105553ba2eeeSMatthew Rosato /* 105653ba2eeeSMatthew Rosato * The DMA available capability allows to report the current number of 105753ba2eeeSMatthew Rosato * simultaneously outstanding DMA mappings that are allowed. 105853ba2eeeSMatthew Rosato * 105953ba2eeeSMatthew Rosato * The structure below defines version 1 of this capability. 106053ba2eeeSMatthew Rosato * 106153ba2eeeSMatthew Rosato * avail: specifies the current number of outstanding DMA mappings allowed. 106253ba2eeeSMatthew Rosato */ 106353ba2eeeSMatthew Rosato #define VFIO_IOMMU_TYPE1_INFO_DMA_AVAIL 3 106453ba2eeeSMatthew Rosato 106553ba2eeeSMatthew Rosato struct vfio_iommu_type1_info_dma_avail { 106653ba2eeeSMatthew Rosato struct vfio_info_cap_header header; 106753ba2eeeSMatthew Rosato __u32 avail; 106853ba2eeeSMatthew Rosato }; 106953ba2eeeSMatthew Rosato 1070883f0b85SAlex Williamson #define VFIO_IOMMU_GET_INFO _IO(VFIO_TYPE, VFIO_BASE + 12) 1071883f0b85SAlex Williamson 1072883f0b85SAlex Williamson /** 1073883f0b85SAlex Williamson * VFIO_IOMMU_MAP_DMA - _IOW(VFIO_TYPE, VFIO_BASE + 13, struct vfio_dma_map) 1074883f0b85SAlex Williamson * 1075883f0b85SAlex Williamson * Map process virtual addresses to IO virtual addresses using the 1076883f0b85SAlex Williamson * provided struct vfio_dma_map. Caller sets argsz. READ &/ WRITE required. 1077883f0b85SAlex Williamson */ 1078883f0b85SAlex Williamson struct vfio_iommu_type1_dma_map { 1079883f0b85SAlex Williamson __u32 argsz; 1080883f0b85SAlex Williamson __u32 flags; 1081883f0b85SAlex Williamson #define VFIO_DMA_MAP_FLAG_READ (1 << 0) /* readable from device */ 1082883f0b85SAlex Williamson #define VFIO_DMA_MAP_FLAG_WRITE (1 << 1) /* writable from device */ 1083883f0b85SAlex Williamson __u64 vaddr; /* Process virtual address */ 1084883f0b85SAlex Williamson __u64 iova; /* IO virtual address */ 1085883f0b85SAlex Williamson __u64 size; /* Size of mapping (bytes) */ 1086883f0b85SAlex Williamson }; 1087883f0b85SAlex Williamson 1088883f0b85SAlex Williamson #define VFIO_IOMMU_MAP_DMA _IO(VFIO_TYPE, VFIO_BASE + 13) 1089883f0b85SAlex Williamson 1090f76b348eSCornelia Huck struct vfio_bitmap { 1091f76b348eSCornelia Huck __u64 pgsize; /* page size for bitmap in bytes */ 1092f76b348eSCornelia Huck __u64 size; /* in bytes */ 1093f76b348eSCornelia Huck __u64 *data; /* one bit per page */ 1094f76b348eSCornelia Huck }; 1095f76b348eSCornelia Huck 1096883f0b85SAlex Williamson /** 1097c5daeae1SAlexey Kardashevskiy * VFIO_IOMMU_UNMAP_DMA - _IOWR(VFIO_TYPE, VFIO_BASE + 14, 1098c5daeae1SAlexey Kardashevskiy * struct vfio_dma_unmap) 1099883f0b85SAlex Williamson * 1100883f0b85SAlex Williamson * Unmap IO virtual addresses using the provided struct vfio_dma_unmap. 1101c5daeae1SAlexey Kardashevskiy * Caller sets argsz. The actual unmapped size is returned in the size 1102c5daeae1SAlexey Kardashevskiy * field. No guarantee is made to the user that arbitrary unmaps of iova 1103c5daeae1SAlexey Kardashevskiy * or size different from those used in the original mapping call will 1104c5daeae1SAlexey Kardashevskiy * succeed. 1105f76b348eSCornelia Huck * VFIO_DMA_UNMAP_FLAG_GET_DIRTY_BITMAP should be set to get the dirty bitmap 1106f76b348eSCornelia Huck * before unmapping IO virtual addresses. When this flag is set, the user must 1107f76b348eSCornelia Huck * provide a struct vfio_bitmap in data[]. User must provide zero-allocated 1108f76b348eSCornelia Huck * memory via vfio_bitmap.data and its size in the vfio_bitmap.size field. 1109f76b348eSCornelia Huck * A bit in the bitmap represents one page, of user provided page size in 1110f76b348eSCornelia Huck * vfio_bitmap.pgsize field, consecutively starting from iova offset. Bit set 1111f76b348eSCornelia Huck * indicates that the page at that offset from iova is dirty. A Bitmap of the 1112f76b348eSCornelia Huck * pages in the range of unmapped size is returned in the user-provided 1113f76b348eSCornelia Huck * vfio_bitmap.data. 1114883f0b85SAlex Williamson */ 1115883f0b85SAlex Williamson struct vfio_iommu_type1_dma_unmap { 1116883f0b85SAlex Williamson __u32 argsz; 1117883f0b85SAlex Williamson __u32 flags; 1118f76b348eSCornelia Huck #define VFIO_DMA_UNMAP_FLAG_GET_DIRTY_BITMAP (1 << 0) 1119883f0b85SAlex Williamson __u64 iova; /* IO virtual address */ 1120883f0b85SAlex Williamson __u64 size; /* Size of mapping (bytes) */ 1121f76b348eSCornelia Huck __u8 data[]; 1122883f0b85SAlex Williamson }; 1123883f0b85SAlex Williamson 1124883f0b85SAlex Williamson #define VFIO_IOMMU_UNMAP_DMA _IO(VFIO_TYPE, VFIO_BASE + 14) 1125883f0b85SAlex Williamson 1126c5daeae1SAlexey Kardashevskiy /* 1127c5daeae1SAlexey Kardashevskiy * IOCTLs to enable/disable IOMMU container usage. 1128c5daeae1SAlexey Kardashevskiy * No parameters are supported. 1129c5daeae1SAlexey Kardashevskiy */ 1130c5daeae1SAlexey Kardashevskiy #define VFIO_IOMMU_ENABLE _IO(VFIO_TYPE, VFIO_BASE + 15) 1131c5daeae1SAlexey Kardashevskiy #define VFIO_IOMMU_DISABLE _IO(VFIO_TYPE, VFIO_BASE + 16) 1132c5daeae1SAlexey Kardashevskiy 1133f76b348eSCornelia Huck /** 1134f76b348eSCornelia Huck * VFIO_IOMMU_DIRTY_PAGES - _IOWR(VFIO_TYPE, VFIO_BASE + 17, 1135f76b348eSCornelia Huck * struct vfio_iommu_type1_dirty_bitmap) 1136f76b348eSCornelia Huck * IOCTL is used for dirty pages logging. 1137f76b348eSCornelia Huck * Caller should set flag depending on which operation to perform, details as 1138f76b348eSCornelia Huck * below: 1139f76b348eSCornelia Huck * 1140f76b348eSCornelia Huck * Calling the IOCTL with VFIO_IOMMU_DIRTY_PAGES_FLAG_START flag set, instructs 1141f76b348eSCornelia Huck * the IOMMU driver to log pages that are dirtied or potentially dirtied by 1142f76b348eSCornelia Huck * the device; designed to be used when a migration is in progress. Dirty pages 1143f76b348eSCornelia Huck * are logged until logging is disabled by user application by calling the IOCTL 1144f76b348eSCornelia Huck * with VFIO_IOMMU_DIRTY_PAGES_FLAG_STOP flag. 1145f76b348eSCornelia Huck * 1146f76b348eSCornelia Huck * Calling the IOCTL with VFIO_IOMMU_DIRTY_PAGES_FLAG_STOP flag set, instructs 1147f76b348eSCornelia Huck * the IOMMU driver to stop logging dirtied pages. 1148f76b348eSCornelia Huck * 1149f76b348eSCornelia Huck * Calling the IOCTL with VFIO_IOMMU_DIRTY_PAGES_FLAG_GET_BITMAP flag set 1150f76b348eSCornelia Huck * returns the dirty pages bitmap for IOMMU container for a given IOVA range. 1151f76b348eSCornelia Huck * The user must specify the IOVA range and the pgsize through the structure 1152f76b348eSCornelia Huck * vfio_iommu_type1_dirty_bitmap_get in the data[] portion. This interface 1153f76b348eSCornelia Huck * supports getting a bitmap of the smallest supported pgsize only and can be 1154f76b348eSCornelia Huck * modified in future to get a bitmap of any specified supported pgsize. The 1155f76b348eSCornelia Huck * user must provide a zeroed memory area for the bitmap memory and specify its 1156f76b348eSCornelia Huck * size in bitmap.size. One bit is used to represent one page consecutively 1157f76b348eSCornelia Huck * starting from iova offset. The user should provide page size in bitmap.pgsize 1158f76b348eSCornelia Huck * field. A bit set in the bitmap indicates that the page at that offset from 1159f76b348eSCornelia Huck * iova is dirty. The caller must set argsz to a value including the size of 1160f76b348eSCornelia Huck * structure vfio_iommu_type1_dirty_bitmap_get, but excluding the size of the 1161f76b348eSCornelia Huck * actual bitmap. If dirty pages logging is not enabled, an error will be 1162f76b348eSCornelia Huck * returned. 1163f76b348eSCornelia Huck * 1164f76b348eSCornelia Huck * Only one of the flags _START, _STOP and _GET may be specified at a time. 1165f76b348eSCornelia Huck * 1166f76b348eSCornelia Huck */ 1167f76b348eSCornelia Huck struct vfio_iommu_type1_dirty_bitmap { 1168f76b348eSCornelia Huck __u32 argsz; 1169f76b348eSCornelia Huck __u32 flags; 1170f76b348eSCornelia Huck #define VFIO_IOMMU_DIRTY_PAGES_FLAG_START (1 << 0) 1171f76b348eSCornelia Huck #define VFIO_IOMMU_DIRTY_PAGES_FLAG_STOP (1 << 1) 1172f76b348eSCornelia Huck #define VFIO_IOMMU_DIRTY_PAGES_FLAG_GET_BITMAP (1 << 2) 1173f76b348eSCornelia Huck __u8 data[]; 1174f76b348eSCornelia Huck }; 1175f76b348eSCornelia Huck 1176f76b348eSCornelia Huck struct vfio_iommu_type1_dirty_bitmap_get { 1177f76b348eSCornelia Huck __u64 iova; /* IO virtual address */ 1178f76b348eSCornelia Huck __u64 size; /* Size of iova range */ 1179f76b348eSCornelia Huck struct vfio_bitmap bitmap; 1180f76b348eSCornelia Huck }; 1181f76b348eSCornelia Huck 1182f76b348eSCornelia Huck #define VFIO_IOMMU_DIRTY_PAGES _IO(VFIO_TYPE, VFIO_BASE + 17) 1183f76b348eSCornelia Huck 1184c5daeae1SAlexey Kardashevskiy /* -------- Additional API for SPAPR TCE (Server POWERPC) IOMMU -------- */ 1185c5daeae1SAlexey Kardashevskiy 1186c5daeae1SAlexey Kardashevskiy /* 118725b8b39bSAlexey Kardashevskiy * The SPAPR TCE DDW info struct provides the information about 118825b8b39bSAlexey Kardashevskiy * the details of Dynamic DMA window capability. 118925b8b39bSAlexey Kardashevskiy * 119025b8b39bSAlexey Kardashevskiy * @pgsizes contains a page size bitmask, 4K/64K/16M are supported. 119125b8b39bSAlexey Kardashevskiy * @max_dynamic_windows_supported tells the maximum number of windows 119225b8b39bSAlexey Kardashevskiy * which the platform can create. 119325b8b39bSAlexey Kardashevskiy * @levels tells the maximum number of levels in multi-level IOMMU tables; 119425b8b39bSAlexey Kardashevskiy * this allows splitting a table into smaller chunks which reduces 119525b8b39bSAlexey Kardashevskiy * the amount of physically contiguous memory required for the table. 119625b8b39bSAlexey Kardashevskiy */ 119725b8b39bSAlexey Kardashevskiy struct vfio_iommu_spapr_tce_ddw_info { 119825b8b39bSAlexey Kardashevskiy __u64 pgsizes; /* Bitmap of supported page sizes */ 119925b8b39bSAlexey Kardashevskiy __u32 max_dynamic_windows_supported; 120025b8b39bSAlexey Kardashevskiy __u32 levels; 120125b8b39bSAlexey Kardashevskiy }; 120225b8b39bSAlexey Kardashevskiy 120325b8b39bSAlexey Kardashevskiy /* 1204c5daeae1SAlexey Kardashevskiy * The SPAPR TCE info struct provides the information about the PCI bus 1205c5daeae1SAlexey Kardashevskiy * address ranges available for DMA, these values are programmed into 1206c5daeae1SAlexey Kardashevskiy * the hardware so the guest has to know that information. 1207c5daeae1SAlexey Kardashevskiy * 1208c5daeae1SAlexey Kardashevskiy * The DMA 32 bit window start is an absolute PCI bus address. 1209c5daeae1SAlexey Kardashevskiy * The IOVA address passed via map/unmap ioctls are absolute PCI bus 1210c5daeae1SAlexey Kardashevskiy * addresses too so the window works as a filter rather than an offset 1211c5daeae1SAlexey Kardashevskiy * for IOVA addresses. 1212c5daeae1SAlexey Kardashevskiy * 121325b8b39bSAlexey Kardashevskiy * Flags supported: 121425b8b39bSAlexey Kardashevskiy * - VFIO_IOMMU_SPAPR_INFO_DDW: informs the userspace that dynamic DMA windows 121525b8b39bSAlexey Kardashevskiy * (DDW) support is present. @ddw is only supported when DDW is present. 1216c5daeae1SAlexey Kardashevskiy */ 1217c5daeae1SAlexey Kardashevskiy struct vfio_iommu_spapr_tce_info { 1218c5daeae1SAlexey Kardashevskiy __u32 argsz; 121925b8b39bSAlexey Kardashevskiy __u32 flags; 122025b8b39bSAlexey Kardashevskiy #define VFIO_IOMMU_SPAPR_INFO_DDW (1 << 0) /* DDW supported */ 1221c5daeae1SAlexey Kardashevskiy __u32 dma32_window_start; /* 32 bit window start (bytes) */ 1222c5daeae1SAlexey Kardashevskiy __u32 dma32_window_size; /* 32 bit window size (bytes) */ 122325b8b39bSAlexey Kardashevskiy struct vfio_iommu_spapr_tce_ddw_info ddw; 1224c5daeae1SAlexey Kardashevskiy }; 1225c5daeae1SAlexey Kardashevskiy 1226c5daeae1SAlexey Kardashevskiy #define VFIO_IOMMU_SPAPR_TCE_GET_INFO _IO(VFIO_TYPE, VFIO_BASE + 12) 1227c5daeae1SAlexey Kardashevskiy 1228a9fd1654SJens Freimann /* 1229a9fd1654SJens Freimann * EEH PE operation struct provides ways to: 1230a9fd1654SJens Freimann * - enable/disable EEH functionality; 1231a9fd1654SJens Freimann * - unfreeze IO/DMA for frozen PE; 1232a9fd1654SJens Freimann * - read PE state; 1233a9fd1654SJens Freimann * - reset PE; 123425b8b39bSAlexey Kardashevskiy * - configure PE; 123525b8b39bSAlexey Kardashevskiy * - inject EEH error. 1236a9fd1654SJens Freimann */ 123725b8b39bSAlexey Kardashevskiy struct vfio_eeh_pe_err { 123825b8b39bSAlexey Kardashevskiy __u32 type; 123925b8b39bSAlexey Kardashevskiy __u32 func; 124025b8b39bSAlexey Kardashevskiy __u64 addr; 124125b8b39bSAlexey Kardashevskiy __u64 mask; 124225b8b39bSAlexey Kardashevskiy }; 124325b8b39bSAlexey Kardashevskiy 1244a9fd1654SJens Freimann struct vfio_eeh_pe_op { 1245a9fd1654SJens Freimann __u32 argsz; 1246a9fd1654SJens Freimann __u32 flags; 1247a9fd1654SJens Freimann __u32 op; 124825b8b39bSAlexey Kardashevskiy union { 124925b8b39bSAlexey Kardashevskiy struct vfio_eeh_pe_err err; 125025b8b39bSAlexey Kardashevskiy }; 1251a9fd1654SJens Freimann }; 1252a9fd1654SJens Freimann 1253a9fd1654SJens Freimann #define VFIO_EEH_PE_DISABLE 0 /* Disable EEH functionality */ 1254a9fd1654SJens Freimann #define VFIO_EEH_PE_ENABLE 1 /* Enable EEH functionality */ 1255a9fd1654SJens Freimann #define VFIO_EEH_PE_UNFREEZE_IO 2 /* Enable IO for frozen PE */ 1256a9fd1654SJens Freimann #define VFIO_EEH_PE_UNFREEZE_DMA 3 /* Enable DMA for frozen PE */ 1257a9fd1654SJens Freimann #define VFIO_EEH_PE_GET_STATE 4 /* PE state retrieval */ 1258a9fd1654SJens Freimann #define VFIO_EEH_PE_STATE_NORMAL 0 /* PE in functional state */ 1259a9fd1654SJens Freimann #define VFIO_EEH_PE_STATE_RESET 1 /* PE reset in progress */ 1260a9fd1654SJens Freimann #define VFIO_EEH_PE_STATE_STOPPED 2 /* Stopped DMA and IO */ 1261a9fd1654SJens Freimann #define VFIO_EEH_PE_STATE_STOPPED_DMA 4 /* Stopped DMA only */ 1262a9fd1654SJens Freimann #define VFIO_EEH_PE_STATE_UNAVAIL 5 /* State unavailable */ 1263a9fd1654SJens Freimann #define VFIO_EEH_PE_RESET_DEACTIVATE 5 /* Deassert PE reset */ 1264a9fd1654SJens Freimann #define VFIO_EEH_PE_RESET_HOT 6 /* Assert hot reset */ 1265a9fd1654SJens Freimann #define VFIO_EEH_PE_RESET_FUNDAMENTAL 7 /* Assert fundamental reset */ 1266a9fd1654SJens Freimann #define VFIO_EEH_PE_CONFIGURE 8 /* PE configuration */ 126725b8b39bSAlexey Kardashevskiy #define VFIO_EEH_PE_INJECT_ERR 9 /* Inject EEH error */ 1268a9fd1654SJens Freimann 1269a9fd1654SJens Freimann #define VFIO_EEH_PE_OP _IO(VFIO_TYPE, VFIO_BASE + 21) 1270a9fd1654SJens Freimann 127125b8b39bSAlexey Kardashevskiy /** 127225b8b39bSAlexey Kardashevskiy * VFIO_IOMMU_SPAPR_REGISTER_MEMORY - _IOW(VFIO_TYPE, VFIO_BASE + 17, struct vfio_iommu_spapr_register_memory) 127325b8b39bSAlexey Kardashevskiy * 127425b8b39bSAlexey Kardashevskiy * Registers user space memory where DMA is allowed. It pins 127525b8b39bSAlexey Kardashevskiy * user pages and does the locked memory accounting so 127625b8b39bSAlexey Kardashevskiy * subsequent VFIO_IOMMU_MAP_DMA/VFIO_IOMMU_UNMAP_DMA calls 127725b8b39bSAlexey Kardashevskiy * get faster. 127825b8b39bSAlexey Kardashevskiy */ 127925b8b39bSAlexey Kardashevskiy struct vfio_iommu_spapr_register_memory { 128025b8b39bSAlexey Kardashevskiy __u32 argsz; 128125b8b39bSAlexey Kardashevskiy __u32 flags; 128225b8b39bSAlexey Kardashevskiy __u64 vaddr; /* Process virtual address */ 128325b8b39bSAlexey Kardashevskiy __u64 size; /* Size of mapping (bytes) */ 128425b8b39bSAlexey Kardashevskiy }; 128525b8b39bSAlexey Kardashevskiy #define VFIO_IOMMU_SPAPR_REGISTER_MEMORY _IO(VFIO_TYPE, VFIO_BASE + 17) 128625b8b39bSAlexey Kardashevskiy 128725b8b39bSAlexey Kardashevskiy /** 128825b8b39bSAlexey Kardashevskiy * VFIO_IOMMU_SPAPR_UNREGISTER_MEMORY - _IOW(VFIO_TYPE, VFIO_BASE + 18, struct vfio_iommu_spapr_register_memory) 128925b8b39bSAlexey Kardashevskiy * 129025b8b39bSAlexey Kardashevskiy * Unregisters user space memory registered with 129125b8b39bSAlexey Kardashevskiy * VFIO_IOMMU_SPAPR_REGISTER_MEMORY. 129225b8b39bSAlexey Kardashevskiy * Uses vfio_iommu_spapr_register_memory for parameters. 129325b8b39bSAlexey Kardashevskiy */ 129425b8b39bSAlexey Kardashevskiy #define VFIO_IOMMU_SPAPR_UNREGISTER_MEMORY _IO(VFIO_TYPE, VFIO_BASE + 18) 129525b8b39bSAlexey Kardashevskiy 129625b8b39bSAlexey Kardashevskiy /** 129725b8b39bSAlexey Kardashevskiy * VFIO_IOMMU_SPAPR_TCE_CREATE - _IOWR(VFIO_TYPE, VFIO_BASE + 19, struct vfio_iommu_spapr_tce_create) 129825b8b39bSAlexey Kardashevskiy * 129925b8b39bSAlexey Kardashevskiy * Creates an additional TCE table and programs it (sets a new DMA window) 130025b8b39bSAlexey Kardashevskiy * to every IOMMU group in the container. It receives page shift, window 130125b8b39bSAlexey Kardashevskiy * size and number of levels in the TCE table being created. 130225b8b39bSAlexey Kardashevskiy * 130325b8b39bSAlexey Kardashevskiy * It allocates and returns an offset on a PCI bus of the new DMA window. 130425b8b39bSAlexey Kardashevskiy */ 130525b8b39bSAlexey Kardashevskiy struct vfio_iommu_spapr_tce_create { 130625b8b39bSAlexey Kardashevskiy __u32 argsz; 130725b8b39bSAlexey Kardashevskiy __u32 flags; 130825b8b39bSAlexey Kardashevskiy /* in */ 130925b8b39bSAlexey Kardashevskiy __u32 page_shift; 131066fb2d54SCornelia Huck __u32 __resv1; 131125b8b39bSAlexey Kardashevskiy __u64 window_size; 131225b8b39bSAlexey Kardashevskiy __u32 levels; 131366fb2d54SCornelia Huck __u32 __resv2; 131425b8b39bSAlexey Kardashevskiy /* out */ 131525b8b39bSAlexey Kardashevskiy __u64 start_addr; 131625b8b39bSAlexey Kardashevskiy }; 131725b8b39bSAlexey Kardashevskiy #define VFIO_IOMMU_SPAPR_TCE_CREATE _IO(VFIO_TYPE, VFIO_BASE + 19) 131825b8b39bSAlexey Kardashevskiy 131925b8b39bSAlexey Kardashevskiy /** 132025b8b39bSAlexey Kardashevskiy * VFIO_IOMMU_SPAPR_TCE_REMOVE - _IOW(VFIO_TYPE, VFIO_BASE + 20, struct vfio_iommu_spapr_tce_remove) 132125b8b39bSAlexey Kardashevskiy * 132225b8b39bSAlexey Kardashevskiy * Unprograms a TCE table from all groups in the container and destroys it. 132325b8b39bSAlexey Kardashevskiy * It receives a PCI bus offset as a window id. 132425b8b39bSAlexey Kardashevskiy */ 132525b8b39bSAlexey Kardashevskiy struct vfio_iommu_spapr_tce_remove { 132625b8b39bSAlexey Kardashevskiy __u32 argsz; 132725b8b39bSAlexey Kardashevskiy __u32 flags; 132825b8b39bSAlexey Kardashevskiy /* in */ 132925b8b39bSAlexey Kardashevskiy __u64 start_addr; 133025b8b39bSAlexey Kardashevskiy }; 133125b8b39bSAlexey Kardashevskiy #define VFIO_IOMMU_SPAPR_TCE_REMOVE _IO(VFIO_TYPE, VFIO_BASE + 20) 133225b8b39bSAlexey Kardashevskiy 1333c5daeae1SAlexey Kardashevskiy /* ***************************************************************** */ 1334c5daeae1SAlexey Kardashevskiy 1335d4834ff9SAlexander Graf #endif /* VFIO_H */ 1336