Will do, thanks -----Original Message----- From: Ferruh Yigit <[email protected]> Sent: Friday, June 3, 2022 06:53 To: Kevin Liu <[email protected]>; [email protected] Cc: Niklas Soderlund <[email protected]>; Diana Wang <[email protected]>; Nole Zhang <[email protected]>; Chaoyong He <[email protected]> Subject: Re: [PATCH 06/14] net/nfp: support NFP3800 card
On 6/2/2022 2:52 AM, Jin Liu wrote: > Add support for a new type of NIC NFP3800 card, and update some > network card data acquisition interface functions. > > Signed-off-by: Jin Liu<[email protected]> > Signed-off-by: Diana Wang<[email protected]> > Signed-off-by: Peng Zhang<[email protected]> > Signed-off-by: Chaoyong He<[email protected]> > Signed-off-by: Niklas Söderlund<[email protected]> > --- > drivers/net/nfp/nfp_common.h | 33 +++++++++++++++++++++++++-- > drivers/net/nfp/nfp_ethdev.c | 28 ++++++++++++++++++++--- > drivers/net/nfp/nfp_ethdev_vf.c | 9 ++++++-- > drivers/net/nfp/nfpcore/nfp_cpp.h | 2 +- > drivers/net/nfp/nfpcore/nfp_nsp_eth.c | 20 ++++++++++++---- > 5 files changed, 79 insertions(+), 13 deletions(-) > > diff --git a/drivers/net/nfp/nfp_common.h > b/drivers/net/nfp/nfp_common.h index 1dd230bcc6..346fece527 100644 > --- a/drivers/net/nfp/nfp_common.h > +++ b/drivers/net/nfp/nfp_common.h > @@ -16,9 +16,11 @@ > > #define NFP_NET_PMD_VERSION "0.1" > #define PCI_VENDOR_ID_NETRONOME 0x19ee > +#define PCI_DEVICE_ID_NFP3800_PF_NIC 0x3800 > +#define PCI_DEVICE_ID_NFP3800_VF_NIC 0x3803 Can you please document new device support both in the driver doc and release notes?

