summaryrefslogtreecommitdiffstats
path: root/sys/dev/mii/brgphy.c
diff options
context:
space:
mode:
authormarius <marius@FreeBSD.org>2007-04-30 22:35:33 +0000
committermarius <marius@FreeBSD.org>2007-04-30 22:35:33 +0000
commit7af8abc0c5540217c84e7fef30f265f5ebdee5c6 (patch)
tree593bf6c0f2ac23be5b71eefa4af673f946cecf6a /sys/dev/mii/brgphy.c
parentf18c6c03395fa5c067d494cb5cef42d8855707e0 (diff)
downloadFreeBSD-src-7af8abc0c5540217c84e7fef30f265f5ebdee5c6.zip
FreeBSD-src-7af8abc0c5540217c84e7fef30f265f5ebdee5c6.tar.gz
- Take advantage of mii_phy_add_media() for adding media and setting
sc->mii_anegticks according to whether the respective BGE chip supports Fast Ethernet only or also Gigabit Ethernet. - At least the BGE chips I've tested with wedge when isolating them so document this as the reason for setting MIIF_NOISOLATE and remove the unused (and partially even #ifdef'ed out) isolation related code. Add code that panics if we encounter a non-zero MII instance as generally there's no way a PHY requiring MIIF_NOISOLATE can be handled gracefully in a multi-PHY configuration (it's ok for the internal PHY of single-PHY-only-NIC to not support isolation though). - Additionally set MIIF_NOLOOP as loopback doesn't seem to work either and remove the #ifdef'ed out code for adding respective media. The MIIF_NOLOOP flag currently triggers nothing but hopefully will be respected by mii_phy_setmedia() later on. Reviewed by: jkim, yongari MFC after: 1 month
Diffstat (limited to 'sys/dev/mii/brgphy.c')
-rw-r--r--sys/dev/mii/brgphy.c78
1 files changed, 13 insertions, 65 deletions
diff --git a/sys/dev/mii/brgphy.c b/sys/dev/mii/brgphy.c
index a3e8f9a..9883c48 100644
--- a/sys/dev/mii/brgphy.c
+++ b/sys/dev/mii/brgphy.c
@@ -138,7 +138,7 @@ brgphy_probe(device_t dev)
error = mii_phy_dev_probe(dev, brgphys, BUS_PROBE_DEFAULT);
if (error != BUS_PROBE_DEFAULT)
return (error);
-
+
ma = device_get_ivars(dev);
if (MII_OUI(ma->mii_id1, ma->mii_id2) == MII_OUI_xxBROADCOM &&
MII_MODEL(ma->mii_id2) == MII_MODEL_xxBROADCOM_BCM5706C) {
@@ -164,16 +164,20 @@ brgphy_attach(device_t dev)
struct mii_softc *sc;
struct mii_attach_args *ma;
struct mii_data *mii;
- const char *sep = "";
- struct bge_softc *bge_sc = NULL;
- struct bce_softc *bce_sc = NULL;
- int fast_ether_only = FALSE;
bsc = device_get_softc(dev);
sc = &bsc->mii_sc;
ma = device_get_ivars(dev);
sc->mii_dev = device_get_parent(dev);
mii = device_get_softc(sc->mii_dev);
+
+ /*
+ * At least some variants wedge when isolating, so never allow
+ * non-zero instances! At least some also don't support loopback.
+ */
+ if (mii->mii_instance != 0)
+ panic("%s: ignoring this PHY, non-zero instance", __func__);
+
LIST_INSERT_HEAD(&mii->mii_phys, sc, mii_list);
sc->mii_inst = mii->mii_instance;
@@ -181,59 +185,19 @@ brgphy_attach(device_t dev)
sc->mii_service = brgphy_service;
sc->mii_pdata = mii;
- sc->mii_flags |= MIIF_NOISOLATE;
+ sc->mii_flags |= MIIF_NOISOLATE | MIIF_NOLOOP;
mii->mii_instance++;
-#define ADD(m, c) ifmedia_add(&mii->mii_media, (m), (c), NULL)
-#define PRINT(s) printf("%s%s", sep, s); sep = ", "
-
- ADD(IFM_MAKEWORD(IFM_ETHER, IFM_NONE, 0, sc->mii_inst),
- BMCR_ISO);
-#if 0
- ADD(IFM_MAKEWORD(IFM_ETHER, IFM_100_TX, IFM_LOOP, sc->mii_inst),
- BMCR_LOOP | BMCR_S100);
-#endif
-
bsc->mii_model = MII_MODEL(ma->mii_id2);
bsc->mii_rev = MII_REV(ma->mii_id2);
brgphy_reset(sc);
sc->mii_capabilities = PHY_READ(sc, MII_BMSR) & ma->mii_capmask;
- sc->mii_capabilities &= ~BMSR_ANEG;
+ if (sc->mii_capabilities & BMSR_EXTSTAT)
+ sc->mii_extcapabilities = PHY_READ(sc, MII_EXTSR);
device_printf(dev, " ");
- mii_add_media(sc);
-
- /* Find the driver associated with this PHY. */
- if (strcmp(mii->mii_ifp->if_dname, "bge") == 0) {
- bge_sc = mii->mii_ifp->if_softc;
- } else if (strcmp(mii->mii_ifp->if_dname, "bce") == 0) {
- bce_sc = mii->mii_ifp->if_softc;
- }
-
- /* The 590x chips are 10/100 only. */
- if (strcmp(mii->mii_ifp->if_dname, "bge") == 0 &&
- pci_get_vendor(bge_sc->bge_dev) == BCOM_VENDORID &&
- (pci_get_device(bge_sc->bge_dev) == BCOM_DEVICEID_BCM5901 ||
- pci_get_device(bge_sc->bge_dev) == BCOM_DEVICEID_BCM5901A2))
- fast_ether_only = TRUE;
-
- if (fast_ether_only == FALSE) {
- ADD(IFM_MAKEWORD(IFM_ETHER, IFM_1000_T, 0,
- sc->mii_inst), BRGPHY_BMCR_FDX);
- PRINT(", 1000baseTX");
- ADD(IFM_MAKEWORD(IFM_ETHER, IFM_1000_T,
- IFM_FDX, sc->mii_inst), 0);
- PRINT("1000baseTX-FDX");
- sc->mii_anegticks = MII_ANEGTICKS_GIGE;
- } else
- sc->mii_anegticks = MII_ANEGTICKS;
-
- ADD(IFM_MAKEWORD(IFM_ETHER, IFM_AUTO, 0, sc->mii_inst), 0);
- PRINT("auto");
-
+ mii_phy_add_media(sc);
printf("\n");
-#undef ADD
-#undef PRINT
MIIBUS_MEDIAINIT(sc->mii_dev);
return (0);
@@ -252,16 +216,6 @@ brgphy_service(struct mii_softc *sc, struct mii_data *mii, int cmd)
return (0);
break;
case MII_MEDIACHG:
- /*
- * If the media indicates a different PHY instance,
- * isolate ourselves.
- */
- if (IFM_INST(ife->ifm_media) != sc->mii_inst) {
- PHY_WRITE(sc, MII_BMCR,
- PHY_READ(sc, MII_BMCR) | BMCR_ISO);
- return (0);
- }
-
/* If the interface is not up, don't do anything. */
if ((mii->mii_ifp->if_flags & IFF_UP) == 0)
break;
@@ -283,12 +237,6 @@ brgphy_service(struct mii_softc *sc, struct mii_data *mii, int cmd)
brgphy_setmedia(sc, ife->ifm_media,
mii->mii_ifp->if_flags & IFF_LINK0);
break;
-#ifdef foo
- case IFM_NONE:
- PHY_WRITE(sc, MII_BMCR, BMCR_ISO | BMCR_PDOWN);
- break;
-#endif
- case IFM_100_T4:
default:
return (EINVAL);
}
OpenPOWER on IntegriCloud