From: "Michael S. Tsirkin" <mst@redhat.com>
To: Parav Pandit <parav@nvidia.com>
Cc: Bill Mills <bill.mills@linaro.org>,
"virtio-comment@lists.linux.dev" <virtio-comment@lists.linux.dev>,
Bertrand Marquis <bertrand.marquis@arm.com>,
"Edgar E . Iglesias" <edgar.iglesias@amd.com>,
Arnaud Pouliquen <arnaud.pouliquen@foss.st.com>,
Viresh Kumar <viresh.kumar@linaro.org>,
Alex Bennee <alex.bennee@linaro.org>,
Armelle Laine <armellel@google.com>
Subject: Re: [PATCH v1 0/4] virtio-msg transport layer
Date: Thu, 19 Feb 2026 18:54:47 -0500 [thread overview]
Message-ID: <20260219185034-mutt-send-email-mst@kernel.org> (raw)
In-Reply-To: <SJ0PR12MB680610C1B53CA4E8B4470411DC61A@SJ0PR12MB6806.namprd12.prod.outlook.com>
On Fri, Feb 13, 2026 at 01:52:06PM +0000, Parav Pandit wrote:
> Hi Bill,
>
> > From: Bill Mills <bill.mills@linaro.org>
> > Sent: 26 January 2026 10:02 PM
> >
> > This series adds the virtio-msg transport layer.
> >
> > The individuals and organizations involved in this effort have had difficulty in
> > using the existing virtio-transports in various situations and desire to add one
> > more transport that performs its transport layer operations by sending and
> > receiving messages.
> >
> > Implementations of virtio-msg will normally be done in multiple layers:
> > * common / device level
> > * bus level
> >
> > The common / device level defines the messages exchanged between the driver
> > and a device. This common part should lead to a common driver holding most
> > of the virtio specifics and can be shared by all virtio-msg bus implementations.
> > The kernel implementation in [3] shows this separation. As with other transport
> > layers, virtio-msg should not require modifications to existing virtio device
> > implementations (virtio-net, virtio-blk etc). The common / device level is the
> > main focus of this version of the patch series.
> >
> > The virtio-msg bus level implements the normal things a bus defines
> > (enumeration, dma operations, etc) but also implements the message send and
> > receive operations. A number of bus implementations are envisioned,
> > some of which will be reusable and general purpose. Other bus implementations
> > might be unique to a given situation, for example only used by a PCIe card
> > and its driver.
> >
> > The standard bus messages are an effort to avoid different bus implementations
> > doing the same thing in different ways for no good reason. However the
> > different environments will require different things. Instead of trying to
> > anticipate all needs and provide something very abstract, we think
> > implementation specific messages will be needed at the bus level. Over time,
> > if we see similar messages across multiple bus implementations, we will move to
> > standardize a bus level message for that.
> >
>
> I would review more, had first round of sparse review.
> Please find few comments/questions below.
I'd like to comment that I think it makes sense to have a basic simple transport and
then add performance features on top as appropriate.
So one way to address some of these comments is to show how
they can be addressed with a feature bit down the road.
> 1. device number should be 32-bit in struct virtio_msg_header.
> >From SIOV_R2 experiences, we learnt that some uses have use case for more than 64k devices.
> Also mapping PCI BDF wont be enough in 16-bits considering domain field.
>
> 2. msg_size of 16-bits for 64KB-8 bytes is too less for data transfer.
> For example, a TCP stream wants to send 64KB of data + payload, needs more than 64KB data.
> Needs 32-bits.
>
> 3. BUS_MSG_EVENT_DEVICE to have symmetric name as ADDED and REMOVED (instead of READY)
> But more below.
>
> 4. I dont find the transport messages to read and write to the driver memory supplied in VIRTIO_MSG_SET_VQUEUE addresses to operate the virtqueues.
> Dont we need VIRTIO_MEM_READ, VIRTIO_MEM_WRITE request and response?
surely this can be an optional transport feature bit.
> Also, the queue notification message is missing at bus level.
> But I dont think queue notification via message good idea anyway.
> We rather need a more higher-level message for virtqueues.
> Such as posting the descriptors to device. And this should translate into a VIRTIO_MSG_DESC_SEND or bus specific binding.
> Without this msg transport is incomplete.
this too can be a basic method and upgrade to a different one
with a feature negotiation
> 5. msg_id to be renamed to msg_opcode, and token to be renamed to msg_id as it identifies the msg (as written in the description) in
>
> 6. Bus requirements ordering is too strict for implementing any performant data path as data response may not be in same order as request for reads.
here too, relaxed ordering could be a feature bit.
> 7. VIRTIO_MSG_SET_VQUEUE does not have bit field for individual addresses.
> This requires caching all the values on the driver side before sending the transport request.
> I think it is time for virtio spec to shift to virt queue create and destroy model using the admin queue interface.
> and no need to bring this VIRTIO_MSG_SET_VQUEUE legacy to new transport bindings.
> It may require more plumbing, but it is cleaner interface when a new transport binding is created.
>
> 8. We should have the message response header for req-resp method with status code.
> (even though they are plain MMIO writes for pci).
> As opposed to that, proposed messages are doing composite tasks, hence we need the status response.
>
> 9. virtio stack cannot handle hotplug devices today, at least Linux.
> So if the intention is to fit into such a system, DEVICE_BUS_STATE_REMOVED will not be enough.
> A graceful method is needed.
>
> > We are working on a few reusable bus implementations:
> >
> > * virtio-msg-ffa based on Arm FF-A interface for use between:
> > * normal world and secure world
> > * host and VM or VM to VM
> > * Can be used w/ or with out a hypervisor
> > * Any Hypervisor that implements FF-A can be used
> > * We have this working with pKVM and Xen
> > * We have this working with Trusty and OP-TEE
> >
> > * virtio-msg-amp for use between heterogenous systems
> > * The main processors and its co-processors on an AMP SOC
> > * Two or more systems connected via PCIe
> > * Minimal requirements: bi-directional interrupts and
> > at least one shared memory area
> > * hvac-demo has 2 demos of this
> > * This is working on two hardware platforms
> >
> > * virtio-msg-loopback for userspace implemented devices
> > * Allows user space to provide devices to its own kernel
> > * This is similar to fuse, cuse or loopback block devices but for virtio
> > * hvac-demo has a demo
> >
> > We also anticipate a few more:
> >
> > * virtio-msg-xen specific to Xen
> > * Usable on any Xen system (including x86 where FF-A does not exist)
> > * Using Xen events and page grants
> >
> > * virtio-msg over admin virtqueues
> > * This allows any virtio-pci device that supports admin virtqueues to also
> > support a virtio-msg bus that supports sub devices
> > * [We are looking for collaborators for this work]
> >
> > Changes since RFC2:
> >
> > Spec Functional:
> > * Made the common message header 8 bytes and added a token for optional use
> > when parallel outstanding requests are possible
> > * Made the 8 byte fields align to 8 byte offsets.
> > This effects the {SET,GET}_VQUEUE messages
> > * Many conformance cases have been tightened.
> >
> > Spec Editorial:
> > * Major restructure to better align with virtio spec
> > * Conformance model now matches other transports
> > * Use C structures to define messages instead of tables
> > * Added a section to describe how responses are matched to requests
> > This includes the use of the new token field
> > * Redefined / better described error handling between transport and bus
> > layers to eliminate the need for the bus to generate fake response messages
> > * Included editorial feedback from RFC2
> >
> > Eco-system:
> > * Added virtio-msg-loopback demo
> > * Arm has published the first draft of the virtio-msg over FFA spec [6]
> > * virtio-msg over FFA has been demonstrated with both Trusty and OP-TEE
> > secure world
> > * LKML RFC has been sent [7]
> > * QEMU RFC has been sent [8]
> >
> > This is the first non-RFC patch series. The known short comings have been
> > addressed. We ask for review in earnest on this series and thank you for
> > any feedback you can provide.
> >
> > Background info and work in progress implementations:
> > * HVAC project page with intro slides [1]
> > * HVAC demo repo w/ instructions in README.md [2]
> > * Kernel w/ virtio-msg common level and ffa support [3]
> > * QEMU w/ support for one form of virtio-msg-amp [4]
> > * Portable RTOS library w/ one form of virtio-msg-amp [5]
> >
> > In addition to the QEMU system based demos in the hvac-demo repo, we also have
> > two hardware systems running:
> > * AMD x86 + AMD Arm Versal connected via PCIe
> > * ST STM32MP157 A7 Linux using virtio-i2c provided by M4 Zephyr
> >
> > Please note that although the demos work, a few have not been aligned
> > with this version of the spec.
> >
> > [1]
> > https://linaro.atlassian.net/wiki/spaces/HVAC/overview
> > 05%7C02%7Cparav%40nvidia.com%7Cf7f430294c37485df25808de5cf88d95%7C43083d15727340c1b7db39efd9ccc17a%7C0%7C0%7C6390
> > 50419790817373%7CUnknown%7CTWFpbGZsb3d8eyJFbXB0eU1hcGkiOnRydWUsIlYiOiIwLjAuMDAwMCIsIlAiOiJXaW4zMiIsIkFOIjoiTWFpbCIs
> > IldUIjoyfQ%3D%3D%7C0%7C%7C%7C&sdata=JnCO8QgAIiyGAprBLkprUd8A3162wCFpmGic3JKoHXo%3D&reserved=0
> > [2] https://github.com/wmamills/hvac-
> > demo&data=05%7C02%7Cparav%40nvidia.com%7Cf7f430294c37485df25808de5cf88d95%7C43083d15727340c1b7db39efd9ccc17a%7C0%7
> > C0%7C639050419790868944%7CUnknown%7CTWFpbGZsb3d8eyJFbXB0eU1hcGkiOnRydWUsIlYiOiIwLjAuMDAwMCIsIlAiOiJXaW4zMiIsIkFOIj
> > oiTWFpbCIsIldUIjoyfQ%3D%3D%7C0%7C%7C%7C&sdata=XeBuS8Hr%2FDETKfSyidKKGoGq6OTUcOYoeSGDouUMcf4%3D&reserved=0
> > [3]
> > https://git.kernel.org/pub/scm/linux/kernel/git/vireshk%252
> > Flinux.git%2Flog%2F%3Fh%3Dvirtio%2Fmsg&data=05%7C02%7Cparav%40nvidia.com%7Cf7f430294c37485df25808de5cf88d95%7C43083d1
> > 5727340c1b7db39efd9ccc17a%7C0%7C0%7C639050419790913867%7CUnknown%7CTWFpbGZsb3d8eyJFbXB0eU1hcGkiOnRydWUsIlYiOiIw
> > LjAuMDAwMCIsIlAiOiJXaW4zMiIsIkFOIjoiTWFpbCIsIldUIjoyfQ%3D%3D%7C0%7C%7C%7C&sdata=PuLq68Y0ZNCYbfrgDZlipfm44xHZp1%2F%2
> > BLu%2FaKQBBB%2Fo%3D&reserved=0
> > [4] https://github.com/edgarigl/qemu/commits/edgar/virtio-
> > msg-
> > rfc%2F&data=05%7C02%7Cparav%40nvidia.com%7Cf7f430294c37485df25808de5cf88d95%7C43083d15727340c1b7db39efd9ccc17a%7C0%
> > 7C0%7C639050419790960971%7CUnknown%7CTWFpbGZsb3d8eyJFbXB0eU1hcGkiOnRydWUsIlYiOiIwLjAuMDAwMCIsIlAiOiJXaW4zMiIsIkFO
> > IjoiTWFpbCIsIldUIjoyfQ%3D%3D%7C0%7C%7C%7C&sdata=xyowKD9KG3IasQTiYCzfCRGqCLSF%2Fa1g4%2F2%2ByKb1OoA%3D&reserved=0
> > [5] https://github.com/arnopo/open-amp/commits/virtio-
> > msg%2F&data=05%7C02%7Cparav%40nvidia.com%7Cf7f430294c37485df25808de5cf88d95%7C43083d15727340c1b7db39efd9ccc17a%7C0
> > %7C0%7C639050419791007707%7CUnknown%7CTWFpbGZsb3d8eyJFbXB0eU1hcGkiOnRydWUsIlYiOiIwLjAuMDAwMCIsIlAiOiJXaW4zMiIsIkF
> > OIjoiTWFpbCIsIldUIjoyfQ%3D%3D%7C0%7C%7C%7C&sdata=69OwO2wXi0%2FEhDDSR2uLG2iis5RYzI%2FLnlfkcRYao9o%3D&reserved=0
> > [6] https://documentation-/
> > service.arm.com%2Fstatic%2F68f647791134f773ab3f0a7c&data=05%7C02%7Cparav%40nvidia.com%7Cf7f430294c37485df25808de5cf88d9
> > 5%7C43083d15727340c1b7db39efd9ccc17a%7C0%7C0%7C639050419791052848%7CUnknown%7CTWFpbGZsb3d8eyJFbXB0eU1hcGkiOnRy
> > dWUsIlYiOiIwLjAuMDAwMCIsIlAiOiJXaW4zMiIsIkFOIjoiTWFpbCIsIldUIjoyfQ%3D%3D%7C0%7C%7C%7C&sdata=cD5VqKnTuIFqlN2XV3j%2FHQ
> > Wvsz8UVe5PM0ZjMU3o0sM%3D&reserved=0
> > [7]
> > https://lore.kernel.org/all/cover.1753865268.git.viresh.kumar@linar
> > o.org%2F&data=05%7C02%7Cparav%40nvidia.com%7Cf7f430294c37485df25808de5cf88d95%7C43083d15727340c1b7db39efd9ccc17a%7C
> > 0%7C0%7C639050419791093596%7CUnknown%7CTWFpbGZsb3d8eyJFbXB0eU1hcGkiOnRydWUsIlYiOiIwLjAuMDAwMCIsIlAiOiJXaW4zMiIsI
> > kFOIjoiTWFpbCIsIldUIjoyfQ%3D%3D%7C0%7C%7C%7C&sdata=NmhmL%2BuyVqnpHT5r9EfI2uzPf9LSXLga7bUw3FO5x4w%3D&reserved=0
> > [8] https://mail.gnu.org/archive/html/qemu-devel/2025-
> > 10%2Fmsg07438.html&data=05%7C02%7Cparav%40nvidia.com%7Cf7f430294c37485df25808de5cf88d95%7C43083d15727340c1b7db39efd
> > 9ccc17a%7C0%7C0%7C639050419791139232%7CUnknown%7CTWFpbGZsb3d8eyJFbXB0eU1hcGkiOnRydWUsIlYiOiIwLjAuMDAwMCIsIlAiOiJ
> > XaW4zMiIsIkFOIjoiTWFpbCIsIldUIjoyfQ%3D%3D%7C0%7C%7C%7C&sdata=osI1FttOO9%2B01e%2B5EtwnYe%2Fl1%2BIvFjH%2Blyz2ipM3RM
> > Q%3D&reserved=0
> >
> > Bertrand Marquis (2):
> > virtio-msg: add new command for bus normative
> > virtio-msg: add conformance entries in conformance chapter
> >
> > Bill Mills (2):
> > virtio-msg: Add virtio-msg, a message based virtio transport layer
> > virtio-msg: link virtio-msg content
> >
> > commands.tex | 3 +-
> > conformance.tex | 105 ++-
> > content.tex | 1 +
> > transport-msg.tex | 1640 +++++++++++++++++++++++++++++++++++++++++++++
> > 4 files changed, 1746 insertions(+), 3 deletions(-)
> > create mode 100644 transport-msg.tex
> >
> > --
> > 2.34.1
> >
>
next prev parent reply other threads:[~2026-02-19 23:54 UTC|newest]
Thread overview: 105+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-01-26 16:32 [PATCH v1 0/4] virtio-msg transport layer Bill Mills
2026-01-26 16:32 ` [PATCH v1 1/4] virtio-msg: add new command for bus normative Bill Mills
2026-02-03 19:42 ` Edgar E. Iglesias
2026-01-26 16:32 ` [PATCH v1 2/4] virtio-msg: Add virtio-msg, a message based virtio transport layer Bill Mills
2026-02-06 16:28 ` Peter Hilber
2026-02-10 9:39 ` Bertrand Marquis
2026-02-12 11:16 ` Peter Hilber
2026-02-20 8:23 ` Bertrand Marquis
2026-02-26 13:53 ` Peter Hilber
2026-02-13 19:09 ` Demi Marie Obenour
2026-02-20 8:52 ` Bertrand Marquis
2026-02-21 2:04 ` Demi Marie Obenour
2026-02-23 7:44 ` Bertrand Marquis
2026-02-24 15:41 ` Demi Marie Obenour
2026-02-24 16:14 ` Bertrand Marquis
2026-02-24 17:36 ` Edgar E. Iglesias
2026-02-24 17:14 ` Demi Marie Obenour
2026-02-24 17:20 ` Bertrand Marquis
2026-02-24 17:46 ` Demi Marie Obenour
2026-02-25 7:26 ` Bertrand Marquis
2026-02-25 12:36 ` Demi Marie Obenour
2026-02-25 12:46 ` Bertrand Marquis
2026-01-26 16:32 ` [PATCH v1 3/4] virtio-msg: link virtio-msg content Bill Mills
2026-02-03 19:43 ` Edgar E. Iglesias
2026-01-26 16:32 ` [PATCH v1 4/4] virtio-msg: add conformance entries in conformance chapter Bill Mills
2026-02-03 19:43 ` Edgar E. Iglesias
2026-01-26 21:47 ` [PATCH v1 0/4] virtio-msg transport layer Demi Marie Obenour
2026-02-03 13:21 ` Michael S. Tsirkin
2026-02-03 19:48 ` Edgar E. Iglesias
2026-02-03 19:55 ` Michael S. Tsirkin
2026-02-04 8:33 ` Bertrand Marquis
2026-02-04 13:50 ` Arnaud POULIQUEN
2026-02-04 3:29 ` Viresh Kumar
2026-02-04 5:34 ` Manivannan Sadhasivam
2026-02-13 13:52 ` Parav Pandit
2026-02-13 19:45 ` Demi Marie Obenour
2026-02-19 17:31 ` Armelle Laine
2026-02-20 8:55 ` Bertrand Marquis
2026-02-19 23:54 ` Michael S. Tsirkin [this message]
2026-02-20 6:13 ` Parav Pandit
2026-02-20 9:02 ` Bertrand Marquis
2026-02-25 7:45 ` Manivannan Sadhasivam
2026-02-25 8:03 ` Bertrand Marquis
2026-02-25 8:12 ` Michael S. Tsirkin
2026-02-25 10:06 ` Manivannan Sadhasivam
2026-02-25 10:10 ` Michael S. Tsirkin
2026-02-25 10:14 ` Bertrand Marquis
2026-02-25 10:22 ` Michael S. Tsirkin
2026-02-25 10:53 ` Manivannan Sadhasivam
2026-02-25 10:24 ` Parav Pandit
2026-02-25 10:35 ` Bertrand Marquis
2026-02-25 10:52 ` Michael S. Tsirkin
2026-02-25 10:55 ` Bertrand Marquis
2026-02-25 10:58 ` Michael S. Tsirkin
2026-02-25 14:45 ` Parav Pandit
2026-02-25 14:49 ` Michael S. Tsirkin
2026-02-25 14:53 ` Bertrand Marquis
2026-02-25 15:00 ` Parav Pandit
2026-02-25 15:07 ` Parav Pandit
2026-02-25 15:12 ` Bertrand Marquis
2026-02-25 15:15 ` Michael S. Tsirkin
2026-02-25 15:36 ` Demi Marie Obenour
2026-02-25 15:40 ` Bertrand Marquis
2026-02-25 15:48 ` Demi Marie Obenour
2026-02-25 15:51 ` Bertrand Marquis
2026-02-25 16:15 ` Demi Marie Obenour
2026-02-26 5:40 ` Manivannan Sadhasivam
2026-02-26 7:05 ` Bertrand Marquis
2026-02-25 15:11 ` Manivannan Sadhasivam
2026-02-25 15:15 ` Parav Pandit
2026-02-26 5:36 ` Manivannan Sadhasivam
2026-02-26 5:59 ` Parav Pandit
2026-02-26 6:19 ` Manivannan Sadhasivam
2026-02-26 7:01 ` Bertrand Marquis
2026-02-26 7:28 ` Manivannan Sadhasivam
2026-02-26 19:20 ` Demi Marie Obenour
2026-02-26 22:08 ` Edgar E. Iglesias
2026-02-25 15:23 ` Demi Marie Obenour
2026-02-25 16:42 ` Edgar E. Iglesias
2026-02-25 12:53 ` Demi Marie Obenour
2026-02-25 13:09 ` Manivannan Sadhasivam
2026-02-25 13:12 ` Demi Marie Obenour
2026-02-25 13:29 ` Bertrand Marquis
2026-02-25 15:19 ` Demi Marie Obenour
2026-02-25 15:27 ` Bertrand Marquis
2026-02-20 10:03 ` Michael S. Tsirkin
2026-02-25 5:09 ` Parav Pandit
2026-02-25 7:25 ` Michael S. Tsirkin
2026-02-25 9:18 ` Parav Pandit
2026-02-25 9:22 ` Michael S. Tsirkin
2026-02-25 9:35 ` Bertrand Marquis
2026-02-25 9:54 ` Michael S. Tsirkin
2026-02-25 10:01 ` Bertrand Marquis
2026-02-25 10:08 ` Michael S. Tsirkin
2026-02-20 8:58 ` Bertrand Marquis
2026-02-20 8:40 ` Bertrand Marquis
2026-02-25 4:58 ` Parav Pandit
2026-02-25 7:52 ` Bertrand Marquis
2026-02-25 12:46 ` Demi Marie Obenour
2026-02-25 13:05 ` Bertrand Marquis
2026-02-25 13:09 ` Demi Marie Obenour
2026-02-25 15:17 ` Bertrand Marquis
2026-02-24 17:57 ` Demi Marie Obenour
2026-02-25 15:21 ` Alex Bennée
2026-02-25 15:46 ` Demi Marie Obenour
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=20260219185034-mutt-send-email-mst@kernel.org \
--to=mst@redhat.com \
--cc=alex.bennee@linaro.org \
--cc=armellel@google.com \
--cc=arnaud.pouliquen@foss.st.com \
--cc=bertrand.marquis@arm.com \
--cc=bill.mills@linaro.org \
--cc=edgar.iglesias@amd.com \
--cc=parav@nvidia.com \
--cc=viresh.kumar@linaro.org \
--cc=virtio-comment@lists.linux.dev \
/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