Home | History | Annotate | Line # | Download | only in mii
rlphy.c revision 1.13
      1  1.13   tsutsui /*	$NetBSD: rlphy.c,v 1.13 2007/03/19 12:23:30 tsutsui 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.13   tsutsui __KERNEL_RCSID(0, "$NetBSD: rlphy.c,v 1.13 2007/03/19 12:23:30 tsutsui 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.13   tsutsui static void rlphy_reset(struct mii_softc *);
     69  1.13   tsutsui 
     70   1.1   xtraeme const struct mii_phy_funcs rlphy_funcs = {
     71  1.13   tsutsui 	rlphy_service, rlphy_status, rlphy_reset,
     72   1.1   xtraeme };
     73   1.1   xtraeme 
     74   1.7       chs static const struct mii_phydesc rlphys[] = {
     75   1.7       chs 	{ MII_OUI_yyREALTEK,		MII_MODEL_yyREALTEK_RTL8201L,
     76   1.7       chs           MII_STR_yyREALTEK_RTL8201L },
     77   1.7       chs 	{ MII_OUI_ICPLUS,		MII_MODEL_ICPLUS_IP101,
     78   1.7       chs 	  MII_STR_ICPLUS_IP101 },
     79   1.7       chs 
     80   1.7       chs 	{ 0,				0,
     81   1.7       chs 	  NULL },
     82   1.7       chs };
     83   1.7       chs 
     84   1.1   xtraeme int
     85  1.12  christos rlphymatch(struct device *parent, struct cfdata *match, void *aux)
     86   1.1   xtraeme {
     87   1.1   xtraeme 	struct mii_attach_args *ma = aux;
     88   1.1   xtraeme 
     89   1.7       chs 	if (mii_phy_match(ma, rlphys) != NULL)
     90   1.7       chs 		return (10);
     91   1.1   xtraeme 
     92   1.1   xtraeme 	if (MII_OUI(ma->mii_id1, ma->mii_id2) != 0 ||
     93   1.1   xtraeme 	    MII_MODEL(ma->mii_id2) != 0)
     94   1.1   xtraeme 		return 0;
     95   1.1   xtraeme 
     96  1.11   tsutsui 	if (!device_is_a(parent, "rtk") && !device_is_a(parent, "re"))
     97   1.1   xtraeme 		return 0;
     98   1.1   xtraeme 
     99   1.1   xtraeme 	/*
    100   1.1   xtraeme 	 * A "real" phy should get preference, but on the 8139 there
    101   1.1   xtraeme 	 * is no phyid register.
    102   1.1   xtraeme 	 */
    103   1.1   xtraeme 	return 5;
    104   1.1   xtraeme }
    105   1.1   xtraeme 
    106   1.1   xtraeme void
    107  1.12  christos rlphyattach(struct device *parent, struct device *self, void *aux)
    108   1.1   xtraeme {
    109   1.9   thorpej 	struct mii_softc *sc = device_private(self);
    110   1.1   xtraeme 	struct mii_attach_args *ma = aux;
    111   1.1   xtraeme 	struct mii_data *mii = ma->mii_data;
    112   1.1   xtraeme 
    113   1.1   xtraeme 	if (MII_MODEL(ma->mii_id2) == MII_MODEL_yyREALTEK_RTL8201L) {
    114   1.1   xtraeme 		aprint_normal(": %s, rev. %d\n", MII_STR_yyREALTEK_RTL8201L,
    115   1.1   xtraeme 		    MII_REV(ma->mii_id2));
    116   1.1   xtraeme 	} else
    117   1.1   xtraeme 		aprint_normal(": Realtek internal PHY\n");
    118   1.1   xtraeme 
    119   1.1   xtraeme 	sc->mii_inst = mii->mii_instance;
    120   1.1   xtraeme 	sc->mii_phy = ma->mii_phyno;
    121   1.1   xtraeme 	sc->mii_funcs = &rlphy_funcs;
    122   1.1   xtraeme 	sc->mii_pdata = mii;
    123   1.1   xtraeme 	sc->mii_flags = ma->mii_flags;
    124   1.1   xtraeme 
    125   1.1   xtraeme 	sc->mii_flags |= MIIF_NOISOLATE;
    126   1.1   xtraeme 
    127   1.1   xtraeme 	PHY_RESET(sc);
    128   1.1   xtraeme 
    129   1.1   xtraeme 	aprint_normal("%s: ", sc->mii_dev.dv_xname);
    130   1.1   xtraeme 	sc->mii_capabilities =
    131   1.1   xtraeme 	    PHY_READ(sc, MII_BMSR) & ma->mii_capmask;
    132   1.1   xtraeme 	if (sc->mii_capabilities & BMSR_MEDIAMASK)
    133   1.1   xtraeme 		mii_phy_add_media(sc);
    134   1.1   xtraeme 	aprint_normal("\n");
    135   1.1   xtraeme }
    136   1.1   xtraeme 
    137   1.1   xtraeme int
    138   1.1   xtraeme rlphy_service(struct mii_softc *sc, struct mii_data *mii, int cmd)
    139   1.1   xtraeme {
    140   1.1   xtraeme 	struct ifmedia_entry *ife = mii->mii_media.ifm_cur;
    141   1.1   xtraeme 
    142   1.1   xtraeme 	int rv;
    143   1.1   xtraeme 
    144   1.2   thorpej 	if (!device_is_active(&sc->mii_dev))
    145   1.1   xtraeme 		return ENXIO;
    146   1.1   xtraeme 
    147   1.1   xtraeme 	/*
    148   1.1   xtraeme 	 * Can't isolate the RTL8139 phy, so it has to be the only one.
    149   1.1   xtraeme 	 */
    150   1.1   xtraeme 	if (IFM_INST(ife->ifm_media) != sc->mii_inst)
    151   1.1   xtraeme 		panic("rlphy_service: attempt to isolate phy");
    152   1.1   xtraeme 
    153   1.1   xtraeme 	switch (cmd) {
    154   1.1   xtraeme 	case MII_POLLSTAT:
    155   1.1   xtraeme 		break;
    156   1.1   xtraeme 
    157   1.1   xtraeme 	case MII_MEDIACHG:
    158   1.1   xtraeme 		/*
    159   1.1   xtraeme 		 * If the interface is not up, don't do anything.
    160   1.1   xtraeme 		 */
    161   1.1   xtraeme 		if ((mii->mii_ifp->if_flags & IFF_UP) == 0)
    162   1.1   xtraeme 			break;
    163   1.1   xtraeme 
    164   1.1   xtraeme 		switch (IFM_SUBTYPE(ife->ifm_media)) {
    165   1.1   xtraeme 		case IFM_AUTO:
    166   1.1   xtraeme 			/*
    167   1.1   xtraeme 			 * If we're already in auto mode, just return.
    168   1.1   xtraeme 			 */
    169   1.1   xtraeme 			if (PHY_READ(sc, MII_BMCR) & BMCR_AUTOEN)
    170   1.1   xtraeme 				return (0);
    171   1.1   xtraeme 			(void) mii_phy_auto(sc, 0);
    172   1.1   xtraeme 			break;
    173   1.1   xtraeme 		case IFM_100_T4:
    174   1.1   xtraeme 			/*
    175   1.1   xtraeme 			 * XXX Not supported as a manual setting right now.
    176   1.1   xtraeme 			 */
    177   1.1   xtraeme 			return (EINVAL);
    178   1.1   xtraeme 		default:
    179   1.1   xtraeme 			/*
    180   1.1   xtraeme 			 * BMCR data is stored in the ifmedia entry.
    181   1.1   xtraeme 			 */
    182   1.1   xtraeme 			switch (ife->ifm_media &
    183   1.1   xtraeme 			    (IFM_TMASK|IFM_NMASK|IFM_FDX)) {
    184   1.1   xtraeme 				case IFM_ETHER|IFM_10_T:
    185   1.1   xtraeme 					rv = ANAR_10|ANAR_CSMA;
    186   1.1   xtraeme 					break;
    187   1.1   xtraeme 				case IFM_ETHER|IFM_10_T|IFM_FDX:
    188   1.1   xtraeme 					rv = ANAR_10_FD|ANAR_CSMA;
    189   1.1   xtraeme 					break;
    190   1.1   xtraeme 				case IFM_ETHER|IFM_100_TX:
    191   1.1   xtraeme 					rv = ANAR_TX|ANAR_CSMA;
    192   1.1   xtraeme 					break;
    193   1.1   xtraeme 				case IFM_ETHER|IFM_100_TX|IFM_FDX:
    194   1.1   xtraeme 					rv = ANAR_TX_FD|ANAR_CSMA;
    195   1.1   xtraeme 					break;
    196   1.1   xtraeme 				case IFM_ETHER|IFM_100_T4:
    197   1.1   xtraeme 					rv = ANAR_T4|ANAR_CSMA;
    198   1.1   xtraeme 					break;
    199   1.1   xtraeme 				default:
    200   1.1   xtraeme 					rv = 0;
    201   1.1   xtraeme 					break;
    202   1.1   xtraeme 			}
    203   1.1   xtraeme 
    204   1.1   xtraeme 			PHY_WRITE(sc, MII_ANAR, rv);
    205   1.1   xtraeme 			PHY_WRITE(sc, MII_BMCR, ife->ifm_data);
    206   1.1   xtraeme 		}
    207   1.1   xtraeme 		break;
    208   1.1   xtraeme 
    209   1.1   xtraeme 	case MII_TICK:
    210   1.1   xtraeme 		/*
    211   1.1   xtraeme 		 * Is the interface even up?
    212   1.1   xtraeme 		 */
    213   1.1   xtraeme 		if ((mii->mii_ifp->if_flags & IFF_UP) == 0)
    214   1.1   xtraeme 			return (0);
    215   1.1   xtraeme 
    216   1.1   xtraeme 		/*
    217   1.1   xtraeme 		 * Only used for autonegotiation.
    218   1.1   xtraeme 		 */
    219   1.1   xtraeme 		if (IFM_SUBTYPE(ife->ifm_media) != IFM_AUTO)
    220   1.1   xtraeme 			break;
    221   1.1   xtraeme 
    222   1.1   xtraeme 		/*
    223   1.1   xtraeme 		 * The RealTek PHY's autonegotiation doesn't need to be
    224   1.1   xtraeme 		 * kicked; it continues in the background.
    225   1.1   xtraeme 		 */
    226   1.1   xtraeme 		break;
    227   1.1   xtraeme 
    228   1.1   xtraeme 	case MII_DOWN:
    229   1.1   xtraeme 		mii_phy_down(sc);
    230   1.1   xtraeme 		return (0);
    231   1.1   xtraeme 	}
    232   1.1   xtraeme 
    233   1.1   xtraeme 	/* Update the media status. */
    234   1.1   xtraeme 	mii_phy_status(sc);
    235   1.1   xtraeme 
    236   1.1   xtraeme 	/* Callback if something changed. */
    237   1.1   xtraeme 	mii_phy_update(sc, cmd);
    238   1.1   xtraeme 	return (0);
    239   1.1   xtraeme }
    240   1.1   xtraeme 
    241   1.1   xtraeme void
    242   1.1   xtraeme rlphy_status(struct mii_softc *sc)
    243   1.1   xtraeme {
    244   1.1   xtraeme 	struct mii_data *mii = sc->mii_pdata;
    245   1.1   xtraeme 	struct ifmedia_entry *ife = mii->mii_media.ifm_cur;
    246   1.1   xtraeme 	int bmsr, bmcr, anlpar;
    247   1.1   xtraeme 
    248   1.1   xtraeme 	mii->mii_media_status = IFM_AVALID;
    249   1.1   xtraeme 	mii->mii_media_active = IFM_ETHER;
    250   1.1   xtraeme 
    251   1.1   xtraeme 	bmsr = PHY_READ(sc, MII_BMSR) | PHY_READ(sc, MII_BMSR);
    252   1.1   xtraeme 	if (bmsr & BMSR_LINK)
    253   1.1   xtraeme 		mii->mii_media_status |= IFM_ACTIVE;
    254   1.1   xtraeme 
    255   1.1   xtraeme 	bmcr = PHY_READ(sc, MII_BMCR);
    256   1.1   xtraeme 	if (bmcr & BMCR_ISO) {
    257   1.1   xtraeme 		mii->mii_media_active |= IFM_NONE;
    258   1.1   xtraeme 		mii->mii_media_status = 0;
    259   1.1   xtraeme 		return;
    260   1.1   xtraeme 	}
    261   1.1   xtraeme 
    262   1.1   xtraeme 	if (bmcr & BMCR_LOOP)
    263   1.1   xtraeme 		mii->mii_media_active |= IFM_LOOP;
    264   1.1   xtraeme 
    265   1.1   xtraeme 	if (bmcr & BMCR_AUTOEN) {
    266   1.1   xtraeme 		/*
    267   1.1   xtraeme 		 * NWay autonegotiation takes the highest-order common
    268   1.1   xtraeme 		 * bit of the ANAR and ANLPAR (i.e. best media advertised
    269   1.1   xtraeme 		 * both by us and our link partner).
    270   1.1   xtraeme 		 */
    271   1.1   xtraeme 		if ((bmsr & BMSR_ACOMP) == 0) {
    272   1.1   xtraeme 			/* Erg, still trying, I guess... */
    273   1.1   xtraeme 			mii->mii_media_active |= IFM_NONE;
    274   1.1   xtraeme 			return;
    275   1.1   xtraeme 		}
    276   1.1   xtraeme 
    277   1.1   xtraeme 		if ((anlpar = PHY_READ(sc, MII_ANAR) &
    278   1.1   xtraeme 		    PHY_READ(sc, MII_ANLPAR))) {
    279   1.1   xtraeme 			if (anlpar & ANLPAR_T4)
    280   1.1   xtraeme 				mii->mii_media_active |= IFM_100_T4;
    281   1.1   xtraeme 			else if (anlpar & ANLPAR_TX_FD)
    282   1.1   xtraeme 				mii->mii_media_active |= IFM_100_TX|IFM_FDX;
    283   1.1   xtraeme 			else if (anlpar & ANLPAR_TX)
    284   1.1   xtraeme 				mii->mii_media_active |= IFM_100_TX;
    285   1.1   xtraeme 			else if (anlpar & ANLPAR_10_FD)
    286   1.1   xtraeme 				mii->mii_media_active |= IFM_10_T|IFM_FDX;
    287   1.1   xtraeme 			else if (anlpar & ANLPAR_10)
    288   1.1   xtraeme 				mii->mii_media_active |= IFM_10_T;
    289   1.1   xtraeme 			else
    290   1.1   xtraeme 				mii->mii_media_active |= IFM_NONE;
    291   1.1   xtraeme 			return;
    292   1.1   xtraeme 		}
    293   1.1   xtraeme 
    294   1.1   xtraeme 		/*
    295   1.1   xtraeme 		 * If the other side doesn't support NWAY, then the
    296   1.1   xtraeme 		 * best we can do is determine if we have a 10Mbps or
    297   1.1   xtraeme 		 * 100Mbps link. There's no way to know if the link
    298   1.1   xtraeme 		 * is full or half duplex, so we default to half duplex
    299   1.1   xtraeme 		 * and hope that the user is clever enough to manually
    300   1.1   xtraeme 		 * change the media settings if we're wrong.
    301   1.1   xtraeme 		 */
    302   1.1   xtraeme 
    303   1.1   xtraeme 		/*
    304   1.1   xtraeme 		 * The RealTek PHY supports non-NWAY link speed
    305   1.1   xtraeme 		 * detection, however it does not report the link
    306   1.1   xtraeme 		 * detection results via the ANLPAR or BMSR registers.
    307   1.1   xtraeme 		 * (What? RealTek doesn't do things the way everyone
    308   1.1   xtraeme 		 * else does? I'm just shocked, shocked I tell you.)
    309   1.1   xtraeme 		 * To determine the link speed, we have to do one
    310   1.1   xtraeme 		 * of two things:
    311   1.1   xtraeme 		 *
    312   1.1   xtraeme 		 * - If this is a standalone RealTek RTL8201(L) PHY,
    313   1.1   xtraeme 		 *   we can determine the link speed by testing bit 0
    314   1.1   xtraeme 		 *   in the magic, vendor-specific register at offset
    315   1.1   xtraeme 		 *   0x19.
    316   1.1   xtraeme 		 *
    317   1.1   xtraeme 		 * - If this is a RealTek MAC with integrated PHY, we
    318   1.1   xtraeme 		 *   can test the 'SPEED10' bit of the MAC's media status
    319   1.1   xtraeme 		 *   register.
    320   1.1   xtraeme 		 */
    321   1.8   thorpej 		if (device_is_a(device_parent(&sc->mii_dev), "rtk")) {
    322   1.1   xtraeme 			if (PHY_READ(sc, RTK_MEDIASTAT) & RTK_MEDIASTAT_SPEED10)
    323   1.1   xtraeme 				mii->mii_media_active |= IFM_10_T;
    324   1.1   xtraeme 			else
    325   1.1   xtraeme 				mii->mii_media_active |= IFM_100_TX;
    326   1.1   xtraeme 		} else {
    327   1.1   xtraeme 			if (PHY_READ(sc, 0x0019) & 0x01)
    328   1.1   xtraeme 				mii->mii_media_active |= IFM_100_TX;
    329   1.1   xtraeme 			else
    330   1.1   xtraeme 				mii->mii_media_active |= IFM_10_T;
    331   1.1   xtraeme 		}
    332   1.1   xtraeme 
    333   1.1   xtraeme 	} else
    334   1.1   xtraeme 		mii->mii_media_active = ife->ifm_media;
    335   1.1   xtraeme }
    336  1.13   tsutsui 
    337  1.13   tsutsui static void
    338  1.13   tsutsui rlphy_reset(struct mii_softc *sc)
    339  1.13   tsutsui {
    340  1.13   tsutsui 
    341  1.13   tsutsui 	mii_phy_reset(sc);
    342  1.13   tsutsui 
    343  1.13   tsutsui 	/*
    344  1.13   tsutsui 	 * XXX RealTek PHY doesn't set the BMCR properly after
    345  1.13   tsutsui 	 * XXX reset, which breaks autonegotiation.
    346  1.13   tsutsui 	 */
    347  1.13   tsutsui 	PHY_WRITE(sc, MII_BMCR, BMCR_AUTOEN);
    348  1.13   tsutsui }
    349