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 */ 204883f0b85SAlex Williamson __u32 num_regions; /* Max region index + 1 */ 205883f0b85SAlex Williamson __u32 num_irqs; /* Max IRQ index + 1 */ 206883f0b85SAlex Williamson }; 207883f0b85SAlex Williamson #define VFIO_DEVICE_GET_INFO _IO(VFIO_TYPE, VFIO_BASE + 7) 208883f0b85SAlex Williamson 2093a5eb5b4SPaolo Bonzini /* 2103a5eb5b4SPaolo Bonzini * Vendor driver using Mediated device framework should provide device_api 2113a5eb5b4SPaolo Bonzini * attribute in supported type attribute groups. Device API string should be one 2123a5eb5b4SPaolo Bonzini * of the following corresponding to device flags in vfio_device_info structure. 2133a5eb5b4SPaolo Bonzini */ 2143a5eb5b4SPaolo Bonzini 2153a5eb5b4SPaolo Bonzini #define VFIO_DEVICE_API_PCI_STRING "vfio-pci" 2163a5eb5b4SPaolo Bonzini #define VFIO_DEVICE_API_PLATFORM_STRING "vfio-platform" 2173a5eb5b4SPaolo Bonzini #define VFIO_DEVICE_API_AMBA_STRING "vfio-amba" 21874c98e20SCornelia Huck #define VFIO_DEVICE_API_CCW_STRING "vfio-ccw" 2198f3cd250SCornelia Huck #define VFIO_DEVICE_API_AP_STRING "vfio-ap" 2203a5eb5b4SPaolo Bonzini 221883f0b85SAlex Williamson /** 222883f0b85SAlex Williamson * VFIO_DEVICE_GET_REGION_INFO - _IOWR(VFIO_TYPE, VFIO_BASE + 8, 223883f0b85SAlex Williamson * struct vfio_region_info) 224883f0b85SAlex Williamson * 225883f0b85SAlex Williamson * Retrieve information about a device region. Caller provides 226883f0b85SAlex Williamson * struct vfio_region_info with index value set. Caller sets argsz. 227883f0b85SAlex Williamson * Implementation of region mapping is bus driver specific. This is 228883f0b85SAlex Williamson * intended to describe MMIO, I/O port, as well as bus specific 229883f0b85SAlex Williamson * regions (ex. PCI config space). Zero sized regions may be used 230883f0b85SAlex Williamson * to describe unimplemented regions (ex. unimplemented PCI BARs). 231883f0b85SAlex Williamson * Return: 0 on success, -errno on failure. 232883f0b85SAlex Williamson */ 233883f0b85SAlex Williamson struct vfio_region_info { 234883f0b85SAlex Williamson __u32 argsz; 235883f0b85SAlex Williamson __u32 flags; 236883f0b85SAlex Williamson #define VFIO_REGION_INFO_FLAG_READ (1 << 0) /* Region supports read */ 237883f0b85SAlex Williamson #define VFIO_REGION_INFO_FLAG_WRITE (1 << 1) /* Region supports write */ 238883f0b85SAlex Williamson #define VFIO_REGION_INFO_FLAG_MMAP (1 << 2) /* Region supports mmap */ 239b89485a5SPaolo Bonzini #define VFIO_REGION_INFO_FLAG_CAPS (1 << 3) /* Info supports caps */ 240883f0b85SAlex Williamson __u32 index; /* Region index */ 241b89485a5SPaolo Bonzini __u32 cap_offset; /* Offset within info struct of first cap */ 242883f0b85SAlex Williamson __u64 size; /* Region size (bytes) */ 243883f0b85SAlex Williamson __u64 offset; /* Region offset from start of device fd */ 244883f0b85SAlex Williamson }; 245883f0b85SAlex Williamson #define VFIO_DEVICE_GET_REGION_INFO _IO(VFIO_TYPE, VFIO_BASE + 8) 246883f0b85SAlex Williamson 247b89485a5SPaolo Bonzini /* 248b89485a5SPaolo Bonzini * The sparse mmap capability allows finer granularity of specifying areas 249b89485a5SPaolo Bonzini * within a region with mmap support. When specified, the user should only 250b89485a5SPaolo Bonzini * mmap the offset ranges specified by the areas array. mmaps outside of the 251b89485a5SPaolo Bonzini * areas specified may fail (such as the range covering a PCI MSI-X table) or 252b89485a5SPaolo Bonzini * may result in improper device behavior. 253b89485a5SPaolo Bonzini * 254b89485a5SPaolo Bonzini * The structures below define version 1 of this capability. 255b89485a5SPaolo Bonzini */ 256b89485a5SPaolo Bonzini #define VFIO_REGION_INFO_CAP_SPARSE_MMAP 1 257b89485a5SPaolo Bonzini 258b89485a5SPaolo Bonzini struct vfio_region_sparse_mmap_area { 259b89485a5SPaolo Bonzini __u64 offset; /* Offset of mmap'able area within region */ 260b89485a5SPaolo Bonzini __u64 size; /* Size of mmap'able area */ 261b89485a5SPaolo Bonzini }; 262b89485a5SPaolo Bonzini 263b89485a5SPaolo Bonzini struct vfio_region_info_cap_sparse_mmap { 264b89485a5SPaolo Bonzini struct vfio_info_cap_header header; 265b89485a5SPaolo Bonzini __u32 nr_areas; 266b89485a5SPaolo Bonzini __u32 reserved; 267b89485a5SPaolo Bonzini struct vfio_region_sparse_mmap_area areas[]; 268b89485a5SPaolo Bonzini }; 269b89485a5SPaolo Bonzini 270b89485a5SPaolo Bonzini /* 271b89485a5SPaolo Bonzini * The device specific type capability allows regions unique to a specific 272b89485a5SPaolo Bonzini * device or class of devices to be exposed. This helps solve the problem for 273b89485a5SPaolo Bonzini * vfio bus drivers of defining which region indexes correspond to which region 274b89485a5SPaolo Bonzini * on the device, without needing to resort to static indexes, as done by 275b89485a5SPaolo Bonzini * vfio-pci. For instance, if we were to go back in time, we might remove 276b89485a5SPaolo Bonzini * VFIO_PCI_VGA_REGION_INDEX and let vfio-pci simply define that all indexes 277b89485a5SPaolo Bonzini * greater than or equal to VFIO_PCI_NUM_REGIONS are device specific and we'd 278b89485a5SPaolo Bonzini * make a "VGA" device specific type to describe the VGA access space. This 279b89485a5SPaolo Bonzini * means that non-VGA devices wouldn't need to waste this index, and thus the 280b89485a5SPaolo Bonzini * address space associated with it due to implementation of device file 281b89485a5SPaolo Bonzini * descriptor offsets in vfio-pci. 282b89485a5SPaolo Bonzini * 283b89485a5SPaolo Bonzini * The current implementation is now part of the user ABI, so we can't use this 284b89485a5SPaolo Bonzini * for VGA, but there are other upcoming use cases, such as opregions for Intel 285b89485a5SPaolo Bonzini * IGD devices and framebuffers for vGPU devices. We missed VGA, but we'll 286b89485a5SPaolo Bonzini * use this for future additions. 287b89485a5SPaolo Bonzini * 288b89485a5SPaolo Bonzini * The structure below defines version 1 of this capability. 289b89485a5SPaolo Bonzini */ 290b89485a5SPaolo Bonzini #define VFIO_REGION_INFO_CAP_TYPE 2 291b89485a5SPaolo Bonzini 292b89485a5SPaolo Bonzini struct vfio_region_info_cap_type { 293b89485a5SPaolo Bonzini struct vfio_info_cap_header header; 294b89485a5SPaolo Bonzini __u32 type; /* global per bus driver */ 295b89485a5SPaolo Bonzini __u32 subtype; /* type specific */ 296b89485a5SPaolo Bonzini }; 297b89485a5SPaolo Bonzini 298f363d039SEric Auger /* 299f363d039SEric Auger * List of region types, global per bus driver. 300f363d039SEric Auger * If you introduce a new type, please add it here. 301f363d039SEric Auger */ 302f363d039SEric Auger 303f363d039SEric Auger /* PCI region type containing a PCI vendor part */ 304b89485a5SPaolo Bonzini #define VFIO_REGION_TYPE_PCI_VENDOR_TYPE (1 << 31) 305b89485a5SPaolo Bonzini #define VFIO_REGION_TYPE_PCI_VENDOR_MASK (0xffff) 306f363d039SEric Auger #define VFIO_REGION_TYPE_GFX (1) 307f363d039SEric Auger #define VFIO_REGION_TYPE_CCW (2) 308b89485a5SPaolo Bonzini 309f363d039SEric Auger /* sub-types for VFIO_REGION_TYPE_PCI_* */ 310f363d039SEric Auger 311f363d039SEric Auger /* 8086 vendor PCI sub-types */ 312b89485a5SPaolo Bonzini #define VFIO_REGION_SUBTYPE_INTEL_IGD_OPREGION (1) 313b89485a5SPaolo Bonzini #define VFIO_REGION_SUBTYPE_INTEL_IGD_HOST_CFG (2) 314b89485a5SPaolo Bonzini #define VFIO_REGION_SUBTYPE_INTEL_IGD_LPC_CFG (3) 315b89485a5SPaolo Bonzini 316f363d039SEric Auger /* 10de vendor PCI sub-types */ 317f363d039SEric Auger /* 318f363d039SEric Auger * NVIDIA GPU NVlink2 RAM is coherent RAM mapped onto the host address space. 319f363d039SEric Auger */ 320f363d039SEric Auger #define VFIO_REGION_SUBTYPE_NVIDIA_NVLINK2_RAM (1) 321f363d039SEric Auger 322f363d039SEric Auger /* 1014 vendor PCI sub-types */ 323f363d039SEric Auger /* 324f363d039SEric Auger * IBM NPU NVlink2 ATSD (Address Translation Shootdown) register of NPU 325f363d039SEric Auger * to do TLB invalidation on a GPU. 326f363d039SEric Auger */ 327f363d039SEric Auger #define VFIO_REGION_SUBTYPE_IBM_NVLINK2_ATSD (1) 328f363d039SEric Auger 329f363d039SEric Auger /* sub-types for VFIO_REGION_TYPE_GFX */ 330da054c64SPaolo Bonzini #define VFIO_REGION_SUBTYPE_GFX_EDID (1) 331da054c64SPaolo Bonzini 332da054c64SPaolo Bonzini /** 333da054c64SPaolo Bonzini * struct vfio_region_gfx_edid - EDID region layout. 334da054c64SPaolo Bonzini * 335da054c64SPaolo Bonzini * Set display link state and EDID blob. 336da054c64SPaolo Bonzini * 337da054c64SPaolo Bonzini * The EDID blob has monitor information such as brand, name, serial 338da054c64SPaolo Bonzini * number, physical size, supported video modes and more. 339da054c64SPaolo Bonzini * 340da054c64SPaolo Bonzini * This special region allows userspace (typically qemu) set a virtual 341da054c64SPaolo Bonzini * EDID for the virtual monitor, which allows a flexible display 342da054c64SPaolo Bonzini * configuration. 343da054c64SPaolo Bonzini * 344da054c64SPaolo Bonzini * For the edid blob spec look here: 345da054c64SPaolo Bonzini * https://en.wikipedia.org/wiki/Extended_Display_Identification_Data 346da054c64SPaolo Bonzini * 347da054c64SPaolo Bonzini * On linux systems you can find the EDID blob in sysfs: 348da054c64SPaolo Bonzini * /sys/class/drm/${card}/${connector}/edid 349da054c64SPaolo Bonzini * 350da054c64SPaolo Bonzini * You can use the edid-decode ulility (comes with xorg-x11-utils) to 351da054c64SPaolo Bonzini * decode the EDID blob. 352da054c64SPaolo Bonzini * 353da054c64SPaolo Bonzini * @edid_offset: location of the edid blob, relative to the 354da054c64SPaolo Bonzini * start of the region (readonly). 355da054c64SPaolo Bonzini * @edid_max_size: max size of the edid blob (readonly). 356da054c64SPaolo Bonzini * @edid_size: actual edid size (read/write). 357da054c64SPaolo Bonzini * @link_state: display link state (read/write). 358da054c64SPaolo Bonzini * VFIO_DEVICE_GFX_LINK_STATE_UP: Monitor is turned on. 359da054c64SPaolo Bonzini * VFIO_DEVICE_GFX_LINK_STATE_DOWN: Monitor is turned off. 360da054c64SPaolo Bonzini * @max_xres: max display width (0 == no limitation, readonly). 361da054c64SPaolo Bonzini * @max_yres: max display height (0 == no limitation, readonly). 362da054c64SPaolo Bonzini * 363da054c64SPaolo Bonzini * EDID update protocol: 364da054c64SPaolo Bonzini * (1) set link-state to down. 365da054c64SPaolo Bonzini * (2) update edid blob and size. 366da054c64SPaolo Bonzini * (3) set link-state to up. 367da054c64SPaolo Bonzini */ 368da054c64SPaolo Bonzini struct vfio_region_gfx_edid { 369da054c64SPaolo Bonzini __u32 edid_offset; 370da054c64SPaolo Bonzini __u32 edid_max_size; 371da054c64SPaolo Bonzini __u32 edid_size; 372da054c64SPaolo Bonzini __u32 max_xres; 373da054c64SPaolo Bonzini __u32 max_yres; 374da054c64SPaolo Bonzini __u32 link_state; 375da054c64SPaolo Bonzini #define VFIO_DEVICE_GFX_LINK_STATE_UP 1 376da054c64SPaolo Bonzini #define VFIO_DEVICE_GFX_LINK_STATE_DOWN 2 377da054c64SPaolo Bonzini }; 378da054c64SPaolo Bonzini 379f363d039SEric Auger /* sub-types for VFIO_REGION_TYPE_CCW */ 380d9cb4336SCornelia Huck #define VFIO_REGION_SUBTYPE_CCW_ASYNC_CMD (1) 381d9cb4336SCornelia Huck 382da054c64SPaolo Bonzini /* 3839f2d175dSPaolo Bonzini * The MSIX mappable capability informs that MSIX data of a BAR can be mmapped 3849f2d175dSPaolo Bonzini * which allows direct access to non-MSIX registers which happened to be within 3859f2d175dSPaolo Bonzini * the same system page. 3869f2d175dSPaolo Bonzini * 3879f2d175dSPaolo Bonzini * Even though the userspace gets direct access to the MSIX data, the existing 3889f2d175dSPaolo Bonzini * VFIO_DEVICE_SET_IRQS interface must still be used for MSIX configuration. 3899f2d175dSPaolo Bonzini */ 3909f2d175dSPaolo Bonzini #define VFIO_REGION_INFO_CAP_MSIX_MAPPABLE 3 3919f2d175dSPaolo Bonzini 392da054c64SPaolo Bonzini /* 393da054c64SPaolo Bonzini * Capability with compressed real address (aka SSA - small system address) 394da054c64SPaolo Bonzini * where GPU RAM is mapped on a system bus. Used by a GPU for DMA routing 395da054c64SPaolo Bonzini * and by the userspace to associate a NVLink bridge with a GPU. 396da054c64SPaolo Bonzini */ 397da054c64SPaolo Bonzini #define VFIO_REGION_INFO_CAP_NVLINK2_SSATGT 4 398da054c64SPaolo Bonzini 399da054c64SPaolo Bonzini struct vfio_region_info_cap_nvlink2_ssatgt { 400da054c64SPaolo Bonzini struct vfio_info_cap_header header; 401da054c64SPaolo Bonzini __u64 tgt; 402da054c64SPaolo Bonzini }; 403da054c64SPaolo Bonzini 404da054c64SPaolo Bonzini /* 405da054c64SPaolo Bonzini * Capability with an NVLink link speed. The value is read by 406da054c64SPaolo Bonzini * the NVlink2 bridge driver from the bridge's "ibm,nvlink-speed" 407da054c64SPaolo Bonzini * property in the device tree. The value is fixed in the hardware 408da054c64SPaolo Bonzini * and failing to provide the correct value results in the link 409da054c64SPaolo Bonzini * not working with no indication from the driver why. 410da054c64SPaolo Bonzini */ 411da054c64SPaolo Bonzini #define VFIO_REGION_INFO_CAP_NVLINK2_LNKSPD 5 412da054c64SPaolo Bonzini 413da054c64SPaolo Bonzini struct vfio_region_info_cap_nvlink2_lnkspd { 414da054c64SPaolo Bonzini struct vfio_info_cap_header header; 415da054c64SPaolo Bonzini __u32 link_speed; 416da054c64SPaolo Bonzini __u32 __pad; 417da054c64SPaolo Bonzini }; 418da054c64SPaolo Bonzini 419883f0b85SAlex Williamson /** 420883f0b85SAlex Williamson * VFIO_DEVICE_GET_IRQ_INFO - _IOWR(VFIO_TYPE, VFIO_BASE + 9, 421883f0b85SAlex Williamson * struct vfio_irq_info) 422883f0b85SAlex Williamson * 423883f0b85SAlex Williamson * Retrieve information about a device IRQ. Caller provides 424883f0b85SAlex Williamson * struct vfio_irq_info with index value set. Caller sets argsz. 425883f0b85SAlex Williamson * Implementation of IRQ mapping is bus driver specific. Indexes 426883f0b85SAlex Williamson * using multiple IRQs are primarily intended to support MSI-like 427883f0b85SAlex Williamson * interrupt blocks. Zero count irq blocks may be used to describe 428883f0b85SAlex Williamson * unimplemented interrupt types. 429883f0b85SAlex Williamson * 430883f0b85SAlex Williamson * The EVENTFD flag indicates the interrupt index supports eventfd based 431883f0b85SAlex Williamson * signaling. 432883f0b85SAlex Williamson * 433883f0b85SAlex Williamson * The MASKABLE flags indicates the index supports MASK and UNMASK 434883f0b85SAlex Williamson * actions described below. 435883f0b85SAlex Williamson * 436883f0b85SAlex Williamson * AUTOMASKED indicates that after signaling, the interrupt line is 437883f0b85SAlex Williamson * automatically masked by VFIO and the user needs to unmask the line 438883f0b85SAlex Williamson * to receive new interrupts. This is primarily intended to distinguish 439883f0b85SAlex Williamson * level triggered interrupts. 440883f0b85SAlex Williamson * 441883f0b85SAlex Williamson * The NORESIZE flag indicates that the interrupt lines within the index 442883f0b85SAlex Williamson * are setup as a set and new subindexes cannot be enabled without first 443883f0b85SAlex Williamson * disabling the entire index. This is used for interrupts like PCI MSI 444883f0b85SAlex Williamson * and MSI-X where the driver may only use a subset of the available 445883f0b85SAlex Williamson * indexes, but VFIO needs to enable a specific number of vectors 446883f0b85SAlex Williamson * upfront. In the case of MSI-X, where the user can enable MSI-X and 447883f0b85SAlex Williamson * then add and unmask vectors, it's up to userspace to make the decision 448883f0b85SAlex Williamson * whether to allocate the maximum supported number of vectors or tear 449883f0b85SAlex Williamson * down setup and incrementally increase the vectors as each is enabled. 450883f0b85SAlex Williamson */ 451883f0b85SAlex Williamson struct vfio_irq_info { 452883f0b85SAlex Williamson __u32 argsz; 453883f0b85SAlex Williamson __u32 flags; 454883f0b85SAlex Williamson #define VFIO_IRQ_INFO_EVENTFD (1 << 0) 455883f0b85SAlex Williamson #define VFIO_IRQ_INFO_MASKABLE (1 << 1) 456883f0b85SAlex Williamson #define VFIO_IRQ_INFO_AUTOMASKED (1 << 2) 457883f0b85SAlex Williamson #define VFIO_IRQ_INFO_NORESIZE (1 << 3) 458883f0b85SAlex Williamson __u32 index; /* IRQ index */ 459883f0b85SAlex Williamson __u32 count; /* Number of IRQs within this index */ 460883f0b85SAlex Williamson }; 461883f0b85SAlex Williamson #define VFIO_DEVICE_GET_IRQ_INFO _IO(VFIO_TYPE, VFIO_BASE + 9) 462883f0b85SAlex Williamson 463883f0b85SAlex Williamson /** 464883f0b85SAlex Williamson * VFIO_DEVICE_SET_IRQS - _IOW(VFIO_TYPE, VFIO_BASE + 10, struct vfio_irq_set) 465883f0b85SAlex Williamson * 466883f0b85SAlex Williamson * Set signaling, masking, and unmasking of interrupts. Caller provides 467883f0b85SAlex Williamson * struct vfio_irq_set with all fields set. 'start' and 'count' indicate 468883f0b85SAlex Williamson * the range of subindexes being specified. 469883f0b85SAlex Williamson * 470883f0b85SAlex Williamson * The DATA flags specify the type of data provided. If DATA_NONE, the 471883f0b85SAlex Williamson * operation performs the specified action immediately on the specified 472883f0b85SAlex Williamson * interrupt(s). For example, to unmask AUTOMASKED interrupt [0,0]: 473883f0b85SAlex Williamson * flags = (DATA_NONE|ACTION_UNMASK), index = 0, start = 0, count = 1. 474883f0b85SAlex Williamson * 475883f0b85SAlex Williamson * DATA_BOOL allows sparse support for the same on arrays of interrupts. 476883f0b85SAlex Williamson * For example, to mask interrupts [0,1] and [0,3] (but not [0,2]): 477883f0b85SAlex Williamson * flags = (DATA_BOOL|ACTION_MASK), index = 0, start = 1, count = 3, 478883f0b85SAlex Williamson * data = {1,0,1} 479883f0b85SAlex Williamson * 480883f0b85SAlex Williamson * DATA_EVENTFD binds the specified ACTION to the provided __s32 eventfd. 481883f0b85SAlex Williamson * A value of -1 can be used to either de-assign interrupts if already 482883f0b85SAlex Williamson * assigned or skip un-assigned interrupts. For example, to set an eventfd 483883f0b85SAlex Williamson * to be trigger for interrupts [0,0] and [0,2]: 484883f0b85SAlex Williamson * flags = (DATA_EVENTFD|ACTION_TRIGGER), index = 0, start = 0, count = 3, 485883f0b85SAlex Williamson * data = {fd1, -1, fd2} 486883f0b85SAlex Williamson * If index [0,1] is previously set, two count = 1 ioctls calls would be 487883f0b85SAlex Williamson * required to set [0,0] and [0,2] without changing [0,1]. 488883f0b85SAlex Williamson * 489883f0b85SAlex Williamson * Once a signaling mechanism is set, DATA_BOOL or DATA_NONE can be used 490883f0b85SAlex Williamson * with ACTION_TRIGGER to perform kernel level interrupt loopback testing 491883f0b85SAlex Williamson * from userspace (ie. simulate hardware triggering). 492883f0b85SAlex Williamson * 493883f0b85SAlex Williamson * Setting of an event triggering mechanism to userspace for ACTION_TRIGGER 494883f0b85SAlex Williamson * enables the interrupt index for the device. Individual subindex interrupts 495883f0b85SAlex Williamson * can be disabled using the -1 value for DATA_EVENTFD or the index can be 496883f0b85SAlex Williamson * disabled as a whole with: flags = (DATA_NONE|ACTION_TRIGGER), count = 0. 497883f0b85SAlex Williamson * 498883f0b85SAlex Williamson * Note that ACTION_[UN]MASK specify user->kernel signaling (irqfds) while 499883f0b85SAlex Williamson * ACTION_TRIGGER specifies kernel->user signaling. 500883f0b85SAlex Williamson */ 501883f0b85SAlex Williamson struct vfio_irq_set { 502883f0b85SAlex Williamson __u32 argsz; 503883f0b85SAlex Williamson __u32 flags; 504883f0b85SAlex Williamson #define VFIO_IRQ_SET_DATA_NONE (1 << 0) /* Data not present */ 505883f0b85SAlex Williamson #define VFIO_IRQ_SET_DATA_BOOL (1 << 1) /* Data is bool (u8) */ 506883f0b85SAlex Williamson #define VFIO_IRQ_SET_DATA_EVENTFD (1 << 2) /* Data is eventfd (s32) */ 507883f0b85SAlex Williamson #define VFIO_IRQ_SET_ACTION_MASK (1 << 3) /* Mask interrupt */ 508883f0b85SAlex Williamson #define VFIO_IRQ_SET_ACTION_UNMASK (1 << 4) /* Unmask interrupt */ 509883f0b85SAlex Williamson #define VFIO_IRQ_SET_ACTION_TRIGGER (1 << 5) /* Trigger interrupt */ 510883f0b85SAlex Williamson __u32 index; 511883f0b85SAlex Williamson __u32 start; 512883f0b85SAlex Williamson __u32 count; 513883f0b85SAlex Williamson __u8 data[]; 514883f0b85SAlex Williamson }; 515883f0b85SAlex Williamson #define VFIO_DEVICE_SET_IRQS _IO(VFIO_TYPE, VFIO_BASE + 10) 516883f0b85SAlex Williamson 517883f0b85SAlex Williamson #define VFIO_IRQ_SET_DATA_TYPE_MASK (VFIO_IRQ_SET_DATA_NONE | \ 518883f0b85SAlex Williamson VFIO_IRQ_SET_DATA_BOOL | \ 519883f0b85SAlex Williamson VFIO_IRQ_SET_DATA_EVENTFD) 520883f0b85SAlex Williamson #define VFIO_IRQ_SET_ACTION_TYPE_MASK (VFIO_IRQ_SET_ACTION_MASK | \ 521883f0b85SAlex Williamson VFIO_IRQ_SET_ACTION_UNMASK | \ 522883f0b85SAlex Williamson VFIO_IRQ_SET_ACTION_TRIGGER) 523883f0b85SAlex Williamson /** 524883f0b85SAlex Williamson * VFIO_DEVICE_RESET - _IO(VFIO_TYPE, VFIO_BASE + 11) 525883f0b85SAlex Williamson * 526883f0b85SAlex Williamson * Reset a device. 527883f0b85SAlex Williamson */ 528883f0b85SAlex Williamson #define VFIO_DEVICE_RESET _IO(VFIO_TYPE, VFIO_BASE + 11) 529883f0b85SAlex Williamson 530883f0b85SAlex Williamson /* 531883f0b85SAlex Williamson * The VFIO-PCI bus driver makes use of the following fixed region and 532883f0b85SAlex Williamson * IRQ index mapping. Unimplemented regions return a size of zero. 533883f0b85SAlex Williamson * Unimplemented IRQ types return a count of zero. 534883f0b85SAlex Williamson */ 535883f0b85SAlex Williamson 536883f0b85SAlex Williamson enum { 537883f0b85SAlex Williamson VFIO_PCI_BAR0_REGION_INDEX, 538883f0b85SAlex Williamson VFIO_PCI_BAR1_REGION_INDEX, 539883f0b85SAlex Williamson VFIO_PCI_BAR2_REGION_INDEX, 540883f0b85SAlex Williamson VFIO_PCI_BAR3_REGION_INDEX, 541883f0b85SAlex Williamson VFIO_PCI_BAR4_REGION_INDEX, 542883f0b85SAlex Williamson VFIO_PCI_BAR5_REGION_INDEX, 543883f0b85SAlex Williamson VFIO_PCI_ROM_REGION_INDEX, 544883f0b85SAlex Williamson VFIO_PCI_CONFIG_REGION_INDEX, 545010ca0b3SAlex Williamson /* 546010ca0b3SAlex Williamson * Expose VGA regions defined for PCI base class 03, subclass 00. 547010ca0b3SAlex Williamson * This includes I/O port ranges 0x3b0 to 0x3bb and 0x3c0 to 0x3df 548010ca0b3SAlex Williamson * as well as the MMIO range 0xa0000 to 0xbffff. Each implemented 549010ca0b3SAlex Williamson * range is found at it's identity mapped offset from the region 550010ca0b3SAlex Williamson * offset, for example 0x3b0 is region_info.offset + 0x3b0. Areas 551010ca0b3SAlex Williamson * between described ranges are unimplemented. 552010ca0b3SAlex Williamson */ 553010ca0b3SAlex Williamson VFIO_PCI_VGA_REGION_INDEX, 554b89485a5SPaolo Bonzini VFIO_PCI_NUM_REGIONS = 9 /* Fixed user ABI, region indexes >=9 use */ 555b89485a5SPaolo Bonzini /* device specific cap to define content. */ 556883f0b85SAlex Williamson }; 557883f0b85SAlex Williamson 558883f0b85SAlex Williamson enum { 559883f0b85SAlex Williamson VFIO_PCI_INTX_IRQ_INDEX, 560883f0b85SAlex Williamson VFIO_PCI_MSI_IRQ_INDEX, 561883f0b85SAlex Williamson VFIO_PCI_MSIX_IRQ_INDEX, 562e098b453SAlexey Kardashevskiy VFIO_PCI_ERR_IRQ_INDEX, 56347cbe50cSAlex Williamson VFIO_PCI_REQ_IRQ_INDEX, 564883f0b85SAlex Williamson VFIO_PCI_NUM_IRQS 565883f0b85SAlex Williamson }; 566883f0b85SAlex Williamson 56774c98e20SCornelia Huck /* 56874c98e20SCornelia Huck * The vfio-ccw bus driver makes use of the following fixed region and 56974c98e20SCornelia Huck * IRQ index mapping. Unimplemented regions return a size of zero. 57074c98e20SCornelia Huck * Unimplemented IRQ types return a count of zero. 57174c98e20SCornelia Huck */ 57274c98e20SCornelia Huck 57374c98e20SCornelia Huck enum { 57474c98e20SCornelia Huck VFIO_CCW_CONFIG_REGION_INDEX, 57574c98e20SCornelia Huck VFIO_CCW_NUM_REGIONS 57674c98e20SCornelia Huck }; 57774c98e20SCornelia Huck 57874c98e20SCornelia Huck enum { 57974c98e20SCornelia Huck VFIO_CCW_IO_IRQ_INDEX, 58074c98e20SCornelia Huck VFIO_CCW_NUM_IRQS 58174c98e20SCornelia Huck }; 58274c98e20SCornelia Huck 5834f265607SAndrew Jones /** 5844f265607SAndrew Jones * VFIO_DEVICE_GET_PCI_HOT_RESET_INFO - _IORW(VFIO_TYPE, VFIO_BASE + 12, 5854f265607SAndrew Jones * struct vfio_pci_hot_reset_info) 5864f265607SAndrew Jones * 5874f265607SAndrew Jones * Return: 0 on success, -errno on failure: 5884f265607SAndrew Jones * -enospc = insufficient buffer, -enodev = unsupported for device. 5894f265607SAndrew Jones */ 5904f265607SAndrew Jones struct vfio_pci_dependent_device { 5914f265607SAndrew Jones __u32 group_id; 5924f265607SAndrew Jones __u16 segment; 5934f265607SAndrew Jones __u8 bus; 5944f265607SAndrew Jones __u8 devfn; /* Use PCI_SLOT/PCI_FUNC */ 5954f265607SAndrew Jones }; 5964f265607SAndrew Jones 5974f265607SAndrew Jones struct vfio_pci_hot_reset_info { 5984f265607SAndrew Jones __u32 argsz; 5994f265607SAndrew Jones __u32 flags; 6004f265607SAndrew Jones __u32 count; 6014f265607SAndrew Jones struct vfio_pci_dependent_device devices[]; 6024f265607SAndrew Jones }; 6034f265607SAndrew Jones 6044f265607SAndrew Jones #define VFIO_DEVICE_GET_PCI_HOT_RESET_INFO _IO(VFIO_TYPE, VFIO_BASE + 12) 6054f265607SAndrew Jones 6064f265607SAndrew Jones /** 6074f265607SAndrew Jones * VFIO_DEVICE_PCI_HOT_RESET - _IOW(VFIO_TYPE, VFIO_BASE + 13, 6084f265607SAndrew Jones * struct vfio_pci_hot_reset) 6094f265607SAndrew Jones * 6104f265607SAndrew Jones * Return: 0 on success, -errno on failure. 6114f265607SAndrew Jones */ 6124f265607SAndrew Jones struct vfio_pci_hot_reset { 6134f265607SAndrew Jones __u32 argsz; 6144f265607SAndrew Jones __u32 flags; 6154f265607SAndrew Jones __u32 count; 6164f265607SAndrew Jones __s32 group_fds[]; 6174f265607SAndrew Jones }; 6184f265607SAndrew Jones 6194f265607SAndrew Jones #define VFIO_DEVICE_PCI_HOT_RESET _IO(VFIO_TYPE, VFIO_BASE + 13) 6204f265607SAndrew Jones 6219f2d175dSPaolo Bonzini /** 6229f2d175dSPaolo Bonzini * VFIO_DEVICE_QUERY_GFX_PLANE - _IOW(VFIO_TYPE, VFIO_BASE + 14, 6239f2d175dSPaolo Bonzini * struct vfio_device_query_gfx_plane) 6249f2d175dSPaolo Bonzini * 6259f2d175dSPaolo Bonzini * Set the drm_plane_type and flags, then retrieve the gfx plane info. 6269f2d175dSPaolo Bonzini * 6279f2d175dSPaolo Bonzini * flags supported: 6289f2d175dSPaolo Bonzini * - VFIO_GFX_PLANE_TYPE_PROBE and VFIO_GFX_PLANE_TYPE_DMABUF are set 6299f2d175dSPaolo Bonzini * to ask if the mdev supports dma-buf. 0 on support, -EINVAL on no 6309f2d175dSPaolo Bonzini * support for dma-buf. 6319f2d175dSPaolo Bonzini * - VFIO_GFX_PLANE_TYPE_PROBE and VFIO_GFX_PLANE_TYPE_REGION are set 6329f2d175dSPaolo Bonzini * to ask if the mdev supports region. 0 on support, -EINVAL on no 6339f2d175dSPaolo Bonzini * support for region. 6349f2d175dSPaolo Bonzini * - VFIO_GFX_PLANE_TYPE_DMABUF or VFIO_GFX_PLANE_TYPE_REGION is set 6359f2d175dSPaolo Bonzini * with each call to query the plane info. 6369f2d175dSPaolo Bonzini * - Others are invalid and return -EINVAL. 6379f2d175dSPaolo Bonzini * 6389f2d175dSPaolo Bonzini * Note: 6399f2d175dSPaolo Bonzini * 1. Plane could be disabled by guest. In that case, success will be 6409f2d175dSPaolo Bonzini * returned with zero-initialized drm_format, size, width and height 6419f2d175dSPaolo Bonzini * fields. 6429f2d175dSPaolo Bonzini * 2. x_hot/y_hot is set to 0xFFFFFFFF if no hotspot information available 6439f2d175dSPaolo Bonzini * 6449f2d175dSPaolo Bonzini * Return: 0 on success, -errno on other failure. 6459f2d175dSPaolo Bonzini */ 6469f2d175dSPaolo Bonzini struct vfio_device_gfx_plane_info { 6479f2d175dSPaolo Bonzini __u32 argsz; 6489f2d175dSPaolo Bonzini __u32 flags; 6499f2d175dSPaolo Bonzini #define VFIO_GFX_PLANE_TYPE_PROBE (1 << 0) 6509f2d175dSPaolo Bonzini #define VFIO_GFX_PLANE_TYPE_DMABUF (1 << 1) 6519f2d175dSPaolo Bonzini #define VFIO_GFX_PLANE_TYPE_REGION (1 << 2) 6529f2d175dSPaolo Bonzini /* in */ 6539f2d175dSPaolo Bonzini __u32 drm_plane_type; /* type of plane: DRM_PLANE_TYPE_* */ 6549f2d175dSPaolo Bonzini /* out */ 6559f2d175dSPaolo Bonzini __u32 drm_format; /* drm format of plane */ 6569f2d175dSPaolo Bonzini __u64 drm_format_mod; /* tiled mode */ 6579f2d175dSPaolo Bonzini __u32 width; /* width of plane */ 6589f2d175dSPaolo Bonzini __u32 height; /* height of plane */ 6599f2d175dSPaolo Bonzini __u32 stride; /* stride of plane */ 6609f2d175dSPaolo Bonzini __u32 size; /* size of plane in bytes, align on page*/ 6619f2d175dSPaolo Bonzini __u32 x_pos; /* horizontal position of cursor plane */ 6629f2d175dSPaolo Bonzini __u32 y_pos; /* vertical position of cursor plane*/ 6639f2d175dSPaolo Bonzini __u32 x_hot; /* horizontal position of cursor hotspot */ 6649f2d175dSPaolo Bonzini __u32 y_hot; /* vertical position of cursor hotspot */ 6659f2d175dSPaolo Bonzini union { 6669f2d175dSPaolo Bonzini __u32 region_index; /* region index */ 6679f2d175dSPaolo Bonzini __u32 dmabuf_id; /* dma-buf id */ 6689f2d175dSPaolo Bonzini }; 6699f2d175dSPaolo Bonzini }; 6709f2d175dSPaolo Bonzini 6719f2d175dSPaolo Bonzini #define VFIO_DEVICE_QUERY_GFX_PLANE _IO(VFIO_TYPE, VFIO_BASE + 14) 6729f2d175dSPaolo Bonzini 6739f2d175dSPaolo Bonzini /** 6749f2d175dSPaolo Bonzini * VFIO_DEVICE_GET_GFX_DMABUF - _IOW(VFIO_TYPE, VFIO_BASE + 15, __u32) 6759f2d175dSPaolo Bonzini * 6769f2d175dSPaolo Bonzini * Return a new dma-buf file descriptor for an exposed guest framebuffer 6779f2d175dSPaolo Bonzini * described by the provided dmabuf_id. The dmabuf_id is returned from VFIO_ 6789f2d175dSPaolo Bonzini * DEVICE_QUERY_GFX_PLANE as a token of the exposed guest framebuffer. 6799f2d175dSPaolo Bonzini */ 6809f2d175dSPaolo Bonzini 6819f2d175dSPaolo Bonzini #define VFIO_DEVICE_GET_GFX_DMABUF _IO(VFIO_TYPE, VFIO_BASE + 15) 6829f2d175dSPaolo Bonzini 68365a6d8ddSPeter Maydell /** 68465a6d8ddSPeter Maydell * VFIO_DEVICE_IOEVENTFD - _IOW(VFIO_TYPE, VFIO_BASE + 16, 68565a6d8ddSPeter Maydell * struct vfio_device_ioeventfd) 68665a6d8ddSPeter Maydell * 68765a6d8ddSPeter Maydell * Perform a write to the device at the specified device fd offset, with 68865a6d8ddSPeter Maydell * the specified data and width when the provided eventfd is triggered. 68965a6d8ddSPeter Maydell * vfio bus drivers may not support this for all regions, for all widths, 69065a6d8ddSPeter Maydell * or at all. vfio-pci currently only enables support for BAR regions, 69165a6d8ddSPeter Maydell * excluding the MSI-X vector table. 69265a6d8ddSPeter Maydell * 69365a6d8ddSPeter Maydell * Return: 0 on success, -errno on failure. 69465a6d8ddSPeter Maydell */ 69565a6d8ddSPeter Maydell struct vfio_device_ioeventfd { 69665a6d8ddSPeter Maydell __u32 argsz; 69765a6d8ddSPeter Maydell __u32 flags; 69865a6d8ddSPeter Maydell #define VFIO_DEVICE_IOEVENTFD_8 (1 << 0) /* 1-byte write */ 69965a6d8ddSPeter Maydell #define VFIO_DEVICE_IOEVENTFD_16 (1 << 1) /* 2-byte write */ 70065a6d8ddSPeter Maydell #define VFIO_DEVICE_IOEVENTFD_32 (1 << 2) /* 4-byte write */ 70165a6d8ddSPeter Maydell #define VFIO_DEVICE_IOEVENTFD_64 (1 << 3) /* 8-byte write */ 70265a6d8ddSPeter Maydell #define VFIO_DEVICE_IOEVENTFD_SIZE_MASK (0xf) 70365a6d8ddSPeter Maydell __u64 offset; /* device fd offset of write */ 70465a6d8ddSPeter Maydell __u64 data; /* data to be written */ 70565a6d8ddSPeter Maydell __s32 fd; /* -1 for de-assignment */ 70665a6d8ddSPeter Maydell }; 70765a6d8ddSPeter Maydell 70865a6d8ddSPeter Maydell #define VFIO_DEVICE_IOEVENTFD _IO(VFIO_TYPE, VFIO_BASE + 16) 70965a6d8ddSPeter Maydell 710*dc6f8d45SCornelia Huck /** 711*dc6f8d45SCornelia Huck * VFIO_DEVICE_FEATURE - _IORW(VFIO_TYPE, VFIO_BASE + 17, 712*dc6f8d45SCornelia Huck * struct vfio_device_feature) 713*dc6f8d45SCornelia Huck * 714*dc6f8d45SCornelia Huck * Get, set, or probe feature data of the device. The feature is selected 715*dc6f8d45SCornelia Huck * using the FEATURE_MASK portion of the flags field. Support for a feature 716*dc6f8d45SCornelia Huck * can be probed by setting both the FEATURE_MASK and PROBE bits. A probe 717*dc6f8d45SCornelia Huck * may optionally include the GET and/or SET bits to determine read vs write 718*dc6f8d45SCornelia Huck * access of the feature respectively. Probing a feature will return success 719*dc6f8d45SCornelia Huck * if the feature is supported and all of the optionally indicated GET/SET 720*dc6f8d45SCornelia Huck * methods are supported. The format of the data portion of the structure is 721*dc6f8d45SCornelia Huck * specific to the given feature. The data portion is not required for 722*dc6f8d45SCornelia Huck * probing. GET and SET are mutually exclusive, except for use with PROBE. 723*dc6f8d45SCornelia Huck * 724*dc6f8d45SCornelia Huck * Return 0 on success, -errno on failure. 725*dc6f8d45SCornelia Huck */ 726*dc6f8d45SCornelia Huck struct vfio_device_feature { 727*dc6f8d45SCornelia Huck __u32 argsz; 728*dc6f8d45SCornelia Huck __u32 flags; 729*dc6f8d45SCornelia Huck #define VFIO_DEVICE_FEATURE_MASK (0xffff) /* 16-bit feature index */ 730*dc6f8d45SCornelia Huck #define VFIO_DEVICE_FEATURE_GET (1 << 16) /* Get feature into data[] */ 731*dc6f8d45SCornelia Huck #define VFIO_DEVICE_FEATURE_SET (1 << 17) /* Set feature from data[] */ 732*dc6f8d45SCornelia Huck #define VFIO_DEVICE_FEATURE_PROBE (1 << 18) /* Probe feature support */ 733*dc6f8d45SCornelia Huck __u8 data[]; 734*dc6f8d45SCornelia Huck }; 735*dc6f8d45SCornelia Huck 736*dc6f8d45SCornelia Huck #define VFIO_DEVICE_FEATURE _IO(VFIO_TYPE, VFIO_BASE + 17) 737*dc6f8d45SCornelia Huck 738*dc6f8d45SCornelia Huck /* 739*dc6f8d45SCornelia Huck * Provide support for setting a PCI VF Token, which is used as a shared 740*dc6f8d45SCornelia Huck * secret between PF and VF drivers. This feature may only be set on a 741*dc6f8d45SCornelia Huck * PCI SR-IOV PF when SR-IOV is enabled on the PF and there are no existing 742*dc6f8d45SCornelia Huck * open VFs. Data provided when setting this feature is a 16-byte array 743*dc6f8d45SCornelia Huck * (__u8 b[16]), representing a UUID. 744*dc6f8d45SCornelia Huck */ 745*dc6f8d45SCornelia Huck #define VFIO_DEVICE_FEATURE_PCI_VF_TOKEN (0) 746*dc6f8d45SCornelia Huck 747883f0b85SAlex Williamson /* -------- API for Type1 VFIO IOMMU -------- */ 748883f0b85SAlex Williamson 749883f0b85SAlex Williamson /** 750883f0b85SAlex Williamson * VFIO_IOMMU_GET_INFO - _IOR(VFIO_TYPE, VFIO_BASE + 12, struct vfio_iommu_info) 751883f0b85SAlex Williamson * 752883f0b85SAlex Williamson * Retrieve information about the IOMMU object. Fills in provided 753883f0b85SAlex Williamson * struct vfio_iommu_info. Caller sets argsz. 754883f0b85SAlex Williamson * 755883f0b85SAlex Williamson * XXX Should we do these by CHECK_EXTENSION too? 756883f0b85SAlex Williamson */ 757883f0b85SAlex Williamson struct vfio_iommu_type1_info { 758883f0b85SAlex Williamson __u32 argsz; 759883f0b85SAlex Williamson __u32 flags; 760883f0b85SAlex Williamson #define VFIO_IOMMU_INFO_PGSIZES (1 << 0) /* supported page sizes info */ 761f363d039SEric Auger #define VFIO_IOMMU_INFO_CAPS (1 << 1) /* Info supports caps */ 762883f0b85SAlex Williamson __u64 iova_pgsizes; /* Bitmap of supported page sizes */ 763f363d039SEric Auger __u32 cap_offset; /* Offset within info struct of first cap */ 764f363d039SEric Auger }; 765f363d039SEric Auger 766f363d039SEric Auger /* 767f363d039SEric Auger * The IOVA capability allows to report the valid IOVA range(s) 768f363d039SEric Auger * excluding any non-relaxable reserved regions exposed by 769f363d039SEric Auger * devices attached to the container. Any DMA map attempt 770f363d039SEric Auger * outside the valid iova range will return error. 771f363d039SEric Auger * 772f363d039SEric Auger * The structures below define version 1 of this capability. 773f363d039SEric Auger */ 774f363d039SEric Auger #define VFIO_IOMMU_TYPE1_INFO_CAP_IOVA_RANGE 1 775f363d039SEric Auger 776f363d039SEric Auger struct vfio_iova_range { 777f363d039SEric Auger __u64 start; 778f363d039SEric Auger __u64 end; 779f363d039SEric Auger }; 780f363d039SEric Auger 781f363d039SEric Auger struct vfio_iommu_type1_info_cap_iova_range { 782f363d039SEric Auger struct vfio_info_cap_header header; 783f363d039SEric Auger __u32 nr_iovas; 784f363d039SEric Auger __u32 reserved; 785f363d039SEric Auger struct vfio_iova_range iova_ranges[]; 786883f0b85SAlex Williamson }; 787883f0b85SAlex Williamson 788883f0b85SAlex Williamson #define VFIO_IOMMU_GET_INFO _IO(VFIO_TYPE, VFIO_BASE + 12) 789883f0b85SAlex Williamson 790883f0b85SAlex Williamson /** 791883f0b85SAlex Williamson * VFIO_IOMMU_MAP_DMA - _IOW(VFIO_TYPE, VFIO_BASE + 13, struct vfio_dma_map) 792883f0b85SAlex Williamson * 793883f0b85SAlex Williamson * Map process virtual addresses to IO virtual addresses using the 794883f0b85SAlex Williamson * provided struct vfio_dma_map. Caller sets argsz. READ &/ WRITE required. 795883f0b85SAlex Williamson */ 796883f0b85SAlex Williamson struct vfio_iommu_type1_dma_map { 797883f0b85SAlex Williamson __u32 argsz; 798883f0b85SAlex Williamson __u32 flags; 799883f0b85SAlex Williamson #define VFIO_DMA_MAP_FLAG_READ (1 << 0) /* readable from device */ 800883f0b85SAlex Williamson #define VFIO_DMA_MAP_FLAG_WRITE (1 << 1) /* writable from device */ 801883f0b85SAlex Williamson __u64 vaddr; /* Process virtual address */ 802883f0b85SAlex Williamson __u64 iova; /* IO virtual address */ 803883f0b85SAlex Williamson __u64 size; /* Size of mapping (bytes) */ 804883f0b85SAlex Williamson }; 805883f0b85SAlex Williamson 806883f0b85SAlex Williamson #define VFIO_IOMMU_MAP_DMA _IO(VFIO_TYPE, VFIO_BASE + 13) 807883f0b85SAlex Williamson 808883f0b85SAlex Williamson /** 809c5daeae1SAlexey Kardashevskiy * VFIO_IOMMU_UNMAP_DMA - _IOWR(VFIO_TYPE, VFIO_BASE + 14, 810c5daeae1SAlexey Kardashevskiy * struct vfio_dma_unmap) 811883f0b85SAlex Williamson * 812883f0b85SAlex Williamson * Unmap IO virtual addresses using the provided struct vfio_dma_unmap. 813c5daeae1SAlexey Kardashevskiy * Caller sets argsz. The actual unmapped size is returned in the size 814c5daeae1SAlexey Kardashevskiy * field. No guarantee is made to the user that arbitrary unmaps of iova 815c5daeae1SAlexey Kardashevskiy * or size different from those used in the original mapping call will 816c5daeae1SAlexey Kardashevskiy * succeed. 817883f0b85SAlex Williamson */ 818883f0b85SAlex Williamson struct vfio_iommu_type1_dma_unmap { 819883f0b85SAlex Williamson __u32 argsz; 820883f0b85SAlex Williamson __u32 flags; 821883f0b85SAlex Williamson __u64 iova; /* IO virtual address */ 822883f0b85SAlex Williamson __u64 size; /* Size of mapping (bytes) */ 823883f0b85SAlex Williamson }; 824883f0b85SAlex Williamson 825883f0b85SAlex Williamson #define VFIO_IOMMU_UNMAP_DMA _IO(VFIO_TYPE, VFIO_BASE + 14) 826883f0b85SAlex Williamson 827c5daeae1SAlexey Kardashevskiy /* 828c5daeae1SAlexey Kardashevskiy * IOCTLs to enable/disable IOMMU container usage. 829c5daeae1SAlexey Kardashevskiy * No parameters are supported. 830c5daeae1SAlexey Kardashevskiy */ 831c5daeae1SAlexey Kardashevskiy #define VFIO_IOMMU_ENABLE _IO(VFIO_TYPE, VFIO_BASE + 15) 832c5daeae1SAlexey Kardashevskiy #define VFIO_IOMMU_DISABLE _IO(VFIO_TYPE, VFIO_BASE + 16) 833c5daeae1SAlexey Kardashevskiy 834c5daeae1SAlexey Kardashevskiy /* -------- Additional API for SPAPR TCE (Server POWERPC) IOMMU -------- */ 835c5daeae1SAlexey Kardashevskiy 836c5daeae1SAlexey Kardashevskiy /* 83725b8b39bSAlexey Kardashevskiy * The SPAPR TCE DDW info struct provides the information about 83825b8b39bSAlexey Kardashevskiy * the details of Dynamic DMA window capability. 83925b8b39bSAlexey Kardashevskiy * 84025b8b39bSAlexey Kardashevskiy * @pgsizes contains a page size bitmask, 4K/64K/16M are supported. 84125b8b39bSAlexey Kardashevskiy * @max_dynamic_windows_supported tells the maximum number of windows 84225b8b39bSAlexey Kardashevskiy * which the platform can create. 84325b8b39bSAlexey Kardashevskiy * @levels tells the maximum number of levels in multi-level IOMMU tables; 84425b8b39bSAlexey Kardashevskiy * this allows splitting a table into smaller chunks which reduces 84525b8b39bSAlexey Kardashevskiy * the amount of physically contiguous memory required for the table. 84625b8b39bSAlexey Kardashevskiy */ 84725b8b39bSAlexey Kardashevskiy struct vfio_iommu_spapr_tce_ddw_info { 84825b8b39bSAlexey Kardashevskiy __u64 pgsizes; /* Bitmap of supported page sizes */ 84925b8b39bSAlexey Kardashevskiy __u32 max_dynamic_windows_supported; 85025b8b39bSAlexey Kardashevskiy __u32 levels; 85125b8b39bSAlexey Kardashevskiy }; 85225b8b39bSAlexey Kardashevskiy 85325b8b39bSAlexey Kardashevskiy /* 854c5daeae1SAlexey Kardashevskiy * The SPAPR TCE info struct provides the information about the PCI bus 855c5daeae1SAlexey Kardashevskiy * address ranges available for DMA, these values are programmed into 856c5daeae1SAlexey Kardashevskiy * the hardware so the guest has to know that information. 857c5daeae1SAlexey Kardashevskiy * 858c5daeae1SAlexey Kardashevskiy * The DMA 32 bit window start is an absolute PCI bus address. 859c5daeae1SAlexey Kardashevskiy * The IOVA address passed via map/unmap ioctls are absolute PCI bus 860c5daeae1SAlexey Kardashevskiy * addresses too so the window works as a filter rather than an offset 861c5daeae1SAlexey Kardashevskiy * for IOVA addresses. 862c5daeae1SAlexey Kardashevskiy * 86325b8b39bSAlexey Kardashevskiy * Flags supported: 86425b8b39bSAlexey Kardashevskiy * - VFIO_IOMMU_SPAPR_INFO_DDW: informs the userspace that dynamic DMA windows 86525b8b39bSAlexey Kardashevskiy * (DDW) support is present. @ddw is only supported when DDW is present. 866c5daeae1SAlexey Kardashevskiy */ 867c5daeae1SAlexey Kardashevskiy struct vfio_iommu_spapr_tce_info { 868c5daeae1SAlexey Kardashevskiy __u32 argsz; 86925b8b39bSAlexey Kardashevskiy __u32 flags; 87025b8b39bSAlexey Kardashevskiy #define VFIO_IOMMU_SPAPR_INFO_DDW (1 << 0) /* DDW supported */ 871c5daeae1SAlexey Kardashevskiy __u32 dma32_window_start; /* 32 bit window start (bytes) */ 872c5daeae1SAlexey Kardashevskiy __u32 dma32_window_size; /* 32 bit window size (bytes) */ 87325b8b39bSAlexey Kardashevskiy struct vfio_iommu_spapr_tce_ddw_info ddw; 874c5daeae1SAlexey Kardashevskiy }; 875c5daeae1SAlexey Kardashevskiy 876c5daeae1SAlexey Kardashevskiy #define VFIO_IOMMU_SPAPR_TCE_GET_INFO _IO(VFIO_TYPE, VFIO_BASE + 12) 877c5daeae1SAlexey Kardashevskiy 878a9fd1654SJens Freimann /* 879a9fd1654SJens Freimann * EEH PE operation struct provides ways to: 880a9fd1654SJens Freimann * - enable/disable EEH functionality; 881a9fd1654SJens Freimann * - unfreeze IO/DMA for frozen PE; 882a9fd1654SJens Freimann * - read PE state; 883a9fd1654SJens Freimann * - reset PE; 88425b8b39bSAlexey Kardashevskiy * - configure PE; 88525b8b39bSAlexey Kardashevskiy * - inject EEH error. 886a9fd1654SJens Freimann */ 88725b8b39bSAlexey Kardashevskiy struct vfio_eeh_pe_err { 88825b8b39bSAlexey Kardashevskiy __u32 type; 88925b8b39bSAlexey Kardashevskiy __u32 func; 89025b8b39bSAlexey Kardashevskiy __u64 addr; 89125b8b39bSAlexey Kardashevskiy __u64 mask; 89225b8b39bSAlexey Kardashevskiy }; 89325b8b39bSAlexey Kardashevskiy 894a9fd1654SJens Freimann struct vfio_eeh_pe_op { 895a9fd1654SJens Freimann __u32 argsz; 896a9fd1654SJens Freimann __u32 flags; 897a9fd1654SJens Freimann __u32 op; 89825b8b39bSAlexey Kardashevskiy union { 89925b8b39bSAlexey Kardashevskiy struct vfio_eeh_pe_err err; 90025b8b39bSAlexey Kardashevskiy }; 901a9fd1654SJens Freimann }; 902a9fd1654SJens Freimann 903a9fd1654SJens Freimann #define VFIO_EEH_PE_DISABLE 0 /* Disable EEH functionality */ 904a9fd1654SJens Freimann #define VFIO_EEH_PE_ENABLE 1 /* Enable EEH functionality */ 905a9fd1654SJens Freimann #define VFIO_EEH_PE_UNFREEZE_IO 2 /* Enable IO for frozen PE */ 906a9fd1654SJens Freimann #define VFIO_EEH_PE_UNFREEZE_DMA 3 /* Enable DMA for frozen PE */ 907a9fd1654SJens Freimann #define VFIO_EEH_PE_GET_STATE 4 /* PE state retrieval */ 908a9fd1654SJens Freimann #define VFIO_EEH_PE_STATE_NORMAL 0 /* PE in functional state */ 909a9fd1654SJens Freimann #define VFIO_EEH_PE_STATE_RESET 1 /* PE reset in progress */ 910a9fd1654SJens Freimann #define VFIO_EEH_PE_STATE_STOPPED 2 /* Stopped DMA and IO */ 911a9fd1654SJens Freimann #define VFIO_EEH_PE_STATE_STOPPED_DMA 4 /* Stopped DMA only */ 912a9fd1654SJens Freimann #define VFIO_EEH_PE_STATE_UNAVAIL 5 /* State unavailable */ 913a9fd1654SJens Freimann #define VFIO_EEH_PE_RESET_DEACTIVATE 5 /* Deassert PE reset */ 914a9fd1654SJens Freimann #define VFIO_EEH_PE_RESET_HOT 6 /* Assert hot reset */ 915a9fd1654SJens Freimann #define VFIO_EEH_PE_RESET_FUNDAMENTAL 7 /* Assert fundamental reset */ 916a9fd1654SJens Freimann #define VFIO_EEH_PE_CONFIGURE 8 /* PE configuration */ 91725b8b39bSAlexey Kardashevskiy #define VFIO_EEH_PE_INJECT_ERR 9 /* Inject EEH error */ 918a9fd1654SJens Freimann 919a9fd1654SJens Freimann #define VFIO_EEH_PE_OP _IO(VFIO_TYPE, VFIO_BASE + 21) 920a9fd1654SJens Freimann 92125b8b39bSAlexey Kardashevskiy /** 92225b8b39bSAlexey Kardashevskiy * VFIO_IOMMU_SPAPR_REGISTER_MEMORY - _IOW(VFIO_TYPE, VFIO_BASE + 17, struct vfio_iommu_spapr_register_memory) 92325b8b39bSAlexey Kardashevskiy * 92425b8b39bSAlexey Kardashevskiy * Registers user space memory where DMA is allowed. It pins 92525b8b39bSAlexey Kardashevskiy * user pages and does the locked memory accounting so 92625b8b39bSAlexey Kardashevskiy * subsequent VFIO_IOMMU_MAP_DMA/VFIO_IOMMU_UNMAP_DMA calls 92725b8b39bSAlexey Kardashevskiy * get faster. 92825b8b39bSAlexey Kardashevskiy */ 92925b8b39bSAlexey Kardashevskiy struct vfio_iommu_spapr_register_memory { 93025b8b39bSAlexey Kardashevskiy __u32 argsz; 93125b8b39bSAlexey Kardashevskiy __u32 flags; 93225b8b39bSAlexey Kardashevskiy __u64 vaddr; /* Process virtual address */ 93325b8b39bSAlexey Kardashevskiy __u64 size; /* Size of mapping (bytes) */ 93425b8b39bSAlexey Kardashevskiy }; 93525b8b39bSAlexey Kardashevskiy #define VFIO_IOMMU_SPAPR_REGISTER_MEMORY _IO(VFIO_TYPE, VFIO_BASE + 17) 93625b8b39bSAlexey Kardashevskiy 93725b8b39bSAlexey Kardashevskiy /** 93825b8b39bSAlexey Kardashevskiy * VFIO_IOMMU_SPAPR_UNREGISTER_MEMORY - _IOW(VFIO_TYPE, VFIO_BASE + 18, struct vfio_iommu_spapr_register_memory) 93925b8b39bSAlexey Kardashevskiy * 94025b8b39bSAlexey Kardashevskiy * Unregisters user space memory registered with 94125b8b39bSAlexey Kardashevskiy * VFIO_IOMMU_SPAPR_REGISTER_MEMORY. 94225b8b39bSAlexey Kardashevskiy * Uses vfio_iommu_spapr_register_memory for parameters. 94325b8b39bSAlexey Kardashevskiy */ 94425b8b39bSAlexey Kardashevskiy #define VFIO_IOMMU_SPAPR_UNREGISTER_MEMORY _IO(VFIO_TYPE, VFIO_BASE + 18) 94525b8b39bSAlexey Kardashevskiy 94625b8b39bSAlexey Kardashevskiy /** 94725b8b39bSAlexey Kardashevskiy * VFIO_IOMMU_SPAPR_TCE_CREATE - _IOWR(VFIO_TYPE, VFIO_BASE + 19, struct vfio_iommu_spapr_tce_create) 94825b8b39bSAlexey Kardashevskiy * 94925b8b39bSAlexey Kardashevskiy * Creates an additional TCE table and programs it (sets a new DMA window) 95025b8b39bSAlexey Kardashevskiy * to every IOMMU group in the container. It receives page shift, window 95125b8b39bSAlexey Kardashevskiy * size and number of levels in the TCE table being created. 95225b8b39bSAlexey Kardashevskiy * 95325b8b39bSAlexey Kardashevskiy * It allocates and returns an offset on a PCI bus of the new DMA window. 95425b8b39bSAlexey Kardashevskiy */ 95525b8b39bSAlexey Kardashevskiy struct vfio_iommu_spapr_tce_create { 95625b8b39bSAlexey Kardashevskiy __u32 argsz; 95725b8b39bSAlexey Kardashevskiy __u32 flags; 95825b8b39bSAlexey Kardashevskiy /* in */ 95925b8b39bSAlexey Kardashevskiy __u32 page_shift; 96066fb2d54SCornelia Huck __u32 __resv1; 96125b8b39bSAlexey Kardashevskiy __u64 window_size; 96225b8b39bSAlexey Kardashevskiy __u32 levels; 96366fb2d54SCornelia Huck __u32 __resv2; 96425b8b39bSAlexey Kardashevskiy /* out */ 96525b8b39bSAlexey Kardashevskiy __u64 start_addr; 96625b8b39bSAlexey Kardashevskiy }; 96725b8b39bSAlexey Kardashevskiy #define VFIO_IOMMU_SPAPR_TCE_CREATE _IO(VFIO_TYPE, VFIO_BASE + 19) 96825b8b39bSAlexey Kardashevskiy 96925b8b39bSAlexey Kardashevskiy /** 97025b8b39bSAlexey Kardashevskiy * VFIO_IOMMU_SPAPR_TCE_REMOVE - _IOW(VFIO_TYPE, VFIO_BASE + 20, struct vfio_iommu_spapr_tce_remove) 97125b8b39bSAlexey Kardashevskiy * 97225b8b39bSAlexey Kardashevskiy * Unprograms a TCE table from all groups in the container and destroys it. 97325b8b39bSAlexey Kardashevskiy * It receives a PCI bus offset as a window id. 97425b8b39bSAlexey Kardashevskiy */ 97525b8b39bSAlexey Kardashevskiy struct vfio_iommu_spapr_tce_remove { 97625b8b39bSAlexey Kardashevskiy __u32 argsz; 97725b8b39bSAlexey Kardashevskiy __u32 flags; 97825b8b39bSAlexey Kardashevskiy /* in */ 97925b8b39bSAlexey Kardashevskiy __u64 start_addr; 98025b8b39bSAlexey Kardashevskiy }; 98125b8b39bSAlexey Kardashevskiy #define VFIO_IOMMU_SPAPR_TCE_REMOVE _IO(VFIO_TYPE, VFIO_BASE + 20) 98225b8b39bSAlexey Kardashevskiy 983c5daeae1SAlexey Kardashevskiy /* ***************************************************************** */ 984c5daeae1SAlexey Kardashevskiy 985d4834ff9SAlexander Graf #endif /* VFIO_H */ 986