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.
14 * Contributions after 2012-01-13 are licensed under the terms of the
15 * GNU GPL, version 2 or (at your option) any later version.
21 #include "virtio-blk.h"
22 #include "virtio-net.h"
23 #include "virtio-serial.h"
25 #include "qemu-error.h"
31 #include "virtio-pci.h"
34 /* from Linux's linux/virtio_pci.h */
36 /* A 32-bit r/o bitmask of the features supported by the host */
37 #define VIRTIO_PCI_HOST_FEATURES 0
39 /* A 32-bit r/w bitmask of features activated by the guest */
40 #define VIRTIO_PCI_GUEST_FEATURES 4
42 /* A 32-bit r/w PFN for the currently selected queue */
43 #define VIRTIO_PCI_QUEUE_PFN 8
45 /* A 16-bit r/o queue size for the currently selected queue */
46 #define VIRTIO_PCI_QUEUE_NUM 12
48 /* A 16-bit r/w queue selector */
49 #define VIRTIO_PCI_QUEUE_SEL 14
51 /* A 16-bit r/w queue notifier */
52 #define VIRTIO_PCI_QUEUE_NOTIFY 16
54 /* An 8-bit device status register. */
55 #define VIRTIO_PCI_STATUS 18
57 /* An 8-bit r/o interrupt status register. Reading the value will return the
58 * current contents of the ISR and will also clear it. This is effectively
59 * a read-and-acknowledge. */
60 #define VIRTIO_PCI_ISR 19
62 /* MSI-X registers: only enabled if MSI-X is enabled. */
63 /* A 16-bit vector for configuration changes. */
64 #define VIRTIO_MSI_CONFIG_VECTOR 20
65 /* A 16-bit vector for selected queue notifications. */
66 #define VIRTIO_MSI_QUEUE_VECTOR 22
68 /* Config space size */
69 #define VIRTIO_PCI_CONFIG_NOMSI 20
70 #define VIRTIO_PCI_CONFIG_MSI 24
71 #define VIRTIO_PCI_REGION_SIZE(dev) (msix_present(dev) ? \
72 VIRTIO_PCI_CONFIG_MSI : \
73 VIRTIO_PCI_CONFIG_NOMSI)
75 /* The remaining space is defined by each driver as the per-driver
76 * configuration space */
77 #define VIRTIO_PCI_CONFIG(dev) (msix_enabled(dev) ? \
78 VIRTIO_PCI_CONFIG_MSI : \
79 VIRTIO_PCI_CONFIG_NOMSI)
81 /* How many bits to shift physical queue address written to QUEUE_PFN.
82 * 12 is historical, and due to x86 page size. */
83 #define VIRTIO_PCI_QUEUE_ADDR_SHIFT 12
85 /* Flags track per-device state like workarounds for quirks in older guests. */
86 #define VIRTIO_PCI_FLAG_BUS_MASTER_BUG (1 << 0)
88 /* QEMU doesn't strictly need write barriers since everything runs in
89 * lock-step. We'll leave the calls to wmb() in though to make it obvious for
90 * KVM or if kqemu gets SMP support.
92 #define wmb() do { } while (0)
94 /* HACK for virtio to determine if it's running a big endian guest */
95 bool virtio_is_big_endian(void);
99 static void virtio_pci_notify(void *opaque
, uint16_t vector
)
101 VirtIOPCIProxy
*proxy
= opaque
;
102 if (msix_enabled(&proxy
->pci_dev
))
103 msix_notify(&proxy
->pci_dev
, vector
);
105 qemu_set_irq(proxy
->pci_dev
.irq
[0], proxy
->vdev
->isr
& 1);
108 static void virtio_pci_save_config(void * opaque
, QEMUFile
*f
)
110 VirtIOPCIProxy
*proxy
= opaque
;
111 pci_device_save(&proxy
->pci_dev
, f
);
112 msix_save(&proxy
->pci_dev
, f
);
113 if (msix_present(&proxy
->pci_dev
))
114 qemu_put_be16(f
, proxy
->vdev
->config_vector
);
117 static void virtio_pci_save_queue(void * opaque
, int n
, QEMUFile
*f
)
119 VirtIOPCIProxy
*proxy
= opaque
;
120 if (msix_present(&proxy
->pci_dev
))
121 qemu_put_be16(f
, virtio_queue_vector(proxy
->vdev
, n
));
124 static int virtio_pci_load_config(void * opaque
, QEMUFile
*f
)
126 VirtIOPCIProxy
*proxy
= opaque
;
128 ret
= pci_device_load(&proxy
->pci_dev
, f
);
132 msix_load(&proxy
->pci_dev
, f
);
133 if (msix_present(&proxy
->pci_dev
)) {
134 qemu_get_be16s(f
, &proxy
->vdev
->config_vector
);
136 proxy
->vdev
->config_vector
= VIRTIO_NO_VECTOR
;
138 if (proxy
->vdev
->config_vector
!= VIRTIO_NO_VECTOR
) {
139 return msix_vector_use(&proxy
->pci_dev
, proxy
->vdev
->config_vector
);
144 static int virtio_pci_load_queue(void * opaque
, int n
, QEMUFile
*f
)
146 VirtIOPCIProxy
*proxy
= opaque
;
148 if (msix_present(&proxy
->pci_dev
)) {
149 qemu_get_be16s(f
, &vector
);
151 vector
= VIRTIO_NO_VECTOR
;
153 virtio_queue_set_vector(proxy
->vdev
, n
, vector
);
154 if (vector
!= VIRTIO_NO_VECTOR
) {
155 return msix_vector_use(&proxy
->pci_dev
, vector
);
160 static int virtio_pci_set_host_notifier_internal(VirtIOPCIProxy
*proxy
,
163 VirtQueue
*vq
= virtio_get_queue(proxy
->vdev
, n
);
164 EventNotifier
*notifier
= virtio_queue_get_host_notifier(vq
);
168 r
= event_notifier_init(notifier
, 1);
170 error_report("%s: unable to init event notifier: %d",
174 memory_region_add_eventfd(&proxy
->bar
, VIRTIO_PCI_QUEUE_NOTIFY
, 2,
175 true, n
, event_notifier_get_fd(notifier
));
177 memory_region_del_eventfd(&proxy
->bar
, VIRTIO_PCI_QUEUE_NOTIFY
, 2,
178 true, n
, event_notifier_get_fd(notifier
));
179 /* Handle the race condition where the guest kicked and we deassigned
180 * before we got around to handling the kick.
182 if (event_notifier_test_and_clear(notifier
)) {
183 virtio_queue_notify_vq(vq
);
186 event_notifier_cleanup(notifier
);
191 static void virtio_pci_host_notifier_read(void *opaque
)
193 VirtQueue
*vq
= opaque
;
194 EventNotifier
*n
= virtio_queue_get_host_notifier(vq
);
195 if (event_notifier_test_and_clear(n
)) {
196 virtio_queue_notify_vq(vq
);
200 static void virtio_pci_set_host_notifier_fd_handler(VirtIOPCIProxy
*proxy
,
203 VirtQueue
*vq
= virtio_get_queue(proxy
->vdev
, n
);
204 EventNotifier
*notifier
= virtio_queue_get_host_notifier(vq
);
206 qemu_set_fd_handler(event_notifier_get_fd(notifier
),
207 virtio_pci_host_notifier_read
, NULL
, vq
);
209 qemu_set_fd_handler(event_notifier_get_fd(notifier
),
214 static void virtio_pci_start_ioeventfd(VirtIOPCIProxy
*proxy
)
218 if (!(proxy
->flags
& VIRTIO_PCI_FLAG_USE_IOEVENTFD
) ||
219 proxy
->ioeventfd_disabled
||
220 proxy
->ioeventfd_started
) {
224 for (n
= 0; n
< VIRTIO_PCI_QUEUE_MAX
; n
++) {
225 if (!virtio_queue_get_num(proxy
->vdev
, n
)) {
229 r
= virtio_pci_set_host_notifier_internal(proxy
, n
, true);
234 virtio_pci_set_host_notifier_fd_handler(proxy
, n
, true);
236 proxy
->ioeventfd_started
= true;
241 if (!virtio_queue_get_num(proxy
->vdev
, n
)) {
245 virtio_pci_set_host_notifier_fd_handler(proxy
, n
, false);
246 r
= virtio_pci_set_host_notifier_internal(proxy
, n
, false);
249 proxy
->ioeventfd_started
= false;
250 error_report("%s: failed. Fallback to a userspace (slower).", __func__
);
253 static void virtio_pci_stop_ioeventfd(VirtIOPCIProxy
*proxy
)
258 if (!proxy
->ioeventfd_started
) {
262 for (n
= 0; n
< VIRTIO_PCI_QUEUE_MAX
; n
++) {
263 if (!virtio_queue_get_num(proxy
->vdev
, n
)) {
267 virtio_pci_set_host_notifier_fd_handler(proxy
, n
, false);
268 r
= virtio_pci_set_host_notifier_internal(proxy
, n
, false);
271 proxy
->ioeventfd_started
= false;
274 void virtio_pci_reset(DeviceState
*d
)
276 VirtIOPCIProxy
*proxy
= container_of(d
, VirtIOPCIProxy
, pci_dev
.qdev
);
277 virtio_pci_stop_ioeventfd(proxy
);
278 virtio_reset(proxy
->vdev
);
279 msix_reset(&proxy
->pci_dev
);
280 proxy
->flags
&= ~VIRTIO_PCI_FLAG_BUS_MASTER_BUG
;
283 static void virtio_ioport_write(void *opaque
, uint32_t addr
, uint32_t val
)
285 VirtIOPCIProxy
*proxy
= opaque
;
286 VirtIODevice
*vdev
= proxy
->vdev
;
287 target_phys_addr_t pa
;
290 case VIRTIO_PCI_GUEST_FEATURES
:
291 /* Guest does not negotiate properly? We have to assume nothing. */
292 if (val
& (1 << VIRTIO_F_BAD_FEATURE
)) {
293 val
= vdev
->bad_features
? vdev
->bad_features(vdev
) : 0;
295 virtio_set_features(vdev
, val
);
297 case VIRTIO_PCI_QUEUE_PFN
:
298 pa
= (target_phys_addr_t
)val
<< VIRTIO_PCI_QUEUE_ADDR_SHIFT
;
300 virtio_pci_stop_ioeventfd(proxy
);
301 virtio_reset(proxy
->vdev
);
302 msix_unuse_all_vectors(&proxy
->pci_dev
);
305 virtio_queue_set_addr(vdev
, vdev
->queue_sel
, pa
);
307 case VIRTIO_PCI_QUEUE_SEL
:
308 if (val
< VIRTIO_PCI_QUEUE_MAX
)
309 vdev
->queue_sel
= val
;
311 case VIRTIO_PCI_QUEUE_NOTIFY
:
312 if (val
< VIRTIO_PCI_QUEUE_MAX
) {
313 virtio_queue_notify(vdev
, val
);
316 case VIRTIO_PCI_STATUS
:
317 if (!(val
& VIRTIO_CONFIG_S_DRIVER_OK
)) {
318 virtio_pci_stop_ioeventfd(proxy
);
321 virtio_set_status(vdev
, val
& 0xFF);
323 if (val
& VIRTIO_CONFIG_S_DRIVER_OK
) {
324 virtio_pci_start_ioeventfd(proxy
);
327 if (vdev
->status
== 0) {
328 virtio_reset(proxy
->vdev
);
329 msix_unuse_all_vectors(&proxy
->pci_dev
);
332 /* Linux before 2.6.34 sets the device as OK without enabling
333 the PCI device bus master bit. In this case we need to disable
334 some safety checks. */
335 if ((val
& VIRTIO_CONFIG_S_DRIVER_OK
) &&
336 !(proxy
->pci_dev
.config
[PCI_COMMAND
] & PCI_COMMAND_MASTER
)) {
337 proxy
->flags
|= VIRTIO_PCI_FLAG_BUS_MASTER_BUG
;
340 case VIRTIO_MSI_CONFIG_VECTOR
:
341 msix_vector_unuse(&proxy
->pci_dev
, vdev
->config_vector
);
342 /* Make it possible for guest to discover an error took place. */
343 if (msix_vector_use(&proxy
->pci_dev
, val
) < 0)
344 val
= VIRTIO_NO_VECTOR
;
345 vdev
->config_vector
= val
;
347 case VIRTIO_MSI_QUEUE_VECTOR
:
348 msix_vector_unuse(&proxy
->pci_dev
,
349 virtio_queue_vector(vdev
, vdev
->queue_sel
));
350 /* Make it possible for guest to discover an error took place. */
351 if (msix_vector_use(&proxy
->pci_dev
, val
) < 0)
352 val
= VIRTIO_NO_VECTOR
;
353 virtio_queue_set_vector(vdev
, vdev
->queue_sel
, val
);
356 error_report("%s: unexpected address 0x%x value 0x%x",
357 __func__
, addr
, val
);
362 static uint32_t virtio_ioport_read(VirtIOPCIProxy
*proxy
, uint32_t addr
)
364 VirtIODevice
*vdev
= proxy
->vdev
;
365 uint32_t ret
= 0xFFFFFFFF;
368 case VIRTIO_PCI_HOST_FEATURES
:
369 ret
= proxy
->host_features
;
371 case VIRTIO_PCI_GUEST_FEATURES
:
372 ret
= vdev
->guest_features
;
374 case VIRTIO_PCI_QUEUE_PFN
:
375 ret
= virtio_queue_get_addr(vdev
, vdev
->queue_sel
)
376 >> VIRTIO_PCI_QUEUE_ADDR_SHIFT
;
378 case VIRTIO_PCI_QUEUE_NUM
:
379 ret
= virtio_queue_get_num(vdev
, vdev
->queue_sel
);
381 case VIRTIO_PCI_QUEUE_SEL
:
382 ret
= vdev
->queue_sel
;
384 case VIRTIO_PCI_STATUS
:
388 /* reading from the ISR also clears it. */
391 qemu_set_irq(proxy
->pci_dev
.irq
[0], 0);
393 case VIRTIO_MSI_CONFIG_VECTOR
:
394 ret
= vdev
->config_vector
;
396 case VIRTIO_MSI_QUEUE_VECTOR
:
397 ret
= virtio_queue_vector(vdev
, vdev
->queue_sel
);
406 static uint32_t virtio_pci_config_readb(void *opaque
, uint32_t addr
)
408 VirtIOPCIProxy
*proxy
= opaque
;
409 uint32_t config
= VIRTIO_PCI_CONFIG(&proxy
->pci_dev
);
411 return virtio_ioport_read(proxy
, addr
);
413 return virtio_config_readb(proxy
->vdev
, addr
);
416 static uint32_t virtio_pci_config_readw(void *opaque
, uint32_t addr
)
418 VirtIOPCIProxy
*proxy
= opaque
;
419 uint32_t config
= VIRTIO_PCI_CONFIG(&proxy
->pci_dev
);
422 return virtio_ioport_read(proxy
, addr
);
424 val
= virtio_config_readw(proxy
->vdev
, addr
);
425 if (virtio_is_big_endian()) {
427 * virtio is odd, ioports are LE but config space is target native
428 * endian. However, in qemu, all PIO is LE, so we need to re-swap
436 static uint32_t virtio_pci_config_readl(void *opaque
, uint32_t addr
)
438 VirtIOPCIProxy
*proxy
= opaque
;
439 uint32_t config
= VIRTIO_PCI_CONFIG(&proxy
->pci_dev
);
442 return virtio_ioport_read(proxy
, addr
);
444 val
= virtio_config_readl(proxy
->vdev
, addr
);
445 if (virtio_is_big_endian()) {
451 static void virtio_pci_config_writeb(void *opaque
, uint32_t addr
, uint32_t val
)
453 VirtIOPCIProxy
*proxy
= opaque
;
454 uint32_t config
= VIRTIO_PCI_CONFIG(&proxy
->pci_dev
);
456 virtio_ioport_write(proxy
, addr
, val
);
460 virtio_config_writeb(proxy
->vdev
, addr
, val
);
463 static void virtio_pci_config_writew(void *opaque
, uint32_t addr
, uint32_t val
)
465 VirtIOPCIProxy
*proxy
= opaque
;
466 uint32_t config
= VIRTIO_PCI_CONFIG(&proxy
->pci_dev
);
468 virtio_ioport_write(proxy
, addr
, val
);
472 if (virtio_is_big_endian()) {
475 virtio_config_writew(proxy
->vdev
, addr
, val
);
478 static void virtio_pci_config_writel(void *opaque
, uint32_t addr
, uint32_t val
)
480 VirtIOPCIProxy
*proxy
= opaque
;
481 uint32_t config
= VIRTIO_PCI_CONFIG(&proxy
->pci_dev
);
483 virtio_ioport_write(proxy
, addr
, val
);
487 if (virtio_is_big_endian()) {
490 virtio_config_writel(proxy
->vdev
, addr
, val
);
493 const MemoryRegionPortio virtio_portio
[] = {
494 { 0, 0x10000, 1, .write
= virtio_pci_config_writeb
, },
495 { 0, 0x10000, 2, .write
= virtio_pci_config_writew
, },
496 { 0, 0x10000, 4, .write
= virtio_pci_config_writel
, },
497 { 0, 0x10000, 1, .read
= virtio_pci_config_readb
, },
498 { 0, 0x10000, 2, .read
= virtio_pci_config_readw
, },
499 { 0, 0x10000, 4, .read
= virtio_pci_config_readl
, },
503 static const MemoryRegionOps virtio_pci_config_ops
= {
504 .old_portio
= virtio_portio
,
505 .endianness
= DEVICE_LITTLE_ENDIAN
,
508 static void virtio_write_config(PCIDevice
*pci_dev
, uint32_t address
,
509 uint32_t val
, int len
)
511 VirtIOPCIProxy
*proxy
= DO_UPCAST(VirtIOPCIProxy
, pci_dev
, pci_dev
);
513 pci_default_write_config(pci_dev
, address
, val
, len
);
515 if (range_covers_byte(address
, len
, PCI_COMMAND
) &&
516 !(pci_dev
->config
[PCI_COMMAND
] & PCI_COMMAND_MASTER
) &&
517 !(proxy
->flags
& VIRTIO_PCI_FLAG_BUS_MASTER_BUG
)) {
518 virtio_pci_stop_ioeventfd(proxy
);
519 virtio_set_status(proxy
->vdev
,
520 proxy
->vdev
->status
& ~VIRTIO_CONFIG_S_DRIVER_OK
);
523 msix_write_config(pci_dev
, address
, val
, len
);
526 static unsigned virtio_pci_get_features(void *opaque
)
528 VirtIOPCIProxy
*proxy
= opaque
;
529 return proxy
->host_features
;
532 static void virtio_pci_guest_notifier_read(void *opaque
)
534 VirtQueue
*vq
= opaque
;
535 EventNotifier
*n
= virtio_queue_get_guest_notifier(vq
);
536 if (event_notifier_test_and_clear(n
)) {
541 static int virtio_pci_set_guest_notifier(void *opaque
, int n
, bool assign
)
543 VirtIOPCIProxy
*proxy
= opaque
;
544 VirtQueue
*vq
= virtio_get_queue(proxy
->vdev
, n
);
545 EventNotifier
*notifier
= virtio_queue_get_guest_notifier(vq
);
548 int r
= event_notifier_init(notifier
, 0);
552 qemu_set_fd_handler(event_notifier_get_fd(notifier
),
553 virtio_pci_guest_notifier_read
, NULL
, vq
);
555 qemu_set_fd_handler(event_notifier_get_fd(notifier
),
557 event_notifier_cleanup(notifier
);
563 static bool virtio_pci_query_guest_notifiers(void *opaque
)
565 VirtIOPCIProxy
*proxy
= opaque
;
566 return msix_enabled(&proxy
->pci_dev
);
569 static int virtio_pci_set_guest_notifiers(void *opaque
, bool assign
)
571 VirtIOPCIProxy
*proxy
= opaque
;
572 VirtIODevice
*vdev
= proxy
->vdev
;
575 for (n
= 0; n
< VIRTIO_PCI_QUEUE_MAX
; n
++) {
576 if (!virtio_queue_get_num(vdev
, n
)) {
580 r
= virtio_pci_set_guest_notifier(opaque
, n
, assign
);
589 /* We get here on assignment failure. Recover by undoing for VQs 0 .. n. */
591 virtio_pci_set_guest_notifier(opaque
, n
, !assign
);
596 static int virtio_pci_set_host_notifier(void *opaque
, int n
, bool assign
)
598 VirtIOPCIProxy
*proxy
= opaque
;
600 /* Stop using ioeventfd for virtqueue kick if the device starts using host
601 * notifiers. This makes it easy to avoid stepping on each others' toes.
603 proxy
->ioeventfd_disabled
= assign
;
605 virtio_pci_stop_ioeventfd(proxy
);
607 /* We don't need to start here: it's not needed because backend
608 * currently only stops on status change away from ok,
609 * reset, vmstop and such. If we do add code to start here,
610 * need to check vmstate, device state etc. */
611 return virtio_pci_set_host_notifier_internal(proxy
, n
, assign
);
614 static void virtio_pci_vmstate_change(void *opaque
, bool running
)
616 VirtIOPCIProxy
*proxy
= opaque
;
619 /* Try to find out if the guest has bus master disabled, but is
620 in ready state. Then we have a buggy guest OS. */
621 if ((proxy
->vdev
->status
& VIRTIO_CONFIG_S_DRIVER_OK
) &&
622 !(proxy
->pci_dev
.config
[PCI_COMMAND
] & PCI_COMMAND_MASTER
)) {
623 proxy
->flags
|= VIRTIO_PCI_FLAG_BUS_MASTER_BUG
;
625 virtio_pci_start_ioeventfd(proxy
);
627 virtio_pci_stop_ioeventfd(proxy
);
631 static const VirtIOBindings virtio_pci_bindings
= {
632 .notify
= virtio_pci_notify
,
633 .save_config
= virtio_pci_save_config
,
634 .load_config
= virtio_pci_load_config
,
635 .save_queue
= virtio_pci_save_queue
,
636 .load_queue
= virtio_pci_load_queue
,
637 .get_features
= virtio_pci_get_features
,
638 .query_guest_notifiers
= virtio_pci_query_guest_notifiers
,
639 .set_host_notifier
= virtio_pci_set_host_notifier
,
640 .set_guest_notifiers
= virtio_pci_set_guest_notifiers
,
641 .vmstate_change
= virtio_pci_vmstate_change
,
644 void virtio_init_pci(VirtIOPCIProxy
*proxy
, VirtIODevice
*vdev
)
651 config
= proxy
->pci_dev
.config
;
653 if (proxy
->class_code
) {
654 pci_config_set_class(config
, proxy
->class_code
);
656 pci_set_word(config
+ PCI_SUBSYSTEM_VENDOR_ID
,
657 pci_get_word(config
+ PCI_VENDOR_ID
));
658 pci_set_word(config
+ PCI_SUBSYSTEM_ID
, vdev
->device_id
);
659 config
[PCI_INTERRUPT_PIN
] = 1;
661 memory_region_init(&proxy
->msix_bar
, "virtio-msix", 4096);
662 if (vdev
->nvectors
&& !msix_init(&proxy
->pci_dev
, vdev
->nvectors
,
663 &proxy
->msix_bar
, 1, 0)) {
664 pci_register_bar(&proxy
->pci_dev
, 1, PCI_BASE_ADDRESS_SPACE_MEMORY
,
669 proxy
->pci_dev
.config_write
= virtio_write_config
;
671 size
= VIRTIO_PCI_REGION_SIZE(&proxy
->pci_dev
) + vdev
->config_len
;
673 size
= 1 << qemu_fls(size
);
675 memory_region_init_io(&proxy
->bar
, &virtio_pci_config_ops
, proxy
,
677 pci_register_bar(&proxy
->pci_dev
, 0, PCI_BASE_ADDRESS_SPACE_IO
,
680 if (!kvm_has_many_ioeventfds()) {
681 proxy
->flags
&= ~VIRTIO_PCI_FLAG_USE_IOEVENTFD
;
684 virtio_bind_device(vdev
, &virtio_pci_bindings
, proxy
);
685 proxy
->host_features
|= 0x1 << VIRTIO_F_NOTIFY_ON_EMPTY
;
686 proxy
->host_features
|= 0x1 << VIRTIO_F_BAD_FEATURE
;
687 proxy
->host_features
= vdev
->get_features(vdev
, proxy
->host_features
);
690 static int virtio_blk_init_pci(PCIDevice
*pci_dev
)
692 VirtIOPCIProxy
*proxy
= DO_UPCAST(VirtIOPCIProxy
, pci_dev
, pci_dev
);
695 if (proxy
->class_code
!= PCI_CLASS_STORAGE_SCSI
&&
696 proxy
->class_code
!= PCI_CLASS_STORAGE_OTHER
)
697 proxy
->class_code
= PCI_CLASS_STORAGE_SCSI
;
699 vdev
= virtio_blk_init(&pci_dev
->qdev
, &proxy
->block
,
700 &proxy
->block_serial
);
704 vdev
->nvectors
= proxy
->nvectors
;
705 virtio_init_pci(proxy
, vdev
);
706 /* make the actual value visible */
707 proxy
->nvectors
= vdev
->nvectors
;
711 static int virtio_exit_pci(PCIDevice
*pci_dev
)
713 VirtIOPCIProxy
*proxy
= DO_UPCAST(VirtIOPCIProxy
, pci_dev
, pci_dev
);
716 memory_region_destroy(&proxy
->bar
);
717 r
= msix_uninit(pci_dev
, &proxy
->msix_bar
);
718 memory_region_destroy(&proxy
->msix_bar
);
722 static int virtio_blk_exit_pci(PCIDevice
*pci_dev
)
724 VirtIOPCIProxy
*proxy
= DO_UPCAST(VirtIOPCIProxy
, pci_dev
, pci_dev
);
726 virtio_pci_stop_ioeventfd(proxy
);
727 virtio_blk_exit(proxy
->vdev
);
728 blockdev_mark_auto_del(proxy
->block
.bs
);
729 return virtio_exit_pci(pci_dev
);
732 static int virtio_serial_init_pci(PCIDevice
*pci_dev
)
734 VirtIOPCIProxy
*proxy
= DO_UPCAST(VirtIOPCIProxy
, pci_dev
, pci_dev
);
737 if (proxy
->class_code
!= PCI_CLASS_COMMUNICATION_OTHER
&&
738 proxy
->class_code
!= PCI_CLASS_DISPLAY_OTHER
&& /* qemu 0.10 */
739 proxy
->class_code
!= PCI_CLASS_OTHERS
) /* qemu-kvm */
740 proxy
->class_code
= PCI_CLASS_COMMUNICATION_OTHER
;
742 vdev
= virtio_serial_init(&pci_dev
->qdev
, &proxy
->serial
);
746 vdev
->nvectors
= proxy
->nvectors
== DEV_NVECTORS_UNSPECIFIED
747 ? proxy
->serial
.max_virtserial_ports
+ 1
749 virtio_init_pci(proxy
, vdev
);
750 proxy
->nvectors
= vdev
->nvectors
;
754 static int virtio_serial_exit_pci(PCIDevice
*pci_dev
)
756 VirtIOPCIProxy
*proxy
= DO_UPCAST(VirtIOPCIProxy
, pci_dev
, pci_dev
);
758 virtio_pci_stop_ioeventfd(proxy
);
759 virtio_serial_exit(proxy
->vdev
);
760 return virtio_exit_pci(pci_dev
);
763 static int virtio_net_init_pci(PCIDevice
*pci_dev
)
765 VirtIOPCIProxy
*proxy
= DO_UPCAST(VirtIOPCIProxy
, pci_dev
, pci_dev
);
768 vdev
= virtio_net_init(&pci_dev
->qdev
, &proxy
->nic
, &proxy
->net
);
770 vdev
->nvectors
= proxy
->nvectors
;
771 virtio_init_pci(proxy
, vdev
);
773 /* make the actual value visible */
774 proxy
->nvectors
= vdev
->nvectors
;
778 static int virtio_net_exit_pci(PCIDevice
*pci_dev
)
780 VirtIOPCIProxy
*proxy
= DO_UPCAST(VirtIOPCIProxy
, pci_dev
, pci_dev
);
782 virtio_pci_stop_ioeventfd(proxy
);
783 virtio_net_exit(proxy
->vdev
);
784 return virtio_exit_pci(pci_dev
);
787 static int virtio_balloon_init_pci(PCIDevice
*pci_dev
)
789 VirtIOPCIProxy
*proxy
= DO_UPCAST(VirtIOPCIProxy
, pci_dev
, pci_dev
);
792 vdev
= virtio_balloon_init(&pci_dev
->qdev
);
796 virtio_init_pci(proxy
, vdev
);
800 static int virtio_balloon_exit_pci(PCIDevice
*pci_dev
)
802 VirtIOPCIProxy
*proxy
= DO_UPCAST(VirtIOPCIProxy
, pci_dev
, pci_dev
);
804 virtio_pci_stop_ioeventfd(proxy
);
805 virtio_balloon_exit(proxy
->vdev
);
806 return virtio_exit_pci(pci_dev
);
809 static Property virtio_blk_properties
[] = {
810 DEFINE_PROP_HEX32("class", VirtIOPCIProxy
, class_code
, 0),
811 DEFINE_BLOCK_PROPERTIES(VirtIOPCIProxy
, block
),
812 DEFINE_PROP_STRING("serial", VirtIOPCIProxy
, block_serial
),
813 DEFINE_PROP_BIT("ioeventfd", VirtIOPCIProxy
, flags
, VIRTIO_PCI_FLAG_USE_IOEVENTFD_BIT
, true),
814 DEFINE_PROP_UINT32("vectors", VirtIOPCIProxy
, nvectors
, 2),
815 DEFINE_VIRTIO_BLK_FEATURES(VirtIOPCIProxy
, host_features
),
816 DEFINE_PROP_END_OF_LIST(),
819 static void virtio_blk_class_init(ObjectClass
*klass
, void *data
)
821 DeviceClass
*dc
= DEVICE_CLASS(klass
);
822 PCIDeviceClass
*k
= PCI_DEVICE_CLASS(klass
);
824 k
->init
= virtio_blk_init_pci
;
825 k
->exit
= virtio_blk_exit_pci
;
826 k
->vendor_id
= PCI_VENDOR_ID_REDHAT_QUMRANET
;
827 k
->device_id
= PCI_DEVICE_ID_VIRTIO_BLOCK
;
828 k
->revision
= VIRTIO_PCI_ABI_VERSION
;
829 k
->class_id
= PCI_CLASS_STORAGE_SCSI
;
830 dc
->reset
= virtio_pci_reset
;
831 dc
->props
= virtio_blk_properties
;
834 static TypeInfo virtio_blk_info
= {
835 .name
= "virtio-blk-pci",
836 .parent
= TYPE_PCI_DEVICE
,
837 .instance_size
= sizeof(VirtIOPCIProxy
),
838 .class_init
= virtio_blk_class_init
,
841 static Property virtio_net_properties
[] = {
842 DEFINE_PROP_BIT("ioeventfd", VirtIOPCIProxy
, flags
, VIRTIO_PCI_FLAG_USE_IOEVENTFD_BIT
, false),
843 DEFINE_PROP_UINT32("vectors", VirtIOPCIProxy
, nvectors
, 3),
844 DEFINE_VIRTIO_NET_FEATURES(VirtIOPCIProxy
, host_features
),
845 DEFINE_NIC_PROPERTIES(VirtIOPCIProxy
, nic
),
846 DEFINE_PROP_UINT32("x-txtimer", VirtIOPCIProxy
, net
.txtimer
, TX_TIMER_INTERVAL
),
847 DEFINE_PROP_INT32("x-txburst", VirtIOPCIProxy
, net
.txburst
, TX_BURST
),
848 DEFINE_PROP_STRING("tx", VirtIOPCIProxy
, net
.tx
),
849 DEFINE_PROP_END_OF_LIST(),
852 static void virtio_net_class_init(ObjectClass
*klass
, void *data
)
854 DeviceClass
*dc
= DEVICE_CLASS(klass
);
855 PCIDeviceClass
*k
= PCI_DEVICE_CLASS(klass
);
857 k
->init
= virtio_net_init_pci
;
858 k
->exit
= virtio_net_exit_pci
;
859 k
->romfile
= "pxe-virtio.rom";
860 k
->vendor_id
= PCI_VENDOR_ID_REDHAT_QUMRANET
;
861 k
->device_id
= PCI_DEVICE_ID_VIRTIO_NET
;
862 k
->revision
= VIRTIO_PCI_ABI_VERSION
;
863 k
->class_id
= PCI_CLASS_NETWORK_ETHERNET
;
864 dc
->reset
= virtio_pci_reset
;
865 dc
->props
= virtio_net_properties
;
868 static TypeInfo virtio_net_info
= {
869 .name
= "virtio-net-pci",
870 .parent
= TYPE_PCI_DEVICE
,
871 .instance_size
= sizeof(VirtIOPCIProxy
),
872 .class_init
= virtio_net_class_init
,
875 static Property virtio_serial_properties
[] = {
876 DEFINE_PROP_BIT("ioeventfd", VirtIOPCIProxy
, flags
, VIRTIO_PCI_FLAG_USE_IOEVENTFD_BIT
, true),
877 DEFINE_PROP_UINT32("vectors", VirtIOPCIProxy
, nvectors
, DEV_NVECTORS_UNSPECIFIED
),
878 DEFINE_PROP_HEX32("class", VirtIOPCIProxy
, class_code
, 0),
879 DEFINE_VIRTIO_COMMON_FEATURES(VirtIOPCIProxy
, host_features
),
880 DEFINE_PROP_UINT32("max_ports", VirtIOPCIProxy
, serial
.max_virtserial_ports
, 31),
881 DEFINE_PROP_END_OF_LIST(),
884 static void virtio_serial_class_init(ObjectClass
*klass
, void *data
)
886 DeviceClass
*dc
= DEVICE_CLASS(klass
);
887 PCIDeviceClass
*k
= PCI_DEVICE_CLASS(klass
);
889 k
->init
= virtio_serial_init_pci
;
890 k
->exit
= virtio_serial_exit_pci
;
891 k
->vendor_id
= PCI_VENDOR_ID_REDHAT_QUMRANET
;
892 k
->device_id
= PCI_DEVICE_ID_VIRTIO_CONSOLE
;
893 k
->revision
= VIRTIO_PCI_ABI_VERSION
;
894 k
->class_id
= PCI_CLASS_COMMUNICATION_OTHER
;
895 dc
->reset
= virtio_pci_reset
;
896 dc
->props
= virtio_serial_properties
;
899 static TypeInfo virtio_serial_info
= {
900 .name
= "virtio-serial-pci",
901 .parent
= TYPE_PCI_DEVICE
,
902 .instance_size
= sizeof(VirtIOPCIProxy
),
903 .class_init
= virtio_serial_class_init
,
906 static Property virtio_balloon_properties
[] = {
907 DEFINE_VIRTIO_COMMON_FEATURES(VirtIOPCIProxy
, host_features
),
908 DEFINE_PROP_END_OF_LIST(),
911 static void virtio_balloon_class_init(ObjectClass
*klass
, void *data
)
913 DeviceClass
*dc
= DEVICE_CLASS(klass
);
914 PCIDeviceClass
*k
= PCI_DEVICE_CLASS(klass
);
916 k
->init
= virtio_balloon_init_pci
;
917 k
->exit
= virtio_balloon_exit_pci
;
918 k
->vendor_id
= PCI_VENDOR_ID_REDHAT_QUMRANET
;
919 k
->device_id
= PCI_DEVICE_ID_VIRTIO_BALLOON
;
920 k
->revision
= VIRTIO_PCI_ABI_VERSION
;
921 k
->class_id
= PCI_CLASS_MEMORY_RAM
;
922 dc
->reset
= virtio_pci_reset
;
923 dc
->props
= virtio_balloon_properties
;
926 static TypeInfo virtio_balloon_info
= {
927 .name
= "virtio-balloon-pci",
928 .parent
= TYPE_PCI_DEVICE
,
929 .instance_size
= sizeof(VirtIOPCIProxy
),
930 .class_init
= virtio_balloon_class_init
,
933 static void virtio_pci_register_devices(void)
935 type_register_static(&virtio_blk_info
);
936 type_register_static(&virtio_net_info
);
937 type_register_static(&virtio_serial_info
);
938 type_register_static(&virtio_balloon_info
);
941 device_init(virtio_pci_register_devices
)