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.
24 /* from Linux's linux/virtio_pci.h */
26 /* A 32-bit r/o bitmask of the features supported by the host */
27 #define VIRTIO_PCI_HOST_FEATURES 0
29 /* A 32-bit r/w bitmask of features activated by the guest */
30 #define VIRTIO_PCI_GUEST_FEATURES 4
32 /* A 32-bit r/w PFN for the currently selected queue */
33 #define VIRTIO_PCI_QUEUE_PFN 8
35 /* A 16-bit r/o queue size for the currently selected queue */
36 #define VIRTIO_PCI_QUEUE_NUM 12
38 /* A 16-bit r/w queue selector */
39 #define VIRTIO_PCI_QUEUE_SEL 14
41 /* A 16-bit r/w queue notifier */
42 #define VIRTIO_PCI_QUEUE_NOTIFY 16
44 /* An 8-bit device status register. */
45 #define VIRTIO_PCI_STATUS 18
47 /* An 8-bit r/o interrupt status register. Reading the value will return the
48 * current contents of the ISR and will also clear it. This is effectively
49 * a read-and-acknowledge. */
50 #define VIRTIO_PCI_ISR 19
52 /* MSI-X registers: only enabled if MSI-X is enabled. */
53 /* A 16-bit vector for configuration changes. */
54 #define VIRTIO_MSI_CONFIG_VECTOR 20
55 /* A 16-bit vector for selected queue notifications. */
56 #define VIRTIO_MSI_QUEUE_VECTOR 22
58 /* Config space size */
59 #define VIRTIO_PCI_CONFIG_NOMSI 20
60 #define VIRTIO_PCI_CONFIG_MSI 24
61 #define VIRTIO_PCI_REGION_SIZE(dev) (msix_present(dev) ? \
62 VIRTIO_PCI_CONFIG_MSI : \
63 VIRTIO_PCI_CONFIG_NOMSI)
65 /* The remaining space is defined by each driver as the per-driver
66 * configuration space */
67 #define VIRTIO_PCI_CONFIG(dev) (msix_enabled(dev) ? \
68 VIRTIO_PCI_CONFIG_MSI : \
69 VIRTIO_PCI_CONFIG_NOMSI)
71 /* Virtio ABI version, if we increment this, we break the guest driver. */
72 #define VIRTIO_PCI_ABI_VERSION 0
74 /* How many bits to shift physical queue address written to QUEUE_PFN.
75 * 12 is historical, and due to x86 page size. */
76 #define VIRTIO_PCI_QUEUE_ADDR_SHIFT 12
78 /* QEMU doesn't strictly need write barriers since everything runs in
79 * lock-step. We'll leave the calls to wmb() in though to make it obvious for
80 * KVM or if kqemu gets SMP support.
82 #define wmb() do { } while (0)
96 static void virtio_pci_notify(void *opaque
, uint16_t vector
)
98 VirtIOPCIProxy
*proxy
= opaque
;
99 if (msix_enabled(&proxy
->pci_dev
))
100 msix_notify(&proxy
->pci_dev
, vector
);
102 qemu_set_irq(proxy
->pci_dev
.irq
[0], proxy
->vdev
->isr
& 1);
105 static void virtio_pci_save_config(void * opaque
, QEMUFile
*f
)
107 VirtIOPCIProxy
*proxy
= opaque
;
108 pci_device_save(&proxy
->pci_dev
, f
);
109 msix_save(&proxy
->pci_dev
, f
);
110 if (msix_present(&proxy
->pci_dev
))
111 qemu_put_be16(f
, proxy
->vdev
->config_vector
);
114 static void virtio_pci_save_queue(void * opaque
, int n
, QEMUFile
*f
)
116 VirtIOPCIProxy
*proxy
= opaque
;
117 if (msix_present(&proxy
->pci_dev
))
118 qemu_put_be16(f
, virtio_queue_vector(proxy
->vdev
, n
));
121 static int virtio_pci_load_config(void * opaque
, QEMUFile
*f
)
123 VirtIOPCIProxy
*proxy
= opaque
;
125 ret
= pci_device_load(&proxy
->pci_dev
, f
);
129 msix_load(&proxy
->pci_dev
, f
);
130 if (msix_present(&proxy
->pci_dev
)) {
131 qemu_get_be16s(f
, &proxy
->vdev
->config_vector
);
133 proxy
->vdev
->config_vector
= VIRTIO_NO_VECTOR
;
135 if (proxy
->vdev
->config_vector
!= VIRTIO_NO_VECTOR
) {
136 return msix_vector_use(&proxy
->pci_dev
, proxy
->vdev
->config_vector
);
141 static int virtio_pci_load_queue(void * opaque
, int n
, QEMUFile
*f
)
143 VirtIOPCIProxy
*proxy
= opaque
;
145 if (msix_present(&proxy
->pci_dev
)) {
146 qemu_get_be16s(f
, &vector
);
148 vector
= VIRTIO_NO_VECTOR
;
150 virtio_queue_set_vector(proxy
->vdev
, n
, vector
);
151 if (vector
!= VIRTIO_NO_VECTOR
) {
152 return msix_vector_use(&proxy
->pci_dev
, vector
);
157 static void virtio_pci_reset(void *opaque
)
159 VirtIOPCIProxy
*proxy
= opaque
;
160 virtio_reset(proxy
->vdev
);
161 msix_reset(&proxy
->pci_dev
);
164 static void virtio_ioport_write(void *opaque
, uint32_t addr
, uint32_t val
)
166 VirtIOPCIProxy
*proxy
= opaque
;
167 VirtIODevice
*vdev
= proxy
->vdev
;
168 target_phys_addr_t pa
;
171 case VIRTIO_PCI_GUEST_FEATURES
:
172 /* Guest does not negotiate properly? We have to assume nothing. */
173 if (val
& (1 << VIRTIO_F_BAD_FEATURE
)) {
174 if (vdev
->bad_features
)
175 val
= vdev
->bad_features(vdev
);
179 if (vdev
->set_features
)
180 vdev
->set_features(vdev
, val
);
181 vdev
->features
= val
;
183 case VIRTIO_PCI_QUEUE_PFN
:
184 pa
= (target_phys_addr_t
)val
<< VIRTIO_PCI_QUEUE_ADDR_SHIFT
;
186 virtio_pci_reset(proxy
);
188 virtio_queue_set_addr(vdev
, vdev
->queue_sel
, pa
);
190 case VIRTIO_PCI_QUEUE_SEL
:
191 if (val
< VIRTIO_PCI_QUEUE_MAX
)
192 vdev
->queue_sel
= val
;
194 case VIRTIO_PCI_QUEUE_NOTIFY
:
195 virtio_queue_notify(vdev
, val
);
197 case VIRTIO_PCI_STATUS
:
198 vdev
->status
= val
& 0xFF;
199 if (vdev
->status
== 0)
200 virtio_pci_reset(proxy
);
202 case VIRTIO_MSI_CONFIG_VECTOR
:
203 msix_vector_unuse(&proxy
->pci_dev
, vdev
->config_vector
);
204 /* Make it possible for guest to discover an error took place. */
205 if (msix_vector_use(&proxy
->pci_dev
, val
) < 0)
206 val
= VIRTIO_NO_VECTOR
;
207 vdev
->config_vector
= val
;
209 case VIRTIO_MSI_QUEUE_VECTOR
:
210 msix_vector_unuse(&proxy
->pci_dev
,
211 virtio_queue_vector(vdev
, vdev
->queue_sel
));
212 /* Make it possible for guest to discover an error took place. */
213 if (msix_vector_use(&proxy
->pci_dev
, val
) < 0)
214 val
= VIRTIO_NO_VECTOR
;
215 virtio_queue_set_vector(vdev
, vdev
->queue_sel
, val
);
218 fprintf(stderr
, "%s: unexpected address 0x%x value 0x%x\n",
219 __func__
, addr
, val
);
224 static uint32_t virtio_ioport_read(VirtIOPCIProxy
*proxy
, uint32_t addr
)
226 VirtIODevice
*vdev
= proxy
->vdev
;
227 uint32_t ret
= 0xFFFFFFFF;
230 case VIRTIO_PCI_HOST_FEATURES
:
231 ret
= vdev
->get_features(vdev
);
232 ret
|= (1 << VIRTIO_F_NOTIFY_ON_EMPTY
);
233 ret
|= (1 << VIRTIO_RING_F_INDIRECT_DESC
);
234 ret
|= (1 << VIRTIO_F_BAD_FEATURE
);
236 case VIRTIO_PCI_GUEST_FEATURES
:
237 ret
= vdev
->features
;
239 case VIRTIO_PCI_QUEUE_PFN
:
240 ret
= virtio_queue_get_addr(vdev
, vdev
->queue_sel
)
241 >> VIRTIO_PCI_QUEUE_ADDR_SHIFT
;
243 case VIRTIO_PCI_QUEUE_NUM
:
244 ret
= virtio_queue_get_num(vdev
, vdev
->queue_sel
);
246 case VIRTIO_PCI_QUEUE_SEL
:
247 ret
= vdev
->queue_sel
;
249 case VIRTIO_PCI_STATUS
:
253 /* reading from the ISR also clears it. */
256 qemu_set_irq(proxy
->pci_dev
.irq
[0], 0);
258 case VIRTIO_MSI_CONFIG_VECTOR
:
259 ret
= vdev
->config_vector
;
261 case VIRTIO_MSI_QUEUE_VECTOR
:
262 ret
= virtio_queue_vector(vdev
, vdev
->queue_sel
);
271 static uint32_t virtio_pci_config_readb(void *opaque
, uint32_t addr
)
273 VirtIOPCIProxy
*proxy
= opaque
;
274 uint32_t config
= VIRTIO_PCI_CONFIG(&proxy
->pci_dev
);
277 return virtio_ioport_read(proxy
, addr
);
279 return virtio_config_readb(proxy
->vdev
, addr
);
282 static uint32_t virtio_pci_config_readw(void *opaque
, uint32_t addr
)
284 VirtIOPCIProxy
*proxy
= opaque
;
285 uint32_t config
= VIRTIO_PCI_CONFIG(&proxy
->pci_dev
);
288 return virtio_ioport_read(proxy
, addr
);
290 return virtio_config_readw(proxy
->vdev
, addr
);
293 static uint32_t virtio_pci_config_readl(void *opaque
, uint32_t addr
)
295 VirtIOPCIProxy
*proxy
= opaque
;
296 uint32_t config
= VIRTIO_PCI_CONFIG(&proxy
->pci_dev
);
299 return virtio_ioport_read(proxy
, addr
);
301 return virtio_config_readl(proxy
->vdev
, addr
);
304 static void virtio_pci_config_writeb(void *opaque
, uint32_t addr
, uint32_t val
)
306 VirtIOPCIProxy
*proxy
= opaque
;
307 uint32_t config
= VIRTIO_PCI_CONFIG(&proxy
->pci_dev
);
310 virtio_ioport_write(proxy
, addr
, val
);
314 virtio_config_writeb(proxy
->vdev
, addr
, val
);
317 static void virtio_pci_config_writew(void *opaque
, uint32_t addr
, uint32_t val
)
319 VirtIOPCIProxy
*proxy
= opaque
;
320 uint32_t config
= VIRTIO_PCI_CONFIG(&proxy
->pci_dev
);
323 virtio_ioport_write(proxy
, addr
, val
);
327 virtio_config_writew(proxy
->vdev
, addr
, val
);
330 static void virtio_pci_config_writel(void *opaque
, uint32_t addr
, uint32_t val
)
332 VirtIOPCIProxy
*proxy
= opaque
;
333 uint32_t config
= VIRTIO_PCI_CONFIG(&proxy
->pci_dev
);
336 virtio_ioport_write(proxy
, addr
, val
);
340 virtio_config_writel(proxy
->vdev
, addr
, val
);
343 static void virtio_map(PCIDevice
*pci_dev
, int region_num
,
344 uint32_t addr
, uint32_t size
, int type
)
346 VirtIOPCIProxy
*proxy
= container_of(pci_dev
, VirtIOPCIProxy
, pci_dev
);
347 VirtIODevice
*vdev
= proxy
->vdev
;
348 unsigned config_len
= VIRTIO_PCI_REGION_SIZE(pci_dev
) + vdev
->config_len
;
352 register_ioport_write(addr
, config_len
, 1, virtio_pci_config_writeb
, proxy
);
353 register_ioport_write(addr
, config_len
, 2, virtio_pci_config_writew
, proxy
);
354 register_ioport_write(addr
, config_len
, 4, virtio_pci_config_writel
, proxy
);
355 register_ioport_read(addr
, config_len
, 1, virtio_pci_config_readb
, proxy
);
356 register_ioport_read(addr
, config_len
, 2, virtio_pci_config_readw
, proxy
);
357 register_ioport_read(addr
, config_len
, 4, virtio_pci_config_readl
, proxy
);
359 if (vdev
->config_len
)
360 vdev
->get_config(vdev
, vdev
->config
);
363 static void virtio_write_config(PCIDevice
*pci_dev
, uint32_t address
,
364 uint32_t val
, int len
)
366 pci_default_write_config(pci_dev
, address
, val
, len
);
367 msix_write_config(pci_dev
, address
, val
, len
);
370 static const VirtIOBindings virtio_pci_bindings
= {
371 .notify
= virtio_pci_notify
,
372 .save_config
= virtio_pci_save_config
,
373 .load_config
= virtio_pci_load_config
,
374 .save_queue
= virtio_pci_save_queue
,
375 .load_queue
= virtio_pci_load_queue
,
378 static void virtio_init_pci(VirtIOPCIProxy
*proxy
, VirtIODevice
*vdev
,
379 uint16_t vendor
, uint16_t device
,
380 uint16_t class_code
, uint8_t pif
)
387 config
= proxy
->pci_dev
.config
;
388 pci_config_set_vendor_id(config
, vendor
);
389 pci_config_set_device_id(config
, device
);
391 config
[0x08] = VIRTIO_PCI_ABI_VERSION
;
394 pci_config_set_class(config
, class_code
);
395 config
[PCI_HEADER_TYPE
] = PCI_HEADER_TYPE_NORMAL
;
397 config
[0x2c] = vendor
& 0xFF;
398 config
[0x2d] = (vendor
>> 8) & 0xFF;
399 config
[0x2e] = vdev
->device_id
& 0xFF;
400 config
[0x2f] = (vdev
->device_id
>> 8) & 0xFF;
404 if (vdev
->nvectors
&& !msix_init(&proxy
->pci_dev
, vdev
->nvectors
, 1, 0)) {
405 pci_register_bar(&proxy
->pci_dev
, 1,
406 msix_bar_size(&proxy
->pci_dev
),
407 PCI_ADDRESS_SPACE_MEM
,
409 proxy
->pci_dev
.config_write
= virtio_write_config
;
410 proxy
->pci_dev
.unregister
= msix_uninit
;
414 size
= VIRTIO_PCI_REGION_SIZE(&proxy
->pci_dev
) + vdev
->config_len
;
416 size
= 1 << qemu_fls(size
);
418 pci_register_bar(&proxy
->pci_dev
, 0, size
, PCI_ADDRESS_SPACE_IO
,
421 qemu_register_reset(virtio_pci_reset
, proxy
);
423 virtio_bind_device(vdev
, &virtio_pci_bindings
, proxy
);
426 static void virtio_blk_init_pci(PCIDevice
*pci_dev
)
428 VirtIOPCIProxy
*proxy
= DO_UPCAST(VirtIOPCIProxy
, pci_dev
, pci_dev
);
431 if (proxy
->class_code
!= PCI_CLASS_STORAGE_SCSI
&&
432 proxy
->class_code
!= PCI_CLASS_STORAGE_OTHER
)
433 proxy
->class_code
= PCI_CLASS_STORAGE_SCSI
;
435 vdev
= virtio_blk_init(&pci_dev
->qdev
);
436 virtio_init_pci(proxy
, vdev
,
437 PCI_VENDOR_ID_REDHAT_QUMRANET
,
438 PCI_DEVICE_ID_VIRTIO_BLOCK
,
439 proxy
->class_code
, 0x00);
442 static void virtio_console_init_pci(PCIDevice
*pci_dev
)
444 VirtIOPCIProxy
*proxy
= DO_UPCAST(VirtIOPCIProxy
, pci_dev
, pci_dev
);
447 if (proxy
->class_code
!= PCI_CLASS_COMMUNICATION_OTHER
&&
448 proxy
->class_code
!= PCI_CLASS_DISPLAY_OTHER
&& /* qemu 0.10 */
449 proxy
->class_code
!= PCI_CLASS_OTHERS
) /* qemu-kvm */
450 proxy
->class_code
= PCI_CLASS_COMMUNICATION_OTHER
;
452 vdev
= virtio_console_init(&pci_dev
->qdev
);
453 virtio_init_pci(proxy
, vdev
,
454 PCI_VENDOR_ID_REDHAT_QUMRANET
,
455 PCI_DEVICE_ID_VIRTIO_CONSOLE
,
456 proxy
->class_code
, 0x00);
459 static void virtio_net_init_pci(PCIDevice
*pci_dev
)
461 VirtIOPCIProxy
*proxy
= DO_UPCAST(VirtIOPCIProxy
, pci_dev
, pci_dev
);
464 vdev
= virtio_net_init(&pci_dev
->qdev
);
466 /* set nvectors from property, unless the user specified something
467 * via -net nic,model=virtio,vectors=n command line option */
468 if (pci_dev
->qdev
.nd
->nvectors
== NIC_NVECTORS_UNSPECIFIED
)
469 if (proxy
->nvectors
!= NIC_NVECTORS_UNSPECIFIED
)
470 vdev
->nvectors
= proxy
->nvectors
;
472 virtio_init_pci(proxy
, vdev
,
473 PCI_VENDOR_ID_REDHAT_QUMRANET
,
474 PCI_DEVICE_ID_VIRTIO_NET
,
475 PCI_CLASS_NETWORK_ETHERNET
,
478 /* make the actual value visible */
479 proxy
->nvectors
= vdev
->nvectors
;
482 static void virtio_balloon_init_pci(PCIDevice
*pci_dev
)
484 VirtIOPCIProxy
*proxy
= DO_UPCAST(VirtIOPCIProxy
, pci_dev
, pci_dev
);
487 vdev
= virtio_balloon_init(&pci_dev
->qdev
);
488 virtio_init_pci(proxy
, vdev
,
489 PCI_VENDOR_ID_REDHAT_QUMRANET
,
490 PCI_DEVICE_ID_VIRTIO_BALLOON
,
491 PCI_CLASS_MEMORY_RAM
,
495 static PCIDeviceInfo virtio_info
[] = {
497 .qdev
.name
= "virtio-blk-pci",
498 .qdev
.size
= sizeof(VirtIOPCIProxy
),
499 .init
= virtio_blk_init_pci
,
500 .qdev
.props
= (Property
[]) {
503 .info
= &qdev_prop_hex32
,
504 .offset
= offsetof(VirtIOPCIProxy
, class_code
),
509 .qdev
.name
= "virtio-net-pci",
510 .qdev
.size
= sizeof(VirtIOPCIProxy
),
511 .init
= virtio_net_init_pci
,
512 .qdev
.props
= (Property
[]) {
515 .info
= &qdev_prop_uint32
,
516 .offset
= offsetof(VirtIOPCIProxy
, nvectors
),
517 .defval
= (uint32_t[]) { NIC_NVECTORS_UNSPECIFIED
},
522 .qdev
.name
= "virtio-console-pci",
523 .qdev
.size
= sizeof(VirtIOPCIProxy
),
524 .init
= virtio_console_init_pci
,
525 .qdev
.props
= (Property
[]) {
528 .info
= &qdev_prop_hex32
,
529 .offset
= offsetof(VirtIOPCIProxy
, class_code
),
534 .qdev
.name
= "virtio-balloon-pci",
535 .qdev
.size
= sizeof(VirtIOPCIProxy
),
536 .init
= virtio_balloon_init_pci
,
542 static void virtio_pci_register_devices(void)
544 pci_qdev_register_many(virtio_info
);
547 device_init(virtio_pci_register_devices
)