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
) {
1225 * Chelsio T5 Virtual Function devices are encoded as 0x58xx for T5
1226 * adapters. The T5 hardware returns an incorrect value of 0x8000 for
1227 * the VF PBA offset while the BAR itself is only 8k. The correct value
1228 * is 0x1000, so we hard code that here.
1230 if (vdev
->vendor_id
== PCI_VENDOR_ID_CHELSIO
&&
1231 (vdev
->device_id
& 0xff00) == 0x5800) {
1232 msix
->pba_offset
= 0x1000;
1234 error_report("vfio: Hardware reports invalid configuration, "
1235 "MSIX PBA outside of specified BAR");
1241 trace_vfio_msix_early_setup(vdev
->vbasedev
.name
, pos
, msix
->table_bar
,
1242 msix
->table_offset
, msix
->entries
);
1248 static int vfio_msix_setup(VFIOPCIDevice
*vdev
, int pos
)
1252 ret
= msix_init(&vdev
->pdev
, vdev
->msix
->entries
,
1253 &vdev
->bars
[vdev
->msix
->table_bar
].region
.mem
,
1254 vdev
->msix
->table_bar
, vdev
->msix
->table_offset
,
1255 &vdev
->bars
[vdev
->msix
->pba_bar
].region
.mem
,
1256 vdev
->msix
->pba_bar
, vdev
->msix
->pba_offset
, pos
);
1258 if (ret
== -ENOTSUP
) {
1261 error_report("vfio: msix_init failed");
1268 static void vfio_teardown_msi(VFIOPCIDevice
*vdev
)
1270 msi_uninit(&vdev
->pdev
);
1273 msix_uninit(&vdev
->pdev
,
1274 &vdev
->bars
[vdev
->msix
->table_bar
].region
.mem
,
1275 &vdev
->bars
[vdev
->msix
->pba_bar
].region
.mem
);
1282 static void vfio_mmap_set_enabled(VFIOPCIDevice
*vdev
, bool enabled
)
1286 for (i
= 0; i
< PCI_ROM_SLOT
; i
++) {
1287 VFIOBAR
*bar
= &vdev
->bars
[i
];
1289 if (!bar
->region
.size
) {
1293 memory_region_set_enabled(&bar
->region
.mmap_mem
, enabled
);
1294 if (vdev
->msix
&& vdev
->msix
->table_bar
== i
) {
1295 memory_region_set_enabled(&vdev
->msix
->mmap_mem
, enabled
);
1300 static void vfio_unregister_bar(VFIOPCIDevice
*vdev
, int nr
)
1302 VFIOBAR
*bar
= &vdev
->bars
[nr
];
1304 if (!bar
->region
.size
) {
1308 vfio_bar_quirk_teardown(vdev
, nr
);
1310 memory_region_del_subregion(&bar
->region
.mem
, &bar
->region
.mmap_mem
);
1312 if (vdev
->msix
&& vdev
->msix
->table_bar
== nr
) {
1313 memory_region_del_subregion(&bar
->region
.mem
, &vdev
->msix
->mmap_mem
);
1317 static void vfio_unmap_bar(VFIOPCIDevice
*vdev
, int nr
)
1319 VFIOBAR
*bar
= &vdev
->bars
[nr
];
1321 if (!bar
->region
.size
) {
1325 vfio_bar_quirk_free(vdev
, nr
);
1327 munmap(bar
->region
.mmap
, memory_region_size(&bar
->region
.mmap_mem
));
1329 if (vdev
->msix
&& vdev
->msix
->table_bar
== nr
) {
1330 munmap(vdev
->msix
->mmap
, memory_region_size(&vdev
->msix
->mmap_mem
));
1334 static void vfio_map_bar(VFIOPCIDevice
*vdev
, int nr
)
1336 VFIOBAR
*bar
= &vdev
->bars
[nr
];
1337 uint64_t size
= bar
->region
.size
;
1343 /* Skip both unimplemented BARs and the upper half of 64bit BARS. */
1348 snprintf(name
, sizeof(name
), "VFIO %04x:%02x:%02x.%x BAR %d",
1349 vdev
->host
.domain
, vdev
->host
.bus
, vdev
->host
.slot
,
1350 vdev
->host
.function
, nr
);
1352 /* Determine what type of BAR this is for registration */
1353 ret
= pread(vdev
->vbasedev
.fd
, &pci_bar
, sizeof(pci_bar
),
1354 vdev
->config_offset
+ PCI_BASE_ADDRESS_0
+ (4 * nr
));
1355 if (ret
!= sizeof(pci_bar
)) {
1356 error_report("vfio: Failed to read BAR %d (%m)", nr
);
1360 pci_bar
= le32_to_cpu(pci_bar
);
1361 bar
->ioport
= (pci_bar
& PCI_BASE_ADDRESS_SPACE_IO
);
1362 bar
->mem64
= bar
->ioport
? 0 : (pci_bar
& PCI_BASE_ADDRESS_MEM_TYPE_64
);
1363 type
= pci_bar
& (bar
->ioport
? ~PCI_BASE_ADDRESS_IO_MASK
:
1364 ~PCI_BASE_ADDRESS_MEM_MASK
);
1366 /* A "slow" read/write mapping underlies all BARs */
1367 memory_region_init_io(&bar
->region
.mem
, OBJECT(vdev
), &vfio_region_ops
,
1369 pci_register_bar(&vdev
->pdev
, nr
, type
, &bar
->region
.mem
);
1372 * We can't mmap areas overlapping the MSIX vector table, so we
1373 * potentially insert a direct-mapped subregion before and after it.
1375 if (vdev
->msix
&& vdev
->msix
->table_bar
== nr
) {
1376 size
= vdev
->msix
->table_offset
& qemu_real_host_page_mask
;
1379 strncat(name
, " mmap", sizeof(name
) - strlen(name
) - 1);
1380 if (vfio_mmap_region(OBJECT(vdev
), &bar
->region
, &bar
->region
.mem
,
1381 &bar
->region
.mmap_mem
, &bar
->region
.mmap
,
1383 error_report("%s unsupported. Performance may be slow", name
);
1386 if (vdev
->msix
&& vdev
->msix
->table_bar
== nr
) {
1389 start
= REAL_HOST_PAGE_ALIGN((uint64_t)vdev
->msix
->table_offset
+
1390 (vdev
->msix
->entries
*
1391 PCI_MSIX_ENTRY_SIZE
));
1393 size
= start
< bar
->region
.size
? bar
->region
.size
- start
: 0;
1394 strncat(name
, " msix-hi", sizeof(name
) - strlen(name
) - 1);
1395 /* VFIOMSIXInfo contains another MemoryRegion for this mapping */
1396 if (vfio_mmap_region(OBJECT(vdev
), &bar
->region
, &bar
->region
.mem
,
1397 &vdev
->msix
->mmap_mem
,
1398 &vdev
->msix
->mmap
, size
, start
, name
)) {
1399 error_report("%s unsupported. Performance may be slow", name
);
1403 vfio_bar_quirk_setup(vdev
, nr
);
1406 static void vfio_map_bars(VFIOPCIDevice
*vdev
)
1410 for (i
= 0; i
< PCI_ROM_SLOT
; i
++) {
1411 vfio_map_bar(vdev
, i
);
1414 if (vdev
->has_vga
) {
1415 memory_region_init_io(&vdev
->vga
.region
[QEMU_PCI_VGA_MEM
].mem
,
1416 OBJECT(vdev
), &vfio_vga_ops
,
1417 &vdev
->vga
.region
[QEMU_PCI_VGA_MEM
],
1418 "vfio-vga-mmio@0xa0000",
1419 QEMU_PCI_VGA_MEM_SIZE
);
1420 memory_region_init_io(&vdev
->vga
.region
[QEMU_PCI_VGA_IO_LO
].mem
,
1421 OBJECT(vdev
), &vfio_vga_ops
,
1422 &vdev
->vga
.region
[QEMU_PCI_VGA_IO_LO
],
1423 "vfio-vga-io@0x3b0",
1424 QEMU_PCI_VGA_IO_LO_SIZE
);
1425 memory_region_init_io(&vdev
->vga
.region
[QEMU_PCI_VGA_IO_HI
].mem
,
1426 OBJECT(vdev
), &vfio_vga_ops
,
1427 &vdev
->vga
.region
[QEMU_PCI_VGA_IO_HI
],
1428 "vfio-vga-io@0x3c0",
1429 QEMU_PCI_VGA_IO_HI_SIZE
);
1431 pci_register_vga(&vdev
->pdev
, &vdev
->vga
.region
[QEMU_PCI_VGA_MEM
].mem
,
1432 &vdev
->vga
.region
[QEMU_PCI_VGA_IO_LO
].mem
,
1433 &vdev
->vga
.region
[QEMU_PCI_VGA_IO_HI
].mem
);
1434 vfio_vga_quirk_setup(vdev
);
1438 static void vfio_unregister_bars(VFIOPCIDevice
*vdev
)
1442 for (i
= 0; i
< PCI_ROM_SLOT
; i
++) {
1443 vfio_unregister_bar(vdev
, i
);
1446 if (vdev
->has_vga
) {
1447 vfio_vga_quirk_teardown(vdev
);
1448 pci_unregister_vga(&vdev
->pdev
);
1452 static void vfio_unmap_bars(VFIOPCIDevice
*vdev
)
1456 for (i
= 0; i
< PCI_ROM_SLOT
; i
++) {
1457 vfio_unmap_bar(vdev
, i
);
1460 if (vdev
->has_vga
) {
1461 vfio_vga_quirk_free(vdev
);
1468 static uint8_t vfio_std_cap_max_size(PCIDevice
*pdev
, uint8_t pos
)
1470 uint8_t tmp
, next
= 0xff;
1472 for (tmp
= pdev
->config
[PCI_CAPABILITY_LIST
]; tmp
;
1473 tmp
= pdev
->config
[tmp
+ 1]) {
1474 if (tmp
> pos
&& tmp
< next
) {
1482 static void vfio_set_word_bits(uint8_t *buf
, uint16_t val
, uint16_t mask
)
1484 pci_set_word(buf
, (pci_get_word(buf
) & ~mask
) | val
);
1487 static void vfio_add_emulated_word(VFIOPCIDevice
*vdev
, int pos
,
1488 uint16_t val
, uint16_t mask
)
1490 vfio_set_word_bits(vdev
->pdev
.config
+ pos
, val
, mask
);
1491 vfio_set_word_bits(vdev
->pdev
.wmask
+ pos
, ~mask
, mask
);
1492 vfio_set_word_bits(vdev
->emulated_config_bits
+ pos
, mask
, mask
);
1495 static void vfio_set_long_bits(uint8_t *buf
, uint32_t val
, uint32_t mask
)
1497 pci_set_long(buf
, (pci_get_long(buf
) & ~mask
) | val
);
1500 static void vfio_add_emulated_long(VFIOPCIDevice
*vdev
, int pos
,
1501 uint32_t val
, uint32_t mask
)
1503 vfio_set_long_bits(vdev
->pdev
.config
+ pos
, val
, mask
);
1504 vfio_set_long_bits(vdev
->pdev
.wmask
+ pos
, ~mask
, mask
);
1505 vfio_set_long_bits(vdev
->emulated_config_bits
+ pos
, mask
, mask
);
1508 static int vfio_setup_pcie_cap(VFIOPCIDevice
*vdev
, int pos
, uint8_t size
)
1513 flags
= pci_get_word(vdev
->pdev
.config
+ pos
+ PCI_CAP_FLAGS
);
1514 type
= (flags
& PCI_EXP_FLAGS_TYPE
) >> 4;
1516 if (type
!= PCI_EXP_TYPE_ENDPOINT
&&
1517 type
!= PCI_EXP_TYPE_LEG_END
&&
1518 type
!= PCI_EXP_TYPE_RC_END
) {
1520 error_report("vfio: Assignment of PCIe type 0x%x "
1521 "devices is not currently supported", type
);
1525 if (!pci_bus_is_express(vdev
->pdev
.bus
)) {
1527 * Use express capability as-is on PCI bus. It doesn't make much
1528 * sense to even expose, but some drivers (ex. tg3) depend on it
1529 * and guests don't seem to be particular about it. We'll need
1530 * to revist this or force express devices to express buses if we
1531 * ever expose an IOMMU to the guest.
1533 } else if (pci_bus_is_root(vdev
->pdev
.bus
)) {
1535 * On a Root Complex bus Endpoints become Root Complex Integrated
1536 * Endpoints, which changes the type and clears the LNK & LNK2 fields.
1538 if (type
== PCI_EXP_TYPE_ENDPOINT
) {
1539 vfio_add_emulated_word(vdev
, pos
+ PCI_CAP_FLAGS
,
1540 PCI_EXP_TYPE_RC_END
<< 4,
1541 PCI_EXP_FLAGS_TYPE
);
1543 /* Link Capabilities, Status, and Control goes away */
1544 if (size
> PCI_EXP_LNKCTL
) {
1545 vfio_add_emulated_long(vdev
, pos
+ PCI_EXP_LNKCAP
, 0, ~0);
1546 vfio_add_emulated_word(vdev
, pos
+ PCI_EXP_LNKCTL
, 0, ~0);
1547 vfio_add_emulated_word(vdev
, pos
+ PCI_EXP_LNKSTA
, 0, ~0);
1549 #ifndef PCI_EXP_LNKCAP2
1550 #define PCI_EXP_LNKCAP2 44
1552 #ifndef PCI_EXP_LNKSTA2
1553 #define PCI_EXP_LNKSTA2 50
1555 /* Link 2 Capabilities, Status, and Control goes away */
1556 if (size
> PCI_EXP_LNKCAP2
) {
1557 vfio_add_emulated_long(vdev
, pos
+ PCI_EXP_LNKCAP2
, 0, ~0);
1558 vfio_add_emulated_word(vdev
, pos
+ PCI_EXP_LNKCTL2
, 0, ~0);
1559 vfio_add_emulated_word(vdev
, pos
+ PCI_EXP_LNKSTA2
, 0, ~0);
1563 } else if (type
== PCI_EXP_TYPE_LEG_END
) {
1565 * Legacy endpoints don't belong on the root complex. Windows
1566 * seems to be happier with devices if we skip the capability.
1573 * Convert Root Complex Integrated Endpoints to regular endpoints.
1574 * These devices don't support LNK/LNK2 capabilities, so make them up.
1576 if (type
== PCI_EXP_TYPE_RC_END
) {
1577 vfio_add_emulated_word(vdev
, pos
+ PCI_CAP_FLAGS
,
1578 PCI_EXP_TYPE_ENDPOINT
<< 4,
1579 PCI_EXP_FLAGS_TYPE
);
1580 vfio_add_emulated_long(vdev
, pos
+ PCI_EXP_LNKCAP
,
1581 PCI_EXP_LNK_MLW_1
| PCI_EXP_LNK_LS_25
, ~0);
1582 vfio_add_emulated_word(vdev
, pos
+ PCI_EXP_LNKCTL
, 0, ~0);
1585 /* Mark the Link Status bits as emulated to allow virtual negotiation */
1586 vfio_add_emulated_word(vdev
, pos
+ PCI_EXP_LNKSTA
,
1587 pci_get_word(vdev
->pdev
.config
+ pos
+
1589 PCI_EXP_LNKCAP_MLW
| PCI_EXP_LNKCAP_SLS
);
1592 pos
= pci_add_capability(&vdev
->pdev
, PCI_CAP_ID_EXP
, pos
, size
);
1594 vdev
->pdev
.exp
.exp_cap
= pos
;
1600 static void vfio_check_pcie_flr(VFIOPCIDevice
*vdev
, uint8_t pos
)
1602 uint32_t cap
= pci_get_long(vdev
->pdev
.config
+ pos
+ PCI_EXP_DEVCAP
);
1604 if (cap
& PCI_EXP_DEVCAP_FLR
) {
1605 trace_vfio_check_pcie_flr(vdev
->vbasedev
.name
);
1606 vdev
->has_flr
= true;
1610 static void vfio_check_pm_reset(VFIOPCIDevice
*vdev
, uint8_t pos
)
1612 uint16_t csr
= pci_get_word(vdev
->pdev
.config
+ pos
+ PCI_PM_CTRL
);
1614 if (!(csr
& PCI_PM_CTRL_NO_SOFT_RESET
)) {
1615 trace_vfio_check_pm_reset(vdev
->vbasedev
.name
);
1616 vdev
->has_pm_reset
= true;
1620 static void vfio_check_af_flr(VFIOPCIDevice
*vdev
, uint8_t pos
)
1622 uint8_t cap
= pci_get_byte(vdev
->pdev
.config
+ pos
+ PCI_AF_CAP
);
1624 if ((cap
& PCI_AF_CAP_TP
) && (cap
& PCI_AF_CAP_FLR
)) {
1625 trace_vfio_check_af_flr(vdev
->vbasedev
.name
);
1626 vdev
->has_flr
= true;
1630 static int vfio_add_std_cap(VFIOPCIDevice
*vdev
, uint8_t pos
)
1632 PCIDevice
*pdev
= &vdev
->pdev
;
1633 uint8_t cap_id
, next
, size
;
1636 cap_id
= pdev
->config
[pos
];
1637 next
= pdev
->config
[pos
+ 1];
1640 * If it becomes important to configure capabilities to their actual
1641 * size, use this as the default when it's something we don't recognize.
1642 * Since QEMU doesn't actually handle many of the config accesses,
1643 * exact size doesn't seem worthwhile.
1645 size
= vfio_std_cap_max_size(pdev
, pos
);
1648 * pci_add_capability always inserts the new capability at the head
1649 * of the chain. Therefore to end up with a chain that matches the
1650 * physical device, we insert from the end by making this recursive.
1651 * This is also why we pre-caclulate size above as cached config space
1652 * will be changed as we unwind the stack.
1655 ret
= vfio_add_std_cap(vdev
, next
);
1660 /* Begin the rebuild, use QEMU emulated list bits */
1661 pdev
->config
[PCI_CAPABILITY_LIST
] = 0;
1662 vdev
->emulated_config_bits
[PCI_CAPABILITY_LIST
] = 0xff;
1663 vdev
->emulated_config_bits
[PCI_STATUS
] |= PCI_STATUS_CAP_LIST
;
1666 /* Use emulated next pointer to allow dropping caps */
1667 pci_set_byte(vdev
->emulated_config_bits
+ pos
+ 1, 0xff);
1670 case PCI_CAP_ID_MSI
:
1671 ret
= vfio_msi_setup(vdev
, pos
);
1673 case PCI_CAP_ID_EXP
:
1674 vfio_check_pcie_flr(vdev
, pos
);
1675 ret
= vfio_setup_pcie_cap(vdev
, pos
, size
);
1677 case PCI_CAP_ID_MSIX
:
1678 ret
= vfio_msix_setup(vdev
, pos
);
1681 vfio_check_pm_reset(vdev
, pos
);
1683 ret
= pci_add_capability(pdev
, cap_id
, pos
, size
);
1686 vfio_check_af_flr(vdev
, pos
);
1687 ret
= pci_add_capability(pdev
, cap_id
, pos
, size
);
1690 ret
= pci_add_capability(pdev
, cap_id
, pos
, size
);
1695 error_report("vfio: %04x:%02x:%02x.%x Error adding PCI capability "
1696 "0x%x[0x%x]@0x%x: %d", vdev
->host
.domain
,
1697 vdev
->host
.bus
, vdev
->host
.slot
, vdev
->host
.function
,
1698 cap_id
, size
, pos
, ret
);
1705 static int vfio_add_capabilities(VFIOPCIDevice
*vdev
)
1707 PCIDevice
*pdev
= &vdev
->pdev
;
1709 if (!(pdev
->config
[PCI_STATUS
] & PCI_STATUS_CAP_LIST
) ||
1710 !pdev
->config
[PCI_CAPABILITY_LIST
]) {
1711 return 0; /* Nothing to add */
1714 return vfio_add_std_cap(vdev
, pdev
->config
[PCI_CAPABILITY_LIST
]);
1717 static void vfio_pci_pre_reset(VFIOPCIDevice
*vdev
)
1719 PCIDevice
*pdev
= &vdev
->pdev
;
1722 vfio_disable_interrupts(vdev
);
1724 /* Make sure the device is in D0 */
1729 pmcsr
= vfio_pci_read_config(pdev
, vdev
->pm_cap
+ PCI_PM_CTRL
, 2);
1730 state
= pmcsr
& PCI_PM_CTRL_STATE_MASK
;
1732 pmcsr
&= ~PCI_PM_CTRL_STATE_MASK
;
1733 vfio_pci_write_config(pdev
, vdev
->pm_cap
+ PCI_PM_CTRL
, pmcsr
, 2);
1734 /* vfio handles the necessary delay here */
1735 pmcsr
= vfio_pci_read_config(pdev
, vdev
->pm_cap
+ PCI_PM_CTRL
, 2);
1736 state
= pmcsr
& PCI_PM_CTRL_STATE_MASK
;
1738 error_report("vfio: Unable to power on device, stuck in D%d",
1745 * Stop any ongoing DMA by disconecting I/O, MMIO, and bus master.
1746 * Also put INTx Disable in known state.
1748 cmd
= vfio_pci_read_config(pdev
, PCI_COMMAND
, 2);
1749 cmd
&= ~(PCI_COMMAND_IO
| PCI_COMMAND_MEMORY
| PCI_COMMAND_MASTER
|
1750 PCI_COMMAND_INTX_DISABLE
);
1751 vfio_pci_write_config(pdev
, PCI_COMMAND
, cmd
, 2);
1754 static void vfio_pci_post_reset(VFIOPCIDevice
*vdev
)
1756 vfio_intx_enable(vdev
);
1759 static bool vfio_pci_host_match(PCIHostDeviceAddress
*host1
,
1760 PCIHostDeviceAddress
*host2
)
1762 return (host1
->domain
== host2
->domain
&& host1
->bus
== host2
->bus
&&
1763 host1
->slot
== host2
->slot
&& host1
->function
== host2
->function
);
1766 static int vfio_pci_hot_reset(VFIOPCIDevice
*vdev
, bool single
)
1769 struct vfio_pci_hot_reset_info
*info
;
1770 struct vfio_pci_dependent_device
*devices
;
1771 struct vfio_pci_hot_reset
*reset
;
1776 trace_vfio_pci_hot_reset(vdev
->vbasedev
.name
, single
? "one" : "multi");
1778 vfio_pci_pre_reset(vdev
);
1779 vdev
->vbasedev
.needs_reset
= false;
1781 info
= g_malloc0(sizeof(*info
));
1782 info
->argsz
= sizeof(*info
);
1784 ret
= ioctl(vdev
->vbasedev
.fd
, VFIO_DEVICE_GET_PCI_HOT_RESET_INFO
, info
);
1785 if (ret
&& errno
!= ENOSPC
) {
1787 if (!vdev
->has_pm_reset
) {
1788 error_report("vfio: Cannot reset device %04x:%02x:%02x.%x, "
1789 "no available reset mechanism.", vdev
->host
.domain
,
1790 vdev
->host
.bus
, vdev
->host
.slot
, vdev
->host
.function
);
1795 count
= info
->count
;
1796 info
= g_realloc(info
, sizeof(*info
) + (count
* sizeof(*devices
)));
1797 info
->argsz
= sizeof(*info
) + (count
* sizeof(*devices
));
1798 devices
= &info
->devices
[0];
1800 ret
= ioctl(vdev
->vbasedev
.fd
, VFIO_DEVICE_GET_PCI_HOT_RESET_INFO
, info
);
1803 error_report("vfio: hot reset info failed: %m");
1807 trace_vfio_pci_hot_reset_has_dep_devices(vdev
->vbasedev
.name
);
1809 /* Verify that we have all the groups required */
1810 for (i
= 0; i
< info
->count
; i
++) {
1811 PCIHostDeviceAddress host
;
1813 VFIODevice
*vbasedev_iter
;
1815 host
.domain
= devices
[i
].segment
;
1816 host
.bus
= devices
[i
].bus
;
1817 host
.slot
= PCI_SLOT(devices
[i
].devfn
);
1818 host
.function
= PCI_FUNC(devices
[i
].devfn
);
1820 trace_vfio_pci_hot_reset_dep_devices(host
.domain
,
1821 host
.bus
, host
.slot
, host
.function
, devices
[i
].group_id
);
1823 if (vfio_pci_host_match(&host
, &vdev
->host
)) {
1827 QLIST_FOREACH(group
, &vfio_group_list
, next
) {
1828 if (group
->groupid
== devices
[i
].group_id
) {
1834 if (!vdev
->has_pm_reset
) {
1835 error_report("vfio: Cannot reset device %s, "
1836 "depends on group %d which is not owned.",
1837 vdev
->vbasedev
.name
, devices
[i
].group_id
);
1843 /* Prep dependent devices for reset and clear our marker. */
1844 QLIST_FOREACH(vbasedev_iter
, &group
->device_list
, next
) {
1845 if (vbasedev_iter
->type
!= VFIO_DEVICE_TYPE_PCI
) {
1848 tmp
= container_of(vbasedev_iter
, VFIOPCIDevice
, vbasedev
);
1849 if (vfio_pci_host_match(&host
, &tmp
->host
)) {
1854 vfio_pci_pre_reset(tmp
);
1855 tmp
->vbasedev
.needs_reset
= false;
1862 if (!single
&& !multi
) {
1867 /* Determine how many group fds need to be passed */
1869 QLIST_FOREACH(group
, &vfio_group_list
, next
) {
1870 for (i
= 0; i
< info
->count
; i
++) {
1871 if (group
->groupid
== devices
[i
].group_id
) {
1878 reset
= g_malloc0(sizeof(*reset
) + (count
* sizeof(*fds
)));
1879 reset
->argsz
= sizeof(*reset
) + (count
* sizeof(*fds
));
1880 fds
= &reset
->group_fds
[0];
1882 /* Fill in group fds */
1883 QLIST_FOREACH(group
, &vfio_group_list
, next
) {
1884 for (i
= 0; i
< info
->count
; i
++) {
1885 if (group
->groupid
== devices
[i
].group_id
) {
1886 fds
[reset
->count
++] = group
->fd
;
1893 ret
= ioctl(vdev
->vbasedev
.fd
, VFIO_DEVICE_PCI_HOT_RESET
, reset
);
1896 trace_vfio_pci_hot_reset_result(vdev
->vbasedev
.name
,
1897 ret
? "%m" : "Success");
1900 /* Re-enable INTx on affected devices */
1901 for (i
= 0; i
< info
->count
; i
++) {
1902 PCIHostDeviceAddress host
;
1904 VFIODevice
*vbasedev_iter
;
1906 host
.domain
= devices
[i
].segment
;
1907 host
.bus
= devices
[i
].bus
;
1908 host
.slot
= PCI_SLOT(devices
[i
].devfn
);
1909 host
.function
= PCI_FUNC(devices
[i
].devfn
);
1911 if (vfio_pci_host_match(&host
, &vdev
->host
)) {
1915 QLIST_FOREACH(group
, &vfio_group_list
, next
) {
1916 if (group
->groupid
== devices
[i
].group_id
) {
1925 QLIST_FOREACH(vbasedev_iter
, &group
->device_list
, next
) {
1926 if (vbasedev_iter
->type
!= VFIO_DEVICE_TYPE_PCI
) {
1929 tmp
= container_of(vbasedev_iter
, VFIOPCIDevice
, vbasedev
);
1930 if (vfio_pci_host_match(&host
, &tmp
->host
)) {
1931 vfio_pci_post_reset(tmp
);
1937 vfio_pci_post_reset(vdev
);
1944 * We want to differentiate hot reset of mulitple in-use devices vs hot reset
1945 * of a single in-use device. VFIO_DEVICE_RESET will already handle the case
1946 * of doing hot resets when there is only a single device per bus. The in-use
1947 * here refers to how many VFIODevices are affected. A hot reset that affects
1948 * multiple devices, but only a single in-use device, means that we can call
1949 * it from our bus ->reset() callback since the extent is effectively a single
1950 * device. This allows us to make use of it in the hotplug path. When there
1951 * are multiple in-use devices, we can only trigger the hot reset during a
1952 * system reset and thus from our reset handler. We separate _one vs _multi
1953 * here so that we don't overlap and do a double reset on the system reset
1954 * path where both our reset handler and ->reset() callback are used. Calling
1955 * _one() will only do a hot reset for the one in-use devices case, calling
1956 * _multi() will do nothing if a _one() would have been sufficient.
1958 static int vfio_pci_hot_reset_one(VFIOPCIDevice
*vdev
)
1960 return vfio_pci_hot_reset(vdev
, true);
1963 static int vfio_pci_hot_reset_multi(VFIODevice
*vbasedev
)
1965 VFIOPCIDevice
*vdev
= container_of(vbasedev
, VFIOPCIDevice
, vbasedev
);
1966 return vfio_pci_hot_reset(vdev
, false);
1969 static void vfio_pci_compute_needs_reset(VFIODevice
*vbasedev
)
1971 VFIOPCIDevice
*vdev
= container_of(vbasedev
, VFIOPCIDevice
, vbasedev
);
1972 if (!vbasedev
->reset_works
|| (!vdev
->has_flr
&& vdev
->has_pm_reset
)) {
1973 vbasedev
->needs_reset
= true;
1977 static VFIODeviceOps vfio_pci_ops
= {
1978 .vfio_compute_needs_reset
= vfio_pci_compute_needs_reset
,
1979 .vfio_hot_reset_multi
= vfio_pci_hot_reset_multi
,
1980 .vfio_eoi
= vfio_intx_eoi
,
1983 static int vfio_populate_device(VFIOPCIDevice
*vdev
)
1985 VFIODevice
*vbasedev
= &vdev
->vbasedev
;
1986 struct vfio_region_info reg_info
= { .argsz
= sizeof(reg_info
) };
1987 struct vfio_irq_info irq_info
= { .argsz
= sizeof(irq_info
) };
1990 /* Sanity check device */
1991 if (!(vbasedev
->flags
& VFIO_DEVICE_FLAGS_PCI
)) {
1992 error_report("vfio: Um, this isn't a PCI device");
1996 if (vbasedev
->num_regions
< VFIO_PCI_CONFIG_REGION_INDEX
+ 1) {
1997 error_report("vfio: unexpected number of io regions %u",
1998 vbasedev
->num_regions
);
2002 if (vbasedev
->num_irqs
< VFIO_PCI_MSIX_IRQ_INDEX
+ 1) {
2003 error_report("vfio: unexpected number of irqs %u", vbasedev
->num_irqs
);
2007 for (i
= VFIO_PCI_BAR0_REGION_INDEX
; i
< VFIO_PCI_ROM_REGION_INDEX
; i
++) {
2010 ret
= ioctl(vbasedev
->fd
, VFIO_DEVICE_GET_REGION_INFO
, ®_info
);
2012 error_report("vfio: Error getting region %d info: %m", i
);
2016 trace_vfio_populate_device_region(vbasedev
->name
, i
,
2017 (unsigned long)reg_info
.size
,
2018 (unsigned long)reg_info
.offset
,
2019 (unsigned long)reg_info
.flags
);
2021 vdev
->bars
[i
].region
.vbasedev
= vbasedev
;
2022 vdev
->bars
[i
].region
.flags
= reg_info
.flags
;
2023 vdev
->bars
[i
].region
.size
= reg_info
.size
;
2024 vdev
->bars
[i
].region
.fd_offset
= reg_info
.offset
;
2025 vdev
->bars
[i
].region
.nr
= i
;
2026 QLIST_INIT(&vdev
->bars
[i
].quirks
);
2029 reg_info
.index
= VFIO_PCI_CONFIG_REGION_INDEX
;
2031 ret
= ioctl(vdev
->vbasedev
.fd
, VFIO_DEVICE_GET_REGION_INFO
, ®_info
);
2033 error_report("vfio: Error getting config info: %m");
2037 trace_vfio_populate_device_config(vdev
->vbasedev
.name
,
2038 (unsigned long)reg_info
.size
,
2039 (unsigned long)reg_info
.offset
,
2040 (unsigned long)reg_info
.flags
);
2042 vdev
->config_size
= reg_info
.size
;
2043 if (vdev
->config_size
== PCI_CONFIG_SPACE_SIZE
) {
2044 vdev
->pdev
.cap_present
&= ~QEMU_PCI_CAP_EXPRESS
;
2046 vdev
->config_offset
= reg_info
.offset
;
2048 if ((vdev
->features
& VFIO_FEATURE_ENABLE_VGA
) &&
2049 vbasedev
->num_regions
> VFIO_PCI_VGA_REGION_INDEX
) {
2050 struct vfio_region_info vga_info
= {
2051 .argsz
= sizeof(vga_info
),
2052 .index
= VFIO_PCI_VGA_REGION_INDEX
,
2055 ret
= ioctl(vdev
->vbasedev
.fd
, VFIO_DEVICE_GET_REGION_INFO
, &vga_info
);
2058 "vfio: Device does not support requested feature x-vga");
2062 if (!(vga_info
.flags
& VFIO_REGION_INFO_FLAG_READ
) ||
2063 !(vga_info
.flags
& VFIO_REGION_INFO_FLAG_WRITE
) ||
2064 vga_info
.size
< 0xbffff + 1) {
2065 error_report("vfio: Unexpected VGA info, flags 0x%lx, size 0x%lx",
2066 (unsigned long)vga_info
.flags
,
2067 (unsigned long)vga_info
.size
);
2071 vdev
->vga
.fd_offset
= vga_info
.offset
;
2072 vdev
->vga
.fd
= vdev
->vbasedev
.fd
;
2074 vdev
->vga
.region
[QEMU_PCI_VGA_MEM
].offset
= QEMU_PCI_VGA_MEM_BASE
;
2075 vdev
->vga
.region
[QEMU_PCI_VGA_MEM
].nr
= QEMU_PCI_VGA_MEM
;
2076 QLIST_INIT(&vdev
->vga
.region
[QEMU_PCI_VGA_MEM
].quirks
);
2078 vdev
->vga
.region
[QEMU_PCI_VGA_IO_LO
].offset
= QEMU_PCI_VGA_IO_LO_BASE
;
2079 vdev
->vga
.region
[QEMU_PCI_VGA_IO_LO
].nr
= QEMU_PCI_VGA_IO_LO
;
2080 QLIST_INIT(&vdev
->vga
.region
[QEMU_PCI_VGA_IO_LO
].quirks
);
2082 vdev
->vga
.region
[QEMU_PCI_VGA_IO_HI
].offset
= QEMU_PCI_VGA_IO_HI_BASE
;
2083 vdev
->vga
.region
[QEMU_PCI_VGA_IO_HI
].nr
= QEMU_PCI_VGA_IO_HI
;
2084 QLIST_INIT(&vdev
->vga
.region
[QEMU_PCI_VGA_IO_HI
].quirks
);
2086 vdev
->has_vga
= true;
2089 irq_info
.index
= VFIO_PCI_ERR_IRQ_INDEX
;
2091 ret
= ioctl(vdev
->vbasedev
.fd
, VFIO_DEVICE_GET_IRQ_INFO
, &irq_info
);
2093 /* This can fail for an old kernel or legacy PCI dev */
2094 trace_vfio_populate_device_get_irq_info_failure();
2096 } else if (irq_info
.count
== 1) {
2097 vdev
->pci_aer
= true;
2099 error_report("vfio: %s "
2100 "Could not enable error recovery for the device",
2108 static void vfio_put_device(VFIOPCIDevice
*vdev
)
2110 g_free(vdev
->vbasedev
.name
);
2112 object_unparent(OBJECT(&vdev
->msix
->mmap_mem
));
2116 vfio_put_base_device(&vdev
->vbasedev
);
2119 static void vfio_err_notifier_handler(void *opaque
)
2121 VFIOPCIDevice
*vdev
= opaque
;
2123 if (!event_notifier_test_and_clear(&vdev
->err_notifier
)) {
2128 * TBD. Retrieve the error details and decide what action
2129 * needs to be taken. One of the actions could be to pass
2130 * the error to the guest and have the guest driver recover
2131 * from the error. This requires that PCIe capabilities be
2132 * exposed to the guest. For now, we just terminate the
2133 * guest to contain the error.
2136 error_report("%s(%04x:%02x:%02x.%x) Unrecoverable error detected. "
2137 "Please collect any data possible and then kill the guest",
2138 __func__
, vdev
->host
.domain
, vdev
->host
.bus
,
2139 vdev
->host
.slot
, vdev
->host
.function
);
2141 vm_stop(RUN_STATE_INTERNAL_ERROR
);
2145 * Registers error notifier for devices supporting error recovery.
2146 * If we encounter a failure in this function, we report an error
2147 * and continue after disabling error recovery support for the
2150 static void vfio_register_err_notifier(VFIOPCIDevice
*vdev
)
2154 struct vfio_irq_set
*irq_set
;
2157 if (!vdev
->pci_aer
) {
2161 if (event_notifier_init(&vdev
->err_notifier
, 0)) {
2162 error_report("vfio: Unable to init event notifier for error detection");
2163 vdev
->pci_aer
= false;
2167 argsz
= sizeof(*irq_set
) + sizeof(*pfd
);
2169 irq_set
= g_malloc0(argsz
);
2170 irq_set
->argsz
= argsz
;
2171 irq_set
->flags
= VFIO_IRQ_SET_DATA_EVENTFD
|
2172 VFIO_IRQ_SET_ACTION_TRIGGER
;
2173 irq_set
->index
= VFIO_PCI_ERR_IRQ_INDEX
;
2176 pfd
= (int32_t *)&irq_set
->data
;
2178 *pfd
= event_notifier_get_fd(&vdev
->err_notifier
);
2179 qemu_set_fd_handler(*pfd
, vfio_err_notifier_handler
, NULL
, vdev
);
2181 ret
= ioctl(vdev
->vbasedev
.fd
, VFIO_DEVICE_SET_IRQS
, irq_set
);
2183 error_report("vfio: Failed to set up error notification");
2184 qemu_set_fd_handler(*pfd
, NULL
, NULL
, vdev
);
2185 event_notifier_cleanup(&vdev
->err_notifier
);
2186 vdev
->pci_aer
= false;
2191 static void vfio_unregister_err_notifier(VFIOPCIDevice
*vdev
)
2194 struct vfio_irq_set
*irq_set
;
2198 if (!vdev
->pci_aer
) {
2202 argsz
= sizeof(*irq_set
) + sizeof(*pfd
);
2204 irq_set
= g_malloc0(argsz
);
2205 irq_set
->argsz
= argsz
;
2206 irq_set
->flags
= VFIO_IRQ_SET_DATA_EVENTFD
|
2207 VFIO_IRQ_SET_ACTION_TRIGGER
;
2208 irq_set
->index
= VFIO_PCI_ERR_IRQ_INDEX
;
2211 pfd
= (int32_t *)&irq_set
->data
;
2214 ret
= ioctl(vdev
->vbasedev
.fd
, VFIO_DEVICE_SET_IRQS
, irq_set
);
2216 error_report("vfio: Failed to de-assign error fd: %m");
2219 qemu_set_fd_handler(event_notifier_get_fd(&vdev
->err_notifier
),
2221 event_notifier_cleanup(&vdev
->err_notifier
);
2224 static void vfio_req_notifier_handler(void *opaque
)
2226 VFIOPCIDevice
*vdev
= opaque
;
2228 if (!event_notifier_test_and_clear(&vdev
->req_notifier
)) {
2232 qdev_unplug(&vdev
->pdev
.qdev
, NULL
);
2235 static void vfio_register_req_notifier(VFIOPCIDevice
*vdev
)
2237 struct vfio_irq_info irq_info
= { .argsz
= sizeof(irq_info
),
2238 .index
= VFIO_PCI_REQ_IRQ_INDEX
};
2240 struct vfio_irq_set
*irq_set
;
2243 if (!(vdev
->features
& VFIO_FEATURE_ENABLE_REQ
)) {
2247 if (ioctl(vdev
->vbasedev
.fd
,
2248 VFIO_DEVICE_GET_IRQ_INFO
, &irq_info
) < 0 || irq_info
.count
< 1) {
2252 if (event_notifier_init(&vdev
->req_notifier
, 0)) {
2253 error_report("vfio: Unable to init event notifier for device request");
2257 argsz
= sizeof(*irq_set
) + sizeof(*pfd
);
2259 irq_set
= g_malloc0(argsz
);
2260 irq_set
->argsz
= argsz
;
2261 irq_set
->flags
= VFIO_IRQ_SET_DATA_EVENTFD
|
2262 VFIO_IRQ_SET_ACTION_TRIGGER
;
2263 irq_set
->index
= VFIO_PCI_REQ_IRQ_INDEX
;
2266 pfd
= (int32_t *)&irq_set
->data
;
2268 *pfd
= event_notifier_get_fd(&vdev
->req_notifier
);
2269 qemu_set_fd_handler(*pfd
, vfio_req_notifier_handler
, NULL
, vdev
);
2271 if (ioctl(vdev
->vbasedev
.fd
, VFIO_DEVICE_SET_IRQS
, irq_set
)) {
2272 error_report("vfio: Failed to set up device request notification");
2273 qemu_set_fd_handler(*pfd
, NULL
, NULL
, vdev
);
2274 event_notifier_cleanup(&vdev
->req_notifier
);
2276 vdev
->req_enabled
= true;
2282 static void vfio_unregister_req_notifier(VFIOPCIDevice
*vdev
)
2285 struct vfio_irq_set
*irq_set
;
2288 if (!vdev
->req_enabled
) {
2292 argsz
= sizeof(*irq_set
) + sizeof(*pfd
);
2294 irq_set
= g_malloc0(argsz
);
2295 irq_set
->argsz
= argsz
;
2296 irq_set
->flags
= VFIO_IRQ_SET_DATA_EVENTFD
|
2297 VFIO_IRQ_SET_ACTION_TRIGGER
;
2298 irq_set
->index
= VFIO_PCI_REQ_IRQ_INDEX
;
2301 pfd
= (int32_t *)&irq_set
->data
;
2304 if (ioctl(vdev
->vbasedev
.fd
, VFIO_DEVICE_SET_IRQS
, irq_set
)) {
2305 error_report("vfio: Failed to de-assign device request fd: %m");
2308 qemu_set_fd_handler(event_notifier_get_fd(&vdev
->req_notifier
),
2310 event_notifier_cleanup(&vdev
->req_notifier
);
2312 vdev
->req_enabled
= false;
2315 static int vfio_initfn(PCIDevice
*pdev
)
2317 VFIOPCIDevice
*vdev
= DO_UPCAST(VFIOPCIDevice
, pdev
, pdev
);
2318 VFIODevice
*vbasedev_iter
;
2320 char path
[PATH_MAX
], iommu_group_path
[PATH_MAX
], *group_name
;
2326 /* Check that the host device exists */
2327 snprintf(path
, sizeof(path
),
2328 "/sys/bus/pci/devices/%04x:%02x:%02x.%01x/",
2329 vdev
->host
.domain
, vdev
->host
.bus
, vdev
->host
.slot
,
2330 vdev
->host
.function
);
2331 if (stat(path
, &st
) < 0) {
2332 error_report("vfio: error: no such host device: %s", path
);
2336 vdev
->vbasedev
.ops
= &vfio_pci_ops
;
2338 vdev
->vbasedev
.type
= VFIO_DEVICE_TYPE_PCI
;
2339 vdev
->vbasedev
.name
= g_strdup_printf("%04x:%02x:%02x.%01x",
2340 vdev
->host
.domain
, vdev
->host
.bus
,
2341 vdev
->host
.slot
, vdev
->host
.function
);
2343 strncat(path
, "iommu_group", sizeof(path
) - strlen(path
) - 1);
2345 len
= readlink(path
, iommu_group_path
, sizeof(path
));
2346 if (len
<= 0 || len
>= sizeof(path
)) {
2347 error_report("vfio: error no iommu_group for device");
2348 return len
< 0 ? -errno
: -ENAMETOOLONG
;
2351 iommu_group_path
[len
] = 0;
2352 group_name
= basename(iommu_group_path
);
2354 if (sscanf(group_name
, "%d", &groupid
) != 1) {
2355 error_report("vfio: error reading %s: %m", path
);
2359 trace_vfio_initfn(vdev
->vbasedev
.name
, groupid
);
2361 group
= vfio_get_group(groupid
, pci_device_iommu_address_space(pdev
));
2363 error_report("vfio: failed to get group %d", groupid
);
2367 snprintf(path
, sizeof(path
), "%04x:%02x:%02x.%01x",
2368 vdev
->host
.domain
, vdev
->host
.bus
, vdev
->host
.slot
,
2369 vdev
->host
.function
);
2371 QLIST_FOREACH(vbasedev_iter
, &group
->device_list
, next
) {
2372 if (strcmp(vbasedev_iter
->name
, vdev
->vbasedev
.name
) == 0) {
2373 error_report("vfio: error: device %s is already attached", path
);
2374 vfio_put_group(group
);
2379 ret
= vfio_get_device(group
, path
, &vdev
->vbasedev
);
2381 error_report("vfio: failed to get device %s", path
);
2382 vfio_put_group(group
);
2386 ret
= vfio_populate_device(vdev
);
2391 /* Get a copy of config space */
2392 ret
= pread(vdev
->vbasedev
.fd
, vdev
->pdev
.config
,
2393 MIN(pci_config_size(&vdev
->pdev
), vdev
->config_size
),
2394 vdev
->config_offset
);
2395 if (ret
< (int)MIN(pci_config_size(&vdev
->pdev
), vdev
->config_size
)) {
2396 ret
= ret
< 0 ? -errno
: -EFAULT
;
2397 error_report("vfio: Failed to read device config space");
2401 /* vfio emulates a lot for us, but some bits need extra love */
2402 vdev
->emulated_config_bits
= g_malloc0(vdev
->config_size
);
2404 /* QEMU can choose to expose the ROM or not */
2405 memset(vdev
->emulated_config_bits
+ PCI_ROM_ADDRESS
, 0xff, 4);
2408 * The PCI spec reserves vendor ID 0xffff as an invalid value. The
2409 * device ID is managed by the vendor and need only be a 16-bit value.
2410 * Allow any 16-bit value for subsystem so they can be hidden or changed.
2412 if (vdev
->vendor_id
!= PCI_ANY_ID
) {
2413 if (vdev
->vendor_id
>= 0xffff) {
2414 error_report("vfio: Invalid PCI vendor ID provided");
2417 vfio_add_emulated_word(vdev
, PCI_VENDOR_ID
, vdev
->vendor_id
, ~0);
2418 trace_vfio_pci_emulated_vendor_id(vdev
->vbasedev
.name
, vdev
->vendor_id
);
2420 vdev
->vendor_id
= pci_get_word(pdev
->config
+ PCI_VENDOR_ID
);
2423 if (vdev
->device_id
!= PCI_ANY_ID
) {
2424 if (vdev
->device_id
> 0xffff) {
2425 error_report("vfio: Invalid PCI device ID provided");
2428 vfio_add_emulated_word(vdev
, PCI_DEVICE_ID
, vdev
->device_id
, ~0);
2429 trace_vfio_pci_emulated_device_id(vdev
->vbasedev
.name
, vdev
->device_id
);
2431 vdev
->device_id
= pci_get_word(pdev
->config
+ PCI_DEVICE_ID
);
2434 if (vdev
->sub_vendor_id
!= PCI_ANY_ID
) {
2435 if (vdev
->sub_vendor_id
> 0xffff) {
2436 error_report("vfio: Invalid PCI subsystem vendor ID provided");
2439 vfio_add_emulated_word(vdev
, PCI_SUBSYSTEM_VENDOR_ID
,
2440 vdev
->sub_vendor_id
, ~0);
2441 trace_vfio_pci_emulated_sub_vendor_id(vdev
->vbasedev
.name
,
2442 vdev
->sub_vendor_id
);
2445 if (vdev
->sub_device_id
!= PCI_ANY_ID
) {
2446 if (vdev
->sub_device_id
> 0xffff) {
2447 error_report("vfio: Invalid PCI subsystem device ID provided");
2450 vfio_add_emulated_word(vdev
, PCI_SUBSYSTEM_ID
, vdev
->sub_device_id
, ~0);
2451 trace_vfio_pci_emulated_sub_device_id(vdev
->vbasedev
.name
,
2452 vdev
->sub_device_id
);
2455 /* QEMU can change multi-function devices to single function, or reverse */
2456 vdev
->emulated_config_bits
[PCI_HEADER_TYPE
] =
2457 PCI_HEADER_TYPE_MULTI_FUNCTION
;
2459 /* Restore or clear multifunction, this is always controlled by QEMU */
2460 if (vdev
->pdev
.cap_present
& QEMU_PCI_CAP_MULTIFUNCTION
) {
2461 vdev
->pdev
.config
[PCI_HEADER_TYPE
] |= PCI_HEADER_TYPE_MULTI_FUNCTION
;
2463 vdev
->pdev
.config
[PCI_HEADER_TYPE
] &= ~PCI_HEADER_TYPE_MULTI_FUNCTION
;
2467 * Clear host resource mapping info. If we choose not to register a
2468 * BAR, such as might be the case with the option ROM, we can get
2469 * confusing, unwritable, residual addresses from the host here.
2471 memset(&vdev
->pdev
.config
[PCI_BASE_ADDRESS_0
], 0, 24);
2472 memset(&vdev
->pdev
.config
[PCI_ROM_ADDRESS
], 0, 4);
2474 vfio_pci_size_rom(vdev
);
2476 ret
= vfio_msix_early_setup(vdev
);
2481 vfio_map_bars(vdev
);
2483 ret
= vfio_add_capabilities(vdev
);
2488 /* QEMU emulates all of MSI & MSIX */
2489 if (pdev
->cap_present
& QEMU_PCI_CAP_MSIX
) {
2490 memset(vdev
->emulated_config_bits
+ pdev
->msix_cap
, 0xff,
2494 if (pdev
->cap_present
& QEMU_PCI_CAP_MSI
) {
2495 memset(vdev
->emulated_config_bits
+ pdev
->msi_cap
, 0xff,
2496 vdev
->msi_cap_size
);
2499 if (vfio_pci_read_config(&vdev
->pdev
, PCI_INTERRUPT_PIN
, 1)) {
2500 vdev
->intx
.mmap_timer
= timer_new_ms(QEMU_CLOCK_VIRTUAL
,
2501 vfio_intx_mmap_enable
, vdev
);
2502 pci_device_set_intx_routing_notifier(&vdev
->pdev
, vfio_intx_update
);
2503 ret
= vfio_intx_enable(vdev
);
2509 vfio_register_err_notifier(vdev
);
2510 vfio_register_req_notifier(vdev
);
2511 vfio_setup_resetfn_quirk(vdev
);
2516 pci_device_set_intx_routing_notifier(&vdev
->pdev
, NULL
);
2517 vfio_teardown_msi(vdev
);
2518 vfio_unregister_bars(vdev
);
2522 static void vfio_instance_finalize(Object
*obj
)
2524 PCIDevice
*pci_dev
= PCI_DEVICE(obj
);
2525 VFIOPCIDevice
*vdev
= DO_UPCAST(VFIOPCIDevice
, pdev
, pci_dev
);
2526 VFIOGroup
*group
= vdev
->vbasedev
.group
;
2528 vfio_unmap_bars(vdev
);
2529 g_free(vdev
->emulated_config_bits
);
2531 vfio_put_device(vdev
);
2532 vfio_put_group(group
);
2535 static void vfio_exitfn(PCIDevice
*pdev
)
2537 VFIOPCIDevice
*vdev
= DO_UPCAST(VFIOPCIDevice
, pdev
, pdev
);
2539 vfio_unregister_req_notifier(vdev
);
2540 vfio_unregister_err_notifier(vdev
);
2541 pci_device_set_intx_routing_notifier(&vdev
->pdev
, NULL
);
2542 vfio_disable_interrupts(vdev
);
2543 if (vdev
->intx
.mmap_timer
) {
2544 timer_free(vdev
->intx
.mmap_timer
);
2546 vfio_teardown_msi(vdev
);
2547 vfio_unregister_bars(vdev
);
2550 static void vfio_pci_reset(DeviceState
*dev
)
2552 PCIDevice
*pdev
= DO_UPCAST(PCIDevice
, qdev
, dev
);
2553 VFIOPCIDevice
*vdev
= DO_UPCAST(VFIOPCIDevice
, pdev
, pdev
);
2555 trace_vfio_pci_reset(vdev
->vbasedev
.name
);
2557 vfio_pci_pre_reset(vdev
);
2559 if (vdev
->resetfn
&& !vdev
->resetfn(vdev
)) {
2563 if (vdev
->vbasedev
.reset_works
&&
2564 (vdev
->has_flr
|| !vdev
->has_pm_reset
) &&
2565 !ioctl(vdev
->vbasedev
.fd
, VFIO_DEVICE_RESET
)) {
2566 trace_vfio_pci_reset_flr(vdev
->vbasedev
.name
);
2570 /* See if we can do our own bus reset */
2571 if (!vfio_pci_hot_reset_one(vdev
)) {
2575 /* If nothing else works and the device supports PM reset, use it */
2576 if (vdev
->vbasedev
.reset_works
&& vdev
->has_pm_reset
&&
2577 !ioctl(vdev
->vbasedev
.fd
, VFIO_DEVICE_RESET
)) {
2578 trace_vfio_pci_reset_pm(vdev
->vbasedev
.name
);
2583 vfio_pci_post_reset(vdev
);
2586 static void vfio_instance_init(Object
*obj
)
2588 PCIDevice
*pci_dev
= PCI_DEVICE(obj
);
2589 VFIOPCIDevice
*vdev
= DO_UPCAST(VFIOPCIDevice
, pdev
, PCI_DEVICE(obj
));
2591 device_add_bootindex_property(obj
, &vdev
->bootindex
,
2593 &pci_dev
->qdev
, NULL
);
2596 static Property vfio_pci_dev_properties
[] = {
2597 DEFINE_PROP_PCI_HOST_DEVADDR("host", VFIOPCIDevice
, host
),
2598 DEFINE_PROP_UINT32("x-intx-mmap-timeout-ms", VFIOPCIDevice
,
2599 intx
.mmap_timeout
, 1100),
2600 DEFINE_PROP_BIT("x-vga", VFIOPCIDevice
, features
,
2601 VFIO_FEATURE_ENABLE_VGA_BIT
, false),
2602 DEFINE_PROP_BIT("x-req", VFIOPCIDevice
, features
,
2603 VFIO_FEATURE_ENABLE_REQ_BIT
, true),
2604 DEFINE_PROP_BOOL("x-no-mmap", VFIOPCIDevice
, vbasedev
.no_mmap
, false),
2605 DEFINE_PROP_BOOL("x-no-kvm-intx", VFIOPCIDevice
, no_kvm_intx
, false),
2606 DEFINE_PROP_BOOL("x-no-kvm-msi", VFIOPCIDevice
, no_kvm_msi
, false),
2607 DEFINE_PROP_BOOL("x-no-kvm-msix", VFIOPCIDevice
, no_kvm_msix
, false),
2608 DEFINE_PROP_UINT32("x-pci-vendor-id", VFIOPCIDevice
, vendor_id
, PCI_ANY_ID
),
2609 DEFINE_PROP_UINT32("x-pci-device-id", VFIOPCIDevice
, device_id
, PCI_ANY_ID
),
2610 DEFINE_PROP_UINT32("x-pci-sub-vendor-id", VFIOPCIDevice
,
2611 sub_vendor_id
, PCI_ANY_ID
),
2612 DEFINE_PROP_UINT32("x-pci-sub-device-id", VFIOPCIDevice
,
2613 sub_device_id
, PCI_ANY_ID
),
2615 * TODO - support passed fds... is this necessary?
2616 * DEFINE_PROP_STRING("vfiofd", VFIOPCIDevice, vfiofd_name),
2617 * DEFINE_PROP_STRING("vfiogroupfd, VFIOPCIDevice, vfiogroupfd_name),
2619 DEFINE_PROP_END_OF_LIST(),
2622 static const VMStateDescription vfio_pci_vmstate
= {
2627 static void vfio_pci_dev_class_init(ObjectClass
*klass
, void *data
)
2629 DeviceClass
*dc
= DEVICE_CLASS(klass
);
2630 PCIDeviceClass
*pdc
= PCI_DEVICE_CLASS(klass
);
2632 dc
->reset
= vfio_pci_reset
;
2633 dc
->props
= vfio_pci_dev_properties
;
2634 dc
->vmsd
= &vfio_pci_vmstate
;
2635 dc
->desc
= "VFIO-based PCI device assignment";
2636 set_bit(DEVICE_CATEGORY_MISC
, dc
->categories
);
2637 pdc
->init
= vfio_initfn
;
2638 pdc
->exit
= vfio_exitfn
;
2639 pdc
->config_read
= vfio_pci_read_config
;
2640 pdc
->config_write
= vfio_pci_write_config
;
2641 pdc
->is_express
= 1; /* We might be */
2644 static const TypeInfo vfio_pci_dev_info
= {
2646 .parent
= TYPE_PCI_DEVICE
,
2647 .instance_size
= sizeof(VFIOPCIDevice
),
2648 .class_init
= vfio_pci_dev_class_init
,
2649 .instance_init
= vfio_instance_init
,
2650 .instance_finalize
= vfio_instance_finalize
,
2653 static void register_vfio_pci_dev_type(void)
2655 type_register_static(&vfio_pci_dev_info
);
2658 type_init(register_vfio_pci_dev_type
)