Home | History | Annotate | Line # | Download | only in mii
rlphy.c revision 1.8
      1  1.8  thorpej /*	$NetBSD: rlphy.c,v 1.8 2006/03/25 23:17:36 thorpej Exp $	*/
      2  1.1  xtraeme /*	$OpenBSD: rlphy.c,v 1.20 2005/07/31 05:27:30 pvalchev Exp $	*/
      3  1.1  xtraeme 
      4  1.1  xtraeme /*
      5  1.1  xtraeme  * Copyright (c) 1998, 1999 Jason L. Wright (jason (at) thought.net)
      6  1.1  xtraeme  * All rights reserved.
      7  1.1  xtraeme  *
      8  1.1  xtraeme  * Redistribution and use in source and binary forms, with or without
      9  1.1  xtraeme  * modification, are permitted provided that the following conditions
     10  1.1  xtraeme  * are met:
     11  1.1  xtraeme  * 1. Redistributions of source code must retain the above copyright
     12  1.1  xtraeme  *    notice, this list of conditions and the following disclaimer.
     13  1.1  xtraeme  * 2. Redistributions in binary form must reproduce the above copyright
     14  1.1  xtraeme  *    notice, this list of conditions and the following disclaimer in the
     15  1.1  xtraeme  *    documentation and/or other materials provided with the distribution.
     16  1.1  xtraeme  *
     17  1.1  xtraeme  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
     18  1.1  xtraeme  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
     19  1.1  xtraeme  * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
     20  1.1  xtraeme  * DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,
     21  1.1  xtraeme  * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
     22  1.1  xtraeme  * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
     23  1.1  xtraeme  * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     24  1.1  xtraeme  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
     25  1.1  xtraeme  * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
     26  1.1  xtraeme  * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     27  1.1  xtraeme  * POSSIBILITY OF SUCH DAMAGE.
     28  1.1  xtraeme  */
     29  1.1  xtraeme 
     30  1.1  xtraeme /*
     31  1.1  xtraeme  * Driver for the internal PHY found on RTL8139 based nics, based
     32  1.1  xtraeme  * on drivers for the 'exphy' (Internal 3Com phys) and 'nsphy'
     33  1.1  xtraeme  * (National Semiconductor DP83840).
     34  1.1  xtraeme  */
     35  1.1  xtraeme 
     36  1.1  xtraeme /*
     37  1.1  xtraeme  * Ported to NetBSD by Juan Romero Pardines <xtraeme (at) NetBSD.org>
     38  1.1  xtraeme  */
     39  1.1  xtraeme 
     40  1.1  xtraeme #include <sys/cdefs.h>
     41  1.8  thorpej __KERNEL_RCSID(0, "$NetBSD: rlphy.c,v 1.8 2006/03/25 23:17:36 thorpej Exp $");
     42  1.1  xtraeme 
     43  1.1  xtraeme #include <sys/param.h>
     44  1.1  xtraeme #include <sys/systm.h>
     45  1.1  xtraeme #include <sys/kernel.h>
     46  1.1  xtraeme #include <sys/device.h>
     47  1.1  xtraeme #include <sys/socket.h>
     48  1.1  xtraeme #include <sys/errno.h>
     49  1.1  xtraeme 
     50  1.1  xtraeme #include <net/if.h>
     51  1.1  xtraeme #include <net/if_media.h>
     52  1.1  xtraeme 
     53  1.1  xtraeme #include <dev/mii/mii.h>
     54  1.1  xtraeme #include <dev/mii/miivar.h>
     55  1.1  xtraeme #include <dev/mii/miidevs.h>
     56  1.1  xtraeme #include <machine/bus.h>
     57  1.1  xtraeme #include <dev/ic/rtl81x9reg.h>
     58  1.1  xtraeme 
     59  1.1  xtraeme int	rlphymatch(struct device *, struct cfdata *, void *);
     60  1.1  xtraeme void	rlphyattach(struct device *, struct device *, void *);
     61  1.1  xtraeme 
     62  1.1  xtraeme CFATTACH_DECL(rlphy, sizeof(struct mii_softc),
     63  1.1  xtraeme     rlphymatch, rlphyattach, mii_phy_detach, mii_phy_activate);
     64  1.1  xtraeme 
     65  1.1  xtraeme int	rlphy_service(struct mii_softc *, struct mii_data *, int);
     66  1.1  xtraeme void	rlphy_status(struct mii_softc *);
     67  1.1  xtraeme 
     68  1.1  xtraeme const struct mii_phy_funcs rlphy_funcs = {
     69  1.1  xtraeme 	rlphy_service, rlphy_status, mii_phy_reset,
     70  1.1  xtraeme };
     71  1.1  xtraeme 
     72  1.7      chs static const struct mii_phydesc rlphys[] = {
     73  1.7      chs 	{ MII_OUI_yyREALTEK,		MII_MODEL_yyREALTEK_RTL8201L,
     74  1.7      chs           MII_STR_yyREALTEK_RTL8201L },
     75  1.7      chs 	{ MII_OUI_ICPLUS,		MII_MODEL_ICPLUS_IP101,
     76  1.7      chs 	  MII_STR_ICPLUS_IP101 },
     77  1.7      chs 
     78  1.7      chs 	{ 0,				0,
     79  1.7      chs 	  NULL },
     80  1.7      chs };
     81  1.7      chs 
     82  1.1  xtraeme int
     83  1.1  xtraeme rlphymatch(struct device *parent, struct cfdata *match, void *aux)
     84  1.1  xtraeme {
     85  1.1  xtraeme 	struct mii_attach_args *ma = aux;
     86  1.1  xtraeme 
     87  1.7      chs 	if (mii_phy_match(ma, rlphys) != NULL)
     88  1.7      chs 		return (10);
     89  1.1  xtraeme 
     90  1.1  xtraeme 	if (MII_OUI(ma->mii_id1, ma->mii_id2) != 0 ||
     91  1.1  xtraeme 	    MII_MODEL(ma->mii_id2) != 0)
     92  1.1  xtraeme 		return 0;
     93  1.1  xtraeme 
     94  1.5   kleink 	if (!device_is_a(parent, "rtk"))
     95  1.1  xtraeme 		return 0;
     96  1.1  xtraeme 
     97  1.1  xtraeme 	/*
     98  1.1  xtraeme 	 * A "real" phy should get preference, but on the 8139 there
     99  1.1  xtraeme 	 * is no phyid register.
    100  1.1  xtraeme 	 */
    101  1.1  xtraeme 	return 5;
    102  1.1  xtraeme }
    103  1.1  xtraeme 
    104  1.1  xtraeme void
    105  1.1  xtraeme rlphyattach(struct device *parent, struct device *self, void *aux)
    106  1.1  xtraeme {
    107  1.1  xtraeme 	struct mii_softc *sc = (struct mii_softc *)self;
    108  1.1  xtraeme 	struct mii_attach_args *ma = aux;
    109  1.1  xtraeme 	struct mii_data *mii = ma->mii_data;
    110  1.1  xtraeme 
    111  1.1  xtraeme 	if (MII_MODEL(ma->mii_id2) == MII_MODEL_yyREALTEK_RTL8201L) {
    112  1.1  xtraeme 		aprint_normal(": %s, rev. %d\n", MII_STR_yyREALTEK_RTL8201L,
    113  1.1  xtraeme 		    MII_REV(ma->mii_id2));
    114  1.1  xtraeme 	} else
    115  1.1  xtraeme 		aprint_normal(": Realtek internal PHY\n");
    116  1.1  xtraeme 
    117  1.1  xtraeme 	sc->mii_inst = mii->mii_instance;
    118  1.1  xtraeme 	sc->mii_phy = ma->mii_phyno;
    119  1.1  xtraeme 	sc->mii_funcs = &rlphy_funcs;
    120  1.1  xtraeme 	sc->mii_pdata = mii;
    121  1.1  xtraeme 	sc->mii_flags = ma->mii_flags;
    122  1.1  xtraeme 
    123  1.1  xtraeme 	sc->mii_flags |= MIIF_NOISOLATE;
    124  1.1  xtraeme 
    125  1.1  xtraeme 	PHY_RESET(sc);
    126  1.1  xtraeme 
    127  1.1  xtraeme 	aprint_normal("%s: ", sc->mii_dev.dv_xname);
    128  1.1  xtraeme 	sc->mii_capabilities =
    129  1.1  xtraeme 	    PHY_READ(sc, MII_BMSR) & ma->mii_capmask;
    130  1.1  xtraeme 	if (sc->mii_capabilities & BMSR_MEDIAMASK)
    131  1.1  xtraeme 		mii_phy_add_media(sc);
    132  1.1  xtraeme 	aprint_normal("\n");
    133  1.1  xtraeme }
    134  1.1  xtraeme 
    135  1.1  xtraeme int
    136  1.1  xtraeme rlphy_service(struct mii_softc *sc, struct mii_data *mii, int cmd)
    137  1.1  xtraeme {
    138  1.1  xtraeme 	struct ifmedia_entry *ife = mii->mii_media.ifm_cur;
    139  1.1  xtraeme 
    140  1.1  xtraeme 	int rv;
    141  1.1  xtraeme 
    142  1.2  thorpej 	if (!device_is_active(&sc->mii_dev))
    143  1.1  xtraeme 		return ENXIO;
    144  1.1  xtraeme 
    145  1.1  xtraeme 	/*
    146  1.1  xtraeme 	 * Can't isolate the RTL8139 phy, so it has to be the only one.
    147  1.1  xtraeme 	 */
    148  1.1  xtraeme 	if (IFM_INST(ife->ifm_media) != sc->mii_inst)
    149  1.1  xtraeme 		panic("rlphy_service: attempt to isolate phy");
    150  1.1  xtraeme 
    151  1.1  xtraeme 	switch (cmd) {
    152  1.1  xtraeme 	case MII_POLLSTAT:
    153  1.1  xtraeme 		break;
    154  1.1  xtraeme 
    155  1.1  xtraeme 	case MII_MEDIACHG:
    156  1.1  xtraeme 		/*
    157  1.1  xtraeme 		 * If the interface is not up, don't do anything.
    158  1.1  xtraeme 		 */
    159  1.1  xtraeme 		if ((mii->mii_ifp->if_flags & IFF_UP) == 0)
    160  1.1  xtraeme 			break;
    161  1.1  xtraeme 
    162  1.1  xtraeme 		switch (IFM_SUBTYPE(ife->ifm_media)) {
    163  1.1  xtraeme 		case IFM_AUTO:
    164  1.1  xtraeme 			/*
    165  1.1  xtraeme 			 * If we're already in auto mode, just return.
    166  1.1  xtraeme 			 */
    167  1.1  xtraeme 			if (PHY_READ(sc, MII_BMCR) & BMCR_AUTOEN)
    168  1.1  xtraeme 				return (0);
    169  1.1  xtraeme 			(void) mii_phy_auto(sc, 0);
    170  1.1  xtraeme 			break;
    171  1.1  xtraeme 		case IFM_100_T4:
    172  1.1  xtraeme 			/*
    173  1.1  xtraeme 			 * XXX Not supported as a manual setting right now.
    174  1.1  xtraeme 			 */
    175  1.1  xtraeme 			return (EINVAL);
    176  1.1  xtraeme 		default:
    177  1.1  xtraeme 			/*
    178  1.1  xtraeme 			 * BMCR data is stored in the ifmedia entry.
    179  1.1  xtraeme 			 */
    180  1.1  xtraeme 			switch (ife->ifm_media &
    181  1.1  xtraeme 			    (IFM_TMASK|IFM_NMASK|IFM_FDX)) {
    182  1.1  xtraeme 				case IFM_ETHER|IFM_10_T:
    183  1.1  xtraeme 					rv = ANAR_10|ANAR_CSMA;
    184  1.1  xtraeme 					break;
    185  1.1  xtraeme 				case IFM_ETHER|IFM_10_T|IFM_FDX:
    186  1.1  xtraeme 					rv = ANAR_10_FD|ANAR_CSMA;
    187  1.1  xtraeme 					break;
    188  1.1  xtraeme 				case IFM_ETHER|IFM_100_TX:
    189  1.1  xtraeme 					rv = ANAR_TX|ANAR_CSMA;
    190  1.1  xtraeme 					break;
    191  1.1  xtraeme 				case IFM_ETHER|IFM_100_TX|IFM_FDX:
    192  1.1  xtraeme 					rv = ANAR_TX_FD|ANAR_CSMA;
    193  1.1  xtraeme 					break;
    194  1.1  xtraeme 				case IFM_ETHER|IFM_100_T4:
    195  1.1  xtraeme 					rv = ANAR_T4|ANAR_CSMA;
    196  1.1  xtraeme 					break;
    197  1.1  xtraeme 				default:
    198  1.1  xtraeme 					rv = 0;
    199  1.1  xtraeme 					break;
    200  1.1  xtraeme 			}
    201  1.1  xtraeme 
    202  1.1  xtraeme 			PHY_WRITE(sc, MII_ANAR, rv);
    203  1.1  xtraeme 			PHY_WRITE(sc, MII_BMCR, ife->ifm_data);
    204  1.1  xtraeme 		}
    205  1.1  xtraeme 		break;
    206  1.1  xtraeme 
    207  1.1  xtraeme 	case MII_TICK:
    208  1.1  xtraeme 		/*
    209  1.1  xtraeme 		 * Is the interface even up?
    210  1.1  xtraeme 		 */
    211  1.1  xtraeme 		if ((mii->mii_ifp->if_flags & IFF_UP) == 0)
    212  1.1  xtraeme 			return (0);
    213  1.1  xtraeme 
    214  1.1  xtraeme 		/*
    215  1.1  xtraeme 		 * Only used for autonegotiation.
    216  1.1  xtraeme 		 */
    217  1.1  xtraeme 		if (IFM_SUBTYPE(ife->ifm_media) != IFM_AUTO)
    218  1.1  xtraeme 			break;
    219  1.1  xtraeme 
    220  1.1  xtraeme 		/*
    221  1.1  xtraeme 		 * The RealTek PHY's autonegotiation doesn't need to be
    222  1.1  xtraeme 		 * kicked; it continues in the background.
    223  1.1  xtraeme 		 */
    224  1.1  xtraeme 		break;
    225  1.1  xtraeme 
    226  1.1  xtraeme 	case MII_DOWN:
    227  1.1  xtraeme 		mii_phy_down(sc);
    228  1.1  xtraeme 		return (0);
    229  1.1  xtraeme 	}
    230  1.1  xtraeme 
    231  1.1  xtraeme 	/* Update the media status. */
    232  1.1  xtraeme 	mii_phy_status(sc);
    233  1.1  xtraeme 
    234  1.1  xtraeme 	/* Callback if something changed. */
    235  1.1  xtraeme 	mii_phy_update(sc, cmd);
    236  1.1  xtraeme 	return (0);
    237  1.1  xtraeme }
    238  1.1  xtraeme 
    239  1.1  xtraeme void
    240  1.1  xtraeme rlphy_status(struct mii_softc *sc)
    241  1.1  xtraeme {
    242  1.1  xtraeme 	struct mii_data *mii = sc->mii_pdata;
    243  1.1  xtraeme 	struct ifmedia_entry *ife = mii->mii_media.ifm_cur;
    244  1.1  xtraeme 	int bmsr, bmcr, anlpar;
    245  1.1  xtraeme 
    246  1.1  xtraeme 	mii->mii_media_status = IFM_AVALID;
    247  1.1  xtraeme 	mii->mii_media_active = IFM_ETHER;
    248  1.1  xtraeme 
    249  1.1  xtraeme 	bmsr = PHY_READ(sc, MII_BMSR) | PHY_READ(sc, MII_BMSR);
    250  1.1  xtraeme 	if (bmsr & BMSR_LINK)
    251  1.1  xtraeme 		mii->mii_media_status |= IFM_ACTIVE;
    252  1.1  xtraeme 
    253  1.1  xtraeme 	bmcr = PHY_READ(sc, MII_BMCR);
    254  1.1  xtraeme 	if (bmcr & BMCR_ISO) {
    255  1.1  xtraeme 		mii->mii_media_active |= IFM_NONE;
    256  1.1  xtraeme 		mii->mii_media_status = 0;
    257  1.1  xtraeme 		return;
    258  1.1  xtraeme 	}
    259  1.1  xtraeme 
    260  1.1  xtraeme 	if (bmcr & BMCR_LOOP)
    261  1.1  xtraeme 		mii->mii_media_active |= IFM_LOOP;
    262  1.1  xtraeme 
    263  1.1  xtraeme 	if (bmcr & BMCR_AUTOEN) {
    264  1.1  xtraeme 		/*
    265  1.1  xtraeme 		 * NWay autonegotiation takes the highest-order common
    266  1.1  xtraeme 		 * bit of the ANAR and ANLPAR (i.e. best media advertised
    267  1.1  xtraeme 		 * both by us and our link partner).
    268  1.1  xtraeme 		 */
    269  1.1  xtraeme 		if ((bmsr & BMSR_ACOMP) == 0) {
    270  1.1  xtraeme 			/* Erg, still trying, I guess... */
    271  1.1  xtraeme 			mii->mii_media_active |= IFM_NONE;
    272  1.1  xtraeme 			return;
    273  1.1  xtraeme 		}
    274  1.1  xtraeme 
    275  1.1  xtraeme 		if ((anlpar = PHY_READ(sc, MII_ANAR) &
    276  1.1  xtraeme 		    PHY_READ(sc, MII_ANLPAR))) {
    277  1.1  xtraeme 			if (anlpar & ANLPAR_T4)
    278  1.1  xtraeme 				mii->mii_media_active |= IFM_100_T4;
    279  1.1  xtraeme 			else if (anlpar & ANLPAR_TX_FD)
    280  1.1  xtraeme 				mii->mii_media_active |= IFM_100_TX|IFM_FDX;
    281  1.1  xtraeme 			else if (anlpar & ANLPAR_TX)
    282  1.1  xtraeme 				mii->mii_media_active |= IFM_100_TX;
    283  1.1  xtraeme 			else if (anlpar & ANLPAR_10_FD)
    284  1.1  xtraeme 				mii->mii_media_active |= IFM_10_T|IFM_FDX;
    285  1.1  xtraeme 			else if (anlpar & ANLPAR_10)
    286  1.1  xtraeme 				mii->mii_media_active |= IFM_10_T;
    287  1.1  xtraeme 			else
    288  1.1  xtraeme 				mii->mii_media_active |= IFM_NONE;
    289  1.1  xtraeme 			return;
    290  1.1  xtraeme 		}
    291  1.1  xtraeme 
    292  1.1  xtraeme 		/*
    293  1.1  xtraeme 		 * If the other side doesn't support NWAY, then the
    294  1.1  xtraeme 		 * best we can do is determine if we have a 10Mbps or
    295  1.1  xtraeme 		 * 100Mbps link. There's no way to know if the link
    296  1.1  xtraeme 		 * is full or half duplex, so we default to half duplex
    297  1.1  xtraeme 		 * and hope that the user is clever enough to manually
    298  1.1  xtraeme 		 * change the media settings if we're wrong.
    299  1.1  xtraeme 		 */
    300  1.1  xtraeme 
    301  1.1  xtraeme 		/*
    302  1.1  xtraeme 		 * The RealTek PHY supports non-NWAY link speed
    303  1.1  xtraeme 		 * detection, however it does not report the link
    304  1.1  xtraeme 		 * detection results via the ANLPAR or BMSR registers.
    305  1.1  xtraeme 		 * (What? RealTek doesn't do things the way everyone
    306  1.1  xtraeme 		 * else does? I'm just shocked, shocked I tell you.)
    307  1.1  xtraeme 		 * To determine the link speed, we have to do one
    308  1.1  xtraeme 		 * of two things:
    309  1.1  xtraeme 		 *
    310  1.1  xtraeme 		 * - If this is a standalone RealTek RTL8201(L) PHY,
    311  1.1  xtraeme 		 *   we can determine the link speed by testing bit 0
    312  1.1  xtraeme 		 *   in the magic, vendor-specific register at offset
    313  1.1  xtraeme 		 *   0x19.
    314  1.1  xtraeme 		 *
    315  1.1  xtraeme 		 * - If this is a RealTek MAC with integrated PHY, we
    316  1.1  xtraeme 		 *   can test the 'SPEED10' bit of the MAC's media status
    317  1.1  xtraeme 		 *   register.
    318  1.1  xtraeme 		 */
    319  1.8  thorpej 		if (device_is_a(device_parent(&sc->mii_dev), "rtk")) {
    320  1.1  xtraeme 			if (PHY_READ(sc, RTK_MEDIASTAT) & RTK_MEDIASTAT_SPEED10)
    321  1.1  xtraeme 				mii->mii_media_active |= IFM_10_T;
    322  1.1  xtraeme 			else
    323  1.1  xtraeme 				mii->mii_media_active |= IFM_100_TX;
    324  1.1  xtraeme 		} else {
    325  1.1  xtraeme 			if (PHY_READ(sc, 0x0019) & 0x01)
    326  1.1  xtraeme 				mii->mii_media_active |= IFM_100_TX;
    327  1.1  xtraeme 			else
    328  1.1  xtraeme 				mii->mii_media_active |= IFM_10_T;
    329  1.1  xtraeme 		}
    330  1.1  xtraeme 
    331  1.1  xtraeme 	} else
    332  1.1  xtraeme 		mii->mii_media_active = ife->ifm_media;
    333  1.1  xtraeme }
    334