net/bnxt: add new device IDs
More PCI Device IDs for Cumulus, Cumulus+ and Whitney, Whitney+ SKUs. The NPAR model supported by firmware has been altered. It now allocates a unique Device ID for each NPAR partition for each device. In addition, ASIC's that are capable of supporting dual media have a unique DID depending whether they are configured in copper or fiber mode. This patch adds the necessary DIDs. Signed-off-by: Ajit Khaparde <ajit.khaparde@broadcom.com> Reviewed-by: David Christensen <david.christensen@broadcom.com>
This commit is contained in:
parent
5cd0e2889c
commit
9dcf8c7d6e
@ -62,13 +62,34 @@ static const char bnxt_version[] =
|
||||
#define BROADCOM_DEV_ID_57302 0x16c9
|
||||
#define BROADCOM_DEV_ID_57304_PF 0x16ca
|
||||
#define BROADCOM_DEV_ID_57304_VF 0x16cb
|
||||
#define BROADCOM_DEV_ID_57417_MF 0x16cc
|
||||
#define BROADCOM_DEV_ID_NS2 0x16cd
|
||||
#define BROADCOM_DEV_ID_57311 0x16ce
|
||||
#define BROADCOM_DEV_ID_57312 0x16cf
|
||||
#define BROADCOM_DEV_ID_57402 0x16d0
|
||||
#define BROADCOM_DEV_ID_57404 0x16d1
|
||||
#define BROADCOM_DEV_ID_57406_PF 0x16d2
|
||||
#define BROADCOM_DEV_ID_57406_VF 0x16d3
|
||||
#define BROADCOM_DEV_ID_57406_MF 0x16d4
|
||||
#define BROADCOM_DEV_ID_57402_MF 0x16d4
|
||||
#define BROADCOM_DEV_ID_57407_RJ45 0x16d5
|
||||
#define BROADCOM_DEV_ID_57412 0x16d6
|
||||
#define BROADCOM_DEV_ID_57414 0x16d7
|
||||
#define BROADCOM_DEV_ID_57416_RJ45 0x16d8
|
||||
#define BROADCOM_DEV_ID_57417_RJ45 0x16d9
|
||||
#define BROADCOM_DEV_ID_5741X_VF 0x16dc
|
||||
#define BROADCOM_DEV_ID_57412_MF 0x16de
|
||||
#define BROADCOM_DEV_ID_57314 0x16df
|
||||
#define BROADCOM_DEV_ID_57317_RJ45 0x16e0
|
||||
#define BROADCOM_DEV_ID_5731X_VF 0x16e1
|
||||
#define BROADCOM_DEV_ID_57417_SFP 0x16e2
|
||||
#define BROADCOM_DEV_ID_57416_SFP 0x16e3
|
||||
#define BROADCOM_DEV_ID_57317_SFP 0x16e4
|
||||
#define BROADCOM_DEV_ID_57404_MF 0x16e7
|
||||
#define BROADCOM_DEV_ID_57406_MF 0x16e8
|
||||
#define BROADCOM_DEV_ID_57407_SFP 0x16e9
|
||||
#define BROADCOM_DEV_ID_57407_MF 0x16ea
|
||||
#define BROADCOM_DEV_ID_57414_MF 0x16ec
|
||||
#define BROADCOM_DEV_ID_57416_MF 0x16ee
|
||||
|
||||
static struct rte_pci_id bnxt_pci_id_map[] = {
|
||||
{ RTE_PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, BROADCOM_DEV_ID_57301) },
|
||||
@ -80,8 +101,29 @@ static struct rte_pci_id bnxt_pci_id_map[] = {
|
||||
{ RTE_PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, BROADCOM_DEV_ID_57404) },
|
||||
{ RTE_PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, BROADCOM_DEV_ID_57406_PF) },
|
||||
{ RTE_PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, BROADCOM_DEV_ID_57406_VF) },
|
||||
{ RTE_PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, BROADCOM_DEV_ID_57406_MF) },
|
||||
{ RTE_PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, BROADCOM_DEV_ID_57402_MF) },
|
||||
{ RTE_PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, BROADCOM_DEV_ID_57314) },
|
||||
{ RTE_PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, BROADCOM_DEV_ID_57407_RJ45) },
|
||||
{ RTE_PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, BROADCOM_DEV_ID_57404_MF) },
|
||||
{ RTE_PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, BROADCOM_DEV_ID_57406_MF) },
|
||||
{ RTE_PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, BROADCOM_DEV_ID_57407_SFP) },
|
||||
{ RTE_PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, BROADCOM_DEV_ID_57407_MF) },
|
||||
{ RTE_PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, BROADCOM_DEV_ID_57417_MF) },
|
||||
{ RTE_PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, BROADCOM_DEV_ID_57311) },
|
||||
{ RTE_PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, BROADCOM_DEV_ID_57312) },
|
||||
{ RTE_PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, BROADCOM_DEV_ID_57412) },
|
||||
{ RTE_PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, BROADCOM_DEV_ID_57414) },
|
||||
{ RTE_PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, BROADCOM_DEV_ID_57416_RJ45) },
|
||||
{ RTE_PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, BROADCOM_DEV_ID_57417_RJ45) },
|
||||
{ RTE_PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, BROADCOM_DEV_ID_5741X_VF) },
|
||||
{ RTE_PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, BROADCOM_DEV_ID_57412_MF) },
|
||||
{ RTE_PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, BROADCOM_DEV_ID_57317_RJ45) },
|
||||
{ RTE_PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, BROADCOM_DEV_ID_5731X_VF) },
|
||||
{ RTE_PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, BROADCOM_DEV_ID_57417_SFP) },
|
||||
{ RTE_PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, BROADCOM_DEV_ID_57416_SFP) },
|
||||
{ RTE_PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, BROADCOM_DEV_ID_57317_SFP) },
|
||||
{ RTE_PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, BROADCOM_DEV_ID_57414_MF) },
|
||||
{ RTE_PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, BROADCOM_DEV_ID_57416_MF) },
|
||||
{ .vendor_id = 0, /* sentinel */ },
|
||||
};
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user