diff options
author | Viresh Kumar <viresh.kumar@linaro.org> | 2022-08-02 10:50:00 +0100 |
---|---|---|
committer | Michael S. Tsirkin <mst@redhat.com> | 2022-10-07 09:41:51 -0400 |
commit | 27ba7b027f0f06479091bcfbcd308a6b272563a4 (patch) | |
tree | f662a003f593e187df76e405e91de7ae934d78b0 /hw/virtio/Kconfig | |
parent | b8f3e6a18de6ad5cb668c5430b4933f1e40783cf (diff) | |
download | qemu-27ba7b027f0f06479091bcfbcd308a6b272563a4.zip qemu-27ba7b027f0f06479091bcfbcd308a6b272563a4.tar.gz qemu-27ba7b027f0f06479091bcfbcd308a6b272563a4.tar.bz2 |
hw/virtio: add boilerplate for vhost-user-gpio device
This creates the QEMU side of the vhost-user-gpio device which connects
to the remote daemon. It is based of vhost-user-i2c code.
Signed-off-by: Viresh Kumar <viresh.kumar@linaro.org>
Reviewed-by: Alex Bennée <alex.bennee@linaro.org>
Message-Id: <5390324a748194a21bc99b1538e19761a8c64092.1641987128.git.viresh.kumar@linaro.org>
[AJB: fixes for qtest, tweaks to feature bits]
Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
Cc: Vincent Whitchurch <vincent.whitchurch@axis.com>
Message-Id: <20220802095010.3330793-13-alex.bennee@linaro.org>
Reviewed-by: Michael S. Tsirkin <mst@redhat.com>
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
Diffstat (limited to 'hw/virtio/Kconfig')
-rw-r--r-- | hw/virtio/Kconfig | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/hw/virtio/Kconfig b/hw/virtio/Kconfig index e9ecae1..cbfd8c7 100644 --- a/hw/virtio/Kconfig +++ b/hw/virtio/Kconfig @@ -80,3 +80,8 @@ config VHOST_USER_FS bool default y depends on VIRTIO && VHOST_USER + +config VHOST_USER_GPIO + bool + default y + depends on VIRTIO && VHOST_USER |