Intel 520 10GbE dual port SFP+ direct attach adaptor on dell R320.
Patch below against -current.
ix0 at pci2 dev 0 function 0 "Intel 10GbE DA Dual (82599)" rev 0x01:
msi, address a0:36:9f:07:9f:ec
ix1 at pci2 dev 0 function 1 "Intel 10GbE DA Dual (82599)" rev 0x01:
msi, address a0:36:9f:07:9f:ee
Initial testing ~1.36Gbps with pf enabled, and ~1.54Gbps with pf disabled.
Chris Maxwell
IT/Operations | HootSuite | @WrathOfChris
Index: sys/dev/pci/if_ix.c
===================================================================
RCS file: /cvs/src/sys/dev/pci/if_ix.c,v
retrieving revision 1.68
diff -u -r1.68 if_ix.c
--- sys/dev/pci/if_ix.c 8 Aug 2012 14:44:13 -0000 1.68
+++ sys/dev/pci/if_ix.c 9 Aug 2012 23:17:10 -0000
@@ -74,6 +74,7 @@
{ PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_82599_SFP_EM },
{ PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_82599_SFP_FCOE },
{ PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_X540T },
+ { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_82599_DA_DUAL },
#if 0
{ PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_82599VF }
#endif
@@ -1440,6 +1441,7 @@
sc->hw.phy.smart_speed = ixgbe_smart_speed;
break;
case PCI_PRODUCT_INTEL_82599_T3_LOM:
+ case PCI_PRODUCT_INTEL_82599_DA_DUAL:
sc->hw.mac.type = ixgbe_mac_82599EB;
sc->optics = IFM_10G_T;
sc->hw.phy.smart_speed = ixgbe_smart_speed;
Index: sys/dev/pci/pcidevs
===================================================================
RCS file: /cvs/src/sys/dev/pci/pcidevs,v
retrieving revision 1.1657
diff -u -r1.1657 pcidevs
--- sys/dev/pci/pcidevs 4 Aug 2012 16:25:28 -0000 1.1657
+++ sys/dev/pci/pcidevs 9 Aug 2012 23:17:10 -0000
@@ -2640,6 +2640,7 @@
product INTEL X540T 0x1528 X540T
product INTEL 82599_SFP_FCOE 0x1529 SFP+ FCOE (82599)
product INTEL 82599_BPLANE_FCOE 0x152a FCOE (82599)
+product INTEL 82599_DA_DUAL 0x154d 10GbE DA Dual (82599)
product INTEL 80960RP_ATU 0x1960 80960RP ATU
product INTEL 82840_HB 0x1a21 82840 Host
product INTEL 82840_AGP 0x1a23 82840 AGP
Index: sys/dev/pci/pcidevs.h
===================================================================
RCS file: /cvs/src/sys/dev/pci/pcidevs.h,v
retrieving revision 1.1653
diff -u -r1.1653 pcidevs.h
--- sys/dev/pci/pcidevs.h 4 Aug 2012 16:26:39 -0000 1.1653
+++ sys/dev/pci/pcidevs.h 9 Aug 2012 23:17:10 -0000
@@ -2645,6 +2645,7 @@
#define PCI_PRODUCT_INTEL_X540T 0x1528 /* X540T */
#define PCI_PRODUCT_INTEL_82599_SFP_FCOE 0x1529 /* SFP+
FCOE (82599) */
#define PCI_PRODUCT_INTEL_82599_BPLANE_FCOE 0x152a /* FCOE
(82599) */
+#define PCI_PRODUCT_INTEL_82599_DA_DUAL 0x154d /* 10GbE DA
Dual (82599) */
#define PCI_PRODUCT_INTEL_80960RP_ATU 0x1960 /* 80960RP ATU
*/
#define PCI_PRODUCT_INTEL_82840_HB 0x1a21 /* 82840 Host */
#define PCI_PRODUCT_INTEL_82840_AGP 0x1a23 /* 82840 AGP */