4 * Copyright IBM, Corp. 2007
5 * Copyright (c) 2009 CodeSourcery
8 * Anthony Liguori <aliguori@us.ibm.com>
9 * Paul Brook <paul@codesourcery.com>
11 * This work is licensed under the terms of the GNU GPL, version 2. See
12 * the COPYING file in the top-level directory.
19 #include "virtio-blk.h"
20 #include "virtio-net.h"
22 #include "qemu-error.h"
29 /* from Linux's linux/virtio_pci.h */
31 /* A 32-bit r/o bitmask of the features supported by the host */
32 #define VIRTIO_PCI_HOST_FEATURES 0
34 /* A 32-bit r/w bitmask of features activated by the guest */
35 #define VIRTIO_PCI_GUEST_FEATURES 4
37 /* A 32-bit r/w PFN for the currently selected queue */
38 #define VIRTIO_PCI_QUEUE_PFN 8
40 /* A 16-bit r/o queue size for the currently selected queue */
41 #define VIRTIO_PCI_QUEUE_NUM 12
43 /* A 16-bit r/w queue selector */
44 #define VIRTIO_PCI_QUEUE_SEL 14
46 /* A 16-bit r/w queue notifier */
47 #define VIRTIO_PCI_QUEUE_NOTIFY 16
49 /* An 8-bit device status register. */
50 #define VIRTIO_PCI_STATUS 18
52 /* An 8-bit r/o interrupt status register. Reading the value will return the
53 * current contents of the ISR and will also clear it. This is effectively
54 * a read-and-acknowledge. */
55 #define VIRTIO_PCI_ISR 19
57 /* MSI-X registers: only enabled if MSI-X is enabled. */
58 /* A 16-bit vector for configuration changes. */
59 #define VIRTIO_MSI_CONFIG_VECTOR 20
60 /* A 16-bit vector for selected queue notifications. */
61 #define VIRTIO_MSI_QUEUE_VECTOR 22
63 /* Config space size */
64 #define VIRTIO_PCI_CONFIG_NOMSI 20
65 #define VIRTIO_PCI_CONFIG_MSI 24
66 #define VIRTIO_PCI_REGION_SIZE(dev) (msix_present(dev) ? \
67 VIRTIO_PCI_CONFIG_MSI : \
68 VIRTIO_PCI_CONFIG_NOMSI)
70 /* The remaining space is defined by each driver as the per-driver
71 * configuration space */
72 #define VIRTIO_PCI_CONFIG(dev) (msix_enabled(dev) ? \
73 VIRTIO_PCI_CONFIG_MSI : \
74 VIRTIO_PCI_CONFIG_NOMSI)
76 /* Virtio ABI version, if we increment this, we break the guest driver. */
77 #define VIRTIO_PCI_ABI_VERSION 0
79 /* How many bits to shift physical queue address written to QUEUE_PFN.
80 * 12 is historical, and due to x86 page size. */
81 #define VIRTIO_PCI_QUEUE_ADDR_SHIFT 12
83 /* Flags track per-device state like workarounds for quirks in older guests. */
84 #define VIRTIO_PCI_FLAG_BUS_MASTER_BUG (1 << 0)
86 /* Performance improves when virtqueue kick processing is decoupled from the
87 * vcpu thread using ioeventfd for some devices. */
88 #define VIRTIO_PCI_FLAG_USE_IOEVENTFD_BIT 1
89 #define VIRTIO_PCI_FLAG_USE_IOEVENTFD (1 << VIRTIO_PCI_FLAG_USE_IOEVENTFD_BIT)
91 /* QEMU doesn't strictly need write barriers since everything runs in
92 * lock-step. We'll leave the calls to wmb() in though to make it obvious for
93 * KVM or if kqemu gets SMP support.
95 #define wmb() do { } while (0)
108 uint32_t host_features
;
112 /* Max. number of ports we can have for a the virtio-serial device */
113 uint32_t max_virtserial_ports
;
115 bool ioeventfd_disabled
;
116 bool ioeventfd_started
;
121 static void virtio_pci_notify(void *opaque
, uint16_t vector
)
123 VirtIOPCIProxy
*proxy
= opaque
;
124 if (msix_enabled(&proxy
->pci_dev
))
125 msix_notify(&proxy
->pci_dev
, vector
);
127 qemu_set_irq(proxy
->pci_dev
.irq
[0], proxy
->vdev
->isr
& 1);
130 static void virtio_pci_save_config(void * opaque
, QEMUFile
*f
)
132 VirtIOPCIProxy
*proxy
= opaque
;
133 pci_device_save(&proxy
->pci_dev
, f
);
134 msix_save(&proxy
->pci_dev
, f
);
135 if (msix_present(&proxy
->pci_dev
))
136 qemu_put_be16(f
, proxy
->vdev
->config_vector
);
139 static void virtio_pci_save_queue(void * opaque
, int n
, QEMUFile
*f
)
141 VirtIOPCIProxy
*proxy
= opaque
;
142 if (msix_present(&proxy
->pci_dev
))
143 qemu_put_be16(f
, virtio_queue_vector(proxy
->vdev
, n
));
146 static int virtio_pci_load_config(void * opaque
, QEMUFile
*f
)
148 VirtIOPCIProxy
*proxy
= opaque
;
150 ret
= pci_device_load(&proxy
->pci_dev
, f
);
154 msix_load(&proxy
->pci_dev
, f
);
155 if (msix_present(&proxy
->pci_dev
)) {
156 qemu_get_be16s(f
, &proxy
->vdev
->config_vector
);
158 proxy
->vdev
->config_vector
= VIRTIO_NO_VECTOR
;
160 if (proxy
->vdev
->config_vector
!= VIRTIO_NO_VECTOR
) {
161 return msix_vector_use(&proxy
->pci_dev
, proxy
->vdev
->config_vector
);
164 /* Try to find out if the guest has bus master disabled, but is
165 in ready state. Then we have a buggy guest OS. */
166 if ((proxy
->vdev
->status
& VIRTIO_CONFIG_S_DRIVER_OK
) &&
167 !(proxy
->pci_dev
.config
[PCI_COMMAND
] & PCI_COMMAND_MASTER
)) {
168 proxy
->flags
|= VIRTIO_PCI_FLAG_BUS_MASTER_BUG
;
173 static int virtio_pci_load_queue(void * opaque
, int n
, QEMUFile
*f
)
175 VirtIOPCIProxy
*proxy
= opaque
;
177 if (msix_present(&proxy
->pci_dev
)) {
178 qemu_get_be16s(f
, &vector
);
180 vector
= VIRTIO_NO_VECTOR
;
182 virtio_queue_set_vector(proxy
->vdev
, n
, vector
);
183 if (vector
!= VIRTIO_NO_VECTOR
) {
184 return msix_vector_use(&proxy
->pci_dev
, vector
);
189 static int virtio_pci_set_host_notifier_internal(VirtIOPCIProxy
*proxy
,
192 VirtQueue
*vq
= virtio_get_queue(proxy
->vdev
, n
);
193 EventNotifier
*notifier
= virtio_queue_get_host_notifier(vq
);
196 r
= event_notifier_init(notifier
, 1);
198 error_report("%s: unable to init event notifier: %d",
202 r
= kvm_set_ioeventfd_pio_word(event_notifier_get_fd(notifier
),
203 proxy
->addr
+ VIRTIO_PCI_QUEUE_NOTIFY
,
206 error_report("%s: unable to map ioeventfd: %d",
208 event_notifier_cleanup(notifier
);
211 r
= kvm_set_ioeventfd_pio_word(event_notifier_get_fd(notifier
),
212 proxy
->addr
+ VIRTIO_PCI_QUEUE_NOTIFY
,
215 error_report("%s: unable to unmap ioeventfd: %d",
220 /* Handle the race condition where the guest kicked and we deassigned
221 * before we got around to handling the kick.
223 if (event_notifier_test_and_clear(notifier
)) {
224 virtio_queue_notify_vq(vq
);
227 event_notifier_cleanup(notifier
);
232 static void virtio_pci_host_notifier_read(void *opaque
)
234 VirtQueue
*vq
= opaque
;
235 EventNotifier
*n
= virtio_queue_get_host_notifier(vq
);
236 if (event_notifier_test_and_clear(n
)) {
237 virtio_queue_notify_vq(vq
);
241 static void virtio_pci_set_host_notifier_fd_handler(VirtIOPCIProxy
*proxy
,
244 VirtQueue
*vq
= virtio_get_queue(proxy
->vdev
, n
);
245 EventNotifier
*notifier
= virtio_queue_get_host_notifier(vq
);
247 qemu_set_fd_handler(event_notifier_get_fd(notifier
),
248 virtio_pci_host_notifier_read
, NULL
, vq
);
250 qemu_set_fd_handler(event_notifier_get_fd(notifier
),
255 static void virtio_pci_start_ioeventfd(VirtIOPCIProxy
*proxy
)
259 if (!(proxy
->flags
& VIRTIO_PCI_FLAG_USE_IOEVENTFD
) ||
260 proxy
->ioeventfd_disabled
||
261 proxy
->ioeventfd_started
) {
265 for (n
= 0; n
< VIRTIO_PCI_QUEUE_MAX
; n
++) {
266 if (!virtio_queue_get_num(proxy
->vdev
, n
)) {
270 r
= virtio_pci_set_host_notifier_internal(proxy
, n
, true);
275 virtio_pci_set_host_notifier_fd_handler(proxy
, n
, true);
277 proxy
->ioeventfd_started
= true;
282 if (!virtio_queue_get_num(proxy
->vdev
, n
)) {
286 virtio_pci_set_host_notifier_fd_handler(proxy
, n
, false);
287 r
= virtio_pci_set_host_notifier_internal(proxy
, n
, false);
290 proxy
->ioeventfd_started
= false;
291 error_report("%s: failed. Fallback to a userspace (slower).", __func__
);
294 static void virtio_pci_stop_ioeventfd(VirtIOPCIProxy
*proxy
)
299 if (!proxy
->ioeventfd_started
) {
303 for (n
= 0; n
< VIRTIO_PCI_QUEUE_MAX
; n
++) {
304 if (!virtio_queue_get_num(proxy
->vdev
, n
)) {
308 virtio_pci_set_host_notifier_fd_handler(proxy
, n
, false);
309 r
= virtio_pci_set_host_notifier_internal(proxy
, n
, false);
312 proxy
->ioeventfd_started
= false;
315 static void virtio_pci_reset(DeviceState
*d
)
317 VirtIOPCIProxy
*proxy
= container_of(d
, VirtIOPCIProxy
, pci_dev
.qdev
);
318 virtio_pci_stop_ioeventfd(proxy
);
319 virtio_reset(proxy
->vdev
);
320 msix_reset(&proxy
->pci_dev
);
321 proxy
->flags
&= ~VIRTIO_PCI_FLAG_BUS_MASTER_BUG
;
324 static void virtio_ioport_write(void *opaque
, uint32_t addr
, uint32_t val
)
326 VirtIOPCIProxy
*proxy
= opaque
;
327 VirtIODevice
*vdev
= proxy
->vdev
;
328 target_phys_addr_t pa
;
331 case VIRTIO_PCI_GUEST_FEATURES
:
332 /* Guest does not negotiate properly? We have to assume nothing. */
333 if (val
& (1 << VIRTIO_F_BAD_FEATURE
)) {
334 if (vdev
->bad_features
)
335 val
= proxy
->host_features
& vdev
->bad_features(vdev
);
339 if (vdev
->set_features
)
340 vdev
->set_features(vdev
, val
);
341 vdev
->guest_features
= val
;
343 case VIRTIO_PCI_QUEUE_PFN
:
344 pa
= (target_phys_addr_t
)val
<< VIRTIO_PCI_QUEUE_ADDR_SHIFT
;
346 virtio_pci_stop_ioeventfd(proxy
);
347 virtio_reset(proxy
->vdev
);
348 msix_unuse_all_vectors(&proxy
->pci_dev
);
351 virtio_queue_set_addr(vdev
, vdev
->queue_sel
, pa
);
353 case VIRTIO_PCI_QUEUE_SEL
:
354 if (val
< VIRTIO_PCI_QUEUE_MAX
)
355 vdev
->queue_sel
= val
;
357 case VIRTIO_PCI_QUEUE_NOTIFY
:
358 virtio_queue_notify(vdev
, val
);
360 case VIRTIO_PCI_STATUS
:
361 if (!(val
& VIRTIO_CONFIG_S_DRIVER_OK
)) {
362 virtio_pci_stop_ioeventfd(proxy
);
365 virtio_set_status(vdev
, val
& 0xFF);
367 if (val
& VIRTIO_CONFIG_S_DRIVER_OK
) {
368 virtio_pci_start_ioeventfd(proxy
);
371 if (vdev
->status
== 0) {
372 virtio_reset(proxy
->vdev
);
373 msix_unuse_all_vectors(&proxy
->pci_dev
);
376 /* Linux before 2.6.34 sets the device as OK without enabling
377 the PCI device bus master bit. In this case we need to disable
378 some safety checks. */
379 if ((val
& VIRTIO_CONFIG_S_DRIVER_OK
) &&
380 !(proxy
->pci_dev
.config
[PCI_COMMAND
] & PCI_COMMAND_MASTER
)) {
381 proxy
->flags
|= VIRTIO_PCI_FLAG_BUS_MASTER_BUG
;
384 case VIRTIO_MSI_CONFIG_VECTOR
:
385 msix_vector_unuse(&proxy
->pci_dev
, vdev
->config_vector
);
386 /* Make it possible for guest to discover an error took place. */
387 if (msix_vector_use(&proxy
->pci_dev
, val
) < 0)
388 val
= VIRTIO_NO_VECTOR
;
389 vdev
->config_vector
= val
;
391 case VIRTIO_MSI_QUEUE_VECTOR
:
392 msix_vector_unuse(&proxy
->pci_dev
,
393 virtio_queue_vector(vdev
, vdev
->queue_sel
));
394 /* Make it possible for guest to discover an error took place. */
395 if (msix_vector_use(&proxy
->pci_dev
, val
) < 0)
396 val
= VIRTIO_NO_VECTOR
;
397 virtio_queue_set_vector(vdev
, vdev
->queue_sel
, val
);
400 error_report("%s: unexpected address 0x%x value 0x%x",
401 __func__
, addr
, val
);
406 static uint32_t virtio_ioport_read(VirtIOPCIProxy
*proxy
, uint32_t addr
)
408 VirtIODevice
*vdev
= proxy
->vdev
;
409 uint32_t ret
= 0xFFFFFFFF;
412 case VIRTIO_PCI_HOST_FEATURES
:
413 ret
= proxy
->host_features
;
415 case VIRTIO_PCI_GUEST_FEATURES
:
416 ret
= vdev
->guest_features
;
418 case VIRTIO_PCI_QUEUE_PFN
:
419 ret
= virtio_queue_get_addr(vdev
, vdev
->queue_sel
)
420 >> VIRTIO_PCI_QUEUE_ADDR_SHIFT
;
422 case VIRTIO_PCI_QUEUE_NUM
:
423 ret
= virtio_queue_get_num(vdev
, vdev
->queue_sel
);
425 case VIRTIO_PCI_QUEUE_SEL
:
426 ret
= vdev
->queue_sel
;
428 case VIRTIO_PCI_STATUS
:
432 /* reading from the ISR also clears it. */
435 qemu_set_irq(proxy
->pci_dev
.irq
[0], 0);
437 case VIRTIO_MSI_CONFIG_VECTOR
:
438 ret
= vdev
->config_vector
;
440 case VIRTIO_MSI_QUEUE_VECTOR
:
441 ret
= virtio_queue_vector(vdev
, vdev
->queue_sel
);
450 static uint32_t virtio_pci_config_readb(void *opaque
, uint32_t addr
)
452 VirtIOPCIProxy
*proxy
= opaque
;
453 uint32_t config
= VIRTIO_PCI_CONFIG(&proxy
->pci_dev
);
456 return virtio_ioport_read(proxy
, addr
);
458 return virtio_config_readb(proxy
->vdev
, addr
);
461 static uint32_t virtio_pci_config_readw(void *opaque
, uint32_t addr
)
463 VirtIOPCIProxy
*proxy
= opaque
;
464 uint32_t config
= VIRTIO_PCI_CONFIG(&proxy
->pci_dev
);
467 return virtio_ioport_read(proxy
, addr
);
469 return virtio_config_readw(proxy
->vdev
, addr
);
472 static uint32_t virtio_pci_config_readl(void *opaque
, uint32_t addr
)
474 VirtIOPCIProxy
*proxy
= opaque
;
475 uint32_t config
= VIRTIO_PCI_CONFIG(&proxy
->pci_dev
);
478 return virtio_ioport_read(proxy
, addr
);
480 return virtio_config_readl(proxy
->vdev
, addr
);
483 static void virtio_pci_config_writeb(void *opaque
, uint32_t addr
, uint32_t val
)
485 VirtIOPCIProxy
*proxy
= opaque
;
486 uint32_t config
= VIRTIO_PCI_CONFIG(&proxy
->pci_dev
);
489 virtio_ioport_write(proxy
, addr
, val
);
493 virtio_config_writeb(proxy
->vdev
, addr
, val
);
496 static void virtio_pci_config_writew(void *opaque
, uint32_t addr
, uint32_t val
)
498 VirtIOPCIProxy
*proxy
= opaque
;
499 uint32_t config
= VIRTIO_PCI_CONFIG(&proxy
->pci_dev
);
502 virtio_ioport_write(proxy
, addr
, val
);
506 virtio_config_writew(proxy
->vdev
, addr
, val
);
509 static void virtio_pci_config_writel(void *opaque
, uint32_t addr
, uint32_t val
)
511 VirtIOPCIProxy
*proxy
= opaque
;
512 uint32_t config
= VIRTIO_PCI_CONFIG(&proxy
->pci_dev
);
515 virtio_ioport_write(proxy
, addr
, val
);
519 virtio_config_writel(proxy
->vdev
, addr
, val
);
522 static void virtio_map(PCIDevice
*pci_dev
, int region_num
,
523 pcibus_t addr
, pcibus_t size
, int type
)
525 VirtIOPCIProxy
*proxy
= container_of(pci_dev
, VirtIOPCIProxy
, pci_dev
);
526 VirtIODevice
*vdev
= proxy
->vdev
;
527 unsigned config_len
= VIRTIO_PCI_REGION_SIZE(pci_dev
) + vdev
->config_len
;
531 register_ioport_write(addr
, config_len
, 1, virtio_pci_config_writeb
, proxy
);
532 register_ioport_write(addr
, config_len
, 2, virtio_pci_config_writew
, proxy
);
533 register_ioport_write(addr
, config_len
, 4, virtio_pci_config_writel
, proxy
);
534 register_ioport_read(addr
, config_len
, 1, virtio_pci_config_readb
, proxy
);
535 register_ioport_read(addr
, config_len
, 2, virtio_pci_config_readw
, proxy
);
536 register_ioport_read(addr
, config_len
, 4, virtio_pci_config_readl
, proxy
);
538 if (vdev
->config_len
)
539 vdev
->get_config(vdev
, vdev
->config
);
542 static void virtio_write_config(PCIDevice
*pci_dev
, uint32_t address
,
543 uint32_t val
, int len
)
545 VirtIOPCIProxy
*proxy
= DO_UPCAST(VirtIOPCIProxy
, pci_dev
, pci_dev
);
547 if (PCI_COMMAND
== address
) {
548 if (!(val
& PCI_COMMAND_MASTER
)) {
549 if (!(proxy
->flags
& VIRTIO_PCI_FLAG_BUS_MASTER_BUG
)) {
550 virtio_pci_stop_ioeventfd(proxy
);
551 virtio_set_status(proxy
->vdev
,
552 proxy
->vdev
->status
& ~VIRTIO_CONFIG_S_DRIVER_OK
);
557 pci_default_write_config(pci_dev
, address
, val
, len
);
558 msix_write_config(pci_dev
, address
, val
, len
);
561 static unsigned virtio_pci_get_features(void *opaque
)
563 VirtIOPCIProxy
*proxy
= opaque
;
564 return proxy
->host_features
;
567 static void virtio_pci_guest_notifier_read(void *opaque
)
569 VirtQueue
*vq
= opaque
;
570 EventNotifier
*n
= virtio_queue_get_guest_notifier(vq
);
571 if (event_notifier_test_and_clear(n
)) {
576 static int virtio_pci_set_guest_notifier(void *opaque
, int n
, bool assign
)
578 VirtIOPCIProxy
*proxy
= opaque
;
579 VirtQueue
*vq
= virtio_get_queue(proxy
->vdev
, n
);
580 EventNotifier
*notifier
= virtio_queue_get_guest_notifier(vq
);
583 int r
= event_notifier_init(notifier
, 0);
587 qemu_set_fd_handler(event_notifier_get_fd(notifier
),
588 virtio_pci_guest_notifier_read
, NULL
, vq
);
590 qemu_set_fd_handler(event_notifier_get_fd(notifier
),
592 event_notifier_cleanup(notifier
);
598 static int virtio_pci_set_guest_notifiers(void *opaque
, bool assign
)
600 VirtIOPCIProxy
*proxy
= opaque
;
601 VirtIODevice
*vdev
= proxy
->vdev
;
604 for (n
= 0; n
< VIRTIO_PCI_QUEUE_MAX
; n
++) {
605 if (!virtio_queue_get_num(vdev
, n
)) {
609 r
= virtio_pci_set_guest_notifier(opaque
, n
, assign
);
618 /* We get here on assignment failure. Recover by undoing for VQs 0 .. n. */
620 virtio_pci_set_guest_notifier(opaque
, n
, !assign
);
625 static int virtio_pci_set_host_notifier(void *opaque
, int n
, bool assign
)
627 VirtIOPCIProxy
*proxy
= opaque
;
629 /* Stop using ioeventfd for virtqueue kick if the device starts using host
630 * notifiers. This makes it easy to avoid stepping on each others' toes.
632 proxy
->ioeventfd_disabled
= assign
;
634 virtio_pci_stop_ioeventfd(proxy
);
636 /* We don't need to start here: it's not needed because backend
637 * currently only stops on status change away from ok,
638 * reset, vmstop and such. If we do add code to start here,
639 * need to check vmstate, device state etc. */
640 return virtio_pci_set_host_notifier_internal(proxy
, n
, assign
);
643 static void virtio_pci_vmstate_change(void *opaque
, bool running
)
645 VirtIOPCIProxy
*proxy
= opaque
;
648 virtio_pci_start_ioeventfd(proxy
);
650 virtio_pci_stop_ioeventfd(proxy
);
654 static const VirtIOBindings virtio_pci_bindings
= {
655 .notify
= virtio_pci_notify
,
656 .save_config
= virtio_pci_save_config
,
657 .load_config
= virtio_pci_load_config
,
658 .save_queue
= virtio_pci_save_queue
,
659 .load_queue
= virtio_pci_load_queue
,
660 .get_features
= virtio_pci_get_features
,
661 .set_host_notifier
= virtio_pci_set_host_notifier
,
662 .set_guest_notifiers
= virtio_pci_set_guest_notifiers
,
663 .vmstate_change
= virtio_pci_vmstate_change
,
666 static void virtio_init_pci(VirtIOPCIProxy
*proxy
, VirtIODevice
*vdev
,
667 uint16_t vendor
, uint16_t device
,
668 uint16_t class_code
, uint8_t pif
)
675 config
= proxy
->pci_dev
.config
;
676 pci_config_set_vendor_id(config
, vendor
);
677 pci_config_set_device_id(config
, device
);
679 config
[0x08] = VIRTIO_PCI_ABI_VERSION
;
682 pci_config_set_class(config
, class_code
);
684 config
[0x2c] = vendor
& 0xFF;
685 config
[0x2d] = (vendor
>> 8) & 0xFF;
686 config
[0x2e] = vdev
->device_id
& 0xFF;
687 config
[0x2f] = (vdev
->device_id
>> 8) & 0xFF;
691 if (vdev
->nvectors
&& !msix_init(&proxy
->pci_dev
, vdev
->nvectors
, 1, 0)) {
692 pci_register_bar(&proxy
->pci_dev
, 1,
693 msix_bar_size(&proxy
->pci_dev
),
694 PCI_BASE_ADDRESS_SPACE_MEMORY
,
699 proxy
->pci_dev
.config_write
= virtio_write_config
;
701 size
= VIRTIO_PCI_REGION_SIZE(&proxy
->pci_dev
) + vdev
->config_len
;
703 size
= 1 << qemu_fls(size
);
705 pci_register_bar(&proxy
->pci_dev
, 0, size
, PCI_BASE_ADDRESS_SPACE_IO
,
708 if (!kvm_has_many_ioeventfds()) {
709 proxy
->flags
&= ~VIRTIO_PCI_FLAG_USE_IOEVENTFD
;
712 virtio_bind_device(vdev
, &virtio_pci_bindings
, proxy
);
713 proxy
->host_features
|= 0x1 << VIRTIO_F_NOTIFY_ON_EMPTY
;
714 proxy
->host_features
|= 0x1 << VIRTIO_F_BAD_FEATURE
;
715 proxy
->host_features
= vdev
->get_features(vdev
, proxy
->host_features
);
718 static int virtio_blk_init_pci(PCIDevice
*pci_dev
)
720 VirtIOPCIProxy
*proxy
= DO_UPCAST(VirtIOPCIProxy
, pci_dev
, pci_dev
);
723 if (proxy
->class_code
!= PCI_CLASS_STORAGE_SCSI
&&
724 proxy
->class_code
!= PCI_CLASS_STORAGE_OTHER
)
725 proxy
->class_code
= PCI_CLASS_STORAGE_SCSI
;
727 vdev
= virtio_blk_init(&pci_dev
->qdev
, &proxy
->block
);
731 vdev
->nvectors
= proxy
->nvectors
;
732 virtio_init_pci(proxy
, vdev
,
733 PCI_VENDOR_ID_REDHAT_QUMRANET
,
734 PCI_DEVICE_ID_VIRTIO_BLOCK
,
735 proxy
->class_code
, 0x00);
736 /* make the actual value visible */
737 proxy
->nvectors
= vdev
->nvectors
;
741 static int virtio_exit_pci(PCIDevice
*pci_dev
)
743 return msix_uninit(pci_dev
);
746 static int virtio_blk_exit_pci(PCIDevice
*pci_dev
)
748 VirtIOPCIProxy
*proxy
= DO_UPCAST(VirtIOPCIProxy
, pci_dev
, pci_dev
);
750 virtio_pci_stop_ioeventfd(proxy
);
751 virtio_blk_exit(proxy
->vdev
);
752 blockdev_mark_auto_del(proxy
->block
.bs
);
753 return virtio_exit_pci(pci_dev
);
756 static int virtio_serial_init_pci(PCIDevice
*pci_dev
)
758 VirtIOPCIProxy
*proxy
= DO_UPCAST(VirtIOPCIProxy
, pci_dev
, pci_dev
);
761 if (proxy
->class_code
!= PCI_CLASS_COMMUNICATION_OTHER
&&
762 proxy
->class_code
!= PCI_CLASS_DISPLAY_OTHER
&& /* qemu 0.10 */
763 proxy
->class_code
!= PCI_CLASS_OTHERS
) /* qemu-kvm */
764 proxy
->class_code
= PCI_CLASS_COMMUNICATION_OTHER
;
766 vdev
= virtio_serial_init(&pci_dev
->qdev
, proxy
->max_virtserial_ports
);
770 vdev
->nvectors
= proxy
->nvectors
== DEV_NVECTORS_UNSPECIFIED
771 ? proxy
->max_virtserial_ports
+ 1
773 virtio_init_pci(proxy
, vdev
,
774 PCI_VENDOR_ID_REDHAT_QUMRANET
,
775 PCI_DEVICE_ID_VIRTIO_CONSOLE
,
776 proxy
->class_code
, 0x00);
777 proxy
->nvectors
= vdev
->nvectors
;
781 static int virtio_serial_exit_pci(PCIDevice
*pci_dev
)
783 VirtIOPCIProxy
*proxy
= DO_UPCAST(VirtIOPCIProxy
, pci_dev
, pci_dev
);
785 virtio_serial_exit(proxy
->vdev
);
786 return virtio_exit_pci(pci_dev
);
789 static int virtio_net_init_pci(PCIDevice
*pci_dev
)
791 VirtIOPCIProxy
*proxy
= DO_UPCAST(VirtIOPCIProxy
, pci_dev
, pci_dev
);
794 vdev
= virtio_net_init(&pci_dev
->qdev
, &proxy
->nic
, &proxy
->net
);
796 vdev
->nvectors
= proxy
->nvectors
;
797 virtio_init_pci(proxy
, vdev
,
798 PCI_VENDOR_ID_REDHAT_QUMRANET
,
799 PCI_DEVICE_ID_VIRTIO_NET
,
800 PCI_CLASS_NETWORK_ETHERNET
,
803 /* make the actual value visible */
804 proxy
->nvectors
= vdev
->nvectors
;
808 static int virtio_net_exit_pci(PCIDevice
*pci_dev
)
810 VirtIOPCIProxy
*proxy
= DO_UPCAST(VirtIOPCIProxy
, pci_dev
, pci_dev
);
812 virtio_pci_stop_ioeventfd(proxy
);
813 virtio_net_exit(proxy
->vdev
);
814 return virtio_exit_pci(pci_dev
);
817 static int virtio_balloon_init_pci(PCIDevice
*pci_dev
)
819 VirtIOPCIProxy
*proxy
= DO_UPCAST(VirtIOPCIProxy
, pci_dev
, pci_dev
);
822 vdev
= virtio_balloon_init(&pci_dev
->qdev
);
823 virtio_init_pci(proxy
, vdev
,
824 PCI_VENDOR_ID_REDHAT_QUMRANET
,
825 PCI_DEVICE_ID_VIRTIO_BALLOON
,
826 PCI_CLASS_MEMORY_RAM
,
832 static int virtio_9p_init_pci(PCIDevice
*pci_dev
)
834 VirtIOPCIProxy
*proxy
= DO_UPCAST(VirtIOPCIProxy
, pci_dev
, pci_dev
);
837 vdev
= virtio_9p_init(&pci_dev
->qdev
, &proxy
->fsconf
);
838 vdev
->nvectors
= proxy
->nvectors
;
839 virtio_init_pci(proxy
, vdev
,
840 PCI_VENDOR_ID_REDHAT_QUMRANET
,
844 /* make the actual value visible */
845 proxy
->nvectors
= vdev
->nvectors
;
850 static PCIDeviceInfo virtio_info
[] = {
852 .qdev
.name
= "virtio-blk-pci",
853 .qdev
.alias
= "virtio-blk",
854 .qdev
.size
= sizeof(VirtIOPCIProxy
),
855 .init
= virtio_blk_init_pci
,
856 .exit
= virtio_blk_exit_pci
,
857 .qdev
.props
= (Property
[]) {
858 DEFINE_PROP_HEX32("class", VirtIOPCIProxy
, class_code
, 0),
859 DEFINE_BLOCK_PROPERTIES(VirtIOPCIProxy
, block
),
860 DEFINE_PROP_BIT("ioeventfd", VirtIOPCIProxy
, flags
,
861 VIRTIO_PCI_FLAG_USE_IOEVENTFD_BIT
, true),
862 DEFINE_PROP_UINT32("vectors", VirtIOPCIProxy
, nvectors
, 2),
863 DEFINE_VIRTIO_BLK_FEATURES(VirtIOPCIProxy
, host_features
),
864 DEFINE_PROP_END_OF_LIST(),
866 .qdev
.reset
= virtio_pci_reset
,
868 .qdev
.name
= "virtio-net-pci",
869 .qdev
.size
= sizeof(VirtIOPCIProxy
),
870 .init
= virtio_net_init_pci
,
871 .exit
= virtio_net_exit_pci
,
872 .romfile
= "pxe-virtio.bin",
873 .qdev
.props
= (Property
[]) {
874 DEFINE_PROP_BIT("ioeventfd", VirtIOPCIProxy
, flags
,
875 VIRTIO_PCI_FLAG_USE_IOEVENTFD_BIT
, false),
876 DEFINE_PROP_UINT32("vectors", VirtIOPCIProxy
, nvectors
, 3),
877 DEFINE_VIRTIO_NET_FEATURES(VirtIOPCIProxy
, host_features
),
878 DEFINE_NIC_PROPERTIES(VirtIOPCIProxy
, nic
),
879 DEFINE_PROP_UINT32("x-txtimer", VirtIOPCIProxy
,
880 net
.txtimer
, TX_TIMER_INTERVAL
),
881 DEFINE_PROP_INT32("x-txburst", VirtIOPCIProxy
,
882 net
.txburst
, TX_BURST
),
883 DEFINE_PROP_STRING("tx", VirtIOPCIProxy
, net
.tx
),
884 DEFINE_PROP_END_OF_LIST(),
886 .qdev
.reset
= virtio_pci_reset
,
888 .qdev
.name
= "virtio-serial-pci",
889 .qdev
.alias
= "virtio-serial",
890 .qdev
.size
= sizeof(VirtIOPCIProxy
),
891 .init
= virtio_serial_init_pci
,
892 .exit
= virtio_serial_exit_pci
,
893 .qdev
.props
= (Property
[]) {
894 DEFINE_PROP_UINT32("vectors", VirtIOPCIProxy
, nvectors
,
895 DEV_NVECTORS_UNSPECIFIED
),
896 DEFINE_PROP_HEX32("class", VirtIOPCIProxy
, class_code
, 0),
897 DEFINE_VIRTIO_COMMON_FEATURES(VirtIOPCIProxy
, host_features
),
898 DEFINE_PROP_UINT32("max_ports", VirtIOPCIProxy
, max_virtserial_ports
,
900 DEFINE_PROP_END_OF_LIST(),
902 .qdev
.reset
= virtio_pci_reset
,
904 .qdev
.name
= "virtio-balloon-pci",
905 .qdev
.size
= sizeof(VirtIOPCIProxy
),
906 .init
= virtio_balloon_init_pci
,
907 .exit
= virtio_exit_pci
,
908 .qdev
.props
= (Property
[]) {
909 DEFINE_VIRTIO_COMMON_FEATURES(VirtIOPCIProxy
, host_features
),
910 DEFINE_PROP_END_OF_LIST(),
912 .qdev
.reset
= virtio_pci_reset
,
915 .qdev
.name
= "virtio-9p-pci",
916 .qdev
.size
= sizeof(VirtIOPCIProxy
),
917 .init
= virtio_9p_init_pci
,
918 .qdev
.props
= (Property
[]) {
919 DEFINE_PROP_UINT32("vectors", VirtIOPCIProxy
, nvectors
, 2),
920 DEFINE_VIRTIO_COMMON_FEATURES(VirtIOPCIProxy
, host_features
),
921 DEFINE_PROP_STRING("mount_tag", VirtIOPCIProxy
, fsconf
.tag
),
922 DEFINE_PROP_STRING("fsdev", VirtIOPCIProxy
, fsconf
.fsdev_id
),
923 DEFINE_PROP_END_OF_LIST(),
931 static void virtio_pci_register_devices(void)
933 pci_qdev_register_many(virtio_info
);
936 device_init(virtio_pci_register_devices
)