2 * common header for vfio based device assignment support
4 * Copyright Red Hat, Inc. 2012
7 * Alex Williamson <alex.williamson@redhat.com>
9 * This work is licensed under the terms of the GNU GPL, version 2. See
10 * the COPYING file in the top-level directory.
12 * Based on qemu-kvm device-assignment:
13 * Adapted for KVM by Qumranet.
14 * Copyright (c) 2007, Neocleus, Alex Novik (alex@neocleus.com)
15 * Copyright (c) 2007, Neocleus, Guy Zana (guy@neocleus.com)
16 * Copyright (C) 2008, Qumranet, Amit Shah (amit.shah@qumranet.com)
17 * Copyright (C) 2008, Red Hat, Amit Shah (amit.shah@redhat.com)
18 * Copyright (C) 2008, IBM, Muli Ben-Yehuda (muli@il.ibm.com)
21 #ifndef HW_VFIO_VFIO_COMMON_H
22 #define HW_VFIO_VFIO_COMMON_H
24 #include "exec/memory.h"
25 #include "qemu/queue.h"
26 #include "qemu/notify.h"
27 #include "ui/console.h"
28 #include "hw/display/ramfb.h"
30 #include <linux/vfio.h>
32 #include "sysemu/sysemu.h"
33 #include "hw/vfio/vfio-container-base.h"
34 #include "sysemu/host_iommu_device.h"
35 #include "sysemu/iommufd.h"
37 #define VFIO_MSG_PREFIX "vfio %s: "
40 VFIO_DEVICE_TYPE_PCI
= 0,
41 VFIO_DEVICE_TYPE_PLATFORM
= 1,
42 VFIO_DEVICE_TYPE_CCW
= 2,
43 VFIO_DEVICE_TYPE_AP
= 3,
46 typedef struct VFIOMmap
{
53 typedef struct VFIORegion
{
54 struct VFIODevice
*vbasedev
;
55 off_t fd_offset
; /* offset of region within device fd */
56 MemoryRegion
*mem
; /* slow, read/write access */
58 uint32_t flags
; /* VFIO region flags (rd/wr/mmap) */
61 uint8_t nr
; /* cache the region number for debug */
64 typedef struct VFIOMigration
{
65 struct VFIODevice
*vbasedev
;
66 VMChangeStateEntry
*vm_state
;
67 NotifierWithReturn migration_state
;
68 uint32_t device_state
;
71 size_t data_buffer_size
;
73 uint64_t precopy_init_size
;
74 uint64_t precopy_dirty_size
;
75 bool initial_data_sent
;
80 typedef struct VFIOContainer
{
81 VFIOContainerBase bcontainer
;
82 int fd
; /* /dev/vfio/vfio, empowered by the attached groups */
84 QLIST_HEAD(, VFIOGroup
) group_list
;
87 OBJECT_DECLARE_SIMPLE_TYPE(VFIOContainer
, VFIO_IOMMU_LEGACY
);
89 typedef struct VFIOHostDMAWindow
{
92 uint64_t iova_pgsizes
;
93 QLIST_ENTRY(VFIOHostDMAWindow
) hostwin_next
;
96 typedef struct IOMMUFDBackend IOMMUFDBackend
;
98 typedef struct VFIOIOASHwpt
{
101 QLIST_HEAD(, VFIODevice
) device_list
;
102 QLIST_ENTRY(VFIOIOASHwpt
) next
;
105 typedef struct VFIOIOMMUFDContainer
{
106 VFIOContainerBase bcontainer
;
109 QLIST_HEAD(, VFIOIOASHwpt
) hwpt_list
;
110 } VFIOIOMMUFDContainer
;
112 OBJECT_DECLARE_SIMPLE_TYPE(VFIOIOMMUFDContainer
, VFIO_IOMMU_IOMMUFD
);
114 typedef struct VFIODeviceOps VFIODeviceOps
;
116 typedef struct VFIODevice
{
117 QLIST_ENTRY(VFIODevice
) next
;
118 QLIST_ENTRY(VFIODevice
) container_next
;
119 QLIST_ENTRY(VFIODevice
) global_next
;
120 struct VFIOGroup
*group
;
121 VFIOContainerBase
*bcontainer
;
131 bool ram_block_discard_allowed
;
132 OnOffAuto enable_migration
;
133 bool migration_events
;
135 unsigned int num_irqs
;
136 unsigned int num_regions
;
138 VFIOMigration
*migration
;
139 Error
*migration_blocker
;
140 OnOffAuto pre_copy_dirty_page_tracking
;
141 OnOffAuto device_dirty_page_tracking
;
142 bool dirty_pages_supported
;
144 bool iommu_dirty_tracking
;
145 HostIOMMUDevice
*hiod
;
147 IOMMUFDBackend
*iommufd
;
149 QLIST_ENTRY(VFIODevice
) hwpt_next
;
152 struct VFIODeviceOps
{
153 void (*vfio_compute_needs_reset
)(VFIODevice
*vdev
);
154 int (*vfio_hot_reset_multi
)(VFIODevice
*vdev
);
155 void (*vfio_eoi
)(VFIODevice
*vdev
);
156 Object
*(*vfio_get_object
)(VFIODevice
*vdev
);
161 * Save device config state
163 * @vdev: #VFIODevice for which to save the config
164 * @f: #QEMUFile where to send the data
165 * @errp: pointer to Error*, to store an error if it happens.
167 * Returns zero to indicate success and negative for error
169 int (*vfio_save_config
)(VFIODevice
*vdev
, QEMUFile
*f
, Error
**errp
);
174 * Load device config state
176 * @vdev: #VFIODevice for which to load the config
177 * @f: #QEMUFile where to get the data
179 * Returns zero to indicate success and negative for error
181 int (*vfio_load_config
)(VFIODevice
*vdev
, QEMUFile
*f
);
184 typedef struct VFIOGroup
{
187 VFIOContainer
*container
;
188 QLIST_HEAD(, VFIODevice
) device_list
;
189 QLIST_ENTRY(VFIOGroup
) next
;
190 QLIST_ENTRY(VFIOGroup
) container_next
;
191 bool ram_block_discard_allowed
;
194 #define TYPE_HOST_IOMMU_DEVICE_LEGACY_VFIO TYPE_HOST_IOMMU_DEVICE "-legacy-vfio"
195 #define TYPE_HOST_IOMMU_DEVICE_IOMMUFD_VFIO \
196 TYPE_HOST_IOMMU_DEVICE_IOMMUFD "-vfio"
198 typedef struct VFIODMABuf
{
200 uint32_t pos_x
, pos_y
, pos_updates
;
201 uint32_t hot_x
, hot_y
, hot_updates
;
203 QTAILQ_ENTRY(VFIODMABuf
) next
;
206 typedef struct VFIODisplay
{
209 struct vfio_region_info
*edid_info
;
210 struct vfio_region_gfx_edid
*edid_regs
;
212 QEMUTimer
*edid_link_timer
;
215 DisplaySurface
*surface
;
218 QTAILQ_HEAD(, VFIODMABuf
) bufs
;
224 VFIOAddressSpace
*vfio_get_address_space(AddressSpace
*as
);
225 void vfio_put_address_space(VFIOAddressSpace
*space
);
226 void vfio_address_space_insert(VFIOAddressSpace
*space
,
227 VFIOContainerBase
*bcontainer
);
229 void vfio_disable_irqindex(VFIODevice
*vbasedev
, int index
);
230 void vfio_unmask_single_irqindex(VFIODevice
*vbasedev
, int index
);
231 void vfio_mask_single_irqindex(VFIODevice
*vbasedev
, int index
);
232 bool vfio_set_irq_signaling(VFIODevice
*vbasedev
, int index
, int subindex
,
233 int action
, int fd
, Error
**errp
);
234 void vfio_region_write(void *opaque
, hwaddr addr
,
235 uint64_t data
, unsigned size
);
236 uint64_t vfio_region_read(void *opaque
,
237 hwaddr addr
, unsigned size
);
238 int vfio_region_setup(Object
*obj
, VFIODevice
*vbasedev
, VFIORegion
*region
,
239 int index
, const char *name
);
240 int vfio_region_mmap(VFIORegion
*region
);
241 void vfio_region_mmaps_set_enabled(VFIORegion
*region
, bool enabled
);
242 void vfio_region_unmap(VFIORegion
*region
);
243 void vfio_region_exit(VFIORegion
*region
);
244 void vfio_region_finalize(VFIORegion
*region
);
245 void vfio_reset_handler(void *opaque
);
246 struct vfio_device_info
*vfio_get_device_info(int fd
);
247 bool vfio_device_is_mdev(VFIODevice
*vbasedev
);
248 bool vfio_device_hiod_realize(VFIODevice
*vbasedev
, Error
**errp
);
249 bool vfio_attach_device(char *name
, VFIODevice
*vbasedev
,
250 AddressSpace
*as
, Error
**errp
);
251 void vfio_detach_device(VFIODevice
*vbasedev
);
253 int vfio_kvm_device_add_fd(int fd
, Error
**errp
);
254 int vfio_kvm_device_del_fd(int fd
, Error
**errp
);
256 bool vfio_cpr_register_container(VFIOContainerBase
*bcontainer
, Error
**errp
);
257 void vfio_cpr_unregister_container(VFIOContainerBase
*bcontainer
);
259 extern const MemoryRegionOps vfio_region_ops
;
260 typedef QLIST_HEAD(VFIOGroupList
, VFIOGroup
) VFIOGroupList
;
261 typedef QLIST_HEAD(VFIODeviceList
, VFIODevice
) VFIODeviceList
;
262 extern VFIOGroupList vfio_group_list
;
263 extern VFIODeviceList vfio_device_list
;
264 extern const MemoryListener vfio_memory_listener
;
265 extern int vfio_kvm_device_fd
;
267 bool vfio_mig_active(void);
268 int vfio_block_multiple_devices_migration(VFIODevice
*vbasedev
, Error
**errp
);
269 void vfio_unblock_multiple_devices_migration(void);
270 bool vfio_viommu_preset(VFIODevice
*vbasedev
);
271 int64_t vfio_mig_bytes_transferred(void);
272 void vfio_reset_bytes_transferred(void);
273 bool vfio_device_state_is_running(VFIODevice
*vbasedev
);
274 bool vfio_device_state_is_precopy(VFIODevice
*vbasedev
);
277 int vfio_get_region_info(VFIODevice
*vbasedev
, int index
,
278 struct vfio_region_info
**info
);
279 int vfio_get_dev_region_info(VFIODevice
*vbasedev
, uint32_t type
,
280 uint32_t subtype
, struct vfio_region_info
**info
);
281 bool vfio_has_region_cap(VFIODevice
*vbasedev
, int region
, uint16_t cap_type
);
282 struct vfio_info_cap_header
*
283 vfio_get_region_info_cap(struct vfio_region_info
*info
, uint16_t id
);
284 bool vfio_get_info_dma_avail(struct vfio_iommu_type1_info
*info
,
285 unsigned int *avail
);
286 struct vfio_info_cap_header
*
287 vfio_get_device_info_cap(struct vfio_device_info
*info
, uint16_t id
);
288 struct vfio_info_cap_header
*
289 vfio_get_cap(void *ptr
, uint32_t cap_offset
, uint16_t id
);
292 bool vfio_migration_realize(VFIODevice
*vbasedev
, Error
**errp
);
293 void vfio_migration_exit(VFIODevice
*vbasedev
);
295 int vfio_bitmap_alloc(VFIOBitmap
*vbmap
, hwaddr size
);
297 vfio_devices_all_running_and_mig_active(const VFIOContainerBase
*bcontainer
);
299 vfio_devices_all_device_dirty_tracking(const VFIOContainerBase
*bcontainer
);
300 int vfio_devices_query_dirty_bitmap(const VFIOContainerBase
*bcontainer
,
301 VFIOBitmap
*vbmap
, hwaddr iova
, hwaddr size
, Error
**errp
);
302 int vfio_get_dirty_bitmap(const VFIOContainerBase
*bcontainer
, uint64_t iova
,
303 uint64_t size
, ram_addr_t ram_addr
, Error
**errp
);
305 /* Returns 0 on success, or a negative errno. */
306 bool vfio_device_get_name(VFIODevice
*vbasedev
, Error
**errp
);
307 void vfio_device_set_fd(VFIODevice
*vbasedev
, const char *str
, Error
**errp
);
308 void vfio_device_init(VFIODevice
*vbasedev
, int type
, VFIODeviceOps
*ops
,
309 DeviceState
*dev
, bool ram_discard
);
310 int vfio_device_get_aw_bits(VFIODevice
*vdev
);
311 #endif /* HW_VFIO_VFIO_COMMON_H */