提交 7e71da7f 编写于 作者: M Michael S. Tsirkin

virtio-mmio: switch to linux headers

Switch to virtio_mmio.h from Linux - will make it
easier to implement virtio 1.
Signed-off-by: NMichael S. Tsirkin <mst@redhat.com>
上级 5878b136
...@@ -20,6 +20,7 @@ ...@@ -20,6 +20,7 @@
*/ */
#include "qemu/osdep.h" #include "qemu/osdep.h"
#include "standard-headers/linux/virtio_mmio.h"
#include "hw/sysbus.h" #include "hw/sysbus.h"
#include "hw/virtio/virtio.h" #include "hw/virtio/virtio.h"
#include "qemu/host-utils.h" #include "qemu/host-utils.h"
...@@ -52,28 +53,6 @@ do { printf("virtio_mmio: " fmt , ## __VA_ARGS__); } while (0) ...@@ -52,28 +53,6 @@ do { printf("virtio_mmio: " fmt , ## __VA_ARGS__); } while (0)
#define VIRTIO_MMIO(obj) \ #define VIRTIO_MMIO(obj) \
OBJECT_CHECK(VirtIOMMIOProxy, (obj), TYPE_VIRTIO_MMIO) OBJECT_CHECK(VirtIOMMIOProxy, (obj), TYPE_VIRTIO_MMIO)
/* Memory mapped register offsets */
#define VIRTIO_MMIO_MAGIC 0x0
#define VIRTIO_MMIO_VERSION 0x4
#define VIRTIO_MMIO_DEVICEID 0x8
#define VIRTIO_MMIO_VENDORID 0xc
#define VIRTIO_MMIO_HOSTFEATURES 0x10
#define VIRTIO_MMIO_HOSTFEATURESSEL 0x14
#define VIRTIO_MMIO_GUESTFEATURES 0x20
#define VIRTIO_MMIO_GUESTFEATURESSEL 0x24
#define VIRTIO_MMIO_GUESTPAGESIZE 0x28
#define VIRTIO_MMIO_QUEUESEL 0x30
#define VIRTIO_MMIO_QUEUENUMMAX 0x34
#define VIRTIO_MMIO_QUEUENUM 0x38
#define VIRTIO_MMIO_QUEUEALIGN 0x3c
#define VIRTIO_MMIO_QUEUEPFN 0x40
#define VIRTIO_MMIO_QUEUENOTIFY 0x50
#define VIRTIO_MMIO_INTERRUPTSTATUS 0x60
#define VIRTIO_MMIO_INTERRUPTACK 0x64
#define VIRTIO_MMIO_STATUS 0x70
/* Device specific config space starts here */
#define VIRTIO_MMIO_CONFIG 0x100
#define VIRT_MAGIC 0x74726976 /* 'virt' */ #define VIRT_MAGIC 0x74726976 /* 'virt' */
#define VIRT_VERSION 1 #define VIRT_VERSION 1
#define VIRT_VENDOR 0x554D4551 /* 'QEMU' */ #define VIRT_VENDOR 0x554D4551 /* 'QEMU' */
...@@ -104,10 +83,10 @@ static int virtio_mmio_ioeventfd_assign(DeviceState *d, ...@@ -104,10 +83,10 @@ static int virtio_mmio_ioeventfd_assign(DeviceState *d,
VirtIOMMIOProxy *proxy = VIRTIO_MMIO(d); VirtIOMMIOProxy *proxy = VIRTIO_MMIO(d);
if (assign) { if (assign) {
memory_region_add_eventfd(&proxy->iomem, VIRTIO_MMIO_QUEUENOTIFY, 4, memory_region_add_eventfd(&proxy->iomem, VIRTIO_MMIO_QUEUE_NOTIFY, 4,
true, n, notifier); true, n, notifier);
} else { } else {
memory_region_del_eventfd(&proxy->iomem, VIRTIO_MMIO_QUEUENOTIFY, 4, memory_region_del_eventfd(&proxy->iomem, VIRTIO_MMIO_QUEUE_NOTIFY, 4,
true, n, notifier); true, n, notifier);
} }
return 0; return 0;
...@@ -140,11 +119,11 @@ static uint64_t virtio_mmio_read(void *opaque, hwaddr offset, unsigned size) ...@@ -140,11 +119,11 @@ static uint64_t virtio_mmio_read(void *opaque, hwaddr offset, unsigned size)
* device ID of zero means no backend will claim it. * device ID of zero means no backend will claim it.
*/ */
switch (offset) { switch (offset) {
case VIRTIO_MMIO_MAGIC: case VIRTIO_MMIO_MAGIC_VALUE:
return VIRT_MAGIC; return VIRT_MAGIC;
case VIRTIO_MMIO_VERSION: case VIRTIO_MMIO_VERSION:
return VIRT_VERSION; return VIRT_VERSION;
case VIRTIO_MMIO_VENDORID: case VIRTIO_MMIO_VENDOR_ID:
return VIRT_VENDOR; return VIRT_VENDOR;
default: default:
return 0; return 0;
...@@ -169,40 +148,40 @@ static uint64_t virtio_mmio_read(void *opaque, hwaddr offset, unsigned size) ...@@ -169,40 +148,40 @@ static uint64_t virtio_mmio_read(void *opaque, hwaddr offset, unsigned size)
return 0; return 0;
} }
switch (offset) { switch (offset) {
case VIRTIO_MMIO_MAGIC: case VIRTIO_MMIO_MAGIC_VALUE:
return VIRT_MAGIC; return VIRT_MAGIC;
case VIRTIO_MMIO_VERSION: case VIRTIO_MMIO_VERSION:
return VIRT_VERSION; return VIRT_VERSION;
case VIRTIO_MMIO_DEVICEID: case VIRTIO_MMIO_DEVICE_ID:
return vdev->device_id; return vdev->device_id;
case VIRTIO_MMIO_VENDORID: case VIRTIO_MMIO_VENDOR_ID:
return VIRT_VENDOR; return VIRT_VENDOR;
case VIRTIO_MMIO_HOSTFEATURES: case VIRTIO_MMIO_DEVICE_FEATURES:
if (proxy->host_features_sel) { if (proxy->host_features_sel) {
return 0; return 0;
} }
return vdev->host_features; return vdev->host_features;
case VIRTIO_MMIO_QUEUENUMMAX: case VIRTIO_MMIO_QUEUE_NUM_MAX:
if (!virtio_queue_get_num(vdev, vdev->queue_sel)) { if (!virtio_queue_get_num(vdev, vdev->queue_sel)) {
return 0; return 0;
} }
return VIRTQUEUE_MAX_SIZE; return VIRTQUEUE_MAX_SIZE;
case VIRTIO_MMIO_QUEUEPFN: case VIRTIO_MMIO_QUEUE_PFN:
return virtio_queue_get_addr(vdev, vdev->queue_sel) return virtio_queue_get_addr(vdev, vdev->queue_sel)
>> proxy->guest_page_shift; >> proxy->guest_page_shift;
case VIRTIO_MMIO_INTERRUPTSTATUS: case VIRTIO_MMIO_INTERRUPT_STATUS:
return atomic_read(&vdev->isr); return atomic_read(&vdev->isr);
case VIRTIO_MMIO_STATUS: case VIRTIO_MMIO_STATUS:
return vdev->status; return vdev->status;
case VIRTIO_MMIO_HOSTFEATURESSEL: case VIRTIO_MMIO_DEVICE_FEATURES_SEL:
case VIRTIO_MMIO_GUESTFEATURES: case VIRTIO_MMIO_DRIVER_FEATURES:
case VIRTIO_MMIO_GUESTFEATURESSEL: case VIRTIO_MMIO_DRIVER_FEATURES_SEL:
case VIRTIO_MMIO_GUESTPAGESIZE: case VIRTIO_MMIO_GUEST_PAGE_SIZE:
case VIRTIO_MMIO_QUEUESEL: case VIRTIO_MMIO_QUEUE_SEL:
case VIRTIO_MMIO_QUEUENUM: case VIRTIO_MMIO_QUEUE_NUM:
case VIRTIO_MMIO_QUEUEALIGN: case VIRTIO_MMIO_QUEUE_ALIGN:
case VIRTIO_MMIO_QUEUENOTIFY: case VIRTIO_MMIO_QUEUE_NOTIFY:
case VIRTIO_MMIO_INTERRUPTACK: case VIRTIO_MMIO_INTERRUPT_ACK:
DPRINTF("read of write-only register\n"); DPRINTF("read of write-only register\n");
return 0; return 0;
default: default:
...@@ -251,18 +230,18 @@ static void virtio_mmio_write(void *opaque, hwaddr offset, uint64_t value, ...@@ -251,18 +230,18 @@ static void virtio_mmio_write(void *opaque, hwaddr offset, uint64_t value,
return; return;
} }
switch (offset) { switch (offset) {
case VIRTIO_MMIO_HOSTFEATURESSEL: case VIRTIO_MMIO_DEVICE_FEATURES_SEL:
proxy->host_features_sel = value; proxy->host_features_sel = value;
break; break;
case VIRTIO_MMIO_GUESTFEATURES: case VIRTIO_MMIO_DRIVER_FEATURES:
if (!proxy->guest_features_sel) { if (!proxy->guest_features_sel) {
virtio_set_features(vdev, value); virtio_set_features(vdev, value);
} }
break; break;
case VIRTIO_MMIO_GUESTFEATURESSEL: case VIRTIO_MMIO_DRIVER_FEATURES_SEL:
proxy->guest_features_sel = value; proxy->guest_features_sel = value;
break; break;
case VIRTIO_MMIO_GUESTPAGESIZE: case VIRTIO_MMIO_GUEST_PAGE_SIZE:
proxy->guest_page_shift = ctz32(value); proxy->guest_page_shift = ctz32(value);
if (proxy->guest_page_shift > 31) { if (proxy->guest_page_shift > 31) {
proxy->guest_page_shift = 0; proxy->guest_page_shift = 0;
...@@ -270,22 +249,22 @@ static void virtio_mmio_write(void *opaque, hwaddr offset, uint64_t value, ...@@ -270,22 +249,22 @@ static void virtio_mmio_write(void *opaque, hwaddr offset, uint64_t value,
DPRINTF("guest page size %" PRIx64 " shift %d\n", value, DPRINTF("guest page size %" PRIx64 " shift %d\n", value,
proxy->guest_page_shift); proxy->guest_page_shift);
break; break;
case VIRTIO_MMIO_QUEUESEL: case VIRTIO_MMIO_QUEUE_SEL:
if (value < VIRTIO_QUEUE_MAX) { if (value < VIRTIO_QUEUE_MAX) {
vdev->queue_sel = value; vdev->queue_sel = value;
} }
break; break;
case VIRTIO_MMIO_QUEUENUM: case VIRTIO_MMIO_QUEUE_NUM:
DPRINTF("mmio_queue write %d max %d\n", (int)value, VIRTQUEUE_MAX_SIZE); DPRINTF("mmio_queue write %d max %d\n", (int)value, VIRTQUEUE_MAX_SIZE);
virtio_queue_set_num(vdev, vdev->queue_sel, value); virtio_queue_set_num(vdev, vdev->queue_sel, value);
/* Note: only call this function for legacy devices */ /* Note: only call this function for legacy devices */
virtio_queue_update_rings(vdev, vdev->queue_sel); virtio_queue_update_rings(vdev, vdev->queue_sel);
break; break;
case VIRTIO_MMIO_QUEUEALIGN: case VIRTIO_MMIO_QUEUE_ALIGN:
/* Note: this is only valid for legacy devices */ /* Note: this is only valid for legacy devices */
virtio_queue_set_align(vdev, vdev->queue_sel, value); virtio_queue_set_align(vdev, vdev->queue_sel, value);
break; break;
case VIRTIO_MMIO_QUEUEPFN: case VIRTIO_MMIO_QUEUE_PFN:
if (value == 0) { if (value == 0) {
virtio_reset(vdev); virtio_reset(vdev);
} else { } else {
...@@ -293,12 +272,12 @@ static void virtio_mmio_write(void *opaque, hwaddr offset, uint64_t value, ...@@ -293,12 +272,12 @@ static void virtio_mmio_write(void *opaque, hwaddr offset, uint64_t value,
value << proxy->guest_page_shift); value << proxy->guest_page_shift);
} }
break; break;
case VIRTIO_MMIO_QUEUENOTIFY: case VIRTIO_MMIO_QUEUE_NOTIFY:
if (value < VIRTIO_QUEUE_MAX) { if (value < VIRTIO_QUEUE_MAX) {
virtio_queue_notify(vdev, value); virtio_queue_notify(vdev, value);
} }
break; break;
case VIRTIO_MMIO_INTERRUPTACK: case VIRTIO_MMIO_INTERRUPT_ACK:
atomic_and(&vdev->isr, ~value); atomic_and(&vdev->isr, ~value);
virtio_update_irq(vdev); virtio_update_irq(vdev);
break; break;
...@@ -317,13 +296,13 @@ static void virtio_mmio_write(void *opaque, hwaddr offset, uint64_t value, ...@@ -317,13 +296,13 @@ static void virtio_mmio_write(void *opaque, hwaddr offset, uint64_t value,
virtio_reset(vdev); virtio_reset(vdev);
} }
break; break;
case VIRTIO_MMIO_MAGIC: case VIRTIO_MMIO_MAGIC_VALUE:
case VIRTIO_MMIO_VERSION: case VIRTIO_MMIO_VERSION:
case VIRTIO_MMIO_DEVICEID: case VIRTIO_MMIO_DEVICE_ID:
case VIRTIO_MMIO_VENDORID: case VIRTIO_MMIO_VENDOR_ID:
case VIRTIO_MMIO_HOSTFEATURES: case VIRTIO_MMIO_DEVICE_FEATURES:
case VIRTIO_MMIO_QUEUENUMMAX: case VIRTIO_MMIO_QUEUE_NUM_MAX:
case VIRTIO_MMIO_INTERRUPTSTATUS: case VIRTIO_MMIO_INTERRUPT_STATUS:
DPRINTF("write to readonly register\n"); DPRINTF("write to readonly register\n");
break; break;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册