From: Avi Kivity <avi@redhat.com>
To: qemu-devel@nongnu.org
Cc: kvm@vger.kernel.org
Subject: [Qemu-devel] [RFC v3 38/56] virtio-pci: convert to memory API
Date: Sun, 10 Jul 2011 21:14:51 +0300 [thread overview]
Message-ID: <1310321709-30770-39-git-send-email-avi@redhat.com> (raw)
In-Reply-To: <1310321709-30770-1-git-send-email-avi@redhat.com>
except msix.
Signed-off-by: Avi Kivity <avi@redhat.com>
---
hw/virtio-pci.c | 84 +++++++++++++++++++++++++++++-------------------------
hw/virtio-pci.h | 2 +-
2 files changed, 46 insertions(+), 40 deletions(-)
diff --git a/hw/virtio-pci.c b/hw/virtio-pci.c
index b3e7ba5..20e6c5b 100644
--- a/hw/virtio-pci.c
+++ b/hw/virtio-pci.c
@@ -162,6 +162,7 @@ static int virtio_pci_set_host_notifier_internal(VirtIOPCIProxy *proxy,
VirtQueue *vq = virtio_get_queue(proxy->vdev, n);
EventNotifier *notifier = virtio_queue_get_host_notifier(vq);
int r;
+
if (assign) {
r = event_notifier_init(notifier, 1);
if (r < 0) {
@@ -169,24 +170,11 @@ static int virtio_pci_set_host_notifier_internal(VirtIOPCIProxy *proxy,
__func__, r);
return r;
}
- r = kvm_set_ioeventfd_pio_word(event_notifier_get_fd(notifier),
- proxy->addr + VIRTIO_PCI_QUEUE_NOTIFY,
- n, assign);
- if (r < 0) {
- error_report("%s: unable to map ioeventfd: %d",
- __func__, r);
- event_notifier_cleanup(notifier);
- }
+ memory_region_add_eventfd(&proxy->bar, VIRTIO_PCI_QUEUE_NOTIFY, 2,
+ true, n, event_notifier_get_fd(notifier));
} else {
- r = kvm_set_ioeventfd_pio_word(event_notifier_get_fd(notifier),
- proxy->addr + VIRTIO_PCI_QUEUE_NOTIFY,
- n, assign);
- if (r < 0) {
- error_report("%s: unable to unmap ioeventfd: %d",
- __func__, r);
- return r;
- }
-
+ memory_region_del_eventfd(&proxy->bar, VIRTIO_PCI_QUEUE_NOTIFY, 2,
+ true, n, event_notifier_get_fd(notifier));
/* Handle the race condition where the guest kicked and we deassigned
* before we got around to handling the kick.
*/
@@ -423,7 +411,6 @@ static uint32_t virtio_pci_config_readb(void *opaque, uint32_t addr)
{
VirtIOPCIProxy *proxy = opaque;
uint32_t config = VIRTIO_PCI_CONFIG(&proxy->pci_dev);
- addr -= proxy->addr;
if (addr < config)
return virtio_ioport_read(proxy, addr);
addr -= config;
@@ -434,7 +421,6 @@ static uint32_t virtio_pci_config_readw(void *opaque, uint32_t addr)
{
VirtIOPCIProxy *proxy = opaque;
uint32_t config = VIRTIO_PCI_CONFIG(&proxy->pci_dev);
- addr -= proxy->addr;
if (addr < config)
return virtio_ioport_read(proxy, addr);
addr -= config;
@@ -445,7 +431,6 @@ static uint32_t virtio_pci_config_readl(void *opaque, uint32_t addr)
{
VirtIOPCIProxy *proxy = opaque;
uint32_t config = VIRTIO_PCI_CONFIG(&proxy->pci_dev);
- addr -= proxy->addr;
if (addr < config)
return virtio_ioport_read(proxy, addr);
addr -= config;
@@ -456,7 +441,6 @@ static void virtio_pci_config_writeb(void *opaque, uint32_t addr, uint32_t val)
{
VirtIOPCIProxy *proxy = opaque;
uint32_t config = VIRTIO_PCI_CONFIG(&proxy->pci_dev);
- addr -= proxy->addr;
if (addr < config) {
virtio_ioport_write(proxy, addr, val);
return;
@@ -469,7 +453,6 @@ static void virtio_pci_config_writew(void *opaque, uint32_t addr, uint32_t val)
{
VirtIOPCIProxy *proxy = opaque;
uint32_t config = VIRTIO_PCI_CONFIG(&proxy->pci_dev);
- addr -= proxy->addr;
if (addr < config) {
virtio_ioport_write(proxy, addr, val);
return;
@@ -482,7 +465,6 @@ static void virtio_pci_config_writel(void *opaque, uint32_t addr, uint32_t val)
{
VirtIOPCIProxy *proxy = opaque;
uint32_t config = VIRTIO_PCI_CONFIG(&proxy->pci_dev);
- addr -= proxy->addr;
if (addr < config) {
virtio_ioport_write(proxy, addr, val);
return;
@@ -491,30 +473,46 @@ static void virtio_pci_config_writel(void *opaque, uint32_t addr, uint32_t val)
virtio_config_writel(proxy->vdev, addr, val);
}
-static void virtio_map(PCIDevice *pci_dev, int region_num,
- pcibus_t addr, pcibus_t size, int type)
+static uint64_t virtio_pci_config_read(void *opaque,
+ target_phys_addr_t addr,
+ unsigned size)
{
- VirtIOPCIProxy *proxy = container_of(pci_dev, VirtIOPCIProxy, pci_dev);
- VirtIODevice *vdev = proxy->vdev;
- unsigned config_len = VIRTIO_PCI_REGION_SIZE(pci_dev) + vdev->config_len;
+ VirtIOPCIProxy *proxy = opaque;
- proxy->addr = addr;
+ switch (size) {
+ case 1: return virtio_pci_config_readb(proxy, addr);
+ case 2: return virtio_pci_config_readw(proxy, addr);
+ case 4: return virtio_pci_config_readl(proxy, addr);
+ default: abort();
+ }
+}
- register_ioport_write(addr, config_len, 1, virtio_pci_config_writeb, proxy);
- register_ioport_write(addr, config_len, 2, virtio_pci_config_writew, proxy);
- register_ioport_write(addr, config_len, 4, virtio_pci_config_writel, proxy);
- register_ioport_read(addr, config_len, 1, virtio_pci_config_readb, proxy);
- register_ioport_read(addr, config_len, 2, virtio_pci_config_readw, proxy);
- register_ioport_read(addr, config_len, 4, virtio_pci_config_readl, proxy);
+static void virtio_pci_config_write(void *opaque,
+ target_phys_addr_t addr,
+ uint64_t data,
+ unsigned size)
+{
+ VirtIOPCIProxy *proxy = opaque;
- if (vdev->config_len)
- vdev->get_config(vdev, vdev->config);
+ switch (size) {
+ case 1: return virtio_pci_config_writeb(proxy, addr, data);
+ case 2: return virtio_pci_config_writew(proxy, addr, data);
+ case 4: return virtio_pci_config_writel(proxy, addr, data);
+ default: abort();
+ }
}
+static MemoryRegionOps virtio_pci_config_ops = {
+ .read = virtio_pci_config_read,
+ .write = virtio_pci_config_write,
+ .endianness = DEVICE_LITTLE_ENDIAN,
+};
+
static void virtio_write_config(PCIDevice *pci_dev, uint32_t address,
uint32_t val, int len)
{
VirtIOPCIProxy *proxy = DO_UPCAST(VirtIOPCIProxy, pci_dev, pci_dev);
+ VirtIODevice *vdev = proxy->vdev;
if (PCI_COMMAND == address) {
if (!(val & PCI_COMMAND_MASTER)) {
@@ -525,6 +523,9 @@ static void virtio_write_config(PCIDevice *pci_dev, uint32_t address,
}
}
}
+ if (address == PCI_BASE_ADDRESS_0 && vdev->config_len) {
+ vdev->get_config(vdev, vdev->config);
+ }
pci_default_write_config(pci_dev, address, val, len);
msix_write_config(pci_dev, address, val, len);
@@ -678,8 +679,10 @@ void virtio_init_pci(VirtIOPCIProxy *proxy, VirtIODevice *vdev)
if (size & (size-1))
size = 1 << qemu_fls(size);
- pci_register_bar(&proxy->pci_dev, 0, size, PCI_BASE_ADDRESS_SPACE_IO,
- virtio_map);
+ memory_region_init_io(&proxy->bar, &virtio_pci_config_ops, proxy,
+ "virtio-pci", size);
+ pci_register_bar_region(&proxy->pci_dev, 0, PCI_BASE_ADDRESS_SPACE_IO,
+ &proxy->bar);
if (!kvm_has_many_ioeventfds()) {
proxy->flags &= ~VIRTIO_PCI_FLAG_USE_IOEVENTFD;
@@ -713,6 +716,9 @@ static int virtio_blk_init_pci(PCIDevice *pci_dev)
static int virtio_exit_pci(PCIDevice *pci_dev)
{
+ VirtIOPCIProxy *proxy = DO_UPCAST(VirtIOPCIProxy, pci_dev, pci_dev);
+
+ memory_region_destroy(&proxy->bar);
return msix_uninit(pci_dev);
}
diff --git a/hw/virtio-pci.h b/hw/virtio-pci.h
index b518917..d17e5fc 100644
--- a/hw/virtio-pci.h
+++ b/hw/virtio-pci.h
@@ -21,8 +21,8 @@
typedef struct {
PCIDevice pci_dev;
VirtIODevice *vdev;
+ MemoryRegion bar;
uint32_t flags;
- uint32_t addr;
uint32_t class_code;
uint32_t nvectors;
BlockConf block;
--
1.7.5.3
next prev parent reply other threads:[~2011-07-10 18:15 UTC|newest]
Thread overview: 66+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-07-10 18:14 [Qemu-devel] [RFC v3 00/56] Memory API Avi Kivity
2011-07-10 18:14 ` [Qemu-devel] [RFC v3 01/56] Hierarchical memory region API Avi Kivity
2011-07-10 18:14 ` [Qemu-devel] [RFC v3 02/56] memory: implement dirty tracking Avi Kivity
2011-07-10 18:14 ` [Qemu-devel] [RFC v3 03/56] memory: merge adjacent segments of a single memory region Avi Kivity
2011-07-10 18:14 ` [Qemu-devel] [RFC v3 04/56] Internal interfaces for memory API Avi Kivity
2011-07-10 18:14 ` [Qemu-devel] [RFC v3 05/56] memory: abstract address space operations Avi Kivity
2011-07-10 18:14 ` [Qemu-devel] [RFC v3 06/56] memory: rename MemoryRegion::has_ram_addr to ::terminates Avi Kivity
2011-07-10 18:14 ` [Qemu-devel] [RFC v3 07/56] memory: late initialization of ram_addr Avi Kivity
2011-07-10 18:14 ` [Qemu-devel] [RFC v3 08/56] memory: I/O address space support Avi Kivity
2011-07-10 18:14 ` [Qemu-devel] [RFC v3 09/56] exec.c: initialize memory map Avi Kivity
2011-07-10 18:14 ` [Qemu-devel] [RFC v3 10/56] ioport: register ranges by byte aligned addresses always Avi Kivity
2011-07-10 18:14 ` [Qemu-devel] [RFC v3 11/56] pc: grab system_memory Avi Kivity
2011-07-10 18:14 ` [Qemu-devel] [RFC v3 12/56] pc: convert pc_memory_init() to memory API Avi Kivity
2011-07-10 18:14 ` [Qemu-devel] [RFC v3 13/56] pc: move global memory map out of pc_init1() and into its callers Avi Kivity
2011-07-10 18:14 ` [Qemu-devel] [RFC v3 14/56] pci: pass address space to pci bus when created Avi Kivity
2011-07-10 18:14 ` [Qemu-devel] [RFC v3 15/56] pci: add MemoryRegion based BAR management API Avi Kivity
2011-07-10 18:14 ` [Qemu-devel] [RFC v3 16/56] sysbus: add MemoryRegion based memory " Avi Kivity
2011-07-10 18:14 ` [Qemu-devel] [RFC v3 17/56] usb-ohci: convert to MemoryRegion Avi Kivity
2011-07-10 18:14 ` [Qemu-devel] [RFC v3 18/56] pci: add API to get a BAR's mapped address Avi Kivity
2011-07-10 18:14 ` [Qemu-devel] [RFC v3 19/56] vmsvga: don't remember pci BAR address in callback any more Avi Kivity
2011-07-10 18:14 ` [Qemu-devel] [RFC v3 20/56] vga: convert vga and its derivatives to the memory API Avi Kivity
2011-07-10 18:14 ` [Qemu-devel] [RFC v3 21/56] cirrus: simplify mmio BAR access functions Avi Kivity
2011-07-10 18:14 ` [Qemu-devel] [RFC v3 22/56] cirrus: simplify bitblt " Avi Kivity
2011-07-10 18:14 ` [Qemu-devel] [RFC v3 23/56] cirrus: simplify vga window mmio " Avi Kivity
2011-07-10 18:14 ` [Qemu-devel] [RFC v3 24/56] vga: " Avi Kivity
2011-07-10 18:14 ` [Qemu-devel] [RFC v3 25/56] cirrus: simplify linear framebuffer " Avi Kivity
2011-07-10 18:14 ` [Qemu-devel] [RFC v3 26/56] Integrate I/O memory regions into qemu Avi Kivity
2011-07-10 18:14 ` [Qemu-devel] [RFC v3 27/56] exec.c: fix initialization of system I/O memory region Avi Kivity
2011-07-10 18:14 ` [Qemu-devel] [RFC v3 28/56] pci: pass I/O address space to new PCI bus Avi Kivity
2011-07-10 18:14 ` [Qemu-devel] [RFC v3 29/56] pci: allow I/O BARs to be registered with pci_register_bar_region() Avi Kivity
2011-07-10 18:14 ` [Qemu-devel] [RFC v3 30/56] rtl8139: convert to memory API Avi Kivity
2011-07-12 22:41 ` Alex Williamson
2011-07-12 22:47 ` Alex Williamson
2011-07-13 6:52 ` Avi Kivity
2011-07-10 18:14 ` [Qemu-devel] [RFC v3 31/56] ac97: " Avi Kivity
2011-07-10 20:33 ` malc
2011-07-11 1:42 ` Anthony Liguori
2011-07-11 6:49 ` Avi Kivity
2011-07-11 10:47 ` Avi Kivity
2011-07-11 22:03 ` malc
2011-07-12 7:14 ` Avi Kivity
2011-07-10 18:14 ` [Qemu-devel] [RFC v3 32/56] e1000: " Avi Kivity
2011-07-10 18:14 ` [Qemu-devel] [RFC v3 33/56] eepro100: " Avi Kivity
2011-07-10 18:14 ` [Qemu-devel] [RFC v3 34/56] es1370: " Avi Kivity
2011-07-10 18:14 ` [Qemu-devel] [RFC v3 35/56] ide: " Avi Kivity
2011-07-10 18:14 ` [Qemu-devel] [RFC v3 36/56] memory: add ioeventfd support Avi Kivity
2011-07-10 18:14 ` [Qemu-devel] [RFC v3 37/56] ivshmem: convert to memory API Avi Kivity
2011-07-10 18:14 ` Avi Kivity [this message]
2011-07-10 18:14 ` [Qemu-devel] [RFC v3 39/56] ahci: " Avi Kivity
2011-07-10 18:14 ` [Qemu-devel] [RFC v3 40/56] intel-hda: " Avi Kivity
2011-07-10 18:14 ` [Qemu-devel] [RFC v3 41/56] lsi53c895a: " Avi Kivity
2011-07-10 18:14 ` [Qemu-devel] [RFC v3 42/56] ppc: " Avi Kivity
2011-07-10 18:14 ` [Qemu-devel] [RFC v3 43/56] ne2000: " Avi Kivity
2011-07-10 18:14 ` [Qemu-devel] [RFC v3 44/56] pcnet: " Avi Kivity
2011-07-10 18:14 ` [Qemu-devel] [RFC v3 45/56] i6300esb: " Avi Kivity
2011-07-10 18:14 ` [Qemu-devel] [RFC v3 46/56] isa-mmio: concert " Avi Kivity
2011-07-10 18:15 ` [Qemu-devel] [RFC v3 47/56] sun4u: convert " Avi Kivity
2011-07-10 18:15 ` [Qemu-devel] [RFC v3 48/56] ehci: " Avi Kivity
2011-07-10 18:15 ` [Qemu-devel] [RFC v3 49/56] uhci: " Avi Kivity
2011-07-10 18:15 ` [Qemu-devel] [RFC v3 50/56] xen-platform: " Avi Kivity
2011-07-10 18:15 ` [Qemu-devel] [RFC v3 51/56] msix: " Avi Kivity
2011-07-10 18:15 ` [Qemu-devel] [RFC v3 52/56] pci: remove pci_register_bar_simple() Avi Kivity
2011-07-10 18:15 ` [Qemu-devel] [RFC v3 53/56] pci: convert pci rom to memory API Avi Kivity
2011-07-10 18:15 ` [Qemu-devel] [RFC v3 54/56] pci: remove pci_register_bar() Avi Kivity
2011-07-10 18:15 ` [Qemu-devel] [RFC v3 55/56] pci: fold BAR mapping function into its caller Avi Kivity
2011-07-10 18:15 ` [Qemu-devel] [RFC v3 56/56] pci: rename pci_register_bar_region() to pci_register_bar() Avi Kivity
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1310321709-30770-39-git-send-email-avi@redhat.com \
--to=avi@redhat.com \
--cc=kvm@vger.kernel.org \
--cc=qemu-devel@nongnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).