From nobody@FreeBSD.org  Sun Feb 12 14:12:52 2012
Return-Path: <nobody@FreeBSD.org>
Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34])
	by hub.freebsd.org (Postfix) with ESMTP id 515B7106564A
	for <freebsd-gnats-submit@FreeBSD.org>; Sun, 12 Feb 2012 14:12:52 +0000 (UTC)
	(envelope-from nobody@FreeBSD.org)
Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22])
	by mx1.freebsd.org (Postfix) with ESMTP id 362288FC13
	for <freebsd-gnats-submit@FreeBSD.org>; Sun, 12 Feb 2012 14:12:52 +0000 (UTC)
Received: from red.freebsd.org (localhost [127.0.0.1])
	by red.freebsd.org (8.14.4/8.14.4) with ESMTP id q1CECpLP048274
	for <freebsd-gnats-submit@FreeBSD.org>; Sun, 12 Feb 2012 14:12:51 GMT
	(envelope-from nobody@red.freebsd.org)
Received: (from nobody@localhost)
	by red.freebsd.org (8.14.4/8.14.4/Submit) id q1CECpor048267;
	Sun, 12 Feb 2012 14:12:51 GMT
	(envelope-from nobody)
Message-Id: <201202121412.q1CECpor048267@red.freebsd.org>
Date: Sun, 12 Feb 2012 14:12:51 GMT
From: Alexander Milanov <a@amilanov.com>
To: freebsd-gnats-submit@FreeBSD.org
Subject: brgphy(4) is not used for BCM57780
X-Send-Pr-Version: www-3.1
X-GNATS-Notify:

>Number:         165032
>Category:       kern
>Synopsis:       [mii] [patch] brgphy(4) is not used for BCM57780
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    freebsd-net
>State:          closed
>Quarter:        
>Keywords:       
>Date-Required:  
>Class:          sw-bug
>Submitter-Id:   current-users
>Arrival-Date:   Sun Feb 12 14:20:06 UTC 2012
>Closed-Date:    Sat Feb 25 01:23:09 UTC 2012
>Last-Modified:  Sat Feb 25 01:23:09 UTC 2012
>Originator:     Alexander Milanov
>Release:        9.0-RELEASE
>Organization:
>Environment:
FreeBSD  9.0-RELEASE FreeBSD 9.0-RELEASE #0: Tue Jan  3 07:15:25 UTC 2012     root@obrian.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC  i386
>Description:
ukphy(4) is used instead of brgphy(4) for Broadcom BCM57780. See output of dmesg:

bge0: <Broadcom BCM57780 A1, ASIC rev. 0x57780001> mem 0xfebf0000-0xfebfffff irq 17 at device 0.0 on pci4
bge0: attempting to allocate 1 MSI vectors (1 supported)
msi: routing MSI IRQ 257 to local APIC 0 vector 54
bge0: using IRQ 257 for MSI
bge0: CHIP ID 0x57780001; ASIC REV 0x57780; CHIP REV 0x577800; PCI-E
bge0: Disabling fastboot
bge0: Disabling fastboot
miibus0: <MII bus> on bge0
ukphy0: <Generic IEEE 802.3u media interface> PHY 1 on miibus0
ukphy0: OUI 0x001be9, model 0x0019, rev. 1
ukphy0:  none, 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, 1000baseT, 1000baseT-master, 1000baseT-FDX, 1000baseT-FDX-master, auto, auto-flow
bge0: bpf attached
>How-To-Repeat:

>Fix:
Add OUIs for BCM57780 to brgphy(4). The following patch also adds a check for BGE_FLAG_JUMBO, as suggested by Pyun YongHyeon[1] and as seen in OpenBSD[2].

[1] http://lists.freebsd.org/pipermail/freebsd-stable/2010-March/055793.html
[2] http://www.openbsd.org/cgi-bin/cvsweb/src/sys/dev/mii/brgphy.c?rev=1.94

Patch attached with submission follows:

Index: sys/dev/mii/miidevs
===================================================================
--- sys/dev/mii/miidevs	(revision 231557)
+++ sys/dev/mii/miidevs	(working copy)
@@ -84,6 +84,8 @@
 oui xxATHEROS			0x00c82e	Atheros Communications
 oui xxBROADCOM			0x000818	Broadcom Corporation
 oui xxBROADCOM_ALT1		0x0050ef	Broadcom Corporation
+oui xxBROADCOM_ALT2		0x00d897	Broadcom Corporation
+oui xxBROADCOM_ALT3		0x001be9	Broadcom Corporation
 oui xxDAVICOM			0x000676	Davicom Semiconductor
 oui yyINTEL			0x005500	Intel Corporation
 oui xxJATO			0x0007c1	Jato Technologies
@@ -184,6 +186,8 @@
 model BROADCOM3 BCM57765	0x0024 BCM57765 1000BASE-T media interface
 model BROADCOM3 BCM5720C	0x0036 BCM5720C 1000BASE-T media interface
 model xxBROADCOM_ALT1 BCM5906	0x0004 BCM5906 10/100baseTX media interface
+model xxBROADCOM_ALT2 BCM57780	0x0019 BCM57780 10/100/1000baseT PHY
+model xxBROADCOM_ALT3 BCM57780	0x0019 BCM57780 10/100/1000baseT PHY
 
 /* Cicada Semiconductor PHYs (now owned by Vitesse?) */
 model xxCICADA CS8201		0x0001 Cicada CS8201 10/100/1000TX PHY
Index: sys/dev/mii/brgphy.c
===================================================================
--- sys/dev/mii/brgphy.c	(revision 231557)
+++ sys/dev/mii/brgphy.c	(working copy)
@@ -147,6 +147,8 @@
 	MII_PHY_DESC(BROADCOM3, BCM5720C),
 	MII_PHY_DESC(BROADCOM3, BCM57765),
 	MII_PHY_DESC(xxBROADCOM_ALT1, BCM5906),
+	MII_PHY_DESC(xxBROADCOM_ALT2, BCM57780),
+	MII_PHY_DESC(xxBROADCOM_ALT3, BCM57780),
 	MII_PHY_END
 };
 
@@ -942,7 +944,8 @@
 		if (bge_sc->bge_phy_flags & BGE_PHY_JITTER_BUG)
 			brgphy_fixup_jitter_bug(sc);
 
-		brgphy_jumbo_settings(sc, ifp->if_mtu);
+		if (bge_sc->bge_phy_flags & BGE_FLAG_JUMBO)
+			brgphy_jumbo_settings(sc, ifp->if_mtu);
 
 		if ((bge_sc->bge_phy_flags & BGE_PHY_NO_WIRESPEED) == 0)
 			brgphy_ethernet_wirespeed(sc);


>Release-Note:
>Audit-Trail:
Responsible-Changed-From-To: freebsd-bugs->freebsd-net 
Responsible-Changed-By: linimon 
Responsible-Changed-When: Fri Feb 17 04:38:52 UTC 2012 
Responsible-Changed-Why:  

Over to maintainer(s). 

http://www.freebsd.org/cgi/query-pr.cgi?pr=165032 

From: dfilter@FreeBSD.ORG (dfilter service)
To: bug-followup@FreeBSD.org
Cc:  
Subject: Re: kern/165032: commit references a PR
Date: Sun, 19 Feb 2012 12:09:30 +0000 (UTC)

 Author: marius
 Date: Sun Feb 19 12:09:17 2012
 New Revision: 231913
 URL: http://svn.freebsd.org/changeset/base/231913
 
 Log:
   - Probe BCM57780.
   - In case the parent is bge(4), don't set the Jumbo frame settings unless
     the MAC actually is Jumbo capable as otherwise the PHY might not have the
     corresponding registers implemented. This is also in line with what the
     Linux tg3 driver does.
   
   PR:		165032
   Submitted by:	Alexander Milanov
   Obtained from:	OpenBSD
   MFC after:	3 days
 
 Modified:
   head/sys/dev/mii/brgphy.c
   head/sys/dev/mii/miidevs
 
 Modified: head/sys/dev/mii/brgphy.c
 ==============================================================================
 --- head/sys/dev/mii/brgphy.c	Sun Feb 19 10:38:55 2012	(r231912)
 +++ head/sys/dev/mii/brgphy.c	Sun Feb 19 12:09:17 2012	(r231913)
 @@ -146,6 +146,7 @@ static const struct mii_phydesc brgphys[
  	MII_PHY_DESC(BROADCOM3, BCM5719C),
  	MII_PHY_DESC(BROADCOM3, BCM5720C),
  	MII_PHY_DESC(BROADCOM3, BCM57765),
 +	MII_PHY_DESC(BROADCOM3, BCM57780),
  	MII_PHY_DESC(xxBROADCOM_ALT1, BCM5906),
  	MII_PHY_END
  };
 @@ -225,7 +226,8 @@ brgphy_attach(device_t dev)
  				sc->mii_flags |= MIIF_HAVEFIBER;
  			}
  			break;
 -		} break;
 +		}
 +		break;
  	case MII_OUI_BROADCOM2:
  		switch (sc->mii_mpd_model) {
  		case MII_MODEL_BROADCOM2_BCM5708S:
 @@ -942,7 +944,8 @@ brgphy_reset(struct mii_softc *sc)
  		if (bge_sc->bge_phy_flags & BGE_PHY_JITTER_BUG)
  			brgphy_fixup_jitter_bug(sc);
  
 -		brgphy_jumbo_settings(sc, ifp->if_mtu);
 +		if (bge_sc->bge_flags & BGE_FLAG_JUMBO)
 +			brgphy_jumbo_settings(sc, ifp->if_mtu);
  
  		if ((bge_sc->bge_phy_flags & BGE_PHY_NO_WIRESPEED) == 0)
  			brgphy_ethernet_wirespeed(sc);
 
 Modified: head/sys/dev/mii/miidevs
 ==============================================================================
 --- head/sys/dev/mii/miidevs	Sun Feb 19 10:38:55 2012	(r231912)
 +++ head/sys/dev/mii/miidevs	Sun Feb 19 12:09:17 2012	(r231913)
 @@ -179,6 +179,7 @@ model BROADCOM2 BCM5784		0x003a BCM5784 
  model BROADCOM2 BCM5709C	0x003c BCM5709 10/100/1000baseT PHY
  model BROADCOM2 BCM5761		0x003d BCM5761 10/100/1000baseT PHY
  model BROADCOM2 BCM5709S	0x003f BCM5709S 1000/2500baseSX PHY
 +model BROADCOM3 BCM57780	0x0019 BCM57780 1000BASE-T media interface
  model BROADCOM3 BCM5717C	0x0020 BCM5717C 1000BASE-T media interface
  model BROADCOM3 BCM5719C	0x0022 BCM5719C 1000BASE-T media interface
  model BROADCOM3 BCM57765	0x0024 BCM57765 1000BASE-T media interface
 _______________________________________________
 svn-src-all@freebsd.org mailing list
 http://lists.freebsd.org/mailman/listinfo/svn-src-all
 To unsubscribe, send any mail to "svn-src-all-unsubscribe@freebsd.org"
 

From: dfilter@FreeBSD.ORG (dfilter service)
To: bug-followup@FreeBSD.org
Cc:  
Subject: Re: kern/165032: commit references a PR
Date: Sat, 25 Feb 2012 00:35:33 +0000 (UTC)

 Author: marius
 Date: Sat Feb 25 00:35:19 2012
 New Revision: 232134
 URL: http://svn.freebsd.org/changeset/base/232134
 
 Log:
   MFC: r231913
   
   - Probe BCM57780.
   - In case the parent is bge(4), don't set the Jumbo frame settings unless
     the MAC actually is Jumbo capable as otherwise the PHY might not have the
     corresponding registers implemented. This is also in line with what the
     Linux tg3 driver does.
   
   PR:		165032
   Submitted by:	Alexander Milanov
   Obtained from:	OpenBSD
 
 Modified:
   stable/9/sys/dev/mii/brgphy.c
   stable/9/sys/dev/mii/miidevs
 Directory Properties:
   stable/9/sys/   (props changed)
   stable/9/sys/amd64/include/xen/   (props changed)
   stable/9/sys/boot/   (props changed)
   stable/9/sys/boot/i386/efi/   (props changed)
   stable/9/sys/boot/ia64/efi/   (props changed)
   stable/9/sys/boot/ia64/ski/   (props changed)
   stable/9/sys/boot/powerpc/boot1.chrp/   (props changed)
   stable/9/sys/boot/powerpc/ofw/   (props changed)
   stable/9/sys/cddl/contrib/opensolaris/   (props changed)
   stable/9/sys/conf/   (props changed)
   stable/9/sys/contrib/dev/acpica/   (props changed)
   stable/9/sys/contrib/octeon-sdk/   (props changed)
   stable/9/sys/contrib/pf/   (props changed)
   stable/9/sys/contrib/x86emu/   (props changed)
   stable/9/sys/i386/conf/XENHVM   (props changed)
 
 Modified: stable/9/sys/dev/mii/brgphy.c
 ==============================================================================
 --- stable/9/sys/dev/mii/brgphy.c	Sat Feb 25 00:16:00 2012	(r232133)
 +++ stable/9/sys/dev/mii/brgphy.c	Sat Feb 25 00:35:19 2012	(r232134)
 @@ -146,6 +146,7 @@ static const struct mii_phydesc brgphys[
  	MII_PHY_DESC(BROADCOM3, BCM5719C),
  	MII_PHY_DESC(BROADCOM3, BCM5720C),
  	MII_PHY_DESC(BROADCOM3, BCM57765),
 +	MII_PHY_DESC(BROADCOM3, BCM57780),
  	MII_PHY_DESC(xxBROADCOM_ALT1, BCM5906),
  	MII_PHY_END
  };
 @@ -225,7 +226,8 @@ brgphy_attach(device_t dev)
  				sc->mii_flags |= MIIF_HAVEFIBER;
  			}
  			break;
 -		} break;
 +		}
 +		break;
  	case MII_OUI_BROADCOM2:
  		switch (sc->mii_mpd_model) {
  		case MII_MODEL_BROADCOM2_BCM5708S:
 @@ -942,7 +944,8 @@ brgphy_reset(struct mii_softc *sc)
  		if (bge_sc->bge_phy_flags & BGE_PHY_JITTER_BUG)
  			brgphy_fixup_jitter_bug(sc);
  
 -		brgphy_jumbo_settings(sc, ifp->if_mtu);
 +		if (bge_sc->bge_flags & BGE_FLAG_JUMBO)
 +			brgphy_jumbo_settings(sc, ifp->if_mtu);
  
  		if ((bge_sc->bge_phy_flags & BGE_PHY_NO_WIRESPEED) == 0)
  			brgphy_ethernet_wirespeed(sc);
 
 Modified: stable/9/sys/dev/mii/miidevs
 ==============================================================================
 --- stable/9/sys/dev/mii/miidevs	Sat Feb 25 00:16:00 2012	(r232133)
 +++ stable/9/sys/dev/mii/miidevs	Sat Feb 25 00:35:19 2012	(r232134)
 @@ -179,6 +179,7 @@ model BROADCOM2 BCM5784		0x003a BCM5784 
  model BROADCOM2 BCM5709C	0x003c BCM5709 10/100/1000baseT PHY
  model BROADCOM2 BCM5761		0x003d BCM5761 10/100/1000baseT PHY
  model BROADCOM2 BCM5709S	0x003f BCM5709S 1000/2500baseSX PHY
 +model BROADCOM3 BCM57780	0x0019 BCM57780 1000BASE-T media interface
  model BROADCOM3 BCM5717C	0x0020 BCM5717C 1000BASE-T media interface
  model BROADCOM3 BCM5719C	0x0022 BCM5719C 1000BASE-T media interface
  model BROADCOM3 BCM57765	0x0024 BCM57765 1000BASE-T media interface
 _______________________________________________
 svn-src-all@freebsd.org mailing list
 http://lists.freebsd.org/mailman/listinfo/svn-src-all
 To unsubscribe, send any mail to "svn-src-all-unsubscribe@freebsd.org"
 

From: dfilter@FreeBSD.ORG (dfilter service)
To: bug-followup@FreeBSD.org
Cc:  
Subject: Re: kern/165032: commit references a PR
Date: Sat, 25 Feb 2012 00:35:54 +0000 (UTC)

 Author: marius
 Date: Sat Feb 25 00:35:28 2012
 New Revision: 232135
 URL: http://svn.freebsd.org/changeset/base/232135
 
 Log:
   MFC: r231913
   
   - Probe BCM57780.
   - In case the parent is bge(4), don't set the Jumbo frame settings unless
     the MAC actually is Jumbo capable as otherwise the PHY might not have the
     corresponding registers implemented. This is also in line with what the
     Linux tg3 driver does.
   
   PR:		165032
   Submitted by:	Alexander Milanov
   Approved by:	re (kib)
   Obtained from:	OpenBSD
 
 Modified:
   stable/8/sys/dev/mii/brgphy.c
   stable/8/sys/dev/mii/miidevs
 Directory Properties:
   stable/8/sys/   (props changed)
   stable/8/sys/amd64/include/xen/   (props changed)
   stable/8/sys/boot/   (props changed)
   stable/8/sys/cddl/contrib/opensolaris/   (props changed)
   stable/8/sys/contrib/dev/acpica/   (props changed)
   stable/8/sys/contrib/pf/   (props changed)
   stable/8/sys/dev/e1000/   (props changed)
 
 Modified: stable/8/sys/dev/mii/brgphy.c
 ==============================================================================
 --- stable/8/sys/dev/mii/brgphy.c	Sat Feb 25 00:35:19 2012	(r232134)
 +++ stable/8/sys/dev/mii/brgphy.c	Sat Feb 25 00:35:28 2012	(r232135)
 @@ -145,6 +145,7 @@ static const struct mii_phydesc brgphys[
  	MII_PHY_DESC(xxBROADCOM_ALT2, BCM5719C),
  	MII_PHY_DESC(xxBROADCOM_ALT2, BCM5720C),
  	MII_PHY_DESC(xxBROADCOM_ALT2, BCM57765),
 +	MII_PHY_DESC(xxBROADCOM_ALT2, BCM57780),
  	MII_PHY_DESC(BROADCOM2, BCM5906),
  	MII_PHY_END
  };
 @@ -242,7 +243,8 @@ brgphy_attach(device_t dev)
  				sc->mii_flags |= MIIF_HAVEFIBER;
  			}
  			break;
 -		} break;
 +		}
 +		break;
  	case MII_OUI_xxBROADCOM_ALT1:
  		switch (bsc->mii_model) {
  		case MII_MODEL_xxBROADCOM_ALT1_BCM5708S:
 @@ -964,7 +966,8 @@ brgphy_reset(struct mii_softc *sc)
  		if (bge_sc->bge_phy_flags & BGE_PHY_JITTER_BUG)
  			brgphy_fixup_jitter_bug(sc);
  
 -		brgphy_jumbo_settings(sc, ifp->if_mtu);
 +		if (bge_sc->bge_flags & BGE_FLAG_JUMBO)
 +			brgphy_jumbo_settings(sc, ifp->if_mtu);
  
  		if ((bge_sc->bge_phy_flags & BGE_PHY_NO_WIRESPEED) == 0)
  			brgphy_ethernet_wirespeed(sc);
 
 Modified: stable/8/sys/dev/mii/miidevs
 ==============================================================================
 --- stable/8/sys/dev/mii/miidevs	Sat Feb 25 00:35:19 2012	(r232134)
 +++ stable/8/sys/dev/mii/miidevs	Sat Feb 25 00:35:28 2012	(r232135)
 @@ -157,6 +157,7 @@ model xxBROADCOM_ALT1 BCM5784	0x003a BCM
  model xxBROADCOM_ALT1 BCM5709C	0x003c BCM5709C 10/100/1000baseTX PHY
  model xxBROADCOM_ALT1 BCM5761	0x003d BCM5761 10/100/1000baseTX PHY
  model xxBROADCOM_ALT1 BCM5709S	0x003f BCM5709S 1000/2500baseSX PHY
 +model xxBROADCOM_ALT2 BCM57780	0x0019 BCM57780 1000BASE-T media interface
  model xxBROADCOM_ALT2 BCM5717C	0x0020 BCM5717C 10/100/1000baseTX PHY
  model xxBROADCOM_ALT2 BCM5719C	0x0022 BCM5719C 10/100/1000baseTX PHY
  model xxBROADCOM_ALT2 BCM57765	0x0024 BCM57765 10/100/1000baseTX PHY
 _______________________________________________
 svn-src-all@freebsd.org mailing list
 http://lists.freebsd.org/mailman/listinfo/svn-src-all
 To unsubscribe, send any mail to "svn-src-all-unsubscribe@freebsd.org"
 

From: dfilter@FreeBSD.ORG (dfilter service)
To: bug-followup@FreeBSD.org
Cc:  
Subject: Re: kern/165032: commit references a PR
Date: Sat, 25 Feb 2012 00:35:59 +0000 (UTC)

 Author: marius
 Date: Sat Feb 25 00:35:32 2012
 New Revision: 232136
 URL: http://svn.freebsd.org/changeset/base/232136
 
 Log:
   MFC: r231913
   
   - Probe BCM57780.
   - In case the parent is bge(4), don't set the Jumbo frame settings unless
     the MAC actually is Jumbo capable as otherwise the PHY might not have the
     corresponding registers implemented. This is also in line with what the
     Linux tg3 driver does.
   
   PR:		165032
   Submitted by:	Alexander Milanov
   Obtained from:	OpenBSD
 
 Modified:
   stable/7/sys/dev/mii/brgphy.c
   stable/7/sys/dev/mii/miidevs
 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	Sat Feb 25 00:35:28 2012	(r232135)
 +++ stable/7/sys/dev/mii/brgphy.c	Sat Feb 25 00:35:32 2012	(r232136)
 @@ -145,6 +145,7 @@ static const struct mii_phydesc brgphys[
  	MII_PHY_DESC(xxBROADCOM_ALT2, BCM5719C),
  	MII_PHY_DESC(xxBROADCOM_ALT2, BCM5720C),
  	MII_PHY_DESC(xxBROADCOM_ALT2, BCM57765),
 +	MII_PHY_DESC(xxBROADCOM_ALT2, BCM57780),
  	MII_PHY_DESC(BROADCOM2, BCM5906),
  	MII_PHY_END
  };
 @@ -242,7 +243,8 @@ brgphy_attach(device_t dev)
  				sc->mii_flags |= MIIF_HAVEFIBER;
  			}
  			break;
 -		} break;
 +		}
 +		break;
  	case MII_OUI_xxBROADCOM_ALT1:
  		switch (bsc->mii_model) {
  		case MII_MODEL_xxBROADCOM_ALT1_BCM5708S:
 @@ -964,7 +966,8 @@ brgphy_reset(struct mii_softc *sc)
  		if (bge_sc->bge_phy_flags & BGE_PHY_JITTER_BUG)
  			brgphy_fixup_jitter_bug(sc);
  
 -		brgphy_jumbo_settings(sc, ifp->if_mtu);
 +		if (bge_sc->bge_flags & BGE_FLAG_JUMBO)
 +			brgphy_jumbo_settings(sc, ifp->if_mtu);
  
  		if ((bge_sc->bge_phy_flags & BGE_PHY_NO_WIRESPEED) == 0)
  			brgphy_ethernet_wirespeed(sc);
 
 Modified: stable/7/sys/dev/mii/miidevs
 ==============================================================================
 --- stable/7/sys/dev/mii/miidevs	Sat Feb 25 00:35:28 2012	(r232135)
 +++ stable/7/sys/dev/mii/miidevs	Sat Feb 25 00:35:32 2012	(r232136)
 @@ -152,6 +152,7 @@ model xxBROADCOM_ALT1 BCM5784	0x003a BCM
  model xxBROADCOM_ALT1 BCM5709C	0x003c BCM5709C 10/100/1000baseTX PHY
  model xxBROADCOM_ALT1 BCM5761	0x003d BCM5761 10/100/1000baseTX PHY
  model xxBROADCOM_ALT1 BCM5709S	0x003f BCM5709S 1000/2500baseSX PHY
 +model xxBROADCOM_ALT2 BCM57780	0x0019 BCM57780 1000BASE-T media interface
  model xxBROADCOM_ALT2 BCM5717C	0x0020 BCM5717C 10/100/1000baseTX PHY
  model xxBROADCOM_ALT2 BCM5719C	0x0022 BCM5719C 10/100/1000baseTX PHY
  model xxBROADCOM_ALT2 BCM57765	0x0024 BCM57765 10/100/1000baseTX PHY
 _______________________________________________
 svn-src-all@freebsd.org mailing list
 http://lists.freebsd.org/mailman/listinfo/svn-src-all
 To unsubscribe, send any mail to "svn-src-all-unsubscribe@freebsd.org"
 
State-Changed-From-To: open->closed 
State-Changed-By: marius 
State-Changed-When: Sat Feb 25 01:22:51 UTC 2012 
State-Changed-Why:  
close 

http://www.freebsd.org/cgi/query-pr.cgi?pr=165032 
>Unformatted:
