]>
Commit | Line | Data |
---|---|---|
65501a74 AW |
1 | /* |
2 | * vfio based device assignment support | |
3 | * | |
4 | * Copyright Red Hat, Inc. 2012 | |
5 | * | |
6 | * Authors: | |
7 | * Alex Williamson <[email protected]> | |
8 | * | |
9 | * This work is licensed under the terms of the GNU GPL, version 2. See | |
10 | * the COPYING file in the top-level directory. | |
11 | * | |
12 | * Based on qemu-kvm device-assignment: | |
13 | * Adapted for KVM by Qumranet. | |
14 | * Copyright (c) 2007, Neocleus, Alex Novik ([email protected]) | |
15 | * Copyright (c) 2007, Neocleus, Guy Zana ([email protected]) | |
16 | * Copyright (C) 2008, Qumranet, Amit Shah ([email protected]) | |
17 | * Copyright (C) 2008, Red Hat, Amit Shah ([email protected]) | |
18 | * Copyright (C) 2008, IBM, Muli Ben-Yehuda ([email protected]) | |
19 | */ | |
20 | ||
c6eacb1a | 21 | #include "qemu/osdep.h" |
6dcfdbad | 22 | #include <linux/vfio.h> |
65501a74 | 23 | #include <sys/ioctl.h> |
65501a74 | 24 | |
650d103d | 25 | #include "hw/hw.h" |
83c9f4ca PB |
26 | #include "hw/pci/msi.h" |
27 | #include "hw/pci/msix.h" | |
0282abf0 | 28 | #include "hw/pci/pci_bridge.h" |
a27bd6c7 | 29 | #include "hw/qdev-properties.h" |
d6454270 | 30 | #include "migration/vmstate.h" |
1de7afc9 | 31 | #include "qemu/error-report.h" |
db725815 | 32 | #include "qemu/main-loop.h" |
0b8fa32f | 33 | #include "qemu/module.h" |
922a01a0 | 34 | #include "qemu/option.h" |
1de7afc9 | 35 | #include "qemu/range.h" |
e0255bb1 | 36 | #include "qemu/units.h" |
6dcfdbad | 37 | #include "sysemu/kvm.h" |
54d31236 | 38 | #include "sysemu/runstate.h" |
6dcfdbad | 39 | #include "sysemu/sysemu.h" |
78f33d2b | 40 | #include "pci.h" |
385f57cf | 41 | #include "trace.h" |
1108b2f8 | 42 | #include "qapi/error.h" |
f045a010 | 43 | #include "migration/blocker.h" |
4b943029 | 44 | |
2683ccd5 LQ |
45 | #define TYPE_VFIO_PCI "vfio-pci" |
46 | #define PCI_VFIO(obj) OBJECT_CHECK(VFIOPCIDevice, obj, TYPE_VFIO_PCI) | |
47 | ||
f75ca627 | 48 | #define TYPE_VFIO_PCI_NOHOTPLUG "vfio-pci-nohotplug" |
0c0c8f8a | 49 | |
9ee27d73 | 50 | static void vfio_disable_interrupts(VFIOPCIDevice *vdev); |
9ee27d73 | 51 | static void vfio_mmap_set_enabled(VFIOPCIDevice *vdev, bool enabled); |
65501a74 | 52 | |
ea486926 AW |
53 | /* |
54 | * Disabling BAR mmaping can be slow, but toggling it around INTx can | |
55 | * also be a huge overhead. We try to get the best of both worlds by | |
56 | * waiting until an interrupt to disable mmaps (subsequent transitions | |
57 | * to the same state are effectively no overhead). If the interrupt has | |
58 | * been serviced and the time gap is long enough, we re-enable mmaps for | |
59 | * performance. This works well for things like graphics cards, which | |
60 | * may not use their interrupt at all and are penalized to an unusable | |
61 | * level by read/write BAR traps. Other devices, like NICs, have more | |
62 | * regular interrupts and see much better latency by staying in non-mmap | |
63 | * mode. We therefore set the default mmap_timeout such that a ping | |
64 | * is just enough to keep the mmap disabled. Users can experiment with | |
65 | * other options with the x-intx-mmap-timeout-ms parameter (a value of | |
66 | * zero disables the timer). | |
67 | */ | |
68 | static void vfio_intx_mmap_enable(void *opaque) | |
69 | { | |
9ee27d73 | 70 | VFIOPCIDevice *vdev = opaque; |
ea486926 AW |
71 | |
72 | if (vdev->intx.pending) { | |
bc72ad67 AB |
73 | timer_mod(vdev->intx.mmap_timer, |
74 | qemu_clock_get_ms(QEMU_CLOCK_VIRTUAL) + vdev->intx.mmap_timeout); | |
ea486926 AW |
75 | return; |
76 | } | |
77 | ||
78 | vfio_mmap_set_enabled(vdev, true); | |
79 | } | |
80 | ||
65501a74 AW |
81 | static void vfio_intx_interrupt(void *opaque) |
82 | { | |
9ee27d73 | 83 | VFIOPCIDevice *vdev = opaque; |
65501a74 AW |
84 | |
85 | if (!event_notifier_test_and_clear(&vdev->intx.interrupt)) { | |
86 | return; | |
87 | } | |
88 | ||
df92ee44 | 89 | trace_vfio_intx_interrupt(vdev->vbasedev.name, 'A' + vdev->intx.pin); |
65501a74 AW |
90 | |
91 | vdev->intx.pending = true; | |
68919cac | 92 | pci_irq_assert(&vdev->pdev); |
ea486926 AW |
93 | vfio_mmap_set_enabled(vdev, false); |
94 | if (vdev->intx.mmap_timeout) { | |
bc72ad67 AB |
95 | timer_mod(vdev->intx.mmap_timer, |
96 | qemu_clock_get_ms(QEMU_CLOCK_VIRTUAL) + vdev->intx.mmap_timeout); | |
ea486926 | 97 | } |
65501a74 AW |
98 | } |
99 | ||
870cb6f1 | 100 | static void vfio_intx_eoi(VFIODevice *vbasedev) |
65501a74 | 101 | { |
a664477d EA |
102 | VFIOPCIDevice *vdev = container_of(vbasedev, VFIOPCIDevice, vbasedev); |
103 | ||
65501a74 AW |
104 | if (!vdev->intx.pending) { |
105 | return; | |
106 | } | |
107 | ||
870cb6f1 | 108 | trace_vfio_intx_eoi(vbasedev->name); |
65501a74 AW |
109 | |
110 | vdev->intx.pending = false; | |
68919cac | 111 | pci_irq_deassert(&vdev->pdev); |
a664477d | 112 | vfio_unmask_single_irqindex(vbasedev, VFIO_PCI_INTX_IRQ_INDEX); |
65501a74 AW |
113 | } |
114 | ||
7dfb3424 | 115 | static void vfio_intx_enable_kvm(VFIOPCIDevice *vdev, Error **errp) |
e1d1e586 AW |
116 | { |
117 | #ifdef CONFIG_KVM | |
118 | struct kvm_irqfd irqfd = { | |
119 | .fd = event_notifier_get_fd(&vdev->intx.interrupt), | |
120 | .gsi = vdev->intx.route.irq, | |
121 | .flags = KVM_IRQFD_FLAG_RESAMPLE, | |
122 | }; | |
201a7331 | 123 | Error *err = NULL; |
e1d1e586 | 124 | |
46746dba | 125 | if (vdev->no_kvm_intx || !kvm_irqfds_enabled() || |
e1d1e586 | 126 | vdev->intx.route.mode != PCI_INTX_ENABLED || |
9fc0e2d8 | 127 | !kvm_resamplefds_enabled()) { |
e1d1e586 AW |
128 | return; |
129 | } | |
130 | ||
131 | /* Get to a known interrupt state */ | |
132 | qemu_set_fd_handler(irqfd.fd, NULL, NULL, vdev); | |
5546a621 | 133 | vfio_mask_single_irqindex(&vdev->vbasedev, VFIO_PCI_INTX_IRQ_INDEX); |
e1d1e586 | 134 | vdev->intx.pending = false; |
68919cac | 135 | pci_irq_deassert(&vdev->pdev); |
e1d1e586 AW |
136 | |
137 | /* Get an eventfd for resample/unmask */ | |
138 | if (event_notifier_init(&vdev->intx.unmask, 0)) { | |
7dfb3424 | 139 | error_setg(errp, "event_notifier_init failed eoi"); |
e1d1e586 AW |
140 | goto fail; |
141 | } | |
142 | ||
143 | /* KVM triggers it, VFIO listens for it */ | |
144 | irqfd.resamplefd = event_notifier_get_fd(&vdev->intx.unmask); | |
145 | ||
146 | if (kvm_vm_ioctl(kvm_state, KVM_IRQFD, &irqfd)) { | |
7dfb3424 | 147 | error_setg_errno(errp, errno, "failed to setup resample irqfd"); |
e1d1e586 AW |
148 | goto fail_irqfd; |
149 | } | |
150 | ||
201a7331 EA |
151 | if (vfio_set_irq_signaling(&vdev->vbasedev, VFIO_PCI_INTX_IRQ_INDEX, 0, |
152 | VFIO_IRQ_SET_ACTION_UNMASK, | |
153 | irqfd.resamplefd, &err)) { | |
154 | error_propagate(errp, err); | |
e1d1e586 AW |
155 | goto fail_vfio; |
156 | } | |
157 | ||
158 | /* Let'em rip */ | |
5546a621 | 159 | vfio_unmask_single_irqindex(&vdev->vbasedev, VFIO_PCI_INTX_IRQ_INDEX); |
e1d1e586 AW |
160 | |
161 | vdev->intx.kvm_accel = true; | |
162 | ||
870cb6f1 | 163 | trace_vfio_intx_enable_kvm(vdev->vbasedev.name); |
e1d1e586 AW |
164 | |
165 | return; | |
166 | ||
167 | fail_vfio: | |
168 | irqfd.flags = KVM_IRQFD_FLAG_DEASSIGN; | |
169 | kvm_vm_ioctl(kvm_state, KVM_IRQFD, &irqfd); | |
170 | fail_irqfd: | |
171 | event_notifier_cleanup(&vdev->intx.unmask); | |
172 | fail: | |
173 | qemu_set_fd_handler(irqfd.fd, vfio_intx_interrupt, NULL, vdev); | |
5546a621 | 174 | vfio_unmask_single_irqindex(&vdev->vbasedev, VFIO_PCI_INTX_IRQ_INDEX); |
e1d1e586 AW |
175 | #endif |
176 | } | |
177 | ||
870cb6f1 | 178 | static void vfio_intx_disable_kvm(VFIOPCIDevice *vdev) |
e1d1e586 AW |
179 | { |
180 | #ifdef CONFIG_KVM | |
181 | struct kvm_irqfd irqfd = { | |
182 | .fd = event_notifier_get_fd(&vdev->intx.interrupt), | |
183 | .gsi = vdev->intx.route.irq, | |
184 | .flags = KVM_IRQFD_FLAG_DEASSIGN, | |
185 | }; | |
186 | ||
187 | if (!vdev->intx.kvm_accel) { | |
188 | return; | |
189 | } | |
190 | ||
191 | /* | |
192 | * Get to a known state, hardware masked, QEMU ready to accept new | |
193 | * interrupts, QEMU IRQ de-asserted. | |
194 | */ | |
5546a621 | 195 | vfio_mask_single_irqindex(&vdev->vbasedev, VFIO_PCI_INTX_IRQ_INDEX); |
e1d1e586 | 196 | vdev->intx.pending = false; |
68919cac | 197 | pci_irq_deassert(&vdev->pdev); |
e1d1e586 AW |
198 | |
199 | /* Tell KVM to stop listening for an INTx irqfd */ | |
200 | if (kvm_vm_ioctl(kvm_state, KVM_IRQFD, &irqfd)) { | |
312fd5f2 | 201 | error_report("vfio: Error: Failed to disable INTx irqfd: %m"); |
e1d1e586 AW |
202 | } |
203 | ||
204 | /* We only need to close the eventfd for VFIO to cleanup the kernel side */ | |
205 | event_notifier_cleanup(&vdev->intx.unmask); | |
206 | ||
207 | /* QEMU starts listening for interrupt events. */ | |
208 | qemu_set_fd_handler(irqfd.fd, vfio_intx_interrupt, NULL, vdev); | |
209 | ||
210 | vdev->intx.kvm_accel = false; | |
211 | ||
212 | /* If we've missed an event, let it re-fire through QEMU */ | |
5546a621 | 213 | vfio_unmask_single_irqindex(&vdev->vbasedev, VFIO_PCI_INTX_IRQ_INDEX); |
e1d1e586 | 214 | |
870cb6f1 | 215 | trace_vfio_intx_disable_kvm(vdev->vbasedev.name); |
e1d1e586 AW |
216 | #endif |
217 | } | |
218 | ||
ad54dbd8 | 219 | static void vfio_intx_update(VFIOPCIDevice *vdev, PCIINTxRoute *route) |
e1d1e586 | 220 | { |
7dfb3424 | 221 | Error *err = NULL; |
e1d1e586 | 222 | |
870cb6f1 | 223 | trace_vfio_intx_update(vdev->vbasedev.name, |
ad54dbd8 | 224 | vdev->intx.route.irq, route->irq); |
e1d1e586 | 225 | |
870cb6f1 | 226 | vfio_intx_disable_kvm(vdev); |
e1d1e586 | 227 | |
ad54dbd8 | 228 | vdev->intx.route = *route; |
e1d1e586 | 229 | |
ad54dbd8 | 230 | if (route->mode != PCI_INTX_ENABLED) { |
e1d1e586 AW |
231 | return; |
232 | } | |
233 | ||
7dfb3424 EA |
234 | vfio_intx_enable_kvm(vdev, &err); |
235 | if (err) { | |
e1eb292a | 236 | warn_reportf_err(err, VFIO_MSG_PREFIX, vdev->vbasedev.name); |
7dfb3424 | 237 | } |
e1d1e586 AW |
238 | |
239 | /* Re-enable the interrupt in cased we missed an EOI */ | |
870cb6f1 | 240 | vfio_intx_eoi(&vdev->vbasedev); |
e1d1e586 AW |
241 | } |
242 | ||
ad54dbd8 DG |
243 | static void vfio_intx_routing_notifier(PCIDevice *pdev) |
244 | { | |
245 | VFIOPCIDevice *vdev = PCI_VFIO(pdev); | |
246 | PCIINTxRoute route; | |
247 | ||
248 | if (vdev->interrupt != VFIO_INT_INTx) { | |
249 | return; | |
250 | } | |
251 | ||
252 | route = pci_device_route_intx_to_irq(&vdev->pdev, vdev->intx.pin); | |
253 | ||
254 | if (pci_intx_route_changed(&vdev->intx.route, &route)) { | |
255 | vfio_intx_update(vdev, &route); | |
256 | } | |
257 | } | |
258 | ||
c5478fea DG |
259 | static void vfio_irqchip_change(Notifier *notify, void *data) |
260 | { | |
261 | VFIOPCIDevice *vdev = container_of(notify, VFIOPCIDevice, | |
262 | irqchip_change_notifier); | |
263 | ||
264 | vfio_intx_update(vdev, &vdev->intx.route); | |
265 | } | |
266 | ||
7dfb3424 | 267 | static int vfio_intx_enable(VFIOPCIDevice *vdev, Error **errp) |
65501a74 | 268 | { |
65501a74 | 269 | uint8_t pin = vfio_pci_read_config(&vdev->pdev, PCI_INTERRUPT_PIN, 1); |
7dfb3424 | 270 | Error *err = NULL; |
201a7331 EA |
271 | int32_t fd; |
272 | int ret; | |
273 | ||
65501a74 | 274 | |
ea486926 | 275 | if (!pin) { |
65501a74 AW |
276 | return 0; |
277 | } | |
278 | ||
279 | vfio_disable_interrupts(vdev); | |
280 | ||
281 | vdev->intx.pin = pin - 1; /* Pin A (1) -> irq[0] */ | |
68919cac | 282 | pci_config_set_interrupt_pin(vdev->pdev.config, pin); |
e1d1e586 AW |
283 | |
284 | #ifdef CONFIG_KVM | |
285 | /* | |
286 | * Only conditional to avoid generating error messages on platforms | |
287 | * where we won't actually use the result anyway. | |
288 | */ | |
9fc0e2d8 | 289 | if (kvm_irqfds_enabled() && kvm_resamplefds_enabled()) { |
e1d1e586 AW |
290 | vdev->intx.route = pci_device_route_intx_to_irq(&vdev->pdev, |
291 | vdev->intx.pin); | |
292 | } | |
293 | #endif | |
294 | ||
65501a74 AW |
295 | ret = event_notifier_init(&vdev->intx.interrupt, 0); |
296 | if (ret) { | |
7dfb3424 | 297 | error_setg_errno(errp, -ret, "event_notifier_init failed"); |
65501a74 AW |
298 | return ret; |
299 | } | |
201a7331 EA |
300 | fd = event_notifier_get_fd(&vdev->intx.interrupt); |
301 | qemu_set_fd_handler(fd, vfio_intx_interrupt, NULL, vdev); | |
65501a74 | 302 | |
201a7331 EA |
303 | if (vfio_set_irq_signaling(&vdev->vbasedev, VFIO_PCI_INTX_IRQ_INDEX, 0, |
304 | VFIO_IRQ_SET_ACTION_TRIGGER, fd, &err)) { | |
305 | error_propagate(errp, err); | |
306 | qemu_set_fd_handler(fd, NULL, NULL, vdev); | |
ce59af2d | 307 | event_notifier_cleanup(&vdev->intx.interrupt); |
201a7331 | 308 | return -errno; |
65501a74 AW |
309 | } |
310 | ||
7dfb3424 EA |
311 | vfio_intx_enable_kvm(vdev, &err); |
312 | if (err) { | |
e1eb292a | 313 | warn_reportf_err(err, VFIO_MSG_PREFIX, vdev->vbasedev.name); |
7dfb3424 | 314 | } |
e1d1e586 | 315 | |
65501a74 AW |
316 | vdev->interrupt = VFIO_INT_INTx; |
317 | ||
870cb6f1 | 318 | trace_vfio_intx_enable(vdev->vbasedev.name); |
201a7331 | 319 | return 0; |
65501a74 AW |
320 | } |
321 | ||
870cb6f1 | 322 | static void vfio_intx_disable(VFIOPCIDevice *vdev) |
65501a74 AW |
323 | { |
324 | int fd; | |
325 | ||
bc72ad67 | 326 | timer_del(vdev->intx.mmap_timer); |
870cb6f1 | 327 | vfio_intx_disable_kvm(vdev); |
5546a621 | 328 | vfio_disable_irqindex(&vdev->vbasedev, VFIO_PCI_INTX_IRQ_INDEX); |
65501a74 | 329 | vdev->intx.pending = false; |
68919cac | 330 | pci_irq_deassert(&vdev->pdev); |
65501a74 AW |
331 | vfio_mmap_set_enabled(vdev, true); |
332 | ||
333 | fd = event_notifier_get_fd(&vdev->intx.interrupt); | |
334 | qemu_set_fd_handler(fd, NULL, NULL, vdev); | |
335 | event_notifier_cleanup(&vdev->intx.interrupt); | |
336 | ||
337 | vdev->interrupt = VFIO_INT_NONE; | |
338 | ||
870cb6f1 | 339 | trace_vfio_intx_disable(vdev->vbasedev.name); |
65501a74 AW |
340 | } |
341 | ||
342 | /* | |
343 | * MSI/X | |
344 | */ | |
345 | static void vfio_msi_interrupt(void *opaque) | |
346 | { | |
347 | VFIOMSIVector *vector = opaque; | |
9ee27d73 | 348 | VFIOPCIDevice *vdev = vector->vdev; |
0de70dc7 AW |
349 | MSIMessage (*get_msg)(PCIDevice *dev, unsigned vector); |
350 | void (*notify)(PCIDevice *dev, unsigned vector); | |
351 | MSIMessage msg; | |
65501a74 AW |
352 | int nr = vector - vdev->msi_vectors; |
353 | ||
354 | if (!event_notifier_test_and_clear(&vector->interrupt)) { | |
355 | return; | |
356 | } | |
357 | ||
b3ebc10c | 358 | if (vdev->interrupt == VFIO_INT_MSIX) { |
0de70dc7 AW |
359 | get_msg = msix_get_message; |
360 | notify = msix_notify; | |
95239e16 AW |
361 | |
362 | /* A masked vector firing needs to use the PBA, enable it */ | |
363 | if (msix_is_masked(&vdev->pdev, nr)) { | |
364 | set_bit(nr, vdev->msix->pending); | |
365 | memory_region_set_enabled(&vdev->pdev.msix_pba_mmio, true); | |
366 | trace_vfio_msix_pba_enable(vdev->vbasedev.name); | |
367 | } | |
9035f8c0 | 368 | } else if (vdev->interrupt == VFIO_INT_MSI) { |
0de70dc7 AW |
369 | get_msg = msi_get_message; |
370 | notify = msi_notify; | |
b3ebc10c AW |
371 | } else { |
372 | abort(); | |
373 | } | |
374 | ||
0de70dc7 | 375 | msg = get_msg(&vdev->pdev, nr); |
bc5baffa | 376 | trace_vfio_msi_interrupt(vdev->vbasedev.name, nr, msg.address, msg.data); |
0de70dc7 | 377 | notify(&vdev->pdev, nr); |
65501a74 AW |
378 | } |
379 | ||
9ee27d73 | 380 | static int vfio_enable_vectors(VFIOPCIDevice *vdev, bool msix) |
65501a74 AW |
381 | { |
382 | struct vfio_irq_set *irq_set; | |
383 | int ret = 0, i, argsz; | |
384 | int32_t *fds; | |
385 | ||
386 | argsz = sizeof(*irq_set) + (vdev->nr_vectors * sizeof(*fds)); | |
387 | ||
388 | irq_set = g_malloc0(argsz); | |
389 | irq_set->argsz = argsz; | |
390 | irq_set->flags = VFIO_IRQ_SET_DATA_EVENTFD | VFIO_IRQ_SET_ACTION_TRIGGER; | |
391 | irq_set->index = msix ? VFIO_PCI_MSIX_IRQ_INDEX : VFIO_PCI_MSI_IRQ_INDEX; | |
392 | irq_set->start = 0; | |
393 | irq_set->count = vdev->nr_vectors; | |
394 | fds = (int32_t *)&irq_set->data; | |
395 | ||
396 | for (i = 0; i < vdev->nr_vectors; i++) { | |
c048be5c AW |
397 | int fd = -1; |
398 | ||
399 | /* | |
400 | * MSI vs MSI-X - The guest has direct access to MSI mask and pending | |
401 | * bits, therefore we always use the KVM signaling path when setup. | |
402 | * MSI-X mask and pending bits are emulated, so we want to use the | |
403 | * KVM signaling path only when configured and unmasked. | |
404 | */ | |
405 | if (vdev->msi_vectors[i].use) { | |
406 | if (vdev->msi_vectors[i].virq < 0 || | |
407 | (msix && msix_is_masked(&vdev->pdev, i))) { | |
408 | fd = event_notifier_get_fd(&vdev->msi_vectors[i].interrupt); | |
409 | } else { | |
410 | fd = event_notifier_get_fd(&vdev->msi_vectors[i].kvm_interrupt); | |
411 | } | |
65501a74 | 412 | } |
c048be5c AW |
413 | |
414 | fds[i] = fd; | |
65501a74 AW |
415 | } |
416 | ||
5546a621 | 417 | ret = ioctl(vdev->vbasedev.fd, VFIO_DEVICE_SET_IRQS, irq_set); |
65501a74 AW |
418 | |
419 | g_free(irq_set); | |
420 | ||
65501a74 AW |
421 | return ret; |
422 | } | |
423 | ||
46746dba | 424 | static void vfio_add_kvm_msi_virq(VFIOPCIDevice *vdev, VFIOMSIVector *vector, |
d1f6af6a | 425 | int vector_n, bool msix) |
f4d45d47 AW |
426 | { |
427 | int virq; | |
428 | ||
d1f6af6a | 429 | if ((msix && vdev->no_kvm_msix) || (!msix && vdev->no_kvm_msi)) { |
f4d45d47 AW |
430 | return; |
431 | } | |
432 | ||
433 | if (event_notifier_init(&vector->kvm_interrupt, 0)) { | |
434 | return; | |
435 | } | |
436 | ||
d1f6af6a | 437 | virq = kvm_irqchip_add_msi_route(kvm_state, vector_n, &vdev->pdev); |
f4d45d47 AW |
438 | if (virq < 0) { |
439 | event_notifier_cleanup(&vector->kvm_interrupt); | |
440 | return; | |
441 | } | |
442 | ||
1c9b71a7 | 443 | if (kvm_irqchip_add_irqfd_notifier_gsi(kvm_state, &vector->kvm_interrupt, |
f4d45d47 AW |
444 | NULL, virq) < 0) { |
445 | kvm_irqchip_release_virq(kvm_state, virq); | |
446 | event_notifier_cleanup(&vector->kvm_interrupt); | |
447 | return; | |
448 | } | |
449 | ||
f4d45d47 AW |
450 | vector->virq = virq; |
451 | } | |
452 | ||
453 | static void vfio_remove_kvm_msi_virq(VFIOMSIVector *vector) | |
454 | { | |
1c9b71a7 EA |
455 | kvm_irqchip_remove_irqfd_notifier_gsi(kvm_state, &vector->kvm_interrupt, |
456 | vector->virq); | |
f4d45d47 AW |
457 | kvm_irqchip_release_virq(kvm_state, vector->virq); |
458 | vector->virq = -1; | |
459 | event_notifier_cleanup(&vector->kvm_interrupt); | |
460 | } | |
461 | ||
dc9f06ca PF |
462 | static void vfio_update_kvm_msi_virq(VFIOMSIVector *vector, MSIMessage msg, |
463 | PCIDevice *pdev) | |
f4d45d47 | 464 | { |
dc9f06ca | 465 | kvm_irqchip_update_msi_route(kvm_state, vector->virq, msg, pdev); |
3f1fea0f | 466 | kvm_irqchip_commit_routes(kvm_state); |
f4d45d47 AW |
467 | } |
468 | ||
b0223e29 AW |
469 | static int vfio_msix_vector_do_use(PCIDevice *pdev, unsigned int nr, |
470 | MSIMessage *msg, IOHandler *handler) | |
65501a74 | 471 | { |
2683ccd5 | 472 | VFIOPCIDevice *vdev = PCI_VFIO(pdev); |
65501a74 AW |
473 | VFIOMSIVector *vector; |
474 | int ret; | |
475 | ||
df92ee44 | 476 | trace_vfio_msix_vector_do_use(vdev->vbasedev.name, nr); |
65501a74 | 477 | |
65501a74 | 478 | vector = &vdev->msi_vectors[nr]; |
65501a74 | 479 | |
f4d45d47 AW |
480 | if (!vector->use) { |
481 | vector->vdev = vdev; | |
482 | vector->virq = -1; | |
483 | if (event_notifier_init(&vector->interrupt, 0)) { | |
484 | error_report("vfio: Error: event_notifier_init failed"); | |
485 | } | |
486 | vector->use = true; | |
487 | msix_vector_use(pdev, nr); | |
65501a74 AW |
488 | } |
489 | ||
f4d45d47 AW |
490 | qemu_set_fd_handler(event_notifier_get_fd(&vector->interrupt), |
491 | handler, NULL, vector); | |
492 | ||
65501a74 AW |
493 | /* |
494 | * Attempt to enable route through KVM irqchip, | |
495 | * default to userspace handling if unavailable. | |
496 | */ | |
f4d45d47 AW |
497 | if (vector->virq >= 0) { |
498 | if (!msg) { | |
499 | vfio_remove_kvm_msi_virq(vector); | |
500 | } else { | |
dc9f06ca | 501 | vfio_update_kvm_msi_virq(vector, *msg, pdev); |
65501a74 | 502 | } |
f4d45d47 | 503 | } else { |
6d17a018 DG |
504 | if (msg) { |
505 | vfio_add_kvm_msi_virq(vdev, vector, nr, true); | |
506 | } | |
65501a74 AW |
507 | } |
508 | ||
509 | /* | |
510 | * We don't want to have the host allocate all possible MSI vectors | |
511 | * for a device if they're not in use, so we shutdown and incrementally | |
512 | * increase them as needed. | |
513 | */ | |
514 | if (vdev->nr_vectors < nr + 1) { | |
5546a621 | 515 | vfio_disable_irqindex(&vdev->vbasedev, VFIO_PCI_MSIX_IRQ_INDEX); |
65501a74 AW |
516 | vdev->nr_vectors = nr + 1; |
517 | ret = vfio_enable_vectors(vdev, true); | |
518 | if (ret) { | |
312fd5f2 | 519 | error_report("vfio: failed to enable vectors, %d", ret); |
65501a74 | 520 | } |
65501a74 | 521 | } else { |
201a7331 EA |
522 | Error *err = NULL; |
523 | int32_t fd; | |
1a403133 | 524 | |
f4d45d47 | 525 | if (vector->virq >= 0) { |
201a7331 | 526 | fd = event_notifier_get_fd(&vector->kvm_interrupt); |
f4d45d47 | 527 | } else { |
201a7331 | 528 | fd = event_notifier_get_fd(&vector->interrupt); |
f4d45d47 | 529 | } |
1a403133 | 530 | |
201a7331 EA |
531 | if (vfio_set_irq_signaling(&vdev->vbasedev, |
532 | VFIO_PCI_MSIX_IRQ_INDEX, nr, | |
533 | VFIO_IRQ_SET_ACTION_TRIGGER, fd, &err)) { | |
534 | error_reportf_err(err, VFIO_MSG_PREFIX, vdev->vbasedev.name); | |
65501a74 | 535 | } |
65501a74 AW |
536 | } |
537 | ||
95239e16 AW |
538 | /* Disable PBA emulation when nothing more is pending. */ |
539 | clear_bit(nr, vdev->msix->pending); | |
540 | if (find_first_bit(vdev->msix->pending, | |
541 | vdev->nr_vectors) == vdev->nr_vectors) { | |
542 | memory_region_set_enabled(&vdev->pdev.msix_pba_mmio, false); | |
543 | trace_vfio_msix_pba_disable(vdev->vbasedev.name); | |
544 | } | |
545 | ||
65501a74 AW |
546 | return 0; |
547 | } | |
548 | ||
b0223e29 AW |
549 | static int vfio_msix_vector_use(PCIDevice *pdev, |
550 | unsigned int nr, MSIMessage msg) | |
551 | { | |
552 | return vfio_msix_vector_do_use(pdev, nr, &msg, vfio_msi_interrupt); | |
553 | } | |
554 | ||
65501a74 AW |
555 | static void vfio_msix_vector_release(PCIDevice *pdev, unsigned int nr) |
556 | { | |
2683ccd5 | 557 | VFIOPCIDevice *vdev = PCI_VFIO(pdev); |
65501a74 | 558 | VFIOMSIVector *vector = &vdev->msi_vectors[nr]; |
65501a74 | 559 | |
df92ee44 | 560 | trace_vfio_msix_vector_release(vdev->vbasedev.name, nr); |
65501a74 AW |
561 | |
562 | /* | |
f4d45d47 AW |
563 | * There are still old guests that mask and unmask vectors on every |
564 | * interrupt. If we're using QEMU bypass with a KVM irqfd, leave all of | |
565 | * the KVM setup in place, simply switch VFIO to use the non-bypass | |
566 | * eventfd. We'll then fire the interrupt through QEMU and the MSI-X | |
567 | * core will mask the interrupt and set pending bits, allowing it to | |
568 | * be re-asserted on unmask. Nothing to do if already using QEMU mode. | |
65501a74 | 569 | */ |
f4d45d47 | 570 | if (vector->virq >= 0) { |
201a7331 | 571 | int32_t fd = event_notifier_get_fd(&vector->interrupt); |
5053bd78 | 572 | Error *err = NULL; |
1a403133 | 573 | |
5053bd78 EA |
574 | if (vfio_set_irq_signaling(&vdev->vbasedev, VFIO_PCI_MSIX_IRQ_INDEX, nr, |
575 | VFIO_IRQ_SET_ACTION_TRIGGER, fd, &err)) { | |
576 | error_reportf_err(err, VFIO_MSG_PREFIX, vdev->vbasedev.name); | |
577 | } | |
65501a74 | 578 | } |
65501a74 AW |
579 | } |
580 | ||
0de70dc7 | 581 | static void vfio_msix_enable(VFIOPCIDevice *vdev) |
fd704adc AW |
582 | { |
583 | vfio_disable_interrupts(vdev); | |
584 | ||
bdd81add | 585 | vdev->msi_vectors = g_new0(VFIOMSIVector, vdev->msix->entries); |
fd704adc AW |
586 | |
587 | vdev->interrupt = VFIO_INT_MSIX; | |
588 | ||
b0223e29 AW |
589 | /* |
590 | * Some communication channels between VF & PF or PF & fw rely on the | |
591 | * physical state of the device and expect that enabling MSI-X from the | |
592 | * guest enables the same on the host. When our guest is Linux, the | |
593 | * guest driver call to pci_enable_msix() sets the enabling bit in the | |
594 | * MSI-X capability, but leaves the vector table masked. We therefore | |
595 | * can't rely on a vector_use callback (from request_irq() in the guest) | |
596 | * to switch the physical device into MSI-X mode because that may come a | |
597 | * long time after pci_enable_msix(). This code enables vector 0 with | |
598 | * triggering to userspace, then immediately release the vector, leaving | |
599 | * the physical device with no vectors enabled, but MSI-X enabled, just | |
600 | * like the guest view. | |
601 | */ | |
602 | vfio_msix_vector_do_use(&vdev->pdev, 0, NULL, NULL); | |
603 | vfio_msix_vector_release(&vdev->pdev, 0); | |
604 | ||
fd704adc | 605 | if (msix_set_vector_notifiers(&vdev->pdev, vfio_msix_vector_use, |
bbef882c | 606 | vfio_msix_vector_release, NULL)) { |
312fd5f2 | 607 | error_report("vfio: msix_set_vector_notifiers failed"); |
fd704adc AW |
608 | } |
609 | ||
0de70dc7 | 610 | trace_vfio_msix_enable(vdev->vbasedev.name); |
fd704adc AW |
611 | } |
612 | ||
0de70dc7 | 613 | static void vfio_msi_enable(VFIOPCIDevice *vdev) |
65501a74 AW |
614 | { |
615 | int ret, i; | |
616 | ||
617 | vfio_disable_interrupts(vdev); | |
618 | ||
619 | vdev->nr_vectors = msi_nr_vectors_allocated(&vdev->pdev); | |
620 | retry: | |
bdd81add | 621 | vdev->msi_vectors = g_new0(VFIOMSIVector, vdev->nr_vectors); |
65501a74 AW |
622 | |
623 | for (i = 0; i < vdev->nr_vectors; i++) { | |
65501a74 AW |
624 | VFIOMSIVector *vector = &vdev->msi_vectors[i]; |
625 | ||
626 | vector->vdev = vdev; | |
f4d45d47 | 627 | vector->virq = -1; |
65501a74 AW |
628 | vector->use = true; |
629 | ||
630 | if (event_notifier_init(&vector->interrupt, 0)) { | |
312fd5f2 | 631 | error_report("vfio: Error: event_notifier_init failed"); |
65501a74 AW |
632 | } |
633 | ||
f4d45d47 AW |
634 | qemu_set_fd_handler(event_notifier_get_fd(&vector->interrupt), |
635 | vfio_msi_interrupt, NULL, vector); | |
636 | ||
65501a74 AW |
637 | /* |
638 | * Attempt to enable route through KVM irqchip, | |
639 | * default to userspace handling if unavailable. | |
640 | */ | |
d1f6af6a | 641 | vfio_add_kvm_msi_virq(vdev, vector, i, false); |
65501a74 AW |
642 | } |
643 | ||
f4d45d47 AW |
644 | /* Set interrupt type prior to possible interrupts */ |
645 | vdev->interrupt = VFIO_INT_MSI; | |
646 | ||
65501a74 AW |
647 | ret = vfio_enable_vectors(vdev, false); |
648 | if (ret) { | |
649 | if (ret < 0) { | |
312fd5f2 | 650 | error_report("vfio: Error: Failed to setup MSI fds: %m"); |
65501a74 AW |
651 | } else if (ret != vdev->nr_vectors) { |
652 | error_report("vfio: Error: Failed to enable %d " | |
312fd5f2 | 653 | "MSI vectors, retry with %d", vdev->nr_vectors, ret); |
65501a74 AW |
654 | } |
655 | ||
656 | for (i = 0; i < vdev->nr_vectors; i++) { | |
657 | VFIOMSIVector *vector = &vdev->msi_vectors[i]; | |
658 | if (vector->virq >= 0) { | |
f4d45d47 | 659 | vfio_remove_kvm_msi_virq(vector); |
65501a74 | 660 | } |
f4d45d47 AW |
661 | qemu_set_fd_handler(event_notifier_get_fd(&vector->interrupt), |
662 | NULL, NULL, NULL); | |
65501a74 AW |
663 | event_notifier_cleanup(&vector->interrupt); |
664 | } | |
665 | ||
666 | g_free(vdev->msi_vectors); | |
d964d3b5 | 667 | vdev->msi_vectors = NULL; |
65501a74 AW |
668 | |
669 | if (ret > 0 && ret != vdev->nr_vectors) { | |
670 | vdev->nr_vectors = ret; | |
671 | goto retry; | |
672 | } | |
673 | vdev->nr_vectors = 0; | |
674 | ||
f4d45d47 AW |
675 | /* |
676 | * Failing to setup MSI doesn't really fall within any specification. | |
677 | * Let's try leaving interrupts disabled and hope the guest figures | |
678 | * out to fall back to INTx for this device. | |
679 | */ | |
680 | error_report("vfio: Error: Failed to enable MSI"); | |
681 | vdev->interrupt = VFIO_INT_NONE; | |
682 | ||
65501a74 AW |
683 | return; |
684 | } | |
685 | ||
0de70dc7 | 686 | trace_vfio_msi_enable(vdev->vbasedev.name, vdev->nr_vectors); |
65501a74 AW |
687 | } |
688 | ||
0de70dc7 | 689 | static void vfio_msi_disable_common(VFIOPCIDevice *vdev) |
fd704adc | 690 | { |
7dfb3424 | 691 | Error *err = NULL; |
f4d45d47 AW |
692 | int i; |
693 | ||
694 | for (i = 0; i < vdev->nr_vectors; i++) { | |
695 | VFIOMSIVector *vector = &vdev->msi_vectors[i]; | |
696 | if (vdev->msi_vectors[i].use) { | |
697 | if (vector->virq >= 0) { | |
698 | vfio_remove_kvm_msi_virq(vector); | |
699 | } | |
700 | qemu_set_fd_handler(event_notifier_get_fd(&vector->interrupt), | |
701 | NULL, NULL, NULL); | |
702 | event_notifier_cleanup(&vector->interrupt); | |
703 | } | |
704 | } | |
705 | ||
fd704adc AW |
706 | g_free(vdev->msi_vectors); |
707 | vdev->msi_vectors = NULL; | |
708 | vdev->nr_vectors = 0; | |
709 | vdev->interrupt = VFIO_INT_NONE; | |
710 | ||
7dfb3424 EA |
711 | vfio_intx_enable(vdev, &err); |
712 | if (err) { | |
c3b8e3e0 | 713 | error_reportf_err(err, VFIO_MSG_PREFIX, vdev->vbasedev.name); |
7dfb3424 | 714 | } |
fd704adc AW |
715 | } |
716 | ||
0de70dc7 | 717 | static void vfio_msix_disable(VFIOPCIDevice *vdev) |
fd704adc | 718 | { |
3e40ba0f AW |
719 | int i; |
720 | ||
fd704adc AW |
721 | msix_unset_vector_notifiers(&vdev->pdev); |
722 | ||
3e40ba0f AW |
723 | /* |
724 | * MSI-X will only release vectors if MSI-X is still enabled on the | |
725 | * device, check through the rest and release it ourselves if necessary. | |
726 | */ | |
727 | for (i = 0; i < vdev->nr_vectors; i++) { | |
728 | if (vdev->msi_vectors[i].use) { | |
729 | vfio_msix_vector_release(&vdev->pdev, i); | |
f4d45d47 | 730 | msix_vector_unuse(&vdev->pdev, i); |
3e40ba0f AW |
731 | } |
732 | } | |
733 | ||
fd704adc | 734 | if (vdev->nr_vectors) { |
5546a621 | 735 | vfio_disable_irqindex(&vdev->vbasedev, VFIO_PCI_MSIX_IRQ_INDEX); |
fd704adc AW |
736 | } |
737 | ||
0de70dc7 | 738 | vfio_msi_disable_common(vdev); |
fd704adc | 739 | |
95239e16 AW |
740 | memset(vdev->msix->pending, 0, |
741 | BITS_TO_LONGS(vdev->msix->entries) * sizeof(unsigned long)); | |
742 | ||
0de70dc7 | 743 | trace_vfio_msix_disable(vdev->vbasedev.name); |
fd704adc AW |
744 | } |
745 | ||
0de70dc7 | 746 | static void vfio_msi_disable(VFIOPCIDevice *vdev) |
65501a74 | 747 | { |
5546a621 | 748 | vfio_disable_irqindex(&vdev->vbasedev, VFIO_PCI_MSI_IRQ_INDEX); |
0de70dc7 | 749 | vfio_msi_disable_common(vdev); |
65501a74 | 750 | |
0de70dc7 | 751 | trace_vfio_msi_disable(vdev->vbasedev.name); |
65501a74 AW |
752 | } |
753 | ||
9ee27d73 | 754 | static void vfio_update_msi(VFIOPCIDevice *vdev) |
c7679d45 AW |
755 | { |
756 | int i; | |
757 | ||
758 | for (i = 0; i < vdev->nr_vectors; i++) { | |
759 | VFIOMSIVector *vector = &vdev->msi_vectors[i]; | |
760 | MSIMessage msg; | |
761 | ||
762 | if (!vector->use || vector->virq < 0) { | |
763 | continue; | |
764 | } | |
765 | ||
766 | msg = msi_get_message(&vdev->pdev, i); | |
dc9f06ca | 767 | vfio_update_kvm_msi_virq(vector, msg, &vdev->pdev); |
c7679d45 AW |
768 | } |
769 | } | |
770 | ||
9ee27d73 | 771 | static void vfio_pci_load_rom(VFIOPCIDevice *vdev) |
6f864e6e | 772 | { |
46900226 | 773 | struct vfio_region_info *reg_info; |
6f864e6e AW |
774 | uint64_t size; |
775 | off_t off = 0; | |
7d489dcd | 776 | ssize_t bytes; |
6f864e6e | 777 | |
46900226 AW |
778 | if (vfio_get_region_info(&vdev->vbasedev, |
779 | VFIO_PCI_ROM_REGION_INDEX, ®_info)) { | |
6f864e6e AW |
780 | error_report("vfio: Error getting ROM info: %m"); |
781 | return; | |
782 | } | |
783 | ||
46900226 AW |
784 | trace_vfio_pci_load_rom(vdev->vbasedev.name, (unsigned long)reg_info->size, |
785 | (unsigned long)reg_info->offset, | |
786 | (unsigned long)reg_info->flags); | |
787 | ||
788 | vdev->rom_size = size = reg_info->size; | |
789 | vdev->rom_offset = reg_info->offset; | |
6f864e6e | 790 | |
46900226 | 791 | g_free(reg_info); |
6f864e6e AW |
792 | |
793 | if (!vdev->rom_size) { | |
e638073c | 794 | vdev->rom_read_failed = true; |
d20b43df | 795 | error_report("vfio-pci: Cannot read device rom at " |
df92ee44 | 796 | "%s", vdev->vbasedev.name); |
d20b43df BD |
797 | error_printf("Device option ROM contents are probably invalid " |
798 | "(check dmesg).\nSkip option ROM probe with rombar=0, " | |
799 | "or load from file with romfile=\n"); | |
6f864e6e AW |
800 | return; |
801 | } | |
802 | ||
803 | vdev->rom = g_malloc(size); | |
804 | memset(vdev->rom, 0xff, size); | |
805 | ||
806 | while (size) { | |
5546a621 EA |
807 | bytes = pread(vdev->vbasedev.fd, vdev->rom + off, |
808 | size, vdev->rom_offset + off); | |
6f864e6e AW |
809 | if (bytes == 0) { |
810 | break; | |
811 | } else if (bytes > 0) { | |
812 | off += bytes; | |
813 | size -= bytes; | |
814 | } else { | |
815 | if (errno == EINTR || errno == EAGAIN) { | |
816 | continue; | |
817 | } | |
818 | error_report("vfio: Error reading device ROM: %m"); | |
819 | break; | |
820 | } | |
821 | } | |
e2e5ee9c AW |
822 | |
823 | /* | |
824 | * Test the ROM signature against our device, if the vendor is correct | |
825 | * but the device ID doesn't match, store the correct device ID and | |
826 | * recompute the checksum. Intel IGD devices need this and are known | |
827 | * to have bogus checksums so we can't simply adjust the checksum. | |
828 | */ | |
829 | if (pci_get_word(vdev->rom) == 0xaa55 && | |
830 | pci_get_word(vdev->rom + 0x18) + 8 < vdev->rom_size && | |
831 | !memcmp(vdev->rom + pci_get_word(vdev->rom + 0x18), "PCIR", 4)) { | |
832 | uint16_t vid, did; | |
833 | ||
834 | vid = pci_get_word(vdev->rom + pci_get_word(vdev->rom + 0x18) + 4); | |
835 | did = pci_get_word(vdev->rom + pci_get_word(vdev->rom + 0x18) + 6); | |
836 | ||
837 | if (vid == vdev->vendor_id && did != vdev->device_id) { | |
838 | int i; | |
839 | uint8_t csum, *data = vdev->rom; | |
840 | ||
841 | pci_set_word(vdev->rom + pci_get_word(vdev->rom + 0x18) + 6, | |
842 | vdev->device_id); | |
843 | data[6] = 0; | |
844 | ||
845 | for (csum = 0, i = 0; i < vdev->rom_size; i++) { | |
846 | csum += data[i]; | |
847 | } | |
848 | ||
849 | data[6] = -csum; | |
850 | } | |
851 | } | |
6f864e6e AW |
852 | } |
853 | ||
854 | static uint64_t vfio_rom_read(void *opaque, hwaddr addr, unsigned size) | |
855 | { | |
9ee27d73 | 856 | VFIOPCIDevice *vdev = opaque; |
75bd0c72 ND |
857 | union { |
858 | uint8_t byte; | |
859 | uint16_t word; | |
860 | uint32_t dword; | |
861 | uint64_t qword; | |
862 | } val; | |
863 | uint64_t data = 0; | |
6f864e6e AW |
864 | |
865 | /* Load the ROM lazily when the guest tries to read it */ | |
db01eedb | 866 | if (unlikely(!vdev->rom && !vdev->rom_read_failed)) { |
6f864e6e AW |
867 | vfio_pci_load_rom(vdev); |
868 | } | |
869 | ||
6758008e | 870 | memcpy(&val, vdev->rom + addr, |
6f864e6e AW |
871 | (addr < vdev->rom_size) ? MIN(size, vdev->rom_size - addr) : 0); |
872 | ||
75bd0c72 ND |
873 | switch (size) { |
874 | case 1: | |
875 | data = val.byte; | |
876 | break; | |
877 | case 2: | |
878 | data = le16_to_cpu(val.word); | |
879 | break; | |
880 | case 4: | |
881 | data = le32_to_cpu(val.dword); | |
882 | break; | |
883 | default: | |
884 | hw_error("vfio: unsupported read size, %d bytes\n", size); | |
885 | break; | |
886 | } | |
887 | ||
df92ee44 | 888 | trace_vfio_rom_read(vdev->vbasedev.name, addr, size, data); |
6f864e6e | 889 | |
75bd0c72 | 890 | return data; |
6f864e6e AW |
891 | } |
892 | ||
64fa25a0 AW |
893 | static void vfio_rom_write(void *opaque, hwaddr addr, |
894 | uint64_t data, unsigned size) | |
895 | { | |
896 | } | |
897 | ||
6f864e6e AW |
898 | static const MemoryRegionOps vfio_rom_ops = { |
899 | .read = vfio_rom_read, | |
64fa25a0 | 900 | .write = vfio_rom_write, |
6758008e | 901 | .endianness = DEVICE_LITTLE_ENDIAN, |
6f864e6e AW |
902 | }; |
903 | ||
9ee27d73 | 904 | static void vfio_pci_size_rom(VFIOPCIDevice *vdev) |
6f864e6e | 905 | { |
b1c50c5f | 906 | uint32_t orig, size = cpu_to_le32((uint32_t)PCI_ROM_ADDRESS_MASK); |
6f864e6e | 907 | off_t offset = vdev->config_offset + PCI_ROM_ADDRESS; |
4b943029 | 908 | DeviceState *dev = DEVICE(vdev); |
062ed5d8 | 909 | char *name; |
5546a621 | 910 | int fd = vdev->vbasedev.fd; |
6f864e6e AW |
911 | |
912 | if (vdev->pdev.romfile || !vdev->pdev.rom_bar) { | |
4b943029 BD |
913 | /* Since pci handles romfile, just print a message and return */ |
914 | if (vfio_blacklist_opt_rom(vdev) && vdev->pdev.romfile) { | |
8f8f5885 MA |
915 | warn_report("Device at %s is known to cause system instability" |
916 | " issues during option rom execution", | |
917 | vdev->vbasedev.name); | |
918 | error_printf("Proceeding anyway since user specified romfile\n"); | |
4b943029 | 919 | } |
6f864e6e AW |
920 | return; |
921 | } | |
922 | ||
923 | /* | |
924 | * Use the same size ROM BAR as the physical device. The contents | |
925 | * will get filled in later when the guest tries to read it. | |
926 | */ | |
5546a621 EA |
927 | if (pread(fd, &orig, 4, offset) != 4 || |
928 | pwrite(fd, &size, 4, offset) != 4 || | |
929 | pread(fd, &size, 4, offset) != 4 || | |
930 | pwrite(fd, &orig, 4, offset) != 4) { | |
7df9381b | 931 | error_report("%s(%s) failed: %m", __func__, vdev->vbasedev.name); |
6f864e6e AW |
932 | return; |
933 | } | |
934 | ||
b1c50c5f | 935 | size = ~(le32_to_cpu(size) & PCI_ROM_ADDRESS_MASK) + 1; |
6f864e6e AW |
936 | |
937 | if (!size) { | |
938 | return; | |
939 | } | |
940 | ||
4b943029 BD |
941 | if (vfio_blacklist_opt_rom(vdev)) { |
942 | if (dev->opts && qemu_opt_get(dev->opts, "rombar")) { | |
8f8f5885 MA |
943 | warn_report("Device at %s is known to cause system instability" |
944 | " issues during option rom execution", | |
945 | vdev->vbasedev.name); | |
946 | error_printf("Proceeding anyway since user specified" | |
947 | " non zero value for rombar\n"); | |
4b943029 | 948 | } else { |
8f8f5885 MA |
949 | warn_report("Rom loading for device at %s has been disabled" |
950 | " due to system instability issues", | |
951 | vdev->vbasedev.name); | |
952 | error_printf("Specify rombar=1 or romfile to force\n"); | |
4b943029 BD |
953 | return; |
954 | } | |
955 | } | |
956 | ||
df92ee44 | 957 | trace_vfio_pci_size_rom(vdev->vbasedev.name, size); |
6f864e6e | 958 | |
062ed5d8 | 959 | name = g_strdup_printf("vfio[%s].rom", vdev->vbasedev.name); |
6f864e6e AW |
960 | |
961 | memory_region_init_io(&vdev->pdev.rom, OBJECT(vdev), | |
962 | &vfio_rom_ops, vdev, name, size); | |
062ed5d8 | 963 | g_free(name); |
6f864e6e AW |
964 | |
965 | pci_register_bar(&vdev->pdev, PCI_ROM_SLOT, | |
966 | PCI_BASE_ADDRESS_SPACE_MEMORY, &vdev->pdev.rom); | |
967 | ||
e638073c | 968 | vdev->rom_read_failed = false; |
6f864e6e AW |
969 | } |
970 | ||
c00d61d8 | 971 | void vfio_vga_write(void *opaque, hwaddr addr, |
f15689c7 AW |
972 | uint64_t data, unsigned size) |
973 | { | |
974 | VFIOVGARegion *region = opaque; | |
975 | VFIOVGA *vga = container_of(region, VFIOVGA, region[region->nr]); | |
976 | union { | |
977 | uint8_t byte; | |
978 | uint16_t word; | |
979 | uint32_t dword; | |
980 | uint64_t qword; | |
981 | } buf; | |
982 | off_t offset = vga->fd_offset + region->offset + addr; | |
983 | ||
984 | switch (size) { | |
985 | case 1: | |
986 | buf.byte = data; | |
987 | break; | |
988 | case 2: | |
989 | buf.word = cpu_to_le16(data); | |
990 | break; | |
991 | case 4: | |
992 | buf.dword = cpu_to_le32(data); | |
993 | break; | |
994 | default: | |
4e505ddd | 995 | hw_error("vfio: unsupported write size, %d bytes", size); |
f15689c7 AW |
996 | break; |
997 | } | |
998 | ||
999 | if (pwrite(vga->fd, &buf, size, offset) != size) { | |
1000 | error_report("%s(,0x%"HWADDR_PRIx", 0x%"PRIx64", %d) failed: %m", | |
1001 | __func__, region->offset + addr, data, size); | |
1002 | } | |
1003 | ||
385f57cf | 1004 | trace_vfio_vga_write(region->offset + addr, data, size); |
f15689c7 AW |
1005 | } |
1006 | ||
c00d61d8 | 1007 | uint64_t vfio_vga_read(void *opaque, hwaddr addr, unsigned size) |
f15689c7 AW |
1008 | { |
1009 | VFIOVGARegion *region = opaque; | |
1010 | VFIOVGA *vga = container_of(region, VFIOVGA, region[region->nr]); | |
1011 | union { | |
1012 | uint8_t byte; | |
1013 | uint16_t word; | |
1014 | uint32_t dword; | |
1015 | uint64_t qword; | |
1016 | } buf; | |
1017 | uint64_t data = 0; | |
1018 | off_t offset = vga->fd_offset + region->offset + addr; | |
1019 | ||
1020 | if (pread(vga->fd, &buf, size, offset) != size) { | |
1021 | error_report("%s(,0x%"HWADDR_PRIx", %d) failed: %m", | |
1022 | __func__, region->offset + addr, size); | |
1023 | return (uint64_t)-1; | |
1024 | } | |
1025 | ||
1026 | switch (size) { | |
1027 | case 1: | |
1028 | data = buf.byte; | |
1029 | break; | |
1030 | case 2: | |
1031 | data = le16_to_cpu(buf.word); | |
1032 | break; | |
1033 | case 4: | |
1034 | data = le32_to_cpu(buf.dword); | |
1035 | break; | |
1036 | default: | |
4e505ddd | 1037 | hw_error("vfio: unsupported read size, %d bytes", size); |
f15689c7 AW |
1038 | break; |
1039 | } | |
1040 | ||
385f57cf | 1041 | trace_vfio_vga_read(region->offset + addr, size, data); |
f15689c7 AW |
1042 | |
1043 | return data; | |
1044 | } | |
1045 | ||
1046 | static const MemoryRegionOps vfio_vga_ops = { | |
1047 | .read = vfio_vga_read, | |
1048 | .write = vfio_vga_write, | |
1049 | .endianness = DEVICE_LITTLE_ENDIAN, | |
1050 | }; | |
1051 | ||
95251725 YX |
1052 | /* |
1053 | * Expand memory region of sub-page(size < PAGE_SIZE) MMIO BAR to page | |
1054 | * size if the BAR is in an exclusive page in host so that we could map | |
1055 | * this BAR to guest. But this sub-page BAR may not occupy an exclusive | |
1056 | * page in guest. So we should set the priority of the expanded memory | |
1057 | * region to zero in case of overlap with BARs which share the same page | |
1058 | * with the sub-page BAR in guest. Besides, we should also recover the | |
1059 | * size of this sub-page BAR when its base address is changed in guest | |
1060 | * and not page aligned any more. | |
1061 | */ | |
1062 | static void vfio_sub_page_bar_update_mapping(PCIDevice *pdev, int bar) | |
1063 | { | |
2683ccd5 | 1064 | VFIOPCIDevice *vdev = PCI_VFIO(pdev); |
95251725 | 1065 | VFIORegion *region = &vdev->bars[bar].region; |
3a286732 | 1066 | MemoryRegion *mmap_mr, *region_mr, *base_mr; |
95251725 YX |
1067 | PCIIORegion *r; |
1068 | pcibus_t bar_addr; | |
1069 | uint64_t size = region->size; | |
1070 | ||
1071 | /* Make sure that the whole region is allowed to be mmapped */ | |
1072 | if (region->nr_mmaps != 1 || !region->mmaps[0].mmap || | |
1073 | region->mmaps[0].size != region->size) { | |
1074 | return; | |
1075 | } | |
1076 | ||
1077 | r = &pdev->io_regions[bar]; | |
1078 | bar_addr = r->addr; | |
3a286732 AW |
1079 | base_mr = vdev->bars[bar].mr; |
1080 | region_mr = region->mem; | |
95251725 YX |
1081 | mmap_mr = ®ion->mmaps[0].mem; |
1082 | ||
1083 | /* If BAR is mapped and page aligned, update to fill PAGE_SIZE */ | |
1084 | if (bar_addr != PCI_BAR_UNMAPPED && | |
1085 | !(bar_addr & ~qemu_real_host_page_mask)) { | |
1086 | size = qemu_real_host_page_size; | |
1087 | } | |
1088 | ||
1089 | memory_region_transaction_begin(); | |
1090 | ||
3a286732 AW |
1091 | if (vdev->bars[bar].size < size) { |
1092 | memory_region_set_size(base_mr, size); | |
1093 | } | |
1094 | memory_region_set_size(region_mr, size); | |
95251725 | 1095 | memory_region_set_size(mmap_mr, size); |
3a286732 AW |
1096 | if (size != vdev->bars[bar].size && memory_region_is_mapped(base_mr)) { |
1097 | memory_region_del_subregion(r->address_space, base_mr); | |
95251725 | 1098 | memory_region_add_subregion_overlap(r->address_space, |
3a286732 | 1099 | bar_addr, base_mr, 0); |
95251725 YX |
1100 | } |
1101 | ||
1102 | memory_region_transaction_commit(); | |
1103 | } | |
1104 | ||
65501a74 AW |
1105 | /* |
1106 | * PCI config space | |
1107 | */ | |
c00d61d8 | 1108 | uint32_t vfio_pci_read_config(PCIDevice *pdev, uint32_t addr, int len) |
65501a74 | 1109 | { |
2683ccd5 | 1110 | VFIOPCIDevice *vdev = PCI_VFIO(pdev); |
4b5d5e87 | 1111 | uint32_t emu_bits = 0, emu_val = 0, phys_val = 0, val; |
65501a74 | 1112 | |
4b5d5e87 AW |
1113 | memcpy(&emu_bits, vdev->emulated_config_bits + addr, len); |
1114 | emu_bits = le32_to_cpu(emu_bits); | |
65501a74 | 1115 | |
4b5d5e87 AW |
1116 | if (emu_bits) { |
1117 | emu_val = pci_default_read_config(pdev, addr, len); | |
1118 | } | |
1119 | ||
1120 | if (~emu_bits & (0xffffffffU >> (32 - len * 8))) { | |
1121 | ssize_t ret; | |
1122 | ||
5546a621 EA |
1123 | ret = pread(vdev->vbasedev.fd, &phys_val, len, |
1124 | vdev->config_offset + addr); | |
4b5d5e87 | 1125 | if (ret != len) { |
7df9381b AW |
1126 | error_report("%s(%s, 0x%x, 0x%x) failed: %m", |
1127 | __func__, vdev->vbasedev.name, addr, len); | |
65501a74 AW |
1128 | return -errno; |
1129 | } | |
4b5d5e87 | 1130 | phys_val = le32_to_cpu(phys_val); |
65501a74 AW |
1131 | } |
1132 | ||
4b5d5e87 | 1133 | val = (emu_val & emu_bits) | (phys_val & ~emu_bits); |
65501a74 | 1134 | |
df92ee44 | 1135 | trace_vfio_pci_read_config(vdev->vbasedev.name, addr, len, val); |
65501a74 AW |
1136 | |
1137 | return val; | |
1138 | } | |
1139 | ||
c00d61d8 AW |
1140 | void vfio_pci_write_config(PCIDevice *pdev, |
1141 | uint32_t addr, uint32_t val, int len) | |
65501a74 | 1142 | { |
2683ccd5 | 1143 | VFIOPCIDevice *vdev = PCI_VFIO(pdev); |
65501a74 AW |
1144 | uint32_t val_le = cpu_to_le32(val); |
1145 | ||
df92ee44 | 1146 | trace_vfio_pci_write_config(vdev->vbasedev.name, addr, val, len); |
65501a74 AW |
1147 | |
1148 | /* Write everything to VFIO, let it filter out what we can't write */ | |
5546a621 EA |
1149 | if (pwrite(vdev->vbasedev.fd, &val_le, len, vdev->config_offset + addr) |
1150 | != len) { | |
7df9381b AW |
1151 | error_report("%s(%s, 0x%x, 0x%x, 0x%x) failed: %m", |
1152 | __func__, vdev->vbasedev.name, addr, val, len); | |
65501a74 AW |
1153 | } |
1154 | ||
65501a74 AW |
1155 | /* MSI/MSI-X Enabling/Disabling */ |
1156 | if (pdev->cap_present & QEMU_PCI_CAP_MSI && | |
1157 | ranges_overlap(addr, len, pdev->msi_cap, vdev->msi_cap_size)) { | |
1158 | int is_enabled, was_enabled = msi_enabled(pdev); | |
1159 | ||
1160 | pci_default_write_config(pdev, addr, val, len); | |
1161 | ||
1162 | is_enabled = msi_enabled(pdev); | |
1163 | ||
c7679d45 AW |
1164 | if (!was_enabled) { |
1165 | if (is_enabled) { | |
0de70dc7 | 1166 | vfio_msi_enable(vdev); |
c7679d45 AW |
1167 | } |
1168 | } else { | |
1169 | if (!is_enabled) { | |
0de70dc7 | 1170 | vfio_msi_disable(vdev); |
c7679d45 AW |
1171 | } else { |
1172 | vfio_update_msi(vdev); | |
1173 | } | |
65501a74 | 1174 | } |
4b5d5e87 | 1175 | } else if (pdev->cap_present & QEMU_PCI_CAP_MSIX && |
65501a74 AW |
1176 | ranges_overlap(addr, len, pdev->msix_cap, MSIX_CAP_LENGTH)) { |
1177 | int is_enabled, was_enabled = msix_enabled(pdev); | |
1178 | ||
1179 | pci_default_write_config(pdev, addr, val, len); | |
1180 | ||
1181 | is_enabled = msix_enabled(pdev); | |
1182 | ||
1183 | if (!was_enabled && is_enabled) { | |
0de70dc7 | 1184 | vfio_msix_enable(vdev); |
65501a74 | 1185 | } else if (was_enabled && !is_enabled) { |
0de70dc7 | 1186 | vfio_msix_disable(vdev); |
65501a74 | 1187 | } |
95251725 YX |
1188 | } else if (ranges_overlap(addr, len, PCI_BASE_ADDRESS_0, 24) || |
1189 | range_covers_byte(addr, len, PCI_COMMAND)) { | |
1190 | pcibus_t old_addr[PCI_NUM_REGIONS - 1]; | |
1191 | int bar; | |
1192 | ||
1193 | for (bar = 0; bar < PCI_ROM_SLOT; bar++) { | |
1194 | old_addr[bar] = pdev->io_regions[bar].addr; | |
1195 | } | |
1196 | ||
1197 | pci_default_write_config(pdev, addr, val, len); | |
1198 | ||
1199 | for (bar = 0; bar < PCI_ROM_SLOT; bar++) { | |
1200 | if (old_addr[bar] != pdev->io_regions[bar].addr && | |
3a286732 AW |
1201 | vdev->bars[bar].region.size > 0 && |
1202 | vdev->bars[bar].region.size < qemu_real_host_page_size) { | |
95251725 YX |
1203 | vfio_sub_page_bar_update_mapping(pdev, bar); |
1204 | } | |
1205 | } | |
4b5d5e87 AW |
1206 | } else { |
1207 | /* Write everything to QEMU to keep emulated bits correct */ | |
1208 | pci_default_write_config(pdev, addr, val, len); | |
65501a74 AW |
1209 | } |
1210 | } | |
1211 | ||
65501a74 AW |
1212 | /* |
1213 | * Interrupt setup | |
1214 | */ | |
9ee27d73 | 1215 | static void vfio_disable_interrupts(VFIOPCIDevice *vdev) |
65501a74 | 1216 | { |
b3e27c3a AW |
1217 | /* |
1218 | * More complicated than it looks. Disabling MSI/X transitions the | |
1219 | * device to INTx mode (if supported). Therefore we need to first | |
1220 | * disable MSI/X and then cleanup by disabling INTx. | |
1221 | */ | |
1222 | if (vdev->interrupt == VFIO_INT_MSIX) { | |
0de70dc7 | 1223 | vfio_msix_disable(vdev); |
b3e27c3a | 1224 | } else if (vdev->interrupt == VFIO_INT_MSI) { |
0de70dc7 | 1225 | vfio_msi_disable(vdev); |
b3e27c3a AW |
1226 | } |
1227 | ||
1228 | if (vdev->interrupt == VFIO_INT_INTx) { | |
870cb6f1 | 1229 | vfio_intx_disable(vdev); |
65501a74 AW |
1230 | } |
1231 | } | |
1232 | ||
7ef165b9 | 1233 | static int vfio_msi_setup(VFIOPCIDevice *vdev, int pos, Error **errp) |
65501a74 AW |
1234 | { |
1235 | uint16_t ctrl; | |
1236 | bool msi_64bit, msi_maskbit; | |
1237 | int ret, entries; | |
1108b2f8 | 1238 | Error *err = NULL; |
65501a74 | 1239 | |
5546a621 | 1240 | if (pread(vdev->vbasedev.fd, &ctrl, sizeof(ctrl), |
65501a74 | 1241 | vdev->config_offset + pos + PCI_CAP_FLAGS) != sizeof(ctrl)) { |
7ef165b9 | 1242 | error_setg_errno(errp, errno, "failed reading MSI PCI_CAP_FLAGS"); |
65501a74 AW |
1243 | return -errno; |
1244 | } | |
1245 | ctrl = le16_to_cpu(ctrl); | |
1246 | ||
1247 | msi_64bit = !!(ctrl & PCI_MSI_FLAGS_64BIT); | |
1248 | msi_maskbit = !!(ctrl & PCI_MSI_FLAGS_MASKBIT); | |
1249 | entries = 1 << ((ctrl & PCI_MSI_FLAGS_QMASK) >> 1); | |
1250 | ||
0de70dc7 | 1251 | trace_vfio_msi_setup(vdev->vbasedev.name, pos); |
65501a74 | 1252 | |
1108b2f8 | 1253 | ret = msi_init(&vdev->pdev, pos, entries, msi_64bit, msi_maskbit, &err); |
65501a74 | 1254 | if (ret < 0) { |
e43b9a5a AW |
1255 | if (ret == -ENOTSUP) { |
1256 | return 0; | |
1257 | } | |
4b576648 | 1258 | error_propagate_prepend(errp, err, "msi_init failed: "); |
65501a74 AW |
1259 | return ret; |
1260 | } | |
1261 | vdev->msi_cap_size = 0xa + (msi_maskbit ? 0xa : 0) + (msi_64bit ? 0x4 : 0); | |
1262 | ||
1263 | return 0; | |
1264 | } | |
1265 | ||
db0da029 AW |
1266 | static void vfio_pci_fixup_msix_region(VFIOPCIDevice *vdev) |
1267 | { | |
1268 | off_t start, end; | |
1269 | VFIORegion *region = &vdev->bars[vdev->msix->table_bar].region; | |
1270 | ||
ae0215b2 AK |
1271 | /* |
1272 | * If the host driver allows mapping of a MSIX data, we are going to | |
1273 | * do map the entire BAR and emulate MSIX table on top of that. | |
1274 | */ | |
1275 | if (vfio_has_region_cap(&vdev->vbasedev, region->nr, | |
1276 | VFIO_REGION_INFO_CAP_MSIX_MAPPABLE)) { | |
1277 | return; | |
1278 | } | |
1279 | ||
db0da029 AW |
1280 | /* |
1281 | * We expect to find a single mmap covering the whole BAR, anything else | |
1282 | * means it's either unsupported or already setup. | |
1283 | */ | |
1284 | if (region->nr_mmaps != 1 || region->mmaps[0].offset || | |
1285 | region->size != region->mmaps[0].size) { | |
1286 | return; | |
1287 | } | |
1288 | ||
1289 | /* MSI-X table start and end aligned to host page size */ | |
1290 | start = vdev->msix->table_offset & qemu_real_host_page_mask; | |
1291 | end = REAL_HOST_PAGE_ALIGN((uint64_t)vdev->msix->table_offset + | |
1292 | (vdev->msix->entries * PCI_MSIX_ENTRY_SIZE)); | |
1293 | ||
1294 | /* | |
1295 | * Does the MSI-X table cover the beginning of the BAR? The whole BAR? | |
1296 | * NB - Host page size is necessarily a power of two and so is the PCI | |
1297 | * BAR (not counting EA yet), therefore if we have host page aligned | |
1298 | * @start and @end, then any remainder of the BAR before or after those | |
1299 | * must be at least host page sized and therefore mmap'able. | |
1300 | */ | |
1301 | if (!start) { | |
1302 | if (end >= region->size) { | |
1303 | region->nr_mmaps = 0; | |
1304 | g_free(region->mmaps); | |
1305 | region->mmaps = NULL; | |
1306 | trace_vfio_msix_fixup(vdev->vbasedev.name, | |
1307 | vdev->msix->table_bar, 0, 0); | |
1308 | } else { | |
1309 | region->mmaps[0].offset = end; | |
1310 | region->mmaps[0].size = region->size - end; | |
1311 | trace_vfio_msix_fixup(vdev->vbasedev.name, | |
1312 | vdev->msix->table_bar, region->mmaps[0].offset, | |
1313 | region->mmaps[0].offset + region->mmaps[0].size); | |
1314 | } | |
1315 | ||
1316 | /* Maybe it's aligned at the end of the BAR */ | |
1317 | } else if (end >= region->size) { | |
1318 | region->mmaps[0].size = start; | |
1319 | trace_vfio_msix_fixup(vdev->vbasedev.name, | |
1320 | vdev->msix->table_bar, region->mmaps[0].offset, | |
1321 | region->mmaps[0].offset + region->mmaps[0].size); | |
1322 | ||
1323 | /* Otherwise it must split the BAR */ | |
1324 | } else { | |
1325 | region->nr_mmaps = 2; | |
1326 | region->mmaps = g_renew(VFIOMmap, region->mmaps, 2); | |
1327 | ||
1328 | memcpy(®ion->mmaps[1], ®ion->mmaps[0], sizeof(VFIOMmap)); | |
1329 | ||
1330 | region->mmaps[0].size = start; | |
1331 | trace_vfio_msix_fixup(vdev->vbasedev.name, | |
1332 | vdev->msix->table_bar, region->mmaps[0].offset, | |
1333 | region->mmaps[0].offset + region->mmaps[0].size); | |
1334 | ||
1335 | region->mmaps[1].offset = end; | |
1336 | region->mmaps[1].size = region->size - end; | |
1337 | trace_vfio_msix_fixup(vdev->vbasedev.name, | |
1338 | vdev->msix->table_bar, region->mmaps[1].offset, | |
1339 | region->mmaps[1].offset + region->mmaps[1].size); | |
1340 | } | |
1341 | } | |
1342 | ||
89d5202e AW |
1343 | static void vfio_pci_relocate_msix(VFIOPCIDevice *vdev, Error **errp) |
1344 | { | |
1345 | int target_bar = -1; | |
1346 | size_t msix_sz; | |
1347 | ||
1348 | if (!vdev->msix || vdev->msix_relo == OFF_AUTOPCIBAR_OFF) { | |
1349 | return; | |
1350 | } | |
1351 | ||
1352 | /* The actual minimum size of MSI-X structures */ | |
1353 | msix_sz = (vdev->msix->entries * PCI_MSIX_ENTRY_SIZE) + | |
1354 | (QEMU_ALIGN_UP(vdev->msix->entries, 64) / 8); | |
1355 | /* Round up to host pages, we don't want to share a page */ | |
1356 | msix_sz = REAL_HOST_PAGE_ALIGN(msix_sz); | |
1357 | /* PCI BARs must be a power of 2 */ | |
1358 | msix_sz = pow2ceil(msix_sz); | |
1359 | ||
1360 | if (vdev->msix_relo == OFF_AUTOPCIBAR_AUTO) { | |
1361 | /* | |
1362 | * TODO: Lookup table for known devices. | |
1363 | * | |
1364 | * Logically we might use an algorithm here to select the BAR adding | |
1365 | * the least additional MMIO space, but we cannot programatically | |
1366 | * predict the driver dependency on BAR ordering or sizing, therefore | |
1367 | * 'auto' becomes a lookup for combinations reported to work. | |
1368 | */ | |
1369 | if (target_bar < 0) { | |
1370 | error_setg(errp, "No automatic MSI-X relocation available for " | |
1371 | "device %04x:%04x", vdev->vendor_id, vdev->device_id); | |
1372 | return; | |
1373 | } | |
1374 | } else { | |
1375 | target_bar = (int)(vdev->msix_relo - OFF_AUTOPCIBAR_BAR0); | |
1376 | } | |
1377 | ||
1378 | /* I/O port BARs cannot host MSI-X structures */ | |
1379 | if (vdev->bars[target_bar].ioport) { | |
1380 | error_setg(errp, "Invalid MSI-X relocation BAR %d, " | |
1381 | "I/O port BAR", target_bar); | |
1382 | return; | |
1383 | } | |
1384 | ||
1385 | /* Cannot use a BAR in the "shadow" of a 64-bit BAR */ | |
1386 | if (!vdev->bars[target_bar].size && | |
1387 | target_bar > 0 && vdev->bars[target_bar - 1].mem64) { | |
1388 | error_setg(errp, "Invalid MSI-X relocation BAR %d, " | |
1389 | "consumed by 64-bit BAR %d", target_bar, target_bar - 1); | |
1390 | return; | |
1391 | } | |
1392 | ||
1393 | /* 2GB max size for 32-bit BARs, cannot double if already > 1G */ | |
e0255bb1 | 1394 | if (vdev->bars[target_bar].size > 1 * GiB && |
89d5202e AW |
1395 | !vdev->bars[target_bar].mem64) { |
1396 | error_setg(errp, "Invalid MSI-X relocation BAR %d, " | |
1397 | "no space to extend 32-bit BAR", target_bar); | |
1398 | return; | |
1399 | } | |
1400 | ||
1401 | /* | |
1402 | * If adding a new BAR, test if we can make it 64bit. We make it | |
1403 | * prefetchable since QEMU MSI-X emulation has no read side effects | |
1404 | * and doing so makes mapping more flexible. | |
1405 | */ | |
1406 | if (!vdev->bars[target_bar].size) { | |
1407 | if (target_bar < (PCI_ROM_SLOT - 1) && | |
1408 | !vdev->bars[target_bar + 1].size) { | |
1409 | vdev->bars[target_bar].mem64 = true; | |
1410 | vdev->bars[target_bar].type = PCI_BASE_ADDRESS_MEM_TYPE_64; | |
1411 | } | |
1412 | vdev->bars[target_bar].type |= PCI_BASE_ADDRESS_MEM_PREFETCH; | |
1413 | vdev->bars[target_bar].size = msix_sz; | |
1414 | vdev->msix->table_offset = 0; | |
1415 | } else { | |
1416 | vdev->bars[target_bar].size = MAX(vdev->bars[target_bar].size * 2, | |
1417 | msix_sz * 2); | |
1418 | /* | |
1419 | * Due to above size calc, MSI-X always starts halfway into the BAR, | |
1420 | * which will always be a separate host page. | |
1421 | */ | |
1422 | vdev->msix->table_offset = vdev->bars[target_bar].size / 2; | |
1423 | } | |
1424 | ||
1425 | vdev->msix->table_bar = target_bar; | |
1426 | vdev->msix->pba_bar = target_bar; | |
1427 | /* Requires 8-byte alignment, but PCI_MSIX_ENTRY_SIZE guarantees that */ | |
1428 | vdev->msix->pba_offset = vdev->msix->table_offset + | |
1429 | (vdev->msix->entries * PCI_MSIX_ENTRY_SIZE); | |
1430 | ||
1431 | trace_vfio_msix_relo(vdev->vbasedev.name, | |
1432 | vdev->msix->table_bar, vdev->msix->table_offset); | |
1433 | } | |
1434 | ||
65501a74 AW |
1435 | /* |
1436 | * We don't have any control over how pci_add_capability() inserts | |
1437 | * capabilities into the chain. In order to setup MSI-X we need a | |
1438 | * MemoryRegion for the BAR. In order to setup the BAR and not | |
1439 | * attempt to mmap the MSI-X table area, which VFIO won't allow, we | |
1440 | * need to first look for where the MSI-X table lives. So we | |
1441 | * unfortunately split MSI-X setup across two functions. | |
1442 | */ | |
ec3bcf42 | 1443 | static void vfio_msix_early_setup(VFIOPCIDevice *vdev, Error **errp) |
65501a74 AW |
1444 | { |
1445 | uint8_t pos; | |
1446 | uint16_t ctrl; | |
1447 | uint32_t table, pba; | |
5546a621 | 1448 | int fd = vdev->vbasedev.fd; |
b5bd049f | 1449 | VFIOMSIXInfo *msix; |
65501a74 AW |
1450 | |
1451 | pos = pci_find_capability(&vdev->pdev, PCI_CAP_ID_MSIX); | |
1452 | if (!pos) { | |
ec3bcf42 | 1453 | return; |
65501a74 AW |
1454 | } |
1455 | ||
5546a621 | 1456 | if (pread(fd, &ctrl, sizeof(ctrl), |
b58b17f7 | 1457 | vdev->config_offset + pos + PCI_MSIX_FLAGS) != sizeof(ctrl)) { |
008d0e2d | 1458 | error_setg_errno(errp, errno, "failed to read PCI MSIX FLAGS"); |
ec3bcf42 | 1459 | return; |
65501a74 AW |
1460 | } |
1461 | ||
5546a621 | 1462 | if (pread(fd, &table, sizeof(table), |
65501a74 | 1463 | vdev->config_offset + pos + PCI_MSIX_TABLE) != sizeof(table)) { |
008d0e2d | 1464 | error_setg_errno(errp, errno, "failed to read PCI MSIX TABLE"); |
ec3bcf42 | 1465 | return; |
65501a74 AW |
1466 | } |
1467 | ||
5546a621 | 1468 | if (pread(fd, &pba, sizeof(pba), |
65501a74 | 1469 | vdev->config_offset + pos + PCI_MSIX_PBA) != sizeof(pba)) { |
008d0e2d | 1470 | error_setg_errno(errp, errno, "failed to read PCI MSIX PBA"); |
ec3bcf42 | 1471 | return; |
65501a74 AW |
1472 | } |
1473 | ||
1474 | ctrl = le16_to_cpu(ctrl); | |
1475 | table = le32_to_cpu(table); | |
1476 | pba = le32_to_cpu(pba); | |
1477 | ||
b5bd049f AW |
1478 | msix = g_malloc0(sizeof(*msix)); |
1479 | msix->table_bar = table & PCI_MSIX_FLAGS_BIRMASK; | |
1480 | msix->table_offset = table & ~PCI_MSIX_FLAGS_BIRMASK; | |
1481 | msix->pba_bar = pba & PCI_MSIX_FLAGS_BIRMASK; | |
1482 | msix->pba_offset = pba & ~PCI_MSIX_FLAGS_BIRMASK; | |
1483 | msix->entries = (ctrl & PCI_MSIX_FLAGS_QSIZE) + 1; | |
65501a74 | 1484 | |
43302969 GL |
1485 | /* |
1486 | * Test the size of the pba_offset variable and catch if it extends outside | |
1487 | * of the specified BAR. If it is the case, we need to apply a hardware | |
1488 | * specific quirk if the device is known or we have a broken configuration. | |
1489 | */ | |
b5bd049f | 1490 | if (msix->pba_offset >= vdev->bars[msix->pba_bar].region.size) { |
43302969 GL |
1491 | /* |
1492 | * Chelsio T5 Virtual Function devices are encoded as 0x58xx for T5 | |
1493 | * adapters. The T5 hardware returns an incorrect value of 0x8000 for | |
1494 | * the VF PBA offset while the BAR itself is only 8k. The correct value | |
1495 | * is 0x1000, so we hard code that here. | |
1496 | */ | |
ff635e37 AW |
1497 | if (vdev->vendor_id == PCI_VENDOR_ID_CHELSIO && |
1498 | (vdev->device_id & 0xff00) == 0x5800) { | |
b5bd049f | 1499 | msix->pba_offset = 0x1000; |
c60807de | 1500 | } else if (vdev->msix_relo == OFF_AUTOPCIBAR_OFF) { |
008d0e2d EA |
1501 | error_setg(errp, "hardware reports invalid configuration, " |
1502 | "MSIX PBA outside of specified BAR"); | |
b5bd049f | 1503 | g_free(msix); |
ec3bcf42 | 1504 | return; |
43302969 GL |
1505 | } |
1506 | } | |
1507 | ||
0de70dc7 | 1508 | trace_vfio_msix_early_setup(vdev->vbasedev.name, pos, msix->table_bar, |
b5bd049f AW |
1509 | msix->table_offset, msix->entries); |
1510 | vdev->msix = msix; | |
65501a74 | 1511 | |
db0da029 | 1512 | vfio_pci_fixup_msix_region(vdev); |
89d5202e AW |
1513 | |
1514 | vfio_pci_relocate_msix(vdev, errp); | |
65501a74 AW |
1515 | } |
1516 | ||
7ef165b9 | 1517 | static int vfio_msix_setup(VFIOPCIDevice *vdev, int pos, Error **errp) |
65501a74 AW |
1518 | { |
1519 | int ret; | |
ee640c62 | 1520 | Error *err = NULL; |
65501a74 | 1521 | |
95239e16 AW |
1522 | vdev->msix->pending = g_malloc0(BITS_TO_LONGS(vdev->msix->entries) * |
1523 | sizeof(unsigned long)); | |
65501a74 | 1524 | ret = msix_init(&vdev->pdev, vdev->msix->entries, |
3a286732 | 1525 | vdev->bars[vdev->msix->table_bar].mr, |
65501a74 | 1526 | vdev->msix->table_bar, vdev->msix->table_offset, |
3a286732 | 1527 | vdev->bars[vdev->msix->pba_bar].mr, |
ee640c62 C |
1528 | vdev->msix->pba_bar, vdev->msix->pba_offset, pos, |
1529 | &err); | |
65501a74 | 1530 | if (ret < 0) { |
e43b9a5a | 1531 | if (ret == -ENOTSUP) { |
e1eb292a | 1532 | warn_report_err(err); |
e43b9a5a AW |
1533 | return 0; |
1534 | } | |
ee640c62 C |
1535 | |
1536 | error_propagate(errp, err); | |
65501a74 AW |
1537 | return ret; |
1538 | } | |
1539 | ||
95239e16 AW |
1540 | /* |
1541 | * The PCI spec suggests that devices provide additional alignment for | |
1542 | * MSI-X structures and avoid overlapping non-MSI-X related registers. | |
1543 | * For an assigned device, this hopefully means that emulation of MSI-X | |
1544 | * structures does not affect the performance of the device. If devices | |
1545 | * fail to provide that alignment, a significant performance penalty may | |
1546 | * result, for instance Mellanox MT27500 VFs: | |
1547 | * http://www.spinics.net/lists/kvm/msg125881.html | |
1548 | * | |
1549 | * The PBA is simply not that important for such a serious regression and | |
1550 | * most drivers do not appear to look at it. The solution for this is to | |
1551 | * disable the PBA MemoryRegion unless it's being used. We disable it | |
1552 | * here and only enable it if a masked vector fires through QEMU. As the | |
1553 | * vector-use notifier is called, which occurs on unmask, we test whether | |
1554 | * PBA emulation is needed and again disable if not. | |
1555 | */ | |
1556 | memory_region_set_enabled(&vdev->pdev.msix_pba_mmio, false); | |
1557 | ||
fcad0d21 AK |
1558 | /* |
1559 | * The emulated machine may provide a paravirt interface for MSIX setup | |
1560 | * so it is not strictly necessary to emulate MSIX here. This becomes | |
1561 | * helpful when frequently accessed MMIO registers are located in | |
1562 | * subpages adjacent to the MSIX table but the MSIX data containing page | |
1563 | * cannot be mapped because of a host page size bigger than the MSIX table | |
1564 | * alignment. | |
1565 | */ | |
1566 | if (object_property_get_bool(OBJECT(qdev_get_machine()), | |
1567 | "vfio-no-msix-emulation", NULL)) { | |
1568 | memory_region_set_enabled(&vdev->pdev.msix_table_mmio, false); | |
1569 | } | |
1570 | ||
65501a74 AW |
1571 | return 0; |
1572 | } | |
1573 | ||
9ee27d73 | 1574 | static void vfio_teardown_msi(VFIOPCIDevice *vdev) |
65501a74 AW |
1575 | { |
1576 | msi_uninit(&vdev->pdev); | |
1577 | ||
1578 | if (vdev->msix) { | |
a664477d | 1579 | msix_uninit(&vdev->pdev, |
3a286732 AW |
1580 | vdev->bars[vdev->msix->table_bar].mr, |
1581 | vdev->bars[vdev->msix->pba_bar].mr); | |
95239e16 | 1582 | g_free(vdev->msix->pending); |
65501a74 AW |
1583 | } |
1584 | } | |
1585 | ||
1586 | /* | |
1587 | * Resource setup | |
1588 | */ | |
9ee27d73 | 1589 | static void vfio_mmap_set_enabled(VFIOPCIDevice *vdev, bool enabled) |
65501a74 AW |
1590 | { |
1591 | int i; | |
1592 | ||
1593 | for (i = 0; i < PCI_ROM_SLOT; i++) { | |
db0da029 | 1594 | vfio_region_mmaps_set_enabled(&vdev->bars[i].region, enabled); |
65501a74 AW |
1595 | } |
1596 | } | |
1597 | ||
3a286732 | 1598 | static void vfio_bar_prepare(VFIOPCIDevice *vdev, int nr) |
65501a74 AW |
1599 | { |
1600 | VFIOBAR *bar = &vdev->bars[nr]; | |
1601 | ||
65501a74 | 1602 | uint32_t pci_bar; |
65501a74 AW |
1603 | int ret; |
1604 | ||
1605 | /* Skip both unimplemented BARs and the upper half of 64bit BARS. */ | |
2d82f8a3 | 1606 | if (!bar->region.size) { |
65501a74 AW |
1607 | return; |
1608 | } | |
1609 | ||
65501a74 | 1610 | /* Determine what type of BAR this is for registration */ |
5546a621 | 1611 | ret = pread(vdev->vbasedev.fd, &pci_bar, sizeof(pci_bar), |
65501a74 AW |
1612 | vdev->config_offset + PCI_BASE_ADDRESS_0 + (4 * nr)); |
1613 | if (ret != sizeof(pci_bar)) { | |
312fd5f2 | 1614 | error_report("vfio: Failed to read BAR %d (%m)", nr); |
65501a74 AW |
1615 | return; |
1616 | } | |
1617 | ||
1618 | pci_bar = le32_to_cpu(pci_bar); | |
39360f0b AW |
1619 | bar->ioport = (pci_bar & PCI_BASE_ADDRESS_SPACE_IO); |
1620 | bar->mem64 = bar->ioport ? 0 : (pci_bar & PCI_BASE_ADDRESS_MEM_TYPE_64); | |
3a286732 AW |
1621 | bar->type = pci_bar & (bar->ioport ? ~PCI_BASE_ADDRESS_IO_MASK : |
1622 | ~PCI_BASE_ADDRESS_MEM_MASK); | |
1623 | bar->size = bar->region.size; | |
1624 | } | |
1625 | ||
1626 | static void vfio_bars_prepare(VFIOPCIDevice *vdev) | |
1627 | { | |
1628 | int i; | |
1629 | ||
1630 | for (i = 0; i < PCI_ROM_SLOT; i++) { | |
1631 | vfio_bar_prepare(vdev, i); | |
1632 | } | |
1633 | } | |
1634 | ||
1635 | static void vfio_bar_register(VFIOPCIDevice *vdev, int nr) | |
1636 | { | |
1637 | VFIOBAR *bar = &vdev->bars[nr]; | |
1638 | char *name; | |
65501a74 | 1639 | |
3a286732 AW |
1640 | if (!bar->size) { |
1641 | return; | |
65501a74 | 1642 | } |
7076eabc | 1643 | |
3a286732 AW |
1644 | bar->mr = g_new0(MemoryRegion, 1); |
1645 | name = g_strdup_printf("%s base BAR %d", vdev->vbasedev.name, nr); | |
1646 | memory_region_init_io(bar->mr, OBJECT(vdev), NULL, NULL, name, bar->size); | |
1647 | g_free(name); | |
1648 | ||
1649 | if (bar->region.size) { | |
1650 | memory_region_add_subregion(bar->mr, 0, bar->region.mem); | |
1651 | ||
1652 | if (vfio_region_mmap(&bar->region)) { | |
1653 | error_report("Failed to mmap %s BAR %d. Performance may be slow", | |
1654 | vdev->vbasedev.name, nr); | |
1655 | } | |
1656 | } | |
1657 | ||
1658 | pci_register_bar(&vdev->pdev, nr, bar->type, bar->mr); | |
65501a74 AW |
1659 | } |
1660 | ||
3a286732 | 1661 | static void vfio_bars_register(VFIOPCIDevice *vdev) |
65501a74 AW |
1662 | { |
1663 | int i; | |
1664 | ||
1665 | for (i = 0; i < PCI_ROM_SLOT; i++) { | |
3a286732 | 1666 | vfio_bar_register(vdev, i); |
65501a74 AW |
1667 | } |
1668 | } | |
1669 | ||
2d82f8a3 | 1670 | static void vfio_bars_exit(VFIOPCIDevice *vdev) |
65501a74 AW |
1671 | { |
1672 | int i; | |
1673 | ||
1674 | for (i = 0; i < PCI_ROM_SLOT; i++) { | |
3a286732 AW |
1675 | VFIOBAR *bar = &vdev->bars[i]; |
1676 | ||
2d82f8a3 | 1677 | vfio_bar_quirk_exit(vdev, i); |
3a286732 AW |
1678 | vfio_region_exit(&bar->region); |
1679 | if (bar->region.size) { | |
1680 | memory_region_del_subregion(bar->mr, bar->region.mem); | |
1681 | } | |
65501a74 | 1682 | } |
f15689c7 | 1683 | |
2d82f8a3 | 1684 | if (vdev->vga) { |
f15689c7 | 1685 | pci_unregister_vga(&vdev->pdev); |
2d82f8a3 | 1686 | vfio_vga_quirk_exit(vdev); |
f15689c7 | 1687 | } |
65501a74 AW |
1688 | } |
1689 | ||
2d82f8a3 | 1690 | static void vfio_bars_finalize(VFIOPCIDevice *vdev) |
ba5e6bfa PB |
1691 | { |
1692 | int i; | |
1693 | ||
1694 | for (i = 0; i < PCI_ROM_SLOT; i++) { | |
3a286732 AW |
1695 | VFIOBAR *bar = &vdev->bars[i]; |
1696 | ||
2d82f8a3 | 1697 | vfio_bar_quirk_finalize(vdev, i); |
3a286732 AW |
1698 | vfio_region_finalize(&bar->region); |
1699 | if (bar->size) { | |
1700 | object_unparent(OBJECT(bar->mr)); | |
1701 | g_free(bar->mr); | |
1702 | } | |
ba5e6bfa PB |
1703 | } |
1704 | ||
2d82f8a3 AW |
1705 | if (vdev->vga) { |
1706 | vfio_vga_quirk_finalize(vdev); | |
1707 | for (i = 0; i < ARRAY_SIZE(vdev->vga->region); i++) { | |
1708 | object_unparent(OBJECT(&vdev->vga->region[i].mem)); | |
1709 | } | |
1710 | g_free(vdev->vga); | |
ba5e6bfa PB |
1711 | } |
1712 | } | |
1713 | ||
65501a74 AW |
1714 | /* |
1715 | * General setup | |
1716 | */ | |
1717 | static uint8_t vfio_std_cap_max_size(PCIDevice *pdev, uint8_t pos) | |
1718 | { | |
88caf177 CF |
1719 | uint8_t tmp; |
1720 | uint16_t next = PCI_CONFIG_SPACE_SIZE; | |
65501a74 AW |
1721 | |
1722 | for (tmp = pdev->config[PCI_CAPABILITY_LIST]; tmp; | |
3fc1c182 | 1723 | tmp = pdev->config[tmp + PCI_CAP_LIST_NEXT]) { |
65501a74 AW |
1724 | if (tmp > pos && tmp < next) { |
1725 | next = tmp; | |
1726 | } | |
1727 | } | |
1728 | ||
1729 | return next - pos; | |
1730 | } | |
1731 | ||
325ae8d5 CF |
1732 | |
1733 | static uint16_t vfio_ext_cap_max_size(const uint8_t *config, uint16_t pos) | |
1734 | { | |
1735 | uint16_t tmp, next = PCIE_CONFIG_SPACE_SIZE; | |
1736 | ||
1737 | for (tmp = PCI_CONFIG_SPACE_SIZE; tmp; | |
1738 | tmp = PCI_EXT_CAP_NEXT(pci_get_long(config + tmp))) { | |
1739 | if (tmp > pos && tmp < next) { | |
1740 | next = tmp; | |
1741 | } | |
1742 | } | |
1743 | ||
1744 | return next - pos; | |
1745 | } | |
1746 | ||
96adc5c7 AW |
1747 | static void vfio_set_word_bits(uint8_t *buf, uint16_t val, uint16_t mask) |
1748 | { | |
1749 | pci_set_word(buf, (pci_get_word(buf) & ~mask) | val); | |
1750 | } | |
1751 | ||
9ee27d73 | 1752 | static void vfio_add_emulated_word(VFIOPCIDevice *vdev, int pos, |
96adc5c7 AW |
1753 | uint16_t val, uint16_t mask) |
1754 | { | |
1755 | vfio_set_word_bits(vdev->pdev.config + pos, val, mask); | |
1756 | vfio_set_word_bits(vdev->pdev.wmask + pos, ~mask, mask); | |
1757 | vfio_set_word_bits(vdev->emulated_config_bits + pos, mask, mask); | |
1758 | } | |
1759 | ||
1760 | static void vfio_set_long_bits(uint8_t *buf, uint32_t val, uint32_t mask) | |
1761 | { | |
1762 | pci_set_long(buf, (pci_get_long(buf) & ~mask) | val); | |
1763 | } | |
1764 | ||
9ee27d73 | 1765 | static void vfio_add_emulated_long(VFIOPCIDevice *vdev, int pos, |
96adc5c7 AW |
1766 | uint32_t val, uint32_t mask) |
1767 | { | |
1768 | vfio_set_long_bits(vdev->pdev.config + pos, val, mask); | |
1769 | vfio_set_long_bits(vdev->pdev.wmask + pos, ~mask, mask); | |
1770 | vfio_set_long_bits(vdev->emulated_config_bits + pos, mask, mask); | |
1771 | } | |
1772 | ||
7ef165b9 EA |
1773 | static int vfio_setup_pcie_cap(VFIOPCIDevice *vdev, int pos, uint8_t size, |
1774 | Error **errp) | |
96adc5c7 AW |
1775 | { |
1776 | uint16_t flags; | |
1777 | uint8_t type; | |
1778 | ||
1779 | flags = pci_get_word(vdev->pdev.config + pos + PCI_CAP_FLAGS); | |
1780 | type = (flags & PCI_EXP_FLAGS_TYPE) >> 4; | |
1781 | ||
1782 | if (type != PCI_EXP_TYPE_ENDPOINT && | |
1783 | type != PCI_EXP_TYPE_LEG_END && | |
1784 | type != PCI_EXP_TYPE_RC_END) { | |
1785 | ||
7ef165b9 EA |
1786 | error_setg(errp, "assignment of PCIe type 0x%x " |
1787 | "devices is not currently supported", type); | |
96adc5c7 AW |
1788 | return -EINVAL; |
1789 | } | |
1790 | ||
fd56e061 DG |
1791 | if (!pci_bus_is_express(pci_get_bus(&vdev->pdev))) { |
1792 | PCIBus *bus = pci_get_bus(&vdev->pdev); | |
0282abf0 AW |
1793 | PCIDevice *bridge; |
1794 | ||
96adc5c7 | 1795 | /* |
0282abf0 AW |
1796 | * Traditionally PCI device assignment exposes the PCIe capability |
1797 | * as-is on non-express buses. The reason being that some drivers | |
1798 | * simply assume that it's there, for example tg3. However when | |
1799 | * we're running on a native PCIe machine type, like Q35, we need | |
1800 | * to hide the PCIe capability. The reason for this is twofold; | |
1801 | * first Windows guests get a Code 10 error when the PCIe capability | |
1802 | * is exposed in this configuration. Therefore express devices won't | |
1803 | * work at all unless they're attached to express buses in the VM. | |
1804 | * Second, a native PCIe machine introduces the possibility of fine | |
1805 | * granularity IOMMUs supporting both translation and isolation. | |
1806 | * Guest code to discover the IOMMU visibility of a device, such as | |
1807 | * IOMMU grouping code on Linux, is very aware of device types and | |
1808 | * valid transitions between bus types. An express device on a non- | |
1809 | * express bus is not a valid combination on bare metal systems. | |
1810 | * | |
1811 | * Drivers that require a PCIe capability to make the device | |
1812 | * functional are simply going to need to have their devices placed | |
1813 | * on a PCIe bus in the VM. | |
96adc5c7 | 1814 | */ |
0282abf0 AW |
1815 | while (!pci_bus_is_root(bus)) { |
1816 | bridge = pci_bridge_get_device(bus); | |
fd56e061 | 1817 | bus = pci_get_bus(bridge); |
0282abf0 AW |
1818 | } |
1819 | ||
1820 | if (pci_bus_is_express(bus)) { | |
1821 | return 0; | |
1822 | } | |
1823 | ||
fd56e061 | 1824 | } else if (pci_bus_is_root(pci_get_bus(&vdev->pdev))) { |
96adc5c7 AW |
1825 | /* |
1826 | * On a Root Complex bus Endpoints become Root Complex Integrated | |
1827 | * Endpoints, which changes the type and clears the LNK & LNK2 fields. | |
1828 | */ | |
1829 | if (type == PCI_EXP_TYPE_ENDPOINT) { | |
1830 | vfio_add_emulated_word(vdev, pos + PCI_CAP_FLAGS, | |
1831 | PCI_EXP_TYPE_RC_END << 4, | |
1832 | PCI_EXP_FLAGS_TYPE); | |
1833 | ||
1834 | /* Link Capabilities, Status, and Control goes away */ | |
1835 | if (size > PCI_EXP_LNKCTL) { | |
1836 | vfio_add_emulated_long(vdev, pos + PCI_EXP_LNKCAP, 0, ~0); | |
1837 | vfio_add_emulated_word(vdev, pos + PCI_EXP_LNKCTL, 0, ~0); | |
1838 | vfio_add_emulated_word(vdev, pos + PCI_EXP_LNKSTA, 0, ~0); | |
1839 | ||
1840 | #ifndef PCI_EXP_LNKCAP2 | |
1841 | #define PCI_EXP_LNKCAP2 44 | |
1842 | #endif | |
1843 | #ifndef PCI_EXP_LNKSTA2 | |
1844 | #define PCI_EXP_LNKSTA2 50 | |
1845 | #endif | |
1846 | /* Link 2 Capabilities, Status, and Control goes away */ | |
1847 | if (size > PCI_EXP_LNKCAP2) { | |
1848 | vfio_add_emulated_long(vdev, pos + PCI_EXP_LNKCAP2, 0, ~0); | |
1849 | vfio_add_emulated_word(vdev, pos + PCI_EXP_LNKCTL2, 0, ~0); | |
1850 | vfio_add_emulated_word(vdev, pos + PCI_EXP_LNKSTA2, 0, ~0); | |
1851 | } | |
1852 | } | |
1853 | ||
1854 | } else if (type == PCI_EXP_TYPE_LEG_END) { | |
1855 | /* | |
1856 | * Legacy endpoints don't belong on the root complex. Windows | |
1857 | * seems to be happier with devices if we skip the capability. | |
1858 | */ | |
1859 | return 0; | |
1860 | } | |
1861 | ||
1862 | } else { | |
1863 | /* | |
1864 | * Convert Root Complex Integrated Endpoints to regular endpoints. | |
1865 | * These devices don't support LNK/LNK2 capabilities, so make them up. | |
1866 | */ | |
1867 | if (type == PCI_EXP_TYPE_RC_END) { | |
1868 | vfio_add_emulated_word(vdev, pos + PCI_CAP_FLAGS, | |
1869 | PCI_EXP_TYPE_ENDPOINT << 4, | |
1870 | PCI_EXP_FLAGS_TYPE); | |
1871 | vfio_add_emulated_long(vdev, pos + PCI_EXP_LNKCAP, | |
d96a0ac7 AW |
1872 | QEMU_PCI_EXP_LNKCAP_MLW(QEMU_PCI_EXP_LNK_X1) | |
1873 | QEMU_PCI_EXP_LNKCAP_MLS(QEMU_PCI_EXP_LNK_2_5GT), ~0); | |
96adc5c7 AW |
1874 | vfio_add_emulated_word(vdev, pos + PCI_EXP_LNKCTL, 0, ~0); |
1875 | } | |
96adc5c7 AW |
1876 | } |
1877 | ||
47985727 AW |
1878 | /* |
1879 | * Intel 82599 SR-IOV VFs report an invalid PCIe capability version 0 | |
1880 | * (Niantic errate #35) causing Windows to error with a Code 10 for the | |
1881 | * device on Q35. Fixup any such devices to report version 1. If we | |
1882 | * were to remove the capability entirely the guest would lose extended | |
1883 | * config space. | |
1884 | */ | |
1885 | if ((flags & PCI_EXP_FLAGS_VERS) == 0) { | |
1886 | vfio_add_emulated_word(vdev, pos + PCI_CAP_FLAGS, | |
1887 | 1, PCI_EXP_FLAGS_VERS); | |
1888 | } | |
1889 | ||
9a7c2a59 MZ |
1890 | pos = pci_add_capability(&vdev->pdev, PCI_CAP_ID_EXP, pos, size, |
1891 | errp); | |
1892 | if (pos < 0) { | |
1893 | return pos; | |
96adc5c7 AW |
1894 | } |
1895 | ||
9a7c2a59 MZ |
1896 | vdev->pdev.exp.exp_cap = pos; |
1897 | ||
96adc5c7 AW |
1898 | return pos; |
1899 | } | |
1900 | ||
9ee27d73 | 1901 | static void vfio_check_pcie_flr(VFIOPCIDevice *vdev, uint8_t pos) |
befe5176 AW |
1902 | { |
1903 | uint32_t cap = pci_get_long(vdev->pdev.config + pos + PCI_EXP_DEVCAP); | |
1904 | ||
1905 | if (cap & PCI_EXP_DEVCAP_FLR) { | |
df92ee44 | 1906 | trace_vfio_check_pcie_flr(vdev->vbasedev.name); |
befe5176 AW |
1907 | vdev->has_flr = true; |
1908 | } | |
1909 | } | |
1910 | ||
9ee27d73 | 1911 | static void vfio_check_pm_reset(VFIOPCIDevice *vdev, uint8_t pos) |
befe5176 AW |
1912 | { |
1913 | uint16_t csr = pci_get_word(vdev->pdev.config + pos + PCI_PM_CTRL); | |
1914 | ||
1915 | if (!(csr & PCI_PM_CTRL_NO_SOFT_RESET)) { | |
df92ee44 | 1916 | trace_vfio_check_pm_reset(vdev->vbasedev.name); |
befe5176 AW |
1917 | vdev->has_pm_reset = true; |
1918 | } | |
1919 | } | |
1920 | ||
9ee27d73 | 1921 | static void vfio_check_af_flr(VFIOPCIDevice *vdev, uint8_t pos) |
befe5176 AW |
1922 | { |
1923 | uint8_t cap = pci_get_byte(vdev->pdev.config + pos + PCI_AF_CAP); | |
1924 | ||
1925 | if ((cap & PCI_AF_CAP_TP) && (cap & PCI_AF_CAP_FLR)) { | |
df92ee44 | 1926 | trace_vfio_check_af_flr(vdev->vbasedev.name); |
befe5176 AW |
1927 | vdev->has_flr = true; |
1928 | } | |
1929 | } | |
1930 | ||
7ef165b9 | 1931 | static int vfio_add_std_cap(VFIOPCIDevice *vdev, uint8_t pos, Error **errp) |
65501a74 AW |
1932 | { |
1933 | PCIDevice *pdev = &vdev->pdev; | |
1934 | uint8_t cap_id, next, size; | |
1935 | int ret; | |
1936 | ||
1937 | cap_id = pdev->config[pos]; | |
3fc1c182 | 1938 | next = pdev->config[pos + PCI_CAP_LIST_NEXT]; |
65501a74 AW |
1939 | |
1940 | /* | |
1941 | * If it becomes important to configure capabilities to their actual | |
1942 | * size, use this as the default when it's something we don't recognize. | |
1943 | * Since QEMU doesn't actually handle many of the config accesses, | |
1944 | * exact size doesn't seem worthwhile. | |
1945 | */ | |
1946 | size = vfio_std_cap_max_size(pdev, pos); | |
1947 | ||
1948 | /* | |
1949 | * pci_add_capability always inserts the new capability at the head | |
1950 | * of the chain. Therefore to end up with a chain that matches the | |
1951 | * physical device, we insert from the end by making this recursive. | |
3fc1c182 | 1952 | * This is also why we pre-calculate size above as cached config space |
65501a74 AW |
1953 | * will be changed as we unwind the stack. |
1954 | */ | |
1955 | if (next) { | |
7ef165b9 | 1956 | ret = vfio_add_std_cap(vdev, next, errp); |
65501a74 | 1957 | if (ret) { |
5b31c822 | 1958 | return ret; |
65501a74 AW |
1959 | } |
1960 | } else { | |
96adc5c7 AW |
1961 | /* Begin the rebuild, use QEMU emulated list bits */ |
1962 | pdev->config[PCI_CAPABILITY_LIST] = 0; | |
1963 | vdev->emulated_config_bits[PCI_CAPABILITY_LIST] = 0xff; | |
1964 | vdev->emulated_config_bits[PCI_STATUS] |= PCI_STATUS_CAP_LIST; | |
e3f79f3b AW |
1965 | |
1966 | ret = vfio_add_virt_caps(vdev, errp); | |
1967 | if (ret) { | |
1968 | return ret; | |
1969 | } | |
65501a74 AW |
1970 | } |
1971 | ||
e3f79f3b AW |
1972 | /* Scale down size, esp in case virt caps were added above */ |
1973 | size = MIN(size, vfio_std_cap_max_size(pdev, pos)); | |
1974 | ||
96adc5c7 | 1975 | /* Use emulated next pointer to allow dropping caps */ |
3fc1c182 | 1976 | pci_set_byte(vdev->emulated_config_bits + pos + PCI_CAP_LIST_NEXT, 0xff); |
96adc5c7 | 1977 | |
65501a74 AW |
1978 | switch (cap_id) { |
1979 | case PCI_CAP_ID_MSI: | |
7ef165b9 | 1980 | ret = vfio_msi_setup(vdev, pos, errp); |
65501a74 | 1981 | break; |
96adc5c7 | 1982 | case PCI_CAP_ID_EXP: |
befe5176 | 1983 | vfio_check_pcie_flr(vdev, pos); |
7ef165b9 | 1984 | ret = vfio_setup_pcie_cap(vdev, pos, size, errp); |
96adc5c7 | 1985 | break; |
65501a74 | 1986 | case PCI_CAP_ID_MSIX: |
7ef165b9 | 1987 | ret = vfio_msix_setup(vdev, pos, errp); |
65501a74 | 1988 | break; |
ba661818 | 1989 | case PCI_CAP_ID_PM: |
befe5176 | 1990 | vfio_check_pm_reset(vdev, pos); |
ba661818 | 1991 | vdev->pm_cap = pos; |
27841278 | 1992 | ret = pci_add_capability(pdev, cap_id, pos, size, errp); |
befe5176 AW |
1993 | break; |
1994 | case PCI_CAP_ID_AF: | |
1995 | vfio_check_af_flr(vdev, pos); | |
27841278 | 1996 | ret = pci_add_capability(pdev, cap_id, pos, size, errp); |
befe5176 | 1997 | break; |
65501a74 | 1998 | default: |
27841278 | 1999 | ret = pci_add_capability(pdev, cap_id, pos, size, errp); |
65501a74 AW |
2000 | break; |
2001 | } | |
5b31c822 | 2002 | |
65501a74 | 2003 | if (ret < 0) { |
7ef165b9 EA |
2004 | error_prepend(errp, |
2005 | "failed to add PCI capability 0x%x[0x%x]@0x%x: ", | |
2006 | cap_id, size, pos); | |
65501a74 AW |
2007 | return ret; |
2008 | } | |
2009 | ||
2010 | return 0; | |
2011 | } | |
2012 | ||
7ef165b9 | 2013 | static void vfio_add_ext_cap(VFIOPCIDevice *vdev) |
325ae8d5 CF |
2014 | { |
2015 | PCIDevice *pdev = &vdev->pdev; | |
2016 | uint32_t header; | |
2017 | uint16_t cap_id, next, size; | |
2018 | uint8_t cap_ver; | |
2019 | uint8_t *config; | |
2020 | ||
e37dac06 | 2021 | /* Only add extended caps if we have them and the guest can see them */ |
fd56e061 | 2022 | if (!pci_is_express(pdev) || !pci_bus_is_express(pci_get_bus(pdev)) || |
e37dac06 | 2023 | !pci_get_long(pdev->config + PCI_CONFIG_SPACE_SIZE)) { |
7ef165b9 | 2024 | return; |
e37dac06 AW |
2025 | } |
2026 | ||
325ae8d5 CF |
2027 | /* |
2028 | * pcie_add_capability always inserts the new capability at the tail | |
2029 | * of the chain. Therefore to end up with a chain that matches the | |
2030 | * physical device, we cache the config space to avoid overwriting | |
2031 | * the original config space when we parse the extended capabilities. | |
2032 | */ | |
2033 | config = g_memdup(pdev->config, vdev->config_size); | |
2034 | ||
e37dac06 AW |
2035 | /* |
2036 | * Extended capabilities are chained with each pointing to the next, so we | |
2037 | * can drop anything other than the head of the chain simply by modifying | |
d0d1cd70 AW |
2038 | * the previous next pointer. Seed the head of the chain here such that |
2039 | * we can simply skip any capabilities we want to drop below, regardless | |
2040 | * of their position in the chain. If this stub capability still exists | |
2041 | * after we add the capabilities we want to expose, update the capability | |
2042 | * ID to zero. Note that we cannot seed with the capability header being | |
2043 | * zero as this conflicts with definition of an absent capability chain | |
2044 | * and prevents capabilities beyond the head of the list from being added. | |
2045 | * By replacing the dummy capability ID with zero after walking the device | |
2046 | * chain, we also transparently mark extended capabilities as absent if | |
2047 | * no capabilities were added. Note that the PCIe spec defines an absence | |
2048 | * of extended capabilities to be determined by a value of zero for the | |
2049 | * capability ID, version, AND next pointer. A non-zero next pointer | |
2050 | * should be sufficient to indicate additional capabilities are present, | |
2051 | * which will occur if we call pcie_add_capability() below. The entire | |
2052 | * first dword is emulated to support this. | |
2053 | * | |
2054 | * NB. The kernel side does similar masking, so be prepared that our | |
2055 | * view of the device may also contain a capability ID zero in the head | |
2056 | * of the chain. Skip it for the same reason that we cannot seed the | |
2057 | * chain with a zero capability. | |
e37dac06 AW |
2058 | */ |
2059 | pci_set_long(pdev->config + PCI_CONFIG_SPACE_SIZE, | |
2060 | PCI_EXT_CAP(0xFFFF, 0, 0)); | |
2061 | pci_set_long(pdev->wmask + PCI_CONFIG_SPACE_SIZE, 0); | |
2062 | pci_set_long(vdev->emulated_config_bits + PCI_CONFIG_SPACE_SIZE, ~0); | |
2063 | ||
325ae8d5 CF |
2064 | for (next = PCI_CONFIG_SPACE_SIZE; next; |
2065 | next = PCI_EXT_CAP_NEXT(pci_get_long(config + next))) { | |
2066 | header = pci_get_long(config + next); | |
2067 | cap_id = PCI_EXT_CAP_ID(header); | |
2068 | cap_ver = PCI_EXT_CAP_VER(header); | |
2069 | ||
2070 | /* | |
2071 | * If it becomes important to configure extended capabilities to their | |
2072 | * actual size, use this as the default when it's something we don't | |
2073 | * recognize. Since QEMU doesn't actually handle many of the config | |
2074 | * accesses, exact size doesn't seem worthwhile. | |
2075 | */ | |
2076 | size = vfio_ext_cap_max_size(config, next); | |
2077 | ||
325ae8d5 CF |
2078 | /* Use emulated next pointer to allow dropping extended caps */ |
2079 | pci_long_test_and_set_mask(vdev->emulated_config_bits + next, | |
2080 | PCI_EXT_CAP_NEXT_MASK); | |
e37dac06 AW |
2081 | |
2082 | switch (cap_id) { | |
d0d1cd70 | 2083 | case 0: /* kernel masked capability */ |
e37dac06 | 2084 | case PCI_EXT_CAP_ID_SRIOV: /* Read-only VF BARs confuse OVMF */ |
383a7af7 | 2085 | case PCI_EXT_CAP_ID_ARI: /* XXX Needs next function virtualization */ |
3412d8ec | 2086 | case PCI_EXT_CAP_ID_REBAR: /* Can't expose read-only */ |
e37dac06 AW |
2087 | trace_vfio_add_ext_cap_dropped(vdev->vbasedev.name, cap_id, next); |
2088 | break; | |
2089 | default: | |
2090 | pcie_add_capability(pdev, cap_id, cap_ver, next, size); | |
2091 | } | |
2092 | ||
2093 | } | |
2094 | ||
2095 | /* Cleanup chain head ID if necessary */ | |
2096 | if (pci_get_word(pdev->config + PCI_CONFIG_SPACE_SIZE) == 0xFFFF) { | |
2097 | pci_set_word(pdev->config + PCI_CONFIG_SPACE_SIZE, 0); | |
325ae8d5 CF |
2098 | } |
2099 | ||
2100 | g_free(config); | |
7ef165b9 | 2101 | return; |
325ae8d5 CF |
2102 | } |
2103 | ||
7ef165b9 | 2104 | static int vfio_add_capabilities(VFIOPCIDevice *vdev, Error **errp) |
65501a74 AW |
2105 | { |
2106 | PCIDevice *pdev = &vdev->pdev; | |
325ae8d5 | 2107 | int ret; |
65501a74 AW |
2108 | |
2109 | if (!(pdev->config[PCI_STATUS] & PCI_STATUS_CAP_LIST) || | |
2110 | !pdev->config[PCI_CAPABILITY_LIST]) { | |
2111 | return 0; /* Nothing to add */ | |
2112 | } | |
2113 | ||
7ef165b9 | 2114 | ret = vfio_add_std_cap(vdev, pdev->config[PCI_CAPABILITY_LIST], errp); |
325ae8d5 CF |
2115 | if (ret) { |
2116 | return ret; | |
2117 | } | |
2118 | ||
7ef165b9 EA |
2119 | vfio_add_ext_cap(vdev); |
2120 | return 0; | |
65501a74 AW |
2121 | } |
2122 | ||
9ee27d73 | 2123 | static void vfio_pci_pre_reset(VFIOPCIDevice *vdev) |
f16f39c3 AW |
2124 | { |
2125 | PCIDevice *pdev = &vdev->pdev; | |
2126 | uint16_t cmd; | |
2127 | ||
2128 | vfio_disable_interrupts(vdev); | |
2129 | ||
2130 | /* Make sure the device is in D0 */ | |
2131 | if (vdev->pm_cap) { | |
2132 | uint16_t pmcsr; | |
2133 | uint8_t state; | |
2134 | ||
2135 | pmcsr = vfio_pci_read_config(pdev, vdev->pm_cap + PCI_PM_CTRL, 2); | |
2136 | state = pmcsr & PCI_PM_CTRL_STATE_MASK; | |
2137 | if (state) { | |
2138 | pmcsr &= ~PCI_PM_CTRL_STATE_MASK; | |
2139 | vfio_pci_write_config(pdev, vdev->pm_cap + PCI_PM_CTRL, pmcsr, 2); | |
2140 | /* vfio handles the necessary delay here */ | |
2141 | pmcsr = vfio_pci_read_config(pdev, vdev->pm_cap + PCI_PM_CTRL, 2); | |
2142 | state = pmcsr & PCI_PM_CTRL_STATE_MASK; | |
2143 | if (state) { | |
4e505ddd | 2144 | error_report("vfio: Unable to power on device, stuck in D%d", |
f16f39c3 AW |
2145 | state); |
2146 | } | |
2147 | } | |
2148 | } | |
2149 | ||
2150 | /* | |
2151 | * Stop any ongoing DMA by disconecting I/O, MMIO, and bus master. | |
2152 | * Also put INTx Disable in known state. | |
2153 | */ | |
2154 | cmd = vfio_pci_read_config(pdev, PCI_COMMAND, 2); | |
2155 | cmd &= ~(PCI_COMMAND_IO | PCI_COMMAND_MEMORY | PCI_COMMAND_MASTER | | |
2156 | PCI_COMMAND_INTX_DISABLE); | |
2157 | vfio_pci_write_config(pdev, PCI_COMMAND, cmd, 2); | |
2158 | } | |
2159 | ||
9ee27d73 | 2160 | static void vfio_pci_post_reset(VFIOPCIDevice *vdev) |
f16f39c3 | 2161 | { |
7dfb3424 | 2162 | Error *err = NULL; |
a52a4c47 | 2163 | int nr; |
7dfb3424 EA |
2164 | |
2165 | vfio_intx_enable(vdev, &err); | |
2166 | if (err) { | |
c3b8e3e0 | 2167 | error_reportf_err(err, VFIO_MSG_PREFIX, vdev->vbasedev.name); |
7dfb3424 | 2168 | } |
a52a4c47 IY |
2169 | |
2170 | for (nr = 0; nr < PCI_NUM_REGIONS - 1; ++nr) { | |
2171 | off_t addr = vdev->config_offset + PCI_BASE_ADDRESS_0 + (4 * nr); | |
2172 | uint32_t val = 0; | |
2173 | uint32_t len = sizeof(val); | |
2174 | ||
2175 | if (pwrite(vdev->vbasedev.fd, &val, len, addr) != len) { | |
2176 | error_report("%s(%s) reset bar %d failed: %m", __func__, | |
2177 | vdev->vbasedev.name, nr); | |
2178 | } | |
2179 | } | |
469d02de AW |
2180 | |
2181 | vfio_quirk_reset(vdev); | |
f16f39c3 AW |
2182 | } |
2183 | ||
7df9381b | 2184 | static bool vfio_pci_host_match(PCIHostDeviceAddress *addr, const char *name) |
f16f39c3 | 2185 | { |
7df9381b AW |
2186 | char tmp[13]; |
2187 | ||
2188 | sprintf(tmp, "%04x:%02x:%02x.%1x", addr->domain, | |
2189 | addr->bus, addr->slot, addr->function); | |
2190 | ||
2191 | return (strcmp(tmp, name) == 0); | |
f16f39c3 AW |
2192 | } |
2193 | ||
9ee27d73 | 2194 | static int vfio_pci_hot_reset(VFIOPCIDevice *vdev, bool single) |
f16f39c3 AW |
2195 | { |
2196 | VFIOGroup *group; | |
2197 | struct vfio_pci_hot_reset_info *info; | |
2198 | struct vfio_pci_dependent_device *devices; | |
2199 | struct vfio_pci_hot_reset *reset; | |
2200 | int32_t *fds; | |
2201 | int ret, i, count; | |
2202 | bool multi = false; | |
2203 | ||
df92ee44 | 2204 | trace_vfio_pci_hot_reset(vdev->vbasedev.name, single ? "one" : "multi"); |
f16f39c3 | 2205 | |
893bfc3c C |
2206 | if (!single) { |
2207 | vfio_pci_pre_reset(vdev); | |
2208 | } | |
b47d8efa | 2209 | vdev->vbasedev.needs_reset = false; |
f16f39c3 AW |
2210 | |
2211 | info = g_malloc0(sizeof(*info)); | |
2212 | info->argsz = sizeof(*info); | |
2213 | ||
5546a621 | 2214 | ret = ioctl(vdev->vbasedev.fd, VFIO_DEVICE_GET_PCI_HOT_RESET_INFO, info); |
f16f39c3 AW |
2215 | if (ret && errno != ENOSPC) { |
2216 | ret = -errno; | |
2217 | if (!vdev->has_pm_reset) { | |
7df9381b AW |
2218 | error_report("vfio: Cannot reset device %s, " |
2219 | "no available reset mechanism.", vdev->vbasedev.name); | |
f16f39c3 AW |
2220 | } |
2221 | goto out_single; | |
2222 | } | |
2223 | ||
2224 | count = info->count; | |
2225 | info = g_realloc(info, sizeof(*info) + (count * sizeof(*devices))); | |
2226 | info->argsz = sizeof(*info) + (count * sizeof(*devices)); | |
2227 | devices = &info->devices[0]; | |
2228 | ||
5546a621 | 2229 | ret = ioctl(vdev->vbasedev.fd, VFIO_DEVICE_GET_PCI_HOT_RESET_INFO, info); |
f16f39c3 AW |
2230 | if (ret) { |
2231 | ret = -errno; | |
2232 | error_report("vfio: hot reset info failed: %m"); | |
2233 | goto out_single; | |
2234 | } | |
2235 | ||
df92ee44 | 2236 | trace_vfio_pci_hot_reset_has_dep_devices(vdev->vbasedev.name); |
f16f39c3 AW |
2237 | |
2238 | /* Verify that we have all the groups required */ | |
2239 | for (i = 0; i < info->count; i++) { | |
2240 | PCIHostDeviceAddress host; | |
9ee27d73 | 2241 | VFIOPCIDevice *tmp; |
b47d8efa | 2242 | VFIODevice *vbasedev_iter; |
f16f39c3 AW |
2243 | |
2244 | host.domain = devices[i].segment; | |
2245 | host.bus = devices[i].bus; | |
2246 | host.slot = PCI_SLOT(devices[i].devfn); | |
2247 | host.function = PCI_FUNC(devices[i].devfn); | |
2248 | ||
385f57cf | 2249 | trace_vfio_pci_hot_reset_dep_devices(host.domain, |
f16f39c3 AW |
2250 | host.bus, host.slot, host.function, devices[i].group_id); |
2251 | ||
7df9381b | 2252 | if (vfio_pci_host_match(&host, vdev->vbasedev.name)) { |
f16f39c3 AW |
2253 | continue; |
2254 | } | |
2255 | ||
62356b72 | 2256 | QLIST_FOREACH(group, &vfio_group_list, next) { |
f16f39c3 AW |
2257 | if (group->groupid == devices[i].group_id) { |
2258 | break; | |
2259 | } | |
2260 | } | |
2261 | ||
2262 | if (!group) { | |
2263 | if (!vdev->has_pm_reset) { | |
df92ee44 | 2264 | error_report("vfio: Cannot reset device %s, " |
f16f39c3 | 2265 | "depends on group %d which is not owned.", |
df92ee44 | 2266 | vdev->vbasedev.name, devices[i].group_id); |
f16f39c3 AW |
2267 | } |
2268 | ret = -EPERM; | |
2269 | goto out; | |
2270 | } | |
2271 | ||
2272 | /* Prep dependent devices for reset and clear our marker. */ | |
b47d8efa | 2273 | QLIST_FOREACH(vbasedev_iter, &group->device_list, next) { |
7da624e2 AW |
2274 | if (!vbasedev_iter->dev->realized || |
2275 | vbasedev_iter->type != VFIO_DEVICE_TYPE_PCI) { | |
b47d8efa EA |
2276 | continue; |
2277 | } | |
2278 | tmp = container_of(vbasedev_iter, VFIOPCIDevice, vbasedev); | |
7df9381b | 2279 | if (vfio_pci_host_match(&host, tmp->vbasedev.name)) { |
f16f39c3 | 2280 | if (single) { |
f16f39c3 AW |
2281 | ret = -EINVAL; |
2282 | goto out_single; | |
2283 | } | |
2284 | vfio_pci_pre_reset(tmp); | |
b47d8efa | 2285 | tmp->vbasedev.needs_reset = false; |
f16f39c3 AW |
2286 | multi = true; |
2287 | break; | |
2288 | } | |
2289 | } | |
2290 | } | |
2291 | ||
2292 | if (!single && !multi) { | |
f16f39c3 AW |
2293 | ret = -EINVAL; |
2294 | goto out_single; | |
2295 | } | |
2296 | ||
2297 | /* Determine how many group fds need to be passed */ | |
2298 | count = 0; | |
62356b72 | 2299 | QLIST_FOREACH(group, &vfio_group_list, next) { |
f16f39c3 AW |
2300 | for (i = 0; i < info->count; i++) { |
2301 | if (group->groupid == devices[i].group_id) { | |
2302 | count++; | |
2303 | break; | |
2304 | } | |
2305 | } | |
2306 | } | |
2307 | ||
2308 | reset = g_malloc0(sizeof(*reset) + (count * sizeof(*fds))); | |
2309 | reset->argsz = sizeof(*reset) + (count * sizeof(*fds)); | |
2310 | fds = &reset->group_fds[0]; | |
2311 | ||
2312 | /* Fill in group fds */ | |
62356b72 | 2313 | QLIST_FOREACH(group, &vfio_group_list, next) { |
f16f39c3 AW |
2314 | for (i = 0; i < info->count; i++) { |
2315 | if (group->groupid == devices[i].group_id) { | |
2316 | fds[reset->count++] = group->fd; | |
2317 | break; | |
2318 | } | |
2319 | } | |
2320 | } | |
2321 | ||
2322 | /* Bus reset! */ | |
5546a621 | 2323 | ret = ioctl(vdev->vbasedev.fd, VFIO_DEVICE_PCI_HOT_RESET, reset); |
f16f39c3 AW |
2324 | g_free(reset); |
2325 | ||
df92ee44 | 2326 | trace_vfio_pci_hot_reset_result(vdev->vbasedev.name, |
385f57cf | 2327 | ret ? "%m" : "Success"); |
f16f39c3 AW |
2328 | |
2329 | out: | |
2330 | /* Re-enable INTx on affected devices */ | |
2331 | for (i = 0; i < info->count; i++) { | |
2332 | PCIHostDeviceAddress host; | |
9ee27d73 | 2333 | VFIOPCIDevice *tmp; |
b47d8efa | 2334 | VFIODevice *vbasedev_iter; |
f16f39c3 AW |
2335 | |
2336 | host.domain = devices[i].segment; | |
2337 | host.bus = devices[i].bus; | |
2338 | host.slot = PCI_SLOT(devices[i].devfn); | |
2339 | host.function = PCI_FUNC(devices[i].devfn); | |
2340 | ||
7df9381b | 2341 | if (vfio_pci_host_match(&host, vdev->vbasedev.name)) { |
f16f39c3 AW |
2342 | continue; |
2343 | } | |
2344 | ||
62356b72 | 2345 | QLIST_FOREACH(group, &vfio_group_list, next) { |
f16f39c3 AW |
2346 | if (group->groupid == devices[i].group_id) { |
2347 | break; | |
2348 | } | |
2349 | } | |
2350 | ||
2351 | if (!group) { | |
2352 | break; | |
2353 | } | |
2354 | ||
b47d8efa | 2355 | QLIST_FOREACH(vbasedev_iter, &group->device_list, next) { |
7da624e2 AW |
2356 | if (!vbasedev_iter->dev->realized || |
2357 | vbasedev_iter->type != VFIO_DEVICE_TYPE_PCI) { | |
b47d8efa EA |
2358 | continue; |
2359 | } | |
2360 | tmp = container_of(vbasedev_iter, VFIOPCIDevice, vbasedev); | |
7df9381b | 2361 | if (vfio_pci_host_match(&host, tmp->vbasedev.name)) { |
f16f39c3 AW |
2362 | vfio_pci_post_reset(tmp); |
2363 | break; | |
2364 | } | |
2365 | } | |
2366 | } | |
2367 | out_single: | |
893bfc3c C |
2368 | if (!single) { |
2369 | vfio_pci_post_reset(vdev); | |
2370 | } | |
f16f39c3 AW |
2371 | g_free(info); |
2372 | ||
2373 | return ret; | |
2374 | } | |
2375 | ||
2376 | /* | |
2377 | * We want to differentiate hot reset of mulitple in-use devices vs hot reset | |
2378 | * of a single in-use device. VFIO_DEVICE_RESET will already handle the case | |
2379 | * of doing hot resets when there is only a single device per bus. The in-use | |
2380 | * here refers to how many VFIODevices are affected. A hot reset that affects | |
2381 | * multiple devices, but only a single in-use device, means that we can call | |
2382 | * it from our bus ->reset() callback since the extent is effectively a single | |
2383 | * device. This allows us to make use of it in the hotplug path. When there | |
2384 | * are multiple in-use devices, we can only trigger the hot reset during a | |
2385 | * system reset and thus from our reset handler. We separate _one vs _multi | |
2386 | * here so that we don't overlap and do a double reset on the system reset | |
2387 | * path where both our reset handler and ->reset() callback are used. Calling | |
2388 | * _one() will only do a hot reset for the one in-use devices case, calling | |
2389 | * _multi() will do nothing if a _one() would have been sufficient. | |
2390 | */ | |
9ee27d73 | 2391 | static int vfio_pci_hot_reset_one(VFIOPCIDevice *vdev) |
f16f39c3 AW |
2392 | { |
2393 | return vfio_pci_hot_reset(vdev, true); | |
2394 | } | |
2395 | ||
b47d8efa | 2396 | static int vfio_pci_hot_reset_multi(VFIODevice *vbasedev) |
f16f39c3 | 2397 | { |
b47d8efa | 2398 | VFIOPCIDevice *vdev = container_of(vbasedev, VFIOPCIDevice, vbasedev); |
f16f39c3 AW |
2399 | return vfio_pci_hot_reset(vdev, false); |
2400 | } | |
2401 | ||
b47d8efa EA |
2402 | static void vfio_pci_compute_needs_reset(VFIODevice *vbasedev) |
2403 | { | |
2404 | VFIOPCIDevice *vdev = container_of(vbasedev, VFIOPCIDevice, vbasedev); | |
2405 | if (!vbasedev->reset_works || (!vdev->has_flr && vdev->has_pm_reset)) { | |
2406 | vbasedev->needs_reset = true; | |
2407 | } | |
2408 | } | |
2409 | ||
2410 | static VFIODeviceOps vfio_pci_ops = { | |
2411 | .vfio_compute_needs_reset = vfio_pci_compute_needs_reset, | |
2412 | .vfio_hot_reset_multi = vfio_pci_hot_reset_multi, | |
870cb6f1 | 2413 | .vfio_eoi = vfio_intx_eoi, |
b47d8efa EA |
2414 | }; |
2415 | ||
cde4279b | 2416 | int vfio_populate_vga(VFIOPCIDevice *vdev, Error **errp) |
e593c021 AW |
2417 | { |
2418 | VFIODevice *vbasedev = &vdev->vbasedev; | |
2419 | struct vfio_region_info *reg_info; | |
2420 | int ret; | |
2421 | ||
4225f2b6 AW |
2422 | ret = vfio_get_region_info(vbasedev, VFIO_PCI_VGA_REGION_INDEX, ®_info); |
2423 | if (ret) { | |
cde4279b EA |
2424 | error_setg_errno(errp, -ret, |
2425 | "failed getting region info for VGA region index %d", | |
2426 | VFIO_PCI_VGA_REGION_INDEX); | |
4225f2b6 AW |
2427 | return ret; |
2428 | } | |
e593c021 | 2429 | |
4225f2b6 AW |
2430 | if (!(reg_info->flags & VFIO_REGION_INFO_FLAG_READ) || |
2431 | !(reg_info->flags & VFIO_REGION_INFO_FLAG_WRITE) || | |
2432 | reg_info->size < 0xbffff + 1) { | |
cde4279b EA |
2433 | error_setg(errp, "unexpected VGA info, flags 0x%lx, size 0x%lx", |
2434 | (unsigned long)reg_info->flags, | |
2435 | (unsigned long)reg_info->size); | |
4225f2b6 AW |
2436 | g_free(reg_info); |
2437 | return -EINVAL; | |
2438 | } | |
e593c021 | 2439 | |
4225f2b6 | 2440 | vdev->vga = g_new0(VFIOVGA, 1); |
e593c021 | 2441 | |
4225f2b6 AW |
2442 | vdev->vga->fd_offset = reg_info->offset; |
2443 | vdev->vga->fd = vdev->vbasedev.fd; | |
e593c021 | 2444 | |
4225f2b6 | 2445 | g_free(reg_info); |
e593c021 | 2446 | |
4225f2b6 AW |
2447 | vdev->vga->region[QEMU_PCI_VGA_MEM].offset = QEMU_PCI_VGA_MEM_BASE; |
2448 | vdev->vga->region[QEMU_PCI_VGA_MEM].nr = QEMU_PCI_VGA_MEM; | |
2449 | QLIST_INIT(&vdev->vga->region[QEMU_PCI_VGA_MEM].quirks); | |
e593c021 | 2450 | |
182bca45 AW |
2451 | memory_region_init_io(&vdev->vga->region[QEMU_PCI_VGA_MEM].mem, |
2452 | OBJECT(vdev), &vfio_vga_ops, | |
2453 | &vdev->vga->region[QEMU_PCI_VGA_MEM], | |
2454 | "vfio-vga-mmio@0xa0000", | |
2455 | QEMU_PCI_VGA_MEM_SIZE); | |
2456 | ||
4225f2b6 AW |
2457 | vdev->vga->region[QEMU_PCI_VGA_IO_LO].offset = QEMU_PCI_VGA_IO_LO_BASE; |
2458 | vdev->vga->region[QEMU_PCI_VGA_IO_LO].nr = QEMU_PCI_VGA_IO_LO; | |
2459 | QLIST_INIT(&vdev->vga->region[QEMU_PCI_VGA_IO_LO].quirks); | |
e593c021 | 2460 | |
182bca45 AW |
2461 | memory_region_init_io(&vdev->vga->region[QEMU_PCI_VGA_IO_LO].mem, |
2462 | OBJECT(vdev), &vfio_vga_ops, | |
2463 | &vdev->vga->region[QEMU_PCI_VGA_IO_LO], | |
2464 | "vfio-vga-io@0x3b0", | |
2465 | QEMU_PCI_VGA_IO_LO_SIZE); | |
2466 | ||
4225f2b6 AW |
2467 | vdev->vga->region[QEMU_PCI_VGA_IO_HI].offset = QEMU_PCI_VGA_IO_HI_BASE; |
2468 | vdev->vga->region[QEMU_PCI_VGA_IO_HI].nr = QEMU_PCI_VGA_IO_HI; | |
2469 | QLIST_INIT(&vdev->vga->region[QEMU_PCI_VGA_IO_HI].quirks); | |
e593c021 | 2470 | |
182bca45 AW |
2471 | memory_region_init_io(&vdev->vga->region[QEMU_PCI_VGA_IO_HI].mem, |
2472 | OBJECT(vdev), &vfio_vga_ops, | |
2473 | &vdev->vga->region[QEMU_PCI_VGA_IO_HI], | |
2474 | "vfio-vga-io@0x3c0", | |
2475 | QEMU_PCI_VGA_IO_HI_SIZE); | |
2476 | ||
2477 | pci_register_vga(&vdev->pdev, &vdev->vga->region[QEMU_PCI_VGA_MEM].mem, | |
2478 | &vdev->vga->region[QEMU_PCI_VGA_IO_LO].mem, | |
2479 | &vdev->vga->region[QEMU_PCI_VGA_IO_HI].mem); | |
2480 | ||
e593c021 AW |
2481 | return 0; |
2482 | } | |
2483 | ||
e04cff9d | 2484 | static void vfio_populate_device(VFIOPCIDevice *vdev, Error **errp) |
65501a74 | 2485 | { |
217e9fdc | 2486 | VFIODevice *vbasedev = &vdev->vbasedev; |
46900226 | 2487 | struct vfio_region_info *reg_info; |
7b4b0e9e | 2488 | struct vfio_irq_info irq_info = { .argsz = sizeof(irq_info) }; |
d13dd2d7 | 2489 | int i, ret = -1; |
65501a74 AW |
2490 | |
2491 | /* Sanity check device */ | |
d13dd2d7 | 2492 | if (!(vbasedev->flags & VFIO_DEVICE_FLAGS_PCI)) { |
2312d907 | 2493 | error_setg(errp, "this isn't a PCI device"); |
e04cff9d | 2494 | return; |
65501a74 AW |
2495 | } |
2496 | ||
d13dd2d7 | 2497 | if (vbasedev->num_regions < VFIO_PCI_CONFIG_REGION_INDEX + 1) { |
2312d907 EA |
2498 | error_setg(errp, "unexpected number of io regions %u", |
2499 | vbasedev->num_regions); | |
e04cff9d | 2500 | return; |
65501a74 AW |
2501 | } |
2502 | ||
d13dd2d7 | 2503 | if (vbasedev->num_irqs < VFIO_PCI_MSIX_IRQ_INDEX + 1) { |
2312d907 | 2504 | error_setg(errp, "unexpected number of irqs %u", vbasedev->num_irqs); |
e04cff9d | 2505 | return; |
65501a74 AW |
2506 | } |
2507 | ||
2508 | for (i = VFIO_PCI_BAR0_REGION_INDEX; i < VFIO_PCI_ROM_REGION_INDEX; i++) { | |
db0da029 AW |
2509 | char *name = g_strdup_printf("%s BAR %d", vbasedev->name, i); |
2510 | ||
2511 | ret = vfio_region_setup(OBJECT(vdev), vbasedev, | |
2512 | &vdev->bars[i].region, i, name); | |
2513 | g_free(name); | |
2514 | ||
65501a74 | 2515 | if (ret) { |
2312d907 | 2516 | error_setg_errno(errp, -ret, "failed to get region %d info", i); |
e04cff9d | 2517 | return; |
65501a74 AW |
2518 | } |
2519 | ||
7076eabc | 2520 | QLIST_INIT(&vdev->bars[i].quirks); |
46900226 | 2521 | } |
65501a74 | 2522 | |
46900226 AW |
2523 | ret = vfio_get_region_info(vbasedev, |
2524 | VFIO_PCI_CONFIG_REGION_INDEX, ®_info); | |
65501a74 | 2525 | if (ret) { |
2312d907 | 2526 | error_setg_errno(errp, -ret, "failed to get config info"); |
e04cff9d | 2527 | return; |
65501a74 AW |
2528 | } |
2529 | ||
d13dd2d7 | 2530 | trace_vfio_populate_device_config(vdev->vbasedev.name, |
46900226 AW |
2531 | (unsigned long)reg_info->size, |
2532 | (unsigned long)reg_info->offset, | |
2533 | (unsigned long)reg_info->flags); | |
65501a74 | 2534 | |
46900226 | 2535 | vdev->config_size = reg_info->size; |
6a659bbf AW |
2536 | if (vdev->config_size == PCI_CONFIG_SPACE_SIZE) { |
2537 | vdev->pdev.cap_present &= ~QEMU_PCI_CAP_EXPRESS; | |
2538 | } | |
46900226 AW |
2539 | vdev->config_offset = reg_info->offset; |
2540 | ||
2541 | g_free(reg_info); | |
65501a74 | 2542 | |
e593c021 | 2543 | if (vdev->features & VFIO_FEATURE_ENABLE_VGA) { |
2312d907 | 2544 | ret = vfio_populate_vga(vdev, errp); |
f15689c7 | 2545 | if (ret) { |
2312d907 | 2546 | error_append_hint(errp, "device does not support " |
cde4279b | 2547 | "requested feature x-vga\n"); |
e04cff9d | 2548 | return; |
f15689c7 | 2549 | } |
f15689c7 | 2550 | } |
47cbe50c | 2551 | |
7b4b0e9e VMP |
2552 | irq_info.index = VFIO_PCI_ERR_IRQ_INDEX; |
2553 | ||
5546a621 | 2554 | ret = ioctl(vdev->vbasedev.fd, VFIO_DEVICE_GET_IRQ_INFO, &irq_info); |
7b4b0e9e VMP |
2555 | if (ret) { |
2556 | /* This can fail for an old kernel or legacy PCI dev */ | |
772f1b37 | 2557 | trace_vfio_populate_device_get_irq_info_failure(strerror(errno)); |
7b4b0e9e VMP |
2558 | } else if (irq_info.count == 1) { |
2559 | vdev->pci_aer = true; | |
2560 | } else { | |
e1eb292a MA |
2561 | warn_report(VFIO_MSG_PREFIX |
2562 | "Could not enable error recovery for the device", | |
2563 | vbasedev->name); | |
7b4b0e9e | 2564 | } |
d13dd2d7 EA |
2565 | } |
2566 | ||
9ee27d73 | 2567 | static void vfio_put_device(VFIOPCIDevice *vdev) |
65501a74 | 2568 | { |
462037c9 | 2569 | g_free(vdev->vbasedev.name); |
db0da029 AW |
2570 | g_free(vdev->msix); |
2571 | ||
d13dd2d7 | 2572 | vfio_put_base_device(&vdev->vbasedev); |
65501a74 AW |
2573 | } |
2574 | ||
7b4b0e9e VMP |
2575 | static void vfio_err_notifier_handler(void *opaque) |
2576 | { | |
9ee27d73 | 2577 | VFIOPCIDevice *vdev = opaque; |
7b4b0e9e VMP |
2578 | |
2579 | if (!event_notifier_test_and_clear(&vdev->err_notifier)) { | |
2580 | return; | |
2581 | } | |
2582 | ||
2583 | /* | |
2584 | * TBD. Retrieve the error details and decide what action | |
2585 | * needs to be taken. One of the actions could be to pass | |
2586 | * the error to the guest and have the guest driver recover | |
2587 | * from the error. This requires that PCIe capabilities be | |
2588 | * exposed to the guest. For now, we just terminate the | |
2589 | * guest to contain the error. | |
2590 | */ | |
2591 | ||
7df9381b | 2592 | error_report("%s(%s) Unrecoverable error detected. Please collect any data possible and then kill the guest", __func__, vdev->vbasedev.name); |
7b4b0e9e | 2593 | |
ba29776f | 2594 | vm_stop(RUN_STATE_INTERNAL_ERROR); |
7b4b0e9e VMP |
2595 | } |
2596 | ||
2597 | /* | |
2598 | * Registers error notifier for devices supporting error recovery. | |
2599 | * If we encounter a failure in this function, we report an error | |
2600 | * and continue after disabling error recovery support for the | |
2601 | * device. | |
2602 | */ | |
9ee27d73 | 2603 | static void vfio_register_err_notifier(VFIOPCIDevice *vdev) |
7b4b0e9e | 2604 | { |
201a7331 EA |
2605 | Error *err = NULL; |
2606 | int32_t fd; | |
7b4b0e9e VMP |
2607 | |
2608 | if (!vdev->pci_aer) { | |
2609 | return; | |
2610 | } | |
2611 | ||
2612 | if (event_notifier_init(&vdev->err_notifier, 0)) { | |
8fbf47c3 | 2613 | error_report("vfio: Unable to init event notifier for error detection"); |
7b4b0e9e VMP |
2614 | vdev->pci_aer = false; |
2615 | return; | |
2616 | } | |
2617 | ||
201a7331 EA |
2618 | fd = event_notifier_get_fd(&vdev->err_notifier); |
2619 | qemu_set_fd_handler(fd, vfio_err_notifier_handler, NULL, vdev); | |
7b4b0e9e | 2620 | |
201a7331 EA |
2621 | if (vfio_set_irq_signaling(&vdev->vbasedev, VFIO_PCI_ERR_IRQ_INDEX, 0, |
2622 | VFIO_IRQ_SET_ACTION_TRIGGER, fd, &err)) { | |
2623 | error_reportf_err(err, VFIO_MSG_PREFIX, vdev->vbasedev.name); | |
2624 | qemu_set_fd_handler(fd, NULL, NULL, vdev); | |
7b4b0e9e VMP |
2625 | event_notifier_cleanup(&vdev->err_notifier); |
2626 | vdev->pci_aer = false; | |
2627 | } | |
7b4b0e9e VMP |
2628 | } |
2629 | ||
9ee27d73 | 2630 | static void vfio_unregister_err_notifier(VFIOPCIDevice *vdev) |
7b4b0e9e | 2631 | { |
201a7331 | 2632 | Error *err = NULL; |
7b4b0e9e VMP |
2633 | |
2634 | if (!vdev->pci_aer) { | |
2635 | return; | |
2636 | } | |
2637 | ||
201a7331 EA |
2638 | if (vfio_set_irq_signaling(&vdev->vbasedev, VFIO_PCI_ERR_IRQ_INDEX, 0, |
2639 | VFIO_IRQ_SET_ACTION_TRIGGER, -1, &err)) { | |
2640 | error_reportf_err(err, VFIO_MSG_PREFIX, vdev->vbasedev.name); | |
7b4b0e9e | 2641 | } |
7b4b0e9e VMP |
2642 | qemu_set_fd_handler(event_notifier_get_fd(&vdev->err_notifier), |
2643 | NULL, NULL, vdev); | |
2644 | event_notifier_cleanup(&vdev->err_notifier); | |
2645 | } | |
2646 | ||
47cbe50c AW |
2647 | static void vfio_req_notifier_handler(void *opaque) |
2648 | { | |
2649 | VFIOPCIDevice *vdev = opaque; | |
35c7cb4c | 2650 | Error *err = NULL; |
47cbe50c AW |
2651 | |
2652 | if (!event_notifier_test_and_clear(&vdev->req_notifier)) { | |
2653 | return; | |
2654 | } | |
2655 | ||
a2596aee | 2656 | qdev_unplug(DEVICE(vdev), &err); |
35c7cb4c | 2657 | if (err) { |
e1eb292a | 2658 | warn_reportf_err(err, VFIO_MSG_PREFIX, vdev->vbasedev.name); |
35c7cb4c | 2659 | } |
47cbe50c AW |
2660 | } |
2661 | ||
2662 | static void vfio_register_req_notifier(VFIOPCIDevice *vdev) | |
2663 | { | |
2664 | struct vfio_irq_info irq_info = { .argsz = sizeof(irq_info), | |
2665 | .index = VFIO_PCI_REQ_IRQ_INDEX }; | |
201a7331 EA |
2666 | Error *err = NULL; |
2667 | int32_t fd; | |
47cbe50c AW |
2668 | |
2669 | if (!(vdev->features & VFIO_FEATURE_ENABLE_REQ)) { | |
2670 | return; | |
2671 | } | |
2672 | ||
2673 | if (ioctl(vdev->vbasedev.fd, | |
2674 | VFIO_DEVICE_GET_IRQ_INFO, &irq_info) < 0 || irq_info.count < 1) { | |
2675 | return; | |
2676 | } | |
2677 | ||
2678 | if (event_notifier_init(&vdev->req_notifier, 0)) { | |
2679 | error_report("vfio: Unable to init event notifier for device request"); | |
2680 | return; | |
2681 | } | |
2682 | ||
201a7331 EA |
2683 | fd = event_notifier_get_fd(&vdev->req_notifier); |
2684 | qemu_set_fd_handler(fd, vfio_req_notifier_handler, NULL, vdev); | |
47cbe50c | 2685 | |
201a7331 EA |
2686 | if (vfio_set_irq_signaling(&vdev->vbasedev, VFIO_PCI_REQ_IRQ_INDEX, 0, |
2687 | VFIO_IRQ_SET_ACTION_TRIGGER, fd, &err)) { | |
2688 | error_reportf_err(err, VFIO_MSG_PREFIX, vdev->vbasedev.name); | |
2689 | qemu_set_fd_handler(fd, NULL, NULL, vdev); | |
47cbe50c AW |
2690 | event_notifier_cleanup(&vdev->req_notifier); |
2691 | } else { | |
2692 | vdev->req_enabled = true; | |
2693 | } | |
47cbe50c AW |
2694 | } |
2695 | ||
2696 | static void vfio_unregister_req_notifier(VFIOPCIDevice *vdev) | |
2697 | { | |
201a7331 | 2698 | Error *err = NULL; |
47cbe50c AW |
2699 | |
2700 | if (!vdev->req_enabled) { | |
2701 | return; | |
2702 | } | |
2703 | ||
201a7331 EA |
2704 | if (vfio_set_irq_signaling(&vdev->vbasedev, VFIO_PCI_REQ_IRQ_INDEX, 0, |
2705 | VFIO_IRQ_SET_ACTION_TRIGGER, -1, &err)) { | |
2706 | error_reportf_err(err, VFIO_MSG_PREFIX, vdev->vbasedev.name); | |
47cbe50c | 2707 | } |
47cbe50c AW |
2708 | qemu_set_fd_handler(event_notifier_get_fd(&vdev->req_notifier), |
2709 | NULL, NULL, vdev); | |
2710 | event_notifier_cleanup(&vdev->req_notifier); | |
2711 | ||
2712 | vdev->req_enabled = false; | |
2713 | } | |
2714 | ||
1a22aca1 | 2715 | static void vfio_realize(PCIDevice *pdev, Error **errp) |
65501a74 | 2716 | { |
2683ccd5 | 2717 | VFIOPCIDevice *vdev = PCI_VFIO(pdev); |
b47d8efa | 2718 | VFIODevice *vbasedev_iter; |
65501a74 | 2719 | VFIOGroup *group; |
238e9172 | 2720 | char *tmp, *subsys, group_path[PATH_MAX], *group_name; |
ec3bcf42 | 2721 | Error *err = NULL; |
65501a74 AW |
2722 | ssize_t len; |
2723 | struct stat st; | |
2724 | int groupid; | |
581406e0 | 2725 | int i, ret; |
238e9172 | 2726 | bool is_mdev; |
65501a74 | 2727 | |
7df9381b | 2728 | if (!vdev->vbasedev.sysfsdev) { |
4a946268 EA |
2729 | if (!(~vdev->host.domain || ~vdev->host.bus || |
2730 | ~vdev->host.slot || ~vdev->host.function)) { | |
2731 | error_setg(errp, "No provided host device"); | |
6e4e6f0d DJS |
2732 | error_append_hint(errp, "Use -device vfio-pci,host=DDDD:BB:DD.F " |
2733 | "or -device vfio-pci,sysfsdev=PATH_TO_DEVICE\n"); | |
4a946268 EA |
2734 | return; |
2735 | } | |
7df9381b AW |
2736 | vdev->vbasedev.sysfsdev = |
2737 | g_strdup_printf("/sys/bus/pci/devices/%04x:%02x:%02x.%01x", | |
2738 | vdev->host.domain, vdev->host.bus, | |
2739 | vdev->host.slot, vdev->host.function); | |
2740 | } | |
2741 | ||
2742 | if (stat(vdev->vbasedev.sysfsdev, &st) < 0) { | |
1a22aca1 | 2743 | error_setg_errno(errp, errno, "no such host device"); |
c3b8e3e0 | 2744 | error_prepend(errp, VFIO_MSG_PREFIX, vdev->vbasedev.sysfsdev); |
1a22aca1 | 2745 | return; |
65501a74 AW |
2746 | } |
2747 | ||
f045a010 JF |
2748 | if (!pdev->failover_pair_id) { |
2749 | error_setg(&vdev->migration_blocker, | |
2750 | "VFIO device doesn't support migration"); | |
2751 | ret = migrate_add_blocker(vdev->migration_blocker, &err); | |
ed92369a | 2752 | if (ret) { |
f045a010 JF |
2753 | error_propagate(errp, err); |
2754 | error_free(vdev->migration_blocker); | |
1335d643 | 2755 | vdev->migration_blocker = NULL; |
f045a010 JF |
2756 | return; |
2757 | } | |
2758 | } | |
2759 | ||
3e015d81 | 2760 | vdev->vbasedev.name = g_path_get_basename(vdev->vbasedev.sysfsdev); |
b47d8efa | 2761 | vdev->vbasedev.ops = &vfio_pci_ops; |
462037c9 | 2762 | vdev->vbasedev.type = VFIO_DEVICE_TYPE_PCI; |
a2596aee | 2763 | vdev->vbasedev.dev = DEVICE(vdev); |
462037c9 | 2764 | |
7df9381b AW |
2765 | tmp = g_strdup_printf("%s/iommu_group", vdev->vbasedev.sysfsdev); |
2766 | len = readlink(tmp, group_path, sizeof(group_path)); | |
2767 | g_free(tmp); | |
65501a74 | 2768 | |
7df9381b | 2769 | if (len <= 0 || len >= sizeof(group_path)) { |
1a22aca1 EA |
2770 | error_setg_errno(errp, len < 0 ? errno : ENAMETOOLONG, |
2771 | "no iommu_group found"); | |
426ec904 | 2772 | goto error; |
65501a74 AW |
2773 | } |
2774 | ||
7df9381b | 2775 | group_path[len] = 0; |
65501a74 | 2776 | |
7df9381b | 2777 | group_name = basename(group_path); |
65501a74 | 2778 | if (sscanf(group_name, "%d", &groupid) != 1) { |
1a22aca1 | 2779 | error_setg_errno(errp, errno, "failed to read %s", group_path); |
426ec904 | 2780 | goto error; |
65501a74 AW |
2781 | } |
2782 | ||
1a22aca1 | 2783 | trace_vfio_realize(vdev->vbasedev.name, groupid); |
65501a74 | 2784 | |
1a22aca1 | 2785 | group = vfio_get_group(groupid, pci_device_iommu_address_space(pdev), errp); |
65501a74 | 2786 | if (!group) { |
426ec904 | 2787 | goto error; |
65501a74 AW |
2788 | } |
2789 | ||
b47d8efa EA |
2790 | QLIST_FOREACH(vbasedev_iter, &group->device_list, next) { |
2791 | if (strcmp(vbasedev_iter->name, vdev->vbasedev.name) == 0) { | |
1a22aca1 | 2792 | error_setg(errp, "device is already attached"); |
65501a74 | 2793 | vfio_put_group(group); |
426ec904 | 2794 | goto error; |
65501a74 AW |
2795 | } |
2796 | } | |
2797 | ||
238e9172 AW |
2798 | /* |
2799 | * Mediated devices *might* operate compatibly with memory ballooning, but | |
2800 | * we cannot know for certain, it depends on whether the mdev vendor driver | |
2801 | * stays in sync with the active working set of the guest driver. Prevent | |
2802 | * the x-balloon-allowed option unless this is minimally an mdev device. | |
2803 | */ | |
2804 | tmp = g_strdup_printf("%s/subsystem", vdev->vbasedev.sysfsdev); | |
2805 | subsys = realpath(tmp, NULL); | |
2806 | g_free(tmp); | |
a1c0f886 | 2807 | is_mdev = subsys && (strcmp(subsys, "/sys/bus/mdev") == 0); |
238e9172 AW |
2808 | free(subsys); |
2809 | ||
2810 | trace_vfio_mdev(vdev->vbasedev.name, is_mdev); | |
2811 | ||
2812 | if (vdev->vbasedev.balloon_allowed && !is_mdev) { | |
2813 | error_setg(errp, "x-balloon-allowed only potentially compatible " | |
2814 | "with mdev devices"); | |
2815 | vfio_put_group(group); | |
2816 | goto error; | |
2817 | } | |
2818 | ||
1a22aca1 | 2819 | ret = vfio_get_device(group, vdev->vbasedev.name, &vdev->vbasedev, errp); |
65501a74 | 2820 | if (ret) { |
65501a74 | 2821 | vfio_put_group(group); |
426ec904 | 2822 | goto error; |
65501a74 AW |
2823 | } |
2824 | ||
e04cff9d EA |
2825 | vfio_populate_device(vdev, &err); |
2826 | if (err) { | |
2827 | error_propagate(errp, err); | |
2312d907 | 2828 | goto error; |
217e9fdc PB |
2829 | } |
2830 | ||
65501a74 | 2831 | /* Get a copy of config space */ |
5546a621 | 2832 | ret = pread(vdev->vbasedev.fd, vdev->pdev.config, |
65501a74 AW |
2833 | MIN(pci_config_size(&vdev->pdev), vdev->config_size), |
2834 | vdev->config_offset); | |
2835 | if (ret < (int)MIN(pci_config_size(&vdev->pdev), vdev->config_size)) { | |
2836 | ret = ret < 0 ? -errno : -EFAULT; | |
1a22aca1 | 2837 | error_setg_errno(errp, -ret, "failed to read device config space"); |
426ec904 | 2838 | goto error; |
65501a74 AW |
2839 | } |
2840 | ||
4b5d5e87 AW |
2841 | /* vfio emulates a lot for us, but some bits need extra love */ |
2842 | vdev->emulated_config_bits = g_malloc0(vdev->config_size); | |
2843 | ||
2844 | /* QEMU can choose to expose the ROM or not */ | |
2845 | memset(vdev->emulated_config_bits + PCI_ROM_ADDRESS, 0xff, 4); | |
04f336b0 AW |
2846 | /* QEMU can also add or extend BARs */ |
2847 | memset(vdev->emulated_config_bits + PCI_BASE_ADDRESS_0, 0xff, 6 * 4); | |
4b5d5e87 | 2848 | |
89dcccc5 AW |
2849 | /* |
2850 | * The PCI spec reserves vendor ID 0xffff as an invalid value. The | |
2851 | * device ID is managed by the vendor and need only be a 16-bit value. | |
2852 | * Allow any 16-bit value for subsystem so they can be hidden or changed. | |
2853 | */ | |
2854 | if (vdev->vendor_id != PCI_ANY_ID) { | |
2855 | if (vdev->vendor_id >= 0xffff) { | |
1a22aca1 | 2856 | error_setg(errp, "invalid PCI vendor ID provided"); |
426ec904 | 2857 | goto error; |
89dcccc5 AW |
2858 | } |
2859 | vfio_add_emulated_word(vdev, PCI_VENDOR_ID, vdev->vendor_id, ~0); | |
2860 | trace_vfio_pci_emulated_vendor_id(vdev->vbasedev.name, vdev->vendor_id); | |
2861 | } else { | |
2862 | vdev->vendor_id = pci_get_word(pdev->config + PCI_VENDOR_ID); | |
2863 | } | |
2864 | ||
2865 | if (vdev->device_id != PCI_ANY_ID) { | |
2866 | if (vdev->device_id > 0xffff) { | |
1a22aca1 | 2867 | error_setg(errp, "invalid PCI device ID provided"); |
426ec904 | 2868 | goto error; |
89dcccc5 AW |
2869 | } |
2870 | vfio_add_emulated_word(vdev, PCI_DEVICE_ID, vdev->device_id, ~0); | |
2871 | trace_vfio_pci_emulated_device_id(vdev->vbasedev.name, vdev->device_id); | |
2872 | } else { | |
2873 | vdev->device_id = pci_get_word(pdev->config + PCI_DEVICE_ID); | |
2874 | } | |
2875 | ||
2876 | if (vdev->sub_vendor_id != PCI_ANY_ID) { | |
2877 | if (vdev->sub_vendor_id > 0xffff) { | |
1a22aca1 | 2878 | error_setg(errp, "invalid PCI subsystem vendor ID provided"); |
426ec904 | 2879 | goto error; |
89dcccc5 AW |
2880 | } |
2881 | vfio_add_emulated_word(vdev, PCI_SUBSYSTEM_VENDOR_ID, | |
2882 | vdev->sub_vendor_id, ~0); | |
2883 | trace_vfio_pci_emulated_sub_vendor_id(vdev->vbasedev.name, | |
2884 | vdev->sub_vendor_id); | |
2885 | } | |
2886 | ||
2887 | if (vdev->sub_device_id != PCI_ANY_ID) { | |
2888 | if (vdev->sub_device_id > 0xffff) { | |
1a22aca1 | 2889 | error_setg(errp, "invalid PCI subsystem device ID provided"); |
426ec904 | 2890 | goto error; |
89dcccc5 AW |
2891 | } |
2892 | vfio_add_emulated_word(vdev, PCI_SUBSYSTEM_ID, vdev->sub_device_id, ~0); | |
2893 | trace_vfio_pci_emulated_sub_device_id(vdev->vbasedev.name, | |
2894 | vdev->sub_device_id); | |
2895 | } | |
ff635e37 | 2896 | |
4b5d5e87 AW |
2897 | /* QEMU can change multi-function devices to single function, or reverse */ |
2898 | vdev->emulated_config_bits[PCI_HEADER_TYPE] = | |
2899 | PCI_HEADER_TYPE_MULTI_FUNCTION; | |
2900 | ||
187d6232 AW |
2901 | /* Restore or clear multifunction, this is always controlled by QEMU */ |
2902 | if (vdev->pdev.cap_present & QEMU_PCI_CAP_MULTIFUNCTION) { | |
2903 | vdev->pdev.config[PCI_HEADER_TYPE] |= PCI_HEADER_TYPE_MULTI_FUNCTION; | |
2904 | } else { | |
2905 | vdev->pdev.config[PCI_HEADER_TYPE] &= ~PCI_HEADER_TYPE_MULTI_FUNCTION; | |
2906 | } | |
2907 | ||
65501a74 AW |
2908 | /* |
2909 | * Clear host resource mapping info. If we choose not to register a | |
2910 | * BAR, such as might be the case with the option ROM, we can get | |
2911 | * confusing, unwritable, residual addresses from the host here. | |
2912 | */ | |
2913 | memset(&vdev->pdev.config[PCI_BASE_ADDRESS_0], 0, 24); | |
2914 | memset(&vdev->pdev.config[PCI_ROM_ADDRESS], 0, 4); | |
2915 | ||
6f864e6e | 2916 | vfio_pci_size_rom(vdev); |
65501a74 | 2917 | |
89d5202e AW |
2918 | vfio_bars_prepare(vdev); |
2919 | ||
ec3bcf42 EA |
2920 | vfio_msix_early_setup(vdev, &err); |
2921 | if (err) { | |
2922 | error_propagate(errp, err); | |
008d0e2d | 2923 | goto error; |
65501a74 AW |
2924 | } |
2925 | ||
3a286732 | 2926 | vfio_bars_register(vdev); |
65501a74 | 2927 | |
1a22aca1 | 2928 | ret = vfio_add_capabilities(vdev, errp); |
65501a74 AW |
2929 | if (ret) { |
2930 | goto out_teardown; | |
2931 | } | |
2932 | ||
182bca45 AW |
2933 | if (vdev->vga) { |
2934 | vfio_vga_quirk_setup(vdev); | |
2935 | } | |
2936 | ||
581406e0 AW |
2937 | for (i = 0; i < PCI_ROM_SLOT; i++) { |
2938 | vfio_bar_quirk_setup(vdev, i); | |
2939 | } | |
2940 | ||
6ced0bba AW |
2941 | if (!vdev->igd_opregion && |
2942 | vdev->features & VFIO_FEATURE_ENABLE_IGD_OPREGION) { | |
2943 | struct vfio_region_info *opregion; | |
2944 | ||
2945 | if (vdev->pdev.qdev.hotplugged) { | |
1a22aca1 | 2946 | error_setg(errp, |
426ec904 EA |
2947 | "cannot support IGD OpRegion feature on hotplugged " |
2948 | "device"); | |
6ced0bba AW |
2949 | goto out_teardown; |
2950 | } | |
2951 | ||
2952 | ret = vfio_get_dev_region_info(&vdev->vbasedev, | |
2953 | VFIO_REGION_TYPE_PCI_VENDOR_TYPE | PCI_VENDOR_ID_INTEL, | |
2954 | VFIO_REGION_SUBTYPE_INTEL_IGD_OPREGION, &opregion); | |
2955 | if (ret) { | |
1a22aca1 | 2956 | error_setg_errno(errp, -ret, |
426ec904 | 2957 | "does not support requested IGD OpRegion feature"); |
6ced0bba AW |
2958 | goto out_teardown; |
2959 | } | |
2960 | ||
1a22aca1 | 2961 | ret = vfio_pci_igd_opregion_init(vdev, opregion, errp); |
6ced0bba AW |
2962 | g_free(opregion); |
2963 | if (ret) { | |
6ced0bba AW |
2964 | goto out_teardown; |
2965 | } | |
2966 | } | |
2967 | ||
4b5d5e87 AW |
2968 | /* QEMU emulates all of MSI & MSIX */ |
2969 | if (pdev->cap_present & QEMU_PCI_CAP_MSIX) { | |
2970 | memset(vdev->emulated_config_bits + pdev->msix_cap, 0xff, | |
2971 | MSIX_CAP_LENGTH); | |
2972 | } | |
2973 | ||
2974 | if (pdev->cap_present & QEMU_PCI_CAP_MSI) { | |
2975 | memset(vdev->emulated_config_bits + pdev->msi_cap, 0xff, | |
2976 | vdev->msi_cap_size); | |
2977 | } | |
2978 | ||
65501a74 | 2979 | if (vfio_pci_read_config(&vdev->pdev, PCI_INTERRUPT_PIN, 1)) { |
bc72ad67 | 2980 | vdev->intx.mmap_timer = timer_new_ms(QEMU_CLOCK_VIRTUAL, |
ea486926 | 2981 | vfio_intx_mmap_enable, vdev); |
ad54dbd8 DG |
2982 | pci_device_set_intx_routing_notifier(&vdev->pdev, |
2983 | vfio_intx_routing_notifier); | |
c5478fea DG |
2984 | vdev->irqchip_change_notifier.notify = vfio_irqchip_change; |
2985 | kvm_irqchip_add_change_notifier(&vdev->irqchip_change_notifier); | |
1a22aca1 | 2986 | ret = vfio_intx_enable(vdev, errp); |
65501a74 | 2987 | if (ret) { |
c5478fea | 2988 | goto out_deregister; |
65501a74 AW |
2989 | } |
2990 | } | |
2991 | ||
a9994687 GH |
2992 | if (vdev->display != ON_OFF_AUTO_OFF) { |
2993 | ret = vfio_display_probe(vdev, errp); | |
2994 | if (ret) { | |
c5478fea | 2995 | goto out_deregister; |
a9994687 GH |
2996 | } |
2997 | } | |
b290659f GH |
2998 | if (vdev->enable_ramfb && vdev->dpy == NULL) { |
2999 | error_setg(errp, "ramfb=on requires display=on"); | |
c5478fea | 3000 | goto out_deregister; |
b290659f | 3001 | } |
c62a0c7c GH |
3002 | if (vdev->display_xres || vdev->display_yres) { |
3003 | if (vdev->dpy == NULL) { | |
3004 | error_setg(errp, "xres and yres properties require display=on"); | |
c5478fea | 3005 | goto out_deregister; |
c62a0c7c GH |
3006 | } |
3007 | if (vdev->dpy->edid_regs == NULL) { | |
3008 | error_setg(errp, "xres and yres properties need edid support"); | |
c5478fea | 3009 | goto out_deregister; |
c62a0c7c GH |
3010 | } |
3011 | } | |
a9994687 | 3012 | |
ec132efa AK |
3013 | if (vdev->vendor_id == PCI_VENDOR_ID_NVIDIA) { |
3014 | ret = vfio_pci_nvidia_v100_ram_init(vdev, errp); | |
3015 | if (ret && ret != -ENODEV) { | |
3016 | error_report("Failed to setup NVIDIA V100 GPU RAM"); | |
3017 | } | |
3018 | } | |
3019 | ||
3020 | if (vdev->vendor_id == PCI_VENDOR_ID_IBM) { | |
3021 | ret = vfio_pci_nvlink2_init(vdev, errp); | |
3022 | if (ret && ret != -ENODEV) { | |
3023 | error_report("Failed to setup NVlink2 bridge"); | |
3024 | } | |
3025 | } | |
3026 | ||
7b4b0e9e | 3027 | vfio_register_err_notifier(vdev); |
47cbe50c | 3028 | vfio_register_req_notifier(vdev); |
c9c50009 | 3029 | vfio_setup_resetfn_quirk(vdev); |
c29029dd | 3030 | |
1a22aca1 | 3031 | return; |
65501a74 | 3032 | |
c5478fea | 3033 | out_deregister: |
65501a74 | 3034 | pci_device_set_intx_routing_notifier(&vdev->pdev, NULL); |
c5478fea DG |
3035 | kvm_irqchip_remove_change_notifier(&vdev->irqchip_change_notifier); |
3036 | out_teardown: | |
65501a74 | 3037 | vfio_teardown_msi(vdev); |
2d82f8a3 | 3038 | vfio_bars_exit(vdev); |
426ec904 | 3039 | error: |
c3b8e3e0 | 3040 | error_prepend(errp, VFIO_MSG_PREFIX, vdev->vbasedev.name); |
f045a010 JF |
3041 | if (vdev->migration_blocker) { |
3042 | migrate_del_blocker(vdev->migration_blocker); | |
3043 | error_free(vdev->migration_blocker); | |
1335d643 | 3044 | vdev->migration_blocker = NULL; |
f045a010 | 3045 | } |
77a10d04 PB |
3046 | } |
3047 | ||
3048 | static void vfio_instance_finalize(Object *obj) | |
3049 | { | |
2683ccd5 | 3050 | VFIOPCIDevice *vdev = PCI_VFIO(obj); |
77a10d04 PB |
3051 | VFIOGroup *group = vdev->vbasedev.group; |
3052 | ||
a9994687 | 3053 | vfio_display_finalize(vdev); |
2d82f8a3 | 3054 | vfio_bars_finalize(vdev); |
4b5d5e87 | 3055 | g_free(vdev->emulated_config_bits); |
77a10d04 | 3056 | g_free(vdev->rom); |
f045a010 JF |
3057 | if (vdev->migration_blocker) { |
3058 | migrate_del_blocker(vdev->migration_blocker); | |
3059 | error_free(vdev->migration_blocker); | |
3060 | } | |
c4c45e94 AW |
3061 | /* |
3062 | * XXX Leaking igd_opregion is not an oversight, we can't remove the | |
3063 | * fw_cfg entry therefore leaking this allocation seems like the safest | |
3064 | * option. | |
3065 | * | |
3066 | * g_free(vdev->igd_opregion); | |
3067 | */ | |
65501a74 AW |
3068 | vfio_put_device(vdev); |
3069 | vfio_put_group(group); | |
65501a74 AW |
3070 | } |
3071 | ||
3072 | static void vfio_exitfn(PCIDevice *pdev) | |
3073 | { | |
2683ccd5 | 3074 | VFIOPCIDevice *vdev = PCI_VFIO(pdev); |
65501a74 | 3075 | |
47cbe50c | 3076 | vfio_unregister_req_notifier(vdev); |
7b4b0e9e | 3077 | vfio_unregister_err_notifier(vdev); |
65501a74 | 3078 | pci_device_set_intx_routing_notifier(&vdev->pdev, NULL); |
0446f812 PX |
3079 | if (vdev->irqchip_change_notifier.notify) { |
3080 | kvm_irqchip_remove_change_notifier(&vdev->irqchip_change_notifier); | |
3081 | } | |
65501a74 | 3082 | vfio_disable_interrupts(vdev); |
ea486926 | 3083 | if (vdev->intx.mmap_timer) { |
bc72ad67 | 3084 | timer_free(vdev->intx.mmap_timer); |
ea486926 | 3085 | } |
65501a74 | 3086 | vfio_teardown_msi(vdev); |
2d82f8a3 | 3087 | vfio_bars_exit(vdev); |
65501a74 AW |
3088 | } |
3089 | ||
3090 | static void vfio_pci_reset(DeviceState *dev) | |
3091 | { | |
2683ccd5 | 3092 | VFIOPCIDevice *vdev = PCI_VFIO(dev); |
65501a74 | 3093 | |
df92ee44 | 3094 | trace_vfio_pci_reset(vdev->vbasedev.name); |
5834a83f | 3095 | |
f16f39c3 | 3096 | vfio_pci_pre_reset(vdev); |
ba661818 | 3097 | |
8983e3e3 TZ |
3098 | if (vdev->display != ON_OFF_AUTO_OFF) { |
3099 | vfio_display_reset(vdev); | |
3100 | } | |
3101 | ||
5655f931 AW |
3102 | if (vdev->resetfn && !vdev->resetfn(vdev)) { |
3103 | goto post_reset; | |
3104 | } | |
3105 | ||
b47d8efa EA |
3106 | if (vdev->vbasedev.reset_works && |
3107 | (vdev->has_flr || !vdev->has_pm_reset) && | |
5546a621 | 3108 | !ioctl(vdev->vbasedev.fd, VFIO_DEVICE_RESET)) { |
df92ee44 | 3109 | trace_vfio_pci_reset_flr(vdev->vbasedev.name); |
f16f39c3 | 3110 | goto post_reset; |
ba661818 AW |
3111 | } |
3112 | ||
f16f39c3 AW |
3113 | /* See if we can do our own bus reset */ |
3114 | if (!vfio_pci_hot_reset_one(vdev)) { | |
3115 | goto post_reset; | |
3116 | } | |
5834a83f | 3117 | |
f16f39c3 | 3118 | /* If nothing else works and the device supports PM reset, use it */ |
b47d8efa | 3119 | if (vdev->vbasedev.reset_works && vdev->has_pm_reset && |
5546a621 | 3120 | !ioctl(vdev->vbasedev.fd, VFIO_DEVICE_RESET)) { |
df92ee44 | 3121 | trace_vfio_pci_reset_pm(vdev->vbasedev.name); |
f16f39c3 | 3122 | goto post_reset; |
65501a74 | 3123 | } |
5834a83f | 3124 | |
f16f39c3 AW |
3125 | post_reset: |
3126 | vfio_pci_post_reset(vdev); | |
65501a74 AW |
3127 | } |
3128 | ||
abc5b3bf GA |
3129 | static void vfio_instance_init(Object *obj) |
3130 | { | |
3131 | PCIDevice *pci_dev = PCI_DEVICE(obj); | |
2683ccd5 | 3132 | VFIOPCIDevice *vdev = PCI_VFIO(obj); |
abc5b3bf GA |
3133 | |
3134 | device_add_bootindex_property(obj, &vdev->bootindex, | |
3135 | "bootindex", NULL, | |
40c2281c | 3136 | &pci_dev->qdev); |
4a946268 EA |
3137 | vdev->host.domain = ~0U; |
3138 | vdev->host.bus = ~0U; | |
3139 | vdev->host.slot = ~0U; | |
3140 | vdev->host.function = ~0U; | |
dfbee78d AW |
3141 | |
3142 | vdev->nv_gpudirect_clique = 0xFF; | |
d61a363d YB |
3143 | |
3144 | /* QEMU_PCI_CAP_EXPRESS initialization does not depend on QEMU command | |
3145 | * line, therefore, no need to wait to realize like other devices */ | |
3146 | pci_dev->cap_present |= QEMU_PCI_CAP_EXPRESS; | |
abc5b3bf GA |
3147 | } |
3148 | ||
65501a74 | 3149 | static Property vfio_pci_dev_properties[] = { |
9ee27d73 | 3150 | DEFINE_PROP_PCI_HOST_DEVADDR("host", VFIOPCIDevice, host), |
7df9381b | 3151 | DEFINE_PROP_STRING("sysfsdev", VFIOPCIDevice, vbasedev.sysfsdev), |
a9994687 | 3152 | DEFINE_PROP_ON_OFF_AUTO("display", VFIOPCIDevice, |
8151a9c5 | 3153 | display, ON_OFF_AUTO_OFF), |
c62a0c7c GH |
3154 | DEFINE_PROP_UINT32("xres", VFIOPCIDevice, display_xres, 0), |
3155 | DEFINE_PROP_UINT32("yres", VFIOPCIDevice, display_yres, 0), | |
9ee27d73 | 3156 | DEFINE_PROP_UINT32("x-intx-mmap-timeout-ms", VFIOPCIDevice, |
ea486926 | 3157 | intx.mmap_timeout, 1100), |
9ee27d73 | 3158 | DEFINE_PROP_BIT("x-vga", VFIOPCIDevice, features, |
f15689c7 | 3159 | VFIO_FEATURE_ENABLE_VGA_BIT, false), |
47cbe50c AW |
3160 | DEFINE_PROP_BIT("x-req", VFIOPCIDevice, features, |
3161 | VFIO_FEATURE_ENABLE_REQ_BIT, true), | |
6ced0bba AW |
3162 | DEFINE_PROP_BIT("x-igd-opregion", VFIOPCIDevice, features, |
3163 | VFIO_FEATURE_ENABLE_IGD_OPREGION_BIT, false), | |
5e15d79b | 3164 | DEFINE_PROP_BOOL("x-no-mmap", VFIOPCIDevice, vbasedev.no_mmap, false), |
238e9172 AW |
3165 | DEFINE_PROP_BOOL("x-balloon-allowed", VFIOPCIDevice, |
3166 | vbasedev.balloon_allowed, false), | |
46746dba AW |
3167 | DEFINE_PROP_BOOL("x-no-kvm-intx", VFIOPCIDevice, no_kvm_intx, false), |
3168 | DEFINE_PROP_BOOL("x-no-kvm-msi", VFIOPCIDevice, no_kvm_msi, false), | |
3169 | DEFINE_PROP_BOOL("x-no-kvm-msix", VFIOPCIDevice, no_kvm_msix, false), | |
db32d0f4 AW |
3170 | DEFINE_PROP_BOOL("x-no-geforce-quirks", VFIOPCIDevice, |
3171 | no_geforce_quirks, false), | |
c958c51d AW |
3172 | DEFINE_PROP_BOOL("x-no-kvm-ioeventfd", VFIOPCIDevice, no_kvm_ioeventfd, |
3173 | false), | |
2b1dbd0d AW |
3174 | DEFINE_PROP_BOOL("x-no-vfio-ioeventfd", VFIOPCIDevice, no_vfio_ioeventfd, |
3175 | false), | |
89dcccc5 AW |
3176 | DEFINE_PROP_UINT32("x-pci-vendor-id", VFIOPCIDevice, vendor_id, PCI_ANY_ID), |
3177 | DEFINE_PROP_UINT32("x-pci-device-id", VFIOPCIDevice, device_id, PCI_ANY_ID), | |
3178 | DEFINE_PROP_UINT32("x-pci-sub-vendor-id", VFIOPCIDevice, | |
3179 | sub_vendor_id, PCI_ANY_ID), | |
3180 | DEFINE_PROP_UINT32("x-pci-sub-device-id", VFIOPCIDevice, | |
3181 | sub_device_id, PCI_ANY_ID), | |
c4c45e94 | 3182 | DEFINE_PROP_UINT32("x-igd-gms", VFIOPCIDevice, igd_gms, 0), |
dfbee78d AW |
3183 | DEFINE_PROP_UNSIGNED_NODEFAULT("x-nv-gpudirect-clique", VFIOPCIDevice, |
3184 | nv_gpudirect_clique, | |
3185 | qdev_prop_nv_gpudirect_clique, uint8_t), | |
89d5202e AW |
3186 | DEFINE_PROP_OFF_AUTO_PCIBAR("x-msix-relocation", VFIOPCIDevice, msix_relo, |
3187 | OFF_AUTOPCIBAR_OFF), | |
65501a74 AW |
3188 | /* |
3189 | * TODO - support passed fds... is this necessary? | |
9ee27d73 EA |
3190 | * DEFINE_PROP_STRING("vfiofd", VFIOPCIDevice, vfiofd_name), |
3191 | * DEFINE_PROP_STRING("vfiogroupfd, VFIOPCIDevice, vfiogroupfd_name), | |
65501a74 AW |
3192 | */ |
3193 | DEFINE_PROP_END_OF_LIST(), | |
3194 | }; | |
3195 | ||
65501a74 AW |
3196 | static void vfio_pci_dev_class_init(ObjectClass *klass, void *data) |
3197 | { | |
3198 | DeviceClass *dc = DEVICE_CLASS(klass); | |
3199 | PCIDeviceClass *pdc = PCI_DEVICE_CLASS(klass); | |
3200 | ||
3201 | dc->reset = vfio_pci_reset; | |
4f67d30b | 3202 | device_class_set_props(dc, vfio_pci_dev_properties); |
d9f0e638 | 3203 | dc->desc = "VFIO-based PCI device assignment"; |
125ee0ed | 3204 | set_bit(DEVICE_CATEGORY_MISC, dc->categories); |
1a22aca1 | 3205 | pdc->realize = vfio_realize; |
65501a74 AW |
3206 | pdc->exit = vfio_exitfn; |
3207 | pdc->config_read = vfio_pci_read_config; | |
3208 | pdc->config_write = vfio_pci_write_config; | |
3209 | } | |
3210 | ||
3211 | static const TypeInfo vfio_pci_dev_info = { | |
2683ccd5 | 3212 | .name = TYPE_VFIO_PCI, |
65501a74 | 3213 | .parent = TYPE_PCI_DEVICE, |
9ee27d73 | 3214 | .instance_size = sizeof(VFIOPCIDevice), |
65501a74 | 3215 | .class_init = vfio_pci_dev_class_init, |
abc5b3bf | 3216 | .instance_init = vfio_instance_init, |
77a10d04 | 3217 | .instance_finalize = vfio_instance_finalize, |
a5fa336f EH |
3218 | .interfaces = (InterfaceInfo[]) { |
3219 | { INTERFACE_PCIE_DEVICE }, | |
3220 | { INTERFACE_CONVENTIONAL_PCI_DEVICE }, | |
3221 | { } | |
3222 | }, | |
65501a74 AW |
3223 | }; |
3224 | ||
b290659f GH |
3225 | static Property vfio_pci_dev_nohotplug_properties[] = { |
3226 | DEFINE_PROP_BOOL("ramfb", VFIOPCIDevice, enable_ramfb, false), | |
3227 | DEFINE_PROP_END_OF_LIST(), | |
3228 | }; | |
3229 | ||
3230 | static void vfio_pci_nohotplug_dev_class_init(ObjectClass *klass, void *data) | |
3231 | { | |
3232 | DeviceClass *dc = DEVICE_CLASS(klass); | |
3233 | ||
4f67d30b | 3234 | device_class_set_props(dc, vfio_pci_dev_nohotplug_properties); |
b290659f GH |
3235 | dc->hotpluggable = false; |
3236 | } | |
3237 | ||
3238 | static const TypeInfo vfio_pci_nohotplug_dev_info = { | |
f75ca627 | 3239 | .name = TYPE_VFIO_PCI_NOHOTPLUG, |
0c0c8f8a | 3240 | .parent = TYPE_VFIO_PCI, |
b290659f GH |
3241 | .instance_size = sizeof(VFIOPCIDevice), |
3242 | .class_init = vfio_pci_nohotplug_dev_class_init, | |
3243 | }; | |
3244 | ||
65501a74 AW |
3245 | static void register_vfio_pci_dev_type(void) |
3246 | { | |
3247 | type_register_static(&vfio_pci_dev_info); | |
b290659f | 3248 | type_register_static(&vfio_pci_nohotplug_dev_info); |
65501a74 AW |
3249 | } |
3250 | ||
3251 | type_init(register_vfio_pci_dev_type) |