mbox series

[V4,0/7] vDPA/ifcvf: enables Intel C5000X-PL virtio-net

Message ID 20210315074501.15868-1-lingshan.zhu@intel.com
Headers show
Series vDPA/ifcvf: enables Intel C5000X-PL virtio-net | expand

Message

Zhu Lingshan March 15, 2021, 7:44 a.m. UTC
This series enabled Intel FGPA SmartNIC C5000X-PL virtio-net for vDPA.

vDPA requires VIRTIO_F_ACCESS_PLATFORM as a must,
this series verify this feature bit when set features.

Changes from V3:
checks features to set in verify_min_features(Jason)
deduce VIRTIO device ID from pdev ids in get_device_id(Jason)

Changes from V2:
verify VIRTIO_F_ACCESS_PLATFORM when set features(Jason)

Changes from V1:
remove version number string(Leon)
add new device ids and remove original device ids
in separate patches(Jason)


Zhu Lingshan (7):
  vDPA/ifcvf: get_vendor_id returns a device specific vendor id
  vDPA/ifcvf: enable Intel C5000X-PL virtio-net for vDPA
  vDPA/ifcvf: rename original IFCVF dev ids to N3000 ids
  vDPA/ifcvf: remove the version number string
  vDPA/ifcvf: fetch device feature bits when probe
  vDPA/ifcvf: verify mandatory feature bits for vDPA
  vDPA/ifcvf: deduce VIRTIO device ID from pdev ids

 drivers/vdpa/ifcvf/ifcvf_base.c | 66 ++++++++++++++++++++++++++++++++-
 drivers/vdpa/ifcvf/ifcvf_base.h | 17 +++++++--
 drivers/vdpa/ifcvf/ifcvf_main.c | 35 +++++++++++++----
 3 files changed, 104 insertions(+), 14 deletions(-)

Comments

Jason Wang March 16, 2021, 6:09 a.m. UTC | #1
在 2021/3/15 下午3:44, Zhu Lingshan 写道:
> This commit enabled Intel FPGA SmartNIC C5000X-PL virtio-net

> for vDPA

>

> Signed-off-by: Zhu Lingshan <lingshan.zhu@intel.com>



Acked-by: Jason Wang <jasowang@redhat.com>



> ---

>   drivers/vdpa/ifcvf/ifcvf_base.h | 5 +++++

>   drivers/vdpa/ifcvf/ifcvf_main.c | 5 +++++

>   2 files changed, 10 insertions(+)

>

> diff --git a/drivers/vdpa/ifcvf/ifcvf_base.h b/drivers/vdpa/ifcvf/ifcvf_base.h

> index 64696d63fe07..75d9a8052039 100644

> --- a/drivers/vdpa/ifcvf/ifcvf_base.h

> +++ b/drivers/vdpa/ifcvf/ifcvf_base.h

> @@ -23,6 +23,11 @@

>   #define IFCVF_SUBSYS_VENDOR_ID	0x8086

>   #define IFCVF_SUBSYS_DEVICE_ID	0x001A

>   

> +#define C5000X_PL_VENDOR_ID		0x1AF4

> +#define C5000X_PL_DEVICE_ID		0x1000

> +#define C5000X_PL_SUBSYS_VENDOR_ID	0x8086

> +#define C5000X_PL_SUBSYS_DEVICE_ID	0x0001

> +

>   #define IFCVF_SUPPORTED_FEATURES \

>   		((1ULL << VIRTIO_NET_F_MAC)			| \

>   		 (1ULL << VIRTIO_F_ANY_LAYOUT)			| \

> diff --git a/drivers/vdpa/ifcvf/ifcvf_main.c b/drivers/vdpa/ifcvf/ifcvf_main.c

> index e501ee07de17..26a2dab7ca66 100644

> --- a/drivers/vdpa/ifcvf/ifcvf_main.c

> +++ b/drivers/vdpa/ifcvf/ifcvf_main.c

> @@ -484,6 +484,11 @@ static struct pci_device_id ifcvf_pci_ids[] = {

>   		IFCVF_DEVICE_ID,

>   		IFCVF_SUBSYS_VENDOR_ID,

>   		IFCVF_SUBSYS_DEVICE_ID) },

> +	{ PCI_DEVICE_SUB(C5000X_PL_VENDOR_ID,

> +			 C5000X_PL_DEVICE_ID,

> +			 C5000X_PL_SUBSYS_VENDOR_ID,

> +			 C5000X_PL_SUBSYS_DEVICE_ID) },

> +

>   	{ 0 },

>   };

>   MODULE_DEVICE_TABLE(pci, ifcvf_pci_ids);