2 * vfio based device assignment support
4 * Copyright Red Hat, Inc. 2012
7 * Alex Williamson <alex.williamson@redhat.com>
9 * This work is licensed under the terms of the GNU GPL, version 2. See
10 * the COPYING file in the top-level directory.
12 * Based on qemu-kvm device-assignment:
13 * Adapted for KVM by Qumranet.
14 * Copyright (c) 2007, Neocleus, Alex Novik (alex@neocleus.com)
15 * Copyright (c) 2007, Neocleus, Guy Zana (guy@neocleus.com)
16 * Copyright (C) 2008, Qumranet, Amit Shah (amit.shah@qumranet.com)
17 * Copyright (C) 2008, Red Hat, Amit Shah (amit.shah@redhat.com)
18 * Copyright (C) 2008, IBM, Muli Ben-Yehuda (muli@il.ibm.com)
21 #include <linux/vfio.h>
22 #include <sys/ioctl.h>
25 #include <sys/types.h>
29 #include "hw/pci/msi.h"
30 #include "hw/pci/msix.h"
31 #include "qemu/error-report.h"
32 #include "qemu/range.h"
33 #include "sysemu/kvm.h"
34 #include "sysemu/sysemu.h"
38 #define MSIX_CAP_LENGTH 12
40 static void vfio_disable_interrupts(VFIOPCIDevice
*vdev
);
41 static void vfio_mmap_set_enabled(VFIOPCIDevice
*vdev
, bool enabled
);
44 * Disabling BAR mmaping can be slow, but toggling it around INTx can
45 * also be a huge overhead. We try to get the best of both worlds by
46 * waiting until an interrupt to disable mmaps (subsequent transitions
47 * to the same state are effectively no overhead). If the interrupt has
48 * been serviced and the time gap is long enough, we re-enable mmaps for
49 * performance. This works well for things like graphics cards, which
50 * may not use their interrupt at all and are penalized to an unusable
51 * level by read/write BAR traps. Other devices, like NICs, have more
52 * regular interrupts and see much better latency by staying in non-mmap
53 * mode. We therefore set the default mmap_timeout such that a ping
54 * is just enough to keep the mmap disabled. Users can experiment with
55 * other options with the x-intx-mmap-timeout-ms parameter (a value of
56 * zero disables the timer).
58 static void vfio_intx_mmap_enable(void *opaque
)
60 VFIOPCIDevice
*vdev
= opaque
;
62 if (vdev
->intx
.pending
) {
63 timer_mod(vdev
->intx
.mmap_timer
,
64 qemu_clock_get_ms(QEMU_CLOCK_VIRTUAL
) + vdev
->intx
.mmap_timeout
);
68 vfio_mmap_set_enabled(vdev
, true);
71 static void vfio_intx_interrupt(void *opaque
)
73 VFIOPCIDevice
*vdev
= opaque
;
75 if (!event_notifier_test_and_clear(&vdev
->intx
.interrupt
)) {
79 trace_vfio_intx_interrupt(vdev
->vbasedev
.name
, 'A' + vdev
->intx
.pin
);
81 vdev
->intx
.pending
= true;
82 pci_irq_assert(&vdev
->pdev
);
83 vfio_mmap_set_enabled(vdev
, false);
84 if (vdev
->intx
.mmap_timeout
) {
85 timer_mod(vdev
->intx
.mmap_timer
,
86 qemu_clock_get_ms(QEMU_CLOCK_VIRTUAL
) + vdev
->intx
.mmap_timeout
);
90 static void vfio_intx_eoi(VFIODevice
*vbasedev
)
92 VFIOPCIDevice
*vdev
= container_of(vbasedev
, VFIOPCIDevice
, vbasedev
);
94 if (!vdev
->intx
.pending
) {
98 trace_vfio_intx_eoi(vbasedev
->name
);
100 vdev
->intx
.pending
= false;
101 pci_irq_deassert(&vdev
->pdev
);
102 vfio_unmask_single_irqindex(vbasedev
, VFIO_PCI_INTX_IRQ_INDEX
);
105 static void vfio_intx_enable_kvm(VFIOPCIDevice
*vdev
)
108 struct kvm_irqfd irqfd
= {
109 .fd
= event_notifier_get_fd(&vdev
->intx
.interrupt
),
110 .gsi
= vdev
->intx
.route
.irq
,
111 .flags
= KVM_IRQFD_FLAG_RESAMPLE
,
113 struct vfio_irq_set
*irq_set
;
117 if (vdev
->no_kvm_intx
|| !kvm_irqfds_enabled() ||
118 vdev
->intx
.route
.mode
!= PCI_INTX_ENABLED
||
119 !kvm_resamplefds_enabled()) {
123 /* Get to a known interrupt state */
124 qemu_set_fd_handler(irqfd
.fd
, NULL
, NULL
, vdev
);
125 vfio_mask_single_irqindex(&vdev
->vbasedev
, VFIO_PCI_INTX_IRQ_INDEX
);
126 vdev
->intx
.pending
= false;
127 pci_irq_deassert(&vdev
->pdev
);
129 /* Get an eventfd for resample/unmask */
130 if (event_notifier_init(&vdev
->intx
.unmask
, 0)) {
131 error_report("vfio: Error: event_notifier_init failed eoi");
135 /* KVM triggers it, VFIO listens for it */
136 irqfd
.resamplefd
= event_notifier_get_fd(&vdev
->intx
.unmask
);
138 if (kvm_vm_ioctl(kvm_state
, KVM_IRQFD
, &irqfd
)) {
139 error_report("vfio: Error: Failed to setup resample irqfd: %m");
143 argsz
= sizeof(*irq_set
) + sizeof(*pfd
);
145 irq_set
= g_malloc0(argsz
);
146 irq_set
->argsz
= argsz
;
147 irq_set
->flags
= VFIO_IRQ_SET_DATA_EVENTFD
| VFIO_IRQ_SET_ACTION_UNMASK
;
148 irq_set
->index
= VFIO_PCI_INTX_IRQ_INDEX
;
151 pfd
= (int32_t *)&irq_set
->data
;
153 *pfd
= irqfd
.resamplefd
;
155 ret
= ioctl(vdev
->vbasedev
.fd
, VFIO_DEVICE_SET_IRQS
, irq_set
);
158 error_report("vfio: Error: Failed to setup INTx unmask fd: %m");
163 vfio_unmask_single_irqindex(&vdev
->vbasedev
, VFIO_PCI_INTX_IRQ_INDEX
);
165 vdev
->intx
.kvm_accel
= true;
167 trace_vfio_intx_enable_kvm(vdev
->vbasedev
.name
);
172 irqfd
.flags
= KVM_IRQFD_FLAG_DEASSIGN
;
173 kvm_vm_ioctl(kvm_state
, KVM_IRQFD
, &irqfd
);
175 event_notifier_cleanup(&vdev
->intx
.unmask
);
177 qemu_set_fd_handler(irqfd
.fd
, vfio_intx_interrupt
, NULL
, vdev
);
178 vfio_unmask_single_irqindex(&vdev
->vbasedev
, VFIO_PCI_INTX_IRQ_INDEX
);
182 static void vfio_intx_disable_kvm(VFIOPCIDevice
*vdev
)
185 struct kvm_irqfd irqfd
= {
186 .fd
= event_notifier_get_fd(&vdev
->intx
.interrupt
),
187 .gsi
= vdev
->intx
.route
.irq
,
188 .flags
= KVM_IRQFD_FLAG_DEASSIGN
,
191 if (!vdev
->intx
.kvm_accel
) {
196 * Get to a known state, hardware masked, QEMU ready to accept new
197 * interrupts, QEMU IRQ de-asserted.
199 vfio_mask_single_irqindex(&vdev
->vbasedev
, VFIO_PCI_INTX_IRQ_INDEX
);
200 vdev
->intx
.pending
= false;
201 pci_irq_deassert(&vdev
->pdev
);
203 /* Tell KVM to stop listening for an INTx irqfd */
204 if (kvm_vm_ioctl(kvm_state
, KVM_IRQFD
, &irqfd
)) {
205 error_report("vfio: Error: Failed to disable INTx irqfd: %m");
208 /* We only need to close the eventfd for VFIO to cleanup the kernel side */
209 event_notifier_cleanup(&vdev
->intx
.unmask
);
211 /* QEMU starts listening for interrupt events. */
212 qemu_set_fd_handler(irqfd
.fd
, vfio_intx_interrupt
, NULL
, vdev
);
214 vdev
->intx
.kvm_accel
= false;
216 /* If we've missed an event, let it re-fire through QEMU */
217 vfio_unmask_single_irqindex(&vdev
->vbasedev
, VFIO_PCI_INTX_IRQ_INDEX
);
219 trace_vfio_intx_disable_kvm(vdev
->vbasedev
.name
);
223 static void vfio_intx_update(PCIDevice
*pdev
)
225 VFIOPCIDevice
*vdev
= DO_UPCAST(VFIOPCIDevice
, pdev
, pdev
);
228 if (vdev
->interrupt
!= VFIO_INT_INTx
) {
232 route
= pci_device_route_intx_to_irq(&vdev
->pdev
, vdev
->intx
.pin
);
234 if (!pci_intx_route_changed(&vdev
->intx
.route
, &route
)) {
235 return; /* Nothing changed */
238 trace_vfio_intx_update(vdev
->vbasedev
.name
,
239 vdev
->intx
.route
.irq
, route
.irq
);
241 vfio_intx_disable_kvm(vdev
);
243 vdev
->intx
.route
= route
;
245 if (route
.mode
!= PCI_INTX_ENABLED
) {
249 vfio_intx_enable_kvm(vdev
);
251 /* Re-enable the interrupt in cased we missed an EOI */
252 vfio_intx_eoi(&vdev
->vbasedev
);
255 static int vfio_intx_enable(VFIOPCIDevice
*vdev
)
257 uint8_t pin
= vfio_pci_read_config(&vdev
->pdev
, PCI_INTERRUPT_PIN
, 1);
259 struct vfio_irq_set
*irq_set
;
266 vfio_disable_interrupts(vdev
);
268 vdev
->intx
.pin
= pin
- 1; /* Pin A (1) -> irq[0] */
269 pci_config_set_interrupt_pin(vdev
->pdev
.config
, pin
);
273 * Only conditional to avoid generating error messages on platforms
274 * where we won't actually use the result anyway.
276 if (kvm_irqfds_enabled() && kvm_resamplefds_enabled()) {
277 vdev
->intx
.route
= pci_device_route_intx_to_irq(&vdev
->pdev
,
282 ret
= event_notifier_init(&vdev
->intx
.interrupt
, 0);
284 error_report("vfio: Error: event_notifier_init failed");
288 argsz
= sizeof(*irq_set
) + sizeof(*pfd
);
290 irq_set
= g_malloc0(argsz
);
291 irq_set
->argsz
= argsz
;
292 irq_set
->flags
= VFIO_IRQ_SET_DATA_EVENTFD
| VFIO_IRQ_SET_ACTION_TRIGGER
;
293 irq_set
->index
= VFIO_PCI_INTX_IRQ_INDEX
;
296 pfd
= (int32_t *)&irq_set
->data
;
298 *pfd
= event_notifier_get_fd(&vdev
->intx
.interrupt
);
299 qemu_set_fd_handler(*pfd
, vfio_intx_interrupt
, NULL
, vdev
);
301 ret
= ioctl(vdev
->vbasedev
.fd
, VFIO_DEVICE_SET_IRQS
, irq_set
);
304 error_report("vfio: Error: Failed to setup INTx fd: %m");
305 qemu_set_fd_handler(*pfd
, NULL
, NULL
, vdev
);
306 event_notifier_cleanup(&vdev
->intx
.interrupt
);
310 vfio_intx_enable_kvm(vdev
);
312 vdev
->interrupt
= VFIO_INT_INTx
;
314 trace_vfio_intx_enable(vdev
->vbasedev
.name
);
319 static void vfio_intx_disable(VFIOPCIDevice
*vdev
)
323 timer_del(vdev
->intx
.mmap_timer
);
324 vfio_intx_disable_kvm(vdev
);
325 vfio_disable_irqindex(&vdev
->vbasedev
, VFIO_PCI_INTX_IRQ_INDEX
);
326 vdev
->intx
.pending
= false;
327 pci_irq_deassert(&vdev
->pdev
);
328 vfio_mmap_set_enabled(vdev
, true);
330 fd
= event_notifier_get_fd(&vdev
->intx
.interrupt
);
331 qemu_set_fd_handler(fd
, NULL
, NULL
, vdev
);
332 event_notifier_cleanup(&vdev
->intx
.interrupt
);
334 vdev
->interrupt
= VFIO_INT_NONE
;
336 trace_vfio_intx_disable(vdev
->vbasedev
.name
);
342 static void vfio_msi_interrupt(void *opaque
)
344 VFIOMSIVector
*vector
= opaque
;
345 VFIOPCIDevice
*vdev
= vector
->vdev
;
346 MSIMessage (*get_msg
)(PCIDevice
*dev
, unsigned vector
);
347 void (*notify
)(PCIDevice
*dev
, unsigned vector
);
349 int nr
= vector
- vdev
->msi_vectors
;
351 if (!event_notifier_test_and_clear(&vector
->interrupt
)) {
355 if (vdev
->interrupt
== VFIO_INT_MSIX
) {
356 get_msg
= msix_get_message
;
357 notify
= msix_notify
;
358 } else if (vdev
->interrupt
== VFIO_INT_MSI
) {
359 get_msg
= msi_get_message
;
365 msg
= get_msg(&vdev
->pdev
, nr
);
366 trace_vfio_msi_interrupt(vdev
->vbasedev
.name
, nr
, msg
.address
, msg
.data
);
367 notify(&vdev
->pdev
, nr
);
370 static int vfio_enable_vectors(VFIOPCIDevice
*vdev
, bool msix
)
372 struct vfio_irq_set
*irq_set
;
373 int ret
= 0, i
, argsz
;
376 argsz
= sizeof(*irq_set
) + (vdev
->nr_vectors
* sizeof(*fds
));
378 irq_set
= g_malloc0(argsz
);
379 irq_set
->argsz
= argsz
;
380 irq_set
->flags
= VFIO_IRQ_SET_DATA_EVENTFD
| VFIO_IRQ_SET_ACTION_TRIGGER
;
381 irq_set
->index
= msix
? VFIO_PCI_MSIX_IRQ_INDEX
: VFIO_PCI_MSI_IRQ_INDEX
;
383 irq_set
->count
= vdev
->nr_vectors
;
384 fds
= (int32_t *)&irq_set
->data
;
386 for (i
= 0; i
< vdev
->nr_vectors
; i
++) {
390 * MSI vs MSI-X - The guest has direct access to MSI mask and pending
391 * bits, therefore we always use the KVM signaling path when setup.
392 * MSI-X mask and pending bits are emulated, so we want to use the
393 * KVM signaling path only when configured and unmasked.
395 if (vdev
->msi_vectors
[i
].use
) {
396 if (vdev
->msi_vectors
[i
].virq
< 0 ||
397 (msix
&& msix_is_masked(&vdev
->pdev
, i
))) {
398 fd
= event_notifier_get_fd(&vdev
->msi_vectors
[i
].interrupt
);
400 fd
= event_notifier_get_fd(&vdev
->msi_vectors
[i
].kvm_interrupt
);
407 ret
= ioctl(vdev
->vbasedev
.fd
, VFIO_DEVICE_SET_IRQS
, irq_set
);
414 static void vfio_add_kvm_msi_virq(VFIOPCIDevice
*vdev
, VFIOMSIVector
*vector
,
415 MSIMessage
*msg
, bool msix
)
419 if ((msix
&& vdev
->no_kvm_msix
) || (!msix
&& vdev
->no_kvm_msi
) || !msg
) {
423 if (event_notifier_init(&vector
->kvm_interrupt
, 0)) {
427 virq
= kvm_irqchip_add_msi_route(kvm_state
, *msg
);
429 event_notifier_cleanup(&vector
->kvm_interrupt
);
433 if (kvm_irqchip_add_irqfd_notifier_gsi(kvm_state
, &vector
->kvm_interrupt
,
435 kvm_irqchip_release_virq(kvm_state
, virq
);
436 event_notifier_cleanup(&vector
->kvm_interrupt
);
443 static void vfio_remove_kvm_msi_virq(VFIOMSIVector
*vector
)
445 kvm_irqchip_remove_irqfd_notifier_gsi(kvm_state
, &vector
->kvm_interrupt
,
447 kvm_irqchip_release_virq(kvm_state
, vector
->virq
);
449 event_notifier_cleanup(&vector
->kvm_interrupt
);
452 static void vfio_update_kvm_msi_virq(VFIOMSIVector
*vector
, MSIMessage msg
)
454 kvm_irqchip_update_msi_route(kvm_state
, vector
->virq
, msg
);
457 static int vfio_msix_vector_do_use(PCIDevice
*pdev
, unsigned int nr
,
458 MSIMessage
*msg
, IOHandler
*handler
)
460 VFIOPCIDevice
*vdev
= DO_UPCAST(VFIOPCIDevice
, pdev
, pdev
);
461 VFIOMSIVector
*vector
;
464 trace_vfio_msix_vector_do_use(vdev
->vbasedev
.name
, nr
);
466 vector
= &vdev
->msi_vectors
[nr
];
471 if (event_notifier_init(&vector
->interrupt
, 0)) {
472 error_report("vfio: Error: event_notifier_init failed");
475 msix_vector_use(pdev
, nr
);
478 qemu_set_fd_handler(event_notifier_get_fd(&vector
->interrupt
),
479 handler
, NULL
, vector
);
482 * Attempt to enable route through KVM irqchip,
483 * default to userspace handling if unavailable.
485 if (vector
->virq
>= 0) {
487 vfio_remove_kvm_msi_virq(vector
);
489 vfio_update_kvm_msi_virq(vector
, *msg
);
492 vfio_add_kvm_msi_virq(vdev
, vector
, msg
, true);
496 * We don't want to have the host allocate all possible MSI vectors
497 * for a device if they're not in use, so we shutdown and incrementally
498 * increase them as needed.
500 if (vdev
->nr_vectors
< nr
+ 1) {
501 vfio_disable_irqindex(&vdev
->vbasedev
, VFIO_PCI_MSIX_IRQ_INDEX
);
502 vdev
->nr_vectors
= nr
+ 1;
503 ret
= vfio_enable_vectors(vdev
, true);
505 error_report("vfio: failed to enable vectors, %d", ret
);
509 struct vfio_irq_set
*irq_set
;
512 argsz
= sizeof(*irq_set
) + sizeof(*pfd
);
514 irq_set
= g_malloc0(argsz
);
515 irq_set
->argsz
= argsz
;
516 irq_set
->flags
= VFIO_IRQ_SET_DATA_EVENTFD
|
517 VFIO_IRQ_SET_ACTION_TRIGGER
;
518 irq_set
->index
= VFIO_PCI_MSIX_IRQ_INDEX
;
521 pfd
= (int32_t *)&irq_set
->data
;
523 if (vector
->virq
>= 0) {
524 *pfd
= event_notifier_get_fd(&vector
->kvm_interrupt
);
526 *pfd
= event_notifier_get_fd(&vector
->interrupt
);
529 ret
= ioctl(vdev
->vbasedev
.fd
, VFIO_DEVICE_SET_IRQS
, irq_set
);
532 error_report("vfio: failed to modify vector, %d", ret
);
539 static int vfio_msix_vector_use(PCIDevice
*pdev
,
540 unsigned int nr
, MSIMessage msg
)
542 return vfio_msix_vector_do_use(pdev
, nr
, &msg
, vfio_msi_interrupt
);
545 static void vfio_msix_vector_release(PCIDevice
*pdev
, unsigned int nr
)
547 VFIOPCIDevice
*vdev
= DO_UPCAST(VFIOPCIDevice
, pdev
, pdev
);
548 VFIOMSIVector
*vector
= &vdev
->msi_vectors
[nr
];
550 trace_vfio_msix_vector_release(vdev
->vbasedev
.name
, nr
);
553 * There are still old guests that mask and unmask vectors on every
554 * interrupt. If we're using QEMU bypass with a KVM irqfd, leave all of
555 * the KVM setup in place, simply switch VFIO to use the non-bypass
556 * eventfd. We'll then fire the interrupt through QEMU and the MSI-X
557 * core will mask the interrupt and set pending bits, allowing it to
558 * be re-asserted on unmask. Nothing to do if already using QEMU mode.
560 if (vector
->virq
>= 0) {
562 struct vfio_irq_set
*irq_set
;
565 argsz
= sizeof(*irq_set
) + sizeof(*pfd
);
567 irq_set
= g_malloc0(argsz
);
568 irq_set
->argsz
= argsz
;
569 irq_set
->flags
= VFIO_IRQ_SET_DATA_EVENTFD
|
570 VFIO_IRQ_SET_ACTION_TRIGGER
;
571 irq_set
->index
= VFIO_PCI_MSIX_IRQ_INDEX
;
574 pfd
= (int32_t *)&irq_set
->data
;
576 *pfd
= event_notifier_get_fd(&vector
->interrupt
);
578 ioctl(vdev
->vbasedev
.fd
, VFIO_DEVICE_SET_IRQS
, irq_set
);
584 static void vfio_msix_enable(VFIOPCIDevice
*vdev
)
586 vfio_disable_interrupts(vdev
);
588 vdev
->msi_vectors
= g_malloc0(vdev
->msix
->entries
* sizeof(VFIOMSIVector
));
590 vdev
->interrupt
= VFIO_INT_MSIX
;
593 * Some communication channels between VF & PF or PF & fw rely on the
594 * physical state of the device and expect that enabling MSI-X from the
595 * guest enables the same on the host. When our guest is Linux, the
596 * guest driver call to pci_enable_msix() sets the enabling bit in the
597 * MSI-X capability, but leaves the vector table masked. We therefore
598 * can't rely on a vector_use callback (from request_irq() in the guest)
599 * to switch the physical device into MSI-X mode because that may come a
600 * long time after pci_enable_msix(). This code enables vector 0 with
601 * triggering to userspace, then immediately release the vector, leaving
602 * the physical device with no vectors enabled, but MSI-X enabled, just
603 * like the guest view.
605 vfio_msix_vector_do_use(&vdev
->pdev
, 0, NULL
, NULL
);
606 vfio_msix_vector_release(&vdev
->pdev
, 0);
608 if (msix_set_vector_notifiers(&vdev
->pdev
, vfio_msix_vector_use
,
609 vfio_msix_vector_release
, NULL
)) {
610 error_report("vfio: msix_set_vector_notifiers failed");
613 trace_vfio_msix_enable(vdev
->vbasedev
.name
);
616 static void vfio_msi_enable(VFIOPCIDevice
*vdev
)
620 vfio_disable_interrupts(vdev
);
622 vdev
->nr_vectors
= msi_nr_vectors_allocated(&vdev
->pdev
);
624 vdev
->msi_vectors
= g_malloc0(vdev
->nr_vectors
* sizeof(VFIOMSIVector
));
626 for (i
= 0; i
< vdev
->nr_vectors
; i
++) {
627 VFIOMSIVector
*vector
= &vdev
->msi_vectors
[i
];
628 MSIMessage msg
= msi_get_message(&vdev
->pdev
, i
);
634 if (event_notifier_init(&vector
->interrupt
, 0)) {
635 error_report("vfio: Error: event_notifier_init failed");
638 qemu_set_fd_handler(event_notifier_get_fd(&vector
->interrupt
),
639 vfio_msi_interrupt
, NULL
, vector
);
642 * Attempt to enable route through KVM irqchip,
643 * default to userspace handling if unavailable.
645 vfio_add_kvm_msi_virq(vdev
, vector
, &msg
, false);
648 /* Set interrupt type prior to possible interrupts */
649 vdev
->interrupt
= VFIO_INT_MSI
;
651 ret
= vfio_enable_vectors(vdev
, false);
654 error_report("vfio: Error: Failed to setup MSI fds: %m");
655 } else if (ret
!= vdev
->nr_vectors
) {
656 error_report("vfio: Error: Failed to enable %d "
657 "MSI vectors, retry with %d", vdev
->nr_vectors
, ret
);
660 for (i
= 0; i
< vdev
->nr_vectors
; i
++) {
661 VFIOMSIVector
*vector
= &vdev
->msi_vectors
[i
];
662 if (vector
->virq
>= 0) {
663 vfio_remove_kvm_msi_virq(vector
);
665 qemu_set_fd_handler(event_notifier_get_fd(&vector
->interrupt
),
667 event_notifier_cleanup(&vector
->interrupt
);
670 g_free(vdev
->msi_vectors
);
672 if (ret
> 0 && ret
!= vdev
->nr_vectors
) {
673 vdev
->nr_vectors
= ret
;
676 vdev
->nr_vectors
= 0;
679 * Failing to setup MSI doesn't really fall within any specification.
680 * Let's try leaving interrupts disabled and hope the guest figures
681 * out to fall back to INTx for this device.
683 error_report("vfio: Error: Failed to enable MSI");
684 vdev
->interrupt
= VFIO_INT_NONE
;
689 trace_vfio_msi_enable(vdev
->vbasedev
.name
, vdev
->nr_vectors
);
692 static void vfio_msi_disable_common(VFIOPCIDevice
*vdev
)
696 for (i
= 0; i
< vdev
->nr_vectors
; i
++) {
697 VFIOMSIVector
*vector
= &vdev
->msi_vectors
[i
];
698 if (vdev
->msi_vectors
[i
].use
) {
699 if (vector
->virq
>= 0) {
700 vfio_remove_kvm_msi_virq(vector
);
702 qemu_set_fd_handler(event_notifier_get_fd(&vector
->interrupt
),
704 event_notifier_cleanup(&vector
->interrupt
);
708 g_free(vdev
->msi_vectors
);
709 vdev
->msi_vectors
= NULL
;
710 vdev
->nr_vectors
= 0;
711 vdev
->interrupt
= VFIO_INT_NONE
;
713 vfio_intx_enable(vdev
);
716 static void vfio_msix_disable(VFIOPCIDevice
*vdev
)
720 msix_unset_vector_notifiers(&vdev
->pdev
);
723 * MSI-X will only release vectors if MSI-X is still enabled on the
724 * device, check through the rest and release it ourselves if necessary.
726 for (i
= 0; i
< vdev
->nr_vectors
; i
++) {
727 if (vdev
->msi_vectors
[i
].use
) {
728 vfio_msix_vector_release(&vdev
->pdev
, i
);
729 msix_vector_unuse(&vdev
->pdev
, i
);
733 if (vdev
->nr_vectors
) {
734 vfio_disable_irqindex(&vdev
->vbasedev
, VFIO_PCI_MSIX_IRQ_INDEX
);
737 vfio_msi_disable_common(vdev
);
739 trace_vfio_msix_disable(vdev
->vbasedev
.name
);
742 static void vfio_msi_disable(VFIOPCIDevice
*vdev
)
744 vfio_disable_irqindex(&vdev
->vbasedev
, VFIO_PCI_MSI_IRQ_INDEX
);
745 vfio_msi_disable_common(vdev
);
747 trace_vfio_msi_disable(vdev
->vbasedev
.name
);
750 static void vfio_update_msi(VFIOPCIDevice
*vdev
)
754 for (i
= 0; i
< vdev
->nr_vectors
; i
++) {
755 VFIOMSIVector
*vector
= &vdev
->msi_vectors
[i
];
758 if (!vector
->use
|| vector
->virq
< 0) {
762 msg
= msi_get_message(&vdev
->pdev
, i
);
763 vfio_update_kvm_msi_virq(vector
, msg
);
767 static void vfio_pci_load_rom(VFIOPCIDevice
*vdev
)
769 struct vfio_region_info reg_info
= {
770 .argsz
= sizeof(reg_info
),
771 .index
= VFIO_PCI_ROM_REGION_INDEX
777 if (ioctl(vdev
->vbasedev
.fd
, VFIO_DEVICE_GET_REGION_INFO
, ®_info
)) {
778 error_report("vfio: Error getting ROM info: %m");
782 trace_vfio_pci_load_rom(vdev
->vbasedev
.name
, (unsigned long)reg_info
.size
,
783 (unsigned long)reg_info
.offset
,
784 (unsigned long)reg_info
.flags
);
786 vdev
->rom_size
= size
= reg_info
.size
;
787 vdev
->rom_offset
= reg_info
.offset
;
789 if (!vdev
->rom_size
) {
790 vdev
->rom_read_failed
= true;
791 error_report("vfio-pci: Cannot read device rom at "
792 "%s", vdev
->vbasedev
.name
);
793 error_printf("Device option ROM contents are probably invalid "
794 "(check dmesg).\nSkip option ROM probe with rombar=0, "
795 "or load from file with romfile=\n");
799 vdev
->rom
= g_malloc(size
);
800 memset(vdev
->rom
, 0xff, size
);
803 bytes
= pread(vdev
->vbasedev
.fd
, vdev
->rom
+ off
,
804 size
, vdev
->rom_offset
+ off
);
807 } else if (bytes
> 0) {
811 if (errno
== EINTR
|| errno
== EAGAIN
) {
814 error_report("vfio: Error reading device ROM: %m");
820 static uint64_t vfio_rom_read(void *opaque
, hwaddr addr
, unsigned size
)
822 VFIOPCIDevice
*vdev
= opaque
;
831 /* Load the ROM lazily when the guest tries to read it */
832 if (unlikely(!vdev
->rom
&& !vdev
->rom_read_failed
)) {
833 vfio_pci_load_rom(vdev
);
836 memcpy(&val
, vdev
->rom
+ addr
,
837 (addr
< vdev
->rom_size
) ? MIN(size
, vdev
->rom_size
- addr
) : 0);
844 data
= le16_to_cpu(val
.word
);
847 data
= le32_to_cpu(val
.dword
);
850 hw_error("vfio: unsupported read size, %d bytes\n", size
);
854 trace_vfio_rom_read(vdev
->vbasedev
.name
, addr
, size
, data
);
859 static void vfio_rom_write(void *opaque
, hwaddr addr
,
860 uint64_t data
, unsigned size
)
864 static const MemoryRegionOps vfio_rom_ops
= {
865 .read
= vfio_rom_read
,
866 .write
= vfio_rom_write
,
867 .endianness
= DEVICE_LITTLE_ENDIAN
,
870 static void vfio_pci_size_rom(VFIOPCIDevice
*vdev
)
872 uint32_t orig
, size
= cpu_to_le32((uint32_t)PCI_ROM_ADDRESS_MASK
);
873 off_t offset
= vdev
->config_offset
+ PCI_ROM_ADDRESS
;
874 DeviceState
*dev
= DEVICE(vdev
);
876 int fd
= vdev
->vbasedev
.fd
;
878 if (vdev
->pdev
.romfile
|| !vdev
->pdev
.rom_bar
) {
879 /* Since pci handles romfile, just print a message and return */
880 if (vfio_blacklist_opt_rom(vdev
) && vdev
->pdev
.romfile
) {
881 error_printf("Warning : Device at %04x:%02x:%02x.%x "
882 "is known to cause system instability issues during "
883 "option rom execution. "
884 "Proceeding anyway since user specified romfile\n",
885 vdev
->host
.domain
, vdev
->host
.bus
, vdev
->host
.slot
,
886 vdev
->host
.function
);
892 * Use the same size ROM BAR as the physical device. The contents
893 * will get filled in later when the guest tries to read it.
895 if (pread(fd
, &orig
, 4, offset
) != 4 ||
896 pwrite(fd
, &size
, 4, offset
) != 4 ||
897 pread(fd
, &size
, 4, offset
) != 4 ||
898 pwrite(fd
, &orig
, 4, offset
) != 4) {
899 error_report("%s(%04x:%02x:%02x.%x) failed: %m",
900 __func__
, vdev
->host
.domain
, vdev
->host
.bus
,
901 vdev
->host
.slot
, vdev
->host
.function
);
905 size
= ~(le32_to_cpu(size
) & PCI_ROM_ADDRESS_MASK
) + 1;
911 if (vfio_blacklist_opt_rom(vdev
)) {
912 if (dev
->opts
&& qemu_opt_get(dev
->opts
, "rombar")) {
913 error_printf("Warning : Device at %04x:%02x:%02x.%x "
914 "is known to cause system instability issues during "
915 "option rom execution. "
916 "Proceeding anyway since user specified non zero value for "
918 vdev
->host
.domain
, vdev
->host
.bus
, vdev
->host
.slot
,
919 vdev
->host
.function
);
921 error_printf("Warning : Rom loading for device at "
922 "%04x:%02x:%02x.%x has been disabled due to "
923 "system instability issues. "
924 "Specify rombar=1 or romfile to force\n",
925 vdev
->host
.domain
, vdev
->host
.bus
, vdev
->host
.slot
,
926 vdev
->host
.function
);
931 trace_vfio_pci_size_rom(vdev
->vbasedev
.name
, size
);
933 snprintf(name
, sizeof(name
), "vfio[%04x:%02x:%02x.%x].rom",
934 vdev
->host
.domain
, vdev
->host
.bus
, vdev
->host
.slot
,
935 vdev
->host
.function
);
937 memory_region_init_io(&vdev
->pdev
.rom
, OBJECT(vdev
),
938 &vfio_rom_ops
, vdev
, name
, size
);
940 pci_register_bar(&vdev
->pdev
, PCI_ROM_SLOT
,
941 PCI_BASE_ADDRESS_SPACE_MEMORY
, &vdev
->pdev
.rom
);
943 vdev
->pdev
.has_rom
= true;
944 vdev
->rom_read_failed
= false;
947 void vfio_vga_write(void *opaque
, hwaddr addr
,
948 uint64_t data
, unsigned size
)
950 VFIOVGARegion
*region
= opaque
;
951 VFIOVGA
*vga
= container_of(region
, VFIOVGA
, region
[region
->nr
]);
958 off_t offset
= vga
->fd_offset
+ region
->offset
+ addr
;
965 buf
.word
= cpu_to_le16(data
);
968 buf
.dword
= cpu_to_le32(data
);
971 hw_error("vfio: unsupported write size, %d bytes", size
);
975 if (pwrite(vga
->fd
, &buf
, size
, offset
) != size
) {
976 error_report("%s(,0x%"HWADDR_PRIx
", 0x%"PRIx64
", %d) failed: %m",
977 __func__
, region
->offset
+ addr
, data
, size
);
980 trace_vfio_vga_write(region
->offset
+ addr
, data
, size
);
983 uint64_t vfio_vga_read(void *opaque
, hwaddr addr
, unsigned size
)
985 VFIOVGARegion
*region
= opaque
;
986 VFIOVGA
*vga
= container_of(region
, VFIOVGA
, region
[region
->nr
]);
994 off_t offset
= vga
->fd_offset
+ region
->offset
+ addr
;
996 if (pread(vga
->fd
, &buf
, size
, offset
) != size
) {
997 error_report("%s(,0x%"HWADDR_PRIx
", %d) failed: %m",
998 __func__
, region
->offset
+ addr
, size
);
1007 data
= le16_to_cpu(buf
.word
);
1010 data
= le32_to_cpu(buf
.dword
);
1013 hw_error("vfio: unsupported read size, %d bytes", size
);
1017 trace_vfio_vga_read(region
->offset
+ addr
, size
, data
);
1022 static const MemoryRegionOps vfio_vga_ops
= {
1023 .read
= vfio_vga_read
,
1024 .write
= vfio_vga_write
,
1025 .endianness
= DEVICE_LITTLE_ENDIAN
,
1031 uint32_t vfio_pci_read_config(PCIDevice
*pdev
, uint32_t addr
, int len
)
1033 VFIOPCIDevice
*vdev
= DO_UPCAST(VFIOPCIDevice
, pdev
, pdev
);
1034 uint32_t emu_bits
= 0, emu_val
= 0, phys_val
= 0, val
;
1036 memcpy(&emu_bits
, vdev
->emulated_config_bits
+ addr
, len
);
1037 emu_bits
= le32_to_cpu(emu_bits
);
1040 emu_val
= pci_default_read_config(pdev
, addr
, len
);
1043 if (~emu_bits
& (0xffffffffU
>> (32 - len
* 8))) {
1046 ret
= pread(vdev
->vbasedev
.fd
, &phys_val
, len
,
1047 vdev
->config_offset
+ addr
);
1049 error_report("%s(%04x:%02x:%02x.%x, 0x%x, 0x%x) failed: %m",
1050 __func__
, vdev
->host
.domain
, vdev
->host
.bus
,
1051 vdev
->host
.slot
, vdev
->host
.function
, addr
, len
);
1054 phys_val
= le32_to_cpu(phys_val
);
1057 val
= (emu_val
& emu_bits
) | (phys_val
& ~emu_bits
);
1059 trace_vfio_pci_read_config(vdev
->vbasedev
.name
, addr
, len
, val
);
1064 void vfio_pci_write_config(PCIDevice
*pdev
,
1065 uint32_t addr
, uint32_t val
, int len
)
1067 VFIOPCIDevice
*vdev
= DO_UPCAST(VFIOPCIDevice
, pdev
, pdev
);
1068 uint32_t val_le
= cpu_to_le32(val
);
1070 trace_vfio_pci_write_config(vdev
->vbasedev
.name
, addr
, val
, len
);
1072 /* Write everything to VFIO, let it filter out what we can't write */
1073 if (pwrite(vdev
->vbasedev
.fd
, &val_le
, len
, vdev
->config_offset
+ addr
)
1075 error_report("%s(%04x:%02x:%02x.%x, 0x%x, 0x%x, 0x%x) failed: %m",
1076 __func__
, vdev
->host
.domain
, vdev
->host
.bus
,
1077 vdev
->host
.slot
, vdev
->host
.function
, addr
, val
, len
);
1080 /* MSI/MSI-X Enabling/Disabling */
1081 if (pdev
->cap_present
& QEMU_PCI_CAP_MSI
&&
1082 ranges_overlap(addr
, len
, pdev
->msi_cap
, vdev
->msi_cap_size
)) {
1083 int is_enabled
, was_enabled
= msi_enabled(pdev
);
1085 pci_default_write_config(pdev
, addr
, val
, len
);
1087 is_enabled
= msi_enabled(pdev
);
1091 vfio_msi_enable(vdev
);
1095 vfio_msi_disable(vdev
);
1097 vfio_update_msi(vdev
);
1100 } else if (pdev
->cap_present
& QEMU_PCI_CAP_MSIX
&&
1101 ranges_overlap(addr
, len
, pdev
->msix_cap
, MSIX_CAP_LENGTH
)) {
1102 int is_enabled
, was_enabled
= msix_enabled(pdev
);
1104 pci_default_write_config(pdev
, addr
, val
, len
);
1106 is_enabled
= msix_enabled(pdev
);
1108 if (!was_enabled
&& is_enabled
) {
1109 vfio_msix_enable(vdev
);
1110 } else if (was_enabled
&& !is_enabled
) {
1111 vfio_msix_disable(vdev
);
1114 /* Write everything to QEMU to keep emulated bits correct */
1115 pci_default_write_config(pdev
, addr
, val
, len
);
1122 static void vfio_disable_interrupts(VFIOPCIDevice
*vdev
)
1125 * More complicated than it looks. Disabling MSI/X transitions the
1126 * device to INTx mode (if supported). Therefore we need to first
1127 * disable MSI/X and then cleanup by disabling INTx.
1129 if (vdev
->interrupt
== VFIO_INT_MSIX
) {
1130 vfio_msix_disable(vdev
);
1131 } else if (vdev
->interrupt
== VFIO_INT_MSI
) {
1132 vfio_msi_disable(vdev
);
1135 if (vdev
->interrupt
== VFIO_INT_INTx
) {
1136 vfio_intx_disable(vdev
);
1140 static int vfio_msi_setup(VFIOPCIDevice
*vdev
, int pos
)
1143 bool msi_64bit
, msi_maskbit
;
1146 if (pread(vdev
->vbasedev
.fd
, &ctrl
, sizeof(ctrl
),
1147 vdev
->config_offset
+ pos
+ PCI_CAP_FLAGS
) != sizeof(ctrl
)) {
1150 ctrl
= le16_to_cpu(ctrl
);
1152 msi_64bit
= !!(ctrl
& PCI_MSI_FLAGS_64BIT
);
1153 msi_maskbit
= !!(ctrl
& PCI_MSI_FLAGS_MASKBIT
);
1154 entries
= 1 << ((ctrl
& PCI_MSI_FLAGS_QMASK
) >> 1);
1156 trace_vfio_msi_setup(vdev
->vbasedev
.name
, pos
);
1158 ret
= msi_init(&vdev
->pdev
, pos
, entries
, msi_64bit
, msi_maskbit
);
1160 if (ret
== -ENOTSUP
) {
1163 error_report("vfio: msi_init failed");
1166 vdev
->msi_cap_size
= 0xa + (msi_maskbit
? 0xa : 0) + (msi_64bit
? 0x4 : 0);
1172 * We don't have any control over how pci_add_capability() inserts
1173 * capabilities into the chain. In order to setup MSI-X we need a
1174 * MemoryRegion for the BAR. In order to setup the BAR and not
1175 * attempt to mmap the MSI-X table area, which VFIO won't allow, we
1176 * need to first look for where the MSI-X table lives. So we
1177 * unfortunately split MSI-X setup across two functions.
1179 static int vfio_msix_early_setup(VFIOPCIDevice
*vdev
)
1183 uint32_t table
, pba
;
1184 int fd
= vdev
->vbasedev
.fd
;
1187 pos
= pci_find_capability(&vdev
->pdev
, PCI_CAP_ID_MSIX
);
1192 if (pread(fd
, &ctrl
, sizeof(ctrl
),
1193 vdev
->config_offset
+ pos
+ PCI_CAP_FLAGS
) != sizeof(ctrl
)) {
1197 if (pread(fd
, &table
, sizeof(table
),
1198 vdev
->config_offset
+ pos
+ PCI_MSIX_TABLE
) != sizeof(table
)) {
1202 if (pread(fd
, &pba
, sizeof(pba
),
1203 vdev
->config_offset
+ pos
+ PCI_MSIX_PBA
) != sizeof(pba
)) {
1207 ctrl
= le16_to_cpu(ctrl
);
1208 table
= le32_to_cpu(table
);
1209 pba
= le32_to_cpu(pba
);
1211 msix
= g_malloc0(sizeof(*msix
));
1212 msix
->table_bar
= table
& PCI_MSIX_FLAGS_BIRMASK
;
1213 msix
->table_offset
= table
& ~PCI_MSIX_FLAGS_BIRMASK
;
1214 msix
->pba_bar
= pba
& PCI_MSIX_FLAGS_BIRMASK
;
1215 msix
->pba_offset
= pba
& ~PCI_MSIX_FLAGS_BIRMASK
;
1216 msix
->entries
= (ctrl
& PCI_MSIX_FLAGS_QSIZE
) + 1;
1219 * Test the size of the pba_offset variable and catch if it extends outside
1220 * of the specified BAR. If it is the case, we need to apply a hardware
1221 * specific quirk if the device is known or we have a broken configuration.
1223 if (msix
->pba_offset
>= vdev
->bars
[msix
->pba_bar
].region
.size
) {
1224 PCIDevice
*pdev
= &vdev
->pdev
;
1225 uint16_t vendor
= pci_get_word(pdev
->config
+ PCI_VENDOR_ID
);
1226 uint16_t device
= pci_get_word(pdev
->config
+ PCI_DEVICE_ID
);
1229 * Chelsio T5 Virtual Function devices are encoded as 0x58xx for T5
1230 * adapters. The T5 hardware returns an incorrect value of 0x8000 for
1231 * the VF PBA offset while the BAR itself is only 8k. The correct value
1232 * is 0x1000, so we hard code that here.
1234 if (vendor
== PCI_VENDOR_ID_CHELSIO
&& (device
& 0xff00) == 0x5800) {
1235 msix
->pba_offset
= 0x1000;
1237 error_report("vfio: Hardware reports invalid configuration, "
1238 "MSIX PBA outside of specified BAR");
1244 trace_vfio_msix_early_setup(vdev
->vbasedev
.name
, pos
, msix
->table_bar
,
1245 msix
->table_offset
, msix
->entries
);
1251 static int vfio_msix_setup(VFIOPCIDevice
*vdev
, int pos
)
1255 ret
= msix_init(&vdev
->pdev
, vdev
->msix
->entries
,
1256 &vdev
->bars
[vdev
->msix
->table_bar
].region
.mem
,
1257 vdev
->msix
->table_bar
, vdev
->msix
->table_offset
,
1258 &vdev
->bars
[vdev
->msix
->pba_bar
].region
.mem
,
1259 vdev
->msix
->pba_bar
, vdev
->msix
->pba_offset
, pos
);
1261 if (ret
== -ENOTSUP
) {
1264 error_report("vfio: msix_init failed");
1271 static void vfio_teardown_msi(VFIOPCIDevice
*vdev
)
1273 msi_uninit(&vdev
->pdev
);
1276 msix_uninit(&vdev
->pdev
,
1277 &vdev
->bars
[vdev
->msix
->table_bar
].region
.mem
,
1278 &vdev
->bars
[vdev
->msix
->pba_bar
].region
.mem
);
1285 static void vfio_mmap_set_enabled(VFIOPCIDevice
*vdev
, bool enabled
)
1289 for (i
= 0; i
< PCI_ROM_SLOT
; i
++) {
1290 VFIOBAR
*bar
= &vdev
->bars
[i
];
1292 if (!bar
->region
.size
) {
1296 memory_region_set_enabled(&bar
->region
.mmap_mem
, enabled
);
1297 if (vdev
->msix
&& vdev
->msix
->table_bar
== i
) {
1298 memory_region_set_enabled(&vdev
->msix
->mmap_mem
, enabled
);
1303 static void vfio_unregister_bar(VFIOPCIDevice
*vdev
, int nr
)
1305 VFIOBAR
*bar
= &vdev
->bars
[nr
];
1307 if (!bar
->region
.size
) {
1311 vfio_bar_quirk_teardown(vdev
, nr
);
1313 memory_region_del_subregion(&bar
->region
.mem
, &bar
->region
.mmap_mem
);
1315 if (vdev
->msix
&& vdev
->msix
->table_bar
== nr
) {
1316 memory_region_del_subregion(&bar
->region
.mem
, &vdev
->msix
->mmap_mem
);
1320 static void vfio_unmap_bar(VFIOPCIDevice
*vdev
, int nr
)
1322 VFIOBAR
*bar
= &vdev
->bars
[nr
];
1324 if (!bar
->region
.size
) {
1328 vfio_bar_quirk_free(vdev
, nr
);
1330 munmap(bar
->region
.mmap
, memory_region_size(&bar
->region
.mmap_mem
));
1332 if (vdev
->msix
&& vdev
->msix
->table_bar
== nr
) {
1333 munmap(vdev
->msix
->mmap
, memory_region_size(&vdev
->msix
->mmap_mem
));
1337 static void vfio_map_bar(VFIOPCIDevice
*vdev
, int nr
)
1339 VFIOBAR
*bar
= &vdev
->bars
[nr
];
1340 uint64_t size
= bar
->region
.size
;
1346 /* Skip both unimplemented BARs and the upper half of 64bit BARS. */
1351 snprintf(name
, sizeof(name
), "VFIO %04x:%02x:%02x.%x BAR %d",
1352 vdev
->host
.domain
, vdev
->host
.bus
, vdev
->host
.slot
,
1353 vdev
->host
.function
, nr
);
1355 /* Determine what type of BAR this is for registration */
1356 ret
= pread(vdev
->vbasedev
.fd
, &pci_bar
, sizeof(pci_bar
),
1357 vdev
->config_offset
+ PCI_BASE_ADDRESS_0
+ (4 * nr
));
1358 if (ret
!= sizeof(pci_bar
)) {
1359 error_report("vfio: Failed to read BAR %d (%m)", nr
);
1363 pci_bar
= le32_to_cpu(pci_bar
);
1364 bar
->ioport
= (pci_bar
& PCI_BASE_ADDRESS_SPACE_IO
);
1365 bar
->mem64
= bar
->ioport
? 0 : (pci_bar
& PCI_BASE_ADDRESS_MEM_TYPE_64
);
1366 type
= pci_bar
& (bar
->ioport
? ~PCI_BASE_ADDRESS_IO_MASK
:
1367 ~PCI_BASE_ADDRESS_MEM_MASK
);
1369 /* A "slow" read/write mapping underlies all BARs */
1370 memory_region_init_io(&bar
->region
.mem
, OBJECT(vdev
), &vfio_region_ops
,
1372 pci_register_bar(&vdev
->pdev
, nr
, type
, &bar
->region
.mem
);
1375 * We can't mmap areas overlapping the MSIX vector table, so we
1376 * potentially insert a direct-mapped subregion before and after it.
1378 if (vdev
->msix
&& vdev
->msix
->table_bar
== nr
) {
1379 size
= vdev
->msix
->table_offset
& qemu_real_host_page_mask
;
1382 strncat(name
, " mmap", sizeof(name
) - strlen(name
) - 1);
1383 if (vfio_mmap_region(OBJECT(vdev
), &bar
->region
, &bar
->region
.mem
,
1384 &bar
->region
.mmap_mem
, &bar
->region
.mmap
,
1386 error_report("%s unsupported. Performance may be slow", name
);
1389 if (vdev
->msix
&& vdev
->msix
->table_bar
== nr
) {
1392 start
= REAL_HOST_PAGE_ALIGN((uint64_t)vdev
->msix
->table_offset
+
1393 (vdev
->msix
->entries
*
1394 PCI_MSIX_ENTRY_SIZE
));
1396 size
= start
< bar
->region
.size
? bar
->region
.size
- start
: 0;
1397 strncat(name
, " msix-hi", sizeof(name
) - strlen(name
) - 1);
1398 /* VFIOMSIXInfo contains another MemoryRegion for this mapping */
1399 if (vfio_mmap_region(OBJECT(vdev
), &bar
->region
, &bar
->region
.mem
,
1400 &vdev
->msix
->mmap_mem
,
1401 &vdev
->msix
->mmap
, size
, start
, name
)) {
1402 error_report("%s unsupported. Performance may be slow", name
);
1406 vfio_bar_quirk_setup(vdev
, nr
);
1409 static void vfio_map_bars(VFIOPCIDevice
*vdev
)
1413 for (i
= 0; i
< PCI_ROM_SLOT
; i
++) {
1414 vfio_map_bar(vdev
, i
);
1417 if (vdev
->has_vga
) {
1418 memory_region_init_io(&vdev
->vga
.region
[QEMU_PCI_VGA_MEM
].mem
,
1419 OBJECT(vdev
), &vfio_vga_ops
,
1420 &vdev
->vga
.region
[QEMU_PCI_VGA_MEM
],
1421 "vfio-vga-mmio@0xa0000",
1422 QEMU_PCI_VGA_MEM_SIZE
);
1423 memory_region_init_io(&vdev
->vga
.region
[QEMU_PCI_VGA_IO_LO
].mem
,
1424 OBJECT(vdev
), &vfio_vga_ops
,
1425 &vdev
->vga
.region
[QEMU_PCI_VGA_IO_LO
],
1426 "vfio-vga-io@0x3b0",
1427 QEMU_PCI_VGA_IO_LO_SIZE
);
1428 memory_region_init_io(&vdev
->vga
.region
[QEMU_PCI_VGA_IO_HI
].mem
,
1429 OBJECT(vdev
), &vfio_vga_ops
,
1430 &vdev
->vga
.region
[QEMU_PCI_VGA_IO_HI
],
1431 "vfio-vga-io@0x3c0",
1432 QEMU_PCI_VGA_IO_HI_SIZE
);
1434 pci_register_vga(&vdev
->pdev
, &vdev
->vga
.region
[QEMU_PCI_VGA_MEM
].mem
,
1435 &vdev
->vga
.region
[QEMU_PCI_VGA_IO_LO
].mem
,
1436 &vdev
->vga
.region
[QEMU_PCI_VGA_IO_HI
].mem
);
1437 vfio_vga_quirk_setup(vdev
);
1441 static void vfio_unregister_bars(VFIOPCIDevice
*vdev
)
1445 for (i
= 0; i
< PCI_ROM_SLOT
; i
++) {
1446 vfio_unregister_bar(vdev
, i
);
1449 if (vdev
->has_vga
) {
1450 vfio_vga_quirk_teardown(vdev
);
1451 pci_unregister_vga(&vdev
->pdev
);
1455 static void vfio_unmap_bars(VFIOPCIDevice
*vdev
)
1459 for (i
= 0; i
< PCI_ROM_SLOT
; i
++) {
1460 vfio_unmap_bar(vdev
, i
);
1463 if (vdev
->has_vga
) {
1464 vfio_vga_quirk_free(vdev
);
1471 static uint8_t vfio_std_cap_max_size(PCIDevice
*pdev
, uint8_t pos
)
1473 uint8_t tmp
, next
= 0xff;
1475 for (tmp
= pdev
->config
[PCI_CAPABILITY_LIST
]; tmp
;
1476 tmp
= pdev
->config
[tmp
+ 1]) {
1477 if (tmp
> pos
&& tmp
< next
) {
1485 static void vfio_set_word_bits(uint8_t *buf
, uint16_t val
, uint16_t mask
)
1487 pci_set_word(buf
, (pci_get_word(buf
) & ~mask
) | val
);
1490 static void vfio_add_emulated_word(VFIOPCIDevice
*vdev
, int pos
,
1491 uint16_t val
, uint16_t mask
)
1493 vfio_set_word_bits(vdev
->pdev
.config
+ pos
, val
, mask
);
1494 vfio_set_word_bits(vdev
->pdev
.wmask
+ pos
, ~mask
, mask
);
1495 vfio_set_word_bits(vdev
->emulated_config_bits
+ pos
, mask
, mask
);
1498 static void vfio_set_long_bits(uint8_t *buf
, uint32_t val
, uint32_t mask
)
1500 pci_set_long(buf
, (pci_get_long(buf
) & ~mask
) | val
);
1503 static void vfio_add_emulated_long(VFIOPCIDevice
*vdev
, int pos
,
1504 uint32_t val
, uint32_t mask
)
1506 vfio_set_long_bits(vdev
->pdev
.config
+ pos
, val
, mask
);
1507 vfio_set_long_bits(vdev
->pdev
.wmask
+ pos
, ~mask
, mask
);
1508 vfio_set_long_bits(vdev
->emulated_config_bits
+ pos
, mask
, mask
);
1511 static int vfio_setup_pcie_cap(VFIOPCIDevice
*vdev
, int pos
, uint8_t size
)
1516 flags
= pci_get_word(vdev
->pdev
.config
+ pos
+ PCI_CAP_FLAGS
);
1517 type
= (flags
& PCI_EXP_FLAGS_TYPE
) >> 4;
1519 if (type
!= PCI_EXP_TYPE_ENDPOINT
&&
1520 type
!= PCI_EXP_TYPE_LEG_END
&&
1521 type
!= PCI_EXP_TYPE_RC_END
) {
1523 error_report("vfio: Assignment of PCIe type 0x%x "
1524 "devices is not currently supported", type
);
1528 if (!pci_bus_is_express(vdev
->pdev
.bus
)) {
1530 * Use express capability as-is on PCI bus. It doesn't make much
1531 * sense to even expose, but some drivers (ex. tg3) depend on it
1532 * and guests don't seem to be particular about it. We'll need
1533 * to revist this or force express devices to express buses if we
1534 * ever expose an IOMMU to the guest.
1536 } else if (pci_bus_is_root(vdev
->pdev
.bus
)) {
1538 * On a Root Complex bus Endpoints become Root Complex Integrated
1539 * Endpoints, which changes the type and clears the LNK & LNK2 fields.
1541 if (type
== PCI_EXP_TYPE_ENDPOINT
) {
1542 vfio_add_emulated_word(vdev
, pos
+ PCI_CAP_FLAGS
,
1543 PCI_EXP_TYPE_RC_END
<< 4,
1544 PCI_EXP_FLAGS_TYPE
);
1546 /* Link Capabilities, Status, and Control goes away */
1547 if (size
> PCI_EXP_LNKCTL
) {
1548 vfio_add_emulated_long(vdev
, pos
+ PCI_EXP_LNKCAP
, 0, ~0);
1549 vfio_add_emulated_word(vdev
, pos
+ PCI_EXP_LNKCTL
, 0, ~0);
1550 vfio_add_emulated_word(vdev
, pos
+ PCI_EXP_LNKSTA
, 0, ~0);
1552 #ifndef PCI_EXP_LNKCAP2
1553 #define PCI_EXP_LNKCAP2 44
1555 #ifndef PCI_EXP_LNKSTA2
1556 #define PCI_EXP_LNKSTA2 50
1558 /* Link 2 Capabilities, Status, and Control goes away */
1559 if (size
> PCI_EXP_LNKCAP2
) {
1560 vfio_add_emulated_long(vdev
, pos
+ PCI_EXP_LNKCAP2
, 0, ~0);
1561 vfio_add_emulated_word(vdev
, pos
+ PCI_EXP_LNKCTL2
, 0, ~0);
1562 vfio_add_emulated_word(vdev
, pos
+ PCI_EXP_LNKSTA2
, 0, ~0);
1566 } else if (type
== PCI_EXP_TYPE_LEG_END
) {
1568 * Legacy endpoints don't belong on the root complex. Windows
1569 * seems to be happier with devices if we skip the capability.
1576 * Convert Root Complex Integrated Endpoints to regular endpoints.
1577 * These devices don't support LNK/LNK2 capabilities, so make them up.
1579 if (type
== PCI_EXP_TYPE_RC_END
) {
1580 vfio_add_emulated_word(vdev
, pos
+ PCI_CAP_FLAGS
,
1581 PCI_EXP_TYPE_ENDPOINT
<< 4,
1582 PCI_EXP_FLAGS_TYPE
);
1583 vfio_add_emulated_long(vdev
, pos
+ PCI_EXP_LNKCAP
,
1584 PCI_EXP_LNK_MLW_1
| PCI_EXP_LNK_LS_25
, ~0);
1585 vfio_add_emulated_word(vdev
, pos
+ PCI_EXP_LNKCTL
, 0, ~0);
1588 /* Mark the Link Status bits as emulated to allow virtual negotiation */
1589 vfio_add_emulated_word(vdev
, pos
+ PCI_EXP_LNKSTA
,
1590 pci_get_word(vdev
->pdev
.config
+ pos
+
1592 PCI_EXP_LNKCAP_MLW
| PCI_EXP_LNKCAP_SLS
);
1595 pos
= pci_add_capability(&vdev
->pdev
, PCI_CAP_ID_EXP
, pos
, size
);
1597 vdev
->pdev
.exp
.exp_cap
= pos
;
1603 static void vfio_check_pcie_flr(VFIOPCIDevice
*vdev
, uint8_t pos
)
1605 uint32_t cap
= pci_get_long(vdev
->pdev
.config
+ pos
+ PCI_EXP_DEVCAP
);
1607 if (cap
& PCI_EXP_DEVCAP_FLR
) {
1608 trace_vfio_check_pcie_flr(vdev
->vbasedev
.name
);
1609 vdev
->has_flr
= true;
1613 static void vfio_check_pm_reset(VFIOPCIDevice
*vdev
, uint8_t pos
)
1615 uint16_t csr
= pci_get_word(vdev
->pdev
.config
+ pos
+ PCI_PM_CTRL
);
1617 if (!(csr
& PCI_PM_CTRL_NO_SOFT_RESET
)) {
1618 trace_vfio_check_pm_reset(vdev
->vbasedev
.name
);
1619 vdev
->has_pm_reset
= true;
1623 static void vfio_check_af_flr(VFIOPCIDevice
*vdev
, uint8_t pos
)
1625 uint8_t cap
= pci_get_byte(vdev
->pdev
.config
+ pos
+ PCI_AF_CAP
);
1627 if ((cap
& PCI_AF_CAP_TP
) && (cap
& PCI_AF_CAP_FLR
)) {
1628 trace_vfio_check_af_flr(vdev
->vbasedev
.name
);
1629 vdev
->has_flr
= true;
1633 static int vfio_add_std_cap(VFIOPCIDevice
*vdev
, uint8_t pos
)
1635 PCIDevice
*pdev
= &vdev
->pdev
;
1636 uint8_t cap_id
, next
, size
;
1639 cap_id
= pdev
->config
[pos
];
1640 next
= pdev
->config
[pos
+ 1];
1643 * If it becomes important to configure capabilities to their actual
1644 * size, use this as the default when it's something we don't recognize.
1645 * Since QEMU doesn't actually handle many of the config accesses,
1646 * exact size doesn't seem worthwhile.
1648 size
= vfio_std_cap_max_size(pdev
, pos
);
1651 * pci_add_capability always inserts the new capability at the head
1652 * of the chain. Therefore to end up with a chain that matches the
1653 * physical device, we insert from the end by making this recursive.
1654 * This is also why we pre-caclulate size above as cached config space
1655 * will be changed as we unwind the stack.
1658 ret
= vfio_add_std_cap(vdev
, next
);
1663 /* Begin the rebuild, use QEMU emulated list bits */
1664 pdev
->config
[PCI_CAPABILITY_LIST
] = 0;
1665 vdev
->emulated_config_bits
[PCI_CAPABILITY_LIST
] = 0xff;
1666 vdev
->emulated_config_bits
[PCI_STATUS
] |= PCI_STATUS_CAP_LIST
;
1669 /* Use emulated next pointer to allow dropping caps */
1670 pci_set_byte(vdev
->emulated_config_bits
+ pos
+ 1, 0xff);
1673 case PCI_CAP_ID_MSI
:
1674 ret
= vfio_msi_setup(vdev
, pos
);
1676 case PCI_CAP_ID_EXP
:
1677 vfio_check_pcie_flr(vdev
, pos
);
1678 ret
= vfio_setup_pcie_cap(vdev
, pos
, size
);
1680 case PCI_CAP_ID_MSIX
:
1681 ret
= vfio_msix_setup(vdev
, pos
);
1684 vfio_check_pm_reset(vdev
, pos
);
1686 ret
= pci_add_capability(pdev
, cap_id
, pos
, size
);
1689 vfio_check_af_flr(vdev
, pos
);
1690 ret
= pci_add_capability(pdev
, cap_id
, pos
, size
);
1693 ret
= pci_add_capability(pdev
, cap_id
, pos
, size
);
1698 error_report("vfio: %04x:%02x:%02x.%x Error adding PCI capability "
1699 "0x%x[0x%x]@0x%x: %d", vdev
->host
.domain
,
1700 vdev
->host
.bus
, vdev
->host
.slot
, vdev
->host
.function
,
1701 cap_id
, size
, pos
, ret
);
1708 static int vfio_add_capabilities(VFIOPCIDevice
*vdev
)
1710 PCIDevice
*pdev
= &vdev
->pdev
;
1712 if (!(pdev
->config
[PCI_STATUS
] & PCI_STATUS_CAP_LIST
) ||
1713 !pdev
->config
[PCI_CAPABILITY_LIST
]) {
1714 return 0; /* Nothing to add */
1717 return vfio_add_std_cap(vdev
, pdev
->config
[PCI_CAPABILITY_LIST
]);
1720 static void vfio_pci_pre_reset(VFIOPCIDevice
*vdev
)
1722 PCIDevice
*pdev
= &vdev
->pdev
;
1725 vfio_disable_interrupts(vdev
);
1727 /* Make sure the device is in D0 */
1732 pmcsr
= vfio_pci_read_config(pdev
, vdev
->pm_cap
+ PCI_PM_CTRL
, 2);
1733 state
= pmcsr
& PCI_PM_CTRL_STATE_MASK
;
1735 pmcsr
&= ~PCI_PM_CTRL_STATE_MASK
;
1736 vfio_pci_write_config(pdev
, vdev
->pm_cap
+ PCI_PM_CTRL
, pmcsr
, 2);
1737 /* vfio handles the necessary delay here */
1738 pmcsr
= vfio_pci_read_config(pdev
, vdev
->pm_cap
+ PCI_PM_CTRL
, 2);
1739 state
= pmcsr
& PCI_PM_CTRL_STATE_MASK
;
1741 error_report("vfio: Unable to power on device, stuck in D%d",
1748 * Stop any ongoing DMA by disconecting I/O, MMIO, and bus master.
1749 * Also put INTx Disable in known state.
1751 cmd
= vfio_pci_read_config(pdev
, PCI_COMMAND
, 2);
1752 cmd
&= ~(PCI_COMMAND_IO
| PCI_COMMAND_MEMORY
| PCI_COMMAND_MASTER
|
1753 PCI_COMMAND_INTX_DISABLE
);
1754 vfio_pci_write_config(pdev
, PCI_COMMAND
, cmd
, 2);
1757 static void vfio_pci_post_reset(VFIOPCIDevice
*vdev
)
1759 vfio_intx_enable(vdev
);
1762 static bool vfio_pci_host_match(PCIHostDeviceAddress
*host1
,
1763 PCIHostDeviceAddress
*host2
)
1765 return (host1
->domain
== host2
->domain
&& host1
->bus
== host2
->bus
&&
1766 host1
->slot
== host2
->slot
&& host1
->function
== host2
->function
);
1769 static int vfio_pci_hot_reset(VFIOPCIDevice
*vdev
, bool single
)
1772 struct vfio_pci_hot_reset_info
*info
;
1773 struct vfio_pci_dependent_device
*devices
;
1774 struct vfio_pci_hot_reset
*reset
;
1779 trace_vfio_pci_hot_reset(vdev
->vbasedev
.name
, single
? "one" : "multi");
1781 vfio_pci_pre_reset(vdev
);
1782 vdev
->vbasedev
.needs_reset
= false;
1784 info
= g_malloc0(sizeof(*info
));
1785 info
->argsz
= sizeof(*info
);
1787 ret
= ioctl(vdev
->vbasedev
.fd
, VFIO_DEVICE_GET_PCI_HOT_RESET_INFO
, info
);
1788 if (ret
&& errno
!= ENOSPC
) {
1790 if (!vdev
->has_pm_reset
) {
1791 error_report("vfio: Cannot reset device %04x:%02x:%02x.%x, "
1792 "no available reset mechanism.", vdev
->host
.domain
,
1793 vdev
->host
.bus
, vdev
->host
.slot
, vdev
->host
.function
);
1798 count
= info
->count
;
1799 info
= g_realloc(info
, sizeof(*info
) + (count
* sizeof(*devices
)));
1800 info
->argsz
= sizeof(*info
) + (count
* sizeof(*devices
));
1801 devices
= &info
->devices
[0];
1803 ret
= ioctl(vdev
->vbasedev
.fd
, VFIO_DEVICE_GET_PCI_HOT_RESET_INFO
, info
);
1806 error_report("vfio: hot reset info failed: %m");
1810 trace_vfio_pci_hot_reset_has_dep_devices(vdev
->vbasedev
.name
);
1812 /* Verify that we have all the groups required */
1813 for (i
= 0; i
< info
->count
; i
++) {
1814 PCIHostDeviceAddress host
;
1816 VFIODevice
*vbasedev_iter
;
1818 host
.domain
= devices
[i
].segment
;
1819 host
.bus
= devices
[i
].bus
;
1820 host
.slot
= PCI_SLOT(devices
[i
].devfn
);
1821 host
.function
= PCI_FUNC(devices
[i
].devfn
);
1823 trace_vfio_pci_hot_reset_dep_devices(host
.domain
,
1824 host
.bus
, host
.slot
, host
.function
, devices
[i
].group_id
);
1826 if (vfio_pci_host_match(&host
, &vdev
->host
)) {
1830 QLIST_FOREACH(group
, &vfio_group_list
, next
) {
1831 if (group
->groupid
== devices
[i
].group_id
) {
1837 if (!vdev
->has_pm_reset
) {
1838 error_report("vfio: Cannot reset device %s, "
1839 "depends on group %d which is not owned.",
1840 vdev
->vbasedev
.name
, devices
[i
].group_id
);
1846 /* Prep dependent devices for reset and clear our marker. */
1847 QLIST_FOREACH(vbasedev_iter
, &group
->device_list
, next
) {
1848 if (vbasedev_iter
->type
!= VFIO_DEVICE_TYPE_PCI
) {
1851 tmp
= container_of(vbasedev_iter
, VFIOPCIDevice
, vbasedev
);
1852 if (vfio_pci_host_match(&host
, &tmp
->host
)) {
1857 vfio_pci_pre_reset(tmp
);
1858 tmp
->vbasedev
.needs_reset
= false;
1865 if (!single
&& !multi
) {
1870 /* Determine how many group fds need to be passed */
1872 QLIST_FOREACH(group
, &vfio_group_list
, next
) {
1873 for (i
= 0; i
< info
->count
; i
++) {
1874 if (group
->groupid
== devices
[i
].group_id
) {
1881 reset
= g_malloc0(sizeof(*reset
) + (count
* sizeof(*fds
)));
1882 reset
->argsz
= sizeof(*reset
) + (count
* sizeof(*fds
));
1883 fds
= &reset
->group_fds
[0];
1885 /* Fill in group fds */
1886 QLIST_FOREACH(group
, &vfio_group_list
, next
) {
1887 for (i
= 0; i
< info
->count
; i
++) {
1888 if (group
->groupid
== devices
[i
].group_id
) {
1889 fds
[reset
->count
++] = group
->fd
;
1896 ret
= ioctl(vdev
->vbasedev
.fd
, VFIO_DEVICE_PCI_HOT_RESET
, reset
);
1899 trace_vfio_pci_hot_reset_result(vdev
->vbasedev
.name
,
1900 ret
? "%m" : "Success");
1903 /* Re-enable INTx on affected devices */
1904 for (i
= 0; i
< info
->count
; i
++) {
1905 PCIHostDeviceAddress host
;
1907 VFIODevice
*vbasedev_iter
;
1909 host
.domain
= devices
[i
].segment
;
1910 host
.bus
= devices
[i
].bus
;
1911 host
.slot
= PCI_SLOT(devices
[i
].devfn
);
1912 host
.function
= PCI_FUNC(devices
[i
].devfn
);
1914 if (vfio_pci_host_match(&host
, &vdev
->host
)) {
1918 QLIST_FOREACH(group
, &vfio_group_list
, next
) {
1919 if (group
->groupid
== devices
[i
].group_id
) {
1928 QLIST_FOREACH(vbasedev_iter
, &group
->device_list
, next
) {
1929 if (vbasedev_iter
->type
!= VFIO_DEVICE_TYPE_PCI
) {
1932 tmp
= container_of(vbasedev_iter
, VFIOPCIDevice
, vbasedev
);
1933 if (vfio_pci_host_match(&host
, &tmp
->host
)) {
1934 vfio_pci_post_reset(tmp
);
1940 vfio_pci_post_reset(vdev
);
1947 * We want to differentiate hot reset of mulitple in-use devices vs hot reset
1948 * of a single in-use device. VFIO_DEVICE_RESET will already handle the case
1949 * of doing hot resets when there is only a single device per bus. The in-use
1950 * here refers to how many VFIODevices are affected. A hot reset that affects
1951 * multiple devices, but only a single in-use device, means that we can call
1952 * it from our bus ->reset() callback since the extent is effectively a single
1953 * device. This allows us to make use of it in the hotplug path. When there
1954 * are multiple in-use devices, we can only trigger the hot reset during a
1955 * system reset and thus from our reset handler. We separate _one vs _multi
1956 * here so that we don't overlap and do a double reset on the system reset
1957 * path where both our reset handler and ->reset() callback are used. Calling
1958 * _one() will only do a hot reset for the one in-use devices case, calling
1959 * _multi() will do nothing if a _one() would have been sufficient.
1961 static int vfio_pci_hot_reset_one(VFIOPCIDevice
*vdev
)
1963 return vfio_pci_hot_reset(vdev
, true);
1966 static int vfio_pci_hot_reset_multi(VFIODevice
*vbasedev
)
1968 VFIOPCIDevice
*vdev
= container_of(vbasedev
, VFIOPCIDevice
, vbasedev
);
1969 return vfio_pci_hot_reset(vdev
, false);
1972 static void vfio_pci_compute_needs_reset(VFIODevice
*vbasedev
)
1974 VFIOPCIDevice
*vdev
= container_of(vbasedev
, VFIOPCIDevice
, vbasedev
);
1975 if (!vbasedev
->reset_works
|| (!vdev
->has_flr
&& vdev
->has_pm_reset
)) {
1976 vbasedev
->needs_reset
= true;
1980 static VFIODeviceOps vfio_pci_ops
= {
1981 .vfio_compute_needs_reset
= vfio_pci_compute_needs_reset
,
1982 .vfio_hot_reset_multi
= vfio_pci_hot_reset_multi
,
1983 .vfio_eoi
= vfio_intx_eoi
,
1986 static int vfio_populate_device(VFIOPCIDevice
*vdev
)
1988 VFIODevice
*vbasedev
= &vdev
->vbasedev
;
1989 struct vfio_region_info reg_info
= { .argsz
= sizeof(reg_info
) };
1990 struct vfio_irq_info irq_info
= { .argsz
= sizeof(irq_info
) };
1993 /* Sanity check device */
1994 if (!(vbasedev
->flags
& VFIO_DEVICE_FLAGS_PCI
)) {
1995 error_report("vfio: Um, this isn't a PCI device");
1999 if (vbasedev
->num_regions
< VFIO_PCI_CONFIG_REGION_INDEX
+ 1) {
2000 error_report("vfio: unexpected number of io regions %u",
2001 vbasedev
->num_regions
);
2005 if (vbasedev
->num_irqs
< VFIO_PCI_MSIX_IRQ_INDEX
+ 1) {
2006 error_report("vfio: unexpected number of irqs %u", vbasedev
->num_irqs
);
2010 for (i
= VFIO_PCI_BAR0_REGION_INDEX
; i
< VFIO_PCI_ROM_REGION_INDEX
; i
++) {
2013 ret
= ioctl(vbasedev
->fd
, VFIO_DEVICE_GET_REGION_INFO
, ®_info
);
2015 error_report("vfio: Error getting region %d info: %m", i
);
2019 trace_vfio_populate_device_region(vbasedev
->name
, i
,
2020 (unsigned long)reg_info
.size
,
2021 (unsigned long)reg_info
.offset
,
2022 (unsigned long)reg_info
.flags
);
2024 vdev
->bars
[i
].region
.vbasedev
= vbasedev
;
2025 vdev
->bars
[i
].region
.flags
= reg_info
.flags
;
2026 vdev
->bars
[i
].region
.size
= reg_info
.size
;
2027 vdev
->bars
[i
].region
.fd_offset
= reg_info
.offset
;
2028 vdev
->bars
[i
].region
.nr
= i
;
2029 QLIST_INIT(&vdev
->bars
[i
].quirks
);
2032 reg_info
.index
= VFIO_PCI_CONFIG_REGION_INDEX
;
2034 ret
= ioctl(vdev
->vbasedev
.fd
, VFIO_DEVICE_GET_REGION_INFO
, ®_info
);
2036 error_report("vfio: Error getting config info: %m");
2040 trace_vfio_populate_device_config(vdev
->vbasedev
.name
,
2041 (unsigned long)reg_info
.size
,
2042 (unsigned long)reg_info
.offset
,
2043 (unsigned long)reg_info
.flags
);
2045 vdev
->config_size
= reg_info
.size
;
2046 if (vdev
->config_size
== PCI_CONFIG_SPACE_SIZE
) {
2047 vdev
->pdev
.cap_present
&= ~QEMU_PCI_CAP_EXPRESS
;
2049 vdev
->config_offset
= reg_info
.offset
;
2051 if ((vdev
->features
& VFIO_FEATURE_ENABLE_VGA
) &&
2052 vbasedev
->num_regions
> VFIO_PCI_VGA_REGION_INDEX
) {
2053 struct vfio_region_info vga_info
= {
2054 .argsz
= sizeof(vga_info
),
2055 .index
= VFIO_PCI_VGA_REGION_INDEX
,
2058 ret
= ioctl(vdev
->vbasedev
.fd
, VFIO_DEVICE_GET_REGION_INFO
, &vga_info
);
2061 "vfio: Device does not support requested feature x-vga");
2065 if (!(vga_info
.flags
& VFIO_REGION_INFO_FLAG_READ
) ||
2066 !(vga_info
.flags
& VFIO_REGION_INFO_FLAG_WRITE
) ||
2067 vga_info
.size
< 0xbffff + 1) {
2068 error_report("vfio: Unexpected VGA info, flags 0x%lx, size 0x%lx",
2069 (unsigned long)vga_info
.flags
,
2070 (unsigned long)vga_info
.size
);
2074 vdev
->vga
.fd_offset
= vga_info
.offset
;
2075 vdev
->vga
.fd
= vdev
->vbasedev
.fd
;
2077 vdev
->vga
.region
[QEMU_PCI_VGA_MEM
].offset
= QEMU_PCI_VGA_MEM_BASE
;
2078 vdev
->vga
.region
[QEMU_PCI_VGA_MEM
].nr
= QEMU_PCI_VGA_MEM
;
2079 QLIST_INIT(&vdev
->vga
.region
[QEMU_PCI_VGA_MEM
].quirks
);
2081 vdev
->vga
.region
[QEMU_PCI_VGA_IO_LO
].offset
= QEMU_PCI_VGA_IO_LO_BASE
;
2082 vdev
->vga
.region
[QEMU_PCI_VGA_IO_LO
].nr
= QEMU_PCI_VGA_IO_LO
;
2083 QLIST_INIT(&vdev
->vga
.region
[QEMU_PCI_VGA_IO_LO
].quirks
);
2085 vdev
->vga
.region
[QEMU_PCI_VGA_IO_HI
].offset
= QEMU_PCI_VGA_IO_HI_BASE
;
2086 vdev
->vga
.region
[QEMU_PCI_VGA_IO_HI
].nr
= QEMU_PCI_VGA_IO_HI
;
2087 QLIST_INIT(&vdev
->vga
.region
[QEMU_PCI_VGA_IO_HI
].quirks
);
2089 vdev
->has_vga
= true;
2092 irq_info
.index
= VFIO_PCI_ERR_IRQ_INDEX
;
2094 ret
= ioctl(vdev
->vbasedev
.fd
, VFIO_DEVICE_GET_IRQ_INFO
, &irq_info
);
2096 /* This can fail for an old kernel or legacy PCI dev */
2097 trace_vfio_populate_device_get_irq_info_failure();
2099 } else if (irq_info
.count
== 1) {
2100 vdev
->pci_aer
= true;
2102 error_report("vfio: %s "
2103 "Could not enable error recovery for the device",
2111 static void vfio_put_device(VFIOPCIDevice
*vdev
)
2113 g_free(vdev
->vbasedev
.name
);
2115 object_unparent(OBJECT(&vdev
->msix
->mmap_mem
));
2119 vfio_put_base_device(&vdev
->vbasedev
);
2122 static void vfio_err_notifier_handler(void *opaque
)
2124 VFIOPCIDevice
*vdev
= opaque
;
2126 if (!event_notifier_test_and_clear(&vdev
->err_notifier
)) {
2131 * TBD. Retrieve the error details and decide what action
2132 * needs to be taken. One of the actions could be to pass
2133 * the error to the guest and have the guest driver recover
2134 * from the error. This requires that PCIe capabilities be
2135 * exposed to the guest. For now, we just terminate the
2136 * guest to contain the error.
2139 error_report("%s(%04x:%02x:%02x.%x) Unrecoverable error detected. "
2140 "Please collect any data possible and then kill the guest",
2141 __func__
, vdev
->host
.domain
, vdev
->host
.bus
,
2142 vdev
->host
.slot
, vdev
->host
.function
);
2144 vm_stop(RUN_STATE_INTERNAL_ERROR
);
2148 * Registers error notifier for devices supporting error recovery.
2149 * If we encounter a failure in this function, we report an error
2150 * and continue after disabling error recovery support for the
2153 static void vfio_register_err_notifier(VFIOPCIDevice
*vdev
)
2157 struct vfio_irq_set
*irq_set
;
2160 if (!vdev
->pci_aer
) {
2164 if (event_notifier_init(&vdev
->err_notifier
, 0)) {
2165 error_report("vfio: Unable to init event notifier for error detection");
2166 vdev
->pci_aer
= false;
2170 argsz
= sizeof(*irq_set
) + sizeof(*pfd
);
2172 irq_set
= g_malloc0(argsz
);
2173 irq_set
->argsz
= argsz
;
2174 irq_set
->flags
= VFIO_IRQ_SET_DATA_EVENTFD
|
2175 VFIO_IRQ_SET_ACTION_TRIGGER
;
2176 irq_set
->index
= VFIO_PCI_ERR_IRQ_INDEX
;
2179 pfd
= (int32_t *)&irq_set
->data
;
2181 *pfd
= event_notifier_get_fd(&vdev
->err_notifier
);
2182 qemu_set_fd_handler(*pfd
, vfio_err_notifier_handler
, NULL
, vdev
);
2184 ret
= ioctl(vdev
->vbasedev
.fd
, VFIO_DEVICE_SET_IRQS
, irq_set
);
2186 error_report("vfio: Failed to set up error notification");
2187 qemu_set_fd_handler(*pfd
, NULL
, NULL
, vdev
);
2188 event_notifier_cleanup(&vdev
->err_notifier
);
2189 vdev
->pci_aer
= false;
2194 static void vfio_unregister_err_notifier(VFIOPCIDevice
*vdev
)
2197 struct vfio_irq_set
*irq_set
;
2201 if (!vdev
->pci_aer
) {
2205 argsz
= sizeof(*irq_set
) + sizeof(*pfd
);
2207 irq_set
= g_malloc0(argsz
);
2208 irq_set
->argsz
= argsz
;
2209 irq_set
->flags
= VFIO_IRQ_SET_DATA_EVENTFD
|
2210 VFIO_IRQ_SET_ACTION_TRIGGER
;
2211 irq_set
->index
= VFIO_PCI_ERR_IRQ_INDEX
;
2214 pfd
= (int32_t *)&irq_set
->data
;
2217 ret
= ioctl(vdev
->vbasedev
.fd
, VFIO_DEVICE_SET_IRQS
, irq_set
);
2219 error_report("vfio: Failed to de-assign error fd: %m");
2222 qemu_set_fd_handler(event_notifier_get_fd(&vdev
->err_notifier
),
2224 event_notifier_cleanup(&vdev
->err_notifier
);
2227 static void vfio_req_notifier_handler(void *opaque
)
2229 VFIOPCIDevice
*vdev
= opaque
;
2231 if (!event_notifier_test_and_clear(&vdev
->req_notifier
)) {
2235 qdev_unplug(&vdev
->pdev
.qdev
, NULL
);
2238 static void vfio_register_req_notifier(VFIOPCIDevice
*vdev
)
2240 struct vfio_irq_info irq_info
= { .argsz
= sizeof(irq_info
),
2241 .index
= VFIO_PCI_REQ_IRQ_INDEX
};
2243 struct vfio_irq_set
*irq_set
;
2246 if (!(vdev
->features
& VFIO_FEATURE_ENABLE_REQ
)) {
2250 if (ioctl(vdev
->vbasedev
.fd
,
2251 VFIO_DEVICE_GET_IRQ_INFO
, &irq_info
) < 0 || irq_info
.count
< 1) {
2255 if (event_notifier_init(&vdev
->req_notifier
, 0)) {
2256 error_report("vfio: Unable to init event notifier for device request");
2260 argsz
= sizeof(*irq_set
) + sizeof(*pfd
);
2262 irq_set
= g_malloc0(argsz
);
2263 irq_set
->argsz
= argsz
;
2264 irq_set
->flags
= VFIO_IRQ_SET_DATA_EVENTFD
|
2265 VFIO_IRQ_SET_ACTION_TRIGGER
;
2266 irq_set
->index
= VFIO_PCI_REQ_IRQ_INDEX
;
2269 pfd
= (int32_t *)&irq_set
->data
;
2271 *pfd
= event_notifier_get_fd(&vdev
->req_notifier
);
2272 qemu_set_fd_handler(*pfd
, vfio_req_notifier_handler
, NULL
, vdev
);
2274 if (ioctl(vdev
->vbasedev
.fd
, VFIO_DEVICE_SET_IRQS
, irq_set
)) {
2275 error_report("vfio: Failed to set up device request notification");
2276 qemu_set_fd_handler(*pfd
, NULL
, NULL
, vdev
);
2277 event_notifier_cleanup(&vdev
->req_notifier
);
2279 vdev
->req_enabled
= true;
2285 static void vfio_unregister_req_notifier(VFIOPCIDevice
*vdev
)
2288 struct vfio_irq_set
*irq_set
;
2291 if (!vdev
->req_enabled
) {
2295 argsz
= sizeof(*irq_set
) + sizeof(*pfd
);
2297 irq_set
= g_malloc0(argsz
);
2298 irq_set
->argsz
= argsz
;
2299 irq_set
->flags
= VFIO_IRQ_SET_DATA_EVENTFD
|
2300 VFIO_IRQ_SET_ACTION_TRIGGER
;
2301 irq_set
->index
= VFIO_PCI_REQ_IRQ_INDEX
;
2304 pfd
= (int32_t *)&irq_set
->data
;
2307 if (ioctl(vdev
->vbasedev
.fd
, VFIO_DEVICE_SET_IRQS
, irq_set
)) {
2308 error_report("vfio: Failed to de-assign device request fd: %m");
2311 qemu_set_fd_handler(event_notifier_get_fd(&vdev
->req_notifier
),
2313 event_notifier_cleanup(&vdev
->req_notifier
);
2315 vdev
->req_enabled
= false;
2319 * AMD Radeon PCI config reset, based on Linux:
2320 * drivers/gpu/drm/radeon/ci_smc.c:ci_is_smc_running()
2321 * drivers/gpu/drm/radeon/radeon_device.c:radeon_pci_config_reset
2322 * drivers/gpu/drm/radeon/ci_smc.c:ci_reset_smc()
2323 * drivers/gpu/drm/radeon/ci_smc.c:ci_stop_smc_clock()
2324 * IDs: include/drm/drm_pciids.h
2325 * Registers: http://cgit.freedesktop.org/~agd5f/linux/commit/?id=4e2aa447f6f0
2327 * Bonaire and Hawaii GPUs do not respond to a bus reset. This is a bug in the
2328 * hardware that should be fixed on future ASICs. The symptom of this is that
2329 * once the accerlated driver loads, Windows guests will bsod on subsequent
2330 * attmpts to load the driver, such as after VM reset or shutdown/restart. To
2331 * work around this, we do an AMD specific PCI config reset, followed by an SMC
2332 * reset. The PCI config reset only works if SMC firmware is running, so we
2333 * have a dependency on the state of the device as to whether this reset will
2334 * be effective. There are still cases where we won't be able to kick the
2335 * device into working, but this greatly improves the usability overall. The
2336 * config reset magic is relatively common on AMD GPUs, but the setup and SMC
2337 * poking is largely ASIC specific.
2339 static bool vfio_radeon_smc_is_running(VFIOPCIDevice
*vdev
)
2344 * Registers 200h and 204h are index and data registers for accessing
2345 * indirect configuration registers within the device.
2347 vfio_region_write(&vdev
->bars
[5].region
, 0x200, 0x80000004, 4);
2348 clk
= vfio_region_read(&vdev
->bars
[5].region
, 0x204, 4);
2349 vfio_region_write(&vdev
->bars
[5].region
, 0x200, 0x80000370, 4);
2350 pc_c
= vfio_region_read(&vdev
->bars
[5].region
, 0x204, 4);
2352 return (!(clk
& 1) && (0x20100 <= pc_c
));
2356 * The scope of a config reset is controlled by a mode bit in the misc register
2357 * and a fuse, exposed as a bit in another register. The fuse is the default
2358 * (0 = GFX, 1 = whole GPU), the misc bit is a toggle, with the forumula
2359 * scope = !(misc ^ fuse), where the resulting scope is defined the same as
2360 * the fuse. A truth table therefore tells us that if misc == fuse, we need
2361 * to flip the value of the bit in the misc register.
2363 static void vfio_radeon_set_gfx_only_reset(VFIOPCIDevice
*vdev
)
2365 uint32_t misc
, fuse
;
2368 vfio_region_write(&vdev
->bars
[5].region
, 0x200, 0xc00c0000, 4);
2369 fuse
= vfio_region_read(&vdev
->bars
[5].region
, 0x204, 4);
2372 vfio_region_write(&vdev
->bars
[5].region
, 0x200, 0xc0000010, 4);
2373 misc
= vfio_region_read(&vdev
->bars
[5].region
, 0x204, 4);
2377 vfio_region_write(&vdev
->bars
[5].region
, 0x204, misc
^ 2, 4);
2378 vfio_region_read(&vdev
->bars
[5].region
, 0x204, 4); /* flush */
2382 static int vfio_radeon_reset(VFIOPCIDevice
*vdev
)
2384 PCIDevice
*pdev
= &vdev
->pdev
;
2388 /* Defer to a kernel implemented reset */
2389 if (vdev
->vbasedev
.reset_works
) {
2393 /* Enable only memory BAR access */
2394 vfio_pci_write_config(pdev
, PCI_COMMAND
, PCI_COMMAND_MEMORY
, 2);
2396 /* Reset only works if SMC firmware is loaded and running */
2397 if (!vfio_radeon_smc_is_running(vdev
)) {
2402 /* Make sure only the GFX function is reset */
2403 vfio_radeon_set_gfx_only_reset(vdev
);
2405 /* AMD PCI config reset */
2406 vfio_pci_write_config(pdev
, 0x7c, 0x39d5e86b, 4);
2409 /* Read back the memory size to make sure we're out of reset */
2410 for (i
= 0; i
< 100000; i
++) {
2411 if (vfio_region_read(&vdev
->bars
[5].region
, 0x5428, 4) != 0xffffffff) {
2418 vfio_region_write(&vdev
->bars
[5].region
, 0x200, 0x80000000, 4);
2419 data
= vfio_region_read(&vdev
->bars
[5].region
, 0x204, 4);
2421 vfio_region_write(&vdev
->bars
[5].region
, 0x204, data
, 4);
2423 /* Disable SMC clock */
2424 vfio_region_write(&vdev
->bars
[5].region
, 0x200, 0x80000004, 4);
2425 data
= vfio_region_read(&vdev
->bars
[5].region
, 0x204, 4);
2427 vfio_region_write(&vdev
->bars
[5].region
, 0x204, data
, 4);
2430 /* Restore PCI command register */
2431 vfio_pci_write_config(pdev
, PCI_COMMAND
, 0, 2);
2436 static void vfio_setup_resetfn(VFIOPCIDevice
*vdev
)
2438 PCIDevice
*pdev
= &vdev
->pdev
;
2439 uint16_t vendor
, device
;
2441 vendor
= pci_get_word(pdev
->config
+ PCI_VENDOR_ID
);
2442 device
= pci_get_word(pdev
->config
+ PCI_DEVICE_ID
);
2448 case 0x6649: /* Bonaire [FirePro W5100] */
2451 case 0x6658: /* Bonaire XTX [Radeon R7 260X] */
2452 case 0x665c: /* Bonaire XT [Radeon HD 7790/8770 / R9 260 OEM] */
2453 case 0x665d: /* Bonaire [Radeon R7 200 Series] */
2455 case 0x67A0: /* Hawaii XT GL [FirePro W9100] */
2456 case 0x67A1: /* Hawaii PRO GL [FirePro W8100] */
2461 case 0x67B0: /* Hawaii XT [Radeon R9 290X] */
2462 case 0x67B1: /* Hawaii PRO [Radeon R9 290] */
2467 vdev
->resetfn
= vfio_radeon_reset
;
2474 static int vfio_initfn(PCIDevice
*pdev
)
2476 VFIOPCIDevice
*vdev
= DO_UPCAST(VFIOPCIDevice
, pdev
, pdev
);
2477 VFIODevice
*vbasedev_iter
;
2479 char path
[PATH_MAX
], iommu_group_path
[PATH_MAX
], *group_name
;
2485 /* Check that the host device exists */
2486 snprintf(path
, sizeof(path
),
2487 "/sys/bus/pci/devices/%04x:%02x:%02x.%01x/",
2488 vdev
->host
.domain
, vdev
->host
.bus
, vdev
->host
.slot
,
2489 vdev
->host
.function
);
2490 if (stat(path
, &st
) < 0) {
2491 error_report("vfio: error: no such host device: %s", path
);
2495 vdev
->vbasedev
.ops
= &vfio_pci_ops
;
2497 vdev
->vbasedev
.type
= VFIO_DEVICE_TYPE_PCI
;
2498 vdev
->vbasedev
.name
= g_strdup_printf("%04x:%02x:%02x.%01x",
2499 vdev
->host
.domain
, vdev
->host
.bus
,
2500 vdev
->host
.slot
, vdev
->host
.function
);
2502 strncat(path
, "iommu_group", sizeof(path
) - strlen(path
) - 1);
2504 len
= readlink(path
, iommu_group_path
, sizeof(path
));
2505 if (len
<= 0 || len
>= sizeof(path
)) {
2506 error_report("vfio: error no iommu_group for device");
2507 return len
< 0 ? -errno
: -ENAMETOOLONG
;
2510 iommu_group_path
[len
] = 0;
2511 group_name
= basename(iommu_group_path
);
2513 if (sscanf(group_name
, "%d", &groupid
) != 1) {
2514 error_report("vfio: error reading %s: %m", path
);
2518 trace_vfio_initfn(vdev
->vbasedev
.name
, groupid
);
2520 group
= vfio_get_group(groupid
, pci_device_iommu_address_space(pdev
));
2522 error_report("vfio: failed to get group %d", groupid
);
2526 snprintf(path
, sizeof(path
), "%04x:%02x:%02x.%01x",
2527 vdev
->host
.domain
, vdev
->host
.bus
, vdev
->host
.slot
,
2528 vdev
->host
.function
);
2530 QLIST_FOREACH(vbasedev_iter
, &group
->device_list
, next
) {
2531 if (strcmp(vbasedev_iter
->name
, vdev
->vbasedev
.name
) == 0) {
2532 error_report("vfio: error: device %s is already attached", path
);
2533 vfio_put_group(group
);
2538 ret
= vfio_get_device(group
, path
, &vdev
->vbasedev
);
2540 error_report("vfio: failed to get device %s", path
);
2541 vfio_put_group(group
);
2545 ret
= vfio_populate_device(vdev
);
2550 /* Get a copy of config space */
2551 ret
= pread(vdev
->vbasedev
.fd
, vdev
->pdev
.config
,
2552 MIN(pci_config_size(&vdev
->pdev
), vdev
->config_size
),
2553 vdev
->config_offset
);
2554 if (ret
< (int)MIN(pci_config_size(&vdev
->pdev
), vdev
->config_size
)) {
2555 ret
= ret
< 0 ? -errno
: -EFAULT
;
2556 error_report("vfio: Failed to read device config space");
2560 /* vfio emulates a lot for us, but some bits need extra love */
2561 vdev
->emulated_config_bits
= g_malloc0(vdev
->config_size
);
2563 /* QEMU can choose to expose the ROM or not */
2564 memset(vdev
->emulated_config_bits
+ PCI_ROM_ADDRESS
, 0xff, 4);
2566 /* QEMU can change multi-function devices to single function, or reverse */
2567 vdev
->emulated_config_bits
[PCI_HEADER_TYPE
] =
2568 PCI_HEADER_TYPE_MULTI_FUNCTION
;
2570 /* Restore or clear multifunction, this is always controlled by QEMU */
2571 if (vdev
->pdev
.cap_present
& QEMU_PCI_CAP_MULTIFUNCTION
) {
2572 vdev
->pdev
.config
[PCI_HEADER_TYPE
] |= PCI_HEADER_TYPE_MULTI_FUNCTION
;
2574 vdev
->pdev
.config
[PCI_HEADER_TYPE
] &= ~PCI_HEADER_TYPE_MULTI_FUNCTION
;
2578 * Clear host resource mapping info. If we choose not to register a
2579 * BAR, such as might be the case with the option ROM, we can get
2580 * confusing, unwritable, residual addresses from the host here.
2582 memset(&vdev
->pdev
.config
[PCI_BASE_ADDRESS_0
], 0, 24);
2583 memset(&vdev
->pdev
.config
[PCI_ROM_ADDRESS
], 0, 4);
2585 vfio_pci_size_rom(vdev
);
2587 ret
= vfio_msix_early_setup(vdev
);
2592 vfio_map_bars(vdev
);
2594 ret
= vfio_add_capabilities(vdev
);
2599 /* QEMU emulates all of MSI & MSIX */
2600 if (pdev
->cap_present
& QEMU_PCI_CAP_MSIX
) {
2601 memset(vdev
->emulated_config_bits
+ pdev
->msix_cap
, 0xff,
2605 if (pdev
->cap_present
& QEMU_PCI_CAP_MSI
) {
2606 memset(vdev
->emulated_config_bits
+ pdev
->msi_cap
, 0xff,
2607 vdev
->msi_cap_size
);
2610 if (vfio_pci_read_config(&vdev
->pdev
, PCI_INTERRUPT_PIN
, 1)) {
2611 vdev
->intx
.mmap_timer
= timer_new_ms(QEMU_CLOCK_VIRTUAL
,
2612 vfio_intx_mmap_enable
, vdev
);
2613 pci_device_set_intx_routing_notifier(&vdev
->pdev
, vfio_intx_update
);
2614 ret
= vfio_intx_enable(vdev
);
2620 vfio_register_err_notifier(vdev
);
2621 vfio_register_req_notifier(vdev
);
2622 vfio_setup_resetfn(vdev
);
2627 pci_device_set_intx_routing_notifier(&vdev
->pdev
, NULL
);
2628 vfio_teardown_msi(vdev
);
2629 vfio_unregister_bars(vdev
);
2633 static void vfio_instance_finalize(Object
*obj
)
2635 PCIDevice
*pci_dev
= PCI_DEVICE(obj
);
2636 VFIOPCIDevice
*vdev
= DO_UPCAST(VFIOPCIDevice
, pdev
, pci_dev
);
2637 VFIOGroup
*group
= vdev
->vbasedev
.group
;
2639 vfio_unmap_bars(vdev
);
2640 g_free(vdev
->emulated_config_bits
);
2642 vfio_put_device(vdev
);
2643 vfio_put_group(group
);
2646 static void vfio_exitfn(PCIDevice
*pdev
)
2648 VFIOPCIDevice
*vdev
= DO_UPCAST(VFIOPCIDevice
, pdev
, pdev
);
2650 vfio_unregister_req_notifier(vdev
);
2651 vfio_unregister_err_notifier(vdev
);
2652 pci_device_set_intx_routing_notifier(&vdev
->pdev
, NULL
);
2653 vfio_disable_interrupts(vdev
);
2654 if (vdev
->intx
.mmap_timer
) {
2655 timer_free(vdev
->intx
.mmap_timer
);
2657 vfio_teardown_msi(vdev
);
2658 vfio_unregister_bars(vdev
);
2661 static void vfio_pci_reset(DeviceState
*dev
)
2663 PCIDevice
*pdev
= DO_UPCAST(PCIDevice
, qdev
, dev
);
2664 VFIOPCIDevice
*vdev
= DO_UPCAST(VFIOPCIDevice
, pdev
, pdev
);
2666 trace_vfio_pci_reset(vdev
->vbasedev
.name
);
2668 vfio_pci_pre_reset(vdev
);
2670 if (vdev
->resetfn
&& !vdev
->resetfn(vdev
)) {
2674 if (vdev
->vbasedev
.reset_works
&&
2675 (vdev
->has_flr
|| !vdev
->has_pm_reset
) &&
2676 !ioctl(vdev
->vbasedev
.fd
, VFIO_DEVICE_RESET
)) {
2677 trace_vfio_pci_reset_flr(vdev
->vbasedev
.name
);
2681 /* See if we can do our own bus reset */
2682 if (!vfio_pci_hot_reset_one(vdev
)) {
2686 /* If nothing else works and the device supports PM reset, use it */
2687 if (vdev
->vbasedev
.reset_works
&& vdev
->has_pm_reset
&&
2688 !ioctl(vdev
->vbasedev
.fd
, VFIO_DEVICE_RESET
)) {
2689 trace_vfio_pci_reset_pm(vdev
->vbasedev
.name
);
2694 vfio_pci_post_reset(vdev
);
2697 static void vfio_instance_init(Object
*obj
)
2699 PCIDevice
*pci_dev
= PCI_DEVICE(obj
);
2700 VFIOPCIDevice
*vdev
= DO_UPCAST(VFIOPCIDevice
, pdev
, PCI_DEVICE(obj
));
2702 device_add_bootindex_property(obj
, &vdev
->bootindex
,
2704 &pci_dev
->qdev
, NULL
);
2707 static Property vfio_pci_dev_properties
[] = {
2708 DEFINE_PROP_PCI_HOST_DEVADDR("host", VFIOPCIDevice
, host
),
2709 DEFINE_PROP_UINT32("x-intx-mmap-timeout-ms", VFIOPCIDevice
,
2710 intx
.mmap_timeout
, 1100),
2711 DEFINE_PROP_BIT("x-vga", VFIOPCIDevice
, features
,
2712 VFIO_FEATURE_ENABLE_VGA_BIT
, false),
2713 DEFINE_PROP_BIT("x-req", VFIOPCIDevice
, features
,
2714 VFIO_FEATURE_ENABLE_REQ_BIT
, true),
2715 DEFINE_PROP_BOOL("x-no-mmap", VFIOPCIDevice
, vbasedev
.no_mmap
, false),
2716 DEFINE_PROP_BOOL("x-no-kvm-intx", VFIOPCIDevice
, no_kvm_intx
, false),
2717 DEFINE_PROP_BOOL("x-no-kvm-msi", VFIOPCIDevice
, no_kvm_msi
, false),
2718 DEFINE_PROP_BOOL("x-no-kvm-msix", VFIOPCIDevice
, no_kvm_msix
, false),
2720 * TODO - support passed fds... is this necessary?
2721 * DEFINE_PROP_STRING("vfiofd", VFIOPCIDevice, vfiofd_name),
2722 * DEFINE_PROP_STRING("vfiogroupfd, VFIOPCIDevice, vfiogroupfd_name),
2724 DEFINE_PROP_END_OF_LIST(),
2727 static const VMStateDescription vfio_pci_vmstate
= {
2732 static void vfio_pci_dev_class_init(ObjectClass
*klass
, void *data
)
2734 DeviceClass
*dc
= DEVICE_CLASS(klass
);
2735 PCIDeviceClass
*pdc
= PCI_DEVICE_CLASS(klass
);
2737 dc
->reset
= vfio_pci_reset
;
2738 dc
->props
= vfio_pci_dev_properties
;
2739 dc
->vmsd
= &vfio_pci_vmstate
;
2740 dc
->desc
= "VFIO-based PCI device assignment";
2741 set_bit(DEVICE_CATEGORY_MISC
, dc
->categories
);
2742 pdc
->init
= vfio_initfn
;
2743 pdc
->exit
= vfio_exitfn
;
2744 pdc
->config_read
= vfio_pci_read_config
;
2745 pdc
->config_write
= vfio_pci_write_config
;
2746 pdc
->is_express
= 1; /* We might be */
2749 static const TypeInfo vfio_pci_dev_info
= {
2751 .parent
= TYPE_PCI_DEVICE
,
2752 .instance_size
= sizeof(VFIOPCIDevice
),
2753 .class_init
= vfio_pci_dev_class_init
,
2754 .instance_init
= vfio_instance_init
,
2755 .instance_finalize
= vfio_instance_finalize
,
2758 static void register_vfio_pci_dev_type(void)
2760 type_register_static(&vfio_pci_dev_info
);
2763 type_init(register_vfio_pci_dev_type
)