2014-12-22 17:54:51 +01:00
|
|
|
/*
|
|
|
|
* common header for vfio based device assignment support
|
|
|
|
*
|
|
|
|
* Copyright Red Hat, Inc. 2012
|
|
|
|
*
|
|
|
|
* Authors:
|
|
|
|
* Alex Williamson <alex.williamson@redhat.com>
|
|
|
|
*
|
|
|
|
* This work is licensed under the terms of the GNU GPL, version 2. See
|
|
|
|
* the COPYING file in the top-level directory.
|
|
|
|
*
|
|
|
|
* Based on qemu-kvm device-assignment:
|
|
|
|
* Adapted for KVM by Qumranet.
|
|
|
|
* Copyright (c) 2007, Neocleus, Alex Novik (alex@neocleus.com)
|
|
|
|
* Copyright (c) 2007, Neocleus, Guy Zana (guy@neocleus.com)
|
|
|
|
* Copyright (C) 2008, Qumranet, Amit Shah (amit.shah@qumranet.com)
|
|
|
|
* Copyright (C) 2008, Red Hat, Amit Shah (amit.shah@redhat.com)
|
|
|
|
* Copyright (C) 2008, IBM, Muli Ben-Yehuda (muli@il.ibm.com)
|
|
|
|
*/
|
2016-06-29 15:29:06 +02:00
|
|
|
|
2014-12-22 17:54:51 +01:00
|
|
|
#ifndef HW_VFIO_VFIO_COMMON_H
|
|
|
|
#define HW_VFIO_VFIO_COMMON_H
|
|
|
|
|
|
|
|
#include "exec/memory.h"
|
|
|
|
#include "qemu/queue.h"
|
|
|
|
#include "qemu/notify.h"
|
2018-03-13 18:17:30 +01:00
|
|
|
#include "ui/console.h"
|
2018-10-15 18:52:09 +02:00
|
|
|
#include "hw/display/ramfb.h"
|
2016-03-10 17:39:07 +01:00
|
|
|
#ifdef CONFIG_LINUX
|
|
|
|
#include <linux/vfio.h>
|
|
|
|
#endif
|
2020-10-26 10:36:15 +01:00
|
|
|
#include "sysemu/sysemu.h"
|
2014-12-22 17:54:51 +01:00
|
|
|
|
2018-10-17 10:26:29 +02:00
|
|
|
#define VFIO_MSG_PREFIX "vfio %s: "
|
2016-10-17 18:57:56 +02:00
|
|
|
|
2014-12-22 17:54:51 +01:00
|
|
|
enum {
|
|
|
|
VFIO_DEVICE_TYPE_PCI = 0,
|
2015-06-08 17:25:25 +02:00
|
|
|
VFIO_DEVICE_TYPE_PLATFORM = 1,
|
2017-05-17 02:48:07 +02:00
|
|
|
VFIO_DEVICE_TYPE_CCW = 2,
|
2018-10-10 19:03:07 +02:00
|
|
|
VFIO_DEVICE_TYPE_AP = 3,
|
2014-12-22 17:54:51 +01:00
|
|
|
};
|
|
|
|
|
2016-03-10 17:39:07 +01:00
|
|
|
typedef struct VFIOMmap {
|
|
|
|
MemoryRegion mem;
|
|
|
|
void *mmap;
|
|
|
|
off_t offset;
|
|
|
|
size_t size;
|
|
|
|
} VFIOMmap;
|
|
|
|
|
2014-12-22 17:54:51 +01:00
|
|
|
typedef struct VFIORegion {
|
|
|
|
struct VFIODevice *vbasedev;
|
|
|
|
off_t fd_offset; /* offset of region within device fd */
|
2016-03-10 17:39:07 +01:00
|
|
|
MemoryRegion *mem; /* slow, read/write access */
|
2014-12-22 17:54:51 +01:00
|
|
|
size_t size;
|
|
|
|
uint32_t flags; /* VFIO region flags (rd/wr/mmap) */
|
2016-03-10 17:39:07 +01:00
|
|
|
uint32_t nr_mmaps;
|
|
|
|
VFIOMmap *mmaps;
|
2014-12-22 17:54:51 +01:00
|
|
|
uint8_t nr; /* cache the region number for debug */
|
|
|
|
} VFIORegion;
|
|
|
|
|
2020-10-26 10:36:14 +01:00
|
|
|
typedef struct VFIOMigration {
|
2020-10-26 10:36:16 +01:00
|
|
|
struct VFIODevice *vbasedev;
|
2020-10-26 10:36:15 +01:00
|
|
|
VMChangeStateEntry *vm_state;
|
2020-10-26 10:36:16 +01:00
|
|
|
Notifier migration_state;
|
2023-02-16 15:36:27 +01:00
|
|
|
uint32_t device_state;
|
|
|
|
int data_fd;
|
|
|
|
void *data_buffer;
|
|
|
|
size_t data_buffer_size;
|
2023-06-21 13:11:59 +02:00
|
|
|
uint64_t mig_flags;
|
2023-06-21 13:12:00 +02:00
|
|
|
uint64_t precopy_init_size;
|
|
|
|
uint64_t precopy_dirty_size;
|
2020-10-26 10:36:14 +01:00
|
|
|
} VFIOMigration;
|
|
|
|
|
2014-12-22 17:54:51 +01:00
|
|
|
typedef struct VFIOAddressSpace {
|
|
|
|
AddressSpace *as;
|
|
|
|
QLIST_HEAD(, VFIOContainer) containers;
|
|
|
|
QLIST_ENTRY(VFIOAddressSpace) list;
|
|
|
|
} VFIOAddressSpace;
|
|
|
|
|
|
|
|
struct VFIOGroup;
|
|
|
|
|
|
|
|
typedef struct VFIOContainer {
|
|
|
|
VFIOAddressSpace *space;
|
|
|
|
int fd; /* /dev/vfio/vfio, empowered by the attached groups */
|
2015-09-30 04:13:51 +02:00
|
|
|
MemoryListener listener;
|
2016-07-04 05:33:04 +02:00
|
|
|
MemoryListener prereg_listener;
|
|
|
|
unsigned iommu_type;
|
2019-09-24 10:25:16 +02:00
|
|
|
Error *error;
|
2015-09-30 04:13:51 +02:00
|
|
|
bool initialized;
|
2020-10-26 10:36:21 +01:00
|
|
|
bool dirty_pages_supported;
|
|
|
|
uint64_t dirty_pgsizes;
|
|
|
|
uint64_t max_dirty_bitmap_size;
|
2018-06-20 11:10:12 +02:00
|
|
|
unsigned long pgsizes;
|
2021-04-13 11:55:25 +02:00
|
|
|
unsigned int dma_max_mappings;
|
2014-12-22 17:54:51 +01:00
|
|
|
QLIST_HEAD(, VFIOGuestIOMMU) giommu_list;
|
2016-07-04 05:33:05 +02:00
|
|
|
QLIST_HEAD(, VFIOHostDMAWindow) hostwin_list;
|
2014-12-22 17:54:51 +01:00
|
|
|
QLIST_HEAD(, VFIOGroup) group_list;
|
2021-04-13 11:55:24 +02:00
|
|
|
QLIST_HEAD(, VFIORamDiscardListener) vrdl_list;
|
2014-12-22 17:54:51 +01:00
|
|
|
QLIST_ENTRY(VFIOContainer) next;
|
|
|
|
} VFIOContainer;
|
|
|
|
|
|
|
|
typedef struct VFIOGuestIOMMU {
|
|
|
|
VFIOContainer *container;
|
2022-05-02 11:42:23 +02:00
|
|
|
IOMMUMemoryRegion *iommu_mr;
|
2016-05-26 17:43:23 +02:00
|
|
|
hwaddr iommu_offset;
|
2016-09-23 07:02:26 +02:00
|
|
|
IOMMUNotifier n;
|
2014-12-22 17:54:51 +01:00
|
|
|
QLIST_ENTRY(VFIOGuestIOMMU) giommu_next;
|
|
|
|
} VFIOGuestIOMMU;
|
|
|
|
|
2021-04-13 11:55:24 +02:00
|
|
|
typedef struct VFIORamDiscardListener {
|
|
|
|
VFIOContainer *container;
|
|
|
|
MemoryRegion *mr;
|
|
|
|
hwaddr offset_within_address_space;
|
|
|
|
hwaddr size;
|
|
|
|
uint64_t granularity;
|
|
|
|
RamDiscardListener listener;
|
|
|
|
QLIST_ENTRY(VFIORamDiscardListener) next;
|
|
|
|
} VFIORamDiscardListener;
|
|
|
|
|
2016-07-04 05:33:05 +02:00
|
|
|
typedef struct VFIOHostDMAWindow {
|
|
|
|
hwaddr min_iova;
|
|
|
|
hwaddr max_iova;
|
|
|
|
uint64_t iova_pgsizes;
|
|
|
|
QLIST_ENTRY(VFIOHostDMAWindow) hostwin_next;
|
|
|
|
} VFIOHostDMAWindow;
|
|
|
|
|
2014-12-22 17:54:51 +01:00
|
|
|
typedef struct VFIODeviceOps VFIODeviceOps;
|
|
|
|
|
|
|
|
typedef struct VFIODevice {
|
|
|
|
QLIST_ENTRY(VFIODevice) next;
|
|
|
|
struct VFIOGroup *group;
|
vfio: Add sysfsdev property for pci & platform
vfio-pci currently requires a host= parameter, which comes in the
form of a PCI address in [domain:]<bus:slot.function> notation. We
expect to find a matching entry in sysfs for that under
/sys/bus/pci/devices/. vfio-platform takes a similar approach, but
defines the host= parameter to be a string, which can be matched
directly under /sys/bus/platform/devices/. On the PCI side, we have
some interest in using vfio to expose vGPU devices. These are not
actual discrete PCI devices, so they don't have a compatible host PCI
bus address or a device link where QEMU wants to look for it. There's
also really no requirement that vfio can only be used to expose
physical devices, a new vfio bus and iommu driver could expose a
completely emulated device. To fit within the vfio framework, it
would need a kernel struct device and associated IOMMU group, but
those are easy constraints to manage.
To support such devices, which would include vGPUs, that honor the
VFIO PCI programming API, but are not necessarily backed by a unique
PCI address, add support for specifying any device in sysfs. The
vfio API already has support for probing the device type to ensure
compatibility with either vfio-pci or vfio-platform.
With this, a vfio-pci device could either be specified as:
-device vfio-pci,host=02:00.0
or
-device vfio-pci,sysfsdev=/sys/devices/pci0000:00/0000:00:1c.0/0000:02:00.0
or even
-device vfio-pci,sysfsdev=/sys/bus/pci/devices/0000:02:00.0
When vGPU support comes along, this might look something more like:
-device vfio-pci,sysfsdev=/sys/devices/virtual/intel-vgpu/vgpu0@0000:00:02.0
NB - This is only a made up example path
The same change is made for vfio-platform, specifying sysfsdev has
precedence over the old host option.
Tested-by: Eric Auger <eric.auger@linaro.org>
Reviewed-by: Eric Auger <eric.auger@linaro.org>
Signed-off-by: Alex Williamson <alex.williamson@redhat.com>
2016-03-10 17:39:07 +01:00
|
|
|
char *sysfsdev;
|
2014-12-22 17:54:51 +01:00
|
|
|
char *name;
|
2017-07-10 18:39:43 +02:00
|
|
|
DeviceState *dev;
|
2014-12-22 17:54:51 +01:00
|
|
|
int fd;
|
|
|
|
int type;
|
|
|
|
bool reset_works;
|
|
|
|
bool needs_reset;
|
2015-09-23 21:04:44 +02:00
|
|
|
bool no_mmap;
|
2020-06-26 09:22:30 +02:00
|
|
|
bool ram_block_discard_allowed;
|
2020-11-09 19:56:02 +01:00
|
|
|
bool enable_migration;
|
2014-12-22 17:54:51 +01:00
|
|
|
VFIODeviceOps *ops;
|
|
|
|
unsigned int num_irqs;
|
|
|
|
unsigned int num_regions;
|
|
|
|
unsigned int flags;
|
2020-10-26 10:36:14 +01:00
|
|
|
VFIOMigration *migration;
|
|
|
|
Error *migration_blocker;
|
2020-11-23 15:23:19 +01:00
|
|
|
OnOffAuto pre_copy_dirty_page_tracking;
|
2023-03-07 13:54:45 +01:00
|
|
|
bool dirty_pages_supported;
|
|
|
|
bool dirty_tracking;
|
2014-12-22 17:54:51 +01:00
|
|
|
} VFIODevice;
|
|
|
|
|
|
|
|
struct VFIODeviceOps {
|
|
|
|
void (*vfio_compute_needs_reset)(VFIODevice *vdev);
|
|
|
|
int (*vfio_hot_reset_multi)(VFIODevice *vdev);
|
|
|
|
void (*vfio_eoi)(VFIODevice *vdev);
|
2020-10-26 10:36:12 +01:00
|
|
|
Object *(*vfio_get_object)(VFIODevice *vdev);
|
2020-10-26 10:36:13 +01:00
|
|
|
void (*vfio_save_config)(VFIODevice *vdev, QEMUFile *f);
|
|
|
|
int (*vfio_load_config)(VFIODevice *vdev, QEMUFile *f);
|
2014-12-22 17:54:51 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
typedef struct VFIOGroup {
|
|
|
|
int fd;
|
|
|
|
int groupid;
|
|
|
|
VFIOContainer *container;
|
|
|
|
QLIST_HEAD(, VFIODevice) device_list;
|
|
|
|
QLIST_ENTRY(VFIOGroup) next;
|
|
|
|
QLIST_ENTRY(VFIOGroup) container_next;
|
2020-06-26 09:22:30 +02:00
|
|
|
bool ram_block_discard_allowed;
|
2014-12-22 17:54:51 +01:00
|
|
|
} VFIOGroup;
|
|
|
|
|
2018-03-13 18:17:30 +01:00
|
|
|
typedef struct VFIODMABuf {
|
|
|
|
QemuDmaBuf buf;
|
|
|
|
uint32_t pos_x, pos_y, pos_updates;
|
|
|
|
uint32_t hot_x, hot_y, hot_updates;
|
|
|
|
int dmabuf_id;
|
|
|
|
QTAILQ_ENTRY(VFIODMABuf) next;
|
|
|
|
} VFIODMABuf;
|
|
|
|
|
2018-03-13 18:17:30 +01:00
|
|
|
typedef struct VFIODisplay {
|
|
|
|
QemuConsole *con;
|
2018-10-15 18:52:09 +02:00
|
|
|
RAMFBState *ramfb;
|
2019-03-11 18:14:39 +01:00
|
|
|
struct vfio_region_info *edid_info;
|
|
|
|
struct vfio_region_gfx_edid *edid_regs;
|
|
|
|
uint8_t *edid_blob;
|
2019-03-11 18:14:40 +01:00
|
|
|
QEMUTimer *edid_link_timer;
|
2018-03-13 18:17:30 +01:00
|
|
|
struct {
|
|
|
|
VFIORegion buffer;
|
|
|
|
DisplaySurface *surface;
|
|
|
|
} region;
|
2018-03-13 18:17:30 +01:00
|
|
|
struct {
|
|
|
|
QTAILQ_HEAD(, VFIODMABuf) bufs;
|
|
|
|
VFIODMABuf *primary;
|
|
|
|
VFIODMABuf *cursor;
|
|
|
|
} dmabuf;
|
2018-03-13 18:17:30 +01:00
|
|
|
} VFIODisplay;
|
|
|
|
|
2014-12-22 17:54:51 +01:00
|
|
|
void vfio_put_base_device(VFIODevice *vbasedev);
|
|
|
|
void vfio_disable_irqindex(VFIODevice *vbasedev, int index);
|
|
|
|
void vfio_unmask_single_irqindex(VFIODevice *vbasedev, int index);
|
|
|
|
void vfio_mask_single_irqindex(VFIODevice *vbasedev, int index);
|
2019-06-13 17:57:37 +02:00
|
|
|
int vfio_set_irq_signaling(VFIODevice *vbasedev, int index, int subindex,
|
|
|
|
int action, int fd, Error **errp);
|
2014-12-22 17:54:51 +01:00
|
|
|
void vfio_region_write(void *opaque, hwaddr addr,
|
|
|
|
uint64_t data, unsigned size);
|
|
|
|
uint64_t vfio_region_read(void *opaque,
|
|
|
|
hwaddr addr, unsigned size);
|
2016-03-10 17:39:07 +01:00
|
|
|
int vfio_region_setup(Object *obj, VFIODevice *vbasedev, VFIORegion *region,
|
|
|
|
int index, const char *name);
|
|
|
|
int vfio_region_mmap(VFIORegion *region);
|
|
|
|
void vfio_region_mmaps_set_enabled(VFIORegion *region, bool enabled);
|
2020-10-26 10:36:11 +01:00
|
|
|
void vfio_region_unmap(VFIORegion *region);
|
2016-03-10 17:39:07 +01:00
|
|
|
void vfio_region_exit(VFIORegion *region);
|
|
|
|
void vfio_region_finalize(VFIORegion *region);
|
2014-12-22 17:54:51 +01:00
|
|
|
void vfio_reset_handler(void *opaque);
|
2016-10-17 18:57:59 +02:00
|
|
|
VFIOGroup *vfio_get_group(int groupid, AddressSpace *as, Error **errp);
|
2014-12-22 17:54:51 +01:00
|
|
|
void vfio_put_group(VFIOGroup *group);
|
|
|
|
int vfio_get_device(VFIOGroup *group, const char *name,
|
2016-10-17 18:58:00 +02:00
|
|
|
VFIODevice *vbasedev, Error **errp);
|
2014-12-22 17:54:51 +01:00
|
|
|
|
|
|
|
extern const MemoryRegionOps vfio_region_ops;
|
2018-12-06 11:56:15 +01:00
|
|
|
typedef QLIST_HEAD(VFIOGroupList, VFIOGroup) VFIOGroupList;
|
|
|
|
extern VFIOGroupList vfio_group_list;
|
2014-12-22 17:54:51 +01:00
|
|
|
|
2020-10-26 10:36:27 +01:00
|
|
|
bool vfio_mig_active(void);
|
2023-02-16 15:36:24 +01:00
|
|
|
int vfio_block_multiple_devices_migration(Error **errp);
|
|
|
|
void vfio_unblock_multiple_devices_migration(void);
|
2023-03-07 13:54:48 +01:00
|
|
|
int vfio_block_giommu_migration(Error **errp);
|
2020-10-26 10:36:27 +01:00
|
|
|
int64_t vfio_mig_bytes_transferred(void);
|
|
|
|
|
2016-03-10 17:39:07 +01:00
|
|
|
#ifdef CONFIG_LINUX
|
|
|
|
int vfio_get_region_info(VFIODevice *vbasedev, int index,
|
|
|
|
struct vfio_region_info **info);
|
2016-05-26 17:43:20 +02:00
|
|
|
int vfio_get_dev_region_info(VFIODevice *vbasedev, uint32_t type,
|
|
|
|
uint32_t subtype, struct vfio_region_info **info);
|
2018-03-13 18:17:31 +01:00
|
|
|
bool vfio_has_region_cap(VFIODevice *vbasedev, int region, uint16_t cap_type);
|
2019-03-07 06:05:17 +01:00
|
|
|
struct vfio_info_cap_header *
|
|
|
|
vfio_get_region_info_cap(struct vfio_region_info *info, uint16_t id);
|
2020-10-26 16:34:33 +01:00
|
|
|
bool vfio_get_info_dma_avail(struct vfio_iommu_type1_info *info,
|
|
|
|
unsigned int *avail);
|
2020-10-26 16:34:40 +01:00
|
|
|
struct vfio_info_cap_header *
|
|
|
|
vfio_get_device_info_cap(struct vfio_device_info *info, uint16_t id);
|
2016-03-10 17:39:07 +01:00
|
|
|
#endif
|
2016-07-04 05:33:04 +02:00
|
|
|
extern const MemoryListener vfio_prereg_listener;
|
|
|
|
|
2016-07-04 05:33:06 +02:00
|
|
|
int vfio_spapr_create_window(VFIOContainer *container,
|
|
|
|
MemoryRegionSection *section,
|
|
|
|
hwaddr *pgsize);
|
|
|
|
int vfio_spapr_remove_window(VFIOContainer *container,
|
|
|
|
hwaddr offset_within_address_space);
|
|
|
|
|
2023-03-07 17:53:46 +01:00
|
|
|
int vfio_migration_realize(VFIODevice *vbasedev, Error **errp);
|
|
|
|
void vfio_migration_exit(VFIODevice *vbasedev);
|
|
|
|
void vfio_migration_finalize(void);
|
2020-10-26 10:36:14 +01:00
|
|
|
|
2016-06-29 15:29:06 +02:00
|
|
|
#endif /* HW_VFIO_VFIO_COMMON_H */
|