@@ -408,3 +408,45 @@ void ifcvf_notify_queue(struct ifcvf_hw *hw, u16 qid)
{
ifc_iowrite16(qid, hw->vring[qid].notify_addr);
}
+
+static int ifcvf_probed_N3000(struct pci_dev *pdev)
+{
+ int ret = false;
+
+ if (pdev->device == N3000_DEVICE_ID &&
+ pdev->vendor == N3000_VENDOR_ID &&
+ pdev->subsystem_device == N3000_SUBSYS_DEVICE_ID &&
+ pdev->subsystem_vendor == N3000_SUBSYS_VENDOR_ID)
+ ret = true;
+
+ return ret;
+}
+
+static int ifcvf_probed_C5000X_PL(struct pci_dev *pdev)
+{
+ int ret = false;
+
+ if (pdev->device == C5000X_PL_DEVICE_ID &&
+ pdev->vendor == C5000X_PL_VENDOR_ID &&
+ pdev->subsystem_device == C5000X_PL_SUBSYS_DEVICE_ID &&
+ pdev->subsystem_vendor == C5000X_PL_SUBSYS_VENDOR_ID)
+ ret = true;
+
+ return ret;
+}
+
+int ifcvf_probed_virtio_net(struct ifcvf_hw *hw)
+{
+ struct ifcvf_adapter *adapter;
+ struct pci_dev *pdev;
+ int ret = false;
+
+ adapter = vf_to_adapter(hw);
+ pdev = adapter->pdev;
+
+ if (ifcvf_probed_N3000(pdev) ||
+ ifcvf_probed_C5000X_PL(pdev))
+ ret = true;
+
+ return ret;
+}
@@ -127,4 +127,5 @@ int ifcvf_verify_min_features(struct ifcvf_hw *hw, u64 features);
u16 ifcvf_get_vq_state(struct ifcvf_hw *hw, u16 qid);
int ifcvf_set_vq_state(struct ifcvf_hw *hw, u16 qid, u16 num);
struct ifcvf_adapter *vf_to_adapter(struct ifcvf_hw *hw);
+int ifcvf_probed_virtio_net(struct ifcvf_hw *hw);
#endif /* _IFCVF_H_ */
@@ -323,7 +323,13 @@ static u32 ifcvf_vdpa_get_generation(struct vdpa_device *vdpa_dev)
static u32 ifcvf_vdpa_get_device_id(struct vdpa_device *vdpa_dev)
{
- return VIRTIO_ID_NET;
+ struct ifcvf_hw *vf = vdpa_to_vf(vdpa_dev);
+ u32 ret = -EOPNOTSUPP;
+
+ if (ifcvf_probed_virtio_net(vf))
+ ret = VIRTIO_ID_NET;
+
+ return ret;
}
static u32 ifcvf_vdpa_get_vendor_id(struct vdpa_device *vdpa_dev)
This commit checks the device ids from pdev, then deduce VIRTIO device ID from the probed device. Here we checks all four device ids than only subsystem_device_id, help detecting a certain device for furture enabling. Signed-off-by: Zhu Lingshan <lingshan.zhu@intel.com> --- drivers/vdpa/ifcvf/ifcvf_base.c | 42 +++++++++++++++++++++++++++++++++ drivers/vdpa/ifcvf/ifcvf_base.h | 1 + drivers/vdpa/ifcvf/ifcvf_main.c | 8 ++++++- 3 files changed, 50 insertions(+), 1 deletion(-)