diff options
author | Milan Zamazal <mzamazal@redhat.com> | 2023-06-28 12:05:22 +0200 |
---|---|---|
committer | Michael S. Tsirkin <mst@redhat.com> | 2023-07-10 16:17:07 -0400 |
commit | a5dab090e1425929a1a5a3034768cb33dab69bf4 (patch) | |
tree | d53f4a4a851f886cb8c713f5d9a7495a7431633e /hw/virtio/Kconfig | |
parent | 31f137e3d6c596883ecd572ff3c53eb03b0e87c7 (diff) |
hw/virtio: Add boilerplate for vhost-user-scmi device
This creates the QEMU side of the vhost-user-scmi device which connects to
the remote daemon. It is based on code of similar vhost-user devices.
Signed-off-by: Milan Zamazal <mzamazal@redhat.com>
Message-Id: <20230628100524.342666-2-mzamazal@redhat.com>
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 de7a35429a..a9ee09062f 100644 --- a/hw/virtio/Kconfig +++ b/hw/virtio/Kconfig @@ -96,3 +96,8 @@ config VHOST_VDPA_DEV bool default y depends on VIRTIO && VHOST_VDPA && LINUX + +config VHOST_USER_SCMI + bool + default y + depends on VIRTIO && VHOST_USER |