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/mips/cavium/octe/ethernet-mv88e61xx.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 /*-
    2  * Copyright (c) 2010 Juli Mallett <jmallett@FreeBSD.org>
    3  * All rights reserved.
    4  *
    5  * Redistribution and use in source and binary forms, with or without
    6  * modification, are permitted provided that the following conditions
    7  * are met:
    8  * 1. Redistributions of source code must retain the above copyright
    9  *    notice, this list of conditions and the following disclaimer.
   10  * 2. Redistributions in binary form must reproduce the above copyright
   11  *    notice, this list of conditions and the following disclaimer in the
   12  *    documentation and/or other materials provided with the distribution.
   13  *
   14  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
   15  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
   16  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
   17  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
   18  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
   19  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
   20  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
   21  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
   22  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
   23  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
   24  * SUCH DAMAGE.
   25  *
   26  * $FreeBSD$
   27  */
   28 
   29 /*
   30  * Interface to the Marvell 88E61XX SMI/MDIO.
   31  */
   32 
   33 #include <sys/cdefs.h>
   34 __FBSDID("$FreeBSD$");
   35 
   36 #include <sys/param.h>
   37 #include <sys/systm.h>
   38 #include <sys/bus.h>
   39 #include <sys/endian.h>
   40 #include <sys/kernel.h>
   41 #include <sys/mbuf.h>
   42 #include <sys/socket.h>
   43 
   44 #include <dev/mii/mii.h>
   45 
   46 #include <net/ethernet.h>
   47 #include <net/if.h>
   48 #include <net/if_var.h>
   49 
   50 #include "wrapper-cvmx-includes.h"
   51 #include "ethernet-headers.h"
   52 
   53 #define MV88E61XX_SMI_REG_CMD   0x00    /* Indirect command register.  */
   54 #define  MV88E61XX_SMI_CMD_BUSY         0x8000  /* Busy bit.  */
   55 #define  MV88E61XX_SMI_CMD_22           0x1000  /* Clause 22 (default 45.)  */
   56 #define  MV88E61XX_SMI_CMD_READ         0x0800  /* Read command.  */
   57 #define  MV88E61XX_SMI_CMD_WRITE        0x0400  /* Write command.  */
   58 #define  MV88E61XX_SMI_CMD_PHY(phy)     (((phy) & 0x1f) << 5)
   59 #define  MV88E61XX_SMI_CMD_REG(reg)     ((reg) & 0x1f)
   60 
   61 #define MV88E61XX_SMI_REG_DAT   0x01    /* Indirect data register.  */
   62 
   63 static int cvm_oct_mv88e61xx_smi_read(struct ifnet *, int, int);
   64 static void cvm_oct_mv88e61xx_smi_write(struct ifnet *, int, int, int);
   65 static int cvm_oct_mv88e61xx_smi_wait(struct ifnet *);
   66 
   67 int
   68 cvm_oct_mv88e61xx_setup_device(struct ifnet *ifp)
   69 {
   70         cvm_oct_private_t *priv = (cvm_oct_private_t *)ifp->if_softc;
   71 
   72         priv->mdio_read = cvm_oct_mv88e61xx_smi_read;
   73         priv->mdio_write = cvm_oct_mv88e61xx_smi_write;
   74         priv->phy_device = "mv88e61xxphy";
   75 
   76         return (0);
   77 }
   78 
   79 static int
   80 cvm_oct_mv88e61xx_smi_read(struct ifnet *ifp, int phy_id, int location)
   81 {
   82         cvm_oct_private_t *priv = (cvm_oct_private_t *)ifp->if_softc;
   83         int error;
   84 
   85         error = cvm_oct_mv88e61xx_smi_wait(ifp);
   86         if (error != 0)
   87                 return (0);
   88 
   89         cvm_oct_mdio_write(ifp, priv->phy_id, MV88E61XX_SMI_REG_CMD,
   90             MV88E61XX_SMI_CMD_BUSY | MV88E61XX_SMI_CMD_22 |
   91             MV88E61XX_SMI_CMD_READ | MV88E61XX_SMI_CMD_PHY(phy_id) |
   92             MV88E61XX_SMI_CMD_REG(location));
   93 
   94         error = cvm_oct_mv88e61xx_smi_wait(ifp);
   95         if (error != 0)
   96                 return (0);
   97 
   98         return (cvm_oct_mdio_read(ifp, priv->phy_id, MV88E61XX_SMI_REG_DAT));
   99 }
  100 
  101 static void
  102 cvm_oct_mv88e61xx_smi_write(struct ifnet *ifp, int phy_id, int location, int val)
  103 {
  104         cvm_oct_private_t *priv = (cvm_oct_private_t *)ifp->if_softc;
  105 
  106         cvm_oct_mv88e61xx_smi_wait(ifp);
  107         cvm_oct_mdio_write(ifp, priv->phy_id, MV88E61XX_SMI_REG_DAT, val);
  108         cvm_oct_mdio_write(ifp, priv->phy_id, MV88E61XX_SMI_REG_CMD,
  109             MV88E61XX_SMI_CMD_BUSY | MV88E61XX_SMI_CMD_22 |
  110             MV88E61XX_SMI_CMD_WRITE | MV88E61XX_SMI_CMD_PHY(phy_id) |
  111             MV88E61XX_SMI_CMD_REG(location));
  112         cvm_oct_mv88e61xx_smi_wait(ifp);
  113 }
  114 
  115 static int
  116 cvm_oct_mv88e61xx_smi_wait(struct ifnet *ifp)
  117 {
  118         cvm_oct_private_t *priv = (cvm_oct_private_t *)ifp->if_softc;
  119         uint16_t cmd;
  120         unsigned i;
  121 
  122         for (i = 0; i < 10000; i++) {
  123                 cmd = cvm_oct_mdio_read(ifp, priv->phy_id, MV88E61XX_SMI_REG_CMD);
  124                 if ((cmd & MV88E61XX_SMI_CMD_BUSY) == 0)
  125                         return (0);
  126         }
  127         return (ETIMEDOUT);
  128 }

Cache object: afe4ffb3eddbeb287e5d070b5e48aba4


[ 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.