1 /*
2  * VFIO BASE CONTAINER
3  *
4  * Copyright (C) 2023 Intel Corporation.
5  * Copyright Red Hat, Inc. 2023
6  *
7  * Authors: Yi Liu <yi.l.liu@intel.com>
8  *          Eric Auger <eric.auger@redhat.com>
9  *
10  * SPDX-License-Identifier: GPL-2.0-or-later
11  */
12 
13 #ifndef HW_VFIO_VFIO_CONTAINER_BASE_H
14 #define HW_VFIO_VFIO_CONTAINER_BASE_H
15 
16 #include "exec/memory.h"
17 
18 typedef struct VFIODevice VFIODevice;
19 typedef struct VFIOIOMMUClass VFIOIOMMUClass;
20 
21 typedef struct {
22     unsigned long *bitmap;
23     hwaddr size;
24     hwaddr pages;
25 } VFIOBitmap;
26 
27 typedef struct VFIOAddressSpace {
28     AddressSpace *as;
29     QLIST_HEAD(, VFIOContainerBase) containers;
30     QLIST_ENTRY(VFIOAddressSpace) list;
31 } VFIOAddressSpace;
32 
33 /*
34  * This is the base object for vfio container backends
35  */
36 typedef struct VFIOContainerBase {
37     const VFIOIOMMUClass *ops;
38     VFIOAddressSpace *space;
39     MemoryListener listener;
40     Error *error;
41     bool initialized;
42     uint64_t dirty_pgsizes;
43     uint64_t max_dirty_bitmap_size;
44     unsigned long pgsizes;
45     unsigned int dma_max_mappings;
46     bool dirty_pages_supported;
47     QLIST_HEAD(, VFIOGuestIOMMU) giommu_list;
48     QLIST_HEAD(, VFIORamDiscardListener) vrdl_list;
49     QLIST_ENTRY(VFIOContainerBase) next;
50     QLIST_HEAD(, VFIODevice) device_list;
51     GList *iova_ranges;
52     NotifierWithReturn cpr_reboot_notifier;
53 } VFIOContainerBase;
54 
55 typedef struct VFIOGuestIOMMU {
56     VFIOContainerBase *bcontainer;
57     IOMMUMemoryRegion *iommu_mr;
58     hwaddr iommu_offset;
59     IOMMUNotifier n;
60     QLIST_ENTRY(VFIOGuestIOMMU) giommu_next;
61 } VFIOGuestIOMMU;
62 
63 typedef struct VFIORamDiscardListener {
64     VFIOContainerBase *bcontainer;
65     MemoryRegion *mr;
66     hwaddr offset_within_address_space;
67     hwaddr size;
68     uint64_t granularity;
69     RamDiscardListener listener;
70     QLIST_ENTRY(VFIORamDiscardListener) next;
71 } VFIORamDiscardListener;
72 
73 int vfio_container_dma_map(VFIOContainerBase *bcontainer,
74                            hwaddr iova, ram_addr_t size,
75                            void *vaddr, bool readonly);
76 int vfio_container_dma_unmap(VFIOContainerBase *bcontainer,
77                              hwaddr iova, ram_addr_t size,
78                              IOMMUTLBEntry *iotlb);
79 bool vfio_container_add_section_window(VFIOContainerBase *bcontainer,
80                                        MemoryRegionSection *section,
81                                        Error **errp);
82 void vfio_container_del_section_window(VFIOContainerBase *bcontainer,
83                                        MemoryRegionSection *section);
84 int vfio_container_set_dirty_page_tracking(VFIOContainerBase *bcontainer,
85                                            bool start, Error **errp);
86 int vfio_container_query_dirty_bitmap(const VFIOContainerBase *bcontainer,
87                    VFIOBitmap *vbmap, hwaddr iova, hwaddr size, Error **errp);
88 
89 void vfio_container_init(VFIOContainerBase *bcontainer,
90                          const VFIOIOMMUClass *ops);
91 void vfio_container_destroy(VFIOContainerBase *bcontainer);
92 
93 
94 #define TYPE_VFIO_IOMMU "vfio-iommu"
95 #define TYPE_VFIO_IOMMU_LEGACY TYPE_VFIO_IOMMU "-legacy"
96 #define TYPE_VFIO_IOMMU_SPAPR TYPE_VFIO_IOMMU "-spapr"
97 #define TYPE_VFIO_IOMMU_IOMMUFD TYPE_VFIO_IOMMU "-iommufd"
98 
99 /*
100  * VFIOContainerBase is not an abstract QOM object because it felt
101  * unnecessary to expose all the IOMMU backends to the QEMU machine
102  * and human interface. However, we can still abstract the IOMMU
103  * backend handlers using a QOM interface class. This provides more
104  * flexibility when referencing the various implementations.
105  */
106 DECLARE_CLASS_CHECKERS(VFIOIOMMUClass, VFIO_IOMMU, TYPE_VFIO_IOMMU)
107 
108 struct VFIOIOMMUClass {
109     InterfaceClass parent_class;
110 
111     /* Properties */
112     const char *hiod_typename;
113 
114     /* basic feature */
115     bool (*setup)(VFIOContainerBase *bcontainer, Error **errp);
116     int (*dma_map)(const VFIOContainerBase *bcontainer,
117                    hwaddr iova, ram_addr_t size,
118                    void *vaddr, bool readonly);
119     int (*dma_unmap)(const VFIOContainerBase *bcontainer,
120                      hwaddr iova, ram_addr_t size,
121                      IOMMUTLBEntry *iotlb);
122     bool (*attach_device)(const char *name, VFIODevice *vbasedev,
123                           AddressSpace *as, Error **errp);
124     void (*detach_device)(VFIODevice *vbasedev);
125 
126     /* migration feature */
127 
128     /**
129      * @set_dirty_page_tracking
130      *
131      * Start or stop dirty pages tracking on VFIO container
132      *
133      * @bcontainer: #VFIOContainerBase on which to de/activate dirty
134      *              page tracking
135      * @start: indicates whether to start or stop dirty pages tracking
136      * @errp: pointer to Error*, to store an error if it happens.
137      *
138      * Returns zero to indicate success and negative for error
139      */
140     int (*set_dirty_page_tracking)(const VFIOContainerBase *bcontainer,
141                                    bool start, Error **errp);
142     /**
143      * @query_dirty_bitmap
144      *
145      * Get bitmap of dirty pages from container
146      *
147      * @bcontainer: #VFIOContainerBase from which to get dirty pages
148      * @vbmap: #VFIOBitmap internal bitmap structure
149      * @iova: iova base address
150      * @size: size of iova range
151      * @errp: pointer to Error*, to store an error if it happens.
152      *
153      * Returns zero to indicate success and negative for error
154      */
155     int (*query_dirty_bitmap)(const VFIOContainerBase *bcontainer,
156                 VFIOBitmap *vbmap, hwaddr iova, hwaddr size, Error **errp);
157     /* PCI specific */
158     int (*pci_hot_reset)(VFIODevice *vbasedev, bool single);
159 
160     /* SPAPR specific */
161     bool (*add_window)(VFIOContainerBase *bcontainer,
162                        MemoryRegionSection *section,
163                        Error **errp);
164     void (*del_window)(VFIOContainerBase *bcontainer,
165                        MemoryRegionSection *section);
166     void (*release)(VFIOContainerBase *bcontainer);
167 };
168 #endif /* HW_VFIO_VFIO_CONTAINER_BASE_H */
169