From: Tiwei Bie <tiwei.bie@intel.com>
To: qemu-devel@nongnu.org, virtio-dev@lists.oasis-open.org,
mst@redhat.com, alex.williamson@redhat.com, jasowang@redhat.com,
pbonzini@redhat.com, stefanha@redhat.com
Cc: cunming.liang@intel.com, dan.daly@intel.com,
jianfeng.tan@intel.com, zhihong.wang@intel.com,
xiao.w.wang@intel.com, tiwei.bie@intel.com
Subject: [virtio-dev] [PATCH v2 3/6] virtio: support adding sub-regions for notify region
Date: Mon, 19 Mar 2018 15:15:34 +0800 [thread overview]
Message-ID: <20180319071537.28649-4-tiwei.bie@intel.com> (raw)
In-Reply-To: <20180319071537.28649-1-tiwei.bie@intel.com>
Provide APIs to support querying whether the page-per-vq
is enabled and adding sub-regions for notify region.
Signed-off-by: Tiwei Bie <tiwei.bie@intel.com>
---
Makefile.target | 4 ++++
hw/virtio/virtio-pci.c | 48 ++++++++++++++++++++++++++++++++++++++++++++++
hw/virtio/virtio-pci.h | 5 +++++
hw/virtio/virtio.c | 39 +++++++++++++++++++++++++++++++++++++
include/hw/virtio/virtio.h | 5 +++++
include/qemu/osdep.h | 1 +
scripts/create_config | 3 +++
7 files changed, 105 insertions(+)
diff --git a/Makefile.target b/Makefile.target
index 6549481096..b2cf618dc9 100644
--- a/Makefile.target
+++ b/Makefile.target
@@ -39,6 +39,9 @@ STPFILES=
config-target.h: config-target.h-timestamp
config-target.h-timestamp: config-target.mak
+config-devices.h: config-devices.h-timestamp
+config-devices.h-timestamp: config-devices.mak
+
ifdef CONFIG_TRACE_SYSTEMTAP
stap: $(QEMU_PROG).stp-installed $(QEMU_PROG).stp $(QEMU_PROG)-simpletrace.stp
@@ -224,4 +227,5 @@ ifdef CONFIG_TRACE_SYSTEMTAP
endif
GENERATED_FILES += config-target.h
+GENERATED_FILES += config-devices.h
Makefile: $(GENERATED_FILES)
diff --git a/hw/virtio/virtio-pci.c b/hw/virtio/virtio-pci.c
index 1e8ab7bbc5..b17471092a 100644
--- a/hw/virtio/virtio-pci.c
+++ b/hw/virtio/virtio-pci.c
@@ -1534,6 +1534,54 @@ static void virtio_pci_modern_io_region_unmap(VirtIOPCIProxy *proxy,
®ion->mr);
}
+static VirtIOPCIProxy *virtio_device_to_virtio_pci_proxy(VirtIODevice *vdev)
+{
+ VirtIOPCIProxy *proxy = NULL;
+
+ if (vdev->device_id == VIRTIO_ID_NET) {
+ VirtIONetPCI *d = container_of(vdev, VirtIONetPCI, vdev.parent_obj);
+ proxy = &d->parent_obj;
+ }
+
+ return proxy;
+}
+
+bool virtio_pci_page_per_vq_enabled(VirtIODevice *vdev)
+{
+ VirtIOPCIProxy *proxy = virtio_device_to_virtio_pci_proxy(vdev);
+
+ if (proxy == NULL) {
+ return false;
+ }
+
+ return !!(proxy->flags & VIRTIO_PCI_FLAG_PAGE_PER_VQ);
+}
+
+int virtio_pci_notify_region_map(VirtIODevice *vdev, int queue_idx,
+ MemoryRegion *mr)
+{
+ VirtIOPCIProxy *proxy = virtio_device_to_virtio_pci_proxy(vdev);
+ int offset;
+
+ if (proxy == NULL || !virtio_pci_modern(proxy)) {
+ return -1;
+ }
+
+ offset = virtio_pci_queue_mem_mult(proxy) * queue_idx;
+ memory_region_add_subregion(&proxy->notify.mr, offset, mr);
+
+ return 0;
+}
+
+void virtio_pci_notify_region_unmap(VirtIODevice *vdev, MemoryRegion *mr)
+{
+ VirtIOPCIProxy *proxy = virtio_device_to_virtio_pci_proxy(vdev);
+
+ if (proxy != NULL) {
+ memory_region_del_subregion(&proxy->notify.mr, mr);
+ }
+}
+
static void virtio_pci_pre_plugged(DeviceState *d, Error **errp)
{
VirtIOPCIProxy *proxy = VIRTIO_PCI(d);
diff --git a/hw/virtio/virtio-pci.h b/hw/virtio/virtio-pci.h
index 813082b0d7..8061133741 100644
--- a/hw/virtio/virtio-pci.h
+++ b/hw/virtio/virtio-pci.h
@@ -213,6 +213,11 @@ static inline void virtio_pci_disable_modern(VirtIOPCIProxy *proxy)
proxy->disable_modern = true;
}
+bool virtio_pci_page_per_vq_enabled(VirtIODevice *vdev);
+int virtio_pci_notify_region_map(VirtIODevice *vdev, int queue_idx,
+ MemoryRegion *mr);
+void virtio_pci_notify_region_unmap(VirtIODevice *vdev, MemoryRegion *mr);
+
/*
* virtio-scsi-pci: This extends VirtioPCIProxy.
*/
diff --git a/hw/virtio/virtio.c b/hw/virtio/virtio.c
index 006d3d1148..90ee72984c 100644
--- a/hw/virtio/virtio.c
+++ b/hw/virtio/virtio.c
@@ -22,6 +22,7 @@
#include "qemu/atomic.h"
#include "hw/virtio/virtio-bus.h"
#include "hw/virtio/virtio-access.h"
+#include "hw/virtio/virtio-pci.h"
#include "sysemu/dma.h"
/*
@@ -2681,6 +2682,44 @@ void virtio_device_release_ioeventfd(VirtIODevice *vdev)
virtio_bus_release_ioeventfd(vbus);
}
+bool virtio_device_parent_is_pci_device(VirtIODevice *vdev)
+{
+ BusState *qbus = qdev_get_parent_bus(DEVICE(vdev));
+ const char *typename = object_get_typename(OBJECT(qbus->parent));
+
+ return strstr(typename, "pci") != NULL;
+}
+
+bool virtio_device_page_per_vq_enabled(VirtIODevice *vdev)
+{
+#ifdef CONFIG_VIRTIO_PCI
+ if (virtio_device_parent_is_pci_device(vdev)) {
+ return virtio_pci_page_per_vq_enabled(vdev);
+ }
+#endif
+ return false;
+}
+
+int virtio_device_notify_region_map(VirtIODevice *vdev, int queue_idx,
+ MemoryRegion *mr)
+{
+#ifdef CONFIG_VIRTIO_PCI
+ if (virtio_device_parent_is_pci_device(vdev)) {
+ return virtio_pci_notify_region_map(vdev, queue_idx, mr);
+ }
+#endif
+ return -1;
+}
+
+void virtio_device_notify_region_unmap(VirtIODevice *vdev, MemoryRegion *mr)
+{
+#ifdef CONFIG_VIRTIO_PCI
+ if (virtio_device_parent_is_pci_device(vdev)) {
+ virtio_pci_notify_region_unmap(vdev, mr);
+ }
+#endif
+}
+
static void virtio_device_class_init(ObjectClass *klass, void *data)
{
/* Set the default value here. */
diff --git a/include/hw/virtio/virtio.h b/include/hw/virtio/virtio.h
index 098bdaaea3..b14accdb08 100644
--- a/include/hw/virtio/virtio.h
+++ b/include/hw/virtio/virtio.h
@@ -285,6 +285,11 @@ void virtio_device_stop_ioeventfd(VirtIODevice *vdev);
int virtio_device_grab_ioeventfd(VirtIODevice *vdev);
void virtio_device_release_ioeventfd(VirtIODevice *vdev);
bool virtio_device_ioeventfd_enabled(VirtIODevice *vdev);
+bool virtio_device_parent_is_pci_device(VirtIODevice *vdev);
+bool virtio_device_page_per_vq_enabled(VirtIODevice *vdev);
+int virtio_device_notify_region_map(VirtIODevice *vdev, int queue_idx,
+ MemoryRegion *mr);
+void virtio_device_notify_region_unmap(VirtIODevice *vdev, MemoryRegion *mr);
EventNotifier *virtio_queue_get_host_notifier(VirtQueue *vq);
void virtio_queue_host_notifier_read(EventNotifier *n);
void virtio_queue_aio_set_host_notifier_handler(VirtQueue *vq, AioContext *ctx,
diff --git a/include/qemu/osdep.h b/include/qemu/osdep.h
index 41658060a7..2532c278ef 100644
--- a/include/qemu/osdep.h
+++ b/include/qemu/osdep.h
@@ -30,6 +30,7 @@
#include "config-host.h"
#ifdef NEED_CPU_H
#include "config-target.h"
+#include "config-devices.h"
#else
#include "exec/poison.h"
#endif
diff --git a/scripts/create_config b/scripts/create_config
index d727e5e36e..e4541a51ed 100755
--- a/scripts/create_config
+++ b/scripts/create_config
@@ -58,6 +58,9 @@ case $line in
name=${line%=*}
echo "#define $name 1"
;;
+ CONFIG_*='$(CONFIG_'*')') # configuration
+ continue
+ ;;
CONFIG_*=*) # configuration
name=${line%=*}
value=${line#*=}
--
2.11.0
---------------------------------------------------------------------
To unsubscribe, e-mail: virtio-dev-unsubscribe@lists.oasis-open.org
For additional commands, e-mail: virtio-dev-help@lists.oasis-open.org
WARNING: multiple messages have this Message-ID (diff)
From: Tiwei Bie <tiwei.bie@intel.com>
To: qemu-devel@nongnu.org, virtio-dev@lists.oasis-open.org,
mst@redhat.com, alex.williamson@redhat.com, jasowang@redhat.com,
pbonzini@redhat.com, stefanha@redhat.com
Cc: cunming.liang@intel.com, dan.daly@intel.com,
jianfeng.tan@intel.com, zhihong.wang@intel.com,
xiao.w.wang@intel.com, tiwei.bie@intel.com
Subject: [Qemu-devel] [PATCH v2 3/6] virtio: support adding sub-regions for notify region
Date: Mon, 19 Mar 2018 15:15:34 +0800 [thread overview]
Message-ID: <20180319071537.28649-4-tiwei.bie@intel.com> (raw)
In-Reply-To: <20180319071537.28649-1-tiwei.bie@intel.com>
Provide APIs to support querying whether the page-per-vq
is enabled and adding sub-regions for notify region.
Signed-off-by: Tiwei Bie <tiwei.bie@intel.com>
---
Makefile.target | 4 ++++
hw/virtio/virtio-pci.c | 48 ++++++++++++++++++++++++++++++++++++++++++++++
hw/virtio/virtio-pci.h | 5 +++++
hw/virtio/virtio.c | 39 +++++++++++++++++++++++++++++++++++++
include/hw/virtio/virtio.h | 5 +++++
include/qemu/osdep.h | 1 +
scripts/create_config | 3 +++
7 files changed, 105 insertions(+)
diff --git a/Makefile.target b/Makefile.target
index 6549481096..b2cf618dc9 100644
--- a/Makefile.target
+++ b/Makefile.target
@@ -39,6 +39,9 @@ STPFILES=
config-target.h: config-target.h-timestamp
config-target.h-timestamp: config-target.mak
+config-devices.h: config-devices.h-timestamp
+config-devices.h-timestamp: config-devices.mak
+
ifdef CONFIG_TRACE_SYSTEMTAP
stap: $(QEMU_PROG).stp-installed $(QEMU_PROG).stp $(QEMU_PROG)-simpletrace.stp
@@ -224,4 +227,5 @@ ifdef CONFIG_TRACE_SYSTEMTAP
endif
GENERATED_FILES += config-target.h
+GENERATED_FILES += config-devices.h
Makefile: $(GENERATED_FILES)
diff --git a/hw/virtio/virtio-pci.c b/hw/virtio/virtio-pci.c
index 1e8ab7bbc5..b17471092a 100644
--- a/hw/virtio/virtio-pci.c
+++ b/hw/virtio/virtio-pci.c
@@ -1534,6 +1534,54 @@ static void virtio_pci_modern_io_region_unmap(VirtIOPCIProxy *proxy,
®ion->mr);
}
+static VirtIOPCIProxy *virtio_device_to_virtio_pci_proxy(VirtIODevice *vdev)
+{
+ VirtIOPCIProxy *proxy = NULL;
+
+ if (vdev->device_id == VIRTIO_ID_NET) {
+ VirtIONetPCI *d = container_of(vdev, VirtIONetPCI, vdev.parent_obj);
+ proxy = &d->parent_obj;
+ }
+
+ return proxy;
+}
+
+bool virtio_pci_page_per_vq_enabled(VirtIODevice *vdev)
+{
+ VirtIOPCIProxy *proxy = virtio_device_to_virtio_pci_proxy(vdev);
+
+ if (proxy == NULL) {
+ return false;
+ }
+
+ return !!(proxy->flags & VIRTIO_PCI_FLAG_PAGE_PER_VQ);
+}
+
+int virtio_pci_notify_region_map(VirtIODevice *vdev, int queue_idx,
+ MemoryRegion *mr)
+{
+ VirtIOPCIProxy *proxy = virtio_device_to_virtio_pci_proxy(vdev);
+ int offset;
+
+ if (proxy == NULL || !virtio_pci_modern(proxy)) {
+ return -1;
+ }
+
+ offset = virtio_pci_queue_mem_mult(proxy) * queue_idx;
+ memory_region_add_subregion(&proxy->notify.mr, offset, mr);
+
+ return 0;
+}
+
+void virtio_pci_notify_region_unmap(VirtIODevice *vdev, MemoryRegion *mr)
+{
+ VirtIOPCIProxy *proxy = virtio_device_to_virtio_pci_proxy(vdev);
+
+ if (proxy != NULL) {
+ memory_region_del_subregion(&proxy->notify.mr, mr);
+ }
+}
+
static void virtio_pci_pre_plugged(DeviceState *d, Error **errp)
{
VirtIOPCIProxy *proxy = VIRTIO_PCI(d);
diff --git a/hw/virtio/virtio-pci.h b/hw/virtio/virtio-pci.h
index 813082b0d7..8061133741 100644
--- a/hw/virtio/virtio-pci.h
+++ b/hw/virtio/virtio-pci.h
@@ -213,6 +213,11 @@ static inline void virtio_pci_disable_modern(VirtIOPCIProxy *proxy)
proxy->disable_modern = true;
}
+bool virtio_pci_page_per_vq_enabled(VirtIODevice *vdev);
+int virtio_pci_notify_region_map(VirtIODevice *vdev, int queue_idx,
+ MemoryRegion *mr);
+void virtio_pci_notify_region_unmap(VirtIODevice *vdev, MemoryRegion *mr);
+
/*
* virtio-scsi-pci: This extends VirtioPCIProxy.
*/
diff --git a/hw/virtio/virtio.c b/hw/virtio/virtio.c
index 006d3d1148..90ee72984c 100644
--- a/hw/virtio/virtio.c
+++ b/hw/virtio/virtio.c
@@ -22,6 +22,7 @@
#include "qemu/atomic.h"
#include "hw/virtio/virtio-bus.h"
#include "hw/virtio/virtio-access.h"
+#include "hw/virtio/virtio-pci.h"
#include "sysemu/dma.h"
/*
@@ -2681,6 +2682,44 @@ void virtio_device_release_ioeventfd(VirtIODevice *vdev)
virtio_bus_release_ioeventfd(vbus);
}
+bool virtio_device_parent_is_pci_device(VirtIODevice *vdev)
+{
+ BusState *qbus = qdev_get_parent_bus(DEVICE(vdev));
+ const char *typename = object_get_typename(OBJECT(qbus->parent));
+
+ return strstr(typename, "pci") != NULL;
+}
+
+bool virtio_device_page_per_vq_enabled(VirtIODevice *vdev)
+{
+#ifdef CONFIG_VIRTIO_PCI
+ if (virtio_device_parent_is_pci_device(vdev)) {
+ return virtio_pci_page_per_vq_enabled(vdev);
+ }
+#endif
+ return false;
+}
+
+int virtio_device_notify_region_map(VirtIODevice *vdev, int queue_idx,
+ MemoryRegion *mr)
+{
+#ifdef CONFIG_VIRTIO_PCI
+ if (virtio_device_parent_is_pci_device(vdev)) {
+ return virtio_pci_notify_region_map(vdev, queue_idx, mr);
+ }
+#endif
+ return -1;
+}
+
+void virtio_device_notify_region_unmap(VirtIODevice *vdev, MemoryRegion *mr)
+{
+#ifdef CONFIG_VIRTIO_PCI
+ if (virtio_device_parent_is_pci_device(vdev)) {
+ virtio_pci_notify_region_unmap(vdev, mr);
+ }
+#endif
+}
+
static void virtio_device_class_init(ObjectClass *klass, void *data)
{
/* Set the default value here. */
diff --git a/include/hw/virtio/virtio.h b/include/hw/virtio/virtio.h
index 098bdaaea3..b14accdb08 100644
--- a/include/hw/virtio/virtio.h
+++ b/include/hw/virtio/virtio.h
@@ -285,6 +285,11 @@ void virtio_device_stop_ioeventfd(VirtIODevice *vdev);
int virtio_device_grab_ioeventfd(VirtIODevice *vdev);
void virtio_device_release_ioeventfd(VirtIODevice *vdev);
bool virtio_device_ioeventfd_enabled(VirtIODevice *vdev);
+bool virtio_device_parent_is_pci_device(VirtIODevice *vdev);
+bool virtio_device_page_per_vq_enabled(VirtIODevice *vdev);
+int virtio_device_notify_region_map(VirtIODevice *vdev, int queue_idx,
+ MemoryRegion *mr);
+void virtio_device_notify_region_unmap(VirtIODevice *vdev, MemoryRegion *mr);
EventNotifier *virtio_queue_get_host_notifier(VirtQueue *vq);
void virtio_queue_host_notifier_read(EventNotifier *n);
void virtio_queue_aio_set_host_notifier_handler(VirtQueue *vq, AioContext *ctx,
diff --git a/include/qemu/osdep.h b/include/qemu/osdep.h
index 41658060a7..2532c278ef 100644
--- a/include/qemu/osdep.h
+++ b/include/qemu/osdep.h
@@ -30,6 +30,7 @@
#include "config-host.h"
#ifdef NEED_CPU_H
#include "config-target.h"
+#include "config-devices.h"
#else
#include "exec/poison.h"
#endif
diff --git a/scripts/create_config b/scripts/create_config
index d727e5e36e..e4541a51ed 100755
--- a/scripts/create_config
+++ b/scripts/create_config
@@ -58,6 +58,9 @@ case $line in
name=${line%=*}
echo "#define $name 1"
;;
+ CONFIG_*='$(CONFIG_'*')') # configuration
+ continue
+ ;;
CONFIG_*=*) # configuration
name=${line%=*}
value=${line#*=}
--
2.11.0
next prev parent reply other threads:[~2018-03-19 7:17 UTC|newest]
Thread overview: 46+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-03-19 7:15 [virtio-dev] [PATCH v2 0/6] Extend vhost-user to support VFIO based accelerators Tiwei Bie
2018-03-19 7:15 ` [Qemu-devel] " Tiwei Bie
2018-03-19 7:15 ` [virtio-dev] [PATCH v2 1/6] vhost-user: support receiving file descriptors in slave_read Tiwei Bie
2018-03-19 7:15 ` [Qemu-devel] " Tiwei Bie
2018-03-19 7:15 ` [virtio-dev] [PATCH v2 2/6] vhost-user: introduce shared vhost-user state Tiwei Bie
2018-03-19 7:15 ` [Qemu-devel] " Tiwei Bie
2018-03-22 15:13 ` [virtio-dev] " Michael S. Tsirkin
2018-03-22 15:13 ` [Qemu-devel] " Michael S. Tsirkin
2018-03-27 13:32 ` [virtio-dev] " Tiwei Bie
2018-03-27 13:32 ` [Qemu-devel] " Tiwei Bie
2018-03-19 7:15 ` Tiwei Bie [this message]
2018-03-19 7:15 ` [Qemu-devel] [PATCH v2 3/6] virtio: support adding sub-regions for notify region Tiwei Bie
2018-03-22 14:57 ` [virtio-dev] " Michael S. Tsirkin
2018-03-22 14:57 ` [Qemu-devel] " Michael S. Tsirkin
2018-03-27 13:47 ` [virtio-dev] " Tiwei Bie
2018-03-27 13:47 ` [Qemu-devel] " Tiwei Bie
2018-03-19 7:15 ` [virtio-dev] [PATCH v2 4/6] vfio: support getting VFIOGroup from groupfd Tiwei Bie
2018-03-19 7:15 ` [Qemu-devel] " Tiwei Bie
2018-03-19 7:15 ` [virtio-dev] [PATCH v2 5/6] vfio: remove DPRINTF() definition from vfio-common.h Tiwei Bie
2018-03-19 7:15 ` [Qemu-devel] " Tiwei Bie
2018-03-22 15:15 ` [virtio-dev] " Michael S. Tsirkin
2018-03-22 15:15 ` [Qemu-devel] " Michael S. Tsirkin
2018-03-27 13:33 ` [virtio-dev] " Tiwei Bie
2018-03-27 13:33 ` [Qemu-devel] " Tiwei Bie
2018-03-19 7:15 ` [virtio-dev] [PATCH v2 6/6] vhost-user: add VFIO based accelerators support Tiwei Bie
2018-03-19 7:15 ` [Qemu-devel] " Tiwei Bie
2018-03-22 16:19 ` [virtio-dev] " Michael S. Tsirkin
2018-03-22 16:19 ` [Qemu-devel] " Michael S. Tsirkin
2018-03-27 11:06 ` [virtio-dev] " Tiwei Bie
2018-03-27 11:06 ` [Qemu-devel] " Tiwei Bie
2018-03-27 13:59 ` [virtio-dev] " Tiwei Bie
2018-03-27 13:59 ` [Qemu-devel] " Tiwei Bie
2018-03-22 14:55 ` [virtio-dev] Re: [PATCH v2 0/6] Extend vhost-user to support VFIO based accelerators Michael S. Tsirkin
2018-03-22 14:55 ` [Qemu-devel] " Michael S. Tsirkin
2018-03-23 8:54 ` [virtio-dev] " Tiwei Bie
2018-03-23 8:54 ` [Qemu-devel] " Tiwei Bie
2018-03-22 16:40 ` [virtio-dev] " Michael S. Tsirkin
2018-03-22 16:40 ` [Qemu-devel] " Michael S. Tsirkin
2018-03-28 12:24 ` [virtio-dev] " Tiwei Bie
2018-03-28 12:24 ` [Qemu-devel] " Tiwei Bie
2018-03-28 15:33 ` [virtio-dev] " Michael S. Tsirkin
2018-03-28 15:33 ` [Qemu-devel] " Michael S. Tsirkin
2018-03-29 3:33 ` [virtio-dev] " Tiwei Bie
2018-03-29 3:33 ` [Qemu-devel] " Tiwei Bie
2018-03-29 4:16 ` Michael S. Tsirkin
2018-03-29 4:16 ` [Qemu-devel] " Michael S. Tsirkin
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=20180319071537.28649-4-tiwei.bie@intel.com \
--to=tiwei.bie@intel.com \
--cc=alex.williamson@redhat.com \
--cc=cunming.liang@intel.com \
--cc=dan.daly@intel.com \
--cc=jasowang@redhat.com \
--cc=jianfeng.tan@intel.com \
--cc=mst@redhat.com \
--cc=pbonzini@redhat.com \
--cc=qemu-devel@nongnu.org \
--cc=stefanha@redhat.com \
--cc=virtio-dev@lists.oasis-open.org \
--cc=xiao.w.wang@intel.com \
--cc=zhihong.wang@intel.com \
/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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.