be2net: Add support for Skyhawk cards
Signed-off-by: Ajit Khaparde <ajit.khaparde@emulex.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
committed by
David S. Miller
parent
869aa41044
commit
ecedb6ae90
@ -40,6 +40,7 @@
|
|||||||
#define OC_NAME "Emulex OneConnect 10Gbps NIC"
|
#define OC_NAME "Emulex OneConnect 10Gbps NIC"
|
||||||
#define OC_NAME_BE OC_NAME "(be3)"
|
#define OC_NAME_BE OC_NAME "(be3)"
|
||||||
#define OC_NAME_LANCER OC_NAME "(Lancer)"
|
#define OC_NAME_LANCER OC_NAME "(Lancer)"
|
||||||
|
#define OC_NAME_SH OC_NAME "(Skyhawk)"
|
||||||
#define DRV_DESC "ServerEngines BladeEngine 10Gbps NIC Driver"
|
#define DRV_DESC "ServerEngines BladeEngine 10Gbps NIC Driver"
|
||||||
|
|
||||||
#define BE_VENDOR_ID 0x19a2
|
#define BE_VENDOR_ID 0x19a2
|
||||||
@ -50,6 +51,7 @@
|
|||||||
#define OC_DEVICE_ID2 0x710 /* Device Id for BE3 cards */
|
#define OC_DEVICE_ID2 0x710 /* Device Id for BE3 cards */
|
||||||
#define OC_DEVICE_ID3 0xe220 /* Device id for Lancer cards */
|
#define OC_DEVICE_ID3 0xe220 /* Device id for Lancer cards */
|
||||||
#define OC_DEVICE_ID4 0xe228 /* Device id for VF in Lancer */
|
#define OC_DEVICE_ID4 0xe228 /* Device id for VF in Lancer */
|
||||||
|
#define OC_DEVICE_ID5 0x720 /* Device Id for Skyhawk cards */
|
||||||
|
|
||||||
static inline char *nic_name(struct pci_dev *pdev)
|
static inline char *nic_name(struct pci_dev *pdev)
|
||||||
{
|
{
|
||||||
@ -63,6 +65,8 @@ static inline char *nic_name(struct pci_dev *pdev)
|
|||||||
return OC_NAME_LANCER;
|
return OC_NAME_LANCER;
|
||||||
case BE_DEVICE_ID2:
|
case BE_DEVICE_ID2:
|
||||||
return BE3_NAME;
|
return BE3_NAME;
|
||||||
|
case OC_DEVICE_ID5:
|
||||||
|
return OC_NAME_SH;
|
||||||
default:
|
default:
|
||||||
return BE_NAME;
|
return BE_NAME;
|
||||||
}
|
}
|
||||||
|
@ -42,6 +42,7 @@ static DEFINE_PCI_DEVICE_TABLE(be_dev_ids) = {
|
|||||||
{ PCI_DEVICE(BE_VENDOR_ID, OC_DEVICE_ID2) },
|
{ PCI_DEVICE(BE_VENDOR_ID, OC_DEVICE_ID2) },
|
||||||
{ PCI_DEVICE(EMULEX_VENDOR_ID, OC_DEVICE_ID3)},
|
{ PCI_DEVICE(EMULEX_VENDOR_ID, OC_DEVICE_ID3)},
|
||||||
{ PCI_DEVICE(EMULEX_VENDOR_ID, OC_DEVICE_ID4)},
|
{ PCI_DEVICE(EMULEX_VENDOR_ID, OC_DEVICE_ID4)},
|
||||||
|
{ PCI_DEVICE(EMULEX_VENDOR_ID, OC_DEVICE_ID5)},
|
||||||
{ 0 }
|
{ 0 }
|
||||||
};
|
};
|
||||||
MODULE_DEVICE_TABLE(pci, be_dev_ids);
|
MODULE_DEVICE_TABLE(pci, be_dev_ids);
|
||||||
@ -3312,6 +3313,7 @@ static int be_dev_family_check(struct be_adapter *adapter)
|
|||||||
break;
|
break;
|
||||||
case BE_DEVICE_ID2:
|
case BE_DEVICE_ID2:
|
||||||
case OC_DEVICE_ID2:
|
case OC_DEVICE_ID2:
|
||||||
|
case OC_DEVICE_ID5:
|
||||||
adapter->generation = BE_GEN3;
|
adapter->generation = BE_GEN3;
|
||||||
break;
|
break;
|
||||||
case OC_DEVICE_ID3:
|
case OC_DEVICE_ID3:
|
||||||
|
Reference in New Issue
Block a user