svn commit: r202268 - head/sys/dev/bge

Xin LI delphij at FreeBSD.org
Wed Jan 13 22:39:40 UTC 2010


Author: delphij
Date: Wed Jan 13 22:39:39 2010
New Revision: 202268
URL: http://svn.freebsd.org/changeset/base/202268

Log:
   o Add PCI ID for BCM 5756.
   o Don't enable BGE_FLAG_BER_BUG on both 5722 and 5756, and based
     on their PCI IDs rather than their chip IDs.
  
  Reported by:	several PC-BSD users via kmoore
  Reviewed by:	yongari, imp, jhb, davidch
  Sponsored by:	iXsystems, Inc.
  MFC after:	2 weeks

Modified:
  head/sys/dev/bge/if_bge.c
  head/sys/dev/bge/if_bgereg.h

Modified: head/sys/dev/bge/if_bge.c
==============================================================================
--- head/sys/dev/bge/if_bge.c	Wed Jan 13 22:22:16 2010	(r202267)
+++ head/sys/dev/bge/if_bge.c	Wed Jan 13 22:39:39 2010	(r202268)
@@ -187,6 +187,7 @@ static const struct bge_type {
 	{ BCOM_VENDORID,	BCOM_DEVICEID_BCM5754M },
 	{ BCOM_VENDORID,	BCOM_DEVICEID_BCM5755 },
 	{ BCOM_VENDORID,	BCOM_DEVICEID_BCM5755M },
+	{ BCOM_VENDORID,	BCOM_DEVICEID_BCM5756 },
 	{ BCOM_VENDORID,	BCOM_DEVICEID_BCM5761 },
 	{ BCOM_VENDORID,	BCOM_DEVICEID_BCM5761E },
 	{ BCOM_VENDORID,	BCOM_DEVICEID_BCM5761S },
@@ -2604,7 +2605,8 @@ bge_attach(device_t dev)
 		    sc->bge_asicrev == BGE_ASICREV_BCM5761 ||
 		    sc->bge_asicrev == BGE_ASICREV_BCM5784 ||
 		    sc->bge_asicrev == BGE_ASICREV_BCM5787) {
-			if (sc->bge_chipid != BGE_CHIPID_BCM5722_A0)
+			if (pci_get_device(dev) != BCOM_DEVICEID_BCM5722 &&
+			    pci_get_device(dev) != BCOM_DEVICEID_BCM5756)
 				sc->bge_flags |= BGE_FLAG_JITTER_BUG;
 		} else if (sc->bge_asicrev != BGE_ASICREV_BCM5906)
 			sc->bge_flags |= BGE_FLAG_BER_BUG;

Modified: head/sys/dev/bge/if_bgereg.h
==============================================================================
--- head/sys/dev/bge/if_bgereg.h	Wed Jan 13 22:22:16 2010	(r202267)
+++ head/sys/dev/bge/if_bgereg.h	Wed Jan 13 22:39:39 2010	(r202268)
@@ -2138,6 +2138,7 @@ struct bge_status_block {
 #define	BCOM_DEVICEID_BCM5754M		0x1672
 #define	BCOM_DEVICEID_BCM5755		0x167B
 #define	BCOM_DEVICEID_BCM5755M		0x1673
+#define	BCOM_DEVICEID_BCM5756		0x1674
 #define	BCOM_DEVICEID_BCM5761		0x1681
 #define	BCOM_DEVICEID_BCM5761E		0x1680
 #define	BCOM_DEVICEID_BCM5761S		0x1688


More information about the svn-src-all mailing list