xref: /openbmc/qemu/hw/vfio/spapr.c (revision 001a013ea3f125d2ec0e709b5765754149d8d968)
1318f67ceSAlexey Kardashevskiy /*
2318f67ceSAlexey Kardashevskiy  * DMA memory preregistration
3318f67ceSAlexey Kardashevskiy  *
4318f67ceSAlexey Kardashevskiy  * Authors:
5318f67ceSAlexey Kardashevskiy  *  Alexey Kardashevskiy <aik@ozlabs.ru>
6318f67ceSAlexey Kardashevskiy  *
7318f67ceSAlexey Kardashevskiy  * This work is licensed under the terms of the GNU GPL, version 2.  See
8318f67ceSAlexey Kardashevskiy  * the COPYING file in the top-level directory.
9318f67ceSAlexey Kardashevskiy  */
10318f67ceSAlexey Kardashevskiy 
11318f67ceSAlexey Kardashevskiy #include "qemu/osdep.h"
12318f67ceSAlexey Kardashevskiy #include <sys/ioctl.h>
13318f67ceSAlexey Kardashevskiy #include <linux/vfio.h>
14521c8f4eSZhenzhong Duan #ifdef CONFIG_KVM
15521c8f4eSZhenzhong Duan #include <linux/kvm.h>
16521c8f4eSZhenzhong Duan #endif
17521c8f4eSZhenzhong Duan #include "sysemu/kvm.h"
18770c3b6eSZhenzhong Duan #include "exec/address-spaces.h"
19318f67ceSAlexey Kardashevskiy 
20318f67ceSAlexey Kardashevskiy #include "hw/vfio/vfio-common.h"
21318f67ceSAlexey Kardashevskiy #include "hw/hw.h"
22c26bc185SAlexey Kardashevskiy #include "exec/ram_addr.h"
23318f67ceSAlexey Kardashevskiy #include "qemu/error-report.h"
24d7d87836SEric Auger #include "qapi/error.h"
25318f67ceSAlexey Kardashevskiy #include "trace.h"
26318f67ceSAlexey Kardashevskiy 
279b7d38bfSZhenzhong Duan typedef struct VFIOSpaprContainer {
289b7d38bfSZhenzhong Duan     VFIOContainer container;
296ad359ecSZhenzhong Duan     MemoryListener prereg_listener;
30dbb9d0c9SZhenzhong Duan     QLIST_HEAD(, VFIOHostDMAWindow) hostwin_list;
319b7d38bfSZhenzhong Duan } VFIOSpaprContainer;
329b7d38bfSZhenzhong Duan 
33318f67ceSAlexey Kardashevskiy static bool vfio_prereg_listener_skipped_section(MemoryRegionSection *section)
34318f67ceSAlexey Kardashevskiy {
35318f67ceSAlexey Kardashevskiy     if (memory_region_is_iommu(section->mr)) {
36318f67ceSAlexey Kardashevskiy         hw_error("Cannot possibly preregister IOMMU memory");
37318f67ceSAlexey Kardashevskiy     }
38318f67ceSAlexey Kardashevskiy 
39318f67ceSAlexey Kardashevskiy     return !memory_region_is_ram(section->mr) ||
4021e00fa5SAlex Williamson             memory_region_is_ram_device(section->mr);
41318f67ceSAlexey Kardashevskiy }
42318f67ceSAlexey Kardashevskiy 
43318f67ceSAlexey Kardashevskiy static void *vfio_prereg_gpa_to_vaddr(MemoryRegionSection *section, hwaddr gpa)
44318f67ceSAlexey Kardashevskiy {
45318f67ceSAlexey Kardashevskiy     return memory_region_get_ram_ptr(section->mr) +
46318f67ceSAlexey Kardashevskiy         section->offset_within_region +
47318f67ceSAlexey Kardashevskiy         (gpa - section->offset_within_address_space);
48318f67ceSAlexey Kardashevskiy }
49318f67ceSAlexey Kardashevskiy 
50318f67ceSAlexey Kardashevskiy static void vfio_prereg_listener_region_add(MemoryListener *listener,
51318f67ceSAlexey Kardashevskiy                                             MemoryRegionSection *section)
52318f67ceSAlexey Kardashevskiy {
536ad359ecSZhenzhong Duan     VFIOSpaprContainer *scontainer = container_of(listener, VFIOSpaprContainer,
54318f67ceSAlexey Kardashevskiy                                                   prereg_listener);
556ad359ecSZhenzhong Duan     VFIOContainer *container = &scontainer->container;
56c7b313d3SEric Auger     VFIOContainerBase *bcontainer = &container->bcontainer;
57318f67ceSAlexey Kardashevskiy     const hwaddr gpa = section->offset_within_address_space;
58318f67ceSAlexey Kardashevskiy     hwaddr end;
59318f67ceSAlexey Kardashevskiy     int ret;
608e3b0cbbSMarc-André Lureau     hwaddr page_mask = qemu_real_host_page_mask();
61318f67ceSAlexey Kardashevskiy     struct vfio_iommu_spapr_register_memory reg = {
62318f67ceSAlexey Kardashevskiy         .argsz = sizeof(reg),
63318f67ceSAlexey Kardashevskiy         .flags = 0,
64318f67ceSAlexey Kardashevskiy     };
65318f67ceSAlexey Kardashevskiy 
66318f67ceSAlexey Kardashevskiy     if (vfio_prereg_listener_skipped_section(section)) {
67318f67ceSAlexey Kardashevskiy         trace_vfio_prereg_listener_region_add_skip(
68318f67ceSAlexey Kardashevskiy                 section->offset_within_address_space,
69318f67ceSAlexey Kardashevskiy                 section->offset_within_address_space +
70318f67ceSAlexey Kardashevskiy                 int128_get64(int128_sub(section->size, int128_one())));
71318f67ceSAlexey Kardashevskiy         return;
72318f67ceSAlexey Kardashevskiy     }
73318f67ceSAlexey Kardashevskiy 
74318f67ceSAlexey Kardashevskiy     if (unlikely((section->offset_within_address_space & ~page_mask) ||
75318f67ceSAlexey Kardashevskiy                  (section->offset_within_region & ~page_mask) ||
76318f67ceSAlexey Kardashevskiy                  (int128_get64(section->size) & ~page_mask))) {
77318f67ceSAlexey Kardashevskiy         error_report("%s received unaligned region", __func__);
78318f67ceSAlexey Kardashevskiy         return;
79318f67ceSAlexey Kardashevskiy     }
80318f67ceSAlexey Kardashevskiy 
81318f67ceSAlexey Kardashevskiy     end = section->offset_within_address_space + int128_get64(section->size);
82318f67ceSAlexey Kardashevskiy     if (gpa >= end) {
83318f67ceSAlexey Kardashevskiy         return;
84318f67ceSAlexey Kardashevskiy     }
85318f67ceSAlexey Kardashevskiy 
86318f67ceSAlexey Kardashevskiy     memory_region_ref(section->mr);
87318f67ceSAlexey Kardashevskiy 
88318f67ceSAlexey Kardashevskiy     reg.vaddr = (uintptr_t) vfio_prereg_gpa_to_vaddr(section, gpa);
89318f67ceSAlexey Kardashevskiy     reg.size = end - gpa;
90318f67ceSAlexey Kardashevskiy 
91318f67ceSAlexey Kardashevskiy     ret = ioctl(container->fd, VFIO_IOMMU_SPAPR_REGISTER_MEMORY, &reg);
92318f67ceSAlexey Kardashevskiy     trace_vfio_prereg_register(reg.vaddr, reg.size, ret ? -errno : 0);
93318f67ceSAlexey Kardashevskiy     if (ret) {
94318f67ceSAlexey Kardashevskiy         /*
95318f67ceSAlexey Kardashevskiy          * On the initfn path, store the first error in the container so we
96318f67ceSAlexey Kardashevskiy          * can gracefully fail.  Runtime, there's not much we can do other
97318f67ceSAlexey Kardashevskiy          * than throw a hardware error.
98318f67ceSAlexey Kardashevskiy          */
99c7b313d3SEric Auger         if (!bcontainer->initialized) {
100c7b313d3SEric Auger             if (!bcontainer->error) {
101c7b313d3SEric Auger                 error_setg_errno(&bcontainer->error, -ret,
102d7d87836SEric Auger                                  "Memory registering failed");
103318f67ceSAlexey Kardashevskiy             }
104318f67ceSAlexey Kardashevskiy         } else {
105318f67ceSAlexey Kardashevskiy             hw_error("vfio: Memory registering failed, unable to continue");
106318f67ceSAlexey Kardashevskiy         }
107318f67ceSAlexey Kardashevskiy     }
108318f67ceSAlexey Kardashevskiy }
109318f67ceSAlexey Kardashevskiy 
110318f67ceSAlexey Kardashevskiy static void vfio_prereg_listener_region_del(MemoryListener *listener,
111318f67ceSAlexey Kardashevskiy                                             MemoryRegionSection *section)
112318f67ceSAlexey Kardashevskiy {
1136ad359ecSZhenzhong Duan     VFIOSpaprContainer *scontainer = container_of(listener, VFIOSpaprContainer,
114318f67ceSAlexey Kardashevskiy                                                   prereg_listener);
1156ad359ecSZhenzhong Duan     VFIOContainer *container = &scontainer->container;
116318f67ceSAlexey Kardashevskiy     const hwaddr gpa = section->offset_within_address_space;
117318f67ceSAlexey Kardashevskiy     hwaddr end;
118318f67ceSAlexey Kardashevskiy     int ret;
1198e3b0cbbSMarc-André Lureau     hwaddr page_mask = qemu_real_host_page_mask();
120318f67ceSAlexey Kardashevskiy     struct vfio_iommu_spapr_register_memory reg = {
121318f67ceSAlexey Kardashevskiy         .argsz = sizeof(reg),
122318f67ceSAlexey Kardashevskiy         .flags = 0,
123318f67ceSAlexey Kardashevskiy     };
124318f67ceSAlexey Kardashevskiy 
125318f67ceSAlexey Kardashevskiy     if (vfio_prereg_listener_skipped_section(section)) {
126318f67ceSAlexey Kardashevskiy         trace_vfio_prereg_listener_region_del_skip(
127318f67ceSAlexey Kardashevskiy                 section->offset_within_address_space,
128318f67ceSAlexey Kardashevskiy                 section->offset_within_address_space +
129318f67ceSAlexey Kardashevskiy                 int128_get64(int128_sub(section->size, int128_one())));
130318f67ceSAlexey Kardashevskiy         return;
131318f67ceSAlexey Kardashevskiy     }
132318f67ceSAlexey Kardashevskiy 
133318f67ceSAlexey Kardashevskiy     if (unlikely((section->offset_within_address_space & ~page_mask) ||
134318f67ceSAlexey Kardashevskiy                  (section->offset_within_region & ~page_mask) ||
135318f67ceSAlexey Kardashevskiy                  (int128_get64(section->size) & ~page_mask))) {
136318f67ceSAlexey Kardashevskiy         error_report("%s received unaligned region", __func__);
137318f67ceSAlexey Kardashevskiy         return;
138318f67ceSAlexey Kardashevskiy     }
139318f67ceSAlexey Kardashevskiy 
140318f67ceSAlexey Kardashevskiy     end = section->offset_within_address_space + int128_get64(section->size);
141318f67ceSAlexey Kardashevskiy     if (gpa >= end) {
142318f67ceSAlexey Kardashevskiy         return;
143318f67ceSAlexey Kardashevskiy     }
144318f67ceSAlexey Kardashevskiy 
145318f67ceSAlexey Kardashevskiy     reg.vaddr = (uintptr_t) vfio_prereg_gpa_to_vaddr(section, gpa);
146318f67ceSAlexey Kardashevskiy     reg.size = end - gpa;
147318f67ceSAlexey Kardashevskiy 
148318f67ceSAlexey Kardashevskiy     ret = ioctl(container->fd, VFIO_IOMMU_SPAPR_UNREGISTER_MEMORY, &reg);
149318f67ceSAlexey Kardashevskiy     trace_vfio_prereg_unregister(reg.vaddr, reg.size, ret ? -errno : 0);
150318f67ceSAlexey Kardashevskiy }
151318f67ceSAlexey Kardashevskiy 
152770c3b6eSZhenzhong Duan static const MemoryListener vfio_prereg_listener = {
153142518bdSPeter Xu     .name = "vfio-pre-reg",
154318f67ceSAlexey Kardashevskiy     .region_add = vfio_prereg_listener_region_add,
155318f67ceSAlexey Kardashevskiy     .region_del = vfio_prereg_listener_region_del,
156318f67ceSAlexey Kardashevskiy };
1572e4109deSAlexey Kardashevskiy 
158dbb9d0c9SZhenzhong Duan static void vfio_host_win_add(VFIOSpaprContainer *scontainer, hwaddr min_iova,
159a2347c60SZhenzhong Duan                               hwaddr max_iova, uint64_t iova_pgsizes)
160a2347c60SZhenzhong Duan {
161a2347c60SZhenzhong Duan     VFIOHostDMAWindow *hostwin;
162a2347c60SZhenzhong Duan 
163dbb9d0c9SZhenzhong Duan     QLIST_FOREACH(hostwin, &scontainer->hostwin_list, hostwin_next) {
164a2347c60SZhenzhong Duan         if (ranges_overlap(hostwin->min_iova,
165a2347c60SZhenzhong Duan                            hostwin->max_iova - hostwin->min_iova + 1,
166a2347c60SZhenzhong Duan                            min_iova,
167a2347c60SZhenzhong Duan                            max_iova - min_iova + 1)) {
168a2347c60SZhenzhong Duan             hw_error("%s: Overlapped IOMMU are not enabled", __func__);
169a2347c60SZhenzhong Duan         }
170a2347c60SZhenzhong Duan     }
171a2347c60SZhenzhong Duan 
172a2347c60SZhenzhong Duan     hostwin = g_malloc0(sizeof(*hostwin));
173a2347c60SZhenzhong Duan 
174a2347c60SZhenzhong Duan     hostwin->min_iova = min_iova;
175a2347c60SZhenzhong Duan     hostwin->max_iova = max_iova;
176a2347c60SZhenzhong Duan     hostwin->iova_pgsizes = iova_pgsizes;
177dbb9d0c9SZhenzhong Duan     QLIST_INSERT_HEAD(&scontainer->hostwin_list, hostwin, hostwin_next);
178a2347c60SZhenzhong Duan }
179a2347c60SZhenzhong Duan 
180dbb9d0c9SZhenzhong Duan static int vfio_host_win_del(VFIOSpaprContainer *scontainer,
181a2347c60SZhenzhong Duan                              hwaddr min_iova, hwaddr max_iova)
182a2347c60SZhenzhong Duan {
183a2347c60SZhenzhong Duan     VFIOHostDMAWindow *hostwin;
184a2347c60SZhenzhong Duan 
185dbb9d0c9SZhenzhong Duan     QLIST_FOREACH(hostwin, &scontainer->hostwin_list, hostwin_next) {
186a2347c60SZhenzhong Duan         if (hostwin->min_iova == min_iova && hostwin->max_iova == max_iova) {
187a2347c60SZhenzhong Duan             QLIST_REMOVE(hostwin, hostwin_next);
188a2347c60SZhenzhong Duan             g_free(hostwin);
189a2347c60SZhenzhong Duan             return 0;
190a2347c60SZhenzhong Duan         }
191a2347c60SZhenzhong Duan     }
192a2347c60SZhenzhong Duan 
193a2347c60SZhenzhong Duan     return -1;
194a2347c60SZhenzhong Duan }
195a2347c60SZhenzhong Duan 
196dbb9d0c9SZhenzhong Duan static VFIOHostDMAWindow *vfio_find_hostwin(VFIOSpaprContainer *container,
197a2347c60SZhenzhong Duan                                             hwaddr iova, hwaddr end)
198a2347c60SZhenzhong Duan {
199a2347c60SZhenzhong Duan     VFIOHostDMAWindow *hostwin;
200a2347c60SZhenzhong Duan     bool hostwin_found = false;
201a2347c60SZhenzhong Duan 
202a2347c60SZhenzhong Duan     QLIST_FOREACH(hostwin, &container->hostwin_list, hostwin_next) {
203a2347c60SZhenzhong Duan         if (hostwin->min_iova <= iova && end <= hostwin->max_iova) {
204a2347c60SZhenzhong Duan             hostwin_found = true;
205a2347c60SZhenzhong Duan             break;
206a2347c60SZhenzhong Duan         }
207a2347c60SZhenzhong Duan     }
208a2347c60SZhenzhong Duan 
209a2347c60SZhenzhong Duan     return hostwin_found ? hostwin : NULL;
210a2347c60SZhenzhong Duan }
211a2347c60SZhenzhong Duan 
212a17879f0SZhenzhong Duan static int vfio_spapr_remove_window(VFIOContainer *container,
213a17879f0SZhenzhong Duan                                     hwaddr offset_within_address_space)
214a17879f0SZhenzhong Duan {
215a17879f0SZhenzhong Duan     struct vfio_iommu_spapr_tce_remove remove = {
216a17879f0SZhenzhong Duan         .argsz = sizeof(remove),
217a17879f0SZhenzhong Duan         .start_addr = offset_within_address_space,
218a17879f0SZhenzhong Duan     };
219a17879f0SZhenzhong Duan     int ret;
220a17879f0SZhenzhong Duan 
221a17879f0SZhenzhong Duan     ret = ioctl(container->fd, VFIO_IOMMU_SPAPR_TCE_REMOVE, &remove);
222a17879f0SZhenzhong Duan     if (ret) {
223a17879f0SZhenzhong Duan         error_report("Failed to remove window at %"PRIx64,
224a17879f0SZhenzhong Duan                      (uint64_t)remove.start_addr);
225a17879f0SZhenzhong Duan         return -errno;
226a17879f0SZhenzhong Duan     }
227a17879f0SZhenzhong Duan 
228a17879f0SZhenzhong Duan     trace_vfio_spapr_remove_window(offset_within_address_space);
229a17879f0SZhenzhong Duan 
230a17879f0SZhenzhong Duan     return 0;
231a17879f0SZhenzhong Duan }
232a17879f0SZhenzhong Duan 
233a17879f0SZhenzhong Duan static int vfio_spapr_create_window(VFIOContainer *container,
2342e4109deSAlexey Kardashevskiy                                     MemoryRegionSection *section,
2352e4109deSAlexey Kardashevskiy                                     hwaddr *pgsize)
2362e4109deSAlexey Kardashevskiy {
23716107998SAlexey Kardashevskiy     int ret = 0;
2387ab1cb74SEric Auger     VFIOContainerBase *bcontainer = &container->bcontainer;
2393df9d748SAlexey Kardashevskiy     IOMMUMemoryRegion *iommu_mr = IOMMU_MEMORY_REGION(section->mr);
24079178eddSAlexey Kardashevskiy     uint64_t pagesize = memory_region_iommu_get_min_page_size(iommu_mr), pgmask;
24116107998SAlexey Kardashevskiy     unsigned entries, bits_total, bits_per_level, max_levels;
2422e4109deSAlexey Kardashevskiy     struct vfio_iommu_spapr_tce_create create = { .argsz = sizeof(create) };
243905b7ee4SDavid Hildenbrand     long rampagesize = qemu_minrampagesize();
244c26bc185SAlexey Kardashevskiy 
245c26bc185SAlexey Kardashevskiy     /*
246c26bc185SAlexey Kardashevskiy      * The host might not support the guest supported IOMMU page size,
247c26bc185SAlexey Kardashevskiy      * so we will use smaller physical IOMMU pages to back them.
248c26bc185SAlexey Kardashevskiy      */
2493cdd801bSAlexey Kardashevskiy     if (pagesize > rampagesize) {
2503cdd801bSAlexey Kardashevskiy         pagesize = rampagesize;
251c26bc185SAlexey Kardashevskiy     }
2527ab1cb74SEric Auger     pgmask = bcontainer->pgsizes & (pagesize | (pagesize - 1));
25379178eddSAlexey Kardashevskiy     pagesize = pgmask ? (1ULL << (63 - clz64(pgmask))) : 0;
254c26bc185SAlexey Kardashevskiy     if (!pagesize) {
255c26bc185SAlexey Kardashevskiy         error_report("Host doesn't support page size 0x%"PRIx64
256c26bc185SAlexey Kardashevskiy                      ", the supported mask is 0x%lx",
257c26bc185SAlexey Kardashevskiy                      memory_region_iommu_get_min_page_size(iommu_mr),
2587ab1cb74SEric Auger                      bcontainer->pgsizes);
259c26bc185SAlexey Kardashevskiy         return -EINVAL;
260c26bc185SAlexey Kardashevskiy     }
2612e4109deSAlexey Kardashevskiy 
2622e4109deSAlexey Kardashevskiy     /*
2632e4109deSAlexey Kardashevskiy      * FIXME: For VFIO iommu types which have KVM acceleration to
2642e4109deSAlexey Kardashevskiy      * avoid bouncing all map/unmaps through qemu this way, this
2652e4109deSAlexey Kardashevskiy      * would be the right place to wire that up (tell the KVM
2662e4109deSAlexey Kardashevskiy      * device emulation the VFIO iommu handles to use).
2672e4109deSAlexey Kardashevskiy      */
2682e4109deSAlexey Kardashevskiy     create.window_size = int128_get64(section->size);
2692e4109deSAlexey Kardashevskiy     create.page_shift = ctz64(pagesize);
2702e4109deSAlexey Kardashevskiy     /*
27116107998SAlexey Kardashevskiy      * SPAPR host supports multilevel TCE tables. We try to guess optimal
27216107998SAlexey Kardashevskiy      * levels number and if this fails (for example due to the host memory
27316107998SAlexey Kardashevskiy      * fragmentation), we increase levels. The DMA address structure is:
27416107998SAlexey Kardashevskiy      * rrrrrrrr rxxxxxxx xxxxxxxx xxxxxxxx  xxxxxxxx xxxxxxxx xxxxxxxx iiiiiiii
27516107998SAlexey Kardashevskiy      * where:
27616107998SAlexey Kardashevskiy      *   r = reserved (bits >= 55 are reserved in the existing hardware)
27716107998SAlexey Kardashevskiy      *   i = IOMMU page offset (64K in this example)
27816107998SAlexey Kardashevskiy      *   x = bits to index a TCE which can be split to equal chunks to index
27916107998SAlexey Kardashevskiy      *      within the level.
28016107998SAlexey Kardashevskiy      * The aim is to split "x" to smaller possible number of levels.
2812e4109deSAlexey Kardashevskiy      */
2822e4109deSAlexey Kardashevskiy     entries = create.window_size >> create.page_shift;
28316107998SAlexey Kardashevskiy     /* bits_total is number of "x" needed */
28416107998SAlexey Kardashevskiy     bits_total = ctz64(entries * sizeof(uint64_t));
28516107998SAlexey Kardashevskiy     /*
28616107998SAlexey Kardashevskiy      * bits_per_level is a safe guess of how much we can allocate per level:
28716107998SAlexey Kardashevskiy      * 8 is the current minimum for CONFIG_FORCE_MAX_ZONEORDER and MAX_ORDER
28816107998SAlexey Kardashevskiy      * is usually bigger than that.
289038adc2fSWei Yang      * Below we look at qemu_real_host_page_size as TCEs are allocated from
290038adc2fSWei Yang      * system pages.
29116107998SAlexey Kardashevskiy      */
2928e3b0cbbSMarc-André Lureau     bits_per_level = ctz64(qemu_real_host_page_size()) + 8;
29316107998SAlexey Kardashevskiy     create.levels = bits_total / bits_per_level;
29416107998SAlexey Kardashevskiy     if (bits_total % bits_per_level) {
29516107998SAlexey Kardashevskiy         ++create.levels;
29616107998SAlexey Kardashevskiy     }
2978e3b0cbbSMarc-André Lureau     max_levels = (64 - create.page_shift) / ctz64(qemu_real_host_page_size());
29816107998SAlexey Kardashevskiy     for ( ; create.levels <= max_levels; ++create.levels) {
2992e4109deSAlexey Kardashevskiy         ret = ioctl(container->fd, VFIO_IOMMU_SPAPR_TCE_CREATE, &create);
30016107998SAlexey Kardashevskiy         if (!ret) {
30116107998SAlexey Kardashevskiy             break;
30216107998SAlexey Kardashevskiy         }
30316107998SAlexey Kardashevskiy     }
3042e4109deSAlexey Kardashevskiy     if (ret) {
3052e4109deSAlexey Kardashevskiy         error_report("Failed to create a window, ret = %d (%m)", ret);
3062e4109deSAlexey Kardashevskiy         return -errno;
3072e4109deSAlexey Kardashevskiy     }
3082e4109deSAlexey Kardashevskiy 
3092e4109deSAlexey Kardashevskiy     if (create.start_addr != section->offset_within_address_space) {
3102e4109deSAlexey Kardashevskiy         vfio_spapr_remove_window(container, create.start_addr);
3112e4109deSAlexey Kardashevskiy 
3122e4109deSAlexey Kardashevskiy         error_report("Host doesn't support DMA window at %"HWADDR_PRIx", must be %"PRIx64,
3132e4109deSAlexey Kardashevskiy                      section->offset_within_address_space,
3142e4109deSAlexey Kardashevskiy                      (uint64_t)create.start_addr);
3152e4109deSAlexey Kardashevskiy         return -EINVAL;
3162e4109deSAlexey Kardashevskiy     }
3172e4109deSAlexey Kardashevskiy     trace_vfio_spapr_create_window(create.page_shift,
31816107998SAlexey Kardashevskiy                                    create.levels,
3192e4109deSAlexey Kardashevskiy                                    create.window_size,
3202e4109deSAlexey Kardashevskiy                                    create.start_addr);
3212e4109deSAlexey Kardashevskiy     *pgsize = pagesize;
3222e4109deSAlexey Kardashevskiy 
3232e4109deSAlexey Kardashevskiy     return 0;
3242e4109deSAlexey Kardashevskiy }
3252e4109deSAlexey Kardashevskiy 
326233309e8SZhenzhong Duan static int
327233309e8SZhenzhong Duan vfio_spapr_container_add_section_window(VFIOContainerBase *bcontainer,
328521c8f4eSZhenzhong Duan                                         MemoryRegionSection *section,
329521c8f4eSZhenzhong Duan                                         Error **errp)
330521c8f4eSZhenzhong Duan {
331233309e8SZhenzhong Duan     VFIOContainer *container = container_of(bcontainer, VFIOContainer,
332233309e8SZhenzhong Duan                                             bcontainer);
333dbb9d0c9SZhenzhong Duan     VFIOSpaprContainer *scontainer = container_of(container, VFIOSpaprContainer,
334dbb9d0c9SZhenzhong Duan                                                   container);
335521c8f4eSZhenzhong Duan     VFIOHostDMAWindow *hostwin;
336521c8f4eSZhenzhong Duan     hwaddr pgsize = 0;
337521c8f4eSZhenzhong Duan     int ret;
338521c8f4eSZhenzhong Duan 
339a2347c60SZhenzhong Duan     /*
340a2347c60SZhenzhong Duan      * VFIO_SPAPR_TCE_IOMMU supports a single host window between
341a2347c60SZhenzhong Duan      * [dma32_window_start, dma32_window_size), we need to ensure
342a2347c60SZhenzhong Duan      * the section fall in this range.
343a2347c60SZhenzhong Duan      */
344a2347c60SZhenzhong Duan     if (container->iommu_type == VFIO_SPAPR_TCE_IOMMU) {
345a2347c60SZhenzhong Duan         hwaddr iova, end;
346a2347c60SZhenzhong Duan 
347a2347c60SZhenzhong Duan         iova = section->offset_within_address_space;
348a2347c60SZhenzhong Duan         end = iova + int128_get64(section->size) - 1;
349a2347c60SZhenzhong Duan 
350dbb9d0c9SZhenzhong Duan         if (!vfio_find_hostwin(scontainer, iova, end)) {
351a2347c60SZhenzhong Duan             error_setg(errp, "Container %p can't map guest IOVA region"
352a2347c60SZhenzhong Duan                        " 0x%"HWADDR_PRIx"..0x%"HWADDR_PRIx, container,
353a2347c60SZhenzhong Duan                        iova, end);
354a2347c60SZhenzhong Duan             return -EINVAL;
355a2347c60SZhenzhong Duan         }
356a2347c60SZhenzhong Duan         return 0;
357a2347c60SZhenzhong Duan     }
358a2347c60SZhenzhong Duan 
359521c8f4eSZhenzhong Duan     if (container->iommu_type != VFIO_SPAPR_TCE_v2_IOMMU) {
360521c8f4eSZhenzhong Duan         return 0;
361521c8f4eSZhenzhong Duan     }
362521c8f4eSZhenzhong Duan 
363521c8f4eSZhenzhong Duan     /* For now intersections are not allowed, we may relax this later */
364dbb9d0c9SZhenzhong Duan     QLIST_FOREACH(hostwin, &scontainer->hostwin_list, hostwin_next) {
365521c8f4eSZhenzhong Duan         if (ranges_overlap(hostwin->min_iova,
366521c8f4eSZhenzhong Duan                            hostwin->max_iova - hostwin->min_iova + 1,
367521c8f4eSZhenzhong Duan                            section->offset_within_address_space,
368521c8f4eSZhenzhong Duan                            int128_get64(section->size))) {
369521c8f4eSZhenzhong Duan             error_setg(errp,
370521c8f4eSZhenzhong Duan                 "region [0x%"PRIx64",0x%"PRIx64"] overlaps with existing"
371521c8f4eSZhenzhong Duan                 "host DMA window [0x%"PRIx64",0x%"PRIx64"]",
372521c8f4eSZhenzhong Duan                 section->offset_within_address_space,
373521c8f4eSZhenzhong Duan                 section->offset_within_address_space +
374521c8f4eSZhenzhong Duan                     int128_get64(section->size) - 1,
375521c8f4eSZhenzhong Duan                 hostwin->min_iova, hostwin->max_iova);
376521c8f4eSZhenzhong Duan             return -EINVAL;
377521c8f4eSZhenzhong Duan         }
378521c8f4eSZhenzhong Duan     }
379521c8f4eSZhenzhong Duan 
380521c8f4eSZhenzhong Duan     ret = vfio_spapr_create_window(container, section, &pgsize);
381521c8f4eSZhenzhong Duan     if (ret) {
382521c8f4eSZhenzhong Duan         error_setg_errno(errp, -ret, "Failed to create SPAPR window");
383521c8f4eSZhenzhong Duan         return ret;
384521c8f4eSZhenzhong Duan     }
385521c8f4eSZhenzhong Duan 
386dbb9d0c9SZhenzhong Duan     vfio_host_win_add(scontainer, section->offset_within_address_space,
387521c8f4eSZhenzhong Duan                       section->offset_within_address_space +
388521c8f4eSZhenzhong Duan                       int128_get64(section->size) - 1, pgsize);
389521c8f4eSZhenzhong Duan #ifdef CONFIG_KVM
390521c8f4eSZhenzhong Duan     if (kvm_enabled()) {
391521c8f4eSZhenzhong Duan         VFIOGroup *group;
392521c8f4eSZhenzhong Duan         IOMMUMemoryRegion *iommu_mr = IOMMU_MEMORY_REGION(section->mr);
393521c8f4eSZhenzhong Duan         struct kvm_vfio_spapr_tce param;
394521c8f4eSZhenzhong Duan         struct kvm_device_attr attr = {
395521c8f4eSZhenzhong Duan             .group = KVM_DEV_VFIO_GROUP,
396521c8f4eSZhenzhong Duan             .attr = KVM_DEV_VFIO_GROUP_SET_SPAPR_TCE,
397521c8f4eSZhenzhong Duan             .addr = (uint64_t)(unsigned long)&param,
398521c8f4eSZhenzhong Duan         };
399521c8f4eSZhenzhong Duan 
400521c8f4eSZhenzhong Duan         if (!memory_region_iommu_get_attr(iommu_mr, IOMMU_ATTR_SPAPR_TCE_FD,
401521c8f4eSZhenzhong Duan                                           &param.tablefd)) {
402521c8f4eSZhenzhong Duan             QLIST_FOREACH(group, &container->group_list, container_next) {
403521c8f4eSZhenzhong Duan                 param.groupfd = group->fd;
404521c8f4eSZhenzhong Duan                 if (ioctl(vfio_kvm_device_fd, KVM_SET_DEVICE_ATTR, &attr)) {
405521c8f4eSZhenzhong Duan                     error_setg_errno(errp, errno,
406521c8f4eSZhenzhong Duan                                      "vfio: failed GROUP_SET_SPAPR_TCE for "
407521c8f4eSZhenzhong Duan                                      "KVM VFIO device %d and group fd %d",
408521c8f4eSZhenzhong Duan                                      param.tablefd, param.groupfd);
409521c8f4eSZhenzhong Duan                     return -errno;
410521c8f4eSZhenzhong Duan                 }
411521c8f4eSZhenzhong Duan                 trace_vfio_spapr_group_attach(param.groupfd, param.tablefd);
412521c8f4eSZhenzhong Duan             }
413521c8f4eSZhenzhong Duan         }
414521c8f4eSZhenzhong Duan     }
415521c8f4eSZhenzhong Duan #endif
416521c8f4eSZhenzhong Duan     return 0;
417521c8f4eSZhenzhong Duan }
418521c8f4eSZhenzhong Duan 
419233309e8SZhenzhong Duan static void
420233309e8SZhenzhong Duan vfio_spapr_container_del_section_window(VFIOContainerBase *bcontainer,
421521c8f4eSZhenzhong Duan                                         MemoryRegionSection *section)
422521c8f4eSZhenzhong Duan {
423233309e8SZhenzhong Duan     VFIOContainer *container = container_of(bcontainer, VFIOContainer,
424233309e8SZhenzhong Duan                                             bcontainer);
425dbb9d0c9SZhenzhong Duan     VFIOSpaprContainer *scontainer = container_of(container, VFIOSpaprContainer,
426dbb9d0c9SZhenzhong Duan                                                   container);
427233309e8SZhenzhong Duan 
428521c8f4eSZhenzhong Duan     if (container->iommu_type != VFIO_SPAPR_TCE_v2_IOMMU) {
429521c8f4eSZhenzhong Duan         return;
430521c8f4eSZhenzhong Duan     }
431521c8f4eSZhenzhong Duan 
432521c8f4eSZhenzhong Duan     vfio_spapr_remove_window(container,
433521c8f4eSZhenzhong Duan                              section->offset_within_address_space);
434dbb9d0c9SZhenzhong Duan     if (vfio_host_win_del(scontainer,
435521c8f4eSZhenzhong Duan                           section->offset_within_address_space,
436521c8f4eSZhenzhong Duan                           section->offset_within_address_space +
437521c8f4eSZhenzhong Duan                           int128_get64(section->size) - 1) < 0) {
438521c8f4eSZhenzhong Duan         hw_error("%s: Cannot delete missing window at %"HWADDR_PRIx,
439521c8f4eSZhenzhong Duan                  __func__, section->offset_within_address_space);
440521c8f4eSZhenzhong Duan     }
441521c8f4eSZhenzhong Duan }
442770c3b6eSZhenzhong Duan 
443*001a013eSCédric Le Goater static void vfio_spapr_container_release(VFIOContainerBase *bcontainer)
444*001a013eSCédric Le Goater {
445*001a013eSCédric Le Goater     VFIOContainer *container = container_of(bcontainer, VFIOContainer,
446*001a013eSCédric Le Goater                                             bcontainer);
447*001a013eSCédric Le Goater     VFIOSpaprContainer *scontainer = container_of(container, VFIOSpaprContainer,
448*001a013eSCédric Le Goater                                                   container);
449*001a013eSCédric Le Goater     VFIOHostDMAWindow *hostwin, *next;
450*001a013eSCédric Le Goater 
451*001a013eSCédric Le Goater     if (container->iommu_type == VFIO_SPAPR_TCE_v2_IOMMU) {
452*001a013eSCédric Le Goater         memory_listener_unregister(&scontainer->prereg_listener);
453*001a013eSCédric Le Goater     }
454*001a013eSCédric Le Goater     QLIST_FOREACH_SAFE(hostwin, &scontainer->hostwin_list, hostwin_next,
455*001a013eSCédric Le Goater                        next) {
456*001a013eSCédric Le Goater         QLIST_REMOVE(hostwin, hostwin_next);
457*001a013eSCédric Le Goater         g_free(hostwin);
458*001a013eSCédric Le Goater     }
459*001a013eSCédric Le Goater }
460*001a013eSCédric Le Goater 
4619b7d38bfSZhenzhong Duan static VFIOIOMMUOps vfio_iommu_spapr_ops;
4629b7d38bfSZhenzhong Duan 
4639b7d38bfSZhenzhong Duan static void setup_spapr_ops(VFIOContainerBase *bcontainer)
4649b7d38bfSZhenzhong Duan {
4659b7d38bfSZhenzhong Duan     vfio_iommu_spapr_ops = *bcontainer->ops;
466233309e8SZhenzhong Duan     vfio_iommu_spapr_ops.add_window = vfio_spapr_container_add_section_window;
467233309e8SZhenzhong Duan     vfio_iommu_spapr_ops.del_window = vfio_spapr_container_del_section_window;
468*001a013eSCédric Le Goater     vfio_iommu_spapr_ops.release = vfio_spapr_container_release;
4699b7d38bfSZhenzhong Duan     bcontainer->ops = &vfio_iommu_spapr_ops;
4709b7d38bfSZhenzhong Duan }
4719b7d38bfSZhenzhong Duan 
472770c3b6eSZhenzhong Duan int vfio_spapr_container_init(VFIOContainer *container, Error **errp)
473770c3b6eSZhenzhong Duan {
4747ab1cb74SEric Auger     VFIOContainerBase *bcontainer = &container->bcontainer;
4756ad359ecSZhenzhong Duan     VFIOSpaprContainer *scontainer = container_of(container, VFIOSpaprContainer,
4766ad359ecSZhenzhong Duan                                                   container);
477770c3b6eSZhenzhong Duan     struct vfio_iommu_spapr_tce_info info;
478770c3b6eSZhenzhong Duan     bool v2 = container->iommu_type == VFIO_SPAPR_TCE_v2_IOMMU;
479770c3b6eSZhenzhong Duan     int ret, fd = container->fd;
480770c3b6eSZhenzhong Duan 
481dbb9d0c9SZhenzhong Duan     QLIST_INIT(&scontainer->hostwin_list);
482a2347c60SZhenzhong Duan 
483770c3b6eSZhenzhong Duan     /*
484770c3b6eSZhenzhong Duan      * The host kernel code implementing VFIO_IOMMU_DISABLE is called
485770c3b6eSZhenzhong Duan      * when container fd is closed so we do not call it explicitly
486770c3b6eSZhenzhong Duan      * in this file.
487770c3b6eSZhenzhong Duan      */
488770c3b6eSZhenzhong Duan     if (!v2) {
489770c3b6eSZhenzhong Duan         ret = ioctl(fd, VFIO_IOMMU_ENABLE);
490770c3b6eSZhenzhong Duan         if (ret) {
491770c3b6eSZhenzhong Duan             error_setg_errno(errp, errno, "failed to enable container");
492770c3b6eSZhenzhong Duan             return -errno;
493770c3b6eSZhenzhong Duan         }
494770c3b6eSZhenzhong Duan     } else {
4956ad359ecSZhenzhong Duan         scontainer->prereg_listener = vfio_prereg_listener;
496770c3b6eSZhenzhong Duan 
4976ad359ecSZhenzhong Duan         memory_listener_register(&scontainer->prereg_listener,
498770c3b6eSZhenzhong Duan                                  &address_space_memory);
499c7b313d3SEric Auger         if (bcontainer->error) {
500770c3b6eSZhenzhong Duan             ret = -1;
501c7b313d3SEric Auger             error_propagate_prepend(errp, bcontainer->error,
502770c3b6eSZhenzhong Duan                     "RAM memory listener initialization failed: ");
503770c3b6eSZhenzhong Duan             goto listener_unregister_exit;
504770c3b6eSZhenzhong Duan         }
505770c3b6eSZhenzhong Duan     }
506770c3b6eSZhenzhong Duan 
507770c3b6eSZhenzhong Duan     info.argsz = sizeof(info);
508770c3b6eSZhenzhong Duan     ret = ioctl(fd, VFIO_IOMMU_SPAPR_TCE_GET_INFO, &info);
509770c3b6eSZhenzhong Duan     if (ret) {
510770c3b6eSZhenzhong Duan         error_setg_errno(errp, errno,
511770c3b6eSZhenzhong Duan                          "VFIO_IOMMU_SPAPR_TCE_GET_INFO failed");
512770c3b6eSZhenzhong Duan         ret = -errno;
513770c3b6eSZhenzhong Duan         goto listener_unregister_exit;
514770c3b6eSZhenzhong Duan     }
515770c3b6eSZhenzhong Duan 
516770c3b6eSZhenzhong Duan     if (v2) {
5177ab1cb74SEric Auger         bcontainer->pgsizes = info.ddw.pgsizes;
518770c3b6eSZhenzhong Duan         /*
519770c3b6eSZhenzhong Duan          * There is a default window in just created container.
520770c3b6eSZhenzhong Duan          * To make region_add/del simpler, we better remove this
521770c3b6eSZhenzhong Duan          * window now and let those iommu_listener callbacks
522770c3b6eSZhenzhong Duan          * create/remove them when needed.
523770c3b6eSZhenzhong Duan          */
524770c3b6eSZhenzhong Duan         ret = vfio_spapr_remove_window(container, info.dma32_window_start);
525770c3b6eSZhenzhong Duan         if (ret) {
526770c3b6eSZhenzhong Duan             error_setg_errno(errp, -ret,
527770c3b6eSZhenzhong Duan                              "failed to remove existing window");
528770c3b6eSZhenzhong Duan             goto listener_unregister_exit;
529770c3b6eSZhenzhong Duan         }
530770c3b6eSZhenzhong Duan     } else {
531770c3b6eSZhenzhong Duan         /* The default table uses 4K pages */
5327ab1cb74SEric Auger         bcontainer->pgsizes = 0x1000;
533dbb9d0c9SZhenzhong Duan         vfio_host_win_add(scontainer, info.dma32_window_start,
534770c3b6eSZhenzhong Duan                           info.dma32_window_start +
535770c3b6eSZhenzhong Duan                           info.dma32_window_size - 1,
536770c3b6eSZhenzhong Duan                           0x1000);
537770c3b6eSZhenzhong Duan     }
538770c3b6eSZhenzhong Duan 
5399b7d38bfSZhenzhong Duan     setup_spapr_ops(bcontainer);
5409b7d38bfSZhenzhong Duan 
541770c3b6eSZhenzhong Duan     return 0;
542770c3b6eSZhenzhong Duan 
543770c3b6eSZhenzhong Duan listener_unregister_exit:
544770c3b6eSZhenzhong Duan     if (v2) {
5456ad359ecSZhenzhong Duan         memory_listener_unregister(&scontainer->prereg_listener);
546770c3b6eSZhenzhong Duan     }
547770c3b6eSZhenzhong Duan     return ret;
548770c3b6eSZhenzhong Duan }
549