All of lore.kernel.org
 help / color / mirror / Atom feed
From: Tiwei Bie <tiwei.bie@intel.com>
To: Alex Williamson <alex.williamson@redhat.com>
Cc: mst@redhat.com, jasowang@redhat.com, maxime.coquelin@redhat.com,
	linux-kernel@vger.kernel.org, kvm@vger.kernel.org,
	virtualization@lists.linux-foundation.org,
	netdev@vger.kernel.org, dan.daly@intel.com,
	cunming.liang@intel.com, zhihong.wang@intel.com
Subject: Re: [RFC v2] vhost: introduce mdev based hardware vhost backend
Date: Thu, 4 Jul 2019 09:36:36 +0800	[thread overview]
Message-ID: <20190704013636.GA26992@___> (raw)
In-Reply-To: <20190703123157.2452bf95@x1.home>

On Wed, Jul 03, 2019 at 12:31:57PM -0600, Alex Williamson wrote:
> On Wed,  3 Jul 2019 17:13:39 +0800
> Tiwei Bie <tiwei.bie@intel.com> wrote:
> > diff --git a/include/uapi/linux/vfio.h b/include/uapi/linux/vfio.h
> > index 8f10748dac79..6c5718ab7eeb 100644
> > --- a/include/uapi/linux/vfio.h
> > +++ b/include/uapi/linux/vfio.h
> > @@ -201,6 +201,7 @@ struct vfio_device_info {
> >  #define VFIO_DEVICE_FLAGS_AMBA  (1 << 3)	/* vfio-amba device */
> >  #define VFIO_DEVICE_FLAGS_CCW	(1 << 4)	/* vfio-ccw device */
> >  #define VFIO_DEVICE_FLAGS_AP	(1 << 5)	/* vfio-ap device */
> > +#define VFIO_DEVICE_FLAGS_VHOST	(1 << 6)	/* vfio-vhost device */
> >  	__u32	num_regions;	/* Max region index + 1 */
> >  	__u32	num_irqs;	/* Max IRQ index + 1 */
> >  };
> > @@ -217,6 +218,7 @@ struct vfio_device_info {
> >  #define VFIO_DEVICE_API_AMBA_STRING		"vfio-amba"
> >  #define VFIO_DEVICE_API_CCW_STRING		"vfio-ccw"
> >  #define VFIO_DEVICE_API_AP_STRING		"vfio-ap"
> > +#define VFIO_DEVICE_API_VHOST_STRING		"vfio-vhost"
> >  
> >  /**
> >   * VFIO_DEVICE_GET_REGION_INFO - _IOWR(VFIO_TYPE, VFIO_BASE + 8,
> > @@ -573,6 +575,23 @@ enum {
> >  	VFIO_CCW_NUM_IRQS
> >  };
> >  
> > +/*
> > + * The vfio-vhost bus driver makes use of the following fixed region and
> > + * IRQ index mapping. Unimplemented regions return a size of zero.
> > + * Unimplemented IRQ types return a count of zero.
> > + */
> > +
> > +enum {
> > +	VFIO_VHOST_CONFIG_REGION_INDEX,
> > +	VFIO_VHOST_NOTIFY_REGION_INDEX,
> > +	VFIO_VHOST_NUM_REGIONS
> > +};
> > +
> > +enum {
> > +	VFIO_VHOST_VQ_IRQ_INDEX,
> > +	VFIO_VHOST_NUM_IRQS
> > +};
> > +
> 
> Note that the vfio API has evolved a bit since vfio-pci started this
> way, with fixed indexes for pre-defined region types.  We now support
> device specific regions which can be identified by a capability within
> the REGION_INFO ioctl return data.  This allows a bit more flexibility,
> at the cost of complexity, but the infrastructure already exists in
> kernel and QEMU to make it relatively easy.  I think we'll have the
> same support for interrupts soon too.  If you continue to pursue the
> vfio-vhost direction you might want to consider these before committing
> to fixed indexes.  Thanks,

Thanks for the details! Will give it a try!

Thanks,
Tiwei

  parent reply	other threads:[~2019-07-04  1:38 UTC|newest]

Thread overview: 42+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-07-03  9:13 [RFC v2] vhost: introduce mdev based hardware vhost backend Tiwei Bie
2019-07-03 10:09 ` Jason Wang
2019-07-03 11:52   ` Tiwei Bie
2019-07-03 11:52   ` Tiwei Bie
2019-07-03 12:16     ` Jason Wang
2019-07-03 13:08       ` Tiwei Bie
2019-07-04  4:31         ` Jason Wang
2019-07-04  4:31           ` Jason Wang
2019-07-04  6:21           ` Tiwei Bie
2019-07-04  6:35             ` Jason Wang
2019-07-04  6:35               ` Jason Wang
2019-07-04  7:02               ` Tiwei Bie
2019-07-05  0:30                 ` Jason Wang
2019-07-05  2:23                   ` Tiwei Bie
2019-07-05  2:23                   ` Tiwei Bie
2019-07-05  0:30                 ` Jason Wang
2019-07-04  7:02               ` Tiwei Bie
2019-07-05 14:49             ` Alex Williamson
2019-07-08  6:16               ` Tiwei Bie
2019-07-08  6:16               ` Tiwei Bie
2019-07-09  2:50                 ` Jason Wang
2019-07-09  2:50                 ` Jason Wang
2019-07-09  6:33                   ` Tiwei Bie
2019-07-09  6:33                   ` Tiwei Bie
2019-07-10  2:26                     ` Jason Wang
2019-07-10  6:22                       ` Tiwei Bie
2019-07-10  6:22                       ` Tiwei Bie
2019-07-10  7:22                         ` Jason Wang
2019-07-10  7:22                         ` Jason Wang
2019-07-18 10:31                           ` Jason Wang
2019-07-18 10:31                           ` Jason Wang
2019-07-10  2:26                     ` Jason Wang
2019-07-05 14:49             ` Alex Williamson
2019-07-04  6:21           ` Tiwei Bie
2019-07-03 13:08       ` Tiwei Bie
2019-07-03 12:16     ` Jason Wang
2019-07-03 10:09 ` Jason Wang
2019-07-03 18:31 ` Alex Williamson
2019-07-03 18:31 ` Alex Williamson
2019-07-04  1:36   ` Tiwei Bie
2019-07-04  1:36   ` Tiwei Bie [this message]
  -- strict thread matches above, loose matches on Subject: below --
2019-07-03  9:13 Tiwei Bie

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=20190704013636.GA26992@___ \
    --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=kvm@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=maxime.coquelin@redhat.com \
    --cc=mst@redhat.com \
    --cc=netdev@vger.kernel.org \
    --cc=virtualization@lists.linux-foundation.org \
    --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.