e9c5672ac1
The i40evf PMD will be deprecated, iavf will be the only VF driver for Intel 700 serial (i40e) NIC family. To reach this, there will be 2 steps: Step 1: iavf will be the default VF driver, while i40evf still can be selected by devarg: "driver=i40evf". This is covered by this patch, which include: 1) add all 700 serial NIC VF device ID into iavf PMD 2) skip probe if devargs contain "driver=i40evf" in iavf 3) continue probe if devargs contain "driver=i40evf" in i40evf Step 2: i40evf and related devarg are removed, this will happen at DPDK 21.11 Between step 1 and step 2, no new feature will be added into i40evf except bug fix. Signed-off-by: Robin Zhang <robinx.zhang@intel.com> Acked-by: Qi Zhang <qi.z.zhang@intel.com> Acked-by: Ferruh Yigit <ferruh.yigit@intel.com> Acked-by: Beilei Xing <beilei.xing@intel.com>
19 lines
447 B
C
19 lines
447 B
C
/* SPDX-License-Identifier: BSD-3-Clause
|
|
* Copyright(c) 2001-2021 Intel Corporation
|
|
*/
|
|
|
|
#ifndef _IAVF_DEVIDS_H_
|
|
#define _IAVF_DEVIDS_H_
|
|
|
|
/* Vendor ID */
|
|
#define IAVF_INTEL_VENDOR_ID 0x8086
|
|
|
|
/* Device IDs for the VF driver */
|
|
#define IAVF_DEV_ID_VF 0x154C
|
|
#define IAVF_DEV_ID_VF_HV 0x1571
|
|
#define IAVF_DEV_ID_ADAPTIVE_VF 0x1889
|
|
#define IAVF_DEV_ID_X722_VF 0x37CD
|
|
#define IAVF_DEV_ID_X722_A0_VF 0x374D
|
|
|
|
#endif /* _IAVF_DEVIDS_H_ */
|