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"
34 #define VFIO_MSG_PREFIX "vfio %s: "
37 VFIO_DEVICE_TYPE_PCI
= 0,
38 VFIO_DEVICE_TYPE_PLATFORM
= 1,
39 VFIO_DEVICE_TYPE_CCW
= 2,
40 VFIO_DEVICE_TYPE_AP
= 3,
43 typedef struct VFIOMmap
{
50 typedef struct VFIORegion
{
51 struct VFIODevice
*vbasedev
;
52 off_t fd_offset
; /* offset of region within device fd */
53 MemoryRegion
*mem
; /* slow, read/write access */
55 uint32_t flags
; /* VFIO region flags (rd/wr/mmap) */
58 uint8_t nr
; /* cache the region number for debug */
61 typedef struct VFIOMigration
{
62 struct VFIODevice
*vbasedev
;
63 VMChangeStateEntry
*vm_state
;
65 uint32_t device_state
;
67 Notifier migration_state
;
68 uint64_t pending_bytes
;
71 typedef struct VFIOAddressSpace
{
73 QLIST_HEAD(, VFIOContainer
) containers
;
74 QLIST_ENTRY(VFIOAddressSpace
) list
;
79 typedef struct VFIOContainer
{
80 VFIOAddressSpace
*space
;
81 int fd
; /* /dev/vfio/vfio, empowered by the attached groups */
82 MemoryListener listener
;
83 MemoryListener prereg_listener
;
87 bool dirty_pages_supported
;
88 uint64_t dirty_pgsizes
;
89 uint64_t max_dirty_bitmap_size
;
90 unsigned long pgsizes
;
91 QLIST_HEAD(, VFIOGuestIOMMU
) giommu_list
;
92 QLIST_HEAD(, VFIOHostDMAWindow
) hostwin_list
;
93 QLIST_HEAD(, VFIOGroup
) group_list
;
94 QLIST_ENTRY(VFIOContainer
) next
;
97 typedef struct VFIOGuestIOMMU
{
98 VFIOContainer
*container
;
99 IOMMUMemoryRegion
*iommu
;
102 QLIST_ENTRY(VFIOGuestIOMMU
) giommu_next
;
105 typedef struct VFIOHostDMAWindow
{
108 uint64_t iova_pgsizes
;
109 QLIST_ENTRY(VFIOHostDMAWindow
) hostwin_next
;
112 typedef struct VFIODeviceOps VFIODeviceOps
;
114 typedef struct VFIODevice
{
115 QLIST_ENTRY(VFIODevice
) next
;
116 struct VFIOGroup
*group
;
125 bool ram_block_discard_allowed
;
126 bool enable_migration
;
128 unsigned int num_irqs
;
129 unsigned int num_regions
;
131 VFIOMigration
*migration
;
132 Error
*migration_blocker
;
133 OnOffAuto pre_copy_dirty_page_tracking
;
136 struct VFIODeviceOps
{
137 void (*vfio_compute_needs_reset
)(VFIODevice
*vdev
);
138 int (*vfio_hot_reset_multi
)(VFIODevice
*vdev
);
139 void (*vfio_eoi
)(VFIODevice
*vdev
);
140 Object
*(*vfio_get_object
)(VFIODevice
*vdev
);
141 void (*vfio_save_config
)(VFIODevice
*vdev
, QEMUFile
*f
);
142 int (*vfio_load_config
)(VFIODevice
*vdev
, QEMUFile
*f
);
145 typedef struct VFIOGroup
{
148 VFIOContainer
*container
;
149 QLIST_HEAD(, VFIODevice
) device_list
;
150 QLIST_ENTRY(VFIOGroup
) next
;
151 QLIST_ENTRY(VFIOGroup
) container_next
;
152 bool ram_block_discard_allowed
;
155 typedef struct VFIODMABuf
{
157 uint32_t pos_x
, pos_y
, pos_updates
;
158 uint32_t hot_x
, hot_y
, hot_updates
;
160 QTAILQ_ENTRY(VFIODMABuf
) next
;
163 typedef struct VFIODisplay
{
166 struct vfio_region_info
*edid_info
;
167 struct vfio_region_gfx_edid
*edid_regs
;
169 QEMUTimer
*edid_link_timer
;
172 DisplaySurface
*surface
;
175 QTAILQ_HEAD(, VFIODMABuf
) bufs
;
181 void vfio_put_base_device(VFIODevice
*vbasedev
);
182 void vfio_disable_irqindex(VFIODevice
*vbasedev
, int index
);
183 void vfio_unmask_single_irqindex(VFIODevice
*vbasedev
, int index
);
184 void vfio_mask_single_irqindex(VFIODevice
*vbasedev
, int index
);
185 int vfio_set_irq_signaling(VFIODevice
*vbasedev
, int index
, int subindex
,
186 int action
, int fd
, Error
**errp
);
187 void vfio_region_write(void *opaque
, hwaddr addr
,
188 uint64_t data
, unsigned size
);
189 uint64_t vfio_region_read(void *opaque
,
190 hwaddr addr
, unsigned size
);
191 int vfio_region_setup(Object
*obj
, VFIODevice
*vbasedev
, VFIORegion
*region
,
192 int index
, const char *name
);
193 int vfio_region_mmap(VFIORegion
*region
);
194 void vfio_region_mmaps_set_enabled(VFIORegion
*region
, bool enabled
);
195 void vfio_region_unmap(VFIORegion
*region
);
196 void vfio_region_exit(VFIORegion
*region
);
197 void vfio_region_finalize(VFIORegion
*region
);
198 void vfio_reset_handler(void *opaque
);
199 VFIOGroup
*vfio_get_group(int groupid
, AddressSpace
*as
, Error
**errp
);
200 void vfio_put_group(VFIOGroup
*group
);
201 int vfio_get_device(VFIOGroup
*group
, const char *name
,
202 VFIODevice
*vbasedev
, Error
**errp
);
204 extern const MemoryRegionOps vfio_region_ops
;
205 typedef QLIST_HEAD(VFIOGroupList
, VFIOGroup
) VFIOGroupList
;
206 extern VFIOGroupList vfio_group_list
;
208 bool vfio_mig_active(void);
209 int64_t vfio_mig_bytes_transferred(void);
212 int vfio_get_region_info(VFIODevice
*vbasedev
, int index
,
213 struct vfio_region_info
**info
);
214 int vfio_get_dev_region_info(VFIODevice
*vbasedev
, uint32_t type
,
215 uint32_t subtype
, struct vfio_region_info
**info
);
216 bool vfio_has_region_cap(VFIODevice
*vbasedev
, int region
, uint16_t cap_type
);
217 struct vfio_info_cap_header
*
218 vfio_get_region_info_cap(struct vfio_region_info
*info
, uint16_t id
);
219 bool vfio_get_info_dma_avail(struct vfio_iommu_type1_info
*info
,
220 unsigned int *avail
);
221 struct vfio_info_cap_header
*
222 vfio_get_device_info_cap(struct vfio_device_info
*info
, uint16_t id
);
224 extern const MemoryListener vfio_prereg_listener
;
226 int vfio_spapr_create_window(VFIOContainer
*container
,
227 MemoryRegionSection
*section
,
229 int vfio_spapr_remove_window(VFIOContainer
*container
,
230 hwaddr offset_within_address_space
);
232 int vfio_migration_probe(VFIODevice
*vbasedev
, Error
**errp
);
233 void vfio_migration_finalize(VFIODevice
*vbasedev
);
235 #endif /* HW_VFIO_VFIO_COMMON_H */