Date: Wed, 23 Nov 2011 22:05:44 +0000 (UTC) From: Marius Strobl <marius@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r227913 - head/sys/dev/mii Message-ID: <201111232205.pANM5ioZ065235@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: marius Date: Wed Nov 23 22:05:44 2011 New Revision: 227913 URL: http://svn.freebsd.org/changeset/base/227913 Log: Wrap BCM5785 in #ifdef notyet for now. According to yongari@ there are issues probably needing workarounds in bge(4) when brgphy(4) handles this PHY. Letting ukphy(4) handle it instead results in a working configuration, although likely with performance penalties. Modified: head/sys/dev/mii/brgphy.c Modified: head/sys/dev/mii/brgphy.c ============================================================================== --- head/sys/dev/mii/brgphy.c Wed Nov 23 21:43:51 2011 (r227912) +++ head/sys/dev/mii/brgphy.c Wed Nov 23 22:05:44 2011 (r227913) @@ -139,7 +139,9 @@ static const struct mii_phydesc brgphys[ MII_PHY_DESC(BROADCOM2, BCM5754), MII_PHY_DESC(BROADCOM2, BCM5761), MII_PHY_DESC(BROADCOM2, BCM5784), +#ifdef notyet /* better handled by ukphy(4) until WARs are implemented */ MII_PHY_DESC(BROADCOM2, BCM5785), +#endif MII_PHY_DESC(BROADCOM3, BCM5717C), MII_PHY_DESC(BROADCOM3, BCM5719C), MII_PHY_DESC(BROADCOM3, BCM5720C),
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201111232205.pANM5ioZ065235>