All of lore.kernel.org
 help / color / mirror / Atom feed
From: Jason Wang <jasowang@redhat.com>
To: Cornelia Huck <cohuck@redhat.com>
Cc: christophe.de.dinechin@gmail.com, kvm@vger.kernel.org,
	mst@redhat.com, airlied@linux.ie,
	joonas.lahtinen@linux.intel.com, heiko.carstens@de.ibm.com,
	dri-devel@lists.freedesktop.org,
	virtualization@lists.linux-foundation.org, kwankhede@nvidia.com,
	rob.miller@broadcom.com, linux-s390@vger.kernel.org,
	sebott@linux.ibm.com, lulu@redhat.com, eperezma@redhat.com,
	pasic@linux.ibm.com, borntraeger@de.ibm.com,
	haotian.wang@sifive.com, zhi.a.wang@intel.com,
	farman@linux.ibm.com, idos@mellanox.com, gor@linux.ibm.com,
	intel-gfx@lists.freedesktop.org, jani.nikula@linux.intel.com,
	xiao.w.wang@intel.com, freude@linux.ibm.com,
	zhenyuw@linux.intel.com, parav@mellanox.com,
	zhihong.wang@intel.com, rodrigo.vivi@intel.com,
	intel-gvt-dev@lists.freedesktop.org, akrowiak@linux.ibm.com,
	oberpar@linux.ibm.com, netdev@vger.kernel.org,
	linux-kernel@vger.kernel.org, maxime.coquelin@redhat.comda
Subject: Re: [PATCH V3 1/7] mdev: class id support
Date: Tue, 15 Oct 2019 20:12:33 +0800	[thread overview]
Message-ID: <084c7e28-8578-51f3-7b31-2231de8c636d__5059.3839537882$1571141594$gmane$org@redhat.com> (raw)
In-Reply-To: <20191015122607.126e3960.cohuck@redhat.com>


On 2019/10/15 下午6:26, Cornelia Huck wrote:
> On Fri, 11 Oct 2019 16:15:51 +0800
> Jason Wang <jasowang@redhat.com> wrote:
>
>> Mdev bus only supports vfio driver right now, so it doesn't implement
>> match method. But in the future, we may add drivers other than vfio,
>> the first driver could be virtio-mdev. This means we need to add
>> device class id support in bus match method to pair the mdev device
>> and mdev driver correctly.
>>
>> So this patch adds id_table to mdev_driver and class_id for mdev
>> device with the match method for mdev bus.
>>
>> Signed-off-by: Jason Wang <jasowang@redhat.com>
>> ---
>>   Documentation/driver-api/vfio-mediated-device.rst |  7 ++++++-
>>   drivers/gpu/drm/i915/gvt/kvmgt.c                  |  1 +
>>   drivers/s390/cio/vfio_ccw_ops.c                   |  1 +
>>   drivers/s390/crypto/vfio_ap_ops.c                 |  1 +
>>   drivers/vfio/mdev/mdev_core.c                     | 11 +++++++++++
>>   drivers/vfio/mdev/mdev_driver.c                   | 14 ++++++++++++++
>>   drivers/vfio/mdev/mdev_private.h                  |  1 +
>>   drivers/vfio/mdev/vfio_mdev.c                     |  6 ++++++
>>   include/linux/mdev.h                              |  8 ++++++++
>>   include/linux/mod_devicetable.h                   |  8 ++++++++
>>   samples/vfio-mdev/mbochs.c                        |  1 +
>>   samples/vfio-mdev/mdpy.c                          |  1 +
>>   samples/vfio-mdev/mtty.c                          |  1 +
>>   13 files changed, 60 insertions(+), 1 deletion(-)
>>
>> diff --git a/Documentation/driver-api/vfio-mediated-device.rst b/Documentation/driver-api/vfio-mediated-device.rst
>> index 25eb7d5b834b..2035e48da7b2 100644
>> --- a/Documentation/driver-api/vfio-mediated-device.rst
>> +++ b/Documentation/driver-api/vfio-mediated-device.rst
>> @@ -102,12 +102,14 @@ structure to represent a mediated device's driver::
>>         * @probe: called when new device created
>>         * @remove: called when device removed
>>         * @driver: device driver structure
>> +      * @id_table: the ids serviced by this driver
>>         */
>>        struct mdev_driver {
>>   	     const char *name;
>>   	     int  (*probe)  (struct device *dev);
>>   	     void (*remove) (struct device *dev);
>>   	     struct device_driver    driver;
>> +	     const struct mdev_class_id *id_table;
>>        };
>>   
>>   A mediated bus driver for mdev should use this structure in the function calls
>> @@ -165,12 +167,15 @@ register itself with the mdev core driver::
>>   	extern int  mdev_register_device(struct device *dev,
>>   	                                 const struct mdev_parent_ops *ops);
>>   
>> +It is also required to specify the class_id through::
>> +
>> +	extern int mdev_set_class(struct device *dev, u16 id);
> Should the document state explicitly that this should be done in the
> ->create() callback?


Yes, it's better.


> Also, I think that the class_id might be different
> for different mdevs (even if the parent is the same) -- should that be
> mentioned explicitly?


Yes, depends on the mdev_supported_type.

Thanks


>
>> +
>>   However, the mdev_parent_ops structure is not required in the function call
>>   that a driver should use to unregister itself with the mdev core driver::
>>   
>>   	extern void mdev_unregister_device(struct device *dev);
>>   
>> -
>>   Mediated Device Management Interface Through sysfs
>>   ==================================================
>>   
> (...)
>
> Looks reasonable to me.
_______________________________________________
Virtualization mailing list
Virtualization@lists.linux-foundation.org
https://lists.linuxfoundation.org/mailman/listinfo/virtualization

  parent reply	other threads:[~2019-10-15 12:12 UTC|newest]

Thread overview: 105+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-10-11  8:15 [PATCH V3 0/7] mdev based hardware virtio offloading support Jason Wang
2019-10-11  8:15 ` Jason Wang
2019-10-11  8:15 ` [PATCH V3 1/7] mdev: class id support Jason Wang
2019-10-11  8:15 ` Jason Wang
2019-10-11  8:15   ` Jason Wang
2019-10-15 10:26   ` Cornelia Huck
2019-10-15 10:26   ` Cornelia Huck
2019-10-15 10:26     ` Cornelia Huck
2019-10-15 12:12     ` Jason Wang
2019-10-15 12:12       ` Jason Wang
2019-10-15 12:12     ` Jason Wang [this message]
2019-10-15 16:38   ` Alex Williamson
2019-10-15 16:38     ` Alex Williamson
2019-10-16  4:38     ` Jason Wang
2019-10-16  4:38       ` Jason Wang
2019-10-16  4:38     ` Jason Wang
2019-10-15 16:38   ` Alex Williamson
2019-10-16  4:57   ` Parav Pandit
2019-10-16  4:57     ` Parav Pandit
2019-10-16  4:57     ` Parav Pandit
2019-10-16 10:37     ` Jason Wang
2019-10-16 10:37       ` Jason Wang
2019-10-16 10:37       ` Jason Wang
2019-10-16 10:37     ` Jason Wang
2019-10-17  8:27     ` Jason Wang
2019-10-17  8:27       ` Jason Wang
2019-10-17  8:27       ` Jason Wang
2019-10-17  8:27     ` Jason Wang
2019-10-11  8:15 ` [PATCH V3 2/7] mdev: bus uevent support Jason Wang
2019-10-11  8:15   ` Jason Wang
2019-10-15 10:27   ` Cornelia Huck
2019-10-15 10:27     ` Cornelia Huck
2019-10-15 12:13     ` Jason Wang
2019-10-15 12:13     ` Jason Wang
2019-10-15 12:13       ` Jason Wang
2019-10-15 10:27   ` Cornelia Huck
2019-10-16  5:06   ` Parav Pandit
2019-10-16  5:06     ` Parav Pandit
2019-10-16  5:06     ` Parav Pandit
2019-10-11  8:15 ` Jason Wang
2019-10-11  8:15 ` [PATCH V3 3/7] modpost: add support for mdev class id Jason Wang
2019-10-11  8:15   ` Jason Wang
2019-10-11  8:15 ` Jason Wang
2019-10-11  8:15 ` [PATCH V3 4/7] mdev: introduce device specific ops Jason Wang
2019-10-11  8:15 ` Jason Wang
2019-10-11  8:15   ` Jason Wang
2019-10-15 10:41   ` Cornelia Huck
2019-10-15 10:41     ` Cornelia Huck
2019-10-15 12:17     ` Jason Wang
2019-10-15 12:17     ` Jason Wang
2019-10-15 12:17       ` Jason Wang
2019-10-15 17:26       ` Alex Williamson
2019-10-15 17:26       ` Alex Williamson
2019-10-15 17:26         ` Alex Williamson
2019-10-16  5:50         ` Parav Pandit
2019-10-16  8:52           ` Cornelia Huck
2019-10-16 15:31             ` Parav Pandit
2019-10-16 16:53               ` Alex Williamson
2019-10-16 20:48                 ` Parav Pandit
2019-10-16 22:37                   ` Alex Williamson
2019-10-17 16:29                     ` Parav Pandit
2019-10-17  8:30                 ` Jason Wang
2019-10-17  8:30                 ` Jason Wang
2019-10-17  8:45                   ` Cornelia Huck
2019-10-17  8:46                     ` Jason Wang
2019-10-17  8:46                     ` Jason Wang
2019-10-16 16:53               ` Alex Williamson
2019-10-15 10:41   ` Cornelia Huck
2019-10-11  8:15 ` [PATCH V3 5/7] mdev: introduce virtio device and its device ops Jason Wang
2019-10-11  8:15   ` Jason Wang
2019-10-14 17:23   ` Stefan Hajnoczi
2019-10-14 17:23     ` Stefan Hajnoczi
2019-10-15  3:27     ` Jason Wang
2019-10-15  3:27       ` Jason Wang
2019-10-15  3:27     ` Jason Wang
2019-10-14 17:23   ` Stefan Hajnoczi
2019-10-11  8:15 ` Jason Wang
2019-10-11  8:15 ` [PATCH V3 6/7] virtio: introduce a mdev based transport Jason Wang
2019-10-11  8:15   ` Jason Wang
2019-10-14 17:39   ` Stefan Hajnoczi
2019-10-14 17:39     ` Stefan Hajnoczi
2019-10-15  3:29     ` Jason Wang
2019-10-15  3:29       ` Jason Wang
2019-10-11  8:15 ` Jason Wang
2019-10-11  8:15 ` [PATCH V3 7/7] docs: sample driver to demonstrate how to implement virtio-mdev framework Jason Wang
2019-10-11  8:15 ` Jason Wang
2019-10-11  8:15   ` Jason Wang
2019-10-11  9:26 ` ✗ Fi.CI.CHECKPATCH: warning for mdev based hardware virtio offloading support (rev4) Patchwork
2019-10-11 10:03 ` ✓ Fi.CI.BAT: success " Patchwork
2019-10-11 17:40 ` ✓ Fi.CI.IGT: " Patchwork
2019-10-14 17:49 ` [PATCH V3 0/7] mdev based hardware virtio offloading support Stefan Hajnoczi
2019-10-14 17:49 ` Stefan Hajnoczi
2019-10-14 17:49   ` Stefan Hajnoczi
2019-10-15  3:37   ` Jason Wang
2019-10-15  3:37   ` Jason Wang
2019-10-15  3:37     ` Jason Wang
2019-10-15 14:37     ` Stefan Hajnoczi
2019-10-15 14:37     ` Stefan Hajnoczi
2019-10-15 14:37       ` Stefan Hajnoczi
2019-10-17  1:42       ` Jason Wang
2019-10-17  1:42       ` Jason Wang
2019-10-17  1:42         ` Jason Wang
2019-10-17  9:43         ` Stefan Hajnoczi
2019-10-17  9:43         ` Stefan Hajnoczi
2019-10-17  9:43           ` Stefan Hajnoczi

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='084c7e28-8578-51f3-7b31-2231de8c636d__5059.3839537882$1571141594$gmane$org@redhat.com' \
    --to=jasowang@redhat.com \
    --cc=airlied@linux.ie \
    --cc=akrowiak@linux.ibm.com \
    --cc=borntraeger@de.ibm.com \
    --cc=christophe.de.dinechin@gmail.com \
    --cc=cohuck@redhat.com \
    --cc=dri-devel@lists.freedesktop.org \
    --cc=eperezma@redhat.com \
    --cc=farman@linux.ibm.com \
    --cc=freude@linux.ibm.com \
    --cc=gor@linux.ibm.com \
    --cc=haotian.wang@sifive.com \
    --cc=heiko.carstens@de.ibm.com \
    --cc=idos@mellanox.com \
    --cc=intel-gfx@lists.freedesktop.org \
    --cc=intel-gvt-dev@lists.freedesktop.org \
    --cc=jani.nikula@linux.intel.com \
    --cc=joonas.lahtinen@linux.intel.com \
    --cc=kvm@vger.kernel.org \
    --cc=kwankhede@nvidia.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-s390@vger.kernel.org \
    --cc=lulu@redhat.com \
    --cc=maxime.coquelin@redhat.comda \
    --cc=mst@redhat.com \
    --cc=netdev@vger.kernel.org \
    --cc=oberpar@linux.ibm.com \
    --cc=parav@mellanox.com \
    --cc=pasic@linux.ibm.com \
    --cc=rob.miller@broadcom.com \
    --cc=rodrigo.vivi@intel.com \
    --cc=sebott@linux.ibm.com \
    --cc=virtualization@lists.linux-foundation.org \
    --cc=xiao.w.wang@intel.com \
    --cc=zhenyuw@linux.intel.com \
    --cc=zhi.a.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.