Home | History | Annotate | Line # | Download | only in mii
mii_physubr.c revision 1.81.2.2
      1  1.81.2.2  pgoyette /*	$NetBSD: mii_physubr.c,v 1.81.2.2 2019/01/26 22:00:06 pgoyette Exp $	*/
      2       1.1   thorpej 
      3       1.1   thorpej /*-
      4      1.23   thorpej  * Copyright (c) 1998, 1999, 2000, 2001 The NetBSD Foundation, Inc.
      5       1.1   thorpej  * All rights reserved.
      6       1.1   thorpej  *
      7       1.1   thorpej  * This code is derived from software contributed to The NetBSD Foundation
      8       1.1   thorpej  * by Jason R. Thorpe of the Numerical Aerospace Simulation Facility,
      9       1.1   thorpej  * NASA Ames Research Center.
     10       1.1   thorpej  *
     11       1.1   thorpej  * Redistribution and use in source and binary forms, with or without
     12       1.1   thorpej  * modification, are permitted provided that the following conditions
     13       1.1   thorpej  * are met:
     14       1.1   thorpej  * 1. Redistributions of source code must retain the above copyright
     15       1.1   thorpej  *    notice, this list of conditions and the following disclaimer.
     16       1.1   thorpej  * 2. Redistributions in binary form must reproduce the above copyright
     17       1.1   thorpej  *    notice, this list of conditions and the following disclaimer in the
     18       1.1   thorpej  *    documentation and/or other materials provided with the distribution.
     19       1.1   thorpej  *
     20       1.1   thorpej  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     21       1.1   thorpej  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     22       1.1   thorpej  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     23       1.1   thorpej  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     24       1.1   thorpej  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     25       1.1   thorpej  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     26       1.1   thorpej  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     27       1.1   thorpej  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     28       1.1   thorpej  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     29       1.1   thorpej  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     30       1.1   thorpej  * POSSIBILITY OF SUCH DAMAGE.
     31       1.1   thorpej  */
     32       1.1   thorpej 
     33       1.1   thorpej /*
     34       1.1   thorpej  * Subroutines common to all PHYs.
     35       1.1   thorpej  */
     36      1.30     lukem 
     37      1.30     lukem #include <sys/cdefs.h>
     38  1.81.2.2  pgoyette __KERNEL_RCSID(0, "$NetBSD: mii_physubr.c,v 1.81.2.2 2019/01/26 22:00:06 pgoyette Exp $");
     39       1.1   thorpej 
     40       1.1   thorpej #include <sys/param.h>
     41       1.1   thorpej #include <sys/device.h>
     42       1.1   thorpej #include <sys/systm.h>
     43       1.3   thorpej #include <sys/kernel.h>
     44       1.1   thorpej #include <sys/socket.h>
     45       1.3   thorpej #include <sys/errno.h>
     46      1.69    martin #include <sys/module.h>
     47      1.19  augustss #include <sys/proc.h>
     48       1.1   thorpej 
     49       1.1   thorpej #include <net/if.h>
     50       1.1   thorpej #include <net/if_media.h>
     51      1.15   thorpej #include <net/route.h>
     52       1.1   thorpej 
     53       1.1   thorpej #include <dev/mii/mii.h>
     54       1.1   thorpej #include <dev/mii/miivar.h>
     55       1.1   thorpej 
     56      1.69    martin const char *(*mii_get_descr)(int, int) = mii_get_descr_stub;
     57      1.69    martin 
     58      1.70  pgoyette int mii_verbose_loaded = 0;
     59      1.70  pgoyette 
     60      1.69    martin const char *mii_get_descr_stub(int oui, int model)
     61      1.69    martin {
     62      1.70  pgoyette 	mii_load_verbose();
     63      1.70  pgoyette 	if (mii_verbose_loaded)
     64      1.70  pgoyette 		return mii_get_descr(oui, model);
     65      1.70  pgoyette 	else
     66      1.70  pgoyette 		return NULL;
     67      1.69    martin }
     68      1.69    martin 
     69  1.81.2.1  pgoyette /*
     70      1.70  pgoyette  * Routine to load the miiverbose kernel module as needed
     71      1.69    martin  */
     72      1.70  pgoyette void mii_load_verbose(void)
     73      1.69    martin {
     74      1.72  pgoyette 	if (mii_verbose_loaded == 0)
     75      1.71  pgoyette 		module_autoload("miiverbose", MODULE_CLASS_MISC);
     76  1.81.2.1  pgoyette }
     77      1.69    martin 
     78      1.46     joerg static void mii_phy_statusmsg(struct mii_softc *);
     79      1.46     joerg 
     80       1.6   thorpej /*
     81       1.6   thorpej  * Media to register setting conversion table.  Order matters.
     82       1.6   thorpej  */
     83      1.43   thorpej static const struct mii_media mii_media_table[MII_NMEDIA] = {
     84      1.23   thorpej 	/* None */
     85      1.23   thorpej 	{ BMCR_ISO,		ANAR_CSMA,
     86      1.23   thorpej 	  0, },
     87      1.23   thorpej 
     88      1.23   thorpej 	/* 10baseT */
     89      1.23   thorpej 	{ BMCR_S10,		ANAR_CSMA|ANAR_10,
     90      1.23   thorpej 	  0, },
     91      1.23   thorpej 
     92      1.23   thorpej 	/* 10baseT-FDX */
     93      1.23   thorpej 	{ BMCR_S10|BMCR_FDX,	ANAR_CSMA|ANAR_10_FD,
     94      1.23   thorpej 	  0, },
     95      1.23   thorpej 
     96      1.23   thorpej 	/* 100baseT4 */
     97      1.23   thorpej 	{ BMCR_S100,		ANAR_CSMA|ANAR_T4,
     98      1.23   thorpej 	  0, },
     99      1.23   thorpej 
    100      1.23   thorpej 	/* 100baseTX */
    101      1.23   thorpej 	{ BMCR_S100,		ANAR_CSMA|ANAR_TX,
    102      1.23   thorpej 	  0, },
    103      1.23   thorpej 
    104      1.23   thorpej 	/* 100baseTX-FDX */
    105      1.23   thorpej 	{ BMCR_S100|BMCR_FDX,	ANAR_CSMA|ANAR_TX_FD,
    106      1.23   thorpej 	  0, },
    107      1.23   thorpej 
    108      1.23   thorpej 	/* 1000baseX */
    109      1.23   thorpej 	{ BMCR_S1000,		ANAR_CSMA,
    110      1.23   thorpej 	  0, },
    111      1.23   thorpej 
    112      1.23   thorpej 	/* 1000baseX-FDX */
    113      1.23   thorpej 	{ BMCR_S1000|BMCR_FDX,	ANAR_CSMA,
    114      1.23   thorpej 	  0, },
    115      1.23   thorpej 
    116      1.23   thorpej 	/* 1000baseT */
    117      1.23   thorpej 	{ BMCR_S1000,		ANAR_CSMA,
    118      1.23   thorpej 	  GTCR_ADV_1000THDX },
    119      1.23   thorpej 
    120      1.23   thorpej 	/* 1000baseT-FDX */
    121      1.23   thorpej 	{ BMCR_S1000,		ANAR_CSMA,
    122      1.23   thorpej 	  GTCR_ADV_1000TFDX },
    123       1.6   thorpej };
    124       1.6   thorpej 
    125      1.43   thorpej static void	mii_phy_auto_timeout(void *);
    126       1.3   thorpej 
    127       1.6   thorpej void
    128      1.29   thorpej mii_phy_setmedia(struct mii_softc *sc)
    129       1.6   thorpej {
    130       1.6   thorpej 	struct mii_data *mii = sc->mii_pdata;
    131       1.6   thorpej 	struct ifmedia_entry *ife = mii->mii_media.ifm_cur;
    132  1.81.2.2  pgoyette 	uint16_t bmcr, anar, gtcr;
    133      1.12   thorpej 
    134      1.13   thorpej 	if (IFM_SUBTYPE(ife->ifm_media) == IFM_AUTO) {
    135      1.41   thorpej 		/*
    136      1.41   thorpej 		 * Force renegotiation if MIIF_DOPAUSE.
    137      1.41   thorpej 		 *
    138      1.41   thorpej 		 * XXX This is only necessary because many NICs don't
    139      1.41   thorpej 		 * XXX advertise PAUSE capabilities at boot time.  Maybe
    140      1.41   thorpej 		 * XXX we should force this only once?
    141      1.41   thorpej 		 */
    142  1.81.2.2  pgoyette 		PHY_READ(sc, MII_BMCR, &bmcr);
    143  1.81.2.2  pgoyette 		if ((bmcr & BMCR_AUTOEN) == 0 ||
    144      1.38   thorpej 		    (sc->mii_flags & (MIIF_FORCEANEG|MIIF_DOPAUSE)))
    145      1.14   thorpej 			(void) mii_phy_auto(sc, 1);
    146      1.13   thorpej 		return;
    147      1.13   thorpej 	}
    148       1.6   thorpej 
    149       1.6   thorpej 	/*
    150       1.6   thorpej 	 * Table index is stored in the media entry.
    151       1.6   thorpej 	 */
    152       1.6   thorpej 
    153       1.6   thorpej #ifdef DIAGNOSTIC
    154      1.50  christos 	if (/* ife->ifm_data < 0 || */ ife->ifm_data >= MII_NMEDIA)
    155       1.6   thorpej 		panic("mii_phy_setmedia");
    156       1.6   thorpej #endif
    157       1.6   thorpej 
    158       1.6   thorpej 	anar = mii_media_table[ife->ifm_data].mm_anar;
    159       1.6   thorpej 	bmcr = mii_media_table[ife->ifm_data].mm_bmcr;
    160      1.23   thorpej 	gtcr = mii_media_table[ife->ifm_data].mm_gtcr;
    161      1.23   thorpej 
    162      1.23   thorpej 	if (mii->mii_media.ifm_media & IFM_ETH_MASTER) {
    163      1.23   thorpej 		switch (IFM_SUBTYPE(ife->ifm_media)) {
    164      1.25     bjh21 		case IFM_1000_T:
    165      1.23   thorpej 			gtcr |= GTCR_MAN_MS|GTCR_ADV_MS;
    166      1.23   thorpej 			break;
    167      1.23   thorpej 
    168      1.23   thorpej 		default:
    169      1.23   thorpej 			panic("mii_phy_setmedia: MASTER on wrong media");
    170      1.23   thorpej 		}
    171      1.23   thorpej 	}
    172       1.6   thorpej 
    173      1.38   thorpej 	if (mii->mii_media.ifm_media & IFM_FLOW) {
    174      1.38   thorpej 		if (sc->mii_flags & MIIF_IS_1000X)
    175      1.38   thorpej 			anar |= ANAR_X_PAUSE_SYM | ANAR_X_PAUSE_ASYM;
    176      1.38   thorpej 		else {
    177      1.38   thorpej 			anar |= ANAR_FC;
    178      1.38   thorpej 			/* XXX Only 1000BASE-T has PAUSE_ASYM? */
    179      1.38   thorpej 			if ((sc->mii_flags & MIIF_HAVE_GTCR) &&
    180      1.38   thorpej 			    (sc->mii_extcapabilities &
    181      1.79   msaitoh 			     (EXTSR_1000THDX | EXTSR_1000TFDX)))
    182      1.79   msaitoh 				anar |= ANAR_PAUSE_ASYM;
    183      1.38   thorpej 		}
    184      1.38   thorpej 	}
    185      1.38   thorpej 
    186       1.6   thorpej 	if (ife->ifm_media & IFM_LOOP)
    187       1.6   thorpej 		bmcr |= BMCR_LOOP;
    188       1.6   thorpej 
    189       1.6   thorpej 	PHY_WRITE(sc, MII_ANAR, anar);
    190      1.23   thorpej 	if (sc->mii_flags & MIIF_HAVE_GTCR)
    191      1.23   thorpej 		PHY_WRITE(sc, MII_100T2CR, gtcr);
    192      1.73    buhrow 	if (IFM_SUBTYPE(ife->ifm_media) == IFM_1000_T) {
    193      1.73    buhrow 		mii_phy_auto(sc, 0);
    194      1.73    buhrow 	} else {
    195      1.73    buhrow 		PHY_WRITE(sc, MII_BMCR, bmcr);
    196      1.73    buhrow 	}
    197      1.23   thorpej }
    198      1.23   thorpej 
    199       1.1   thorpej int
    200      1.29   thorpej mii_phy_auto(struct mii_softc *sc, int waitfor)
    201       1.1   thorpej {
    202      1.31       uwe 	int i;
    203      1.73    buhrow 	struct mii_data *mii = sc->mii_pdata;
    204      1.73    buhrow 	struct ifmedia_entry *ife = mii->mii_media.ifm_cur;
    205       1.1   thorpej 
    206      1.76   msaitoh 	sc->mii_ticks = 0;
    207       1.6   thorpej 	if ((sc->mii_flags & MIIF_DOINGAUTO) == 0) {
    208      1.26   thorpej 		/*
    209      1.26   thorpej 		 * Check for 1000BASE-X.  Autonegotiation is a bit
    210      1.26   thorpej 		 * different on such devices.
    211      1.26   thorpej 		 */
    212      1.27   thorpej 		if (sc->mii_flags & MIIF_IS_1000X) {
    213      1.27   thorpej 			uint16_t anar = 0;
    214      1.27   thorpej 
    215      1.27   thorpej 			if (sc->mii_extcapabilities & EXTSR_1000XFDX)
    216      1.27   thorpej 				anar |= ANAR_X_FD;
    217      1.27   thorpej 			if (sc->mii_extcapabilities & EXTSR_1000XHDX)
    218      1.27   thorpej 				anar |= ANAR_X_HD;
    219      1.27   thorpej 
    220      1.27   thorpej 			if (sc->mii_flags & MIIF_DOPAUSE) {
    221      1.27   thorpej 				/* XXX Asymmetric vs. symmetric? */
    222      1.27   thorpej 				anar |= ANLPAR_X_PAUSE_TOWARDS;
    223      1.27   thorpej 			}
    224      1.27   thorpej 
    225      1.27   thorpej 			PHY_WRITE(sc, MII_ANAR, anar);
    226      1.27   thorpej 		} else {
    227      1.27   thorpej 			uint16_t anar;
    228      1.27   thorpej 
    229      1.27   thorpej 			anar = BMSR_MEDIA_TO_ANAR(sc->mii_capabilities) |
    230      1.27   thorpej 			    ANAR_CSMA;
    231      1.38   thorpej 			if (sc->mii_flags & MIIF_DOPAUSE) {
    232      1.27   thorpej 				anar |= ANAR_FC;
    233      1.38   thorpej 				/* XXX Only 1000BASE-T has PAUSE_ASYM? */
    234      1.38   thorpej 				if ((sc->mii_flags & MIIF_HAVE_GTCR) &&
    235      1.38   thorpej 				    (sc->mii_extcapabilities &
    236      1.79   msaitoh 				     (EXTSR_1000THDX | EXTSR_1000TFDX)))
    237      1.79   msaitoh 					anar |= ANAR_PAUSE_ASYM;
    238      1.38   thorpej 			}
    239      1.73    buhrow 
    240      1.73    buhrow 			/*
    241      1.81   msaitoh 			 *  For 1000-base-T, autonegotiation must be enabled,
    242      1.81   msaitoh 			 * but if we're not set to auto, only advertise
    243      1.81   msaitoh 			 * 1000-base-T with the link partner.
    244      1.73    buhrow 			 */
    245      1.73    buhrow 			if (IFM_SUBTYPE(ife->ifm_media) == IFM_1000_T) {
    246      1.73    buhrow 				anar &= ~(ANAR_T4|ANAR_TX_FD|ANAR_TX|ANAR_10_FD|ANAR_10);
    247      1.73    buhrow 			}
    248  1.81.2.1  pgoyette 
    249      1.27   thorpej 			PHY_WRITE(sc, MII_ANAR, anar);
    250      1.27   thorpej 			if (sc->mii_flags & MIIF_HAVE_GTCR) {
    251      1.27   thorpej 				uint16_t gtcr = 0;
    252      1.27   thorpej 
    253      1.27   thorpej 				if (sc->mii_extcapabilities & EXTSR_1000TFDX)
    254      1.27   thorpej 					gtcr |= GTCR_ADV_1000TFDX;
    255      1.27   thorpej 				if (sc->mii_extcapabilities & EXTSR_1000THDX)
    256      1.27   thorpej 					gtcr |= GTCR_ADV_1000THDX;
    257      1.26   thorpej 
    258      1.27   thorpej 				PHY_WRITE(sc, MII_100T2CR, gtcr);
    259      1.27   thorpej 			}
    260      1.26   thorpej 		}
    261       1.6   thorpej 		PHY_WRITE(sc, MII_BMCR, BMCR_AUTOEN | BMCR_STARTNEG);
    262       1.3   thorpej 	}
    263       1.3   thorpej 
    264       1.3   thorpej 	if (waitfor) {
    265       1.3   thorpej 		/* Wait 500ms for it to complete. */
    266       1.3   thorpej 		for (i = 0; i < 500; i++) {
    267  1.81.2.2  pgoyette 			uint16_t bmsr;
    268  1.81.2.2  pgoyette 
    269  1.81.2.2  pgoyette 			PHY_READ(sc, MII_BMSR, &bmsr);
    270  1.81.2.2  pgoyette 			if (bmsr & BMSR_ACOMP)
    271       1.3   thorpej 				return (0);
    272       1.3   thorpej 			delay(1000);
    273       1.3   thorpej 		}
    274       1.3   thorpej 
    275       1.3   thorpej 		/*
    276       1.3   thorpej 		 * Don't need to worry about clearing MIIF_DOINGAUTO.
    277       1.3   thorpej 		 * If that's set, a timeout is pending, and it will
    278       1.3   thorpej 		 * clear the flag.
    279       1.3   thorpej 		 */
    280       1.3   thorpej 		return (EIO);
    281       1.1   thorpej 	}
    282       1.3   thorpej 
    283       1.3   thorpej 	/*
    284       1.3   thorpej 	 * Just let it finish asynchronously.  This is for the benefit of
    285       1.3   thorpej 	 * the tick handler driving autonegotiation.  Don't want 500ms
    286       1.3   thorpej 	 * delays all the time while the system is running!
    287       1.3   thorpej 	 */
    288      1.19  augustss 	if (sc->mii_flags & MIIF_AUTOTSLEEP) {
    289      1.19  augustss 		sc->mii_flags |= MIIF_DOINGAUTO;
    290      1.19  augustss 		tsleep(&sc->mii_flags, PZERO, "miiaut", hz >> 1);
    291      1.19  augustss 		mii_phy_auto_timeout(sc);
    292      1.19  augustss 	} else if ((sc->mii_flags & MIIF_DOINGAUTO) == 0) {
    293       1.6   thorpej 		sc->mii_flags |= MIIF_DOINGAUTO;
    294      1.17   thorpej 		callout_reset(&sc->mii_nway_ch, hz >> 1,
    295      1.17   thorpej 		    mii_phy_auto_timeout, sc);
    296       1.3   thorpej 	}
    297       1.3   thorpej 	return (EJUSTRETURN);
    298       1.3   thorpej }
    299       1.3   thorpej 
    300      1.43   thorpej static void
    301      1.29   thorpej mii_phy_auto_timeout(void *arg)
    302       1.3   thorpej {
    303       1.6   thorpej 	struct mii_softc *sc = arg;
    304      1.31       uwe 	int s;
    305       1.3   thorpej 
    306      1.60   xtraeme 	if (!device_is_active(sc->mii_dev))
    307       1.9   thorpej 		return;
    308       1.9   thorpej 
    309       1.3   thorpej 	s = splnet();
    310       1.6   thorpej 	sc->mii_flags &= ~MIIF_DOINGAUTO;
    311       1.3   thorpej 
    312       1.3   thorpej 	/* Update the media status. */
    313      1.18   thorpej 	(void) PHY_SERVICE(sc, sc->mii_pdata, MII_POLLSTAT);
    314       1.3   thorpej 	splx(s);
    315       1.2   thorpej }
    316       1.2   thorpej 
    317      1.15   thorpej int
    318      1.29   thorpej mii_phy_tick(struct mii_softc *sc)
    319      1.15   thorpej {
    320      1.15   thorpej 	struct mii_data *mii = sc->mii_pdata;
    321      1.15   thorpej 	struct ifmedia_entry *ife = mii->mii_media.ifm_cur;
    322  1.81.2.2  pgoyette 	uint16_t reg;
    323      1.15   thorpej 
    324      1.15   thorpej 	/* Just bail now if the interface is down. */
    325      1.15   thorpej 	if ((mii->mii_ifp->if_flags & IFF_UP) == 0)
    326      1.15   thorpej 		return (EJUSTRETURN);
    327      1.15   thorpej 
    328      1.15   thorpej 	/*
    329      1.15   thorpej 	 * If we're not doing autonegotiation, we don't need to do
    330      1.15   thorpej 	 * any extra work here.  However, we need to check the link
    331      1.77   msaitoh 	 * status so we can generate an announcement by returning
    332      1.77   msaitoh 	 * with 0 if the status changes.
    333      1.15   thorpej 	 */
    334      1.73    buhrow 	if ((IFM_SUBTYPE(ife->ifm_media) != IFM_AUTO) &&
    335      1.77   msaitoh 	    (IFM_SUBTYPE(ife->ifm_media) != IFM_1000_T)) {
    336      1.77   msaitoh 		/*
    337      1.77   msaitoh 		 * Reset autonegotiation timer to 0 just to make sure
    338      1.77   msaitoh 		 * the future autonegotiation start with 0.
    339      1.77   msaitoh 		 */
    340      1.77   msaitoh 		sc->mii_ticks = 0;
    341      1.15   thorpej 		return (0);
    342      1.77   msaitoh 	}
    343      1.15   thorpej 
    344      1.15   thorpej 	/* Read the status register twice; BMSR_LINK is latch-low. */
    345  1.81.2.2  pgoyette 	PHY_READ(sc, MII_BMSR, &reg);
    346  1.81.2.2  pgoyette 	PHY_READ(sc, MII_BMSR, &reg);
    347      1.15   thorpej 	if (reg & BMSR_LINK) {
    348      1.15   thorpej 		/*
    349      1.77   msaitoh 		 * Reset autonegotiation timer to 0 in case the link
    350      1.77   msaitoh 		 * goes down in the next tick.
    351      1.15   thorpej 		 */
    352      1.77   msaitoh 		sc->mii_ticks = 0;
    353      1.77   msaitoh 		/* See above. */
    354      1.15   thorpej 		return (0);
    355      1.15   thorpej 	}
    356      1.15   thorpej 
    357      1.15   thorpej 	/*
    358      1.78   msaitoh 	 * mii_ticks == 0 means it's the first tick after changing the media or
    359      1.77   msaitoh 	 * the link became down since the last tick (see above), so return with
    360      1.77   msaitoh 	 * 0 to update the status.
    361      1.77   msaitoh 	 */
    362      1.78   msaitoh 	if (sc->mii_ticks++ == 0)
    363      1.77   msaitoh 		return (0);
    364      1.77   msaitoh 
    365      1.77   msaitoh 	/*
    366      1.22   thorpej 	 * Only retry autonegotiation every N seconds.
    367      1.15   thorpej 	 */
    368      1.22   thorpej 	KASSERT(sc->mii_anegticks != 0);
    369      1.77   msaitoh 	if (sc->mii_ticks <= sc->mii_anegticks)
    370      1.15   thorpej 		return (EJUSTRETURN);
    371      1.15   thorpej 
    372      1.18   thorpej 	PHY_RESET(sc);
    373      1.15   thorpej 
    374      1.15   thorpej 	if (mii_phy_auto(sc, 0) == EJUSTRETURN)
    375      1.15   thorpej 		return (EJUSTRETURN);
    376      1.15   thorpej 
    377      1.15   thorpej 	/*
    378      1.15   thorpej 	 * Might need to generate a status message if autonegotiation
    379      1.15   thorpej 	 * failed.
    380      1.15   thorpej 	 */
    381      1.15   thorpej 	return (0);
    382      1.15   thorpej }
    383      1.15   thorpej 
    384       1.2   thorpej void
    385      1.29   thorpej mii_phy_reset(struct mii_softc *sc)
    386       1.2   thorpej {
    387  1.81.2.2  pgoyette 	int i;
    388  1.81.2.2  pgoyette 	uint16_t reg;
    389       1.2   thorpej 
    390       1.6   thorpej 	if (sc->mii_flags & MIIF_NOISOLATE)
    391       1.2   thorpej 		reg = BMCR_RESET;
    392       1.2   thorpej 	else
    393       1.2   thorpej 		reg = BMCR_RESET | BMCR_ISO;
    394       1.6   thorpej 	PHY_WRITE(sc, MII_BMCR, reg);
    395       1.2   thorpej 
    396  1.81.2.1  pgoyette 	/* Wait another 500ms for it to complete. */
    397  1.81.2.1  pgoyette 	for (i = 0; i < 500; i++) {
    398  1.81.2.2  pgoyette 		PHY_READ(sc, MII_BMCR, &reg);
    399       1.2   thorpej 		if ((reg & BMCR_RESET) == 0)
    400       1.2   thorpej 			break;
    401       1.2   thorpej 		delay(1000);
    402       1.2   thorpej 	}
    403       1.2   thorpej 
    404       1.6   thorpej 	if (sc->mii_inst != 0 && ((sc->mii_flags & MIIF_NOISOLATE) == 0))
    405       1.6   thorpej 		PHY_WRITE(sc, MII_BMCR, reg | BMCR_ISO);
    406       1.8   thorpej }
    407       1.8   thorpej 
    408       1.8   thorpej void
    409      1.29   thorpej mii_phy_down(struct mii_softc *sc)
    410       1.8   thorpej {
    411       1.8   thorpej 
    412       1.8   thorpej 	if (sc->mii_flags & MIIF_DOINGAUTO) {
    413       1.8   thorpej 		sc->mii_flags &= ~MIIF_DOINGAUTO;
    414      1.17   thorpej 		callout_stop(&sc->mii_nway_ch);
    415       1.8   thorpej 	}
    416      1.11   thorpej }
    417      1.11   thorpej 
    418      1.11   thorpej void
    419      1.29   thorpej mii_phy_status(struct mii_softc *sc)
    420      1.11   thorpej {
    421      1.11   thorpej 
    422      1.18   thorpej 	PHY_STATUS(sc);
    423      1.15   thorpej }
    424      1.15   thorpej 
    425      1.15   thorpej void
    426      1.29   thorpej mii_phy_update(struct mii_softc *sc, int cmd)
    427      1.15   thorpej {
    428      1.15   thorpej 	struct mii_data *mii = sc->mii_pdata;
    429      1.15   thorpej 
    430      1.15   thorpej 	if (sc->mii_media_active != mii->mii_media_active ||
    431      1.15   thorpej 	    sc->mii_media_status != mii->mii_media_status ||
    432      1.15   thorpej 	    cmd == MII_MEDIACHG) {
    433      1.46     joerg 		mii_phy_statusmsg(sc);
    434      1.74      matt 		(*mii->mii_statchg)(mii->mii_ifp);
    435      1.15   thorpej 		sc->mii_media_active = mii->mii_media_active;
    436      1.15   thorpej 		sc->mii_media_status = mii->mii_media_status;
    437      1.15   thorpej 	}
    438      1.15   thorpej }
    439      1.15   thorpej 
    440      1.46     joerg static void
    441      1.29   thorpej mii_phy_statusmsg(struct mii_softc *sc)
    442      1.15   thorpej {
    443      1.15   thorpej 	struct mii_data *mii = sc->mii_pdata;
    444      1.15   thorpej 	struct ifnet *ifp = mii->mii_ifp;
    445      1.15   thorpej 
    446      1.15   thorpej 	if (mii->mii_media_status & IFM_AVALID) {
    447      1.15   thorpej 		if (mii->mii_media_status & IFM_ACTIVE)
    448      1.46     joerg 			if_link_state_change(ifp, LINK_STATE_UP);
    449      1.15   thorpej 		else
    450      1.46     joerg 			if_link_state_change(ifp, LINK_STATE_DOWN);
    451      1.15   thorpej 	} else
    452      1.46     joerg 		if_link_state_change(ifp, LINK_STATE_UNKNOWN);
    453      1.15   thorpej 
    454      1.46     joerg 	ifp->if_baudrate = ifmedia_baudrate(mii->mii_media_active);
    455       1.5  drochner }
    456       1.5  drochner 
    457       1.5  drochner /*
    458       1.5  drochner  * Initialize generic PHY media based on BMSR, called when a PHY is
    459       1.5  drochner  * attached.  We expect to be set up to print a comma-separated list
    460       1.5  drochner  * of media names.  Does not print a newline.
    461       1.5  drochner  */
    462       1.5  drochner void
    463      1.29   thorpej mii_phy_add_media(struct mii_softc *sc)
    464       1.5  drochner {
    465       1.6   thorpej 	struct mii_data *mii = sc->mii_pdata;
    466      1.61    dyoung 	device_t self = sc->mii_dev;
    467       1.5  drochner 	const char *sep = "";
    468      1.38   thorpej 	int fdx = 0;
    469       1.5  drochner 
    470       1.5  drochner #define	ADD(m, c)	ifmedia_add(&mii->mii_media, (m), (c), NULL)
    471      1.36   thorpej #define	PRINT(n)	aprint_normal("%s%s", sep, (n)); sep = ", "
    472       1.5  drochner 
    473       1.6   thorpej 	if ((sc->mii_flags & MIIF_NOISOLATE) == 0)
    474       1.6   thorpej 		ADD(IFM_MAKEWORD(IFM_ETHER, IFM_NONE, 0, sc->mii_inst),
    475       1.6   thorpej 		    MII_MEDIA_NONE);
    476      1.28   thorpej 
    477      1.28   thorpej 	/*
    478      1.28   thorpej 	 * There are different interpretations for the bits in
    479      1.28   thorpej 	 * HomePNA PHYs.  And there is really only one media type
    480      1.28   thorpej 	 * that is supported.
    481      1.28   thorpej 	 */
    482      1.28   thorpej 	if (sc->mii_flags & MIIF_IS_HPNA) {
    483      1.28   thorpej 		if (sc->mii_capabilities & BMSR_10THDX) {
    484      1.28   thorpej 			ADD(IFM_MAKEWORD(IFM_ETHER, IFM_HPNA_1, 0,
    485      1.28   thorpej 					 sc->mii_inst),
    486      1.28   thorpej 			    MII_MEDIA_10_T);
    487      1.28   thorpej 			PRINT("HomePNA1");
    488      1.28   thorpej 		}
    489      1.61    dyoung 		goto out;
    490      1.28   thorpej 	}
    491       1.6   thorpej 
    492       1.6   thorpej 	if (sc->mii_capabilities & BMSR_10THDX) {
    493       1.6   thorpej 		ADD(IFM_MAKEWORD(IFM_ETHER, IFM_10_T, 0, sc->mii_inst),
    494       1.6   thorpej 		    MII_MEDIA_10_T);
    495       1.5  drochner 		PRINT("10baseT");
    496       1.5  drochner 	}
    497       1.6   thorpej 	if (sc->mii_capabilities & BMSR_10TFDX) {
    498       1.6   thorpej 		ADD(IFM_MAKEWORD(IFM_ETHER, IFM_10_T, IFM_FDX, sc->mii_inst),
    499       1.6   thorpej 		    MII_MEDIA_10_T_FDX);
    500       1.5  drochner 		PRINT("10baseT-FDX");
    501      1.38   thorpej 		fdx = 1;
    502       1.5  drochner 	}
    503       1.6   thorpej 	if (sc->mii_capabilities & BMSR_100TXHDX) {
    504       1.6   thorpej 		ADD(IFM_MAKEWORD(IFM_ETHER, IFM_100_TX, 0, sc->mii_inst),
    505       1.6   thorpej 		    MII_MEDIA_100_TX);
    506       1.5  drochner 		PRINT("100baseTX");
    507       1.5  drochner 	}
    508       1.6   thorpej 	if (sc->mii_capabilities & BMSR_100TXFDX) {
    509       1.6   thorpej 		ADD(IFM_MAKEWORD(IFM_ETHER, IFM_100_TX, IFM_FDX, sc->mii_inst),
    510       1.6   thorpej 		    MII_MEDIA_100_TX_FDX);
    511       1.5  drochner 		PRINT("100baseTX-FDX");
    512      1.38   thorpej 		fdx = 1;
    513       1.5  drochner 	}
    514       1.6   thorpej 	if (sc->mii_capabilities & BMSR_100T4) {
    515       1.6   thorpej 		ADD(IFM_MAKEWORD(IFM_ETHER, IFM_100_T4, 0, sc->mii_inst),
    516       1.6   thorpej 		    MII_MEDIA_100_T4);
    517       1.5  drochner 		PRINT("100baseT4");
    518       1.5  drochner 	}
    519      1.21   thorpej 
    520      1.21   thorpej 	if (sc->mii_extcapabilities & EXTSR_MEDIAMASK) {
    521      1.21   thorpej 		/*
    522      1.21   thorpej 		 * XXX Right now only handle 1000SX and 1000TX.  Need
    523      1.22   thorpej 		 * XXX to handle 1000LX and 1000CX some how.
    524      1.22   thorpej 		 *
    525      1.22   thorpej 		 * Note since it can take 5 seconds to auto-negotiate
    526      1.22   thorpej 		 * a gigabit link, we make anegticks 10 seconds for
    527      1.22   thorpej 		 * all the gigabit media types.
    528      1.21   thorpej 		 */
    529      1.21   thorpej 		if (sc->mii_extcapabilities & EXTSR_1000XHDX) {
    530      1.53  christos 			sc->mii_anegticks = MII_ANEGTICKS_GIGE;
    531      1.27   thorpej 			sc->mii_flags |= MIIF_IS_1000X;
    532      1.21   thorpej 			ADD(IFM_MAKEWORD(IFM_ETHER, IFM_1000_SX, 0,
    533      1.23   thorpej 			    sc->mii_inst), MII_MEDIA_1000_X);
    534      1.21   thorpej 			PRINT("1000baseSX");
    535      1.21   thorpej 		}
    536      1.21   thorpej 		if (sc->mii_extcapabilities & EXTSR_1000XFDX) {
    537      1.53  christos 			sc->mii_anegticks = MII_ANEGTICKS_GIGE;
    538      1.27   thorpej 			sc->mii_flags |= MIIF_IS_1000X;
    539      1.21   thorpej 			ADD(IFM_MAKEWORD(IFM_ETHER, IFM_1000_SX, IFM_FDX,
    540      1.23   thorpej 			    sc->mii_inst), MII_MEDIA_1000_X_FDX);
    541      1.21   thorpej 			PRINT("1000baseSX-FDX");
    542      1.38   thorpej 			fdx = 1;
    543      1.21   thorpej 		}
    544      1.23   thorpej 
    545      1.23   thorpej 		/*
    546      1.23   thorpej 		 * 1000baseT media needs to be able to manipulate
    547      1.23   thorpej 		 * master/slave mode.  We set IFM_ETH_MASTER in
    548      1.23   thorpej 		 * the "don't care mask" and filter it out when
    549      1.23   thorpej 		 * the media is set.
    550      1.23   thorpej 		 *
    551      1.23   thorpej 		 * All 1000baseT PHYs have a 1000baseT control register.
    552      1.23   thorpej 		 */
    553      1.21   thorpej 		if (sc->mii_extcapabilities & EXTSR_1000THDX) {
    554      1.53  christos 			sc->mii_anegticks = MII_ANEGTICKS_GIGE;
    555      1.23   thorpej 			sc->mii_flags |= MIIF_HAVE_GTCR;
    556      1.23   thorpej 			mii->mii_media.ifm_mask |= IFM_ETH_MASTER;
    557      1.25     bjh21 			ADD(IFM_MAKEWORD(IFM_ETHER, IFM_1000_T, 0,
    558      1.23   thorpej 			    sc->mii_inst), MII_MEDIA_1000_T);
    559      1.25     bjh21 			PRINT("1000baseT");
    560      1.21   thorpej 		}
    561      1.21   thorpej 		if (sc->mii_extcapabilities & EXTSR_1000TFDX) {
    562      1.53  christos 			sc->mii_anegticks = MII_ANEGTICKS_GIGE;
    563      1.23   thorpej 			sc->mii_flags |= MIIF_HAVE_GTCR;
    564      1.23   thorpej 			mii->mii_media.ifm_mask |= IFM_ETH_MASTER;
    565      1.25     bjh21 			ADD(IFM_MAKEWORD(IFM_ETHER, IFM_1000_T, IFM_FDX,
    566      1.23   thorpej 			    sc->mii_inst), MII_MEDIA_1000_T_FDX);
    567      1.25     bjh21 			PRINT("1000baseT-FDX");
    568      1.38   thorpej 			fdx = 1;
    569      1.21   thorpej 		}
    570      1.21   thorpej 	}
    571      1.21   thorpej 
    572       1.6   thorpej 	if (sc->mii_capabilities & BMSR_ANEG) {
    573       1.6   thorpej 		ADD(IFM_MAKEWORD(IFM_ETHER, IFM_AUTO, 0, sc->mii_inst),
    574       1.6   thorpej 		    MII_NMEDIA);	/* intentionally invalid index */
    575       1.5  drochner 		PRINT("auto");
    576       1.5  drochner 	}
    577       1.5  drochner #undef ADD
    578       1.5  drochner #undef PRINT
    579      1.38   thorpej 	if (fdx != 0 && (sc->mii_flags & MIIF_DOPAUSE))
    580      1.38   thorpej 		mii->mii_media.ifm_mask |= IFM_ETH_FMASK;
    581      1.61    dyoung out:
    582      1.61    dyoung 	if (!pmf_device_register(self, NULL, mii_phy_resume)) {
    583      1.61    dyoung 		aprint_normal("\n");
    584      1.61    dyoung 		aprint_error_dev(self, "couldn't establish power handler");
    585      1.61    dyoung 	}
    586       1.9   thorpej }
    587       1.9   thorpej 
    588       1.9   thorpej void
    589      1.29   thorpej mii_phy_delete_media(struct mii_softc *sc)
    590       1.9   thorpej {
    591       1.9   thorpej 	struct mii_data *mii = sc->mii_pdata;
    592       1.9   thorpej 
    593       1.9   thorpej 	ifmedia_delete_instance(&mii->mii_media, sc->mii_inst);
    594       1.9   thorpej }
    595       1.9   thorpej 
    596       1.9   thorpej int
    597      1.64    cegger mii_phy_activate(device_t self, enum devact act)
    598       1.9   thorpej {
    599       1.9   thorpej 	switch (act) {
    600       1.9   thorpej 	case DVACT_DEACTIVATE:
    601      1.65    dyoung 		/* XXX Invalidate parent's media setting? */
    602      1.65    dyoung 		return 0;
    603      1.65    dyoung 	default:
    604      1.65    dyoung 		return EOPNOTSUPP;
    605       1.9   thorpej 	}
    606       1.9   thorpej }
    607       1.9   thorpej 
    608      1.31       uwe /* ARGSUSED1 */
    609       1.9   thorpej int
    610      1.64    cegger mii_phy_detach(device_t self, int flags)
    611       1.9   thorpej {
    612      1.49   thorpej 	struct mii_softc *sc = device_private(self);
    613       1.9   thorpej 
    614      1.65    dyoung 	/* XXX Invalidate parent's media setting? */
    615      1.65    dyoung 
    616       1.9   thorpej 	if (sc->mii_flags & MIIF_DOINGAUTO)
    617      1.68    martin 		callout_halt(&sc->mii_nway_ch, NULL);
    618       1.9   thorpej 
    619      1.63    dyoung 	callout_destroy(&sc->mii_nway_ch);
    620      1.63    dyoung 
    621      1.10   thorpej 	mii_phy_delete_media(sc);
    622      1.56    dyoung 	LIST_REMOVE(sc, mii_list);
    623       1.9   thorpej 
    624       1.9   thorpej 	return (0);
    625      1.24   thorpej }
    626      1.24   thorpej 
    627      1.24   thorpej const struct mii_phydesc *
    628      1.24   thorpej mii_phy_match(const struct mii_attach_args *ma, const struct mii_phydesc *mpd)
    629      1.24   thorpej {
    630      1.24   thorpej 
    631      1.24   thorpej 	for (; mpd->mpd_name != NULL; mpd++) {
    632      1.24   thorpej 		if (MII_OUI(ma->mii_id1, ma->mii_id2) == mpd->mpd_oui &&
    633      1.24   thorpej 		    MII_MODEL(ma->mii_id2) == mpd->mpd_model)
    634      1.24   thorpej 			return (mpd);
    635      1.24   thorpej 	}
    636      1.24   thorpej 	return (NULL);
    637       1.1   thorpej }
    638      1.38   thorpej 
    639      1.38   thorpej /*
    640      1.38   thorpej  * Return the flow control status flag from MII_ANAR & MII_ANLPAR.
    641      1.38   thorpej  */
    642      1.38   thorpej u_int
    643      1.40   thorpej mii_phy_flowstatus(struct mii_softc *sc)
    644      1.38   thorpej {
    645  1.81.2.2  pgoyette 	uint16_t anar, anlpar;
    646      1.38   thorpej 
    647      1.39   thorpej 	if ((sc->mii_flags & MIIF_DOPAUSE) == 0)
    648      1.39   thorpej 		return (0);
    649      1.39   thorpej 
    650  1.81.2.2  pgoyette 	PHY_READ(sc, MII_ANAR, &anar);
    651  1.81.2.2  pgoyette 	PHY_READ(sc, MII_ANLPAR, &anlpar);
    652      1.38   thorpej 
    653      1.79   msaitoh 	/* For 1000baseX, the bits are in a different location. */
    654      1.79   msaitoh 	if (sc->mii_flags & MIIF_IS_1000X) {
    655      1.79   msaitoh 		anar <<= 3;
    656      1.79   msaitoh 		anlpar <<= 3;
    657      1.79   msaitoh 	}
    658      1.79   msaitoh 
    659      1.79   msaitoh 	if ((anar & ANAR_PAUSE_SYM) & (anlpar & ANLPAR_PAUSE_SYM))
    660      1.42   thorpej 		return (IFM_FLOW|IFM_ETH_TXPAUSE|IFM_ETH_RXPAUSE);
    661      1.42   thorpej 
    662      1.79   msaitoh 	if ((anar & ANAR_PAUSE_SYM) == 0) {
    663      1.79   msaitoh 		if ((anar & ANAR_PAUSE_ASYM) &&
    664      1.79   msaitoh 		    ((anlpar & ANLPAR_PAUSE_TOWARDS) == ANLPAR_PAUSE_TOWARDS))
    665      1.38   thorpej 			return (IFM_FLOW|IFM_ETH_TXPAUSE);
    666      1.38   thorpej 		else
    667      1.38   thorpej 			return (0);
    668      1.38   thorpej 	}
    669      1.38   thorpej 
    670      1.79   msaitoh 	if ((anar & ANAR_PAUSE_ASYM) == 0) {
    671      1.79   msaitoh 		if (anlpar & ANLPAR_PAUSE_SYM)
    672      1.38   thorpej 			return (IFM_FLOW|IFM_ETH_TXPAUSE|IFM_ETH_RXPAUSE);
    673      1.38   thorpej 		else
    674      1.38   thorpej 			return (0);
    675      1.38   thorpej 	}
    676      1.38   thorpej 
    677      1.79   msaitoh 	switch ((anlpar & ANLPAR_PAUSE_TOWARDS)) {
    678      1.79   msaitoh 	case ANLPAR_PAUSE_NONE:
    679      1.38   thorpej 		return (0);
    680      1.44     perry 
    681      1.79   msaitoh 	case ANLPAR_PAUSE_ASYM:
    682      1.38   thorpej 		return (IFM_FLOW|IFM_ETH_RXPAUSE);
    683      1.44     perry 
    684      1.38   thorpej 	default:
    685      1.38   thorpej 		return (IFM_FLOW|IFM_ETH_RXPAUSE|IFM_ETH_TXPAUSE);
    686      1.38   thorpej 	}
    687      1.38   thorpej 	/* NOTREACHED */
    688      1.38   thorpej }
    689      1.54  jmcneill 
    690      1.54  jmcneill bool
    691      1.67    dyoung mii_phy_resume(device_t dv, const pmf_qual_t *qual)
    692      1.54  jmcneill {
    693      1.54  jmcneill 	struct mii_softc *sc = device_private(dv);
    694      1.54  jmcneill 
    695      1.54  jmcneill 	PHY_RESET(sc);
    696      1.55    dyoung 	return PHY_SERVICE(sc, sc->mii_pdata, MII_MEDIACHG) == 0;
    697      1.54  jmcneill }
    698      1.62    cegger 
    699      1.62    cegger 
    700      1.62    cegger /*
    701      1.62    cegger  * Given an ifmedia word, return the corresponding ANAR value.
    702      1.62    cegger  */
    703      1.62    cegger int
    704      1.62    cegger mii_anar(int media)
    705      1.62    cegger {
    706      1.62    cegger 	int rv;
    707      1.62    cegger 
    708      1.75   mlelstv #ifdef DIAGNOSTIC
    709      1.75   mlelstv 	if (/* media < 0 || */ media >= MII_NMEDIA)
    710      1.75   mlelstv 		panic("mii_anar");
    711      1.75   mlelstv #endif
    712      1.75   mlelstv 
    713      1.75   mlelstv 	rv = mii_media_table[media].mm_anar;
    714      1.62    cegger 
    715      1.62    cegger 	return rv;
    716      1.62    cegger }
    717