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 /* We can catch some guest bugs inside here so we continue supporting older
85 #define VIRTIO_PCI_BUG_BUS_MASTER (1 << 0)
87 /* QEMU doesn't strictly need write barriers since everything runs in
88 * lock-step. We'll leave the calls to wmb() in though to make it obvious for
89 * KVM or if kqemu gets SMP support.
91 #define wmb() do { } while (0)
104 uint32_t host_features
;
108 /* Max. number of ports we can have for a the virtio-serial device */
109 uint32_t max_virtserial_ports
;
115 static void virtio_pci_notify(void *opaque
, uint16_t vector
)
117 VirtIOPCIProxy
*proxy
= opaque
;
118 if (msix_enabled(&proxy
->pci_dev
))
119 msix_notify(&proxy
->pci_dev
, vector
);
121 qemu_set_irq(proxy
->pci_dev
.irq
[0], proxy
->vdev
->isr
& 1);
124 static void virtio_pci_save_config(void * opaque
, QEMUFile
*f
)
126 VirtIOPCIProxy
*proxy
= opaque
;
127 pci_device_save(&proxy
->pci_dev
, f
);
128 msix_save(&proxy
->pci_dev
, f
);
129 if (msix_present(&proxy
->pci_dev
))
130 qemu_put_be16(f
, proxy
->vdev
->config_vector
);
133 static void virtio_pci_save_queue(void * opaque
, int n
, QEMUFile
*f
)
135 VirtIOPCIProxy
*proxy
= opaque
;
136 if (msix_present(&proxy
->pci_dev
))
137 qemu_put_be16(f
, virtio_queue_vector(proxy
->vdev
, n
));
140 static int virtio_pci_load_config(void * opaque
, QEMUFile
*f
)
142 VirtIOPCIProxy
*proxy
= opaque
;
144 ret
= pci_device_load(&proxy
->pci_dev
, f
);
148 msix_load(&proxy
->pci_dev
, f
);
149 if (msix_present(&proxy
->pci_dev
)) {
150 qemu_get_be16s(f
, &proxy
->vdev
->config_vector
);
152 proxy
->vdev
->config_vector
= VIRTIO_NO_VECTOR
;
154 if (proxy
->vdev
->config_vector
!= VIRTIO_NO_VECTOR
) {
155 return msix_vector_use(&proxy
->pci_dev
, proxy
->vdev
->config_vector
);
158 /* Try to find out if the guest has bus master disabled, but is
159 in ready state. Then we have a buggy guest OS. */
160 if ((proxy
->vdev
->status
& VIRTIO_CONFIG_S_DRIVER_OK
) &&
161 !(proxy
->pci_dev
.config
[PCI_COMMAND
] & PCI_COMMAND_MASTER
)) {
162 proxy
->bugs
|= VIRTIO_PCI_BUG_BUS_MASTER
;
167 static int virtio_pci_load_queue(void * opaque
, int n
, QEMUFile
*f
)
169 VirtIOPCIProxy
*proxy
= opaque
;
171 if (msix_present(&proxy
->pci_dev
)) {
172 qemu_get_be16s(f
, &vector
);
174 vector
= VIRTIO_NO_VECTOR
;
176 virtio_queue_set_vector(proxy
->vdev
, n
, vector
);
177 if (vector
!= VIRTIO_NO_VECTOR
) {
178 return msix_vector_use(&proxy
->pci_dev
, vector
);
183 static void virtio_pci_reset(DeviceState
*d
)
185 VirtIOPCIProxy
*proxy
= container_of(d
, VirtIOPCIProxy
, pci_dev
.qdev
);
186 virtio_reset(proxy
->vdev
);
187 msix_reset(&proxy
->pci_dev
);
191 static void virtio_ioport_write(void *opaque
, uint32_t addr
, uint32_t val
)
193 VirtIOPCIProxy
*proxy
= opaque
;
194 VirtIODevice
*vdev
= proxy
->vdev
;
195 target_phys_addr_t pa
;
198 case VIRTIO_PCI_GUEST_FEATURES
:
199 /* Guest does not negotiate properly? We have to assume nothing. */
200 if (val
& (1 << VIRTIO_F_BAD_FEATURE
)) {
201 if (vdev
->bad_features
)
202 val
= proxy
->host_features
& vdev
->bad_features(vdev
);
206 if (vdev
->set_features
)
207 vdev
->set_features(vdev
, val
);
208 vdev
->guest_features
= val
;
210 case VIRTIO_PCI_QUEUE_PFN
:
211 pa
= (target_phys_addr_t
)val
<< VIRTIO_PCI_QUEUE_ADDR_SHIFT
;
213 virtio_reset(proxy
->vdev
);
214 msix_unuse_all_vectors(&proxy
->pci_dev
);
217 virtio_queue_set_addr(vdev
, vdev
->queue_sel
, pa
);
219 case VIRTIO_PCI_QUEUE_SEL
:
220 if (val
< VIRTIO_PCI_QUEUE_MAX
)
221 vdev
->queue_sel
= val
;
223 case VIRTIO_PCI_QUEUE_NOTIFY
:
224 virtio_queue_notify(vdev
, val
);
226 case VIRTIO_PCI_STATUS
:
227 virtio_set_status(vdev
, val
& 0xFF);
228 if (vdev
->status
== 0) {
229 virtio_reset(proxy
->vdev
);
230 msix_unuse_all_vectors(&proxy
->pci_dev
);
233 /* Linux before 2.6.34 sets the device as OK without enabling
234 the PCI device bus master bit. In this case we need to disable
235 some safety checks. */
236 if ((val
& VIRTIO_CONFIG_S_DRIVER_OK
) &&
237 !(proxy
->pci_dev
.config
[PCI_COMMAND
] & PCI_COMMAND_MASTER
)) {
238 proxy
->bugs
|= VIRTIO_PCI_BUG_BUS_MASTER
;
241 case VIRTIO_MSI_CONFIG_VECTOR
:
242 msix_vector_unuse(&proxy
->pci_dev
, vdev
->config_vector
);
243 /* Make it possible for guest to discover an error took place. */
244 if (msix_vector_use(&proxy
->pci_dev
, val
) < 0)
245 val
= VIRTIO_NO_VECTOR
;
246 vdev
->config_vector
= val
;
248 case VIRTIO_MSI_QUEUE_VECTOR
:
249 msix_vector_unuse(&proxy
->pci_dev
,
250 virtio_queue_vector(vdev
, vdev
->queue_sel
));
251 /* Make it possible for guest to discover an error took place. */
252 if (msix_vector_use(&proxy
->pci_dev
, val
) < 0)
253 val
= VIRTIO_NO_VECTOR
;
254 virtio_queue_set_vector(vdev
, vdev
->queue_sel
, val
);
257 fprintf(stderr
, "%s: unexpected address 0x%x value 0x%x\n",
258 __func__
, addr
, val
);
263 static uint32_t virtio_ioport_read(VirtIOPCIProxy
*proxy
, uint32_t addr
)
265 VirtIODevice
*vdev
= proxy
->vdev
;
266 uint32_t ret
= 0xFFFFFFFF;
269 case VIRTIO_PCI_HOST_FEATURES
:
270 ret
= proxy
->host_features
;
272 case VIRTIO_PCI_GUEST_FEATURES
:
273 ret
= vdev
->guest_features
;
275 case VIRTIO_PCI_QUEUE_PFN
:
276 ret
= virtio_queue_get_addr(vdev
, vdev
->queue_sel
)
277 >> VIRTIO_PCI_QUEUE_ADDR_SHIFT
;
279 case VIRTIO_PCI_QUEUE_NUM
:
280 ret
= virtio_queue_get_num(vdev
, vdev
->queue_sel
);
282 case VIRTIO_PCI_QUEUE_SEL
:
283 ret
= vdev
->queue_sel
;
285 case VIRTIO_PCI_STATUS
:
289 /* reading from the ISR also clears it. */
292 qemu_set_irq(proxy
->pci_dev
.irq
[0], 0);
294 case VIRTIO_MSI_CONFIG_VECTOR
:
295 ret
= vdev
->config_vector
;
297 case VIRTIO_MSI_QUEUE_VECTOR
:
298 ret
= virtio_queue_vector(vdev
, vdev
->queue_sel
);
307 static uint32_t virtio_pci_config_readb(void *opaque
, uint32_t addr
)
309 VirtIOPCIProxy
*proxy
= opaque
;
310 uint32_t config
= VIRTIO_PCI_CONFIG(&proxy
->pci_dev
);
313 return virtio_ioport_read(proxy
, addr
);
315 return virtio_config_readb(proxy
->vdev
, addr
);
318 static uint32_t virtio_pci_config_readw(void *opaque
, uint32_t addr
)
320 VirtIOPCIProxy
*proxy
= opaque
;
321 uint32_t config
= VIRTIO_PCI_CONFIG(&proxy
->pci_dev
);
324 return virtio_ioport_read(proxy
, addr
);
326 return virtio_config_readw(proxy
->vdev
, addr
);
329 static uint32_t virtio_pci_config_readl(void *opaque
, uint32_t addr
)
331 VirtIOPCIProxy
*proxy
= opaque
;
332 uint32_t config
= VIRTIO_PCI_CONFIG(&proxy
->pci_dev
);
335 return virtio_ioport_read(proxy
, addr
);
337 return virtio_config_readl(proxy
->vdev
, addr
);
340 static void virtio_pci_config_writeb(void *opaque
, uint32_t addr
, uint32_t val
)
342 VirtIOPCIProxy
*proxy
= opaque
;
343 uint32_t config
= VIRTIO_PCI_CONFIG(&proxy
->pci_dev
);
346 virtio_ioport_write(proxy
, addr
, val
);
350 virtio_config_writeb(proxy
->vdev
, addr
, val
);
353 static void virtio_pci_config_writew(void *opaque
, uint32_t addr
, uint32_t val
)
355 VirtIOPCIProxy
*proxy
= opaque
;
356 uint32_t config
= VIRTIO_PCI_CONFIG(&proxy
->pci_dev
);
359 virtio_ioport_write(proxy
, addr
, val
);
363 virtio_config_writew(proxy
->vdev
, addr
, val
);
366 static void virtio_pci_config_writel(void *opaque
, uint32_t addr
, uint32_t val
)
368 VirtIOPCIProxy
*proxy
= opaque
;
369 uint32_t config
= VIRTIO_PCI_CONFIG(&proxy
->pci_dev
);
372 virtio_ioport_write(proxy
, addr
, val
);
376 virtio_config_writel(proxy
->vdev
, addr
, val
);
379 static void virtio_map(PCIDevice
*pci_dev
, int region_num
,
380 pcibus_t addr
, pcibus_t size
, int type
)
382 VirtIOPCIProxy
*proxy
= container_of(pci_dev
, VirtIOPCIProxy
, pci_dev
);
383 VirtIODevice
*vdev
= proxy
->vdev
;
384 unsigned config_len
= VIRTIO_PCI_REGION_SIZE(pci_dev
) + vdev
->config_len
;
388 register_ioport_write(addr
, config_len
, 1, virtio_pci_config_writeb
, proxy
);
389 register_ioport_write(addr
, config_len
, 2, virtio_pci_config_writew
, proxy
);
390 register_ioport_write(addr
, config_len
, 4, virtio_pci_config_writel
, proxy
);
391 register_ioport_read(addr
, config_len
, 1, virtio_pci_config_readb
, proxy
);
392 register_ioport_read(addr
, config_len
, 2, virtio_pci_config_readw
, proxy
);
393 register_ioport_read(addr
, config_len
, 4, virtio_pci_config_readl
, proxy
);
395 if (vdev
->config_len
)
396 vdev
->get_config(vdev
, vdev
->config
);
399 static void virtio_write_config(PCIDevice
*pci_dev
, uint32_t address
,
400 uint32_t val
, int len
)
402 VirtIOPCIProxy
*proxy
= DO_UPCAST(VirtIOPCIProxy
, pci_dev
, pci_dev
);
404 if (PCI_COMMAND
== address
) {
405 if (!(val
& PCI_COMMAND_MASTER
)) {
406 if (!(proxy
->bugs
& VIRTIO_PCI_BUG_BUS_MASTER
)) {
407 virtio_set_status(proxy
->vdev
,
408 proxy
->vdev
->status
& ~VIRTIO_CONFIG_S_DRIVER_OK
);
413 pci_default_write_config(pci_dev
, address
, val
, len
);
414 msix_write_config(pci_dev
, address
, val
, len
);
417 static unsigned virtio_pci_get_features(void *opaque
)
419 VirtIOPCIProxy
*proxy
= opaque
;
420 return proxy
->host_features
;
423 static void virtio_pci_guest_notifier_read(void *opaque
)
425 VirtQueue
*vq
= opaque
;
426 EventNotifier
*n
= virtio_queue_get_guest_notifier(vq
);
427 if (event_notifier_test_and_clear(n
)) {
432 static int virtio_pci_mask_notifier(PCIDevice
*dev
, unsigned vector
,
433 void *opaque
, int masked
)
436 VirtQueue
*vq
= opaque
;
437 EventNotifier
*notifier
= virtio_queue_get_guest_notifier(vq
);
438 int r
= kvm_set_irqfd(dev
->msix_irq_entries
[vector
].gsi
,
439 event_notifier_get_fd(notifier
),
442 return (r
== -ENOSYS
) ? 0 : r
;
445 qemu_set_fd_handler(event_notifier_get_fd(notifier
),
446 virtio_pci_guest_notifier_read
, NULL
, vq
);
448 qemu_set_fd_handler(event_notifier_get_fd(notifier
),
457 static int virtio_pci_set_guest_notifier(void *opaque
, int n
, bool assign
)
459 VirtIOPCIProxy
*proxy
= opaque
;
460 VirtQueue
*vq
= virtio_get_queue(proxy
->vdev
, n
);
461 EventNotifier
*notifier
= virtio_queue_get_guest_notifier(vq
);
464 int r
= event_notifier_init(notifier
, 0);
468 qemu_set_fd_handler(event_notifier_get_fd(notifier
),
469 virtio_pci_guest_notifier_read
, NULL
, vq
);
470 msix_set_mask_notifier(&proxy
->pci_dev
,
471 virtio_queue_vector(proxy
->vdev
, n
), vq
);
473 msix_unset_mask_notifier(&proxy
->pci_dev
,
474 virtio_queue_vector(proxy
->vdev
, n
));
475 qemu_set_fd_handler(event_notifier_get_fd(notifier
),
477 /* Test and clear notifier before closing it,
478 * in case poll callback didn't have time to run. */
479 virtio_pci_guest_notifier_read(vq
);
480 event_notifier_cleanup(notifier
);
486 static int virtio_pci_set_host_notifier(void *opaque
, int n
, bool assign
)
488 VirtIOPCIProxy
*proxy
= opaque
;
489 VirtQueue
*vq
= virtio_get_queue(proxy
->vdev
, n
);
490 EventNotifier
*notifier
= virtio_queue_get_host_notifier(vq
);
493 r
= event_notifier_init(notifier
, 1);
497 r
= kvm_set_ioeventfd_pio_word(event_notifier_get_fd(notifier
),
498 proxy
->addr
+ VIRTIO_PCI_QUEUE_NOTIFY
,
501 event_notifier_cleanup(notifier
);
504 r
= kvm_set_ioeventfd_pio_word(event_notifier_get_fd(notifier
),
505 proxy
->addr
+ VIRTIO_PCI_QUEUE_NOTIFY
,
510 event_notifier_cleanup(notifier
);
515 static const VirtIOBindings virtio_pci_bindings
= {
516 .notify
= virtio_pci_notify
,
517 .save_config
= virtio_pci_save_config
,
518 .load_config
= virtio_pci_load_config
,
519 .save_queue
= virtio_pci_save_queue
,
520 .load_queue
= virtio_pci_load_queue
,
521 .get_features
= virtio_pci_get_features
,
522 .set_host_notifier
= virtio_pci_set_host_notifier
,
523 .set_guest_notifier
= virtio_pci_set_guest_notifier
,
526 static void virtio_init_pci(VirtIOPCIProxy
*proxy
, VirtIODevice
*vdev
,
527 uint16_t vendor
, uint16_t device
,
528 uint16_t class_code
, uint8_t pif
)
535 config
= proxy
->pci_dev
.config
;
536 pci_config_set_vendor_id(config
, vendor
);
537 pci_config_set_device_id(config
, device
);
539 config
[0x08] = VIRTIO_PCI_ABI_VERSION
;
542 pci_config_set_class(config
, class_code
);
544 config
[0x2c] = vendor
& 0xFF;
545 config
[0x2d] = (vendor
>> 8) & 0xFF;
546 config
[0x2e] = vdev
->device_id
& 0xFF;
547 config
[0x2f] = (vdev
->device_id
>> 8) & 0xFF;
551 if (vdev
->nvectors
&& !msix_init(&proxy
->pci_dev
, vdev
->nvectors
, 1, 0)) {
552 pci_register_bar(&proxy
->pci_dev
, 1,
553 msix_bar_size(&proxy
->pci_dev
),
554 PCI_BASE_ADDRESS_SPACE_MEMORY
,
559 proxy
->pci_dev
.config_write
= virtio_write_config
;
561 proxy
->pci_dev
.msix_mask_notifier
= virtio_pci_mask_notifier
;
563 size
= VIRTIO_PCI_REGION_SIZE(&proxy
->pci_dev
) + vdev
->config_len
;
565 size
= 1 << qemu_fls(size
);
567 pci_register_bar(&proxy
->pci_dev
, 0, size
, PCI_BASE_ADDRESS_SPACE_IO
,
570 virtio_bind_device(vdev
, &virtio_pci_bindings
, proxy
);
571 proxy
->host_features
|= 0x1 << VIRTIO_F_NOTIFY_ON_EMPTY
;
572 proxy
->host_features
|= 0x1 << VIRTIO_F_BAD_FEATURE
;
573 proxy
->host_features
= vdev
->get_features(vdev
, proxy
->host_features
);
576 static int virtio_blk_init_pci(PCIDevice
*pci_dev
)
578 VirtIOPCIProxy
*proxy
= DO_UPCAST(VirtIOPCIProxy
, pci_dev
, pci_dev
);
581 if (proxy
->class_code
!= PCI_CLASS_STORAGE_SCSI
&&
582 proxy
->class_code
!= PCI_CLASS_STORAGE_OTHER
)
583 proxy
->class_code
= PCI_CLASS_STORAGE_SCSI
;
585 vdev
= virtio_blk_init(&pci_dev
->qdev
, &proxy
->block
);
589 vdev
->nvectors
= proxy
->nvectors
;
590 virtio_init_pci(proxy
, vdev
,
591 PCI_VENDOR_ID_REDHAT_QUMRANET
,
592 PCI_DEVICE_ID_VIRTIO_BLOCK
,
593 proxy
->class_code
, 0x00);
594 /* make the actual value visible */
595 proxy
->nvectors
= vdev
->nvectors
;
599 static int virtio_exit_pci(PCIDevice
*pci_dev
)
601 return msix_uninit(pci_dev
);
604 static int virtio_blk_exit_pci(PCIDevice
*pci_dev
)
606 VirtIOPCIProxy
*proxy
= DO_UPCAST(VirtIOPCIProxy
, pci_dev
, pci_dev
);
608 virtio_blk_exit(proxy
->vdev
);
609 blockdev_mark_auto_del(proxy
->block
.bs
);
610 return virtio_exit_pci(pci_dev
);
613 static int virtio_serial_init_pci(PCIDevice
*pci_dev
)
615 VirtIOPCIProxy
*proxy
= DO_UPCAST(VirtIOPCIProxy
, pci_dev
, pci_dev
);
618 if (proxy
->class_code
!= PCI_CLASS_COMMUNICATION_OTHER
&&
619 proxy
->class_code
!= PCI_CLASS_DISPLAY_OTHER
&& /* qemu 0.10 */
620 proxy
->class_code
!= PCI_CLASS_OTHERS
) /* qemu-kvm */
621 proxy
->class_code
= PCI_CLASS_COMMUNICATION_OTHER
;
623 vdev
= virtio_serial_init(&pci_dev
->qdev
, proxy
->max_virtserial_ports
);
627 vdev
->nvectors
= proxy
->nvectors
== DEV_NVECTORS_UNSPECIFIED
628 ? proxy
->max_virtserial_ports
+ 1
630 virtio_init_pci(proxy
, vdev
,
631 PCI_VENDOR_ID_REDHAT_QUMRANET
,
632 PCI_DEVICE_ID_VIRTIO_CONSOLE
,
633 proxy
->class_code
, 0x00);
634 proxy
->nvectors
= vdev
->nvectors
;
638 static int virtio_serial_exit_pci(PCIDevice
*pci_dev
)
640 VirtIOPCIProxy
*proxy
= DO_UPCAST(VirtIOPCIProxy
, pci_dev
, pci_dev
);
642 virtio_serial_exit(proxy
->vdev
);
643 return virtio_exit_pci(pci_dev
);
646 static int virtio_net_init_pci(PCIDevice
*pci_dev
)
648 VirtIOPCIProxy
*proxy
= DO_UPCAST(VirtIOPCIProxy
, pci_dev
, pci_dev
);
651 vdev
= virtio_net_init(&pci_dev
->qdev
, &proxy
->nic
, &proxy
->net
);
653 vdev
->nvectors
= proxy
->nvectors
;
654 virtio_init_pci(proxy
, vdev
,
655 PCI_VENDOR_ID_REDHAT_QUMRANET
,
656 PCI_DEVICE_ID_VIRTIO_NET
,
657 PCI_CLASS_NETWORK_ETHERNET
,
660 /* make the actual value visible */
661 proxy
->nvectors
= vdev
->nvectors
;
665 static int virtio_net_exit_pci(PCIDevice
*pci_dev
)
667 VirtIOPCIProxy
*proxy
= DO_UPCAST(VirtIOPCIProxy
, pci_dev
, pci_dev
);
669 virtio_net_exit(proxy
->vdev
);
670 return virtio_exit_pci(pci_dev
);
673 static int virtio_balloon_init_pci(PCIDevice
*pci_dev
)
675 VirtIOPCIProxy
*proxy
= DO_UPCAST(VirtIOPCIProxy
, pci_dev
, pci_dev
);
678 vdev
= virtio_balloon_init(&pci_dev
->qdev
);
679 virtio_init_pci(proxy
, vdev
,
680 PCI_VENDOR_ID_REDHAT_QUMRANET
,
681 PCI_DEVICE_ID_VIRTIO_BALLOON
,
682 PCI_CLASS_MEMORY_RAM
,
688 static int virtio_9p_init_pci(PCIDevice
*pci_dev
)
690 VirtIOPCIProxy
*proxy
= DO_UPCAST(VirtIOPCIProxy
, pci_dev
, pci_dev
);
693 vdev
= virtio_9p_init(&pci_dev
->qdev
, &proxy
->fsconf
);
694 virtio_init_pci(proxy
, vdev
,
695 PCI_VENDOR_ID_REDHAT_QUMRANET
,
704 static PCIDeviceInfo virtio_info
[] = {
706 .qdev
.name
= "virtio-blk-pci",
707 .qdev
.size
= sizeof(VirtIOPCIProxy
),
708 .init
= virtio_blk_init_pci
,
709 .exit
= virtio_blk_exit_pci
,
710 .qdev
.props
= (Property
[]) {
711 DEFINE_PROP_HEX32("class", VirtIOPCIProxy
, class_code
, 0),
712 DEFINE_BLOCK_PROPERTIES(VirtIOPCIProxy
, block
),
713 DEFINE_PROP_UINT32("vectors", VirtIOPCIProxy
, nvectors
, 2),
714 DEFINE_VIRTIO_BLK_FEATURES(VirtIOPCIProxy
, host_features
),
715 DEFINE_PROP_END_OF_LIST(),
717 .qdev
.reset
= virtio_pci_reset
,
719 .qdev
.name
= "virtio-net-pci",
720 .qdev
.size
= sizeof(VirtIOPCIProxy
),
721 .init
= virtio_net_init_pci
,
722 .exit
= virtio_net_exit_pci
,
723 .romfile
= "pxe-virtio.bin",
724 .qdev
.props
= (Property
[]) {
725 DEFINE_PROP_UINT32("vectors", VirtIOPCIProxy
, nvectors
, 3),
726 DEFINE_VIRTIO_NET_FEATURES(VirtIOPCIProxy
, host_features
),
727 DEFINE_NIC_PROPERTIES(VirtIOPCIProxy
, nic
),
728 DEFINE_PROP_UINT32("x-txtimer", VirtIOPCIProxy
,
729 net
.txtimer
, TX_TIMER_INTERVAL
),
730 DEFINE_PROP_INT32("x-txburst", VirtIOPCIProxy
,
731 net
.txburst
, TX_BURST
),
732 DEFINE_PROP_STRING("tx", VirtIOPCIProxy
, net
.tx
),
733 DEFINE_PROP_END_OF_LIST(),
735 .qdev
.reset
= virtio_pci_reset
,
737 .qdev
.name
= "virtio-serial-pci",
738 .qdev
.alias
= "virtio-serial",
739 .qdev
.size
= sizeof(VirtIOPCIProxy
),
740 .init
= virtio_serial_init_pci
,
741 .exit
= virtio_serial_exit_pci
,
742 .qdev
.props
= (Property
[]) {
743 DEFINE_PROP_UINT32("vectors", VirtIOPCIProxy
, nvectors
,
744 DEV_NVECTORS_UNSPECIFIED
),
745 DEFINE_PROP_HEX32("class", VirtIOPCIProxy
, class_code
, 0),
746 DEFINE_VIRTIO_COMMON_FEATURES(VirtIOPCIProxy
, host_features
),
747 DEFINE_PROP_UINT32("max_ports", VirtIOPCIProxy
, max_virtserial_ports
,
749 DEFINE_PROP_END_OF_LIST(),
751 .qdev
.reset
= virtio_pci_reset
,
753 .qdev
.name
= "virtio-balloon-pci",
754 .qdev
.size
= sizeof(VirtIOPCIProxy
),
755 .init
= virtio_balloon_init_pci
,
756 .exit
= virtio_exit_pci
,
757 .qdev
.props
= (Property
[]) {
758 DEFINE_VIRTIO_COMMON_FEATURES(VirtIOPCIProxy
, host_features
),
759 DEFINE_PROP_END_OF_LIST(),
761 .qdev
.reset
= virtio_pci_reset
,
764 .qdev
.name
= "virtio-9p-pci",
765 .qdev
.size
= sizeof(VirtIOPCIProxy
),
766 .init
= virtio_9p_init_pci
,
767 .qdev
.props
= (Property
[]) {
768 DEFINE_VIRTIO_COMMON_FEATURES(VirtIOPCIProxy
, host_features
),
769 DEFINE_PROP_STRING("mount_tag", VirtIOPCIProxy
, fsconf
.tag
),
770 DEFINE_PROP_STRING("fsdev", VirtIOPCIProxy
, fsconf
.fsdev_id
),
771 DEFINE_PROP_END_OF_LIST(),
779 static void virtio_pci_register_devices(void)
781 pci_qdev_register_many(virtio_info
);
784 device_init(virtio_pci_register_devices
)