svn commit: r202729 - stable/7/sys/dev/mii

Pyun YongHyeon yongari at FreeBSD.org
Thu Jan 21 00:50:47 UTC 2010


Author: yongari
Date: Thu Jan 21 00:50:46 2010
New Revision: 202729
URL: http://svn.freebsd.org/changeset/base/202729

Log:
  MFC r202294:
    Add check for fiber mode for BCM5714 PHY. This PHY supports both
    copper and fiber interfaces over GMII so an explicit check is
    necessary to know whether it was configured for fiber interface.
    This change make BCM5715S work.
  
    Tested by:	olli
    PR:	kern/122551

Modified:
  stable/7/sys/dev/mii/brgphy.c
Directory Properties:
  stable/7/sys/   (props changed)
  stable/7/sys/cddl/contrib/opensolaris/   (props changed)
  stable/7/sys/contrib/dev/acpica/   (props changed)
  stable/7/sys/contrib/pf/   (props changed)

Modified: stable/7/sys/dev/mii/brgphy.c
==============================================================================
--- stable/7/sys/dev/mii/brgphy.c	Thu Jan 21 00:49:14 2010	(r202728)
+++ stable/7/sys/dev/mii/brgphy.c	Thu Jan 21 00:50:46 2010	(r202729)
@@ -197,6 +197,7 @@ brgphy_attach(device_t dev)
 	case MII_OUI_xxBROADCOM:
 		switch (bsc->mii_model) {
 			case MII_MODEL_xxBROADCOM_BCM5706:
+			case MII_MODEL_xxBROADCOM_BCM5714:
 				/*
 				 * The 5464 PHY used in the 5706 supports both copper
 				 * and fiber interfaces over GMII.  Need to check the


More information about the svn-src-all mailing list