The Design and Implementation of the FreeBSD Operating System, Second Edition
Now available: The Design and Implementation of the FreeBSD Operating System (Second Edition)


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]

FreeBSD/Linux Kernel Cross Reference
sys/dev/mii/lxtphy.c

Version: -  FREEBSD  -  FREEBSD-13-STABLE  -  FREEBSD-13-0  -  FREEBSD-12-STABLE  -  FREEBSD-12-0  -  FREEBSD-11-STABLE  -  FREEBSD-11-0  -  FREEBSD-10-STABLE  -  FREEBSD-10-0  -  FREEBSD-9-STABLE  -  FREEBSD-9-0  -  FREEBSD-8-STABLE  -  FREEBSD-8-0  -  FREEBSD-7-STABLE  -  FREEBSD-7-0  -  FREEBSD-6-STABLE  -  FREEBSD-6-0  -  FREEBSD-5-STABLE  -  FREEBSD-5-0  -  FREEBSD-4-STABLE  -  FREEBSD-3-STABLE  -  FREEBSD22  -  l41  -  OPENBSD  -  linux-2.6  -  MK84  -  PLAN9  -  xnu-8792 
SearchContext: -  none  -  3  -  10 

    1 /*      OpenBSD: lxtphy.c,v 1.5 2000/08/26 20:04:17 nate Exp    */
    2 /*      NetBSD: lxtphy.c,v 1.19 2000/02/02 23:34:57 thorpej Exp         */
    3 
    4 /*-
    5  * Copyright (c) 1998, 1999 The NetBSD Foundation, Inc.
    6  * All rights reserved.
    7  *
    8  * This code is derived from software contributed to The NetBSD Foundation
    9  * by Jason R. Thorpe of the Numerical Aerospace Simulation Facility,
   10  * NASA Ames Research Center.
   11  *
   12  * Redistribution and use in source and binary forms, with or without
   13  * modification, are permitted provided that the following conditions
   14  * are met:
   15  * 1. Redistributions of source code must retain the above copyright
   16  *    notice, this list of conditions and the following disclaimer.
   17  * 2. Redistributions in binary form must reproduce the above copyright
   18  *    notice, this list of conditions and the following disclaimer in the
   19  *    documentation and/or other materials provided with the distribution.
   20  *
   21  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
   22  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
   23  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
   24  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
   25  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
   26  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
   27  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
   28  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
   29  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
   30  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
   31  * POSSIBILITY OF SUCH DAMAGE.
   32  */
   33 
   34 /*-
   35  * Copyright (c) 1997 Manuel Bouyer.  All rights reserved.
   36  *
   37  * Redistribution and use in source and binary forms, with or without
   38  * modification, are permitted provided that the following conditions
   39  * are met:
   40  * 1. Redistributions of source code must retain the above copyright
   41  *    notice, this list of conditions and the following disclaimer.
   42  * 2. Redistributions in binary form must reproduce the above copyright
   43  *    notice, this list of conditions and the following disclaimer in the
   44  *    documentation and/or other materials provided with the distribution.
   45  *
   46  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
   47  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
   48  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
   49  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
   50  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
   51  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
   52  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
   53  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
   54  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
   55  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
   56  */
   57 
   58 #include <sys/cdefs.h>
   59 __FBSDID("$FreeBSD$");
   60 
   61 /*
   62  * driver for Level One's LXT-970 ethernet 10/100 PHY
   63  * datasheet from www.level1.com
   64  */
   65 
   66 #include <sys/param.h>
   67 #include <sys/systm.h>
   68 #include <sys/kernel.h>
   69 #include <sys/socket.h>
   70 #include <sys/errno.h>
   71 #include <sys/module.h>
   72 #include <sys/bus.h>
   73 
   74 #include <net/if.h>
   75 #include <net/if_media.h>
   76 
   77 #include <dev/mii/mii.h>
   78 #include <dev/mii/miivar.h>
   79 #include "miidevs.h"
   80 
   81 #include <dev/mii/lxtphyreg.h>
   82 
   83 #include "miibus_if.h"
   84 
   85 static int lxtphy_probe(device_t);
   86 static int lxtphy_attach(device_t);
   87 
   88 static device_method_t lxtphy_methods[] = {
   89         /* device interface */
   90         DEVMETHOD(device_probe,         lxtphy_probe),
   91         DEVMETHOD(device_attach,        lxtphy_attach),
   92         DEVMETHOD(device_detach,        mii_phy_detach),
   93         DEVMETHOD(device_shutdown,      bus_generic_shutdown),
   94         DEVMETHOD_END
   95 };
   96 
   97 static devclass_t lxtphy_devclass;
   98 
   99 static driver_t lxtphy_driver = {
  100         "lxtphy",
  101         lxtphy_methods,
  102         sizeof(struct mii_softc)
  103 };
  104 
  105 DRIVER_MODULE(lxtphy, miibus, lxtphy_driver, lxtphy_devclass, 0, 0);
  106 
  107 static int      lxtphy_service(struct mii_softc *, struct mii_data *, int);
  108 static void     lxtphy_status(struct mii_softc *);
  109 static void     lxtphy_reset(struct mii_softc *);
  110 static void     lxtphy_set_tp(struct mii_softc *);
  111 static void     lxtphy_set_fx(struct mii_softc *);
  112 
  113 static const struct mii_phydesc lxtphys[] = {
  114         MII_PHY_DESC(xxLEVEL1, LXT970),
  115         MII_PHY_END
  116 };
  117 
  118 static int
  119 lxtphy_probe(device_t dev)
  120 {
  121 
  122         return (mii_phy_dev_probe(dev, lxtphys, BUS_PROBE_DEFAULT));
  123 }
  124 
  125 static int
  126 lxtphy_attach(device_t dev)
  127 {
  128         struct mii_softc *sc;
  129         struct mii_attach_args *ma;
  130         struct mii_data *mii;
  131 
  132         sc = device_get_softc(dev);
  133         ma = device_get_ivars(dev);
  134         sc->mii_dev = device_get_parent(dev);
  135         mii = ma->mii_data;
  136         LIST_INSERT_HEAD(&mii->mii_phys, sc, mii_list);
  137 
  138         sc->mii_flags = miibus_get_flags(dev);
  139         sc->mii_inst = mii->mii_instance++;
  140         sc->mii_phy = ma->mii_phyno;
  141         sc->mii_service = lxtphy_service;
  142         sc->mii_pdata = mii;
  143 
  144         sc->mii_flags |= MIIF_NOMANPAUSE;
  145 
  146         lxtphy_reset(sc);
  147 
  148         sc->mii_capabilities = PHY_READ(sc, MII_BMSR) & ma->mii_capmask;
  149         device_printf(dev, " ");
  150 
  151 #define ADD(m, c)       ifmedia_add(&mii->mii_media, (m), (c), NULL)
  152         ADD(IFM_MAKEWORD(IFM_ETHER, IFM_100_FX, 0, sc->mii_inst),
  153             MII_MEDIA_100_TX);
  154         printf("100baseFX, ");
  155         ADD(IFM_MAKEWORD(IFM_ETHER, IFM_100_FX, IFM_FDX, sc->mii_inst),
  156             MII_MEDIA_100_TX_FDX);
  157         printf("100baseFX-FDX, ");
  158 #undef ADD
  159 
  160         mii_phy_add_media(sc);
  161         printf("\n");
  162 
  163         MIIBUS_MEDIAINIT(sc->mii_dev);
  164         return (0);
  165 }
  166 
  167 static int
  168 lxtphy_service(struct mii_softc *sc, struct mii_data *mii, int cmd)
  169 {
  170         struct ifmedia_entry *ife = mii->mii_media.ifm_cur;
  171 
  172         switch (cmd) {
  173         case MII_POLLSTAT:
  174                 break;
  175 
  176         case MII_MEDIACHG:
  177                 /*
  178                  * If the interface is not up, don't do anything.
  179                  */
  180                 if ((mii->mii_ifp->if_flags & IFF_UP) == 0)
  181                         break;
  182 
  183                 if (IFM_SUBTYPE(ife->ifm_media) == IFM_100_FX)
  184                         lxtphy_set_fx(sc);
  185                 else
  186                         lxtphy_set_tp(sc);
  187 
  188                 mii_phy_setmedia(sc);
  189                 break;
  190 
  191         case MII_TICK:
  192                 if (mii_phy_tick(sc) == EJUSTRETURN)
  193                         return (0);
  194                 break;
  195         }
  196 
  197         /* Update the media status. */
  198         lxtphy_status(sc);
  199 
  200         /* Callback if something changed. */
  201         mii_phy_update(sc, cmd);
  202         return (0);
  203 }
  204 
  205 static void
  206 lxtphy_status(struct mii_softc *sc)
  207 {
  208         struct mii_data *mii = sc->mii_pdata;
  209         struct ifmedia_entry *ife = mii->mii_media.ifm_cur;
  210         int bmcr, bmsr, csr;
  211 
  212         mii->mii_media_status = IFM_AVALID;
  213         mii->mii_media_active = IFM_ETHER;
  214 
  215         /*
  216          * Get link status from the CSR; we need to read the CSR
  217          * for media type anyhow, and the link status in the CSR
  218          * doens't latch, so fewer register reads are required.
  219          */
  220         csr = PHY_READ(sc, MII_LXTPHY_CSR);
  221         if (csr & CSR_LINK)
  222                 mii->mii_media_status |= IFM_ACTIVE;
  223 
  224         bmcr = PHY_READ(sc, MII_BMCR);
  225         if (bmcr & BMCR_ISO) {
  226                 mii->mii_media_active |= IFM_NONE;
  227                 mii->mii_media_status = 0;
  228                 return;
  229         }
  230 
  231         if (bmcr & BMCR_LOOP)
  232                 mii->mii_media_active |= IFM_LOOP;
  233 
  234         if (bmcr & BMCR_AUTOEN) {
  235                 bmsr = PHY_READ(sc, MII_BMSR) | PHY_READ(sc, MII_BMSR);
  236                 if ((bmsr & BMSR_ACOMP) == 0) {
  237                         /* Erg, still trying, I guess... */
  238                         mii->mii_media_active |= IFM_NONE;
  239                         return;
  240                 }
  241                 if (csr & CSR_SPEED)
  242                         mii->mii_media_active |= IFM_100_TX;
  243                 else
  244                         mii->mii_media_active |= IFM_10_T;
  245                 if (csr & CSR_DUPLEX)
  246                         mii->mii_media_active |= IFM_FDX;
  247                 else
  248                         mii->mii_media_active |= IFM_HDX;
  249         } else
  250                 mii->mii_media_active = ife->ifm_media;
  251 }
  252 
  253 static void
  254 lxtphy_reset(struct mii_softc *sc)
  255 {
  256 
  257         mii_phy_reset(sc);
  258         PHY_WRITE(sc, MII_LXTPHY_IER,
  259             PHY_READ(sc, MII_LXTPHY_IER) & ~IER_INTEN);
  260 }
  261 
  262 static void
  263 lxtphy_set_tp(struct mii_softc *sc)
  264 {
  265         int cfg;
  266 
  267         cfg = PHY_READ(sc, MII_LXTPHY_CONFIG);
  268         cfg &= ~CONFIG_100BASEFX;
  269         PHY_WRITE(sc, MII_LXTPHY_CONFIG, cfg);
  270 }
  271 
  272 static void
  273 lxtphy_set_fx(struct mii_softc *sc)
  274 {
  275         int cfg;
  276 
  277         cfg = PHY_READ(sc, MII_LXTPHY_CONFIG);
  278         cfg |= CONFIG_100BASEFX;
  279         PHY_WRITE(sc, MII_LXTPHY_CONFIG, cfg);
  280 }

Cache object: 5ee0863fcb540077486b9d0633829560


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]


This page is part of the FreeBSD/Linux Linux Kernel Cross-Reference, and was automatically generated using a modified version of the LXR engine.