f05957f7c6
using miibus, since for some devices that use multiple addresses on the bus, going through miibus may be unclear, and for devices that are not standard MII PHYs, miibus may throw a fit, necessitating complicated interfaces to fake the interface that it expects during probe/attach. o) Make the mv88e61xx SMI interface in octe attach a PHY directly and fix some mistakes in the code that resulted from trying too hard to present a nice interface to miibus. o) Add a PHY driver for the mv88e61xx. If attached (it is optional in kernel compiles so the default behavior of having a dumb switch is preserved) it will place the switch in a VLAN-tagging mode such that each physical port has a VLAN associated with it and interfaces for the VLANs can be created to address or bridge between them. XXX It would be nice for this to be part of a single module including the SMI interface, and for it to fit into a generic switch configuration framework and for it to use DSA rather than VLANs, but this is a start and gives some sense of the parameters of such frameworks that are not currently present in FreeBSD. In lieu of a switch configuration interface, per-port media status and VLAN settings are in a sysctl tree. XXX There may be some minor nits remaining in the handling of broadcast, multicast and unknown destination traffic. It would also be nice to go through and replace the few remaining magic numbers with macros at some point in the future. XXX This has only been tested with the MV88E6161, but it should work with minimal or no modification on related switches, so support for probing them was included. Thanks to Pat Saavedra of TELoIP and Rafal Jaworowski of Semihalf for their assistance in understanding the switch chipset.
128 lines
4.1 KiB
C
128 lines
4.1 KiB
C
/*-
|
|
* Copyright (c) 2010 Juli Mallett <jmallett@FreeBSD.org>
|
|
* All rights reserved.
|
|
*
|
|
* Redistribution and use in source and binary forms, with or without
|
|
* modification, are permitted provided that the following conditions
|
|
* are met:
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
* notice, this list of conditions and the following disclaimer.
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
* documentation and/or other materials provided with the distribution.
|
|
*
|
|
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
* SUCH DAMAGE.
|
|
*
|
|
* $FreeBSD$
|
|
*/
|
|
|
|
/*
|
|
* Interface to the Marvell 88E61XX SMI/MDIO.
|
|
*/
|
|
|
|
#include <sys/cdefs.h>
|
|
__FBSDID("$FreeBSD$");
|
|
|
|
#include <sys/param.h>
|
|
#include <sys/systm.h>
|
|
#include <sys/bus.h>
|
|
#include <sys/endian.h>
|
|
#include <sys/kernel.h>
|
|
#include <sys/mbuf.h>
|
|
#include <sys/socket.h>
|
|
|
|
#include <dev/mii/mii.h>
|
|
|
|
#include <net/ethernet.h>
|
|
#include <net/if.h>
|
|
|
|
#include "wrapper-cvmx-includes.h"
|
|
#include "ethernet-headers.h"
|
|
|
|
#define MV88E61XX_SMI_REG_CMD 0x00 /* Indirect command register. */
|
|
#define MV88E61XX_SMI_CMD_BUSY 0x8000 /* Busy bit. */
|
|
#define MV88E61XX_SMI_CMD_22 0x1000 /* Clause 22 (default 45.) */
|
|
#define MV88E61XX_SMI_CMD_READ 0x0800 /* Read command. */
|
|
#define MV88E61XX_SMI_CMD_WRITE 0x0400 /* Write command. */
|
|
#define MV88E61XX_SMI_CMD_PHY(phy) (((phy) & 0x1f) << 5)
|
|
#define MV88E61XX_SMI_CMD_REG(reg) ((reg) & 0x1f)
|
|
|
|
#define MV88E61XX_SMI_REG_DAT 0x01 /* Indirect data register. */
|
|
|
|
static int cvm_oct_mv88e61xx_smi_read(struct ifnet *, int, int);
|
|
static void cvm_oct_mv88e61xx_smi_write(struct ifnet *, int, int, int);
|
|
static int cvm_oct_mv88e61xx_smi_wait(struct ifnet *);
|
|
|
|
int
|
|
cvm_oct_mv88e61xx_setup_device(struct ifnet *ifp)
|
|
{
|
|
cvm_oct_private_t *priv = (cvm_oct_private_t *)ifp->if_softc;
|
|
|
|
priv->mdio_read = cvm_oct_mv88e61xx_smi_read;
|
|
priv->mdio_write = cvm_oct_mv88e61xx_smi_write;
|
|
priv->phy_device = "mv88e61xxphy";
|
|
|
|
return (0);
|
|
}
|
|
|
|
static int
|
|
cvm_oct_mv88e61xx_smi_read(struct ifnet *ifp, int phy_id, int location)
|
|
{
|
|
cvm_oct_private_t *priv = (cvm_oct_private_t *)ifp->if_softc;
|
|
int error;
|
|
|
|
error = cvm_oct_mv88e61xx_smi_wait(ifp);
|
|
if (error != 0)
|
|
return (0);
|
|
|
|
cvm_oct_mdio_write(ifp, priv->phy_id, MV88E61XX_SMI_REG_CMD,
|
|
MV88E61XX_SMI_CMD_BUSY | MV88E61XX_SMI_CMD_22 |
|
|
MV88E61XX_SMI_CMD_READ | MV88E61XX_SMI_CMD_PHY(phy_id) |
|
|
MV88E61XX_SMI_CMD_REG(location));
|
|
|
|
error = cvm_oct_mv88e61xx_smi_wait(ifp);
|
|
if (error != 0)
|
|
return (0);
|
|
|
|
return (cvm_oct_mdio_read(ifp, priv->phy_id, MV88E61XX_SMI_REG_DAT));
|
|
}
|
|
|
|
static void
|
|
cvm_oct_mv88e61xx_smi_write(struct ifnet *ifp, int phy_id, int location, int val)
|
|
{
|
|
cvm_oct_private_t *priv = (cvm_oct_private_t *)ifp->if_softc;
|
|
|
|
cvm_oct_mv88e61xx_smi_wait(ifp);
|
|
cvm_oct_mdio_write(ifp, priv->phy_id, MV88E61XX_SMI_REG_DAT, val);
|
|
cvm_oct_mdio_write(ifp, priv->phy_id, MV88E61XX_SMI_REG_CMD,
|
|
MV88E61XX_SMI_CMD_BUSY | MV88E61XX_SMI_CMD_22 |
|
|
MV88E61XX_SMI_CMD_WRITE | MV88E61XX_SMI_CMD_PHY(phy_id) |
|
|
MV88E61XX_SMI_CMD_REG(location));
|
|
cvm_oct_mv88e61xx_smi_wait(ifp);
|
|
}
|
|
|
|
static int
|
|
cvm_oct_mv88e61xx_smi_wait(struct ifnet *ifp)
|
|
{
|
|
cvm_oct_private_t *priv = (cvm_oct_private_t *)ifp->if_softc;
|
|
uint16_t cmd;
|
|
unsigned i;
|
|
|
|
for (i = 0; i < 10000; i++) {
|
|
cmd = cvm_oct_mdio_read(ifp, priv->phy_id, MV88E61XX_SMI_REG_CMD);
|
|
if ((cmd & MV88E61XX_SMI_CMD_BUSY) == 0)
|
|
return (0);
|
|
}
|
|
return (ETIMEDOUT);
|
|
}
|